From 20e87628b63ef083d9b34a598f2a062ddf785e64 Mon Sep 17 00:00:00 2001 From: emjoyce <=> Date: Thu, 13 Oct 2022 12:55:21 -0700 Subject: [PATCH 01/23] added task function for layer histogram creation --- skeleton_keys/tasks.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/skeleton_keys/tasks.py b/skeleton_keys/tasks.py index a970808..f936448 100644 --- a/skeleton_keys/tasks.py +++ b/skeleton_keys/tasks.py @@ -12,9 +12,15 @@ ProcessMorphologyFeaturesParameters, main as morph_feat_main, ) +from skeleton_keys.cmds.depth_profiles_from_aligned_swcs import ( + ProfilesFromAlignedSwcsParameters, + main as depth_profile_main +) + import argschema + @queueable def layer_align_cell( specimen_id, @@ -115,3 +121,28 @@ def extract_morphology_features( schema_type=ProcessMorphologyFeaturesParameters, input_data=input_data, args=[] ) morph_feat_main(module.args) + +@queueable +def create_layer_histograms( + specimen_id_file, + swc_dir, + layer_depths_file, + output_hist_file, + output_soma_file, + bin_size=5.0, + below_wm=200.0,): + input_data = { + "specimen_id_file": specimen_id_file, + "swc_dir": swc_dir, + "layer_depths_file": layer_depths_file, + "output_hist_file": output_hist_file, + "output_soma_file": output_soma_file, + "bin_size": bin_size, + "below_wm": below_wm, + } + + input_data = {k: v for k, v in input_data.items() if v is not None} + module = argschema.ArgSchemaParser( + schema_type=ProfilesFromAlignedSwcsParameters, input_data=input_data, args=[] + ) + depth_profile_main(module.args) \ No newline at end of file From 2692c711bc3480bf130426f3a1abab7f461daacd Mon Sep 17 00:00:00 2001 From: emjoyce <=> Date: Fri, 14 Oct 2022 15:57:01 -0700 Subject: [PATCH 02/23] more changes for hist tasks --- Dockerfile | 4 ++-- skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py | 7 +++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6cfddb0..131ea0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM continuumio/miniconda3:4.10.3 RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/* RUN conda config --set channel_priority strict -RUN conda install -y -c conda-forge rtree==0.9.7 fenics==2019.1.0 python==3.8 mshr==2019.1.0 hdf5==1.10.6 h5py==2.10.0 -RUN pip install git+https://github.com/fcollman/AllenSDK.git +RUN conda install -y -c conda-forge rtree==0.9.7 fenics==2019.1.0 python==3.8 mshr==2019.1.0 hdf5==1.10.6 h5py==2.10.0 Jinja2==2.11.3 +RUN pip install git+https://github.com/AllenInstitute/AllenSDK.git RUN pip install git+https://github.com/AllenInstitute/neuron_morphology@cloudfiles ARG GITHUB_TOKEN WORKDIR /usr/local/src diff --git a/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py b/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py index 427476a..db7ad4b 100644 --- a/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py +++ b/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py @@ -33,8 +33,11 @@ class ProfilesFromAlignedSwcsParameters(ags.ArgSchema): ) -def main(): - module = ags.ArgSchemaParser(schema_type=ProfilesFromAlignedSwcsParameters) +def main(args = None): + if args == None: + module = ags.ArgSchemaParser(schema_type=ProfilesFromAlignedSwcsParameters) + else: + module = args # Load the specimen IDs specimen_id_file = module.args["specimen_id_file"] From 864b3e32c6c053ca8c766736b187368455111c33 Mon Sep 17 00:00:00 2001 From: emjoyce <=> Date: Fri, 14 Oct 2022 17:28:58 -0700 Subject: [PATCH 03/23] changes for hist tasks --- skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py | 6 ++---- skeleton_keys/tasks.py | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py b/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py index db7ad4b..2f1d66d 100644 --- a/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py +++ b/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py @@ -33,11 +33,9 @@ class ProfilesFromAlignedSwcsParameters(ags.ArgSchema): ) -def main(args = None): - if args == None: +def main(module = None): + if module == None: module = ags.ArgSchemaParser(schema_type=ProfilesFromAlignedSwcsParameters) - else: - module = args # Load the specimen IDs specimen_id_file = module.args["specimen_id_file"] diff --git a/skeleton_keys/tasks.py b/skeleton_keys/tasks.py index f936448..63898fd 100644 --- a/skeleton_keys/tasks.py +++ b/skeleton_keys/tasks.py @@ -145,4 +145,4 @@ def create_layer_histograms( module = argschema.ArgSchemaParser( schema_type=ProfilesFromAlignedSwcsParameters, input_data=input_data, args=[] ) - depth_profile_main(module.args) \ No newline at end of file + depth_profile_main(module) \ No newline at end of file From ae1cfd720b1a0b7a4e1c027b3becdc7dada3c90f Mon Sep 17 00:00:00 2001 From: emjoyce <=> Date: Thu, 20 Oct 2022 11:30:39 -0700 Subject: [PATCH 04/23] separating histogram tasks into separate file --- skeleton_keys/hist_tasks.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 skeleton_keys/hist_tasks.py diff --git a/skeleton_keys/hist_tasks.py b/skeleton_keys/hist_tasks.py new file mode 100644 index 0000000..23fd40a --- /dev/null +++ b/skeleton_keys/hist_tasks.py @@ -0,0 +1,33 @@ +from skeleton_keys.cmds.depth_profiles_from_aligned_swcs import ( + ProfilesFromAlignedSwcsParameters, + main as depth_profile_main +) + +import argschema +from taskqueue import queueable + + +@queueable +def create_layer_histograms( + specimen_id_file, + swc_dir, + layer_depths_file, + output_hist_file, + output_soma_file, + bin_size=5.0, + below_wm=200.0,): + input_data = { + "specimen_id_file": specimen_id_file, + "swc_dir": swc_dir, + "layer_depths_file": layer_depths_file, + "output_hist_file": output_hist_file, + "output_soma_file": output_soma_file, + "bin_size": bin_size, + "below_wm": below_wm, + } + + input_data = {k: v for k, v in input_data.items() if v is not None} + module = argschema.ArgSchemaParser( + schema_type=ProfilesFromAlignedSwcsParameters, input_data=input_data, args=[] + ) + depth_profile_main(module) \ No newline at end of file From a7ea6e6c4356f6e8a75b91c23dac19040202b9af Mon Sep 17 00:00:00 2001 From: emjoyce <=> Date: Tue, 25 Oct 2022 16:43:54 -0700 Subject: [PATCH 05/23] adding mshr workaround for feature creation tasks --- Dockerfile | 7 +++--- skeleton_keys/hist_tasks.py | 47 ++++++++++++++++++++++++++++++++++++- task_worker.py | 2 +- 3 files changed, 50 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 131ea0e..0dea9f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,11 @@ FROM continuumio/miniconda3:4.10.3 RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/* RUN conda config --set channel_priority strict -RUN conda install -y -c conda-forge rtree==0.9.7 fenics==2019.1.0 python==3.8 mshr==2019.1.0 hdf5==1.10.6 h5py==2.10.0 Jinja2==2.11.3 +RUN conda install -y -c conda-forge rtree==0.9.7 fenics==2019.1.0 python==3.8 hdf5==1.10.6 h5py==2.10.0 Jinja2==2.11.3 RUN pip install git+https://github.com/AllenInstitute/AllenSDK.git -RUN pip install git+https://github.com/AllenInstitute/neuron_morphology@cloudfiles -ARG GITHUB_TOKEN +RUN pip install git+https://github.com/AllenInstitute/neuron_morphology@science_staging WORKDIR /usr/local/src -RUN git clone https://${GITHUB_TOKEN}@github.com/AllenInstitute/ccf_streamlines.git &&\ +RUN git clone https://github.com/AllenInstitute/ccf_streamlines.git &&\ pip install ./ccf_streamlines &&\ rm -rf /usr/local/src/ccf_streamlines WORKDIR /usr/local/src/skeleton_keys diff --git a/skeleton_keys/hist_tasks.py b/skeleton_keys/hist_tasks.py index 23fd40a..cf6cdaa 100644 --- a/skeleton_keys/hist_tasks.py +++ b/skeleton_keys/hist_tasks.py @@ -3,6 +3,11 @@ main as depth_profile_main ) +from skeleton_keys.cmds.process_morphology_features import ( + ProcessMorphologyFeaturesParameters, + main as morph_feat_main, +) + import argschema from taskqueue import queueable @@ -30,4 +35,44 @@ def create_layer_histograms( module = argschema.ArgSchemaParser( schema_type=ProfilesFromAlignedSwcsParameters, input_data=input_data, args=[] ) - depth_profile_main(module) \ No newline at end of file + depth_profile_main(module) + +@queueable +def extract_morphology_features( + specimen_id_file, + aligned_depth_profile_file, + aligned_soma_file, + output_file, + swc_dir=None, + swc_paths_file=None, + layer_list=None, + analyze_axon=False, + analyze_basal_dendrite=False, + analyze_apical_dendrite=False, + analyze_basal_dendrite_depth=False, + axon_depth_profile_loadings_file=None, + basal_dendrite_depth_profile_loadings_file=None, + apical_dendrite_depth_profile_loadings_file=None, +): + input_data = { + "specimen_id_file": specimen_id_file, + "aligned_depth_profile_file": aligned_depth_profile_file, + "aligned_soma_file": aligned_soma_file, + "swc_dir": swc_dir, + "swc_paths_file": swc_paths_file, + "layer_list": layer_list, + "analyze_axon": analyze_axon, + "analyze_basal_dendrite": analyze_basal_dendrite, + "analyze_apical_dendrite": analyze_apical_dendrite, + "analyze_basal_dendrite_depth": analyze_basal_dendrite_depth, + "axon_depth_profile_loadings_file": axon_depth_profile_loadings_file, + "basal_dendrite_depth_profile_loadings_file": basal_dendrite_depth_profile_loadings_file, + "apical_dendrite_depth_profile_loadings_file": apical_dendrite_depth_profile_loadings_file, + "output_file": output_file, + } + + input_data = {k: v for k, v in input_data.items() if v is not None} + module = argschema.ArgSchemaParser( + schema_type=ProcessMorphologyFeaturesParameters, input_data=input_data, args=[] + ) + morph_feat_main(module.args) \ No newline at end of file diff --git a/task_worker.py b/task_worker.py index 024eeac..f39fdb9 100644 --- a/task_worker.py +++ b/task_worker.py @@ -1,4 +1,4 @@ -from skeleton_keys.tasks import * +from skeleton_keys.hist_tasks import create_layer_histograms from taskqueue import TaskQueue import sys From 3206534a4b7bd89228caf4215df66d976c62182d Mon Sep 17 00:00:00 2001 From: emjoyce <=> Date: Thu, 27 Oct 2022 11:11:24 -0700 Subject: [PATCH 06/23] dockerfile updates for feature processing --- Dockerfile | 3 ++- .../cmds/process_morphology_features.py | 21 +++++++++++++++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0dea9f8..f2bd921 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM continuumio/miniconda3:4.10.3 RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/* RUN conda config --set channel_priority strict -RUN conda install -y -c conda-forge rtree==0.9.7 fenics==2019.1.0 python==3.8 hdf5==1.10.6 h5py==2.10.0 Jinja2==2.11.3 +RUN conda install -y -c conda-forge rtree==0.9.7 fenics==2019.1.0 python==3.9 gmsh==4.10.5 hdf5==1.10.6 h5py==2.10.0 Jinja2==2.11.3 RUN pip install git+https://github.com/AllenInstitute/AllenSDK.git RUN pip install git+https://github.com/AllenInstitute/neuron_morphology@science_staging WORKDIR /usr/local/src @@ -13,3 +13,4 @@ COPY setup.cfg /usr/local/src/skeleton_keys RUN python3 -c "import configparser; c = configparser.ConfigParser(); c.read('setup.cfg'); print(c['options']['install_requires'])" | xargs pip install COPY . /usr/local/src/skeleton_keys RUN python setup.py install + diff --git a/skeleton_keys/cmds/process_morphology_features.py b/skeleton_keys/cmds/process_morphology_features.py index 2b71856..16cdd80 100644 --- a/skeleton_keys/cmds/process_morphology_features.py +++ b/skeleton_keys/cmds/process_morphology_features.py @@ -1,7 +1,9 @@ import json +from re import A import argschema as ags import numpy as np import pandas as pd +import logging from multiprocessing import Pool from skeleton_keys.database_queries import ( swc_paths_from_database @@ -365,6 +367,11 @@ def main(args): if analyze_axon_flag: axon_depth_df = select_and_convert_depth_columns(depth_profile_df, "2_") available_ids = axon_depth_df.index.intersection(specimen_ids) + if len(available_ids) != len(specimen_ids): + missing_apical_num = len(specimen_ids) - len(available_ids) + logging.warning(f'{missing_apical_num} out of {specimen_ids} neurons passed do no have axons') + if len(available_ids) == 0: + raise Exception(f'None of the neurons passed have axon identified nodes (label 2, in columns beginning with 2_) in the depth profiles file at {aligned_depth_profile_file}') transformed = analyze_depth_profiles( axon_depth_df.loc[available_ids, :], args["axon_depth_profile_loadings_file"], @@ -383,14 +390,19 @@ def main(args): ) if analyze_apical_flag: - apical_depth_df = select_and_convert_depth_columns(depth_profile_df, "4_") + apical_depth_df = select_and_convert_depth_columns(depth_profile_df, "4_") available_ids = apical_depth_df.index.intersection(specimen_ids) + if len(available_ids) != len(specimen_ids): + missing_apical_num = len(specimen_ids) - len(available_ids) + logging.warning(f'{missing_apical_num} out of {specimen_ids} neurons do no have apicals') + if len(available_ids) == 0: + raise Exception(f'None of the neurons passed have apical identified nodes (label 4, in columns beginning with 4_) in the depth profiles file at {aligned_depth_profile_file}') transformed = analyze_depth_profiles( apical_depth_df.loc[available_ids, :], args["apical_dendrite_depth_profile_loadings_file"], args["save_apical_dendrite_depth_profile_loadings_file"], ) - for i, sp_id in enumerate(specimen_ids): + for i, sp_id in enumerate(available_ids): for j in range(transformed.shape[1]): depth_result.append( { @@ -410,6 +422,11 @@ def main(args): # other analyses if analyze_basal_dendrite_depth_flag: available_ids = basal_depth_df.index.intersection(specimen_ids) + if len(available_ids) != len(specimen_ids): + missing_apical_num = len(specimen_ids) - len(available_ids) + logging.warning(f'{missing_apical_num} out of {specimen_ids} neurons passed do no have basal-identified nodes') + if len(available_ids) == 0: + raise Exception(f'None of the neurons passed have basal identified nodes (label 3, in columns beginning with 3_) in the depth profiles file at {aligned_depth_profile_file}') transformed = analyze_depth_profiles( basal_depth_df.loc[available_ids, :], args["basal_dendrite_depth_profile_loadings_file"], From f071cc456fe6c488f6874eb7065d8d606c422e49 Mon Sep 17 00:00:00 2001 From: emjoyce <=> Date: Thu, 27 Oct 2022 11:22:24 -0700 Subject: [PATCH 07/23] updating axon feature extraction iteration --- skeleton_keys/cmds/process_morphology_features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skeleton_keys/cmds/process_morphology_features.py b/skeleton_keys/cmds/process_morphology_features.py index 16cdd80..163ba6b 100644 --- a/skeleton_keys/cmds/process_morphology_features.py +++ b/skeleton_keys/cmds/process_morphology_features.py @@ -377,7 +377,7 @@ def main(args): args["axon_depth_profile_loadings_file"], args["save_axon_depth_profile_loadings_file"], ) - for i, sp_id in enumerate(specimen_ids): + for i, sp_id in enumerate(available_ids): for j in range(transformed.shape[1]): depth_result.append( { From f2d961267b037f9a410f93cca1c56c6ac57a5bf8 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Fri, 28 Oct 2022 15:56:05 -0700 Subject: [PATCH 08/23] large merge fix --- .bumpversion.cfg | 8 + .gitignore | 2 + CONTRIBUTING.md | 26 + LICENSE | 33 + README.md | 5 +- doc/Makefile | 20 + doc/make.bat | 35 + doc/source/conf.py | 42 + doc/source/guide.rst | 367 + doc/source/guide_aligned_coord_example.csv | 6 + doc/source/guide_coord_example.csv | 6 + .../guide_example_features_long_excerpt.csv | 35 + doc/source/guide_example_features_wide.csv | 4 + doc/source/index.rst | 22 + doc/source/reference/cmds.rst | 116 + doc/source/reference/database_queries.rst | 51 + doc/source/reference/depth_profile.rst | 19 + doc/source/reference/drawings.rst | 17 + doc/source/reference/feature_definition.rst | 17 + doc/source/reference/index.rst | 17 + doc/source/reference/io.rst | 37 + doc/source/reference/layer_alignment.rst | 26 + doc/source/reference/plotting.rst | 16 + doc/source/reference/slice_angle.rst | 15 + doc/source/reference/upright.rst | 18 + .../606271263_surfaces_and_layers.json | 1 + .../694146546_surfaces_and_layers.json | 1 + .../740135032_surfaces_and_layers.json | 1 + ...S-Cre_Ai14-408415.03.02.02_864876723_m.swc | 15916 +++++++++++++++ ...S-Cre_Ai14-387150.05.02.01_811371030_m.swc | 5684 ++++++ ...-FlpO_Ai65-337416.05.01.01_678210885_m.swc | 16698 ++++++++++++++++ example_data/aligned_coord_example.csv | 6 + example_data/aligned_coord_hist.csv | 4 + example_data/aligned_depth_profiles.csv | 4 + example_data/aligned_soma_depths.csv | 4 + example_data/axon_loadings.csv | 2 + example_data/coord_example.csv | 6 + example_data/coord_layer_drawings.json | 1 + example_data/example_features_long.csv | 139 + .../example_features_wide_normalized.csv | 4 + .../example_features_wide_unnormalized.csv | 4 + example_data/example_specimen_ids.txt | 3 + example_data/layer_aligned_740135032.swc | 15913 +++++++++++++++ example_data/layer_aligned_swcs/606271263.swc | 16697 +++++++++++++++ example_data/layer_aligned_swcs/694146546.swc | 5683 ++++++ example_data/layer_aligned_swcs/740135032.swc | 15913 +++++++++++++++ example_data/upright_only_740135032.swc | 15913 +++++++++++++++ example_data/upright_swcs/606271263.swc | 16697 +++++++++++++++ example_data/upright_swcs/694146546.swc | 5683 ++++++ example_data/upright_swcs/740135032.swc | 15913 +++++++++++++++ pyproject.toml | 3 + setup.cfg | 5 +- skeleton_keys/__init__.py | 1 + skeleton_keys/cmds/calc_histogram_loadings.py | 2 +- .../depth_profiles_from_aligned_coords.py | 125 + .../cmds/depth_profiles_from_aligned_swcs.py | 15 +- skeleton_keys/cmds/layer_aligned_coords.py | 194 + skeleton_keys/cmds/layer_aligned_swc.py | 57 +- skeleton_keys/cmds/postprocess_features.py | 18 + .../cmds/process_morphology_features.py | 57 +- skeleton_keys/database_queries.py | 68 +- skeleton_keys/drawings.py | 1 + skeleton_keys/feature_definition.py | 20 +- skeleton_keys/io.py | 68 + skeleton_keys/layer_alignment.py | 277 +- skeleton_keys/plotting.py | 43 +- skeleton_keys/test_files/4493.json | 1 + skeleton_keys/test_files/4493.swc | 7704 +++++++ .../Surface_And_Layer_Polygon_Example.ipynb | 325 + .../test_files/avg_layer_depths.json | 1 + skeleton_keys/test_files/feature_pipeline.sh | 60 + skeleton_keys/test_files/specimen_ids.txt | 1 + skeleton_keys/upright.py | 4 +- 73 files changed, 156749 insertions(+), 151 deletions(-) create mode 100644 .bumpversion.cfg create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE create mode 100644 doc/Makefile create mode 100644 doc/make.bat create mode 100644 doc/source/conf.py create mode 100644 doc/source/guide.rst create mode 100644 doc/source/guide_aligned_coord_example.csv create mode 100644 doc/source/guide_coord_example.csv create mode 100644 doc/source/guide_example_features_long_excerpt.csv create mode 100644 doc/source/guide_example_features_wide.csv create mode 100644 doc/source/index.rst create mode 100644 doc/source/reference/cmds.rst create mode 100644 doc/source/reference/database_queries.rst create mode 100644 doc/source/reference/depth_profile.rst create mode 100644 doc/source/reference/drawings.rst create mode 100644 doc/source/reference/feature_definition.rst create mode 100644 doc/source/reference/index.rst create mode 100644 doc/source/reference/io.rst create mode 100644 doc/source/reference/layer_alignment.rst create mode 100644 doc/source/reference/plotting.rst create mode 100644 doc/source/reference/slice_angle.rst create mode 100644 doc/source/reference/upright.rst create mode 100755 example_data/606271263_surfaces_and_layers.json create mode 100755 example_data/694146546_surfaces_and_layers.json create mode 100755 example_data/740135032_surfaces_and_layers.json create mode 100755 example_data/Sst-IRES-Cre_Ai14-408415.03.02.02_864876723_m.swc create mode 100755 example_data/Vip-IRES-Cre_Ai14-387150.05.02.01_811371030_m.swc create mode 100755 example_data/Vipr2-IRES2-Cre_Slc32a1-T2A-FlpO_Ai65-337416.05.01.01_678210885_m.swc create mode 100644 example_data/aligned_coord_example.csv create mode 100644 example_data/aligned_coord_hist.csv create mode 100644 example_data/aligned_depth_profiles.csv create mode 100644 example_data/aligned_soma_depths.csv create mode 100644 example_data/axon_loadings.csv create mode 100644 example_data/coord_example.csv create mode 100644 example_data/coord_layer_drawings.json create mode 100644 example_data/example_features_long.csv create mode 100644 example_data/example_features_wide_normalized.csv create mode 100644 example_data/example_features_wide_unnormalized.csv create mode 100644 example_data/example_specimen_ids.txt create mode 100644 example_data/layer_aligned_740135032.swc create mode 100644 example_data/layer_aligned_swcs/606271263.swc create mode 100644 example_data/layer_aligned_swcs/694146546.swc create mode 100644 example_data/layer_aligned_swcs/740135032.swc create mode 100644 example_data/upright_only_740135032.swc create mode 100644 example_data/upright_swcs/606271263.swc create mode 100644 example_data/upright_swcs/694146546.swc create mode 100644 example_data/upright_swcs/740135032.swc create mode 100644 pyproject.toml create mode 100644 skeleton_keys/cmds/depth_profiles_from_aligned_coords.py create mode 100644 skeleton_keys/cmds/layer_aligned_coords.py create mode 100644 skeleton_keys/test_files/4493.json create mode 100644 skeleton_keys/test_files/4493.swc create mode 100644 skeleton_keys/test_files/Surface_And_Layer_Polygon_Example.ipynb create mode 100644 skeleton_keys/test_files/avg_layer_depths.json create mode 100644 skeleton_keys/test_files/feature_pipeline.sh create mode 100644 skeleton_keys/test_files/specimen_ids.txt diff --git a/.bumpversion.cfg b/.bumpversion.cfg new file mode 100644 index 0000000..ad58ac5 --- /dev/null +++ b/.bumpversion.cfg @@ -0,0 +1,8 @@ +[bumpversion] +current_version = 0.1.0 +commit = True +tag = True + +[bumpversion:file:skeleton_keys/__init__.py] + +[bumpversion:file:doc/source/conf.py] diff --git a/.gitignore b/.gitignore index e6d7702..ee26e8e 100755 --- a/.gitignore +++ b/.gitignore @@ -57,6 +57,8 @@ coverage.xml # Sphinx documentation docs/_build/ +doc/build/ +doc/source/reference/generated/ # PyBuilder target/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..d850889 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,26 @@ +# Allen Institute Contribution Agreement + +This document describes the terms under which you may make “Contributions” — +which may include without limitation, software additions, revisions, bug fixes, configuration changes, +documentation, or any other materials — to any of the projects owned or managed by the Allen Institute. +If you have questions about these terms, please contact us at terms@alleninstitute.org. + +You certify that: + +• Your Contributions are either: + +1. Created in whole or in part by you and you have the right to submit them under the designated license +(described below); or +2. Based upon previous work that, to the best of your knowledge, is covered under an appropriate +open source license and you have the right under that license to submit that work with modifications, +whether created in whole or in part by you, under the designated license; or + +3. Provided directly to you by some other person who certified (1) or (2) and you have not modified them. + +• You are granting your Contributions to the Allen Institute under the terms of the [2-Clause BSD license](https://opensource.org/licenses/BSD-2-Clause) +(the “designated license”). + +• You understand and agree that the Allen Institute projects and your Contributions are public and that +a record of the Contributions (including all metadata and personal information you submit with them) is +maintained indefinitely and may be redistributed consistent with the Allen Institute’s mission and the +2-Clause BSD license. \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..701fa6a --- /dev/null +++ b/LICENSE @@ -0,0 +1,33 @@ +Allen Institute Software License – This software license is the 2-clause BSD +license plus a third clause that prohibits redistribution and use for +commercial purposes without further permission. + +Copyright © 2022. Allen Institute. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Redistributions and use for commercial purposes are not permitted without +the Allen Institute’s written permission. For purposes of this license, +commercial purposes are the incorporation of the Allen Institute's software +into anything for which you will charge fees or other compensation or use of +the software to perform a commercial service for a third party. Contact +terms@alleninstitute.org for commercial licensing opportunities. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/README.md b/README.md index dbb6340..6499d9c 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ This package supports the skeletal analysis of morphologies. + Installation instructions ========================= @@ -50,7 +51,9 @@ skelekeys-postprocess-features ------------------------------ script to to take a long form set of features and post-process them to remove zeros and perform zscoring and/or uniform scaling of features. - +Statement of Support +==================== +This code is an important part of the internal Allen Institute code base and we are actively using and maintaining it. Issues are encouraged, but because this tool is so central to our mission pull requests might not be accepted if they conflict with our existing plans. diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..d0c3cbf --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = source +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/doc/make.bat b/doc/make.bat new file mode 100644 index 0000000..747ffb7 --- /dev/null +++ b/doc/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/doc/source/conf.py b/doc/source/conf.py new file mode 100644 index 0000000..533db89 --- /dev/null +++ b/doc/source/conf.py @@ -0,0 +1,42 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +project = 'skeleton_keys' +copyright = '2022, Nathan Gouwens, Forrest Collman, Matt Mallory, Clare Gamlin' +author = 'Nathan Gouwens, Forrest Collman, Matt Mallory, Clare Gamlin' +release = '0.1.0' + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +from argschema.autodoc import process_schemas + +def setup(app): + app.connect('autodoc-process-docstring',process_schemas) + + +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.autosummary', + 'sphinx.ext.napoleon', + 'sphinx.ext.autosectionlabel', + +] + +templates_path = ['_templates'] +exclude_patterns = [] + +autodoc_mock_imports = ["fenics", 'mshr'] + + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'pydata_sphinx_theme' +html_static_path = ['_static'] + diff --git a/doc/source/guide.rst b/doc/source/guide.rst new file mode 100644 index 0000000..c8459a5 --- /dev/null +++ b/doc/source/guide.rst @@ -0,0 +1,367 @@ +User's Guide +============ + +The ``skeleton_keys`` package supports the skeletal analysis of neuron morphologies. +It is used to perform a series of analysis steps in a consistent and scaleable +manner. It can be used to align a series of morphologies from the isocortex to a +set of reference layer depths/thicknesses, create layer-aligned depth profile +histograms, and calculate morphological features using the `neuron_morphology package `_. + +The main inputs for ``skeleton_keys`` are neuron morphologies in the form of +SWC files, layer drawings for the cells of interest, and reference information +such as a reference set of layer depths/thicknesses. The package contains +several command line scripts that are typically used in sequence to process a +set of morphologies and end up with a comparable set of morphological features +for the entire set. + + +Aligning a morphology to a reference set of layers +-------------------------------------------------- + +The depths and thicknesses of cortical layers can vary from location to location +across the isocortex. However, some cells send processes into specific layers +regardless of their location. Analyses that use the cells only at their original +size may blur precise distinctions that follow layer boundaries; therefore, +several features calculated by this package rely on first aligning morphologies +to a consistent set of layer thicknesses/depths. These layer-aligned morphologies +can also be used for other purposes, like visualization. + +Since the isocortex is a curved structure, the depth is not always straightforward +to calculate. The `neuron_morphology package`_ (used by ``skeleton_keys`` to +perform the layer alignemnt) takes the approach used in the +`Allen Common Coordinate Framework for the mouse brain `_, +where paths traveling through isopotential surfaces between the pia and white matter +define the depth dimension of the cortex. + +Therefore, to align to a common set of layers, we need information about +where the pia, white matter, and layers are with respect to the cell of interest. +At the Allen Institute for Brain Science, these are drawn on 20x images +of the morphology, using a DAPI stain to identify layers. These lines and polygons +become inputs into the ``skeleton_keys`` scripts. + +These layer drawings match the orientation of the reconstructed +cell taken directly from the image (i.e., before any rotation to place pia upward +is done). + +As an example, we will use an Sst+ inhibitory neuron from the `Gouwens et al. (2020) study `_ +where we have also saved the layer drawings in the ``example_data`` directory as +a JSON file in the format expected by ``skeleton_keys``. + +In its original orientation, the morphology looks like this: + +.. figure:: /images/guide_example_sst_original.png + :width: 600 + + Sst neuron in original orientation. Dendrite is red, axon is blue, soma is black dot. + + +Our layer drawings (with a matched orientation) look like: + +.. figure:: /images/guide_example_layer_drawings.png + :width: 600 + + Pia, white matter, soma outline, and layer drawings + +And together (after aligning the soma locations) they look like: + +.. figure:: /images/guide_example_layer_drawings_with_morph.png + :width: 600 + + Morphology and layer drawings in original orientation + + +**Note:** This script also has functionality to correct the morphology for shrinkage +(which can happen because the fixed tissue that is image dries out and becomes +flatter than the original) and slice angle tilt (which happens when the +cutting angle for brain slices does not match the curvature of that part of the +brain). However, these features are currently written to require access to an +internal Allen Institute database and do not yet have alternative input formats. Therefore, +we will not use those functions in this guide. + +We will supply the script with the following inputs: + +* *specimen_id* - an integer identifier for the cell. + Here, it is primarily used + to access internal database information (which we aren't doing), but in other + scripts it is used to associate this cell with its features. Here, the specimen ID + of our example is ``740135032``. +* *swc_path* - a file path to the SWC file in its original orientation. + Here, our example cell's SWC file is ``Sst-IRES-Cre_Ai14-408415.03.02.02_864876723_m.swc``. +* *surface_and_layers_file* - a JSON file with the layer drawings. + Here, our example uses the file ``740135032_surfaces_and_layers.json``. +* *layer_depths_file* - a JSON file with the set of layer depths we're aligning the cell to. + In this case we'll use an average set of depths included as a test + file, ``avg_layer_depths.json``. + +Therefore, our command will be: + +.. code:: shell + + skelekeys-layer-aligned-swc --specimen_id 740135032 \ + --swc_path Sst-IRES-Cre_Ai14-408415.03.02.02_864876723_m.swc \ + --surface_and_layers_file 740135032_surfaces_and_layers.json \ + --layer_depths_file avg_layer_depths.json \ + --correct_for_shrinkage False \ + --correct_for_slice_angle False \ + --output_file layer_aligned_740135032.swc + +This creates a new SWC file (``layer_aligned_740135032.swc``) that is (1) +uprighted and (2) stretched or squished to align each of its points to the +reference set of layers. + +.. figure:: /images/guide_example_sst_layeraligned.png + :width: 600 + + Layer-aligned morphology + + +Uprighting a morphology without layer alignment +----------------------------------------------- + +If you only want to orient morphology so that pia is up and the white matter is +down, but without making any layer thickness adjustments, you can use the +command-line utility ``skelekeys-upright-corrected-swc``. It still requires +layer drawings, though, to know which direction the pia and white matter are +relative to the originally reconstructed morphology. + +**Note:** This script, too, can correct the morphology for shrinkage and slice angle tilt, +but we are again skipping that since it currently can only use internally databased +information. + +It takes a similar set of arguments as before (but notably without the ``--layer_depths_file`` +argument). + +.. code:: shell + + skelekeys-upright-corrected-swc --specimen_id 740135032 \ + --swc_path Sst-IRES-Cre_Ai14-408415.03.02.02_864876723_m.swc \ + --surface_and_layers_file 740135032_surfaces_and_layers.json \ + --correct_for_shrinkage False \ + --correct_for_slice_angle False \ + --output_file upright_only_740135032.swc + +The output looks like: + +.. figure:: /images/guide_example_sst_upright.png + :width: 600 + + Upright (but not layer-aligned) morphology + + +Calculating depth profiles +-------------------------- + +A relevant aspect for distinguishing morphologies is the depth profile, which is +a 1D histogram of the number of nodes across a set of depth bins, divided by compartment +type (i.e., axon, basal dendrite, apical dendrite). These can be used to calculate +reduced-dimesion representations of those profiles, determine the overlap of different +compartment types, etc. + +The command line utility ``skelekeys-profiles-from-swcs`` will create a CSV file of +depth profiles from a list of layer-aligned SWC files. + +The script expects the layer-aligned SWC files to be in a single directory (``--swc_dir``) +and be named as ``{specimen_id}.swc``. For this example, we have moved the layer-aligned +Sst cell's SWC file (740135032) into another directory and renamed it; we have also layer aligned +a Pvalb cell (606271263) and a Vip cell (694146546). + +.. figure:: /images/guide_three_layeraligned_cells.png + :width: 600 + + Layer-aligned Sst cell, Pvalb cell, and Vip cell + +To run the script for our example, we give it the following inputs: + +* *specimen_id_file* - a text file with specimen IDs + The text file has one integer ID per line. Here we're using + ``example_specimen_ids.txt``. +* *swc_dir* - the directory of layer-aligned SWC files + Here our directory is ``layer_aligned_swcs`` +* *layer_depths_file* - a JSON file with the reference set of layer depths + This is so that the script knows where the white matter begins (so that it + can determine how far past to include) +* *output_hist_file* - an output CSV file path + This CSV file contains the depth histograms - the columns are depth bins, + and the rows are cells +* *output_soma_file* - an output CSV file path + The script also saves the layer-aligned soma depths, which is used by + other command line scripts in the package + +Our command will then be: + +.. code:: shell + + skelekeys-profiles-from-swcs --specimen_id_file example_specimen_ids.txt \ + --swc_dir layer_aligned_swcs \ + --layer_depths_file avg_layer_depths.json \ + --output_hist_file aligned_depth_profiles.csv \ + --output_soma_file aligned_soma_depths.csv + +This produces the following depth profiles: + +.. figure:: /images/guide_depth_profiles.png + :width: 600 + + Layer-aligned depth profiles of the three example cells + + +PCA on depth profiles +--------------------- + +A reduced dimension representation of the depth profiles can serve as useful +features for distinguishing morphologies. However, analyses like PCA will produce +loadings that vary depending on the data set. The command line utility +``skelekeys-calc-histogram-loadings`` can be used to generate a fixed loading file +from a set of morphologies that can be used to analyze other morphologies with +other scripts. + +If you simply want to use the PCA loadings for a new set of cells and not +transfer those loadings to another set, you do not need to use this utility +(you can use the ``skelekeys-morph-features`` script by itself). That script +will also let you save the loadings. But this script will allow you to calculate +loadings without having to calculate all the other morphological features. + +In this example, we will calculate and save the PCA loadings for the axonal +compartments. The command to do so is: + +.. code:: shell + + skelekeys-calc-histogram-loadings --specimen_id_file example_specimen_ids.txt \ + --aligned_depth_profile_file aligned_depth_profiles.csv \ + --analyze_axon True \ + --save_axon_depth_profile_loadings_file axon_loadings.csv + + +Calculating morphological features +---------------------------------- + +Once we have the layer depths files (and optionally a set of pre-calculated loadings), +we can calculate a set of morphological features for each cell using the +command line utility ``skelekeys-morph-features``. +The main inputs are the set of upright (but *not* layer-aligned) SWC files and the depth +profile CSV file. We also specify which compartments we want to analyze (for example +if we have a set of excitatory neurons that don't have reconstructed local axons, +we would not want to analyze axonal compartments). + +To continue our example, we will analyze the features using the following command: + +.. code:: shell + skelekeys-morph-features --specimen_id_file example_specimen_ids.txt \ + --swc_dir upright_swcs \ + --aligned_depth_profile_file aligned_depth_profiles.csv \ + --aligned_soma_file aligned_soma_depths.csv \ + --analyze_axon True \ + --analyze_basal_dendrite True \ + --analyze_apical_dendrite False \ + --output_file example_features_long.csv + + +This produces a long-form feature data file. + +.. csv-table:: Beginning of example long-form feature file + :file: guide_example_features_long_excerpt.csv + :header-rows: 1 + + + +Post-processing morphological features +-------------------------------------- + +The long-form file can be used for many purposes, +but it is also useful to convert the data to a wide format where the +features are the columns and the rows are cells. At the same time, +it can also be useful to normalize the different features for analyzes like +classification and clustering. + +The command line utility ``skelekeys-postprocess-features`` is used to perform +these operations. + +.. code:: shell + + skelekeys-postprocess-features \ + --input_files "['example_features_long.csv']" \ + --wide_normalized_output_file example_features_wide_normalized.csv \ + --wide_unnormalized_output_file example_features_wide_unnormalized.csv + +Note the `syntax for passing a list of files `_ for the `argschema `_ +command line argument. If you passed more than one file (for example, to +normalize features calculated from two sets of cells to the same scale), you +would separate each argument with a comma (as in ``"['file_one.csv','file_two.csv']"``). + +The wide form feature file output looks like: + +.. csv-table:: Example wide-form feature file + :file: guide_example_features_wide.csv + :header-rows: 1 + + +Working with general coordinates +-------------------------------- + +The ``skeleton_keys`` package was originally built around processing SWC files, +but it can also be used to align arbitrary sets of coordinates, if provided with +the appropriate layer drawings. + +The command line utility ``skelekeys-layer-aligned-coords`` can take a CSV and +adjust the specified coordinates to make them layer-aligned. It takes the following +inputs: + +* *coordinate_file* - a CSV with coordinates + The coordinate columns must contain "x", "y", and "z" in their names, + but can have prefixes and/or suffixes (see below). We'll use an example file + named ``coord_example.csv``. +* *layer_depths_file* a JSON file with the set of layer depths we're aligning the cell to. + Here again we'll use an average set of depths included as a test + file, ``avg_layer_depths.json``. +* *surface_and_layers_file* - a JSON file with the layer drawings. + Here, our example uses the file ``coord_layer_drawings.json``. +* *coordinate_column_prefix (and/or _suffix)* - strings of common prefixes/suffixes + This allows the coordinate columns to have names other than the default ``x``, + ``y``, and ``z``, but in this example we do not need to use them. + +Using this, we can take a starting example file (the columns ``cell_id`` and +``target_cell_type`` contain extra metadata about the coordinates): + +.. csv-table:: Example coordinate file + :file: guide_coord_example.csv + :header-rows: 1 + +Use the command: + +.. code:: shell + + skelekeys-layer-aligned-coords \ + --coordinate_file coord_example.csv \ + --surface_and_layers_file coord_layer_drawings.json \ + --layer_depths_file avg_layer_depths.json \ + --output_file aligned_coord_example.csv + +And obtain: + +.. csv-table:: Example coordinate file + :file: guide_aligned_coord_example.csv + :header-rows: 1 + +Note that the ``x`` values have also changed because we have rotated the +coordinates to an upright orientation (with pia at the top). + +This aligned coordinate file can be used to generate histograms with the +``skelekeys-profiles-from-coords`` command line utility. You need to specify +which column contains the depth values (here, the column labeled ``y``) with the +``depth_label`` argument. + +You can use other columns in the CSV file to split the histograms across rows using the +``--index_label`` argument, and/or you can create multiple histograms per row (as in the +compartment type histograms above) with the ``--hist_split_label`` argument. + +For example: + +.. code:: shell + + skelekeys-profiles-from-coords \ + --coordinate_file aligned_coord_example.csv \ + --layer_depths_file avg_layer_depths.json \ + --depth_label y \ + --index_label cell_id \ + --hist_split_label target_cell_type \ + --output_hist_file aligned_coord_hist.csv diff --git a/doc/source/guide_aligned_coord_example.csv b/doc/source/guide_aligned_coord_example.csv new file mode 100644 index 0000000..b41c052 --- /dev/null +++ b/doc/source/guide_aligned_coord_example.csv @@ -0,0 +1,6 @@ +cell_id,target_cell_type,x,y,z +1,4P,-92.0060469028378,-421.0797644340709,821.64 +1,4P,-105.11025186647323,-399.30901042554444,796.56 +2,4P,1.6844004295792985,-335.2109182277234,737.76 +3,5P-ET,5.634215690400225,-382.48922026392205,950.92 +3,5P-IT,-12.739372718728555,-508.88802416730545,826.44 diff --git a/doc/source/guide_coord_example.csv b/doc/source/guide_coord_example.csv new file mode 100644 index 0000000..ebb5541 --- /dev/null +++ b/doc/source/guide_coord_example.csv @@ -0,0 +1,6 @@ +cell_id,target_cell_type,x,y,z +1,4P,838.184,691.792,821.64 +1,4P,850.392,676.904,796.56 +2,4P,741.704,649.608,737.76 +3,5P-ET,739.656,680.464,950.92 +3,5P-IT,762.28,748.584,826.44 \ No newline at end of file diff --git a/doc/source/guide_example_features_long_excerpt.csv b/doc/source/guide_example_features_long_excerpt.csv new file mode 100644 index 0000000..3e45f9a --- /dev/null +++ b/doc/source/guide_example_features_long_excerpt.csv @@ -0,0 +1,35 @@ +,specimen_id,feature,compartment_type,dimension,value +0,740135032,aligned_dist_from_pia,soma,none,488.95489922056464 +1,606271263,aligned_dist_from_pia,soma,none,185.35510042590795 +2,694146546,aligned_dist_from_pia,soma,none,363.1829539564272 +3,740135032,depth_pc_0,axon,none,-591.3768052788041 +4,740135032,depth_pc_1,axon,none,771.0611928161894 +5,606271263,depth_pc_0,axon,none,1557.1882340570776 +6,606271263,depth_pc_1,axon,none,-114.4320436027042 +7,694146546,depth_pc_0,axon,none,-965.8114287782732 +8,694146546,depth_pc_1,axon,none,-656.6291492134859 +9,740135032,emd_with_basal_dendrite,axon,none,53.842009790570955 +10,606271263,emd_with_basal_dendrite,axon,none,20.02095840833445 +11,694146546,emd_with_basal_dendrite,axon,none,50.38248981181829 +12,740135032,frac_above_basal_dendrite,axon,none,0.5537837260625045 +13,740135032,frac_intersect_basal_dendrite,axon,none,0.4462162739374956 +14,740135032,frac_below_basal_dendrite,axon,none,0.0 +15,606271263,frac_above_basal_dendrite,axon,none,0.0 +16,606271263,frac_intersect_basal_dendrite,axon,none,0.7648047321368555 +17,606271263,frac_below_basal_dendrite,axon,none,0.23519526786314446 +18,694146546,frac_above_basal_dendrite,axon,none,0.0 +19,694146546,frac_intersect_basal_dendrite,axon,none,0.9692556634304207 +20,694146546,frac_below_basal_dendrite,axon,none,0.030744336569579287 +21,740135032,frac_above_axon,basal_dendrite,none,0.0 +22,740135032,frac_intersect_axon,basal_dendrite,none,0.946916890080429 +23,740135032,frac_below_axon,basal_dendrite,none,0.05308310991957105 +24,606271263,frac_above_axon,basal_dendrite,none,0.37383177570093457 +25,606271263,frac_intersect_axon,basal_dendrite,none,0.6261682242990654 +26,606271263,frac_below_axon,basal_dendrite,none,0.0 +27,694146546,frac_above_axon,basal_dendrite,none,0.47685185185185186 +28,694146546,frac_intersect_axon,basal_dendrite,none,0.5231481481481481 +29,694146546,frac_below_axon,basal_dendrite,none,0.0 +30,740135032,extent,basal_dendrite,x,259.0984945349686 +31,740135032,extent,basal_dendrite,y,360.15791867251323 +32,740135032,bias,basal_dendrite,x,105.9123765215528 +33,740135032,bias,basal_dendrite,y,-5.017693772805842 diff --git a/doc/source/guide_example_features_wide.csv b/doc/source/guide_example_features_wide.csv new file mode 100644 index 0000000..128a632 --- /dev/null +++ b/doc/source/guide_example_features_wide.csv @@ -0,0 +1,4 @@ +specimen_id,axon_bias_x,axon_bias_y,axon_depth_pc_0,axon_depth_pc_1,axon_emd_with_basal_dendrite,axon_exit_distance,axon_exit_theta,axon_extent_x,axon_extent_y,axon_frac_above_basal_dendrite,axon_frac_below_basal_dendrite,axon_frac_intersect_basal_dendrite,axon_max_branch_order,axon_max_euclidean_distance,axon_max_path_distance,axon_mean_contraction,axon_num_branches,axon_num_outer_bifurcations,axon_soma_percentile_x,axon_soma_percentile_y,axon_total_length,basal_dendrite_bias_x,basal_dendrite_bias_y,basal_dendrite_calculate_number_of_stems,basal_dendrite_extent_x,basal_dendrite_extent_y,basal_dendrite_frac_above_axon,basal_dendrite_frac_below_axon,basal_dendrite_frac_intersect_axon,basal_dendrite_max_branch_order,basal_dendrite_max_euclidean_distance,basal_dendrite_max_path_distance,basal_dendrite_mean_contraction,basal_dendrite_mean_diameter,basal_dendrite_num_branches,basal_dendrite_num_outer_bifurcations,basal_dendrite_soma_percentile_x,basal_dendrite_soma_percentile_y,basal_dendrite_stem_exit_down,basal_dendrite_stem_exit_side,basal_dendrite_stem_exit_up,basal_dendrite_total_length,basal_dendrite_total_surface_area,none_early_branch_path,soma_aligned_dist_from_pia,soma_surface_area +606271263,56.22872989248452,-121.2103061622121,1557.1882340570776,-114.4320436027042,20.02095840833445,0.0,0.6246170133542251,400.4118094004192,262.2553175261422,0.0,0.2351952678631444,0.7648047321368555,25.0,240.6846227360817,902.0221232091972,0.8194136640160532,665.0,1.845098040014257,0.4889426631713383,0.7447065940713854,16935.227964908227,0.1618829328459696,107.3874873605935,7.0,292.8979665049092,227.9213594244781,0.3738317757009345,0.0,0.6261682242990654,5.0,221.48224685084813,261.57785404864563,0.8777370205959968,0.5797508521165475,35.0,0.3010299956639812,0.4870808136338647,0.1423859263331501,0.4285714285714285,0.5714285714285714,0.0,2057.344684556989,3746.221348808403,0.5122275147209207,185.35510042590795,334.48341751636667 +694146546,20.979837762279885,-337.62296125250555,-965.8114287782732,-656.6291492134859,50.38248981181829,8.953753130391712,0.8624144236833117,456.4507565320748,329.4824306809105,0.0,0.0307443365695792,0.9692556634304208,14.0,369.0094227941884,537.3808743109979,0.8804317016691116,117.0,1.462397997898956,0.3268608414239482,1.0,3856.927925804772,4.519987715724085,45.38310515181024,3.0,158.97060160570243,640.1652005614803,0.4768518518518518,0.0,0.5231481481481481,9.0,353.0402965262322,434.5470290069107,0.896216086452986,0.6016030092592592,69.0,1.1760912590556813,0.1689814814814815,0.5262345679012346,0.3333333333333333,0.0,0.6666666666666666,3185.736311407383,5983.0167307564,0.7175151344782787,363.1829539564272,240.61616017724623 +740135032,5.169444355631811,297.6111166818944,-591.3768052788041,771.0611928161894,53.84200979057096,20.438908268544992,0.5210092861882935,424.4629900629744,587.2419117540196,0.5537837260625045,0.0,0.4462162739374956,24.0,465.7975422331148,712.7996048944084,0.8629205591762148,475.0,2.05307844348342,0.3885527158823948,0.1986189221897914,17053.86846302751,105.9123765215528,-5.017693772805842,4.0,259.0984945349686,360.15791867251323,0.0,0.053083109919571,0.946916890080429,9.0,196.6200075357029,228.6181419435221,0.8927636513643621,0.4823025201072386,44.0,0.7781512503836436,0.3179624664879356,0.8273458445040215,0.0,1.0,0.0,2204.244429816128,3338.8595673807986,0.9062144295279364,488.95489922056464,201.46425475133609 diff --git a/doc/source/index.rst b/doc/source/index.rst new file mode 100644 index 0000000..2b39b38 --- /dev/null +++ b/doc/source/index.rst @@ -0,0 +1,22 @@ +.. skeleton_keys documentation master file, created by + sphinx-quickstart on Mon Oct 3 13:27:24 2022. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to skeleton_keys's documentation! +========================================= + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + + guide + reference/index + + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/doc/source/reference/cmds.rst b/doc/source/reference/cmds.rst new file mode 100644 index 0000000..4445772 --- /dev/null +++ b/doc/source/reference/cmds.rst @@ -0,0 +1,116 @@ +.. _cmds: + +.. module:: skeleton_keys.cmds + +Command Line Utilities (:mod:`skeleton_keys.cmds`) +======================================================== + +These command line utility scripts are designed to be used together to create +a morphology feature processing pipeline. + +You can access information about the arguments for each script by +passing the ``--help`` option on the command line. + +.. currentmodule:: skeleton_keys.cmds + + +``skelekeys-layer-aligned-swc`` +------------------------------- + +Script to generate a layer-aligned SWC file. + +.. autosummary:: + :toctree: generated/ + + layer_aligned_swc.LayerAlignedSwcSchema + + +``skelekeys-upright-corrected-swc`` +----------------------------------- + +Script to generate an upright, slice angle-corrected SWC file (but without +layer alignment). + +.. autosummary:: + :toctree: generated/ + + upright_corrected_swc.UprightCorrectedSwcSchema + upright_corrected_swc.soma_distance_from_pia + + +``skelekeys-profiles-from-swcs`` +-------------------------------- + +Script to calculate layer-aligned depth profile histograms from a set of SWC files. + +.. autosummary:: + :toctree: generated/ + + depth_profiles_from_aligned_swcs.ProfilesFromAlignedSwcsParameters + + +``skelekeys-calc-histogram-loadings`` +------------------------------------- + +Script to calculate the PCA loadings for a set of layer-aligned depth profile +histograms. + +.. autosummary:: + :toctree: generated/ + + calc_histogram_loadings.CalcHistogramLoadingsParameters + + +``skelekeys-morph-features`` +---------------------------- + +Script to calculate morphological features for a set of SWC files. + +.. autosummary:: + :toctree: generated/ + + process_morphology_features.ProcessMorphologyFeaturesParameters + process_morphology_features.soma_locations + process_morphology_features.select_and_convert_depth_columns + process_morphology_features.analyze_depth_profiles + process_morphology_features.specimen_morph_features + +``skelekeys-postprocess-features`` +---------------------------------- + +Script to perform postprocessing on the long-form morphology feature files (convert +to wide format and perform z-score normalization). + +When this script normalizes the values, it normalizes all the values with the same +feature name to the same scale. This means that, for example, the feature `extent` +will be normalized in both `x` and `y` dimensions (i.e., width and height) with +the same scale. The intention is to avoid overemphasizing differences in particular +dimensions where slight differences may not be relevant. + +.. autosummary:: + :toctree: generated/ + + postprocess_features.PostprocessFeaturesParameters + + +``skelekeys-layer-aligned-coords`` +------------------------------- + +Script to layer-aligned coordinates from a general CSV file. + +.. autosummary:: + :toctree: generated/ + + layer_aligned_coords.LayerAlignedCoordsSchema + + +``skelekeys-layer-aligned-swc`` +------------------------------- + +Script to calculate layer-aligned depth profile histograms from a CSV with +layer-aligned coordinates. + +.. autosummary:: + :toctree: generated/ + + depth_profiles_from_aligned_coords.ProfilesFromAlignedCoordsParameters diff --git a/doc/source/reference/database_queries.rst b/doc/source/reference/database_queries.rst new file mode 100644 index 0000000..32ede15 --- /dev/null +++ b/doc/source/reference/database_queries.rst @@ -0,0 +1,51 @@ +.. _database_queries: + +.. module:: skeleton_keys.database_queries + +Database Queries (:mod:`skeleton_keys.database_queries`) +======================================================== + +These functions are used to interface with the private Allen Institute for +Brain Science LIMS database. Users external to the Allen Institute will generally +not have a use for these functions. + + +.. currentmodule:: skeleton_keys + + +Queries with default engine +--------------------------- + +.. autosummary:: + :toctree: generated/ + + database_queries.swc_paths_from_database + database_queries.pia_wm_soma_from_database + database_queries.shrinkage_factor_from_database + database_queries.layer_polygons_from_database + database_queries.determine_flip_switch + + +Queries with specified engine +----------------------------- + +.. autosummary:: + :toctree: generated/ + + database_queries.query_for_swc_file + database_queries.query_for_image_series_id + database_queries.query_for_cortical_surfaces + database_queries.query_for_layer_polygons + database_queries.query_for_soma_center + database_queries.query_marker_file + database_queries.query_cell_depth + database_queries.query_pinning_info + + +Query Engine +------------ + +.. autosummary:: + :toctree: generated/ + + database_queries.default_query_engine diff --git a/doc/source/reference/depth_profile.rst b/doc/source/reference/depth_profile.rst new file mode 100644 index 0000000..e03eab5 --- /dev/null +++ b/doc/source/reference/depth_profile.rst @@ -0,0 +1,19 @@ +.. _depth_profile: + +.. module:: skeleton_keys.depth_profile + +Depth Profile Features (:mod:`skeleton_keys.depth_profile`) +=========================================================== + +These functions calculate morphological features based on a layer-aligned +depth profile histogram. + +.. currentmodule:: skeleton_keys + +.. autosummary:: + :toctree: generated/ + + depth_profile.calculate_pca_transforms_and_loadings + depth_profile.apply_loadings_to_profiles + depth_profile.earthmover_distance_between_compartments + depth_profile.overlap_between_compartments diff --git a/doc/source/reference/drawings.rst b/doc/source/reference/drawings.rst new file mode 100644 index 0000000..ec5dd00 --- /dev/null +++ b/doc/source/reference/drawings.rst @@ -0,0 +1,17 @@ +.. _drawings: + +.. module:: skeleton_keys.drawings + +Layer Drawings (:mod:`skeleton_keys.drawings`) +======================================================== + +These functions process manually-drawn layer polygons. + +.. currentmodule:: skeleton_keys + + +.. autosummary:: + :toctree: generated/ + + drawings.snap_hand_drawn_polygons + drawings.convert_and_translate_snapped_to_microns diff --git a/doc/source/reference/feature_definition.rst b/doc/source/reference/feature_definition.rst new file mode 100644 index 0000000..7d55399 --- /dev/null +++ b/doc/source/reference/feature_definition.rst @@ -0,0 +1,17 @@ +.. _feature_definition: + +.. module:: skeleton_keys.feature_definition + +Feature Definition (:mod:`skeleton_keys.feature_definition`) +============================================================ + +This module sets up the default features calculated by ``skeleton_keys``. + + +.. currentmodule:: skeleton_keys + + +.. autosummary:: + :toctree: generated/ + + feature_definition.default_features \ No newline at end of file diff --git a/doc/source/reference/index.rst b/doc/source/reference/index.rst new file mode 100644 index 0000000..ebe0ed0 --- /dev/null +++ b/doc/source/reference/index.rst @@ -0,0 +1,17 @@ +API Reference +============= + +.. toctree:: + :maxdepth: 2 + + cmds + database_queries + depth_profile + drawings + feature_definition + io + layer_alignment + plotting + shrinkage + slice_angle + upright \ No newline at end of file diff --git a/doc/source/reference/io.rst b/doc/source/reference/io.rst new file mode 100644 index 0000000..6a8865b --- /dev/null +++ b/doc/source/reference/io.rst @@ -0,0 +1,37 @@ +.. _io: + +.. module:: skeleton_keys.io + +Input/Output (:mod:`skeleton_keys.io`) +======================================================== + +These functions load SWCs and reference information. + +.. currentmodule:: skeleton_keys + + +SWC files +--------- + +.. autosummary:: + :toctree: generated/ + + io.load_swc_as_dataframe + + +Reference information +--------------------- + +.. autosummary:: + :toctree: generated/ + + io.load_default_layer_template + + +Saving internal database information to files +--------------------------------------------- + +.. autosummary:: + :toctree: generated/ + + io.save_lims_surface_and_layers_to_json \ No newline at end of file diff --git a/doc/source/reference/layer_alignment.rst b/doc/source/reference/layer_alignment.rst new file mode 100644 index 0000000..ea8d41a --- /dev/null +++ b/doc/source/reference/layer_alignment.rst @@ -0,0 +1,26 @@ +.. _layer_alignment: + +.. module:: skeleton_keys.layer_alignment + +Layer Alignment (:mod:`skeleton_keys.layer_alignment`) +======================================================== + +These functions calculate the layer-aligned depths of morphologies using +layer drawings in the same space. + +.. currentmodule:: skeleton_keys + +.. autosummary:: + :toctree: generated/ + + layer_alignment.layer_aligned_y_values + layer_alignment.layer_aligned_y_values_for_morph + layer_alignment.cortex_thickness_aligned_y_values + layer_alignment.cortex_thickness_aligned_y_values_for_morph + layer_alignment.fractions_within_layers + layer_alignment.step_all_nodes + layer_alignment.layer_side_depths + layer_alignment.layer_locations + layer_alignment.setup_interpolator_without_nan + layer_alignment.path_dist_from_node + layer_alignment.calculate_length_of_path_list diff --git a/doc/source/reference/plotting.rst b/doc/source/reference/plotting.rst new file mode 100644 index 0000000..fa1df95 --- /dev/null +++ b/doc/source/reference/plotting.rst @@ -0,0 +1,16 @@ +.. _plotting: + +.. module:: skeleton_keys.plotting + +Plotting (:mod:`skeleton_keys.plotting`) +======================================================== + +Functions to visualize cells and layer drawings. + +.. currentmodule:: skeleton_keys + +.. autosummary:: + :toctree: generated/ + + plotting.plot_cortical_cell + plotting.plot_layer_polygon \ No newline at end of file diff --git a/doc/source/reference/slice_angle.rst b/doc/source/reference/slice_angle.rst new file mode 100644 index 0000000..8ea01ee --- /dev/null +++ b/doc/source/reference/slice_angle.rst @@ -0,0 +1,15 @@ +.. _plotting: + +.. module:: skeleton_keys.slice_angle + +Slice Angle (:mod:`skeleton_keys.slice_angle`) +======================================================== + +Slice angle calculation for further correction to morphologies. + +.. currentmodule:: skeleton_keys + +.. autosummary:: + :toctree: generated/ + + slice_angle.slice_angle_tilt \ No newline at end of file diff --git a/doc/source/reference/upright.rst b/doc/source/reference/upright.rst new file mode 100644 index 0000000..75fdbb4 --- /dev/null +++ b/doc/source/reference/upright.rst @@ -0,0 +1,18 @@ +.. _upright: + +.. module:: skeleton_keys.upright + +Uprighting Morphologies (:mod:`skeleton_keys.upright`) +======================================================== + +Functions related to adjusting the rotation of morphologies so that the direction to the pia is up (positive y-axis) +and the direction to the white matter is down (negative y-axis). + + +.. currentmodule:: skeleton_keys + +.. autosummary:: + :toctree: generated/ + + upright.upright_corrected_morph + upright.corrected_without_uprighting_morph \ No newline at end of file diff --git a/example_data/606271263_surfaces_and_layers.json b/example_data/606271263_surfaces_and_layers.json new file mode 100755 index 0000000..db9f717 --- /dev/null +++ b/example_data/606271263_surfaces_and_layers.json @@ -0,0 +1 @@ +{"pia_path": {"name": "Pia", "path": [[13120.0, 1488.0], [14656.0, 2400.0], [15400.0, 2912.0], [16144.0, 3440.0], [16840.0, 4096.0], [17440.0, 4720.0], [17896.0, 5200.0], [18272.0, 5688.0], [18584.0, 6136.0], [18776.0, 6376.0]], "resolution": 0.3603, "biospecimen_id": 606271263}, "wm_path": {"name": "White Matter", "path": [[12080.0, 4152.0], [12800.0, 4584.0], [13528.0, 5096.0], [14336.0, 5800.0], [14952.0, 6376.0], [15560.0, 7056.0], [15936.0, 7568.0], [16256.0, 8024.0]], "resolution": 0.3603, "biospecimen_id": 606271263}, "soma_path": {"name": "Soma", "path": [[16564.0, 4592.0], [16558.0, 4594.0], [16557.0, 4585.0], [16557.0, 4573.0], [16557.0, 4562.0], [16560.0, 4558.0], [16570.0, 4554.0], [16575.0, 4558.0], [16578.0, 4564.0], [16578.0, 4575.0], [16578.0, 4581.0], [16574.0, 4588.0], [16570.0, 4591.0], [16564.0, 4592.0]], "center": [16567.14285714286, 4576.214285714285], "resolution": 0.3603}, "layer_polygons": [{"name": "Layer6b", "path": [[16330.0, 7892.0], [15856.0, 7235.0], [15348.0, 6610.0], [14836.0, 6079.0], [14179.0, 5493.0], [13610.0, 5019.0], [12989.0, 4502.0], [12203.0, 3817.0], [12208.0, 3934.0], [12889.0, 4600.0], [13641.0, 5191.0], [14343.0, 5822.0], [14958.0, 6359.0], [15589.0, 7076.0], [16217.0, 7958.0], [16330.0, 7892.0]], "resolution": 0.3603}, {"name": "Layer2/3", "path": [[13029.0, 1863.0], [13506.0, 2253.0], [13925.0, 2562.0], [14444.0, 2789.0], [14982.0, 3157.0], [15731.0, 3608.0], [16366.0, 4120.0], [17072.0, 4848.0], [17466.0, 5200.0], [17919.0, 5768.0], [18221.0, 6167.0], [18504.0, 6551.0], [18053.0, 6852.0], [17455.0, 6047.0], [16833.0, 5369.0], [15336.0, 4029.0], [14456.0, 3416.0], [13656.0, 3104.0], [12689.0, 2528.0], [13029.0, 1863.0]], "resolution": 0.3603}, {"name": "Layer4", "path": [[14456.0, 3432.0], [15306.0, 4003.0], [16143.0, 4748.0], [16828.0, 5375.0], [17449.0, 6042.0], [18065.0, 6851.0], [17777.0, 7007.0], [17462.0, 6586.0], [16065.0, 5089.0], [14313.0, 3556.0], [13712.0, 3136.0], [14456.0, 3432.0]], "resolution": 0.3603}, {"name": "Layer1", "path": [[13228.0, 1524.0], [14776.0, 2492.0], [15427.0, 2925.0], [16159.0, 3434.0], [16878.0, 4132.0], [17902.0, 5190.0], [18789.0, 6373.0], [18504.0, 6551.0], [17918.0, 5756.0], [17478.0, 5210.0], [17066.0, 4843.0], [16353.0, 4099.0], [15726.0, 3614.0], [14982.0, 3157.0], [14438.0, 2784.0], [13918.0, 2557.0], [13487.0, 2237.0], [13029.0, 1863.0], [13228.0, 1524.0]], "resolution": 0.3603}, {"name": "Layer6a", "path": [[16890.0, 7565.0], [15916.0, 6433.0], [14817.0, 5335.0], [13712.0, 4272.0], [13104.0, 3424.0], [12808.0, 3112.0], [12496.0, 2936.0], [12208.0, 3848.0], [12982.0, 4485.0], [13530.0, 4941.0], [14826.0, 6054.0], [15317.0, 6555.0], [15798.0, 7144.0], [16347.0, 7892.0], [16890.0, 7565.0]], "resolution": 0.3603}, {"name": "Layer5", "path": [[12696.0, 2534.0], [14306.0, 3551.0], [15266.0, 4398.0], [16072.0, 5106.0], [17124.0, 6229.0], [17474.0, 6596.0], [17777.0, 7007.0], [16872.0, 7549.0], [15915.0, 6416.0], [14867.0, 5375.0], [13667.0, 4226.0], [13085.0, 3414.0], [12821.0, 3119.0], [12498.0, 2931.0], [12696.0, 2534.0]], "resolution": 0.3603}]} \ No newline at end of file diff --git a/example_data/694146546_surfaces_and_layers.json b/example_data/694146546_surfaces_and_layers.json new file mode 100755 index 0000000..e17c794 --- /dev/null +++ b/example_data/694146546_surfaces_and_layers.json @@ -0,0 +1 @@ +{"pia_path": {"name": "Pia", "path": [[1832.0, 6816.0], [2123.0, 6053.0], [3324.0, 4280.0], [3520.0, 4009.0], [3667.0, 3805.0], [3829.0, 3581.0], [3962.0, 3405.0], [4118.0, 3207.0], [4317.0, 2983.0], [4508.0, 2772.0], [4704.0, 2563.0]], "resolution": 0.3603, "biospecimen_id": 694146546}, "wm_path": {"name": "White Matter", "path": [[4016.0, 7569.0], [4970.0, 5942.0], [5424.0, 5274.0], [5540.0, 5106.0], [5622.0, 4984.0], [5730.0, 4806.0], [5825.0, 4660.0], [5902.0, 4540.0], [5983.0, 4372.0]], "resolution": 0.3603, "biospecimen_id": 694146546}, "soma_path": {"name": "Soma", "path": [[3366.0, 6109.0], [3365.0, 6110.0], [3364.0, 6111.0], [3362.0, 6111.0], [3361.0, 6112.0], [3361.0, 6112.0], [3359.0, 6112.0], [3357.0, 6112.0], [3356.0, 6112.0], [3354.0, 6113.0], [3354.0, 6112.0], [3352.0, 6111.0], [3348.0, 6111.0], [3348.0, 6110.0], [3347.0, 6110.0], [3345.0, 6108.0], [3341.0, 6108.0], [3340.0, 6107.0], [3339.0, 6107.0], [3338.0, 6106.0], [3337.0, 6105.0], [3335.0, 6104.0], [3334.0, 6103.0], [3333.0, 6102.0], [3332.0, 6101.0], [3331.0, 6101.0], [3332.0, 6100.0], [3332.0, 6099.0], [3333.0, 6098.0], [3333.0, 6097.0], [3334.0, 6097.0], [3335.0, 6095.0], [3336.0, 6093.0], [3337.0, 6093.0], [3337.0, 6092.0], [3339.0, 6092.0], [3341.0, 6090.0], [3344.0, 6091.0], [3346.0, 6090.0], [3347.0, 6090.0], [3349.0, 6089.0], [3351.0, 6089.0], [3352.0, 6089.0], [3353.0, 6088.0], [3355.0, 6088.0], [3356.0, 6088.0], [3358.0, 6089.0], [3359.0, 6089.0], [3360.0, 6090.0], [3363.0, 6089.0], [3364.0, 6090.0], [3366.0, 6091.0], [3366.0, 6091.0], [3368.0, 6093.0], [3369.0, 6094.0], [3370.0, 6094.0], [3371.0, 6095.0], [3372.0, 6096.0], [3372.0, 6097.0], [3372.0, 6098.0], [3372.0, 6099.0], [3371.0, 6100.0], [3370.0, 6101.0], [3370.0, 6103.0], [3368.0, 6105.0], [3366.0, 6109.0]], "center": [3352.242424242424, 6099.712121212121], "resolution": 0.3603}, "layer_polygons": [{"name": "Layer6b", "path": [[4036.0, 7340.0], [5016.0, 5722.0], [5400.0, 5165.0], [5525.0, 4960.0], [5716.0, 4678.0], [5812.0, 4491.0], [5914.0, 4303.0], [5973.0, 4401.0], [5892.0, 4544.0], [5716.0, 4821.0], [5619.0, 4985.0], [5445.0, 5243.0], [4966.0, 5944.0], [4125.0, 7381.0], [4036.0, 7340.0]], "resolution": 0.3603}, {"name": "Layer1", "path": [[1944.0, 6589.0], [2131.0, 6073.0], [3652.0, 3832.0], [3840.0, 3572.0], [4122.0, 3206.0], [4380.0, 2918.0], [4546.0, 2732.0], [4706.0, 2568.0], [4941.0, 2870.0], [4690.0, 3198.0], [4167.0, 3875.0], [3781.0, 4393.0], [2196.0, 6688.0], [1944.0, 6589.0]], "resolution": 0.3603}, {"name": "Layer4", "path": [[5216.0, 3146.0], [5327.0, 3268.0], [5222.0, 3431.0], [4993.0, 3794.0], [4874.0, 4035.0], [4674.0, 4432.0], [4507.0, 4729.0], [4278.0, 5101.0], [2978.0, 6982.0], [2764.0, 6896.0], [4087.0, 5013.0], [4268.0, 4729.0], [4504.0, 4318.0], [4822.0, 3719.0], [4931.0, 3551.0], [5059.0, 3364.0], [5156.0, 3229.0], [5216.0, 3146.0]], "resolution": 0.3603}, {"name": "Layer6a", "path": [[3571.0, 7186.0], [4809.0, 5214.0], [4970.0, 4955.0], [5145.0, 4636.0], [5335.0, 4248.0], [5498.0, 3908.0], [5635.0, 3664.0], [5918.0, 4291.0], [5795.0, 4513.0], [5670.0, 4737.0], [5533.0, 4946.0], [5405.0, 5133.0], [5290.0, 5312.0], [5016.0, 5717.0], [4029.0, 7330.0], [3571.0, 7186.0]], "resolution": 0.3603}, {"name": "Layer2/3", "path": [[2196.0, 6688.0], [3706.0, 4496.0], [4085.0, 3987.0], [4493.0, 3449.0], [4791.0, 3065.0], [4942.0, 2869.0], [5217.0, 3141.0], [4987.0, 3471.0], [4821.0, 3722.0], [4633.0, 4073.0], [4513.0, 4301.0], [4266.0, 4732.0], [4157.0, 4899.0], [4075.0, 5029.0], [2762.0, 6899.0], [2196.0, 6688.0]], "resolution": 0.3603}, {"name": "Layer5", "path": [[2981.0, 6984.0], [4311.0, 5049.0], [4504.0, 4737.0], [4687.0, 4409.0], [4853.0, 4082.0], [4997.0, 3791.0], [5188.0, 3482.0], [5327.0, 3268.0], [5636.0, 3660.0], [5528.0, 3855.0], [5314.0, 4283.0], [5133.0, 4657.0], [4971.0, 4950.0], [4789.0, 5244.0], [3561.0, 7180.0], [2981.0, 6984.0]], "resolution": 0.3603}]} \ No newline at end of file diff --git a/example_data/740135032_surfaces_and_layers.json b/example_data/740135032_surfaces_and_layers.json new file mode 100755 index 0000000..1963119 --- /dev/null +++ b/example_data/740135032_surfaces_and_layers.json @@ -0,0 +1 @@ +{"pia_path": {"name": "Pia", "path": [[5492.0, 3696.0], [5816.0, 3500.0], [6372.0, 3240.0], [6904.0, 2980.0], [7316.0, 2724.0], [7536.0, 2584.0]], "resolution": 0.3603, "biospecimen_id": 740135032}, "wm_path": {"name": "White Matter", "path": [[7120.0, 5740.0], [7512.0, 5416.0], [7896.0, 5128.0], [8260.0, 4860.0], [8528.0, 4656.0]], "resolution": 0.3603, "biospecimen_id": 740135032}, "soma_path": {"name": "Soma", "path": [[7285.0, 4137.0], [7266.0, 4147.0], [7273.0, 4165.0], [7284.0, 4169.0], [7301.0, 4165.0], [7310.0, 4156.0], [7305.0, 4138.0], [7296.0, 4133.0], [7285.0, 4137.0]], "center": [7289.444444444444, 4149.666666666667], "resolution": 0.3603}, "layer_polygons": [{"name": "Layer6b", "path": [[7064.0, 5651.0], [7359.0, 5394.0], [7611.0, 5174.0], [7899.0, 4961.0], [8273.0, 4681.0], [8412.0, 4522.0], [8526.0, 4655.0], [8369.0, 4783.0], [8020.0, 5035.0], [7507.0, 5419.0], [7134.0, 5731.0], [7064.0, 5651.0]], "resolution": 0.3603}, {"name": "Layer4", "path": [[7685.0, 3492.0], [7852.0, 3719.0], [7712.0, 3827.0], [7437.0, 4023.0], [7049.0, 4286.0], [6360.0, 4707.0], [6196.0, 4481.0], [6554.0, 4237.0], [6909.0, 4005.0], [7402.0, 3674.0], [7629.0, 3524.0], [7685.0, 3492.0]], "resolution": 0.3603}, {"name": "Layer6a", "path": [[6718.0, 5204.0], [7035.0, 4952.0], [7389.0, 4702.0], [7805.0, 4406.0], [8011.0, 4251.0], [8133.0, 4134.0], [8411.0, 4528.0], [8264.0, 4682.0], [7920.0, 4949.0], [7604.0, 5178.0], [7252.0, 5488.0], [7066.0, 5646.0], [6718.0, 5204.0]], "resolution": 0.3603}, {"name": "Layer5", "path": [[6368.0, 4707.0], [6679.0, 4509.0], [7047.0, 4282.0], [7428.0, 4020.0], [7684.0, 3841.0], [7848.0, 3712.0], [8133.0, 4134.0], [8004.0, 4263.0], [7467.0, 4652.0], [7324.0, 4749.0], [7042.0, 4948.0], [6715.0, 5206.0], [6368.0, 4707.0]], "resolution": 0.3603}, {"name": "Layer1", "path": [[5590.0, 3639.0], [5835.0, 3488.0], [6271.0, 3283.0], [6891.0, 2981.0], [7302.0, 2734.0], [7442.0, 3023.0], [7159.0, 3205.0], [6823.0, 3382.0], [6353.0, 3633.0], [6033.0, 3735.0], [5760.0, 3902.0], [5590.0, 3639.0]], "resolution": 0.3603}, {"name": "Layer2/3", "path": [[5760.0, 3902.0], [6033.0, 3735.0], [6346.0, 3637.0], [6818.0, 3383.0], [7165.0, 3201.0], [7435.0, 3027.0], [7684.0, 3490.0], [7402.0, 3680.0], [6919.0, 3990.0], [6558.0, 4244.0], [6200.0, 4488.0], [5760.0, 3902.0]], "resolution": 0.3603}]} \ No newline at end of file diff --git a/example_data/Sst-IRES-Cre_Ai14-408415.03.02.02_864876723_m.swc b/example_data/Sst-IRES-Cre_Ai14-408415.03.02.02_864876723_m.swc new file mode 100755 index 0000000..e9dfae0 --- /dev/null +++ b/example_data/Sst-IRES-Cre_Ai14-408415.03.02.02_864876723_m.swc @@ -0,0 +1,15916 @@ +# generated by Vaa3D Plugin sort_neuron_swc +# source file(s): C:/Users/alicem/Desktop/1a/check/Sst-IRES-Cre;Ai14-408415.03.02.02_774485076_p_DendriteAxon.swc +# id,type,x,y,z,r,pid +1 1 443.7668 560.8746 25.802 4.004 -1 +2 3 447.9401 562.4693 23.225 0.4665 1 +3 3 448.885 563.0619 22.6751 0.2771 2 +4 3 449.9272 563.4749 22.2276 0.2764 3 +5 3 451.0495 563.4738 21.8782 0.2758 4 +6 3 452.1854 563.4818 21.5706 0.2752 5 +7 3 453.1247 564.0812 21.3484 0.2746 6 +8 3 453.9129 564.9049 21.1794 0.274 7 +9 3 454.7286 565.7034 21.0111 0.2735 8 +10 3 455.5053 566.5408 20.8461 0.2729 9 +11 3 456.3553 567.3027 20.704 0.2723 10 +12 3 457.4593 567.5361 20.5689 0.2717 11 +13 3 458.5495 567.8381 20.4322 0.2711 12 +14 3 459.3824 568.6172 20.2613 0.2705 13 +15 3 460.3284 569.2407 20.0099 0.2699 14 +16 3 461.3946 569.6308 19.7581 0.2693 15 +17 3 462.2893 570.3069 19.514 0.2687 16 +18 3 462.8407 571.3022 19.2728 0.2682 17 +19 3 463.2525 572.3626 19.062 0.2676 18 +20 3 463.5065 573.4746 18.8517 0.267 19 +21 3 463.8314 574.5431 18.6769 0.2664 20 +22 3 464.6711 575.1391 18.5399 0.2658 21 +23 3 465.8025 575.0648 18.4376 0.2652 22 +24 3 466.9236 575.2707 18.3487 0.2647 23 +25 3 467.9875 575.6722 18.2385 0.2641 24 +26 3 468.9119 576.3243 18.1254 0.2635 25 +27 3 469.7493 577.0919 18.0367 0.2629 26 +28 3 470.7274 577.6811 17.9658 0.2624 27 +29 3 471.7444 578.2039 17.9106 0.2618 28 +30 3 472.7523 578.745 17.8693 0.2612 29 +31 3 473.7441 579.3159 17.8304 0.2606 30 +32 3 474.7806 579.738 17.7654 0.2601 31 +33 3 475.904 579.6911 17.6849 0.2595 32 +34 3 476.9977 579.6316 17.6363 0.2589 33 +35 3 478.049 580.0698 17.6274 0.2583 34 +36 3 479.1152 580.3077 17.6829 0.2577 35 +37 3 480.2523 580.1876 17.775 0.2571 36 +38 3 481.3906 580.1624 17.8644 0.2565 37 +39 3 482.5095 580.3615 17.9365 0.256 38 +40 3 483.5208 580.8614 17.9743 0.2554 39 +41 3 484.4142 581.573 18.0105 0.2548 40 +42 3 485.3729 582.1782 18.1207 0.2542 41 +43 3 486.2492 582.8749 18.3782 0.2536 42 +44 3 486.9013 583.7992 18.7237 0.253 43 +45 3 487.749 584.5279 19.0568 0.2524 44 +46 3 488.7145 585.132 19.3179 0.2518 45 +47 3 489.7029 585.7028 19.5 0.2512 46 +48 3 490.8069 585.9248 19.6135 0.2507 47 +49 3 491.9475 585.8893 19.6706 0.2501 48 +50 3 493.0617 586.1032 19.7008 0.2495 49 +51 3 494.1165 586.5402 19.7231 0.2489 50 +52 3 495.0523 587.19 19.7806 0.2483 51 +53 3 496.0087 587.8169 19.8624 0.2478 52 +54 3 496.9101 588.5194 19.8926 0.2472 53 +55 3 497.6183 589.4128 19.9062 0.2466 54 +56 3 498.4614 590.1816 19.9347 0.246 55 +57 3 499.1455 591.0934 20.0067 0.2454 56 +58 3 499.4647 592.1847 20.1126 0.2449 57 +59 3 499.8228 593.2692 20.2633 0.2443 58 +60 3 500.2254 594.3366 20.4688 0.2437 59 +61 3 500.4348 595.4566 20.6698 0.2431 60 +62 3 500.6762 596.5731 20.8238 0.2426 61 +63 3 501.0274 597.6611 20.932 0.242 62 +64 3 501.6097 598.6426 21.0083 0.2414 63 +65 3 502.4185 599.448 21.0658 0.2408 64 +66 3 503.4595 599.9113 21.0893 0.2403 65 +67 3 504.3416 600.6355 21.0664 0.2397 66 +68 3 504.8804 601.6399 21.1791 0.2391 67 +69 3 505.354 602.6764 21.4231 0.2385 68 +70 3 506.069 603.563 21.6821 0.2379 69 +71 3 506.7886 604.445 21.9531 0.2374 70 +72 3 507.1524 605.5226 22.2553 0.2368 71 +73 3 507.5665 605.7995 22.6571 0.2368 72 +74 3 508.5377 606.2834 23.4274 0.2368 73 +75 3 509.5113 606.7719 24.0129 0.2366 74 +76 3 510.3064 607.5612 24.5705 0.2366 75 +77 3 511.082 608.3689 25.1318 0.2365 76 +78 3 511.8519 609.1754 25.7486 0.2364 77 +79 3 512.6573 609.9442 26.3448 0.2363 78 +80 3 513.6011 610.5459 26.8329 0.2363 79 +81 3 514.673 610.713 27.2581 0.2362 80 +82 3 515.7209 610.9669 27.682 0.2361 81 +83 3 516.2197 611.8512 28.198 0.2361 82 +84 3 516.3936 612.9586 28.7465 0.236 83 +85 3 516.2014 614.026 29.3513 0.2359 84 +86 3 516.4188 615.0167 30.0913 0.2359 85 +87 3 517.3042 615.5498 30.9546 0.2358 86 +88 3 518.208 616.1012 31.9838 0.2357 87 +89 3 519.0488 616.8116 32.741 0.2356 88 +90 3 519.8256 617.6101 33.3729 0.2356 89 +91 3 520.2489 618.642 33.9276 0.2355 90 +92 3 520.5086 619.7334 34.468 0.2354 91 +93 3 520.409 620.8545 34.9423 0.2353 92 +94 3 520.5566 621.8258 35.639 0.2353 93 +95 3 521.5782 622.2651 36.2748 0.2352 94 +96 3 522.4934 622.8371 36.7312 0.2351 95 +97 3 523.0997 623.7946 37.0723 0.235 96 +98 3 523.8101 624.6446 37.3685 0.235 97 +99 3 524.7745 625.2463 37.6555 0.2349 98 +100 3 525.8076 625.7097 37.9753 0.2348 99 +101 3 526.9024 625.9613 38.4135 0.2347 100 +102 3 528.0155 626.1089 38.939 0.2347 101 +103 3 529.0554 626.4887 39.4425 0.2346 102 +104 3 530.0312 627.0607 39.8658 0.2345 103 +105 3 531.0928 627.3318 40.2422 0.2345 104 +106 3 532.2197 627.3971 40.696 0.2344 105 +107 3 533.3294 627.5915 41.1421 0.2343 106 +108 3 534.3475 628.0663 41.5097 0.2343 107 +109 3 535.0122 628.9449 41.8592 0.2342 108 +110 3 535.5968 629.9127 42.2657 0.2341 109 +111 3 536.3083 630.7947 42.6056 0.234 110 +112 3 537.084 631.623 42.9556 0.234 111 +113 3 538.1376 631.8815 43.435 0.2339 112 +114 3 539.0322 632.5256 43.9396 0.2338 113 +115 3 539.9417 633.1971 44.373 0.2338 114 +116 3 540.4679 634.1707 44.8882 0.2337 115 +117 3 540.6064 635.2861 45.3698 0.2336 116 +118 3 541.3133 636.1647 45.7509 0.2335 117 +119 3 542.3464 636.6383 46.025 0.2335 118 +120 3 543.4343 636.9769 46.2571 0.2334 119 +121 3 544.4445 637.5032 46.5161 0.2333 120 +122 3 545.4718 637.9962 46.755 0.2333 121 +123 3 546.3836 638.678 46.9392 0.2332 122 +124 3 547.0654 639.5875 47.0526 0.2331 123 +125 3 548.0915 640.0474 47.1324 0.233 124 +126 3 549.2195 640.1435 47.2612 0.233 125 +127 3 550.1496 640.7098 47.4827 0.2329 126 +128 3 550.7193 641.6936 47.784 0.2328 127 +129 3 551.3908 642.6065 48.0866 0.2327 128 +130 3 552.25 643.3284 48.356 0.2327 129 +131 3 553.3116 643.6899 48.638 0.2326 130 +132 3 554.379 644.0125 48.9454 0.2325 131 +133 3 555.4006 644.509 49.2083 0.2325 132 +134 3 556.5034 644.6634 49.4704 0.2324 133 +135 3 557.6348 644.7252 49.7818 0.2323 134 +136 3 558.6667 645.1416 50.1088 0.2322 135 +137 3 559.6082 645.7777 50.398 0.2322 136 +138 3 560.5634 646.3989 50.6456 0.2321 137 +139 3 561.5118 647.0304 50.8928 0.232 138 +140 3 562.1124 647.9456 51.1734 0.232 139 +141 3 562.3469 649.0518 51.4665 0.2319 140 +142 3 562.9029 650.0014 51.8395 0.2318 141 +143 3 563.6248 650.8696 52.2822 0.2317 142 +144 3 564.389 651.691 52.8217 0.2317 143 +145 3 565.2218 652.4381 53.4066 0.2316 144 +146 3 566.0443 653.2034 53.9288 0.2315 145 +147 3 567.0167 653.7697 54.4186 0.2314 146 +148 3 567.8953 654.463 54.9914 0.2314 147 +149 3 568.838 655.067 55.5478 0.2313 148 +150 3 569.6685 655.8335 55.993 0.2312 149 +151 3 570.5094 656.5908 56.3774 0.2312 150 +152 3 571.2736 657.3813 56.9016 0.2311 151 +153 3 572.326 657.8034 57.2376 0.231 152 +154 3 573.311 658.3628 57.4963 0.2309 153 +155 3 574.1484 659.1305 57.7853 0.2309 154 +156 3 574.9458 659.9381 58.0835 0.2308 155 +157 3 575.8358 660.6486 58.3307 0.2307 156 +158 3 576.5257 661.4814 58.548 0.2307 157 +159 3 576.8014 662.5865 58.7594 0.2306 158 +160 3 577.275 663.6047 59.0013 0.2305 159 +161 3 577.8905 664.5485 59.3158 0.2304 160 +162 3 578.4567 665.5071 59.7388 0.2304 161 +163 3 579.3685 666.1226 60.2322 0.2303 162 +164 3 580.278 666.7552 60.6738 0.2302 163 +165 3 581.104 667.524 61.1257 0.2302 164 +166 3 581.9688 668.2413 61.6406 0.2301 165 +167 3 582.8588 668.9323 62.1368 0.23 166 +168 3 583.7237 669.6553 62.5971 0.2299 167 +169 3 584.6343 670.3325 62.9306 0.2299 168 +170 3 585.3871 671.1779 63.1509 0.2298 169 +171 3 585.8252 672.2213 63.3245 0.2297 170 +172 3 586.3972 673.2017 63.5342 0.2296 171 +173 3 587.1683 674.0368 63.7837 0.2296 172 +174 3 587.6774 675.0447 64.0802 0.2295 173 +175 3 587.8822 676.1589 64.4036 0.2294 174 +176 3 588.3661 677.1805 64.738 0.2294 175 +177 3 588.9758 678.1426 65.0082 0.2293 176 +178 3 589.2195 679.2546 65.1549 0.2292 177 +179 3 589.4277 680.3791 65.1865 0.2291 178 +180 3 590.0992 681.3012 65.1722 0.2291 179 +181 3 590.7227 682.2599 65.1392 0.229 180 +182 3 591.0098 683.3661 65.1022 0.2289 181 +183 3 591.7546 684.2333 65.0661 0.2289 182 +184 3 507.8479 606.8405 21.3187 0.2367 72 +185 3 508.7002 607.5978 21.1997 0.2366 184 +186 3 509.4495 608.4604 21.0678 0.2365 185 +187 3 510.2812 609.204 20.9618 0.2364 186 +188 3 511.3383 609.6319 20.8947 0.2363 187 +189 3 512.4445 609.9167 20.8653 0.2361 188 +190 3 513.5759 610.0677 20.8693 0.236 189 +191 3 514.6787 610.2908 20.9023 0.2359 190 +192 3 515.4178 611.0401 20.9605 0.2358 191 +193 3 515.9028 612.072 21.0353 0.2357 192 +194 3 516.77 612.6623 21.1823 0.2356 193 +195 3 517.8648 612.9769 21.3978 0.2355 194 +196 3 518.6667 613.7217 21.6126 0.2354 195 +197 3 519.4263 614.5717 21.784 0.2353 196 +198 3 520.4331 615.0613 21.8958 0.2352 197 +199 3 521.4226 615.6242 21.9655 0.2351 198 +200 3 522.3698 616.2659 21.9752 0.235 199 +201 3 523.3445 616.862 21.9264 0.2349 200 +202 3 524.1625 617.649 21.8228 0.2348 201 +203 3 525.1658 618.1364 21.5233 0.2347 202 +204 3 526.2846 618.3068 21.1464 0.2346 203 +205 3 527.4137 618.435 20.8274 0.2345 204 +206 3 528.2157 619.2197 20.5895 0.2344 205 +207 3 528.0578 620.3329 20.3931 0.2343 206 +208 3 528.3084 621.4425 20.1938 0.2341 207 +209 3 528.9673 622.3715 19.9916 0.234 208 +210 3 529.4329 623.4102 19.7279 0.2339 209 +211 3 530.2417 624.2099 19.4724 0.2338 210 +212 3 531.277 624.6881 19.289 0.2337 211 +213 3 532.1499 625.4111 19.0931 0.2336 212 +214 3 532.6544 626.4327 18.8692 0.2335 213 +215 3 533.3465 627.3261 18.6746 0.2334 214 +216 3 534.2995 627.9508 18.5298 0.2333 215 +217 3 535.0122 628.8133 18.405 0.2332 216 +218 3 535.2353 629.9322 18.2967 0.2331 217 +219 3 535.376 631.0601 18.1874 0.233 218 +220 3 535.829 632.0989 18.0484 0.2329 219 +221 3 536.4937 633.0255 17.8851 0.2328 220 +222 3 536.9558 634.0483 17.7155 0.2327 221 +223 3 537.0451 635.1854 17.5338 0.2326 222 +224 3 537.0153 636.3225 17.2819 0.2325 223 +225 3 536.7339 637.4059 16.9573 0.2324 224 +226 3 536.4548 638.4447 16.64 0.2322 225 +227 3 536.8151 639.5132 16.3814 0.2321 226 +228 3 537.3837 640.5004 16.1897 0.232 227 +229 3 537.8996 641.5117 16.0321 0.2319 228 +230 3 538.268 642.5917 15.8693 0.2318 229 +231 3 538.5163 643.7013 15.6848 0.2317 230 +232 3 538.4328 644.8156 15.4954 0.2316 231 +233 3 538.4442 645.907 15.2482 0.2315 232 +234 3 538.7622 646.9995 14.9523 0.2314 233 +235 3 539.1741 648.0566 14.6894 0.2313 234 +236 3 539.8479 648.9557 14.4324 0.2312 235 +237 3 540.7093 649.6959 14.1543 0.2311 236 +238 3 541.6222 650.3777 13.929 0.231 237 +239 3 542.1805 651.3124 13.7962 0.2309 238 +240 3 542.6884 652.3271 13.7416 0.2308 239 +241 3 543.5087 653.0913 13.7516 0.2307 240 +242 3 544.5234 653.6072 13.8088 0.2306 241 +243 3 545.0977 654.4961 13.9442 0.2305 242 +244 3 545.6331 655.4926 14.208 0.2304 243 +245 3 546.2909 656.4158 14.5739 0.2303 244 +246 3 546.7748 657.4339 14.9697 0.2302 245 +247 3 547.3056 658.4338 15.3424 0.2301 246 +248 3 548.2128 659.0527 15.7716 0.2299 247 +249 3 549.3122 659.2655 16.2665 0.2298 248 +250 3 550.2102 659.9267 16.7717 0.2297 249 +251 3 550.9538 660.779 17.1718 0.2296 250 +252 3 551.4652 661.788 17.5819 0.2295 251 +253 3 552.2065 662.6448 17.9547 0.2294 252 +254 3 553.0016 663.4617 18.2044 0.2293 253 +255 3 553.7006 664.3643 18.3581 0.2292 254 +256 3 554.3469 665.3081 18.4477 0.2291 255 +257 3 555.126 666.1455 18.4956 0.229 256 +258 3 555.7644 667.095 18.5102 0.2289 257 +259 3 443.5883 557.3877 28.7893 0.4865 1 +260 3 443.03 556.4496 29.3121 0.2737 259 +261 3 442.9225 555.3491 29.6554 0.2705 260 +262 3 443.7828 554.6673 29.8836 0.2679 261 +263 3 444.7643 554.085 30.0378 0.2653 262 +264 3 445.2906 553.0862 30.2394 0.2626 263 +265 3 445.2837 551.9491 30.4612 0.26 264 +266 3 445.0149 550.8383 30.6113 0.2574 265 +267 3 445.0343 549.9849 30.5964 0.2471 266 +268 3 445.1052 548.8443 30.4682 0.2469 267 +269 3 445.2837 547.7243 30.228 0.2467 268 +270 3 445.6772 546.6615 29.8651 0.2466 269 +271 3 446.0387 545.5999 29.4599 0.2465 270 +272 3 446.1669 544.4742 29.0814 0.2464 271 +273 3 446.1497 543.3611 28.7134 0.2463 272 +274 3 445.7733 542.2915 28.355 0.2462 273 +275 3 445.4439 541.2195 28.0003 0.2461 274 +276 3 445.3031 540.0984 27.5896 0.246 275 +277 3 445.1865 538.9876 27.103 0.2459 276 +278 3 445.1887 537.8665 26.5962 0.2457 277 +279 3 444.9496 536.7751 26.1802 0.2456 278 +280 3 444.3376 535.8485 25.8582 0.2455 279 +281 3 443.57 535.0168 25.5805 0.2454 280 +282 3 443.2234 533.9963 25.3313 0.2453 281 +283 3 443.0987 532.8798 25.1448 0.2452 282 +284 3 442.5964 531.8731 24.9572 0.2451 283 +285 3 441.9432 530.9396 24.7553 0.245 284 +286 3 441.624 529.8905 24.5546 0.2449 285 +287 3 441.298 528.8598 24.3563 0.2447 286 +288 3 440.6951 527.8931 24.1995 0.2446 287 +289 3 440.2306 526.852 24.074 0.2445 288 +290 3 439.9138 525.7572 23.9443 0.2444 289 +291 3 439.7479 524.6281 23.8213 0.2443 290 +292 3 439.4722 523.531 23.7449 0.2442 291 +293 3 439.0031 522.4888 23.7063 0.2441 292 +294 3 438.4941 521.4638 23.6973 0.244 293 +295 3 438.3167 520.377 23.7169 0.2439 294 +296 3 438.104 519.2879 23.7785 0.2437 295 +297 3 437.3558 518.4654 23.9016 0.2436 296 +298 3 436.746 517.525 24.0248 0.2435 297 +299 3 436.3296 516.4622 24.1426 0.2434 298 +300 3 436.0962 515.3457 24.2505 0.2433 299 +301 3 435.5688 514.347 24.3304 0.2432 300 +302 3 434.7246 513.5885 24.3642 0.2431 301 +303 3 434.0164 512.6962 24.3921 0.2429 302 +304 3 433.8597 511.5705 24.5158 0.2428 303 +305 3 433.7087 510.4391 24.7036 0.2427 304 +306 3 433.4868 509.3191 24.8845 0.2426 305 +307 3 432.972 508.2998 25.0553 0.2425 306 +308 3 432.4274 507.2965 25.1953 0.2424 307 +309 3 432.0327 506.2234 25.3039 0.2423 308 +310 3 431.479 505.2236 25.3884 0.2422 309 +311 3 430.7972 504.3061 25.479 0.2421 310 +312 3 430.2001 503.3325 25.617 0.242 311 +313 3 429.6029 502.359 25.7781 0.2418 312 +314 3 429.0721 501.3477 25.9442 0.2417 313 +315 3 428.5859 500.3181 26.1156 0.2416 314 +316 3 427.8331 499.4647 26.3082 0.2415 315 +317 3 427.3961 498.4362 26.5688 0.2414 316 +318 3 427.3595 497.3254 26.8248 0.2413 317 +319 3 426.72 496.3965 27.1006 0.2412 318 +320 3 426.0245 495.5819 27.3706 0.2411 319 +321 3 425.9043 494.4734 27.5728 0.2409 320 +322 3 425.2786 493.5296 27.7547 0.2408 321 +323 3 424.4938 492.7082 27.9549 0.2407 322 +324 3 423.9927 491.7072 28.1467 0.2406 323 +325 3 423.7937 490.5884 28.3562 0.2405 324 +326 3 423.2674 489.6274 28.5421 0.2404 325 +327 3 422.4254 488.8712 28.707 0.2403 326 +328 3 421.7356 487.9595 28.8196 0.2402 327 +329 3 420.9851 487.1049 28.9002 0.2401 328 +330 3 420.1294 486.3476 29.0184 0.2399 329 +331 3 419.5883 485.4209 29.1998 0.2398 330 +332 3 419.4613 484.2861 29.3768 0.2397 331 +333 3 418.9797 483.3354 29.5156 0.2396 332 +334 3 418.0165 482.744 29.622 0.2395 333 +335 3 417.2076 482.005 29.6993 0.2394 334 +336 3 416.742 480.9685 29.7315 0.2393 335 +337 3 416.3405 479.8977 29.6696 0.2391 336 +338 3 415.8429 478.8727 29.5112 0.239 337 +339 3 415.272 477.8831 29.3524 0.2389 338 +340 3 414.6336 476.9359 29.3154 0.2388 339 +341 3 413.8534 476.1042 29.3726 0.2387 340 +342 3 413.0641 475.2771 29.405 0.2386 341 +343 3 412.6751 474.228 29.4647 0.2385 342 +344 3 412.5607 473.092 29.5481 0.2384 343 +345 3 412.2736 471.9881 29.6086 0.2382 344 +346 3 411.7256 470.9894 29.6414 0.2381 345 +347 3 410.9934 470.1131 29.6618 0.238 346 +348 3 410.3825 469.1487 29.6635 0.2379 347 +349 3 410.2075 468.0287 29.6587 0.2378 348 +350 3 410.1778 466.8858 29.7018 0.2377 349 +351 3 409.5978 465.9169 29.8262 0.2376 350 +352 3 408.9217 464.9948 29.9048 0.2375 351 +353 3 408.964 463.8531 29.878 0.2373 352 +354 3 408.7752 462.7514 29.7811 0.2372 353 +355 3 407.8577 462.0685 29.7052 0.2371 354 +356 3 407.0135 461.2963 29.6596 0.237 355 +357 3 406.2275 460.4669 29.587 0.2369 356 +358 3 405.5331 459.5597 29.5081 0.2368 357 +359 3 405.0 458.5518 29.3633 0.2367 358 +360 3 404.2839 457.6652 29.246 0.2366 359 +361 3 403.387 456.9559 29.2337 0.2365 360 +362 3 402.4409 456.3302 29.1889 0.2363 361 +363 3 401.353 455.9812 29.0629 0.2362 362 +364 3 400.4732 455.3944 28.9663 0.2361 363 +365 3 400.289 454.287 28.8742 0.236 364 +366 3 400.3405 453.159 28.7851 0.2359 365 +367 3 399.9859 452.0894 28.7692 0.2358 366 +368 3 399.4116 451.1044 28.8338 0.2357 367 +369 3 399.2194 450.037 28.9554 0.2356 368 +370 3 399.6587 449.0006 29.1085 0.2354 369 +371 3 400.1655 447.9961 29.2821 0.2353 370 +372 3 400.1689 446.9002 29.4655 0.2352 371 +373 3 399.6404 445.9095 29.6355 0.2351 372 +374 3 399.002 444.9668 29.7609 0.235 373 +375 3 398.6726 443.8949 29.8399 0.2349 374 +376 3 398.5158 442.7623 29.9118 0.2348 375 +377 3 398.1623 441.687 30.0104 0.2347 376 +378 3 397.5503 440.7306 30.1143 0.2345 377 +379 3 396.793 439.8749 30.1916 0.2344 378 +380 3 396.0517 439.0066 30.2834 0.2343 379 +381 3 395.4202 438.0582 30.4651 0.2342 380 +382 3 394.6503 437.2425 30.7062 0.2341 381 +383 3 393.6721 436.6671 30.9072 0.234 382 +384 3 392.7638 435.9921 31.1206 0.2339 383 +385 3 391.8749 435.2794 31.3656 0.2338 384 +386 3 390.8144 434.9351 31.5787 0.2337 385 +387 3 389.7116 434.6434 31.7447 0.2335 386 +388 3 388.976 433.8403 31.864 0.2334 387 +389 3 388.7838 432.7352 31.9018 0.2333 388 +390 3 388.4761 431.6392 31.8766 0.2332 389 +391 3 388.4143 430.5044 31.8665 0.2331 390 +392 3 388.6179 429.3821 31.8097 0.233 391 +393 3 388.5562 428.2484 31.6686 0.2329 392 +394 3 388.245 427.1547 31.4121 0.2328 393 +395 3 388.0036 426.0439 31.1251 0.2326 394 +396 3 387.8663 424.9136 30.8622 0.2325 395 +397 3 387.2131 423.9961 30.6194 0.2324 396 +398 3 386.6377 423.0134 30.3797 0.2323 397 +399 3 386.4295 421.8992 30.1154 0.2322 398 +400 3 385.9181 420.8856 29.8752 0.2321 399 +401 3 385.3106 419.9269 29.54 0.232 400 +402 3 384.924 418.8676 29.0772 0.2319 401 +403 3 384.4504 417.838 28.698 0.2318 402 +404 3 383.8989 416.8439 28.4091 0.2316 403 +405 3 383.2034 415.947 28.0958 0.2315 404 +406 3 382.8522 414.8659 27.7629 0.2314 405 +407 3 382.3923 413.8306 27.4562 0.2313 406 +408 3 381.6304 412.992 27.1495 0.2312 407 +409 3 381.1591 411.9693 26.7578 0.2311 408 +410 3 381.0264 410.8447 26.4139 0.231 409 +411 3 381.1042 409.7076 26.1846 0.2309 410 +412 3 381.2712 408.5773 26.046 0.2308 411 +413 3 381.3821 407.4413 25.9794 0.2306 412 +414 3 381.3478 406.2985 25.9774 0.2305 413 +415 3 381.2151 405.1625 26.0494 0.2304 414 +416 3 381.1316 404.023 26.1629 0.2303 415 +417 3 381.1099 402.8916 26.2581 0.2302 416 +418 3 381.5103 401.8334 26.3316 0.2301 417 +419 3 382.0468 400.8553 26.3624 0.23 418 +420 3 381.8752 399.7891 26.4067 0.2299 419 +421 3 381.3078 398.8018 26.5374 0.2297 420 +422 3 380.7518 397.8111 26.724 0.2296 421 +423 3 379.9373 397.0538 26.9464 0.2295 422 +424 3 379.0083 396.4017 27.1392 0.2294 423 +425 3 377.9993 395.9578 27.2458 0.2293 424 +426 3 376.8931 395.673 27.346 0.2292 425 +427 3 376.2078 394.9065 27.7836 0.229 426 +428 3 376.4252 393.8346 28.6068 0.2289 427 +429 3 445.1338 550.5706 31.3804 0.2574 266 +430 3 445.5869 549.5387 31.7976 0.2534 429 +431 3 445.9884 548.4714 32.006 0.2512 430 +432 3 446.2264 547.3571 32.2613 0.2492 431 +433 3 446.2435 546.2165 32.4783 0.2471 432 +434 3 446.7423 546.3538 33.1128 0.2469 433 +435 3 447.7627 546.4236 34.3344 0.2465 434 +436 3 447.4836 546.4694 35.5841 0.2461 435 +437 3 448.1025 545.7246 36.7214 0.2457 436 +438 3 449.131 545.5153 37.5155 0.2455 437 +439 3 450.2304 545.6754 38.1856 0.2452 438 +440 3 451.3458 545.7887 38.7178 0.245 439 +441 3 452.46 545.9282 39.1468 0.2447 440 +442 3 453.5319 545.9294 39.5906 0.2445 441 +443 3 454.5947 545.569 40.0898 0.2442 442 +444 3 455.6438 545.1801 40.5871 0.244 443 +445 3 456.7123 544.9467 41.0911 0.2437 444 +446 3 457.7716 545.2487 41.5694 0.2434 445 +447 3 458.8538 545.426 42.0599 0.2432 446 +448 3 459.9475 545.6045 42.6488 0.2429 447 +449 3 461.0503 545.5747 43.2424 0.2426 448 +450 3 461.9758 544.9902 43.8284 0.2424 449 +451 3 463.0523 544.8243 44.4662 0.2421 450 +452 3 463.9732 544.2374 45.1665 0.2419 451 +453 3 465.0635 544.0475 45.8088 0.2416 452 +454 3 466.1834 544.0841 46.3574 0.2414 453 +455 3 467.2897 543.9171 46.9294 0.2411 454 +456 3 468.1809 544.5577 47.6896 0.2408 455 +457 3 469.016 545.2052 48.4134 0.2405 456 +458 3 470.1165 545.1869 49.0353 0.2402 457 +459 3 471.1644 544.814 49.5692 0.24 458 +460 3 471.9892 544.0944 50.0828 0.2397 459 +461 3 472.6379 543.1746 50.5554 0.2395 460 +462 3 473.4444 542.4059 51.0303 0.2392 461 +463 3 474.4122 541.8339 51.5248 0.239 462 +464 3 475.4658 541.4678 51.9714 0.2387 463 +465 3 476.5881 541.422 52.3681 0.2385 464 +466 3 477.715 541.4369 52.7713 0.2382 465 +467 3 478.7995 541.1669 53.1647 0.238 466 +468 3 479.8817 540.8569 53.5044 0.2377 467 +469 3 481.0097 540.8352 53.8101 0.2375 468 +470 3 481.9821 541.2847 54.171 0.2372 469 +471 3 482.887 541.358 54.7095 0.2369 470 +472 3 483.8056 540.7276 55.3028 0.2366 471 +473 3 484.4211 539.8227 55.8774 0.2364 472 +474 3 485.2665 539.1397 56.3545 0.2361 473 +475 3 486.0867 538.3756 56.7308 0.2359 474 +476 3 486.9264 537.6159 57.0704 0.2356 475 +477 3 487.9549 537.1652 57.3516 0.2354 476 +478 3 489.0314 536.7934 57.612 0.2351 477 +479 3 490.0644 536.3209 57.9043 0.2349 478 +480 3 491.1364 535.9503 58.2291 0.2346 479 +481 3 492.2518 535.7707 58.6152 0.2344 480 +482 3 493.3752 535.6666 59.0668 0.2341 481 +483 3 494.4768 535.4355 59.5482 0.2339 482 +484 3 495.5648 535.1346 60.0001 0.2336 483 +485 3 496.6733 534.9127 60.4072 0.2334 484 +486 3 497.8036 534.8189 60.7513 0.2331 485 +487 3 498.9396 534.8017 61.0784 0.2329 486 +488 3 500.0744 534.8006 61.4281 0.2326 487 +489 3 501.2013 534.6907 61.8097 0.2324 488 +490 3 502.3293 534.5672 62.1732 0.2321 489 +491 3 503.4561 534.4322 62.5237 0.2318 490 +492 3 504.5875 534.3567 62.876 0.2316 491 +493 3 505.6983 534.1267 63.2114 0.2313 492 +494 3 506.6307 533.5033 63.5824 0.2311 493 +495 3 507.4784 532.7574 64.0133 0.2308 494 +496 3 508.3616 532.0607 64.5308 0.2306 495 +497 3 509.3923 531.6454 65.1445 0.2303 496 +498 3 510.4048 531.1867 65.802 0.2301 497 +499 3 511.3657 530.6124 66.3762 0.2298 498 +500 3 512.1917 529.8665 66.988 0.2295 499 +501 3 513.2831 529.5702 67.3996 0.2293 500 +502 3 514.4099 529.537 67.8706 0.2291 501 +503 3 446.5158 545.3025 32.8031 0.2469 433 +504 3 446.8899 544.2248 33.0084 0.2466 503 +505 3 447.3406 543.1849 33.1682 0.2464 504 +506 3 447.852 542.1668 33.308 0.2462 505 +507 3 447.9607 541.0754 33.4765 0.246 506 +508 3 447.8737 539.9428 33.6694 0.2458 507 +509 3 448.0407 538.8217 33.8486 0.2457 508 +510 3 448.4686 537.7727 34.0208 0.2455 509 +511 3 449.0452 536.7911 34.2818 0.2453 510 +512 3 449.5211 535.7718 34.6948 0.2451 511 +513 3 449.8231 534.6884 35.1809 0.2449 512 +514 3 450.2201 533.6749 35.9716 0.2446 513 +515 3 450.6834 532.6693 36.6691 0.2444 514 +516 3 451.3961 531.8056 37.2392 0.2442 515 +517 3 452.1591 530.9727 37.6832 0.244 516 +518 3 452.5367 529.9077 38.1077 0.2438 517 +519 3 452.754 528.8026 38.551 0.2436 518 +520 3 453.5434 527.988 38.9138 0.2434 519 +521 3 454.3522 527.2147 39.2498 0.2432 520 +522 3 454.0879 526.2663 39.7085 0.243 521 +523 3 452.9897 526.129 40.4026 0.2428 522 +524 3 451.9544 525.7618 41.0334 0.2426 523 +525 3 451.1078 525.0445 41.4666 0.2424 524 +526 3 450.299 524.2574 41.7718 0.2422 525 +527 3 449.3621 523.6077 41.9966 0.242 526 +528 3 448.464 522.9144 42.2428 0.2418 527 +529 3 447.9893 521.9454 42.6479 0.2416 528 +530 3 448.4228 520.9742 43.1508 0.2414 529 +531 3 448.869 519.9789 43.9048 0.2411 530 +532 3 448.4388 518.9527 44.5536 0.2409 531 +533 3 448.1231 517.8751 45.0825 0.2407 532 +534 3 447.924 516.7631 45.5342 0.2405 533 +535 3 447.8382 515.6477 46.0911 0.2404 534 +536 3 447.9996 514.5586 46.767 0.2401 535 +537 3 448.5041 513.5736 47.4779 0.2399 536 +538 3 449.0086 512.5726 48.0362 0.2397 537 +539 3 449.3884 511.5362 48.5988 0.2395 538 +540 3 449.3392 510.4196 49.1148 0.2393 539 +541 3 449.0131 509.3397 49.4203 0.2391 540 +542 3 448.3027 508.5423 49.6048 0.239 541 +543 3 447.3143 508.0447 49.7325 0.2388 542 +544 3 446.6027 507.1569 49.8705 0.2386 543 +545 3 445.9449 506.2292 50.104 0.2384 544 +546 3 445.3272 505.2922 50.4431 0.2382 545 +547 3 445.0377 504.2191 50.9698 0.2379 546 +548 3 444.9474 503.1072 51.5886 0.2377 547 +549 3 444.857 501.9906 52.15 0.2376 548 +550 3 444.627 500.8947 52.6579 0.2374 549 +551 3 444.4291 499.7884 53.132 0.2372 550 +552 3 444.2804 498.6799 53.7079 0.237 551 +553 3 444.1649 497.5771 54.3864 0.2367 552 +554 3 443.8022 496.5257 54.959 0.2365 553 +555 3 443.395 495.4733 55.4084 0.2364 554 +556 3 443.2634 494.3544 55.7696 0.2362 555 +557 3 443.2462 493.2196 56.1162 0.236 556 +558 3 443.2439 492.0847 56.4802 0.2358 557 +559 3 443.2439 490.9499 56.8198 0.2356 558 +560 3 443.2439 489.8139 57.1687 0.2354 559 +561 3 443.5551 488.7397 57.633 0.2352 560 +562 3 444.2999 487.9171 58.168 0.235 561 +563 3 444.7048 486.8795 58.6572 0.2348 562 +564 3 445.4381 486.0398 59.1394 0.2346 563 +565 3 446.0227 485.1258 59.9085 0.2344 564 +566 3 445.9587 484.0275 60.6066 0.2342 565 +567 3 446.3968 483.0117 61.278 0.234 566 +568 3 447.129 482.196 62.0763 0.2338 567 +569 3 447.6506 481.3151 63.0882 0.2336 568 +570 3 447.7524 480.242 64.0105 0.2333 569 +571 3 447.9538 479.1541 64.7116 0.2332 570 +572 3 448.0934 478.0547 65.2848 0.233 571 +573 3 447.7524 477.0503 65.7586 0.2328 572 +574 3 446.8681 476.3753 66.2402 0.2326 573 +575 3 445.8969 475.8365 66.8976 0.2323 574 +576 3 444.9782 475.229 67.6441 0.2321 575 +577 3 444.0516 474.665 68.523 0.2319 576 +578 3 443.117 474.1056 69.3767 0.2317 577 +579 3 442.5312 473.1778 70.0322 0.2315 578 +580 3 442.0965 472.1357 70.4757 0.2313 579 +581 3 441.4078 471.2365 70.7577 0.2311 580 +582 3 440.6139 470.4162 70.943 0.2309 581 +583 3 439.9572 469.485 71.1158 0.2307 582 +584 3 439.1999 468.635 71.3686 0.2306 583 +585 3 438.2458 468.0184 71.654 0.2304 584 +586 3 437.2105 467.5471 71.9132 0.2302 585 +587 3 436.1328 467.173 72.142 0.23 586 +588 3 435.0163 466.9499 72.3834 0.2298 587 +589 3 433.9318 466.6124 72.7124 0.2296 588 +590 3 432.9811 465.9855 72.9686 0.2294 589 +591 3 431.9161 465.5737 73.1598 0.2292 590 +592 3 430.8853 465.0875 73.3986 0.229 591 +593 3 445.5903 563.7014 20.2958 0.5042 1 +594 3 445.5445 564.6532 18.9909 0.2482 593 +595 3 446.0033 565.5067 17.7524 0.2403 594 +596 3 446.4826 564.8958 15.7058 0.2345 595 +597 3 440.8644 562.0518 29.8015 0.6022 1 +598 3 439.9401 562.5734 30.844 0.5362 597 +599 3 439.1816 563.3422 31.7638 0.5208 598 +600 3 438.7011 564.3203 32.5987 0.5056 599 +601 3 438.4449 565.3957 33.3046 0.4905 600 +602 3 438.2881 566.4996 33.9251 0.4753 601 +603 3 438.0067 567.5842 34.4882 0.46 602 +604 3 437.4256 568.5405 35.03 0.4445 603 +605 3 436.595 569.275 35.6821 0.4279 604 +606 3 435.5963 569.7784 36.2614 0.4124 605 +607 3 434.7394 570.5139 36.7002 0.3972 606 +608 3 433.9306 571.3113 37.037 0.382 607 +609 3 432.9514 571.8948 37.2982 0.3668 608 +610 3 431.9858 572.5011 37.508 0.3657 609 +611 3 430.5169 572.8271 37.4548 0.3433 610 +612 3 429.4061 573.0765 37.6869 0.3379 611 +613 3 428.5424 573.7835 38.0038 0.333 612 +614 3 428.3902 574.8783 38.4412 0.328 613 +615 3 428.6534 575.964 39.0029 0.323 614 +616 3 428.5207 577.0839 39.4685 0.3183 615 +617 3 428.1809 578.165 39.858 0.3136 616 +618 3 427.8297 579.245 40.1876 0.3089 617 +619 3 426.9534 579.2061 38.269 0.2368 618 +620 3 425.814 579.2701 38.078 0.2368 619 +621 3 424.6745 579.2141 37.9873 0.2368 620 +622 3 423.5591 578.999 37.9562 0.2368 621 +623 3 422.4323 579.1569 37.8686 0.2368 622 +624 3 421.3901 579.5962 37.518 0.2368 623 +625 3 420.3742 580.0023 36.7732 0.2368 624 +626 3 419.2817 580.1773 36.0954 0.2368 625 +627 3 418.1823 580.3832 35.551 0.2368 626 +628 3 417.1253 580.7516 35.0098 0.2368 627 +629 3 416.4423 581.5707 34.4327 0.2368 628 +630 3 415.8543 582.5374 34.0421 0.2368 629 +631 3 415.2457 583.4983 33.7448 0.2368 630 +632 3 414.5822 584.4273 33.5566 0.2368 631 +633 3 413.8134 585.2727 33.509 0.2368 632 +634 3 413.0538 586.1273 33.4939 0.2368 633 +635 3 412.3708 587.0447 33.4216 0.2368 634 +636 3 411.5254 587.8135 33.3416 0.2368 635 +637 3 410.744 588.6475 33.262 0.2368 636 +638 3 410.2922 589.6965 33.1635 0.2368 637 +639 3 409.7831 590.9755 33.3124 0.2367 638 +640 3 409.0292 591.7946 33.4331 0.2366 639 +641 3 407.995 592.2671 33.6053 0.2366 640 +642 3 407.0432 592.8952 33.8246 0.2365 641 +643 3 406.0342 593.3528 34.0749 0.2365 642 +644 3 404.9131 593.4958 34.3644 0.2364 643 +645 3 403.9327 594.0117 34.676 0.2364 644 +646 3 403.1628 594.8445 34.9888 0.2363 645 +647 3 402.5942 595.8158 35.2344 0.2363 646 +648 3 402.1332 596.8591 35.362 0.2362 647 +649 3 401.5348 597.8304 35.3856 0.2362 648 +650 3 400.9194 598.7925 35.322 0.2361 649 +651 3 400.1849 599.6242 35.0759 0.236 650 +652 3 399.3429 600.3735 34.6472 0.236 651 +653 3 398.7034 601.2978 34.2658 0.2359 652 +654 3 398.3133 602.3595 33.9766 0.2359 653 +655 3 397.9633 603.444 33.7711 0.2358 654 +656 3 397.3993 604.4267 33.6417 0.2358 655 +657 3 396.7175 605.3442 33.5796 0.2357 656 +658 3 395.9796 606.2182 33.5563 0.2357 657 +659 3 395.5025 607.2329 33.5443 0.2356 658 +660 3 395.2005 608.3357 33.5068 0.2356 659 +661 3 394.664 609.3276 33.4527 0.2355 660 +662 3 394.005 610.2622 33.4222 0.2355 661 +663 3 393.1848 611.0447 33.4331 0.2354 662 +664 3 392.1987 611.611 33.5409 0.2353 663 +665 3 391.526 612.4816 33.745 0.2353 664 +666 3 390.787 613.343 33.9293 0.2352 665 +667 3 389.8821 614.034 34.0654 0.2352 666 +668 3 389.1076 614.868 34.1362 0.2351 667 +669 3 388.2095 615.567 34.1541 0.2351 668 +670 3 387.1891 616.0772 34.2297 0.235 669 +671 3 386.5496 617.0095 34.3496 0.235 670 +672 3 386.0703 618.0471 34.41 0.2349 671 +673 3 385.7991 619.158 34.4238 0.2349 672 +674 3 385.3347 620.1956 34.4448 0.2348 673 +675 3 384.4401 620.9071 34.4722 0.2347 674 +676 3 383.7022 621.7686 34.5472 0.2347 675 +677 3 383.3567 622.8577 34.655 0.2346 676 +678 3 383.0718 623.9536 34.7679 0.2346 677 +679 3 382.3545 624.8208 34.8835 0.2345 678 +680 3 381.4439 625.4488 34.9952 0.2345 679 +681 3 381.0961 626.5208 35.1235 0.2344 680 +682 3 380.785 627.5538 35.2904 0.2344 681 +683 3 380.0482 628.4141 35.532 0.2343 682 +684 3 379.6261 629.4425 35.7798 0.2343 683 +685 3 379.1502 630.3669 36.0234 0.2342 684 +686 3 378.4592 631.1951 36.2746 0.2342 685 +687 3 378.2453 632.3025 36.5019 0.2341 686 +688 3 377.9684 633.371 36.7178 0.234 687 +689 3 377.3644 634.3388 36.9074 0.234 688 +690 3 376.956 635.3742 37.0583 0.2339 689 +691 3 376.8496 636.5102 37.1907 0.2339 690 +692 3 376.6323 637.6187 37.3411 0.2338 691 +693 3 376.1472 638.6483 37.48 0.2338 692 +694 3 375.7468 639.7031 37.6149 0.2337 693 +695 3 375.5603 640.8253 37.8683 0.2337 694 +696 3 375.4825 641.9602 38.1646 0.2336 695 +697 3 375.3327 643.0847 38.4611 0.2336 696 +698 3 375.1245 644.2001 38.8161 0.2335 697 +699 3 374.8877 645.3064 39.2241 0.2334 698 +700 3 374.088 645.9893 39.6396 0.2334 699 +701 3 373.3364 646.8222 39.998 0.2333 700 +702 3 373.1465 647.9467 40.222 0.2333 701 +703 3 373.0287 649.0816 40.4135 0.2332 702 +704 3 372.9726 650.2233 40.5017 0.2332 703 +705 3 372.753 651.3433 40.5104 0.2331 704 +706 3 372.1043 652.2848 40.493 0.2331 705 +707 3 371.4019 653.1862 40.4874 0.233 706 +708 3 370.8413 654.1838 40.5065 0.233 707 +709 3 370.2201 655.1413 40.5028 0.2329 708 +710 3 369.8072 656.2041 40.458 0.2329 709 +711 3 369.1631 657.1479 40.3105 0.2328 710 +712 3 368.6643 658.1432 40.1209 0.2327 711 +713 3 368.757 659.2758 39.8275 0.2327 712 +714 3 368.5968 660.3591 39.5153 0.2326 713 +715 3 367.8521 661.2183 39.2165 0.2326 714 +716 3 367.2366 662.1552 39.0085 0.2325 715 +717 3 367.041 663.2763 38.8822 0.2325 716 +718 3 366.986 664.4158 38.8203 0.2324 717 +719 3 366.6154 665.4534 38.8111 0.2324 718 +720 3 365.8615 666.2976 38.8354 0.2323 719 +721 3 365.3856 667.3307 38.9018 0.2323 720 +722 3 365.127 668.4426 39.0046 0.2322 721 +723 3 364.8925 669.5569 39.0793 0.2322 722 +724 3 364.4475 670.6082 39.1269 0.2321 723 +725 3 364.1398 671.6641 39.144 0.232 724 +726 3 364.1421 672.8047 39.1308 0.232 725 +727 3 363.8492 673.8869 39.0886 0.2319 726 +728 3 363.3733 674.9245 39.0205 0.2319 727 +729 3 363.1216 676.0285 38.9127 0.2318 728 +730 3 362.9637 677.1576 38.7562 0.2318 729 +731 3 362.7132 678.2719 38.5792 0.2317 730 +732 3 362.3426 679.345 38.3849 0.2317 731 +733 3 361.7957 680.3414 38.1262 0.2316 732 +734 3 361.6161 681.3904 37.8053 0.2316 733 +735 3 361.7305 682.5207 37.5105 0.2315 734 +736 3 361.5109 683.6258 37.3425 0.2314 735 +737 3 360.8153 684.5044 37.2291 0.2314 736 +738 3 359.7914 684.9723 37.0339 0.2313 737 +739 3 358.6737 685.1656 36.7494 0.2313 738 +740 3 357.6247 685.582 36.377 0.2312 739 +741 3 356.8113 686.3657 35.994 0.2312 740 +742 3 355.9178 687.0567 35.5622 0.2311 741 +743 3 355.0164 687.7431 35.1627 0.2311 742 +744 3 354.0726 688.378 34.8768 0.231 743 +745 3 352.9938 688.7452 34.6433 0.231 744 +746 3 351.9779 689.2531 34.3969 0.2309 745 +747 3 351.2332 690.1146 34.2073 0.2309 746 +748 3 350.6932 691.119 34.111 0.2308 747 +749 3 349.9164 691.953 34.1309 0.2307 748 +750 3 348.9417 692.5501 34.2107 0.2307 749 +751 3 348.0517 693.1908 34.3291 0.2306 750 +752 3 347.9762 694.3119 34.5162 0.2306 751 +753 3 347.9613 695.3083 34.6707 0.2305 752 +754 3 347.1102 696.0542 34.813 0.2305 753 +755 3 346.5485 697.0278 34.9434 0.2304 754 +756 3 346.1744 698.1077 35.0311 0.2304 755 +757 3 345.5372 698.992 35.0378 0.2303 756 +758 3 344.4973 699.3798 34.9765 0.2302 757 +759 3 343.5546 699.866 34.9474 0.2302 758 +760 3 343.105 700.8739 34.9037 0.2301 759 +761 3 343.0067 702.0087 34.823 0.2301 760 +762 3 342.8465 703.1344 34.7427 0.23 761 +763 3 342.1944 703.9993 34.6662 0.23 762 +764 3 341.2827 704.688 34.5836 0.2299 763 +765 3 340.3594 705.3629 34.4862 0.2299 764 +766 3 339.3687 705.9224 34.3543 0.2298 765 +767 3 338.5542 706.6751 34.1214 0.2298 766 +768 3 338.0852 707.7024 33.8618 0.2297 767 +769 3 337.3622 708.5558 33.6297 0.2297 768 +770 3 336.4607 709.2525 33.4158 0.2296 769 +771 3 335.6679 710.0659 33.1884 0.2295 770 +772 3 334.8946 710.9022 32.9386 0.2295 771 +773 3 334.0045 711.608 32.6763 0.2294 772 +774 3 332.9349 711.949 32.3607 0.2294 773 +775 3 331.8035 711.9512 32.02 0.2293 774 +776 3 330.6663 711.9261 31.7234 0.2293 775 +777 3 329.5715 712.2121 31.4493 0.2292 776 +778 3 328.5362 712.6914 31.2749 0.2292 777 +779 3 327.4082 712.8241 31.1564 0.2291 778 +780 3 326.2825 712.6434 31.0321 0.2291 779 +781 3 325.182 712.3391 30.8932 0.229 780 +782 3 324.0998 711.9741 30.7597 0.229 781 +783 3 322.9844 711.7442 30.508 0.2289 782 +784 3 321.9639 711.2362 30.2893 0.2289 783 +785 3 410.3551 589.8006 31.6593 0.2368 638 +786 3 410.9019 589.7446 29.2944 0.2364 785 +787 3 409.9112 590.0088 28.3746 0.2362 786 +788 3 409.1996 590.8165 27.6228 0.236 787 +789 3 408.9285 591.8884 26.9253 0.2358 788 +790 3 408.6951 592.9341 26.2497 0.2356 789 +791 3 407.9538 593.7166 25.4225 0.2353 790 +792 3 408.2112 594.2988 24.3898 0.2351 791 +793 3 409.1676 594.7393 23.5294 0.2349 792 +794 3 409.56 595.6373 22.6863 0.2347 793 +795 3 409.1047 596.5411 21.6309 0.2344 794 +796 3 409.1882 597.3648 20.2709 0.2342 795 +797 3 408.3279 597.9848 19.2666 0.234 796 +798 3 407.5351 598.5351 18.0869 0.2337 797 +799 3 407.1462 599.5109 16.9849 0.2335 798 +800 3 406.9677 600.5108 15.9736 0.2333 799 +801 3 407.2663 601.5438 15.0419 0.2331 800 +802 3 407.6907 602.5448 14.1767 0.2329 801 +803 3 407.979 603.5973 13.4571 0.2327 802 +804 3 407.9859 604.7115 12.8955 0.2325 803 +805 3 407.8715 605.8361 12.4755 0.2323 804 +806 3 407.9744 606.9458 12.1648 0.2321 805 +807 3 408.2089 608.0566 11.9226 0.2319 806 +808 3 407.7708 608.9569 11.6178 0.2317 807 +809 3 406.8316 609.5918 11.2795 0.2315 808 +810 3 406.8316 610.5219 10.8637 0.2312 809 +811 3 406.7195 611.6362 10.4725 0.231 810 +812 3 406.6451 612.7676 10.102 0.2308 811 +813 3 406.2481 613.8258 9.7274 0.2306 812 +814 3 405.4839 614.6518 9.2956 0.2304 813 +815 3 404.7678 615.5303 8.9075 0.2302 814 +816 3 404.1466 616.4822 8.6032 0.23 815 +817 3 403.6478 617.5072 8.3656 0.2298 816 +818 3 403.1925 618.5539 8.1845 0.2296 817 +819 3 402.4844 619.4485 8.0487 0.2294 818 +820 3 401.7968 620.3615 7.9156 0.2292 819 +821 3 400.8896 621.0067 7.2918 0.229 820 +822 3 427.427 579.674 40.404 0.3089 618 +823 3 426.6205 580.4576 40.9116 0.2749 822 +824 3 425.6103 580.961 41.3686 0.2574 823 +825 3 424.7214 580.9712 41.9401 0.2574 824 +826 3 424.7558 582.1233 42.5382 0.2574 825 +827 3 425.0543 583.2215 42.7106 0.2574 826 +828 3 425.3575 584.322 42.8663 0.2574 827 +829 3 425.465 585.4512 43.1861 0.2574 828 +830 3 426.092 586.3847 43.596 0.2574 829 +831 3 426.3654 587.4863 43.9446 0.2574 830 +832 3 426.6685 588.0812 44.5105 0.2574 831 +833 3 427.2588 588.9781 45.4588 0.2572 832 +834 3 428.1763 589.5078 46.1339 0.2569 833 +835 3 429.2677 589.4105 46.7606 0.2567 834 +836 3 430.0845 590.0981 47.5154 0.2565 835 +837 3 430.8865 590.8371 48.3123 0.2563 836 +838 3 431.9321 591.1849 49.0507 0.2561 837 +839 3 433.02 591.3725 49.7893 0.2559 838 +840 3 434.0679 591.6745 50.5627 0.2557 839 +841 3 434.9316 592.3621 51.2604 0.2555 840 +842 3 435.6341 593.2212 51.9372 0.2553 841 +843 3 436.3548 594.0803 52.4905 0.2552 842 +844 3 437.0286 594.9727 52.9516 0.255 843 +845 3 437.3226 596.0595 53.4321 0.2548 844 +846 3 437.556 597.1657 53.8437 0.2546 845 +847 3 438.0204 598.1084 54.2055 0.2544 846 +848 3 439.1233 598.1324 54.6314 0.2542 847 +849 3 440.1414 597.8372 55.0413 0.2541 848 +850 3 441.0898 598.4161 55.4764 0.2539 849 +851 3 441.7853 599.3038 55.9443 0.2537 850 +852 3 442.4729 600.2042 56.3427 0.2535 851 +853 3 443.252 601.0084 56.6829 0.2533 852 +854 3 444.2564 601.5404 56.9545 0.2531 853 +855 3 445.2654 602.0449 57.1586 0.2529 854 +856 3 446.0696 602.8457 57.29 0.2528 855 +857 3 446.6668 603.8169 57.3658 0.2526 856 +858 3 447.1942 604.8282 57.4143 0.2524 857 +859 3 447.9332 605.6816 57.454 0.2522 858 +860 3 448.8324 606.3818 57.4848 0.252 859 +861 3 449.5806 607.2421 57.4893 0.2518 860 +862 3 450.2384 608.1779 57.4683 0.2516 861 +863 3 450.9659 609.0599 57.4154 0.2515 862 +864 3 451.737 609.903 57.3185 0.2513 863 +865 3 452.5081 610.7473 57.1802 0.2511 864 +866 3 453.302 611.5652 57.0074 0.2509 865 +867 3 454.1932 612.2711 56.7904 0.2507 866 +868 3 455.1438 612.9014 56.5748 0.2505 867 +869 3 456.0236 613.6233 56.4292 0.2503 868 +870 3 456.7489 614.4985 56.3508 0.2502 869 +871 3 457.2431 615.5212 56.3184 0.25 870 +872 3 457.5142 616.6309 56.3259 0.2498 871 +873 3 457.497 617.7451 56.3623 0.2496 872 +874 3 456.996 618.753 56.3926 0.2494 873 +875 3 456.2993 619.659 56.3982 0.2492 874 +876 3 455.7227 620.6394 56.3774 0.2491 875 +877 3 455.4161 621.7285 56.3192 0.2489 876 +878 3 455.5442 622.8325 56.222 0.2487 877 +879 3 456.1185 623.8026 56.1084 0.2485 878 +880 3 456.8987 624.6366 55.998 0.2483 879 +881 3 457.6984 625.4534 55.8922 0.2481 880 +882 3 458.4305 626.3286 55.7729 0.2479 881 +883 3 459.0071 627.3078 55.6438 0.2477 882 +884 3 459.5334 628.3203 55.5285 0.2476 883 +885 3 460.2232 629.2229 55.4347 0.2474 884 +886 3 461.0286 630.034 55.349 0.2472 885 +887 3 461.7619 630.9046 55.2574 0.247 886 +888 3 462.303 631.9056 55.1737 0.2468 887 +889 3 462.8738 632.8883 55.1065 0.2466 888 +890 3 463.5866 633.7817 55.0292 0.2465 889 +891 3 464.3645 634.618 54.9248 0.2463 890 +892 3 465.2968 635.254 54.8338 0.2461 891 +893 3 466.3093 635.7872 54.7865 0.2459 892 +894 3 466.9728 636.6566 54.7753 0.2457 893 +895 3 466.9671 637.7548 54.7694 0.2455 894 +896 3 466.7314 638.8737 54.7114 0.2453 895 +897 3 467.1741 639.8735 54.5992 0.2451 896 +898 3 467.8091 640.823 54.4891 0.2449 897 +899 3 468.1763 641.9053 54.3931 0.2447 898 +900 3 468.8913 642.7942 54.3054 0.2445 899 +901 3 469.5537 643.7242 54.2206 0.2443 900 +902 3 469.9129 644.8099 54.1058 0.2442 901 +903 3 470.1932 645.915 53.996 0.244 902 +904 3 470.7846 646.8942 53.9092 0.2438 903 +905 3 471.3349 647.8941 53.8084 0.2436 904 +906 3 471.6804 648.9832 53.7306 0.2434 905 +907 3 472.1482 650.0254 53.7076 0.2432 906 +908 3 472.456 651.1225 53.7471 0.243 907 +909 3 473.036 652.1063 53.8975 0.2428 908 +910 3 473.5805 653.1016 54.145 0.2427 909 +911 3 473.8688 654.2033 54.3936 0.2425 910 +912 3 474.093 655.3187 54.63 0.2423 911 +913 3 474.1777 656.4512 54.8738 0.2421 912 +914 3 474.4751 657.5483 55.1821 0.2419 913 +915 3 474.8309 658.6283 55.4828 0.2417 914 +916 3 475.1032 659.7208 55.8373 0.2416 915 +917 3 474.8893 660.7755 56.425 0.2414 916 +918 3 474.5209 661.7228 57.0545 0.2412 917 +919 3 474.744 662.8222 57.6064 0.241 918 +920 3 474.8916 663.9215 58.2232 0.2408 919 +921 3 474.8 665.0209 58.9207 0.2406 920 +922 3 474.5918 666.1054 59.6434 0.2404 921 +923 3 474.5312 667.2002 60.368 0.2402 922 +924 3 474.895 668.1921 61.1792 0.24 923 +925 3 475.5974 669.0341 61.9562 0.2398 924 +926 3 476.301 669.8932 62.61 0.2396 925 +927 3 476.77 670.8874 63.2047 0.2395 926 +928 3 476.8249 671.9845 63.7879 0.2393 927 +929 3 476.7792 673.1021 64.3471 0.2391 928 +930 3 476.8627 674.2244 64.8276 0.2389 929 +931 3 476.7895 675.3364 65.3092 0.2387 930 +932 3 476.4199 676.3808 65.9296 0.2385 931 +933 3 476.0115 677.415 66.5862 0.2383 932 +934 3 475.61 678.4572 67.1933 0.2381 933 +935 3 475.2908 679.5303 67.7513 0.238 934 +936 3 475.2245 680.6468 68.2514 0.2378 935 +937 3 475.1169 681.7611 68.8064 0.2376 936 +938 3 474.5358 682.6717 69.55 0.2374 937 +939 3 473.9672 683.6258 70.2117 0.2372 938 +940 3 473.6732 684.7057 70.7868 0.237 939 +941 3 473.092 685.6667 71.3205 0.2368 940 +942 3 473.9237 685.979 72.1179 0.2366 941 +943 3 474.7829 686.6746 72.5838 0.2363 942 +944 3 474.7886 687.7442 73.0075 0.2361 943 +945 3 474.5861 688.8493 73.5272 0.236 944 +946 3 474.6742 689.967 74.0328 0.2358 945 +947 3 474.8046 691.0767 74.6278 0.2356 946 +948 3 474.8355 692.1932 75.2321 0.2354 947 +949 3 475.0071 693.3075 75.7014 0.2352 948 +950 3 475.3286 694.3954 76.0402 0.2351 949 +951 3 475.5208 695.5211 76.2308 0.2349 950 +952 3 475.7324 696.6434 76.3661 0.2347 951 +953 3 475.9326 697.7668 76.5237 0.2345 952 +954 3 475.9818 698.9051 76.7617 0.2344 953 +955 3 476.2049 700.0159 77.1134 0.2342 954 +956 3 476.6785 701.0238 77.5356 0.234 955 +957 3 477.6223 701.6186 78.1211 0.2338 956 +958 3 478.3487 702.4377 78.6895 0.2337 957 +959 3 478.478 703.5383 79.347 0.2335 958 +960 3 478.6439 704.5553 80.4619 0.2333 959 +961 3 479.0489 705.5071 81.6346 0.233 960 +962 3 479.2868 706.5172 82.7492 0.2329 961 +963 3 479.7192 707.5011 83.5817 0.2327 962 +964 3 480.2089 708.4929 84.2856 0.2325 963 +965 3 480.4754 709.5729 84.8243 0.2323 964 +966 3 480.6047 710.6986 85.1987 0.2322 965 +967 3 480.5418 711.8265 85.5201 0.232 966 +968 3 480.8507 712.8802 85.827 0.2318 967 +969 3 481.5279 713.7942 86.0121 0.2316 968 +970 3 482.0873 714.7895 86.1112 0.2314 969 +971 3 482.9602 715.5068 86.1504 0.2313 970 +972 3 483.8456 716.2309 86.1381 0.2311 971 +973 3 484.6304 717.0603 86.018 0.2309 972 +974 3 485.1887 718.0533 85.8724 0.2307 973 +975 3 485.6577 719.0955 85.7354 0.2306 974 +976 3 485.8328 720.2212 85.6061 0.2304 975 +977 3 486.0707 721.3378 85.4493 0.2302 976 +978 3 486.5718 722.3582 85.2006 0.23 977 +979 3 487.1621 723.3352 84.9993 0.2298 978 +980 3 487.9034 724.2035 84.8484 0.2297 979 +981 3 488.6344 725.0798 84.6737 0.2295 980 +982 3 489.4032 725.9252 84.5516 0.2293 981 +983 3 489.6961 727.028 84.5614 0.2291 982 +984 3 489.6961 728.1709 84.698 0.229 983 +985 3 472.4423 686.2433 72.3064 0.2366 941 +986 3 471.59 686.932 72.8062 0.2362 985 +987 3 470.51 687.1928 73.0556 0.236 986 +988 3 469.3718 687.2008 73.3379 0.2357 987 +989 3 468.2449 687.1688 73.7856 0.2355 988 +990 3 467.2977 687.5875 74.5688 0.2352 989 +991 3 466.855 688.5747 75.3564 0.2349 990 +992 3 466.6776 689.6604 76.1146 0.2347 991 +993 3 466.0118 690.4543 77.1476 0.2344 992 +994 3 465.0326 690.8605 78.1071 0.2342 993 +995 3 464.4228 691.683 79.0754 0.2339 994 +996 3 464.4491 692.7217 80.218 0.2337 995 +997 3 464.2947 693.7685 81.2812 0.2334 996 +998 3 464.1265 694.8187 82.2954 0.2332 997 +999 3 463.797 695.7728 83.4868 0.2329 998 +1000 3 463.2319 696.6663 84.5522 0.2327 999 +1001 3 462.7858 697.6398 85.4997 0.2325 1000 +1002 3 462.4506 698.6751 86.3652 0.2322 1001 +1003 3 462.2412 699.7265 87.2637 0.232 1002 +1004 3 462.2366 700.795 88.2675 0.2318 1003 +1005 3 462.2366 701.86 89.2875 0.2315 1004 +1006 3 462.2366 702.9262 90.3028 0.2313 1005 +1007 3 462.2378 703.9696 91.4396 0.2311 1006 +1008 3 462.3888 704.8905 92.9802 0.2308 1007 +1009 3 462.6439 705.7508 94.7142 0.2305 1008 +1010 3 462.4952 706.7392 96.0411 0.2302 1009 +1011 3 462.1337 707.7402 97.0589 0.23 1010 +1012 3 462.0044 708.8224 97.8673 0.2298 1011 +1013 3 461.6017 709.8486 98.5424 0.2295 1012 +1014 3 460.635 709.7536 99.3118 0.2293 1013 +1015 3 459.7198 709.6346 100.9646 0.229 1014 +1016 3 426.2521 587.849 44.3302 0.2572 831 +1017 3 425.8952 588.9301 44.602 0.2566 1016 +1018 3 425.6126 590.0237 44.7874 0.2562 1017 +1019 3 425.7041 591.1437 44.9064 0.2559 1018 +1020 3 425.9409 592.2396 45.0052 0.2555 1019 +1021 3 425.5451 593.2029 45.1248 0.2551 1020 +1022 3 424.6448 593.9007 45.2413 0.2548 1021 +1023 3 424.2021 594.8457 45.3348 0.2544 1022 +1024 3 424.3451 595.9771 45.3488 0.254 1023 +1025 3 424.472 597.1062 45.2861 0.2537 1024 +1026 3 424.2398 598.1976 45.1752 0.2533 1025 +1027 3 423.6987 599.2009 44.9982 0.253 1026 +1028 3 423.2468 600.2396 44.7804 0.2526 1027 +1029 3 422.9814 601.347 44.5729 0.2522 1028 +1030 3 422.8876 602.4796 44.3864 0.2519 1029 +1031 3 423.1015 603.5824 44.1543 0.2515 1030 +1032 3 423.5992 604.5994 43.857 0.2511 1031 +1033 3 424.1849 605.5753 43.5736 0.2508 1032 +1034 3 424.8633 606.4882 43.3415 0.2504 1033 +1035 3 425.7076 607.2455 43.1598 0.2501 1034 +1036 3 426.529 608.0326 43.0248 0.2497 1035 +1037 3 426.9133 609.061 42.9318 0.2494 1036 +1038 3 427.0655 610.1924 42.8056 0.249 1037 +1039 3 426.8756 611.2941 42.5569 0.2486 1038 +1040 3 426.998 612.4061 42.5074 0.2482 1039 +1041 3 427.4362 613.4631 42.5379 0.2478 1040 +1042 3 428.1088 614.3886 42.5342 0.2475 1041 +1043 3 428.682 615.3782 42.5407 0.2471 1042 +1044 3 428.5516 616.5142 42.5701 0.2471 1043 +1045 3 428.1683 617.5918 42.5499 0.2471 1044 +1046 3 427.6341 618.6031 42.534 0.2471 1045 +1047 3 427.2531 619.6819 42.5228 0.2471 1046 +1048 3 427.2131 620.8248 42.5079 0.2471 1047 +1049 3 427.0838 621.9619 42.4872 0.2471 1048 +1050 3 426.7292 623.0487 42.4578 0.2471 1049 +1051 3 426.1766 624.0509 42.4175 0.2471 1050 +1052 3 426.2418 625.2749 42.2901 0.2471 1051 +1053 3 426.1583 626.4144 42.1658 0.2469 1052 +1054 3 425.449 627.2998 42.0039 0.2467 1053 +1055 3 424.6093 628.072 41.8242 0.2466 1054 +1056 3 424.0396 629.0581 41.58 0.2465 1055 +1057 3 423.6998 630.1358 41.174 0.2464 1056 +1058 3 423.0992 631.0876 40.7425 0.2462 1057 +1059 3 422.2756 631.8609 40.3292 0.2461 1058 +1060 3 421.612 632.7567 39.8014 0.246 1059 +1061 3 421.3283 633.8195 39.3184 0.2459 1060 +1062 3 421.4393 634.9406 38.9494 0.2457 1061 +1063 3 421.1728 636.0114 38.6697 0.2456 1062 +1064 3 420.3765 636.803 38.4675 0.2455 1063 +1065 3 419.4533 637.4379 38.3314 0.2454 1064 +1066 3 418.9145 638.4126 38.2466 0.2452 1065 +1067 3 418.7074 639.536 38.192 0.2451 1066 +1068 3 418.3333 640.6034 38.0971 0.245 1067 +1069 3 417.7522 641.5849 37.8969 0.2449 1068 +1070 3 417.306 642.6226 37.6538 0.2448 1069 +1071 3 417.147 643.7425 37.3887 0.2446 1070 +1072 3 417.0978 644.8774 37.1017 0.2445 1071 +1073 3 416.7157 645.8944 36.7665 0.2444 1072 +1074 3 415.9824 646.7558 36.3885 0.2443 1073 +1075 3 415.5626 647.7591 36.0598 0.2441 1074 +1076 3 415.3498 648.8608 35.7622 0.244 1075 +1077 3 414.8727 649.8904 35.448 0.2439 1076 +1078 3 414.1955 650.7816 35.175 0.2438 1077 +1079 3 413.4805 651.6453 34.9877 0.2437 1078 +1080 3 412.9119 652.6348 34.834 0.2435 1079 +1081 3 412.1157 653.4082 34.7446 0.2434 1080 +1082 3 411.0804 653.8852 34.7707 0.2433 1081 +1083 3 410.1709 654.5213 34.804 0.2432 1082 +1084 3 409.7373 655.5372 34.7712 0.243 1083 +1085 3 409.1219 656.4455 34.69 0.2429 1084 +1086 3 408.2936 657.2349 34.6237 0.2428 1085 +1087 3 407.6312 658.1581 34.5909 0.2427 1086 +1088 3 406.8911 659.0241 34.6262 0.2425 1087 +1089 3 406.303 659.9942 34.7544 0.2424 1088 +1090 3 406.1658 661.1142 34.9286 0.2423 1089 +1091 3 405.9404 662.2307 35.1422 0.2422 1090 +1092 3 405.2426 663.115 35.3427 0.242 1091 +1093 3 404.3605 663.8403 35.4295 0.2419 1092 +1094 3 403.9155 664.8848 35.4298 0.2418 1093 +1095 3 403.5437 665.9624 35.3948 0.2417 1094 +1096 3 402.5553 666.5379 35.341 0.2415 1095 +1097 3 401.5875 667.1236 35.2834 0.2414 1096 +1098 3 401.0075 668.104 35.2304 0.2413 1097 +1099 3 400.6803 669.2 35.1826 0.2412 1098 +1100 3 400.3508 670.2925 35.0986 0.241 1099 +1101 3 400.2341 671.4285 34.9969 0.2409 1100 +1102 3 400.2238 672.5725 34.9079 0.2408 1101 +1103 3 400.2078 673.7153 34.8348 0.2407 1102 +1104 3 400.074 674.849 34.7763 0.2405 1103 +1105 3 399.8589 675.961 34.7304 0.2404 1104 +1106 3 400.1529 677.0306 34.6948 0.2403 1105 +1107 3 400.9789 677.8189 34.6632 0.2402 1106 +1108 3 401.6138 678.7478 34.6147 0.2401 1107 +1109 3 401.8151 679.8689 34.5005 0.2399 1108 +1110 3 401.8815 681.006 34.4142 0.2398 1109 +1111 3 402.2144 682.0917 34.393 0.2397 1110 +1112 3 402.8207 683.0584 34.3706 0.2396 1111 +1113 3 403.4522 683.9919 34.279 0.2394 1112 +1114 3 403.7759 685.0855 34.0581 0.2393 1113 +1115 3 404.1752 686.1506 33.9226 0.2392 1114 +1116 3 404.7598 687.1299 33.8425 0.2391 1115 +1117 3 405.3844 688.0851 33.7862 0.2389 1116 +1118 3 406.0925 688.9614 33.6916 0.2388 1117 +1119 3 407.0524 689.5609 33.5698 0.2387 1118 +1120 3 407.995 690.1809 33.4586 0.2386 1119 +1121 3 408.5544 691.1282 33.3805 0.2384 1120 +1122 3 408.6185 692.2493 33.3609 0.2383 1121 +1123 3 408.5064 693.3876 33.3917 0.2382 1122 +1124 3 408.6631 694.4995 33.4348 0.2381 1123 +1125 3 409.3575 695.3495 33.4603 0.2379 1124 +1126 3 410.2212 696.0988 33.455 0.2378 1125 +1127 3 410.8676 697.0278 33.4132 0.2377 1126 +1128 3 411.0403 698.1283 33.3326 0.2376 1127 +1129 3 410.688 699.1922 33.1775 0.2374 1128 +1130 3 410.0794 700.1543 32.9778 0.2373 1129 +1131 3 409.5829 701.177 32.7687 0.2372 1130 +1132 3 409.8609 702.2101 32.4148 0.2371 1131 +1133 3 410.7257 702.9331 32.023 0.2369 1132 +1134 3 411.1319 703.9901 31.6907 0.2368 1133 +1135 3 411.4041 705.1708 31.2998 0.2366 1134 +1136 3 412.0596 706.0722 31.0968 0.2363 1135 +1137 3 412.6854 707.0137 30.8557 0.2361 1136 +1138 3 412.8364 708.128 30.6289 0.2359 1137 +1139 3 413.2837 709.1633 30.4214 0.2357 1138 +1140 3 414.2172 709.7971 30.2882 0.2356 1139 +1141 3 415.1816 710.4114 30.1952 0.2354 1140 +1142 3 415.844 711.3358 30.0297 0.2352 1141 +1143 3 416.3885 712.3322 29.7203 0.235 1142 +1144 3 417.1665 713.1593 29.3905 0.2348 1143 +1145 3 418.0817 713.8102 29.09 0.2346 1144 +1146 3 419.2119 713.8526 28.7745 0.2344 1145 +1147 3 420.2324 714.2987 28.4222 0.2342 1146 +1148 3 420.9073 715.1979 28.0837 0.234 1147 +1149 3 421.2231 716.2778 27.7143 0.2339 1148 +1150 3 421.1316 717.3795 27.2294 0.2337 1149 +1151 3 420.6019 718.3565 26.5782 0.2335 1150 +1152 3 419.9224 719.2065 25.8896 0.2333 1151 +1153 3 419.0552 719.91 25.3241 0.2331 1152 +1154 3 418.2819 720.7269 24.821 0.2329 1153 +1155 3 417.4845 721.5094 24.326 0.2327 1154 +1156 3 416.6082 722.2083 23.8381 0.2325 1155 +1157 3 416.3805 723.119 23.4048 0.2324 1156 +1158 3 416.6379 724.1978 23.0029 0.2322 1157 +1159 3 416.3702 725.2731 22.7032 0.232 1158 +1160 3 416.0774 726.3611 22.4678 0.2318 1159 +1161 3 415.9515 727.4936 22.2212 0.2316 1160 +1162 3 415.8863 728.6296 21.9364 0.2314 1161 +1163 3 415.8371 729.7668 21.6476 0.2312 1162 +1164 3 415.5534 730.857 21.3788 0.231 1163 +1165 3 415.232 731.9484 21.1327 0.2309 1164 +1166 3 415.0226 733.0683 20.9262 0.2307 1165 +1167 3 414.9151 734.2055 20.7623 0.2305 1166 +1168 3 415.2182 735.282 20.6769 0.2303 1167 +1169 3 415.8806 736.204 20.7098 0.2301 1168 +1170 3 416.5842 737.1032 20.8716 0.2299 1169 +1171 3 416.9022 738.1683 21.2591 0.2297 1170 +1172 3 417.3049 739.2253 21.6486 0.2295 1171 +1173 3 417.7236 740.2698 22.1431 0.2293 1172 +1174 3 418.3162 741.2273 22.6044 0.2292 1173 +1175 3 418.4558 742.2936 23.5584 0.229 1174 +1176 3 410.1606 704.1286 30.3719 0.2362 1134 +1177 3 409.2466 704.5965 29.5795 0.2351 1176 +1178 3 408.6265 705.5277 29.0875 0.2344 1177 +1179 3 408.1906 706.5584 28.5432 0.2337 1178 +1180 3 408.3908 707.564 27.8145 0.233 1179 +1181 3 408.7615 708.5776 26.9002 0.2322 1180 +1182 3 408.3016 709.4916 25.8542 0.2315 1181 +1183 3 407.8303 710.4537 24.884 0.2308 1182 +1184 3 407.6347 711.5085 24.0045 0.2301 1183 +1185 3 408.0042 712.3814 22.4367 0.2295 1184 +1186 3 424.9983 624.1412 40.8265 0.2467 1051 +1187 3 423.9264 624.3002 40.0296 0.2461 1186 +1188 3 422.9036 624.7361 39.5276 0.2457 1187 +1189 3 422.0559 625.458 39.0146 0.2454 1188 +1190 3 421.3409 626.3217 38.472 0.245 1189 +1191 3 420.5344 627.0802 37.8549 0.2446 1190 +1192 3 419.5952 627.6499 37.1157 0.2442 1191 +1193 3 418.6525 628.207 36.3079 0.2438 1192 +1194 3 417.8712 628.9575 35.476 0.2435 1193 +1195 3 417.5051 629.9333 34.4893 0.2431 1194 +1196 3 417.8128 630.9034 33.3654 0.2426 1195 +1197 3 417.886 631.925 32.1919 0.2422 1196 +1198 3 417.3712 632.8597 31.269 0.2419 1197 +1199 3 417.6412 633.9121 30.3906 0.2415 1198 +1200 3 417.8563 634.9875 29.5977 0.2411 1199 +1201 3 418.2372 636.016 28.8585 0.2407 1200 +1202 3 419.0197 636.7916 28.1392 0.2403 1201 +1203 3 419.6352 637.5432 27.2472 0.2399 1202 +1204 3 419.6981 638.662 26.6805 0.2395 1203 +1205 3 419.8812 639.7603 26.1939 0.2391 1204 +1206 3 420.436 640.7258 25.8129 0.2388 1205 +1207 3 421.2563 641.5163 25.5862 0.2384 1206 +1208 3 422.0571 642.3217 25.496 0.238 1207 +1209 3 422.7217 643.2518 25.4948 0.2376 1208 +1210 3 423.3338 644.2173 25.493 0.2372 1209 +1211 3 423.8303 645.2446 25.4733 0.2369 1210 +1212 3 424.2776 646.2959 25.4142 0.2365 1211 +1213 3 424.9525 647.186 25.2902 0.2361 1212 +1214 3 425.8529 647.8861 25.0858 0.2357 1213 +1215 3 426.6903 648.648 24.7933 0.2354 1214 +1216 3 427.2623 649.601 24.3822 0.235 1215 +1217 3 427.4064 650.7003 23.9279 0.2346 1216 +1218 3 427.3504 651.8318 23.5437 0.2342 1217 +1219 3 427.3538 652.9655 23.1983 0.2338 1218 +1220 3 427.2462 654.0831 22.7765 0.2334 1219 +1221 3 427.0541 655.1917 22.2748 0.233 1220 +1222 3 426.8344 656.2899 21.7153 0.2327 1221 +1223 3 426.3677 657.2921 21.1081 0.2323 1222 +1224 3 426.0679 658.3342 20.3202 0.2318 1223 +1225 3 425.3449 659.1179 19.5128 0.2314 1224 +1226 3 424.4972 659.8466 18.9252 0.2311 1225 +1227 3 423.4024 660.064 18.4673 0.2307 1226 +1228 3 422.517 660.755 18.0972 0.2303 1227 +1229 3 422.1074 661.7994 17.6695 0.2299 1228 +1230 3 421.2803 662.5773 17.3246 0.2295 1229 +1231 3 420.3033 663.1356 16.8274 0.2292 1230 +1232 3 429.1007 615.9571 41.7738 0.2398 1043 +1233 3 429.6475 616.8951 40.9259 0.2368 1232 +1234 3 430.033 617.951 40.5244 0.2368 1233 +1235 3 430.3762 619.0321 40.1635 0.2368 1234 +1236 3 430.5879 620.1304 39.6234 0.2368 1235 +1237 3 430.8647 621.2195 39.1073 0.2368 1236 +1238 3 431.2972 622.2605 38.67 0.2368 1237 +1239 3 431.5294 623.3645 38.2914 0.2368 1238 +1240 3 431.725 624.4764 37.8347 0.2368 1239 +1241 3 431.9309 625.5884 37.4058 0.2368 1240 +1242 3 432.3485 626.634 36.9608 0.2368 1241 +1243 3 432.9651 627.5595 36.3364 0.2368 1242 +1244 3 433.5016 628.5445 35.7851 0.2368 1243 +1245 3 433.6343 629.6599 35.2814 0.2368 1244 +1246 3 433.5577 630.7844 34.8076 0.2368 1245 +1247 3 433.2992 631.8884 34.4459 0.2368 1246 +1248 3 432.9033 632.9569 34.1796 0.2368 1247 +1249 3 432.7775 634.0906 33.9839 0.2368 1248 +1250 3 432.7992 635.2312 33.817 0.2368 1249 +1251 3 432.9171 636.3649 33.5784 0.2368 1250 +1252 3 433.0143 637.4986 33.2886 0.2368 1251 +1253 3 433.1115 638.6323 32.9963 0.2368 1252 +1254 3 433.3804 639.7374 32.695 0.2368 1253 +1255 3 433.8403 640.7796 32.4366 0.2368 1254 +1256 3 434.2063 641.8595 32.2123 0.2368 1255 +1257 3 433.9558 643.0927 31.866 0.2368 1256 +1258 3 434.0794 644.207 31.5288 0.2368 1257 +1259 3 434.4981 645.2549 31.1609 0.2368 1258 +1260 3 435.0746 646.2319 30.819 0.2368 1259 +1261 3 435.6981 647.1825 30.511 0.2368 1260 +1262 3 436.1328 648.2064 30.1347 0.2368 1261 +1263 3 436.325 649.3184 29.6682 0.2368 1262 +1264 3 436.6637 650.3915 29.2513 0.2368 1263 +1265 3 436.9966 651.4737 28.8834 0.2368 1264 +1266 3 437.2334 652.5845 28.5743 0.2368 1265 +1267 3 437.4153 653.7079 28.2957 0.2368 1266 +1268 3 437.7116 654.805 28.0364 0.2368 1267 +1269 3 437.9804 655.909 27.7582 0.2368 1268 +1270 3 438.1463 657.0335 27.4482 0.2368 1269 +1271 3 438.2344 658.1672 27.1584 0.2368 1270 +1272 3 438.2584 659.3066 26.9145 0.2368 1271 +1273 3 438.1955 660.4438 26.6841 0.2368 1272 +1274 3 438.0502 661.5741 26.4553 0.2368 1273 +1275 3 437.9495 662.71 26.2467 0.2368 1274 +1276 3 438.2046 663.8037 26.056 0.2368 1275 +1277 3 438.2744 664.9271 25.7818 0.2368 1276 +1278 3 438.1737 666.0597 25.4761 0.2368 1277 +1279 3 438.1943 667.1945 25.1504 0.2368 1278 +1280 3 438.2195 668.3317 24.8583 0.2368 1279 +1281 3 438.2424 669.4711 24.6168 0.2368 1280 +1282 3 438.3019 670.6094 24.3631 0.2368 1281 +1283 3 438.3705 671.7476 24.1458 0.2368 1282 +1284 3 438.2275 672.8768 23.9241 0.2368 1283 +1285 3 438.0445 674.0025 23.7171 0.2368 1284 +1286 3 437.7733 675.111 23.5347 0.2368 1285 +1287 3 437.7745 676.2493 23.3695 0.2368 1286 +1288 3 437.9106 677.383 23.2174 0.2368 1287 +1289 3 437.715 678.5018 23.0505 0.2368 1288 +1290 3 437.4736 679.6161 22.8175 0.2368 1289 +1291 3 437.6075 680.7372 22.4479 0.2368 1290 +1292 3 437.8305 681.8492 22.0713 0.2368 1291 +1293 3 438.3007 682.8811 21.7249 0.2368 1292 +1294 3 439.0237 683.7562 21.4005 0.2368 1293 +1295 3 439.6724 684.6863 21.0311 0.2368 1294 +1296 3 439.5831 685.8051 20.5899 0.2368 1295 +1297 3 439.9996 686.996 19.9469 0.2367 1296 +1298 3 440.3588 688.0542 19.3426 0.2361 1297 +1299 3 440.6196 689.1342 18.7354 0.2358 1298 +1300 3 440.7088 690.2541 18.2045 0.2355 1299 +1301 3 440.7946 691.3775 17.7157 0.2352 1300 +1302 3 440.885 692.4987 17.219 0.2349 1301 +1303 3 441.107 693.5923 16.7239 0.2346 1302 +1304 3 441.5485 694.6288 16.2401 0.2343 1303 +1305 3 441.6515 695.6641 15.768 0.2339 1304 +1306 3 441.1081 696.656 15.3418 0.2336 1305 +1307 3 440.5636 697.649 14.9426 0.2333 1306 +1308 3 440.0911 698.6717 14.5515 0.233 1307 +1309 3 440.1025 699.731 14.1523 0.2327 1308 +1310 3 440.5899 700.7515 13.7579 0.2324 1309 +1311 3 440.8553 701.8303 13.312 0.2321 1310 +1312 3 440.8667 702.9548 12.799 0.2318 1311 +1313 3 440.7477 704.0554 12.2107 0.2314 1312 +1314 3 440.3096 705.0644 11.5396 0.2311 1313 +1315 3 439.7227 706.0047 10.8438 0.2308 1314 +1316 3 439.1347 706.9462 10.1658 0.2305 1315 +1317 3 438.5021 707.8626 9.5332 0.2302 1316 +1318 3 437.5445 708.2984 9.0498 0.2298 1317 +1319 3 437.2185 709.1073 8.8299 0.2294 1318 +1320 3 437.572 710.1494 9.5357 0.2291 1319 +1321 3 439.0214 685.971 20.2667 0.2368 1296 +1322 3 437.9724 685.9676 19.1982 0.2354 1321 +1323 3 436.8764 685.7742 18.6003 0.2345 1322 +1324 3 435.7633 685.645 18.0432 0.2337 1323 +1325 3 434.7131 685.971 17.3868 0.2329 1324 +1326 3 433.9592 686.7638 16.6316 0.232 1325 +1327 3 433.2591 687.6344 16.0402 0.2312 1326 +1328 3 432.1586 687.878 15.5642 0.2304 1327 +1329 3 431.1484 688.235 14.5838 0.2296 1328 +1330 3 435.2268 642.2462 32.571 0.2368 1256 +1331 3 436.2633 641.9041 32.7141 0.2368 1330 +1332 3 436.9634 641.0118 32.8056 0.2368 1331 +1333 3 437.485 639.9948 32.8992 0.2368 1332 +1334 3 438.057 639.0052 32.9678 0.2368 1333 +1335 3 438.7251 638.082 33.0123 0.2368 1334 +1336 3 439.5328 637.2744 33.0341 0.2368 1335 +1337 3 440.3199 636.4552 33.0358 0.2368 1336 +1338 3 440.9777 635.5183 33.0187 0.2368 1337 +1339 3 441.6687 634.6077 32.9784 0.2368 1338 +1340 3 442.426 633.7531 32.9249 0.2368 1339 +1341 3 443.2691 632.9809 32.8941 0.2368 1340 +1342 3 444.1283 632.2259 32.8751 0.2368 1341 +1343 3 445.008 631.4983 32.837 0.2368 1342 +1344 3 445.9918 630.9252 32.7729 0.2368 1343 +1345 3 447.0752 630.6449 32.6712 0.2368 1344 +1346 3 448.0956 630.9778 32.5153 0.2368 1345 +1347 3 448.71 631.8884 32.265 0.2368 1346 +1348 3 449.4467 632.5451 31.7727 0.2368 1347 +1349 3 450.1125 631.7191 31.1752 0.2368 1348 +1350 3 450.6651 630.9778 30.2795 0.2364 1349 +1351 3 451.332 630.0809 29.6825 0.2359 1350 +1352 3 452.0219 629.1851 29.2586 0.2356 1351 +1353 3 452.7403 628.3031 28.9873 0.2352 1352 +1354 3 453.4885 627.4405 28.8456 0.2349 1353 +1355 3 454.3442 626.6901 28.8044 0.2345 1354 +1356 3 455.3578 626.1867 28.8389 0.2342 1355 +1357 3 456.4709 625.959 28.9218 0.2338 1356 +1358 3 457.6103 625.879 29.0511 0.2335 1357 +1359 3 458.7291 625.6902 29.2527 0.2331 1358 +1360 3 459.8102 625.3333 29.4958 0.2328 1359 +1361 3 460.8924 624.9855 29.8001 0.2324 1360 +1362 3 461.8946 624.4833 30.2184 0.232 1361 +1363 3 462.8716 623.917 30.6606 0.2317 1362 +1364 3 463.9206 623.5052 31.073 0.2313 1363 +1365 3 465.0371 623.4468 31.4535 0.231 1364 +1366 3 466.1171 623.7374 31.9063 0.2306 1365 +1367 3 466.9362 624.4421 32.6676 0.2302 1366 +1368 3 467.9029 624.9981 33.29 0.2298 1367 +1369 3 468.9588 625.3516 33.9262 0.2295 1368 +1370 3 470.0216 625.5941 34.7768 0.2291 1369 +1371 3 450.6845 631.8621 30.9313 0.2368 1349 +1372 3 451.7164 631.5852 30.1568 0.2355 1371 +1373 3 452.6682 631.0007 29.6139 0.2345 1372 +1374 3 453.6292 630.4126 29.1365 0.2337 1373 +1375 3 454.6393 629.9116 28.6653 0.2329 1374 +1376 3 455.6941 629.5764 27.9836 0.232 1375 +1377 3 456.3061 628.6406 27.4238 0.2312 1376 +1378 3 456.9628 627.7448 26.7622 0.2304 1377 +1379 3 457.6492 626.9177 25.802 0.2296 1378 +1380 3 424.1586 581.0273 42.8005 0.2574 825 +1381 3 423.1095 581.3659 43.0363 0.2567 1380 +1382 3 422.1509 581.9803 42.9853 0.2562 1381 +1383 3 421.0561 582.2525 42.8744 0.2558 1382 +1384 3 419.9144 582.2262 42.7678 0.2553 1383 +1385 3 418.9889 582.8646 42.8179 0.2548 1384 +1386 3 418.1366 583.5922 42.978 0.2544 1385 +1387 3 417.012 583.7866 43.1267 0.254 1386 +1388 3 415.892 583.9559 43.1866 0.2535 1387 +1389 3 414.867 584.4639 43.1508 0.2531 1388 +1390 3 413.858 584.9993 43.1068 0.2527 1389 +1391 3 412.8238 585.4878 43.0749 0.2523 1390 +1392 3 411.808 586.0129 43.1057 0.2518 1391 +1393 3 410.7624 586.467 43.2989 0.2514 1392 +1394 3 409.6641 586.729 43.5196 0.251 1393 +1395 3 408.599 586.991 43.6649 0.2505 1394 +1396 3 407.8005 587.7815 43.7251 0.2501 1395 +1397 3 407.0581 588.5846 43.6587 0.2497 1396 +1398 3 406.0834 589.1531 43.3972 0.2492 1397 +1399 3 405.1968 589.8624 43.0592 0.2488 1398 +1400 3 404.1832 590.2731 42.7745 0.2484 1399 +1401 3 403.0598 590.1976 42.5348 0.2479 1400 +1402 3 401.9387 590.1358 42.3004 0.2475 1401 +1403 3 400.9834 590.6438 42.0941 0.2471 1402 +1404 3 400.2902 591.5407 41.918 0.2466 1403 +1405 3 399.6461 592.4833 41.7508 0.2462 1404 +1406 3 398.8018 593.2258 41.6094 0.2458 1405 +1407 3 397.7185 593.4317 41.4498 0.2453 1406 +1408 3 396.579 593.3917 41.2454 0.2449 1407 +1409 3 395.4602 593.5655 41.0382 0.2445 1408 +1410 3 394.3883 593.9511 40.8724 0.2441 1409 +1411 3 393.3793 594.483 40.7523 0.2436 1410 +1412 3 392.4606 595.1603 40.6731 0.2432 1411 +1413 3 391.4185 595.5939 40.6305 0.2428 1412 +1414 3 390.2836 595.6751 40.6333 0.2424 1413 +1415 3 389.1716 595.921 40.6543 0.2419 1414 +1416 3 388.0517 596.151 40.6476 0.2415 1415 +1417 3 386.9374 596.4072 40.607 0.2411 1416 +1418 3 385.9192 596.9163 40.5625 0.2407 1417 +1419 3 384.9217 597.4769 40.5112 0.2402 1418 +1420 3 383.8475 597.8636 40.4317 0.2398 1419 +1421 3 382.8625 598.4344 40.2937 0.2394 1420 +1422 3 381.9038 599.0487 40.031 0.2389 1421 +1423 3 381.3352 600.0223 39.7342 0.2385 1422 +1424 3 380.364 600.5989 39.3952 0.2381 1423 +1425 3 379.2715 600.9054 39.0404 0.2376 1424 +1426 3 378.1641 601.1457 38.64 0.2372 1425 +1427 3 377.1379 601.6227 38.2399 0.2368 1426 +1428 3 377.4536 602.2874 37.9201 0.2368 1427 +1429 3 377.3804 603.3353 37.1818 0.2368 1428 +1430 3 376.7135 604.2299 36.5812 0.2368 1429 +1431 3 376.1209 605.1817 36.0223 0.2368 1430 +1432 3 376.5682 605.3121 35.2565 0.2368 1431 +1433 3 377.3999 605.9345 35.3416 0.2359 1432 +1434 3 378.2945 606.614 35.7692 0.235 1433 +1435 3 379.1525 607.3439 36.2037 0.2343 1434 +1436 3 380.0665 607.9651 36.881 0.2336 1435 +1437 3 380.4715 608.942 37.7387 0.2328 1436 +1438 3 380.563 610.0346 38.5311 0.2322 1437 +1439 3 380.7701 611.1076 39.3436 0.2315 1438 +1440 3 381.3318 612.064 40.014 0.2308 1439 +1441 3 382.2619 612.7001 40.4712 0.2301 1440 +1442 3 383.3761 612.8717 40.9469 0.2295 1441 +1443 3 375.4402 605.5856 35.4844 0.2368 1431 +1444 3 374.4438 606.0855 35.2262 0.2366 1443 +1445 3 373.4142 606.4813 35.0361 0.2365 1444 +1446 3 372.5939 607.2661 34.9555 0.2364 1445 +1447 3 371.7703 608.0452 34.9308 0.2363 1446 +1448 3 370.7841 608.6149 34.946 0.2363 1447 +1449 3 369.8163 609.2075 34.9863 0.2362 1448 +1450 3 369.0178 610.0151 35.0504 0.2361 1449 +1451 3 368.5934 611.0321 35.1464 0.236 1450 +1452 3 368.0305 611.9062 35.3548 0.2359 1451 +1453 3 367.0661 612.509 35.6404 0.2358 1452 +1454 3 366.0228 612.9575 35.8378 0.2357 1453 +1455 3 364.9246 613.2687 35.9579 0.2357 1454 +1456 3 363.8961 613.7434 36.0514 0.2356 1455 +1457 3 363.0564 614.5019 36.1561 0.2355 1456 +1458 3 362.1996 615.2524 36.2401 0.2354 1457 +1459 3 361.3198 615.9834 36.2855 0.2353 1458 +1460 3 360.503 616.7819 36.2852 0.2352 1459 +1461 3 359.6416 617.5323 36.3079 0.2351 1460 +1462 3 358.668 618.1249 36.3784 0.2351 1461 +1463 3 357.7631 618.8182 36.3866 0.235 1462 +1464 3 357.1179 619.7506 36.3474 0.2349 1463 +1465 3 356.2919 620.5262 36.2891 0.2348 1464 +1466 3 355.5632 621.4014 36.2037 0.2347 1465 +1467 3 355.1068 622.4447 36.0497 0.2346 1466 +1468 3 354.2842 623.2226 35.8081 0.2345 1467 +1469 3 353.3038 623.8083 35.6504 0.2345 1468 +1470 3 352.3028 624.354 35.4648 0.2344 1469 +1471 3 351.4711 625.1331 35.2794 0.2343 1470 +1472 3 351.0421 626.1901 35.1025 0.2342 1471 +1473 3 350.3523 627.087 34.9286 0.2341 1472 +1474 3 349.2563 627.3925 34.7197 0.234 1473 +1475 3 348.3343 628.0537 34.4196 0.2339 1474 +1476 3 347.5758 628.8808 34.0626 0.2338 1475 +1477 3 346.5176 629.2492 33.5129 0.2338 1476 +1478 3 345.4674 629.6427 33.0078 0.2337 1477 +1479 3 344.3703 629.8727 32.4587 0.2336 1478 +1480 3 343.3487 630.2994 31.985 0.2335 1479 +1481 3 342.4644 631.0007 31.5818 0.2334 1480 +1482 3 341.5218 631.6344 31.2922 0.2333 1481 +1483 3 340.7198 632.4295 31.1214 0.2332 1482 +1484 3 340.1043 633.3939 31.0397 0.2332 1483 +1485 3 339.4557 634.3343 31.0271 0.2331 1484 +1486 3 338.783 635.2575 31.064 0.233 1485 +1487 3 338.179 636.2287 31.1419 0.2329 1486 +1488 3 337.5406 637.176 31.2628 0.2328 1487 +1489 3 336.948 638.1472 31.4465 0.2327 1488 +1490 3 336.4458 639.17 31.6999 0.2326 1489 +1491 3 336.4161 640.1835 32.0412 0.2326 1490 +1492 3 336.4893 641.2463 32.4624 0.2325 1491 +1493 3 335.9253 642.2004 32.844 0.2324 1492 +1494 3 335.7022 643.2575 33.1646 0.2323 1493 +1495 3 336.1736 644.2482 33.427 0.2322 1494 +1496 3 336.7032 645.2515 33.7344 0.2321 1495 +1497 3 336.3772 646.241 34.1368 0.232 1496 +1498 3 335.3281 646.4504 34.4663 0.2319 1497 +1499 3 334.191 646.495 34.7323 0.2318 1498 +1500 3 333.1557 646.9366 34.9521 0.2318 1499 +1501 3 332.3549 647.7339 35.1677 0.2317 1500 +1502 3 331.6559 648.632 35.4385 0.2316 1501 +1503 3 331.3035 649.7085 35.6521 0.2315 1502 +1504 3 330.9878 650.8067 35.8268 0.2314 1503 +1505 3 330.7098 651.9141 36.0004 0.2313 1504 +1506 3 330.6457 653.0524 36.143 0.2313 1505 +1507 3 329.7523 653.7159 36.2208 0.2312 1506 +1508 3 328.7158 654.1998 36.2426 0.2311 1507 +1509 3 327.9676 655.0601 36.1928 0.231 1508 +1510 3 327.0833 655.7854 36.1007 0.2309 1509 +1511 3 326.2013 656.5096 36.0105 0.2308 1510 +1512 3 325.1237 656.8951 35.9344 0.2307 1511 +1513 3 324.0414 657.2589 35.8756 0.2306 1512 +1514 3 323.0679 657.8583 35.8282 0.2306 1513 +1515 3 322.0211 658.3102 35.7882 0.2305 1514 +1516 3 320.8783 658.3628 35.7428 0.2304 1515 +1517 3 319.7366 658.3846 35.6846 0.2303 1516 +1518 3 318.6097 658.5779 35.6073 0.2302 1517 +1519 3 317.4726 658.5436 35.4446 0.2301 1518 +1520 3 316.3915 658.2004 35.2822 0.2301 1519 +1521 3 315.2532 658.2828 35.0927 0.23 1520 +1522 3 314.1218 658.42 34.8855 0.2299 1521 +1523 3 313.0567 658.7621 34.6746 0.2298 1522 +1524 3 312.1793 659.4634 34.3633 0.2297 1523 +1525 3 311.0868 659.7437 34.1564 0.2296 1524 +1526 3 310.064 660.2356 34.0113 0.2295 1525 +1527 3 309.4909 661.2011 33.976 0.2294 1526 +1528 3 309.0367 662.2513 34.0021 0.2293 1527 +1529 3 308.2359 663.0601 34.0463 0.2292 1528 +1530 3 307.2841 663.6927 34.0379 0.2291 1529 +1531 3 306.5028 664.5267 34.0178 0.2291 1530 +1532 3 305.4583 664.9878 34.0693 0.229 1531 +1533 3 304.344 665.2394 34.2157 0.2289 1532 +1534 3 376.5236 602.3858 38.8923 0.2364 1427 +1535 3 375.5386 602.9395 39.0855 0.236 1534 +1536 3 374.4015 602.9441 39.3159 0.2358 1535 +1537 3 373.4508 602.3492 39.7872 0.2355 1536 +1538 3 372.3972 601.982 40.3962 0.2352 1537 +1539 3 371.3161 601.6914 40.9108 0.2349 1538 +1540 3 370.2487 601.4328 41.4554 0.2347 1539 +1541 3 369.2832 600.8471 41.8984 0.2344 1540 +1542 3 368.2708 600.3529 42.2769 0.2341 1541 +1543 3 367.1657 600.1298 42.5219 0.2339 1542 +1544 3 366.0239 600.1367 42.6737 0.2336 1543 +1545 3 365.0515 599.7786 42.8792 0.2333 1544 +1546 3 364.4807 598.8062 43.1586 0.2331 1545 +1547 3 363.8938 597.8567 43.4787 0.2328 1546 +1548 3 362.9512 597.2893 43.8206 0.2325 1547 +1549 3 361.8644 596.9495 44.0891 0.2323 1548 +1550 3 360.7478 596.755 44.3114 0.232 1549 +1551 3 359.6313 596.5537 44.5875 0.2317 1550 +1552 3 358.7756 595.8581 44.8179 0.2314 1551 +1553 3 358.406 594.8045 44.9428 0.2312 1552 +1554 3 357.8112 593.8447 45.0131 0.2309 1553 +1555 3 356.8079 593.331 45.1133 0.2306 1554 +1556 3 356.1569 592.4124 45.1872 0.2304 1555 +1557 3 355.4099 591.5464 45.2164 0.2301 1556 +1558 3 354.3105 591.281 45.2264 0.2298 1557 +1559 3 353.337 590.685 45.2206 0.2296 1558 +1560 3 352.519 589.8864 45.1898 0.2293 1559 +1561 3 352.1701 588.8076 44.8731 0.2291 1560 +1562 3 426.0016 581.8819 41.6668 0.2574 824 +1563 3 426.3242 582.9744 41.8314 0.2574 1562 +1564 3 426.6045 584.0761 41.9294 0.2574 1563 +1565 3 427.1982 585.0244 42.1134 0.2574 1564 +1566 3 427.9818 585.847 42.3486 0.2574 1565 +1567 3 428.6431 586.7748 42.5684 0.2574 1566 +1568 3 429.3112 587.6957 42.7644 0.2574 1567 +1569 3 430.1005 588.5182 42.9587 0.2574 1568 +1570 3 430.8258 589.3819 43.1953 0.2574 1569 +1571 3 431.3292 590.4001 43.4566 0.2574 1570 +1572 3 431.7879 591.4411 43.7046 0.2574 1571 +1573 3 432.4183 592.3804 43.9253 0.2574 1572 +1574 3 433.1893 593.2235 44.072 0.2574 1573 +1575 3 433.751 594.1867 44.2016 0.2574 1574 +1576 3 434.0073 595.2953 44.3887 0.2574 1575 +1577 3 434.5141 596.2871 44.5626 0.2574 1576 +1578 3 435.4064 596.9632 44.6894 0.2574 1577 +1579 3 436.4211 597.4906 44.7776 0.2574 1578 +1580 3 437.0011 598.3978 44.8316 0.2574 1579 +1581 3 437.334 599.4915 44.8843 0.2574 1580 +1582 3 437.7791 600.5428 44.9193 0.2574 1581 +1583 3 438.112 601.6342 44.8529 0.2574 1582 +1584 3 437.9896 602.7564 44.7084 0.2574 1583 +1585 3 437.3924 603.7174 44.562 0.2574 1584 +1586 3 436.8055 604.6978 44.4858 0.2574 1585 +1587 3 436.6408 605.8212 44.4102 0.2574 1586 +1588 3 437.1476 606.8302 44.3134 0.2574 1587 +1589 3 437.9472 607.6425 44.1767 0.2574 1588 +1590 3 438.7343 608.465 43.8925 0.2574 1589 +1591 3 439.5408 609.2589 43.4913 0.2574 1590 +1592 3 440.1483 610.2165 43.122 0.2574 1591 +1593 3 440.9354 610.6237 42.7787 0.2574 1592 +1594 3 441.7911 611.3479 42.2881 0.2571 1593 +1595 3 442.1903 612.3912 41.8765 0.257 1594 +1596 3 442.3848 613.51 41.5671 0.2569 1595 +1597 3 442.5049 614.6437 41.3305 0.2567 1596 +1598 3 442.68 615.7694 41.0934 0.2566 1597 +1599 3 443.0254 616.8551 40.8666 0.2564 1598 +1600 3 443.6649 617.7943 40.6896 0.2563 1599 +1601 3 444.047 618.864 40.4886 0.2561 1600 +1602 3 444.3376 619.9691 40.3382 0.256 1601 +1603 3 444.6248 621.0753 40.2461 0.2559 1602 +1604 3 444.7094 622.2147 40.2094 0.2557 1603 +1605 3 444.9268 623.337 40.2144 0.2556 1604 +1606 3 445.1361 624.4616 40.2525 0.2554 1605 +1607 3 445.6624 625.4706 40.3749 0.2553 1606 +1608 3 446.8006 625.4282 40.5034 0.2551 1607 +1609 3 447.7891 626.0014 40.6563 0.255 1608 +1610 3 448.5887 626.7873 40.7506 0.2549 1609 +1611 3 448.5864 627.9096 40.78 0.2547 1610 +1612 3 447.9652 628.8705 40.7428 0.2546 1611 +1613 3 447.2926 629.7903 40.6064 0.2544 1612 +1614 3 446.7732 630.805 40.3575 0.2543 1613 +1615 3 446.3751 631.8621 40.0926 0.2541 1614 +1616 3 446.4048 632.9763 39.8731 0.254 1615 +1617 3 446.9494 633.9773 39.7312 0.2538 1616 +1618 3 447.59 634.92 39.6427 0.2537 1617 +1619 3 448.0499 635.9656 39.538 0.2536 1618 +1620 3 448.4102 637.049 39.403 0.2534 1619 +1621 3 448.7569 638.1369 39.2787 0.2533 1620 +1622 3 449.2602 639.1528 39.1714 0.2531 1621 +1623 3 449.9752 640.0428 38.9908 0.253 1622 +1624 3 450.5186 641.0164 38.7307 0.2528 1623 +1625 3 450.7349 642.1341 38.4885 0.2527 1624 +1626 3 450.871 643.2643 38.2318 0.2526 1625 +1627 3 451.0289 644.39 37.9266 0.2524 1626 +1628 3 451.3904 645.4505 37.6015 0.2523 1627 +1629 3 452.0447 646.3726 37.27 0.2521 1628 +1630 3 452.8249 647.194 36.8883 0.252 1629 +1631 3 453.5296 648.0657 36.44 0.2518 1630 +1632 3 453.9163 649.109 36.0273 0.2517 1631 +1633 3 454.0925 650.2313 35.7062 0.2515 1632 +1634 3 454.2961 651.3501 35.425 0.2514 1633 +1635 3 454.5673 652.4552 35.1523 0.2513 1634 +1636 3 454.891 653.5466 34.8883 0.2511 1635 +1637 3 455.2628 654.622 34.6055 0.251 1636 +1638 3 455.3051 655.7019 34.2121 0.2508 1637 +1639 3 454.7446 656.6571 33.7414 0.2507 1638 +1640 3 454.2012 657.6433 33.334 0.2505 1639 +1641 3 453.7813 658.7015 33.0898 0.2504 1640 +1642 3 453.5708 659.8203 33.0268 0.2502 1641 +1643 3 453.8179 660.9163 33.0551 0.2501 1642 +1644 3 454.1977 661.995 33.1212 0.25 1643 +1645 3 454.414 663.1139 33.2256 0.2498 1644 +1646 3 454.4986 664.2533 33.3418 0.2497 1645 +1647 3 454.6977 665.3767 33.455 0.2495 1646 +1648 3 455.0157 666.4738 33.5546 0.2494 1647 +1649 3 455.6529 667.4085 33.6482 0.2492 1648 +1650 3 456.4171 668.2584 33.7397 0.2491 1649 +1651 3 456.8678 669.2949 33.8341 0.249 1650 +1652 3 456.9742 670.4263 33.934 0.2488 1651 +1653 3 457.3426 671.4994 34.062 0.2487 1652 +1654 3 457.8505 672.5187 34.3073 0.2485 1653 +1655 3 458.2052 673.5964 34.6503 0.2484 1654 +1656 3 458.4786 674.7015 34.9188 0.2482 1655 +1657 3 458.8778 675.7722 35.0602 0.2481 1656 +1658 3 459.4121 676.7824 35.0375 0.248 1657 +1659 3 460.0871 677.7033 34.8827 0.2478 1658 +1660 3 460.4886 678.7695 34.6466 0.2477 1659 +1661 3 460.3559 679.9009 34.3952 0.2475 1660 +1662 3 460.1786 681.0266 34.1611 0.2474 1661 +1663 3 460.8387 681.9521 33.8923 0.2472 1662 +1664 3 461.5834 682.8124 33.6067 0.2471 1663 +1665 3 461.2528 683.8889 33.7669 0.247 1664 +1666 3 461.3798 684.9769 34.4781 0.2461 1665 +1667 3 461.8946 685.9687 34.8869 0.2456 1666 +1668 3 462.6576 686.8107 35.2106 0.2451 1667 +1669 3 463.2342 687.7545 35.4808 0.2447 1668 +1670 3 463.63 688.8207 35.6908 0.2442 1669 +1671 3 464.2272 689.7862 35.7832 0.2437 1670 +1672 3 464.9022 690.7094 35.7904 0.2433 1671 +1673 3 465.425 691.7173 35.7549 0.2429 1672 +1674 3 465.8997 692.7561 35.6894 0.2424 1673 +1675 3 466.6468 693.5775 35.572 0.2419 1674 +1676 3 467.6203 694.1723 35.4278 0.2415 1675 +1677 3 468.5469 694.829 35.2618 0.241 1676 +1678 3 469.4782 695.4845 35.0916 0.2406 1677 +1679 3 470.216 696.3139 34.9549 0.2401 1678 +1680 3 470.6267 697.371 34.8592 0.2397 1679 +1681 3 471.1278 698.3834 34.799 0.2392 1680 +1682 3 471.7742 699.3272 34.7631 0.2388 1681 +1683 3 472.4159 700.2744 34.743 0.2384 1682 +1684 3 473.012 701.2503 34.727 0.2379 1683 +1685 3 473.3826 702.3188 34.706 0.2374 1684 +1686 3 473.576 703.4456 34.6786 0.237 1685 +1687 3 473.5256 704.5759 34.6441 0.2366 1686 +1688 3 473.3975 705.7119 34.589 0.2361 1687 +1689 3 473.6435 706.7998 34.4859 0.2356 1688 +1690 3 474.0519 707.8672 34.3748 0.2352 1689 +1691 3 474.4465 708.9402 34.2933 0.2347 1690 +1692 3 474.9545 709.9618 34.2552 0.2343 1691 +1693 3 475.3526 711.0269 34.1984 0.2338 1692 +1694 3 475.2965 712.1434 34.0533 0.2334 1693 +1695 3 474.9064 713.2096 33.8363 0.2329 1694 +1696 3 474.522 714.2816 33.593 0.2325 1695 +1697 3 474.069 715.3249 33.3256 0.232 1696 +1698 3 473.7041 716.4025 33.0697 0.2316 1697 +1699 3 473.3609 717.4893 32.8325 0.2311 1698 +1700 3 473.0726 718.5944 32.6578 0.2306 1699 +1701 3 472.8793 719.7201 32.587 0.2302 1700 +1702 3 473.3357 720.7383 32.6474 0.2297 1701 +1703 3 474.1365 721.5345 33.094 0.2292 1702 +1704 3 461.4736 683.3089 33.4303 0.2411 1664 +1705 3 461.0732 684.3648 33.0702 0.2368 1704 +1706 3 460.7037 685.4287 32.6178 0.2368 1705 +1707 3 460.1534 686.3931 32.0566 0.2368 1706 +1708 3 459.6718 687.3976 31.4563 0.2368 1707 +1709 3 459.856 688.4558 30.8518 0.2368 1708 +1710 3 460.0859 689.5563 30.3349 0.2368 1709 +1711 3 460.1042 690.6808 29.8729 0.2368 1710 +1712 3 460.1374 691.81 29.449 0.2368 1711 +1713 3 460.285 692.93 29.0091 0.2368 1712 +1714 3 460.7243 693.9435 28.362 0.2368 1713 +1715 3 461.0297 693.9927 27.4872 0.2368 1714 +1716 3 461.9129 694.2639 26.1086 0.2367 1715 +1717 3 462.8418 694.8679 25.6664 0.2364 1716 +1718 3 463.6826 695.6309 25.3546 0.2363 1717 +1719 3 464.5624 696.3368 24.8951 0.2361 1718 +1720 3 465.2911 697.1616 24.3008 0.236 1719 +1721 3 465.9855 698.031 23.6793 0.2358 1720 +1722 3 466.474 699.0195 23.137 0.2357 1721 +1723 3 467.0472 699.9724 22.6352 0.2355 1722 +1724 3 467.9749 700.5856 22.206 0.2354 1723 +1725 3 469.0446 700.9505 21.8399 0.2352 1724 +1726 3 470.1668 700.9299 21.4866 0.2351 1725 +1727 3 471.2857 701.0649 21.1046 0.2349 1726 +1728 3 472.3141 701.5305 20.7426 0.2348 1727 +1729 3 473.3334 702.0282 20.3853 0.2346 1728 +1730 3 474.4157 702.368 20.0519 0.2345 1729 +1731 3 475.5448 702.4721 19.7467 0.2343 1730 +1732 3 476.6636 702.305 19.4043 0.2342 1731 +1733 3 477.7413 701.9584 19.0078 0.234 1732 +1734 3 478.764 701.5065 18.4293 0.2338 1733 +1735 3 479.662 700.8476 17.8004 0.2337 1734 +1736 3 480.488 700.0822 17.3069 0.2335 1735 +1737 3 481.1687 699.1991 16.8505 0.2334 1736 +1738 3 482.2646 698.976 16.4831 0.2332 1737 +1739 3 483.364 699.2528 16.2868 0.2331 1738 +1740 3 484.5057 699.1888 16.2302 0.2329 1739 +1741 3 485.6383 699.254 16.3257 0.2328 1740 +1742 3 486.6931 699.6853 16.5521 0.2326 1741 +1743 3 487.7272 700.1658 16.7734 0.2325 1742 +1744 3 488.8049 700.5112 16.9924 0.2323 1743 +1745 3 489.9409 700.5032 17.2838 0.2322 1744 +1746 3 491.0597 700.4586 17.5189 0.232 1745 +1747 3 492.0973 700.9128 17.6854 0.2319 1746 +1748 3 493.0709 701.1805 17.7998 0.2317 1747 +1749 3 494.1371 700.7675 17.804 0.2316 1748 +1750 3 495.225 700.438 17.6847 0.2314 1749 +1751 3 496.3541 700.3042 17.4479 0.2313 1750 +1752 3 497.4787 700.3854 17.143 0.2311 1751 +1753 3 498.601 700.4872 16.8385 0.2309 1752 +1754 3 499.5905 700.0662 16.5534 0.2308 1753 +1755 3 500.5206 699.4222 16.264 0.2306 1754 +1756 3 501.6062 699.3638 15.9227 0.2305 1755 +1757 3 502.5043 699.9747 15.4957 0.2303 1756 +1758 3 503.0763 700.9311 15.0253 0.2302 1757 +1759 3 503.4538 701.8097 13.8252 0.2299 1758 +1760 3 503.9492 702.7386 12.7413 0.2297 1759 +1761 3 503.8862 703.6916 11.3779 0.2295 1760 +1762 3 503.6254 704.7257 10.389 0.2294 1761 +1763 3 503.6483 705.8125 9.5659 0.2292 1762 +1764 3 504.1494 706.8032 8.8981 0.2291 1763 +1765 3 504.7568 707.6738 7.8529 0.2289 1764 +1766 3 460.3914 694.4492 27.9877 0.2368 1714 +1767 3 460.3639 695.5737 27.7148 0.2365 1766 +1768 3 460.5847 696.6937 27.5641 0.2364 1767 +1769 3 461.0286 697.745 27.4461 0.2362 1768 +1770 3 461.135 698.8799 27.3802 0.2361 1769 +1771 3 460.9073 699.9987 27.3366 0.2359 1770 +1772 3 461.1155 701.1198 27.2341 0.2358 1771 +1773 3 461.4827 702.2021 27.1525 0.2356 1772 +1774 3 461.8728 703.2786 27.1058 0.2355 1773 +1775 3 462.0387 704.41 27.0952 0.2354 1774 +1776 3 462.3465 705.5105 27.1143 0.2352 1775 +1777 3 462.9459 706.4829 27.1858 0.2351 1776 +1778 3 463.2971 707.5697 27.3224 0.2349 1777 +1779 3 463.765 708.6119 27.4458 0.2348 1778 +1780 3 464.2604 709.6392 27.5531 0.2346 1779 +1781 3 464.9971 710.5132 27.6742 0.2345 1780 +1782 3 465.7922 711.3323 27.8484 0.2343 1781 +1783 3 466.5209 712.2098 27.9645 0.2342 1782 +1784 3 467.2462 713.038 27.9896 0.234 1783 +1785 3 467.1707 714.1649 27.9698 0.2339 1784 +1786 3 466.8824 715.2654 27.9195 0.2337 1785 +1787 3 466.6879 716.3854 27.8353 0.2336 1786 +1788 3 466.3836 717.4802 27.7245 0.2334 1787 +1789 3 466.3996 718.607 27.5971 0.2333 1788 +1790 3 466.8424 719.6263 27.3921 0.2331 1789 +1791 3 467.5002 720.5381 27.0404 0.233 1790 +1792 3 467.9292 721.5849 26.6977 0.2328 1791 +1793 3 468.15 722.6945 26.4077 0.2327 1792 +1794 3 468.3261 723.8145 26.1516 0.2325 1793 +1795 3 468.8547 724.7812 25.8945 0.2324 1794 +1796 3 469.3775 725.7364 25.6257 0.2322 1795 +1797 3 469.4553 726.8633 25.3381 0.2321 1796 +1798 3 469.6097 727.9707 25.0263 0.2319 1797 +1799 3 469.9026 729.0655 24.6569 0.2318 1798 +1800 3 470.0238 730.1843 24.2282 0.2316 1799 +1801 3 470.0879 731.3146 23.8456 0.2315 1800 +1802 3 469.9575 732.43 23.505 0.2313 1801 +1803 3 469.4564 733.4367 23.2133 0.2312 1802 +1804 3 469.151 734.5166 22.975 0.231 1803 +1805 3 469.0778 735.6538 22.8043 0.2309 1804 +1806 3 468.6419 736.6811 22.698 0.2307 1805 +1807 3 467.7896 737.4258 22.6911 0.2306 1806 +1808 3 467.2279 738.404 22.7407 0.2304 1807 +1809 3 466.7428 739.4404 22.7535 0.2303 1808 +1810 3 465.9592 740.2675 22.7615 0.2301 1809 +1811 3 465.0223 740.9219 22.7989 0.23 1810 +1812 3 463.9549 741.3257 22.9073 0.2298 1811 +1813 3 462.9745 741.9115 23.0317 0.2297 1812 +1814 3 462.2549 742.7958 23.1595 0.2295 1813 +1815 3 461.3111 743.4376 23.3285 0.2294 1814 +1816 3 460.6373 744.3585 23.5171 0.2292 1815 +1817 3 460.4909 745.4887 23.708 0.2291 1816 +1818 3 460.8833 746.5504 24.1195 0.2289 1817 +1819 3 439.4607 611.1168 43.4277 0.2467 1592 +1820 3 438.6977 611.9634 43.6601 0.2462 1819 +1821 3 437.9072 612.7859 43.8281 0.2458 1820 +1822 3 436.9577 613.3728 44.1731 0.2454 1821 +1823 3 435.8548 613.5558 44.6043 0.245 1822 +1824 3 435.0895 614.2719 45.0145 0.2447 1823 +1825 3 434.5324 615.2501 45.4846 0.2443 1824 +1826 3 433.6263 615.8632 45.9592 0.2439 1825 +1827 3 432.5693 616.2476 46.4335 0.2436 1826 +1828 3 432.392 617.2852 46.9608 0.2432 1827 +1829 3 432.3496 618.38 47.5096 0.2428 1828 +1830 3 431.4138 619.0001 48.0421 0.2424 1829 +1831 3 430.5741 619.7231 48.5901 0.242 1830 +1832 3 430.0674 620.723 49.1439 0.2417 1831 +1833 3 429.5434 621.7102 49.7454 0.2413 1832 +1834 3 428.9199 622.6289 50.2835 0.2409 1833 +1835 3 427.991 623.194 50.7786 0.2405 1834 +1836 3 426.8642 623.2501 51.1221 0.2402 1835 +1837 3 425.7293 623.1517 51.3377 0.2398 1836 +1838 3 424.6093 623.2729 51.4587 0.2395 1837 +1839 3 423.558 623.7202 51.5024 0.2391 1838 +1840 3 422.5055 624.1424 51.4548 0.2387 1839 +1841 3 421.3821 624.1973 51.3699 0.2384 1840 +1842 3 420.2873 623.8838 51.4102 0.238 1841 +1843 3 419.2028 623.647 51.6127 0.2376 1842 +1844 3 418.0874 623.8415 51.8322 0.2373 1843 +1845 3 416.9788 624.0486 52.0257 0.2369 1844 +1846 3 415.8383 624.0131 52.1968 0.2365 1845 +1847 3 414.7927 623.6733 52.3639 0.2362 1846 +1848 3 413.8271 623.067 52.5101 0.2358 1847 +1849 3 412.7552 622.7295 52.6039 0.2355 1848 +1850 3 411.6192 622.598 52.673 0.2351 1849 +1851 3 410.529 622.296 52.7209 0.2347 1850 +1852 3 409.4651 621.883 52.7335 0.2344 1851 +1853 3 408.3851 621.5066 52.7464 0.234 1852 +1854 3 407.4242 620.9174 52.817 0.2336 1853 +1855 3 406.4609 620.3203 52.9617 0.2333 1854 +1856 3 405.3901 619.9473 53.2182 0.2329 1855 +1857 3 404.2804 619.7643 53.6698 0.2325 1856 +1858 3 403.1994 619.9347 54.3007 0.2321 1857 +1859 3 402.2029 620.3855 55.0883 0.2318 1858 +1860 3 401.1848 620.6795 56.1042 0.2313 1859 +1861 3 400.1689 621.0673 56.9663 0.231 1860 +1862 3 399.3098 621.7674 57.6428 0.2306 1861 +1863 3 398.5971 622.6312 58.1997 0.2302 1862 +1864 3 397.6018 623.1414 58.737 0.2299 1863 +1865 3 396.5527 623.5727 59.0766 0.2295 1864 +1866 3 395.419 623.591 59.4569 0.2292 1865 +1867 2 431.4207 571.5824 38.0766 0.1144 610 +1868 2 431.177 570.4796 38.472 0.1144 1867 +1869 2 431.1256 569.3471 38.8354 0.1144 1868 +1870 2 430.8739 568.242 39.1776 0.1144 1869 +1871 2 430.2149 567.3268 39.5072 0.1144 1870 +1872 2 429.2849 566.7044 40.0131 0.1144 1871 +1873 2 428.8181 565.9814 38.1422 0.1144 1872 +1874 2 428.2575 564.9919 37.8454 0.1144 1873 +1875 2 427.5814 564.183 37.7216 0.1144 1874 +1876 2 426.6205 563.5699 37.518 0.1144 1875 +1877 2 425.4868 563.4623 37.2669 0.1144 1876 +1878 2 425.5211 564.2883 36.619 0.1144 1877 +1879 2 425.7774 565.3957 36.4011 0.1144 1878 +1880 2 426.4763 566.2892 36.3334 0.1144 1879 +1881 2 427.1936 567.1792 36.2639 0.1144 1880 +1882 2 427.8743 568.0978 36.1796 0.1144 1881 +1883 2 428.5138 569.045 36.0212 0.1144 1882 +1884 2 429.1064 570.0197 35.8453 0.1144 1883 +1885 2 429.8077 570.9212 35.6765 0.1144 1884 +1886 2 430.4986 571.8273 35.4236 0.1144 1885 +1887 2 431.3338 572.5995 35.1322 0.1144 1886 +1888 2 432.3233 573.1634 34.8939 0.1144 1887 +1889 2 433.314 573.7309 34.7035 0.1144 1888 +1890 2 434.4374 573.9196 34.5318 0.1144 1889 +1891 2 435.546 574.1896 34.3367 0.1144 1890 +1892 2 436.6808 574.2983 34.0987 0.1144 1891 +1893 2 435.9555 575.0202 33.8993 0.1144 1892 +1894 2 435.0838 575.7558 33.7789 0.1144 1893 +1895 2 434.1194 576.3712 33.7002 0.1144 1894 +1896 2 433.1836 577.013 33.6507 0.1144 1895 +1897 2 432.5578 577.9328 33.6129 0.1144 1896 +1898 2 432.4583 579.0608 33.6098 0.1144 1897 +1899 2 432.6265 580.1922 33.6616 0.1144 1898 +1900 2 432.8061 581.3202 33.7868 0.1144 1899 +1901 2 432.837 582.4413 34.0441 0.1144 1900 +1902 2 432.3908 583.4537 34.4663 0.1144 1901 +1903 2 431.6552 584.3106 34.8916 0.1144 1902 +1904 2 430.8441 585.0977 35.3125 0.1144 1903 +1905 2 429.9449 585.7577 35.8593 0.1144 1904 +1906 2 429.0972 586.4556 36.5263 0.1144 1905 +1907 2 428.2919 587.2346 37.0796 0.1144 1906 +1908 2 427.3229 587.7849 37.508 0.1144 1907 +1909 2 426.5244 588.5308 37.8865 0.1144 1908 +1910 2 425.7282 589.319 38.3373 0.1144 1909 +1911 2 424.8862 590.0798 38.691 0.1144 1910 +1912 2 424.2707 591.0304 38.9231 0.1144 1911 +1913 2 423.7868 592.0635 39.1199 0.1144 1912 +1914 2 423.4299 593.1457 39.3126 0.1144 1913 +1915 2 423.0626 594.2291 39.2888 0.1144 1914 +1916 2 422.8087 595.3399 39.0813 0.1144 1915 +1917 2 422.7972 596.4793 38.869 0.1144 1916 +1918 2 422.8567 597.6187 38.635 0.1144 1917 +1919 2 422.9929 598.7502 38.4238 0.1144 1918 +1920 2 422.8338 599.8804 38.2676 0.1144 1919 +1921 2 422.3934 600.934 38.1788 0.1144 1920 +1922 2 421.7699 601.8927 38.129 0.1144 1921 +1923 2 420.9348 602.6729 38.0948 0.1144 1922 +1924 2 420.0882 603.4417 38.0696 0.1144 1923 +1925 2 419.3424 604.3088 38.0405 0.1144 1924 +1926 2 418.6811 605.2412 37.9988 0.1144 1925 +1927 2 417.9741 606.1415 37.9403 0.1144 1926 +1928 2 417.2294 607.0087 37.8633 0.1144 1927 +1929 2 416.4801 607.8724 37.7678 0.1144 1928 +1930 2 415.9058 608.8574 37.5906 0.1144 1929 +1931 2 415.423 609.8893 37.324 0.1144 1930 +1932 2 415.8394 610.2908 37.0546 0.1144 1931 +1933 2 416.7649 610.9566 36.8892 0.1144 1932 +1934 2 417.8643 611.2541 36.8262 0.1144 1933 +1935 2 418.9992 611.3948 36.7483 0.1144 1934 +1936 2 420.1409 611.3628 36.6433 0.1144 1935 +1937 2 421.2837 611.3433 36.5061 0.1144 1936 +1938 2 422.3293 611.7826 36.2432 0.1144 1937 +1939 2 423.3475 611.5927 37.5432 0.1144 1938 +1940 2 424.4377 611.492 38.2936 0.1144 1939 +1941 2 425.4914 611.6979 39.1994 0.1144 1940 +1942 2 426.545 611.9988 39.9521 0.1144 1941 +1943 2 427.5986 612.4301 40.0131 0.1144 1942 +1944 2 428.6305 612.8866 39.5716 0.1144 1943 +1945 2 428.2541 612.6417 37.3831 0.1144 1944 +1946 2 427.4819 612.1407 35.952 0.1144 1945 +1947 2 426.5553 611.5378 35.2929 0.1144 1946 +1948 2 425.5794 610.9875 34.7365 0.1144 1947 +1949 2 424.5945 610.4647 34.1062 0.1144 1948 +1950 2 423.614 609.943 33.4384 0.1144 1949 +1951 2 422.6256 609.434 32.779 0.1144 1950 +1952 2 421.6223 608.9432 32.1712 0.1144 1951 +1953 2 420.6133 608.4558 31.6114 0.1144 1952 +1954 2 419.6386 607.8964 31.103 0.1144 1953 +1955 2 418.7784 607.1688 30.6793 0.1144 1954 +1956 2 417.9478 606.3966 30.3106 0.1144 1955 +1957 2 417.0852 605.6611 29.9373 0.1144 1956 +1958 2 416.1025 605.1257 29.4465 0.1144 1957 +1959 2 415.0924 604.6532 28.8268 0.1144 1958 +1960 2 414.0902 604.1864 28.1005 0.1144 1959 +1961 2 413.0984 603.7231 27.2894 0.1144 1960 +1962 2 412.1317 603.2335 26.3981 0.1144 1961 +1963 2 411.1948 602.7061 25.4374 0.1144 1962 +1964 2 410.2681 602.1741 24.4409 0.1144 1963 +1965 2 409.3438 601.6445 23.4231 0.1144 1964 +1966 2 408.4046 601.1457 22.3872 0.1144 1965 +1967 2 407.4162 600.767 21.3341 0.1144 1966 +1968 2 406.4186 600.4067 20.2825 0.1144 1967 +1969 2 405.4199 600.0463 19.2427 0.1144 1968 +1970 2 404.4109 599.6928 18.2474 0.1144 1969 +1971 2 403.3801 599.3599 17.3477 0.1144 1970 +1972 2 402.3402 599.0247 16.5117 0.1144 1971 +1973 2 401.2946 598.6884 15.7294 0.1144 1972 +1974 2 400.2444 598.3509 14.9908 0.1144 1973 +1975 2 399.1725 598.0615 14.3125 0.1144 1974 +1976 2 398.0937 597.7869 13.679 0.1144 1975 +1977 2 397.0103 597.5112 13.0774 0.1144 1976 +1978 2 395.9144 597.2847 12.4982 0.1144 1977 +1979 2 394.8184 597.4757 11.9553 0.1144 1978 +1980 2 393.7087 597.6542 11.4373 0.1144 1979 +1981 2 392.6105 597.4311 10.9475 0.1144 1980 +1982 2 391.5123 597.1703 10.4934 0.1144 1981 +1983 2 390.4117 596.9083 10.0836 0.1144 1982 +1984 2 389.341 597.2824 9.8689 0.1144 1983 +1985 2 388.2805 597.7137 9.8211 0.1144 1984 +1986 2 387.2268 598.1438 10.0965 0.1144 1985 +1987 2 428.9451 613.1016 39.5024 0.1144 1944 +1988 2 429.8889 613.7457 39.4397 0.1144 1987 +1989 2 430.8293 614.3886 39.6642 0.1144 1988 +1990 2 431.7582 615.0236 40.1523 0.1144 1989 +1991 2 432.6745 615.6505 40.8279 0.1144 1990 +1992 2 433.679 616.076 41.5691 0.1144 1991 +1993 2 434.7497 616.3483 42.287 0.1144 1992 +1994 2 435.8308 616.5966 42.9666 0.1144 1993 +1995 2 436.9165 616.8448 43.6184 0.1144 1994 +1996 2 438.0021 617.093 44.2492 0.1144 1995 +1997 2 439.0592 617.4431 44.8652 0.1144 1996 +1998 2 440.0556 617.9408 45.4692 0.1144 1997 +1999 2 441.0246 618.5002 46.0639 0.1144 1998 +2000 2 441.989 619.0653 46.6525 0.1144 1999 +2001 2 442.9145 619.6922 47.238 0.1144 2000 +2002 2 443.7873 620.3901 47.8229 0.1144 2001 +2003 2 444.6419 621.1131 48.4078 0.1144 2002 +2004 2 445.4942 621.8372 48.9941 0.1144 2003 +2005 2 446.3648 622.5396 49.5754 0.1144 2004 +2006 2 447.2537 623.2215 50.1508 0.1144 2005 +2007 2 448.1437 623.8998 50.7256 0.1144 2006 +2008 2 449.0898 624.4902 51.3111 0.1144 2007 +2009 2 450.1045 624.9546 51.9184 0.1144 2008 +2010 2 451.1398 625.3642 52.5535 0.1144 2009 +2011 2 452.174 625.7691 53.2221 0.1144 2010 +2012 2 453.2048 626.1718 53.9302 0.1144 2011 +2013 2 454.2321 626.5734 54.6809 0.1144 2012 +2014 2 454.9299 627.2998 55.5708 0.1144 2013 +2015 2 455.2811 628.3008 56.6017 0.1144 2014 +2016 2 455.5728 629.2904 57.8038 0.1144 2015 +2017 2 455.9218 630.1015 59.4905 0.1144 2016 +2018 2 456.742 630.7673 60.5629 0.1144 2017 +2019 2 457.6023 631.4274 61.4527 0.1144 2018 +2020 2 458.4786 632.0989 62.1886 0.1144 2019 +2021 2 459.3869 632.7498 62.7939 0.1144 2020 +2022 2 460.3994 633.2395 63.3021 0.1144 2021 +2023 2 461.4164 633.7314 63.7476 0.1144 2022 +2024 2 462.4345 634.2222 64.1735 0.1144 2023 +2025 2 463.4538 634.7152 64.5772 0.1144 2024 +2026 2 464.4743 635.2083 64.9496 0.1144 2025 +2027 2 465.4902 635.7208 65.2506 0.1144 2026 +2028 2 466.4923 636.2505 65.627 0.1144 2027 +2029 2 421.9232 612.5422 35.7266 0.1144 1938 +2030 2 421.3832 613.5364 35.3128 0.1144 2029 +2031 2 420.8147 614.5099 34.8351 0.1144 2030 +2032 2 420.5161 615.5612 34.2471 0.1144 2031 +2033 2 420.6145 616.6709 33.7212 0.1144 2032 +2034 2 421.0995 617.6742 33.3113 0.1144 2033 +2035 2 421.9838 618.3434 32.998 0.1144 2034 +2036 2 422.6176 619.2438 32.7113 0.1144 2035 +2037 2 422.8933 620.342 32.4528 0.1144 2036 +2038 2 423.5477 621.2446 32.2162 0.1144 2037 +2039 2 424.3508 622.05 31.9141 0.1144 2038 +2040 2 425.2717 622.7101 31.5921 0.1144 2039 +2041 2 426.2967 623.1963 31.2665 0.1144 2040 +2042 2 427.1124 623.9513 30.7896 0.1144 2041 +2043 2 427.5769 624.9306 29.9832 0.1144 2042 +2044 2 427.7004 626.0403 29.3804 0.1144 2043 +2045 2 428.0608 627.1065 28.8761 0.1144 2044 +2046 2 428.4623 628.1521 28.3254 0.1144 2045 +2047 2 428.563 628.9678 26.9321 0.1144 2046 +2048 2 428.3491 628.4049 25.6335 0.1144 2047 +2049 2 427.2886 628.5651 24.8178 0.1144 2048 +2050 2 426.2624 628.9826 24.1178 0.1144 2049 +2051 2 425.2225 629.4013 23.5766 0.1144 2050 +2052 2 424.6986 630.1221 23.2242 0.1144 2051 +2053 2 425.5657 630.781 23.2341 0.1144 2052 +2054 2 426.5953 631.2752 23.3661 0.1144 2053 +2055 2 427.6604 631.6871 23.5344 0.1144 2054 +2056 2 428.7804 631.8907 23.7114 0.1144 2055 +2057 2 429.5102 632.7098 23.9434 0.1144 2056 +2058 2 430.0788 633.6994 24.1355 0.1144 2057 +2059 2 430.5616 634.7324 24.3346 0.1144 2058 +2060 2 431.4825 635.389 24.5407 0.1144 2059 +2061 2 432.543 635.8112 24.7092 0.1144 2060 +2062 2 433.5337 636.3775 24.8781 0.1144 2061 +2063 2 434.4992 636.9815 25.12 0.1144 2062 +2064 2 435.4636 637.5947 25.2684 0.1144 2063 +2065 2 436.4417 638.1873 25.3301 0.1144 2064 +2066 2 437.4885 638.6494 25.3103 0.1144 2065 +2067 2 438.5284 639.1242 25.2176 0.1144 2066 +2068 2 439.2617 639.4926 26.0314 0.1144 2067 +2069 2 440.3622 639.6356 26.269 0.1144 2068 +2070 2 441.4856 639.456 26.2441 0.1144 2069 +2071 2 442.5701 639.1048 26.398 0.1144 2070 +2072 2 442.5335 639.1139 27.4054 0.1144 2071 +2073 2 441.7728 639.1734 29.1886 0.1144 2072 +2074 2 441.5874 638.5213 30.3366 0.1144 2073 +2075 2 442.0313 637.5512 31.3334 0.1144 2074 +2076 2 442.6102 636.6463 32.2731 0.1144 2075 +2077 2 443.268 635.9004 33.6549 0.1144 2076 +2078 2 443.5002 638.9663 26.125 0.1144 2071 +2079 2 444.6248 639.0041 25.6769 0.1144 2078 +2080 2 445.7367 638.9892 25.0301 0.1144 2079 +2081 2 446.7434 638.7227 24.1299 0.1144 2080 +2082 2 447.5923 639.3336 22.9975 0.1144 2081 +2083 2 439.2903 638.8645 24.8721 0.1144 2067 +2084 2 440.3611 638.5007 24.4608 0.1144 2083 +2085 2 441.4261 638.1369 23.9634 0.1144 2084 +2086 2 442.4889 637.7754 23.4154 0.1144 2085 +2087 2 443.5322 637.3693 22.8672 0.1144 2086 +2088 2 444.5573 636.9026 22.3615 0.1144 2087 +2089 2 445.588 636.445 21.9057 0.1144 2088 +2090 2 446.6668 636.2894 21.5268 0.1144 2089 +2091 2 447.7913 636.4667 21.2365 0.1144 2090 +2092 2 448.917 636.6429 21.0108 0.1144 2091 +2093 2 450.045 636.819 20.8325 0.1144 2092 +2094 2 450.8962 637.3773 20.6728 0.1144 2093 +2095 2 451.3949 638.4046 20.5094 0.1144 2094 +2096 2 452.1763 639.0819 20.3637 0.1144 2095 +2097 2 453.2997 639.0739 20.3035 0.1144 2096 +2098 2 454.4323 638.9126 20.3139 0.1144 2097 +2099 2 455.5625 638.7341 20.3572 0.1144 2098 +2100 2 456.6528 638.4035 20.3221 0.1144 2099 +2101 2 457.7247 638.0077 20.1838 0.1144 2100 +2102 2 458.6513 637.3613 20.0299 0.1144 2101 +2103 2 459.2554 636.4026 19.9713 0.1144 2102 +2104 2 459.8045 635.3993 20.0053 0.1144 2103 +2105 2 460.0848 634.3 20.159 0.1144 2104 +2106 2 459.3663 633.4271 20.4597 0.1144 2105 +2107 2 458.6616 632.5965 21.3147 0.1144 2106 +2108 2 415.2514 610.6764 37.0835 0.1144 1931 +2109 2 414.5307 611.5241 36.8354 0.1144 2108 +2110 2 413.524 611.9256 36.5879 0.1144 2109 +2111 2 412.8707 612.7733 36.5005 0.1144 2110 +2112 2 412.6477 613.8944 36.4622 0.1144 2111 +2113 2 412.4715 615.0247 36.4507 0.1144 2112 +2114 2 412.301 616.155 36.4468 0.1144 2113 +2115 2 412.1615 617.291 36.442 0.1144 2114 +2116 2 412.0471 618.4281 36.435 0.1144 2115 +2117 2 411.9956 619.571 36.4252 0.1144 2116 +2118 2 412.0391 620.7127 36.4118 0.1144 2117 +2119 2 412.1649 621.8487 36.3924 0.1144 2118 +2120 2 412.3617 622.9744 36.3661 0.1144 2119 +2121 2 412.6419 624.0829 36.3314 0.1144 2120 +2122 2 412.7438 625.1983 36.2782 0.1144 2121 +2123 2 412.5664 626.3286 36.1967 0.1144 2122 +2124 2 412.3605 627.4531 36.0942 0.1144 2123 +2125 2 412.1535 628.5765 35.9778 0.1144 2124 +2126 2 411.9475 629.7011 35.8557 0.1144 2125 +2127 2 411.7416 630.8256 35.735 0.1144 2126 +2128 2 411.5346 631.949 35.6227 0.1144 2127 +2129 2 411.3298 633.0747 35.5312 0.1144 2128 +2130 2 411.0632 634.1844 35.4721 0.1144 2129 +2131 2 410.5965 635.2174 35.4449 0.1144 2130 +2132 2 409.989 636.1876 35.4444 0.1144 2131 +2133 2 409.3815 637.1565 35.464 0.1144 2132 +2134 2 408.7318 638.0969 35.5113 0.1144 2133 +2135 2 408.0282 638.9984 35.593 0.1144 2134 +2136 2 407.3143 639.8918 35.6947 0.1144 2135 +2137 2 406.6016 640.7853 35.7994 0.1144 2136 +2138 2 405.7974 641.5884 35.8462 0.1144 2137 +2139 2 405.0904 642.4567 35.7972 0.1144 2138 +2140 2 404.6259 643.4989 35.6891 0.1144 2139 +2141 2 404.2187 644.5662 35.5494 0.1144 2140 +2142 2 403.8114 645.6336 35.3979 0.1144 2141 +2143 2 403.403 646.7009 35.2531 0.1144 2142 +2144 2 403.117 647.8014 35.1456 0.1144 2143 +2145 2 403.0392 648.9386 35.1014 0.1144 2144 +2146 2 403.0415 650.0826 35.1134 0.1144 2145 +2147 2 403.0449 651.2266 35.166 0.1144 2146 +2148 2 403.0449 652.3706 35.2447 0.1144 2147 +2149 2 403.0186 653.5134 35.3318 0.1144 2148 +2150 2 402.9774 654.6563 35.415 0.1144 2149 +2151 2 402.9351 655.798 35.4906 0.1144 2150 +2152 2 402.8928 656.942 35.5594 0.1144 2151 +2153 2 402.8504 658.0849 35.6247 0.1144 2152 +2154 2 402.8081 659.2277 35.6885 0.1144 2153 +2155 2 402.7658 660.3706 35.754 0.1144 2154 +2156 2 402.7235 661.5134 35.8221 0.1144 2155 +2157 2 402.6811 662.6563 35.8932 0.1144 2156 +2158 2 402.5507 663.79 35.971 0.1144 2157 +2159 2 402.2784 664.8985 36.0581 0.1144 2158 +2160 2 401.9513 665.9933 36.1542 0.1144 2159 +2161 2 401.6241 667.0893 36.258 0.1144 2160 +2162 2 401.298 668.1841 36.3684 0.1144 2161 +2163 2 400.9709 669.28 36.4837 0.1144 2162 +2164 2 400.6437 670.3748 36.6041 0.1144 2163 +2165 2 400.3176 671.4697 36.7298 0.1144 2164 +2166 2 399.9916 672.5656 36.8626 0.1144 2165 +2167 2 399.6644 673.6604 37.0042 0.1144 2166 +2168 2 399.3361 674.7541 37.1582 0.1144 2167 +2169 2 399.0009 675.8455 37.3369 0.1144 2168 +2170 2 398.66 676.9345 37.5449 0.1144 2169 +2171 2 398.3202 678.0225 37.7784 0.1144 2170 +2172 2 397.9804 679.1093 38.0344 0.1144 2171 +2173 2 397.7402 680.219 38.3197 0.1144 2172 +2174 2 397.7951 681.3401 38.638 0.1144 2173 +2175 2 397.993 682.4578 38.9858 0.1144 2174 +2176 2 398.1898 683.5743 39.3574 0.1144 2175 +2177 2 398.3866 684.6897 39.7463 0.1144 2176 +2178 2 398.5822 685.8051 40.147 0.1144 2177 +2179 2 398.779 686.9194 40.5546 0.1144 2178 +2180 2 398.9757 688.0336 40.9668 0.1144 2179 +2181 2 399.1725 689.1479 41.3834 0.1144 2180 +2182 2 399.3693 690.2621 41.8062 0.1144 2181 +2183 2 399.5649 691.3753 42.2372 0.1144 2182 +2184 2 399.7605 692.4872 42.6798 0.1144 2183 +2185 2 399.9401 693.6015 43.1393 0.1144 2184 +2186 2 400.0865 694.718 43.6234 0.1144 2185 +2187 2 400.2204 695.8346 44.1406 0.1144 2186 +2188 2 400.3542 696.9477 44.6978 0.1144 2187 +2189 2 400.4858 698.0574 45.302 0.1144 2188 +2190 2 400.6254 699.1579 45.9808 0.1144 2189 +2191 2 400.8015 700.2298 46.8448 0.1144 2190 +2192 2 400.9983 701.2709 47.8979 0.1144 2191 +2193 2 401.1916 702.2947 49.0552 0.1144 2192 +2194 2 401.3838 703.3072 50.2684 0.1144 2193 +2195 2 401.5749 704.3173 51.4982 0.1144 2194 +2196 2 401.7659 705.3309 52.7083 0.1144 2195 +2197 2 401.9593 706.3536 53.8698 0.1144 2196 +2198 2 401.7831 707.4027 54.8355 0.1144 2197 +2199 2 401.4388 708.4472 55.6007 0.1144 2198 +2200 2 401.075 709.5008 56.2344 0.1144 2199 +2201 2 400.71 710.5624 56.7714 0.1144 2200 +2202 2 400.3417 711.6275 57.2404 0.1144 2201 +2203 2 399.9527 712.6891 57.6744 0.1144 2202 +2204 2 399.5237 713.7347 58.1056 0.1144 2203 +2205 2 399.0878 714.7781 58.5337 0.1144 2204 +2206 2 398.6508 715.8214 58.9504 0.1144 2205 +2207 2 398.1417 716.8327 59.3379 0.1144 2206 +2208 2 397.3558 717.6461 59.6285 0.1144 2207 +2209 2 396.5298 718.432 59.8408 0.1144 2208 +2210 2 395.7027 719.2202 59.9981 0.1144 2209 +2211 2 394.9088 720.0428 60.1266 0.1144 2210 +2212 2 394.9488 721.1398 60.2804 0.1144 2211 +2213 2 395.0964 722.2713 60.4685 0.1144 2212 +2214 2 395.244 723.4027 60.6886 0.1144 2213 +2215 2 395.7565 724.4128 60.9224 0.1144 2214 +2216 2 396.5161 725.2617 61.1332 0.1144 2215 +2217 2 397.2883 726.1014 61.3259 0.1144 2216 +2218 2 398.0617 726.9422 61.4989 0.1144 2217 +2219 2 398.8339 727.7831 61.6585 0.1144 2218 +2220 2 399.6061 728.625 61.8103 0.1144 2219 +2221 2 400.3794 729.4659 61.9587 0.1144 2220 +2222 2 401.1528 730.3067 62.1057 0.1144 2221 +2223 2 401.9261 731.1476 62.2516 0.1144 2222 +2224 2 402.6983 731.9895 62.3946 0.1144 2223 +2225 2 403.4716 732.8315 62.5346 0.1144 2224 +2226 2 404.245 733.6724 62.6702 0.1144 2225 +2227 2 405.0183 734.5132 62.7987 0.1144 2226 +2228 2 405.7917 735.3552 62.9191 0.1144 2227 +2229 2 406.565 736.1972 63.03 0.1144 2228 +2230 2 407.2834 737.0872 63.1156 0.1144 2229 +2231 2 407.971 738.0001 63.1733 0.1144 2230 +2232 2 408.6585 738.9153 63.208 0.1144 2231 +2233 2 409.3461 739.8294 63.2265 0.1144 2232 +2234 2 410.2235 740.5592 63.2344 0.1144 2233 +2235 2 411.3412 740.8075 63.2358 0.1144 2234 +2236 2 412.4578 741.0557 63.2358 0.1144 2235 +2237 2 413.5743 741.304 63.2358 0.1144 2236 +2238 2 437.0938 574.1873 33.4471 0.1144 1892 +2239 2 438.1417 574.0649 32.4786 0.1144 2238 +2240 2 439.2285 574.2869 32.0449 0.1144 2239 +2241 2 440.13 574.9458 31.7503 0.1144 2240 +2242 2 440.9571 575.7249 31.4121 0.1144 2241 +2243 2 441.7853 576.5005 31.0545 0.1144 2242 +2244 2 442.5495 577.3379 30.7115 0.1144 2243 +2245 2 443.1696 578.2874 30.403 0.1144 2244 +2246 2 443.7233 579.2827 30.1398 0.1144 2245 +2247 2 444.1546 580.3352 29.9079 0.1144 2246 +2248 2 444.6888 581.3362 29.6394 0.1144 2247 +2249 2 445.5056 582.1084 29.2972 0.1144 2248 +2250 2 446.343 582.8703 28.896 0.1144 2249 +2251 2 447.0443 583.7557 28.4903 0.1144 2250 +2252 2 447.8634 584.5382 28.1347 0.1144 2251 +2253 2 448.5132 585.4649 27.83 0.1144 2252 +2254 2 449.314 586.268 27.5626 0.1144 2253 +2255 2 450.1629 587.0253 27.2696 0.1144 2254 +2256 2 451.0083 587.7815 26.9011 0.1144 2255 +2257 2 451.8491 588.5354 26.4559 0.1144 2256 +2258 2 452.6865 589.287 25.9476 0.1144 2257 +2259 2 453.7459 589.2286 25.231 0.1144 2258 +2260 2 454.6679 589.6176 24.5066 0.1144 2259 +2261 2 455.2525 590.5511 23.9445 0.1144 2260 +2262 2 455.6838 591.5784 23.4286 0.1144 2261 +2263 2 456.4354 592.3678 22.8711 0.1144 2262 +2264 2 457.4719 592.6892 22.2505 0.1144 2263 +2265 2 458.0656 592.9318 21.0406 0.1144 2264 +2266 2 458.9568 593.5095 20.4067 0.1144 2265 +2267 2 459.1924 594.546 19.747 0.1144 2266 +2268 2 459.9074 595.4108 19.2322 0.1144 2267 +2269 2 460.468 596.3855 18.8622 0.1144 2268 +2270 2 460.8947 597.438 18.5144 0.1144 2269 +2271 2 461.5125 598.36 18.129 0.1144 2270 +2272 2 462.2961 599.1757 17.7752 0.1144 2271 +2273 2 462.3888 600.0017 17.2782 0.1144 2272 +2274 2 461.7733 600.934 16.7721 0.1144 2273 +2275 2 461.2986 601.9602 16.3563 0.1144 2274 +2276 2 460.7998 602.9635 15.797 0.1144 2275 +2277 2 461.2917 603.9359 15.1013 0.1144 2276 +2278 2 462.017 604.7973 14.6033 0.1144 2277 +2279 2 462.7446 605.581 14.1457 0.1144 2278 +2280 2 463.8588 605.6153 13.6041 0.1144 2279 +2281 2 464.8244 606.0672 13.1155 0.1144 2280 +2282 2 465.4456 607.0041 12.7314 0.1144 2281 +2283 2 466.3424 607.6242 12.231 0.1144 2282 +2284 2 466.5827 608.5371 11.6593 0.1144 2283 +2285 2 466.6502 609.6673 11.271 0.1144 2284 +2286 2 466.6136 610.7999 10.9113 0.1144 2285 +2287 2 466.7577 611.9187 10.507 0.1144 2286 +2288 2 467.3686 612.8534 10.1296 0.1144 2287 +2289 2 467.8045 613.8944 9.7615 0.1144 2288 +2290 2 468.142 614.9789 9.4305 0.1144 2289 +2291 2 468.6396 616.0005 9.1381 0.1144 2290 +2292 2 469.4015 616.8299 8.7309 0.1144 2291 +2293 2 469.8797 617.8561 8.3383 0.1144 2292 +2294 2 469.4507 618.9029 7.9483 0.1144 2293 +2295 2 468.8387 619.8318 7.2918 0.1144 2294 +2296 2 454.2069 588.85 26.504 0.1144 2259 +2297 2 455.2251 589.0262 27.1401 0.1144 2296 +2298 2 456.0156 589.8212 27.4317 0.1144 2297 +2299 2 456.6493 590.7673 27.6989 0.1144 2298 +2300 2 457.3426 591.6699 27.9206 0.1144 2299 +2301 2 458.0828 592.5394 28.091 0.1144 2300 +2302 2 458.8241 593.4088 28.2352 0.1144 2301 +2303 2 459.5723 594.2714 28.3727 0.1144 2302 +2304 2 460.0928 595.2564 28.4934 0.1144 2303 +2305 2 460.0905 596.3672 28.5936 0.1144 2304 +2306 2 459.9727 597.494 28.67 0.1144 2305 +2307 2 460.2175 598.5934 28.7204 0.1144 2306 +2308 2 460.7323 599.6104 28.7809 0.1144 2307 +2309 2 461.4301 600.5062 28.95 0.1144 2308 +2310 2 462.2435 601.2967 29.2916 0.1144 2309 +2311 2 463.0729 602.062 29.7508 0.1144 2310 +2312 2 464.1265 602.3915 30.1196 0.1144 2311 +2313 2 465.2351 602.1787 30.2098 0.1144 2312 +2314 2 466.3459 601.911 30.0773 0.1144 2313 +2315 2 467.4842 601.9488 29.8903 0.1144 2314 +2316 2 468.5938 602.1879 29.5677 0.1144 2315 +2317 2 469.6967 602.4441 29.1698 0.1144 2316 +2318 2 470.8326 602.4807 28.8408 0.1144 2317 +2319 2 471.9503 602.2485 28.6628 0.1144 2318 +2320 2 473.0692 602.0128 28.6068 0.1144 2319 +2321 2 425.2202 563.3239 37.1546 0.1144 1877 +2322 2 424.1941 562.8514 36.783 0.1144 2321 +2323 2 423.1507 562.4156 36.5565 0.1144 2322 +2324 2 422.3339 561.6594 36.3594 0.1144 2323 +2325 2 421.9198 560.6103 36.2751 0.1144 2324 +2326 2 421.7333 559.4835 36.4087 0.1144 2325 +2327 2 421.3444 558.4322 36.6436 0.1144 2326 +2328 2 420.8753 557.4014 36.9818 0.1144 2327 +2329 2 420.3571 556.4199 37.5738 0.1144 2328 +2330 2 419.6112 555.6362 38.4314 0.1144 2329 +2331 2 418.6594 555.1821 39.4612 0.1144 2330 +2332 2 417.7224 555.7449 40.2576 0.1144 2331 +2333 2 417.6321 556.5823 40.7652 0.1144 2332 +2334 2 417.6012 557.7126 41.1673 0.1144 2333 +2335 2 417.5989 558.8532 41.3893 0.1144 2334 +2336 2 417.6401 559.9949 41.4893 0.1144 2335 +2337 2 417.7694 561.1309 41.5178 0.1144 2336 +2338 2 417.9249 562.2646 41.5243 0.1144 2337 +2339 2 418.0302 563.404 41.5307 0.1144 2338 +2340 2 418.1114 564.5446 41.54 0.1144 2339 +2341 2 418.1331 565.6886 41.5537 0.1144 2340 +2342 2 418.1778 566.8314 41.5722 0.1144 2341 +2343 2 418.2441 567.9731 41.5954 0.1144 2342 +2344 2 418.3276 569.1137 41.6231 0.1144 2343 +2345 2 418.5896 570.2257 41.6856 0.1144 2344 +2346 2 418.9076 571.3239 41.7785 0.1144 2345 +2347 2 419.2554 572.413 41.86 0.1144 2346 +2348 2 419.745 573.446 41.8648 0.1144 2347 +2349 2 420.1134 574.5282 41.8768 0.1144 2348 +2350 2 420.1226 575.6677 41.9384 0.1144 2349 +2351 2 419.9967 576.8037 41.9978 0.1144 2350 +2352 2 419.1364 577.529 42.0515 0.1144 2351 +2353 2 418.0073 577.6983 42.1044 0.1144 2352 +2354 2 417.226 578.5311 42.1579 0.1144 2353 +2355 2 416.6837 578.0712 41.995 0.1144 2354 +2356 2 415.892 577.2544 41.799 0.1144 2355 +2357 2 415.113 576.4227 41.5834 0.1144 2356 +2358 2 414.4289 575.5212 41.305 0.1144 2357 +2359 2 414.0845 574.455 41.0402 0.1144 2358 +2360 2 414.0205 573.3225 40.8038 0.1144 2359 +2361 2 414.0559 572.1819 40.5863 0.1144 2360 +2362 2 414.0616 571.0425 40.3603 0.1144 2361 +2363 2 414.0296 569.9053 40.0546 0.1144 2362 +2364 2 414.4357 568.8952 39.615 0.1144 2363 +2365 2 415.2045 568.0692 39.2104 0.1144 2364 +2366 2 415.7159 567.0659 38.8564 0.1144 2365 +2367 2 415.9424 565.9551 38.5532 0.1144 2366 +2368 2 415.9573 564.8168 38.3253 0.1144 2367 +2369 2 415.8085 563.6854 38.1741 0.1144 2368 +2370 2 415.4333 562.6089 38.0724 0.1144 2369 +2371 2 414.9585 561.569 37.9893 0.1144 2370 +2372 2 414.3946 560.5737 37.9056 0.1144 2371 +2373 2 413.961 559.5178 37.8056 0.1144 2372 +2374 2 413.6086 558.431 37.6748 0.1144 2373 +2375 2 413.2906 557.3351 37.5029 0.1144 2374 +2376 2 413.1853 556.2048 37.1986 0.1144 2375 +2377 2 413.0195 555.0848 36.8021 0.1144 2376 +2378 2 412.3811 554.1639 36.3353 0.1144 2377 +2379 2 411.8251 553.1961 35.7246 0.1144 2378 +2380 2 411.6032 552.1081 35.0549 0.1144 2379 +2381 2 411.2623 551.0534 34.4047 0.1144 2380 +2382 2 410.3791 550.3864 33.7588 0.1144 2381 +2383 2 409.9753 549.3442 33.1635 0.1144 2382 +2384 2 409.5898 548.3043 32.5248 0.1144 2383 +2385 2 409.5394 547.1855 31.9589 0.1144 2384 +2386 2 409.4502 546.0609 31.5328 0.1144 2385 +2387 2 409.1116 544.9867 31.1144 0.1144 2386 +2388 2 408.5201 544.0235 30.767 0.1144 2387 +2389 2 408.1918 542.9321 30.5343 0.1144 2388 +2390 2 407.9058 541.827 30.3895 0.1144 2389 +2391 2 407.4699 540.7699 30.2991 0.1144 2390 +2392 2 407.0329 539.7152 30.2408 0.1144 2391 +2393 2 406.7675 538.6032 30.2061 0.1144 2392 +2394 2 406.3705 537.537 30.1717 0.1144 2393 +2395 2 405.6784 536.6264 30.1249 0.1144 2394 +2396 2 404.9852 535.7158 30.0658 0.1144 2395 +2397 2 404.2942 534.8074 29.9818 0.1144 2396 +2398 2 403.7702 533.795 29.8189 0.1144 2397 +2399 2 403.5494 532.7105 29.6038 0.1144 2398 +2400 2 403.7668 531.6179 29.4479 0.1144 2399 +2401 2 403.5437 530.4991 29.3432 0.1144 2400 +2402 2 403.5174 529.362 29.2838 0.1144 2401 +2403 2 403.7737 528.2523 29.2656 0.1144 2402 +2404 2 404.2473 527.2124 29.2849 0.1144 2403 +2405 2 404.595 526.1931 29.3468 0.1144 2404 +2406 2 404.2862 525.096 29.4353 0.1144 2405 +2407 2 403.824 524.0504 29.4949 0.1144 2406 +2408 2 403.3195 523.0242 29.5456 0.1144 2407 +2409 2 402.7486 522.0335 29.6111 0.1144 2408 +2410 2 402.0863 521.1046 29.6554 0.1144 2409 +2411 2 401.361 520.2214 29.6806 0.1144 2410 +2412 2 400.7981 519.2399 29.6926 0.1144 2411 +2413 2 400.4904 518.1393 29.6974 0.1144 2412 +2414 2 400.2696 517.0171 29.692 0.1144 2413 +2415 2 400.0156 515.904 29.6772 0.1144 2414 +2416 2 399.653 514.8194 29.6565 0.1144 2415 +2417 2 399.2754 513.7395 29.6285 0.1144 2416 +2418 2 398.8636 512.6744 29.5918 0.1144 2417 +2419 2 398.3614 511.6471 29.5338 0.1144 2418 +2420 2 397.9004 510.6038 29.4395 0.1144 2419 +2421 2 397.6052 509.5033 29.3314 0.1144 2420 +2422 2 397.4611 508.3696 29.2443 0.1144 2421 +2423 2 397.3878 507.229 29.174 0.1144 2422 +2424 2 397.3192 506.0873 29.1175 0.1144 2423 +2425 2 397.2368 504.9456 29.071 0.1144 2424 +2426 2 397.1625 503.805 29.0293 0.1144 2425 +2427 2 396.9806 502.6885 28.9722 0.1144 2426 +2428 2 396.4132 501.7229 28.8705 0.1144 2427 +2429 2 395.689 500.8443 28.7504 0.1144 2428 +2430 2 395.1914 499.8285 28.6476 0.1144 2429 +2431 2 394.8585 498.7348 28.5608 0.1144 2430 +2432 2 394.4409 497.6743 28.4864 0.1144 2431 +2433 2 393.917 496.6584 28.4029 0.1144 2432 +2434 2 393.409 495.6346 28.2918 0.1144 2433 +2435 2 392.7775 494.6988 28.1772 0.1144 2434 +2436 2 392.1026 493.7847 28.0784 0.1144 2435 +2437 2 391.8303 492.7071 27.9951 0.1144 2436 +2438 2 391.7777 491.5642 27.922 0.1144 2437 +2439 2 391.629 490.4339 27.8503 0.1144 2438 +2440 2 391.5237 489.2991 27.7695 0.1144 2439 +2441 2 391.5203 488.1562 27.6615 0.1144 2440 +2442 2 391.121 487.1404 27.4887 0.1144 2441 +2443 2 390.6897 486.0993 27.2432 0.1144 2442 +2444 2 390.0022 485.2276 26.9026 0.1144 2443 +2445 2 388.9783 484.7711 26.6077 0.1144 2444 +2446 2 387.8869 484.4485 26.3275 0.1144 2445 +2447 2 386.8436 483.9944 26.091 0.1144 2446 +2448 2 386.2407 483.0666 25.9245 0.1144 2447 +2449 2 385.4113 482.3012 25.8157 0.1144 2448 +2450 2 384.9823 481.2682 25.7457 0.1144 2449 +2451 2 385.0635 480.1391 25.6875 0.1144 2450 +2452 2 385.282 479.0168 25.6315 0.1144 2451 +2453 2 385.0624 477.9037 25.5686 0.1144 2452 +2454 2 384.3382 477.0343 25.4775 0.1144 2453 +2455 2 383.375 476.4691 25.2872 0.1144 2454 +2456 2 383.0387 475.3858 25.0428 0.1144 2455 +2457 2 382.922 474.2498 24.876 0.1144 2456 +2458 2 382.8465 473.1104 24.7576 0.1144 2457 +2459 2 382.8671 471.9709 24.6239 0.1144 2458 +2460 2 382.628 470.8693 24.371 0.1144 2459 +2461 2 382.1898 469.8248 24.0503 0.1144 2460 +2462 2 381.9827 468.714 23.784 0.1144 2461 +2463 2 381.8203 467.6146 23.5345 0.1144 2462 +2464 2 381.2117 466.6616 23.2407 0.1144 2463 +2465 2 380.4612 465.8048 23.0065 0.1144 2464 +2466 2 379.9316 464.8347 22.8107 0.1144 2465 +2467 2 379.5289 463.7765 22.6803 0.1144 2466 +2468 2 378.9557 462.7869 22.6038 0.1144 2467 +2469 2 378.2705 461.8763 22.6022 0.1144 2468 +2470 2 377.5383 460.9988 22.6284 0.1144 2469 +2471 2 376.9789 460.0104 22.6144 0.1144 2470 +2472 2 376.4435 459.0014 22.6055 0.1144 2471 +2473 2 375.9344 457.9787 22.5849 0.1144 2472 +2474 2 375.6027 456.8896 22.4881 0.1144 2473 +2475 2 375.51 455.7559 22.3854 0.1144 2474 +2476 2 375.3224 454.6313 22.3392 0.1144 2475 +2477 2 374.9128 453.5685 22.3195 0.1144 2476 +2478 2 374.2482 452.6476 22.2873 0.1144 2477 +2479 2 373.7082 451.6478 22.2265 0.1144 2478 +2480 2 373.5023 450.5312 22.1945 0.1144 2479 +2481 2 373.4554 449.3895 22.2008 0.1144 2480 +2482 2 373.1922 448.281 22.2114 0.1144 2481 +2483 2 372.277 447.6895 22.2117 0.1144 2482 +2484 2 371.3859 446.978 22.1446 0.1144 2483 +2485 2 371.3195 445.8591 22.0735 0.1144 2484 +2486 2 371.6719 444.7712 22.0143 0.1144 2485 +2487 2 371.7462 443.6306 21.9672 0.1144 2486 +2488 2 371.5609 442.5026 21.9725 0.1144 2487 +2489 2 371.4076 441.3689 21.9922 0.1144 2488 +2490 2 371.4225 440.2249 21.9685 0.1144 2489 +2491 2 371.3756 439.0821 21.9486 0.1144 2490 +2492 2 370.759 438.3774 21.9313 0.1144 2491 +2493 2 370.0348 437.4919 21.9172 0.1144 2492 +2494 2 369.5234 436.4692 21.907 0.1144 2493 +2495 2 369.5063 436.6499 22.0968 0.1144 2494 +2496 2 369.5498 437.7024 23.1794 0.1144 2495 +2497 2 369.0327 438.6542 23.7511 0.1144 2496 +2498 2 368.098 439.2582 24.2962 0.1144 2497 +2499 2 367.3109 440.0373 24.9749 0.1144 2498 +2500 2 367.788 440.4697 26.4169 0.1144 2499 +2501 2 368.6048 441.0841 27.3603 0.1144 2500 +2502 2 369.6596 441.1916 28.3276 0.1144 2501 +2503 2 370.6388 440.6848 29.078 0.1144 2502 +2504 2 371.6067 440.13 29.6918 0.1144 2503 +2505 2 372.4544 439.4584 30.6006 0.1144 2504 +2506 2 373.1934 439.2743 31.3698 0.1144 2505 +2507 2 373.3947 440.3531 32.0634 0.1144 2506 +2508 2 373.3261 441.4673 32.655 0.1144 2507 +2509 2 373.0001 442.5106 33.1794 0.1144 2508 +2510 2 372.2061 443.2806 33.6935 0.1144 2509 +2511 2 371.3573 443.9818 34.2289 0.1144 2510 +2512 2 370.8516 444.976 34.634 0.1144 2511 +2513 2 370.4398 446.0364 34.8788 0.1144 2512 +2514 2 369.8598 447.0134 35.0134 0.1144 2513 +2515 2 369.0899 447.852 35.0507 0.1144 2514 +2516 2 368.1975 448.5635 35.0078 0.1144 2515 +2517 2 367.3132 449.2843 34.8793 0.1144 2516 +2518 2 366.6783 450.2063 34.6486 0.1144 2517 +2519 2 366.3614 451.2908 34.3689 0.1144 2518 +2520 2 366.1933 452.4165 34.1166 0.1144 2519 +2521 2 366.0125 453.5434 33.9251 0.1144 2520 +2522 2 365.8398 454.6725 33.7971 0.1144 2521 +2523 2 365.7002 455.8074 33.7277 0.1144 2522 +2524 2 365.6636 456.9491 33.7056 0.1144 2523 +2525 2 365.921 458.0484 33.7126 0.1144 2524 +2526 2 366.3145 459.1227 33.7338 0.1144 2525 +2527 2 366.6509 460.2152 33.7655 0.1144 2526 +2528 2 366.8808 461.334 33.8103 0.1144 2527 +2529 2 366.9746 462.4723 33.8733 0.1144 2528 +2530 2 366.93 463.6129 33.9598 0.1144 2529 +2531 2 366.8579 464.7534 34.0724 0.1144 2530 +2532 2 366.6577 465.8734 34.2502 0.1144 2531 +2533 2 366.2733 466.9419 34.522 0.1144 2532 +2534 2 365.8352 467.9898 34.8704 0.1144 2533 +2535 2 365.365 469.0206 35.2531 0.1144 2534 +2536 2 364.7976 470.0021 35.5989 0.1144 2535 +2537 2 364.1695 470.9516 35.8708 0.1144 2536 +2538 2 363.3561 471.7353 36.1679 0.1144 2537 +2539 2 362.2739 471.789 36.4188 0.1144 2538 +2540 2 361.1402 471.6792 36.6948 0.1144 2539 +2541 2 360.0076 471.6094 37.051 0.1144 2540 +2542 2 358.8762 471.6026 37.4536 0.1144 2541 +2543 2 357.746 471.6117 37.8834 0.1144 2542 +2544 2 356.6168 471.6048 38.3328 0.1144 2543 +2545 2 355.498 471.4904 38.843 0.1144 2544 +2546 2 354.4249 471.7456 39.5018 0.1144 2545 +2547 2 353.4743 472.3439 40.0254 0.1144 2546 +2548 2 352.4275 472.774 40.4438 0.1144 2547 +2549 2 351.4585 473.3529 40.8887 0.1144 2548 +2550 2 350.3912 473.735 41.2605 0.1144 2549 +2551 2 349.2643 473.8597 41.5999 0.1144 2550 +2552 2 348.1958 473.497 42.0686 0.1144 2551 +2553 2 369.4903 435.5402 21.9118 0.1144 2494 +2554 2 369.4491 434.3974 21.9265 0.1144 2553 +2555 2 369.3461 433.2591 21.9473 0.1144 2554 +2556 2 369.1024 432.1437 21.9751 0.1144 2555 +2557 2 368.7535 431.0546 22.0119 0.1144 2556 +2558 2 368.4286 429.9598 22.0689 0.1144 2557 +2559 2 368.2261 428.8364 22.1604 0.1144 2558 +2560 2 368.1552 427.697 22.2709 0.1144 2559 +2561 2 368.0076 426.577 22.3685 0.1144 2560 +2562 2 367.7228 425.4753 22.4515 0.1144 2561 +2563 2 367.7788 424.3576 22.5245 0.1144 2562 +2564 2 367.8521 423.2537 22.5919 0.1144 2563 +2565 2 367.3647 422.2515 22.6605 0.1144 2564 +2566 2 367.0089 421.2334 22.7587 0.1144 2565 +2567 2 366.5399 420.3102 22.9114 0.1144 2566 +2568 2 366.1338 419.3446 23.0838 0.1144 2567 +2569 2 366.0937 418.2041 23.2872 0.1144 2568 +2570 2 365.8924 417.091 23.4962 0.1144 2569 +2571 2 365.603 415.9881 23.7242 0.1144 2570 +2572 2 365.5526 414.8602 23.9332 0.1144 2571 +2573 2 365.3558 413.7516 24.1065 0.1144 2572 +2574 2 364.9509 412.6854 24.3039 0.1144 2573 +2575 2 364.5528 411.6158 24.478 0.1144 2574 +2576 2 364.0357 410.601 24.6124 0.1144 2575 +2577 2 363.4991 409.592 24.7181 0.1144 2576 +2578 2 363.0072 408.5602 24.81 0.1144 2577 +2579 2 362.1595 407.8314 24.8911 0.1144 2578 +2580 2 361.2809 407.1016 24.9717 0.1144 2579 +2581 2 361.1185 405.9976 25.1512 0.1144 2580 +2582 2 360.7135 404.9325 25.3634 0.1144 2581 +2583 2 360.2033 403.9109 25.5328 0.1144 2582 +2584 2 359.6805 402.8951 25.658 0.1144 2583 +2585 2 359.0593 401.9352 25.7425 0.1144 2584 +2586 2 358.2676 401.1104 25.79 0.1144 2585 +2587 2 357.8718 400.0385 25.8049 0.1144 2586 +2588 2 357.206 399.1096 25.8075 0.1144 2587 +2589 2 356.3491 398.3511 25.8097 0.1144 2588 +2590 2 355.6971 397.4119 25.8128 0.1144 2589 +2591 2 354.8596 396.6317 25.8171 0.1144 2590 +2592 2 354.0691 395.8057 25.823 0.1144 2591 +2593 2 353.6848 394.728 25.8312 0.1144 2592 +2594 2 352.9309 393.9272 25.8542 0.1144 2593 +2595 2 352.1266 393.1139 25.8774 0.1144 2594 +2596 2 351.4379 392.2055 25.9049 0.1144 2595 +2597 2 351.0467 391.1416 25.9442 0.1144 2596 +2598 2 350.8968 390.0113 26.0149 0.1144 2597 +2599 2 350.8042 388.8719 26.112 0.1144 2598 +2600 2 350.5182 387.7702 26.1936 0.1144 2599 +2601 2 350.088 386.7109 26.2498 0.1144 2600 +2602 2 349.6522 385.6527 26.2817 0.1144 2601 +2603 2 349.182 384.6105 26.2893 0.1144 2602 +2604 2 348.7381 383.5569 26.2739 0.1144 2603 +2605 2 348.2359 382.5296 26.2403 0.1144 2604 +2606 2 347.5758 381.5995 26.1951 0.1144 2605 +2607 2 346.9329 380.6534 26.1269 0.1144 2606 +2608 2 346.2488 379.7394 26.0147 0.1144 2607 +2609 2 345.6413 378.7727 25.8738 0.1144 2608 +2610 2 345.186 377.7259 25.7321 0.1144 2609 +2611 2 344.7581 376.6666 25.5978 0.1144 2610 +2612 2 344.3291 375.6072 25.4755 0.1144 2611 +2613 2 343.9001 374.5479 25.3711 0.1144 2612 +2614 2 343.4723 373.4874 25.2896 0.1144 2613 +2615 2 343.0433 372.4269 25.2314 0.1144 2614 +2616 2 342.6143 371.3664 25.1948 0.1144 2615 +2617 2 342.1567 370.3185 25.1899 0.1144 2616 +2618 2 341.5698 369.3393 25.2617 0.1144 2617 +2619 2 340.8502 368.4549 25.4449 0.1144 2618 +2620 2 340.0426 367.6496 25.6571 0.1144 2619 +2621 2 339.1262 366.9689 25.7811 0.1144 2620 +2622 2 338.2476 366.2379 25.8468 0.1144 2621 +2623 2 337.4823 365.3879 25.8997 0.1144 2622 +2624 2 336.7936 364.475 25.8978 0.1144 2623 +2625 2 336.1461 363.5335 25.8138 0.1144 2624 +2626 2 335.4014 362.6663 25.6864 0.1144 2625 +2627 2 334.5891 361.8632 25.5406 0.1144 2626 +2628 2 333.8821 360.9675 25.384 0.1144 2627 +2629 2 333.6133 359.8612 25.2513 0.1144 2628 +2630 2 333.5675 358.7195 25.1312 0.1144 2629 +2631 2 333.3902 357.5915 24.9495 0.1144 2630 +2632 2 332.9852 356.5287 24.688 0.1144 2631 +2633 2 332.2782 355.6376 24.3824 0.1144 2632 +2634 2 331.4797 354.8333 24.0584 0.1144 2633 +2635 2 330.9558 353.83 23.7236 0.1144 2634 +2636 2 330.6824 352.7249 23.445 0.1144 2635 +2637 2 330.4192 351.6141 23.249 0.1144 2636 +2638 2 330.1264 350.5136 23.1279 0.1144 2637 +2639 2 329.5555 349.5229 23.0349 0.1144 2638 +2640 2 328.9194 348.5745 23.0116 0.1144 2639 +2641 2 328.4367 347.538 23.0575 0.1144 2640 +2642 2 328.0031 346.4798 23.131 0.1144 2641 +2643 2 327.6164 345.4068 23.2082 0.1144 2642 +2644 2 327.4528 344.2765 23.2611 0.1144 2643 +2645 2 327.3659 343.1382 23.2725 0.1144 2644 +2646 2 327.0902 342.0297 23.2153 0.1144 2645 +2647 2 326.6749 340.9658 23.0948 0.1144 2646 +2648 2 326.2871 339.8916 22.9719 0.1144 2647 +2649 2 326.0389 338.7784 22.8244 0.1144 2648 +2650 2 325.9222 337.6447 22.5947 0.1144 2649 +2651 2 325.7323 336.5248 22.2984 0.1144 2650 +2652 2 325.4371 335.4277 21.9718 0.1144 2651 +2653 2 325.1957 334.318 21.6337 0.1144 2652 +2654 2 324.8194 333.293 21.2777 0.1144 2653 +2655 2 323.8893 332.6786 20.8882 0.1144 2654 +2656 2 322.894 332.189 20.5276 0.1144 2655 +2657 2 322.0978 331.379 20.2074 0.1144 2656 +2658 2 321.2695 330.6114 19.9592 0.1144 2657 +2659 2 320.296 330.0154 19.7959 0.1144 2658 +2660 2 319.3453 329.3919 19.6809 0.1144 2659 +2661 2 318.5457 328.5843 19.5334 0.1144 2660 +2662 2 318.032 327.5913 19.3395 0.1144 2661 +2663 2 317.8101 326.4724 19.1546 0.1144 2662 +2664 2 317.6465 325.3422 18.9909 0.1144 2663 +2665 2 317.492 324.2107 18.8551 0.1144 2664 +2666 2 317.3708 323.0736 18.7663 0.1144 2665 +2667 2 317.2792 321.933 18.7361 0.1144 2666 +2668 2 317.1923 320.7925 18.7584 0.1144 2667 +2669 2 316.983 319.6782 18.8291 0.1144 2668 +2670 2 316.5116 318.644 18.9447 0.1144 2669 +2671 2 315.903 317.6774 19.0888 0.1144 2670 +2672 2 315.482 316.6466 19.3399 0.1144 2671 +2673 2 315.4283 315.5266 19.8206 0.1144 2672 +2674 2 315.1308 314.4467 20.1256 0.1144 2673 +2675 2 314.6114 313.456 19.6319 0.1144 2674 +2676 2 352.9034 395.4716 25.9259 0.1144 2593 +2677 2 352.0774 396.2587 26.1243 0.1144 2676 +2678 2 351.2503 397.0481 26.2118 0.1144 2677 +2679 2 350.4232 397.8374 26.3128 0.1144 2678 +2680 2 349.595 398.6257 26.4241 0.1144 2679 +2681 2 348.7678 399.4139 26.54 0.1144 2680 +2682 2 347.9407 400.2032 26.6548 0.1144 2681 +2683 2 347.1136 400.9926 26.7636 0.1144 2682 +2684 2 346.2854 401.7808 26.8648 0.1144 2683 +2685 2 345.4548 402.5667 26.9567 0.1144 2684 +2686 2 344.4962 403.1891 27.0205 0.1144 2685 +2687 2 343.534 403.808 27.0614 0.1144 2686 +2688 2 342.5719 404.4269 27.085 0.1144 2687 +2689 2 341.611 405.0469 27.096 0.1144 2688 +2690 2 340.6489 405.667 27.0992 0.1144 2689 +2691 2 339.6868 406.2859 27.0987 0.1144 2690 +2692 2 338.7247 406.9048 27.0978 0.1144 2691 +2693 2 337.7637 407.5248 27.0965 0.1144 2692 +2694 2 336.8016 408.1449 27.0947 0.1144 2693 +2695 2 335.8395 408.7638 27.0923 0.1144 2694 +2696 2 334.8785 409.3838 27.0888 0.1144 2695 +2697 2 333.9164 410.0027 27.084 0.1144 2696 +2698 2 332.9543 410.6216 27.0774 0.1144 2697 +2699 2 331.9934 411.2417 27.068 0.1144 2698 +2700 2 331.0313 411.8617 27.0546 0.1144 2699 +2701 2 330.0692 412.4806 27.036 0.1144 2700 +2702 2 329.1071 413.0995 27.0108 0.1144 2701 +2703 2 328.1461 413.7196 26.9776 0.1144 2702 +2704 2 327.0353 413.9873 26.9219 0.1144 2703 +2705 2 325.9062 414.1738 26.8452 0.1144 2704 +2706 2 324.7782 414.3602 26.7515 0.1144 2705 +2707 2 323.6502 414.5456 26.6445 0.1144 2706 +2708 2 322.5233 414.732 26.5268 0.1144 2707 +2709 2 321.3954 414.9174 26.4009 0.1144 2708 +2710 2 320.2674 415.1027 26.269 0.1144 2709 +2711 2 319.1405 415.288 26.1306 0.1144 2710 +2712 2 318.0126 415.4745 25.9854 0.1144 2711 +2713 2 316.8949 415.7033 25.796 0.1144 2712 +2714 2 315.7669 415.5271 25.6022 0.1144 2713 +2715 2 314.64 415.3475 25.4064 0.1144 2714 +2716 2 313.5132 415.169 25.2065 0.1144 2715 +2717 2 312.3864 414.9906 25.01 0.1144 2716 +2718 2 311.2595 414.811 24.8226 0.1144 2717 +2719 2 310.1441 414.565 24.6469 0.1144 2718 +2720 2 309.0859 414.136 24.4745 0.1144 2719 +2721 2 308.0334 413.7116 24.1195 0.1144 2720 +2722 2 371.546 438.5753 22.6628 0.1144 2491 +2723 2 371.5666 437.5034 23.2539 0.1144 2722 +2724 2 371.069 436.5012 23.3587 0.1144 2723 +2725 2 370.2945 435.6672 23.4063 0.1144 2724 +2726 2 369.7374 434.6845 23.431 0.1144 2725 +2727 2 369.1459 433.7087 23.4333 0.1144 2726 +2728 2 368.3314 432.9136 23.4068 0.1144 2727 +2729 2 367.4711 432.1609 23.3233 0.1144 2728 +2730 2 366.8499 431.2114 23.2305 0.1144 2729 +2731 2 366.5056 430.1257 23.1627 0.1144 2730 +2732 2 366.0102 429.0995 23.1224 0.1144 2731 +2733 2 365.2312 428.2701 23.1089 0.1144 2732 +2734 2 364.3617 427.5277 23.1195 0.1144 2733 +2735 2 363.3573 426.99 23.1573 0.1144 2734 +2736 2 362.3254 426.4958 23.2539 0.1144 2735 +2737 2 361.4422 425.7762 23.351 0.1144 2736 +2738 2 360.8599 424.8004 23.4249 0.1144 2737 +2739 2 360.4984 423.717 23.4743 0.1144 2738 +2740 2 360.241 422.6028 23.5007 0.1144 2739 +2741 2 360.0877 421.4702 23.5045 0.1144 2740 +2742 2 359.9047 420.3411 23.4877 0.1144 2741 +2743 2 359.2709 419.4018 23.4606 0.1144 2742 +2744 2 358.3774 418.6926 23.4274 0.1144 2743 +2745 2 357.5206 417.9352 23.3719 0.1144 2744 +2746 2 356.92 416.9674 23.2629 0.1144 2745 +2747 2 356.682 415.852 23.1669 0.1144 2746 +2748 2 356.8365 414.7229 23.0939 0.1144 2747 +2749 2 357.079 413.6052 23.0427 0.1144 2748 +2750 2 358.1567 413.3341 22.9975 0.1144 2749 +2751 2 416.4743 579.3754 42.2786 0.1144 2354 +2752 2 415.8394 580.3215 42.3366 0.1144 2751 +2753 2 415.3429 581.3488 42.4264 0.1144 2752 +2754 2 414.9242 582.4138 42.4684 0.1144 2753 +2755 2 414.1509 583.2181 42.3822 0.1144 2754 +2756 2 413.1682 583.7786 42.0728 0.1144 2755 +2757 2 412.2999 584.4685 41.4537 0.1144 2756 +2758 2 411.602 585.3059 40.6202 0.1144 2757 +2759 2 410.9202 586.1009 39.5002 0.1144 2758 +2760 2 411.4888 585.6902 38.3278 0.1144 2759 +2761 2 412.46 585.3482 37.3724 0.1144 2760 +2762 2 413.5274 585.5175 36.7038 0.1144 2761 +2763 2 414.366 586.1639 35.8243 0.1144 2762 +2764 2 414.9677 587.063 34.946 0.1144 2763 +2765 2 415.5408 588.0 34.1592 0.1144 2764 +2766 2 416.4846 588.4839 33.4225 0.1144 2765 +2767 2 416.9937 589.3636 32.4892 0.1144 2766 +2768 2 417.2523 590.4596 31.7052 0.1144 2767 +2769 2 417.5039 591.5624 31.2886 0.1144 2768 +2770 2 417.8128 592.6515 30.9599 0.1144 2769 +2771 2 418.235 593.7097 30.716 0.1144 2770 +2772 2 418.5988 594.7873 30.5256 0.1144 2771 +2773 2 418.8722 595.8959 30.3486 0.1144 2772 +2774 2 419.2257 596.977 30.1272 0.1144 2773 +2775 2 419.7542 597.9745 29.7713 0.1144 2774 +2776 2 420.4303 598.8691 29.2379 0.1144 2775 +2777 2 421.3581 599.4514 28.7073 0.1144 2776 +2778 2 422.4472 599.7512 28.348 0.1144 2777 +2779 2 423.5145 600.1435 28.1529 0.1144 2778 +2780 2 424.5109 600.7007 28.1338 0.1144 2779 +2781 2 425.4879 601.2921 28.2836 0.1144 2780 +2782 2 426.5129 601.7852 28.5295 0.1144 2781 +2783 2 427.5586 602.2416 28.763 0.1144 2782 +2784 2 428.6007 602.7072 28.9369 0.1144 2783 +2785 2 429.6475 603.166 29.0494 0.1144 2784 +2786 2 430.192 604.1018 29.1133 0.1144 2785 +2787 2 430.255 605.2389 29.1267 0.1144 2786 +2788 2 430.2859 606.3829 29.1169 0.1144 2787 +2789 2 430.3167 607.5269 29.0968 0.1144 2788 +2790 2 430.5982 608.632 29.0699 0.1144 2789 +2791 2 431.177 609.617 29.0321 0.1144 2790 +2792 2 431.7708 610.594 28.973 0.1144 2791 +2793 2 432.3645 611.571 28.8789 0.1144 2792 +2794 2 432.8541 612.604 28.791 0.1144 2793 +2795 2 433.2648 613.6713 28.7165 0.1144 2794 +2796 2 433.6595 614.5717 30.497 0.1144 2795 +2797 2 434.1148 615.6116 30.7961 0.1144 2796 +2798 2 434.5736 616.6583 30.924 0.1144 2797 +2799 2 435.0312 617.7051 31.0682 0.1144 2798 +2800 2 435.5894 618.7027 31.1998 0.1144 2799 +2801 2 436.2392 619.643 31.2956 0.1144 2800 +2802 2 436.889 620.5845 31.3592 0.1144 2801 +2803 2 437.5388 621.526 31.3936 0.1144 2802 +2804 2 438.1886 622.4676 31.4112 0.1144 2803 +2805 2 432.1597 613.009 28.0557 0.1144 2795 +2806 2 431.2136 612.4415 27.3216 0.1144 2805 +2807 2 430.2698 611.9313 26.36 0.1144 2806 +2808 2 429.2574 611.6625 25.2701 0.1144 2807 +2809 2 428.2003 611.6167 24.221 0.1144 2808 +2810 2 427.133 611.5996 23.2109 0.1144 2809 +2811 2 426.0611 611.5813 22.2401 0.1144 2810 +2812 2 425.7899 612.477 21.3112 0.1144 2811 +2813 2 425.3678 613.4666 20.4178 0.1144 2812 +2814 2 424.694 614.3223 19.5898 0.1144 2813 +2815 2 423.9916 615.1631 18.7783 0.1144 2814 +2816 2 423.1256 615.8026 17.8699 0.1144 2815 +2817 2 422.0639 615.7557 16.9246 0.1144 2816 +2818 2 420.9977 615.6676 15.9293 0.1144 2817 +2819 2 419.9418 615.5956 14.904 0.1144 2818 +2820 2 419.0483 616.1859 13.9182 0.1144 2819 +2821 2 418.1652 616.8013 12.9666 0.1144 2820 +2822 2 417.2786 617.4191 12.0495 0.1144 2821 +2823 2 416.3657 618.0105 11.1864 0.1144 2822 +2824 2 415.4127 618.5562 10.3911 0.1144 2823 +2825 2 414.4575 619.1042 9.6422 0.1144 2824 +2826 2 413.4977 619.6522 8.9192 0.1144 2825 +2827 2 412.507 620.1555 8.2449 0.1144 2826 +2828 2 411.4957 620.6246 7.628 0.1144 2827 +2829 2 410.4786 621.0959 7.0648 0.1144 2828 +2830 2 409.4593 621.5684 6.5402 0.1144 2829 +2831 2 408.4801 622.0214 5.6092 0.1144 2830 +2832 2 416.9823 589.3156 31.234 0.1144 2767 +2833 2 416.6494 588.85 29.5123 0.1144 2832 +2834 2 416.1712 589.8247 28.7342 0.1144 2833 +2835 2 415.749 590.8657 28.2153 0.1144 2834 +2836 2 415.4196 591.9411 27.7838 0.1144 2835 +2837 2 415.3017 593.0588 27.3325 0.1144 2836 +2838 2 415.1027 594.1593 26.8614 0.1144 2837 +2839 2 414.7378 595.2301 26.4498 0.1144 2838 +2840 2 414.5227 596.334 26.0716 0.1144 2839 +2841 2 414.5776 597.4586 25.6962 0.1144 2840 +2842 2 414.9002 598.5362 25.3064 0.1144 2841 +2843 2 415.232 599.6104 24.8336 0.1144 2842 +2844 2 415.177 600.6297 23.8126 0.1144 2843 +2845 2 414.3785 601.3299 22.8038 0.1144 2844 +2846 2 413.4885 601.8206 21.5651 0.1144 2845 +2847 2 412.9394 602.419 20.2329 0.1144 2846 +2848 2 412.9108 601.7303 18.6731 0.1144 2847 +2849 2 411.9647 602.2702 18.0603 0.1144 2848 +2850 2 410.9328 602.761 17.9156 0.1144 2849 +2851 2 410.0405 603.4577 17.8437 0.1144 2850 +2852 2 409.2877 604.3169 17.845 0.1144 2851 +2853 2 408.9274 605.3739 18.0399 0.1144 2852 +2854 2 408.4927 606.4275 18.2295 0.1144 2853 +2855 2 408.6402 607.5464 18.2042 0.1144 2854 +2856 2 409.1367 608.576 18.1378 0.1144 2855 +2857 2 409.711 609.5655 18.0702 0.1144 2856 +2858 2 409.9089 610.6912 17.9919 0.1144 2857 +2859 2 410.2258 611.7895 17.9057 0.1144 2858 +2860 2 410.5599 612.8831 17.8392 0.1144 2859 +2861 2 410.9877 613.9436 17.7978 0.1144 2860 +2862 2 411.5105 614.9618 17.7231 0.1144 2861 +2863 2 412.0093 615.9891 17.6085 0.1144 2862 +2864 2 412.3182 617.0908 17.5188 0.1144 2863 +2865 2 412.7197 618.1604 17.3883 0.1144 2864 +2866 2 410.6788 586.3652 38.8354 0.1144 2759 +2867 2 410.243 587.2152 37.3444 0.1144 2866 +2868 2 410.2453 588.2379 36.1418 0.1144 2867 +2869 2 410.315 589.3247 35.2881 0.1144 2868 +2870 2 410.2762 590.4424 34.715 0.1144 2869 +2871 2 410.2132 591.5727 34.3064 0.1144 2870 +2872 2 409.814 592.6332 34.0612 0.1144 2871 +2873 2 409.0189 593.4386 33.7977 0.1144 2872 +2874 2 407.9058 593.593 33.4432 0.1144 2873 +2875 2 406.8316 593.2315 33.0543 0.1144 2874 +2876 2 405.7802 592.8139 32.6427 0.1144 2875 +2877 2 405.6658 592.9798 32.3439 0.1144 2876 +2878 2 405.0401 593.7818 31.136 0.1144 2877 +2879 2 404.1695 594.4384 30.5586 0.1144 2878 +2880 2 403.1525 594.9235 30.2501 0.1144 2879 +2881 2 402.259 595.6225 29.9191 0.1144 2880 +2882 2 401.7511 596.5022 29.6008 0.1144 2881 +2883 2 401.949 597.621 29.3003 0.1144 2882 +2884 2 402.1949 598.7307 28.9985 0.1144 2883 +2885 2 402.3105 599.8541 28.6247 0.1144 2884 +2886 2 402.2373 600.9718 28.096 0.1144 2885 +2887 2 402.1972 602.0678 27.4091 0.1144 2886 +2888 2 401.7556 602.8937 26.6221 0.1144 2887 +2889 2 400.7935 603.4314 25.8985 0.1144 2888 +2890 2 399.8257 603.9759 25.2477 0.1144 2889 +2891 2 399.0615 604.7607 24.6662 0.1144 2890 +2892 2 399.0078 605.8041 24.185 0.1144 2891 +2893 2 399.3029 606.8966 23.7799 0.1144 2892 +2894 2 399.3704 608.0085 23.3138 0.1144 2893 +2895 2 398.8064 608.942 22.8309 0.1144 2894 +2896 2 398.1886 609.8927 22.4798 0.1144 2895 +2897 2 397.7494 610.9429 22.2554 0.1144 2896 +2898 2 397.4782 612.0514 22.1316 0.1144 2897 +2899 2 397.7574 613.1462 22.0937 0.1144 2898 +2900 2 398.271 614.1678 22.1307 0.1144 2899 +2901 2 398.3133 615.3015 22.2727 0.1144 2900 +2902 2 397.874 616.3552 22.4305 0.1144 2901 +2903 2 396.5699 616.4524 21.1919 0.1144 2902 +2904 2 395.5002 616.3094 20.3463 0.1144 2903 +2905 2 394.4157 616.3689 19.7211 0.1144 2904 +2906 2 393.3838 616.7075 18.8565 0.1144 2905 +2907 2 392.6208 617.4465 17.9864 0.1144 2906 +2908 2 391.8692 618.2656 17.3334 0.1144 2907 +2909 2 391.1016 619.0893 16.8435 0.1144 2908 +2910 2 390.3683 619.9565 16.5049 0.1144 2909 +2911 2 389.667 620.8568 16.2938 0.1144 2910 +2912 2 388.992 621.7777 16.1714 0.1144 2911 +2913 2 388.3285 622.7101 16.0876 0.1144 2912 +2914 2 387.5758 623.5692 15.9999 0.1144 2913 +2915 2 386.6365 624.2122 15.8585 0.1144 2914 +2916 2 385.7122 624.8814 15.7049 0.1144 2915 +2917 2 384.8119 625.585 15.5565 0.1144 2916 +2918 2 384.1575 626.5139 15.4094 0.1144 2917 +2919 2 383.6427 627.5309 15.2029 0.1144 2918 +2920 2 383.2755 628.6086 14.9283 0.1144 2919 +2921 2 382.4552 629.3853 14.6749 0.1144 2920 +2922 2 381.4737 629.963 14.4606 0.1144 2921 +2923 2 380.4669 630.4984 14.209 0.1144 2922 +2924 2 379.768 631.3942 13.9625 0.1144 2923 +2925 2 379.1056 632.3208 13.7053 0.1144 2924 +2926 2 378.2956 633.1239 13.5037 0.1144 2925 +2927 2 377.9501 634.2107 13.3442 0.1144 2926 +2928 2 377.4411 635.2186 12.901 0.1144 2927 +2929 2 398.946 616.1355 22.6219 0.1144 2902 +2930 2 399.9367 616.5336 22.8148 0.1144 2929 +2931 2 400.5888 617.4626 23.0262 0.1144 2930 +2932 2 401.4296 618.229 23.2259 0.1144 2931 +2933 2 402.267 618.9761 23.4292 0.1144 2932 +2934 2 402.7978 619.9782 23.6611 0.1144 2933 +2935 2 403.1513 621.0582 23.9721 0.1144 2934 +2936 2 403.6947 621.9642 24.4282 0.1144 2935 +2937 2 404.7255 622.3509 25.0243 0.1144 2936 +2938 2 405.6761 622.8142 25.7802 0.1144 2937 +2939 2 406.4495 623.583 26.6196 0.1144 2938 +2940 2 407.2125 624.3815 27.3505 0.1144 2939 +2941 2 407.9859 625.18 28.0084 0.1144 2940 +2942 2 408.7615 625.9785 28.6558 0.1144 2941 +2943 2 409.5383 626.7759 29.3034 0.1144 2942 +2944 2 410.3414 627.5446 29.9564 0.1144 2943 +2945 2 411.1856 628.2642 30.6323 0.1144 2944 +2946 2 412.0448 628.9632 31.3384 0.1144 2945 +2947 2 412.7827 629.7731 32.0793 0.1144 2946 +2948 2 413.2746 630.749 32.8255 0.1144 2947 +2949 2 413.6784 631.7763 33.5692 0.1144 2948 +2950 2 414.0822 632.8025 34.314 0.1144 2949 +2951 2 414.4861 633.8286 35.0571 0.1144 2950 +2952 2 414.8899 634.8548 35.7977 0.1144 2951 +2953 2 415.3738 635.8466 36.5218 0.1144 2952 +2954 2 415.9538 636.7893 37.2151 0.1144 2953 +2955 2 416.6688 637.6313 37.91 0.1144 2954 +2956 2 417.5234 638.3291 38.6207 0.1144 2955 +2957 2 418.4157 638.9789 39.3478 0.1144 2956 +2958 2 419.3069 639.6287 40.091 0.1144 2957 +2959 2 420.1969 640.2774 40.8486 0.1144 2958 +2960 2 421.0126 641.0129 41.615 0.1144 2959 +2961 2 421.6956 641.8732 42.3657 0.1144 2960 +2962 2 422.3076 642.7839 43.1567 0.1144 2961 +2963 2 422.7789 643.7643 43.9947 0.1144 2962 +2964 2 422.8533 644.8465 44.7566 0.1144 2963 +2965 2 422.8293 645.9527 45.4628 0.1144 2964 +2966 2 422.8178 647.0624 46.149 0.1144 2965 +2967 2 422.9677 648.1378 46.9946 0.1144 2966 +2968 2 423.1908 649.2108 47.7943 0.1144 2967 +2969 2 423.4299 650.2954 48.4674 0.1144 2968 +2970 2 423.6712 651.3879 49.0515 0.1144 2969 +2971 2 424.1025 652.4278 49.5337 0.1144 2970 +2972 2 425.0509 653.0558 49.761 0.1144 2971 +2973 2 426.0084 653.6816 49.8134 0.1144 2972 +2974 2 426.966 654.3062 49.7566 0.1144 2973 +2975 2 427.9235 654.9308 49.6373 0.1144 2974 +2976 2 428.992 655.337 49.5261 0.1144 2975 +2977 2 430.0651 655.7328 49.4418 0.1144 2976 +2978 2 431.1381 656.1298 49.3928 0.1144 2977 +2979 2 432.2112 656.5256 49.3688 0.1144 2978 +2980 2 433.2843 656.9226 49.3609 0.1144 2979 +2981 2 434.3574 657.3184 49.3606 0.1144 2980 +2982 2 405.1133 592.5943 32.3579 0.1144 2876 +2983 2 404.1272 592.0646 31.8732 0.1144 2982 +2984 2 403.3332 591.2718 31.4664 0.1144 2983 +2985 2 402.656 590.3589 31.1814 0.1144 2984 +2986 2 401.9044 589.5032 30.9907 0.1144 2985 +2987 2 400.9411 588.9163 30.87 0.1144 2986 +2988 2 399.9721 588.3123 30.8017 0.1144 2987 +2989 2 399.4265 587.3513 30.7614 0.1144 2988 +2990 2 399.1519 586.2439 30.7238 0.1144 2989 +2991 2 398.9277 585.1228 30.6762 0.1144 2990 +2992 2 398.6748 584.0074 30.6138 0.1144 2991 +2993 2 398.2356 582.9572 30.4951 0.1144 2992 +2994 2 397.7711 581.9128 30.3416 0.1144 2993 +2995 2 397.0424 581.049 30.1874 0.1144 2994 +2996 2 396.2713 580.2071 30.0118 0.1144 2995 +2997 2 395.4808 579.388 29.7573 0.1144 2996 +2998 2 394.6503 578.6066 29.5389 0.1144 2997 +2999 2 393.7156 577.9534 29.3838 0.1144 2998 +3000 2 392.7272 577.3802 29.2796 0.1144 2999 +3001 2 391.6255 577.0977 29.2172 0.1144 3000 +3002 2 390.4872 576.9981 29.192 0.1144 3001 +3003 2 389.3467 576.9146 29.1939 0.1144 3002 +3004 2 388.5116 576.1916 29.2043 0.1144 3003 +3005 2 387.5003 575.6802 29.2188 0.1144 3004 +3006 2 386.3723 575.71 29.2393 0.1144 3005 +3007 2 385.2683 575.4457 29.2676 0.1144 3006 +3008 2 384.3703 574.7525 29.3084 0.1144 3007 +3009 2 383.5798 573.9276 29.367 0.1144 3008 +3010 2 382.8407 573.0548 29.4448 0.1144 3009 +3011 2 382.0537 572.2265 29.5428 0.1144 3010 +3012 2 381.127 571.563 29.6856 0.1144 3011 +3013 2 380.1581 570.9681 30.007 0.1144 3012 +3014 2 379.2223 570.324 30.322 0.1144 3013 +3015 2 378.378 569.5587 30.5715 0.1144 3014 +3016 2 377.806 568.5714 30.7642 0.1144 3015 +3017 2 377.6104 567.4457 30.9042 0.1144 3016 +3018 2 377.4479 566.3143 31.0022 0.1144 3017 +3019 2 377.1676 565.2058 31.0702 0.1144 3018 +3020 2 376.829 564.1133 31.1623 0.1144 3019 +3021 2 376.3577 563.0745 31.3267 0.1144 3020 +3022 2 375.7468 562.109 31.4874 0.1144 3021 +3023 2 375.1325 561.1457 31.6436 0.1144 3022 +3024 2 374.469 560.226 31.8472 0.1144 3023 +3025 2 373.4966 559.6368 32.146 0.1144 3024 +3026 2 372.5573 558.9904 32.3764 0.1144 3025 +3027 2 371.6456 558.3063 32.5833 0.1144 3026 +3028 2 370.6995 557.6703 32.776 0.1144 3027 +3029 2 369.8426 556.9141 32.9042 0.1144 3028 +3030 2 369.0155 556.1259 32.9728 0.1144 3029 +3031 2 368.1872 555.3525 32.9946 0.1144 3030 +3032 2 368.0099 554.3138 32.9868 0.1144 3031 +3033 2 368.3016 553.2178 32.9546 0.1144 3032 +3034 2 368.3417 552.0772 32.891 0.1144 3033 +3035 2 368.1975 550.9481 32.7953 0.1144 3034 +3036 2 367.7766 549.9014 32.6973 0.1144 3035 +3037 2 367.1062 548.9781 32.6234 0.1144 3036 +3038 2 366.3637 548.1076 32.5696 0.1144 3037 +3039 2 365.5297 547.3365 32.5335 0.1144 3038 +3040 2 364.5585 546.7359 32.5122 0.1144 3039 +3041 2 363.6296 546.085 32.4996 0.1144 3040 +3042 2 362.8047 545.2922 32.4859 0.1144 3041 +3043 2 361.9021 544.6081 32.466 0.1144 3042 +3044 2 360.8393 544.2237 32.4391 0.1144 3043 +3045 2 359.7377 543.9274 32.4047 0.1144 3044 +3046 2 358.739 543.3943 32.3509 0.1144 3045 +3047 2 357.8466 542.6816 32.263 0.1144 3046 +3048 2 357.0252 541.8888 32.1544 0.1144 3047 +3049 2 356.2713 541.0296 32.0536 0.1144 3048 +3050 2 355.4351 540.2654 31.9673 0.1144 3049 +3051 2 354.4695 539.6545 31.8934 0.1144 3050 +3052 2 353.6104 538.9212 31.8298 0.1144 3051 +3053 2 352.9137 538.0163 31.7568 0.1144 3052 +3054 2 352.1461 537.1801 31.6512 0.1144 3053 +3055 2 351.1943 536.5635 31.5311 0.1144 3054 +3056 2 350.1384 536.1345 31.4084 0.1144 3055 +3057 2 349.0447 535.8038 31.2791 0.1144 3056 +3058 2 347.9728 535.4137 31.1699 0.1144 3057 +3059 2 346.9558 534.8955 31.1072 0.1144 3058 +3060 2 346.0486 534.2091 31.0918 0.1144 3059 +3061 2 345.3976 533.2893 31.1139 0.1144 3060 +3062 2 344.6494 532.4508 31.2054 0.1144 3061 +3063 2 343.6668 531.8856 31.3863 0.1144 3062 +3064 2 342.7779 531.1889 31.5708 0.1144 3063 +3065 2 342.0697 530.2978 31.7122 0.1144 3064 +3066 2 341.7746 529.2201 31.7814 0.1144 3065 +3067 2 341.7277 528.0784 31.8002 0.1144 3066 +3068 2 341.524 526.9584 31.8352 0.1144 3067 +3069 2 340.8331 526.0901 31.8629 0.1144 3068 +3070 2 339.7657 525.8362 31.8797 0.1144 3069 +3071 2 338.656 525.5753 31.8895 0.1144 3070 +3072 2 338.2556 524.6178 31.8909 0.1144 3071 +3073 2 338.2202 523.4784 31.8772 0.1144 3072 +3074 2 337.6813 522.506 31.8444 0.1144 3073 +3075 2 336.6197 522.1582 31.7923 0.1144 3074 +3076 2 335.5146 521.8642 31.6968 0.1144 3075 +3077 2 334.4759 521.3906 31.5904 0.1144 3076 +3078 2 333.6659 520.5909 31.4986 0.1144 3077 +3079 2 333.1225 519.5876 31.4289 0.1144 3078 +3080 2 332.1833 518.9367 31.3818 0.1144 3079 +3081 2 331.0999 518.5695 31.3418 0.1144 3080 +3082 2 329.9799 518.3533 31.2872 0.1144 3081 +3083 2 329.0762 517.6714 31.2418 0.1144 3082 +3084 2 328.5316 516.6659 31.2402 0.1144 3083 +3085 2 327.9917 515.658 31.3261 0.1144 3084 +3086 2 327.3419 514.7256 31.5017 0.1144 3085 +3087 2 326.5045 513.95 31.673 0.1144 3086 +3088 2 325.619 513.2316 31.7878 0.1144 3087 +3089 2 324.8537 512.3827 31.8906 0.1144 3088 +3090 2 324.0929 511.5407 32.0085 0.1144 3089 +3091 2 323.1468 510.899 32.1163 0.1144 3090 +3092 2 322.2911 510.1657 32.228 0.1144 3091 +3093 2 321.7592 509.1681 32.375 0.1144 3092 +3094 2 321.5441 508.0527 32.573 0.1144 3093 +3095 2 321.5876 506.9213 32.7908 0.1144 3094 +3096 2 321.933 505.8539 33.1694 0.1144 3095 +3097 2 322.3083 504.806 33.6885 0.1144 3096 +3098 2 322.3918 503.686 34.095 0.1144 3097 +3099 2 321.9891 502.6793 34.3616 0.1144 3098 +3100 2 321.2958 501.7733 34.5629 0.1144 3099 +3101 2 320.5522 500.9084 34.736 0.1144 3100 +3102 2 319.6839 500.174 34.8566 0.1144 3101 +3103 2 318.8351 499.4155 34.9577 0.1144 3102 +3104 2 317.9439 498.7131 35.1182 0.1144 3103 +3105 2 316.9177 498.7451 35.4225 0.1144 3104 +3106 2 315.9064 499.1032 35.5396 0.1144 3105 +3107 2 316.2931 498.0724 34.7959 0.1144 3106 +3108 2 316.4968 498.1765 33.5888 0.1144 3107 +3109 2 317.301 498.792 33.0546 0.1144 3108 +3110 2 318.0434 499.6569 33.038 0.1144 3109 +3111 2 318.7264 500.5744 33.0025 0.1144 3110 +3112 2 319.2321 501.5971 32.9389 0.1144 3111 +3113 2 319.4917 502.7068 32.9042 0.1144 3112 +3114 2 319.5661 503.8473 32.9395 0.1144 3113 +3115 2 319.4311 504.9799 33.0294 0.1144 3114 +3116 2 318.7985 505.9168 33.1288 0.1144 3115 +3117 2 317.6819 505.9843 33.2248 0.1144 3116 +3118 2 316.856 506.752 33.395 0.1144 3117 +3119 2 316.8857 507.8902 33.6549 0.1144 3118 +3120 2 315.2452 498.2463 34.2336 0.1144 3107 +3121 2 314.123 498.1159 34.0371 0.1144 3120 +3122 2 313.1677 497.5164 34.0105 0.1144 3121 +3123 2 312.2697 496.8072 34.0631 0.1144 3122 +3124 2 311.3453 496.1345 34.1426 0.1144 3123 +3125 2 310.4633 495.4058 34.1919 0.1144 3124 +3126 2 309.6522 494.6015 34.2104 0.1144 3125 +3127 2 308.991 493.6703 34.2143 0.1144 3126 +3128 2 308.5299 492.6258 34.214 0.1144 3127 +3129 2 308.2028 491.5299 34.2135 0.1144 3128 +3130 2 307.8046 490.458 34.2124 0.1144 3129 +3131 2 307.3619 489.4032 34.2112 0.1144 3130 +3132 2 306.7899 488.4136 34.2096 0.1144 3131 +3133 2 306.1859 487.4424 34.207 0.1144 3132 +3134 2 305.7409 486.3899 34.2034 0.1144 3133 +3135 2 305.1643 485.4038 34.1986 0.1144 3134 +3136 2 304.4493 484.5126 34.1916 0.1144 3135 +3137 2 303.8395 483.5459 34.1824 0.1144 3136 +3138 2 303.0696 482.7028 34.169 0.1144 3137 +3139 2 302.0538 482.1891 34.1494 0.1144 3138 +3140 2 300.9589 481.8574 34.1228 0.1144 3139 +3141 2 299.8413 481.6137 34.0886 0.1144 3140 +3142 2 298.6995 481.5885 34.0432 0.1144 3141 +3143 2 297.559 481.5096 33.9528 0.1144 3142 +3144 2 296.455 481.2167 33.8363 0.1144 3143 +3145 2 295.5124 480.5772 33.7333 0.1144 3144 +3146 2 294.6841 479.789 33.6445 0.1144 3145 +3147 2 293.698 479.2136 33.5653 0.1144 3146 +3148 2 292.8446 478.4551 33.4919 0.1144 3147 +3149 2 292.2279 477.4942 33.4219 0.1144 3148 +3150 2 291.5987 476.5389 33.3483 0.1144 3149 +3151 2 291.005 475.5654 33.1436 0.1144 3150 +3152 2 290.3872 474.6056 32.935 0.1144 3151 +3153 2 289.8564 473.5943 32.7729 0.1144 3152 +3154 2 289.2272 472.6402 32.6542 0.1144 3153 +3155 2 288.4905 471.7662 32.5752 0.1144 3154 +3156 2 287.533 471.1404 32.5321 0.1144 3155 +3157 2 286.5606 470.5375 32.5203 0.1144 3156 +3158 2 286.2299 469.9312 32.5142 0.1144 3157 +3159 2 285.6122 468.9736 32.5038 0.1144 3158 +3160 2 284.8011 468.1843 32.4912 0.1144 3159 +3161 2 283.7921 467.6729 32.4741 0.1144 3160 +3162 2 282.6824 467.4098 32.4528 0.1144 3161 +3163 2 281.5453 467.2943 32.424 0.1144 3162 +3164 2 280.4241 467.1101 32.3672 0.1144 3163 +3165 2 279.4163 466.6101 32.2871 0.1144 3164 +3166 2 278.5125 465.9089 32.2218 0.1144 3165 +3167 2 277.5355 465.3392 32.1961 0.1144 3166 +3168 2 276.5059 465.4375 32.23 0.1144 3167 +3169 2 275.4214 465.5668 32.2938 0.1144 3168 +3170 2 274.4525 465.0314 32.3347 0.1144 3169 +3171 2 273.6494 464.2226 32.3322 0.1144 3170 +3172 2 273.0213 463.272 32.3459 0.1144 3171 +3173 2 272.7879 462.1714 32.4117 0.1144 3172 +3174 2 272.7262 461.0354 32.1636 0.1144 3173 +3175 2 272.0455 460.1751 31.4104 0.1144 3174 +3176 2 271.5021 459.2108 30.7994 0.1144 3175 +3177 2 271.0067 458.2235 30.3204 0.1144 3176 +3178 2 270.1705 457.4684 29.9382 0.1144 3177 +3179 2 269.6294 456.5841 29.7237 0.1144 3178 +3180 2 269.4864 455.4504 29.6383 0.1144 3179 +3181 2 269.0791 454.4151 29.5154 0.1144 3180 +3182 2 268.4293 453.4816 29.2272 0.1144 3181 +3183 2 267.966 452.4577 28.8576 0.1144 3182 +3184 2 267.3688 451.5116 28.4413 0.1144 3183 +3185 2 266.5863 450.6971 28.0213 0.1144 3184 +3186 2 265.7306 449.9524 27.6674 0.1144 3185 +3187 2 265.1026 449.0211 27.3885 0.1144 3186 +3188 2 264.5511 448.0236 27.1513 0.1144 3187 +3189 2 263.8533 447.1313 26.8519 0.1144 3188 +3190 2 262.8477 446.6382 26.6464 0.1144 3189 +3191 2 262.0332 445.8626 26.4185 0.1144 3190 +3192 2 261.1352 445.1773 26.05 0.1144 3191 +3193 2 260.4716 444.2507 25.8791 0.1144 3192 +3194 2 259.9076 443.2577 25.7025 0.1144 3193 +3195 2 259.3025 442.2921 25.493 0.1144 3194 +3196 2 258.568 441.4273 25.2193 0.1144 3195 +3197 2 258.1264 440.3805 24.9157 0.1144 3196 +3198 2 257.5247 439.4253 24.5109 0.1144 3197 +3199 2 256.7399 438.6073 24.1427 0.1144 3198 +3200 2 255.9574 437.7825 23.8316 0.1144 3199 +3201 2 255.1635 436.9725 23.587 0.1144 3200 +3202 2 254.1556 436.5321 23.3705 0.1144 3201 +3203 2 253.0265 436.5676 23.1629 0.1144 3202 +3204 2 252.2268 435.9761 22.9972 0.1144 3203 +3205 2 251.9649 434.8653 22.9298 0.1144 3204 +3206 2 251.7269 433.7487 22.9191 0.1144 3205 +3207 2 251.2624 432.7203 22.9363 0.1144 3206 +3208 2 250.4342 431.987 22.9676 0.1144 3207 +3209 2 249.3943 431.5088 23.0004 0.1144 3208 +3210 2 248.4631 430.875 23.0234 0.1144 3209 +3211 2 247.9037 429.9232 23.0591 0.1144 3210 +3212 2 247.1864 429.1716 23.1059 0.1144 3211 +3213 2 246.1156 428.7746 23.0966 0.1144 3212 +3214 2 245.1031 428.2518 23.0165 0.1144 3213 +3215 2 244.125 427.6627 22.8724 0.1144 3214 +3216 2 243.1389 427.0861 22.6757 0.1144 3215 +3217 2 242.1356 426.5473 22.4335 0.1144 3216 +3218 2 241.1495 425.9787 22.1608 0.1144 3217 +3219 2 240.6107 425.0257 21.8981 0.1144 3218 +3220 2 240.2938 423.9309 21.674 0.1144 3219 +3221 2 239.7058 422.9665 21.44 0.1144 3220 +3222 2 239.0468 422.0376 21.1827 0.1144 3221 +3223 2 238.4851 421.0492 20.8997 0.1144 3222 +3224 2 237.9737 420.0345 20.5875 0.1144 3223 +3225 2 237.4704 419.0152 20.2521 0.1144 3224 +3226 2 237.1398 417.9295 19.9754 0.1144 3225 +3227 2 236.9007 416.8141 19.7839 0.1144 3226 +3228 2 236.6032 415.7113 19.6148 0.1144 3227 +3229 2 236.2177 414.6382 19.4035 0.1144 3228 +3230 2 235.8734 413.5526 19.155 0.1144 3229 +3231 2 235.6331 412.4395 18.8936 0.1144 3230 +3232 2 235.4215 411.3206 18.623 0.1144 3231 +3233 2 235.211 410.2018 18.3529 0.1144 3232 +3234 2 235.0417 409.0727 18.1543 0.1144 3233 +3235 2 234.8872 407.9412 18.034 0.1144 3234 +3236 2 235.0291 406.811 17.8987 0.1144 3235 +3237 2 235.2911 405.7013 17.7141 0.1144 3236 +3238 2 235.5679 404.595 17.4818 0.1144 3237 +3239 2 235.8436 403.4899 17.21 0.1144 3238 +3240 2 236.1205 402.3871 16.909 0.1144 3239 +3241 2 236.3962 401.2843 16.5972 0.1144 3240 +3242 2 236.673 400.1804 16.2957 0.1144 3241 +3243 2 236.7886 399.0489 16.0221 0.1144 3242 +3244 2 236.3962 397.9862 15.8117 0.1144 3243 +3245 2 235.9363 396.9405 15.659 0.1144 3244 +3246 2 235.9408 395.8046 15.5007 0.1144 3245 +3247 2 235.8516 394.6663 15.3592 0.1144 3246 +3248 2 235.5736 393.5577 15.2576 0.1144 3247 +3249 2 235.2728 392.4549 15.1861 0.1144 3248 +3250 2 234.6367 391.5077 15.1248 0.1144 3249 +3251 2 233.7844 390.7458 15.073 0.1144 3250 +3252 2 232.9962 389.9175 15.0497 0.1144 3251 +3253 2 232.2892 389.0172 15.0592 0.1144 3252 +3254 2 231.6932 388.0414 15.0173 0.1144 3253 +3255 2 231.2367 387.0083 14.5838 0.1144 3254 +3256 2 286.0835 470.9596 32.9031 0.1144 3157 +3257 2 284.9761 471.0306 33.4488 0.1144 3256 +3258 2 283.8561 470.8212 33.686 0.1144 3257 +3259 2 282.8391 470.3133 33.9654 0.1144 3258 +3260 2 282.0349 469.5056 34.2107 0.1144 3259 +3261 2 281.6986 468.4188 34.4576 0.1144 3260 +3262 2 281.3897 467.3229 34.6959 0.1144 3261 +3263 2 281.0556 466.2315 34.9275 0.1144 3262 +3264 2 280.4447 465.2705 35.1812 0.1144 3263 +3265 2 279.5604 464.5498 35.3752 0.1144 3264 +3266 2 278.5846 463.9927 35.8985 0.1144 3265 +3267 2 417.4834 555.1638 42.0325 0.1144 2332 +3268 2 416.7741 554.3424 41.148 0.1144 3267 +3269 2 416.9949 553.688 40.74 0.1144 3268 +3270 2 417.4891 552.7076 40.0907 0.1144 3269 +3271 2 418.3494 552.0715 39.3915 0.1144 3270 +3272 2 419.4167 551.8301 38.6638 0.1144 3271 +3273 2 420.3948 552.163 37.9243 0.1144 3272 +3274 2 421.3329 552.7019 37.1053 0.1144 3273 +3275 2 422.295 552.1722 36.463 0.1144 3274 +3276 2 423.3967 552.1287 35.8711 0.1144 3275 +3277 2 424.4057 551.6231 35.4225 0.1144 3276 +3278 2 425.3575 551.011 35.0302 0.1144 3277 +3279 2 426.2944 550.3738 34.6382 0.1144 3278 +3280 2 427.2748 549.8018 34.2885 0.1144 3279 +3281 2 428.2472 549.2172 33.9368 0.1144 3280 +3282 2 429.1739 548.5663 33.5423 0.1144 3281 +3283 2 430.0639 547.8959 32.9588 0.1144 3282 +3284 2 430.6439 547.1054 31.6722 0.1144 3283 +3285 2 431.4013 546.514 30.3993 0.1144 3284 +3286 2 431.9492 545.664 29.2914 0.1144 3285 +3287 2 432.2673 544.7167 27.9441 0.1144 3286 +3288 2 432.9514 543.9777 26.6489 0.1144 3287 +3289 2 433.5382 543.98 24.462 0.1144 3288 +3290 2 434.4386 544.5474 23.6309 0.1144 3289 +3291 2 435.4339 544.8277 23.2106 0.1144 3290 +3292 2 436.4005 544.3152 22.8032 0.1144 3291 +3293 2 437.2448 543.5613 22.4028 0.1144 3292 +3294 2 438.0468 542.7662 21.9739 0.1144 3293 +3295 2 438.8144 541.9425 21.4708 0.1144 3294 +3296 2 439.2411 540.9415 20.8991 0.1144 3295 +3297 2 438.8132 540.0401 20.1764 0.1144 3296 +3298 2 439.3006 539.3685 18.917 0.1144 3297 +3299 2 439.8955 538.514 17.9589 0.1144 3298 +3300 2 439.7353 537.7052 17.0652 0.1144 3299 +3301 2 438.7309 537.6777 15.9632 0.1144 3300 +3302 2 437.6635 537.9557 15.2845 0.1144 3301 +3303 2 436.6168 538.3801 14.8769 0.1144 3302 +3304 2 435.8411 539.1878 14.6055 0.1144 3303 +3305 2 435.5014 540.262 14.424 0.1144 3304 +3306 2 435.5368 541.398 14.2923 0.1144 3305 +3307 2 435.7256 542.5237 14.17 0.1144 3306 +3308 2 435.9098 543.6517 14.022 0.1144 3307 +3309 2 436.0413 544.7842 13.7885 0.1144 3308 +3310 2 436.1855 545.9065 13.3894 0.1144 3309 +3311 2 436.3399 547.0173 12.8422 0.1144 3310 +3312 2 436.69 548.0927 12.4247 0.1144 3311 +3313 2 436.984 549.1909 12.1157 0.1144 3312 +3314 2 437.1933 550.3075 11.7793 0.1144 3313 +3315 2 432.5384 544.3816 25.0973 0.1144 3288 +3316 2 432.3737 545.3082 23.9586 0.1144 3315 +3317 2 432.7409 546.3355 23.1788 0.1144 3316 +3318 2 433.1756 547.3662 22.6008 0.1144 3317 +3319 2 433.6149 548.4061 22.1509 0.1144 3318 +3320 2 434.0553 549.4518 21.7932 0.1144 3319 +3321 2 434.5152 550.4939 21.5438 0.1144 3320 +3322 2 434.9866 551.5338 21.3757 0.1144 3321 +3323 2 435.7999 552.2923 21.2496 0.1144 3322 +3324 2 436.7952 552.8517 21.148 0.1144 3323 +3325 2 437.8077 553.3814 21.0502 0.1144 3324 +3326 2 438.8212 553.9099 20.9416 0.1144 3325 +3327 2 439.8348 554.4396 20.8126 0.1144 3326 +3328 2 440.7855 555.0654 20.5799 0.1144 3327 +3329 2 441.6446 555.7998 20.1748 0.1144 3328 +3330 2 442.6582 556.2917 19.763 0.1144 3329 +3331 2 443.7519 556.5983 19.4577 0.1144 3330 +3332 2 444.8524 556.8958 19.234 0.1144 3331 +3333 2 445.9381 557.2516 19.0805 0.1144 3332 +3334 2 446.7114 558.0832 18.9921 0.1144 3333 +3335 2 447.4687 558.9401 18.9415 0.1144 3334 +3336 2 448.2261 559.7981 18.894 0.1144 3335 +3337 2 448.9456 560.687 18.8167 0.1144 3336 +3338 2 449.6343 561.5988 18.7008 0.1144 3337 +3339 2 450.3207 562.5128 18.5608 0.1144 3338 +3340 2 451.0071 563.4257 18.4117 0.1144 3339 +3341 2 451.483 564.4633 18.2795 0.1144 3340 +3342 2 451.5883 565.6016 18.2061 0.1144 3341 +3343 2 452.3273 566.4745 18.1844 0.1144 3342 +3344 2 453.0698 567.3451 18.2099 0.1144 3343 +3345 2 454.0662 568.1768 18.4038 0.1144 3344 +3346 2 455.0397 568.7613 18.5815 0.1144 3345 +3347 2 456.1128 569.14 18.765 0.1144 3346 +3348 2 456.7992 569.958 19.0043 0.1144 3347 +3349 2 457.2843 570.9876 19.3021 0.1144 3348 +3350 2 456.9136 571.9542 19.6627 0.1144 3349 +3351 2 456.0362 572.6715 19.9727 0.1144 3350 +3352 2 455.2411 573.4849 20.264 0.1144 3351 +3353 2 454.6016 574.4253 20.535 0.1144 3352 +3354 2 453.9266 575.3416 20.8204 0.1144 3353 +3355 2 453.2231 576.2339 21.138 0.1144 3354 +3356 2 452.5184 577.1251 21.4787 0.1144 3355 +3357 2 452.3731 578.2337 21.9311 0.1144 3356 +3358 2 452.4142 579.2907 22.9975 0.1144 3357 +3359 2 453.1395 567.6231 18.1033 0.1144 3344 +3360 2 453.4152 568.7282 17.9494 0.1144 3359 +3361 2 453.8134 569.7967 17.9494 0.1144 3360 +3362 2 454.3053 570.8285 17.9494 0.1144 3361 +3363 2 454.8121 571.8547 17.9494 0.1144 3362 +3364 2 454.8613 572.9427 17.9494 0.1144 3363 +3365 2 454.9208 574.0729 17.9494 0.1144 3364 +3366 2 455.9858 574.4893 17.9494 0.1144 3365 +3367 2 457.052 574.9046 17.9494 0.1144 3366 +3368 2 458.0851 575.3942 17.9494 0.1144 3367 +3369 2 459.1089 575.9068 17.9494 0.1144 3368 +3370 2 460.1317 576.4181 17.9494 0.1144 3369 +3371 2 416.837 554.7725 41.9398 0.1144 3268 +3372 2 417.2465 555.6191 43.0623 0.1144 3371 +3373 2 418.3196 555.7426 43.7746 0.1144 3372 +3374 2 419.4465 555.8055 44.21 0.1144 3373 +3375 2 420.5733 555.9485 44.5158 0.1144 3374 +3376 2 421.6898 556.1785 44.742 0.1144 3375 +3377 2 422.6394 556.7585 45.0156 0.1144 3376 +3378 2 422.2779 557.668 45.3558 0.1144 3377 +3379 2 421.7539 558.6758 45.6761 0.1144 3378 +3380 2 421.3455 559.742 45.7943 0.1144 3379 +3381 2 421.2105 560.8746 45.995 0.1144 3380 +3382 2 429.2952 565.2641 38.5241 0.1144 1874 +3383 2 430.3922 565.5524 38.8651 0.1144 3382 +3384 2 431.4996 565.8316 39.0468 0.1144 3383 +3385 2 432.6128 566.0809 39.2456 0.1144 3384 +3386 2 433.7316 566.3063 39.41 0.1144 3385 +3387 2 434.863 566.4699 39.468 0.1144 3386 +3388 2 435.8834 566.3166 39.3448 0.1144 3387 +3389 2 436.0276 565.2779 38.9486 0.1144 3388 +3390 2 435.9006 564.1625 38.4182 0.1144 3389 +3391 2 435.7759 563.0574 37.7689 0.1144 3390 +3392 2 435.6649 561.958 37.044 0.1144 3391 +3393 2 435.7885 560.8769 36.2454 0.1144 3392 +3394 2 435.9887 559.8027 35.4091 0.1144 3393 +3395 2 436.1889 558.7307 34.5652 0.1144 3394 +3396 2 436.5664 557.7069 33.7526 0.1144 3395 +3397 2 437.0927 556.7402 33.0047 0.1144 3396 +3398 2 437.5445 555.7312 32.2932 0.1144 3397 +3399 2 437.3764 554.657 31.6865 0.1144 3398 +3400 2 437.0995 553.569 31.1517 0.1144 3399 +3401 2 436.7128 552.5142 30.6351 0.1144 3400 +3402 2 436.1969 551.5178 30.1109 0.1144 3401 +3403 2 435.6615 550.5294 29.5924 0.1144 3402 +3404 2 434.5987 550.296 29.148 0.1144 3403 +3405 2 433.465 550.399 28.8795 0.1144 3404 +3406 2 432.3313 550.5042 28.6068 0.1144 3405 +3407 2 429.0526 567.2513 40.6778 0.1144 1872 +3408 2 428.7941 567.2535 41.2628 0.1144 3407 +3409 2 427.6787 567.3737 41.7992 0.1144 3408 +3410 2 426.5656 567.5304 42.322 0.1144 3409 +3411 2 425.4605 567.7535 42.8039 0.1144 3410 +3412 2 424.3279 567.8301 43.1469 0.1144 3411 +3413 2 424.1231 568.0006 43.1466 0.1345 3412 +3414 2 423.1393 568.4982 43.3474 0.2039 3413 +3415 2 422.0182 568.5405 43.657 0.2288 3414 +3416 2 420.8822 568.4936 43.8614 0.2288 3415 +3417 2 419.7691 568.6881 44.1101 0.2288 3416 +3418 2 418.664 568.8986 44.4858 0.2288 3417 +3419 2 417.6755 568.5234 45.113 0.2288 3418 +3420 2 416.9182 567.7111 45.7052 0.2288 3419 +3421 2 416.2536 566.7982 46.144 0.2288 3420 +3422 2 415.6507 565.8338 46.4573 0.2288 3421 +3423 2 414.9837 564.9095 46.6603 0.2288 3422 +3424 2 414.3534 563.9565 46.7678 0.2288 3423 +3425 2 413.6658 563.0436 46.8126 0.2288 3424 +3426 2 412.9508 562.1502 46.839 0.2288 3425 +3427 2 412.1512 561.3345 46.8695 0.2288 3426 +3428 2 411.363 560.5051 46.909 0.2288 3427 +3429 2 410.6136 559.6414 46.982 0.2288 3428 +3430 2 409.9352 558.7216 47.0744 0.1595 3429 +3431 2 409.123 557.9219 47.1808 0.1192 3430 +3432 2 408.1735 557.2904 47.297 0.1144 3431 +3433 2 407.1942 556.7024 47.4216 0.1144 3432 +3434 2 406.247 556.0629 47.5681 0.1144 3433 +3435 2 405.5354 555.1821 47.7977 0.1144 3434 +3436 2 405.2117 554.1021 48.1242 0.1144 3435 +3437 2 405.0172 552.9821 48.4448 0.1144 3436 +3438 2 404.714 551.8862 48.7225 0.1144 3437 +3439 2 404.213 550.8635 48.9616 0.1144 3438 +3440 2 403.3023 550.1942 49.175 0.1144 3439 +3441 2 402.3322 549.5925 49.3898 0.1144 3440 +3442 2 401.6939 548.659 49.6728 0.1144 3441 +3443 2 400.8988 547.8513 50.0416 0.1144 3442 +3444 2 400.2227 546.943 50.4398 0.1144 3443 +3445 2 399.6106 545.9923 50.8628 0.1144 3444 +3446 2 398.8682 545.1412 51.3013 0.1144 3445 +3447 2 398.0125 544.4067 51.7723 0.1144 3446 +3448 2 397.723 544.3655 51.9744 0.1144 3447 +3449 2 396.6957 543.9377 52.4499 0.1144 3448 +3450 2 395.8904 543.1529 52.747 0.1144 3449 +3451 2 394.9557 542.5203 53.0057 0.1144 3450 +3452 2 393.9456 541.9929 53.2596 0.1144 3451 +3453 2 392.9446 541.4495 53.501 0.1144 3452 +3454 2 392.1438 540.6533 53.772 0.1144 3453 +3455 2 391.661 539.6351 54.1276 0.1144 3454 +3456 2 391.1393 538.6284 54.488 0.1144 3455 +3457 2 390.1875 538.0518 54.8542 0.1144 3456 +3458 2 389.3101 537.3414 55.2726 0.1144 3457 +3459 2 388.4532 536.6161 55.8054 0.1144 3458 +3460 2 388.1363 535.535 56.2604 0.1144 3459 +3461 2 388.0425 534.4036 56.6068 0.1144 3460 +3462 2 387.7199 533.3168 56.9643 0.1144 3461 +3463 2 387.7588 532.1796 57.2547 0.1144 3462 +3464 2 387.6467 531.0459 57.5193 0.1144 3463 +3465 2 387.4671 529.9191 57.7108 0.1144 3464 +3466 2 386.998 528.8781 57.869 0.1144 3465 +3467 2 386.9477 527.7364 58.0068 0.1144 3466 +3468 2 387.5186 527.8107 58.2823 0.1144 3467 +3469 2 388.6168 527.956 58.97 0.1144 3468 +3470 2 389.7356 528.1024 59.4121 0.1144 3469 +3471 2 390.8442 528.3404 59.7512 0.1144 3470 +3472 2 391.9241 528.7007 60.0127 0.1144 3471 +3473 2 392.996 529.0943 60.1787 0.1144 3472 +3474 2 394.068 529.4912 60.2487 0.1144 3473 +3475 2 395.1399 529.8894 60.2224 0.1144 3474 +3476 2 396.2118 530.2863 60.1166 0.1144 3475 +3477 2 397.2837 530.6833 59.9528 0.1144 3476 +3478 2 398.3305 531.1283 59.689 0.1144 3477 +3479 2 399.3441 531.6305 59.2735 0.1144 3478 +3480 2 400.3417 532.1453 58.7364 0.1144 3479 +3481 2 401.2237 532.834 58.1784 0.1144 3480 +3482 2 401.9581 533.684 57.6691 0.1144 3481 +3483 2 402.6697 534.5603 57.2166 0.1144 3482 +3484 2 403.379 535.4435 56.8249 0.1144 3483 +3485 2 404.0551 536.3564 56.495 0.1144 3484 +3486 2 404.7255 537.2762 56.2089 0.1144 3485 +3487 2 405.3958 538.1971 55.9468 0.1144 3486 +3488 2 406.0662 539.118 55.6984 0.1144 3487 +3489 2 406.7366 540.0401 55.4616 0.1144 3488 +3490 2 407.4081 540.961 55.2373 0.1144 3489 +3491 2 408.0797 541.8842 55.027 0.1144 3490 +3492 2 408.7512 542.8063 54.833 0.1144 3491 +3493 2 409.4628 543.6997 54.6734 0.1144 3492 +3494 2 410.219 544.5566 54.5639 0.1144 3493 +3495 2 410.9843 545.4054 54.4981 0.1144 3494 +3496 2 411.7508 546.2554 54.4664 0.1144 3495 +3497 2 412.5172 547.1054 54.4603 0.1144 3496 +3498 2 413.2837 547.9543 54.4726 0.1144 3497 +3499 2 414.0502 548.8043 54.4961 0.1144 3498 +3500 2 414.8155 549.6531 54.5308 0.1144 3499 +3501 2 415.582 550.502 54.5818 0.1144 3500 +3502 2 416.3176 551.3783 54.6518 0.1144 3501 +3503 2 416.8896 552.3655 54.7431 0.1144 3502 +3504 2 417.4296 553.3734 54.8542 0.1144 3503 +3505 2 417.8712 554.4236 55.0813 0.1144 3504 +3506 2 418.2853 555.4795 55.438 0.1144 3505 +3507 2 418.9214 556.4222 55.7301 0.1144 3506 +3508 2 419.5014 557.4037 55.9658 0.1144 3507 +3509 2 420.3445 558.1702 56.1526 0.1144 3508 +3510 2 421.1693 558.9607 56.296 0.1144 3509 +3511 2 421.9381 559.8072 56.4007 0.1144 3510 +3512 2 422.6863 560.6687 56.5953 0.1144 3511 +3513 2 423.4161 561.545 56.8145 0.1144 3512 +3514 2 424.1243 562.4407 56.9892 0.1144 3513 +3515 2 424.6928 563.4314 57.1234 0.1144 3514 +3516 2 425.4227 564.3123 57.2194 0.1144 3515 +3517 2 425.9661 563.9783 58.4984 0.1144 3516 +3518 2 426.887 564.0515 59.6691 0.1144 3517 +3519 2 427.904 564.4885 60.3761 0.1144 3518 +3520 2 428.0654 564.961 61.7053 0.1144 3519 +3521 2 427.006 565.0902 62.7122 0.1144 3520 +3522 2 425.9535 565.2172 63.7655 0.1144 3521 +3523 2 424.9045 565.3442 64.8354 0.1144 3522 +3524 2 424.2684 565.5524 66.1668 0.1144 3523 +3525 2 425.0921 566.1679 67.2493 0.1144 3524 +3526 2 425.9673 566.8211 68.0814 0.1144 3525 +3527 2 426.7623 567.3325 69.2418 0.1144 3526 +3528 2 426.1526 566.5099 70.4864 0.1144 3527 +3529 2 425.719 565.6805 71.9186 0.1144 3528 +3530 2 426.0485 564.8317 73.4586 0.1144 3529 +3531 2 426.4992 564.0298 75.0036 0.1144 3530 +3532 2 426.4981 563.2198 76.9432 0.1144 3531 +3533 2 427.427 563.134 78.3031 0.1144 3532 +3534 2 428.1145 563.9199 79.3503 0.1144 3533 +3535 2 428.7975 564.7562 80.2729 0.1144 3534 +3536 2 429.4908 565.6028 81.0947 0.1144 3535 +3537 2 430.1886 566.4562 81.8356 0.1144 3536 +3538 2 430.891 567.3153 82.5216 0.1144 3537 +3539 2 431.5946 568.1756 83.1832 0.1144 3538 +3540 2 432.2993 569.037 83.8275 0.1144 3539 +3541 2 433.0063 569.9008 84.4516 0.1144 3540 +3542 2 433.3403 570.9475 85.1004 0.1144 3541 +3543 2 432.9411 572.0 85.6024 0.1144 3542 +3544 2 432.5384 573.0548 86.0572 0.1144 3543 +3545 2 432.1346 574.1118 86.4676 0.1144 3544 +3546 2 431.7319 575.1712 86.8384 0.1144 3545 +3547 2 431.328 576.2328 87.1732 0.1144 3546 +3548 2 430.9231 577.2956 87.481 0.1144 3547 +3549 2 430.525 578.3412 88.0636 0.1144 3548 +3550 2 426.1915 565.1463 57.2782 0.1144 3516 +3551 2 427.0735 565.8739 57.3359 0.1144 3550 +3552 2 427.9715 566.582 57.4067 0.1144 3551 +3553 2 428.7632 567.321 57.4616 0.1144 3552 +3554 2 429.6658 568.0235 57.4361 0.1144 3553 +3555 2 430.5833 568.7064 57.3804 0.1144 3554 +3556 2 431.4402 569.4638 57.3289 0.1144 3555 +3557 2 432.1574 570.3549 57.2824 0.1144 3556 +3558 2 432.9514 571.1786 57.2471 0.1144 3557 +3559 2 433.7522 571.9954 57.2292 0.1144 3558 +3560 2 434.5724 572.7928 57.2286 0.1144 3559 +3561 2 435.4361 573.5433 57.2348 0.1144 3560 +3562 2 436.2987 574.2949 57.2432 0.1144 3561 +3563 2 437.1407 575.0694 57.2552 0.1144 3562 +3564 2 437.6818 576.0772 57.272 0.1144 3563 +3565 2 438.0719 577.1526 57.2958 0.1144 3564 +3566 2 438.4025 578.2474 57.328 0.1144 3565 +3567 2 438.7251 579.3456 57.3726 0.1144 3566 +3568 2 439.1244 580.4164 57.4381 0.1144 3567 +3569 2 439.6609 581.4266 57.5333 0.1144 3568 +3570 2 439.4676 582.3086 57.7223 0.1144 3569 +3571 2 439.4173 583.44 57.993 0.1144 3570 +3572 2 439.4264 584.5691 58.427 0.1144 3571 +3573 2 439.4813 585.688 58.9898 0.1144 3572 +3574 2 440.1952 586.4464 59.8408 0.1144 3573 +3575 2 439.5328 586.88 60.5637 0.1144 3574 +3576 2 438.5867 587.5218 60.5144 0.1144 3575 +3577 2 437.6223 588.1338 60.4794 0.1144 3576 +3578 2 436.6408 588.7081 60.4206 0.1144 3577 +3579 2 435.7519 589.4277 60.3896 0.1144 3578 +3580 2 434.823 590.0946 60.3994 0.1144 3579 +3581 2 433.878 590.7364 60.4758 0.1144 3580 +3582 2 432.9216 591.3542 60.6603 0.1144 3581 +3583 2 432.0579 592.0955 60.9028 0.1144 3582 +3584 2 431.2857 592.9329 61.0649 0.1144 3583 +3585 2 431.0043 593.903 61.0621 0.1144 3584 +3586 2 431.6918 594.7336 60.8723 0.1144 3585 +3587 2 432.6608 595.3319 60.608 0.1144 3586 +3588 2 433.6092 595.9622 60.3512 0.1144 3587 +3589 2 434.5141 596.6555 60.1432 0.1144 3588 +3590 2 435.3114 597.4654 59.9897 0.1144 3589 +3591 2 435.9555 598.4047 59.8825 0.1144 3590 +3592 2 436.5698 599.3691 59.7993 0.1144 3591 +3593 2 437.1785 600.3369 59.7114 0.1144 3592 +3594 2 437.7093 601.347 59.5795 0.1144 3593 +3595 2 438.168 602.3915 59.3782 0.1144 3594 +3596 2 438.7366 603.3696 59.1452 0.1144 3595 +3597 2 439.28 604.3626 58.9039 0.1144 3596 +3598 2 439.6117 605.4494 58.6611 0.1144 3597 +3599 2 440.0991 606.4687 58.4623 0.1144 3598 +3600 2 440.6494 607.4697 58.3108 0.1144 3599 +3601 2 441.0932 608.5211 58.1879 0.1144 3600 +3602 2 441.3575 609.6284 58.074 0.1144 3601 +3603 2 441.4993 610.7622 57.9547 0.1144 3602 +3604 2 441.7865 611.8615 57.7889 0.1144 3603 +3605 2 442.1617 612.9369 57.5361 0.1144 3604 +3606 2 442.4752 614.0283 57.2118 0.1144 3605 +3607 2 442.8916 615.0819 56.875 0.1144 3606 +3608 2 443.3435 616.1264 56.597 0.1144 3607 +3609 2 443.713 617.2052 56.4032 0.1144 3608 +3610 2 444.0836 618.2862 56.289 0.1144 3609 +3611 2 444.6064 619.301 56.2705 0.1144 3610 +3612 2 445.4164 620.0915 56.315 0.1144 3611 +3613 2 446.2241 620.9003 56.3604 0.1144 3612 +3614 2 446.9345 621.796 56.3777 0.1144 3613 +3615 2 447.5053 622.7844 56.3539 0.1144 3614 +3616 2 447.9904 623.8198 56.2652 0.1144 3615 +3617 2 448.4594 624.8608 56.1151 0.1144 3616 +3618 2 448.9376 625.8984 55.9432 0.1144 3617 +3619 2 449.1905 627.007 55.769 0.1144 3618 +3620 2 449.3964 628.1269 55.5302 0.1144 3619 +3621 2 449.9123 629.1279 55.167 0.1144 3620 +3622 2 450.5015 630.1003 54.8512 0.1144 3621 +3623 2 451.0826 631.0807 54.6059 0.1144 3622 +3624 2 451.6649 632.0623 54.4163 0.1144 3623 +3625 2 452.3422 632.9821 54.2724 0.1144 3624 +3626 2 453.0675 633.8652 54.1677 0.1144 3625 +3627 2 453.7573 634.7759 54.0173 0.1144 3626 +3628 2 454.2744 635.7929 53.8636 0.1144 3627 +3629 2 454.7903 636.8122 53.7211 0.1144 3628 +3630 2 455.4138 637.7686 53.5346 0.1144 3629 +3631 2 456.1746 638.6186 53.3537 0.1144 3630 +3632 2 456.7958 639.5738 53.1334 0.1144 3631 +3633 2 457.012 640.6938 52.9614 0.1144 3632 +3634 2 457.6149 641.6627 52.834 0.1144 3633 +3635 2 458.4488 642.4441 52.7447 0.1144 3634 +3636 2 459.1581 643.3421 52.6868 0.1144 3635 +3637 2 459.8914 644.2196 52.6442 0.1144 3636 +3638 2 460.1019 645.343 52.6089 0.1144 3637 +3639 2 460.2278 646.4801 52.5664 0.1144 3638 +3640 2 460.8661 646.8794 52.4437 0.1144 3639 +3641 2 461.8236 647.5029 52.316 0.1144 3640 +3642 2 462.7308 648.195 52.1867 0.1144 3641 +3643 2 463.4744 649.0484 52.0654 0.1144 3642 +3644 2 463.9618 650.0723 51.9501 0.1144 3643 +3645 2 464.194 651.1842 51.8109 0.1144 3644 +3646 2 464.7225 652.1292 51.6138 0.1144 3645 +3647 2 465.5485 652.9151 51.3918 0.1144 3646 +3648 2 466.18 653.8521 51.1823 0.1144 3647 +3649 2 466.6914 654.8725 51.0006 0.1144 3648 +3650 2 467.1856 655.9021 50.8491 0.1144 3649 +3651 2 467.6798 656.9328 50.7262 0.1144 3650 +3652 2 468.174 657.9636 50.6257 0.1144 3651 +3653 2 468.6682 658.9943 50.5366 0.1144 3652 +3654 2 468.9908 660.0857 50.4549 0.1144 3653 +3655 2 469.183 661.2126 50.3773 0.1144 3654 +3656 2 469.3477 662.344 50.2984 0.1144 3655 +3657 2 469.4907 663.4788 50.2082 0.1144 3656 +3658 2 469.469 664.6182 50.0811 0.1144 3657 +3659 2 469.3523 665.7531 49.9097 0.1144 3658 +3660 2 469.5136 666.8708 49.6919 0.1144 3659 +3661 2 469.85 667.9576 49.4413 0.1144 3660 +3662 2 470.2103 669.0387 49.173 0.1144 3661 +3663 2 470.5695 670.1186 48.902 0.1144 3662 +3664 2 470.9299 671.1997 48.6427 0.1144 3663 +3665 2 471.3429 672.2613 48.4042 0.1144 3664 +3666 2 471.7456 673.3287 48.2056 0.1144 3665 +3667 2 472.0155 674.4372 48.0878 0.1144 3666 +3668 2 472.218 675.5629 48.0522 0.1144 3667 +3669 2 472.3519 676.6989 48.0488 0.1144 3668 +3670 2 472.4514 677.8383 48.0525 0.1144 3669 +3671 2 472.6413 678.9663 48.048 0.1144 3670 +3672 2 473.5451 679.5692 48.0102 0.1144 3671 +3673 2 474.5701 680.0771 47.9427 0.1144 3672 +3674 2 475.6432 680.4706 47.9405 0.1144 3673 +3675 2 476.77 680.6239 48.0474 0.1144 3674 +3676 2 477.6658 681.1914 47.5916 0.1144 3675 +3677 2 477.9083 682.2724 47.2629 0.1144 3676 +3678 2 478.6874 683.0229 47.0632 0.1144 3677 +3679 2 479.6243 683.6761 46.8986 0.1144 3678 +3680 2 480.0224 684.724 46.8266 0.1144 3679 +3681 2 480.3381 685.8234 46.8605 0.1144 3680 +3682 2 480.6539 686.9228 46.9336 0.1144 3681 +3683 2 480.9387 688.0302 46.9123 0.1144 3682 +3684 2 481.2019 689.1422 46.7698 0.1144 3683 +3685 2 481.4627 690.253 46.5438 0.1144 3684 +3686 2 481.6709 691.3741 46.3221 0.1144 3685 +3687 2 481.7842 692.5112 46.2162 0.1144 3686 +3688 2 481.8528 693.653 46.2039 0.1144 3687 +3689 2 481.8986 694.7958 46.2664 0.1144 3688 +3690 2 481.9443 695.933 46.5559 0.1144 3689 +3691 2 459.5562 647.0853 53.9804 0.1144 3639 +3692 2 458.6353 647.7236 54.4354 0.1144 3691 +3693 2 458.0748 648.2476 54.6353 0.1144 3692 +3694 2 458.8023 649.0736 54.871 0.1144 3693 +3695 2 458.7108 650.0402 55.1869 0.1144 3694 +3696 2 458.0038 650.8971 55.5475 0.1144 3695 +3697 2 457.7636 651.9748 55.9328 0.1144 3696 +3698 2 457.7533 653.1073 56.3156 0.1144 3697 +3699 2 457.3964 654.1278 56.7129 0.1144 3698 +3700 2 456.5555 654.8645 57.1004 0.1144 3699 +3701 2 455.6049 655.4777 57.5033 0.1144 3700 +3702 2 454.645 656.0703 57.9608 0.1144 3701 +3703 2 453.6841 656.6571 58.462 0.1144 3702 +3704 2 452.7334 657.2543 58.9988 0.1144 3703 +3705 2 451.785 657.8503 59.5661 0.1144 3704 +3706 2 450.839 658.4464 60.1586 0.1144 3705 +3707 2 449.894 659.0401 60.772 0.1144 3706 +3708 2 448.9502 659.6338 61.4079 0.1144 3707 +3709 2 447.9607 660.1177 62.1068 0.1144 3708 +3710 2 446.9082 660.1326 62.8978 0.1144 3709 +3711 2 445.8477 659.8901 63.7627 0.1144 3710 +3712 2 444.7941 659.6487 64.6797 0.1144 3711 +3713 2 443.745 659.4085 65.6256 0.1144 3712 +3714 2 442.696 659.1682 66.575 0.1144 3713 +3715 2 441.6435 658.9268 67.5016 0.1144 3714 +3716 2 440.5841 658.6843 68.3782 0.1144 3715 +3717 2 439.5168 658.4395 69.1863 0.1144 3716 +3718 2 438.4391 658.1924 69.9079 0.1144 3717 +3719 2 437.8317 657.3298 70.4679 0.1144 3718 +3720 2 437.7184 656.1961 70.6474 0.1144 3719 +3721 2 437.6132 655.0567 70.6115 0.1144 3720 +3722 2 437.5091 653.9196 70.427 0.1144 3721 +3723 2 437.4027 652.7858 70.1557 0.1144 3722 +3724 2 437.2986 651.6544 69.851 0.1144 3723 +3725 2 437.1933 650.5219 69.5545 0.1144 3724 +3726 2 437.0904 649.4053 68.9926 0.1144 3725 +3727 2 440.6276 586.2085 60.1538 0.1144 3574 +3728 2 441.5886 585.6548 60.8306 0.1144 3727 +3729 2 442.4969 585.013 61.453 0.1144 3728 +3730 2 443.3309 584.266 62.0192 0.1144 3729 +3731 2 444.1363 583.48 62.5254 0.1144 3730 +3732 2 445.0 583.1403 63.2447 0.1144 3731 +3733 2 445.9369 583.5315 64.5302 0.1144 3732 +3734 2 445.7585 583.3428 64.9936 0.1144 3733 +3735 2 444.9634 582.6152 65.8224 0.1144 3734 +3736 2 444.0962 581.8967 66.3146 0.1144 3735 +3737 2 443.3858 581.0159 66.5977 0.1144 3736 +3738 2 442.4226 580.421 66.7304 0.1144 3737 +3739 2 441.3609 580.4244 66.9214 0.1144 3738 +3740 2 441.1973 581.5146 67.3028 0.1144 3739 +3741 2 441.7556 582.4584 67.9762 0.1144 3740 +3742 2 442.5701 583.1712 68.8615 0.1144 3741 +3743 2 443.3744 583.7638 70.1582 0.1144 3742 +3744 2 443.9429 584.5428 71.5602 0.1144 3743 +3745 2 444.134 585.577 72.5614 0.1144 3744 +3746 2 444.198 586.6729 73.3452 0.1144 3745 +3747 2 444.9405 587.3204 74.0309 0.1144 3746 +3748 2 445.9678 587.6945 74.8462 0.1144 3747 +3749 2 445.6978 588.342 74.8798 0.1144 3748 +3750 2 445.2162 589.3774 75.0476 0.1144 3749 +3751 2 444.6957 590.3955 75.1304 0.1144 3750 +3752 2 444.174 591.4114 75.2674 0.1144 3751 +3753 2 443.6546 592.4273 75.4617 0.1144 3752 +3754 2 443.1398 593.4443 75.7154 0.1144 3753 +3755 2 442.9499 594.5562 76.0897 0.1144 3754 +3756 2 443.1478 595.6648 76.5806 0.1144 3755 +3757 2 443.3435 596.7653 77.1803 0.1144 3756 +3758 2 443.5357 597.8567 77.8733 0.1144 3757 +3759 2 443.697 598.9492 78.605 0.1144 3758 +3760 2 443.8411 600.0314 79.389 0.1144 3759 +3761 2 443.0792 600.5806 80.9332 0.1144 3760 +3762 2 442.5896 601.204 82.551 0.1144 3761 +3763 2 442.5324 602.1433 84.1422 0.1144 3762 +3764 2 442.9133 602.8319 85.9258 0.1144 3763 +3765 2 443.8079 602.9715 87.5188 0.1144 3764 +3766 2 444.7803 602.999 88.9935 0.1144 3765 +3767 2 445.7596 603.0287 90.4408 0.1144 3766 +3768 2 446.7377 603.0768 91.8845 0.1144 3767 +3769 2 447.6461 603.3467 93.4144 0.1144 3768 +3770 2 448.5201 603.7048 94.9934 0.1144 3769 +3771 2 449.3929 604.0606 96.5804 0.1144 3770 +3772 2 450.299 604.3169 98.1658 0.1144 3771 +3773 2 451.2485 604.0778 99.5646 0.1144 3772 +3774 2 452.2163 603.7872 100.8753 0.1144 3773 +3775 2 453.2013 603.4897 102.102 0.1144 3774 +3776 2 454.2023 603.1889 103.2419 0.1144 3775 +3777 2 455.2342 603.4337 104.2306 0.1144 3776 +3778 2 456.1517 604.0583 104.9132 0.1144 3777 +3779 2 457.0783 604.6909 105.4522 0.1144 3778 +3780 2 458.0118 605.3282 105.8809 0.1144 3779 +3781 2 458.9499 605.9676 106.2334 0.1144 3780 +3782 2 459.8891 606.6083 106.5428 0.1144 3781 +3783 2 460.8295 607.2489 106.8388 0.1144 3782 +3784 2 461.7687 607.8907 107.1342 0.1144 3783 +3785 2 462.708 608.5325 107.4276 0.1144 3784 +3786 2 463.6483 609.1731 107.718 0.1144 3785 +3787 2 464.5887 609.8138 108.0106 0.1144 3786 +3788 2 465.5279 610.4556 108.2976 0.1144 3787 +3789 2 466.4694 611.0962 108.5728 0.1144 3788 +3790 2 467.4098 611.7391 108.8318 0.1144 3789 +3791 2 468.3513 612.3809 109.0726 0.1144 3790 +3792 2 469.2837 613.017 109.5335 0.1144 3791 +3793 2 446.4266 588.3478 75.8596 0.1144 3748 +3794 2 447.2731 589.0456 76.4929 0.1144 3793 +3795 2 448.2627 589.5718 77.0342 0.1144 3794 +3796 2 448.8072 590.5053 77.4948 0.1144 3795 +3797 2 449.6343 591.2226 78.0895 0.1144 3796 +3798 2 450.5552 591.8541 78.7013 0.1144 3797 +3799 2 451.4819 592.5005 79.1101 0.1144 3798 +3800 2 452.5126 592.9718 79.4752 0.1144 3799 +3801 2 453.5834 593.3413 79.8697 0.1144 3800 +3802 2 454.6542 593.6971 80.3264 0.1144 3801 +3803 2 455.6907 594.0598 81.0995 0.1144 3802 +3804 2 456.6688 594.4327 82.224 0.1144 3803 +3805 2 457.5565 594.9521 83.3994 0.1144 3804 +3806 2 458.3436 595.6602 84.4472 0.1144 3805 +3807 2 459.0998 596.4278 85.3866 0.1144 3806 +3808 2 459.9315 597.12 86.2442 0.1144 3807 +3809 2 460.889 597.6553 87.0114 0.1144 3808 +3810 2 461.8889 598.1347 87.7103 0.1144 3809 +3811 2 462.843 598.693 88.3957 0.1144 3810 +3812 2 463.7124 599.3759 89.1024 0.1144 3811 +3813 2 464.5441 600.1024 89.8316 0.1144 3812 +3814 2 465.3746 600.8277 90.5778 0.1144 3813 +3815 2 466.2212 601.5312 91.3363 0.1144 3814 +3816 2 467.1684 602.0552 92.1141 0.1144 3815 +3817 2 468.2346 602.2966 92.8984 0.1144 3816 +3818 2 469.3249 602.451 93.6606 0.1144 3817 +3819 2 470.4048 602.6821 94.3634 0.1144 3818 +3820 2 471.471 603.0161 94.9704 0.1144 3819 +3821 2 472.5326 603.3834 95.4957 0.1144 3820 +3822 2 473.5291 603.8867 95.9756 0.1144 3821 +3823 2 474.3299 604.6612 96.4393 0.1144 3822 +3824 2 475.0094 605.5627 96.8968 0.1144 3823 +3825 2 475.7358 606.4241 97.3526 0.1144 3824 +3826 2 476.5641 607.186 97.8146 0.1144 3825 +3827 2 477.4713 607.8541 98.2898 0.1144 3826 +3828 2 478.4014 608.489 98.7815 0.1144 3827 +3829 2 479.3074 609.1503 99.3283 0.1144 3828 +3830 2 480.1677 609.8561 99.9709 0.1144 3829 +3831 2 481.0074 610.5734 100.6964 0.1144 3830 +3832 2 481.7853 611.3525 101.4423 0.1144 3831 +3833 2 482.4946 612.2002 102.1639 0.1144 3832 +3834 2 483.1512 613.0913 102.8622 0.1144 3833 +3835 2 483.3206 614.1015 103.581 0.1144 3834 +3836 2 482.9819 615.1494 104.2821 0.1144 3835 +3837 2 483.1306 616.1595 105.0017 0.1144 3836 +3838 2 483.8674 616.9649 105.6821 0.1144 3837 +3839 2 484.7117 617.6891 106.3297 0.1144 3838 +3840 2 485.5159 618.459 106.9768 0.1144 3839 +3841 2 486.2446 619.301 107.6074 0.1144 3840 +3842 2 486.9047 620.2024 108.206 0.1144 3841 +3843 2 487.5431 621.1222 108.7761 0.1144 3842 +3844 2 488.1814 622.0443 109.3252 0.1144 3843 +3845 2 488.8209 622.9675 109.8569 0.1144 3844 +3846 2 489.4764 623.8804 110.3738 0.1144 3845 +3847 2 490.1891 624.751 110.8811 0.1144 3846 +3848 2 490.9236 625.6044 111.3767 0.1144 3847 +3849 2 491.6615 626.4567 111.8552 0.1144 3848 +3850 2 492.3879 627.3204 112.308 0.1144 3849 +3851 2 492.961 628.2928 112.6796 0.1144 3850 +3852 2 493.469 629.311 112.9699 0.1144 3851 +3853 2 493.9712 630.3348 113.2062 0.1144 3852 +3854 2 494.4734 631.3587 113.4148 0.1144 3853 +3855 2 494.732 632.4593 113.671 0.1144 3854 +3856 2 494.7285 633.5895 114.0233 0.1144 3855 +3857 2 494.6576 634.7175 114.459 0.1144 3856 +3858 2 494.5844 635.8421 114.9389 0.1144 3857 +3859 2 494.7102 636.9609 115.3846 0.1144 3858 +3860 2 495.2799 637.9299 115.691 0.1144 3859 +3861 2 495.924 638.8725 115.8665 0.1144 3860 +3862 2 496.5692 639.8163 115.9486 0.1144 3861 +3863 2 497.2144 640.7613 115.981 0.1144 3862 +3864 2 497.8619 641.7039 116.004 0.1144 3863 +3865 2 498.5975 642.5779 116.1068 0.1144 3864 +3866 2 499.4349 643.349 116.3638 0.1144 3865 +3867 2 500.2804 644.1029 116.741 0.1144 3866 +3868 2 501.1223 644.8556 117.1876 0.1144 3867 +3869 2 501.9655 645.6061 117.6546 0.1144 3868 +3870 2 502.8074 646.3577 118.0967 0.1144 3869 +3871 2 503.654 647.1128 118.4708 0.1144 3870 +3872 2 503.9629 647.1379 119.7249 0.1144 3871 +3873 2 504.9502 647.2214 121.0236 0.1144 3872 +3874 2 506.0564 647.3141 121.6572 0.1144 3873 +3875 2 507.1695 647.4079 122.2665 0.1144 3874 +3876 2 508.2769 647.4994 122.9284 0.1144 3875 +3877 2 509.3877 647.5578 123.5844 0.1144 3876 +3878 2 510.5043 647.4685 124.1397 0.1144 3877 +3879 2 511.6277 647.3599 124.5989 0.1144 3878 +3880 2 512.7557 647.2489 124.9872 0.1144 3879 +3881 2 513.8848 647.1368 125.3286 0.1144 3880 +3882 2 515.0162 647.0258 125.6478 0.1144 3881 +3883 2 516.1476 646.9148 125.9684 0.1144 3882 +3884 2 517.2768 646.8027 126.3125 0.1144 3883 +3885 2 518.4047 646.6918 126.6916 0.1144 3884 +3886 2 519.5201 646.5076 127.1211 0.1144 3885 +3887 2 520.5772 646.1278 127.6288 0.1144 3886 +3888 2 521.6491 645.8155 128.2305 0.1144 3887 +3889 2 522.6627 646.1506 129.0677 0.1144 3888 +3890 2 523.6568 646.551 130.0253 0.1144 3889 +3891 2 524.7448 646.6254 130.8616 0.1144 3890 +3892 2 525.8499 646.6117 131.5916 0.1144 3891 +3893 2 526.9619 646.598 132.2406 0.1144 3892 +3894 2 528.0292 646.5854 133.247 0.1144 3893 +3895 2 502.4288 647.4136 118.5884 0.1144 3871 +3896 2 501.3202 647.6848 118.4235 0.1144 3895 +3897 2 500.2163 647.9559 118.0987 0.1144 3896 +3898 2 499.1352 648.2648 117.6098 0.1144 3897 +3899 2 498.1125 648.68 116.8972 0.1144 3898 +3900 2 497.1572 649.1754 115.957 0.1144 3899 +3901 2 496.2306 649.6822 114.8832 0.1144 3900 +3902 2 495.312 650.1844 113.7553 0.1144 3901 +3903 2 494.391 650.6855 112.6322 0.1144 3902 +3904 2 493.4518 651.1808 111.5904 0.1144 3903 +3905 2 492.4222 651.5618 110.8136 0.1144 3904 +3906 2 491.3331 651.8546 110.3452 0.1144 3905 +3907 2 490.2315 652.1486 110.0999 0.1144 3906 +3908 2 489.1275 652.4449 110.0406 0.1144 3907 +3909 2 488.0224 652.7412 110.1338 0.1144 3908 +3910 2 486.9207 653.0364 110.3514 0.1144 3909 +3911 2 485.8236 653.3304 110.672 0.1144 3910 +3912 2 484.7311 653.6233 111.0914 0.1144 3911 +3913 2 483.7015 654.0351 111.7668 0.1144 3912 +3914 2 483.0197 654.7135 113.2561 0.1144 3913 +3915 2 482.4912 655.385 115.1161 0.1144 3914 +3916 2 482.5266 656.2522 116.7905 0.1144 3915 +3917 2 483.1135 657.109 117.9172 0.1144 3916 +3918 2 483.7724 657.9716 118.7978 0.1144 3917 +3919 2 484.4497 658.8513 119.4738 0.1144 3918 +3920 2 485.1349 659.7425 119.9867 0.1144 3919 +3921 2 485.8248 660.6394 120.3941 0.1144 3920 +3922 2 486.5157 661.5386 120.755 0.1144 3921 +3923 2 487.2079 662.4378 121.1092 0.1144 3922 +3924 2 487.8988 663.3381 121.4685 0.1144 3923 +3925 2 488.591 664.2373 121.8358 0.1144 3924 +3926 2 489.2408 665.1651 122.2124 0.1144 3925 +3927 2 489.8562 666.1157 122.6028 0.1144 3926 +3928 2 490.4603 667.0721 123.0149 0.1144 3927 +3929 2 491.0643 668.0274 123.4624 0.1144 3928 +3930 2 491.666 668.9792 123.9599 0.1144 3929 +3931 2 492.2643 669.9264 124.5199 0.1144 3930 +3932 2 492.8581 670.8656 125.179 0.1144 3931 +3933 2 493.3168 671.8518 126.0132 0.1144 3932 +3934 2 493.2196 672.8024 127.3331 0.1144 3933 +3935 2 492.9485 673.6936 128.9571 0.1144 3934 +3936 2 492.7094 674.4772 130.8485 0.1144 3935 +3937 2 492.5378 675.0424 133.247 0.1144 3936 +3938 2 446.049 583.4915 64.8707 0.1144 3733 +3939 2 446.9036 583.1837 66.0618 0.1144 3938 +3940 2 447.979 582.7959 65.9498 0.1144 3939 +3941 2 449.0555 582.4093 65.8832 0.1144 3940 +3942 2 450.1308 582.0214 65.8143 0.1144 3941 +3943 2 451.2073 581.6348 65.7544 0.1144 3942 +3944 2 452.2838 581.247 65.7143 0.1144 3943 +3945 2 453.3592 580.8591 65.7051 0.1144 3944 +3946 2 454.406 580.4061 65.7488 0.1144 3945 +3947 2 455.3555 579.7803 65.8865 0.1144 3946 +3948 2 456.21 579.0276 66.1352 0.1144 3947 +3949 2 457.0589 578.2748 66.4698 0.1144 3948 +3950 2 457.9718 577.6079 66.8503 0.1144 3949 +3951 2 458.9476 577.0325 67.2459 0.1144 3950 +3952 2 459.9349 576.4788 67.6505 0.1144 3951 +3953 2 460.9222 575.9262 68.07 0.1144 3952 +3954 2 461.9072 575.3737 68.5157 0.1144 3953 +3955 2 462.8899 574.8234 69.0024 0.1144 3954 +3956 2 463.7364 574.1324 69.6007 0.1144 3955 +3957 2 464.3885 573.2664 70.471 0.1144 3956 +3958 2 465.1229 572.5091 71.5302 0.1144 3957 +3959 2 465.9089 571.8101 72.6331 0.1144 3958 +3960 2 466.7337 571.1557 73.7262 0.1144 3959 +3961 2 467.6683 570.6386 74.6981 0.1144 3960 +3962 2 468.6499 570.1696 75.5574 0.1144 3961 +3963 2 469.6429 569.6983 76.3342 0.1144 3962 +3964 2 470.6782 569.3208 77.0638 0.1144 3963 +3965 2 471.765 569.2258 77.7862 0.1144 3964 +3966 2 472.8381 569.0473 78.5498 0.1144 3965 +3967 2 473.8574 568.6595 79.3741 0.1144 3966 +3968 2 474.855 568.2271 80.2435 0.1144 3967 +3969 2 475.6946 568.5783 81.2638 0.1144 3968 +3970 2 476.4794 569.3242 82.1696 0.1144 3969 +3971 2 477.2654 570.0724 83.0558 0.1144 3970 +3972 2 478.0524 570.8194 83.9376 0.1144 3971 +3973 2 478.8395 571.5687 84.8098 0.1144 3972 +3974 2 479.6289 572.3203 85.6671 0.1144 3973 +3975 2 480.4205 573.0719 86.5038 0.1144 3974 +3976 2 481.2144 573.827 87.3088 0.1144 3975 +3977 2 482.2475 574.2033 88.032 0.1144 3976 +3978 2 483.3377 574.4413 88.6469 0.1144 3977 +3979 2 484.436 574.6758 89.1859 0.1144 3978 +3980 2 485.5376 574.9115 89.6594 0.1144 3979 +3981 2 486.669 574.8589 90.0343 0.1144 3980 +3982 2 487.7844 574.6289 90.2986 0.1144 3981 +3983 2 488.9021 574.3978 90.5022 0.1144 3982 +3984 2 490.0198 574.1656 90.6744 0.1144 3983 +3985 2 491.1375 573.9334 90.8404 0.1144 3984 +3986 2 492.2518 573.6897 91.0619 0.1144 3985 +3987 2 493.3603 573.4392 91.3847 0.1144 3986 +3988 2 494.4643 573.1875 91.7913 0.1144 3987 +3989 2 495.5636 572.9369 92.2592 0.1144 3988 +3990 2 496.6607 572.6875 92.7685 0.1144 3989 +3991 2 497.7555 572.4382 93.3036 0.1144 3990 +3992 2 498.8492 572.1888 93.8493 0.1144 3991 +3993 2 499.944 571.9417 94.3986 0.1144 3992 +3994 2 501.0388 571.7048 94.9536 0.1144 3993 +3995 2 502.1302 571.9542 95.5298 0.1144 3994 +3996 2 503.2204 572.2036 96.1271 0.1144 3995 +3997 2 504.3095 572.4519 96.7271 0.1144 3996 +3998 2 505.3998 572.7013 97.3126 0.1144 3997 +3999 2 506.4934 572.9518 97.8704 0.1144 3998 +4000 2 507.5871 573.2023 98.406 0.1144 3999 +4001 2 508.6338 573.4414 99.3706 0.1144 4000 +4002 2 440.0922 582.0397 56.9876 0.1144 3569 +4003 2 440.5979 583.043 56.6418 0.1144 4002 +4004 2 441.0509 584.0829 56.39 0.1144 4003 +4005 2 441.7567 584.9466 55.9572 0.1144 4004 +4006 2 442.5335 585.76 55.4683 0.1144 4005 +4007 2 443.2165 586.6592 55.0416 0.1144 4006 +4008 2 443.6363 587.69 54.6073 0.1144 4007 +4009 2 444.2655 588.5754 54.0772 0.1144 4008 +4010 2 445.3203 588.5674 53.5646 0.1144 4009 +4011 2 446.4586 588.5411 53.3568 0.1144 4010 +4012 2 447.5877 588.7241 53.3406 0.1144 4011 +4013 2 448.6802 589.0628 53.3369 0.1144 4012 +4014 2 449.7739 589.4002 53.3288 0.1144 4013 +4015 2 450.8664 589.7377 53.2874 0.1144 4014 +4016 2 451.3046 590.6289 52.934 0.1144 4015 +4017 2 451.8045 591.6436 52.5168 0.1144 4016 +4018 2 452.3021 592.6549 52.0355 0.1144 4017 +4019 2 452.7986 593.6628 51.5133 0.1144 4018 +4020 2 453.4324 594.5963 51.0591 0.1144 4019 +4021 2 454.2023 595.4291 50.7198 0.1144 4020 +4022 2 455.0306 596.207 50.3916 0.1144 4021 +4023 2 456.003 596.787 50.022 0.1144 4022 +4024 2 457.1127 597.0204 49.6782 0.1144 4023 +4025 2 458.2418 597.0467 49.2492 0.1144 4024 +4026 2 457.4879 596.4473 48.9493 0.1144 4025 +4027 2 456.4377 596.0377 48.6016 0.1144 4026 +4028 2 455.3063 596.0103 48.3008 0.1144 4027 +4029 2 454.2881 596.4953 47.997 0.1144 4028 +4030 2 453.699 597.4677 47.7383 0.1144 4029 +4031 2 453.1704 597.1566 47.8164 0.1144 4030 +4032 2 452.1431 596.6658 47.9335 0.1144 4031 +4033 2 451.0861 596.2345 48.0404 0.1144 4032 +4034 2 450.069 595.7163 48.2073 0.1144 4033 +4035 2 449.0669 595.1717 48.4145 0.1144 4034 +4036 2 448.0888 594.5871 48.61 0.1144 4035 +4037 2 447.1919 593.8859 48.7749 0.1144 4036 +4038 2 446.4243 593.0462 48.9342 0.1144 4037 +4039 2 445.8637 592.0612 49.0633 0.1144 4038 +4040 2 445.4313 591.003 49.1296 0.1144 4039 +4041 2 444.9874 589.9482 49.1478 0.1144 4040 +4042 2 444.5241 588.9026 49.1305 0.1144 4041 +4043 2 443.9704 587.9062 49.0669 0.1144 4042 +4044 2 443.165 587.1283 48.9177 0.1144 4043 +4045 2 442.2407 586.4613 48.7337 0.1144 4044 +4046 2 441.4307 585.6639 48.594 0.1144 4045 +4047 2 440.6082 584.8757 48.524 0.1144 4046 +4048 2 439.6026 584.3724 48.5108 0.1144 4047 +4049 2 438.4986 584.0749 48.5136 0.1144 4048 +4050 2 437.4038 583.7477 48.5044 0.1144 4049 +4051 2 436.2896 583.5166 48.4487 0.1144 4050 +4052 2 435.1524 583.5304 48.3428 0.1144 4051 +4053 2 434.0405 583.7706 48.2196 0.1144 4052 +4054 2 432.9148 583.8587 48.0043 0.1144 4053 +4055 2 432.4217 583.0202 47.6753 0.1144 4054 +4056 2 432.4217 581.8842 47.3889 0.1144 4055 +4057 2 431.4413 581.3373 47.2374 0.1144 4056 +4058 2 430.303 581.2309 47.117 0.1144 4057 +4059 2 454.1428 598.2548 47.4068 0.1144 4030 +4060 2 454.8796 599.1117 47.1674 0.1144 4059 +4061 2 455.8062 599.7626 46.9216 0.1144 4060 +4062 2 456.8644 600.1596 46.6704 0.1144 4061 +4063 2 457.9695 600.4273 46.3744 0.1144 4062 +4064 2 459.0632 600.7236 45.9976 0.1144 4063 +4065 2 460.1614 600.9798 45.5423 0.1144 4064 +4066 2 461.2642 601.204 45.0422 0.1144 4065 +4067 2 462.3693 601.3333 44.431 0.1144 4066 +4068 2 462.7572 600.6217 43.6215 0.1144 4067 +4069 2 462.9471 599.5601 42.7067 0.1144 4068 +4070 2 463.8394 598.9469 41.9202 0.1144 4069 +4071 2 464.893 598.6152 41.2079 0.1144 4070 +4072 2 465.9878 598.4516 40.5093 0.1144 4071 +4073 2 467.1021 598.4275 39.8793 0.1144 4072 +4074 2 468.2209 598.4962 39.321 0.1144 4073 +4075 2 469.334 598.6552 38.8105 0.1144 4074 +4076 2 470.4494 598.7913 38.2841 0.1144 4075 +4077 2 471.5717 598.6369 37.8983 0.1144 4076 +4078 2 472.71 598.614 37.6146 0.1144 4077 +4079 2 473.8334 598.8085 37.4018 0.1144 4078 +4080 2 474.9064 599.1963 37.2218 0.1144 4079 +4081 2 475.9806 599.5796 37.0087 0.1144 4080 +4082 2 477.0549 599.9605 36.7606 0.1144 4081 +4083 2 478.0913 600.433 36.5156 0.1144 4082 +4084 2 479.1838 600.7613 36.2869 0.1144 4083 +4085 2 480.297 601.0073 36.0609 0.1144 4084 +4086 2 481.4055 601.2715 35.8246 0.1144 4085 +4087 2 482.5358 601.4031 35.5379 0.1144 4086 +4088 2 483.6683 601.3859 35.1417 0.1144 4087 +4089 2 483.8296 601.3528 35.0154 0.1144 4088 +4090 2 484.8341 601.5141 34.102 0.1144 4089 +4091 2 484.5927 602.356 33.1218 0.1144 4090 +4092 2 484.023 602.443 31.8906 0.1144 4091 +4093 2 483.221 602.618 29.953 0.1144 4092 +4094 2 482.7955 602.7084 27.8699 0.1144 4093 +4095 2 483.0403 602.2645 25.7201 0.1144 4094 +4096 2 483.9658 602.6981 24.465 0.1144 4095 +4097 2 484.9439 603.0813 23.3558 0.1144 4096 +4098 2 485.9003 603.508 22.3465 0.1144 4097 +4099 2 486.383 604.4507 21.3863 0.1144 4098 +4100 2 487.2216 604.5056 20.1769 0.1144 4099 +4101 2 487.5739 603.5973 19.21 0.1144 4100 +4102 2 486.9802 603.0218 18.1882 0.1144 4101 +4103 2 487.6369 602.7393 17.2654 0.1144 4102 +4104 2 488.7477 602.5883 16.7176 0.1144 4103 +4105 2 489.7556 602.0689 16.3484 0.1144 4104 +4106 2 490.6719 601.4363 15.7058 0.1144 4105 +4107 2 484.7711 602.5402 32.9333 0.1144 4091 +4108 2 485.5491 603.3479 32.4405 0.1144 4107 +4109 2 486.3407 604.1693 32.2955 0.1144 4108 +4110 2 487.1346 604.993 32.3302 0.1144 4109 +4111 2 487.9343 605.8086 32.4503 0.1144 4110 +4112 2 488.7374 606.622 32.5788 0.1144 4111 +4113 2 489.5416 607.4354 32.6721 0.1144 4112 +4114 2 490.1697 608.3746 32.7225 0.1144 4113 +4115 2 490.5575 609.4466 32.7421 0.1144 4114 +4116 2 490.8721 610.5459 32.7457 0.1144 4115 +4117 2 491.1867 611.6465 32.7449 0.1144 4116 +4118 2 491.5013 612.7458 32.744 0.1144 4117 +4119 2 491.817 613.8452 32.7429 0.1144 4118 +4120 2 492.1316 614.9458 32.7412 0.1144 4119 +4121 2 492.4462 616.0451 32.7387 0.1144 4120 +4122 2 492.7608 617.1457 32.7356 0.1144 4121 +4123 2 493.0766 618.2451 32.7312 0.1144 4122 +4124 2 493.3912 619.3444 32.7239 0.1144 4123 +4125 2 493.8259 620.3981 32.7155 0.1144 4124 +4126 2 494.4036 621.383 32.7054 0.1144 4125 +4127 2 495.0237 622.3452 32.6875 0.1144 4126 +4128 2 495.6426 623.3073 32.653 0.1144 4127 +4129 2 496.2626 624.2682 32.594 0.1144 4128 +4130 2 497.0405 625.0908 32.473 0.1144 4129 +4131 2 497.9958 625.7039 32.2605 0.1144 4130 +4132 2 498.9922 626.2542 31.9654 0.1144 4131 +4133 2 499.9852 626.8033 31.6061 0.1144 4132 +4134 2 500.9759 627.3502 31.201 0.1144 4133 +4135 2 501.962 627.9004 30.7647 0.1144 4134 +4136 2 502.9436 628.4587 30.3097 0.1144 4135 +4137 2 503.9217 629.0204 29.8413 0.1144 4136 +4138 2 504.8998 629.5798 29.3569 0.1144 4137 +4139 2 505.8757 630.1404 28.8512 0.1144 4138 +4140 2 506.8492 630.6986 28.3189 0.1144 4139 +4141 2 507.8216 631.2558 27.7554 0.1144 4140 +4142 2 508.5881 632.0348 27.1037 0.1144 4141 +4143 2 509.2138 632.9432 26.3639 0.1144 4142 +4144 2 509.3397 633.9751 25.4893 0.1144 4143 +4145 2 509.2356 635.0447 24.5288 0.1144 4144 +4146 2 509.1212 636.1098 23.5472 0.1144 4145 +4147 2 509.0068 637.1783 22.588 0.1144 4146 +4148 2 508.8466 638.2536 21.7162 0.1144 4147 +4149 2 508.2964 639.2329 21.1972 0.1144 4148 +4150 2 507.7358 640.2224 20.9109 0.1144 4149 +4151 2 507.1718 641.2166 20.8115 0.1144 4150 +4152 2 506.6078 642.2119 20.8492 0.1144 4151 +4153 2 505.8482 643.0653 20.9886 0.1144 4152 +4154 2 504.9147 643.7208 21.1878 0.1144 4153 +4155 2 503.9812 644.3763 21.4059 0.1144 4154 +4156 2 503.0477 645.0307 21.6418 0.1144 4155 +4157 2 502.1268 645.7022 21.8848 0.1144 4156 +4158 2 501.3237 646.5099 22.1268 0.1144 4157 +4159 2 500.5194 647.3187 22.3589 0.1144 4158 +4160 2 499.7152 648.1275 22.5765 0.1144 4159 +4161 2 498.9178 648.9294 22.9975 0.1144 4160 +4162 2 484.357 601.6925 35.6482 0.1144 4088 +4163 2 485.4003 602.1581 35.6737 0.1144 4162 +4164 2 486.446 602.6226 35.6787 0.1144 4163 +4165 2 487.5534 602.904 35.6661 0.1144 4164 +4166 2 488.6928 603.0047 35.6208 0.1144 4165 +4167 2 489.8322 603.0996 35.548 0.1144 4166 +4168 2 490.9716 603.1957 35.4528 0.1144 4167 +4169 2 492.111 603.2907 35.3433 0.1144 4168 +4170 2 493.2299 603.5206 35.1926 0.1144 4169 +4171 2 494.3098 603.8913 35.0356 0.1144 4170 +4172 2 495.392 604.2619 34.921 0.1144 4171 +4173 2 496.472 604.6326 34.7768 0.1144 4172 +4174 2 458.3344 597.1142 48.9829 0.1144 4025 +4175 2 459.2943 597.6759 48.704 0.1144 4174 +4176 2 460.3044 598.2113 48.6567 0.1144 4175 +4177 2 461.1075 599.019 48.5974 0.1144 4176 +4178 2 461.7973 599.9308 48.5164 0.1144 4177 +4179 2 462.3693 600.9192 48.4058 0.1144 4178 +4180 2 462.8853 601.9385 48.2566 0.1144 4179 +4181 2 463.1942 603.0344 48.0197 0.1144 4180 +4182 2 463.4252 604.1464 47.6806 0.1144 4181 +4183 2 463.6735 605.2492 47.2598 0.1144 4182 +4184 2 463.9229 606.3486 46.7858 0.1144 4183 +4185 2 464.1711 607.4468 46.2829 0.1144 4184 +4186 2 462.9917 607.8392 46.1045 0.1144 4185 +4187 2 461.906 608.1984 46.1462 0.1144 4186 +4188 2 460.8204 608.5588 46.1902 0.1144 4187 +4189 2 459.7347 608.9192 46.2266 0.1144 4188 +4190 2 458.5918 608.9466 46.2056 0.1144 4189 +4191 2 457.4478 608.9741 46.1353 0.1144 4190 +4192 2 456.305 609.0004 46.0256 0.1144 4191 +4193 2 455.1633 609.0278 45.8881 0.1144 4192 +4194 2 454.0216 609.0542 45.7318 0.1144 4193 +4195 2 452.8787 609.0805 45.57 0.1144 4194 +4196 2 451.737 609.1079 45.4149 0.1144 4195 +4197 2 450.5953 609.1342 45.269 0.1144 4196 +4198 2 449.4524 609.1617 45.1343 0.1144 4197 +4199 2 448.3142 609.188 44.8731 0.1144 4198 +4200 2 464.3862 607.8072 45.8223 0.1144 4185 +4201 2 464.9662 608.7773 45.3967 0.1144 4200 +4202 2 465.5462 609.7486 44.9848 0.1144 4201 +4203 2 466.1274 610.7198 44.5819 0.1144 4202 +4204 2 466.7085 611.6922 44.1846 0.1144 4203 +4205 2 467.2897 612.6646 43.7898 0.1144 4204 +4206 2 467.8708 613.637 43.3972 0.1144 4205 +4207 2 468.452 614.6106 43.0189 0.1144 4206 +4208 2 469.0331 615.5841 42.6594 0.1144 4207 +4209 2 469.6166 616.5588 42.3242 0.1144 4208 +4210 2 470.2023 617.5335 42.0202 0.1144 4209 +4211 2 470.8212 618.491 41.7973 0.1144 4210 +4212 2 471.4493 619.4451 41.6506 0.1144 4211 +4213 2 472.0785 620.4004 41.5624 0.1144 4212 +4214 2 472.7088 621.3544 41.5162 0.1144 4213 +4215 2 473.338 622.3097 41.4963 0.1144 4214 +4216 2 473.9672 623.2649 41.4884 0.1144 4215 +4217 2 474.5964 624.2213 41.4809 0.1144 4216 +4218 2 475.2256 625.1766 41.47 0.1144 4217 +4219 2 475.8548 626.1318 41.4551 0.1144 4218 +4220 2 476.484 627.087 41.4347 0.1144 4219 +4221 2 477.1132 628.0423 41.4053 0.1144 4220 +4222 2 477.7424 628.9975 41.3638 0.1144 4221 +4223 2 478.3716 629.9528 41.3059 0.1144 4222 +4224 2 479.0008 630.908 41.2283 0.1144 4223 +4225 2 479.6414 631.8529 41.1253 0.1144 4224 +4226 2 480.4468 632.6629 40.9483 0.1144 4225 +4227 2 481.2854 633.4339 40.7064 0.1144 4226 +4228 2 482.1239 634.2039 40.4228 0.1144 4227 +4229 2 482.9613 634.9726 40.1195 0.1144 4228 +4230 2 483.7999 635.7414 39.8174 0.1144 4229 +4231 2 484.6327 636.517 39.536 0.1144 4230 +4232 2 485.3363 637.3819 39.3103 0.1144 4231 +4233 2 485.4827 638.5144 39.228 0.1144 4232 +4234 2 485.4278 639.655 39.2202 0.1144 4233 +4235 2 485.2448 640.7841 39.2451 0.1144 4234 +4236 2 485.0617 641.9133 39.2902 0.1144 4235 +4237 2 484.8798 643.0435 39.3453 0.1144 4236 +4238 2 484.6979 644.1727 39.4022 0.1144 4237 +4239 2 484.516 645.3018 39.4626 0.1144 4238 +4240 2 484.3341 646.4298 39.5436 0.1144 4239 +4241 2 484.1522 647.5589 39.6553 0.1144 4240 +4242 2 483.9703 648.6869 39.8012 0.1144 4241 +4243 2 483.8148 649.8149 40.0056 0.1144 4242 +4244 2 483.8308 650.9463 40.397 0.1144 4243 +4245 2 483.9189 652.0686 40.8951 0.1144 4244 +4246 2 483.9772 653.1943 41.3672 0.1144 4245 +4247 2 484.0378 654.3211 41.8328 0.1144 4246 +4248 2 484.1271 655.4456 42.2904 0.1144 4247 +4249 2 484.2724 656.5645 42.7434 0.1144 4248 +4250 2 484.2403 657.6662 43.1953 0.1144 4249 +4251 2 483.7598 658.6797 43.668 0.1144 4250 +4252 2 483.1295 659.6155 44.128 0.1144 4251 +4253 2 482.5072 660.5616 44.5248 0.1144 4252 +4254 2 481.878 661.5077 44.8456 0.1144 4253 +4255 2 481.2465 662.4561 45.103 0.1144 4254 +4256 2 480.6138 663.4056 45.318 0.1144 4255 +4257 2 479.9824 664.3551 45.512 0.1144 4256 +4258 2 479.3612 665.3126 45.7092 0.1144 4257 +4259 2 478.867 666.3262 45.9494 0.1144 4258 +4260 2 478.6347 667.4371 46.2815 0.1144 4259 +4261 2 478.3647 668.525 46.6816 0.1144 4260 +4262 2 477.7962 669.4928 47.0806 0.1144 4261 +4263 2 477.0755 670.3703 47.4362 0.1144 4262 +4264 2 476.3536 671.2489 47.726 0.1144 4263 +4265 2 475.6294 672.1309 47.9217 0.1144 4264 +4266 2 474.9041 673.0152 48.001 0.1144 4265 +4267 2 474.172 673.8926 47.9388 0.1144 4266 +4268 2 473.3826 674.6957 47.5667 0.1144 4267 +4269 2 472.5521 675.405 46.7466 0.1144 4268 +4270 2 471.7936 676.1269 45.6324 0.1144 4269 +4271 2 471.5225 677.073 44.3699 0.1144 4270 +4272 2 471.3818 678.0717 43.048 0.1144 4271 +4273 2 471.2399 679.0715 41.7295 0.1144 4272 +4274 2 471.0981 680.084 40.4746 0.1144 4273 +4275 2 470.3178 680.7978 39.4503 0.1144 4274 +4276 2 469.3329 681.3069 38.7587 0.1144 4275 +4277 2 468.3353 681.8251 38.2427 0.1144 4276 +4278 2 467.348 682.3365 37.5813 0.1144 4277 +4279 2 451.0758 589.724 53.5052 0.1144 4015 +4280 2 452.1912 589.6496 53.5038 0.1144 4279 +4281 2 453.3272 589.5329 53.3313 0.1144 4280 +4282 2 454.4551 589.3568 53.1821 0.1144 4281 +4283 2 455.5454 589.0239 53.0326 0.1144 4282 +4284 2 456.4732 588.3764 52.9099 0.1144 4283 +4285 2 457.1252 587.4497 52.8237 0.1144 4284 +4286 2 457.5153 586.3801 52.7755 0.1144 4285 +4287 2 457.2316 585.3139 52.7624 0.1144 4286 +4288 2 457.8277 584.4582 52.7845 0.1144 4287 +4289 2 458.1068 583.3679 52.6935 0.1144 4288 +4290 2 458.3825 583.2867 52.7089 0.1144 4289 +4291 2 459.4784 582.963 52.8674 0.1144 4290 +4292 2 460.5698 582.6415 53.1532 0.1144 4291 +4293 2 461.6555 582.3212 53.543 0.1144 4292 +4294 2 462.7377 582.0008 54.0081 0.1144 4293 +4295 2 463.8165 581.6828 54.5216 0.1144 4294 +4296 2 464.8941 581.3636 55.0388 0.1144 4295 +4297 2 465.9741 581.0456 55.5436 0.1144 4296 +4298 2 467.054 580.7276 56.0316 0.1144 4297 +4299 2 468.0196 580.151 56.4718 0.1144 4298 +4300 2 468.9405 579.4921 56.8613 0.1144 4299 +4301 2 469.8591 578.8251 57.2135 0.1144 4300 +4302 2 470.7789 578.1582 57.5386 0.1144 4301 +4303 2 471.6987 577.4901 57.846 0.1144 4302 +4304 2 472.6196 576.822 58.1451 0.1144 4303 +4305 2 473.5394 576.1539 58.4438 0.1144 4304 +4306 2 474.4603 575.4858 58.7443 0.1144 4305 +4307 2 475.38 574.8165 59.047 0.1144 4306 +4308 2 476.301 574.1496 59.3538 0.1144 4307 +4309 2 477.2207 573.4815 59.67 0.1144 4308 +4310 2 478.1645 572.8488 59.9956 0.1144 4309 +4311 2 479.1678 572.3157 60.3154 0.1144 4310 +4312 2 480.1791 571.7998 60.6494 0.1144 4311 +4313 2 481.1916 571.2896 61.0226 0.1144 4312 +4314 2 482.2841 571.1271 61.6258 0.1144 4313 +4315 2 483.3755 571.0356 62.4344 0.1144 4314 +4316 2 484.4474 570.9464 63.3889 0.1144 4315 +4317 2 485.5033 570.8571 64.4414 0.1144 4316 +4318 2 486.5512 570.7691 65.5483 0.1144 4317 +4319 2 487.5945 570.6821 66.6772 0.1144 4318 +4320 2 488.639 570.5952 67.7958 0.1144 4319 +4321 2 489.6869 570.5071 68.8999 0.1144 4320 +4322 2 490.7371 570.419 69.9868 0.1144 4321 +4323 2 491.7919 570.3309 71.0503 0.1144 4322 +4324 2 492.8558 570.2531 72.06 0.1144 4323 +4325 2 493.938 570.2051 72.9596 0.1144 4324 +4326 2 495.0282 570.1559 73.7988 0.1144 4325 +4327 2 496.1253 570.1078 74.5881 0.1144 4326 +4328 2 497.2259 570.0586 75.346 0.1144 4327 +4329 2 498.3264 570.0094 76.0934 0.1144 4328 +4330 2 499.4269 569.9602 76.8519 0.1144 4329 +4331 2 500.3227 570.3835 77.8369 0.1144 4330 +4332 2 501.3134 570.8503 78.6338 0.1144 4331 +4333 2 502.2618 571.2919 79.7577 0.1144 4332 +4334 2 503.177 571.7174 81.0729 0.1144 4333 +4335 2 504.0704 572.1327 82.4933 0.1144 4334 +4336 2 504.9536 572.5434 83.9636 0.1144 4335 +4337 2 505.8368 572.9552 85.4311 0.1144 4336 +4338 2 506.8538 573.1886 86.564 0.1144 4337 +4339 2 507.9154 573.3842 87.4922 0.1144 4338 +4340 2 508.9919 573.5879 88.2997 0.1144 4339 +4341 2 510.0558 573.8464 89.108 0.1144 4340 +4342 2 511.1186 574.1164 89.9038 0.1144 4341 +4343 2 512.1848 574.3864 90.6786 0.1144 4342 +4344 2 513.2533 574.6575 91.4248 0.1144 4343 +4345 2 514.3447 574.9321 91.9293 0.1144 4344 +4346 2 515.4464 575.2078 92.2695 0.1144 4345 +4347 2 516.5526 575.4858 92.468 0.1144 4346 +4348 2 517.6943 575.5075 92.566 0.1144 4347 +4349 2 518.8097 575.2535 92.5952 0.1144 4348 +4350 2 519.9251 574.9996 92.5952 0.1144 4349 +4351 2 521.0405 574.7456 92.5952 0.1144 4350 +4352 2 522.1605 574.5088 92.5952 0.1144 4351 +4353 2 523.2988 574.3967 92.5952 0.1144 4352 +4354 2 524.4371 574.2834 92.5952 0.1144 4353 +4355 2 499.1444 570.4705 77.1134 0.1144 4330 +4356 2 498.6181 571.42 77.9926 0.1144 4355 +4357 2 498.069 572.4107 78.3765 0.1144 4356 +4358 2 497.521 573.4003 78.804 0.1144 4357 +4359 2 496.9742 574.3864 79.2627 0.1144 4358 +4360 2 496.4491 575.3325 80.1741 0.1144 4359 +4361 2 457.8871 582.6907 51.0773 0.1144 4289 +4362 2 457.4261 581.684 51.123 0.1144 4361 +4363 2 457.3929 580.5491 51.2926 0.1144 4362 +4364 2 457.5417 579.4234 51.6298 0.1144 4363 +4365 2 457.6892 578.3057 52.096 0.1144 4364 +4366 2 457.8471 577.1949 52.64 0.1144 4365 +4367 2 458.1114 576.1035 53.1714 0.1144 4366 +4368 2 458.4237 575.0213 53.657 0.1144 4367 +4369 2 458.736 573.9334 54.0764 0.1144 4368 +4370 2 459.038 572.8408 54.437 0.1144 4369 +4371 2 459.0803 571.7609 54.7509 0.1144 4370 +4372 2 458.3219 570.9086 54.9741 0.1144 4371 +4373 2 457.5622 570.0575 55.1561 0.1144 4372 +4374 2 456.8289 569.1858 55.3266 0.1144 4373 +4375 2 456.4034 568.171 55.5212 0.1144 4374 +4376 2 456.5612 567.0419 55.7494 0.1144 4375 +4377 2 456.7191 565.9162 56.0526 0.1144 4376 +4378 2 456.9399 564.8168 56.4782 0.1144 4377 +4379 2 457.4696 563.8444 57.1357 0.1144 4378 +4380 2 458.1262 562.9773 58.0034 0.1144 4379 +4381 2 458.5106 562.1879 59.2091 0.1144 4380 +4382 2 457.8059 561.8916 61.1696 0.1144 4381 +4383 2 457.0028 561.9454 63.1554 0.1144 4382 +4384 2 456.2432 561.9568 65.2408 0.1144 4383 +4385 2 455.7387 561.5152 67.3904 0.1144 4384 +4386 2 455.3303 560.9135 69.5512 0.1144 4385 +4387 2 454.9253 560.997 72.0087 0.1144 4386 +4388 2 454.6279 561.7017 74.0838 0.1144 4387 +4389 2 454.3224 562.3584 76.127 0.1144 4388 +4390 2 453.8488 561.6914 78.0847 0.1144 4389 +4391 2 453.3638 560.965 79.8941 0.1144 4390 +4392 2 452.7655 560.2729 81.5066 0.1144 4391 +4393 2 451.9246 559.7489 82.8834 0.1144 4392 +4394 2 451.1822 559.2879 84.6908 0.1144 4393 +4395 2 427.5345 567.4503 57.6892 0.1144 3552 +4396 2 427.0209 568.473 57.6758 0.1144 4395 +4397 2 426.5072 569.4946 57.6568 0.1144 4396 +4398 2 425.9936 570.5162 57.6092 0.1144 4397 +4399 2 425.4799 571.5378 57.5184 0.1144 4398 +4400 2 424.9663 572.5583 57.3703 0.1144 4399 +4401 2 424.3576 573.5192 57.1147 0.1144 4400 +4402 2 423.4527 574.1496 56.6398 0.1144 4401 +4403 2 422.4746 574.6758 55.9661 0.1144 4402 +4404 2 421.5102 575.1963 55.1622 0.1144 4403 +4405 2 420.5561 575.7111 54.2732 0.1144 4404 +4406 2 419.6043 576.2236 53.356 0.1144 4405 +4407 2 418.6319 576.7064 52.4737 0.1144 4406 +4408 2 418.1732 577.6754 51.6309 0.1144 4407 +4409 2 418.0817 578.7828 50.9718 0.1144 4408 +4410 2 417.9959 579.8398 49.9215 0.1144 4409 +4411 2 386.7498 527.519 58.0686 0.1144 3467 +4412 2 385.9833 526.6759 58.3094 0.1144 4411 +4413 2 385.282 525.7778 58.5746 0.1144 4412 +4414 2 384.63 524.8466 58.8666 0.1144 4413 +4415 2 383.8417 524.0378 59.1091 0.1144 4414 +4416 2 382.7858 523.618 59.2883 0.1144 4415 +4417 2 381.9896 522.8423 59.4115 0.1144 4416 +4418 2 381.921 521.7018 59.486 0.1144 4417 +4419 2 381.6819 520.5886 59.5274 0.1144 4418 +4420 2 381.1385 519.5819 59.558 0.1144 4419 +4421 2 380.6557 518.5455 59.5935 0.1144 4420 +4422 2 380.2141 517.5021 59.6565 0.1144 4421 +4423 2 379.4099 516.691 59.7671 0.1144 4422 +4424 2 378.6937 515.801 59.8514 0.1144 4423 +4425 2 378.0314 514.8686 59.9113 0.1144 4424 +4426 2 377.2969 513.9912 59.9474 0.1144 4425 +4427 2 376.6037 513.084 59.9603 0.1144 4426 +4428 2 376.0317 512.0979 59.9511 0.1144 4427 +4429 2 375.359 511.193 59.9253 0.1144 4428 +4430 2 375.1245 510.0741 59.8931 0.1144 4429 +4431 2 374.9529 508.9439 59.8388 0.1144 4430 +4432 2 374.5765 507.9097 59.7321 0.1144 4431 +4433 2 373.7105 507.1672 59.6473 0.1144 4432 +4434 2 372.9966 506.2818 59.5879 0.1144 4433 +4435 2 372.4853 505.259 59.5546 0.1144 4434 +4436 2 372.0013 504.2237 59.547 0.1144 4435 +4437 2 371.355 503.3005 59.5664 0.1144 4436 +4438 2 370.3792 502.74 59.61 0.1144 4437 +4439 2 369.4628 502.2183 59.6722 0.1144 4438 +4440 2 369.0006 501.1784 59.7682 0.1144 4439 +4441 2 368.5568 500.1362 59.908 0.1144 4440 +4442 2 367.9001 499.205 60.0667 0.1144 4441 +4443 2 367.1657 498.3298 60.2249 0.1144 4442 +4444 2 366.4198 497.4661 60.3924 0.1144 4443 +4445 2 365.683 496.5944 60.5937 0.1144 4444 +4446 2 364.9509 495.7227 60.8734 0.1144 4445 +4447 2 364.1226 494.9676 61.2475 0.1144 4446 +4448 2 363.1571 494.3739 61.6372 0.1144 4447 +4449 2 362.4238 493.5674 62.0029 0.1144 4448 +4450 2 361.9158 492.5538 62.3739 0.1144 4449 +4451 2 361.3015 491.6077 62.7455 0.1144 4450 +4452 2 360.5716 490.7428 63.1532 0.1144 4451 +4453 2 359.804 489.9191 63.6471 0.1144 4452 +4454 2 359.0879 489.0566 64.183 0.1144 4453 +4455 2 358.5994 488.0579 64.7066 0.1144 4454 +4456 2 358.2825 486.9825 65.2448 0.1144 4455 +4457 2 357.8729 485.9403 65.7712 0.1144 4456 +4458 2 357.341 484.9496 66.2763 0.1144 4457 +4459 2 356.8285 483.96 66.892 0.1144 4458 +4460 2 356.1112 483.1535 67.7188 0.1144 4459 +4461 2 355.2475 482.458 68.3945 0.1144 4460 +4462 2 354.7716 481.4535 68.9245 0.1144 4461 +4463 2 354.5096 480.3599 69.4134 0.1144 4462 +4464 2 354.4398 479.2399 69.9468 0.1144 4463 +4465 2 353.9536 478.2183 70.3268 0.1144 4464 +4466 2 353.7179 477.1052 70.5947 0.1144 4465 +4467 2 353.0487 476.1831 70.805 0.1144 4466 +4468 2 352.4618 475.2062 71.0506 0.1144 4467 +4469 2 351.8647 474.2338 71.2303 0.1144 4468 +4470 2 352.0317 474.7783 71.8976 0.1144 4469 +4471 2 352.5408 475.6294 73.225 0.1144 4470 +4472 2 353.544 475.9955 73.8676 0.1144 4471 +4473 2 354.4306 476.6602 74.3632 0.1144 4472 +4474 2 355.2738 477.4095 74.8306 0.1144 4473 +4475 2 356.356 477.5742 75.3267 0.1144 4474 +4476 2 357.3307 478.1028 75.8542 0.1144 4475 +4477 2 358.0914 478.9173 76.4302 0.1144 4476 +4478 2 358.7515 479.813 77.0826 0.1144 4477 +4479 2 359.5169 480.6287 77.6686 0.1144 4478 +4480 2 360.3325 481.4032 78.1746 0.1144 4479 +4481 2 361.2866 482.0084 78.6111 0.1144 4480 +4482 2 362.4146 482.1651 78.871 0.1144 4481 +4483 2 362.9054 480.9742 79.0658 0.1144 4482 +4484 2 362.8574 479.8588 79.1176 0.1144 4483 +4485 2 362.4764 478.7857 79.1426 0.1144 4484 +4486 2 362.1401 477.6966 79.1599 0.1144 4485 +4487 2 362.0108 476.5641 79.1854 0.1144 4486 +4488 2 362.2522 475.467 79.2249 0.1144 4487 +4489 2 362.8059 474.474 79.2809 0.1144 4488 +4490 2 363.5712 473.6332 79.357 0.1144 4489 +4491 2 364.3548 472.8026 79.455 0.1144 4490 +4492 2 365.2117 472.0533 79.6096 0.1144 4491 +4493 2 366.0228 471.2571 79.8479 0.1144 4492 +4494 2 366.2253 470.2057 80.1875 0.1144 4493 +4495 2 366.0377 469.0869 80.5031 0.1144 4494 +4496 2 366.0056 467.9532 80.7702 0.1144 4495 +4497 2 366.5948 467.0231 81.004 0.1144 4496 +4498 2 367.3739 466.1914 81.2148 0.1144 4497 +4499 2 368.1369 465.3437 81.4475 0.1144 4498 +4500 2 368.7192 464.3725 81.7681 0.1144 4499 +4501 2 369.1905 463.3429 82.1495 0.1144 4500 +4502 2 369.7019 462.3293 82.5017 0.1144 4501 +4503 2 370.1973 461.3077 82.8344 0.1144 4502 +4504 2 370.6468 460.2667 83.2079 0.1144 4503 +4505 2 371.1262 459.2485 83.7021 0.1144 4504 +4506 2 371.6364 458.2418 84.1638 0.1144 4505 +4507 2 372.2027 457.2534 84.4119 0.1144 4506 +4508 2 372.8456 456.0831 84.8585 0.1144 4507 +4509 2 373.4073 455.0946 85.1248 0.1144 4508 +4510 2 374.2253 454.303 85.3782 0.1144 4509 +4511 2 375.1084 453.5868 85.6302 0.1144 4510 +4512 2 375.7514 452.6522 85.9631 0.1144 4511 +4513 2 376.209 451.6169 86.3688 0.1144 4512 +4514 2 376.654 450.5804 86.8165 0.1144 4513 +4515 2 377.1745 449.5828 87.2161 0.1144 4514 +4516 2 377.3701 448.4697 87.656 0.1144 4515 +4517 2 377.5394 447.3543 88.1191 0.1144 4516 +4518 2 377.7088 446.2389 88.5872 0.1144 4517 +4519 2 377.8758 445.1235 89.0515 0.1144 4518 +4520 2 378.0108 444.0024 89.4975 0.1144 4519 +4521 2 378.0577 442.871 89.8898 0.1144 4520 +4522 2 378.116 441.7384 90.2334 0.1144 4521 +4523 2 378.3151 440.6196 90.5514 0.1144 4522 +4524 2 378.6343 439.5282 90.8592 0.1144 4523 +4525 2 378.9603 438.4391 91.1627 0.1144 4524 +4526 2 379.2852 437.3489 91.4659 0.1144 4525 +4527 2 379.6101 436.2598 91.7692 0.1144 4526 +4528 2 379.9361 435.1696 92.0662 0.1144 4527 +4529 2 380.2667 434.0805 92.349 0.1144 4528 +4530 2 380.6271 432.9994 92.6005 0.1144 4529 +4531 2 380.9852 431.9172 92.82 0.1144 4530 +4532 2 381.2929 430.8178 93.0037 0.1144 4531 +4533 2 381.5515 429.7058 93.151 0.1144 4532 +4534 2 381.8054 428.5904 93.2658 0.1144 4533 +4535 2 381.9953 427.4693 93.3408 0.1144 4534 +4536 2 381.9027 426.3288 93.3346 0.1144 4535 +4537 2 381.7551 425.1996 93.2784 0.1144 4536 +4538 2 381.3455 424.1369 93.2554 0.1144 4537 +4539 2 380.7015 423.1919 93.1949 0.1144 4538 +4540 2 380.0048 422.2859 93.084 0.1144 4539 +4541 2 379.4213 421.3398 92.932 0.1144 4540 +4542 2 379.3893 420.1992 92.7408 0.1144 4541 +4543 2 379.395 419.0621 92.5134 0.1144 4542 +4544 2 379.2303 417.9364 92.2508 0.1144 4543 +4545 2 378.958 416.8313 91.9677 0.1144 4544 +4546 2 378.6949 415.725 91.66 0.1144 4545 +4547 2 378.4329 414.6188 91.3385 0.1144 4546 +4548 2 378.1892 413.5091 91.0266 0.1144 4547 +4549 2 378.0542 412.38 90.7771 0.1144 4548 +4550 2 378.052 411.2383 90.6293 0.1144 4549 +4551 2 377.9936 410.0965 90.529 0.1144 4550 +4552 2 377.8895 408.9583 90.4322 0.1144 4551 +4553 2 377.7854 407.82 90.3193 0.1144 4552 +4554 2 377.7282 406.6828 90.1463 0.1144 4553 +4555 2 377.8163 405.5514 89.801 0.1144 4554 +4556 2 377.7008 404.4509 89.3584 0.1144 4555 +4557 2 377.25 403.4144 88.9333 0.1144 4556 +4558 2 376.7981 402.3768 88.5315 0.1144 4557 +4559 2 376.3222 401.3472 88.1689 0.1144 4558 +4560 2 375.6496 400.4778 87.88 0.1144 4559 +4561 2 374.6611 399.9081 87.6988 0.1144 4560 +4562 2 373.6716 399.3349 87.5902 0.1144 4561 +4563 2 372.6969 398.7378 87.5286 0.1144 4562 +4564 2 371.8389 398.0033 87.5008 0.1144 4563 +4565 2 371.1662 397.0778 87.4952 0.1144 4564 +4566 2 370.4936 396.1523 87.4885 0.1144 4565 +4567 2 369.8209 395.228 87.4614 0.1144 4566 +4568 2 369.1482 394.3025 87.402 0.1144 4567 +4569 2 368.4824 393.3736 87.297 0.1144 4568 +4570 2 367.9196 392.392 87.101 0.1144 4569 +4571 2 367.5603 391.3155 86.749 0.1144 4570 +4572 2 367.2171 390.2424 86.2658 0.1144 4571 +4573 2 366.7881 389.2151 85.6876 0.1144 4572 +4574 2 366.1681 388.2942 85.0559 0.1144 4573 +4575 2 365.4485 387.4476 84.3881 0.1144 4574 +4576 2 364.7347 386.6137 83.613 0.1144 4575 +4577 2 364.0425 385.7991 82.614 0.1144 4576 +4578 2 363.4442 384.9468 81.4747 0.1144 4577 +4579 2 363.0564 383.9882 80.311 0.1144 4578 +4580 2 362.7464 382.9494 79.4371 0.1144 4579 +4581 2 362.4547 381.8718 78.8343 0.1144 4580 +4582 2 362.2625 380.7632 78.353 0.1144 4581 +4583 2 362.0463 379.6547 77.917 0.1144 4582 +4584 2 361.5429 378.6491 77.5676 0.1144 4583 +4585 2 360.9263 377.6939 77.2859 0.1144 4584 +4586 2 360.3074 376.7352 77.0554 0.1144 4585 +4587 2 359.7766 375.7251 76.9236 0.1144 4586 +4588 2 359.2824 374.6943 76.8821 0.1144 4587 +4589 2 358.636 373.754 76.9264 0.1144 4588 +4590 2 358.1624 372.7186 76.9493 0.1144 4589 +4591 2 357.7277 371.6604 76.8578 0.1144 4590 +4592 2 357.1465 370.6789 76.7133 0.1144 4591 +4593 2 356.4384 369.7946 76.354 0.1144 4592 +4594 2 355.6879 368.9675 75.754 0.1144 4593 +4595 2 354.823 368.3314 75.0201 0.1144 4594 +4596 2 353.7351 368.193 74.2367 0.1144 4595 +4597 2 352.6391 368.1049 73.4745 0.1144 4596 +4598 2 351.5432 367.9298 72.7964 0.1144 4597 +4599 2 350.4793 367.6233 72.203 0.1144 4598 +4600 2 349.5057 367.057 71.7346 0.1144 4599 +4601 2 348.5585 366.4312 71.3924 0.1144 4600 +4602 2 347.6136 365.794 71.2191 0.1144 4601 +4603 2 346.7613 365.0355 71.1948 0.1144 4602 +4604 2 346.0543 364.1444 71.2681 0.1144 4603 +4605 2 345.5212 363.1353 71.3812 0.1144 4604 +4606 2 345.051 362.0943 71.5274 0.1144 4605 +4607 2 344.535 361.0773 71.7212 0.1144 4606 +4608 2 343.9505 360.0992 71.9555 0.1144 4607 +4609 2 343.3876 359.1073 72.184 0.1144 4608 +4610 2 342.8259 358.1143 72.3789 0.1144 4609 +4611 2 342.3351 357.095 72.557 0.1144 4610 +4612 2 342.0114 356.0002 72.7278 0.1144 4611 +4613 2 341.6728 354.91 72.9056 0.1144 4612 +4614 2 341.4348 353.798 73.1284 0.1144 4613 +4615 2 341.1156 352.741 73.5106 0.1144 4614 +4616 2 340.5619 351.7651 74.027 0.1144 4615 +4617 2 340.0574 350.7607 74.5405 0.1144 4616 +4618 2 339.5506 349.7597 75.0943 0.1144 4617 +4619 2 339.1296 348.7347 75.7515 0.1144 4618 +4620 2 338.6823 347.7623 76.6657 0.1144 4619 +4621 2 337.7477 347.5209 77.6199 0.1144 4620 +4622 2 336.8222 348.0265 78.4714 0.1144 4621 +4623 2 336.153 348.8571 79.4181 0.1144 4622 +4624 2 335.5409 349.7345 80.4118 0.1144 4623 +4625 2 334.5639 349.5549 81.2566 0.1144 4624 +4626 2 333.8535 348.6798 81.6654 0.1144 4625 +4627 2 333.4245 347.6536 81.947 0.1144 4626 +4628 2 333.428 346.5233 82.1416 0.1144 4627 +4629 2 333.7345 345.4285 82.2475 0.1144 4628 +4630 2 333.9061 344.3532 82.3239 0.1144 4629 +4631 2 333.4817 343.3041 82.4617 0.1144 4630 +4632 2 333.1351 342.2333 82.6554 0.1144 4631 +4633 2 332.928 341.1133 82.9111 0.1144 4632 +4634 2 332.6706 340.0048 83.1751 0.1144 4633 +4635 2 332.4544 338.886 83.3977 0.1144 4634 +4636 2 332.3206 337.7523 83.5674 0.1144 4635 +4637 2 332.1627 336.622 83.7085 0.1144 4636 +4638 2 331.9133 335.5077 83.8432 0.1144 4637 +4639 2 331.5895 334.4118 83.9569 0.1144 4638 +4640 2 331.2063 333.3353 84.0434 0.1144 4639 +4641 2 330.7476 332.2885 84.1089 0.1144 4640 +4642 2 330.2099 331.2795 84.1582 0.1144 4641 +4643 2 329.615 330.3037 84.1952 0.1144 4642 +4644 2 329.0499 329.3096 84.2262 0.1144 4643 +4645 2 328.4596 328.3303 84.2624 0.1144 4644 +4646 2 327.9036 327.3327 84.3119 0.1144 4645 +4647 2 327.4094 326.302 84.3839 0.1144 4646 +4648 2 326.9072 325.2747 84.485 0.1144 4647 +4649 2 326.3798 324.2611 84.6185 0.1144 4648 +4650 2 325.9233 323.2166 84.7832 0.1144 4649 +4651 2 325.3914 322.2168 85.0864 0.1144 4650 +4652 2 324.6237 321.424 85.7074 0.1144 4651 +4653 2 324.1249 320.4195 86.1851 0.1144 4652 +4654 2 323.6582 319.3865 86.5444 0.1144 4653 +4655 2 323.1903 318.3477 86.8059 0.1144 4654 +4656 2 322.7213 317.3067 86.9809 0.1144 4655 +4657 2 322.2511 316.2645 87.0828 0.1144 4656 +4658 2 321.7809 315.2223 87.148 0.1144 4657 +4659 2 321.3107 314.1802 87.2304 0.1144 4658 +4660 2 320.8417 313.1368 87.339 0.1144 4659 +4661 2 320.4424 312.0672 87.4938 0.1144 4660 +4662 2 320.296 310.9403 87.7509 0.1144 4661 +4663 2 320.177 309.8112 88.0855 0.1144 4662 +4664 2 320.0592 308.6832 88.466 0.1144 4663 +4665 2 319.9425 307.5575 88.8628 0.1144 4664 +4666 2 319.8121 306.4296 89.2158 0.1144 4665 +4667 2 319.6622 305.3004 89.4681 0.1144 4666 +4668 2 319.51 304.169 89.6305 0.1144 4667 +4669 2 319.3579 303.0353 89.7266 0.1144 4668 +4670 2 319.2057 301.9016 89.7781 0.1144 4669 +4671 2 318.9072 300.7976 89.8064 0.1144 4670 +4672 2 318.5731 299.704 89.8313 0.1144 4671 +4673 2 318.2379 298.6103 89.8654 0.1144 4672 +4674 2 317.9039 297.5166 89.9116 0.1144 4673 +4675 2 317.5687 296.423 89.9721 0.1144 4674 +4676 2 317.166 295.3522 90.0726 0.1144 4675 +4677 2 316.745 294.2906 90.2135 0.1144 4676 +4678 2 316.3217 293.2301 90.3865 0.1144 4677 +4679 2 315.8984 292.1707 90.5825 0.1144 4678 +4680 2 315.4763 291.1114 90.7931 0.1144 4679 +4681 2 315.0542 290.0509 91.0118 0.1144 4680 +4682 2 314.632 288.9916 91.2316 0.1144 4681 +4683 2 314.2088 287.9334 91.4511 0.1144 4682 +4684 2 313.7866 286.8729 91.67 0.1144 4683 +4685 2 313.3633 285.8135 91.8884 0.1144 4684 +4686 2 312.9412 284.7542 92.1054 0.1144 4685 +4687 2 312.5179 283.6948 92.3213 0.1144 4686 +4688 2 312.0958 282.6355 92.5347 0.1144 4687 +4689 2 311.6736 281.5762 92.7455 0.1144 4688 +4690 2 311.2515 280.5157 92.9522 0.1144 4689 +4691 2 310.8282 279.4563 93.1529 0.1144 4690 +4692 2 310.4061 278.3958 93.3467 0.1144 4691 +4693 2 309.9828 277.3353 93.5326 0.1144 4692 +4694 2 309.5847 276.2657 93.6911 0.1144 4693 +4695 2 309.1866 275.1938 93.8283 0.1144 4694 +4696 2 308.7885 274.123 93.9509 0.1144 4695 +4697 2 308.3915 273.0511 94.0643 0.1144 4696 +4698 2 307.9945 271.9791 94.1744 0.1144 4697 +4699 2 307.5964 270.9084 94.2866 0.1144 4698 +4700 2 307.0862 269.8856 94.4126 0.1144 4699 +4701 2 306.5142 268.8972 94.5557 0.1144 4700 +4702 2 305.9376 267.9099 94.7125 0.1144 4701 +4703 2 305.3611 266.9249 94.8794 0.1144 4702 +4704 2 304.7845 265.9388 95.0536 0.1144 4703 +4705 2 304.209 264.9527 95.2314 0.1144 4704 +4706 2 303.6462 263.9597 95.4117 0.1144 4705 +4707 2 303.1188 262.9473 95.5998 0.1144 4706 +4708 2 302.5926 261.9348 95.7886 0.1144 4707 +4709 2 302.0663 260.9212 95.9706 0.1144 4708 +4710 2 301.5573 259.8996 96.1346 0.1144 4709 +4711 2 301.1729 258.8231 96.2298 0.1144 4710 +4712 2 300.7919 257.7443 96.2727 0.1144 4711 +4713 2 300.4098 256.6656 96.2814 0.1144 4712 +4714 2 300.046 255.581 96.2844 0.1144 4713 +4715 2 299.7635 254.4736 96.3402 0.1144 4714 +4716 2 299.4809 253.3651 96.4404 0.1144 4715 +4717 2 299.1995 252.2577 96.5745 0.1144 4716 +4718 2 298.9043 251.1538 96.7162 0.1144 4717 +4719 2 298.5462 250.0681 96.8234 0.1144 4718 +4720 2 298.1893 248.9813 96.8786 0.1144 4719 +4721 2 297.8301 247.8956 96.8772 0.1144 4720 +4722 2 297.4732 246.8088 96.8316 0.1144 4721 +4723 2 298.0795 246.4279 96.2713 0.1144 4722 +4724 2 298.3438 245.364 95.6418 0.1144 4723 +4725 2 298.3689 244.8206 95.4391 0.1144 4724 +4726 2 298.4204 243.68 95.4142 0.1144 4725 +4727 2 298.6606 242.5635 95.5721 0.1144 4726 +4728 2 299.0588 241.4927 95.7202 0.1144 4727 +4729 2 299.466 240.4253 95.8362 0.1144 4728 +4730 2 300.2256 239.5708 95.9064 0.1144 4729 +4731 2 299.5633 238.7322 96.8058 0.1144 4730 +4732 2 298.9089 237.904 97.8874 0.1144 4731 +4733 2 298.2133 237.0231 98.4074 0.1144 4732 +4734 2 297.5201 236.1445 98.985 0.1144 4733 +4735 2 296.8165 235.2796 99.6195 0.1144 4734 +4736 2 295.8338 234.7511 100.2268 0.1144 4735 +4737 2 294.8488 234.2203 100.8143 0.1144 4736 +4738 2 293.8616 233.6895 101.3737 0.1144 4737 +4739 2 292.9578 233.0282 101.941 0.1144 4738 +4740 2 292.2451 232.1668 102.5408 0.1144 4739 +4741 2 291.5358 231.3065 103.1573 0.1144 4740 +4742 2 290.8254 230.4451 103.7761 0.1144 4741 +4743 2 290.115 229.5836 104.3753 0.1144 4742 +4744 2 289.4034 228.7211 104.9633 0.1144 4743 +4745 2 288.7284 227.9031 106.013 0.1144 4744 +4746 2 301.1672 239.112 95.9272 0.1144 4730 +4747 2 302.2471 238.7414 95.8163 0.1144 4746 +4748 2 302.8099 237.7472 95.6682 0.1144 4747 +4749 2 303.3716 236.7531 95.4993 0.1144 4748 +4750 2 303.9345 235.7601 95.3075 0.1144 4749 +4751 2 304.4962 234.7671 95.0888 0.1144 4750 +4752 2 304.828 233.956 96.7338 0.1144 4751 +4753 2 305.2146 233.0145 97.9264 0.1144 4752 +4754 2 305.6253 232.0112 98.8212 0.1144 4753 +4755 2 306.1836 231.1177 99.8553 0.1144 4754 +4756 2 307.0828 230.6796 100.9873 0.1144 4755 +4757 2 307.8836 230.0321 102.0743 0.1144 4756 +4758 2 308.3446 229.062 102.9585 0.1144 4757 +4759 2 308.729 228.0289 103.7084 0.1144 4758 +4760 2 309.0894 226.9753 104.3498 0.1144 4759 +4761 2 309.3433 225.8839 104.8863 0.1144 4760 +4762 2 309.5595 224.7754 105.3298 0.1144 4761 +4763 2 309.7792 223.6612 105.6832 0.1144 4762 +4764 2 310.0171 222.5469 105.9069 0.1144 4763 +4765 2 309.9268 221.4155 105.9822 0.1144 4764 +4766 2 309.6179 220.3172 105.9178 0.1144 4765 +4767 2 309.5103 219.1835 105.7577 0.1144 4766 +4768 2 309.4646 218.0441 105.5438 0.1144 4767 +4769 2 309.4211 216.9047 105.3128 0.1144 4768 +4770 2 309.3765 215.7653 105.0969 0.1144 4769 +4771 2 309.2529 214.6304 104.9202 0.1144 4770 +4772 2 308.3606 213.9909 104.8186 0.1144 4771 +4773 2 307.3528 213.4487 104.8211 0.1144 4772 +4774 2 306.3449 212.911 104.9096 0.1144 4773 +4775 2 305.424 212.2395 105.1333 0.1144 4774 +4776 2 304.7216 211.362 105.5939 0.1144 4775 +4777 2 304.0489 210.4811 106.2622 0.1144 4776 +4778 2 303.4529 209.6998 107.6956 0.1144 4777 +4779 2 305.5418 234.7602 94.6823 0.1144 4751 +4780 2 306.6778 234.7511 94.3438 0.1144 4779 +4781 2 307.8104 234.7751 93.9621 0.1144 4780 +4782 2 308.9246 234.9353 93.5441 0.1144 4781 +4783 2 310.0126 235.2396 93.116 0.1144 4782 +4784 2 311.0685 235.6491 92.759 0.1144 4783 +4785 2 312.0958 236.1388 92.4622 0.1144 4784 +4786 2 313.138 236.5666 92.0385 0.1144 4785 +4787 2 314.2053 236.8858 91.4091 0.1144 4786 +4788 2 315.2715 236.6604 90.9048 0.1144 4787 +4789 2 316.2748 236.1296 90.6125 0.1144 4788 +4790 2 317.2941 235.6297 90.277 0.1144 4789 +4791 2 318.3157 235.1423 89.8817 0.1144 4790 +4792 2 319.3362 234.6538 89.4555 0.1144 4791 +4793 2 320.3555 234.1676 89.0005 0.1144 4792 +4794 2 321.3713 233.6814 88.5167 0.1144 4793 +4795 2 322.3895 233.1964 88.048 0.1144 4794 +4796 2 323.4271 232.7274 87.7643 0.1144 4795 +4797 2 324.4704 232.2617 87.6473 0.1144 4796 +4798 2 325.5149 231.7961 87.6618 0.1144 4797 +4799 2 326.5594 231.3305 87.771 0.1144 4798 +4800 2 327.6027 230.8672 87.9421 0.1144 4799 +4801 2 328.6449 230.4027 88.1446 0.1144 4800 +4802 2 329.6871 229.9383 88.3532 0.1144 4801 +4803 2 330.7293 229.4738 88.5629 0.1144 4802 +4804 2 331.7417 228.9476 88.7734 0.1144 4803 +4805 2 332.7347 228.3859 88.9862 0.1144 4804 +4806 2 333.7277 227.8253 89.203 0.1144 4805 +4807 2 334.7195 227.2625 89.4264 0.1144 4806 +4808 2 335.7114 226.7019 89.6591 0.1144 4807 +4809 2 336.7032 226.1402 89.9027 0.1144 4808 +4810 2 337.7145 225.6174 90.1824 0.1144 4809 +4811 2 338.727 225.1003 90.4935 0.1144 4810 +4812 2 339.7394 224.5844 90.8267 0.1144 4811 +4813 2 340.7507 224.0696 91.1809 0.1144 4812 +4814 2 341.7608 223.5536 91.539 0.1144 4813 +4815 2 342.7721 223.0377 91.8896 0.1144 4814 +4816 2 343.7834 222.5217 92.2194 0.1144 4815 +4817 2 344.797 222.0046 92.5282 0.1144 4816 +4818 2 345.7934 221.4967 93.1118 0.1144 4817 +4819 2 298.7911 245.4338 93.4178 0.1144 4724 +4820 2 299.7703 245.5882 92.0237 0.1144 4819 +4821 2 300.7999 245.9531 91.2419 0.1144 4820 +4822 2 301.7918 246.3776 90.3202 0.1144 4821 +4823 2 302.8065 246.6556 89.2623 0.1144 4822 +4824 2 303.6645 246.8912 87.5028 0.1144 4823 +4825 2 297.0453 245.8559 97.4408 0.1144 4722 +4826 2 296.5763 244.8126 97.3532 0.1144 4825 +4827 2 296.1072 243.7692 97.288 0.1144 4826 +4828 2 295.5787 242.7557 97.2698 0.1144 4827 +4829 2 294.9541 241.8004 97.356 0.1144 4828 +4830 2 294.3855 240.8131 97.55 0.1144 4829 +4831 2 294.0675 239.7286 97.8141 0.1144 4830 +4832 2 293.8627 238.6098 98.1075 0.1144 4831 +4833 2 293.6682 237.4887 98.3979 0.1144 4832 +4834 2 293.4749 236.3664 98.6558 0.1144 4833 +4835 2 293.2804 235.2419 98.8627 0.1144 4834 +4836 2 292.9967 234.1356 98.936 0.1144 4835 +4837 2 292.6569 233.0442 98.8551 0.1144 4836 +4838 2 292.3092 231.9574 98.6544 0.1144 4837 +4839 2 291.9625 230.8729 98.378 0.1144 4838 +4840 2 291.6205 229.7884 98.0916 0.1144 4839 +4841 2 291.283 228.6993 97.853 0.1144 4840 +4842 2 290.9478 227.608 97.6875 0.1144 4841 +4843 2 290.6115 226.5154 97.5948 0.1144 4842 +4844 2 290.2751 225.4218 97.5652 0.1144 4843 +4845 2 289.9376 224.3281 97.5836 0.1144 4844 +4846 2 289.2066 223.4804 97.7094 0.1144 4845 +4847 2 288.2788 222.8226 97.9493 0.1144 4846 +4848 2 287.3293 222.198 98.2694 0.1144 4847 +4849 2 286.5445 221.3777 98.5376 0.1144 4848 +4850 2 285.9039 220.4339 98.6863 0.1144 4849 +4851 2 285.2816 219.4741 98.7249 0.1144 4850 +4852 2 284.4384 218.7053 98.8299 0.1144 4851 +4853 2 283.5278 218.0178 99.0497 0.1144 4852 +4854 2 282.6515 217.3589 99.843 0.1144 4853 +4855 2 372.8662 457.0703 83.8776 0.1144 4507 +4856 2 373.9656 456.8118 83.9502 0.1144 4855 +4857 2 375.0387 456.4297 84.1299 0.1144 4856 +4858 2 376.0923 455.9927 84.3251 0.1144 4857 +4859 2 377.1551 455.5797 84.5454 0.1144 4858 +4860 2 378.2739 455.3829 84.7935 0.1144 4859 +4861 2 379.228 454.8144 85.2247 0.1144 4860 +4862 2 379.4648 453.7424 85.8306 0.1144 4861 +4863 2 379.784 452.6648 86.3324 0.1144 4862 +4864 2 380.4155 451.729 86.781 0.1144 4863 +4865 2 381.1465 450.8996 87.5028 0.1144 4864 +4866 2 363.117 482.8286 79.0877 0.1144 4482 +4867 2 363.8217 483.729 79.035 0.1144 4866 +4868 2 364.507 484.6464 79.0132 0.1144 4867 +4869 2 365.19 485.5628 78.9846 0.1144 4868 +4870 2 365.8569 486.4929 78.9443 0.1144 4869 +4871 2 366.4461 487.4733 78.8774 0.1144 4870 +4872 2 367.0307 488.456 78.7909 0.1144 4871 +4873 2 367.6164 489.4375 78.6906 0.1144 4872 +4874 2 368.3211 490.3378 78.5837 0.1144 4873 +4875 2 369.2683 490.9785 78.4904 0.1144 4874 +4876 2 370.1892 491.6569 78.4115 0.1144 4875 +4877 2 371.0221 492.4394 78.344 0.1144 4876 +4878 2 371.9602 493.0937 78.2474 0.1144 4877 +4879 2 372.8937 493.7447 77.9671 0.1144 4878 +4880 2 351.343 473.624 71.3857 0.1144 4469 +4881 2 350.302 473.1744 71.5876 0.1144 4880 +4882 2 349.4611 472.4125 71.759 0.1144 4881 +4883 2 348.904 471.4207 71.9068 0.1144 4882 +4884 2 348.5825 470.3304 72.0426 0.1144 4883 +4885 2 348.0174 469.3397 72.1888 0.1144 4884 +4886 2 347.601 468.2792 72.359 0.1144 4885 +4887 2 347.0175 467.3034 72.6062 0.1144 4886 +4888 2 346.3494 466.4019 72.9778 0.1144 4887 +4889 2 345.9914 465.3289 73.393 0.1144 4888 +4890 2 345.6138 464.281 73.9603 0.1144 4889 +4891 2 345.1242 463.2651 74.398 0.1144 4890 +4892 2 344.6231 462.2515 74.6995 0.1144 4891 +4893 2 343.9859 461.3043 74.881 0.1144 4892 +4894 2 343.3396 460.3628 74.9546 0.1144 4893 +4895 2 342.6303 459.4659 74.9302 0.1144 4894 +4896 2 341.937 458.5587 74.8577 0.1144 4895 +4897 2 341.3833 457.5622 74.8056 0.1144 4896 +4898 2 341.0264 456.4812 74.7816 0.1144 4897 +4899 2 340.8068 455.3589 74.797 0.1144 4898 +4900 2 340.5963 454.2355 74.8689 0.1144 4899 +4901 2 340.3686 453.1167 74.9675 0.1144 4900 +4902 2 339.8046 452.19 75.0534 0.1144 4901 +4903 2 339.0313 451.3663 75.1178 0.1144 4902 +4904 2 338.6389 450.3116 75.1545 0.1144 4903 +4905 2 338.4478 449.1847 75.1848 0.1144 4904 +4906 2 338.1161 448.0968 75.2111 0.1144 4905 +4907 2 337.6493 447.0535 75.2195 0.1144 4906 +4908 2 337.0544 446.0799 75.1229 0.1144 4907 +4909 2 336.2468 445.2951 74.7953 0.1144 4908 +4910 2 335.6507 444.3605 74.1989 0.1144 4909 +4911 2 335.16 443.3412 73.787 0.1144 4910 +4912 2 335.001 443.9406 71.64 0.1144 4911 +4913 2 334.6143 444.8627 70.5438 0.1144 4912 +4914 2 333.9794 445.7962 70.1943 0.1144 4913 +4915 2 333.4703 446.8109 69.9149 0.1144 4914 +4916 2 333.3994 447.9343 69.6679 0.1144 4915 +4917 2 333.738 449.0166 69.4677 0.1144 4916 +4918 2 333.2998 450.0221 69.265 0.1144 4917 +4919 2 332.3045 450.5713 69.085 0.1144 4918 +4920 2 331.3127 451.1341 68.8584 0.1144 4919 +4921 2 331.3024 452.19 68.2576 0.1144 4920 +4922 2 331.2932 453.3226 67.8748 0.1144 4921 +4923 2 331.2841 454.4643 67.6917 0.1144 4922 +4924 2 331.2589 455.6037 67.4607 0.1144 4923 +4925 2 331.1365 456.7328 67.1602 0.1144 4924 +4926 2 330.8997 457.8402 66.7696 0.1144 4925 +4927 2 330.6515 458.9156 66.2673 0.1144 4926 +4928 2 331.0381 459.8869 65.6617 0.1144 4927 +4929 2 331.2475 460.6453 65.0877 0.1144 4928 +4930 2 330.6457 461.5948 64.5733 0.1144 4929 +4931 2 330.1275 462.5753 63.9414 0.1144 4930 +4932 2 329.7248 463.5991 63.17 0.1144 4931 +4933 2 329.2157 464.5509 62.3098 0.1144 4932 +4934 2 328.4344 465.1744 61.1817 0.1144 4933 +4935 2 327.4803 465.147 59.7881 0.1144 4934 +4936 2 326.5239 465.2236 58.3125 0.1144 4935 +4937 2 326.0286 465.9272 56.6255 0.1144 4936 +4938 2 325.3639 465.2179 55.162 0.1144 4937 +4939 2 324.7015 465.2042 53.3884 0.1144 4938 +4940 2 323.935 465.743 51.872 0.1144 4939 +4941 2 322.9729 465.9375 50.4546 0.1144 4940 +4942 2 322.0486 466.061 48.8877 0.1144 4941 +4943 2 321.3427 466.5449 47.1111 0.1144 4942 +4944 2 321.0567 467.3801 45.4154 0.1144 4943 +4945 2 320.8542 468.3971 44.2386 0.1144 4944 +4946 2 320.415 469.4015 43.4526 0.1144 4945 +4947 2 320.3246 470.5032 42.7795 0.1144 4946 +4948 2 320.0729 471.6026 42.3184 0.1144 4947 +4949 2 319.4185 472.5212 41.9482 0.1144 4948 +4950 2 318.7276 473.4295 41.743 0.1144 4949 +4951 2 318.4393 474.5323 41.5414 0.1144 4950 +4952 2 318.0892 475.618 41.3501 0.1144 4951 +4953 2 317.8798 476.7414 41.1874 0.1144 4952 +4954 2 317.9531 477.8808 41.0228 0.1144 4953 +4955 2 318.1258 479.0065 40.7518 0.1144 4954 +4956 2 318.2986 480.1219 40.3575 0.1144 4955 +4957 2 318.1041 481.2259 39.8653 0.1144 4956 +4958 2 318.4255 482.2749 39.1924 0.1144 4957 +4959 2 319.2023 482.9327 38.0842 0.1144 4958 +4960 2 320.1587 483.0277 36.6064 0.1144 4959 +4961 2 321.1036 482.8309 35.1389 0.1144 4960 +4962 2 321.0007 482.3184 33.6031 0.1144 4961 +4963 2 321.2947 481.6537 31.8718 0.1144 4962 +4964 2 322.0543 481.0085 30.5015 0.1144 4963 +4965 2 322.9432 480.639 29.3541 0.1144 4964 +4966 2 324.0346 480.7042 28.5362 0.1144 4965 +4967 2 325.1305 480.8735 27.8781 0.1144 4966 +4968 2 326.191 481.227 27.3708 0.1144 4967 +4969 2 327.1714 481.7842 26.957 0.1144 4968 +4970 2 328.05 482.4969 26.6069 0.1144 4969 +4971 2 328.805 483.3423 26.2867 0.1144 4970 +4972 2 329.4731 484.2598 25.9403 0.1144 4971 +4973 2 330.1126 485.1796 25.4069 0.1144 4972 +4974 2 330.4902 484.9244 24.4015 0.1144 4973 +4975 2 331.5232 484.81 23.5919 0.1144 4974 +4976 2 332.165 485.6303 22.4367 0.1144 4975 +4977 2 325.349 465.3792 55.2796 0.1144 4938 +4978 2 325.492 466.4694 55.9348 0.1144 4977 +4979 2 325.9004 467.5219 56.2811 0.1144 4978 +4980 2 326.4713 468.5058 56.5222 0.1144 4979 +4981 2 327.224 469.358 56.6955 0.1144 4980 +4982 2 328.0443 470.1543 56.7862 0.1144 4981 +4983 2 328.8703 470.9459 56.8025 0.1144 4982 +4984 2 329.6711 471.7627 56.7829 0.1144 4983 +4985 2 330.4524 472.5978 56.7647 0.1144 4984 +4986 2 331.283 473.3838 56.7308 0.1144 4985 +4987 2 332.181 474.0908 56.6499 0.1144 4986 +4988 2 333.0985 474.7703 56.5183 0.1144 4987 +4989 2 334.0183 475.4487 56.3466 0.1144 4988 +4990 2 334.9357 476.1259 56.147 0.1144 4989 +4991 2 335.8532 476.8032 55.9381 0.1144 4990 +4992 2 336.7719 477.4816 55.7371 0.1144 4991 +4993 2 337.6905 478.1588 55.5534 0.1144 4992 +4994 2 338.4215 479.026 55.4394 0.1144 4993 +4995 2 338.9523 480.0361 55.4288 0.1144 4994 +4996 2 339.4008 481.0875 55.4736 0.1144 4995 +4997 2 339.7463 482.1777 55.4504 0.1144 4996 +4998 2 340.0609 483.2759 55.3535 0.1144 4997 +4999 2 340.4922 484.3341 55.2726 0.1144 4998 +5000 2 341.2186 485.2093 55.37 0.1144 4999 +5001 2 341.9805 486.0559 55.6399 0.1144 5000 +5002 2 342.7378 486.8967 56.047 0.1144 5001 +5003 2 343.4906 487.733 56.5505 0.1144 5002 +5004 2 344.4046 488.3782 57.1082 0.1144 5003 +5005 2 345.0556 489.3014 57.5548 0.1144 5004 +5006 2 345.7076 490.2303 57.9004 0.1144 5005 +5007 2 346.3632 491.1627 58.163 0.1144 5006 +5008 2 347.0187 492.0962 58.3624 0.1144 5007 +5009 2 347.2315 493.2184 58.5371 0.1144 5008 +5010 2 347.4259 494.3361 58.896 0.1144 5009 +5011 2 330.7819 451.1341 68.6941 0.1144 4920 +5012 2 329.639 451.1353 68.5726 0.1144 5011 +5013 2 328.511 451.3206 68.4922 0.1144 5012 +5014 2 327.3979 451.586 68.4491 0.1144 5013 +5015 2 326.3546 452.055 68.4331 0.1144 5014 +5016 2 325.277 451.6752 68.4337 0.1144 5015 +5017 2 324.3652 450.9842 68.4345 0.1144 5016 +5018 2 323.5209 450.2132 68.4354 0.1144 5017 +5019 2 322.6869 449.4296 68.4365 0.1144 5018 +5020 2 321.8941 448.6059 68.439 0.1144 5019 +5021 2 321.2604 447.6529 68.4435 0.1144 5020 +5022 2 321.5223 447.0352 68.4471 0.1144 5021 +5023 2 321.6459 445.8992 68.4474 0.1144 5022 +5024 2 321.655 444.7552 68.4412 0.1144 5023 +5025 2 321.9227 443.6443 68.5076 0.1144 5024 +5026 2 323.0782 443.6672 69.4534 0.1144 5025 +5027 2 324.1192 443.3881 69.9104 0.1144 5026 +5028 2 324.8148 442.5507 70.2069 0.1144 5027 +5029 2 324.9772 441.465 70.6182 0.1144 5028 +5030 2 324.3732 440.6494 71.1096 0.1144 5029 +5031 2 323.3779 440.5658 72.0188 0.1144 5030 +5032 2 322.4261 440.0945 72.5455 0.1144 5031 +5033 2 321.3988 439.6163 72.9464 0.1144 5032 +5034 2 320.7845 438.6714 73.2113 0.1144 5033 +5035 2 320.7158 437.5365 73.3446 0.1144 5034 +5036 2 319.9528 436.6991 73.3849 0.1144 5035 +5037 2 318.9861 436.0882 73.3527 0.1144 5036 +5038 2 317.8501 435.9864 73.313 0.1144 5037 +5039 2 316.8216 435.4911 73.1965 0.1144 5038 +5040 2 315.7818 435.0152 73.0954 0.1144 5039 +5041 2 314.8906 434.2979 73.0178 0.1144 5040 +5042 2 313.9433 433.6584 72.919 0.1144 5041 +5043 2 323.3951 440.5738 73.3916 0.1144 5031 +5044 2 324.4167 441.0006 73.6333 0.1144 5043 +5045 2 325.3891 441.6012 73.7386 0.1144 5044 +5046 2 326.1567 442.4466 73.8357 0.1144 5045 +5047 2 326.8477 443.3572 73.9108 0.1144 5046 +5048 2 327.4334 444.3399 73.9348 0.1144 5047 +5049 2 327.9894 445.3398 73.9119 0.1144 5048 +5050 2 328.3886 446.4105 74.0407 0.1144 5049 +5051 2 321.3302 442.6719 68.4494 0.1144 5025 +5052 2 320.8005 441.6595 68.3046 0.1144 5051 +5053 2 320.1781 440.7008 68.1864 0.1144 5052 +5054 2 319.5787 439.7273 68.1027 0.1144 5053 +5055 2 319.0513 438.7126 68.0532 0.1144 5054 +5056 2 318.9461 437.5743 68.0509 0.1144 5055 +5057 2 318.9392 436.4303 68.0918 0.1144 5056 +5058 2 318.8362 435.2931 68.222 0.1144 5057 +5059 2 318.2516 434.3116 68.3609 0.1144 5058 +5060 2 317.6076 433.3678 68.4902 0.1144 5059 +5061 2 317.1683 432.313 68.6182 0.1144 5060 +5062 2 316.7141 431.264 68.7529 0.1144 5061 +5063 2 316.1661 430.2618 68.9018 0.1144 5062 +5064 2 315.903 429.151 69.106 0.1144 5063 +5065 2 315.728 428.0265 69.3795 0.1144 5064 +5066 2 315.5438 426.8699 69.988 0.1144 5065 +5067 2 315.1812 425.8105 70.4721 0.1144 5066 +5068 2 314.6389 424.8233 70.9402 0.1144 5067 +5069 2 314.0017 423.8989 71.456 0.1144 5068 +5070 2 313.1185 423.3143 72.0712 0.1144 5069 +5071 2 312.0775 423.5385 72.6009 0.1144 5070 +5072 2 311.041 423.9836 73.0688 0.1144 5071 +5073 2 310.0332 424.4686 73.6406 0.1144 5072 +5074 2 309.0642 424.9971 74.3725 0.1144 5073 +5075 2 308.0586 425.4593 75.0803 0.1144 5074 +5076 2 307.2063 424.9823 75.9808 0.1144 5075 +5077 2 306.8265 423.9286 76.5461 0.1144 5076 +5078 2 306.3872 422.8899 77.0137 0.1144 5077 +5079 2 305.8907 421.8706 77.3951 0.1144 5078 +5080 2 305.424 420.8364 77.7126 0.1144 5079 +5081 2 305.0076 419.7919 78.0352 0.1144 5080 +5082 2 304.2479 418.9477 78.3504 0.1144 5081 +5083 2 303.6325 417.9947 78.6246 0.1144 5082 +5084 2 303.1039 417.1951 78.939 0.1144 5083 +5085 2 302.0389 417.5829 79.2414 0.1144 5084 +5086 2 300.9315 417.8266 79.4618 0.1144 5085 +5087 2 299.8779 418.2475 79.616 0.1144 5086 +5088 2 298.7522 418.3185 79.7384 0.1144 5087 +5089 2 297.6608 417.9844 79.8756 0.1144 5088 +5090 2 296.6632 417.4559 79.954 0.1144 5089 +5091 2 295.9551 416.5807 79.9702 0.1144 5090 +5092 2 295.4472 415.574 79.9495 0.1144 5091 +5093 2 294.6532 414.7515 79.9414 0.1144 5092 +5094 2 293.8227 413.9644 79.9557 0.1144 5093 +5095 2 292.9395 413.2608 80.0078 0.1144 5094 +5096 2 291.8653 412.9131 80.1284 0.1144 5095 +5097 2 290.727 412.825 80.3177 0.1144 5096 +5098 2 289.591 412.7403 80.5451 0.1144 5097 +5099 2 288.4516 412.7277 80.7825 0.1144 5098 +5100 2 287.3213 412.849 81.0121 0.1144 5099 +5101 2 286.2128 413.1167 81.195 0.1144 5100 +5102 2 285.1111 413.4176 81.3302 0.1144 5101 +5103 2 283.9888 413.5423 81.4335 0.1144 5102 +5104 2 282.8517 413.4896 81.5228 0.1144 5103 +5105 2 281.71 413.5606 81.6175 0.1144 5104 +5106 2 280.5992 413.4187 81.7284 0.1144 5105 +5107 2 279.5009 413.1419 81.8994 0.1144 5106 +5108 2 278.3764 413.2002 82.1764 0.1144 5107 +5109 2 277.3193 413.5835 82.5037 0.1144 5108 +5110 2 276.3984 414.2344 82.8344 0.1144 5109 +5111 2 275.5004 414.9219 83.2048 0.1144 5110 +5112 2 274.5234 415.4814 83.6735 0.1144 5111 +5113 2 273.5201 415.9824 84.2299 0.1144 5112 +5114 2 272.5214 416.4801 84.8453 0.1144 5113 +5115 2 271.5261 416.9754 85.4997 0.1144 5114 +5116 2 270.5468 417.5017 86.161 0.1144 5115 +5117 2 269.6294 418.132 86.7787 0.1144 5116 +5118 2 268.7748 418.8573 87.3253 0.1144 5117 +5119 2 267.9362 419.6089 87.8116 0.1144 5118 +5120 2 267.0943 420.3628 88.2552 0.1144 5119 +5121 2 266.2523 421.1167 88.6855 0.1144 5120 +5122 2 265.4114 421.8683 89.1526 0.1144 5121 +5123 2 264.4939 422.5147 89.6448 0.1144 5122 +5124 2 263.4724 422.9883 90.0928 0.1144 5123 +5125 2 262.4622 423.4985 90.4599 0.1144 5124 +5126 2 261.4234 423.9584 90.7402 0.1144 5125 +5127 2 260.3241 424.2513 90.9432 0.1144 5126 +5128 2 259.1915 424.2718 91.0958 0.1144 5127 +5129 2 258.0841 424.0156 91.2257 0.1144 5128 +5130 2 257.0408 423.558 91.3811 0.1144 5129 +5131 2 256.0421 423.0123 91.6342 0.1144 5130 +5132 2 255.0193 422.517 91.943 0.1144 5131 +5133 2 253.9817 422.0513 92.2536 0.1144 5132 +5134 2 253.0505 421.4118 92.5893 0.1144 5133 +5135 2 252.2165 420.6465 92.9611 0.1144 5134 +5136 2 251.4798 419.7942 93.4198 0.1144 5135 +5137 2 250.8289 418.8848 93.9966 0.1144 5136 +5138 2 250.2042 417.9673 94.6806 0.1144 5137 +5139 2 249.5808 417.0589 95.4313 0.1144 5138 +5140 2 248.8852 416.1952 96.1139 0.1144 5139 +5141 2 247.962 415.6415 96.9545 0.1144 5140 +5142 2 247.2058 414.9574 98.0857 0.1144 5141 +5143 2 246.8111 413.945 98.9624 0.1144 5142 +5144 2 246.4439 412.9199 99.8035 0.1144 5143 +5145 2 246.1968 411.8457 100.5528 0.1144 5144 +5146 2 245.9165 410.7704 101.19 0.1144 5145 +5147 2 245.4887 409.727 101.6571 0.1144 5146 +5148 2 244.9865 408.7077 101.9701 0.1144 5147 +5149 2 244.3962 407.7376 102.1594 0.1144 5148 +5150 2 243.6194 406.8991 102.2132 0.1144 5149 +5151 2 242.8975 406.0193 102.181 0.1144 5150 +5152 2 242.3324 405.0275 102.1261 0.1144 5151 +5153 2 241.6025 404.1535 102.0569 0.1144 5152 +5154 2 240.7331 403.4099 101.9847 0.1144 5153 +5155 2 239.8625 402.6686 101.9396 0.1144 5154 +5156 2 238.9747 401.9467 101.9539 0.1144 5155 +5157 2 238.0618 401.2591 102.065 0.1144 5156 +5158 2 237.2118 400.5098 102.3313 0.1144 5157 +5159 2 236.3847 399.8394 102.8471 0.1144 5158 +5160 2 235.3014 399.7708 103.6367 0.1144 5159 +5161 2 234.2489 399.7708 104.664 0.1144 5160 +5162 2 233.3577 399.3315 105.9058 0.1144 5161 +5163 2 232.526 398.6909 107.0101 0.1144 5162 +5164 2 231.6554 398.0342 107.8426 0.1144 5163 +5165 2 230.7551 397.3821 108.5059 0.1144 5164 +5166 2 229.8239 396.7609 109.0807 0.1144 5165 +5167 2 228.8664 396.1752 109.6197 0.1144 5166 +5168 2 227.8951 395.6124 110.1626 0.1144 5167 +5169 2 226.925 395.0552 110.7411 0.1144 5168 +5170 2 225.8679 394.8047 111.4464 0.1144 5169 +5171 2 224.9093 395.2612 112.2173 0.1144 5170 +5172 2 224.1725 396.0608 113.0307 0.1144 5171 +5173 2 223.8087 397.0824 113.8449 0.1144 5172 +5174 2 223.6348 398.1658 114.6258 0.1144 5173 +5175 2 223.2745 399.2011 115.4054 0.1144 5174 +5176 2 222.508 399.9744 116.1838 0.1144 5175 +5177 2 221.6031 400.6036 116.9244 0.1144 5176 +5178 2 220.6158 400.1746 117.6563 0.1144 5177 +5179 2 219.8036 399.3979 118.1804 0.1144 5178 +5180 2 218.9891 398.6165 118.6349 0.1144 5179 +5181 2 218.1722 397.8317 119.0378 0.1144 5180 +5182 2 217.3829 397.0263 119.4113 0.1144 5181 +5183 2 217.0294 396.0848 119.8168 0.1144 5182 +5184 2 218.0407 395.6787 120.2975 0.1144 5183 +5185 2 219.1721 395.6535 120.706 0.1144 5184 +5186 2 220.3047 395.6249 121.1025 0.1144 5185 +5187 2 221.4212 395.4694 121.399 0.1144 5186 +5188 2 222.5252 395.3881 121.6152 0.1144 5187 +5189 2 223.644 395.5769 121.9756 0.1144 5188 +5190 2 224.7548 395.7611 122.4703 0.1144 5189 +5191 2 225.8393 395.8743 123.2711 0.1144 5190 +5192 2 226.8895 395.9418 124.3701 0.1144 5191 +5193 2 227.3792 395.7657 124.9998 0.1144 5192 +5194 2 228.4362 395.3847 125.4912 0.1144 5193 +5195 2 229.5081 394.9992 125.76 0.1144 5194 +5196 2 230.5824 394.6114 125.8785 0.1144 5195 +5197 2 231.6589 394.2247 125.8925 0.1144 5196 +5198 2 232.7354 393.8369 125.8704 0.1144 5197 +5199 2 233.8119 393.4491 125.8734 0.1144 5198 +5200 2 234.8918 393.0738 125.9527 0.1144 5199 +5201 2 235.9729 392.7055 126.1252 0.1144 5200 +5202 2 237.0517 392.3405 126.3716 0.1144 5201 +5203 2 238.1293 391.9733 126.6706 0.1144 5202 +5204 2 239.2047 391.6084 127.0021 0.1144 5203 +5205 2 240.2789 391.2434 127.3488 0.1144 5204 +5206 2 241.3543 390.8785 127.6929 0.1144 5205 +5207 2 242.4296 390.5124 128.0272 0.1144 5206 +5208 2 243.5061 390.1475 128.345 0.1144 5207 +5209 2 244.5838 389.7814 128.6407 0.1144 5208 +5210 2 245.6614 389.4165 128.9086 0.1144 5209 +5211 2 246.7414 389.0492 129.1438 0.1144 5210 +5212 2 247.7858 388.5882 129.299 0.1144 5211 +5213 2 248.7845 388.0299 129.3446 0.1144 5212 +5214 2 249.781 387.4694 129.3099 0.1144 5213 +5215 2 250.7785 386.9088 129.2281 0.1144 5214 +5216 2 251.775 386.3482 129.1346 0.1144 5215 +5217 2 252.7714 385.7877 129.0671 0.1144 5216 +5218 2 253.7689 385.2271 129.0626 0.1144 5217 +5219 2 254.7654 384.6666 129.1486 0.1144 5218 +5220 2 254.9312 384.6711 128.7423 0.1144 5219 +5221 2 255.811 384.6826 126.9817 0.1144 5220 +5222 2 256.8177 384.7078 125.6998 0.1144 5221 +5223 2 257.8851 384.8508 124.7935 0.1144 5222 +5224 2 258.1665 385.345 123.3669 0.1144 5223 +5225 2 257.8393 385.1459 121.2938 0.1144 5224 +5226 2 257.6322 384.2113 119.803 0.1144 5225 +5227 2 257.4595 383.4345 117.7921 0.1144 5226 +5228 2 254.9164 383.4356 129.7856 0.1144 5219 +5229 2 255.2493 382.3877 130.5178 0.1144 5228 +5230 2 255.7904 381.4817 131.5748 0.1144 5229 +5231 2 256.5145 380.8067 132.9404 0.1144 5230 +5232 2 257.4343 380.3834 134.2289 0.1144 5231 +5233 2 258.1653 379.7359 135.5808 0.1144 5232 +5234 2 258.5223 378.9523 137.4243 0.1144 5233 +5235 2 226.8678 395.9144 124.9562 0.1144 5192 +5236 2 226.4388 395.3893 126.6404 0.1144 5235 +5237 2 225.702 394.5507 127.1911 0.1144 5236 +5238 2 224.7651 394.0108 127.6192 0.1144 5237 +5239 2 223.6875 394.0966 128.2568 0.1144 5238 +5240 2 222.7711 394.6297 129.1758 0.1144 5239 +5241 2 222.1362 395.4465 130.319 0.1144 5240 +5242 2 221.5802 396.3148 131.5322 0.1144 5241 +5243 2 221.2702 397.3123 132.6623 0.1144 5242 +5244 2 222.0596 398.0594 133.4962 0.1144 5243 +5245 2 222.826 398.557 135.1806 0.1144 5244 +5246 2 315.0496 428.5962 69.3591 0.1144 5065 +5247 2 314.1024 429.2208 69.0259 0.1144 5246 +5248 2 313.0865 429.7367 68.8142 0.1144 5247 +5249 2 311.9505 429.7436 68.6969 0.1144 5248 +5250 2 310.8065 429.7104 68.6526 0.1144 5249 +5251 2 309.7197 430.0513 68.7786 0.1144 5250 +5252 2 308.7141 430.4929 69.5534 0.1144 5251 +5253 2 319.994 447.4459 67.6558 0.1144 5021 +5254 2 319.0399 446.8212 67.4358 0.1144 5253 +5255 2 318.1006 446.1886 67.2064 0.1144 5254 +5256 2 317.0116 445.9861 67.006 0.1144 5255 +5257 2 315.9808 446.4689 66.848 0.1144 5256 +5258 2 315.0313 447.1027 66.7932 0.1144 5257 +5259 2 314.0063 447.6106 66.8136 0.1144 5258 +5260 2 312.9687 448.0934 66.8623 0.1144 5259 +5261 2 311.9036 448.48 66.9455 0.1144 5260 +5262 2 310.7642 448.5613 67.062 0.1144 5261 +5263 2 309.6247 448.6471 67.1989 0.1144 5262 +5264 2 308.491 448.7798 67.3453 0.1144 5263 +5265 2 307.3699 448.9994 67.5004 0.1144 5264 +5266 2 306.2522 449.2362 67.6584 0.1144 5265 +5267 2 305.1345 449.4742 67.8096 0.1144 5266 +5268 2 304.0169 449.7075 67.9465 0.1144 5267 +5269 2 302.8912 449.9032 68.0607 0.1144 5268 +5270 2 301.7597 449.918 68.1369 0.1144 5269 +5271 2 300.7439 449.473 68.1576 0.1144 5270 +5272 2 299.9877 448.615 68.1265 0.1144 5271 +5273 2 299.2715 447.7238 68.0436 0.1144 5272 +5274 2 298.5485 446.8395 67.9048 0.1144 5273 +5275 2 297.7901 445.9884 67.6976 0.1144 5274 +5276 2 296.9595 445.2128 67.4022 0.1144 5275 +5277 2 296.0146 444.6248 66.978 0.1144 5276 +5278 2 294.9255 444.4268 66.3664 0.1144 5277 +5279 2 293.8661 444.6053 65.5696 0.1144 5278 +5280 2 293.4051 445.413 64.7408 0.1144 5279 +5281 2 293.595 446.4883 64.052 0.1144 5280 +5282 2 293.9828 447.5362 63.4628 0.1144 5281 +5283 2 294.6178 448.4343 62.9087 0.1144 5282 +5284 2 295.5021 448.3233 62.3759 0.1144 5283 +5285 2 296.2903 447.5214 61.9623 0.1144 5284 +5286 2 297.0316 446.6634 61.5997 0.1144 5285 +5287 2 297.8427 445.8717 61.2391 0.1144 5286 +5288 2 298.7018 445.1315 60.8644 0.1144 5287 +5289 2 299.4283 444.2735 60.4212 0.1144 5288 +5290 2 300.0483 443.3378 59.8951 0.1144 5289 +5291 2 300.7336 442.4569 59.29 0.1144 5290 +5292 2 301.6888 442.7086 58.5586 0.1144 5291 +5293 2 302.6544 443.2668 57.9376 0.1144 5292 +5294 2 303.621 443.8583 57.5551 0.1144 5293 +5295 2 304.2948 444.7746 57.2855 0.1144 5294 +5296 2 304.9778 445.6898 57.1245 0.1144 5295 +5297 2 305.8473 446.4323 57.2132 0.1144 5296 +5298 2 334.5697 442.5209 73.5003 0.1144 4911 +5299 2 333.9771 441.5462 73.3538 0.1144 5298 +5300 2 333.8844 440.4194 73.2332 0.1144 5299 +5301 2 333.4074 439.3944 73.5669 0.1144 5300 +5302 2 332.9921 438.3499 74.0905 0.1144 5301 +5303 2 332.61 437.2871 74.5251 0.1144 5302 +5304 2 332.0918 436.2804 74.8684 0.1144 5303 +5305 2 331.4843 435.3172 75.1332 0.1144 5304 +5306 2 331.1628 434.2349 75.3136 0.1144 5305 +5307 2 330.9798 433.1081 75.4393 0.1144 5306 +5308 2 330.8219 431.9767 75.6224 0.1144 5307 +5309 2 330.425 430.9116 75.8038 0.1144 5308 +5310 2 330.0829 429.8214 75.9293 0.1144 5309 +5311 2 329.5303 428.8238 75.9993 0.1144 5310 +5312 2 328.8073 427.9407 76.0178 0.1144 5311 +5313 2 328.4344 426.8676 75.9814 0.1144 5312 +5314 2 328.1861 425.7545 75.7826 0.1144 5313 +5315 2 327.7835 424.6871 75.6036 0.1144 5314 +5316 2 326.9918 423.8657 75.4785 0.1144 5315 +5317 2 326.4827 422.8418 75.4051 0.1144 5316 +5318 2 326.1796 421.739 75.3791 0.1144 5317 +5319 2 325.8604 420.6408 75.4538 0.1144 5318 +5320 2 325.5492 419.5414 75.5692 0.1144 5319 +5321 2 326.0183 418.9042 75.4636 0.1144 5320 +5322 2 326.8877 418.2029 75.3404 0.1144 5321 +5323 2 327.9779 417.9707 75.2604 0.1144 5322 +5324 2 329.1174 418.0359 75.2153 0.1144 5323 +5325 2 330.1676 417.7224 75.1246 0.1144 5324 +5326 2 330.6812 416.7626 75.0072 0.1144 5325 +5327 2 331.2852 415.8005 74.9196 0.1144 5326 +5328 2 332.173 415.0947 74.9692 0.1144 5327 +5329 2 333.1877 415.5042 75.075 0.1144 5328 +5330 2 333.778 415.3933 75.903 0.1144 5329 +5331 2 334.7481 415.1141 77.1949 0.1144 5330 +5332 2 335.6622 414.5696 78.0704 0.1144 5331 +5333 2 336.511 413.8351 78.6033 0.1144 5332 +5334 2 337.3645 413.103 79.1109 0.1144 5333 +5335 2 338.3083 412.5024 79.613 0.1144 5334 +5336 2 339.3173 412.0105 80.1458 0.1144 5335 +5337 2 340.3103 411.4934 80.7265 0.1144 5336 +5338 2 341.0275 410.688 81.2759 0.1144 5337 +5339 2 341.5355 409.6801 81.7225 0.1144 5338 +5340 2 342.0938 408.6951 82.0904 0.1144 5339 +5341 2 342.7847 407.796 82.4029 0.1144 5340 +5342 2 343.6176 407.0306 82.724 0.1144 5341 +5343 2 344.5659 406.4243 83.174 0.1144 5342 +5344 2 345.5292 405.8569 83.7581 0.1144 5343 +5345 2 345.4823 404.9108 84.3371 0.1144 5344 +5346 2 344.8565 403.9784 84.7616 0.1144 5345 +5347 2 344.3246 402.9763 85.0592 0.1144 5346 +5348 2 343.82 401.9536 85.2524 0.1144 5347 +5349 2 343.3144 400.9274 85.3656 0.1144 5348 +5350 2 342.8088 399.9024 85.4392 0.1144 5349 +5351 2 342.3031 398.8762 85.5123 0.1144 5350 +5352 2 341.8306 397.8352 85.612 0.1144 5351 +5353 2 341.4646 396.7541 85.7598 0.1144 5352 +5354 2 341.1419 395.6604 85.9648 0.1144 5353 +5355 2 340.8251 394.5656 86.2282 0.1144 5354 +5356 2 340.5093 393.4742 86.5491 0.1144 5355 +5357 2 340.1936 392.3851 86.9254 0.1144 5356 +5358 2 339.8916 391.3006 87.4196 0.1144 5357 +5359 2 339.609 390.2401 88.1989 0.1144 5358 +5360 2 339.1377 389.2597 89.0596 0.1144 5359 +5361 2 338.4718 388.3811 89.8013 0.1144 5360 +5362 2 337.655 387.681 90.678 0.1144 5361 +5363 2 336.6014 387.5277 91.7039 0.1144 5362 +5364 2 335.5283 387.3927 92.6117 0.1144 5363 +5365 2 334.4495 387.2188 93.4438 0.1144 5364 +5366 2 333.3662 387.0655 94.2589 0.1144 5365 +5367 2 332.2794 386.9843 95.1012 0.1144 5366 +5368 2 331.1903 386.9488 95.954 0.1144 5367 +5369 2 330.1195 386.8253 96.8005 0.1144 5368 +5370 2 329.4022 386.1766 97.6676 0.1144 5369 +5371 2 329.3118 385.0818 98.4116 0.1144 5370 +5372 2 329.3736 383.963 98.9366 0.1144 5371 +5373 2 329.6253 382.8613 99.0864 0.1144 5372 +5374 2 330.02 381.802 98.7078 0.1144 5373 +5375 2 330.457 380.7724 98.119 0.1144 5374 +5376 2 330.9729 379.7668 97.6839 0.1144 5375 +5377 2 331.498 378.7578 97.414 0.1144 5376 +5378 2 332.0254 377.7431 97.3353 0.1144 5377 +5379 2 332.5665 376.7364 97.4753 0.1144 5378 +5380 2 333.15 375.7651 97.8622 0.1144 5379 +5381 2 333.73 374.8076 98.4264 0.1144 5380 +5382 2 334.3054 373.8581 99.1063 0.1144 5381 +5383 2 334.8763 372.9177 99.8757 0.1144 5382 +5384 2 335.4986 372.0277 100.7507 0.1144 5383 +5385 2 336.2342 371.26 101.7803 0.1144 5384 +5386 2 336.8108 370.3917 102.9302 0.1144 5385 +5387 2 337.3656 369.5212 104.1384 0.1144 5386 +5388 2 337.9193 368.6529 105.3615 0.1144 5387 +5389 2 338.6537 367.9836 106.7438 0.1144 5388 +5390 2 339.3905 367.415 108.3222 0.1144 5389 +5391 2 339.959 366.9758 110.5003 0.1144 5390 +5392 2 333.9176 415.9023 75.0184 0.1144 5329 +5393 2 334.9186 416.448 74.8101 0.1144 5392 +5394 2 336.0283 416.6757 74.4856 0.1144 5393 +5395 2 337.1036 417.0155 74.0267 0.1144 5394 +5396 2 338.1149 417.4936 73.4387 0.1144 5395 +5397 2 339.1182 417.9753 72.7944 0.1144 5396 +5398 2 340.1204 418.4592 72.1462 0.1144 5397 +5399 2 341.0916 419.014 71.5616 0.1144 5398 +5400 2 342.0308 419.6352 71.0682 0.1144 5399 +5401 2 342.9735 420.261 70.6513 0.1144 5400 +5402 2 343.9196 420.8879 70.303 0.1144 5401 +5403 2 344.868 421.5171 70.0157 0.1144 5402 +5404 2 345.8186 422.1463 69.7852 0.1144 5403 +5405 2 346.6755 422.1703 68.4426 0.1144 5404 +5406 2 347.7337 422.2012 67.4512 0.1144 5405 +5407 2 348.8388 422.2378 66.7285 0.1144 5406 +5408 2 349.9118 422.4792 66.0509 0.1144 5407 +5409 2 350.9746 422.8281 65.4685 0.1144 5408 +5410 2 352.0626 423.1095 64.9684 0.1144 5409 +5411 2 353.1597 423.0112 64.5436 0.1144 5410 +5412 2 354.2613 423.0581 64.15 0.1144 5411 +5413 2 355.379 423.2972 64.0469 0.1144 5412 +5414 2 356.4921 423.4356 63.9422 0.1144 5413 +5415 2 357.5469 423.042 63.4712 0.1144 5414 +5416 2 358.6108 422.7915 62.8309 0.1144 5415 +5417 2 359.7274 422.8041 62.2278 0.1144 5416 +5418 2 360.8451 422.8647 61.6504 0.1144 5417 +5419 2 361.9662 422.9265 61.1108 0.1144 5418 +5420 2 363.0873 423.0237 60.6245 0.1144 5419 +5421 2 364.1855 423.2594 60.1664 0.1144 5420 +5422 2 365.2529 423.6232 59.6963 0.1144 5421 +5423 2 366.2791 424.0819 59.2256 0.1144 5422 +5424 2 366.9574 424.893 58.8328 0.1144 5423 +5425 2 367.3327 425.9684 58.5586 0.1144 5424 +5426 2 367.8624 426.9637 58.333 0.1144 5425 +5427 2 368.543 427.8777 58.1031 0.1144 5426 +5428 2 369.2226 428.7884 57.7912 0.1144 5427 +5429 2 370.1195 429.4015 57.395 0.1144 5428 +5430 2 371.1914 429.7619 56.9878 0.1144 5429 +5431 2 372.1638 430.3122 56.6314 0.1144 5430 +5432 2 373.0058 431.0752 56.3746 0.1144 5431 +5433 2 373.8272 431.8692 56.1957 0.1144 5432 +5434 2 374.7035 432.5979 56.0283 0.1144 5433 +5435 2 375.6118 433.2889 55.8289 0.1144 5434 +5436 2 376.5201 433.9775 55.587 0.1144 5435 +5437 2 377.4777 434.5873 55.2969 0.1144 5436 +5438 2 378.4775 435.1261 54.9646 0.1144 5437 +5439 2 379.4842 435.6501 54.607 0.1144 5438 +5440 2 380.4955 436.1614 54.238 0.1144 5439 +5441 2 381.5823 436.388 53.8594 0.1144 5440 +5442 2 382.6177 436.0402 53.4926 0.1144 5441 +5443 2 383.6278 435.5265 53.1286 0.1144 5442 +5444 2 384.7066 435.2062 52.733 0.1144 5443 +5445 2 385.8094 435.3114 52.3426 0.1144 5444 +5446 2 386.8516 435.7439 51.994 0.1144 5445 +5447 2 387.8675 436.2541 51.6799 0.1144 5446 +5448 2 388.8582 436.8124 51.3775 0.1144 5447 +5449 2 389.6521 437.6006 51.0398 0.1144 5448 +5450 2 390.2207 438.5753 50.65 0.1144 5449 +5451 2 390.867 439.5008 50.26 0.1144 5450 +5452 2 391.6816 440.2798 49.8585 0.1144 5451 +5453 2 392.702 440.7237 49.4295 0.1144 5452 +5454 2 393.7637 441.0932 48.9121 0.1144 5453 +5455 2 394.4592 441.8036 47.8176 0.1144 5454 +5456 2 395.3664 442.291 46.655 0.1144 5455 +5457 2 396.3823 442.5221 45.8248 0.1144 5456 +5458 2 397.4119 442.2292 44.9277 0.1144 5457 +5459 2 398.1841 441.5485 43.9443 0.1144 5458 +5460 2 398.2836 440.559 42.975 0.1144 5459 +5461 2 397.9541 439.5328 42.0535 0.1144 5460 +5462 2 397.2906 438.7137 41.1678 0.1144 5461 +5463 2 396.4601 438.0021 40.3421 0.1144 5462 +5464 2 395.6318 437.2723 39.6077 0.1144 5463 +5465 2 394.847 436.4829 38.9752 0.1144 5464 +5466 2 394.5473 435.4842 38.3648 0.1144 5465 +5467 2 395.0038 434.5072 37.798 0.1144 5466 +5468 2 395.7325 433.6584 37.247 0.1144 5467 +5469 2 396.7014 433.139 36.6806 0.1144 5468 +5470 2 397.786 432.8679 36.1178 0.1144 5469 +5471 2 398.8899 432.6757 35.5558 0.1144 5470 +5472 2 399.9893 432.8118 35.0045 0.1144 5471 +5473 2 401.0475 433.1848 34.4809 0.1144 5472 +5474 2 402.0954 433.5943 33.9766 0.1144 5473 +5475 2 403.0827 434.1286 33.474 0.1144 5474 +5476 2 403.9933 434.7886 32.972 0.1144 5475 +5477 2 404.8868 435.4728 32.475 0.1144 5476 +5478 2 405.7814 436.1592 31.9897 0.1144 5477 +5479 2 406.8533 436.452 31.5286 0.1144 5478 +5480 2 407.661 435.7141 31.227 0.1144 5479 +5481 2 408.6768 435.2073 30.9663 0.1144 5480 +5482 2 409.8071 435.0884 30.6975 0.1144 5481 +5483 2 410.9111 435.3744 30.5088 0.1144 5482 +5484 2 412.0116 435.6821 30.3783 0.1144 5483 +5485 2 413.0286 436.2038 30.2781 0.1144 5484 +5486 2 413.9656 436.8604 30.1972 0.1144 5485 +5487 2 414.6863 437.7482 30.14 0.1144 5486 +5488 2 415.4001 438.6416 30.0964 0.1144 5487 +5489 2 416.3382 439.296 30.0199 0.1144 5488 +5490 2 417.3781 439.757 29.7284 0.1144 5489 +5491 2 346.1424 421.9061 69.5492 0.1144 5404 +5492 2 346.8128 420.9977 69.2532 0.1144 5491 +5493 2 347.3081 419.9693 69.2611 0.1144 5492 +5494 2 347.784 418.9328 69.4968 0.1144 5493 +5495 2 348.2565 417.9043 69.9026 0.1144 5494 +5496 2 348.7187 416.8782 70.408 0.1144 5495 +5497 2 349.1534 415.8417 70.929 0.1144 5496 +5498 2 349.5847 414.8018 71.4241 0.1144 5497 +5499 2 349.8993 413.7162 71.8561 0.1144 5498 +5500 2 350.159 412.6133 72.2344 0.1144 5499 +5501 2 350.4175 411.5071 72.5749 0.1144 5500 +5502 2 350.6726 410.3997 72.893 0.1144 5501 +5503 2 350.755 409.2671 73.222 0.1144 5502 +5504 2 350.763 408.1312 73.5613 0.1144 5503 +5505 2 350.7481 406.9952 73.8917 0.1144 5504 +5506 2 350.7161 405.8592 74.1958 0.1144 5505 +5507 2 350.6669 404.7232 74.4624 0.1144 5506 +5508 2 350.2711 403.6524 74.6052 0.1144 5507 +5509 2 349.7929 402.6136 74.6329 0.1144 5508 +5510 2 349.1717 401.6527 74.6021 0.1144 5509 +5511 2 348.5242 400.71 74.5405 0.1144 5510 +5512 2 347.8767 399.7674 74.4652 0.1144 5511 +5513 2 347.2292 398.8247 74.3901 0.1144 5512 +5514 2 346.5817 397.8821 74.328 0.1144 5513 +5515 2 345.9342 396.9394 74.275 0.1144 5514 +5516 2 345.2867 395.9967 74.2269 0.1144 5515 +5517 2 344.6392 395.0529 74.1832 0.1144 5516 +5518 2 343.9985 394.1069 74.1454 0.1144 5517 +5519 2 343.4791 393.0876 74.1202 0.1144 5518 +5520 2 343.0273 392.0362 74.1098 0.1144 5519 +5521 2 342.5411 391.0055 74.1135 0.1144 5520 +5522 2 342.4827 389.8649 74.1322 0.1144 5521 +5523 2 342.6017 388.7369 74.1642 0.1144 5522 +5524 2 342.056 387.7348 74.2244 0.1144 5523 +5525 2 341.349 386.8436 74.31 0.1144 5524 +5526 2 340.5265 386.0497 74.4386 0.1144 5525 +5527 2 339.7074 385.2534 74.5707 0.1144 5526 +5528 2 338.91 384.4343 74.6376 0.1144 5527 +5529 2 338.1481 383.5809 74.6556 0.1144 5528 +5530 2 337.4102 382.7069 74.6992 0.1144 5529 +5531 2 336.6769 381.8294 74.7746 0.1144 5530 +5532 2 335.9448 380.9509 74.8588 0.1144 5531 +5533 2 335.2114 380.0734 74.9316 0.1144 5532 +5534 2 334.4884 379.1868 74.9414 0.1144 5533 +5535 2 333.8203 378.2636 74.7914 0.1144 5534 +5536 2 333.3479 377.2466 74.4257 0.1144 5535 +5537 2 333.1591 376.1472 73.8774 0.1144 5536 +5538 2 333.1625 375.041 73.1909 0.1144 5537 +5539 2 333.4165 373.9885 72.3831 0.1144 5538 +5540 2 334.0343 373.1087 71.5789 0.1144 5539 +5541 2 334.4495 372.1752 70.5956 0.1144 5540 +5542 2 333.7094 371.5529 69.1023 0.1144 5541 +5543 2 332.9864 370.918 67.587 0.1144 5542 +5544 2 332.2634 370.1229 66.6523 0.1144 5543 +5545 2 331.6673 369.1699 66.1727 0.1144 5544 +5546 2 331.3688 368.0683 65.9988 0.1144 5545 +5547 2 331.2166 366.9346 65.9876 0.1144 5546 +5548 2 331.0644 365.8009 66.057 0.1144 5547 +5549 2 330.9134 364.6672 66.1399 0.1144 5548 +5550 2 330.7613 363.5335 66.1878 0.1144 5549 +5551 2 330.5462 362.41 66.2004 0.1144 5550 +5552 2 330.1927 361.3221 66.1948 0.1144 5551 +5553 2 329.7672 360.2605 66.192 0.1144 5552 +5554 2 329.3382 359.2 66.2192 0.1144 5553 +5555 2 328.7707 358.2093 66.3485 0.1144 5554 +5556 2 328.0489 357.333 66.6747 0.1144 5555 +5557 2 327.2492 356.5551 67.2902 0.1144 5556 +5558 2 326.4484 355.808 68.0924 0.1144 5557 +5559 2 325.9645 354.9123 68.885 0.1144 5558 +5560 2 326.3683 353.9444 69.5433 0.1144 5559 +5561 2 327.1634 353.1436 69.9712 0.1144 5560 +5562 2 328.0775 352.4721 70.1873 0.1144 5561 +5563 2 329.0762 351.9161 70.1761 0.1144 5562 +5564 2 330.0875 351.3888 69.9936 0.1144 5563 +5565 2 330.449 350.533 69.6769 0.1144 5564 +5566 2 329.8621 349.5927 69.3605 0.1144 5565 +5567 2 329.138 348.7141 69.069 0.1144 5566 +5568 2 328.4104 347.8389 68.7884 0.1144 5567 +5569 2 327.7114 346.942 68.4905 0.1144 5568 +5570 2 327.0353 346.0303 68.1506 0.1144 5569 +5571 2 326.366 345.1162 67.7606 0.1144 5570 +5572 2 325.6968 344.2056 67.3204 0.1144 5571 +5573 2 325.0676 343.2732 66.8209 0.1144 5572 +5574 2 324.6375 342.2528 66.1867 0.1144 5573 +5575 2 324.284 341.2083 65.4413 0.1144 5574 +5576 2 323.9602 340.1547 64.6926 0.1144 5575 +5577 2 323.6559 339.0896 63.9876 0.1144 5576 +5578 2 323.3527 338.0211 63.3251 0.1144 5577 +5579 2 323.0484 336.9469 62.7082 0.1144 5578 +5580 2 322.7453 335.8681 62.1393 0.1144 5579 +5581 2 322.4398 334.787 61.6118 0.1144 5580 +5582 2 322.1344 333.7037 61.1162 0.1144 5581 +5583 2 321.8278 332.618 60.653 0.1144 5582 +5584 2 321.5201 331.5301 60.2263 0.1144 5583 +5585 2 321.0293 330.5085 59.9032 0.1144 5584 +5586 2 320.4699 329.5143 59.6845 0.1144 5585 +5587 2 319.9024 328.5236 59.5493 0.1144 5586 +5588 2 319.3327 327.5318 59.4742 0.1144 5587 +5589 2 318.763 326.5399 59.4387 0.1144 5588 +5590 2 318.1944 325.5469 59.4224 0.1144 5589 +5591 2 317.6247 324.5551 59.4082 0.1144 5590 +5592 2 317.055 323.5632 59.3883 0.1144 5591 +5593 2 316.4865 322.5702 59.3608 0.1144 5592 +5594 2 315.9167 321.5784 59.3239 0.1144 5593 +5595 2 315.3859 320.5648 59.2729 0.1144 5594 +5596 2 315.077 319.4689 59.1917 0.1144 5595 +5597 2 314.8151 318.3558 59.0817 0.1144 5596 +5598 2 314.5542 317.2426 58.9484 0.1144 5597 +5599 2 314.2946 316.1307 58.7964 0.1144 5598 +5600 2 314.0349 315.0187 58.6295 0.1144 5599 +5601 2 313.774 313.9067 58.4511 0.1144 5600 +5602 2 313.5155 312.7959 58.2641 0.1144 5601 +5603 2 313.1128 311.7297 58.0552 0.1144 5602 +5604 2 312.6472 310.6898 57.8231 0.1144 5603 +5605 2 312.1747 309.6522 57.5708 0.1144 5604 +5606 2 311.7022 308.6169 57.3009 0.1144 5605 +5607 2 311.2298 307.5816 57.017 0.1144 5606 +5608 2 310.7584 306.5462 56.7216 0.1144 5607 +5609 2 310.2665 305.5212 56.4071 0.1144 5608 +5610 2 309.7529 304.5088 56.0666 0.1144 5609 +5611 2 309.2346 303.4986 55.7082 0.1144 5610 +5612 2 308.7164 302.4896 55.3426 0.1144 5611 +5613 2 308.1993 301.4806 54.9816 0.1144 5612 +5614 2 307.6811 300.4693 54.6412 0.1144 5613 +5615 2 307.1617 299.458 54.336 0.1144 5614 +5616 2 306.6423 298.4444 54.0803 0.1144 5615 +5617 2 306.1218 297.4286 53.8807 0.1144 5616 +5618 2 305.7432 296.3509 53.8261 0.1144 5617 +5619 2 305.5121 295.2332 53.9694 0.1144 5618 +5620 2 305.2947 294.1167 54.2632 0.1144 5619 +5621 2 305.0773 293.0047 54.6392 0.1144 5620 +5622 2 304.5088 292.0186 54.924 0.1144 5621 +5623 2 303.9196 291.0405 55.1099 0.1144 5622 +5624 2 303.3305 290.0612 55.1894 0.1144 5623 +5625 2 302.7402 289.0808 55.1748 0.1144 5624 +5626 2 302.9518 289.0991 55.1908 0.1144 5625 +5627 2 304.0912 289.2009 55.2507 0.1144 5626 +5628 2 305.2238 289.3485 55.1393 0.1144 5627 +5629 2 306.3357 289.6082 54.9898 0.1144 5628 +5630 2 307.2166 289.7889 54.7078 0.1144 5629 +5631 2 306.6183 288.8451 54.1293 0.1144 5630 +5632 2 305.9822 287.9162 53.6486 0.1144 5631 +5633 2 305.5315 286.9003 53.0328 0.1144 5632 +5634 2 305.3839 285.8273 52.1735 0.1144 5633 +5635 2 304.8199 284.9063 51.2999 0.1144 5634 +5636 2 303.994 284.181 50.531 0.1144 5635 +5637 2 303.16 283.4363 49.94 0.1144 5636 +5638 2 302.4095 282.608 49.5093 0.1144 5637 +5639 2 301.9634 281.5624 49.2022 0.1144 5638 +5640 2 301.5149 280.5191 48.979 0.1144 5639 +5641 2 301.3353 279.3991 48.7738 0.1144 5640 +5642 2 301.4909 278.2791 48.5041 0.1144 5641 +5643 2 301.9725 277.2564 48.1384 0.1144 5642 +5644 2 302.6887 276.4201 47.7179 0.1144 5643 +5645 2 303.7366 276.0186 47.1834 0.1144 5644 +5646 2 304.7971 275.6685 46.5816 0.1144 5645 +5647 2 305.8335 275.2773 45.9161 0.1144 5646 +5648 2 306.7956 274.7408 45.162 0.1144 5647 +5649 2 307.7726 274.2328 44.4262 0.1144 5648 +5650 2 308.7496 273.7237 43.7822 0.1144 5649 +5651 2 309.6396 273.0385 43.2631 0.1144 5650 +5652 2 310.5136 272.3326 42.8425 0.1144 5651 +5653 2 311.1909 271.4289 42.539 0.1144 5652 +5654 2 311.7835 270.4679 42.2943 0.1144 5653 +5655 2 312.4756 269.5767 42.0188 0.1144 5654 +5656 2 312.9618 268.5483 41.729 0.1144 5655 +5657 2 313.3393 267.4752 41.5058 0.1144 5656 +5658 2 313.8312 266.5017 41.3064 0.1144 5657 +5659 2 314.695 265.7604 41.0155 0.1144 5658 +5660 2 315.5392 265.0019 40.6748 0.1144 5659 +5661 2 316.1272 264.0752 40.3676 0.1144 5660 +5662 2 316.4418 262.9793 40.1467 0.1144 5661 +5663 2 316.7885 261.8913 39.9918 0.1144 5662 +5664 2 317.2106 260.8297 39.9031 0.1144 5663 +5665 2 317.6751 259.7841 39.8723 0.1144 5664 +5666 2 318.1395 258.7385 39.877 0.1144 5665 +5667 2 318.6063 257.694 39.8992 0.1144 5666 +5668 2 319.0936 256.6598 39.9283 0.1144 5667 +5669 2 319.6176 255.644 39.9647 0.1144 5668 +5670 2 320.1598 254.6361 40.0151 0.1144 5669 +5671 2 320.7135 253.6362 40.124 0.1144 5670 +5672 2 321.1906 252.6032 40.2626 0.1144 5671 +5673 2 321.623 251.5462 40.3371 0.1144 5672 +5674 2 321.8633 250.4422 40.4583 0.1144 5673 +5675 2 321.718 249.3222 40.8052 0.1144 5674 +5676 2 322.3357 248.3933 41.3157 0.1144 5675 +5677 2 323.2406 247.7778 42.098 0.1144 5676 +5678 2 324.2496 247.382 42.9904 0.1144 5677 +5679 2 325.2735 247.0468 43.9208 0.1144 5678 +5680 2 326.0812 246.699 45.1688 0.1144 5679 +5681 2 325.0516 246.437 45.8102 0.1144 5680 +5682 2 324.1398 246.008 46.4036 0.1144 5681 +5683 2 324.0231 245.0025 47.4334 0.1144 5682 +5684 2 324.0243 244.0976 49.1047 0.1144 5683 +5685 2 324.0586 243.0382 50.1222 0.1144 5684 +5686 2 324.4796 242.0624 51.1557 0.1144 5685 +5687 2 325.0104 241.1163 52.0304 0.1144 5686 +5688 2 325.5103 240.224 53.2868 0.1144 5687 +5689 2 301.8387 288.6438 55.0382 0.1144 5625 +5690 2 301.3296 287.6462 54.8509 0.1144 5689 +5691 2 300.967 286.5663 54.6286 0.1144 5690 +5692 2 300.5814 285.4944 54.3578 0.1144 5691 +5693 2 300.2085 284.419 54.0932 0.1144 5692 +5694 2 299.7463 283.378 53.8345 0.1144 5693 +5695 2 299.2407 282.3632 53.4545 0.1144 5694 +5696 2 298.7281 281.3622 52.9494 0.1144 5695 +5697 2 298.3838 280.2914 52.437 0.1144 5696 +5698 2 298.163 279.1852 51.9753 0.1144 5697 +5699 2 297.8976 278.0824 51.6062 0.1144 5698 +5700 2 297.7798 277.7438 51.4382 0.1144 5699 +5701 2 297.3668 276.6913 51.032 0.1144 5700 +5702 2 296.9058 275.6514 50.7466 0.1144 5701 +5703 2 296.5099 274.5829 50.5257 0.1144 5702 +5704 2 296.1427 273.5018 50.344 0.1144 5703 +5705 2 295.6096 272.5008 50.1824 0.1144 5704 +5706 2 294.8717 271.6371 50.0192 0.1144 5705 +5707 2 294.0309 270.8683 49.7896 0.1144 5706 +5708 2 293.2255 270.0675 49.4715 0.1144 5707 +5709 2 292.6077 269.1226 49.145 0.1144 5708 +5710 2 292.1787 268.0712 48.8653 0.1144 5709 +5711 2 291.6708 267.0554 48.6315 0.1144 5710 +5712 2 291.1514 266.0406 48.3818 0.1144 5711 +5713 2 290.7888 264.9653 48.1104 0.1144 5712 +5714 2 290.4868 263.8659 47.868 0.1144 5713 +5715 2 290.0761 262.8031 47.6596 0.1144 5714 +5716 2 289.4732 261.8399 47.4729 0.1144 5715 +5717 2 288.7548 260.9533 47.2889 0.1144 5716 +5718 2 288.0798 260.0346 47.075 0.1144 5717 +5719 2 287.3602 259.1526 46.8238 0.1144 5718 +5720 2 286.4004 258.5726 46.5139 0.1144 5719 +5721 2 285.3422 258.1688 46.1524 0.1144 5720 +5722 2 284.6238 257.3325 45.7783 0.1144 5721 +5723 2 283.8436 256.5145 45.3844 0.1144 5722 +5724 2 282.9787 255.7984 44.8577 0.1144 5723 +5725 2 281.8816 255.565 44.3422 0.1144 5724 +5726 2 280.7845 255.8453 43.9491 0.1144 5725 +5727 2 279.6908 256.1393 43.5554 0.1144 5726 +5728 2 279.8842 255.3923 45.2869 0.1144 5727 +5729 2 280.3978 254.3936 45.8091 0.1144 5728 +5730 2 281.0968 253.5115 46.3086 0.1144 5729 +5731 2 282.0589 252.9212 46.7589 0.1144 5730 +5732 2 282.9776 252.2554 47.108 0.1144 5731 +5733 2 283.8996 251.5862 47.3628 0.1144 5732 +5734 2 284.8205 250.9192 47.6778 0.1144 5733 +5735 2 279.2984 256.137 43.3734 0.1144 5727 +5736 2 278.1922 256.2674 42.9696 0.1144 5735 +5737 2 277.1065 256.4127 42.7778 0.1144 5736 +5738 2 276.101 255.9425 42.5505 0.1144 5737 +5739 2 275.3105 255.1303 42.2859 0.1144 5738 +5740 2 274.6469 254.2082 41.9642 0.1144 5739 +5741 2 273.9766 253.301 41.5391 0.1144 5740 +5742 2 273.3691 252.3641 41.0446 0.1144 5741 +5743 2 273.2547 251.2876 40.572 0.1144 5742 +5744 2 273.0636 250.2065 40.1243 0.1144 5743 +5745 2 272.439 249.2673 39.825 0.1144 5744 +5746 2 271.843 248.296 39.6631 0.1144 5745 +5747 2 271.3488 247.2653 39.6186 0.1144 5746 +5748 2 270.9324 246.2002 39.6813 0.1144 5747 +5749 2 270.58 245.1134 39.8042 0.1144 5748 +5750 2 270.2288 244.0266 39.9487 0.1144 5749 +5751 2 269.7403 242.9959 40.1008 0.1144 5750 +5752 2 269.0688 242.0773 40.2578 0.1144 5751 +5753 2 268.2749 241.2604 40.4628 0.1144 5752 +5754 2 267.4592 240.4722 40.8268 0.1144 5753 +5755 2 266.3655 240.4299 41.2471 0.1144 5754 +5756 2 265.3268 239.986 41.5764 0.1144 5755 +5757 2 264.8989 238.9393 41.8141 0.1144 5756 +5758 2 264.8166 237.801 41.965 0.1144 5757 +5759 2 264.216 236.8286 42.0437 0.1144 5758 +5760 2 263.676 235.8207 42.0664 0.1144 5759 +5761 2 262.6624 235.2888 42.0686 0.1144 5760 +5762 2 261.7701 234.5749 42.0686 0.1144 5761 +5763 2 260.9304 233.797 42.0686 0.1144 5762 +5764 2 297.2707 276.9132 52.7629 0.1144 5699 +5765 2 296.7433 275.9294 53.3238 0.1144 5764 +5766 2 296.2113 274.9398 53.8642 0.1144 5765 +5767 2 295.7412 273.9205 54.3942 0.1144 5766 +5768 2 295.3019 272.884 54.8915 0.1144 5767 +5769 2 294.8671 271.8464 55.3969 0.1144 5768 +5770 2 294.4198 270.8168 55.9322 0.1144 5769 +5771 2 293.8799 269.8707 56.7664 0.1144 5770 +5772 2 293.3319 268.9647 57.8248 0.1144 5771 +5773 2 292.8125 268.1101 59.124 0.1144 5772 +5774 2 292.4018 267.4306 61.1397 0.1144 5773 +5775 2 324.5642 418.8893 75.7546 0.1144 5320 +5776 2 323.9236 417.9432 75.8349 0.1144 5775 +5777 2 323.6845 416.8256 75.9122 0.1144 5776 +5778 2 323.0061 415.9046 75.9923 0.1144 5777 +5779 2 322.6972 414.8361 74.1773 0.1144 5778 +5780 2 322.0898 414.3213 72.571 0.1144 5779 +5781 2 322.0177 414.8522 71.5963 0.1144 5780 +5782 2 322.4501 415.7559 70.399 0.1144 5781 +5783 2 321.6219 415.534 69.4837 0.1144 5782 +5784 2 320.6037 415.1027 68.7652 0.1144 5783 +5785 2 320.1587 415.4253 67.6172 0.1144 5784 +5786 2 320.598 416.3805 67.0163 0.1144 5785 +5787 2 320.1678 417.2969 66.575 0.1144 5786 +5788 2 319.1177 417.6469 66.2693 0.1144 5787 +5789 2 317.9897 417.7922 66.0279 0.1144 5788 +5790 2 316.872 417.9993 65.7171 0.1144 5789 +5791 2 315.7497 418.1137 65.2957 0.1144 5790 +5792 2 314.6538 417.8986 64.9172 0.1144 5791 +5793 2 313.5738 417.5417 64.6156 0.1144 5792 +5794 2 312.4973 417.1676 64.3633 0.1144 5793 +5795 2 311.4265 416.7741 64.1525 0.1144 5794 +5796 2 310.3649 416.3542 63.9596 0.1144 5795 +5797 2 309.3502 415.8417 63.7199 0.1144 5796 +5798 2 308.4064 415.2137 63.3738 0.1144 5797 +5799 2 307.553 414.4758 62.9364 0.1144 5798 +5800 2 306.8116 413.6304 62.4571 0.1144 5799 +5801 2 306.0406 412.8124 61.9522 0.1144 5800 +5802 2 305.1242 412.174 61.4286 0.1144 5801 +5803 2 304.0615 411.8423 60.916 0.1144 5802 +5804 2 302.9438 411.721 60.431 0.1144 5803 +5805 2 301.8192 411.6432 59.9642 0.1144 5804 +5806 2 300.7073 411.4625 59.5014 0.1144 5805 +5807 2 299.6891 411.0014 59.0316 0.1144 5806 +5808 2 298.8345 410.2773 58.5589 0.1144 5807 +5809 2 298.0703 409.449 58.0832 0.1144 5808 +5810 2 297.3336 408.5956 57.6072 0.1144 5809 +5811 2 296.709 407.6598 57.1276 0.1144 5810 +5812 2 296.201 406.6542 56.658 0.1144 5811 +5813 2 295.6702 405.6578 56.2248 0.1144 5812 +5814 2 295.0914 404.6831 55.8446 0.1144 5813 +5815 2 294.5034 403.7119 55.5089 0.1144 5814 +5816 2 293.9165 402.7372 55.2065 0.1144 5815 +5817 2 293.3628 401.7442 54.9139 0.1144 5816 +5818 2 292.8274 400.7398 54.6322 0.1144 5817 +5819 2 292.2623 399.7502 54.385 0.1144 5818 +5820 2 291.6548 398.7858 54.133 0.1144 5819 +5821 2 290.9947 397.8603 53.8504 0.1144 5820 +5822 2 290.1836 397.0652 53.5875 0.1144 5821 +5823 2 289.2295 396.4452 53.3817 0.1144 5822 +5824 2 288.2285 395.8949 53.2216 0.1144 5823 +5825 2 287.1337 395.5952 53.072 0.1144 5824 +5826 2 285.9954 395.5574 52.9189 0.1144 5825 +5827 2 284.856 395.4842 52.768 0.1144 5826 +5828 2 283.7326 395.2829 52.6229 0.1144 5827 +5829 2 282.6412 394.9488 52.4762 0.1144 5828 +5830 2 281.5292 394.6914 52.3194 0.1144 5829 +5831 2 280.3933 394.6011 52.1147 0.1144 5830 +5832 2 279.255 394.5713 51.837 0.1144 5831 +5833 2 278.1201 394.5473 51.494 0.1144 5832 +5834 2 277.0036 394.3643 51.1134 0.1144 5833 +5835 2 276.4419 393.4651 50.5232 0.1144 5834 +5836 2 276.1593 392.4023 49.8809 0.1144 5835 +5837 2 275.4088 391.6484 49.1845 0.1144 5836 +5838 2 274.306 391.5557 48.482 0.1144 5837 +5839 2 273.2032 391.5637 47.7425 0.1144 5838 +5840 2 272.1061 391.5729 46.9605 0.1144 5839 +5841 2 271.0662 391.3544 46.0656 0.1144 5840 +5842 2 270.1956 390.8053 44.9672 0.1144 5841 +5843 2 269.2759 390.5227 43.6069 0.1144 5842 +5844 2 268.5975 389.7757 42.3847 0.1144 5843 +5845 2 267.6102 389.9427 41.27 0.1144 5844 +5846 2 266.5303 390.0777 40.4065 0.1144 5845 +5847 2 266.3255 389.8008 40.1142 0.1144 5846 +5848 2 265.6585 388.9383 39.2703 0.1144 5847 +5849 2 264.9264 388.102 38.6324 0.1144 5848 +5850 2 264.1404 387.2898 38.2133 0.1144 5849 +5851 2 263.3396 386.4775 37.977 0.1144 5850 +5852 2 262.5377 385.6641 37.8759 0.1144 5851 +5853 2 261.6797 384.9125 37.8809 0.1144 5852 +5854 2 260.6844 384.376 37.9898 0.1144 5853 +5855 2 259.585 384.0797 38.1671 0.1144 5854 +5856 2 258.4525 383.9802 38.348 0.1144 5855 +5857 2 257.3108 383.979 38.5025 0.1144 5856 +5858 2 256.1885 383.8212 38.633 0.1144 5857 +5859 2 255.1223 383.4208 38.7024 0.1144 5858 +5860 2 254.0527 383.0306 38.6672 0.1144 5859 +5861 2 252.9292 382.9517 38.5428 0.1144 5860 +5862 2 251.7887 382.9757 38.3645 0.1144 5861 +5863 2 250.6698 382.8007 38.1321 0.1144 5862 +5864 2 249.5808 382.4724 37.844 0.1144 5863 +5865 2 248.6862 381.8409 37.4629 0.1144 5864 +5866 2 248.1851 380.8536 36.9821 0.1144 5865 +5867 2 247.8751 379.7805 36.3941 0.1144 5866 +5868 2 248.0329 378.7235 35.7249 0.1144 5867 +5869 2 248.6061 377.8449 34.8743 0.1144 5868 +5870 2 248.272 377.2111 33.3385 0.1144 5869 +5871 2 247.9059 376.3405 32.0001 0.1144 5870 +5872 2 247.517 375.391 30.7829 0.1144 5871 +5873 2 247.3843 374.3225 29.8519 0.1144 5872 +5874 2 247.3854 373.2231 29.0895 0.1144 5873 +5875 2 247.7343 372.1684 28.4939 0.1144 5874 +5876 2 248.2183 371.1491 28.0353 0.1144 5875 +5877 2 248.7903 370.1709 27.6594 0.1144 5876 +5878 2 248.6198 369.0967 27.1899 0.1144 5877 +5879 2 247.7481 368.3863 26.6894 0.1144 5878 +5880 2 247.0754 367.4848 26.1789 0.1144 5879 +5881 2 246.5011 366.5182 25.6616 0.1144 5880 +5882 2 245.9097 365.5652 25.1129 0.1144 5881 +5883 2 245.1134 364.785 24.478 0.1144 5882 +5884 2 244.1811 364.1993 23.7274 0.1144 5883 +5885 2 243.243 363.6501 22.8544 0.1144 5884 +5886 2 242.2328 363.6296 21.6339 0.1144 5885 +5887 2 241.5281 364.1329 19.9266 0.1144 5886 +5888 2 241.2513 364.467 17.3384 0.1144 5887 +5889 2 240.7113 364.3526 15.0456 0.1144 5888 +5890 2 240.049 363.6273 13.6092 0.1144 5889 +5891 2 239.3626 362.8619 12.3879 0.1144 5890 +5892 2 238.6407 362.0577 11.469 0.1144 5891 +5893 2 237.9005 361.2317 10.7827 0.1144 5892 +5894 2 237.1489 360.3943 10.2734 0.1144 5893 +5895 2 236.2543 359.7045 9.8433 0.1144 5894 +5896 2 235.1938 359.3121 9.4154 0.1144 5895 +5897 2 234.1299 358.93 8.9937 0.1144 5896 +5898 2 233.0236 358.6749 8.6493 0.1144 5897 +5899 2 231.8968 358.5193 8.3636 0.1144 5898 +5900 2 230.7768 358.4129 7.8529 0.1144 5899 +5901 2 266.2797 390.1681 39.7712 0.1144 5846 +5902 2 265.2456 390.5399 39.2862 0.1144 5901 +5903 2 264.1496 390.8625 39.1555 0.1144 5902 +5904 2 263.0331 391.1096 39.1558 0.1144 5903 +5905 2 261.9142 391.3452 39.2633 0.1144 5904 +5906 2 260.9247 391.9104 39.4355 0.1144 5905 +5907 2 260.1307 392.7306 39.6071 0.1144 5906 +5908 2 259.1183 393.2614 39.676 0.1144 5907 +5909 2 258.1036 393.7888 39.6393 0.1144 5908 +5910 2 257.0888 394.3162 39.5139 0.1144 5909 +5911 2 256.0752 394.8402 39.3347 0.1144 5910 +5912 2 254.945 394.9969 39.13 0.1144 5911 +5913 2 253.825 395.1513 38.703 0.1144 5912 +5914 2 322.4913 415.5283 76.1062 0.1144 5778 +5915 2 321.7454 414.7137 76.3496 0.1144 5914 +5916 2 321.4343 413.6349 76.6654 0.1144 5915 +5917 2 321.2421 412.5138 76.9488 0.1144 5916 +5918 2 320.8703 411.443 77.1624 0.1144 5917 +5919 2 320.3806 410.4111 77.3158 0.1144 5918 +5920 2 319.8086 409.425 77.4155 0.1144 5919 +5921 2 319.144 408.4949 77.4721 0.1144 5920 +5922 2 318.5365 407.5283 77.5088 0.1144 5921 +5923 2 318.0343 406.5021 77.5477 0.1144 5922 +5924 2 317.4371 405.5343 77.597 0.1144 5923 +5925 2 316.7153 404.6488 77.6924 0.1144 5924 +5926 2 316.2062 403.6478 77.8277 0.1144 5925 +5927 2 315.8962 402.5484 77.9604 0.1144 5926 +5928 2 315.4843 401.4868 78.0822 0.1144 5927 +5929 2 315.0656 400.4252 78.2116 0.1144 5928 +5930 2 314.5119 399.4356 78.3703 0.1144 5929 +5931 2 313.8507 398.5044 78.5352 0.1144 5930 +5932 2 313.1265 397.6247 78.7514 0.1144 5931 +5933 2 312.2788 396.8628 78.9228 0.1144 5932 +5934 2 311.5856 395.9636 79.0426 0.1144 5933 +5935 2 310.874 395.069 79.1291 0.1144 5934 +5936 2 310.0743 394.2521 79.1874 0.1144 5935 +5937 2 309.4474 393.3026 79.2492 0.1144 5936 +5938 2 308.9578 392.2696 79.3299 0.1144 5937 +5939 2 308.5448 391.2045 79.4094 0.1144 5938 +5940 2 308.0506 390.1738 79.4637 0.1144 5939 +5941 2 307.4122 389.2266 79.49 0.1144 5940 +5942 2 306.9935 388.1672 79.4917 0.1144 5941 +5943 2 306.6526 387.0758 79.4251 0.1144 5942 +5944 2 306.0932 386.0828 79.3296 0.1144 5943 +5945 2 305.3805 385.1894 79.2509 0.1144 5944 +5946 2 304.8634 384.1735 79.1958 0.1144 5945 +5947 2 304.1747 383.2629 79.1655 0.1144 5946 +5948 2 303.5364 382.3134 79.161 0.1144 5947 +5949 2 302.9449 381.3341 79.1801 0.1144 5948 +5950 2 302.5388 380.2667 79.2126 0.1144 5949 +5951 2 302.1144 379.204 79.2515 0.1144 5950 +5952 2 301.8719 378.0886 79.3251 0.1144 5951 +5953 2 301.7357 376.9549 79.4973 0.1144 5952 +5954 2 300.7851 376.3417 79.5735 0.1144 5953 +5955 2 300.403 376.4687 79.2798 0.1144 5954 +5956 2 299.2967 376.6551 79.0723 0.1144 5955 +5957 2 298.1642 376.8096 79.1126 0.1144 5956 +5958 2 297.0407 376.6528 79.0174 0.1144 5957 +5959 2 295.9048 376.6368 78.7402 0.1144 5958 +5960 2 295.3648 377.6092 78.4745 0.1144 5959 +5961 2 294.4278 378.2567 78.2583 0.1144 5960 +5962 2 293.3216 378.5382 78.129 0.1144 5961 +5963 2 292.2199 378.8448 78.0534 0.1144 5962 +5964 2 291.0977 379.0633 77.9635 0.1144 5963 +5965 2 289.9754 379.2829 77.8422 0.1144 5964 +5966 2 288.8783 379.6009 77.6891 0.1144 5965 +5967 2 287.7915 379.9499 77.5054 0.1144 5966 +5968 2 286.8168 379.3527 77.1509 0.1144 5967 +5969 2 285.7563 378.9557 76.7673 0.1144 5968 +5970 2 284.7027 378.5542 76.2986 0.1144 5969 +5971 2 283.6422 378.2522 75.8167 0.1144 5970 +5972 2 282.5245 378.3483 75.3141 0.1144 5971 +5973 2 281.4217 378.5771 74.8171 0.1144 5972 +5974 2 280.3189 378.8093 74.3425 0.1144 5973 +5975 2 279.2378 378.7967 73.9301 0.1144 5974 +5976 2 278.2071 378.3185 73.6268 0.1144 5975 +5977 2 277.1752 377.8346 73.3978 0.1144 5976 +5978 2 276.1193 377.4022 73.2035 0.1144 5977 +5979 2 275.0542 376.9903 73.0206 0.1144 5978 +5980 2 274.0006 376.5522 72.8451 0.1144 5979 +5981 2 272.9515 376.0992 72.6802 0.1144 5980 +5982 2 271.9036 375.6461 72.5396 0.1144 5981 +5983 2 270.8557 375.1862 72.443 0.1144 5982 +5984 2 270.0755 374.4827 72.49 0.1144 5983 +5985 2 269.7232 373.4027 72.8095 0.1144 5984 +5986 2 268.9784 372.9646 73.414 0.1144 5985 +5987 2 267.8516 372.9783 73.8867 0.1144 5986 +5988 2 266.7179 372.9348 74.251 0.1144 5987 +5989 2 265.5796 372.9509 74.5186 0.1144 5988 +5990 2 264.4756 373.2323 74.695 0.1144 5989 +5991 2 263.4174 373.6601 74.8168 0.1144 5990 +5992 2 262.4588 374.2813 74.9232 0.1144 5991 +5993 2 261.571 375.0009 75.0677 0.1144 5992 +5994 2 260.7565 375.7994 75.2718 0.1144 5993 +5995 2 260.2966 376.8359 75.5336 0.1144 5994 +5996 2 260.2714 377.9707 75.8212 0.1144 5995 +5997 2 260.7279 379.0118 76.0995 0.1144 5996 +5998 2 260.9613 380.1215 76.4431 0.1144 5997 +5999 2 261.0734 381.2472 76.8558 0.1144 5998 +6000 2 260.7908 382.334 77.3651 0.1144 5999 +6001 2 260.3355 383.3704 77.7857 0.1144 6000 +6002 2 259.8688 384.4034 78.1511 0.1144 6001 +6003 2 259.3803 385.4228 78.4812 0.1144 6002 +6004 2 258.687 386.0531 78.7875 0.1144 6003 +6005 2 259.5256 386.4432 79.5819 0.1144 6004 +6006 2 259.64 385.9982 80.4258 0.1144 6005 +6007 2 259.0005 385.1127 81.2137 0.1144 6006 +6008 2 258.3083 384.265 82.0333 0.1144 6007 +6009 2 257.6174 383.4208 82.8752 0.1144 6008 +6010 2 256.5717 383.5946 83.7878 0.1144 6009 +6011 2 255.5719 384.0179 84.6714 0.1144 6010 +6012 2 254.6338 384.567 85.5081 0.1144 6011 +6013 2 254.0012 385.4639 86.2982 0.1144 6012 +6014 2 253.4795 386.4329 87.0615 0.1144 6013 +6015 2 252.9567 387.4019 87.8237 0.1144 6014 +6016 2 252.8183 388.6912 88.1748 0.1144 6015 +6017 2 252.697 389.8226 88.4584 0.1144 6016 +6018 2 252.5083 390.9437 88.7687 0.1144 6017 +6019 2 252.1788 392.0316 89.0736 0.1144 6018 +6020 2 252.0266 393.1528 89.4824 0.1144 6019 +6021 2 251.9466 394.275 89.9909 0.1144 6020 +6022 2 251.799 395.3904 90.487 0.1144 6021 +6023 2 251.6159 396.5047 90.9437 0.1144 6022 +6024 2 251.553 397.6258 91.4656 0.1144 6023 +6025 2 251.5073 398.6794 92.5509 0.1144 6024 +6026 2 252.0209 387.1845 88.9787 0.1144 6015 +6027 2 250.9547 386.9317 89.7854 0.1144 6026 +6028 2 250.3838 386.3894 91.1666 0.1144 6027 +6029 2 251.1297 386.5885 92.7814 0.1144 6028 +6030 2 251.7258 387.2486 94.5311 0.1144 6029 +6031 2 252.3286 387.8766 96.3099 0.1144 6030 +6032 2 252.3264 388.3651 98.7311 0.1144 6031 +6033 2 252.4488 387.9865 101.1338 0.1144 6032 +6034 2 252.3756 387.2417 103.024 0.1144 6033 +6035 2 252.0003 386.7589 105.2299 0.1144 6034 +6036 2 252.0358 386.0989 107.3957 0.1144 6035 +6037 2 252.1387 385.2569 109.275 0.1144 6036 +6038 2 252.3126 384.408 111.043 0.1144 6037 +6039 2 252.9659 383.6736 112.4416 0.1144 6038 +6040 2 253.857 383.1016 113.4958 0.1144 6039 +6041 2 254.7711 382.5147 114.3708 0.1144 6040 +6042 2 255.6451 381.9553 115.5484 0.1144 6041 +6043 2 287.2573 380.0894 77.9027 0.1144 5967 +6044 2 286.1727 380.3903 78.3348 0.1144 6043 +6045 2 285.1054 380.7896 78.4767 0.1144 6044 +6046 2 284.0964 381.3249 78.5333 0.1144 6045 +6047 2 283.1389 381.9484 78.6198 0.1144 6046 +6048 2 282.4033 382.7938 79.0023 0.1144 6047 +6049 2 281.8553 383.7662 79.5992 0.1144 6048 +6050 2 281.1529 384.6265 80.2553 0.1144 6049 +6051 2 280.1153 385.0407 80.8559 0.1144 6050 +6052 2 279.0296 385.3026 81.4568 0.1144 6051 +6053 2 277.9726 385.631 82.159 0.1144 6052 +6054 2 276.9921 386.1446 82.8537 0.1144 6053 +6055 2 276.0941 386.8047 83.4655 0.1144 6054 +6056 2 275.3585 387.6238 84.0358 0.1144 6055 +6057 2 275.0611 388.706 84.5368 0.1144 6056 +6058 2 274.5497 389.7082 84.8901 0.1144 6057 +6059 2 273.8164 390.581 85.1094 0.1144 6058 +6060 2 273.0751 391.4516 85.2505 0.1144 6059 +6061 2 272.312 392.3028 85.2894 0.1144 6060 +6062 2 271.5456 393.1505 85.2782 0.1144 6061 +6063 2 270.8431 394.0462 85.4938 0.1144 6062 +6064 2 270.1899 394.9557 86.0471 0.1144 6063 +6065 2 269.4898 395.8068 86.7846 0.1144 6064 +6066 2 268.5963 396.4166 87.5711 0.1144 6065 +6067 2 267.5484 396.7186 88.342 0.1144 6066 +6068 2 266.4548 396.8891 89.0487 0.1144 6067 +6069 2 265.3794 397.1705 89.6717 0.1144 6068 +6070 2 264.4345 397.7516 90.2056 0.1144 6069 +6071 2 263.5822 398.4941 90.6209 0.1144 6070 +6072 2 262.6613 399.1576 90.8975 0.1144 6071 +6073 2 261.6248 399.6221 91.0832 0.1144 6072 +6074 2 260.5449 399.995 91.2318 0.1144 6073 +6075 2 259.4626 400.3634 91.3405 0.1144 6074 +6076 2 258.3449 400.5682 91.5183 0.1144 6075 +6077 2 257.2124 400.6139 91.859 0.1144 6076 +6078 2 256.3658 401.2706 92.3586 0.1144 6077 +6079 2 255.6989 402.1698 92.9214 0.1144 6078 +6080 2 255.2996 403.2154 93.4458 0.1144 6079 +6081 2 254.961 404.2919 93.9109 0.1144 6080 +6082 2 254.6807 405.3901 94.2948 0.1144 6081 +6083 2 254.6956 406.525 94.5605 0.1144 6082 +6084 2 254.961 407.6335 94.7279 0.1144 6083 +6085 2 255.4266 408.6757 94.8259 0.1144 6084 +6086 2 255.8178 409.7488 94.9298 0.1144 6085 +6087 2 256.3212 410.7749 95.0121 0.1144 6086 +6088 2 256.9035 411.7599 95.0494 0.1144 6087 +6089 2 257.4972 412.738 95.0432 0.1144 6088 +6090 2 258.091 413.715 94.9911 0.1144 6089 +6091 2 258.6847 414.692 94.89 0.1144 6090 +6092 2 259.5679 415.4058 94.6943 0.1144 6091 +6093 2 260.5517 415.9767 94.4124 0.1144 6092 +6094 2 261.5024 416.5968 94.0607 0.1144 6093 +6095 2 262.2597 417.433 93.6258 0.1144 6094 +6096 2 262.9942 418.2876 93.1496 0.1144 6095 +6097 2 263.5856 419.2485 92.7044 0.1144 6096 +6098 2 263.6634 420.3822 92.3902 0.1144 6097 +6099 2 263.6348 421.5228 92.1824 0.1144 6098 +6100 2 263.6119 422.6657 92.0618 0.1144 6099 +6101 2 263.589 423.8097 92.006 0.1144 6100 +6102 2 263.5673 424.9537 91.9901 0.1144 6101 +6103 2 263.541 426.0965 91.9901 0.1144 6102 +6104 2 263.5147 427.2405 91.9901 0.1144 6103 +6105 2 300.6558 375.812 79.6278 0.1144 5954 +6106 2 300.491 374.6806 79.655 0.1144 6105 +6107 2 300.451 373.5377 79.6648 0.1144 6106 +6108 2 300.3378 372.42 79.6606 0.1144 6107 +6109 2 299.7257 371.4557 79.6519 0.1144 6108 +6110 2 299.0416 370.5393 79.6527 0.1144 6109 +6111 2 298.4284 369.5738 79.6538 0.1144 6110 +6112 2 297.8747 368.5728 79.6555 0.1144 6111 +6113 2 297.392 367.5489 79.6578 0.1144 6112 +6114 2 297.1094 366.4461 79.6611 0.1144 6113 +6115 2 296.5854 365.4348 79.6656 0.1144 6114 +6116 2 295.9368 364.4933 79.6718 0.1144 6115 +6117 2 295.4414 363.4751 79.6802 0.1144 6116 +6118 2 295.1726 362.3631 79.693 0.1144 6117 +6119 2 294.9015 361.2523 79.7107 0.1144 6118 +6120 2 294.6795 360.1301 79.7345 0.1144 6119 +6121 2 294.4564 359.0078 79.763 0.1144 6120 +6122 2 294.2093 357.8912 79.8098 0.1144 6121 +6123 2 293.8627 356.8079 79.8986 0.1144 6122 +6124 2 293.3937 355.7691 79.9901 0.1144 6123 +6125 2 293.1477 354.6629 80.0607 0.1144 6124 +6126 2 293.1248 353.5189 80.094 0.1144 6125 +6127 2 292.9155 352.4252 80.0733 0.1144 6126 +6128 2 292.2771 351.4814 80.0685 0.1144 6127 +6129 2 291.6857 350.5468 80.1102 0.1144 6128 +6130 2 291.5118 349.4199 80.248 0.1144 6129 +6131 2 291.3047 348.3125 80.4488 0.1144 6130 +6132 2 290.8631 347.2601 80.6263 0.1144 6131 +6133 2 290.4948 346.187 80.801 0.1144 6132 +6134 2 290.298 345.0613 80.9416 0.1144 6133 +6135 2 290.0669 343.9447 81.0172 0.1144 6134 +6136 2 289.8015 342.8339 81.0827 0.1144 6135 +6137 2 289.5979 341.7094 81.1306 0.1144 6136 +6138 2 289.1815 340.666 81.1437 0.1144 6137 +6139 2 288.5225 339.7314 81.1042 0.1144 6138 +6140 2 287.9116 338.7693 81.0407 0.1144 6139 +6141 2 287.4083 337.742 80.9998 0.1144 6140 +6142 2 286.9152 336.7101 80.9998 0.1144 6141 +6143 2 286.2826 335.7686 81.0306 0.1144 6142 +6144 2 285.4291 335.0204 81.0522 0.1144 6143 +6145 2 284.4956 334.3592 81.0642 0.1144 6144 +6146 2 283.7555 333.5172 81.0743 0.1144 6145 +6147 2 283.3505 332.4601 81.0972 0.1144 6146 +6148 2 282.902 331.4225 81.2151 0.1144 6147 +6149 2 282.457 330.3895 81.6175 0.1144 6148 +6150 2 281.9788 329.3748 82.15 0.1144 6149 +6151 2 281.1357 328.6334 82.5801 0.1144 6150 +6152 2 280.5889 327.6473 82.9296 0.1144 6151 +6153 2 279.9654 326.6932 83.1883 0.1144 6152 +6154 2 279.6428 325.6076 83.4988 0.1144 6153 +6155 2 279.2172 324.5494 83.7264 0.1144 6154 +6156 2 278.6818 323.5404 83.8838 0.1144 6155 +6157 2 278.1808 322.513 83.9944 0.1144 6156 +6158 2 277.7838 322.2053 84.028 0.1144 6157 +6159 2 276.8514 321.5441 84.0784 0.1144 6158 +6160 2 276.2886 320.6483 84.0868 0.1144 6159 +6161 2 275.8664 319.5981 84.0703 0.1144 6160 +6162 2 275.2292 318.652 84.0434 0.1144 6161 +6163 2 274.5726 317.7163 84.0092 0.1144 6162 +6164 2 273.9994 316.7278 83.967 0.1144 6163 +6165 2 273.225 315.9305 83.8695 0.1144 6164 +6166 2 272.3944 315.1571 83.75 0.1144 6165 +6167 2 271.6302 314.3071 83.6506 0.1144 6166 +6168 2 270.9255 313.4091 83.566 0.1144 6167 +6169 2 270.4679 312.3761 83.4935 0.1144 6168 +6170 2 270.0801 311.3018 83.4299 0.1144 6169 +6171 2 269.6728 310.2334 83.3652 0.1144 6170 +6172 2 269.3937 309.1282 83.263 0.1144 6171 +6173 2 269.1271 308.0186 83.1312 0.1144 6172 +6174 2 268.4373 307.1651 82.9968 0.1144 6173 +6175 2 267.5393 306.4593 82.8442 0.1144 6174 +6176 2 266.7648 305.6276 82.7187 0.1144 6175 +6177 2 266.1024 304.6964 82.6423 0.1144 6176 +6178 2 265.3737 303.8178 82.6098 0.1144 6177 +6179 2 264.6072 302.969 82.6134 0.1144 6178 +6180 2 264.1599 301.9336 82.6568 0.1144 6179 +6181 2 263.7686 300.8594 82.7543 0.1144 6180 +6182 2 263.4174 299.7715 82.8775 0.1144 6181 +6183 2 263.2012 298.6515 82.9976 0.1144 6182 +6184 2 263.1589 297.5098 83.0606 0.1144 6183 +6185 2 263.1417 296.3669 83.1393 0.1144 6184 +6186 2 262.9976 295.2367 83.3549 0.1144 6185 +6187 2 262.7413 294.127 83.6189 0.1144 6186 +6188 2 262.397 293.0436 83.9289 0.1144 6187 +6189 2 262.2426 291.9179 84.2346 0.1144 6188 +6190 2 261.9543 290.8208 84.5883 0.1144 6189 +6191 2 261.6202 289.7352 84.9184 0.1144 6190 +6192 2 261.5539 288.6037 85.2726 0.1144 6191 +6193 2 261.5527 287.4678 85.5994 0.1144 6192 +6194 2 261.3491 286.3558 86.0188 0.1144 6193 +6195 2 260.8503 286.1716 86.5774 0.1144 6194 +6196 2 259.7395 286.1213 87.061 0.1144 6195 +6197 2 258.6092 285.9657 87.2245 0.1144 6196 +6198 2 257.5133 285.6454 87.3303 0.1144 6197 +6199 2 256.447 285.2335 87.4056 0.1144 6198 +6200 2 255.4152 284.7393 87.4516 0.1144 6199 +6201 2 254.3512 284.3218 87.4712 0.1144 6200 +6202 2 253.2724 283.9408 87.4667 0.1144 6201 +6203 2 252.2268 283.4763 87.4527 0.1144 6202 +6204 2 251.2693 282.8529 87.4297 0.1144 6203 +6205 2 250.4845 282.0257 87.3933 0.1144 6204 +6206 2 249.8908 281.0499 87.3729 0.1144 6205 +6207 2 249.0511 280.2811 87.3424 0.1144 6206 +6208 2 247.9288 280.2365 87.2029 0.1144 6207 +6209 2 246.7894 280.2491 86.9814 0.1144 6208 +6210 2 245.65 280.2606 86.7177 0.1144 6209 +6211 2 245.1489 279.1474 86.5889 0.1144 6210 +6212 2 244.4625 278.238 86.6023 0.1144 6211 +6213 2 243.7303 277.3617 86.688 0.1144 6212 +6214 2 243.1126 276.4053 86.8512 0.1144 6213 +6215 2 242.6184 275.3791 87.0778 0.1144 6214 +6216 2 242.1493 274.3438 87.3905 0.1144 6215 +6217 2 241.511 273.4183 87.7568 0.1144 6216 +6218 2 240.6816 272.6449 88.0379 0.1144 6217 +6219 2 239.7744 271.9528 88.202 0.1144 6218 +6220 2 238.8855 271.2344 88.275 0.1144 6219 +6221 2 238.0858 270.421 88.3002 0.1144 6220 +6222 2 237.3468 269.547 88.3075 0.1144 6221 +6223 2 236.6215 268.6627 88.3168 0.1144 6222 +6224 2 235.8962 267.7772 88.3392 0.1144 6223 +6225 2 235.1618 266.9009 88.3663 0.1144 6224 +6226 2 234.3976 266.0498 88.3758 0.1144 6225 +6227 2 233.6082 265.2215 88.3512 0.1144 6226 +6228 2 232.8132 264.4001 88.2938 0.1144 6227 +6229 2 232.0169 263.5787 88.2109 0.1144 6228 +6230 2 231.2218 262.7574 88.1096 0.1144 6229 +6231 2 230.4382 261.9257 87.9928 0.1144 6230 +6232 2 229.6717 261.078 87.8615 0.1144 6231 +6233 2 228.9133 260.2234 87.7223 0.1144 6232 +6234 2 228.1548 259.3688 87.584 0.1144 6233 +6235 2 227.3975 258.5131 87.4549 0.1144 6234 +6236 2 226.6161 257.6791 87.3502 0.1144 6235 +6237 2 225.789 256.8898 87.2883 0.1144 6236 +6238 2 224.8818 256.1977 87.2836 0.1144 6237 +6239 2 223.8614 255.6966 87.3488 0.1144 6238 +6240 2 222.8443 255.1818 87.4824 0.1144 6239 +6241 2 221.952 254.4794 87.6616 0.1144 6240 +6242 2 220.9579 253.9531 87.85 0.1144 6241 +6243 2 219.8551 253.6706 88.0124 0.1144 6242 +6244 2 218.7362 253.4372 88.1426 0.1144 6243 +6245 2 217.678 253.0208 88.226 0.1144 6244 +6246 2 217.0111 252.149 88.2193 0.1144 6245 +6247 2 216.5031 251.1252 88.1269 0.1144 6246 +6248 2 215.5593 251.227 88.0855 0.1144 6247 +6249 2 214.5252 251.7155 88.1289 0.1144 6248 +6250 2 213.5036 252.2303 88.198 0.1144 6249 +6251 2 212.5255 252.8229 88.1521 0.1144 6250 +6252 2 211.5565 253.4269 87.9939 0.1144 6251 +6253 2 210.591 254.0309 87.7489 0.1144 6252 +6254 2 209.6266 254.6327 87.4395 0.1144 6253 +6255 2 208.6153 255.1635 87.2536 0.1144 6254 +6256 2 208.2206 255.2264 87.1847 0.1144 6255 +6257 2 207.0926 255.4072 87.0856 0.1144 6256 +6258 2 205.9623 255.589 87.0537 0.1144 6257 +6259 2 204.8332 255.7698 87.0492 0.1144 6258 +6260 2 203.7041 255.9506 87.0537 0.1144 6259 +6261 2 202.5738 256.1324 87.0514 0.1144 6260 +6262 2 201.4447 256.3132 87.0461 0.1144 6261 +6263 2 200.3155 256.494 87.0411 0.1144 6262 +6264 2 199.1853 256.6758 87.0363 0.1144 6263 +6265 2 198.0561 256.8566 87.0316 0.1144 6264 +6266 2 196.9259 257.0374 87.0274 0.1144 6265 +6267 2 195.7967 257.2192 87.0237 0.1144 6266 +6268 2 194.6676 257.4 87.0209 0.1144 6267 +6269 2 193.5373 257.5808 87.0195 0.1144 6268 +6270 2 192.4082 257.7615 87.0195 0.1144 6269 +6271 2 191.2779 257.9434 87.022 0.1144 6270 +6272 2 190.1488 258.1242 87.0276 0.1144 6271 +6273 2 189.0197 258.3049 87.0377 0.1144 6272 +6274 2 187.8894 258.4868 87.054 0.1144 6273 +6275 2 186.7603 258.6676 87.0794 0.1144 6274 +6276 2 185.6312 258.8483 87.1175 0.1144 6275 +6277 2 184.5009 259.0302 87.1721 0.1144 6276 +6278 2 183.3718 259.211 87.246 0.1144 6277 +6279 2 182.2369 259.3437 87.3617 0.1144 6278 +6280 2 181.0986 259.4157 87.5384 0.1144 6279 +6281 2 179.9592 259.4706 87.7685 0.1144 6280 +6282 2 178.8221 259.5256 88.037 0.1144 6281 +6283 2 177.6861 259.5805 88.3294 0.1144 6282 +6284 2 176.5501 259.6354 88.6315 0.1144 6283 +6285 2 175.4141 259.6914 88.9291 0.1144 6284 +6286 2 174.277 259.7463 89.2114 0.1144 6285 +6287 2 173.1387 259.8024 89.4723 0.1144 6286 +6288 2 172.0004 259.8573 89.7086 0.1144 6287 +6289 2 170.9285 260.2085 89.8988 0.1144 6288 +6290 2 170.0476 260.9212 89.9996 0.1144 6289 +6291 2 169.2056 261.6946 90.0304 0.1144 6290 +6292 2 168.3625 262.4691 90.0127 0.1144 6291 +6293 2 167.5205 263.2424 89.964 0.1144 6292 +6294 2 166.6785 264.0169 89.9018 0.1144 6293 +6295 2 165.8354 264.7891 89.8425 0.1144 6294 +6296 2 164.9923 265.5636 89.7985 0.1144 6295 +6297 2 164.1503 266.3369 89.7778 0.1144 6296 +6298 2 163.3071 267.1114 89.7879 0.1144 6297 +6299 2 162.4652 267.8836 89.8349 0.1144 6298 +6300 2 161.4722 268.4362 89.9606 0.1144 6299 +6301 2 160.4277 268.0358 90.2124 0.1144 6300 +6302 2 159.3867 267.585 90.5702 0.1144 6301 +6303 2 158.349 267.1366 91.005 0.1144 6302 +6304 2 157.316 266.6881 91.4914 0.1144 6303 +6305 2 156.283 266.242 92.006 0.1144 6304 +6306 2 155.2419 265.821 92.5352 0.1144 6305 +6307 2 154.2661 266.377 93.042 0.1144 6306 +6308 2 153.2891 266.9375 93.5379 0.1144 6307 +6309 2 152.3122 267.4981 94.0251 0.1144 6308 +6310 2 151.334 268.0586 94.5064 0.1144 6309 +6311 2 150.3559 268.6192 94.9841 0.1144 6310 +6312 2 149.3789 269.1809 95.4593 0.1144 6311 +6313 2 148.4008 269.7415 95.9344 0.1144 6312 +6314 2 147.4227 270.302 96.4093 0.1144 6313 +6315 2 146.4446 270.8637 96.8839 0.1144 6314 +6316 2 145.4665 271.4243 97.358 0.1144 6315 +6317 2 144.4883 271.986 97.8306 0.1144 6316 +6318 2 143.5102 272.5466 98.3027 0.1144 6317 +6319 2 142.5321 273.1083 98.7728 0.1144 6318 +6320 2 141.554 273.67 99.2412 0.1144 6319 +6321 2 140.5759 274.2305 99.706 0.1144 6320 +6322 2 139.5966 274.7922 100.1666 0.1144 6321 +6323 2 138.6173 275.3539 100.6205 0.1144 6322 +6324 2 137.6381 275.9156 101.0668 0.1144 6323 +6325 2 136.6577 276.4796 101.5014 0.1144 6324 +6326 2 135.7676 277.1775 101.9124 0.1144 6325 +6327 2 134.8787 277.8799 102.3036 0.1144 6326 +6328 2 133.9899 278.5834 102.669 0.1144 6327 +6329 2 133.2257 279.4243 102.9924 0.1144 6328 +6330 2 132.7418 280.4562 103.2494 0.1144 6329 +6331 2 132.2556 281.4881 103.4536 0.1144 6330 +6332 2 131.7716 282.5165 103.7694 0.1144 6331 +6333 2 207.8065 255.5101 88.2 0.1144 6255 +6334 2 206.9427 255.8808 89.7842 0.1144 6333 +6335 2 206.0138 256.3704 90.8404 0.1144 6334 +6336 2 205.0906 256.8955 91.8826 0.1144 6335 +6337 2 204.1674 257.44 92.8586 0.1144 6336 +6338 2 203.2339 258.0143 93.6586 0.1144 6337 +6339 2 202.2878 258.5966 94.3286 0.1144 6338 +6340 2 201.6792 259.2682 92.9306 0.1144 6339 +6341 2 201.6632 260.2657 91.8627 0.1144 6340 +6342 2 201.9149 261.3182 90.9572 0.1144 6341 +6343 2 202.178 262.3627 90.015 0.1144 6342 +6344 2 202.2317 263.4392 89.0814 0.1144 6343 +6345 2 201.7822 264.4299 88.2437 0.1144 6344 +6346 2 201.2571 265.4011 87.5146 0.1144 6345 +6347 2 200.7262 266.3781 86.8538 0.1144 6346 +6348 2 201.1987 267.3688 86.2428 0.1144 6347 +6349 2 201.9126 268.2394 85.7371 0.1144 6348 +6350 2 202.6333 269.1066 85.2715 0.1144 6349 +6351 2 203.3552 269.976 84.8375 0.1144 6350 +6352 2 204.0782 270.8466 84.4348 0.1144 6351 +6353 2 204.466 271.9105 84.0543 0.1144 6352 +6354 2 204.4179 273.0442 83.6965 0.1144 6353 +6355 2 204.3722 274.1527 83.0155 0.1144 6354 +6356 2 203.3506 258.4982 94.8676 0.1144 6339 +6357 2 204.474 258.3941 95.3299 0.1144 6356 +6358 2 205.6054 258.2797 95.6245 0.1144 6357 +6359 2 206.7414 258.1539 95.7466 0.1144 6358 +6360 2 207.8785 258.0269 95.7457 0.1144 6359 +6361 2 209.0157 257.9011 95.6572 0.1144 6360 +6362 2 210.1505 257.7752 95.5142 0.1144 6361 +6363 2 211.2854 257.6482 95.3534 0.1144 6362 +6364 2 212.4214 257.5224 95.2078 0.1144 6363 +6365 2 212.8172 256.6164 95.1446 0.1144 6364 +6366 2 213.2759 255.5685 95.1734 0.1144 6365 +6367 2 213.7335 254.5206 95.2739 0.1144 6366 +6368 2 214.1923 253.4749 95.4268 0.1144 6367 +6369 2 214.6487 252.4293 95.6318 0.1144 6368 +6370 2 215.1052 251.3848 95.8894 0.1144 6369 +6371 2 215.5765 250.3507 96.2094 0.1144 6370 +6372 2 216.3407 249.5487 96.6792 0.1144 6371 +6373 2 217.2799 248.955 97.3134 0.1144 6372 +6374 2 218.2283 248.399 98.0916 0.1144 6373 +6375 2 219.1618 247.851 98.9918 0.1144 6374 +6376 2 220.0793 247.3065 100.0017 0.1144 6375 +6377 2 220.8835 246.7368 101.4014 0.1144 6376 +6378 2 220.5323 246.254 103.6174 0.1144 6377 +6379 2 220.1617 245.6157 105.5992 0.1144 6378 +6380 2 220.0953 244.7771 107.4959 0.1144 6379 +6381 2 220.0976 243.8814 109.2342 0.1144 6380 +6382 2 220.8435 243.1023 110.0896 0.1144 6381 +6383 2 221.6408 242.2992 110.5003 0.1144 6382 +6384 2 212.8721 257.6059 94.6865 0.1144 6364 +6385 2 213.9841 257.8118 94.274 0.1144 6384 +6386 2 215.1063 258.02 94.0971 0.1144 6385 +6387 2 216.2286 258.2283 93.8834 0.1144 6386 +6388 2 217.3497 258.4365 93.6502 0.1144 6387 +6389 2 218.4697 258.6447 93.4108 0.1144 6388 +6390 2 219.5908 258.8517 93.179 0.1144 6389 +6391 2 220.7119 259.0599 92.9636 0.1144 6390 +6392 2 221.825 259.2659 92.5509 0.1144 6391 +6393 2 245.571 280.2663 85.7503 0.1144 6210 +6394 2 244.5231 280.2789 84.6306 0.1144 6393 +6395 2 243.4443 279.9643 84.1148 0.1144 6394 +6396 2 242.4571 279.4357 83.5537 0.1144 6395 +6397 2 241.4092 279.0639 82.9276 0.1144 6396 +6398 2 240.3109 279.1932 82.2335 0.1144 6397 +6399 2 239.2733 279.5799 81.5318 0.1144 6398 +6400 2 238.2391 279.9734 80.827 0.1144 6399 +6401 2 237.2496 280.4642 80.1111 0.1144 6400 +6402 2 236.3275 281.0785 79.4562 0.1144 6401 +6403 2 235.275 281.416 78.8301 0.1144 6402 +6404 2 234.1596 281.4229 78.2286 0.1144 6403 +6405 2 233.0534 281.233 77.8078 0.1144 6404 +6406 2 231.994 280.8177 77.5373 0.1144 6405 +6407 2 230.9564 280.407 76.9474 0.1144 6406 +6408 2 229.9566 280.018 75.9825 0.1144 6407 +6409 2 229.3686 280.1599 75.3278 0.1144 6408 +6410 2 228.3058 280.415 74.5111 0.1144 6409 +6411 2 227.2362 280.6724 73.7498 0.1144 6410 +6412 2 226.1585 280.9321 73.0503 0.1144 6411 +6413 2 225.0523 280.9275 72.3985 0.1144 6412 +6414 2 224.1508 280.312 71.778 0.1144 6413 +6415 2 223.3488 279.5353 71.1802 0.1144 6414 +6416 2 222.2986 279.1898 70.5874 0.1144 6415 +6417 2 221.1901 279.311 70.0389 0.1144 6416 +6418 2 220.1079 279.6096 69.5094 0.1144 6417 +6419 2 219.2419 280.312 68.966 0.1144 6418 +6420 2 218.2535 280.8451 68.4608 0.1144 6419 +6421 2 217.1587 281.1151 68.0193 0.1144 6420 +6422 2 216.0536 281.3542 67.5931 0.1144 6421 +6423 2 214.9496 281.5327 67.0127 0.1144 6422 +6424 2 213.8548 281.702 66.3146 0.1144 6423 +6425 2 213.6763 281.7878 65.6785 0.1144 6424 +6426 2 212.6147 282.044 64.8586 0.1144 6425 +6427 2 211.5313 282.2454 64.1077 0.1144 6426 +6428 2 210.4365 282.3667 63.3562 0.1144 6427 +6429 2 209.3348 282.449 62.6371 0.1144 6428 +6430 2 208.2526 282.6996 61.9696 0.1144 6429 +6431 2 207.1876 283.0325 61.3514 0.1144 6430 +6432 2 206.1202 283.3677 60.769 0.1144 6431 +6433 2 205.0517 283.7017 60.202 0.1144 6432 +6434 2 203.9741 283.9923 59.6456 0.1144 6433 +6435 2 202.8632 283.839 59.0957 0.1144 6434 +6436 2 201.7867 283.8447 58.3898 0.1144 6435 +6437 2 200.7823 284.2977 57.6428 0.1144 6436 +6438 2 199.7538 284.6981 56.917 0.1144 6437 +6439 2 198.7872 285.2289 56.2218 0.1144 6438 +6440 2 197.8685 285.8581 55.6175 0.1144 6439 +6441 2 196.8607 286.3546 55.1113 0.1144 6440 +6442 2 195.8105 286.7653 54.6431 0.1144 6441 +6443 2 194.8243 286.7985 54.0389 0.1144 6442 +6444 2 193.9149 286.2585 53.0471 0.1144 6443 +6445 2 193.1106 286.8935 52.0895 0.1144 6444 +6446 2 192.0158 287.0765 51.4178 0.1144 6445 +6447 2 192.1611 287.12 50.8936 0.1144 6446 +6448 2 192.5055 286.7699 50.0559 0.1144 6447 +6449 2 191.6669 286.1087 49.5603 0.1144 6448 +6450 2 190.5595 285.9039 49.2167 0.1144 6449 +6451 2 189.4224 285.8238 48.993 0.1144 6450 +6452 2 188.283 285.7426 48.8452 0.1144 6451 +6453 2 187.1424 285.6614 48.7648 0.1144 6452 +6454 2 186.0018 285.5802 48.7304 0.1144 6453 +6455 2 184.8601 285.4989 48.7138 0.1144 6454 +6456 2 183.7195 285.4188 48.7001 0.1144 6455 +6457 2 182.5778 285.3376 48.6864 0.1144 6456 +6458 2 181.4373 285.2564 48.6727 0.1144 6457 +6459 2 180.2955 285.1752 48.6592 0.1144 6458 +6460 2 179.155 285.0951 48.6461 0.1144 6459 +6461 2 178.0133 285.0139 48.6329 0.1144 6460 +6462 2 176.8727 284.9326 48.62 0.1144 6461 +6463 2 175.731 284.8514 48.6072 0.1144 6462 +6464 2 174.5904 284.7702 48.5948 0.1144 6463 +6465 2 173.4487 284.6901 48.5831 0.1144 6464 +6466 2 172.3081 284.6112 48.5719 0.1144 6465 +6467 2 171.1756 284.6913 48.5626 0.1144 6466 +6468 2 170.0522 284.9063 48.5551 0.1144 6467 +6469 2 168.9288 285.1226 48.5489 0.1144 6468 +6470 2 167.8054 285.3376 48.5433 0.1144 6469 +6471 2 166.6819 285.5538 48.5374 0.1144 6470 +6472 2 165.5585 285.7701 48.5296 0.1144 6471 +6473 2 164.4351 285.9851 48.5195 0.1144 6472 +6474 2 163.3117 286.2013 48.505 0.1144 6473 +6475 2 162.1883 286.4164 48.4845 0.1144 6474 +6476 2 161.0649 286.6315 48.4562 0.1144 6475 +6477 2 159.9415 286.8477 48.4168 0.1144 6476 +6478 2 158.8181 287.0639 48.3608 0.1144 6477 +6479 2 157.6947 287.279 48.2818 0.1144 6478 +6480 2 156.5724 287.4952 48.174 0.1144 6479 +6481 2 155.4502 287.7103 48.0323 0.1144 6480 +6482 2 154.3233 287.875 47.8097 0.1144 6481 +6483 2 153.1942 287.9928 47.4799 0.1144 6482 +6484 2 152.2046 288.4356 47.0361 0.1144 6483 +6485 2 151.4084 289.2261 46.5352 0.1144 6484 +6486 2 150.5618 289.9617 46.051 0.1144 6485 +6487 2 149.6295 290.5966 45.5955 0.1144 6486 +6488 2 148.6159 291.0851 45.1665 0.1144 6487 +6489 2 147.5211 291.1503 44.737 0.1144 6488 +6490 2 146.4766 290.7705 44.2529 0.1144 6489 +6491 2 145.4939 290.2339 43.6856 0.1144 6490 +6492 2 144.4929 289.7638 42.9853 0.1144 6491 +6493 2 143.4702 289.392 42.1327 0.1144 6492 +6494 2 142.4486 289.0556 41.179 0.1144 6493 +6495 2 141.4327 288.7227 40.1831 0.1144 6494 +6496 2 140.3917 288.4527 39.2266 0.1144 6495 +6497 2 139.3358 288.6575 38.4177 0.1144 6496 +6498 2 138.2844 289.0156 37.7541 0.1144 6497 +6499 2 137.2274 289.3874 37.1952 0.1144 6498 +6500 2 136.1646 289.7615 36.7088 0.1144 6499 +6501 2 135.0984 290.1356 36.2642 0.1144 6500 +6502 2 134.0322 290.5108 35.8322 0.1144 6501 +6503 2 132.9179 290.5989 35.3662 0.1144 6502 +6504 2 131.7945 290.5428 34.8628 0.1144 6503 +6505 2 130.6745 290.4662 34.3305 0.1144 6504 +6506 2 129.5569 290.3895 33.7576 0.1144 6505 +6507 2 128.4426 290.3129 33.1604 0.1144 6506 +6508 2 127.3272 290.2374 32.5606 0.1144 6507 +6509 2 126.2107 290.1607 31.9774 0.1144 6508 +6510 2 125.0918 290.0852 31.4222 0.1144 6509 +6511 2 125.2383 289.5453 29.7284 0.1144 6510 +6512 2 191.5308 287.2698 50.8326 0.1144 6446 +6513 2 190.5515 287.6577 49.737 0.1144 6512 +6514 2 189.5654 288.1542 49.0728 0.1144 6513 +6515 2 188.649 288.7914 48.4901 0.1144 6514 +6516 2 187.6766 289.329 47.8503 0.1144 6515 +6517 2 186.6219 289.6825 47.2304 0.1144 6516 +6518 2 185.5465 289.988 46.6357 0.1144 6517 +6519 2 184.4666 290.2866 46.0664 0.1144 6518 +6520 2 183.3809 290.5577 45.4969 0.1144 6519 +6521 2 182.2895 290.8025 44.9081 0.1144 6520 +6522 2 181.1982 291.0416 44.2957 0.1144 6521 +6523 2 180.1102 291.2796 43.6624 0.1144 6522 +6524 2 179.0223 291.5187 43.0181 0.1144 6523 +6525 2 177.9355 291.7555 42.3732 0.1144 6524 +6526 2 176.8807 292.1067 41.725 0.1144 6525 +6527 2 175.7962 292.3309 41.0472 0.1144 6526 +6528 2 174.6842 292.3114 40.4205 0.1144 6527 +6529 2 173.5814 292.109 39.8952 0.1144 6528 +6530 2 172.5999 291.5633 39.45 0.1144 6529 +6531 2 171.4833 291.5301 39.0846 0.1144 6530 +6532 2 170.3656 291.7497 38.848 0.1144 6531 +6533 2 169.2456 291.9774 38.7164 0.1144 6532 +6534 2 168.1245 292.2051 38.682 0.1144 6533 +6535 2 166.9874 292.1204 39.6357 0.1144 6534 +6536 2 165.8789 292.1227 40.3242 0.1144 6535 +6537 2 164.7657 292.1307 40.9704 0.1144 6536 +6538 2 163.6492 292.1398 41.575 0.1144 6537 +6539 2 162.5269 292.1479 42.1159 0.1144 6538 +6540 2 161.3978 292.157 42.5737 0.1144 6539 +6541 2 160.2664 292.165 42.9755 0.1144 6540 +6542 2 159.1327 292.173 43.353 0.1144 6541 +6543 2 157.9978 292.1822 43.7072 0.1144 6542 +6544 2 156.8744 292.3538 44.0073 0.1144 6543 +6545 2 155.7785 292.6649 44.2316 0.1144 6544 +6546 2 154.6848 292.9921 44.3982 0.1144 6545 +6547 2 153.59 293.3193 44.5236 0.1144 6546 +6548 2 152.4941 293.6476 44.6242 0.1144 6547 +6549 2 151.3992 293.9748 44.7154 0.1144 6548 +6550 2 150.3033 294.3032 44.8132 0.1144 6549 +6551 2 149.2085 294.6303 44.928 0.1144 6550 +6552 2 148.1137 294.9575 45.0654 0.1144 6551 +6553 2 147.02 295.2847 45.2306 0.1144 6552 +6554 2 145.9229 295.5959 45.4446 0.1144 6553 +6555 2 144.8167 295.8613 45.7579 0.1144 6554 +6556 2 143.7139 296.1198 46.1496 0.1144 6555 +6557 2 142.6145 296.3772 46.5937 0.1144 6556 +6558 2 141.5162 296.6335 47.0677 0.1144 6557 +6559 2 140.4191 296.8909 47.5527 0.1144 6558 +6560 2 139.322 297.146 48.0318 0.1144 6559 +6561 2 138.257 297.5407 48.356 0.1144 6560 +6562 2 137.2606 298.0852 48.6959 0.1144 6561 +6563 2 136.2733 298.6423 49.072 0.1144 6562 +6564 2 135.1705 298.9009 49.439 0.1144 6563 +6565 2 134.0425 299.0336 49.7916 0.1144 6564 +6566 2 133.0861 299.6422 50.1357 0.1144 6565 +6567 2 132.2578 300.4201 50.4776 0.1144 6566 +6568 2 131.4319 301.1992 50.8096 0.1144 6567 +6569 2 130.5487 301.9108 51.1818 0.1144 6568 +6570 2 129.6152 302.5434 51.6516 0.1144 6569 +6571 2 128.6828 303.1692 52.1856 0.1144 6570 +6572 2 127.7539 303.7961 52.7526 0.1144 6571 +6573 2 126.8261 304.4218 53.3257 0.1144 6572 +6574 2 125.8732 304.9904 53.993 0.1144 6573 +6575 2 125.0003 305.5075 55.2863 0.1144 6574 +6576 2 167.548 292.1742 36.717 0.1144 6534 +6577 2 166.6213 292.1238 35.1176 0.1144 6576 +6578 2 165.5517 292.0666 34.2082 0.1144 6577 +6579 2 164.4752 292.1959 33.3463 0.1144 6578 +6580 2 163.4227 292.3927 32.361 0.1144 6579 +6581 2 162.4263 292.7382 31.2889 0.1144 6580 +6582 2 161.4516 293.1214 30.161 0.1144 6581 +6583 2 160.7137 293.8307 28.9447 0.1144 6582 +6584 2 160.3465 293.8181 27.9983 0.1144 6583 +6585 2 159.254 293.7803 27.1702 0.1144 6584 +6586 2 158.1603 293.8925 26.3944 0.1144 6585 +6587 2 157.0804 294.1155 25.6501 0.1144 6586 +6588 2 156.0713 293.6923 24.8702 0.1144 6587 +6589 2 155.107 293.1717 24.0662 0.1144 6588 +6590 2 154.1471 292.6524 23.2282 0.1144 6589 +6591 2 153.1896 292.1341 22.3671 0.1144 6590 +6592 2 152.2309 291.617 21.5111 0.1144 6591 +6593 2 151.2677 291.1 20.684 0.1144 6592 +6594 2 150.2747 290.6252 19.9182 0.1144 6593 +6595 2 149.2714 290.1687 19.1841 0.1144 6594 +6596 2 148.3368 289.7443 17.9494 0.1144 6595 +6597 2 161.1736 294.6178 26.896 0.1144 6583 +6598 2 162.0121 295.1245 25.8177 0.1144 6597 +6599 2 162.837 294.6887 24.885 0.1144 6598 +6600 2 163.298 293.7392 23.8498 0.1144 6599 +6601 2 163.5485 292.6844 22.9608 0.1144 6600 +6602 2 163.7293 291.5953 22.2341 0.1144 6601 +6603 2 164.6147 291.0004 21.5592 0.1144 6602 +6604 2 165.6764 291.2727 20.7539 0.1144 6603 +6605 2 214.087 282.0864 66.5731 0.1144 6424 +6606 2 214.6979 283.0187 67.1801 0.1144 6605 +6607 2 215.3214 283.9168 67.9846 0.1144 6606 +6608 2 215.032 284.8766 68.9478 0.1144 6607 +6609 2 214.0664 285.2633 70.1142 0.1144 6608 +6610 2 230.4005 278.9713 74.415 0.1144 6408 +6611 2 230.8272 277.9645 73.645 0.1144 6610 +6612 2 231.2665 276.9269 73.1648 0.1144 6611 +6613 2 231.7023 275.895 72.5914 0.1144 6612 +6614 2 232.0764 274.8529 71.9188 0.1144 6613 +6615 2 232.1416 273.7878 71.111 0.1144 6614 +6616 2 231.9849 272.7307 70.135 0.1144 6615 +6617 2 232.3727 271.9208 68.8542 0.1144 6616 +6618 2 233.2879 272.0375 67.5335 0.1144 6617 +6619 2 234.1951 271.5833 66.4065 0.1144 6618 +6620 2 234.9776 270.8431 65.4668 0.1144 6619 +6621 2 235.823 270.1762 64.5282 0.1144 6620 +6622 2 236.7611 269.6179 63.6964 0.1144 6621 +6623 2 237.793 269.2141 63.014 0.1144 6622 +6624 2 238.6716 268.5334 62.4319 0.1144 6623 +6625 2 238.9759 267.4489 61.9447 0.1144 6624 +6626 2 239.2802 266.3587 61.5297 0.1144 6625 +6627 2 239.5845 265.2673 61.1593 0.1144 6626 +6628 2 239.9494 264.1931 60.7989 0.1144 6627 +6629 2 240.3956 263.1509 60.4198 0.1144 6628 +6630 2 240.8383 262.1087 60.0138 0.1144 6629 +6631 2 241.2822 261.07 59.5742 0.1144 6630 +6632 2 240.2228 260.5163 59.5661 0.1144 6631 +6633 2 239.366 260.0415 58.119 0.1144 6632 +6634 2 238.4794 259.4134 57.2524 0.1144 6633 +6635 2 237.5653 258.9124 56.1478 0.1144 6634 +6636 2 236.546 258.7007 55.0108 0.1144 6635 +6637 2 235.4935 258.6035 53.9473 0.1144 6636 +6638 2 234.4205 258.425 53.107 0.1144 6637 +6639 2 233.3154 258.2809 52.5395 0.1144 6638 +6640 2 232.2148 258.4445 52.1326 0.1144 6639 +6641 2 231.1955 258.9341 51.8126 0.1144 6640 +6642 2 230.2083 259.497 51.5239 0.1144 6641 +6643 2 229.1398 259.8218 51.2439 0.1144 6642 +6644 2 228.0358 259.6754 50.9779 0.1144 6643 +6645 2 227.0932 259.084 50.7086 0.1144 6644 +6646 2 226.1963 258.3953 50.4347 0.1144 6645 +6647 2 225.209 257.8279 50.1847 0.1144 6646 +6648 2 224.4116 257.0511 49.9472 0.1144 6647 +6649 2 223.819 256.0821 49.6588 0.1144 6648 +6650 2 223.2859 255.0903 49.1789 0.1144 6649 +6651 2 223.1258 254.0035 48.5719 0.1144 6650 +6652 2 223.1178 252.8755 48.1032 0.1144 6651 +6653 2 222.7414 251.8116 47.8022 0.1144 6652 +6654 2 221.8479 251.124 47.7291 0.1144 6653 +6655 2 220.7508 250.806 47.6983 0.1144 6654 +6656 2 219.6697 250.4891 47.6221 0.1144 6655 +6657 2 218.8861 249.6574 47.6196 0.1144 6656 +6658 2 218.027 248.9058 47.6067 0.1144 6657 +6659 2 217.2822 248.0432 47.6888 0.1144 6658 +6660 2 216.2915 247.6474 48.3361 0.1144 6659 +6661 2 215.1933 247.5788 49.0986 0.1144 6660 +6662 2 214.0927 247.493 49.833 0.1144 6661 +6663 2 213.0517 247.1646 50.6464 0.1144 6662 +6664 2 212.0587 246.7368 51.5586 0.1144 6663 +6665 2 211.1149 246.1739 52.3382 0.1144 6664 +6666 2 210.0693 245.7976 53.0051 0.1144 6665 +6667 2 208.9619 245.7495 53.6724 0.1144 6666 +6668 2 207.8488 245.7301 54.325 0.1144 6667 +6669 2 206.7334 245.7129 54.9455 0.1144 6668 +6670 2 205.6203 245.817 55.51 0.1144 6669 +6671 2 204.633 246.3661 55.9544 0.1144 6670 +6672 2 203.648 246.929 56.3142 0.1144 6671 +6673 2 202.6596 247.4941 56.5992 0.1144 6672 +6674 2 201.6151 247.9517 56.835 0.1144 6673 +6675 2 200.4814 247.835 57.0657 0.1144 6674 +6676 2 199.342 247.8179 57.2911 0.1144 6675 +6677 2 198.2152 247.8407 57.7744 0.1144 6676 +6678 2 241.3176 260.5494 59.2166 0.1144 6631 +6679 2 241.3943 259.4386 58.5738 0.1144 6678 +6680 2 241.4698 258.3312 57.8953 0.1144 6679 +6681 2 242.1219 257.4892 57.1724 0.1144 6680 +6682 2 242.8826 256.6942 56.4068 0.1144 6681 +6683 2 243.195 255.6874 55.4403 0.1144 6682 +6684 2 243.4032 254.6533 54.3656 0.1144 6683 +6685 2 243.934 253.7198 53.4061 0.1144 6684 +6686 2 244.6318 252.8926 52.4983 0.1144 6685 +6687 2 245.3422 252.0678 51.6477 0.1144 6686 +6688 2 246.2815 251.4798 50.9488 0.1144 6687 +6689 2 247.2024 250.846 50.3622 0.1144 6688 +6690 2 248.1164 250.1905 49.8557 0.1144 6689 +6691 2 249.058 249.567 49.3984 0.1144 6690 +6692 2 250.1493 249.2707 48.9773 0.1144 6691 +6693 2 251.243 248.9779 48.5794 0.1144 6692 +6694 2 252.3069 248.5866 48.1961 0.1144 6693 +6695 2 253.3262 248.089 47.8335 0.1144 6694 +6696 2 253.2095 248.5466 46.7572 0.1144 6695 +6697 2 252.5758 249.1724 45.5339 0.1144 6696 +6698 2 251.5141 249.4824 44.9106 0.1144 6697 +6699 2 250.5463 249.9331 44.1801 0.1144 6698 +6700 2 250.5383 250.4376 42.973 0.1144 6699 +6701 2 251.3196 249.6814 42.1165 0.1144 6700 +6702 2 252.1651 248.9733 41.3725 0.1144 6701 +6703 2 252.8892 248.1656 40.6314 0.1144 6702 +6704 2 253.0082 247.1909 39.9294 0.1144 6703 +6705 2 252.8606 246.9438 38.729 0.1144 6704 +6706 2 253.8616 247.4289 38.0694 0.1144 6705 +6707 2 253.8696 247.6451 37.6463 0.1144 6706 +6708 2 253.4555 248.1691 35.7003 0.1144 6707 +6709 2 252.6044 247.533 34.6828 0.1144 6708 +6710 2 251.7738 246.9427 33.5476 0.1144 6709 +6711 2 250.7408 246.7391 32.5296 0.1144 6710 +6712 2 249.6769 246.842 31.5708 0.1144 6711 +6713 2 248.6736 246.9198 30.693 0.1144 6712 +6714 2 248.0913 246.1808 29.8096 0.1144 6713 +6715 2 248.6427 245.6854 28.4236 0.1144 6714 +6716 2 248.6713 245.4486 25.802 0.1144 6715 +6717 2 254.1545 246.8535 37.4503 0.1144 6706 +6718 2 254.8191 245.9875 36.6405 0.1144 6717 +6719 2 255.6119 245.2072 36.0052 0.1144 6718 +6720 2 256.5351 244.5723 35.4707 0.1144 6719 +6721 2 257.6265 244.3756 34.9597 0.1144 6720 +6722 2 258.7453 244.3195 34.4008 0.1144 6721 +6723 2 259.8253 244.069 33.7324 0.1144 6722 +6724 2 260.7691 243.5324 32.8927 0.1144 6723 +6725 2 261.7575 243.0989 31.9729 0.1144 6724 +6726 2 262.7276 243.5027 30.9938 0.1144 6725 +6727 2 263.0731 244.5266 30.1092 0.1144 6726 +6728 2 263.557 245.1295 28.0456 0.1144 6727 +6729 2 253.7964 247.7252 47.5149 0.1144 6695 +6730 2 254.6979 247.0342 47.1934 0.1144 6729 +6731 2 255.6051 246.3455 46.9216 0.1144 6730 +6732 2 256.4665 245.6019 46.6374 0.1144 6731 +6733 2 256.1942 245.6237 45.7055 0.1144 6732 +6734 2 255.128 245.3949 45.5193 0.1144 6733 +6735 2 254.2506 244.6696 45.5521 0.1144 6734 +6736 2 253.6648 243.6892 45.598 0.1144 6735 +6737 2 253.1786 242.655 45.6604 0.1144 6736 +6738 2 252.7062 241.6128 45.7492 0.1144 6737 +6739 2 252.3023 240.5443 45.8867 0.1144 6738 +6740 2 251.9523 239.4586 46.0785 0.1144 6739 +6741 2 251.4318 238.4462 46.3411 0.1144 6740 +6742 2 250.401 237.9566 46.5542 0.1144 6741 +6743 2 249.5762 237.1981 47.117 0.1144 6742 +6744 2 257.273 244.9556 46.4744 0.1144 6732 +6745 2 258.2317 244.3332 46.4341 0.1144 6744 +6746 2 259.2407 243.7967 46.445 0.1144 6745 +6747 2 260.2566 243.2716 46.4618 0.1144 6746 +6748 2 261.2313 242.6733 46.4738 0.1144 6747 +6749 2 262.2117 242.0853 46.4674 0.1144 6748 +6750 2 263.2413 241.5865 46.4372 0.1144 6749 +6751 2 264.3006 241.1563 46.3781 0.1144 6750 +6752 2 265.3542 240.7136 46.3016 0.1144 6751 +6753 2 266.3781 240.2045 46.2367 0.1144 6752 +6754 2 267.3883 239.6691 46.1997 0.1144 6753 +6755 2 268.4304 239.1978 46.2375 0.1144 6754 +6756 2 269.4898 238.7665 46.3285 0.1144 6755 +6757 2 270.5011 238.2357 46.2834 0.1144 6756 +6758 2 271.3408 237.4635 46.2969 0.1144 6757 +6759 2 272.288 236.824 46.3686 0.1144 6758 +6760 2 273.4091 236.6067 46.4257 0.1144 6759 +6761 2 274.5303 236.379 46.4607 0.1144 6760 +6762 2 275.5473 235.8585 46.4825 0.1144 6761 +6763 2 276.5345 235.2808 46.501 0.1144 6762 +6764 2 277.1992 234.353 46.5797 0.1144 6763 +6765 2 277.5493 234.0693 46.9983 0.1144 6764 +6766 2 278.4359 233.3634 47.2839 0.1144 6765 +6767 2 279.3762 232.7136 47.3995 0.1144 6766 +6768 2 280.4322 232.2858 47.5152 0.1144 6767 +6769 2 281.543 232.0204 47.619 0.1144 6768 +6770 2 282.6492 231.7309 47.7098 0.1144 6769 +6771 2 283.752 231.4278 47.7924 0.1144 6770 +6772 2 284.8571 231.1372 47.8702 0.1144 6771 +6773 2 285.8776 230.6258 47.9489 0.1144 6772 +6774 2 286.7299 229.8708 48.0726 0.1144 6773 +6775 2 287.2115 228.8458 48.2656 0.1144 6774 +6776 2 287.5467 227.7555 48.4683 0.1144 6775 +6777 2 287.8556 226.6561 48.6542 0.1144 6776 +6778 2 288.2411 225.5842 48.9059 0.1144 6777 +6779 2 288.3452 224.4471 48.9978 0.1144 6778 +6780 2 288.7845 223.3946 48.7995 0.1144 6779 +6781 2 277.1637 234.0338 46.5405 0.1144 6764 +6782 2 276.6581 233.0236 46.3674 0.1144 6781 +6783 2 275.5496 232.7468 46.221 0.1144 6782 +6784 2 274.4376 232.486 46.2764 0.1144 6783 +6785 2 273.3725 232.1359 46.72 0.1144 6784 +6786 2 272.3452 231.9963 47.8926 0.1144 6785 +6787 2 271.3088 231.8751 49.0356 0.1144 6786 +6788 2 270.2814 231.7344 50.2186 0.1144 6787 +6789 2 269.5699 231.0994 51.3341 0.1144 6788 +6790 2 269.1043 230.1293 52.2721 0.1144 6789 +6791 2 268.4934 229.364 53.5396 0.1144 6790 +6792 2 267.4775 228.9808 54.3449 0.1144 6791 +6793 2 266.3998 228.6353 54.7305 0.1144 6792 +6794 2 265.4172 228.109 55.0161 0.1144 6793 +6795 2 264.8532 227.1847 55.2574 0.1144 6794 +6796 2 263.7801 227.3517 55.3106 0.1144 6795 +6797 2 263.4678 228.3596 55.5229 0.1144 6796 +6798 2 262.3352 228.403 55.6074 0.1144 6797 +6799 2 261.1958 228.3001 55.6354 0.1144 6798 +6800 2 260.077 228.5323 55.5702 0.1144 6799 +6801 2 259.2304 229.2976 55.4252 0.1144 6800 +6802 2 258.536 230.1877 54.9696 0.1144 6801 +6803 2 261.539 286.1579 86.2428 0.1144 6194 +6804 2 262.2963 285.3399 86.849 0.1144 6803 +6805 2 262.9232 284.4076 87.3328 0.1144 6804 +6806 2 263.8613 283.8218 87.731 0.1144 6805 +6807 2 264.7731 283.1492 88.0474 0.1144 6806 +6808 2 265.3348 282.1756 88.3604 0.1144 6807 +6809 2 265.5087 281.0522 88.5136 0.1144 6808 +6810 2 265.948 279.9986 88.5634 0.1144 6809 +6811 2 266.2992 278.9106 88.5629 0.1144 6810 +6812 2 266.3346 277.7689 88.5819 0.1144 6811 +6813 2 265.9857 276.6821 88.5396 0.1144 6812 +6814 2 265.7192 275.5702 88.4122 0.1144 6813 +6815 2 265.7992 274.4342 88.1706 0.1144 6814 +6816 2 265.8873 273.3027 87.8284 0.1144 6815 +6817 2 265.5956 272.2182 87.3099 0.1144 6816 +6818 2 265.2398 271.1509 86.7975 0.1144 6817 +6819 2 265.3954 270.1819 85.6702 0.1144 6818 +6820 2 265.4435 269.174 84.3811 0.1144 6819 +6821 2 265.4435 268.0953 83.4464 0.1144 6820 +6822 2 266.0955 268.5986 81.5861 0.1144 6821 +6823 2 266.9936 269.0059 80.1942 0.1144 6822 +6824 2 267.6216 269.8547 79.1588 0.1144 6823 +6825 2 268.6467 270.2608 78.4076 0.1144 6824 +6826 2 269.6969 270.1602 77.4004 0.1144 6825 +6827 2 270.8203 270.0526 76.9479 0.1144 6826 +6828 2 271.9482 270.032 76.4918 0.1144 6827 +6829 2 273.0682 270.032 75.9265 0.1144 6828 +6830 2 274.179 270.1167 75.3026 0.1144 6829 +6831 2 275.2498 270.3638 74.5408 0.1144 6830 +6832 2 275.9957 271.1074 73.5804 0.1144 6831 +6833 2 276.6432 271.962 72.6032 0.1144 6832 +6834 2 277.698 272.0912 71.5963 0.1144 6833 +6835 2 277.1923 271.5707 70.9492 0.1144 6834 +6836 2 276.6089 270.6853 70.065 0.1144 6835 +6837 2 276.2657 269.6808 69.4422 0.1144 6836 +6838 2 276.173 268.5494 69.0973 0.1144 6837 +6839 2 275.3276 267.8035 68.9203 0.1144 6838 +6840 2 274.6309 266.8975 68.8363 0.1144 6839 +6841 2 273.9743 265.9606 68.8103 0.1144 6840 +6842 2 273.392 264.9756 68.8153 0.1144 6841 +6843 2 272.9332 263.9277 68.8052 0.1144 6842 +6844 2 272.7834 262.7951 68.7296 0.1144 6843 +6845 2 272.7227 261.6534 68.6277 0.1144 6844 +6846 2 272.7696 260.5105 68.5454 0.1144 6845 +6847 2 272.2354 260.3813 68.4379 0.1144 6846 +6848 2 271.1269 260.1147 68.2156 0.1144 6847 +6849 2 270.0149 259.847 68.1218 0.1144 6848 +6850 2 268.9041 259.5805 67.998 0.1144 6849 +6851 2 267.7932 259.3128 67.8308 0.1144 6850 +6852 2 266.6847 259.0462 67.6108 0.1144 6851 +6853 2 265.567 258.87 67.1989 0.1144 6852 +6854 2 265.0351 258.4479 69.6931 0.1144 6853 +6855 2 264.4139 257.9548 71.6363 0.1144 6854 +6856 2 263.5204 257.6322 73.0853 0.1144 6855 +6857 2 262.5572 257.4904 74.5556 0.1144 6856 +6858 2 261.6053 257.9503 75.5521 0.1144 6857 +6859 2 260.6444 258.4994 76.2513 0.1144 6858 +6860 2 259.6651 259.0645 76.6718 0.1144 6859 +6861 2 258.6767 259.6331 76.8667 0.1144 6860 +6862 2 257.686 260.2051 76.9028 0.1144 6861 +6863 2 256.9069 259.5118 76.6819 0.1144 6862 +6864 2 256.2022 258.6275 76.2706 0.1144 6863 +6865 2 255.549 257.805 75.1626 0.1144 6864 +6866 2 264.836 258.7682 66.4703 0.1144 6853 +6867 2 263.7389 258.6161 65.7734 0.1144 6866 +6868 2 262.659 258.425 64.9852 0.1144 6867 +6869 2 261.6248 258.0761 64.1973 0.1144 6868 +6870 2 260.6124 257.6471 63.4292 0.1144 6869 +6871 2 259.561 257.4675 62.5761 0.1144 6870 +6872 2 258.5074 257.6116 61.5731 0.1144 6871 +6873 2 257.4709 257.7089 60.4498 0.1144 6872 +6874 2 256.5042 257.3863 59.3407 0.1144 6873 +6875 2 255.9654 256.6495 57.9331 0.1144 6874 +6876 2 256.3326 255.7755 56.467 0.1144 6875 +6877 2 256.7216 254.8866 55.0082 0.1144 6876 +6878 2 257.2353 254.1453 53.2868 0.1144 6877 +6879 2 273.0968 259.7395 68.4846 0.1144 6846 +6880 2 273.4 258.6367 68.4438 0.1144 6879 +6881 2 273.6757 257.5258 68.425 0.1144 6880 +6882 2 273.9239 256.4093 68.4124 0.1144 6881 +6883 2 274.147 255.287 68.3642 0.1144 6882 +6884 2 274.1161 254.1442 68.3659 0.1144 6883 +6885 2 274.1756 253.0013 68.4309 0.1144 6884 +6886 2 274.5039 251.9077 68.5653 0.1144 6885 +6887 2 274.9764 250.8689 68.7702 0.1144 6886 +6888 2 274.8689 249.8416 69.4383 0.1144 6887 +6889 2 274.8334 248.7639 70.3209 0.1144 6888 +6890 2 275.0576 247.6863 71.0646 0.1144 6889 +6891 2 275.3322 246.6075 71.7007 0.1144 6890 +6892 2 275.5576 245.5047 72.2036 0.1144 6891 +6893 2 275.6262 244.371 72.492 0.1144 6892 +6894 2 275.6079 243.2281 72.5528 0.1144 6893 +6895 2 275.5816 242.0853 72.457 0.1144 6894 +6896 2 275.5255 240.9447 72.3024 0.1144 6895 +6897 2 275.4272 239.8064 72.1655 0.1144 6896 +6898 2 275.3116 238.6693 72.0742 0.1144 6897 +6899 2 275.1926 237.531 72.0325 0.1144 6898 +6900 2 275.1114 236.3904 72.028 0.1144 6899 +6901 2 274.9707 235.2556 71.9866 0.1144 6900 +6902 2 274.7488 234.1345 71.8732 0.1144 6901 +6903 2 274.5039 233.0191 71.7147 0.1144 6902 +6904 2 274.139 231.9346 71.682 0.1144 6903 +6905 2 273.6906 230.8855 71.8698 0.1144 6904 +6906 2 273.2352 229.8479 72.2509 0.1144 6905 +6907 2 272.7822 228.8194 72.7731 0.1144 6906 +6908 2 272.3704 227.7864 73.3692 0.1144 6907 +6909 2 272.2937 226.6676 73.9102 0.1144 6908 +6910 2 272.1404 225.5545 74.3921 0.1144 6909 +6911 2 271.74 224.502 74.8812 0.1144 6910 +6912 2 271.2367 223.501 75.3469 0.1144 6911 +6913 2 270.5366 222.6121 75.6874 0.1144 6912 +6914 2 270.0618 221.5871 75.8901 0.1144 6913 +6915 2 269.9108 220.4568 76.022 0.1144 6914 +6916 2 269.9405 219.3162 76.0998 0.1144 6915 +6917 2 270.1991 218.2191 76.279 0.1144 6916 +6918 2 270.6372 217.185 76.7712 0.1144 6917 +6919 2 270.9507 216.097 77.1593 0.1144 6918 +6920 2 271.2287 214.9954 77.4799 0.1144 6919 +6921 2 271.5078 213.8925 77.7871 0.1144 6920 +6922 2 271.7858 212.792 78.1222 0.1144 6921 +6923 2 272.1805 211.7487 78.6842 0.1144 6922 +6924 2 272.8257 211.0566 80.0845 0.1144 6923 +6925 2 272.995 210.4056 82.32 0.1144 6924 +6926 2 273.0991 210.0762 84.9318 0.1144 6925 +6927 2 273.8667 210.0384 86.9772 0.1144 6926 +6928 2 274.8449 209.9057 88.3859 0.1144 6927 +6929 2 275.8985 209.8496 89.4715 0.1144 6928 +6930 2 276.9853 209.7684 90.3199 0.1144 6929 +6931 2 278.0824 209.6449 91.0498 0.1144 6930 +6932 2 279.1783 209.4458 91.6868 0.1144 6931 +6933 2 280.1885 208.9791 92.3149 0.1144 6932 +6934 2 280.7822 208.065 93.0989 0.1144 6933 +6935 2 281.2593 207.0697 93.8392 0.1144 6934 +6936 2 281.734 206.079 94.6014 0.1144 6935 +6937 2 282.171 205.1684 95.9165 0.1144 6936 +6938 2 275.7875 250.6344 68.1895 0.1144 6887 +6939 2 276.8183 250.1768 68.2559 0.1144 6938 +6940 2 277.6728 249.4286 68.2758 0.1144 6939 +6941 2 278.4016 248.5466 68.2755 0.1144 6940 +6942 2 279.128 247.6646 68.2525 0.1144 6941 +6943 2 279.946 246.8695 68.1982 0.1144 6942 +6944 2 280.7651 246.079 68.0991 0.1144 6943 +6945 2 281.4755 245.1855 67.9728 0.1144 6944 +6946 2 282.2351 244.3401 67.8384 0.1144 6945 +6947 2 283.0748 243.5713 67.5727 0.1144 6946 +6948 2 283.8825 242.8037 66.9763 0.1144 6947 +6949 2 284.8411 242.3633 66.103 0.1144 6948 +6950 2 285.5538 242.7797 64.6122 0.1144 6949 +6951 2 286.0069 243.537 63.1856 0.1144 6950 +6952 2 286.7859 243.4855 61.1397 0.1144 6951 +6953 2 277.8376 272.1908 70.7286 0.1144 6834 +6954 2 278.6075 272.9069 69.6892 0.1144 6953 +6955 2 279.605 273.2616 68.6456 0.1144 6954 +6956 2 279.6028 274.099 66.9166 0.1144 6955 +6957 2 279.8636 275.0691 65.6174 0.1144 6956 +6958 2 280.2869 276.0392 64.566 0.1144 6957 +6959 2 280.8886 276.9144 63.5793 0.1144 6958 +6960 2 281.4526 277.5287 61.983 0.1144 6959 +6961 2 281.2192 276.546 60.6889 0.1144 6960 +6962 2 280.9321 275.5118 59.8167 0.1144 6961 +6963 2 280.2777 274.6298 59.1338 0.1144 6962 +6964 2 279.4758 273.8873 58.567 0.1144 6963 +6965 2 279.1635 272.8165 58.0754 0.1144 6964 +6966 2 279.0616 271.6931 57.6988 0.1144 6965 +6967 2 278.7036 270.6166 57.4129 0.1144 6966 +6968 2 278.159 269.6168 57.2186 0.1144 6967 +6969 2 277.3548 268.8983 57.1668 0.1144 6968 +6970 2 276.3206 268.4693 57.2496 0.1144 6969 +6971 2 275.5438 267.6548 57.3378 0.1144 6970 +6972 2 274.949 266.679 57.4204 0.1144 6971 +6973 2 274.4262 265.6665 57.5033 0.1144 6972 +6974 2 273.861 264.6884 57.5453 0.1144 6973 +6975 2 272.9927 263.9677 57.4991 0.1144 6974 +6976 2 272.0386 263.3396 57.3846 0.1144 6975 +6977 2 271.1749 262.6029 57.1494 0.1144 6976 +6978 2 270.6784 261.6145 56.7848 0.1144 6977 +6979 2 270.3043 260.5403 56.4878 0.1144 6978 +6980 2 269.7941 259.5233 56.2713 0.1144 6979 +6981 2 269.4417 258.4445 56.0689 0.1144 6980 +6982 2 269.015 257.3931 55.7628 0.1144 6981 +6983 2 268.3984 256.4413 55.4372 0.1144 6982 +6984 2 267.4592 255.8281 55.1174 0.1144 6983 +6985 2 266.4582 255.2996 54.712 0.1144 6984 +6986 2 265.67 254.5125 54.1512 0.1144 6985 +6987 2 264.5866 254.254 53.6161 0.1144 6986 +6988 2 263.4621 254.2426 53.1054 0.1144 6987 +6989 2 262.3409 254.2426 52.5526 0.1144 6988 +6990 2 262.0904 254.0332 49.6415 0.1144 6989 +6991 2 261.5504 253.6019 47.4093 0.1144 6990 +6992 2 260.6352 253.5161 45.7901 0.1144 6991 +6993 2 259.791 253.7381 44.2366 0.1144 6992 +6994 2 259.0119 254.413 43.0332 0.1144 6993 +6995 2 258.1161 254.9438 42.0524 0.1144 6994 +6996 2 257.0499 255.1829 41.256 0.1144 6995 +6997 2 255.9563 255.2939 40.4905 0.1144 6996 +6998 2 254.9129 255.0914 39.6329 0.1144 6997 +6999 2 253.8444 254.826 38.9295 0.1144 6998 +7000 2 252.776 255.0422 38.3354 0.1144 6999 +7001 2 251.7898 255.5639 37.7681 0.1144 7000 +7002 2 250.7465 255.8819 37.0115 0.1144 7001 +7003 2 249.8164 255.2825 36.4403 0.1144 7002 +7004 2 248.7388 254.929 36.0811 0.1144 7003 +7005 2 248.3452 254.7734 34.7556 0.1144 7004 +7006 2 247.6222 254.4416 32.7709 0.1144 7005 +7007 2 246.7105 254.1327 31.3964 0.1144 7006 +7008 2 245.7381 254.2574 30.2607 0.1144 7007 +7009 2 245.15 255.0582 28.9696 0.1144 7008 +7010 2 244.482 255.9025 28.0246 0.1144 7009 +7011 2 243.7887 256.7514 27.2242 0.1144 7010 +7012 2 242.7282 256.6541 26.5147 0.1144 7011 +7013 2 241.972 255.8464 25.802 0.1144 7012 +7014 2 248.4299 255.1246 35.9786 0.1144 7004 +7015 2 247.5193 255.8087 35.8212 0.1144 7014 +7016 2 246.4805 256.2137 35.8481 0.1144 7015 +7017 2 245.4269 256.6347 36.0203 0.1144 7016 +7018 2 244.8286 257.5361 36.2628 0.1144 7017 +7019 2 243.918 258.1024 36.6201 0.1144 7018 +7020 2 242.8094 258.2431 37.1552 0.1144 7019 +7021 2 241.6883 258.401 37.564 0.1144 7020 +7022 2 240.5638 258.5657 37.8694 0.1144 7021 +7023 2 239.4358 258.7316 38.0909 0.1144 7022 +7024 2 238.341 259.0588 38.2466 0.1144 7023 +7025 2 237.2519 259.4054 38.3505 0.1144 7024 +7026 2 236.1628 259.7532 38.4322 0.1144 7025 +7027 2 235.0485 260.0049 38.5678 0.1144 7026 +7028 2 233.924 260.2051 38.7565 0.1144 7027 +7029 2 232.8051 260.4259 38.9486 0.1144 7028 +7030 2 231.6852 260.6387 39.1922 0.1144 7029 +7031 2 230.6155 261.0219 39.499 0.1144 7030 +7032 2 229.5116 261.2942 39.8247 0.1144 7031 +7033 2 228.3847 261.4349 40.1475 0.1144 7032 +7034 2 227.2922 261.7529 40.4519 0.1144 7033 +7035 2 226.2077 262.0961 40.7341 0.1144 7034 +7036 2 225.1369 262.4851 40.9982 0.1144 7035 +7037 2 224.081 262.9198 41.1774 0.1144 7036 +7038 2 223.0274 263.3625 41.2812 0.1144 7037 +7039 2 221.7209 262.9541 41.3204 0.1144 7038 +7040 2 220.5918 262.7837 41.2863 0.1144 7039 +7041 2 219.4512 262.7368 41.1925 0.1144 7040 +7042 2 218.3244 262.8878 41.0533 0.1144 7041 +7043 2 217.241 263.239 40.906 0.1144 7042 +7044 2 216.2114 263.732 40.7831 0.1144 7043 +7045 2 215.2974 264.407 40.6456 0.1144 7044 +7046 2 214.5583 265.2684 40.4281 0.1144 7045 +7047 2 213.7781 266.091 40.1232 0.1144 7046 +7048 2 212.9041 266.8128 39.7603 0.1144 7047 +7049 2 212.061 267.5702 39.3974 0.1144 7048 +7050 2 211.251 268.3675 39.0715 0.1144 7049 +7051 2 210.4308 269.1535 38.733 0.1144 7050 +7052 2 209.4069 269.5687 38.2707 0.1144 7051 +7053 2 208.4505 269.0413 37.8736 0.1144 7052 +7054 2 207.5502 268.3481 37.5578 0.1144 7053 +7055 2 206.6522 267.648 37.2848 0.1144 7054 +7056 2 205.5539 267.7566 36.9796 0.1144 7055 +7057 2 204.5003 268.1811 36.6562 0.1144 7056 +7058 2 203.4558 268.6226 36.3062 0.1144 7057 +7059 2 202.4125 269.0642 35.9162 0.1144 7058 +7060 2 201.3703 269.5058 35.4976 0.1144 7059 +7061 2 200.2652 269.7335 35.0521 0.1144 7060 +7062 2 199.1395 269.8158 34.5951 0.1144 7061 +7063 2 198.0138 269.8902 34.1418 0.1144 7062 +7064 2 196.8858 269.9646 33.7042 0.1144 7063 +7065 2 195.7567 270.0366 33.2934 0.1144 7064 +7066 2 194.6974 269.6248 32.9748 0.1144 7065 +7067 2 193.7421 269.0024 32.7625 0.1144 7066 +7068 2 192.7834 268.3801 32.6334 0.1144 7067 +7069 2 191.8248 267.7555 32.5654 0.1144 7068 +7070 2 190.8661 267.132 32.5332 0.1144 7069 +7071 2 223.1017 263.9505 41.7886 0.1144 7038 +7072 2 223.6371 264.804 43.0564 0.1144 7071 +7073 2 224.3315 264.2251 43.9186 0.1144 7072 +7074 2 224.6713 263.2767 45.1385 0.1144 7073 +7075 2 225.2879 262.3638 45.8452 0.1144 7074 +7076 2 225.9423 261.4429 46.2636 0.1144 7075 +7077 2 226.5372 260.4739 46.578 0.1144 7076 +7078 2 227.0474 259.4558 46.8126 0.1144 7077 +7079 2 227.5485 258.4307 47.0033 0.1144 7078 +7080 2 227.9786 257.376 47.238 0.1144 7079 +7081 2 228.3413 256.3098 47.7002 0.1144 7080 +7082 2 228.6902 255.2367 48.172 0.1144 7081 +7083 2 229.3411 254.3146 48.4655 0.1144 7082 +7084 2 230.1751 253.5424 48.7749 0.1144 7083 +7085 2 231.2974 253.4349 49.1159 0.1144 7084 +7086 2 232.375 253.6294 49.9215 0.1144 7085 +7087 2 261.6351 253.6111 52.071 0.1144 6989 +7088 2 260.6753 253.0253 51.6426 0.1144 7087 +7089 2 259.5702 253.0414 51.2733 0.1144 7088 +7090 2 258.4559 253.2473 50.9144 0.1144 7089 +7091 2 257.3737 253.0356 50.3068 0.1144 7090 +7092 2 257.8118 252.014 50.3342 0.1144 7091 +7093 2 258.1814 250.9398 50.5814 0.1144 7092 +7094 2 258.361 249.8176 50.729 0.1144 7093 +7095 2 258.3118 248.6804 50.8388 0.1144 7094 +7096 2 258.544 247.6005 50.9135 0.1144 7095 +7097 2 259.0176 246.5595 50.9972 0.1144 7096 +7098 2 259.5015 245.5241 50.9586 0.1144 7097 +7099 2 260.1673 244.6009 50.808 0.1144 7098 +7100 2 261.0322 243.8585 50.7805 0.1144 7099 +7101 2 261.9428 243.1675 50.9074 0.1144 7100 +7102 2 262.7699 242.3827 51.1134 0.1144 7101 +7103 2 263.215 241.3371 51.3089 0.1144 7102 +7104 2 263.4655 240.224 51.4903 0.1144 7103 +7105 2 264.4287 239.6428 51.6426 0.1144 7104 +7106 2 265.5396 239.374 51.7359 0.1144 7105 +7107 2 266.6344 239.0411 51.7961 0.1144 7106 +7108 2 267.6411 238.5011 51.8762 0.1144 7107 +7109 2 268.5906 237.8731 52.1651 0.1144 7108 +7110 2 257.36 253.1558 50.2244 0.1144 7091 +7111 2 257.1815 254.2437 49.5127 0.1144 7110 +7112 2 256.7731 255.2756 48.946 0.1144 7111 +7113 2 256.0913 256.1691 48.503 0.1144 7112 +7114 2 255.2664 256.9481 48.1569 0.1144 7113 +7115 2 254.3878 257.6654 47.8766 0.1144 7114 +7116 2 253.3754 258.1711 47.6403 0.1144 7115 +7117 2 252.2783 258.4822 47.4222 0.1144 7116 +7118 2 251.235 258.878 47.0123 0.1144 7117 +7119 2 250.4605 259.6239 46.1686 0.1144 7118 +7120 2 249.9308 260.5666 45.3043 0.1144 7119 +7121 2 249.5544 261.5722 44.3526 0.1144 7120 +7122 2 248.828 262.2185 43.251 0.1144 7121 +7123 2 247.8419 262.5972 42.1879 0.1144 7122 +7124 2 246.802 262.8969 41.286 0.1144 7123 +7125 2 245.7392 263.1864 40.53 0.1144 7124 +7126 2 244.7542 263.6817 39.8373 0.1144 7125 +7127 2 243.7807 264.2388 39.293 0.1144 7126 +7128 2 243.7818 264.1736 37.3223 0.1144 7127 +7129 2 243.9637 264.1736 34.5898 0.1144 7128 +7130 2 244.2646 264.8566 32.844 0.1144 7129 +7131 2 244.6684 265.8198 31.7075 0.1144 7130 +7132 2 245.1237 266.7728 30.6379 0.1144 7131 +7133 2 245.6111 267.7338 29.6932 0.1144 7132 +7134 2 245.7186 268.7782 28.6832 0.1144 7133 +7135 2 246.5606 268.5712 27.5497 0.1144 7134 +7136 2 247.4358 268.6261 26.5402 0.1144 7135 +7137 2 247.4666 269.682 25.5721 0.1144 7136 +7138 2 248.0512 270.4805 24.6888 0.1144 7137 +7139 2 249.0854 270.5743 23.8888 0.1144 7138 +7140 2 250.091 270.1499 23.05 0.1144 7139 +7141 2 250.8437 270.3238 22.2378 0.1144 7140 +7142 2 251.2247 271.3602 21.5144 0.1144 7141 +7143 2 251.569 272.4207 20.8843 0.1144 7142 +7144 2 251.5587 273.4732 20.2564 0.1144 7143 +7145 2 251.1114 274.52 19.9906 0.1144 7144 +7146 2 250.6161 275.5496 19.8838 0.1144 7145 +7147 2 250.1917 276.6112 19.8718 0.1144 7146 +7148 2 249.9537 277.7277 19.9268 0.1144 7147 +7149 2 249.1277 278.4828 20.0255 0.1144 7148 +7150 2 248.2491 279.2104 20.2112 0.1144 7149 +7151 2 247.2356 279.7206 20.5339 0.1144 7150 +7152 2 246.3318 280.4116 20.8149 0.1144 7151 +7153 2 245.428 281.1071 21.0279 0.1144 7152 +7154 2 244.697 281.9857 21.1778 0.1144 7153 +7155 2 243.6926 282.5314 21.2695 0.1144 7154 +7156 2 242.5555 282.6549 21.3147 0.1144 7155 +7157 2 243.1229 263.9517 39.3078 0.1144 7127 +7158 2 242.0876 263.501 39.7393 0.1144 7157 +7159 2 241.1152 263.1154 40.8442 0.1144 7158 +7160 2 240.1931 262.8626 42.3783 0.1144 7159 +7161 2 239.2482 262.6567 43.862 0.1144 7160 +7162 2 238.373 262.7699 45.4796 0.1144 7161 +7163 2 237.6191 263.311 47.1128 0.1144 7162 +7164 2 236.8126 263.7789 48.7189 0.1144 7163 +7165 2 236.0484 263.9025 50.615 0.1144 7164 +7166 2 235.9969 263.4323 52.9004 0.1144 7165 +7167 2 236.0873 262.6418 54.8814 0.1144 7166 +7168 2 235.6079 261.7758 56.285 0.1144 7167 +7169 2 235.1355 260.8675 57.5352 0.1144 7168 +7170 2 234.5818 259.9877 58.7034 0.1144 7169 +7171 2 233.9137 259.1663 59.7621 0.1144 7170 +7172 2 233.1598 258.3987 60.7079 0.1144 7171 +7173 2 232.3853 257.638 61.5891 0.1144 7172 +7174 2 231.628 256.8543 62.4389 0.1144 7173 +7175 2 230.8786 256.0581 63.2705 0.1144 7174 +7176 2 230.1316 255.2607 64.0945 0.1144 7175 +7177 2 229.2759 254.58 64.9029 0.1144 7176 +7178 2 228.3516 253.9886 65.6916 0.1144 7177 +7179 2 227.4192 253.4086 66.4793 0.1144 7178 +7180 2 226.5955 252.7165 67.4139 0.1144 7179 +7181 2 225.8714 251.9534 68.511 0.1144 7180 +7182 2 225.1872 251.1789 69.6856 0.1144 7181 +7183 2 224.8395 250.1745 70.7073 0.1144 7182 +7184 2 224.7171 249.0923 71.5582 0.1144 7183 +7185 2 224.5969 248.0272 72.5287 0.1144 7184 +7186 2 224.6427 246.953 73.4908 0.1144 7185 +7187 2 224.6816 245.8845 74.4582 0.1144 7186 +7188 2 224.4414 244.8389 75.4298 0.1144 7187 +7189 2 224.1004 243.8253 76.4218 0.1144 7188 +7190 2 223.7618 242.8174 77.4514 0.1144 7189 +7191 2 223.6314 241.7684 78.5212 0.1144 7190 +7192 2 224.5214 241.1129 77.7857 0.1144 7191 +7193 2 225.4938 240.6015 77.0036 0.1144 7192 +7194 2 226.5703 240.2514 76.6228 0.1144 7193 +7195 2 227.6457 239.906 76.1732 0.1144 7194 +7196 2 228.7165 239.565 75.6582 0.1144 7195 +7197 2 229.7255 239.2424 74.6018 0.1144 7196 +7198 2 223.4026 241.6403 79.8291 0.1144 7191 +7199 2 222.6624 241.2273 81.7085 0.1144 7198 +7200 2 221.976 240.8429 83.7399 0.1144 7199 +7201 2 221.3217 240.4768 85.8544 0.1144 7200 +7202 2 220.6833 240.121 88.0079 0.1144 7201 +7203 2 220.1891 239.5936 90.1415 0.1144 7202 +7204 2 219.9123 238.8397 92.1085 0.1144 7203 +7205 2 219.6938 238.0149 93.9742 0.1144 7204 +7206 2 219.4707 237.1729 95.7891 0.1144 7205 +7207 2 219.243 236.3138 97.5517 0.1144 7206 +7208 2 219.5885 235.521 99.1992 0.1144 7207 +7209 2 220.323 234.8506 100.5542 0.1144 7208 +7210 2 221.1123 234.1928 101.7825 0.1144 7209 +7211 2 221.9131 233.5259 102.9389 0.1144 7210 +7212 2 222.7208 232.8532 104.0466 0.1144 7211 +7213 2 223.5307 232.1782 105.1277 0.1144 7212 +7214 2 224.343 231.5021 106.2029 0.1144 7213 +7215 2 225.1872 230.8729 107.2954 0.1144 7214 +7216 2 226.1596 230.5194 108.4098 0.1144 7215 +7217 2 227.1744 230.2643 109.5419 0.1144 7216 +7218 2 228.1868 230.0081 110.6885 0.1144 7217 +7219 2 229.197 229.753 111.846 0.1144 7218 +7220 2 230.2048 229.4978 113.0125 0.1144 7219 +7221 2 231.2116 229.2427 114.1865 0.1144 7220 +7222 2 232.2171 228.9888 115.3681 0.1144 7221 +7223 2 233.2204 228.7359 116.5601 0.1144 7222 +7224 2 234.2214 228.4831 117.766 0.1144 7223 +7225 2 235.219 228.2303 118.9905 0.1144 7224 +7226 2 236.212 227.9798 120.2365 0.1144 7225 +7227 2 237.0517 227.4924 121.6396 0.1144 7226 +7228 2 237.4852 226.6527 123.1152 0.1144 7227 +7229 2 237.8182 225.7512 124.6344 0.1144 7228 +7230 2 238.1465 224.8612 126.1982 0.1144 7229 +7231 2 238.5251 224.0044 127.8054 0.1144 7230 +7232 2 239.1132 223.2871 129.4241 0.1144 7231 +7233 2 239.7378 222.6007 131.0616 0.1144 7232 +7234 2 240.359 221.92 132.7208 0.1144 7233 +7235 2 240.9744 221.245 134.4064 0.1144 7234 +7236 2 241.5407 220.5712 136.1909 0.1144 7235 +7237 2 241.8004 219.9157 138.341 0.1144 7236 +7238 2 241.94 219.2911 140.6625 0.1144 7237 +7239 2 242.0738 218.6882 143.0187 0.1144 7238 +7240 2 242.2054 218.0967 145.3942 0.1144 7239 +7241 2 242.3358 217.511 147.777 0.1144 7240 +7242 2 242.4674 216.9196 150.1531 0.1144 7241 +7243 2 242.6012 216.3201 152.5149 0.1144 7242 +7244 2 242.7946 215.7012 154.8016 0.1144 7243 +7245 2 243.2338 215.0423 156.8165 0.1144 7244 +7246 2 243.7567 214.3604 158.6665 0.1144 7245 +7247 2 244.2978 213.6546 160.4249 0.1144 7246 +7248 2 244.8595 212.9201 162.0732 0.1144 7247 +7249 2 245.4006 212.2143 163.791 0.1144 7248 +7250 2 245.8307 211.6537 165.9941 0.1144 7249 +7251 2 280.5786 272.8669 70.2268 0.1144 6955 +7252 2 281.6036 272.6987 71.3406 0.1144 7251 +7253 2 282.5486 273.1586 71.9984 0.1144 7252 +7254 2 283.3265 273.9914 71.9071 0.1144 7253 +7255 2 284.1364 274.7739 71.4347 0.1144 7254 +7256 2 284.999 275.4786 70.8103 0.1144 7255 +7257 2 285.9371 276.0575 70.0902 0.1144 7256 +7258 2 286.9976 276.2463 69.3302 0.1144 7257 +7259 2 288.1004 276.2771 68.5849 0.1144 7258 +7260 2 289.2043 276.3012 67.856 0.1144 7259 +7261 2 290.3094 276.3252 67.1345 0.1144 7260 +7262 2 291.4134 276.3126 66.3972 0.1144 7261 +7263 2 292.5002 276.1742 65.6065 0.1144 7262 +7264 2 293.595 276.0621 64.8449 0.1144 7263 +7265 2 294.7036 276.181 64.2527 0.1144 7264 +7266 2 295.8224 276.3595 63.8523 0.1144 7265 +7267 2 296.9446 276.5277 63.9254 0.1144 7266 +7268 2 297.9491 276.6581 65.163 0.1144 7267 +7269 2 298.8963 276.7633 66.7078 0.1144 7268 +7270 2 299.9293 276.856 67.8874 0.1144 7269 +7271 2 300.9933 276.9441 68.8943 0.1144 7270 +7272 2 302.064 277.0768 69.8228 0.1144 7271 +7273 2 303.1188 277.2678 70.8058 0.1144 7272 +7274 2 304.161 277.3868 71.9202 0.1144 7273 +7275 2 305.194 277.3674 73.071 0.1144 7274 +7276 2 306.1813 276.9899 74.0914 0.1144 7275 +7277 2 307.1057 276.4064 74.9146 0.1144 7276 +7278 2 308.0369 275.807 75.6137 0.1144 7277 +7279 2 308.9772 275.2006 76.1958 0.1144 7278 +7280 2 309.9245 274.5909 76.6797 0.1144 7279 +7281 2 310.8763 273.9777 77.0896 0.1144 7280 +7282 2 311.8304 273.3634 77.4432 0.1144 7281 +7283 2 312.7856 272.7456 77.7434 0.1144 7282 +7284 2 313.7226 272.0981 77.9607 0.1144 7283 +7285 2 314.5806 271.3442 78.0055 0.1144 7284 +7286 2 315.3814 270.5297 77.8607 0.1144 7285 +7287 2 316.2199 269.7655 77.6026 0.1144 7286 +7288 2 317.222 269.2942 77.3427 0.1144 7287 +7289 2 318.3397 269.3331 77.2002 0.1144 7288 +7290 2 319.4288 269.6786 77.2153 0.1144 7289 +7291 2 320.511 270.0458 77.3682 0.1144 7290 +7292 2 321.6173 270.2826 77.6182 0.1144 7291 +7293 2 322.6892 270.0801 77.91 0.1144 7292 +7294 2 323.6525 269.4784 78.192 0.1144 7293 +7295 2 324.5791 268.816 78.451 0.1144 7294 +7296 2 325.5069 268.1536 78.6974 0.1144 7295 +7297 2 326.5022 267.6239 78.9673 0.1144 7296 +7298 2 327.5981 267.3505 79.3061 0.1144 7297 +7299 2 328.7215 267.2098 79.7126 0.1144 7298 +7300 2 329.7786 266.8632 80.1256 0.1144 7299 +7301 2 330.7041 266.218 80.4748 0.1144 7300 +7302 2 331.5598 265.4675 80.7472 0.1144 7301 +7303 2 332.4109 264.7067 80.953 0.1144 7302 +7304 2 333.2609 263.946 81.1079 0.1144 7303 +7305 2 334.1132 263.1829 81.2358 0.1144 7304 +7306 2 334.9655 262.4222 81.3627 0.1144 7305 +7307 2 335.8166 261.6603 81.5066 0.1144 7306 +7308 2 336.6678 260.8995 81.676 0.1144 7307 +7309 2 337.5475 260.1753 81.9022 0.1144 7308 +7310 2 338.4593 259.4958 82.2108 0.1144 7309 +7311 2 339.3779 258.8323 82.5916 0.1144 7310 +7312 2 340.2954 258.1722 83.0242 0.1144 7311 +7313 2 341.3078 257.7054 83.4742 0.1144 7312 +7314 2 342.4129 257.4938 83.9068 0.1144 7313 +7315 2 343.5329 257.3314 84.3206 0.1144 7314 +7316 2 344.5522 256.9024 84.7725 0.1144 7315 +7317 2 345.488 256.2766 85.2729 0.1144 7316 +7318 2 346.4364 255.6703 85.7752 0.1144 7317 +7319 2 347.4168 255.1143 86.2565 0.1144 7318 +7320 2 348.4086 254.5755 86.6933 0.1144 7319 +7321 2 349.4668 254.1533 86.8588 0.1144 7320 +7322 2 350.5605 253.8387 86.6233 0.1144 7321 +7323 2 351.5226 253.5756 85.2592 0.1144 7322 +7324 2 268.57 271.001 77.6087 0.1144 6825 +7325 2 268.3927 272.0867 76.8662 0.1144 7324 +7326 2 268.1284 273.1883 76.5111 0.1144 7325 +7327 2 267.744 274.258 76.1978 0.1144 7326 +7328 2 267.1034 275.1903 75.8792 0.1144 7327 +7329 2 266.2603 275.9454 75.544 0.1144 7328 +7330 2 265.4606 276.7473 75.1467 0.1144 7329 +7331 2 264.9081 277.7152 74.5825 0.1144 7330 +7332 2 264.526 278.7482 73.8251 0.1144 7331 +7333 2 264.1084 279.7641 73.0414 0.1144 7332 +7334 2 263.6359 280.7639 72.3355 0.1144 7333 +7335 2 263.1429 281.7638 71.7066 0.1144 7334 +7336 2 262.6475 282.7693 71.1446 0.1144 7335 +7337 2 262.1476 283.7772 70.6378 0.1144 7336 +7338 2 261.4292 284.6409 70.1252 0.1144 7337 +7339 2 260.5117 285.285 69.5724 0.1144 7338 +7340 2 259.5564 285.8673 68.9732 0.1144 7339 +7341 2 258.6058 286.4462 68.3374 0.1144 7340 +7342 2 257.6551 287.025 67.6822 0.1144 7341 +7343 2 256.7056 287.6016 67.0197 0.1144 7342 +7344 2 255.7263 288.1278 66.365 0.1144 7343 +7345 2 254.683 288.5191 65.7325 0.1144 7344 +7346 2 253.6145 288.8486 65.1367 0.1144 7345 +7347 2 252.5369 289.1632 64.6016 0.1144 7346 +7348 2 251.4878 289.5533 64.027 0.1144 7347 +7349 2 250.4422 289.901 63.3063 0.1144 7348 +7350 2 249.3462 290.0017 62.545 0.1144 7349 +7351 2 248.2446 290.0326 61.7924 0.1144 7350 +7352 2 247.1406 290.0646 61.0644 0.1144 7351 +7353 2 246.0275 290.115 60.4551 0.1144 7352 +7354 2 244.8949 290.2134 60.1798 0.1144 7353 +7355 2 243.8184 290.5291 60.1384 0.1144 7354 +7356 2 242.8415 291.1205 60.0762 0.1144 7355 +7357 2 241.8977 291.7623 59.8973 0.1144 7356 +7358 2 240.9916 292.4396 59.5087 0.1144 7357 +7359 2 239.9746 292.8514 58.9632 0.1144 7358 +7360 2 238.8752 293.0585 58.3906 0.1144 7359 +7361 2 237.769 293.2415 57.8385 0.1144 7360 +7362 2 236.6581 293.4246 57.3336 0.1144 7361 +7363 2 235.545 293.6122 56.8904 0.1144 7362 +7364 2 234.4285 293.825 56.5816 0.1144 7363 +7365 2 233.3096 294.0538 56.406 0.1144 7364 +7366 2 232.1897 294.2837 56.3122 0.1144 7365 +7367 2 231.0548 294.3363 56.1344 0.1144 7366 +7368 2 230.0035 294.0046 55.5736 0.1144 7367 +7369 2 229.8182 294.1144 55.288 0.1144 7368 +7370 2 228.8652 294.6795 54.6669 0.1144 7369 +7371 2 227.966 295.3533 54.1677 0.1144 7370 +7372 2 227.116 296.0935 53.6799 0.1144 7371 +7373 2 226.1951 296.7399 53.1899 0.1144 7372 +7374 2 225.2158 297.2901 52.6772 0.1144 7373 +7375 2 224.1496 297.6059 52.0744 0.1144 7374 +7376 2 223.0525 297.5693 51.3629 0.1144 7375 +7377 2 221.9657 297.4274 50.5568 0.1144 7376 +7378 2 221.0311 297.9079 49.6115 0.1144 7377 +7379 2 220.212 298.616 48.7133 0.1144 7378 +7380 2 219.3986 299.3356 47.8324 0.1144 7379 +7381 2 218.5841 300.0563 46.97 0.1144 7380 +7382 2 217.7387 300.7496 46.1426 0.1144 7381 +7383 2 216.7777 301.2907 45.4062 0.1144 7382 +7384 2 215.6909 301.4085 44.641 0.1144 7383 +7385 2 214.6522 301.0882 43.8021 0.1144 7384 +7386 2 213.6214 300.7416 42.9293 0.1144 7385 +7387 2 212.5689 300.4693 42.0812 0.1144 7386 +7388 2 211.4615 300.4808 41.3694 0.1144 7387 +7389 2 210.3473 300.4922 40.7389 0.1144 7388 +7390 2 209.2262 300.5048 40.1842 0.1144 7389 +7391 2 208.1005 300.5174 39.6903 0.1144 7390 +7392 2 206.9713 300.5299 39.2342 0.1144 7391 +7393 2 205.8422 300.5414 38.7951 0.1144 7392 +7394 2 204.7142 300.6054 38.3443 0.1144 7393 +7395 2 203.5885 300.6855 37.8935 0.1144 7394 +7396 2 202.4617 300.7645 37.4539 0.1144 7395 +7397 2 201.3326 300.8434 37.0359 0.1144 7396 +7398 2 200.2034 300.9223 36.6397 0.1144 7397 +7399 2 199.1029 301.0001 35.8985 0.1144 7398 +7400 2 229.801 293.8867 54.3511 0.1144 7368 +7401 2 228.9579 293.4177 52.8937 0.1144 7400 +7402 2 228.0015 293.8204 52.369 0.1144 7401 +7403 2 226.957 294.2746 52.2458 0.1144 7402 +7404 2 225.8519 294.5388 52.4989 0.1144 7403 +7405 2 224.8726 294.7539 53.8479 0.1144 7404 +7406 2 264.995 271.0628 87.4026 0.1144 6818 +7407 2 264.0958 270.3775 87.7478 0.1144 7406 +7408 2 263.3396 269.5218 87.9194 0.1144 7407 +7409 2 262.532 268.721 88.2031 0.1144 7408 +7410 2 261.6728 267.9843 88.6119 0.1144 7409 +7411 2 260.8137 267.2544 89.0901 0.1144 7410 +7412 2 260.0404 266.4525 89.5348 0.1144 7411 +7413 2 259.5164 265.4423 89.7571 0.1144 7412 +7414 2 259.0977 264.3784 89.8103 0.1144 7413 +7415 2 258.7293 263.295 89.8559 0.1144 7414 +7416 2 258.3678 262.2105 89.9195 0.1144 7415 +7417 2 257.9686 261.1409 90.0057 0.1144 7416 +7418 2 257.4458 260.1273 90.1029 0.1144 7417 +7419 2 256.82 259.1698 90.1914 0.1144 7418 +7420 2 256.28 258.1699 90.2653 0.1144 7419 +7421 2 255.9036 257.09 90.3288 0.1144 7420 +7422 2 255.557 256.0009 90.3594 0.1144 7421 +7423 2 255.2092 254.9107 90.3286 0.1144 7422 +7424 2 255.2642 253.9085 89.8853 0.1144 7423 +7425 2 255.8773 253.0402 88.858 0.1144 7424 +7426 2 256.3876 252.1536 87.6215 0.1144 7425 +7427 2 256.5946 251.1984 86.2154 0.1144 7426 +7428 2 256.7422 250.2157 84.8445 0.1144 7427 +7429 2 257.2581 249.2387 84.1103 0.1144 7428 +7430 2 257.789 248.2377 83.7309 0.1144 7429 +7431 2 258.218 248.0878 83.5677 0.1144 7430 +7432 2 259.1709 247.7561 84.8683 0.1144 7431 +7433 2 260.228 247.4209 85.5361 0.1144 7432 +7434 2 261.3182 247.2767 86.2926 0.1144 7433 +7435 2 262.4016 247.12 86.9929 0.1144 7434 +7436 2 263.446 246.691 87.4224 0.1144 7435 +7437 2 264.4665 246.1831 87.6232 0.1144 7436 +7438 2 265.4652 245.6248 87.6954 0.1144 7437 +7439 2 266.4525 245.0482 87.7002 0.1144 7438 +7440 2 267.4409 244.4717 87.6725 0.1144 7439 +7441 2 268.4327 243.9008 87.6305 0.1144 7440 +7442 2 269.436 243.354 87.5532 0.1144 7441 +7443 2 270.4485 242.8254 87.4118 0.1144 7442 +7444 2 271.4678 242.3095 87.2323 0.1144 7443 +7445 2 272.5054 241.8324 87.0862 0.1144 7444 +7446 2 273.5636 241.4 87.0307 0.1144 7445 +7447 2 274.6252 240.9733 87.0556 0.1144 7446 +7448 2 275.6857 240.5477 87.1402 0.1144 7447 +7449 2 276.7462 240.1222 87.2637 0.1144 7448 +7450 2 277.8147 239.716 87.3869 0.1144 7449 +7451 2 278.9129 239.4117 87.4065 0.1144 7450 +7452 2 280.0375 239.215 87.2421 0.1144 7451 +7453 2 281.1243 238.8855 87.1814 0.1144 7452 +7454 2 282.1745 238.4439 87.4269 0.1144 7453 +7455 2 283.2132 238.0058 87.8973 0.1144 7454 +7456 2 284.3206 237.7861 88.3008 0.1144 7455 +7457 2 285.4429 237.6054 88.6119 0.1144 7456 +7458 2 286.5697 237.4258 88.811 0.1144 7457 +7459 2 287.6988 237.245 88.8748 0.1144 7458 +7460 2 288.8188 237.0128 88.825 0.1144 7459 +7461 2 289.9125 236.6856 88.6833 0.1144 7460 +7462 2 290.9936 236.3207 88.4635 0.1144 7461 +7463 2 292.0769 235.9694 88.1905 0.1144 7462 +7464 2 293.198 235.7727 87.955 0.1144 7463 +7465 2 294.326 235.5988 87.764 0.1144 7464 +7466 2 295.4334 235.3345 87.4924 0.1144 7465 +7467 2 296.4184 234.9845 86.3808 0.1144 7466 +7468 2 257.8782 247.8007 83.6256 0.1144 7430 +7469 2 258.1047 246.6807 83.757 0.1144 7468 +7470 2 258.3301 245.5665 84.0468 0.1144 7469 +7471 2 258.5532 244.4545 84.427 0.1144 7470 +7472 2 258.6939 243.3334 84.868 0.1144 7471 +7473 2 258.8231 242.2157 85.3678 0.1144 7472 +7474 2 258.9524 241.1014 85.9244 0.1144 7473 +7475 2 259.0794 239.9918 86.527 0.1144 7474 +7476 2 259.2075 238.8855 87.1648 0.1144 7475 +7477 2 259.2613 238.238 87.0302 0.1144 7476 +7478 2 259.3128 237.0986 87.0825 0.1144 7477 +7479 2 259.3402 235.9569 87.1987 0.1144 7478 +7480 2 259.3642 234.8129 87.2864 0.1144 7479 +7481 2 259.3883 233.67 87.3751 0.1144 7480 +7482 2 259.4123 232.5272 87.4516 0.1144 7481 +7483 2 259.4375 231.3832 87.502 0.1144 7482 +7484 2 259.4592 230.2392 87.5204 0.1144 7483 +7485 2 259.513 229.0974 87.5115 0.1144 7484 +7486 2 259.7566 227.9889 87.3513 0.1144 7485 +7487 2 260.0907 226.9032 87.0089 0.1144 7486 +7488 2 260.4991 225.8496 86.5903 0.1144 7487 +7489 2 261.0642 224.8692 86.224 0.1144 7488 +7490 2 261.6671 223.9037 85.9298 0.1144 7489 +7491 2 262.2712 222.937 85.7072 0.1144 7490 +7492 2 262.8775 221.968 85.5588 0.1144 7491 +7493 2 263.4838 220.9991 85.4627 0.1144 7492 +7494 2 264.089 220.029 85.3919 0.1144 7493 +7495 2 264.6964 219.06 85.3269 0.1144 7494 +7496 2 265.1323 218.0064 85.2718 0.1144 7495 +7497 2 265.4972 216.923 85.2247 0.1144 7496 +7498 2 265.853 215.835 85.181 0.1144 7497 +7499 2 266.2088 214.7482 85.1301 0.1144 7498 +7500 2 266.5943 213.6717 85.0788 0.1144 7499 +7501 2 267.0039 212.6032 85.0214 0.1144 7500 +7502 2 267.418 211.5382 84.912 0.1144 7501 +7503 2 267.8321 210.4743 84.7442 0.1144 7502 +7504 2 268.0804 209.3737 84.3256 0.1144 7503 +7505 2 268.2325 208.2801 83.6004 0.1144 7504 +7506 2 268.3721 207.2322 82.5899 0.1144 7505 +7507 2 268.4865 206.3696 80.7719 0.1144 7506 +7508 2 259.354 238.7082 87.7484 0.1144 7476 +7509 2 259.9866 237.9394 89.1047 0.1144 7508 +7510 2 260.0678 237.1032 90.2927 0.1144 7509 +7511 2 259.4466 236.196 91.0431 0.1144 7510 +7512 2 258.7671 235.3002 91.5463 0.1144 7511 +7513 2 258.1333 234.3598 91.8722 0.1144 7512 +7514 2 257.6688 233.3257 92.0525 0.1144 7513 +7515 2 257.3222 232.2354 92.1413 0.1144 7514 +7516 2 256.9756 231.1463 92.2015 0.1144 7515 +7517 2 256.6289 230.0561 92.2645 0.1144 7516 +7518 2 256.2812 228.9659 92.332 0.1144 7517 +7519 2 255.9357 227.8768 92.4017 0.1144 7518 +7520 2 255.589 226.7866 92.472 0.1144 7519 +7521 2 255.2287 225.7009 92.5417 0.1144 7520 +7522 2 254.8363 224.6267 92.6117 0.1144 7521 +7523 2 254.4245 223.5593 92.6814 0.1144 7522 +7524 2 254.0138 222.4931 92.7489 0.1144 7523 +7525 2 253.6031 221.4258 92.8133 0.1144 7524 +7526 2 253.1912 220.3584 92.8724 0.1144 7525 +7527 2 252.7805 219.2911 92.9242 0.1144 7526 +7528 2 252.1845 218.3393 92.9662 0.1144 7527 +7529 2 251.2121 217.8153 92.9863 0.1144 7528 +7530 2 250.1127 217.4973 92.9824 0.1144 7529 +7531 2 249.0145 217.1792 92.9564 0.1144 7530 +7532 2 247.9151 216.8601 92.9062 0.1144 7531 +7533 2 246.818 216.5409 92.8276 0.1144 7532 +7534 2 245.7198 216.2229 92.7136 0.1144 7533 +7535 2 244.6227 215.9048 92.5574 0.1144 7534 +7536 2 243.5267 215.5868 92.351 0.1144 7535 +7537 2 242.4468 215.2379 92.0251 0.1144 7536 +7538 2 241.3851 214.8615 91.5368 0.1144 7537 +7539 2 240.3361 214.4828 90.9182 0.1144 7538 +7540 2 239.2951 214.1076 90.2079 0.1144 7539 +7541 2 238.2609 213.7347 89.4384 0.1144 7540 +7542 2 237.1947 213.6214 88.5682 0.1144 7541 +7543 2 236.3126 214.19 87.7374 0.1144 7542 +7544 2 235.481 214.9038 86.9336 0.1144 7543 +7545 2 234.6493 215.62 86.1406 0.1144 7544 +7546 2 233.8164 216.3361 85.3625 0.1144 7545 +7547 2 232.9802 217.0534 84.6045 0.1144 7546 +7548 2 232.1428 217.773 83.8712 0.1144 7547 +7549 2 231.3076 218.5074 83.2146 0.1144 7548 +7550 2 230.4817 219.2625 82.642 0.1144 7549 +7551 2 229.6569 220.0267 82.1288 0.1144 7550 +7552 2 228.8309 220.7943 81.6536 0.1144 7551 +7553 2 228.0026 221.5619 81.1964 0.1144 7552 +7554 2 226.981 221.9749 80.6411 0.1144 7553 +7555 2 226.0601 222.6018 80.0954 0.1144 7554 +7556 2 225.2582 223.3877 79.5841 0.1144 7555 +7557 2 224.5226 224.2309 79.0056 0.1144 7556 +7558 2 223.8087 225.0843 78.3479 0.1144 7557 +7559 2 223.2322 226.0178 77.5698 0.1144 7558 +7560 2 222.7219 226.9765 76.6937 0.1144 7559 +7561 2 222.0401 227.8162 75.7907 0.1144 7560 +7562 2 221.2908 228.5964 74.8815 0.1144 7561 +7563 2 220.3927 229.1935 73.9642 0.1144 7562 +7564 2 219.3975 229.6008 73.0218 0.1144 7563 +7565 2 218.4296 230.0538 72.0236 0.1144 7564 +7566 2 218.7866 230.834 70.721 0.1144 7565 +7567 2 219.5599 231.4552 69.335 0.1144 7566 +7568 2 220.387 231.8945 67.7888 0.1144 7567 +7569 2 221.0643 232.1588 65.627 0.1144 7568 +7570 2 278.9896 321.9273 85.3196 0.1144 6157 +7571 2 279.8144 321.1597 85.7338 0.1144 7570 +7572 2 280.6186 320.3589 86.1017 0.1144 7571 +7573 2 281.3679 319.5295 86.6841 0.1144 7572 +7574 2 281.4412 319.573 87.0873 0.1144 7573 +7575 2 281.9136 319.8475 89.5448 0.1144 7574 +7576 2 282.5497 320.1507 91.6667 0.1144 7575 +7577 2 283.5381 320.4699 92.8332 0.1144 7576 +7578 2 284.5483 320.7536 93.954 0.1144 7577 +7579 2 285.5962 320.9332 94.9407 0.1144 7578 +7580 2 286.7001 320.9618 95.6542 0.1144 7579 +7581 2 287.827 320.9389 96.1162 0.1144 7580 +7582 2 288.9618 320.9343 96.4544 0.1144 7581 +7583 2 290.0315 321.2306 96.6624 0.1144 7582 +7584 2 291.0061 321.8255 96.6224 0.1144 7583 +7585 2 291.9534 322.4593 96.4012 0.1144 7584 +7586 2 292.8972 323.0896 96.0616 0.1144 7585 +7587 2 293.6854 323.8893 95.6838 0.1144 7586 +7588 2 294.3169 324.8296 95.3277 0.1144 7587 +7589 2 294.9346 325.7837 95.0116 0.1144 7588 +7590 2 295.7938 326.4896 94.6814 0.1144 7589 +7591 2 296.8005 327.009 94.3085 0.1144 7590 +7592 2 297.7912 327.5535 93.891 0.1144 7591 +7593 2 298.409 328.4493 93.4522 0.1144 7592 +7594 2 298.8128 329.504 93.0191 0.1144 7593 +7595 2 299.14 330.584 92.57 0.1144 7594 +7596 2 299.251 331.6936 92.0237 0.1144 7595 +7597 2 299.2567 332.8079 91.383 0.1144 7596 +7598 2 299.2521 333.9164 90.6892 0.1144 7597 +7599 2 299.1938 335.025 90.0208 0.1144 7598 +7600 2 299.0416 336.1347 89.4589 0.1144 7599 +7601 2 298.8643 337.2501 89.01 0.1144 7600 +7602 2 298.9329 338.3803 88.6906 0.1144 7601 +7603 2 299.5255 339.3356 88.5256 0.1144 7602 +7604 2 300.2131 340.2496 88.48 0.1144 7603 +7605 2 300.9006 341.1625 88.5035 0.1144 7604 +7606 2 301.5904 342.0754 88.5564 0.1144 7605 +7607 2 302.2791 342.9884 88.6116 0.1144 7606 +7608 2 303.0204 343.8601 88.6231 0.1144 7607 +7609 2 303.8464 344.6494 88.5422 0.1144 7608 +7610 2 304.685 345.4251 88.3814 0.1144 7609 +7611 2 305.5235 346.1984 88.1636 0.1144 7610 +7612 2 306.3598 346.9718 87.9124 0.1144 7611 +7613 2 307.2178 347.7211 87.6509 0.1144 7612 +7614 2 308.1261 348.4086 87.4062 0.1144 7613 +7615 2 309.0402 349.0905 87.1903 0.1144 7614 +7616 2 309.9565 349.77 87.0061 0.1144 7615 +7617 2 310.8317 350.5056 86.8678 0.1144 7616 +7618 2 311.494 351.4334 86.8221 0.1144 7617 +7619 2 312.1301 352.384 86.8546 0.1144 7618 +7620 2 312.6232 353.4148 86.9296 0.1144 7619 +7621 2 313.0419 354.4787 87.0232 0.1144 7620 +7622 2 313.4514 355.546 87.1226 0.1144 7621 +7623 2 313.8621 356.6134 87.2169 0.1144 7622 +7624 2 314.2717 357.6808 87.2981 0.1144 7623 +7625 2 314.6824 358.7481 87.3678 0.1144 7624 +7626 2 315.0919 359.8155 87.4275 0.1144 7625 +7627 2 315.5038 360.884 87.4759 0.1144 7626 +7628 2 315.9133 361.9513 87.507 0.1144 7627 +7629 2 316.3229 363.0198 87.5143 0.1144 7628 +7630 2 316.7336 364.0872 87.4894 0.1144 7629 +7631 2 317.1431 365.1545 87.4264 0.1144 7630 +7632 2 317.6144 366.1967 87.3068 0.1144 7631 +7633 2 318.4381 366.9723 87.043 0.1144 7632 +7634 2 319.2881 367.7216 86.6617 0.1144 7633 +7635 2 320.1358 368.4664 86.2028 0.1144 7634 +7636 2 320.9812 369.2088 85.7016 0.1144 7635 +7637 2 321.8266 369.9513 85.1906 0.1144 7636 +7638 2 322.6789 370.688 84.7028 0.1144 7637 +7639 2 323.6422 371.2863 84.3338 0.1144 7638 +7640 2 324.6111 371.8835 84.0549 0.1144 7639 +7641 2 325.5801 372.4853 83.8474 0.1144 7640 +7642 2 326.5514 373.087 83.6965 0.1144 7641 +7643 2 327.5238 373.6887 83.5884 0.1144 7642 +7644 2 328.495 374.2905 83.5111 0.1144 7643 +7645 2 329.4674 374.8934 83.4599 0.1144 7644 +7646 2 330.449 375.4802 83.4397 0.1144 7645 +7647 2 331.49 375.955 83.4963 0.1144 7646 +7648 2 332.5311 376.4275 83.6088 0.1144 7647 +7649 2 333.571 376.9 83.7575 0.1144 7648 +7650 2 334.6028 377.369 84.1372 0.1144 7649 +7651 2 281.3039 319.1817 86.9478 0.1144 7573 +7652 2 281.1025 318.0869 87.5776 0.1144 7651 +7653 2 280.8978 316.9818 88.1051 0.1144 7652 +7654 2 280.6941 315.8767 88.6256 0.1144 7653 +7655 2 280.5397 314.7636 89.1467 0.1144 7654 +7656 2 280.4413 313.6436 89.6624 0.1144 7655 +7657 2 279.962 312.6552 90.1216 0.1144 7656 +7658 2 279.1326 311.8887 90.4322 0.1144 7657 +7659 2 278.2391 311.1794 90.6307 0.1144 7658 +7660 2 277.3411 310.4736 90.7558 0.1144 7659 +7661 2 276.5197 309.6808 90.8768 0.1144 7660 +7662 2 275.7543 308.8342 91.0414 0.1144 7661 +7663 2 274.9798 307.9957 91.2604 0.1144 7662 +7664 2 274.1951 307.1709 91.5253 0.1144 7663 +7665 2 273.4103 306.3472 91.8204 0.1144 7664 +7666 2 272.6255 305.5246 92.1298 0.1144 7665 +7667 2 271.9711 304.598 92.4381 0.1144 7666 +7668 2 271.6325 303.5226 92.7293 0.1144 7667 +7669 2 271.4403 302.4004 93.0017 0.1144 7668 +7670 2 271.247 301.2781 93.27 0.1144 7669 +7671 2 270.9919 300.1696 93.5547 0.1144 7670 +7672 2 270.7047 299.0691 93.8647 0.1144 7671 +7673 2 270.4153 297.972 94.1987 0.1144 7672 +7674 2 270.127 296.8737 94.5549 0.1144 7673 +7675 2 269.801 295.7892 94.9346 0.1144 7674 +7676 2 269.4109 294.7264 95.3414 0.1144 7675 +7677 2 268.9933 293.6762 95.7678 0.1144 7676 +7678 2 268.5734 292.6272 96.2041 0.1144 7677 +7679 2 268.1525 291.5781 96.6417 0.1144 7678 +7680 2 267.6651 290.5588 97.0662 0.1144 7679 +7681 2 267.1354 289.5578 97.4655 0.1144 7680 +7682 2 266.5989 288.558 97.8331 0.1144 7681 +7683 2 266.0612 287.5581 98.1635 0.1144 7682 +7684 2 265.5224 286.5548 98.4553 0.1144 7683 +7685 2 264.9573 285.5641 98.6597 0.1144 7684 +7686 2 264.3704 284.5837 98.7526 0.1144 7685 +7687 2 263.7767 283.6056 98.7532 0.1144 7686 +7688 2 263.1829 282.6275 98.6922 0.1144 7687 +7689 2 262.7139 281.5864 98.6807 0.1144 7688 +7690 2 262.1384 280.598 98.6975 0.1144 7689 +7691 2 261.5024 279.6474 98.7305 0.1144 7690 +7692 2 260.7485 278.7894 98.7798 0.1144 7691 +7693 2 260.0598 277.8765 98.8434 0.1144 7692 +7694 2 259.4855 276.888 98.9192 0.1144 7693 +7695 2 259.0863 275.8184 99.0038 0.1144 7694 +7696 2 258.8369 274.7041 99.1074 0.1144 7695 +7697 2 258.4948 273.6139 99.2435 0.1144 7696 +7698 2 258.2065 272.5145 99.5431 0.1144 7697 +7699 2 258.115 271.3831 99.8953 0.1144 7698 +7700 2 257.9617 270.2563 100.2039 0.1144 7699 +7701 2 256.9802 269.6957 100.4769 0.1144 7700 +7702 2 255.9334 269.2438 100.7118 0.1144 7701 +7703 2 255.9917 269.2987 101.3754 0.1144 7702 +7704 2 256.0936 269.8284 103.616 0.1144 7703 +7705 2 255.962 270.85 104.6539 0.1144 7704 +7706 2 255.676 271.9196 105.3083 0.1144 7705 +7707 2 255.2207 272.9001 106.1908 0.1144 7706 +7708 2 254.7013 273.8221 107.2534 0.1144 7707 +7709 2 254.0481 274.6584 108.2785 0.1144 7708 +7710 2 253.2908 275.4329 109.1748 0.1144 7709 +7711 2 252.5048 276.1971 109.9781 0.1144 7710 +7712 2 251.7109 276.9681 110.6907 0.1144 7711 +7713 2 250.727 277.4646 111.2994 0.1144 7712 +7714 2 249.6242 277.6717 111.7785 0.1144 7713 +7715 2 248.526 277.4635 112.1882 0.1144 7714 +7716 2 247.5101 276.9681 112.5429 0.1144 7715 +7717 2 246.5217 276.4076 112.8632 0.1144 7716 +7718 2 245.5173 275.8722 113.1432 0.1144 7717 +7719 2 244.4236 275.9957 113.3955 0.1144 7718 +7720 2 244.244 277.0528 113.6117 0.1144 7719 +7721 2 244.5494 278.1476 113.8318 0.1144 7720 +7722 2 244.9075 279.2287 114.0955 0.1144 7721 +7723 2 245.2679 280.3075 114.4156 0.1144 7722 +7724 2 245.7895 281.313 114.7726 0.1144 7723 +7725 2 246.3101 282.3106 115.2869 0.1144 7724 +7726 2 246.8146 283.2933 116.0124 0.1144 7725 +7727 2 247.3122 284.2623 116.8661 0.1144 7726 +7728 2 247.8064 285.2244 117.7826 0.1144 7727 +7729 2 248.2995 286.183 118.7133 0.1144 7728 +7730 2 248.7845 287.1177 119.7568 0.1144 7729 +7731 2 249.1689 287.8384 121.7185 0.1144 7730 +7732 2 255.6165 268.2097 100.9162 0.1144 7702 +7733 2 254.9473 267.291 101.1595 0.1144 7732 +7734 2 254.0366 266.6184 101.5168 0.1144 7733 +7735 2 253.1203 265.9594 101.9712 0.1144 7734 +7736 2 252.681 266.1974 102.5352 0.1144 7735 +7737 2 251.7269 266.568 103.7529 0.1144 7736 +7738 2 250.6904 266.8414 104.6576 0.1144 7737 +7739 2 249.6071 267.1057 105.2856 0.1144 7738 +7740 2 248.5294 267.3471 106.0091 0.1144 7739 +7741 2 247.4838 267.251 106.8404 0.1144 7740 +7742 2 246.4748 266.8689 107.7672 0.1144 7741 +7743 2 245.4727 266.4845 108.74 0.1144 7742 +7744 2 244.6158 265.8736 109.6878 0.1144 7743 +7745 2 243.8756 265.0854 110.6003 0.1144 7744 +7746 2 243.1664 264.2766 111.5514 0.1144 7745 +7747 2 242.4708 263.4666 112.5606 0.1144 7746 +7748 2 241.6826 262.7802 113.645 0.1144 7747 +7749 2 240.8223 262.1945 114.8034 0.1144 7748 +7750 2 239.9666 261.6122 115.9976 0.1144 7749 +7751 2 239.1246 261.0059 117.1786 0.1144 7750 +7752 2 238.3295 260.3149 118.2586 0.1144 7751 +7753 2 237.5516 259.5839 119.2632 0.1144 7752 +7754 2 236.7691 258.8494 120.2356 0.1144 7753 +7755 2 236.665 258.3713 121.9232 0.1144 7754 +7756 2 237.4647 257.9056 123.5654 0.1144 7755 +7757 2 238.2277 257.4606 125.3445 0.1144 7756 +7758 2 238.9576 256.8417 126.8632 0.1144 7757 +7759 2 239.6714 256.1027 128.0888 0.1144 7758 +7760 2 240.3979 255.3305 129.1391 0.1144 7759 +7761 2 240.7239 254.2963 129.9264 0.1144 7760 +7762 2 240.5546 253.1866 130.3652 0.1144 7761 +7763 2 240.2961 252.0758 130.562 0.1144 7762 +7764 2 240.2091 250.9364 130.6189 0.1144 7763 +7765 2 241.1243 250.3129 130.6654 0.1144 7764 +7766 2 242.1299 249.7684 130.7376 0.1144 7765 +7767 2 243.1343 249.2238 130.8574 0.1144 7766 +7768 2 244.1399 248.6827 131.0282 0.1144 7767 +7769 2 245.1432 248.1405 131.2366 0.1144 7768 +7770 2 246.1465 247.5982 131.4681 0.1144 7769 +7771 2 247.1486 247.056 131.7112 0.1144 7770 +7772 2 248.1508 246.5137 131.9646 0.1144 7771 +7773 2 249.0488 245.8159 132.2642 0.1144 7772 +7774 2 249.9034 245.0688 132.6052 0.1144 7773 +7775 2 250.7568 244.3206 132.9661 0.1144 7774 +7776 2 251.6068 243.5702 133.327 0.1144 7775 +7777 2 252.1937 242.5955 133.63 0.1144 7776 +7778 2 252.5002 241.4973 133.8403 0.1144 7777 +7779 2 252.808 240.399 134.0587 0.1144 7778 +7780 2 253.277 265.2799 102.3039 0.1144 7735 +7781 2 253.5287 264.1828 102.8045 0.1144 7780 +7782 2 253.7815 263.0857 103.2984 0.1144 7781 +7783 2 254.0344 261.9886 103.789 0.1144 7782 +7784 2 254.2872 260.8892 104.2642 0.1144 7783 +7785 2 254.2174 259.7864 104.8065 0.1144 7784 +7786 2 253.9794 258.695 105.4099 0.1144 7785 +7787 2 253.8593 257.5808 105.9489 0.1144 7786 +7788 2 253.9623 256.4539 106.3168 0.1144 7787 +7789 2 254.1087 255.3236 106.5277 0.1144 7788 +7790 2 254.2574 254.1899 106.6047 0.1144 7789 +7791 2 254.1396 253.0562 106.5994 0.1144 7790 +7792 2 253.8536 251.95 106.5588 0.1144 7791 +7793 2 253.5436 250.8495 106.5067 0.1144 7792 +7794 2 253.3159 249.7295 106.4106 0.1144 7793 +7795 2 253.5962 248.6484 106.0464 0.1144 7794 +7796 2 253.2038 248.4059 105.7148 0.1144 7795 +7797 2 252.2383 247.811 105.4623 0.1144 7796 +7798 2 251.2647 247.2104 105.4178 0.1144 7797 +7799 2 250.1528 247.0765 105.315 0.1144 7798 +7800 2 249.0213 247.2081 105.11 0.1144 7799 +7801 2 247.9426 247.565 104.8569 0.1144 7800 +7802 2 246.937 248.0958 104.6013 0.1144 7801 +7803 2 246.0149 248.7594 104.2924 0.1144 7802 +7804 2 245.3571 249.6597 103.7593 0.1144 7803 +7805 2 244.5758 250.4777 103.3477 0.1144 7804 +7806 2 243.7635 251.2739 103.0492 0.1144 7805 +7807 2 242.8735 251.9877 102.8426 0.1144 7806 +7808 2 241.8302 252.4533 102.7141 0.1144 7807 +7809 2 240.7742 252.8938 102.6556 0.1144 7808 +7810 2 239.66 253.1523 102.6474 0.1144 7809 +7811 2 238.5457 253.412 102.6474 0.1144 7810 +7812 2 237.4315 253.6706 102.6474 0.1144 7811 +7813 2 254.0881 247.8442 105.8781 0.1144 7795 +7814 2 254.6853 246.8695 105.77 0.1144 7813 +7815 2 254.3261 246.1636 105.2072 0.1144 7814 +7816 2 253.8879 245.1786 104.2986 0.1144 7815 +7817 2 253.682 244.1502 103.2304 0.1144 7816 +7818 2 253.5928 243.0851 102.2333 0.1144 7817 +7819 2 253.5047 242.0063 101.3295 0.1144 7818 +7820 2 253.4143 240.9138 100.5256 0.1144 7819 +7821 2 253.3617 239.8087 99.825 0.1144 7820 +7822 2 253.5607 238.7265 99.1995 0.1144 7821 +7823 2 254.0435 237.7175 98.6905 0.1144 7822 +7824 2 254.7105 236.8046 98.3433 0.1144 7823 +7825 2 255.589 236.117 97.9188 0.1144 7824 +7826 2 256.4688 235.4283 97.3384 0.1144 7825 +7827 2 257.1861 234.5761 96.7338 0.1144 7826 +7828 2 257.8839 233.702 96.1428 0.1144 7827 +7829 2 258.0521 233.1987 93.996 0.1144 7828 +7830 2 258.3941 232.1679 93.1664 0.1144 7829 +7831 2 258.7385 231.0869 92.8043 0.1144 7830 +7832 2 259.0725 230.0035 92.447 0.1144 7831 +7833 2 259.4077 228.919 92.0889 0.1144 7832 +7834 2 259.7452 227.8459 91.593 0.1144 7833 +7835 2 260.0529 226.8769 90.3073 0.1144 7834 +7836 2 258.3907 234.4514 95.9918 0.1144 7828 +7837 2 259.0714 235.3643 96.206 0.1144 7836 +7838 2 259.7578 236.2692 96.549 0.1144 7837 +7839 2 260.4442 237.1718 96.9136 0.1144 7838 +7840 2 261.245 237.9817 97.144 0.1144 7839 +7841 2 262.1247 238.7128 97.1594 0.1144 7840 +7842 2 263.0125 239.4312 96.9996 0.1144 7841 +7843 2 263.668 240.367 96.8859 0.1144 7842 +7844 2 264.0638 240.1588 96.4625 0.1144 7843 +7845 2 265.0316 239.6508 95.7118 0.1144 7844 +7846 2 266.02 239.0903 95.4089 0.1144 7845 +7847 2 266.9478 238.4325 95.1667 0.1144 7846 +7848 2 267.8218 237.6969 95.0468 0.1144 7847 +7849 2 268.689 236.951 95.053 0.1144 7848 +7850 2 269.5539 236.2051 95.1784 0.1144 7849 +7851 2 270.4004 235.4421 95.4229 0.1144 7850 +7852 2 271.1783 234.6218 95.8135 0.1144 7851 +7853 2 271.8899 233.7535 96.3514 0.1144 7852 +7854 2 272.5889 232.8841 96.9671 0.1144 7853 +7855 2 273.2867 232.0158 97.6032 0.1144 7854 +7856 2 273.9045 231.0846 98.1691 0.1144 7855 +7857 2 274.242 230.0206 98.5326 0.1144 7856 +7858 2 274.4113 228.8915 98.6563 0.1144 7857 +7859 2 274.5669 227.759 98.5944 0.1144 7858 +7860 2 274.7224 226.6287 98.4124 0.1144 7859 +7861 2 274.9696 225.5167 98.191 0.1144 7860 +7862 2 275.3722 224.4517 98.0109 0.1144 7861 +7863 2 275.8378 223.4072 97.9101 0.1144 7862 +7864 2 276.308 222.365 97.8866 0.1144 7863 +7865 2 276.7794 221.3228 97.9325 0.1144 7864 +7866 2 277.1363 220.2406 98.0434 0.1144 7865 +7867 2 277.3868 219.1275 98.219 0.1144 7866 +7868 2 277.6099 218.0098 98.4598 0.1144 7867 +7869 2 277.8307 216.8944 98.7669 0.1144 7868 +7870 2 277.809 215.7904 99.3331 0.1144 7869 +7871 2 277.5824 214.738 100.2635 0.1144 7870 +7872 2 277.325 213.7232 101.3838 0.1144 7871 +7873 2 276.9086 212.7268 102.305 0.1144 7872 +7874 2 276.403 211.7441 103.0336 0.1144 7873 +7875 2 275.8916 210.7488 103.6087 0.1144 7874 +7876 2 275.3871 209.765 104.3302 0.1144 7875 +7877 2 263.0216 241.217 96.8257 0.1144 7843 +7878 2 262.3295 242.1287 96.8246 0.1144 7877 +7879 2 261.6374 243.0382 96.8856 0.1144 7878 +7880 2 260.9453 243.9488 96.9903 0.1144 7879 +7881 2 261.1363 244.109 97.4512 0.1144 7880 +7882 2 261.7987 244.6604 99.2785 0.1144 7881 +7883 2 262.4519 245.205 101.1013 0.1144 7882 +7884 2 263.2115 245.849 102.4626 0.1144 7883 +7885 2 264.0512 246.1671 104.0922 0.1144 7884 +7886 2 264.86 245.6088 105.2803 0.1144 7885 +7887 2 265.6528 244.8755 106.2048 0.1144 7886 +7888 2 266.4593 244.1227 106.9404 0.1144 7887 +7889 2 267.5198 244.0163 107.3722 0.1144 7888 +7890 2 268.6478 244.1902 107.4906 0.1144 7889 +7891 2 269.7758 244.3778 107.434 0.1144 7890 +7892 2 270.9141 244.4911 107.5281 0.1144 7891 +7893 2 272.0123 244.5918 108.2567 0.1144 7892 +7894 2 260.149 244.1216 97.1404 0.1144 7880 +7895 2 259.1229 244.5643 97.3048 0.1144 7894 +7896 2 258.2935 245.3388 97.3837 0.1144 7895 +7897 2 257.5647 246.2208 97.4137 0.1144 7896 +7898 2 256.7033 246.9438 97.5078 0.1144 7897 +7899 2 255.6348 247.2127 97.8606 0.1144 7898 +7900 2 254.5206 247.2687 98.4774 0.1144 7899 +7901 2 253.4738 247.6588 98.9901 0.1144 7900 +7902 2 252.4396 248.121 99.3852 0.1144 7901 +7903 2 251.402 248.5866 99.6702 0.1144 7902 +7904 2 250.3369 248.9996 99.8438 0.1144 7903 +7905 2 249.2078 248.9733 99.9432 0.1144 7904 +7906 2 248.0707 248.8486 100.0028 0.1144 7905 +7907 2 246.9301 248.7605 100.0502 0.1144 7906 +7908 2 245.7987 248.9058 100.0633 0.1144 7907 +7909 2 244.6707 249.0968 100.0378 0.1144 7908 +7910 2 243.5359 249.2261 99.9412 0.1144 7909 +7911 2 242.3953 249.2776 99.7494 0.1144 7910 +7912 2 241.257 249.3176 99.503 0.1144 7911 +7913 2 240.1176 249.3565 99.2569 0.1144 7912 +7914 2 238.977 249.392 99.0643 0.1144 7913 +7915 2 237.8765 249.0854 99.0508 0.1144 7914 +7916 2 236.9018 248.4962 99.2746 0.1144 7915 +7917 2 236.1605 247.6508 99.7716 0.1144 7916 +7918 2 235.1744 248.1244 101.4546 0.1144 7917 +7919 2 234.2054 248.5077 102.6077 0.1144 7918 +7920 2 233.2273 248.8829 103.7313 0.1144 7919 +7921 2 232.2446 249.2593 104.8286 0.1144 7920 +7922 2 231.3076 249.726 105.954 0.1144 7921 +7923 2 230.5217 250.3896 107.1568 0.1144 7922 +7924 2 229.6889 251.0714 108.1016 0.1144 7923 +7925 2 228.8332 251.7578 108.8998 0.1144 7924 +7926 2 227.9672 252.4511 109.58 0.1144 7925 +7927 2 227.1229 253.1958 110.0803 0.1144 7926 +7928 2 226.3438 254.0263 110.3295 0.1144 7927 +7929 2 225.6448 254.9301 110.4356 0.1144 7928 +7930 2 225.0557 255.9094 110.5633 0.1144 7929 +7931 2 224.1165 256.5592 110.6515 0.1144 7930 +7932 2 223.0457 256.963 110.6773 0.1144 7931 +7933 2 221.976 257.3691 110.6692 0.1144 7932 +7934 2 220.9064 257.7729 110.6434 0.1144 7933 +7935 2 219.8379 258.1779 110.5003 0.1144 7934 +7936 2 236.3069 247.2699 99.0416 0.1144 7917 +7937 2 236.6742 246.3078 100.263 0.1144 7936 +7938 2 237.0723 245.2656 100.8602 0.1144 7937 +7939 2 237.4681 244.2268 101.523 0.1144 7938 +7940 2 237.8639 243.195 102.2507 0.1144 7939 +7941 2 238.254 242.1654 103.0072 0.1144 7940 +7942 2 238.5537 241.1049 103.7481 0.1144 7941 +7943 2 238.7299 240.0089 104.4364 0.1144 7942 +7944 2 238.9244 238.9118 105.0652 0.1144 7943 +7945 2 239.1326 237.8124 105.6457 0.1144 7944 +7946 2 239.3397 236.7096 106.1956 0.1144 7945 +7947 2 239.5479 235.6068 106.7312 0.1144 7946 +7948 2 239.5605 234.488 107.3106 0.1144 7947 +7949 2 239.4953 233.376 107.9523 0.1144 7948 +7950 2 239.43 232.2675 108.6243 0.1144 7949 +7951 2 239.4918 231.1624 109.3 0.1144 7950 +7952 2 240.0341 230.19 109.9386 0.1144 7951 +7953 2 240.5775 229.2153 110.553 0.1144 7952 +7954 2 241.0923 228.2921 111.622 0.1144 7953 +7955 2 254.7013 246.8123 107.0297 0.1144 7814 +7956 2 254.9255 245.992 108.3096 0.1144 7955 +7957 2 255.2241 244.9052 108.7559 0.1144 7956 +7958 2 255.5238 243.8116 109.1202 0.1144 7957 +7959 2 255.8224 242.719 109.5021 0.1144 7958 +7960 2 256.1427 241.63 109.8451 0.1144 7959 +7961 2 256.5855 240.5786 109.9832 0.1144 7960 +7962 2 257.066 239.541 109.8913 0.1144 7961 +7963 2 257.3622 238.4382 109.7723 0.1144 7962 +7964 2 257.4229 237.2976 109.821 0.1144 7963 +7965 2 257.4709 236.1582 110.0268 0.1144 7964 +7966 2 257.519 235.0234 110.3623 0.1144 7965 +7967 2 257.5682 233.8942 110.7932 0.1144 7966 +7968 2 257.6151 232.7685 111.2706 0.1144 7967 +7969 2 257.662 231.6875 112.1831 0.1144 7968 +7970 2 398.0228 544.9867 52.1797 0.1144 3447 +7971 2 398.4987 545.9168 52.8724 0.1144 7970 +7972 2 399.439 546.5094 53.2683 0.1144 7971 +7973 2 400.4366 547.0562 53.5293 0.1144 7972 +7974 2 401.3884 547.6831 53.748 0.1144 7973 +7975 2 402.307 548.3604 53.9302 0.1144 7974 +7976 2 403.1662 549.1108 54.1064 0.1144 7975 +7977 2 403.9212 549.9654 54.2696 0.1144 7976 +7978 2 404.5745 550.9012 54.406 0.1144 7977 +7979 2 405.2551 551.8176 54.549 0.1144 7978 +7980 2 405.9461 552.727 54.7039 0.1144 7979 +7981 2 406.5776 553.6788 54.8411 0.1144 7980 +7982 2 407.1713 554.6547 54.9531 0.1144 7981 +7983 2 407.7033 555.6671 55.0404 0.1144 7982 +7984 2 408.1826 556.7047 55.1102 0.1144 7983 +7985 2 408.6471 557.7503 55.1729 0.1144 7984 +7986 2 409.1276 558.7857 55.3112 0.1144 7985 +7987 2 409.6229 559.8095 55.606 0.1144 7986 +7988 2 409.9455 560.8929 55.9857 0.1144 7987 +7989 2 410.1366 562.0106 56.3385 0.1144 7988 +7990 2 410.2395 563.142 56.6398 0.1144 7989 +7991 2 410.3574 564.2746 56.9164 0.1144 7990 +7992 2 410.4935 565.406 57.1813 0.1144 7991 +7993 2 410.6399 566.5363 57.4118 0.1144 7992 +7994 2 410.95 567.6311 57.6484 0.1144 7993 +7995 2 411.3424 568.6961 57.9816 0.1144 7994 +7996 2 411.8171 569.728 58.3041 0.1144 7995 +7997 2 412.285 570.7633 58.6292 0.1144 7996 +7998 2 412.5928 571.8524 59.0016 0.1144 7997 +7999 2 412.7518 572.9747 59.3701 0.1144 7998 +8000 2 412.841 574.1095 59.6518 0.1144 7999 +8001 2 413.3466 575.1208 59.8472 0.1144 8000 +8002 2 413.9553 576.0875 59.9774 0.1144 8001 +8003 2 414.6016 577.0313 60.0575 0.1144 8002 +8004 2 415.1553 578.0312 60.1062 0.1144 8003 +8005 2 415.6404 579.0665 60.1482 0.1144 8004 +8006 2 416.2822 580.0114 60.1992 0.1144 8005 +8007 2 416.8656 580.9953 60.2596 0.1144 8006 +8008 2 417.3301 582.0397 60.3506 0.1144 8007 +8009 2 417.9787 582.9744 60.569 0.1144 8008 +8010 2 418.9694 583.535 60.7894 0.1144 8009 +8011 2 420.0882 583.7672 60.9025 0.1144 8010 +8012 2 421.1361 584.2271 60.9081 0.1144 8011 +8013 2 421.9141 585.0896 60.5489 0.1144 8012 +8014 2 422.7057 585.8973 60.1362 0.1144 8013 +8015 2 423.5351 586.6592 59.645 0.1144 8014 +8016 2 424.321 587.436 58.9467 0.1144 8015 +8017 2 425.1081 588.1384 57.8813 0.1144 8016 +8018 2 426.0736 588.5274 56.7372 0.1144 8017 +8019 2 427.0689 588.9484 55.8186 0.1144 8018 +8020 2 428.0505 589.4552 55.1029 0.1144 8019 +8021 2 429.0423 589.9768 54.5434 0.1144 8020 +8022 2 429.9804 590.6037 54.1722 0.1144 8021 +8023 2 430.5822 591.559 54.0602 0.1144 8022 +8024 2 430.7297 592.6812 54.0854 0.1144 8023 +8025 2 430.5044 593.8024 54.0688 0.1144 8024 +8026 2 430.2023 594.9052 53.9994 0.1144 8025 +8027 2 429.8992 596.008 53.9098 0.1144 8026 +8028 2 429.6143 597.1154 53.8605 0.1144 8027 +8029 2 429.3901 598.2342 53.9773 0.1144 8028 +8030 2 429.2952 599.3553 54.3421 0.1144 8029 +8031 2 429.7219 600.2431 54.9889 0.1144 8030 +8032 2 430.7103 600.6972 55.8547 0.1144 8031 +8033 2 431.6163 601.2235 56.9089 0.1144 8032 +8034 2 432.3977 601.9019 58.1 0.1144 8033 +8035 2 432.8427 602.8571 58.9963 0.1144 8034 +8036 2 432.7969 603.9428 59.6378 0.1144 8035 +8037 2 432.8976 605.0479 60.109 0.1144 8036 +8038 2 433.6538 605.764 60.4766 0.1144 8037 +8039 2 434.6662 606.2822 60.7818 0.1144 8038 +8040 2 435.6958 606.7673 61.0742 0.1144 8039 +8041 2 436.7838 606.8623 61.5818 0.1144 8040 +8042 2 437.8854 606.7822 62.312 0.1144 8041 +8043 2 438.4163 607.1197 63.9542 0.1144 8042 +8044 2 439.3086 607.6894 64.8757 0.1144 8043 +8045 2 440.2615 608.298 65.2646 0.1144 8044 +8046 2 441.2179 608.9077 65.6379 0.1144 8045 +8047 2 442.1709 609.5163 66.0576 0.1144 8046 +8048 2 443.1227 610.1238 66.5095 0.1144 8047 +8049 2 444.0733 610.7301 66.9813 0.1144 8048 +8050 2 445.024 611.3364 67.4598 0.1144 8049 +8051 2 445.9529 611.9748 67.9358 0.1144 8050 +8052 2 446.8155 612.7001 68.3973 0.1144 8051 +8053 2 447.7319 613.3339 69.0119 0.1144 8052 +8054 2 448.5327 614.1072 69.643 0.1144 8053 +8055 2 449.0818 615.0945 70.0857 0.1144 8054 +8056 2 449.6252 616.0932 70.4102 0.1144 8055 +8057 2 450.172 617.093 70.649 0.1144 8056 +8058 2 450.7703 618.0643 70.842 0.1144 8057 +8059 2 451.8342 618.4521 71.1024 0.1144 8058 +8060 2 452.9073 618.8251 71.4426 0.1144 8059 +8061 2 453.199 619.7631 71.855 0.1144 8060 +8062 2 453.5308 620.8374 72.3744 0.1144 8061 +8063 2 453.866 621.9081 72.9254 0.1144 8062 +8064 2 454.2218 622.9778 73.3972 0.1144 8063 +8065 2 454.859 623.9101 73.8186 0.1144 8064 +8066 2 455.7307 624.6297 74.2286 0.1144 8065 +8067 2 456.6356 625.3081 74.6365 0.1144 8066 +8068 2 457.5417 625.9865 75.0518 0.1144 8067 +8069 2 458.3825 626.7415 75.4886 0.1144 8068 +8070 2 459.1787 627.5401 75.9508 0.1144 8069 +8071 2 459.9692 628.3443 76.4299 0.1144 8070 +8072 2 460.7574 629.1485 76.9188 0.1144 8071 +8073 2 461.5468 629.9516 77.4161 0.1144 8072 +8074 2 462.3339 630.7558 77.9212 0.1144 8073 +8075 2 463.1221 631.5578 78.4336 0.1144 8074 +8076 2 463.7433 632.4924 78.9692 0.1144 8075 +8077 2 464.2649 633.4854 79.5256 0.1144 8076 +8078 2 464.7729 634.483 80.0974 0.1144 8077 +8079 2 465.2842 635.4783 80.6803 0.1144 8078 +8080 2 465.8826 636.4244 81.2647 0.1144 8079 +8081 2 466.4957 637.3602 81.8485 0.1144 8080 +8082 2 467.1089 638.2959 82.4281 0.1144 8081 +8083 2 467.7233 639.2329 83.0026 0.1144 8082 +8084 2 468.3364 640.1698 83.5716 0.1144 8083 +8085 2 468.9508 641.1068 84.135 0.1144 8084 +8086 2 469.5651 642.0448 84.6902 0.1144 8085 +8087 2 470.1794 642.9841 85.2342 0.1144 8086 +8088 2 470.8784 643.8626 85.7668 0.1144 8087 +8089 2 471.7158 644.6131 86.2753 0.1144 8088 +8090 2 472.5727 645.3464 86.749 0.1144 8089 +8091 2 473.1756 646.2936 87.1825 0.1144 8090 +8092 2 472.8552 647.3827 87.5283 0.1144 8091 +8093 2 472.5384 648.4604 88.0636 0.1144 8092 +8094 2 453.4816 619.087 71.0475 0.1144 8060 +8095 2 454.502 619.5515 70.4833 0.1144 8094 +8096 2 455.5385 620.0228 70.2176 0.1144 8095 +8097 2 456.5738 620.4953 69.9373 0.1144 8096 +8098 2 457.608 620.9666 69.6301 0.1144 8097 +8099 2 458.6433 621.438 69.3132 0.1144 8098 +8100 2 459.6775 621.9093 69.0099 0.1144 8099 +8101 2 460.714 622.3818 68.7355 0.1144 8100 +8102 2 461.7504 622.8542 68.493 0.1144 8101 +8103 2 462.7892 623.3278 68.2836 0.1144 8102 +8104 2 463.8806 623.6619 68.1545 0.1144 8103 +8105 2 465.0108 623.5647 68.4317 0.1144 8104 +8106 2 438.5352 606.8314 62.5853 0.1144 8042 +8107 2 439.6689 606.9172 62.8978 0.1144 8106 +8108 2 440.8072 607.0041 63.0204 0.1144 8107 +8109 2 441.9478 607.0911 62.9955 0.1144 8108 +8110 2 443.0872 607.178 62.8538 0.1144 8109 +8111 2 444.2244 607.2649 62.6475 0.1144 8110 +8112 2 445.3615 607.3507 62.4336 0.1144 8111 +8113 2 446.4998 607.4377 62.2331 0.1144 8112 +8114 2 447.638 607.5246 62.0511 0.1144 8113 +8115 2 448.7775 607.6104 61.8946 0.1144 8114 +8116 2 449.9169 607.6985 61.7722 0.1144 8115 +8117 2 450.9991 608.028 61.7078 0.1144 8116 +8118 2 451.9669 608.6274 61.7268 0.1144 8117 +8119 2 452.8982 609.291 61.8204 0.1144 8118 +8120 2 453.7848 610.006 62.0374 0.1144 8119 +8121 2 454.5856 610.8022 62.4666 0.1144 8120 +8122 2 455.3326 611.6293 63.0888 0.1144 8121 +8123 2 456.0144 612.5125 63.6734 0.1144 8122 +8124 2 456.4263 613.5741 63.8081 0.1144 8123 +8125 2 457.0474 614.4641 63.5964 0.1144 8124 +8126 2 458.0118 615.0716 63.429 0.1144 8125 +8127 2 459.0106 615.6287 63.3494 0.1144 8126 +8128 2 460.0093 616.187 63.3744 0.1144 8127 +8129 2 460.6911 617.0278 63.5256 0.1144 8128 +8130 2 460.9382 618.1295 63.7694 0.1144 8129 +8131 2 461.3798 619.1477 64.0713 0.1144 8130 +8132 2 462.1131 620.0091 64.4003 0.1144 8131 +8133 2 463.1049 620.5102 64.6545 0.1144 8132 +8134 2 464.226 620.5296 64.8348 0.1144 8133 +8135 2 465.3643 620.4541 65.002 0.1144 8134 +8136 2 466.4454 620.7424 65.2445 0.1144 8135 +8137 2 467.4922 621.1851 65.5628 0.1144 8136 +8138 2 468.5069 621.6954 65.8832 0.1144 8137 +8139 2 469.3203 622.4859 66.0162 0.1144 8138 +8140 2 470.0913 623.329 65.9518 0.1144 8139 +8141 2 470.8612 624.1721 65.7443 0.1144 8140 +8142 2 471.6106 625.0336 65.6048 0.1144 8141 +8143 2 472.3553 625.9018 65.588 0.1144 8142 +8144 2 473.1001 626.7701 65.697 0.1144 8143 +8145 2 473.8425 627.6339 65.926 0.1144 8144 +8146 2 474.728 628.3534 66.1567 0.1144 8145 +8147 2 475.6203 629.0627 66.383 0.1144 8146 +8148 2 476.5126 629.7731 66.605 0.1144 8147 +8149 2 477.4049 630.4824 66.8408 0.1144 8148 +8150 2 477.5937 630.9949 67.2896 0.1144 8149 +8151 2 477.9712 632.0188 68.1201 0.1144 8150 +8152 2 478.359 633.0187 69.0894 0.1144 8151 +8153 2 478.8738 633.9739 69.9308 0.1144 8152 +8154 2 479.5373 634.8754 70.4858 0.1144 8153 +8155 2 480.2398 635.7677 70.7834 0.1144 8154 +8156 2 480.9468 636.6657 70.8716 0.1144 8155 +8157 2 481.6549 637.5638 70.8145 0.1144 8156 +8158 2 482.3619 638.4618 70.6863 0.1144 8157 +8159 2 483.0689 639.3599 70.5558 0.1144 8158 +8160 2 483.777 640.2579 70.4715 0.1144 8159 +8161 2 484.484 641.1559 70.4572 0.1144 8160 +8162 2 485.1921 642.054 70.5289 0.1144 8161 +8163 2 485.8088 643.0058 70.7552 0.1144 8162 +8164 2 486.1989 644.0503 71.2662 0.1144 8163 +8165 2 486.4311 645.1176 72.0916 0.1144 8164 +8166 2 486.6382 646.1598 73.1226 0.1144 8165 +8167 2 486.8406 647.186 74.2599 0.1144 8166 +8168 2 487.4275 647.9639 75.5756 0.1144 8167 +8169 2 488.3942 648.1915 76.8877 0.1144 8168 +8170 2 489.3666 648.5897 77.9562 0.1144 8169 +8171 2 490.0782 649.4408 78.6349 0.1144 8170 +8172 2 490.8023 650.3091 79.0628 0.1144 8171 +8173 2 491.5322 651.1854 79.287 0.1144 8172 +8174 2 492.2655 652.0628 79.3587 0.1144 8173 +8175 2 492.9976 652.9414 79.3388 0.1144 8174 +8176 2 493.731 653.82 79.2834 0.1144 8175 +8177 2 494.4631 654.6986 79.231 0.1144 8176 +8178 2 495.1964 655.5761 79.1829 0.1144 8177 +8179 2 495.9286 656.4547 79.0891 0.1144 8178 +8180 2 477.5342 630.5682 65.6202 0.1144 8149 +8181 2 478.4872 631.2009 65.5402 0.1144 8180 +8182 2 479.4401 631.8346 65.506 0.1144 8181 +8183 2 480.3931 632.4673 65.4654 0.1144 8182 +8184 2 481.346 633.0999 65.42 0.1144 8183 +8185 2 482.299 633.7325 65.3724 0.1144 8184 +8186 2 483.2519 634.3652 65.3232 0.1144 8185 +8187 2 484.2049 634.9978 65.2747 0.1144 8186 +8188 2 485.1567 635.6316 65.2285 0.1144 8187 +8189 2 486.1096 636.2642 65.1848 0.1144 8188 +8190 2 487.0626 636.8968 65.1445 0.1144 8189 +8191 2 488.0155 637.5295 65.0661 0.1144 8190 +8192 2 421.3432 583.8015 61.6896 0.1144 8012 +8193 2 421.8408 582.7856 62.0693 0.1144 8192 +8194 2 422.4666 581.8681 62.3087 0.1144 8193 +8195 2 423.3532 581.2149 63.0524 0.1144 8194 +8196 2 424.2146 580.6017 64.1161 0.1144 8195 +8197 2 425.0143 579.9165 65.1997 0.1144 8196 +8198 2 425.7476 579.1283 66.1371 0.1144 8197 +8199 2 426.4763 578.3137 66.9637 0.1144 8198 +8200 2 427.2154 577.4901 67.6738 0.1144 8199 +8201 2 428.11 576.8357 68.2872 0.1144 8200 +8202 2 429.0595 576.2408 68.8416 0.1144 8201 +8203 2 430.0445 575.7054 69.4014 0.1144 8202 +8204 2 431.0592 575.241 70.0073 0.1144 8203 +8205 2 432.0796 574.7936 70.6401 0.1144 8204 +8206 2 433.1001 574.3452 71.2687 0.1144 8205 +8207 2 434.1057 573.8556 71.8575 0.1144 8206 +8208 2 433.3449 573.5044 72.3232 0.1144 8207 +8209 2 432.2535 573.176 72.5578 0.1144 8208 +8210 2 431.1587 572.8477 72.6695 0.1144 8209 +8211 2 430.0628 572.5182 72.6956 0.1144 8210 +8212 2 428.9668 572.1899 72.6692 0.1144 8211 +8213 2 427.872 571.8604 72.6208 0.1144 8212 +8214 2 426.7761 571.5321 72.5771 0.1144 8213 +8215 2 425.6801 571.2026 72.539 0.1144 8214 +8216 2 424.5853 570.8743 72.5077 0.1144 8215 +8217 2 423.542 570.4053 72.492 0.1144 8216 +8218 2 422.6279 569.7177 72.5052 0.1144 8217 +8219 2 421.715 569.0279 72.5348 0.1144 8218 +8220 2 420.8021 568.3381 72.5704 0.1144 8219 +8221 2 419.8629 567.686 72.5791 0.1144 8220 +8222 2 418.8973 567.0716 72.5343 0.1144 8221 +8223 2 417.9329 566.4573 72.4472 0.1144 8222 +8224 2 416.9686 565.8441 72.3304 0.1144 8223 +8225 2 416.0042 565.231 72.1991 0.1144 8224 +8226 2 415.0409 564.6178 72.065 0.1144 8225 +8227 2 414.08 564.0057 71.797 0.1144 8226 +8228 2 425.0086 566.8383 43.5988 0.1144 3412 +8229 2 425.7282 565.9677 44.0191 0.1144 8228 +8230 2 425.9238 564.8489 44.31 0.1144 8229 +8231 2 426.1469 563.7289 44.5074 0.1144 8230 +8232 2 426.1434 562.5872 44.6348 0.1144 8231 +8233 2 426.0153 561.45 44.6981 0.1144 8232 +8234 2 425.52 560.4204 44.683 0.1144 8233 +8235 2 424.7638 559.5636 44.5721 0.1144 8234 +8236 2 424.9365 558.6198 42.8655 0.1144 8235 +8237 2 425.4914 557.7995 41.9034 0.1144 8236 +8238 2 426.5461 557.4895 41.3969 0.1144 8237 +8239 2 427.665 557.3133 40.9993 0.1144 8238 +8240 2 428.7872 557.1394 40.6706 0.1144 8239 +8241 2 429.9129 556.9656 40.402 0.1144 8240 +8242 2 431.0363 556.7665 40.1884 0.1144 8241 +8243 2 432.1288 556.4462 39.9988 0.1144 8242 +8244 2 433.1596 555.9646 39.7914 0.1144 8243 +8245 2 434.0496 555.2679 39.4974 0.1144 8244 +8246 2 434.704 554.3584 39.0457 0.1144 8245 +8247 2 435.3686 553.4523 38.5459 0.1144 8246 +8248 2 436.285 552.8105 38.0929 0.1144 8247 +8249 2 437.3455 552.4342 37.6639 0.1144 8248 +8250 2 438.3591 551.9388 37.2406 0.1144 8249 +8251 2 439.0478 551.0831 36.6517 0.1144 8250 +8252 2 439.4413 550.0341 36.1012 0.1144 8251 +8253 2 440.0419 549.0857 35.5872 0.1144 8252 +8254 2 440.8633 548.3329 34.9759 0.1144 8253 +8255 2 441.7865 547.7037 34.407 0.1144 8254 +8256 2 442.3551 546.7599 33.6549 0.1144 8255 +8257 2 425.2946 559.3565 44.4884 0.1144 8235 +8258 2 426.3608 558.9424 44.4248 0.1144 8257 +8259 2 427.4156 558.4985 44.3856 0.1144 8258 +8260 2 428.4726 558.0604 44.3705 0.1144 8259 +8261 2 429.532 557.6302 44.3783 0.1144 8260 +8262 2 430.5192 557.0525 44.4044 0.1144 8261 +8263 2 431.4207 556.3489 44.4366 0.1144 8262 +8264 2 431.9961 555.3617 44.4746 0.1144 8263 +8265 2 432.5372 554.3549 44.5917 0.1144 8264 +8266 2 432.1975 553.299 44.6922 0.1144 8265 +8267 2 431.7342 552.2534 44.7695 0.1144 8266 +8268 2 430.9951 551.3805 44.8258 0.1144 8267 +8269 2 430.096 550.6736 44.8624 0.1144 8268 +8270 2 429.2894 549.8625 44.8823 0.1144 8269 +8271 2 428.8101 548.8237 44.8876 0.1144 8270 +8272 2 428.2038 547.8536 44.8935 0.1144 8271 +8273 2 428.0985 547.2507 44.8734 0.1144 8272 +8274 2 428.0173 546.1101 44.8454 0.1144 8273 +8275 2 427.7542 544.9959 44.8339 0.1144 8274 +8276 2 427.5929 543.8633 44.8179 0.1144 8275 +8277 2 427.2726 542.7662 44.795 0.1144 8276 +8278 2 426.974 541.6611 44.7656 0.1144 8277 +8279 2 426.5873 540.5846 44.7297 0.1144 8278 +8280 2 426.2487 539.4921 44.6639 0.1144 8279 +8281 2 425.9764 538.3824 44.5458 0.1144 8280 +8282 2 425.4536 537.3665 44.4508 0.1144 8281 +8283 2 424.9354 536.3461 44.3766 0.1144 8282 +8284 2 424.424 535.3234 44.3218 0.1144 8283 +8285 2 424.7306 534.4757 45.3936 0.1144 8284 +8286 2 424.9903 533.3889 45.9211 0.1144 8285 +8287 2 425.2134 532.2803 46.3534 0.1144 8286 +8288 2 425.1035 531.1638 46.814 0.1144 8287 +8289 2 424.8438 530.0655 47.2553 0.1144 8288 +8290 2 424.7489 528.9398 47.6722 0.1144 8289 +8291 2 424.2547 527.9251 47.9898 0.1144 8290 +8292 2 423.6381 526.9664 48.2252 0.1144 8291 +8293 2 423.2994 525.8808 48.4327 0.1144 8292 +8294 2 423.0455 524.7677 48.624 0.1144 8293 +8295 2 422.6119 523.7129 48.7754 0.1144 8294 +8296 2 422.1646 522.6616 48.911 0.1144 8295 +8297 2 421.7207 521.6091 49.042 0.1144 8296 +8298 2 421.2769 520.5555 49.1641 0.1144 8297 +8299 2 420.9028 519.4744 49.252 0.1144 8298 +8300 2 420.5413 518.3899 49.31 0.1144 8299 +8301 2 420.1763 517.3054 49.348 0.1144 8300 +8302 2 419.7302 516.2529 49.3704 0.1144 8301 +8303 2 419.2646 515.2073 49.3839 0.1144 8302 +8304 2 418.7383 514.1914 49.3942 0.1144 8303 +8305 2 418.1789 513.1938 49.4077 0.1144 8304 +8306 2 417.4891 512.2821 49.4259 0.1144 8305 +8307 2 416.5693 511.6082 49.4519 0.1144 8306 +8308 2 415.5946 511.0099 49.4894 0.1144 8307 +8309 2 414.7275 510.2652 49.5421 0.1144 8308 +8310 2 414.3499 509.1955 49.6121 0.1144 8309 +8311 2 414.3316 508.055 49.6964 0.1144 8310 +8312 2 414.1966 506.9213 49.8632 0.1144 8311 +8313 2 414.0365 505.7921 50.0987 0.1144 8312 +8314 2 413.8763 504.6653 50.3712 0.1144 8313 +8315 2 413.1178 504.0556 50.5985 0.1144 8314 +8316 2 412.4818 503.1198 50.6486 0.1144 8315 +8317 2 412.0608 502.0593 50.6178 0.1144 8316 +8318 2 411.7736 500.953 50.5702 0.1144 8317 +8319 2 411.3183 499.9086 50.5226 0.1144 8318 +8320 2 410.513 499.1112 50.493 0.1144 8319 +8321 2 409.6595 498.3504 50.4804 0.1144 8320 +8322 2 408.9697 497.4421 50.4767 0.1144 8321 +8323 2 408.3748 496.4651 50.4745 0.1144 8322 +8324 2 407.8211 495.4641 50.4714 0.1144 8323 +8325 2 407.2434 494.4768 50.4666 0.1144 8324 +8326 2 406.9666 493.3729 50.4605 0.1144 8325 +8327 2 407.2949 492.2918 50.4515 0.1144 8326 +8328 2 407.8715 491.3057 50.4386 0.1144 8327 +8329 2 408.2673 490.2337 50.4207 0.1144 8328 +8330 2 407.971 489.1401 50.3958 0.1144 8329 +8331 2 407.3544 488.1768 50.3667 0.1144 8330 +8332 2 407.0421 487.0774 50.3079 0.1144 8331 +8333 2 406.8304 485.9529 50.2242 0.1144 8332 +8334 2 406.5433 484.8466 50.1418 0.1144 8333 +8335 2 406.3088 483.7301 50.0822 0.1144 8334 +8336 2 406.4403 482.5941 50.0497 0.1144 8335 +8337 2 406.6142 481.4627 50.0458 0.1144 8336 +8338 2 406.7709 480.3301 50.0724 0.1144 8337 +8339 2 407.1016 479.2353 50.1267 0.1144 8338 +8340 2 407.4722 478.1542 50.2034 0.1144 8339 +8341 2 407.8349 477.0697 50.3042 0.1144 8340 +8342 2 408.0156 475.9452 50.4823 0.1144 8341 +8343 2 407.9962 474.8092 50.7629 0.1144 8342 +8344 2 408.2364 473.6995 51.023 0.1144 8343 +8345 2 408.7077 472.6619 51.2688 0.1144 8344 +8346 2 409.0647 471.582 51.5441 0.1144 8345 +8347 2 409.2877 470.47 51.8266 0.1144 8346 +8348 2 409.1253 469.3638 52.1021 0.1144 8347 +8349 2 408.3371 468.5652 52.4972 0.1144 8348 +8350 2 407.304 468.1225 53.0174 0.1144 8349 +8351 2 406.271 467.7084 53.66 0.1144 8350 +8352 2 405.2574 467.2599 54.3575 0.1144 8351 +8353 2 404.2278 466.8618 55.0645 0.1144 8352 +8354 2 403.1376 466.6731 55.697 0.1144 8353 +8355 2 402.013 466.7097 56.2033 0.1144 8354 +8356 2 400.8862 466.6845 56.6213 0.1144 8355 +8357 2 399.804 466.3962 56.9792 0.1144 8356 +8358 2 398.8442 465.7876 57.3054 0.1144 8357 +8359 2 397.9324 465.1195 57.6517 0.1144 8358 +8360 2 397.2437 464.2421 58.0832 0.1144 8359 +8361 2 396.944 463.1724 58.5564 0.1144 8360 +8362 2 396.9588 462.0444 59.0299 0.1144 8361 +8363 2 396.9772 460.9187 59.5199 0.1144 8362 +8364 2 397.0378 459.7988 60.044 0.1144 8363 +8365 2 397.4119 458.8458 60.7566 0.1144 8364 +8366 2 397.9358 459.2005 61.7529 0.1144 8365 +8367 2 397.874 460.2735 62.6147 0.1144 8366 +8368 2 397.6624 461.3409 63.476 0.1144 8367 +8369 2 397.4519 460.7323 64.1962 0.1144 8368 +8370 2 397.0401 459.697 64.7702 0.1144 8369 +8371 2 396.5756 458.6708 65.2604 0.1144 8370 +8372 2 395.7943 457.9318 66.0181 0.1144 8371 +8373 2 394.9454 457.3277 67.1112 0.1144 8372 +8374 2 394.1709 456.9845 68.9926 0.1144 8373 +8375 2 414.1829 504.4251 50.8522 0.1144 8314 +8376 2 415.2285 504.0475 51.2764 0.1144 8375 +8377 2 416.3462 503.813 51.3934 0.1144 8376 +8378 2 417.4696 503.6048 51.5348 0.1144 8377 +8379 2 418.5702 503.8382 51.8232 0.1144 8378 +8380 2 419.2909 504.7088 52.1203 0.1144 8379 +8381 2 419.951 505.6388 52.3432 0.1144 8380 +8382 2 420.2312 506.744 52.5193 0.1144 8381 +8383 2 420.4932 507.8559 52.6324 0.1144 8382 +8384 2 420.4703 508.9988 52.6184 0.1144 8383 +8385 2 420.3983 510.1405 52.5476 0.1144 8384 +8386 2 420.325 511.2811 52.453 0.1144 8385 +8387 2 420.2873 512.4239 52.3292 0.1144 8386 +8388 2 420.3273 513.5645 52.1371 0.1144 8387 +8389 2 420.3674 514.6867 51.6043 0.1144 8388 +8390 2 424.1025 534.9092 44.284 0.1144 8284 +8391 2 423.4047 534.002 44.2543 0.1144 8390 +8392 2 422.7126 533.0914 44.231 0.1144 8391 +8393 2 421.9552 532.2346 44.2036 0.1144 8392 +8394 2 421.2894 531.3045 44.1722 0.1144 8393 +8395 2 420.2495 530.84 44.0586 0.1144 8394 +8396 2 420.5824 530.5986 43.8144 0.1144 8395 +8397 2 421.4565 529.8688 43.8931 0.1144 8396 +8398 2 422.1246 528.9456 43.9662 0.1144 8397 +8399 2 422.5192 527.8759 44.0516 0.1144 8398 +8400 2 423.3178 527.0728 44.1647 0.1144 8399 +8401 2 424.0602 526.2045 44.3069 0.1144 8400 +8402 2 424.583 525.2001 44.6541 0.1144 8401 +8403 2 424.5819 524.063 44.9593 0.1144 8402 +8404 2 425.2637 523.7896 45.2785 0.1144 8403 +8405 2 426.1697 523.1215 45.7097 0.1144 8404 +8406 2 426.8424 522.2131 46.0972 0.1144 8405 +8407 2 427.4545 521.2544 46.4008 0.1144 8406 +8408 2 427.7496 520.1574 46.634 0.1144 8407 +8409 2 427.7736 519.0191 46.8717 0.1144 8408 +8410 2 427.3469 517.9643 47.0624 0.1144 8409 +8411 2 427.0621 516.8581 47.2083 0.1144 8410 +8412 2 427.4579 515.7918 47.3382 0.1144 8411 +8413 2 427.8949 514.7359 47.5003 0.1144 8412 +8414 2 427.9567 513.5977 47.7016 0.1144 8413 +8415 2 428.4989 512.5932 47.8926 0.1144 8414 +8416 2 428.5527 512.0006 48.025 0.1144 8415 +8417 2 428.5127 510.8658 48.2835 0.1144 8416 +8418 2 428.3731 509.7378 48.5957 0.1144 8417 +8419 2 428.2106 508.6155 48.9751 0.1144 8418 +8420 2 428.0482 507.4956 49.383 0.1144 8419 +8421 2 428.047 506.3699 49.824 0.1144 8420 +8422 2 428.3983 505.3117 50.2995 0.1144 8421 +8423 2 428.7026 504.2352 50.8528 0.1144 8422 +8424 2 429.0057 503.1484 51.3094 0.1144 8423 +8425 2 429.008 502.0227 51.7056 0.1144 8424 +8426 2 428.8124 500.9038 52.0117 0.1144 8425 +8427 2 428.6522 499.7758 52.2441 0.1144 8426 +8428 2 428.8124 498.6524 52.4294 0.1144 8427 +8429 2 429.2425 497.5977 52.5893 0.1144 8428 +8430 2 429.6933 496.5486 52.775 0.1144 8429 +8431 2 430.3911 495.654 53.074 0.1144 8430 +8432 2 430.589 494.5512 53.5226 0.1144 8431 +8433 2 430.382 493.4381 53.9305 0.1144 8432 +8434 2 430.2115 492.3204 54.3432 0.1144 8433 +8435 2 430.2023 491.1924 54.8008 0.1144 8434 +8436 2 430.2126 490.0633 55.2594 0.1144 8435 +8437 2 430.2756 488.933 55.6433 0.1144 8436 +8438 2 430.4918 487.8188 55.9863 0.1144 8437 +8439 2 430.6531 486.6976 56.3592 0.1144 8438 +8440 2 430.6416 485.5697 56.81 0.1144 8439 +8441 2 430.5284 484.4554 57.3656 0.1144 8440 +8442 2 430.4986 483.3366 57.9527 0.1144 8441 +8443 2 430.4369 482.2235 58.5354 0.1144 8442 +8444 2 430.1509 481.1515 59.1948 0.1144 8443 +8445 2 429.8626 480.099 59.873 0.1144 8444 +8446 2 429.9129 478.9859 60.494 0.1144 8445 +8447 2 429.8729 477.8705 61.08 0.1144 8446 +8448 2 429.7619 476.7723 61.796 0.1144 8447 +8449 2 429.7447 475.658 62.4218 0.1144 8448 +8450 2 429.8271 474.5415 62.9434 0.1144 8449 +8451 2 430.2035 473.5016 63.4133 0.1144 8450 +8452 2 430.8716 472.5921 63.8588 0.1144 8451 +8453 2 431.6106 471.7341 64.2323 0.1144 8452 +8454 2 432.3187 470.8498 64.4896 0.1144 8453 +8455 2 432.8141 469.8316 64.7198 0.1144 8454 +8456 2 433.25 468.786 64.9936 0.1144 8455 +8457 2 433.8643 467.8365 65.347 0.1144 8456 +8458 2 434.5164 466.919 65.8392 0.1144 8457 +8459 2 435.0129 465.9157 66.3396 0.1144 8458 +8460 2 435.4911 464.8919 66.7374 0.1144 8459 +8461 2 435.9601 463.8565 67.0211 0.1144 8460 +8462 2 436.1031 462.7491 67.2008 0.1144 8461 +8463 2 435.991 461.612 67.2974 0.1144 8462 +8464 2 435.9921 460.476 67.3291 0.1144 8463 +8465 2 436.3239 459.3961 67.3238 0.1144 8464 +8466 2 436.889 458.4054 67.3624 0.1144 8465 +8467 2 437.2288 457.3323 67.4411 0.1144 8466 +8468 2 437.2814 456.1952 67.5408 0.1144 8467 +8469 2 437.143 455.0638 67.6676 0.1144 8468 +8470 2 436.9211 453.9438 67.8261 0.1144 8469 +8471 2 436.9371 452.8146 68.0739 0.1144 8470 +8472 2 437.0446 451.6867 68.4527 0.1144 8471 +8473 2 437.056 450.5575 68.878 0.1144 8472 +8474 2 436.9428 449.4341 69.3123 0.1144 8473 +8475 2 436.8421 448.3073 69.725 0.1144 8474 +8476 2 436.4143 447.2731 70.1204 0.1144 8475 +8477 2 436.0001 446.2252 70.6 0.1144 8476 +8478 2 435.7462 445.1327 71.146 0.1144 8477 +8479 2 435.2851 444.1214 71.7861 0.1144 8478 +8480 2 435.0186 443.0323 72.3506 0.1144 8479 +8481 2 434.8756 441.9123 72.798 0.1144 8480 +8482 2 434.2693 440.9594 73.2281 0.1144 8481 +8483 2 433.6675 439.9961 73.5658 0.1144 8482 +8484 2 433.1459 438.986 73.8651 0.1144 8483 +8485 2 432.7855 437.9038 74.0877 0.1144 8484 +8486 2 432.6711 438.0719 73.9362 0.1144 8485 +8487 2 431.9572 438.9345 73.5661 0.1144 8486 +8488 2 430.9642 439.3235 73.5358 0.1144 8487 +8489 2 429.8443 439.1702 73.5232 0.1144 8488 +8490 2 428.8501 438.6428 73.5171 0.1144 8489 +8491 2 428.4703 437.6795 73.5182 0.1144 8490 +8492 2 428.0104 436.6877 73.5274 0.1144 8491 +8493 2 427.2726 435.8137 73.5437 0.1144 8492 +8494 2 426.4718 434.9968 73.5647 0.1144 8493 +8495 2 425.5657 434.3059 73.6005 0.1144 8494 +8496 2 424.6837 433.584 73.675 0.1144 8495 +8497 2 424.1323 432.6139 73.7419 0.1144 8496 +8498 2 423.7319 431.542 73.7727 0.1144 8497 +8499 2 423.3818 430.454 73.7685 0.1144 8498 +8500 2 423.2125 429.3283 73.7248 0.1144 8499 +8501 2 422.4872 428.5882 73.591 0.1144 8500 +8502 2 421.4976 428.0219 73.3768 0.1144 8501 +8503 2 420.5802 427.3469 73.1914 0.1144 8502 +8504 2 419.7061 426.6113 73.0509 0.1144 8503 +8505 2 418.9191 425.7865 72.8918 0.1144 8504 +8506 2 418.1595 424.9354 72.69 0.1144 8505 +8507 2 417.3998 424.0854 72.4366 0.1144 8506 +8508 2 416.6688 423.2159 72.1059 0.1144 8507 +8509 2 416.1861 422.2115 71.6232 0.1144 8508 +8510 2 415.8268 421.1567 70.9881 0.1144 8509 +8511 2 415.4848 420.1157 70.1865 0.1144 8510 +8512 2 415.6758 419.1136 69.0659 0.1144 8511 +8513 2 416.1369 418.1663 67.9826 0.1144 8512 +8514 2 416.4606 417.1287 67.1216 0.1144 8513 +8515 2 416.5373 416.0282 66.3939 0.1144 8514 +8516 2 416.4286 414.9162 65.8073 0.1144 8515 +8517 2 416.5899 413.81 65.3176 0.1144 8516 +8518 2 417.0772 412.8067 64.9491 0.1144 8517 +8519 2 416.9674 411.6787 64.6792 0.1144 8518 +8520 2 416.6151 410.593 64.4874 0.1144 8519 +8521 2 416.2627 409.5062 64.3359 0.1144 8520 +8522 2 415.9104 408.4194 64.1998 0.1144 8521 +8523 2 415.5591 407.3326 64.0564 0.1144 8522 +8524 2 415.2274 406.2413 63.8795 0.1144 8523 +8525 2 415.0421 405.1201 63.6188 0.1144 8524 +8526 2 415.0306 403.9864 63.2402 0.1144 8525 +8527 2 415.034 402.8619 62.7385 0.1144 8526 +8528 2 414.8956 401.7591 62.1289 0.1144 8527 +8529 2 414.509 400.7249 61.4494 0.1144 8528 +8530 2 413.8763 399.8211 60.7653 0.1144 8529 +8531 2 413.0755 399.0512 60.0992 0.1144 8530 +8532 2 412.2736 398.2813 59.442 0.1144 8531 +8533 2 411.4236 397.6086 58.7919 0.1144 8532 +8534 2 410.4111 397.1636 58.2078 0.1144 8533 +8535 2 409.5463 396.4463 57.7279 0.1144 8534 +8536 2 408.7386 395.6524 57.3443 0.1144 8535 +8537 2 407.8783 394.9099 57.05 0.1144 8536 +8538 2 406.9963 394.1892 56.7874 0.1144 8537 +8539 2 406.4632 393.3278 56.4172 0.1144 8538 +8540 2 406.6165 392.2273 55.7836 0.1144 8539 +8541 2 406.8636 391.1485 55.0771 0.1144 8540 +8542 2 407.296 390.1154 54.5482 0.1144 8541 +8543 2 407.7994 389.0973 54.2142 0.1144 8542 +8544 2 408.3108 388.0768 54.0562 0.1144 8543 +8545 2 408.8244 387.0541 54.0518 0.1144 8544 +8546 2 409.3358 386.0325 54.1612 0.1144 8545 +8547 2 409.8483 385.0121 54.3312 0.1144 8546 +8548 2 410.3825 384.003 54.5236 0.1144 8547 +8549 2 411.1399 383.1622 54.7604 0.1144 8548 +8550 2 411.9876 382.4026 55.0365 0.1144 8549 +8551 2 412.7312 381.5423 55.2871 0.1144 8550 +8552 2 413.4141 380.6282 55.487 0.1144 8551 +8553 2 414.1772 379.7817 55.6996 0.1144 8552 +8554 2 414.9997 378.99 55.8729 0.1144 8553 +8555 2 415.8337 378.2098 55.9924 0.1144 8554 +8556 2 416.6688 377.4285 56.0725 0.1144 8555 +8557 2 417.3644 376.5236 56.1322 0.1144 8556 +8558 2 417.9558 375.5443 56.18 0.1144 8557 +8559 2 418.5221 374.5513 56.2234 0.1144 8558 +8560 2 418.9889 373.508 56.2755 0.1144 8559 +8561 2 419.2382 372.3949 56.3416 0.1144 8560 +8562 2 419.4224 371.2669 56.4516 0.1144 8561 +8563 2 419.6009 370.1389 56.6048 0.1144 8562 +8564 2 419.9338 369.0498 56.8316 0.1144 8563 +8565 2 420.7826 368.3474 57.2734 0.1144 8564 +8566 2 421.2929 367.383 58.0138 0.1144 8565 +8567 2 421.9015 366.6142 59.4569 0.1144 8566 +8568 2 432.8244 436.8753 74.2577 0.1144 8485 +8569 2 433.3952 435.9006 74.4957 0.1144 8568 +8570 2 434.2784 435.1845 74.744 0.1144 8569 +8571 2 434.6365 434.108 74.9818 0.1144 8570 +8572 2 434.6742 432.9674 75.1839 0.1144 8571 +8573 2 434.7692 431.8314 75.4004 0.1144 8572 +8574 2 434.5678 430.7068 75.5684 0.1144 8573 +8575 2 434.2555 429.6075 75.6843 0.1144 8574 +8576 2 433.616 428.6602 75.7686 0.1144 8575 +8577 2 432.9948 427.6993 75.8377 0.1144 8576 +8578 2 432.456 426.6903 75.9041 0.1144 8577 +8579 2 431.9161 425.6824 75.976 0.1144 8578 +8580 2 431.3864 424.6688 76.0704 0.1144 8579 +8581 2 431.0009 423.5935 76.2292 0.1144 8580 +8582 2 430.6188 422.5192 76.4406 0.1144 8581 +8583 2 430.271 422.5147 76.5559 0.1144 8582 +8584 2 429.1373 422.5021 76.9241 0.1144 8583 +8585 2 428.0299 422.7206 77.1926 0.1144 8584 +8586 2 427.3172 423.5328 77.3576 0.1144 8585 +8587 2 427.1536 424.6448 77.3654 0.1144 8586 +8588 2 427.101 425.7865 77.2436 0.1144 8587 +8589 2 427.0918 426.9282 77.0669 0.1144 8588 +8590 2 427.4133 428.0207 77.0507 0.1144 8589 +8591 2 427.7691 429.1064 77.1985 0.1144 8590 +8592 2 428.1237 430.1875 77.4836 0.1144 8591 +8593 2 428.4429 431.2708 77.8562 0.1144 8592 +8594 2 427.9098 432.2753 78.1544 0.1144 8593 +8595 2 427.3778 433.2763 78.5282 0.1144 8594 +8596 2 430.5215 421.5377 76.8306 0.1144 8582 +8597 2 430.2538 420.4429 77.1523 0.1144 8596 +8598 2 429.8065 419.4007 77.5169 0.1144 8597 +8599 2 429.3855 418.3505 77.8898 0.1144 8598 +8600 2 429.1762 417.2443 78.2275 0.1144 8599 +8601 2 429.2803 416.1231 78.5019 0.1144 8600 +8602 2 429.5606 415.0169 78.7217 0.1144 8601 +8603 2 429.8202 413.9072 78.9373 0.1144 8602 +8604 2 429.7436 412.8044 79.1742 0.1144 8603 +8605 2 429.3432 411.7393 79.4128 0.1144 8604 +8606 2 429.0789 410.6457 79.686 0.1144 8605 +8607 2 429.0778 409.5154 80.0338 0.1144 8606 +8608 2 429.1624 408.3874 80.463 0.1144 8607 +8609 2 429.238 407.2651 80.9698 0.1144 8608 +8610 2 429.2334 406.1452 81.5262 0.1144 8609 +8611 2 429.0938 405.0355 82.0929 0.1144 8610 +8612 2 428.9771 403.9189 82.5986 0.1144 8611 +8613 2 428.9348 402.7875 83.008 0.1144 8612 +8614 2 428.8627 401.6561 83.356 0.1144 8613 +8615 2 428.69 400.535 83.6914 0.1144 8614 +8616 2 428.2427 399.5111 84.0846 0.1144 8615 +8617 2 428.0127 398.43 84.4603 0.1144 8616 +8618 2 427.9818 397.2952 84.7806 0.1144 8617 +8619 2 427.967 396.1569 85.064 0.1144 8618 +8620 2 427.9578 395.0198 85.3695 0.1144 8619 +8621 2 427.9567 393.8872 85.7604 0.1144 8620 +8622 2 427.9601 392.7581 86.2212 0.1144 8621 +8623 2 427.9612 391.6324 86.7166 0.1144 8622 +8624 2 427.9635 390.4964 87.0262 0.1144 8623 +8625 2 427.9635 389.3524 87.0702 0.1144 8624 +8626 2 427.9647 388.2118 86.8787 0.1144 8625 +8627 2 427.7359 387.856 85.4605 0.1144 8626 +8628 2 426.9419 387.9121 83.5103 0.1144 8627 +8629 2 425.9341 388.1249 82.357 0.1144 8628 +8630 2 425.107 388.7884 81.3159 0.1144 8629 +8631 2 424.4434 389.6018 80.3004 0.1144 8630 +8632 2 424.3782 390.692 79.4671 0.1144 8631 +8633 2 424.4217 391.7937 78.7198 0.1144 8632 +8634 2 424.5418 392.8942 78.0254 0.1144 8633 +8635 2 424.6528 393.9261 76.8454 0.1144 8634 +8636 2 427.9956 387.7611 86.7322 0.1144 8626 +8637 2 428.0745 386.6205 86.6281 0.1144 8636 +8638 2 428.4326 385.536 86.6942 0.1144 8637 +8639 2 428.8604 384.4801 86.9445 0.1144 8638 +8640 2 428.7117 383.1004 86.9056 0.1144 8639 +8641 2 428.6271 381.9599 86.8501 0.1144 8640 +8642 2 428.6442 380.8182 86.8146 0.1144 8641 +8643 2 428.7346 379.6776 86.77 0.1144 8642 +8644 2 428.8044 378.537 86.7017 0.1144 8643 +8645 2 428.8742 377.3964 86.569 0.1144 8644 +8646 2 429.0881 376.2799 86.4147 0.1144 8645 +8647 2 429.461 375.2011 86.3206 0.1144 8646 +8648 2 429.8683 374.1315 86.3024 0.1144 8647 +8649 2 430.2069 373.0412 86.3458 0.1144 8648 +8650 2 429.8397 372.1432 86.5015 0.1144 8649 +8651 2 428.7449 371.9945 86.917 0.1144 8650 +8652 2 427.6329 371.9144 87.519 0.1144 8651 +8653 2 426.6262 371.4854 88.2165 0.1144 8652 +8654 2 425.8586 370.6835 88.8348 0.1144 8653 +8655 2 425.25 369.7282 89.1078 0.1144 8654 +8656 2 424.7981 368.6815 88.9571 0.1144 8655 +8657 2 424.4183 367.6061 88.7421 0.1144 8656 +8658 2 424.0488 366.5262 88.5497 0.1144 8657 +8659 2 423.6793 365.4451 88.4055 0.1144 8658 +8660 2 423.3086 364.3629 88.3319 0.1144 8659 +8661 2 422.9379 363.2806 88.3254 0.1144 8660 +8662 2 422.5684 362.1984 88.3448 0.1144 8661 +8663 2 422.1978 361.1162 88.3582 0.1144 8662 +8664 2 421.9781 359.9996 88.3456 0.1144 8663 +8665 2 422.025 358.8659 88.2885 0.1144 8664 +8666 2 422.2104 357.738 88.1913 0.1144 8665 +8667 2 422.414 356.6123 88.072 0.1144 8666 +8668 2 422.7309 355.5174 87.9752 0.1144 8667 +8669 2 423.1645 354.4604 87.9354 0.1144 8668 +8670 2 423.6324 353.4159 87.9575 0.1144 8669 +8671 2 424.1025 352.3737 88.0331 0.1144 8670 +8672 2 424.4297 351.2846 88.1527 0.1144 8671 +8673 2 424.5727 350.1532 88.3033 0.1144 8672 +8674 2 424.6425 349.0138 88.4682 0.1144 8673 +8675 2 424.7043 347.8732 88.6365 0.1144 8674 +8676 2 424.7672 346.7338 88.8056 0.1144 8675 +8677 2 424.6139 345.6116 88.9588 0.1144 8676 +8678 2 424.0293 344.662 89.0641 0.1144 8677 +8679 2 423.2651 343.8109 89.129 0.1144 8678 +8680 2 422.5421 342.9266 89.2346 0.1144 8679 +8681 2 421.9129 341.9794 89.4776 0.1144 8680 +8682 2 421.3055 341.023 89.8722 0.1144 8681 +8683 2 420.5504 340.1981 90.3854 0.1144 8682 +8684 2 419.7393 339.4282 90.9857 0.1144 8683 +8685 2 418.9305 338.6652 91.6398 0.1144 8684 +8686 2 418.1217 337.9044 92.3177 0.1144 8685 +8687 2 417.3506 337.1093 93.0101 0.1144 8686 +8688 2 416.599 336.296 93.7138 0.1144 8687 +8689 2 415.8509 335.4814 94.4261 0.1144 8688 +8690 2 415.1187 334.652 95.1457 0.1144 8689 +8691 2 414.938 333.6098 95.8681 0.1144 8690 +8692 2 414.954 332.5036 96.5815 0.1144 8691 +8693 2 414.9803 331.3974 97.2919 0.1144 8692 +8694 2 415.0066 330.2911 97.9983 0.1144 8693 +8695 2 415.1404 329.2032 98.7857 0.1144 8694 +8696 2 415.3555 328.1381 99.6646 0.1144 8695 +8697 2 415.5294 327.065 100.5348 0.1144 8696 +8698 2 415.5774 325.9645 101.2799 0.1144 8697 +8699 2 416.3519 325.1568 101.7626 0.1144 8698 +8700 2 417.1768 324.372 102.0326 0.1144 8699 +8701 2 418.005 323.585 102.1446 0.1144 8700 +8702 2 418.8333 322.7968 102.1591 0.1144 8701 +8703 2 419.9018 322.3918 102.188 0.1144 8702 +8704 2 421.016 322.139 102.2935 0.1144 8703 +8705 2 422.1371 321.925 102.482 0.1144 8704 +8706 2 423.2011 322.322 102.7768 0.1144 8705 +8707 2 424.2616 322.7258 103.1344 0.1144 8706 +8708 2 425.3209 323.1285 103.5255 0.1144 8707 +8709 2 426.3448 323.5175 104.3302 0.1144 8708 +8710 2 428.3845 383.2537 87.5344 0.1144 8639 +8711 2 428.0036 382.1898 87.9578 0.1144 8710 +8712 2 427.7187 381.0984 88.4162 0.1144 8711 +8713 2 427.4293 380.0071 88.8549 0.1144 8712 +8714 2 427.0804 378.9294 89.2321 0.1144 8713 +8715 2 426.712 377.854 89.556 0.1144 8714 +8716 2 426.3276 376.7833 89.8444 0.1144 8715 +8717 2 425.8895 375.7331 90.1239 0.1144 8716 +8718 2 425.4136 374.7 90.4126 0.1144 8717 +8719 2 425.044 373.627 90.7189 0.1144 8718 +8720 2 425.0589 372.5104 91.0204 0.1144 8719 +8721 2 425.25 371.3893 91.3128 0.1144 8720 +8722 2 425.4422 370.267 91.6031 0.1144 8721 +8723 2 425.5886 369.1391 91.8999 0.1144 8722 +8724 2 425.6641 368.0065 92.2172 0.1144 8723 +8725 2 425.552 366.8819 92.5786 0.1144 8724 +8726 2 425.2934 365.7814 92.9914 0.1144 8725 +8727 2 424.98 364.698 93.4503 0.1144 8726 +8728 2 424.5601 363.6559 93.9655 0.1144 8727 +8729 2 424.019 362.6766 94.5232 0.1144 8728 +8730 2 423.4722 361.695 95.044 0.1144 8729 +8731 2 422.946 360.6952 95.4873 0.1144 8730 +8732 2 422.4323 359.685 95.8633 0.1144 8731 +8733 2 422.1818 358.5902 96.2374 0.1144 8732 +8734 2 422.5353 357.5378 96.6297 0.1144 8733 +8735 2 422.9643 356.4887 97.008 0.1144 8734 +8736 2 423.3555 355.4202 97.3053 0.1144 8735 +8737 2 423.6827 354.3288 97.5358 0.1144 8736 +8738 2 423.8612 353.202 97.713 0.1144 8737 +8739 2 423.979 352.066 97.8544 0.1144 8738 +8740 2 424.1883 350.9437 97.9927 0.1144 8739 +8741 2 424.4801 349.8398 98.1599 0.1144 8740 +8742 2 424.7798 348.7392 98.3693 0.1144 8741 +8743 2 425.0795 347.6399 98.6196 0.1144 8742 +8744 2 425.3792 346.5416 98.9086 0.1144 8743 +8745 2 425.7041 345.4537 99.2494 0.1144 8744 +8746 2 426.0771 344.3863 99.661 0.1144 8745 +8747 2 426.45 343.3224 100.1456 0.1144 8746 +8748 2 426.8081 342.2608 100.7121 0.1144 8747 +8749 2 427.2245 341.2243 101.3174 0.1144 8748 +8750 2 427.7302 340.2279 101.906 0.1144 8749 +8751 2 428.1706 339.196 102.4531 0.1144 8750 +8752 2 428.5104 338.1218 102.9356 0.1144 8751 +8753 2 428.5744 336.9927 103.3306 0.1144 8752 +8754 2 428.2301 335.9059 103.5616 0.1144 8753 +8755 2 427.9555 334.7973 103.7344 0.1144 8754 +8756 2 427.7851 333.6693 103.9366 0.1144 8755 +8757 2 427.6226 332.5414 104.1737 0.1144 8756 +8758 2 427.5368 331.4065 104.4344 0.1144 8757 +8759 2 427.7702 330.2934 104.6755 0.1144 8758 +8760 2 428.2598 329.2626 104.862 0.1144 8759 +8761 2 428.8009 328.2582 105.0577 0.1144 8760 +8762 2 429.4004 327.2892 105.32 0.1144 8761 +8763 2 429.9987 326.3237 105.6448 0.1144 8762 +8764 2 430.5959 325.3605 106.0293 0.1144 8763 +8765 2 431.1919 324.4006 106.4664 0.1144 8764 +8766 2 431.7753 323.4363 106.9424 0.1144 8765 +8767 2 432.2341 322.4124 107.4592 0.1144 8766 +8768 2 432.4915 321.3221 108.0173 0.1144 8767 +8769 2 432.6928 320.2216 108.5986 0.1144 8768 +8770 2 432.9422 319.1291 109.167 0.1144 8769 +8771 2 433.2191 318.0412 109.6875 0.1144 8770 +8772 2 433.3666 316.9212 110.1153 0.1144 8771 +8773 2 433.3529 315.7875 110.425 0.1144 8772 +8774 2 433.1047 314.6812 110.6633 0.1144 8773 +8775 2 432.6253 313.6459 110.8604 0.1144 8774 +8776 2 432.1266 312.6186 111.0416 0.1144 8775 +8777 2 431.6266 311.5924 111.223 0.1144 8776 +8778 2 431.1278 310.5663 111.4145 0.1144 8777 +8779 2 430.6302 309.5389 111.6195 0.1144 8778 +8780 2 430.1417 308.5082 111.8331 0.1144 8779 +8781 2 429.6624 307.474 112.0566 0.1144 8780 +8782 2 429.1819 306.4398 112.2943 0.1144 8781 +8783 2 428.7026 305.4068 112.551 0.1144 8782 +8784 2 428.2244 304.3738 112.8299 0.1144 8783 +8785 2 427.7988 303.3259 113.1455 0.1144 8784 +8786 2 427.6855 302.2105 113.5652 0.1144 8785 +8787 2 427.8354 301.0951 114.0703 0.1144 8786 +8788 2 427.9796 299.9797 114.588 0.1144 8787 +8789 2 428.1226 298.8631 115.0834 0.1144 8788 +8790 2 428.2873 297.7489 115.5722 0.1144 8789 +8791 2 428.5264 296.6518 116.1003 0.1144 8790 +8792 2 428.8101 295.5673 116.6553 0.1144 8791 +8793 2 429.0492 294.4667 117.1318 0.1144 8792 +8794 2 429.2505 293.3502 117.4925 0.1144 8793 +8795 2 429.4702 292.2337 117.7607 0.1144 8794 +8796 2 429.7779 291.1366 117.9637 0.1144 8795 +8797 2 430.168 290.0623 118.1281 0.1144 8796 +8798 2 430.5753 288.995 118.2784 0.1144 8797 +8799 2 430.9894 287.9311 118.4403 0.1144 8798 +8800 2 431.4367 286.882 118.6329 0.1144 8799 +8801 2 431.9161 285.8467 118.862 0.1144 8800 +8802 2 432.4023 284.8171 119.114 0.1144 8801 +8803 2 432.8793 283.7818 119.3662 0.1144 8802 +8804 2 433.3438 282.7407 119.6009 0.1144 8803 +8805 2 433.8048 281.6974 119.819 0.1144 8804 +8806 2 434.2647 280.6541 120.0282 0.1144 8805 +8807 2 434.7269 279.6108 120.2356 0.1144 8806 +8808 2 435.2039 278.5766 120.4728 0.1144 8807 +8809 2 435.713 277.5607 120.7993 0.1144 8808 +8810 2 436.2392 276.5586 121.2103 0.1144 8809 +8811 2 436.6476 275.5095 121.5866 0.1144 8810 +8812 2 436.7689 274.385 121.7588 0.1144 8811 +8813 2 436.7357 273.2433 121.6877 0.1144 8812 +8814 2 436.6865 272.1061 121.4234 0.1144 8813 +8815 2 436.4474 271.009 121.0252 0.1144 8814 +8816 2 435.9086 270.0275 120.5814 0.1144 8815 +8817 2 435.5608 268.9693 120.1768 0.1144 8816 +8818 2 435.5997 267.8413 119.9066 0.1144 8817 +8819 2 435.7233 266.7064 119.7619 0.1144 8818 +8820 2 435.9509 265.5865 119.7487 0.1144 8819 +8821 2 436.3513 264.5203 119.8915 0.1144 8820 +8822 2 436.8375 263.4918 120.1752 0.1144 8821 +8823 2 437.3329 262.4725 120.559 0.1144 8822 +8824 2 437.9049 261.5001 121.0073 0.1144 8823 +8825 2 438.6794 260.6901 121.49 0.1144 8824 +8826 2 439.5671 259.9992 121.977 0.1144 8825 +8827 2 440.3119 259.1629 122.4779 0.1144 8826 +8828 2 440.869 258.1882 122.9827 0.1144 8827 +8829 2 441.322 257.1575 123.475 0.1144 8828 +8830 2 441.7281 256.1061 123.9456 0.1144 8829 +8831 2 442.1274 255.0502 124.4009 0.1144 8830 +8832 2 442.5278 253.9932 124.845 0.1144 8831 +8833 2 442.9282 252.9373 125.2832 0.1144 8832 +8834 2 443.3275 251.8802 125.7217 0.1144 8833 +8835 2 443.729 250.8243 126.1697 0.1144 8834 +8836 2 444.1271 249.7695 126.6345 0.1144 8835 +8837 2 444.5275 248.7159 127.1217 0.1144 8836 +8838 2 444.9256 247.6646 127.6346 0.1144 8837 +8839 2 445.1807 246.5766 128.2182 0.1144 8838 +8840 2 444.9645 245.5058 128.9098 0.1144 8839 +8841 2 444.6739 244.4453 129.6823 0.1144 8840 +8842 2 444.3834 243.3906 130.5007 0.1144 8841 +8843 2 444.4783 242.3003 131.2802 0.1144 8842 +8844 2 444.6145 241.2044 132.0206 0.1144 8843 +8845 2 444.7517 240.105 132.7161 0.1144 8844 +8846 2 444.9908 239.0125 133.3016 0.1144 8845 +8847 2 445.2505 237.9177 133.8064 0.1144 8846 +8848 2 445.5114 236.8194 134.26 0.1144 8847 +8849 2 445.7585 235.7166 134.6951 0.1144 8848 +8850 2 445.9598 234.6069 135.154 0.1144 8849 +8851 2 446.1589 233.4973 135.6398 0.1144 8850 +8852 2 446.3568 232.391 136.1542 0.1144 8851 +8853 2 446.5547 231.2848 136.6904 0.1144 8852 +8854 2 446.7514 230.1808 137.2414 0.1144 8853 +8855 2 446.9494 229.078 137.8009 0.1144 8854 +8856 2 447.1461 227.9752 138.3651 0.1144 8855 +8857 2 447.3429 226.8724 138.9343 0.1144 8856 +8858 2 447.5397 225.7695 139.5108 0.1144 8857 +8859 2 447.7364 224.669 140.0958 0.1144 8858 +8860 2 447.7341 223.5548 140.7115 0.1144 8859 +8861 2 447.7078 222.4405 141.3499 0.1144 8860 +8862 2 447.6804 221.3285 142.0048 0.1144 8861 +8863 2 447.6541 220.2177 142.6695 0.1144 8862 +8864 2 447.6255 219.1069 143.3373 0.1144 8863 +8865 2 447.598 217.9961 144.0037 0.1144 8864 +8866 2 447.5717 216.8852 144.6634 0.1144 8865 +8867 2 447.5442 215.7721 145.3147 0.1144 8866 +8868 2 447.6552 214.6636 145.9391 0.1144 8867 +8869 2 447.8211 213.5585 146.5349 0.1144 8868 +8870 2 447.9881 212.4511 147.1112 0.1144 8869 +8871 2 448.1563 211.3426 147.6728 0.1144 8870 +8872 2 448.3244 210.234 148.2244 0.1144 8871 +8873 2 448.4926 209.1243 148.7704 0.1144 8872 +8874 2 448.6608 208.0158 149.3145 0.1144 8873 +8875 2 448.829 206.9061 149.8568 0.1144 8874 +8876 2 448.9971 205.7953 150.3978 0.1144 8875 +8877 2 449.1653 204.6856 150.9374 0.1144 8876 +8878 2 449.417 203.592 151.473 0.1144 8877 +8879 2 449.783 202.5303 151.9974 0.1144 8878 +8880 2 450.156 201.4698 152.5188 0.1144 8879 +8881 2 450.5289 200.4094 153.0418 0.1144 8880 +8882 2 450.9019 199.35 153.5713 0.1144 8881 +8883 2 451.5688 198.4554 154.1529 0.1144 8882 +8884 2 452.4017 197.7118 154.7633 0.1144 8883 +8885 2 453.2356 196.9739 155.3989 0.1144 8884 +8886 2 454.0696 196.2372 156.0465 0.1144 8885 +8887 2 454.8658 195.4604 156.693 0.1144 8886 +8888 2 455.2628 194.4148 157.2696 0.1144 8887 +8889 2 455.6621 193.3646 157.7996 0.1144 8888 +8890 2 456.0625 192.3121 158.293 0.1144 8889 +8891 2 456.4629 191.2585 158.7695 0.1144 8890 +8892 2 456.8633 190.2026 159.229 0.1144 8891 +8893 2 457.6469 189.3938 159.698 0.1144 8892 +8894 2 458.4889 188.6422 160.1572 0.1144 8893 +8895 2 459.3309 187.8906 160.6111 0.1144 8894 +8896 2 460.1431 187.1664 161.4771 0.1144 8895 +8897 2 428.9863 511.8279 47.1425 0.1144 8415 +8898 2 429.3077 510.7525 46.9613 0.1144 8897 +8899 2 429.3752 509.6131 46.8978 0.1144 8898 +8900 2 429.4027 508.4702 46.8798 0.1144 8899 +8901 2 429.5091 507.332 46.9115 0.1144 8900 +8902 2 429.7585 506.22 47.0142 0.1144 8901 +8903 2 430.1062 505.1332 47.2018 0.1144 8902 +8904 2 430.4323 504.0418 47.4446 0.1144 8903 +8905 2 430.7297 502.9424 47.7142 0.1144 8904 +8906 2 431.026 501.8442 48.0004 0.1144 8905 +8907 2 431.3235 500.746 48.2933 0.1144 8906 +8908 2 431.6198 499.6477 48.5856 0.1144 8907 +8909 2 431.9161 498.5483 48.8737 0.1144 8908 +8910 2 432.2455 497.4592 49.1602 0.1144 8909 +8911 2 432.7889 496.4777 49.443 0.1144 8910 +8912 2 433.5405 495.6254 49.719 0.1144 8911 +8913 2 434.3379 494.812 49.9895 0.1144 8912 +8914 2 435.1055 493.9723 50.2575 0.1144 8913 +8915 2 435.6203 492.9828 50.5224 0.1144 8914 +8916 2 435.7622 491.8651 50.7794 0.1144 8915 +8917 2 435.7885 490.7268 51.0322 0.1144 8916 +8918 2 435.9292 489.5988 51.2901 0.1144 8917 +8919 2 436.1042 488.4743 51.5592 0.1144 8918 +8920 2 435.8972 487.3943 51.8543 0.1144 8919 +8921 2 435.2348 486.494 52.194 0.1144 8920 +8922 2 434.6228 485.5525 52.5546 0.1144 8921 +8923 2 434.6022 484.4646 52.9197 0.1144 8922 +8924 2 434.585 483.3366 53.2941 0.1144 8923 +8925 2 433.846 482.5346 53.6564 0.1144 8924 +8926 2 432.8004 482.0896 53.8236 0.1144 8925 +8927 2 431.7696 481.5954 53.8101 0.1144 8926 +8928 2 430.9517 480.8015 53.7009 0.1144 8927 +8929 2 430.1703 479.9686 53.5332 0.1144 8928 +8930 2 429.2574 479.2845 53.3627 0.1144 8929 +8931 2 428.5721 478.3728 53.2148 0.1144 8930 +8932 2 428.1374 477.318 53.06 0.1144 8931 +8933 2 427.8343 476.2163 52.9147 0.1144 8932 +8934 2 427.5723 475.1043 52.7974 0.1144 8933 +8935 2 427.3149 473.9901 52.7136 0.1144 8934 +8936 2 427.0563 472.8758 52.6576 0.1144 8935 +8937 2 426.2933 472.0281 52.6834 0.1144 8936 +8938 2 425.3323 471.4104 52.7993 0.1144 8937 +8939 2 424.3679 470.7995 52.9729 0.1144 8938 +8940 2 423.2937 470.4288 53.2868 0.1144 8939 +8941 2 424.6825 523.69 44.893 0.1144 8403 +8942 2 424.8381 522.5598 44.7574 0.1144 8941 +8943 2 424.8793 521.4169 44.6986 0.1144 8942 +8944 2 425.3152 520.369 44.6351 0.1144 8943 +8945 2 425.8368 519.3508 44.5354 0.1144 8944 +8946 2 426.2407 518.2835 44.3766 0.1144 8945 +8947 2 426.4535 517.1646 44.1893 0.1144 8946 +8948 2 426.3905 516.0275 43.979 0.1144 8947 +8949 2 426.0416 514.9441 43.7973 0.1144 8948 +8950 2 425.6652 513.8654 43.6416 0.1144 8949 +8951 2 425.0452 512.909 43.5047 0.1144 8950 +8952 2 424.3462 512.0132 43.1894 0.1144 8951 +8953 2 423.4333 511.3451 42.9528 0.1144 8952 +8954 2 422.3842 510.907 42.7148 0.1144 8953 +8955 2 421.461 510.2572 42.373 0.1144 8954 +8956 2 421.4496 509.1544 41.9518 0.1144 8955 +8957 2 421.6704 508.0481 41.4943 0.1144 8956 +8958 2 421.4633 506.9384 41.0455 0.1144 8957 +8959 2 421.5148 505.8139 40.577 0.1144 8958 +8960 2 421.9106 504.758 40.1486 0.1144 8959 +8961 2 421.8374 503.638 39.6922 0.1144 8960 +8962 2 421.3741 502.6118 39.2241 0.1144 8961 +8963 2 420.7254 501.6943 38.7198 0.1144 8962 +8964 2 419.9487 500.8821 38.2175 0.1144 8963 +8965 2 419.3115 499.9543 37.7546 0.1144 8964 +8966 2 418.8184 498.9373 37.3537 0.1144 8965 +8967 2 418.172 498.0084 36.988 0.1144 8966 +8968 2 417.3918 497.1881 36.5814 0.1144 8967 +8969 2 416.6768 496.3255 36.0394 0.1144 8968 +8970 2 416.0602 495.3909 35.4749 0.1144 8969 +8971 2 415.4287 494.4677 34.9247 0.1144 8970 +8972 2 414.9185 493.4804 34.279 0.1144 8971 +8973 2 414.2756 492.5686 33.7061 0.1144 8972 +8974 2 413.7104 491.6798 33.0862 0.1144 8973 +8975 2 413.6315 490.5769 32.3834 0.1144 8974 +8976 2 413.6326 489.4959 31.5608 0.1144 8975 +8977 2 413.715 488.3988 30.8305 0.1144 8976 +8978 2 413.6189 487.2971 30.135 0.1144 8977 +8979 2 413.3947 486.2137 29.4403 0.1144 8978 +8980 2 413.2906 485.1109 28.854 0.1144 8979 +8981 2 413.556 484.0436 28.3178 0.1144 8980 +8982 2 414.1909 483.1272 27.7894 0.1144 8981 +8983 2 414.6245 482.0988 27.41 0.1144 8982 +8984 2 414.6165 480.9765 27.1627 0.1144 8983 +8985 2 414.1394 479.9606 27.005 0.1144 8984 +8986 2 413.3386 479.1575 26.9109 0.1144 8985 +8987 2 412.8227 478.1588 26.8583 0.1144 8986 +8988 2 412.4841 477.0674 26.8272 0.1144 8987 +8989 2 412.0127 476.0264 26.7908 0.1144 8988 +8990 2 411.3961 475.0643 26.745 0.1144 8989 +8991 2 410.998 473.997 26.6522 0.1144 8990 +8992 2 410.7418 472.8838 26.5269 0.1144 8991 +8993 2 410.6937 471.7433 26.4051 0.1144 8992 +8994 2 410.4718 470.6233 26.2976 0.1144 8993 +8995 2 409.9295 469.6212 26.173 0.1144 8994 +8996 2 409.3804 468.619 26.0341 0.1144 8995 +8997 2 409.0807 467.5173 25.9195 0.1144 8996 +8998 2 408.7684 466.418 25.8323 0.1144 8997 +8999 2 408.0637 465.5211 25.7592 0.1144 8998 +9000 2 407.1736 464.8049 25.6956 0.1144 8999 +9001 2 406.2458 464.1357 25.6363 0.1144 9000 +9002 2 405.6853 463.1415 25.5727 0.1144 9001 +9003 2 405.6864 461.9998 25.4982 0.1144 9002 +9004 2 405.5755 460.8638 25.3134 0.1144 9003 +9005 2 405.3043 459.7553 25.0974 0.1144 9004 +9006 2 404.9039 458.7028 24.9239 0.1144 9005 +9007 2 403.872 458.2155 24.7923 0.1144 9006 +9008 2 403.0301 457.4581 24.6979 0.1144 9007 +9009 2 402.8287 456.3393 24.6359 0.1144 9008 +9010 2 403.0792 455.2388 24.5995 0.1144 9009 +9011 2 402.6091 454.2035 24.5661 0.1144 9010 +9012 2 401.7934 453.4015 24.5202 0.1144 9011 +9013 2 400.9034 452.6945 24.4535 0.1144 9012 +9014 2 399.82 452.333 24.3631 0.1144 9013 +9015 2 398.6977 452.1157 24.246 0.1144 9014 +9016 2 397.6086 451.7862 24.0768 0.1144 9015 +9017 2 396.6477 451.1822 23.7578 0.1144 9016 +9018 2 395.7302 450.5301 23.3317 0.1144 9017 +9019 2 394.8127 449.8986 22.9732 0.1144 9018 +9020 2 394.1217 448.9971 22.7186 0.1144 9019 +9021 2 393.5074 448.0339 22.5441 0.1144 9020 +9022 2 392.8267 447.1221 22.429 0.1144 9021 +9023 2 392.1586 446.2115 22.3505 0.1144 9022 +9024 2 391.4905 445.334 22.3336 0.1144 9023 +9025 2 390.5582 444.6739 22.4425 0.1144 9024 +9026 2 389.7105 443.912 22.6006 0.1144 9025 +9027 2 389.198 442.9156 22.6582 0.1144 9026 +9028 2 388.793 441.8448 22.6323 0.1144 9027 +9029 2 388.0036 441.0486 22.5973 0.1144 9028 +9030 2 387.6638 439.9893 22.5856 0.1144 9029 +9031 2 387.6364 438.8476 22.506 0.1144 9030 +9032 2 387.5197 437.7104 22.4065 0.1144 9031 +9033 2 387.0312 436.682 22.2618 0.1144 9032 +9034 2 386.6125 435.6192 22.1279 0.1144 9033 +9035 2 385.925 434.7074 22.0796 0.1144 9034 +9036 2 385.6069 433.608 22.0292 0.1144 9035 +9037 2 385.1448 432.5624 21.9733 0.1144 9036 +9038 2 384.3691 431.7262 21.7961 0.1144 9037 +9039 2 383.7354 430.7778 21.5748 0.1144 9038 +9040 2 383.1794 429.7836 21.3408 0.1144 9039 +9041 2 382.5639 428.8261 21.1301 0.1144 9040 +9042 2 381.7974 427.9853 21.0207 0.1144 9041 +9043 2 381.2437 426.9866 20.9825 0.1144 9042 +9044 2 380.547 426.0805 20.96 0.1144 9043 +9045 2 379.8297 425.2019 20.8802 0.1144 9044 +9046 2 379.4717 424.1323 20.754 0.1144 9045 +9047 2 379.4499 422.9894 20.657 0.1144 9046 +9048 2 379.2932 421.8717 20.5216 0.1144 9047 +9049 2 378.7258 420.9119 20.4971 0.1144 9048 +9050 2 377.8392 420.1992 20.614 0.1144 9049 +9051 2 377.0258 419.4224 20.8531 0.1144 9050 +9052 2 376.4904 418.4272 20.9931 0.1144 9051 +9053 2 376.114 417.3484 21.0191 0.1144 9052 +9054 2 375.772 416.257 20.9147 0.1144 9053 +9055 2 375.5477 415.1416 20.7368 0.1144 9054 +9056 2 375.1073 414.1166 20.5902 0.1144 9055 +9057 2 374.4506 413.1808 20.4474 0.1144 9056 +9058 2 374.628 412.0665 20.3454 0.1144 9057 +9059 2 375.0101 410.9877 20.2931 0.1144 9058 +9060 2 375.8887 410.2601 20.269 0.1144 9059 +9061 2 376.6952 409.449 20.2596 0.1144 9060 +9062 2 377.4903 408.6265 20.2576 0.1144 9061 +9063 2 378.5141 408.1163 20.2781 0.1144 9062 +9064 2 379.649 407.9779 20.3125 0.1144 9063 +9065 2 380.6912 407.5054 20.3604 0.1144 9064 +9066 2 381.81 407.2674 20.4257 0.1144 9065 +9067 2 382.3889 406.9963 19.6659 0.1144 9066 +9068 2 383.335 406.4746 18.8639 0.1144 9067 +9069 2 384.2524 405.8168 18.4422 0.1144 9068 +9070 2 385.1734 405.167 17.9865 0.1144 9069 +9071 2 386.1766 404.6522 17.5693 0.1144 9070 +9072 2 387.0255 403.9498 17.188 0.1144 9071 +9073 2 387.2589 402.8996 16.8163 0.1144 9072 +9074 2 387.101 401.7785 16.4993 0.1144 9073 +9075 2 386.6812 400.7295 16.1848 0.1144 9074 +9076 2 386.1583 399.7193 15.8936 0.1144 9075 +9077 2 385.496 398.795 15.6796 0.1144 9076 +9078 2 384.6185 398.0754 15.5925 0.1144 9077 +9079 2 383.6404 397.4828 15.6022 0.1144 9078 +9080 2 382.8327 396.6877 15.6531 0.1144 9079 +9081 2 382.2447 395.7119 15.723 0.1144 9080 +9082 2 381.7585 394.6777 15.7941 0.1144 9081 +9083 2 381.5114 393.5669 15.8953 0.1144 9082 +9084 2 381.4805 392.4263 15.9981 0.1144 9083 +9085 2 381.27 391.3075 16.0744 0.1144 9084 +9086 2 380.8422 390.2504 16.1219 0.1144 9085 +9087 2 380.5367 389.1499 16.1412 0.1144 9086 +9088 2 380.5116 388.0116 16.1318 0.1144 9087 +9089 2 380.3972 386.8756 16.0913 0.1144 9088 +9090 2 380.3422 385.7339 16.0226 0.1144 9089 +9091 2 380.6797 384.6551 15.9241 0.1144 9090 +9092 2 380.9417 383.5454 15.7904 0.1144 9091 +9093 2 380.4544 382.5685 15.614 0.1144 9092 +9094 2 380.086 381.6304 15.215 0.1144 9093 +9095 2 380.3674 381.0286 14.5204 0.1144 9094 +9096 2 380.1935 379.9327 13.9533 0.1144 9095 +9097 2 380.1546 378.8093 13.4441 0.1144 9096 +9098 2 380.1809 377.6836 12.9581 0.1144 9097 +9099 2 380.1684 376.5556 12.4947 0.1144 9098 +9100 2 379.9361 375.4574 12.0277 0.1144 9099 +9101 2 379.4785 374.4289 11.5746 0.1144 9100 +9102 2 378.8047 373.5297 11.0981 0.1144 9101 +9103 2 378.0073 372.7472 10.5181 0.1144 9102 +9104 2 377.0899 372.1077 9.9444 0.1144 9103 +9105 2 376.1689 371.4774 9.3336 0.1144 9104 +9106 2 375.5821 370.5553 8.5933 0.1144 9105 +9107 2 374.8064 369.7614 7.9644 0.1144 9106 +9108 2 373.7265 369.4548 7.4957 0.1144 9107 +9109 2 373.1431 368.5224 6.7309 0.1144 9108 +9110 2 382.3969 407.6667 20.5587 0.1144 9066 +9111 2 383.4448 407.8898 20.7226 0.1144 9110 +9112 2 384.4698 407.4333 20.939 0.1144 9111 +9113 2 385.433 406.8453 21.2055 0.1144 9112 +9114 2 386.4855 406.4094 21.472 0.1144 9113 +9115 2 387.4579 405.834 21.6685 0.1144 9114 +9116 2 388.4212 405.2403 21.8027 0.1144 9115 +9117 2 389.5091 404.9108 21.8851 0.1144 9116 +9118 2 390.6039 404.6031 21.9408 0.1144 9117 +9119 2 391.5981 404.0528 21.998 0.1144 9118 +9120 2 392.5602 403.4373 22.0404 0.1144 9119 +9121 2 393.5863 402.9374 22.0427 0.1144 9120 +9122 2 394.6892 402.6994 21.999 0.1144 9121 +9123 2 395.8309 402.6514 21.8754 0.1144 9122 +9124 2 396.9062 402.3505 21.638 0.1144 9123 +9125 2 397.8123 401.6859 21.3267 0.1144 9124 +9126 2 398.4426 400.7604 20.9965 0.1144 9125 +9127 2 398.6051 399.6633 20.676 0.1144 9126 +9128 2 397.8592 399.0272 20.3399 0.1144 9127 +9129 2 397.6624 397.9942 19.986 0.1144 9128 +9130 2 397.5858 396.8616 19.731 0.1144 9129 +9131 2 397.2323 395.7805 19.5169 0.1144 9130 +9132 2 397.1671 394.6514 19.3175 0.1144 9131 +9133 2 397.5949 393.6058 19.0597 0.1144 9132 +9134 2 398.3111 392.7249 18.813 0.1144 9133 +9135 2 398.6783 391.7045 18.5636 0.1144 9134 +9136 2 398.1898 390.6806 18.2279 0.1144 9135 +9137 2 397.778 389.6304 17.7757 0.1144 9136 +9138 2 397.2803 388.6214 17.2775 0.1144 9137 +9139 2 396.7827 387.6101 16.8455 0.1144 9138 +9140 2 396.4395 386.529 16.4938 0.1144 9139 +9141 2 396.2873 385.4193 16.2257 0.1144 9140 +9142 2 396.5802 384.3257 16.0084 0.1144 9141 +9143 2 396.7506 383.3601 15.7943 0.1144 9142 +9144 2 396.261 382.4209 15.6131 0.1144 9143 +9145 2 396.5928 381.3764 15.4243 0.1144 9144 +9146 2 397.27 380.4624 15.2201 0.1144 9145 +9147 2 397.8271 379.4682 15.0231 0.1144 9146 +9148 2 398.3705 378.4707 14.8153 0.1144 9147 +9149 2 399.081 377.5841 14.5958 0.1144 9148 +9150 2 399.7571 376.6826 14.38 0.1144 9149 +9151 2 399.9699 375.6061 14.1416 0.1144 9150 +9152 2 399.7994 374.4804 13.894 0.1144 9151 +9153 2 399.5271 373.3753 13.6384 0.1144 9152 +9154 2 398.8934 372.5356 13.3207 0.1144 9153 +9155 2 397.8054 372.3731 12.9874 0.1144 9154 +9156 2 396.6889 372.2061 12.6799 0.1144 9155 +9157 2 395.7885 371.5712 12.3821 0.1144 9156 +9158 2 395.3378 370.5553 12.103 0.1144 9157 +9159 2 395.4545 369.4491 11.8591 0.1144 9158 +9160 2 396.0585 368.5018 11.6589 0.1144 9159 +9161 2 396.7495 367.5924 11.4815 0.1144 9160 +9162 2 396.5848 366.5468 11.2893 0.1144 9161 +9163 2 396.237 365.4611 11.0705 0.1144 9162 +9164 2 395.53 364.5825 10.7254 0.1144 9163 +9165 2 394.6583 363.8664 10.2739 0.1144 9164 +9166 2 393.79 363.1525 9.7619 0.1144 9165 +9167 2 393.1367 362.2316 9.3121 0.1144 9166 +9168 2 392.5693 361.25 8.9433 0.1144 9167 +9169 2 392.0088 360.2765 8.4137 0.1144 9168 +9170 2 419.4682 530.4202 43.9928 0.1144 8395 +9171 2 418.394 530.0358 43.9298 0.1144 9170 +9172 2 417.2614 529.9511 43.8962 0.1144 9171 +9173 2 416.1243 530.0564 43.892 0.1144 9172 +9174 2 414.9952 530.2406 43.9149 0.1144 9173 +9175 2 413.9289 530.6398 43.9835 0.1144 9174 +9176 2 412.9428 531.213 44.0922 0.1144 9175 +9177 2 412.0551 531.9303 44.2112 0.1144 9176 +9178 2 411.2897 532.7757 44.3492 0.1144 9177 +9179 2 410.8699 533.8247 44.4592 0.1144 9178 +9180 2 410.0862 534.629 44.4704 0.1144 9179 +9181 2 409.0086 534.4162 44.4828 0.1144 9180 +9182 2 407.8703 534.3361 44.457 0.1144 9181 +9183 2 406.7732 534.0329 44.2338 0.1144 9182 +9184 2 406.7721 534.6301 44.1339 0.1144 9183 +9185 2 406.7675 535.7718 43.9631 0.1144 9184 +9186 2 406.6931 536.9112 43.8276 0.1144 9185 +9187 2 406.4289 538.0163 43.7214 0.1144 9186 +9188 2 406.1131 539.1134 43.6405 0.1144 9187 +9189 2 406.0067 540.2426 43.5697 0.1144 9188 +9190 2 406.4129 541.2481 43.4669 0.1144 9189 +9191 2 407.4104 541.7012 43.3731 0.1144 9190 +9192 2 408.456 542.1519 43.3098 0.1144 9191 +9193 2 409.4159 542.7685 43.2712 0.1144 9192 +9194 2 410.3253 543.4629 43.2561 0.1144 9193 +9195 2 411.1261 544.2752 43.2634 0.1144 9194 +9196 2 411.6478 545.2784 43.2894 0.1144 9195 +9197 2 411.9269 546.3836 43.3289 0.1144 9196 +9198 2 412.0963 547.515 43.3852 0.1144 9197 +9199 2 412.0505 548.6521 43.4647 0.1144 9198 +9200 2 411.7817 549.7595 43.5716 0.1144 9199 +9201 2 411.6364 550.8886 43.713 0.1144 9200 +9202 2 411.7325 552.0212 43.941 0.1144 9201 +9203 2 411.6776 553.1492 44.3142 0.1144 9202 +9204 2 411.2726 554.1994 44.718 0.1144 9203 +9205 2 411.1502 555.3159 45.1503 0.1144 9204 +9206 2 410.934 556.4233 45.5927 0.1144 9205 +9207 2 410.6754 557.5238 46.0233 0.1144 9206 +9208 2 410.4134 558.6255 46.4218 0.1144 9207 +9209 2 410.1137 559.7226 46.7191 0.1144 9208 +9210 2 409.393 560.5943 46.9266 0.1144 9209 +9211 2 408.5396 561.3528 47.0576 0.1144 9210 +9212 2 407.9138 562.3057 47.1358 0.1144 9211 +9213 2 407.4917 563.3674 47.1797 0.1144 9212 +9214 2 407.1954 564.4713 47.2063 0.1144 9213 +9215 2 407.1336 565.6119 47.2405 0.1144 9214 +9216 2 407.2091 566.7525 47.3295 0.1144 9215 +9217 2 407.4562 567.869 47.395 0.1144 9216 +9218 2 408.0133 568.8643 47.4292 0.1144 9217 +9219 2 408.4858 569.9065 47.4314 0.1144 9218 +9220 2 408.8027 571.0036 47.3502 0.1144 9219 +9221 2 409.1344 572.0972 47.234 0.1144 9220 +9222 2 409.5268 573.1715 47.1192 0.1144 9221 +9223 2 410.2498 574.0523 47.0187 0.1144 9222 +9224 2 411.1067 574.8062 46.8569 0.1144 9223 +9225 2 411.9178 575.6116 46.7342 0.1144 9224 +9226 2 412.7769 576.3655 46.6516 0.1144 9225 +9227 2 413.254 577.402 46.5982 0.1144 9226 +9228 2 413.6109 578.4888 46.5623 0.1144 9227 +9229 2 414.0594 579.5401 46.4856 0.1144 9228 +9230 2 414.462 580.6109 46.5259 0.1144 9229 +9231 2 414.462 580.8969 46.5744 0.1144 9230 +9232 2 414.462 582.0409 46.6312 0.1144 9231 +9233 2 414.6714 583.1643 46.7006 0.1144 9232 +9234 2 415.0455 584.2454 46.7874 0.1144 9233 +9235 2 414.6622 585.259 46.9876 0.1144 9234 +9236 2 414.287 586.3366 47.185 0.1144 9235 +9237 2 413.7253 587.3204 47.4348 0.1144 9236 +9238 2 412.8067 587.9416 47.7837 0.1144 9237 +9239 2 411.7531 588.3295 48.2944 0.1144 9238 +9240 2 410.7212 588.699 49.0874 0.1144 9239 +9241 2 409.6847 588.8866 50.1642 0.1144 9240 +9242 2 408.7295 588.5033 51.3422 0.1144 9241 +9243 2 408.2204 587.6225 52.5952 0.1144 9242 +9244 2 407.4024 587.1168 54.0904 0.1144 9243 +9245 2 406.4575 586.7851 55.4366 0.1144 9244 +9246 2 405.4599 586.5585 56.6364 0.1144 9245 +9247 2 404.4315 586.6718 57.8099 0.1144 9246 +9248 2 403.4602 586.896 59.026 0.1144 9247 +9249 2 403.0026 586.4133 60.893 0.1144 9248 +9250 2 403.1593 585.6411 62.8835 0.1144 9249 +9251 2 403.2897 584.7636 64.6509 0.1144 9250 +9252 2 403.5895 585.0153 65.7376 0.1144 9251 +9253 2 404.1901 585.7532 66.4936 0.1144 9252 +9254 2 404.6545 586.7816 66.2368 0.1144 9253 +9255 2 404.9543 587.8822 66.0696 0.1144 9254 +9256 2 405.1156 589.009 65.8899 0.1144 9255 +9257 2 405.1236 590.1484 65.6821 0.1144 9256 +9258 2 404.9543 591.2707 65.4371 0.1144 9257 +9259 2 404.7609 592.3907 65.1515 0.1144 9258 +9260 2 404.8673 593.3962 64.3496 0.1144 9259 +9261 2 405.81 593.7337 63.0823 0.1144 9260 +9262 2 406.835 594.1272 62.3104 0.1144 9261 +9263 2 407.7445 594.7404 61.6748 0.1144 9262 +9264 2 408.3943 595.6396 61.147 0.1144 9263 +9265 2 408.8084 596.6841 60.7029 0.1144 9264 +9266 2 408.8919 597.7858 60.1485 0.1144 9265 +9267 2 408.0945 597.859 59.1592 0.1144 9266 +9268 2 407.1668 597.2767 58.3579 0.1144 9267 +9269 2 406.2596 596.8946 57.4636 0.1144 9268 +9270 2 407.0627 597.2229 55.9224 0.1144 9269 +9271 2 407.0604 598.1839 54.7828 0.1144 9270 +9272 2 406.7217 599.2192 53.9414 0.1144 9271 +9273 2 406.0285 600.0715 53.2991 0.1144 9272 +9274 2 405.2231 600.8608 52.8324 0.1144 9273 +9275 2 404.4097 601.6536 52.5095 0.1144 9274 +9276 2 403.6009 602.4579 52.2743 0.1144 9275 +9277 2 402.7029 603.1568 52.0386 0.1144 9276 +9278 2 401.7053 603.6945 51.7292 0.1144 9277 +9279 2 400.6837 604.183 51.338 0.1144 9278 +9280 2 399.6358 604.5983 50.8665 0.1144 9279 +9281 2 398.5341 604.7459 50.2684 0.1144 9280 +9282 2 397.4874 604.3855 49.6877 0.1144 9281 +9283 2 396.4692 603.9416 49.0176 0.1144 9282 +9284 2 396.7003 603.9325 48.7738 0.1144 9283 +9285 2 397.6464 603.3536 48.4411 0.1144 9284 +9286 2 398.6668 602.8377 48.3627 0.1144 9285 +9287 2 399.7857 602.6043 48.4159 0.1144 9286 +9288 2 400.9274 602.578 48.5349 0.1144 9287 +9289 2 402.0634 602.4544 48.6534 0.1144 9288 +9290 2 403.117 602.0117 48.7343 0.1144 9289 +9291 2 404.1878 601.6102 48.7866 0.1144 9290 +9292 2 405.2734 601.2486 48.82 0.1144 9291 +9293 2 406.3488 600.8574 48.8396 0.1144 9292 +9294 2 407.4047 600.4192 48.8561 0.1144 9293 +9295 2 408.4583 599.9719 48.8779 0.1144 9294 +9296 2 409.504 599.5075 48.9076 0.1144 9295 +9297 2 410.529 599.0007 48.9569 0.1144 9296 +9298 2 411.4922 598.3852 49.0221 0.1144 9297 +9299 2 412.4532 597.7652 49.0994 0.1144 9298 +9300 2 413.3123 597.0101 49.1851 0.1144 9299 +9301 2 414.2172 596.3134 49.3419 0.1144 9300 +9302 2 415.153 595.7002 49.9215 0.1144 9301 +9303 2 396.0128 603.9199 47.6459 0.1144 9283 +9304 2 395.1399 604.1556 46.2185 0.1144 9303 +9305 2 394.2933 604.8625 45.7358 0.1144 9304 +9306 2 393.5852 605.7537 45.4798 0.1144 9305 +9307 2 392.8736 606.646 45.3015 0.1144 9306 +9308 2 392.0419 607.424 45.2035 0.1144 9307 +9309 2 392.0213 608.4067 45.2334 0.1144 9308 +9310 2 393.0304 608.9398 45.4342 0.1144 9309 +9311 2 402.9934 584.5657 65.2543 0.1144 9251 +9312 2 402.1503 583.9525 66.3292 0.1144 9311 +9313 2 401.2855 583.2627 67.0292 0.1144 9312 +9314 2 400.6734 582.3555 67.5738 0.1144 9313 +9315 2 400.4046 581.2653 67.9694 0.1144 9314 +9316 2 399.8738 580.2963 68.2606 0.1144 9315 +9317 2 399.0741 579.4863 68.4827 0.1144 9316 +9318 2 398.4243 578.5608 68.6846 0.1144 9317 +9319 2 397.9221 577.537 68.8862 0.1144 9318 +9320 2 397.4325 576.5062 69.0757 0.1144 9319 +9321 2 396.952 575.4709 69.2616 0.1144 9320 +9322 2 396.547 574.4058 69.4896 0.1144 9321 +9323 2 396.0414 573.3888 69.7407 0.1144 9322 +9324 2 395.4602 572.4096 70.014 0.1144 9323 +9325 2 394.8905 571.4269 70.3301 0.1144 9324 +9326 2 394.4134 570.3984 70.6941 0.1144 9325 +9327 2 394.0416 569.331 71.1024 0.1144 9326 +9328 2 393.8517 568.2351 71.7094 0.1144 9327 +9329 2 393.4742 567.1975 72.3828 0.1144 9328 +9330 2 392.9732 566.2045 73.0355 0.1144 9329 +9331 2 392.4961 565.2081 73.7624 0.1144 9330 +9332 2 391.8978 564.2803 74.485 0.1144 9331 +9333 2 391.2171 563.4017 75.1556 0.1144 9332 +9334 2 390.7035 562.4098 75.731 0.1144 9333 +9335 2 390.2504 561.3802 76.2328 0.1144 9334 +9336 2 389.7459 560.3724 76.7122 0.1144 9335 +9337 2 389.214 559.3782 77.1848 0.1144 9336 +9338 2 388.293 558.7525 77.6558 0.1144 9337 +9339 2 387.2051 558.463 78.0982 0.1144 9338 +9340 2 386.2213 557.9425 78.7052 0.1144 9339 +9341 2 385.2946 557.3133 79.2728 0.1144 9340 +9342 2 384.36 556.6841 79.7527 0.1144 9341 +9343 2 383.4208 556.0515 80.1651 0.1144 9342 +9344 2 382.4792 555.4189 80.521 0.1144 9343 +9345 2 381.5366 554.7839 80.829 0.1144 9344 +9346 2 380.5916 554.1467 81.0956 0.1144 9345 +9347 2 379.6925 553.4478 81.3492 0.1144 9346 +9348 2 379.0427 552.512 81.5954 0.1144 9347 +9349 2 378.402 551.5693 81.8367 0.1144 9348 +9350 2 377.631 550.7308 82.0848 0.1144 9349 +9351 2 376.7238 550.0409 82.3469 0.1144 9350 +9352 2 376.1037 549.0857 82.6146 0.1144 9351 +9353 2 375.629 548.0504 82.8822 0.1144 9352 +9354 2 375.1096 547.0379 83.1468 0.1144 9353 +9355 2 374.5559 546.0415 83.4092 0.1144 9354 +9356 2 374.0033 545.0462 83.6741 0.1144 9355 +9357 2 373.0527 544.417 84.1593 0.1144 9356 +9358 2 372.1054 543.7901 84.4816 0.1144 9357 +9359 2 371.5037 542.8406 84.8764 0.1144 9358 +9360 2 371.2932 541.7378 85.3647 0.1144 9359 +9361 2 370.95 540.6716 85.9295 0.1144 9360 +9362 2 370.1218 539.928 86.5407 0.1144 9361 +9363 2 369.2718 539.205 87.1646 0.1144 9362 +9364 2 368.4229 538.4808 87.7836 0.1144 9363 +9365 2 367.6873 537.6377 88.3537 0.1144 9364 +9366 2 367.1657 536.639 88.8362 0.1144 9365 +9367 2 366.6463 535.6334 89.2531 0.1144 9366 +9368 2 366.1258 534.6255 89.6204 0.1144 9367 +9369 2 365.6796 533.5822 89.9696 0.1144 9368 +9370 2 365.3055 532.5114 90.3235 0.1144 9369 +9371 2 364.8124 531.4875 90.6592 0.1144 9370 +9372 2 364.1409 530.57 90.9471 0.1144 9371 +9373 2 363.4682 529.6503 91.198 0.1144 9372 +9374 2 362.7944 528.7293 91.4211 0.1144 9373 +9375 2 362.1218 527.8084 91.6255 0.1144 9374 +9376 2 361.4479 526.8875 91.8229 0.1144 9375 +9377 2 360.7741 525.9666 92.0282 0.1144 9376 +9378 2 360.1015 525.0457 92.2505 0.1144 9377 +9379 2 360.1106 524.7654 92.1371 0.1144 9378 +9380 2 360.1495 523.6363 92.4851 0.1144 9379 +9381 2 360.1895 522.498 92.708 0.1144 9380 +9382 2 360.2284 521.3586 92.9376 0.1144 9381 +9383 2 360.2959 520.2214 93.1997 0.1144 9382 +9384 2 360.4652 519.0957 93.4702 0.1144 9383 +9385 2 360.6552 517.9735 93.7577 0.1144 9384 +9386 2 360.8439 516.8523 94.0727 0.1144 9385 +9387 2 360.8656 515.7266 94.5367 0.1144 9386 +9388 2 360.7535 514.6238 95.2165 0.1144 9387 +9389 2 360.6266 513.5405 96.0596 0.1144 9388 +9390 2 360.5327 512.4754 96.9856 0.1144 9389 +9391 2 361.075 511.5339 97.8597 0.1144 9390 +9392 2 361.6893 510.6255 98.6605 0.1144 9391 +9393 2 362.3345 509.7252 99.3518 0.1144 9392 +9394 2 362.9546 508.8649 100.4038 0.1144 9393 +9395 2 359.4471 524.4096 92.4885 0.1144 9378 +9396 2 358.6326 523.6157 92.7984 0.1144 9395 +9397 2 357.8192 522.824 93.142 0.1144 9396 +9398 2 356.7644 522.4454 93.5332 0.1144 9397 +9399 2 355.657 522.212 93.9537 0.1144 9398 +9400 2 354.5485 521.9935 94.3928 0.1144 9399 +9401 2 353.4411 521.775 94.8343 0.1144 9400 +9402 2 352.4367 521.2659 95.2893 0.1144 9401 +9403 2 352.1484 520.1917 95.7337 0.1144 9402 +9404 2 351.8933 519.09 96.15 0.1144 9403 +9405 2 351.6233 517.9895 96.5166 0.1144 9404 +9406 2 350.9483 517.0686 96.7005 0.1144 9405 +9407 2 350.2413 516.1682 96.7232 0.1144 9406 +9408 2 349.5732 515.2416 96.579 0.1144 9407 +9409 2 348.9051 514.3184 96.3449 0.1144 9408 +9410 2 348.2084 513.418 96.1607 0.1144 9409 +9411 2 347.4076 512.6138 96.4368 0.1144 9410 +9412 2 346.8219 511.67 96.8789 0.1144 9411 +9413 2 346.3792 510.6244 97.2216 0.1144 9412 +9414 2 345.8404 509.6303 97.5842 0.1144 9413 +9415 2 345.1574 508.7368 98.0484 0.1144 9414 +9416 2 344.4172 507.8937 98.6042 0.1144 9415 +9417 2 343.6828 507.054 99.2166 0.1144 9416 +9418 2 342.9506 506.2177 99.8729 0.1144 9417 +9419 2 342.2207 505.3723 100.4864 0.1144 9418 +9420 2 341.4886 504.5189 101.0008 0.1144 9419 +9421 2 340.7541 503.6597 101.4177 0.1144 9420 +9422 2 340.0162 502.796 101.7576 0.1144 9421 +9423 2 339.2772 501.9311 102.0443 0.1144 9422 +9424 2 338.5371 501.0651 102.2997 0.1144 9423 +9425 2 337.9273 500.1099 102.5592 0.1144 9424 +9426 2 338.1184 499.0631 102.7942 0.1144 9425 +9427 2 337.5383 498.2395 103.0641 0.1144 9426 +9428 2 336.8165 497.3597 103.32 0.1144 9427 +9429 2 336.2525 496.369 103.5577 0.1144 9428 +9430 2 335.6942 495.376 103.7954 0.1144 9429 +9431 2 335.1371 494.3819 104.0418 0.1144 9430 +9432 2 334.58 493.3878 104.3036 0.1144 9431 +9433 2 334.0228 492.3959 104.5842 0.1144 9432 +9434 2 333.4428 491.4189 104.9177 0.1144 9433 +9435 2 332.8045 490.4877 105.3676 0.1144 9434 +9436 2 332.1501 489.5759 105.9092 0.1144 9435 +9437 2 331.4969 488.6665 106.4809 0.1144 9436 +9438 2 330.8608 487.7433 107.0174 0.1144 9437 +9439 2 330.3746 486.7171 107.3293 0.1144 9438 +9440 2 329.9742 485.6463 107.3713 0.1144 9439 +9441 2 329.5361 484.5938 107.2294 0.1144 9440 +9442 2 328.9595 483.6088 107.0628 0.1144 9441 +9443 2 328.3509 482.641 106.9264 0.1144 9442 +9444 2 327.7423 481.6732 106.8463 0.1144 9443 +9445 2 327.144 480.6985 106.8418 0.1144 9444 +9446 2 326.6017 479.6929 106.9169 0.1144 9445 +9447 2 326.1269 478.6542 107.0588 0.1144 9446 +9448 2 325.6648 477.6097 107.2422 0.1144 9447 +9449 2 325.2014 476.5675 107.4542 0.1144 9448 +9450 2 324.7404 475.5242 107.6866 0.1144 9449 +9451 2 324.2794 474.4832 107.9308 0.1144 9450 +9452 2 323.7074 473.5302 108.1746 0.1144 9451 +9453 2 322.7613 472.8976 108.4084 0.1144 9452 +9454 2 321.8164 472.2821 108.6683 0.1144 9453 +9455 2 321.1048 471.4058 108.9726 0.1144 9454 +9456 2 320.6563 470.3693 109.2146 0.1144 9455 +9457 2 320.4207 469.2516 109.3448 0.1144 9456 +9458 2 320.185 468.1328 109.3862 0.1144 9457 +9459 2 320.002 467.006 109.3537 0.1144 9458 +9460 2 319.9265 465.8654 109.261 0.1144 9459 +9461 2 319.6176 464.8278 109.1577 0.1144 9460 +9462 2 318.8728 463.9629 109.093 0.1144 9461 +9463 2 318.3146 462.9802 109.0494 0.1144 9462 +9464 2 318.0732 461.8706 109.0404 0.1144 9463 +9465 2 317.5961 461.0778 109.2442 0.1144 9464 +9466 2 316.5322 460.7208 109.7631 0.1144 9465 +9467 2 315.6616 460.0436 110.3544 0.1144 9466 +9468 2 315.0954 459.0918 110.9346 0.1144 9467 +9469 2 314.7899 458.0141 111.4375 0.1144 9468 +9470 2 314.5645 456.9044 111.8415 0.1144 9469 +9471 2 314.3472 455.7879 112.1434 0.1144 9470 +9472 2 314.0669 454.6839 112.3612 0.1144 9471 +9473 2 313.3462 453.8317 112.4712 0.1144 9472 +9474 2 312.6312 452.9428 112.5606 0.1144 9473 +9475 2 312.1884 451.8949 112.6336 0.1144 9474 +9476 2 311.8281 450.8092 112.6824 0.1144 9475 +9477 2 311.4082 449.7453 112.7129 0.1144 9476 +9478 2 310.9358 448.7043 112.7333 0.1144 9477 +9479 2 310.4221 447.6815 112.7524 0.1144 9478 +9480 2 309.857 446.6874 112.7689 0.1144 9479 +9481 2 309.0653 445.8694 112.7655 0.1144 9480 +9482 2 308.2005 445.1212 112.7484 0.1144 9481 +9483 2 307.3814 444.3227 112.7888 0.1144 9482 +9484 2 306.6092 443.4808 112.9075 0.1144 9483 +9485 2 305.8884 442.5953 113.0856 0.1144 9484 +9486 2 305.1895 441.6938 113.3048 0.1144 9485 +9487 2 304.5008 440.7855 113.5467 0.1144 9486 +9488 2 303.8155 439.8749 113.7903 0.1144 9487 +9489 2 303.12 438.9722 114.0132 0.1144 9488 +9490 2 302.3237 438.1543 114.1762 0.1144 9489 +9491 2 301.5081 437.3535 114.2789 0.1144 9490 +9492 2 300.705 436.5378 114.3173 0.1144 9491 +9493 2 299.9053 435.7199 114.31 0.1144 9492 +9494 2 299.1732 434.8424 114.331 0.1144 9493 +9495 2 298.4982 433.9192 114.4058 0.1144 9494 +9496 2 297.9205 432.9331 114.5113 0.1144 9495 +9497 2 297.3634 431.9355 114.6348 0.1144 9496 +9498 2 296.8074 430.9368 114.7667 0.1144 9497 +9499 2 296.1358 430.0124 114.8801 0.1144 9498 +9500 2 295.4105 429.1293 114.9632 0.1144 9499 +9501 2 294.6772 428.2507 115.0229 0.1144 9500 +9502 2 293.9451 427.3732 115.0708 0.1144 9501 +9503 2 293.2106 426.4958 115.113 0.1144 9502 +9504 2 292.554 425.5588 115.169 0.1144 9503 +9505 2 291.9694 424.5773 115.2533 0.1144 9504 +9506 2 291.3974 423.5866 115.3639 0.1144 9505 +9507 2 290.7968 422.6142 115.467 0.1144 9506 +9508 2 290.1562 421.667 115.5291 0.1144 9507 +9509 2 289.5395 420.7049 115.6534 0.1144 9508 +9510 2 288.5145 420.2301 115.8601 0.1144 9509 +9511 2 287.7126 419.4213 116.0662 0.1144 9510 +9512 2 287.0536 418.4912 116.2672 0.1144 9511 +9513 2 286.3947 417.5611 116.5212 0.1144 9512 +9514 2 285.7804 416.6002 116.7538 0.1144 9513 +9515 2 285.1672 415.6392 116.9582 0.1144 9514 +9516 2 284.554 414.676 117.143 0.1144 9515 +9517 2 283.9408 413.7127 117.3194 0.1144 9516 +9518 2 283.3024 412.7666 117.5149 0.1144 9517 +9519 2 282.6618 411.8228 117.7204 0.1144 9518 +9520 2 282.02 410.879 117.9346 0.1144 9519 +9521 2 281.4114 409.9146 118.1194 0.1144 9520 +9522 2 280.8245 408.9331 118.258 0.1144 9521 +9523 2 280.2388 407.9515 118.3563 0.1144 9522 +9524 2 279.6508 406.9711 118.421 0.1144 9523 +9525 2 279.1554 405.9404 118.4845 0.1144 9524 +9526 2 278.6876 404.8959 118.5545 0.1144 9525 +9527 2 278.2197 403.8526 118.6296 0.1144 9526 +9528 2 277.6282 402.8745 118.6662 0.1144 9527 +9529 2 277.031 401.8986 118.6668 0.1144 9528 +9530 2 276.4316 400.924 118.6357 0.1144 9529 +9531 2 275.8333 399.9481 118.5786 0.1144 9530 +9532 2 275.235 398.9746 118.5027 0.1144 9531 +9533 2 274.6378 397.9987 118.4162 0.1144 9532 +9534 2 274.0395 397.0252 118.3252 0.1144 9533 +9535 2 273.3966 396.0791 118.2381 0.1144 9534 +9536 2 272.7479 395.1376 118.1443 0.1144 9535 +9537 2 272.2766 394.0966 118.0304 0.1144 9536 +9538 2 272.0569 392.9754 117.8839 0.1144 9537 +9539 2 271.4174 393.2157 117.602 0.1144 9538 +9540 2 270.4199 393.5898 116.5861 0.1144 9539 +9541 2 269.3102 393.4651 116.0832 0.1144 9540 +9542 2 268.2463 393.0944 115.6025 0.1144 9541 +9543 2 267.2681 392.5373 115.1461 0.1144 9542 +9544 2 266.9352 391.4516 114.8174 0.1144 9543 +9545 2 266.6 390.3614 114.5995 0.1144 9544 +9546 2 266.2649 389.27 114.4268 0.1144 9545 +9547 2 272.2514 391.693 117.644 0.1144 9538 +9548 2 271.8853 390.7286 117.2746 0.1144 9547 +9549 2 270.9656 390.1086 116.6623 0.1144 9548 +9550 2 270.0206 389.532 115.9656 0.1144 9549 +9551 2 269.1363 388.8639 115.2836 0.1144 9550 +9552 2 268.2852 388.1455 114.6516 0.1144 9551 +9553 2 267.4798 387.3676 114.0919 0.1144 9552 +9554 2 266.7419 386.5164 113.615 0.1144 9553 +9555 2 266.0303 385.6367 113.2068 0.1144 9554 +9556 2 265.3359 384.7386 112.8523 0.1144 9555 +9557 2 264.6678 383.8189 112.5485 0.1144 9556 +9558 2 263.994 382.9037 112.2363 0.1144 9557 +9559 2 263.3408 381.9747 111.904 0.1144 9558 +9560 2 262.7848 380.9806 111.6973 0.1144 9559 +9561 2 262.3078 379.9418 111.6475 0.1144 9560 +9562 2 261.8936 378.8756 111.708 0.1144 9561 +9563 2 261.5138 377.7991 111.8337 0.1144 9562 +9564 2 261.2816 376.6826 111.9611 0.1144 9563 +9565 2 261.3102 375.5443 112.0042 0.1144 9564 +9566 2 261.4646 374.4118 111.9311 0.1144 9565 +9567 2 261.5447 373.2735 111.7959 0.1144 9566 +9568 2 261.3399 372.1546 111.7088 0.1144 9567 +9569 2 260.8663 371.117 111.687 0.1144 9568 +9570 2 260.1925 370.1961 111.6424 0.1144 9569 +9571 2 259.5221 369.2695 111.5881 0.1144 9570 +9572 2 258.9924 368.2559 111.587 0.1144 9571 +9573 2 258.5234 367.2137 111.6382 0.1144 9572 +9574 2 258.0933 366.1544 111.706 0.1144 9573 +9575 2 257.7695 365.0573 111.7542 0.1144 9574 +9576 2 257.3931 363.9773 111.7416 0.1144 9575 +9577 2 256.9241 362.934 111.6578 0.1144 9576 +9578 2 256.399 361.9193 111.5268 0.1144 9577 +9579 2 255.8556 360.9148 111.3728 0.1144 9578 +9580 2 255.3122 359.9104 111.2157 0.1144 9579 +9581 2 254.7677 358.906 111.0701 0.1144 9580 +9582 2 254.2243 357.9004 110.9444 0.1144 9581 +9583 2 253.6786 356.896 110.8377 0.1144 9582 +9584 2 253.1478 355.8835 110.8128 0.1144 9583 +9585 2 252.4762 354.958 110.8159 0.1144 9584 +9586 2 251.7429 354.0794 110.81 0.1144 9585 +9587 2 251.0085 353.202 110.7999 0.1144 9586 +9588 2 250.3644 352.2559 110.808 0.1144 9587 +9589 2 249.7764 351.2755 110.843 0.1144 9588 +9590 2 249.2181 350.2768 110.9164 0.1144 9589 +9591 2 248.7308 349.2438 111.0693 0.1144 9590 +9592 2 248.272 348.2004 111.298 0.1144 9591 +9593 2 247.6611 347.2395 111.5548 0.1144 9592 +9594 2 246.9587 346.3414 111.806 0.1144 9593 +9595 2 246.2437 345.4548 112.0434 0.1144 9594 +9596 2 245.5287 344.5659 112.2629 0.1144 9595 +9597 2 244.8114 343.6782 112.4617 0.1144 9596 +9598 2 244.0953 342.7893 112.6443 0.1144 9597 +9599 2 243.3791 341.8993 112.8165 0.1144 9598 +9600 2 242.663 341.0104 112.9806 0.1144 9599 +9601 2 241.9022 340.1581 113.1315 0.1144 9600 +9602 2 240.9996 339.4568 113.2538 0.1144 9601 +9603 2 240.0581 338.8093 113.349 0.1144 9602 +9604 2 239.3877 337.8838 113.4286 0.1144 9603 +9605 2 238.8638 336.8668 113.5131 0.1144 9604 +9606 2 238.3547 335.8429 113.6187 0.1144 9605 +9607 2 237.769 334.8637 113.7388 0.1144 9606 +9608 2 236.9533 334.0629 113.8561 0.1144 9607 +9609 2 236.0793 333.325 113.9625 0.1144 9608 +9610 2 235.2064 332.5883 114.0591 0.1144 9609 +9611 2 234.3312 331.8515 114.1476 0.1144 9610 +9612 2 233.4584 331.1136 114.2313 0.1144 9611 +9613 2 232.5844 330.3758 114.3178 0.1144 9612 +9614 2 231.7103 329.6379 114.4136 0.1144 9613 +9615 2 230.8375 328.9011 114.5228 0.1144 9614 +9616 2 229.9634 328.1633 114.6499 0.1144 9615 +9617 2 229.086 327.4322 114.8118 0.1144 9616 +9618 2 228.2074 326.7047 115.0131 0.1144 9617 +9619 2 227.3483 325.9645 115.253 0.1144 9618 +9620 2 226.9788 324.8903 115.5686 0.1144 9619 +9621 2 226.6847 323.7955 115.9362 0.1144 9620 +9622 2 226.2821 322.7396 116.3613 0.1144 9621 +9623 2 225.9274 321.6676 116.8163 0.1144 9622 +9624 2 225.6586 320.5728 117.2808 0.1144 9623 +9625 2 225.4092 319.4723 117.752 0.1144 9624 +9626 2 225.1667 318.3729 118.2429 0.1144 9625 +9627 2 224.9539 317.2792 118.8757 0.1144 9626 +9628 2 224.7491 316.1924 119.5883 0.1144 9627 +9629 2 224.5443 315.1056 120.3065 0.1144 9628 +9630 2 224.2046 314.0509 120.8396 0.1144 9629 +9631 2 223.5879 313.0979 120.8105 0.1144 9630 +9632 2 222.7505 312.3395 120.4269 0.1144 9631 +9633 2 221.7838 311.7434 120.1138 0.1144 9632 +9634 2 221.0517 310.8717 119.9461 0.1144 9633 +9635 2 220.4008 309.9313 119.9579 0.1144 9634 +9636 2 219.7555 308.9898 120.1603 0.1144 9635 +9637 2 219.1138 308.0529 120.5014 0.1144 9636 +9638 2 218.4743 307.1194 120.9104 0.1144 9637 +9639 2 217.8359 306.187 121.3439 0.1144 9638 +9640 2 217.4103 305.146 121.8386 0.1144 9639 +9641 2 216.9996 304.1004 122.3684 0.1144 9640 +9642 2 216.5901 303.0559 122.9147 0.1144 9641 +9643 2 216.1794 302.0114 123.4582 0.1144 9642 +9644 2 215.7721 300.9578 123.9084 0.1144 9643 +9645 2 215.3626 299.9007 124.2884 0.1144 9644 +9646 2 214.953 298.8414 124.6101 0.1144 9645 +9647 2 214.5412 297.7798 124.894 0.1144 9646 +9648 2 214.1305 296.7181 125.1578 0.1144 9647 +9649 2 214.0046 295.5867 125.4294 0.1144 9648 +9650 2 214.0024 294.4484 125.7203 0.1144 9649 +9651 2 214.3261 293.7357 126.0353 0.1144 9650 +9652 2 214.7963 292.7038 126.4136 0.1144 9651 +9653 2 214.802 292.157 126.5734 0.1144 9652 +9654 2 214.8157 291.0199 126.8803 0.1144 9653 +9655 2 214.8283 289.8816 127.146 0.1144 9654 +9656 2 214.8409 288.741 127.3821 0.1144 9655 +9657 2 214.9096 287.605 127.6324 0.1144 9656 +9658 2 215.0468 286.4759 127.9225 0.1144 9657 +9659 2 215.1887 285.3468 128.1941 0.1144 9658 +9660 2 215.3237 284.2142 128.417 0.1144 9659 +9661 2 215.4552 283.0805 128.606 0.1144 9660 +9662 2 215.5731 281.9445 128.7882 0.1144 9661 +9663 2 215.6783 280.8085 128.9806 0.1144 9662 +9664 2 215.7836 279.6725 129.1884 0.1144 9663 +9665 2 215.8888 278.5377 129.4196 0.1144 9664 +9666 2 216.0021 277.404 129.6784 0.1144 9665 +9667 2 216.1348 276.2737 129.9687 0.1144 9666 +9668 2 216.2778 275.1457 130.2871 0.1144 9667 +9669 2 216.4768 274.028 130.6071 0.1144 9668 +9670 2 216.7457 272.9241 130.9104 0.1144 9669 +9671 2 217.034 271.8224 131.1979 0.1144 9670 +9672 2 217.2811 270.7127 131.4804 0.1144 9671 +9673 2 217.233 269.6042 131.7994 0.1144 9672 +9674 2 216.9482 268.5071 132.1704 0.1144 9673 +9675 2 216.6622 267.4111 132.5671 0.1144 9674 +9676 2 216.3819 266.314 132.9686 0.1144 9675 +9677 2 216.2869 265.1906 133.2506 0.1144 9676 +9678 2 216.3098 264.0478 133.3615 0.1144 9677 +9679 2 216.335 262.9038 133.3352 0.1144 9678 +9680 2 216.0318 261.8284 133.3895 0.1144 9679 +9681 2 215.5593 260.7897 133.6048 0.1144 9680 +9682 2 215.0869 259.7555 133.903 0.1144 9681 +9683 2 214.3764 258.9604 133.518 0.1144 9682 +9684 2 213.7701 258.0864 132.5811 0.1144 9683 +9685 2 213.6237 257.0454 131.5728 0.1144 9684 +9686 2 213.7015 255.9643 130.697 0.1144 9685 +9687 2 213.5997 254.8775 129.8928 0.1144 9686 +9688 2 213.3503 253.7953 129.2343 0.1144 9687 +9689 2 213.1661 252.681 128.8272 0.1144 9688 +9690 2 213.0265 251.5484 128.6569 0.1144 9689 +9691 2 212.9556 250.4147 128.457 0.1144 9690 +9692 2 213.5894 249.7741 128.0644 0.1144 9691 +9693 2 214.635 249.4 127.4342 0.1144 9692 +9694 2 215.3397 248.558 126.8134 0.1144 9693 +9695 2 215.7962 247.5307 126.3363 0.1144 9694 +9696 2 216.2194 246.4771 125.9899 0.1144 9695 +9697 2 216.0982 245.3583 125.7424 0.1144 9696 +9698 2 215.6303 244.3218 125.5542 0.1144 9697 +9699 2 215.7298 243.2041 125.258 0.1144 9698 +9700 2 215.9575 242.0967 124.8318 0.1144 9699 +9701 2 216.2217 240.9962 124.4116 0.1144 9700 +9702 2 216.5054 239.8979 124.0543 0.1144 9701 +9703 2 216.7914 238.7974 123.7508 0.1144 9702 +9704 2 216.7445 237.7095 124.2368 0.1144 9703 +9705 2 216.6953 236.5689 124.4116 0.1144 9704 +9706 2 216.645 235.4272 124.5272 0.1144 9705 +9707 2 216.5947 234.2855 124.6386 0.1144 9706 +9708 2 216.6484 233.1461 124.6857 0.1144 9707 +9709 2 216.8932 232.0341 124.5829 0.1144 9708 +9710 2 217.2376 230.9496 124.3136 0.1144 9709 +9711 2 217.757 229.9429 124.0397 0.1144 9710 +9712 2 218.4468 229.0357 123.8924 0.1144 9711 +9713 2 219.1881 228.1651 123.8807 0.1144 9712 +9714 2 219.7052 227.1538 123.8908 0.1144 9713 +9715 2 219.9329 226.0395 123.8104 0.1144 9714 +9716 2 220.085 224.9081 123.625 0.1144 9715 +9717 2 219.8596 223.8053 123.3204 0.1144 9716 +9718 2 219.529 222.7219 122.9351 0.1144 9717 +9719 2 218.901 221.7747 122.6546 0.1144 9718 +9720 2 218.0304 221.0368 122.5924 0.1144 9719 +9721 2 217.1484 220.3104 122.7215 0.1144 9720 +9722 2 216.2926 219.6034 123.4013 0.1144 9721 +9723 2 217.7204 238.0916 123.2395 0.1144 9703 +9724 2 218.623 237.404 122.8808 0.1144 9723 +9725 2 219.5244 236.7176 122.5028 0.1144 9724 +9726 2 220.4259 236.0324 122.094 0.1144 9725 +9727 2 221.3251 235.3471 121.6765 0.1144 9726 +9728 2 222.2266 234.6619 121.2686 0.1144 9727 +9729 2 223.1864 234.059 120.8964 0.1144 9728 +9730 2 224.2034 233.5545 120.5691 0.1144 9729 +9731 2 225.1449 232.9127 120.3723 0.1144 9730 +9732 2 226.1768 232.4219 120.2466 0.1144 9731 +9733 2 227.2945 232.2057 120.057 0.1144 9732 +9734 2 228.4168 232.0089 119.7974 0.1144 9733 +9735 2 229.5356 231.8133 119.4749 0.1144 9734 +9736 2 230.6521 231.6165 119.0991 0.1144 9735 +9737 2 231.7675 231.4209 118.6833 0.1144 9736 +9738 2 232.8806 231.2264 118.2591 0.1144 9737 +9739 2 233.996 231.0308 117.8492 0.1144 9738 +9740 2 235.1114 230.8352 117.4572 0.1144 9739 +9741 2 236.228 230.6396 117.0856 0.1144 9740 +9742 2 237.364 230.5743 116.797 0.1144 9741 +9743 2 238.4371 230.1922 116.5592 0.1144 9742 +9744 2 239.4918 229.7564 116.354 0.1144 9743 +9745 2 240.5454 229.3182 116.1661 0.1144 9744 +9746 2 241.5991 228.8789 115.9838 0.1144 9745 +9747 2 242.6596 228.4579 115.7775 0.1144 9746 +9748 2 243.7281 228.0633 115.519 0.1144 9747 +9749 2 244.7954 227.6686 115.2276 0.1144 9748 +9750 2 245.9165 227.4752 114.94 0.1144 9749 +9751 2 247.0434 227.3162 114.6687 0.1144 9750 +9752 2 248.1725 227.1561 114.4212 0.1144 9751 +9753 2 249.3016 226.9971 114.2039 0.1144 9752 +9754 2 249.6483 227.0497 114.0807 0.1144 9753 +9755 2 250.7785 227.219 113.9799 0.1144 9754 +9756 2 251.9099 227.3894 113.9348 0.1144 9755 +9757 2 253.0414 227.5588 113.9208 0.1144 9756 +9758 2 254.1751 227.704 113.93 0.1144 9757 +9759 2 255.3168 227.7773 113.9555 0.1144 9758 +9760 2 256.4608 227.8047 113.9922 0.1144 9759 +9761 2 257.6036 227.831 114.042 0.1144 9760 +9762 2 258.7476 227.8573 114.1076 0.1144 9761 +9763 2 259.6422 227.179 114.2305 0.1144 9762 +9764 2 260.2897 226.2397 114.3962 0.1144 9763 +9765 2 261.0288 225.3714 114.606 0.1144 9764 +9766 2 261.7346 224.4757 114.828 0.1144 9765 +9767 2 262.413 223.5593 115.04 0.1144 9766 +9768 2 263.1509 222.7128 115.2262 0.1144 9767 +9769 2 264.2091 222.3067 115.3429 0.1144 9768 +9770 2 265.3451 222.1705 115.407 0.1144 9769 +9771 2 266.4856 222.1007 115.4843 0.1144 9770 +9772 2 267.6285 222.055 115.5921 0.1144 9771 +9773 2 268.7702 222.0092 115.7223 0.1144 9772 +9774 2 269.9119 221.9646 115.8646 0.1144 9773 +9775 2 271.0536 221.9211 116.0037 0.1144 9774 +9776 2 272.1965 221.8937 116.1056 0.1144 9775 +9777 2 273.3405 221.9051 116.1247 0.1144 9776 +9778 2 274.4834 221.9326 116.0589 0.1144 9777 +9779 2 275.6262 221.9589 115.9315 0.1144 9778 +9780 2 276.7668 221.9852 115.7635 0.1144 9779 +9781 2 277.9085 222.0126 115.5759 0.1144 9780 +9782 2 279.0491 222.039 115.3886 0.1144 9781 +9783 2 280.1908 222.0664 115.2172 0.1144 9782 +9784 2 281.3336 222.0927 115.0691 0.1144 9783 +9785 2 282.4753 222.0916 114.956 0.1144 9784 +9786 2 283.6136 221.9909 114.912 0.1144 9785 +9787 2 284.7405 221.7964 114.9459 0.1144 9786 +9788 2 285.8204 221.4487 115.059 0.1144 9787 +9789 2 286.7299 220.7851 115.1654 0.1144 9788 +9790 2 287.4529 219.9031 115.0346 0.1144 9789 +9791 2 288.1175 218.9879 114.641 0.1144 9790 +9792 2 288.8463 218.1562 113.983 0.1144 9791 +9793 2 289.718 217.5465 113.0158 0.1144 9792 +9794 2 290.679 217.1323 111.8944 0.1144 9793 +9795 2 291.7234 216.8955 110.929 0.1144 9794 +9796 2 292.8045 216.7228 110.1204 0.1144 9795 +9797 2 293.8993 216.5569 109.4212 0.1144 9796 +9798 2 295.0033 216.3899 108.8102 0.1144 9797 +9799 2 296.1027 216.2 108.2001 0.1144 9798 +9800 2 297.1506 215.9346 107.3027 0.1144 9799 +9801 2 298.2339 215.771 106.4977 0.1144 9800 +9802 2 299.3482 215.6875 105.8991 0.1144 9801 +9803 2 300.4739 215.6097 105.4469 0.1144 9802 +9804 2 301.4554 216.168 105.0476 0.1144 9803 +9805 2 302.1544 217.0248 104.3302 0.1144 9804 +9806 2 249.7306 226.695 113.472 0.1144 9753 +9807 2 250.5863 226.091 112.3629 0.1144 9806 +9808 2 251.4947 225.4504 111.7424 0.1144 9807 +9809 2 252.4122 224.8029 111.214 0.1144 9808 +9810 2 253.3399 224.1531 110.8243 0.1144 9809 +9811 2 254.2734 223.4987 110.5832 0.1144 9810 +9812 2 255.2092 222.8432 110.462 0.1144 9811 +9813 2 256.145 222.1854 110.43 0.1144 9812 +9814 2 257.082 221.5287 110.4328 0.1144 9813 +9815 2 258.0189 220.8721 110.416 0.1144 9814 +9816 2 258.9547 220.2166 110.3312 0.1144 9815 +9817 2 259.958 219.6812 110.0686 0.1144 9816 +9818 2 261.0082 219.2831 109.5433 0.1144 9817 +9819 2 262.0481 218.9124 108.815 0.1144 9818 +9820 2 263.0742 218.5452 107.9618 0.1144 9819 +9821 2 264.0924 218.1825 107.0465 0.1144 9820 +9822 2 265.1117 217.8325 106.1178 0.1144 9821 +9823 2 266.2031 217.7169 105.3315 0.1144 9822 +9824 2 267.3048 217.6025 104.6545 0.1144 9823 +9825 2 268.2737 217.0454 104.0642 0.1144 9824 +9826 2 269.1969 216.4048 103.5423 0.1144 9825 +9827 2 270.0881 215.787 102.6474 0.1144 9826 +9828 2 214.9576 259.4924 135.3061 0.1144 9682 +9829 2 214.6499 258.8597 137.3128 0.1144 9828 +9830 2 214.2254 257.8645 138.1492 0.1144 9829 +9831 2 213.8685 256.7914 138.5807 0.1144 9830 +9832 2 213.5139 255.7206 139.0446 0.1144 9831 +9833 2 213.1592 254.651 139.5276 0.1144 9832 +9834 2 212.808 253.5813 140.021 0.1144 9833 +9835 2 212.5838 252.4911 140.5158 0.1144 9834 +9836 2 212.609 251.3654 141.0116 0.1144 9835 +9837 2 212.6971 250.2466 141.5313 0.1144 9836 +9838 2 212.9945 249.1804 142.1025 0.1144 9837 +9839 2 213.5139 248.1954 142.7409 0.1144 9838 +9840 2 214.0298 247.2127 143.425 0.1144 9839 +9841 2 214.5126 246.2174 144.1247 0.1144 9840 +9842 2 214.9347 245.1901 144.8065 0.1144 9841 +9843 2 215.3637 244.1674 145.4844 0.1144 9842 +9844 2 215.8717 243.1869 146.2006 0.1144 9843 +9845 2 216.4437 242.2489 146.9779 0.1144 9844 +9846 2 216.9905 241.2959 147.756 0.1144 9845 +9847 2 217.5076 240.3201 148.4921 0.1144 9846 +9848 2 218.0109 239.3397 149.2341 0.1144 9847 +9849 2 218.2889 238.3352 150.0898 0.1144 9848 +9850 2 218.0864 237.4052 151.5461 0.1144 9849 +9851 2 217.805 236.5529 153.2698 0.1144 9850 +9852 2 217.6277 235.5359 154.4757 0.1144 9851 +9853 2 217.5945 234.5074 155.6971 0.1144 9852 +9854 2 217.2181 233.5293 156.7916 0.1144 9853 +9855 2 216.7949 232.5592 157.8562 0.1144 9854 +9856 2 216.6747 231.5387 159.0658 0.1144 9855 +9857 2 216.2721 230.5732 160.1933 0.1144 9856 +9858 2 216.1885 229.5562 161.4239 0.1144 9857 +9859 2 215.7962 228.6581 162.7601 0.1144 9858 +9860 2 215.787 227.9248 164.9091 0.1144 9859 +9861 2 215.8671 292.5231 127.7699 0.1144 9652 +9862 2 216.9699 292.3366 128.3419 0.1144 9861 +9863 2 218.0658 292.0552 128.6866 0.1144 9862 +9864 2 219.0314 291.4866 128.812 0.1144 9863 +9865 2 219.9466 290.8059 128.6538 0.1144 9864 +9866 2 220.9636 290.2992 128.4492 0.1144 9865 +9867 2 222.0104 289.8438 128.2554 0.1144 9866 +9868 2 223.0583 289.3897 128.0812 0.1144 9867 +9869 2 224.1119 288.9492 127.9368 0.1144 9868 +9870 2 225.2021 288.6152 127.7819 0.1144 9869 +9871 2 226.3038 288.3189 127.5775 0.1144 9870 +9872 2 227.4032 288.0237 127.2989 0.1144 9871 +9873 2 228.4991 287.7286 126.947 0.1144 9872 +9874 2 229.5916 287.4334 126.5295 0.1144 9873 +9875 2 230.6647 287.0948 126.0442 0.1144 9874 +9876 2 231.3237 286.2837 125.3619 0.1144 9875 +9877 2 231.8259 285.3159 124.5152 0.1144 9876 +9878 2 232.3224 284.3584 123.5875 0.1144 9877 +9879 2 232.8566 283.426 122.6537 0.1144 9878 +9880 2 233.7924 282.8185 122.0425 0.1144 9879 +9881 2 234.7854 282.2751 121.6404 0.1144 9880 +9882 2 235.823 281.8175 121.2674 0.1144 9881 +9883 2 236.8641 281.3702 120.8827 0.1144 9882 +9884 2 237.9051 280.9241 120.4784 0.1144 9883 +9885 2 238.9438 280.4791 120.0497 0.1144 9884 +9886 2 239.9872 280.0535 119.5799 0.1144 9885 +9887 2 241.0751 279.8178 119.0566 0.1144 9886 +9888 2 242.2042 279.9208 118.7309 0.1144 9887 +9889 2 243.291 280.2445 118.627 0.1144 9888 +9890 2 244.2314 280.8749 118.7052 0.1144 9889 +9891 2 244.9693 281.742 118.9594 0.1144 9890 +9892 2 245.6763 282.6218 119.3937 0.1144 9891 +9893 2 246.5217 283.2304 120.2944 0.1144 9892 +9894 2 247.374 282.8494 121.571 0.1144 9893 +9895 2 247.708 281.8141 122.4146 0.1144 9894 +9896 2 247.7263 280.7433 123.4013 0.1144 9895 +9897 2 213.2313 294.4908 126.2069 0.1144 9650 +9898 2 212.1548 294.5503 127.1309 0.1144 9897 +9899 2 211.0394 294.612 127.6999 0.1144 9898 +9900 2 209.916 294.6669 128.2019 0.1144 9899 +9901 2 208.7914 294.6704 128.7138 0.1144 9900 +9902 2 207.6657 294.6097 129.1825 0.1144 9901 +9903 2 206.5366 294.5377 129.6028 0.1144 9902 +9904 2 205.4052 294.4656 129.9768 0.1144 9903 +9905 2 204.2726 294.3935 130.3198 0.1144 9904 +9906 2 203.1401 294.2997 130.6508 0.1144 9905 +9907 2 202.0418 294.0263 131.0014 0.1144 9906 +9908 2 201.0935 293.4257 131.3886 0.1144 9907 +9909 2 200.1783 292.761 131.8022 0.1144 9908 +9910 2 199.2631 292.0964 132.2272 0.1144 9909 +9911 2 198.3524 291.426 132.6469 0.1144 9910 +9912 2 197.4727 290.7098 133.0126 0.1144 9911 +9913 2 196.6593 289.9136 133.2598 0.1144 9912 +9914 2 195.7659 289.2055 133.4446 0.1144 9913 +9915 2 194.6482 289.1803 133.7076 0.1144 9914 +9916 2 193.5396 289.4091 134.0914 0.1144 9915 +9917 2 192.438 289.6494 134.5781 0.1144 9916 +9918 2 191.3443 289.8896 135.1451 0.1144 9917 +9919 2 190.2541 290.1276 135.7591 0.1144 9918 +9920 2 189.1638 290.3666 136.3748 0.1144 9919 +9921 2 188.0702 290.6069 136.9525 0.1144 9920 +9922 2 186.9719 290.846 137.4758 0.1144 9921 +9923 2 185.8668 291.0816 137.9084 0.1144 9922 +9924 2 184.7503 291.3013 138.1828 0.1144 9923 +9925 2 183.6349 291.5507 138.2788 0.1144 9924 +9926 2 182.571 291.9694 138.2343 0.1144 9925 +9927 2 181.57 292.5185 138.089 0.1144 9926 +9928 2 180.5163 292.9555 137.8812 0.1144 9927 +9929 2 179.4364 293.3205 137.6586 0.1144 9928 +9930 2 178.353 293.682 137.471 0.1144 9929 +9931 2 177.2594 294.0091 137.373 0.1144 9930 +9932 2 176.1325 294.1659 137.5102 0.1144 9931 +9933 2 175.008 294.1075 137.9778 0.1144 9932 +9934 2 173.9189 293.881 138.5625 0.1144 9933 +9935 2 172.871 293.4852 139.1219 0.1144 9934 +9936 2 171.8368 293.0413 139.6335 0.1144 9935 +9937 2 170.8049 292.586 140.0921 0.1144 9936 +9938 2 169.7925 292.0861 140.532 0.1144 9937 +9939 2 168.8132 291.5255 141.0016 0.1144 9938 +9940 2 167.8168 290.9958 141.4252 0.1144 9939 +9941 2 166.7586 290.5749 141.6229 0.1144 9940 +9942 2 165.6924 290.179 141.4423 0.1144 9941 +9943 2 164.8767 289.5235 140.5376 0.1144 9942 +9944 2 164.4511 288.6575 139.1757 0.1144 9943 +9945 2 163.6355 288.002 138.0644 0.1144 9944 +9946 2 162.7237 287.4289 137.1241 0.1144 9945 +9947 2 161.7627 286.9072 136.3102 0.1144 9946 +9948 2 160.7514 286.4496 135.6334 0.1144 9947 +9949 2 159.7493 285.968 135.0177 0.1144 9948 +9950 2 158.8764 285.3067 134.2533 0.1144 9949 +9951 2 158.1317 284.5174 133.3724 0.1144 9950 +9952 2 157.4178 283.6868 132.5607 0.1144 9951 +9953 2 156.6914 282.8574 131.8153 0.1144 9952 +9954 2 155.91 282.0669 131.1654 0.1144 9953 +9955 2 155.0509 281.3451 130.6474 0.1144 9954 +9956 2 154.1174 280.7056 130.2622 0.1144 9955 +9957 2 153.1336 280.1336 129.9791 0.1144 9956 +9958 2 152.0776 279.7572 129.7372 0.1144 9957 +9959 2 150.9451 279.66 129.4846 0.1144 9958 +9960 2 149.8068 279.6302 129.2026 0.1144 9959 +9961 2 148.6708 279.6005 128.879 0.1144 9960 +9962 2 147.5577 279.7217 128.4741 0.1144 9961 +9963 2 146.4949 280.0832 127.9695 0.1144 9962 +9964 2 145.4527 280.4996 127.4213 0.1144 9963 +9965 2 144.4106 280.9103 126.8551 0.1144 9964 +9966 2 143.4279 281.4274 126.2498 0.1144 9965 +9967 2 142.5241 282.0749 125.592 0.1144 9966 +9968 2 141.6146 282.7076 124.8993 0.1144 9967 +9969 2 140.6056 283.1011 124.1514 0.1144 9968 +9970 2 139.5222 283.3002 123.398 0.1144 9969 +9971 2 138.4343 283.5141 122.7106 0.1144 9970 +9972 2 137.3441 283.7498 122.0979 0.1144 9971 +9973 2 136.247 283.9888 121.557 0.1144 9972 +9974 2 135.461 283.4958 121.1095 0.1144 9973 +9975 2 135.0343 282.4456 120.8446 0.1144 9974 +9976 2 134.5333 281.4229 120.675 0.1144 9975 +9977 2 133.753 280.6072 120.5103 0.1144 9976 +9978 2 132.8664 279.8888 120.3182 0.1144 9977 +9979 2 131.8391 279.4231 120.0478 0.1144 9978 +9980 2 130.7317 279.1955 119.6888 0.1144 9979 +9981 2 129.6449 279.4289 119.2702 0.1144 9980 +9982 2 128.5318 279.6188 118.8555 0.1144 9981 +9983 2 127.3993 279.6359 118.4809 0.1144 9982 +9984 2 126.2839 279.8464 118.2188 0.1144 9983 +9985 2 125.3687 280.5134 118.1737 0.1144 9984 +9986 2 124.4695 281.2169 118.3241 0.1144 9985 +9987 2 123.5383 281.6688 119.4749 0.1144 9986 +9988 2 373.7951 545.6468 82.8719 0.1144 9356 +9989 2 373.2552 546.5815 82.1747 0.1144 9988 +9990 2 372.3354 547.2301 81.8558 0.1144 9989 +9991 2 371.3046 547.7186 81.6273 0.1144 9990 +9992 2 370.2808 548.222 81.4663 0.1144 9991 +9993 2 369.2718 548.7596 81.3669 0.1144 9992 +9994 2 368.2845 549.3385 81.3235 0.1144 9993 +9995 2 367.3292 549.9654 81.319 0.1144 9994 +9996 2 366.3877 550.6175 81.3252 0.1144 9995 +9997 2 365.5114 551.3416 81.3344 0.1144 9996 +9998 2 364.8044 552.2363 81.347 0.1144 9997 +9999 2 364.1821 553.1949 81.3644 0.1144 9998 +10000 2 363.5426 554.1444 81.3896 0.1144 9999 +10001 2 362.9123 555.0985 81.4237 0.1144 10000 +10002 2 362.3197 556.0767 81.4696 0.1144 10001 +10003 2 361.623 556.9587 81.5371 0.1144 10002 +10004 2 360.6174 557.2962 81.6469 0.1144 10003 +10005 2 359.4928 557.1108 81.7936 0.1144 10004 +10006 2 358.382 556.8454 81.9563 0.1144 10005 +10007 2 357.2609 556.6384 82.1313 0.1144 10006 +10008 2 356.1249 556.5308 82.313 0.1144 10007 +10009 2 355.0541 556.7848 82.4065 0.1144 10008 +10010 2 354.0966 557.4026 82.3211 0.1144 10009 +10011 2 353.2134 558.121 82.0826 0.1144 10010 +10012 2 352.3714 558.8818 81.732 0.1144 10011 +10013 2 351.5432 559.6517 81.3005 0.1144 10012 +10014 2 350.7195 560.4193 80.8167 0.1144 10013 +10015 2 349.8958 561.1858 80.3076 0.1144 10014 +10016 2 349.1957 562.0552 79.7698 0.1144 10015 +10017 2 348.6134 563.0104 79.1977 0.1144 10016 +10018 2 348.0574 563.9794 78.5929 0.1144 10017 +10019 2 347.5026 564.945 77.9579 0.1144 10018 +10020 2 346.9489 565.9093 77.2974 0.1144 10019 +10021 2 346.2739 566.7765 76.5778 0.1144 10020 +10022 2 345.3358 567.2593 75.728 0.1144 10021 +10023 2 344.3463 567.6791 74.7874 0.1144 10022 +10024 2 343.5409 568.385 73.8508 0.1144 10023 +10025 2 342.5948 568.9592 73.1643 0.1144 10024 +10026 2 341.4977 569.2372 72.8073 0.1144 10025 +10027 2 340.3858 569.5026 72.919 0.1144 10026 +10028 2 415.3384 585.2452 46.5562 0.1144 9234 +10029 2 415.717 586.3252 46.5559 0.1144 10028 +10030 2 416.1117 587.3994 46.5559 0.1144 10029 +10031 2 416.6757 588.3947 46.5559 0.1144 10030 +10032 2 417.2408 589.3888 46.5559 0.1144 10031 +10033 2 417.7202 590.4276 46.5559 0.1144 10032 +10034 2 414.835 581.0273 46.4234 0.1144 9230 +10035 2 415.5042 581.9436 46.2801 0.1144 10034 +10036 2 416.3577 582.4859 46.205 0.1144 10035 +10037 2 417.314 582.0397 46.0124 0.1144 10036 +10038 2 418.116 581.2389 45.6481 0.1144 10037 +10039 2 418.9683 580.5148 45.0934 0.1144 10038 +10040 2 419.9532 579.9943 44.5004 0.1144 10039 +10041 2 420.9314 579.4337 44.0297 0.1144 10040 +10042 2 421.8866 578.8171 43.7032 0.1144 10041 +10043 2 422.8636 578.2279 43.5159 0.1144 10042 +10044 2 423.8245 577.609 43.475 0.1144 10043 +10045 2 424.6597 576.8323 43.5758 0.1144 10044 +10046 2 425.6138 576.2053 43.6526 0.1144 10045 +10047 2 426.728 575.9868 43.6971 0.1144 10046 +10048 2 427.7153 575.4217 43.7181 0.1144 10047 +10049 2 428.6076 574.7078 43.7189 0.1144 10048 +10050 2 429.6052 574.1496 43.7049 0.1144 10049 +10051 2 430.6645 573.7194 43.6576 0.1144 10050 +10052 2 431.7399 573.3293 43.5952 0.1144 10051 +10053 2 432.7626 572.8191 43.5677 0.1144 10052 +10054 2 433.7476 572.2368 43.587 0.1144 10053 +10055 2 434.6903 571.5904 43.6528 0.1144 10054 +10056 2 435.6478 570.9658 43.7612 0.1144 10055 +10057 2 436.6923 570.5162 44.0471 0.1144 10056 +10058 2 437.1304 570.0586 43.5506 0.1144 10057 +10059 2 437.89 569.2647 42.7781 0.1144 10058 +10060 2 438.7503 568.5394 42.35 0.1144 10059 +10061 2 439.6827 567.8873 42.0692 0.1144 10060 +10062 2 440.6276 567.2501 41.8107 0.1144 10061 +10063 2 441.5726 566.614 41.5722 0.1144 10062 +10064 2 442.617 566.177 41.3661 0.1144 10063 +10065 2 443.7061 565.8316 41.1919 0.1144 10064 +10066 2 444.7655 565.4128 40.9998 0.1144 10065 +10067 2 445.7653 564.8694 40.7414 0.1144 10066 +10068 2 446.7434 564.2917 40.42 0.1144 10067 +10069 2 447.725 563.722 40.0596 0.1144 10068 +10070 2 448.726 563.1889 39.7029 0.1144 10069 +10071 2 449.7327 562.665 39.3604 0.1144 10070 +10072 2 450.7417 562.141 39.034 0.1144 10071 +10073 2 451.7496 561.6159 38.7212 0.1144 10072 +10074 2 452.6499 560.9318 38.3961 0.1144 10073 +10075 2 453.3969 560.0818 38.0484 0.1144 10074 +10076 2 454.1097 559.1998 37.6737 0.1144 10075 +10077 2 454.8212 558.3189 37.2786 0.1144 10076 +10078 2 455.8508 558.0295 36.832 0.1144 10077 +10079 2 456.9502 558.2709 36.4316 0.1144 10078 +10080 2 458.0679 558.1633 35.9976 0.1144 10079 +10081 2 459.006 558.7502 35.5401 0.1144 10080 +10082 2 459.7416 559.6105 35.1411 0.1144 10081 +10083 2 460.476 560.4719 34.7284 0.1144 10082 +10084 2 460.309 560.751 35.4872 0.1144 10083 +10085 2 459.7461 561.6937 35.3825 0.1144 10084 +10086 2 459.1593 562.6707 35.1736 0.1144 10085 +10087 2 458.4557 563.5699 35.0252 0.1144 10086 +10088 2 457.7396 564.461 34.914 0.1144 10087 +10089 2 457.0223 565.3511 34.8382 0.1144 10088 +10090 2 456.305 566.2422 34.7939 0.1144 10089 +10091 2 455.2251 566.5351 34.7768 0.1144 10090 +10092 2 454.0879 566.4116 34.7768 0.1144 10091 +10093 2 461.5079 560.3838 33.8982 0.1144 10083 +10094 2 462.5295 560.5303 32.9795 0.1144 10093 +10095 2 463.4252 561.1469 32.1118 0.1144 10094 +10096 2 464.2924 561.7738 31.1226 0.1144 10095 +10097 2 465.179 562.3504 30.0754 0.1144 10096 +10098 2 465.997 562.9018 28.768 0.1144 10097 +10099 2 465.3106 563.2473 27.6996 0.1144 10098 +10100 2 465.5096 563.8845 26.4702 0.1144 10099 +10101 2 466.474 564.3787 25.674 0.1144 10100 +10102 2 467.5768 564.4976 25.0377 0.1144 10101 +10103 2 468.6121 564.6475 24.3893 0.1144 10102 +10104 2 469.2288 565.4392 23.0924 0.1144 10103 +10105 2 469.1121 566.4459 21.9691 0.1144 10104 +10106 2 469.0331 567.4263 20.8167 0.1144 10105 +10107 2 470.1108 567.2341 20.0088 0.1144 10106 +10108 2 471.2067 567.0373 19.3565 0.1144 10107 +10109 2 472.3153 566.8394 18.8673 0.1144 10108 +10110 2 473.4307 566.6392 18.4861 0.1144 10109 +10111 2 474.5495 566.4402 18.1618 0.1144 10110 +10112 2 475.6706 566.248 17.8645 0.1144 10111 +10113 2 476.7437 566.6038 17.5223 0.1144 10112 +10114 2 477.8133 566.9801 17.1582 0.1144 10113 +10115 2 478.8956 567.3256 16.8158 0.1144 10114 +10116 2 480.0075 567.575 16.5731 0.1144 10115 +10117 2 481.1218 567.8255 16.4103 0.1144 10116 +10118 2 482.236 568.0761 16.2666 0.1144 10117 +10119 2 437.2242 570.7233 44.48 0.1144 10057 +10120 2 437.5388 571.8101 44.8428 0.1144 10119 +10121 2 437.7608 572.9278 45.108 0.1144 10120 +10122 2 438.0708 574.026 45.2911 0.1144 10121 +10123 2 438.6531 575.0099 45.3989 0.1144 10122 +10124 2 439.3029 575.9514 45.4398 0.1144 10123 +10125 2 440.0499 576.409 45.4437 0.1144 10124 +10126 2 440.9273 577.1377 45.4482 0.1144 10125 +10127 2 441.3621 578.1707 45.4546 0.1144 10126 +10128 2 441.8711 579.1935 45.4619 0.1144 10127 +10129 2 442.5816 580.0869 45.4675 0.1144 10128 +10130 2 443.3526 580.9312 45.4863 0.1144 10129 +10131 2 443.9075 581.9265 45.5319 0.1144 10130 +10132 2 444.261 583.0121 45.5529 0.1144 10131 +10133 2 444.3067 584.1516 45.5325 0.1144 10132 +10134 2 444.2735 585.2933 45.4244 0.1144 10133 +10135 2 444.3479 586.4316 45.2217 0.1144 10134 +10136 2 444.6225 587.5344 44.9215 0.1144 10135 +10137 2 445.0904 588.572 44.6538 0.1144 10136 +10138 2 445.588 589.5982 44.4438 0.1144 10137 +10139 2 446.0891 590.6243 44.2873 0.1144 10138 +10140 2 446.5947 591.6493 44.179 0.1144 10139 +10141 2 447.1107 592.6686 44.0535 0.1144 10140 +10142 2 447.5568 593.7211 43.9373 0.1144 10141 +10143 2 447.8508 594.8262 43.8402 0.1144 10142 +10144 2 448.4491 595.7975 43.7595 0.1144 10143 +10145 2 449.2351 596.628 43.6923 0.1144 10144 +10146 2 449.8654 597.581 43.6332 0.1144 10145 +10147 2 450.2509 598.6575 43.5789 0.1144 10146 +10148 2 450.7886 599.6665 43.5193 0.1144 10147 +10149 2 451.2405 600.7167 43.4031 0.1144 10148 +10150 2 451.6832 601.7692 43.255 0.1144 10149 +10151 2 452.1145 602.8262 43.0626 0.1144 10150 +10152 2 452.2884 603.9554 42.9192 0.1144 10151 +10153 2 452.1168 604.7344 42.8257 0.1144 10152 +10154 2 452.0539 605.8647 42.7736 0.1144 10153 +10155 2 452.3159 606.9664 42.8123 0.1144 10154 +10156 2 452.9027 607.9308 42.8691 0.1144 10155 +10157 2 453.7367 608.703 42.9013 0.1144 10156 +10158 2 454.6851 609.339 42.8974 0.1144 10157 +10159 2 455.6506 609.9533 42.859 0.1144 10158 +10160 2 456.4034 610.3137 42.4903 0.1144 10159 +10161 2 456.7283 611.4005 42.2626 0.1144 10160 +10162 2 457.0669 612.4907 42.1025 0.1144 10161 +10163 2 457.6641 613.4586 41.9706 0.1144 10162 +10164 2 458.4191 614.3154 41.8622 0.1144 10163 +10165 2 458.9774 615.3073 41.767 0.1144 10164 +10166 2 459.3126 616.3975 41.6139 0.1144 10165 +10167 2 459.7747 617.4385 41.4232 0.1144 10166 +10168 2 460.134 618.5208 41.2188 0.1144 10167 +10169 2 460.4669 619.6121 40.9872 0.1144 10168 +10170 2 460.8375 620.6864 40.6871 0.1144 10169 +10171 2 461.4164 621.6599 40.3337 0.1144 10170 +10172 2 462.0273 622.6094 39.872 0.1144 10171 +10173 2 462.6279 623.5555 39.3089 0.1144 10172 +10174 2 463.1473 624.5474 38.738 0.1144 10173 +10175 2 463.6289 625.5609 38.1934 0.1144 10174 +10176 2 464.1048 626.5802 37.6804 0.1144 10175 +10177 2 464.5818 627.6007 37.1977 0.1144 10176 +10178 2 465.0612 628.6223 36.745 0.1144 10177 +10179 2 465.5394 629.6473 36.311 0.1144 10178 +10180 2 466.0187 630.6712 35.884 0.1144 10179 +10181 2 466.498 631.6951 35.4595 0.1144 10180 +10182 2 466.9762 632.7201 35.0384 0.1144 10181 +10183 2 467.3732 633.7794 34.6192 0.1144 10182 +10184 2 467.7084 634.8594 34.2034 0.1144 10183 +10185 2 468.0344 635.9427 33.7946 0.1144 10184 +10186 2 468.3902 637.0192 33.4057 0.1144 10185 +10187 2 468.8993 638.034 33.0683 0.1144 10186 +10188 2 469.4404 639.0338 32.7648 0.1144 10187 +10189 2 469.9804 640.036 32.4831 0.1144 10188 +10190 2 470.5203 641.0381 32.2162 0.1144 10189 +10191 2 471.0431 642.0506 31.9558 0.1144 10190 +10192 2 471.4973 643.095 31.7008 0.1144 10191 +10193 2 471.9366 644.1464 31.4462 0.1144 10192 +10194 2 472.4789 645.1462 31.1744 0.1144 10193 +10195 2 473.1275 646.0809 30.8736 0.1144 10194 +10196 2 473.616 647.107 30.5539 0.1144 10195 +10197 2 473.2053 648.1618 30.2817 0.1144 10196 +10198 2 474.0439 648.9329 30.0275 0.1144 10197 +10199 2 474.8836 649.7051 29.7917 0.1144 10198 +10200 2 475.7232 650.4761 29.5772 0.1144 10199 +10201 2 476.5561 651.2426 29.1676 0.1144 10200 +10202 2 452.9371 603.9759 41.9608 0.1144 10152 +10203 2 453.9712 603.7117 40.9604 0.1144 10202 +10204 2 454.9494 603.166 40.4267 0.1144 10203 +10205 2 455.8783 602.5448 39.8801 0.1144 10204 +10206 2 456.9891 602.3755 39.3596 0.1144 10205 +10207 2 458.1159 602.3709 38.8696 0.1144 10206 +10208 2 459.2348 602.2588 38.3583 0.1144 10207 +10209 2 460.3502 602.1032 37.8636 0.1144 10208 +10210 2 461.4576 601.8813 37.4458 0.1144 10209 +10211 2 462.4368 601.3882 37.1431 0.1144 10210 +10212 2 462.9059 600.3666 36.9135 0.1144 10211 +10213 2 462.4975 599.5704 36.3927 0.1144 10212 +10214 2 461.5777 599.996 35.9148 0.1144 10213 +10215 2 461.1544 601.0107 35.5502 0.1144 10214 +10216 2 461.6967 601.9282 35.247 0.1144 10215 +10217 2 462.7743 601.9042 35.0126 0.1144 10216 +10218 2 463.8337 601.4958 34.7245 0.1144 10217 +10219 2 464.6665 602.2313 34.2157 0.1144 10218 +10220 2 439.3406 576.4959 46.0482 0.1144 10124 +10221 2 439.5328 577.2418 47.964 0.1144 10220 +10222 2 440.1368 577.6113 49.8501 0.1144 10221 +10223 2 440.4835 577.8378 51.8358 0.1144 10222 +10224 2 439.6861 578.1856 53.3926 0.1144 10223 +10225 2 439.4298 578.8789 55.5307 0.1144 10224 +10226 2 406.1463 532.9084 44.1078 0.1144 9183 +10227 2 405.8146 531.8193 44.2344 0.1144 10226 +10228 2 405.6029 530.697 44.326 0.1144 10227 +10229 2 405.2986 529.5954 44.4147 0.1144 10228 +10230 2 404.8673 528.5372 44.5046 0.1144 10229 +10231 2 404.4074 527.4915 44.599 0.1144 10230 +10232 2 403.975 526.4333 44.7126 0.1144 10231 +10233 2 403.562 525.3706 44.9294 0.1144 10232 +10234 2 402.8733 524.4725 45.1802 0.1144 10233 +10235 2 402.1309 523.6077 45.4255 0.1144 10234 +10236 2 401.4227 522.7142 45.6551 0.1144 10235 +10237 2 400.6071 521.9168 45.8354 0.1144 10236 +10238 2 399.9378 520.9936 45.9592 0.1144 10237 +10239 2 399.5306 519.9297 46.0855 0.1144 10238 +10240 2 399.4104 518.7948 46.1712 0.1144 10239 +10241 2 399.2652 517.66 46.1653 0.1144 10240 +10242 2 398.6737 516.6876 46.1314 0.1144 10241 +10243 2 398.0731 515.7141 46.1 0.1144 10242 +10244 2 397.794 514.6055 46.0743 0.1144 10243 +10245 2 397.3981 513.5324 46.0555 0.1144 10244 +10246 2 397.1259 512.4216 46.0566 0.1144 10245 +10247 2 397.1728 511.2788 46.0799 0.1144 10246 +10248 2 396.9977 510.1485 46.1132 0.1144 10247 +10249 2 396.2702 509.2653 46.1518 0.1144 10248 +10250 2 395.5712 508.3604 46.1927 0.1144 10249 +10251 2 395.6501 507.8022 46.3187 0.1144 10250 +10252 2 395.8618 506.681 46.4892 0.1144 10251 +10253 2 395.8949 505.5393 46.5508 0.1144 10252 +10254 2 395.6375 504.4296 46.5354 0.1144 10253 +10255 2 394.9363 503.5408 46.4817 0.1144 10254 +10256 2 394.0085 502.8772 46.3985 0.1144 10255 +10257 2 393.5852 501.8373 46.2308 0.1144 10256 +10258 2 393.2775 500.738 46.0793 0.1144 10257 +10259 2 392.6311 499.801 45.911 0.1144 10258 +10260 2 391.7468 499.0792 45.7856 0.1144 10259 +10261 2 390.7927 498.4488 45.712 0.1144 10260 +10262 2 390.0605 497.5725 45.6868 0.1144 10261 +10263 2 389.572 496.5395 45.7598 0.1144 10262 +10264 2 389.1602 495.4733 45.8704 0.1144 10263 +10265 2 388.555 494.5043 45.9847 0.1144 10264 +10266 2 388.0505 493.4781 46.0916 0.1144 10265 +10267 2 387.5025 492.4748 46.1919 0.1144 10266 +10268 2 386.8711 491.5219 46.2924 0.1144 10267 +10269 2 386.1915 490.6044 46.478 0.1144 10268 +10270 2 385.8884 489.5039 46.6547 0.1144 10269 +10271 2 385.3438 488.5006 46.8308 0.1144 10270 +10272 2 385.1356 488.0018 46.6833 0.1144 10271 +10273 2 384.6528 486.9711 46.5021 0.1144 10272 +10274 2 384.0751 485.9849 46.4937 0.1144 10273 +10275 2 383.4265 485.0434 46.4352 0.1144 10274 +10276 2 382.7675 484.1099 46.3187 0.1144 10275 +10277 2 382.1486 483.1501 46.1538 0.1144 10276 +10278 2 381.6121 482.1468 45.9463 0.1144 10277 +10279 2 381.1968 481.0863 45.7257 0.1144 10278 +10280 2 380.7472 480.0418 45.5213 0.1144 10279 +10281 2 380.0071 479.2205 45.3443 0.1144 10280 +10282 2 379.0804 478.5569 45.1623 0.1144 10281 +10283 2 378.7189 477.58 45.0097 0.1144 10282 +10284 2 378.4913 476.4726 44.9019 0.1144 10283 +10285 2 377.981 475.4556 44.816 0.1144 10284 +10286 2 377.6321 474.379 44.7432 0.1144 10285 +10287 2 377.2043 473.3254 44.6734 0.1144 10286 +10288 2 376.6803 472.3084 44.5945 0.1144 10287 +10289 2 376.0843 471.3349 44.4688 0.1144 10288 +10290 2 375.3944 470.4265 44.2915 0.1144 10289 +10291 2 374.6863 469.5319 44.0804 0.1144 10290 +10292 2 373.7974 468.8306 43.8152 0.1144 10291 +10293 2 372.8559 468.19 43.5588 0.1144 10292 +10294 2 372.1032 467.3434 43.318 0.1144 10293 +10295 2 371.4305 466.4214 43.1348 0.1144 10294 +10296 2 370.7784 465.4833 43.034 0.1144 10295 +10297 2 370.0337 464.6162 43.0576 0.1144 10296 +10298 2 369.7053 463.5339 43.1483 0.1144 10297 +10299 2 369.5829 462.3979 43.2589 0.1144 10298 +10300 2 369.2706 461.3008 43.3773 0.1144 10299 +10301 2 368.6403 460.3525 43.4932 0.1144 10300 +10302 2 368.4183 459.2451 43.7567 0.1144 10301 +10303 2 368.3691 458.1045 43.9653 0.1144 10302 +10304 2 367.8829 457.0715 44.1333 0.1144 10303 +10305 2 367.8315 455.8829 43.7307 0.1144 10304 +10306 2 368.0763 454.772 43.5042 0.1144 10305 +10307 2 367.9504 453.6624 43.2642 0.1144 10306 +10308 2 367.7605 452.5401 42.9856 0.1144 10307 +10309 2 367.7445 451.4007 42.7994 0.1144 10308 +10310 2 367.8624 450.2647 42.6868 0.1144 10309 +10311 2 367.6702 449.1424 42.6605 0.1144 10310 +10312 2 367.5294 448.0076 42.665 0.1144 10311 +10313 2 367.4471 446.867 42.6325 0.1144 10312 +10314 2 367.1576 445.7619 42.5306 0.1144 10313 +10315 2 366.6909 444.7208 42.3676 0.1144 10314 +10316 2 366.2882 443.6535 42.1394 0.1144 10315 +10317 2 365.7791 442.6365 41.8452 0.1144 10316 +10318 2 365.5824 441.5165 41.5909 0.1144 10317 +10319 2 364.9234 440.5876 41.3812 0.1144 10318 +10320 2 364.1455 439.7559 41.1236 0.1144 10319 +10321 2 363.8938 439.6598 40.8355 0.1144 10320 +10322 2 363.4396 439.0569 39.2364 0.1144 10321 +10323 2 363.6856 438.104 37.9375 0.1144 10322 +10324 2 364.3857 437.4953 36.8166 0.1144 10323 +10325 2 365.1671 436.7083 36.1388 0.1144 10324 +10326 2 365.8672 435.8583 35.4021 0.1144 10325 +10327 2 365.969 434.7909 34.7399 0.1144 10326 +10328 2 366.2402 433.7053 34.2437 0.1144 10327 +10329 2 366.6017 432.6333 33.8307 0.1144 10328 +10330 2 366.8488 431.5351 33.3463 0.1144 10329 +10331 2 367.176 430.454 32.9014 0.1144 10330 +10332 2 367.3418 429.3386 32.4559 0.1144 10331 +10333 2 367.1096 428.2518 31.845 0.1144 10332 +10334 2 366.8144 427.1696 31.3009 0.1144 10333 +10335 2 366.7298 426.9374 31.1842 0.1144 10334 +10336 2 366.2733 425.9181 30.6645 0.1144 10335 +10337 2 365.8306 424.9228 30.1902 0.1144 10336 +10338 2 365.8054 423.7937 29.734 0.1144 10337 +10339 2 365.6373 422.7046 29.2555 0.1144 10338 +10340 2 365.2026 421.6647 28.7938 0.1144 10339 +10341 2 364.682 420.6934 28.2993 0.1144 10340 +10342 2 364.0208 419.7954 27.8094 0.1144 10341 +10343 2 363.7508 418.7372 27.3232 0.1144 10342 +10344 2 363.6948 417.6195 26.7952 0.1144 10343 +10345 2 363.4202 416.5407 26.2197 0.1144 10344 +10346 2 363.0392 415.4859 25.6617 0.1144 10345 +10347 2 362.5405 414.4952 25.0689 0.1144 10346 +10348 2 362.6503 413.5926 24.3251 0.1144 10347 +10349 2 362.839 412.547 23.5431 0.1144 10348 +10350 2 362.4066 411.5517 22.7979 0.1144 10349 +10351 2 361.3621 411.3286 22.0622 0.1144 10350 +10352 2 360.2536 411.1136 21.6129 0.1144 10351 +10353 2 359.6473 409.9547 21.3415 0.1144 10352 +10354 2 359.3727 408.8519 21.2809 0.1144 10353 +10355 2 359.4356 407.7205 21.3593 0.1144 10354 +10356 2 359.8303 406.6531 21.5862 0.1144 10355 +10357 2 360.3406 405.6418 21.971 0.1144 10356 +10358 2 360.8554 404.6397 22.4142 0.1144 10357 +10359 2 361.0784 403.6901 22.9072 0.1144 10358 +10360 2 360.6609 402.656 23.4393 0.1144 10359 +10361 2 360.4996 401.5451 23.8935 0.1144 10360 +10362 2 360.4858 400.4103 24.2342 0.1144 10361 +10363 2 360.4847 399.2709 24.4612 0.1144 10362 +10364 2 360.4847 398.128 24.6028 0.1144 10363 +10365 2 360.4847 396.9852 24.6786 0.1144 10364 +10366 2 360.511 395.8412 24.7123 0.1144 10365 +10367 2 360.6986 394.7223 24.7322 0.1144 10366 +10368 2 361.0533 393.6344 24.7538 0.1144 10367 +10369 2 361.4193 392.551 24.784 0.1144 10368 +10370 2 361.8884 391.5134 24.8242 0.1144 10369 +10371 2 362.4306 390.5078 24.8795 0.1144 10370 +10372 2 362.9031 389.4668 24.9651 0.1144 10371 +10373 2 363.3458 388.4143 25.0899 0.1144 10372 +10374 2 363.8366 387.3836 25.2382 0.1144 10373 +10375 2 364.3732 386.3746 25.3893 0.1144 10374 +10376 2 364.8868 385.3553 25.5533 0.1144 10375 +10377 2 365.3799 384.3257 25.7451 0.1144 10376 +10378 2 365.683 383.2457 26.0031 0.1144 10377 +10379 2 365.7585 382.112 26.3141 0.1144 10378 +10380 2 366.0617 381.0286 26.5764 0.1144 10379 +10381 2 366.5021 379.9762 26.7744 0.1144 10380 +10382 2 366.93 378.9168 26.9183 0.1144 10381 +10383 2 367.3464 377.8518 27.0178 0.1144 10382 +10384 2 367.6999 376.7661 27.099 0.1144 10383 +10385 2 367.963 375.6541 27.1943 0.1144 10384 +10386 2 368.1758 374.5307 27.2983 0.1144 10385 +10387 2 368.1838 373.3947 27.3899 0.1144 10386 +10388 2 367.7491 372.364 27.4633 0.1144 10387 +10389 2 367.0021 371.5071 27.5197 0.1144 10388 +10390 2 366.326 370.5896 27.5647 0.1144 10389 +10391 2 365.8352 369.56 27.6072 0.1144 10390 +10392 2 365.3524 368.5236 27.6592 0.1144 10391 +10393 2 365.0138 367.4345 27.7274 0.1144 10392 +10394 2 364.7335 366.326 27.8105 0.1144 10393 +10395 2 364.1958 365.3295 27.9455 0.1144 10394 +10396 2 363.2234 364.8147 28.2453 0.1144 10395 +10397 2 362.2819 364.1775 28.5116 0.1144 10396 +10398 2 361.7351 363.1811 28.6868 0.1144 10397 +10399 2 361.0784 362.2453 28.784 0.1144 10398 +10400 2 360.3245 361.3862 28.8114 0.1144 10399 +10401 2 359.4139 360.6975 28.67 0.1144 10400 +10402 2 358.4598 360.0717 28.4612 0.1144 10401 +10403 2 357.5023 359.4494 28.2943 0.1144 10402 +10404 2 356.5837 358.9792 28.1649 0.1144 10403 +10405 2 355.5666 358.4564 28.0832 0.1144 10404 +10406 2 354.5428 357.9473 28.037 0.1144 10405 +10407 2 353.4708 357.5492 28.0193 0.1144 10406 +10408 2 352.3852 357.1888 28.009 0.1144 10407 +10409 2 351.319 356.7827 27.9942 0.1144 10408 +10410 2 350.3843 356.1226 27.9742 0.1144 10409 +10411 2 349.4314 355.5255 27.9446 0.1144 10410 +10412 2 348.2908 355.6135 27.9026 0.1144 10411 +10413 2 347.1582 355.7428 27.8464 0.1144 10412 +10414 2 346.0268 355.5792 27.7755 0.1144 10413 +10415 2 344.9297 355.6399 27.6467 0.1144 10414 +10416 2 344.4412 355.2967 27.3085 0.1144 10415 +10417 2 343.4849 354.8391 27.1017 0.1144 10416 +10418 2 342.3557 354.8974 26.9461 0.1144 10417 +10419 2 341.2266 355.0713 26.814 0.1144 10418 +10420 2 340.0883 355.0518 26.6704 0.1144 10419 +10421 2 339.1926 354.3963 26.5592 0.1144 10420 +10422 2 338.862 353.3244 26.4997 0.1144 10421 +10423 2 338.6618 352.1987 26.4392 0.1144 10422 +10424 2 338.195 351.1611 26.2788 0.1144 10423 +10425 2 337.9273 350.9014 25.0433 0.1144 10424 +10426 2 337.2455 350.2379 23.7541 0.1144 10425 +10427 2 336.376 349.5298 23.2667 0.1144 10426 +10428 2 335.4094 348.9372 22.9296 0.1144 10427 +10429 2 334.4747 348.2965 22.5961 0.1144 10428 +10430 2 333.6442 347.5255 22.276 0.1144 10429 +10431 2 332.9029 346.6629 21.9883 0.1144 10430 +10432 2 332.1638 345.7957 21.7505 0.1144 10431 +10433 2 331.4099 344.94 21.5337 0.1144 10432 +10434 2 330.6332 344.1072 21.2631 0.1144 10433 +10435 2 330.0989 343.1222 20.9636 0.1144 10434 +10436 2 329.8175 342.0228 20.7003 0.1144 10435 +10437 2 329.3576 340.9909 20.4234 0.1144 10436 +10438 2 328.5454 340.2176 20.152 0.1144 10437 +10439 2 327.5936 339.5941 19.8835 0.1144 10438 +10440 2 326.6292 338.9901 19.5913 0.1144 10439 +10441 2 325.706 338.3266 19.2946 0.1144 10440 +10442 2 324.8274 337.6036 19.0188 0.1144 10441 +10443 2 323.9636 336.8611 18.7672 0.1144 10442 +10444 2 323.1091 336.1061 18.5339 0.1144 10443 +10445 2 322.3083 335.2938 18.3543 0.1144 10444 +10446 2 321.4079 334.5971 18.1857 0.1144 10445 +10447 2 320.5522 333.8489 17.9059 0.1144 10446 +10448 2 319.8681 332.9566 17.4355 0.1144 10447 +10449 2 319.3098 331.9888 16.84 0.1144 10448 +10450 2 318.6875 331.0633 16.215 0.1144 10449 +10451 2 318.294 330.0268 15.5348 0.1144 10450 +10452 2 317.7883 329.0213 15.037 0.1144 10451 +10453 2 317.0573 328.153 14.6901 0.1144 10452 +10454 2 316.0231 327.6736 14.4674 0.1144 10453 +10455 2 314.9009 327.5547 14.023 0.1144 10454 +10456 2 337.6356 351.1886 26.4132 0.1144 10424 +10457 2 336.5351 351.184 26.8428 0.1144 10456 +10458 2 335.669 351.7789 27.5041 0.1144 10457 +10459 2 335.168 352.7467 28.2783 0.1144 10458 +10460 2 334.7493 353.7603 29.0746 0.1144 10459 +10461 2 334.1006 354.6125 29.832 0.1144 10460 +10462 2 333.1671 355.1674 30.6071 0.1144 10461 +10463 2 332.4727 355.6204 32.163 0.1144 10462 +10464 2 332.0414 356.5654 33.3228 0.1144 10463 +10465 2 331.458 357.4497 34.3759 0.1144 10464 +10466 2 330.5714 357.9942 35.4995 0.1144 10465 +10467 2 329.5269 357.9256 36.5826 0.1144 10466 +10468 2 328.598 358.2001 37.9439 0.1144 10467 +10469 2 328.058 358.9437 39.5889 0.1144 10468 +10470 2 327.422 359.6816 41.0404 0.1144 10469 +10471 2 326.8957 360.5293 42.4007 0.1144 10470 +10472 2 326.5159 361.4331 43.8234 0.1144 10471 +10473 2 326.3374 362.3128 45.5305 0.1144 10472 +10474 2 326.1807 363.2154 47.182 0.1144 10473 +10475 2 326.0938 364.2038 48.5601 0.1144 10474 +10476 2 325.7277 365.1179 49.8929 0.1144 10475 +10477 2 325.5241 366.12 51.1087 0.1144 10476 +10478 2 325.1763 366.1372 53.8406 0.1144 10477 +10479 2 324.1272 366.112 54.9548 0.1144 10478 +10480 2 323.0404 365.8626 55.559 0.1144 10479 +10481 2 321.9571 365.6922 56.3486 0.1144 10480 +10482 2 320.8588 365.6876 57.134 0.1144 10481 +10483 2 319.883 365.4874 58.2938 0.1144 10482 +10484 2 319.4048 364.6569 59.8052 0.1144 10483 +10485 2 318.6566 364.1649 61.3348 0.1144 10484 +10486 2 317.6888 364.0894 62.7992 0.1144 10485 +10487 2 316.6672 364.0105 64.0298 0.1144 10486 +10488 2 315.601 363.9087 64.9986 0.1144 10487 +10489 2 314.608 364.1169 66.0579 0.1144 10488 +10490 2 313.607 364.4784 67.0566 0.1144 10489 +10491 2 312.5728 364.8399 67.8622 0.1144 10490 +10492 2 311.6542 364.2507 68.5782 0.1144 10491 +10493 2 310.7905 363.546 69.1986 0.1144 10492 +10494 2 309.6774 363.4477 69.7844 0.1144 10493 +10495 2 308.5688 363.6376 70.3018 0.1144 10494 +10496 2 307.4569 363.8229 70.7773 0.1144 10495 +10497 2 306.3403 363.9945 71.2121 0.1144 10496 +10498 2 305.2158 363.8824 71.6531 0.1144 10497 +10499 2 304.1679 363.4671 72.119 0.1144 10498 +10500 2 303.12 363.053 72.602 0.1144 10499 +10501 2 302.0743 362.6366 73.1041 0.1144 10500 +10502 2 301.0287 362.2213 73.6098 0.1144 10501 +10503 2 299.9865 361.7923 74.0984 0.1144 10502 +10504 2 298.9512 361.3427 74.5494 0.1144 10503 +10505 2 297.9136 360.8931 74.9672 0.1144 10504 +10506 2 296.9023 360.4561 75.7235 0.1144 10505 +10507 2 325.6076 366.3271 51.7006 0.1144 10477 +10508 2 326.0732 367.3659 51.7549 0.1144 10507 +10509 2 326.8854 367.9001 51.3517 0.1144 10508 +10510 2 327.9642 367.6416 50.6766 0.1144 10509 +10511 2 329.0087 367.2926 49.9402 0.1144 10510 +10512 2 330.012 366.811 49.3209 0.1144 10511 +10513 2 330.9992 366.2665 48.853 0.1144 10512 +10514 2 331.9934 365.7185 48.5092 0.1144 10513 +10515 2 332.9864 365.1602 48.2594 0.1144 10514 +10516 2 333.9553 364.5585 48.0673 0.1144 10515 +10517 2 334.9003 363.9167 47.8948 0.1144 10516 +10518 2 335.8418 363.2715 47.7114 0.1144 10517 +10519 2 336.7844 362.6286 47.5037 0.1144 10518 +10520 2 337.75 362.0245 47.2609 0.1144 10519 +10521 2 338.791 361.5909 46.9574 0.1144 10520 +10522 2 339.8229 361.1562 46.5545 0.1144 10521 +10523 2 340.6924 360.4561 46.039 0.1144 10522 +10524 2 341.5057 359.6885 45.4661 0.1144 10523 +10525 2 342.3981 359.0101 44.9226 0.1144 10524 +10526 2 343.3304 358.3786 44.4416 0.1144 10525 +10527 2 344.2674 357.7437 44.0238 0.1144 10526 +10528 2 345.2066 357.1065 43.6738 0.1144 10527 +10529 2 346.1595 356.4841 43.4003 0.1144 10528 +10530 2 347.1605 355.9384 43.2337 0.1144 10529 +10531 2 348.2473 355.6273 43.1609 0.1144 10530 +10532 2 349.3284 355.8412 43.1334 0.1144 10531 +10533 2 350.3077 356.4235 43.164 0.1144 10532 +10534 2 351.2515 357.0687 43.2477 0.1144 10533 +10535 2 352.1404 357.7849 43.3538 0.1144 10534 +10536 2 352.9469 358.5925 43.475 0.1144 10535 +10537 2 353.7545 359.399 43.6327 0.1144 10536 +10538 2 354.5622 360.2056 43.8396 0.1144 10537 +10539 2 355.4717 360.8782 44.1022 0.1144 10538 +10540 2 356.5585 360.9755 44.4114 0.1144 10539 +10541 2 357.6441 360.6677 44.7521 0.1144 10540 +10542 2 358.7561 360.5625 45.1976 0.1144 10541 +10543 2 359.7079 361.0967 45.7383 0.1144 10542 +10544 2 360.6128 361.7568 46.3056 0.1144 10543 +10545 2 361.6996 362.0096 46.8076 0.1144 10544 +10546 2 362.8253 362.1298 47.2136 0.1144 10545 +10547 2 363.9556 362.243 47.5336 0.1144 10546 +10548 2 365.071 362.4775 47.7632 0.1144 10547 +10549 2 365.9725 363.1651 47.8864 0.1144 10548 +10550 2 366.8042 363.9499 47.9175 0.1144 10549 +10551 2 367.6324 364.7381 47.882 0.1144 10550 +10552 2 368.6746 365.1991 47.7904 0.1144 10551 +10553 2 369.8117 365.2266 47.6213 0.1144 10552 +10554 2 370.9489 365.2071 47.3362 0.1144 10553 +10555 2 372.0826 365.1842 46.9675 0.1144 10554 +10556 2 373.1488 365.5641 46.5727 0.1144 10555 +10557 2 374.1486 366.0972 46.1905 0.1144 10556 +10558 2 375.2126 366.493 45.8315 0.1144 10557 +10559 2 376.3474 366.4621 45.5118 0.1144 10558 +10560 2 377.4697 366.263 45.2494 0.1144 10559 +10561 2 378.5851 366.0194 45.0766 0.1144 10560 +10562 2 379.7016 365.7734 44.9686 0.1144 10561 +10563 2 380.8239 365.556 44.9081 0.1144 10562 +10564 2 381.9461 365.7791 44.8731 0.1144 10563 +10565 2 357.6636 358.4598 28.0622 0.1144 10403 +10566 2 358.0423 357.3822 27.9604 0.1144 10565 +10567 2 358.326 356.2748 27.9231 0.1144 10566 +10568 2 358.3774 355.1331 27.8809 0.1144 10567 +10569 2 358.1567 354.0131 27.8013 0.1144 10568 +10570 2 357.5515 353.0487 27.6781 0.1144 10569 +10571 2 356.7255 352.2593 27.5682 0.1144 10570 +10572 2 355.7348 351.6896 27.4705 0.1144 10571 +10573 2 354.8425 350.9758 27.3631 0.1144 10572 +10574 2 353.9582 350.2516 27.2654 0.1144 10573 +10575 2 353.1196 349.4737 27.2153 0.1144 10574 +10576 2 352.4367 348.5562 27.2159 0.1144 10575 +10577 2 351.5729 347.808 27.2809 0.1144 10576 +10578 2 350.6989 347.0713 27.3939 0.1144 10577 +10579 2 349.8249 346.3357 27.5354 0.1144 10578 +10580 2 348.9806 345.5658 27.6746 0.1144 10579 +10581 2 348.3766 344.5945 27.7645 0.1144 10580 +10582 2 347.784 343.6164 27.8081 0.1144 10581 +10583 2 346.8333 342.9815 27.7907 0.1144 10582 +10584 2 345.7912 342.5102 27.7236 0.1144 10583 +10585 2 344.7524 342.0411 27.4848 0.1144 10584 +10586 2 360.4973 410.4958 19.5378 0.1144 10352 +10587 2 360.654 410.0782 17.6438 0.1144 10586 +10588 2 359.7022 409.806 16.6748 0.1144 10587 +10589 2 359.4276 408.7626 15.9958 0.1144 10588 +10590 2 359.1565 408.6746 14.1513 0.1144 10589 +10591 2 358.4163 408.432 12.2167 0.1144 10590 +10592 2 357.7837 407.7193 11.0035 0.1144 10591 +10593 2 357.5194 406.7343 9.8481 0.1144 10592 +10594 2 356.7255 406.0456 8.76 0.1144 10593 +10595 2 356.0494 405.3444 7.2918 0.1144 10594 +10596 2 359.4551 408.511 15.8642 0.1144 10589 +10597 2 359.4826 407.3887 15.4412 0.1144 10596 +10598 2 359.232 406.2905 15.4238 0.1144 10597 +10599 2 358.3729 405.7734 15.7678 0.1144 10598 +10600 2 357.2666 405.8626 16.242 0.1144 10599 +10601 2 356.1936 406.1841 16.7805 0.1144 10600 +10602 2 355.1273 406.5238 17.3585 0.1144 10601 +10603 2 354.036 406.7686 17.9341 0.1144 10602 +10604 2 352.9217 406.8796 18.4859 0.1144 10603 +10605 2 351.8292 407.1153 19.008 0.1144 10604 +10606 2 350.8042 407.5694 19.5087 0.1144 10605 +10607 2 349.7734 408.0179 20.014 0.1144 10606 +10608 2 349.1396 407.1542 20.3136 0.1144 10607 +10609 2 348.8285 406.0548 20.3953 0.1144 10608 +10610 2 348.3457 405.024 20.2948 0.1144 10609 +10611 2 347.5872 404.3743 19.9746 0.1144 10610 +10612 2 348.4738 403.7862 19.1678 0.1144 10611 +10613 2 349.3181 403.0907 18.4395 0.1144 10612 +10614 2 349.9542 402.2212 17.8594 0.1144 10613 +10615 2 350.0754 401.1116 17.6054 0.1144 10614 +10616 2 350.0674 399.9687 17.6037 0.1144 10615 +10617 2 350.0079 398.8316 17.8413 0.1144 10616 +10618 2 349.8821 397.7173 18.3767 0.1144 10617 +10619 2 349.3124 396.7861 19.0827 0.1144 10618 +10620 2 348.5024 396.0322 19.7806 0.1144 10619 +10621 2 347.9831 395.0621 20.5173 0.1144 10620 +10622 2 347.8069 393.9661 21.1889 0.1144 10621 +10623 2 347.5232 392.8793 21.6938 0.1144 10622 +10624 2 347.0587 391.8417 22.0058 0.1144 10623 +10625 2 346.5931 390.8087 22.2146 0.1144 10624 +10626 2 345.7934 389.9953 22.2962 0.1144 10625 +10627 2 345.1711 389.0412 22.2163 0.1144 10626 +10628 2 344.7959 387.9693 22.0608 0.1144 10627 +10629 2 344.7318 386.8322 21.8521 0.1144 10628 +10630 2 344.8233 385.7007 21.5269 0.1144 10629 +10631 2 345.083 384.6197 21.0406 0.1144 10630 +10632 2 345.6001 383.621 20.5597 0.1144 10631 +10633 2 346.0772 382.6005 20.1183 0.1144 10632 +10634 2 346.6629 381.6533 19.5063 0.1144 10633 +10635 2 347.1857 380.6477 19.1797 0.1144 10634 +10636 2 347.5586 379.5712 18.9936 0.1144 10635 +10637 2 347.3138 378.4752 18.8511 0.1144 10636 +10638 2 346.6766 377.5349 18.6741 0.1144 10637 +10639 2 345.8884 376.7089 18.5305 0.1144 10638 +10640 2 344.9263 376.0969 18.3968 0.1144 10639 +10641 2 344.0614 375.3521 18.2576 0.1144 10640 +10642 2 343.8075 374.2436 18.1093 0.1144 10641 +10643 2 343.7937 373.103 17.9102 0.1144 10642 +10644 2 343.7834 371.9636 17.6614 0.1144 10643 +10645 2 343.7743 370.8265 17.3722 0.1144 10644 +10646 2 343.462 369.7339 17.0452 0.1144 10645 +10647 2 343.0673 368.6689 16.7068 0.1144 10646 +10648 2 342.6738 367.6038 16.369 0.1144 10647 +10649 2 342.2882 366.5616 15.7058 0.1144 10648 +10650 2 366.175 427.7164 31.5949 0.1144 10334 +10651 2 365.5984 428.6602 31.9136 0.1144 10650 +10652 2 365.2998 429.7596 32.0894 0.1144 10651 +10653 2 364.7358 430.6908 32.3005 0.1144 10652 +10654 2 363.7279 430.7309 32.5044 0.1144 10653 +10655 2 362.6057 430.5238 32.6654 0.1144 10654 +10656 2 361.5246 430.8487 32.8188 0.1144 10655 +10657 2 360.4641 430.4975 33.094 0.1144 10656 +10658 2 363.5174 438.0971 37.3223 0.1144 10323 +10659 2 362.4547 437.9632 36.7419 0.1144 10658 +10660 2 361.3564 437.6555 36.5994 0.1144 10659 +10661 2 360.368 437.0915 36.4728 0.1144 10660 +10662 2 359.343 436.5882 36.3378 0.1144 10661 +10663 2 358.5651 435.8812 35.3377 0.1144 10662 +10664 2 364.0437 438.7332 40.8391 0.1144 10320 +10665 2 363.8755 437.6063 40.6146 0.1144 10664 +10666 2 363.5838 436.5058 40.3808 0.1144 10665 +10667 2 363.212 435.4293 40.129 0.1144 10666 +10668 2 362.8745 434.3413 39.8902 0.1144 10667 +10669 2 362.5977 433.2351 39.6738 0.1144 10668 +10670 2 362.3643 432.1174 39.5147 0.1144 10669 +10671 2 362.1492 430.994 39.4198 0.1144 10670 +10672 2 362.0188 429.8591 39.38 0.1144 10671 +10673 2 361.6905 428.7712 39.3784 0.1144 10672 +10674 2 361.1963 427.7405 39.4013 0.1144 10673 +10675 2 360.7204 426.7017 39.4778 0.1144 10674 +10676 2 360.455 425.5943 39.5797 0.1144 10675 +10677 2 360.3474 424.4572 39.6617 0.1144 10676 +10678 2 359.9321 423.4024 39.7202 0.1144 10677 +10679 2 359.5889 422.3122 39.7538 0.1144 10678 +10680 2 359.5077 421.175 39.762 0.1144 10679 +10681 2 359.3922 420.0368 39.7477 0.1144 10680 +10682 2 359.3075 418.8962 39.7191 0.1144 10681 +10683 2 359.542 417.7819 39.6819 0.1144 10682 +10684 2 359.6988 416.6494 39.6116 0.1144 10683 +10685 2 359.7205 415.5077 39.5032 0.1144 10684 +10686 2 359.7216 414.3637 39.4271 0.1144 10685 +10687 2 359.7686 413.222 39.3176 0.1144 10686 +10688 2 359.9138 412.0882 39.2031 0.1144 10687 +10689 2 359.7628 410.9568 39.0958 0.1144 10688 +10690 2 359.5375 409.838 38.9486 0.1144 10689 +10691 2 359.4826 408.6974 38.7876 0.1144 10690 +10692 2 359.2732 407.5752 38.6322 0.1144 10691 +10693 2 359.0467 406.4563 38.4238 0.1144 10692 +10694 2 358.7481 405.3535 38.3166 0.1144 10693 +10695 2 358.231 404.3342 38.2029 0.1144 10694 +10696 2 357.9473 403.2314 37.9366 0.1144 10695 +10697 2 357.6155 402.14 37.7177 0.1144 10696 +10698 2 357.2209 401.0784 37.4769 0.1144 10697 +10699 2 356.5333 400.1987 37.2868 0.1144 10698 +10700 2 356.4212 399.0661 37.1462 0.1144 10699 +10701 2 356.0425 397.9873 37.0653 0.1144 10700 +10702 2 355.7291 396.8868 37.0563 0.1144 10701 +10703 2 355.4271 395.784 37.049 0.1144 10702 +10704 2 355.2177 394.6857 36.9477 0.1144 10703 +10705 2 355.5586 393.5989 36.7923 0.1144 10704 +10706 2 355.9293 392.5281 36.6864 0.1144 10705 +10707 2 356.0265 391.3899 36.6576 0.1144 10706 +10708 2 355.8812 390.2767 36.6643 0.1144 10707 +10709 2 355.3893 389.2437 36.6652 0.1144 10708 +10710 2 355.0004 388.1889 36.6131 0.1144 10709 +10711 2 354.9077 387.0518 36.472 0.1144 10710 +10712 2 354.7098 385.9478 36.2138 0.1144 10711 +10713 2 354.4055 384.861 35.9131 0.1144 10712 +10714 2 354.457 383.7434 35.6678 0.1144 10713 +10715 2 354.4158 382.6463 35.4886 0.1144 10714 +10716 2 354.0257 381.5732 35.3738 0.1144 10715 +10717 2 353.7889 380.4669 35.3125 0.1144 10716 +10718 2 353.5429 379.3607 35.2862 0.1144 10717 +10719 2 353.1036 378.3059 35.233 0.1144 10718 +10720 2 352.6506 377.2557 35.1865 0.1144 10719 +10721 2 352.1163 376.249 35.1918 0.1144 10720 +10722 2 351.661 375.2091 35.2106 0.1144 10721 +10723 2 351.4196 374.0949 35.222 0.1144 10722 +10724 2 351.1702 372.9806 35.24 0.1144 10723 +10725 2 350.9117 371.8664 35.2372 0.1144 10724 +10726 2 350.8579 370.7326 35.1842 0.1144 10725 +10727 2 350.7058 369.6127 35.0941 0.1144 10726 +10728 2 350.3363 368.5339 34.9709 0.1144 10727 +10729 2 349.8386 367.5089 34.7757 0.1144 10728 +10730 2 349.3124 366.4987 34.5064 0.1144 10729 +10731 2 348.9555 365.4245 34.237 0.1144 10730 +10732 2 348.3343 364.507 33.9368 0.1144 10731 +10733 2 347.49 363.7474 33.6176 0.1144 10732 +10734 2 346.8745 362.8024 33.3987 0.1144 10733 +10735 2 346.2041 361.8804 33.229 0.1144 10734 +10736 2 345.7809 360.8268 33.0722 0.1144 10735 +10737 2 345.2203 359.8338 32.9428 0.1144 10736 +10738 2 344.4058 359.0352 32.8017 0.1144 10737 +10739 2 343.645 358.183 32.632 0.1144 10738 +10740 2 342.9334 357.2906 32.4626 0.1144 10739 +10741 2 342.6452 356.1901 32.303 0.1144 10740 +10742 2 342.7596 355.0564 32.1174 0.1144 10741 +10743 2 342.2276 354.0554 31.8844 0.1144 10742 +10744 2 341.6945 353.0498 31.5991 0.1144 10743 +10745 2 341.1408 352.5636 31.2794 0.1144 10744 +10746 2 340.4956 351.6267 31.0299 0.1144 10745 +10747 2 339.9133 350.6497 30.7266 0.1144 10746 +10748 2 339.2887 349.7002 30.4214 0.1144 10747 +10749 2 338.7956 348.6935 30.1378 0.1144 10748 +10750 2 338.5943 347.5747 29.8561 0.1144 10749 +10751 2 338.5245 346.4398 29.5943 0.1144 10750 +10752 2 338.4616 345.3084 29.3308 0.1144 10751 +10753 2 337.7969 344.5499 29.1348 0.1144 10752 +10754 2 337.0121 343.7903 29.0035 0.1144 10753 +10755 2 336.4767 342.7836 28.8302 0.1144 10754 +10756 2 335.8624 341.8283 28.5709 0.1144 10755 +10757 2 335.2618 340.864 28.2738 0.1144 10756 +10758 2 334.747 339.8515 27.9662 0.1144 10757 +10759 2 334.4907 338.7556 27.6536 0.1144 10758 +10760 2 334.5845 337.6322 27.3466 0.1144 10759 +10761 2 334.3843 336.5385 26.9967 0.1144 10760 +10762 2 333.4932 335.8841 26.7558 0.1144 10761 +10763 2 332.912 334.9186 26.5835 0.1144 10762 +10764 2 332.7427 333.7929 26.4174 0.1144 10763 +10765 2 332.7198 332.6523 26.2056 0.1144 10764 +10766 2 332.5333 331.5289 25.9491 0.1144 10765 +10767 2 332.2645 330.4261 25.5951 0.1144 10766 +10768 2 331.6033 329.5029 25.2629 0.1144 10767 +10769 2 331.0919 328.4882 24.9397 0.1144 10768 +10770 2 330.9512 327.9791 24.5761 0.1144 10769 +10771 2 330.7396 326.866 24.198 0.1144 10770 +10772 2 330.4947 325.7757 23.7813 0.1144 10771 +10773 2 329.9948 324.7576 23.4203 0.1144 10772 +10774 2 329.623 323.6925 23.0579 0.1144 10773 +10775 2 329.3473 322.6011 22.6783 0.1144 10774 +10776 2 328.7501 321.6608 22.2391 0.1144 10775 +10777 2 327.8612 320.9904 21.7793 0.1144 10776 +10778 2 326.7882 320.6918 21.352 0.1144 10777 +10779 2 325.9965 320.1015 20.9401 0.1144 10778 +10780 2 325.4325 319.1211 20.5553 0.1144 10779 +10781 2 324.7553 318.2093 20.2455 0.1144 10780 +10782 2 324.1341 317.2575 19.9601 0.1144 10781 +10783 2 323.5667 316.2714 19.6709 0.1144 10782 +10784 2 322.7888 315.4557 19.4106 0.1144 10783 +10785 2 321.8747 314.7739 19.208 0.1144 10784 +10786 2 321.5532 313.7042 19.1003 0.1144 10785 +10787 2 320.9046 312.7685 18.9575 0.1144 10786 +10788 2 320.4355 311.7274 18.7967 0.1144 10787 +10789 2 320.1312 310.6269 18.6258 0.1144 10788 +10790 2 319.6931 309.5721 18.4797 0.1144 10789 +10791 2 319.2996 308.499 18.3272 0.1144 10790 +10792 2 318.8408 307.4557 18.13 0.1144 10791 +10793 2 318.1899 306.5188 17.9499 0.1144 10792 +10794 2 317.3868 305.7111 17.8428 0.1144 10793 +10795 2 316.9132 304.6701 17.8233 0.1144 10794 +10796 2 316.5299 303.5936 17.9008 0.1144 10795 +10797 2 316.2851 302.4816 18.0316 0.1144 10796 +10798 2 316.2176 301.3433 18.191 0.1144 10797 +10799 2 316.0106 300.2245 18.4057 0.1144 10798 +10800 2 315.4969 299.2967 18.6292 0.1144 10799 +10801 2 314.6435 298.7304 18.9128 0.1144 10800 +10802 2 314.5439 297.6196 19.1923 0.1144 10801 +10803 2 314.7258 296.4928 19.378 0.1144 10802 +10804 2 314.6709 295.3911 19.5987 0.1144 10803 +10805 2 314.4398 294.2848 19.8269 0.1144 10804 +10806 2 314.2991 293.1534 19.9873 0.1144 10805 +10807 2 314.0932 292.0277 20.0672 0.1144 10806 +10808 2 314.3232 290.9901 20.1371 0.1144 10807 +10809 2 314.997 290.0692 20.2358 0.1144 10808 +10810 2 315.188 289.0373 20.3196 0.1144 10809 +10811 2 314.5783 288.1416 20.4187 0.1144 10810 +10812 2 313.9376 287.2138 20.567 0.1144 10811 +10813 2 313.3141 286.2597 20.7211 0.1144 10812 +10814 2 312.6746 285.3125 20.8738 0.1144 10813 +10815 2 312.4516 284.2257 21.0495 0.1144 10814 +10816 2 312.2742 283.0988 21.2094 0.1144 10815 +10817 2 312.1049 281.9685 21.282 0.1144 10816 +10818 2 311.6771 280.9184 21.3666 0.1144 10817 +10819 2 310.8866 280.1244 21.7079 0.1144 10818 +10820 2 310.3695 279.1097 21.9732 0.1144 10819 +10821 2 310.3089 279.0651 20.8512 0.1144 10820 +10822 2 309.8902 278.5194 19.09 0.1144 10821 +10823 2 309.5893 277.5047 18.175 0.1144 10822 +10824 2 309.3616 276.4556 17.2117 0.1144 10823 +10825 2 308.9349 275.4821 16.2086 0.1144 10824 +10826 2 308.1879 274.7122 15.3262 0.1144 10825 +10827 2 307.2281 274.1756 14.6116 0.1144 10826 +10828 2 306.6492 273.2822 13.8962 0.1144 10827 +10829 2 306.5119 272.1805 13.2849 0.1144 10828 +10830 2 306.1813 271.1097 12.7622 0.1144 10829 +10831 2 306.068 269.9897 12.3139 0.1144 10830 +10832 2 306.3929 268.9178 11.8552 0.1144 10831 +10833 2 305.9445 267.9122 11.4011 0.1144 10832 +10834 2 305.0236 267.2659 11.0194 0.1144 10833 +10835 2 303.978 266.8506 10.5339 0.1144 10834 +10836 2 303.0719 266.1733 10.1145 0.1144 10835 +10837 2 302.2162 265.4526 9.5357 0.1144 10836 +10838 2 310.413 278.0938 22.2676 0.1144 10820 +10839 2 310.3958 276.9532 22.4443 0.1144 10838 +10840 2 310.3066 275.8138 22.5348 0.1144 10839 +10841 2 310.0595 274.6996 22.5911 0.1144 10840 +10842 2 309.5367 273.6906 22.6521 0.1144 10841 +10843 2 309.1065 272.6346 22.7345 0.1144 10842 +10844 2 308.61 271.6073 22.8637 0.1144 10843 +10845 2 308.2657 270.5217 23.062 0.1144 10844 +10846 2 307.9579 269.4246 23.2905 0.1144 10845 +10847 2 307.5999 268.3435 23.5453 0.1144 10846 +10848 2 307.5404 267.2178 23.9371 0.1144 10847 +10849 2 307.4717 266.0898 24.3731 0.1144 10848 +10850 2 307.0999 265.0316 24.896 0.1144 10849 +10851 2 306.9123 263.9151 25.2968 0.1144 10850 +10852 2 306.7853 262.7848 25.599 0.1144 10851 +10853 2 307.5083 262.381 26.647 0.1144 10852 +10854 2 308.562 262.1133 27.3836 0.1144 10853 +10855 2 309.6671 261.9668 28.0006 0.1144 10854 +10856 2 310.4541 261.3251 28.8232 0.1144 10855 +10857 2 311.0525 260.3984 29.5624 0.1144 10856 +10858 2 311.8258 259.6079 30.2061 0.1144 10857 +10859 2 312.4905 258.7408 30.9851 0.1144 10858 +10860 2 313.1963 257.8988 31.7568 0.1144 10859 +10861 2 313.9834 257.1323 32.5318 0.1144 10860 +10862 2 314.8871 256.5191 33.3508 0.1144 10861 +10863 2 315.8035 255.9231 34.1799 0.1144 10862 +10864 2 315.9007 255.9608 35.98 0.1144 10863 +10865 2 316.1352 255.8979 38.7164 0.1144 10864 +10866 2 316.5826 256.0512 41.116 0.1144 10865 +10867 2 316.737 256.248 43.7226 0.1144 10866 +10868 2 317.3159 255.9734 45.864 0.1144 10867 +10869 2 318.032 255.3786 47.4684 0.1144 10868 +10870 2 318.7985 254.7333 48.8149 0.1144 10869 +10871 2 318.6566 254.151 50.5742 0.1144 10870 +10872 2 317.9794 253.2816 51.2296 0.1144 10871 +10873 2 317.2712 252.3881 51.3433 0.1144 10872 +10874 2 316.5105 251.5439 51.091 0.1144 10873 +10875 2 315.6273 250.8655 50.542 0.1144 10874 +10876 2 314.735 250.2145 49.8204 0.1144 10875 +10877 2 314.0257 249.3806 49.0963 0.1144 10876 +10878 2 313.3061 248.566 48.2437 0.1144 10877 +10879 2 312.3715 248.0501 47.304 0.1144 10878 +10880 2 311.2778 247.8579 46.6578 0.1144 10879 +10881 2 310.1659 247.6771 46.1751 0.1144 10880 +10882 2 309.047 247.4815 45.8315 0.1144 10881 +10883 2 308.1387 246.8088 45.995 0.1144 10882 +10884 2 316.1261 255.1692 34.9751 0.1144 10863 +10885 2 316.5734 254.1259 35.31 0.1144 10884 +10886 2 317.0939 253.1157 35.5519 0.1144 10885 +10887 2 317.8181 252.2497 35.7566 0.1144 10886 +10888 2 318.7596 251.6217 35.95 0.1144 10887 +10889 2 319.7652 251.084 36.1362 0.1144 10888 +10890 2 320.5202 250.2855 36.3457 0.1144 10889 +10891 2 321.1014 249.3073 36.6369 0.1144 10890 +10892 2 321.9033 248.5031 36.696 0.1144 10891 +10893 2 322.6995 247.684 36.5842 0.1144 10892 +10894 2 323.3024 246.7173 36.4272 0.1144 10893 +10895 2 323.6502 245.6328 36.2404 0.1144 10894 +10896 2 323.8206 244.506 36.0231 0.1144 10895 +10897 2 323.5735 243.3997 35.7854 0.1144 10896 +10898 2 323.1297 242.3564 35.4413 0.1144 10897 +10899 2 323.4957 241.3897 34.8085 0.1144 10898 +10900 2 324.4819 240.852 34.333 0.1144 10899 +10901 2 325.5298 240.4368 33.8814 0.1144 10900 +10902 2 326.5239 239.9082 33.4373 0.1144 10901 +10903 2 327.3087 239.1395 33.026 0.1144 10902 +10904 2 327.8304 238.1419 32.6388 0.1144 10903 +10905 2 328.6026 237.3251 32.2899 0.1144 10904 +10906 2 329.5098 236.6387 31.976 0.1144 10905 +10907 2 330.4204 235.958 31.6828 0.1144 10906 +10908 2 331.2624 235.203 31.4163 0.1144 10907 +10909 2 331.7909 234.2294 31.1724 0.1144 10908 +10910 2 332.0826 233.1289 30.9285 0.1144 10909 +10911 2 332.4681 232.0581 30.6634 0.1144 10910 +10912 2 332.9212 231.0159 30.3444 0.1144 10911 +10913 2 333.4051 229.9932 29.9404 0.1144 10912 +10914 2 333.897 228.9785 29.4694 0.1144 10913 +10915 2 334.3878 227.966 28.9629 0.1144 10914 +10916 2 334.8751 226.9513 28.4704 0.1144 10915 +10917 2 335.3842 225.9423 28.0403 0.1144 10916 +10918 2 335.9322 224.9482 27.6951 0.1144 10917 +10919 2 336.5007 223.9609 27.4387 0.1144 10918 +10920 2 337.075 222.9736 27.2642 0.1144 10919 +10921 2 337.7546 222.063 27.2176 0.1144 10920 +10922 2 338.1584 221.0563 27.3305 0.1144 10921 +10923 2 338.179 219.918 27.5465 0.1144 10922 +10924 2 338.1424 218.7808 27.8149 0.1144 10923 +10925 2 338.1069 217.6426 28.1014 0.1144 10924 +10926 2 338.0714 216.5043 28.3632 0.1144 10925 +10927 2 338.0463 215.3626 28.5267 0.1144 10926 +10928 2 337.9845 214.222 28.5216 0.1144 10927 +10929 2 337.6905 213.1306 28.2904 0.1144 10928 +10930 2 337.0979 212.1845 27.8085 0.1144 10929 +10931 2 336.1633 211.6148 27.2042 0.1144 10930 +10932 2 335.1314 211.195 26.5662 0.1144 10931 +10933 2 334.1018 211.4329 25.8575 0.1144 10932 +10934 2 333.0996 211.8974 25.1341 0.1144 10933 +10935 2 332.1787 211.4295 24.3036 0.1144 10934 +10936 2 331.3745 210.655 23.6847 0.1144 10935 +10937 2 330.6412 209.7924 23.2925 0.1144 10936 +10938 2 329.9044 208.9253 22.9975 0.1144 10937 +10939 2 306.5256 262.5926 25.7425 0.1144 10852 +10940 2 306.0326 261.5882 25.9387 0.1144 10939 +10941 2 305.8049 260.4694 26.0343 0.1144 10940 +10942 2 305.5407 259.3585 26.2135 0.1144 10941 +10943 2 305.4102 258.2248 26.3967 0.1144 10942 +10944 2 305.2787 257.09 26.4974 0.1144 10943 +10945 2 304.9607 255.9906 26.5305 0.1144 10944 +10946 2 303.9997 255.3808 26.5507 0.1144 10945 +10947 2 303.581 254.3181 26.5664 0.1144 10946 +10948 2 302.779 254.3158 26.4025 0.1144 10947 +10949 2 301.7197 254.3009 25.4035 0.1144 10948 +10950 2 300.8125 254.111 24.4014 0.1144 10949 +10951 2 300.6249 253.4212 22.8952 0.1144 10950 +10952 2 299.7486 252.9121 21.6385 0.1144 10951 +10953 2 298.7739 252.5334 20.504 0.1144 10952 +10954 2 297.7157 252.4316 19.4676 0.1144 10953 +10955 2 296.6369 252.3721 18.5453 0.1144 10954 +10956 2 295.5421 252.3698 17.7507 0.1144 10955 +10957 2 294.5811 252.9395 17.1541 0.1144 10956 +10958 2 293.9142 253.8479 16.7278 0.1144 10957 +10959 2 293.96 254.9747 16.2666 0.1144 10958 +10960 2 303.1039 253.6282 26.6066 0.1144 10947 +10961 2 302.4095 252.721 26.7066 0.1144 10960 +10962 2 302.0057 251.688 26.8462 0.1144 10961 +10963 2 302.024 250.5589 26.9989 0.1144 10962 +10964 2 301.9817 249.424 27.1023 0.1144 10963 +10965 2 301.42 248.4757 27.1741 0.1144 10964 +10966 2 300.7073 247.581 27.2527 0.1144 10965 +10967 2 300.2302 246.548 27.3039 0.1144 10966 +10968 2 299.8882 245.4578 27.3823 0.1144 10967 +10969 2 299.4431 244.4064 27.5061 0.1144 10968 +10970 2 298.7499 243.505 27.6924 0.1144 10969 +10971 2 298.4273 242.4216 27.8854 0.1144 10970 +10972 2 298.2946 241.2868 28.0428 0.1144 10971 +10973 2 298.115 240.1599 28.2397 0.1144 10972 +10974 2 298.338 239.0445 28.3945 0.1144 10973 +10975 2 298.1985 237.912 28.4962 0.1144 10974 +10976 2 297.6963 236.8869 28.5564 0.1144 10975 +10977 2 296.7547 236.2463 28.6726 0.1144 10976 +10978 2 297.0934 235.9054 29.5403 0.1144 10977 +10979 2 297.8393 235.3322 31.1234 0.1144 10978 +10980 2 298.7648 234.8277 32.0989 0.1144 10979 +10981 2 299.7783 234.4342 32.9535 0.1144 10980 +10982 2 300.6638 234.5921 34.389 0.1144 10981 +10983 2 301.3227 233.7798 35.5205 0.1144 10982 +10984 2 302.1338 233.1003 36.5823 0.1144 10983 +10985 2 303.1097 233.1449 37.9789 0.1144 10984 +10986 2 304.0763 232.9287 39.3526 0.1144 10985 +10987 2 304.5477 232.5844 41.6861 0.1144 10986 +10988 2 304.3543 232.5489 44.345 0.1144 10987 +10989 2 303.5021 232.7056 46.1387 0.1144 10988 +10990 2 302.5445 232.6736 47.6568 0.1144 10989 +10991 2 301.5607 232.4871 49.0028 0.1144 10990 +10992 2 300.7313 231.9632 50.3782 0.1144 10991 +10993 2 300.1387 231.1761 51.7796 0.1144 10992 +10994 2 299.5175 230.3227 52.8374 0.1144 10993 +10995 2 298.5508 229.8044 53.6312 0.1144 10994 +10996 2 297.472 229.5779 54.3802 0.1144 10995 +10997 2 296.3898 229.3377 55.0598 0.1144 10996 +10998 2 295.3877 228.8275 55.5853 0.1144 10997 +10999 2 294.3809 228.3149 56.0213 0.1144 10998 +11000 2 293.3719 227.8001 56.4082 0.1144 10999 +11001 2 292.3606 227.2842 56.7563 0.1144 11000 +11002 2 291.6308 227.1515 57.2863 0.1144 11001 +11003 2 290.5245 227.1538 57.8024 0.1144 11002 +11004 2 289.702 227.8242 58.0717 0.1144 11003 +11005 2 288.7136 228.331 58.0734 0.1144 11004 +11006 2 287.6027 228.1273 58.0588 0.1144 11005 +11007 2 286.4633 228.1822 58.1507 0.1144 11006 +11008 2 285.325 228.2589 58.3453 0.1144 11007 +11009 2 284.4316 227.91 59.176 0.1144 11008 +11010 2 283.4134 227.4158 59.4882 0.1144 11009 +11011 2 282.5177 226.7225 59.6982 0.1144 11010 +11012 2 281.5624 226.1791 59.9432 0.1144 11011 +11013 2 280.4379 226.0807 60.1807 0.1144 11012 +11014 2 279.2984 226.1276 60.3974 0.1144 11013 +11015 2 278.2586 226.4788 60.7054 0.1144 11014 +11016 2 277.2026 226.8449 61.1461 0.1144 11015 +11017 2 276.1422 226.5314 61.5415 0.1144 11016 +11018 2 275.1892 225.9171 61.8498 0.1144 11017 +11019 2 274.2683 225.2456 62.0763 0.1144 11018 +11020 2 273.3519 224.5638 62.2294 0.1144 11019 +11021 2 272.4367 223.8785 62.3188 0.1144 11020 +11022 2 271.5101 223.2081 62.3731 0.1144 11021 +11023 2 270.572 222.5526 62.4235 0.1144 11022 +11024 2 269.6602 221.8628 62.4887 0.1144 11023 +11025 2 268.8389 221.07 62.5778 0.1144 11024 +11026 2 268.0506 220.2417 62.6993 0.1144 11025 +11027 2 267.2178 219.4604 62.8841 0.1144 11026 +11028 2 266.3621 218.7099 63.1462 0.1144 11027 +11029 2 265.511 217.9572 63.4684 0.1144 11028 +11030 2 264.7456 217.1266 63.8968 0.1144 11029 +11031 2 264.0855 216.2252 64.4826 0.1144 11030 +11032 2 263.5662 215.2505 65.21 0.1144 11031 +11033 2 263.6623 214.182 66.08 0.1144 11032 +11034 2 263.787 213.1055 66.9808 0.1144 11033 +11035 2 264.304 212.1468 67.8247 0.1144 11034 +11036 2 265.0225 211.3128 68.5756 0.1144 11035 +11037 2 265.7867 210.5177 69.3241 0.1144 11036 +11038 2 266.5085 210.1048 71.2362 0.1144 11037 +11039 2 284.411 228.5655 58.5203 0.1144 11008 +11040 2 283.3059 228.8549 58.6256 0.1144 11039 +11041 2 282.1928 229.1135 58.7773 0.1144 11040 +11042 2 281.1128 229.4486 59.1231 0.1144 11041 +11043 2 280.0752 229.8502 59.7694 0.1144 11042 +11044 2 279.0651 230.2472 60.6488 0.1144 11043 +11045 2 278.0744 230.6373 61.6725 0.1144 11044 +11046 2 277.118 231.0308 62.8648 0.1144 11045 +11047 2 276.1776 231.4266 64.129 0.1144 11046 +11048 2 275.2372 231.9151 65.1854 0.1144 11047 +11049 2 274.9146 232.1874 65.4598 0.1144 11048 +11050 2 274.3346 233.0854 65.5096 0.1144 11049 +11051 2 274.0704 234.1825 65.135 0.1144 11050 +11052 2 273.8736 235.3036 64.8682 0.1144 11051 +11053 2 273.6848 236.4179 64.4336 0.1144 11052 +11054 2 273.4995 237.5184 63.8291 0.1144 11053 +11055 2 273.4171 238.5892 62.9126 0.1144 11054 +11056 2 273.3371 239.6383 61.8184 0.1144 11055 +11057 2 273.1174 240.6884 60.8572 0.1144 11056 +11058 2 272.868 241.7455 59.978 0.1144 11057 +11059 2 272.6449 242.8129 59.1377 0.1144 11058 +11060 2 272.5454 243.8882 58.2294 0.1144 11059 +11061 2 272.4916 244.9636 57.2863 0.1144 11060 +11062 2 272.439 246.0401 56.3478 0.1144 11061 +11063 2 272.3864 247.1212 55.4364 0.1144 11062 +11064 2 271.8075 248.0707 54.8262 0.1144 11063 +11065 2 271.1875 249.0179 54.432 0.1144 11064 +11066 2 270.5629 249.9743 54.2542 0.1144 11065 +11067 2 269.9291 250.9261 54.2536 0.1144 11066 +11068 2 269.2335 251.8299 54.4659 0.1144 11067 +11069 2 268.5426 252.729 54.8232 0.1144 11068 +11070 2 267.9534 253.682 55.3697 0.1144 11069 +11071 2 267.4203 254.548 56.6524 0.1144 11070 +11072 2 274.9696 231.8041 65.7524 0.1144 11048 +11073 2 273.9605 231.3832 66.4684 0.1144 11072 +11074 2 272.8978 230.993 66.8769 0.1144 11073 +11075 2 271.8224 230.6167 67.1138 0.1144 11074 +11076 2 270.7436 230.2392 67.2316 0.1144 11075 +11077 2 269.6637 229.8628 67.2843 0.1144 11076 +11078 2 268.5837 229.4864 67.3081 0.1144 11077 +11079 2 267.5027 229.11 67.3145 0.1144 11078 +11080 2 266.4227 228.7336 67.3168 0.1144 11079 +11081 2 265.3428 228.3573 67.3198 0.1144 11080 +11082 2 264.2617 227.9809 67.3238 0.1144 11081 +11083 2 263.1818 227.6034 67.3294 0.1144 11082 +11084 2 262.1018 227.227 67.3369 0.1144 11083 +11085 2 261.0196 226.8563 67.3467 0.1144 11084 +11086 2 259.9294 226.5097 67.3646 0.1144 11085 +11087 2 258.838 226.1677 67.3879 0.1144 11086 +11088 2 257.7466 225.8256 67.4131 0.1144 11087 +11089 2 256.6541 225.4835 67.4363 0.1144 11088 +11090 2 255.5627 225.1415 67.4526 0.1144 11089 +11091 2 254.4714 224.7994 67.4562 0.1144 11090 +11092 2 253.38 224.4574 67.4391 0.1144 11091 +11093 2 252.2886 224.1153 67.3938 0.1144 11092 +11094 2 251.1972 223.7733 67.3126 0.1144 11093 +11095 2 250.107 223.4312 67.1894 0.1144 11094 +11096 2 248.9824 223.5193 66.9463 0.1144 11095 +11097 2 247.9391 223.9586 66.5714 0.1144 11096 +11098 2 246.9072 224.4105 66.0946 0.1144 11097 +11099 2 245.8788 224.8612 65.5525 0.1144 11098 +11100 2 244.8538 225.3108 64.9788 0.1144 11099 +11101 2 243.8287 225.7592 64.3972 0.1144 11100 +11102 2 242.8083 226.2226 63.8425 0.1144 11101 +11103 2 241.9697 226.9776 63.3906 0.1144 11102 +11104 2 241.1255 227.7349 63.0204 0.1144 11103 +11105 2 240.2732 228.4877 62.7236 0.1144 11104 +11106 2 239.4278 229.2359 62.2616 0.1144 11105 +11107 2 292.2748 226.1768 57.2132 0.1144 11001 +11108 2 291.6594 225.3669 58.0115 0.1144 11107 +11109 2 291.0222 224.4334 58.4399 0.1144 11108 +11110 2 290.3838 223.5307 59.1556 0.1144 11109 +11111 2 289.6368 222.7379 59.9525 0.1144 11110 +11112 2 288.685 222.2781 60.7813 0.1144 11111 +11113 2 287.6599 222.476 61.7151 0.1144 11112 +11114 2 286.7436 222.9221 62.8253 0.1144 11113 +11115 2 285.7106 222.7826 63.7644 0.1144 11114 +11116 2 284.7016 222.3398 64.5056 0.1144 11115 +11117 2 283.8458 221.6866 65.2856 0.1144 11116 +11118 2 283.2269 220.8092 66.2161 0.1144 11117 +11119 2 282.6973 219.886 67.2465 0.1144 11118 +11120 2 282.1928 218.9502 68.2786 0.1144 11119 +11121 2 281.6997 218.0018 69.2737 0.1144 11120 +11122 2 281.2078 217.0443 70.2248 0.1144 11121 +11123 2 280.7479 216.0627 71.118 0.1144 11122 +11124 2 280.4516 215.0205 71.9754 0.1144 11123 +11125 2 280.2628 213.944 72.7964 0.1144 11124 +11126 2 279.8968 212.8961 73.4082 0.1144 11125 +11127 2 279.2653 211.9592 73.7218 0.1144 11126 +11128 2 278.4622 211.1618 74.0944 0.1144 11127 +11129 2 277.6968 210.4342 75.1626 0.1144 11128 +11130 2 293.0333 225.2925 57.8609 0.1144 11107 +11131 2 293.7746 224.4311 58.1823 0.1144 11130 +11132 2 294.6258 223.6714 58.3906 0.1144 11131 +11133 2 295.4838 222.9164 58.5211 0.1144 11132 +11134 2 296.32 222.1385 58.6519 0.1144 11133 +11135 2 297.154 221.3617 58.896 0.1144 11134 +11136 2 295.8132 236.3104 28.6241 0.1144 10977 +11137 2 294.6967 236.1136 28.5566 0.1144 11136 +11138 2 293.9062 235.4466 28.5317 0.1144 11137 +11139 2 293.484 234.3907 28.5746 0.1144 11138 +11140 2 292.8583 233.4401 28.658 0.1144 11139 +11141 2 292.1833 232.5214 28.7608 0.1144 11140 +11142 2 291.529 231.5914 28.8935 0.1144 11141 +11143 2 290.6595 230.8775 29.0797 0.1144 11142 +11144 2 289.8027 230.1682 29.3241 0.1144 11143 +11145 2 289.2947 229.1661 29.5725 0.1144 11144 +11146 2 288.6472 228.2955 29.7965 0.1144 11145 +11147 2 287.6233 227.8287 29.9583 0.1144 11146 +11148 2 286.667 227.2476 30.0521 0.1144 11147 +11149 2 286.4507 226.234 30.0454 0.1144 11148 +11150 2 287.0262 225.2902 29.9737 0.1144 11149 +11151 2 287.5364 224.2743 29.8998 0.1144 11150 +11152 2 287.7652 223.1589 29.8416 0.1144 11151 +11153 2 288.1782 222.0973 29.8435 0.1144 11152 +11154 2 288.8211 221.1558 29.8701 0.1144 11153 +11155 2 289.5395 220.2646 29.8396 0.1144 11154 +11156 2 290.4547 219.5874 29.7746 0.1144 11155 +11157 2 291.2384 218.7591 29.7021 0.1144 11156 +11158 2 292.0094 217.9148 29.6114 0.1144 11157 +11159 2 292.983 217.3257 29.4764 0.1144 11158 +11160 2 293.9382 216.6976 29.3633 0.1144 11159 +11161 2 294.9346 216.1382 29.2874 0.1144 11160 +11162 2 295.8967 215.5182 29.2407 0.1144 11161 +11163 2 296.8932 214.9565 29.2194 0.1144 11162 +11164 2 297.9182 214.4508 29.2233 0.1144 11163 +11165 2 299.0382 214.2277 29.2387 0.1144 11164 +11166 2 300.1764 214.3124 29.2116 0.1144 11165 +11167 2 301.301 214.1202 29.3023 0.1144 11166 +11168 2 302.3764 213.7392 29.4613 0.1144 11167 +11169 2 303.5101 213.8788 29.601 0.1144 11168 +11170 2 304.6449 214.0195 29.7265 0.1144 11169 +11171 2 305.7786 214.1602 29.8421 0.1144 11170 +11172 2 306.9135 214.3009 29.9482 0.1144 11171 +11173 2 308.0483 214.4417 30.0367 0.1144 11172 +11174 2 307.8332 213.2119 30.3103 0.1144 11173 +11175 2 307.6525 212.085 30.5222 0.1144 11174 +11176 2 307.3997 210.973 30.6978 0.1144 11175 +11177 2 307.0576 209.884 30.8358 0.1144 11176 +11178 2 306.5691 208.8578 30.9448 0.1144 11177 +11179 2 305.9456 207.8991 31.0456 0.1144 11178 +11180 2 305.3816 206.9096 31.1517 0.1144 11179 +11181 2 305.0167 205.8331 31.2449 0.1144 11180 +11182 2 304.8588 204.7039 31.3138 0.1144 11181 +11183 2 304.9481 203.5737 31.3634 0.1144 11182 +11184 2 305.2775 202.4823 31.3956 0.1144 11183 +11185 2 305.6871 201.4138 31.3986 0.1144 11184 +11186 2 306.0108 200.319 31.3813 0.1144 11185 +11187 2 306.2991 199.2127 31.3922 0.1144 11186 +11188 2 306.6652 198.1305 31.4779 0.1144 11187 +11189 2 307.4477 197.4304 31.7106 0.1144 11188 +11190 2 308.5036 197.7301 32.0365 0.1144 11189 +11191 2 309.587 198.0699 32.361 0.1144 11190 +11192 2 310.5708 198.6327 32.6855 0.1144 11191 +11193 2 311.2538 199.533 32.9546 0.1144 11192 +11194 2 312.1164 200.2732 33.1601 0.1144 11193 +11195 2 313.2123 200.5581 33.315 0.1144 11194 +11196 2 314.3415 200.4185 33.4636 0.1144 11195 +11197 2 315.4614 200.2046 33.689 0.1144 11196 +11198 2 316.499 199.7401 33.9618 0.1144 11197 +11199 2 317.1065 198.7746 34.1029 0.1144 11198 +11200 2 315.9431 198.0287 34.1737 0.1144 11199 +11201 2 315.1102 197.2496 34.1499 0.1144 11200 +11202 2 314.2225 196.53 34.1144 0.1144 11201 +11203 2 313.2444 195.9397 34.06 0.1144 11202 +11204 2 312.4744 195.1115 34.0267 0.1144 11203 +11205 2 311.6771 194.2924 34.0052 0.1144 11204 +11206 2 310.7321 193.654 33.9522 0.1144 11205 +11207 2 310.2253 192.732 33.094 0.1144 11206 +11208 2 317.2278 198.6819 34.2026 0.1144 11199 +11209 2 318.08 197.9177 34.2342 0.1144 11208 +11210 2 318.9644 197.2039 34.2552 0.1144 11209 +11211 2 320.0546 196.8744 34.3291 0.1144 11210 +11212 2 321.1883 196.8092 34.571 0.1144 11211 +11213 2 322.2019 196.8561 35.8103 0.1144 11212 +11214 2 323.0095 196.1331 36.5907 0.1144 11213 +11215 2 324.0094 195.6263 37.1487 0.1144 11214 +11216 2 325.0676 195.227 37.5754 0.1144 11215 +11217 2 326.1315 194.8266 37.8742 0.1144 11216 +11218 2 327.2 194.4239 38.0554 0.1144 11217 +11219 2 328.2685 194.019 38.1783 0.1144 11218 +11220 2 329.3382 193.6163 38.3076 0.1144 11219 +11221 2 330.4078 193.2136 38.4412 0.1144 11220 +11222 2 331.4763 192.8109 38.5798 0.1144 11221 +11223 2 332.5459 192.4059 38.7251 0.1144 11222 +11224 2 333.6144 192.0032 38.8802 0.1144 11223 +11225 2 334.6829 191.6006 39.0496 0.1144 11224 +11226 2 335.7514 191.199 39.2386 0.1144 11225 +11227 2 336.8176 190.7952 39.4503 0.1144 11226 +11228 2 337.885 190.3925 39.685 0.1144 11227 +11229 2 339.0004 190.1808 40.014 0.1144 11228 +11230 2 339.0267 188.9247 40.6137 0.1144 11229 +11231 2 339.0965 187.8002 41.0808 0.1144 11230 +11232 2 339.1983 186.6733 41.4865 0.1144 11231 +11233 2 339.0015 185.6048 41.9028 0.1144 11232 +11234 2 338.4009 184.6576 42.4186 0.1144 11233 +11235 2 337.9445 183.6578 43.0041 0.1144 11234 +11236 2 338.0863 182.5916 43.5434 0.1144 11235 +11237 2 338.441 181.5196 43.9874 0.1144 11236 +11238 2 338.7373 180.4237 44.3044 0.1144 11237 +11239 2 339.013 179.3163 44.4816 0.1144 11238 +11240 2 339.4614 178.273 44.5329 0.1144 11239 +11241 2 340.2393 177.4596 44.4662 0.1144 11240 +11242 2 341.1362 176.7526 44.3215 0.1144 11241 +11243 2 341.9759 175.9827 44.1501 0.1144 11242 +11244 2 342.7332 175.1281 44.0082 0.1144 11243 +11245 2 343.5123 174.293 43.9172 0.1144 11244 +11246 2 344.312 173.4739 43.8682 0.1144 11245 +11247 2 345.1379 172.6834 43.8253 0.1144 11246 +11248 2 345.9936 171.926 43.7402 0.1144 11247 +11249 2 346.7613 171.0829 43.5991 0.1144 11248 +11250 2 347.3779 170.1254 43.4157 0.1144 11249 +11251 2 347.9533 169.1415 43.2034 0.1144 11250 +11252 2 348.5288 168.1566 42.9758 0.1144 11251 +11253 2 349.1396 167.1945 42.7543 0.1144 11252 +11254 2 349.8043 166.2667 42.5541 0.1144 11253 +11255 2 350.4747 165.3435 42.3601 0.1144 11254 +11256 2 351.1336 164.4111 42.1602 0.1144 11255 +11257 2 351.788 163.4765 41.956 0.1144 11256 +11258 2 352.487 162.575 41.7662 0.1144 11257 +11259 2 353.2569 161.733 41.6122 0.1144 11258 +11260 2 354.0646 160.9242 41.491 0.1144 11259 +11261 2 354.8974 160.1406 41.3907 0.1144 11260 +11262 2 355.7394 159.3672 41.302 0.1144 11261 +11263 2 356.5837 158.5962 41.216 0.1144 11262 +11264 2 357.4279 157.8251 41.1242 0.1144 11263 +11265 2 358.2711 157.0529 41.022 0.1144 11264 +11266 2 359.1142 156.2818 40.9094 0.1144 11265 +11267 2 359.923 155.4753 40.7756 0.1144 11266 +11268 2 360.6689 154.6105 40.6039 0.1144 11267 +11269 2 361.4365 153.7673 40.4118 0.1144 11268 +11270 2 362.0577 152.8155 40.2206 0.1144 11269 +11271 2 362.545 151.7848 40.0221 0.1144 11270 +11272 2 363.2269 150.8822 39.7692 0.1144 11271 +11273 2 363.9522 150.0024 39.5139 0.1144 11272 +11274 2 364.9085 149.4133 39.2059 0.1144 11273 +11275 2 366.0011 149.5883 38.7598 0.1144 11274 +11276 2 367.0696 149.9075 38.1872 0.1144 11275 +11277 2 368.0969 149.7485 37.0205 0.1144 11276 +11278 2 338.6583 190.9187 38.388 0.1144 11229 +11279 2 338.3792 191.914 37.2999 0.1144 11278 +11280 2 338.5748 193.0214 36.8141 0.1144 11279 +11281 2 338.91 194.0979 36.346 0.1144 11280 +11282 2 339.2223 195.1847 35.9251 0.1144 11281 +11283 2 339.4992 196.2852 35.5928 0.1144 11282 +11284 2 339.6056 197.4166 35.3542 0.1144 11283 +11285 2 339.5072 198.5538 35.1915 0.1144 11284 +11286 2 339.3127 199.6795 35.065 0.1144 11285 +11287 2 339.0816 200.7983 34.9465 0.1144 11286 +11288 2 338.6503 201.7147 34.7206 0.1144 11287 +11289 2 337.9159 201.0706 34.2966 0.1144 11288 +11290 2 337.0384 200.4162 34.0631 0.1144 11289 +11291 2 335.9768 199.9964 33.9688 0.1144 11290 +11292 2 334.9449 199.7092 33.094 0.1144 11291 +11293 2 309.2049 214.3101 29.9477 0.1144 11173 +11294 2 310.3375 214.1808 30.1784 0.1144 11293 +11295 2 311.4597 213.9852 30.3173 0.1144 11294 +11296 2 312.5271 213.5974 30.4763 0.1144 11295 +11297 2 313.5338 213.0597 30.6575 0.1144 11296 +11298 2 314.5359 212.5163 30.8829 0.1144 11297 +11299 2 315.5552 212.0095 31.1651 0.1144 11298 +11300 2 316.586 211.5325 31.5017 0.1144 11299 +11301 2 317.619 211.0669 31.8825 0.1144 11300 +11302 2 318.6509 210.6024 32.2935 0.1144 11301 +11303 2 319.6862 210.1471 32.7194 0.1144 11302 +11304 2 320.7398 209.7421 33.1531 0.1144 11303 +11305 2 321.8186 209.4069 33.5919 0.1144 11304 +11306 2 322.9066 209.1003 34.0225 0.1144 11305 +11307 2 323.9911 208.7708 34.3974 0.1144 11306 +11308 2 325.0893 208.4757 34.659 0.1144 11307 +11309 2 326.2093 208.2503 34.8166 0.1144 11308 +11310 2 327.2252 207.7996 34.918 0.1144 11309 +11311 2 327.7972 206.8844 34.9933 0.1144 11310 +11312 2 327.7114 205.7884 35.0521 0.1144 11311 +11313 2 327.3327 204.7096 35.1305 0.1144 11312 +11314 2 327.0913 203.6011 35.3217 0.1144 11313 +11315 2 326.9872 202.4708 35.6563 0.1144 11314 +11316 2 326.9712 201.3326 35.9038 0.1144 11315 +11317 2 327.0902 200.2332 35.3377 0.1144 11316 +11318 2 332.0048 327.5226 24.5742 0.1144 10769 +11319 2 332.8651 326.7722 24.4199 0.1144 11318 +11320 2 333.6625 325.9542 24.2526 0.1144 11319 +11321 2 332.7679 325.2941 23.8267 0.1144 11320 +11322 2 332.062 324.4247 23.4966 0.1144 11321 +11323 2 331.7222 323.3642 23.1655 0.1144 11322 +11324 2 331.6696 322.2305 22.8208 0.1144 11323 +11325 2 331.6959 321.0979 22.4349 0.1144 11324 +11326 2 331.776 319.9711 22.0098 0.1144 11325 +11327 2 331.9877 318.8637 21.6051 0.1144 11326 +11328 2 332.3148 317.7769 21.2697 0.1144 11327 +11329 2 332.6535 316.6878 21.0305 0.1144 11328 +11330 2 333.0321 315.6124 20.8641 0.1144 11329 +11331 2 333.6282 314.6583 20.7196 0.1144 11330 +11332 2 334.4713 313.8953 20.5493 0.1144 11331 +11333 2 335.3361 313.1551 20.3342 0.1144 11332 +11334 2 336.1976 312.4161 20.0285 0.1144 11333 +11335 2 337.1517 311.8189 19.5918 0.1144 11334 +11336 2 338.1756 311.3476 19.1163 0.1144 11335 +11337 2 339.2326 310.9472 18.7048 0.1144 11336 +11338 2 340.3034 310.5674 18.3739 0.1144 11337 +11339 2 341.3765 310.1853 18.1194 0.1144 11338 +11340 2 342.4495 309.7963 17.947 0.1144 11339 +11341 2 343.5306 309.4223 17.8766 0.1144 11340 +11342 2 344.6506 309.2381 17.905 0.1144 11341 +11343 2 345.7934 309.2129 17.9786 0.1144 11342 +11344 2 346.9054 308.9921 18.0349 0.1144 11343 +11345 2 347.9648 308.5665 18.0413 0.1144 11344 +11346 2 348.9978 308.0746 17.9948 0.1144 11345 +11347 2 349.961 307.4637 17.9087 0.1144 11346 +11348 2 350.8396 306.735 17.8006 0.1144 11347 +11349 2 351.7239 306.012 17.6715 0.1144 11348 +11350 2 352.6529 305.3485 17.5116 0.1144 11349 +11351 2 353.5772 304.6804 17.3165 0.1144 11350 +11352 2 354.4318 303.9276 17.0859 0.1144 11351 +11353 2 355.2314 303.1165 16.8242 0.1144 11352 +11354 2 356.0174 302.294 16.5388 0.1144 11353 +11355 2 356.92 301.611 16.2529 0.1144 11354 +11356 2 357.8981 301.0287 15.9792 0.1144 11355 +11357 2 358.7561 300.292 15.6762 0.1144 11356 +11358 2 359.6233 299.5598 15.3443 0.1144 11357 +11359 2 360.6048 298.9958 15.0151 0.1144 11358 +11360 2 361.6058 298.4593 14.6814 0.1144 11359 +11361 2 362.5919 297.8965 14.3369 0.1144 11360 +11362 2 363.5312 297.2627 13.975 0.1144 11361 +11363 2 364.1855 296.3566 13.5886 0.1144 11362 +11364 2 364.4372 295.263 13.2119 0.1144 11363 +11365 2 364.7427 294.1704 12.874 0.1144 11364 +11366 2 364.8708 293.0436 12.5685 0.1144 11365 +11367 2 364.1432 292.2474 12.257 0.1144 11366 +11368 2 363.3733 291.4237 11.7869 0.1144 11367 +11369 2 363.1365 290.3163 11.4035 0.1144 11368 +11370 2 362.9134 289.2021 11.0723 0.1144 11369 +11371 2 362.6526 288.0947 10.7853 0.1144 11370 +11372 2 362.3197 287.0033 10.5619 0.1144 11371 +11373 2 361.9856 285.9119 10.3967 0.1144 11372 +11374 2 361.7362 284.7977 10.2426 0.1144 11373 +11375 2 361.5029 283.6788 10.073 0.1144 11374 +11376 2 360.6208 282.989 9.5357 0.1144 11375 +11377 2 334.024 325.7368 24.6404 0.1144 11320 +11378 2 335.1234 325.4909 25.0866 0.1144 11377 +11379 2 336.2628 325.4314 25.2524 0.1144 11378 +11380 2 337.3828 325.6293 25.5386 0.1144 11379 +11381 2 338.2362 326.3649 25.9656 0.1144 11380 +11382 2 338.1618 326.8911 26.2387 0.1144 11381 +11383 2 337.7717 327.9162 26.8328 0.1144 11382 +11384 2 337.1803 328.8542 27.5148 0.1144 11383 +11385 2 336.662 329.8152 28.3231 0.1144 11384 +11386 2 336.8279 330.7579 29.2331 0.1144 11385 +11387 2 336.8188 331.7131 30.2896 0.1144 11386 +11388 2 336.4378 332.6718 31.4986 0.1144 11387 +11389 2 336.042 333.5961 32.8294 0.1144 11388 +11390 2 335.2275 334.2173 33.9982 0.1144 11389 +11391 2 334.2093 334.5708 34.9073 0.1144 11390 +11392 2 333.1694 334.9392 35.6479 0.1144 11391 +11393 2 332.1249 335.327 36.2779 0.1144 11392 +11394 2 331.1033 335.7629 36.9435 0.1144 11393 +11395 2 330.6766 336.5545 38.1402 0.1144 11394 +11396 2 330.8437 337.5189 39.1891 0.1144 11395 +11397 2 330.2522 338.3838 40.1652 0.1144 11396 +11398 2 329.5498 339.1868 41.0659 0.1144 11397 +11399 2 328.9561 340.1066 41.86 0.1144 11398 +11400 2 328.288 340.9841 42.6034 0.1144 11399 +11401 2 327.9322 341.9485 43.507 0.1144 11400 +11402 2 328.2571 342.9289 44.4811 0.1144 11401 +11403 2 328.6437 343.9127 45.4922 0.1144 11402 +11404 2 328.4355 344.9126 46.426 0.1144 11403 +11405 2 328.2079 345.9044 47.6176 0.1144 11404 +11406 2 329.1219 346.2007 48.68 0.1144 11405 +11407 2 330.1504 346.4764 49.6966 0.1144 11406 +11408 2 330.9558 346.9946 51.1532 0.1144 11407 +11409 2 331.1422 346.6743 53.3649 0.1144 11408 +11410 2 330.4135 346.1984 54.9371 0.1144 11409 +11411 2 329.8312 346.5485 56.6292 0.1144 11410 +11412 2 329.9044 347.506 58.0698 0.1144 11411 +11413 2 329.9548 348.5185 59.3608 0.1144 11412 +11414 2 330.2225 349.5229 60.515 0.1144 11413 +11415 2 330.6046 350.5079 61.5852 0.1144 11414 +11416 2 330.4501 351.5592 62.5716 0.1144 11415 +11417 2 330.2293 352.6506 63.2064 0.1144 11416 +11418 2 330.036 353.7648 63.6345 0.1144 11417 +11419 2 329.5784 354.8036 63.973 0.1144 11418 +11420 2 329.0624 355.8115 64.3552 0.1144 11419 +11421 2 328.6312 356.8308 65.0661 0.1144 11420 +11422 2 338.8322 326.1361 25.1161 0.1144 11381 +11423 2 339.8309 325.7529 24.1423 0.1144 11422 +11424 2 340.1535 324.7599 23.6133 0.1144 11423 +11425 2 340.0128 323.6376 23.2123 0.1144 11424 +11426 2 339.871 322.5142 22.8147 0.1144 11425 +11427 2 339.8023 321.3851 22.4353 0.1144 11426 +11428 2 340.2279 320.3509 21.84 0.1144 11427 +11429 2 342.0789 352.4824 31.4779 0.1144 10744 +11430 2 342.8374 351.6347 31.3491 0.1144 11429 +11431 2 343.796 351.0341 31.2964 0.1144 11430 +11432 2 344.781 350.4552 31.2542 0.1144 11431 +11433 2 345.6047 349.675 31.1951 0.1144 11432 +11434 2 346.2385 348.7301 31.0447 0.1144 11433 +11435 2 347.156 348.1146 30.9532 0.1144 11434 +11436 2 348.2187 347.6948 30.8538 0.1144 11435 +11437 2 348.3629 346.5119 30.4637 0.1144 11436 +11438 2 349.0127 345.6333 29.9748 0.1144 11437 +11439 2 349.7769 344.8851 29.318 0.1144 11438 +11440 2 350.2276 343.9058 28.3864 0.1144 11439 +11441 2 350.803 342.9895 27.5094 0.1144 11440 +11442 2 351.5958 342.2756 26.6495 0.1144 11441 +11443 2 352.2696 341.5252 25.5596 0.1144 11442 +11444 2 352.6197 340.4784 24.8412 0.1144 11443 +11445 2 352.1861 339.4854 24.1052 0.1144 11444 +11446 2 351.6976 338.4993 23.3382 0.1144 11445 +11447 2 350.5685 338.5027 22.4069 0.1144 11446 +11448 2 349.5343 338.2602 21.743 0.1144 11447 +11449 2 348.6409 337.5887 21.1375 0.1144 11448 +11450 2 347.7726 336.8886 20.5285 0.1144 11449 +11451 2 346.8791 336.4058 19.6437 0.1144 11450 +11452 2 345.8735 336.0912 18.7267 0.1144 11451 +11453 2 344.9778 335.4357 18.1373 0.1144 11452 +11454 2 344.1381 334.6932 17.5729 0.1144 11453 +11455 2 343.1348 334.2665 16.8791 0.1144 11454 +11456 2 342.0491 334.4312 16.2261 0.1144 11455 +11457 2 341.0504 334.9369 15.6958 0.1144 11456 +11458 2 340.0288 335.4025 15.1581 0.1144 11457 +11459 2 338.9443 335.669 14.5722 0.1144 11458 +11460 2 337.8243 335.7411 14.0411 0.1144 11459 +11461 2 336.765 335.3968 13.4914 0.1144 11460 +11462 2 335.7091 335.0387 12.8708 0.1144 11461 +11463 2 335.1073 334.3409 11.2182 0.1144 11462 +11464 2 351.7857 337.7328 22.4912 0.1144 11446 +11465 2 351.9116 336.6334 21.8103 0.1144 11464 +11466 2 352.0397 335.5077 21.425 0.1144 11465 +11467 2 352.0202 334.3981 20.9618 0.1144 11466 +11468 2 351.5684 333.3868 20.4691 0.1144 11467 +11469 2 350.7824 332.5963 20.0568 0.1144 11468 +11470 2 350.7172 331.8904 19.7394 0.1144 11469 +11471 2 351.2206 330.9009 19.7239 0.1144 11470 +11472 2 350.6589 330.068 19.9154 0.1144 11471 +11473 2 349.7105 329.4365 20.1616 0.1144 11472 +11474 2 348.7255 328.8622 20.392 0.1144 11473 +11475 2 347.633 328.5339 20.57 0.1144 11474 +11476 2 346.5405 328.1976 20.679 0.1144 11475 +11477 2 346.0932 327.1554 20.7539 0.1144 11476 +11478 2 348.7884 347.3664 32.2767 0.1144 11436 +11479 2 349.6373 346.6469 32.9162 0.1144 11478 +11480 2 350.3511 345.7614 33.1834 0.1144 11479 +11481 2 351.0295 344.8462 33.4572 0.1144 11480 +11482 2 351.9013 344.1186 33.7798 0.1144 11481 +11483 2 352.9926 343.8052 34.1004 0.1144 11482 +11484 2 354.0886 343.5306 34.5072 0.1144 11483 +11485 2 354.9901 342.9129 35.3377 0.1144 11484 +11486 2 366.9071 457.6812 44.2814 0.1144 10304 +11487 2 365.7631 457.6812 44.3299 0.1144 11486 +11488 2 364.6203 457.6812 44.401 0.1144 11487 +11489 2 363.4785 457.6927 44.5701 0.1144 11488 +11490 2 362.37 457.8757 44.8658 0.1144 11489 +11491 2 361.2786 458.1731 45.2194 0.1144 11490 +11492 2 360.1712 458.4065 45.6257 0.1144 11491 +11493 2 359.0581 458.4603 45.9883 0.1144 11492 +11494 2 357.929 458.3791 46.3369 0.1144 11493 +11495 2 356.8399 458.6136 46.6819 0.1144 11494 +11496 2 355.7485 458.9042 46.9848 0.1144 11495 +11497 2 354.6308 458.8412 47.2528 0.1144 11496 +11498 2 353.5864 458.418 47.525 0.1144 11497 +11499 2 352.7478 457.6732 47.784 0.1144 11498 +11500 2 352.2902 456.6539 47.9755 0.1144 11499 +11501 2 352.0957 455.5305 48.0981 0.1144 11500 +11502 2 351.9676 454.3945 48.1729 0.1144 11501 +11503 2 351.7628 453.2711 48.2101 0.1144 11502 +11504 2 351.2949 452.2392 48.2188 0.1144 11503 +11505 2 350.6303 451.3114 48.2132 0.1144 11504 +11506 2 350.0789 450.3162 48.204 0.1144 11505 +11507 2 349.6224 449.2682 48.1953 0.1144 11506 +11508 2 349.0664 448.2707 48.1698 0.1144 11507 +11509 2 348.4635 447.2983 48.1242 0.1144 11508 +11510 2 347.7794 446.3831 48.0931 0.1144 11509 +11511 2 346.9249 445.6326 48.1043 0.1144 11510 +11512 2 346.2476 444.7277 48.1816 0.1144 11511 +11513 2 345.8781 443.6546 48.347 0.1144 11512 +11514 2 345.4834 442.5861 48.5666 0.1144 11513 +11515 2 345.2283 441.4822 48.8863 0.1144 11514 +11516 2 344.94 440.3874 49.2786 0.1144 11515 +11517 2 344.1678 439.5969 49.6863 0.1144 11516 +11518 2 343.2835 438.8945 50.1315 0.1144 11517 +11519 2 342.5536 438.0456 50.6573 0.1144 11518 +11520 2 341.7002 437.318 51.1795 0.1144 11519 +11521 2 340.8342 436.6156 51.8006 0.1144 11520 +11522 2 340.2393 435.6832 52.4854 0.1144 11521 +11523 2 339.9854 434.6022 53.1437 0.1144 11522 +11524 2 339.4385 433.6206 53.6637 0.1144 11523 +11525 2 338.8185 432.6711 54.0246 0.1144 11524 +11526 2 338.4066 431.6072 54.2595 0.1144 11525 +11527 2 337.885 430.5913 54.39 0.1144 11526 +11528 2 337.3496 429.58 54.453 0.1144 11527 +11529 2 336.7753 428.5904 54.486 0.1144 11528 +11530 2 336.0592 427.6993 54.5168 0.1144 11529 +11531 2 335.1394 427.0186 54.56 0.1144 11530 +11532 2 334.1086 426.5244 54.621 0.1144 11531 +11533 2 333.0447 426.1034 54.7075 0.1144 11532 +11534 2 332.0826 425.4868 54.8237 0.1144 11533 +11535 2 330.9592 425.282 54.9716 0.1144 11534 +11536 2 330.3094 425.0177 53.9596 0.1144 11535 +11537 2 329.5967 424.1952 53.496 0.1144 11536 +11538 2 329.0773 423.1816 53.237 0.1144 11537 +11539 2 328.519 422.1943 52.8797 0.1144 11538 +11540 2 327.9882 421.1968 52.4454 0.1144 11539 +11541 2 327.5341 420.1626 52.0209 0.1144 11540 +11542 2 326.8991 419.2588 51.613 0.1144 11541 +11543 2 326.1704 418.4123 51.0908 0.1144 11542 +11544 2 325.8215 417.3701 50.4795 0.1144 11543 +11545 2 325.3639 416.3634 49.8358 0.1144 11544 +11546 2 324.7999 415.4207 49.0571 0.1144 11545 +11547 2 323.8447 414.9563 48.2283 0.1144 11546 +11548 2 322.7453 414.8716 47.5269 0.1144 11547 +11549 2 321.7145 414.4712 46.8902 0.1144 11548 +11550 2 320.6117 414.3088 46.3243 0.1144 11549 +11551 2 319.5169 414.533 45.8265 0.1144 11550 +11552 2 318.3981 414.6691 45.3522 0.1144 11551 +11553 2 317.452 414.0754 44.9422 0.1144 11552 +11554 2 316.3789 413.731 44.5141 0.1144 11553 +11555 2 315.283 414.0102 44.1062 0.1144 11554 +11556 2 314.1641 413.9484 43.633 0.1144 11555 +11557 2 313.186 413.4038 43.083 0.1144 11556 +11558 2 312.1381 413.0378 42.4074 0.1144 11557 +11559 2 311.1119 412.6351 41.69 0.1144 11558 +11560 2 310.1498 412.0688 41.0903 0.1144 11559 +11561 2 309.126 411.7656 40.6949 0.1144 11560 +11562 2 308.0094 411.967 40.3572 0.1144 11561 +11563 2 306.8906 412.1088 40.0456 0.1144 11562 +11564 2 305.7615 412.0173 39.7141 0.1144 11563 +11565 2 304.6472 412.0139 39.3364 0.1144 11564 +11566 2 303.5387 412.2415 38.9228 0.1144 11565 +11567 2 302.4324 412.4681 38.4768 0.1144 11566 +11568 2 301.3914 412.8238 37.8577 0.1144 11567 +11569 2 300.3858 413.1316 36.8553 0.1144 11568 +11570 2 299.2956 413.3364 36.1785 0.1144 11569 +11571 2 298.1962 413.4588 35.4637 0.1144 11570 +11572 2 297.1025 413.6006 34.746 0.1144 11571 +11573 2 296.0226 413.8226 34.0466 0.1144 11572 +11574 2 294.9221 413.8214 33.3194 0.1144 11573 +11575 2 293.8341 413.6555 32.5508 0.1144 11574 +11576 2 292.7713 413.4027 31.7562 0.1144 11575 +11577 2 291.7818 412.944 30.9548 0.1144 11576 +11578 2 290.8631 412.3422 30.1644 0.1144 11577 +11579 2 289.9239 411.792 29.3642 0.1144 11578 +11580 2 288.8806 411.5643 28.4945 0.1144 11579 +11581 2 287.8041 411.6833 27.6159 0.1144 11580 +11582 2 286.715 411.8171 26.8501 0.1144 11581 +11583 2 285.6053 411.8469 26.1706 0.1144 11582 +11584 2 284.4911 411.8732 25.5384 0.1144 11583 +11585 2 283.3757 411.9121 24.9227 0.1144 11584 +11586 2 282.3175 411.7302 24.2976 0.1144 11585 +11587 2 281.6139 410.9557 23.6392 0.1144 11586 +11588 2 280.9492 410.1629 22.9995 0.1144 11587 +11589 2 279.8888 409.862 22.4425 0.1144 11588 +11590 2 278.7665 409.7511 21.9847 0.1144 11589 +11591 2 277.6385 409.7042 21.5627 0.1144 11590 +11592 2 276.522 409.8323 21.1036 0.1144 11591 +11593 2 275.4901 410.2441 20.6009 0.1144 11592 +11594 2 274.6984 411.022 20.176 0.1144 11593 +11595 2 273.8953 411.8137 19.8305 0.1144 11594 +11596 2 272.9721 412.4726 19.4987 0.1144 11595 +11597 2 272.0054 413.0652 19.1299 0.1144 11596 +11598 2 270.9804 413.5274 18.6643 0.1144 11597 +11599 2 270.0103 414.0708 18.0742 0.1144 11598 +11600 2 269.2782 414.8888 17.4121 0.1144 11599 +11601 2 268.5837 415.7559 16.7456 0.1144 11600 +11602 2 267.736 416.4721 16.1314 0.1144 11601 +11603 2 266.79 417.0727 15.5771 0.1144 11602 +11604 2 265.7237 417.3506 14.9828 0.1144 11603 +11605 2 264.6278 417.2122 14.3691 0.1144 11604 +11606 2 263.6085 416.7603 13.8006 0.1144 11605 +11607 2 262.7539 416.0408 13.2731 0.1144 11606 +11608 2 262.2334 415.0558 12.7847 0.1144 11607 +11609 2 261.6786 414.0685 12.3901 0.1144 11608 +11610 2 260.9864 413.167 12.1243 0.1144 11609 +11611 2 260.2749 412.2724 11.9688 0.1144 11610 +11612 2 259.9042 411.2028 11.8519 0.1144 11611 +11613 2 259.3151 410.2292 11.826 0.1144 11612 +11614 2 258.592 409.3438 11.8796 0.1144 11613 +11615 2 257.7638 408.5556 11.9539 0.1144 11614 +11616 2 256.8909 409.1241 12.2464 0.1144 11615 +11617 2 256.0249 409.8403 12.7485 0.1144 11616 +11618 2 255.2401 410.4889 14.023 0.1144 11617 +11619 2 330.9237 424.9651 55.0861 0.1144 11535 +11620 2 331.4946 424.1483 55.4772 0.1144 11619 +11621 2 332.5585 423.8566 55.9488 0.1144 11620 +11622 2 333.6602 423.6072 56.3872 0.1144 11621 +11623 2 333.3788 422.8682 57.0419 0.1144 11622 +11624 2 332.761 421.9198 57.4244 0.1144 11623 +11625 2 332.1432 420.9691 57.7858 0.1144 11624 +11626 2 331.4351 420.0825 58.121 0.1144 11625 +11627 2 330.5176 419.5277 58.4175 0.1144 11626 +11628 2 329.3896 419.4922 58.6813 0.1144 11627 +11629 2 328.3086 419.7919 58.956 0.1144 11628 +11630 2 327.4975 420.515 59.3432 0.1144 11629 +11631 2 326.6303 420.738 59.7761 0.1144 11630 +11632 2 325.7792 420.0665 60.1546 0.1144 11631 +11633 2 325.055 419.1959 60.5399 0.1144 11632 +11634 2 324.3595 418.3082 60.9857 0.1144 11633 +11635 2 323.5324 417.5589 61.4281 0.1144 11634 +11636 2 322.5405 417.0223 61.8187 0.1144 11635 +11637 2 321.6688 416.3279 62.2009 0.1144 11636 +11638 2 321.1322 415.3521 62.5918 0.1144 11637 +11639 2 320.6426 414.3362 63.0356 0.1144 11638 +11640 2 319.7926 413.6178 63.3956 0.1144 11639 +11641 2 318.8328 413.0046 63.6544 0.1144 11640 +11642 2 317.8696 412.3926 63.8352 0.1144 11641 +11643 2 316.9486 411.7164 63.9517 0.1144 11642 +11644 2 316.1581 410.8962 64.0234 0.1144 11643 +11645 2 315.4683 409.9844 64.0718 0.1144 11644 +11646 2 314.8231 409.0395 64.1242 0.1144 11645 +11647 2 314.0989 408.1563 64.195 0.1144 11646 +11648 2 313.337 407.304 64.2891 0.1144 11647 +11649 2 312.6117 406.422 64.4479 0.1144 11648 +11650 2 311.9654 405.4828 64.65 0.1144 11649 +11651 2 311.2035 404.6408 64.9177 0.1144 11650 +11652 2 310.4759 403.7691 65.2484 0.1144 11651 +11653 2 309.7975 402.8585 65.5956 0.1144 11652 +11654 2 309.1294 401.9375 65.884 0.1144 11653 +11655 2 308.5723 400.9445 66.1139 0.1144 11654 +11656 2 308.0746 399.9172 66.2984 0.1144 11655 +11657 2 307.633 398.8636 66.4334 0.1144 11656 +11658 2 307.3333 397.7608 66.5098 0.1144 11657 +11659 2 306.8883 396.7095 66.5277 0.1144 11658 +11660 2 306.3518 395.6993 66.5008 0.1144 11659 +11661 2 305.8015 394.696 66.4404 0.1144 11660 +11662 2 305.2512 393.6939 66.3558 0.1144 11661 +11663 2 304.6369 392.7306 66.2614 0.1144 11662 +11664 2 303.8132 391.9413 66.176 0.1144 11663 +11665 2 302.9278 391.2183 66.1058 0.1144 11664 +11666 2 302.0137 390.5319 66.0167 0.1144 11665 +11667 2 301.1649 389.7665 65.91 0.1144 11666 +11668 2 300.6775 388.7415 65.8249 0.1144 11667 +11669 2 300.1444 387.7302 65.7695 0.1144 11668 +11670 2 299.2521 387.0278 65.7364 0.1144 11669 +11671 2 298.5096 386.1595 65.7437 0.1144 11670 +11672 2 297.9537 385.1608 65.7952 0.1144 11671 +11673 2 297.4492 384.1346 65.8454 0.1144 11672 +11674 2 296.9778 383.0924 65.8462 0.1144 11673 +11675 2 296.534 382.0377 65.812 0.1144 11674 +11676 2 296.1759 380.952 65.7807 0.1144 11675 +11677 2 295.827 379.8629 65.7597 0.1144 11676 +11678 2 295.478 378.7727 65.7549 0.1144 11677 +11679 2 295.1829 377.6676 65.7742 0.1144 11678 +11680 2 294.9255 376.5533 65.8204 0.1144 11679 +11681 2 294.6738 375.4379 65.8882 0.1144 11680 +11682 2 294.5949 374.2985 66.0162 0.1144 11681 +11683 2 294.3535 373.1831 66.1898 0.1144 11682 +11684 2 293.73 372.2301 66.3642 0.1144 11683 +11685 2 293.0756 371.2955 66.5518 0.1144 11684 +11686 2 292.3904 370.3849 66.7965 0.1144 11685 +11687 2 291.7028 369.4765 67.0832 0.1144 11686 +11688 2 291.1217 368.5007 67.4016 0.1144 11687 +11689 2 290.9535 367.3807 67.7533 0.1144 11688 +11690 2 290.7968 366.2573 68.122 0.1144 11689 +11691 2 290.6401 365.1339 68.4866 0.1144 11690 +11692 2 290.4936 364.2016 69.0654 0.1144 11691 +11693 2 290.3163 363.0781 69.2933 0.1144 11692 +11694 2 290.0623 361.9639 69.3661 0.1144 11693 +11695 2 289.6585 360.8954 69.414 0.1144 11694 +11696 2 289.1712 359.8612 69.4462 0.1144 11695 +11697 2 288.6735 358.8316 69.473 0.1144 11696 +11698 2 288.169 357.8043 69.5106 0.1144 11697 +11699 2 287.6176 356.8033 69.5904 0.1144 11698 +11700 2 287.0147 355.8332 69.7393 0.1144 11699 +11701 2 286.5091 354.8127 69.977 0.1144 11700 +11702 2 286.2643 353.7099 70.3329 0.1144 11701 +11703 2 286.1201 352.59 70.7762 0.1144 11702 +11704 2 285.9348 351.4768 71.246 0.1144 11703 +11705 2 285.7209 350.3672 71.6808 0.1144 11704 +11706 2 285.1855 349.3639 71.8124 0.1144 11705 +11707 2 284.4556 348.4876 71.6086 0.1144 11706 +11708 2 283.6868 347.6433 71.444 0.1144 11707 +11709 2 282.9032 346.8105 71.4017 0.1144 11708 +11710 2 282.2397 345.8941 71.4498 0.1144 11709 +11711 2 281.829 344.8325 71.5436 0.1144 11710 +11712 2 281.535 343.7285 71.6542 0.1144 11711 +11713 2 281.2421 342.6223 71.7514 0.1144 11712 +11714 2 280.9458 341.5183 71.8127 0.1144 11713 +11715 2 280.6449 340.4144 71.8463 0.1144 11714 +11716 2 280.3258 339.3161 71.8704 0.1144 11715 +11717 2 279.9231 338.2476 71.9015 0.1144 11716 +11718 2 279.4163 337.2237 71.9471 0.1144 11717 +11719 2 278.8752 336.2159 72.0037 0.1144 11718 +11720 2 278.3341 335.208 72.0642 0.1144 11719 +11721 2 277.8158 334.1887 72.1185 0.1144 11720 +11722 2 277.3731 333.1351 72.1543 0.1144 11721 +11723 2 277.0002 332.054 72.1619 0.1144 11722 +11724 2 276.6398 330.9684 72.1378 0.1144 11723 +11725 2 276.2337 329.8999 72.0726 0.1144 11724 +11726 2 275.7704 328.8554 71.9597 0.1144 11725 +11727 2 275.2876 327.8201 71.8102 0.1144 11726 +11728 2 274.7694 326.803 71.6467 0.1144 11727 +11729 2 274.1321 325.8604 71.4986 0.1144 11728 +11730 2 273.3794 325.0012 71.388 0.1144 11729 +11731 2 272.5935 324.1696 71.318 0.1144 11730 +11732 2 271.8087 323.3379 71.2816 0.1144 11731 +11733 2 271.0239 322.5062 71.2701 0.1144 11732 +11734 2 270.2757 321.6413 71.2746 0.1144 11733 +11735 2 269.6717 320.6781 71.2894 0.1144 11734 +11736 2 269.2198 319.629 71.311 0.1144 11735 +11737 2 268.8125 318.5594 71.3367 0.1144 11736 +11738 2 268.5117 317.4611 71.3745 0.1144 11737 +11739 2 268.5277 316.3354 71.4454 0.1144 11738 +11740 2 268.7862 315.2235 71.552 0.1144 11739 +11741 2 268.7039 314.1355 71.6313 0.1144 11740 +11742 2 268.1822 313.1242 71.6204 0.1144 11741 +11743 2 268.0827 312.0569 71.5064 0.1144 11742 +11744 2 268.538 311.0239 71.3118 0.1144 11743 +11745 2 269.2061 310.1052 71.0598 0.1144 11744 +11746 2 270.032 309.3284 70.7644 0.1144 11745 +11747 2 269.9371 308.3137 70.5757 0.1144 11746 +11748 2 269.4566 307.2773 70.572 0.1144 11747 +11749 2 268.9601 306.2477 70.7036 0.1144 11748 +11750 2 268.4659 305.2203 70.9377 0.1144 11749 +11751 2 267.9683 304.1988 71.2449 0.1144 11750 +11752 2 267.3002 303.2836 71.6038 0.1144 11751 +11753 2 266.5909 302.3992 71.9804 0.1144 11752 +11754 2 265.8793 301.5172 72.3643 0.1144 11753 +11755 2 265.1678 300.6363 72.7518 0.1144 11754 +11756 2 264.4562 299.7543 73.1402 0.1144 11755 +11757 2 263.4849 299.1812 73.519 0.1144 11756 +11758 2 262.3764 298.9581 73.8693 0.1144 11757 +11759 2 261.2541 298.7785 74.2011 0.1144 11758 +11760 2 260.3801 298.0761 74.5679 0.1144 11759 +11761 2 259.6205 297.2375 74.9636 0.1144 11760 +11762 2 258.8689 296.391 75.3808 0.1144 11761 +11763 2 258.1196 295.5455 75.8111 0.1144 11762 +11764 2 257.5247 294.5823 76.2082 0.1144 11763 +11765 2 257.0088 293.571 76.5607 0.1144 11764 +11766 2 256.4997 292.5551 76.8776 0.1144 11765 +11767 2 255.9906 291.5381 77.1758 0.1144 11766 +11768 2 255.4804 290.5211 77.4707 0.1144 11767 +11769 2 254.9701 289.5052 77.7734 0.1144 11768 +11770 2 254.8317 288.3852 78.1676 0.1144 11769 +11771 2 254.8306 287.2584 78.6478 0.1144 11770 +11772 2 254.834 286.1361 79.1823 0.1144 11771 +11773 2 254.7654 285.0139 79.6984 0.1144 11772 +11774 2 254.5366 283.9053 80.1069 0.1144 11773 +11775 2 254.3066 282.7922 80.4269 0.1144 11774 +11776 2 254.5915 282.5428 80.6669 0.1144 11775 +11777 2 255.4426 281.7969 81.0723 0.1144 11776 +11778 2 256.2663 281.0225 81.4654 0.1144 11777 +11779 2 256.7616 279.9974 81.7289 0.1144 11778 +11780 2 257.249 278.9633 81.755 0.1144 11779 +11781 2 257.8084 277.9691 81.5643 0.1144 11780 +11782 2 258.2969 276.943 81.2596 0.1144 11781 +11783 2 258.7751 275.9122 80.9354 0.1144 11782 +11784 2 259.2647 274.8849 80.6378 0.1144 11783 +11785 2 259.7498 273.8542 80.3891 0.1144 11784 +11786 2 260.1936 272.8028 80.1923 0.1144 11785 +11787 2 260.5986 271.7343 80.0316 0.1144 11786 +11788 2 260.9864 270.6601 79.8885 0.1144 11787 +11789 2 261.3136 269.5687 79.7555 0.1144 11788 +11790 2 261.428 268.4327 79.6342 0.1144 11789 +11791 2 261.4555 267.2899 79.5298 0.1144 11790 +11792 2 261.4829 266.147 79.441 0.1144 11791 +11793 2 261.595 265.0225 79.3722 0.1144 11792 +11794 2 262.1419 264.0283 79.3498 0.1144 11793 +11795 2 262.9095 263.1806 79.3727 0.1144 11794 +11796 2 263.7023 262.3558 79.4167 0.1144 11795 +11797 2 264.4631 261.5047 79.4441 0.1144 11796 +11798 2 265.0888 260.5494 79.3834 0.1144 11797 +11799 2 265.5476 259.5107 79.2042 0.1144 11798 +11800 2 265.8061 258.4044 78.9018 0.1144 11799 +11801 2 265.9834 257.2845 78.5406 0.1144 11800 +11802 2 266.0921 256.1542 78.2057 0.1144 11801 +11803 2 266.1608 255.0159 77.9878 0.1144 11802 +11804 2 266.2408 253.8765 78.0094 0.1144 11803 +11805 2 266.3289 252.7416 78.2723 0.1144 11804 +11806 2 266.3598 251.6034 78.512 0.1144 11805 +11807 2 266.2843 250.4674 78.3835 0.1144 11806 +11808 2 266.2477 249.3302 78.0878 0.1144 11807 +11809 2 266.2488 248.8006 76.7903 0.1144 11808 +11810 2 266.2603 247.6932 76.0956 0.1144 11809 +11811 2 266.3884 246.5652 75.7686 0.1144 11810 +11812 2 266.7579 245.5013 75.3122 0.1144 11811 +11813 2 267.2796 244.6307 74.7642 0.1144 11812 +11814 2 267.513 244.6536 73.5672 0.1144 11813 +11815 2 268.1319 243.8459 72.7692 0.1144 11814 +11816 2 268.6135 242.8426 72.1291 0.1144 11815 +11817 2 268.7931 241.7638 71.5198 0.1144 11816 +11818 2 268.9899 240.6633 71.136 0.1144 11817 +11819 2 269.2907 239.5628 70.9727 0.1144 11818 +11820 2 269.595 238.4622 70.8126 0.1144 11819 +11821 2 269.9131 237.3651 70.6586 0.1144 11820 +11822 2 270.2368 236.2692 70.5709 0.1144 11821 +11823 2 270.2952 235.1526 70.5552 0.1144 11822 +11824 2 270.0767 234.0315 70.5684 0.1144 11823 +11825 2 269.793 232.923 70.5914 0.1144 11824 +11826 2 269.2942 231.9082 70.6154 0.1144 11825 +11827 2 268.4293 231.207 70.6292 0.1144 11826 +11828 2 267.4157 230.6773 70.6266 0.1144 11827 +11829 2 266.4067 230.1385 70.6163 0.1144 11828 +11830 2 265.3394 229.7449 70.576 0.1144 11829 +11831 2 264.2171 229.5367 70.52 0.1144 11830 +11832 2 263.0925 229.3331 70.4894 0.1144 11831 +11833 2 261.9623 229.1592 70.5029 0.1144 11832 +11834 2 260.8286 229.0105 70.565 0.1144 11833 +11835 2 259.7578 228.6433 70.7 0.1144 11834 +11836 2 258.7957 228.0415 70.9442 0.1144 11835 +11837 2 257.8828 227.3666 71.2802 0.1144 11836 +11838 2 256.9756 226.687 71.6652 0.1144 11837 +11839 2 256.0558 226.0315 72.1081 0.1144 11838 +11840 2 255.1234 225.3943 72.5491 0.1144 11839 +11841 2 254.1831 224.7514 72.7784 0.1144 11840 +11842 2 253.2381 224.1073 72.7577 0.1144 11841 +11843 2 252.1204 223.9128 72.7115 0.1144 11842 +11844 2 250.9776 223.9483 72.7364 0.1144 11843 +11845 2 249.8359 223.9998 72.7779 0.1144 11844 +11846 2 248.693 223.9517 72.8213 0.1144 11845 +11847 2 247.6508 223.485 72.7871 0.1144 11846 +11848 2 246.6155 223.0034 72.676 0.1144 11847 +11849 2 245.5688 223.4632 72.5656 0.1144 11848 +11850 2 244.5311 223.9369 72.3582 0.1144 11849 +11851 2 266.6012 249.2078 77.8571 0.1144 11808 +11852 2 267.6811 248.8314 77.7784 0.1144 11851 +11853 2 268.7611 248.4574 77.8484 0.1144 11852 +11854 2 269.841 248.0924 78.0724 0.1144 11853 +11855 2 270.9427 247.8179 78.3751 0.1144 11854 +11856 2 272.0741 247.7286 78.7097 0.1144 11855 +11857 2 273.1861 247.7938 79.3092 0.1144 11856 +11858 2 274.2557 247.7618 80.204 0.1144 11857 +11859 2 275.1446 247.215 81.03 0.1144 11858 +11860 2 275.8047 246.3341 81.7578 0.1144 11859 +11861 2 276.6375 245.6157 82.294 0.1144 11860 +11862 2 277.6968 245.2393 82.5255 0.1144 11861 +11863 2 278.8134 244.9933 82.4631 0.1144 11862 +11864 2 279.8201 244.5037 82.1246 0.1144 11863 +11865 2 280.717 243.8333 81.5646 0.1144 11864 +11866 2 281.5807 243.1378 80.8808 0.1144 11865 +11867 2 282.4422 242.4433 80.1634 0.1144 11866 +11868 2 283.3047 241.7478 79.473 0.1144 11867 +11869 2 284.2543 241.1529 78.9141 0.1144 11868 +11870 2 285.3296 240.788 78.6246 0.1144 11869 +11871 2 286.2723 240.1473 78.552 0.1144 11870 +11872 2 287.1932 239.4701 78.6341 0.1144 11871 +11873 2 288.1118 238.7928 78.8166 0.1144 11872 +11874 2 289.0305 238.1167 79.0496 0.1144 11873 +11875 2 289.9479 237.4406 79.2876 0.1144 11874 +11876 2 290.7693 236.649 79.4906 0.1144 11875 +11877 2 291.5427 235.8093 79.6522 0.1144 11876 +11878 2 292.3492 234.9982 79.7647 0.1144 11877 +11879 2 293.2644 234.3129 79.8073 0.1144 11878 +11880 2 294.1922 233.6448 79.767 0.1144 11879 +11881 2 295.1268 232.9859 79.6267 0.1144 11880 +11882 2 296.0569 232.327 79.4192 0.1144 11881 +11883 2 296.9138 231.5719 79.2392 0.1144 11882 +11884 2 297.7672 230.8123 79.0922 0.1144 11883 +11885 2 298.6195 230.0515 78.9768 0.1144 11884 +11886 2 299.4752 229.2931 78.8836 0.1144 11885 +11887 2 300.3297 228.5323 78.797 0.1144 11886 +11888 2 301.2141 227.8082 78.6974 0.1144 11887 +11889 2 302.2299 227.2865 78.5641 0.1144 11888 +11890 2 303.2504 226.7751 78.3866 0.1144 11889 +11891 2 304.2205 226.1814 78.0752 0.1144 11890 +11892 2 305.2421 225.6975 77.6521 0.1144 11891 +11893 2 306.3609 225.5293 77.2355 0.1144 11892 +11894 2 306.8334 225.5762 77.532 0.1144 11893 +11895 2 307.9442 225.6872 76.9997 0.1144 11894 +11896 2 309.0756 225.8004 76.6816 0.1144 11895 +11897 2 310.1533 226.1699 76.4439 0.1144 11896 +11898 2 311.1955 226.639 76.3056 0.1144 11897 +11899 2 312.2376 227.1103 76.2843 0.1144 11898 +11900 2 305.9285 224.2915 76.1765 0.1144 11893 +11901 2 305.6162 223.239 75.4018 0.1144 11900 +11902 2 305.4286 222.1511 74.6925 0.1144 11901 +11903 2 305.3359 221.0517 73.9556 0.1144 11902 +11904 2 305.3084 219.9592 73.1354 0.1144 11903 +11905 2 305.3645 218.8724 72.273 0.1144 11904 +11906 2 305.4835 217.8027 71.3266 0.1144 11905 +11907 2 305.7283 216.7937 70.1683 0.1144 11906 +11908 2 306.7156 216.4082 69.2793 0.1144 11907 +11909 2 307.8046 216.1611 68.6666 0.1144 11908 +11910 2 308.9063 215.914 68.2158 0.1144 11909 +11911 2 310.04 215.8488 67.9025 0.1144 11910 +11912 2 311.1714 215.9861 67.6743 0.1144 11911 +11913 2 312.161 215.4415 67.4159 0.1144 11912 +11914 2 313.0087 215.3763 67.216 0.1144 11913 +11915 2 314.1138 215.1006 67.1857 0.1144 11914 +11916 2 315.2223 214.8752 67.2305 0.1144 11915 +11917 2 316.3583 214.9382 67.31 0.1144 11916 +11918 2 317.4875 215.1178 67.4078 0.1144 11917 +11919 2 318.5948 215.3843 67.5206 0.1144 11918 +11920 2 319.6393 215.835 67.6536 0.1144 11919 +11921 2 320.622 216.4162 67.8034 0.1144 11920 +11922 2 321.5509 217.0786 67.9613 0.1144 11921 +11923 2 322.4501 217.7833 68.1388 0.1144 11922 +11924 2 323.3161 218.5246 68.332 0.1144 11923 +11925 2 324.133 219.322 68.5269 0.1144 11924 +11926 2 325.0424 219.9855 68.7336 0.1144 11925 +11927 2 326.1292 220.1983 68.9346 0.1144 11926 +11928 2 327.2629 220.0907 69.1127 0.1144 11927 +11929 2 328.3989 220.0187 69.2941 0.1144 11928 +11930 2 329.496 220.2589 69.494 0.1144 11929 +11931 2 330.4421 220.8698 69.694 0.1144 11930 +11932 2 331.2029 221.7118 69.904 0.1144 11931 +11933 2 331.8664 222.6373 70.147 0.1144 11932 +11934 2 332.6523 223.4484 70.4231 0.1144 11933 +11935 2 333.6911 223.7424 70.756 0.1144 11934 +11936 2 334.8179 223.6669 71.1469 0.1144 11935 +11937 2 335.9413 223.5342 71.5817 0.1144 11936 +11938 2 337.0167 223.2276 72.0871 0.1144 11937 +11939 2 338.0154 222.7276 72.6664 0.1144 11938 +11940 2 338.9786 222.1659 73.2855 0.1144 11939 +11941 2 340.0666 221.9383 73.8178 0.1144 11940 +11942 2 341.1316 222.2735 74.1289 0.1144 11941 +11943 2 342.1818 222.7242 74.2311 0.1144 11942 +11944 2 343.2858 223.0205 74.263 0.1144 11943 +11945 2 344.4252 223.0114 74.419 0.1144 11944 +11946 2 345.5269 222.9782 75.1626 0.1144 11945 +11947 2 312.2548 215.223 64.3378 0.1144 11913 +11948 2 312.288 214.2872 62.991 0.1144 11947 +11949 2 311.9665 213.3354 61.6812 0.1144 11948 +11950 2 311.8407 212.3047 60.5102 0.1144 11949 +11951 2 311.6874 211.3872 58.9753 0.1144 11950 +11952 2 311.0399 211.3368 57.6752 0.1144 11951 +11953 2 310.2837 212.1365 56.9355 0.1144 11952 +11954 2 309.6499 213.0586 56.4385 0.1144 11953 +11955 2 308.9955 213.976 56.0854 0.1144 11954 +11956 2 308.0838 214.6121 55.8177 0.1144 11955 +11957 2 307.0359 215.0571 55.5318 0.1144 11956 +11958 2 306.1596 215.7252 55.0721 0.1144 11957 +11959 2 305.6127 216.6908 54.5317 0.1144 11958 +11960 2 304.9103 217.5442 54.0134 0.1144 11959 +11961 2 303.9265 218.0407 53.4573 0.1144 11960 +11962 2 302.858 218.313 52.7335 0.1144 11961 +11963 2 301.7426 218.353 52.1455 0.1144 11962 +11964 2 300.6592 218.035 51.751 0.1144 11963 +11965 2 299.5289 217.9091 51.5007 0.1144 11964 +11966 2 298.3872 217.8714 51.3884 0.1144 11965 +11967 2 297.2581 217.6906 51.4139 0.1144 11966 +11968 2 296.1896 217.2914 51.5284 0.1144 11967 +11969 2 295.176 216.7651 51.6533 0.1144 11968 +11970 2 294.0824 216.4334 51.7591 0.1144 11969 +11971 2 292.9418 216.4002 51.8344 0.1144 11970 +11972 2 291.7978 216.391 51.8756 0.1144 11971 +11973 2 290.671 216.2091 51.7658 0.1144 11972 +11974 2 289.5967 215.9517 51.0432 0.1144 11973 +11975 2 254.2346 282.2042 80.9357 0.1144 11775 +11976 2 254.071 281.0854 81.3501 0.1144 11975 +11977 2 253.928 279.9517 81.501 0.1144 11976 +11978 2 253.7701 278.8203 81.6668 0.1144 11977 +11979 2 253.5276 277.706 81.8894 0.1144 11978 +11980 2 253.1752 276.6238 82.1576 0.1144 11979 +11981 2 252.7462 275.569 82.4149 0.1144 11980 +11982 2 252.3229 274.5108 82.6613 0.1144 11981 +11983 2 252.0392 273.408 82.934 0.1144 11982 +11984 2 251.64 272.3406 83.1846 0.1144 11983 +11985 2 251.1366 271.319 83.4358 0.1144 11984 +11986 2 250.7659 270.2414 83.6881 0.1144 11985 +11987 2 250.6195 269.1123 83.9404 0.1144 11986 +11988 2 250.4822 267.9809 84.1887 0.1144 11987 +11989 2 250.2672 266.8643 84.4827 0.1144 11988 +11990 2 250.0384 265.7512 84.8128 0.1144 11989 +11991 2 249.9194 264.6186 85.0676 0.1144 11990 +11992 2 249.8816 263.4781 85.2706 0.1144 11991 +11993 2 250.099 262.357 85.4375 0.1144 11992 +11994 2 250.9467 261.3079 85.2723 0.1144 11993 +11995 2 251.7303 260.4751 85.2748 0.1144 11994 +11996 2 252.5632 259.6903 85.2813 0.1144 11995 +11997 2 253.4303 258.9444 85.29 0.1144 11996 +11998 2 254.2906 258.1905 85.3014 0.1144 11997 +11999 2 255.2264 257.5327 85.3185 0.1144 11998 +12000 2 256.1359 256.8394 85.3448 0.1144 11999 +12001 2 257.0088 256.0993 85.3787 0.1144 12000 +12002 2 257.9331 255.4255 85.4185 0.1144 12001 +12003 2 258.8517 254.7436 85.4686 0.1144 12002 +12004 2 259.0462 253.6214 85.5935 0.1144 12003 +12005 2 259.4844 252.5689 85.82 0.1144 12004 +12006 2 249.7649 261.9268 85.5719 0.1144 11993 +12007 2 249.1014 260.9967 85.7254 0.1144 12006 +12008 2 248.5409 260.0037 85.9396 0.1144 12007 +12009 2 248.0478 258.9787 86.2445 0.1144 12008 +12010 2 247.5319 257.9663 86.5612 0.1144 12009 +12011 2 246.9885 256.9653 86.8174 0.1144 12010 +12012 2 246.5881 255.8979 87.0464 0.1144 12011 +12013 2 246.4622 254.7665 87.3085 0.1144 12012 +12014 2 246.4084 253.6317 87.5714 0.1144 12013 +12015 2 246.0973 252.5483 87.4742 0.1144 12014 +12016 2 245.7026 251.5999 86.7241 0.1144 12015 +12017 2 246.4073 250.7259 86.5578 0.1144 12016 +12018 2 247.2504 249.9754 86.9739 0.1144 12017 +12019 2 248.0707 249.2524 87.7834 0.1144 12018 +12020 2 248.6301 248.3327 88.7001 0.1144 12019 +12021 2 248.5912 247.2241 89.3822 0.1144 12020 +12022 2 248.4196 246.1087 89.84 0.1144 12021 +12023 2 248.137 245.0059 90.104 0.1144 12022 +12024 2 247.8121 243.91 90.2258 0.1144 12023 +12025 2 247.9128 242.7717 90.216 0.1144 12024 +12026 2 248.4265 241.7501 90.1919 0.1144 12025 +12027 2 248.5409 240.6118 90.2107 0.1144 12026 +12028 2 248.8966 239.525 90.2773 0.1144 12027 +12029 2 249.4515 238.4027 90.7323 0.1144 12028 +12030 2 249.5659 237.2736 91.0123 0.1144 12029 +12031 2 249.7878 236.1616 91.336 0.1144 12030 +12032 2 250.0452 235.0588 91.7118 0.1144 12031 +12033 2 250.3987 233.9789 92.0242 0.1144 12032 +12034 2 250.9684 233.0031 92.3975 0.1144 12033 +12035 2 251.386 231.9574 92.8598 0.1144 12034 +12036 2 251.8688 230.937 93.312 0.1144 12035 +12037 2 252.2829 229.8822 93.6961 0.1144 12036 +12038 2 252.4144 228.7577 94.0254 0.1144 12037 +12039 2 252.705 227.6629 94.3919 0.1144 12038 +12040 2 253.4749 226.8506 94.8508 0.1144 12039 +12041 2 254.3947 226.2008 95.3285 0.1144 12040 +12042 2 254.9026 225.1872 95.706 0.1144 12041 +12043 2 254.7425 224.9035 95.8768 0.1144 12042 +12044 2 254.2265 223.9071 96.3852 0.1144 12043 +12045 2 253.7907 222.8569 96.6916 0.1144 12044 +12046 2 253.3777 221.7976 96.9912 0.1144 12045 +12047 2 253.0768 220.7028 97.2342 0.1144 12046 +12048 2 252.943 219.5691 97.3582 0.1144 12047 +12049 2 252.8778 218.4274 97.3666 0.1144 12048 +12050 2 252.6169 217.3428 97.3305 0.1144 12049 +12051 2 251.7246 216.8223 97.4137 0.1144 12050 +12052 2 250.5932 216.7102 97.6738 0.1144 12051 +12053 2 249.4641 216.6427 98.0851 0.1144 12052 +12054 2 248.3418 216.5752 98.607 0.1144 12053 +12055 2 247.2241 216.5249 99.1816 0.1144 12054 +12056 2 246.1019 216.5295 99.7282 0.1144 12055 +12057 2 244.9773 216.5855 100.207 0.1144 12056 +12058 2 243.8493 216.6553 100.6415 0.1144 12057 +12059 2 243.2236 217.1346 101.6137 0.1144 12058 +12060 2 244.0644 217.1186 102.9286 0.1144 12059 +12061 2 244.7496 216.3624 104.1169 0.1144 12060 +12062 2 245.0517 215.382 105.2643 0.1144 12061 +12063 2 244.1731 215.0503 106.1144 0.1144 12062 +12064 2 243.0485 214.9668 106.561 0.1144 12063 +12065 2 241.9434 215.2367 106.6934 0.1144 12064 +12066 2 241.1746 216.0192 106.013 0.1144 12065 +12067 2 255.5135 224.2469 96.1425 0.1144 12042 +12068 2 256.1359 223.2916 96.3645 0.1144 12067 +12069 2 256.7582 222.333 96.4636 0.1144 12068 +12070 2 257.3828 221.3743 96.5698 0.1144 12069 +12071 2 257.9949 220.4088 96.6675 0.1144 12070 +12072 2 258.5371 219.402 96.7067 0.1144 12071 +12073 2 259.0817 218.3953 96.6977 0.1144 12072 +12074 2 259.6262 217.3897 96.651 0.1144 12073 +12075 2 260.1685 216.3853 96.4774 0.1144 12074 +12076 2 248.7697 238.3947 89.2718 0.1144 12028 +12077 2 248.7445 237.2599 88.9834 0.1144 12076 +12078 2 248.947 236.1422 88.7141 0.1144 12077 +12079 2 249.1735 235.0268 88.4103 0.1144 12078 +12080 2 249.3966 233.9137 88.0849 0.1144 12079 +12081 2 249.5933 232.7948 87.7498 0.1144 12080 +12082 2 249.7878 231.676 87.4163 0.1144 12081 +12083 2 249.9823 230.556 87.0864 0.1144 12082 +12084 2 250.1768 229.4372 86.7577 0.1144 12083 +12085 2 250.3861 228.3195 86.4408 0.1144 12084 +12086 2 250.6412 227.2098 86.1655 0.1144 12085 +12087 2 250.9398 226.1116 85.9102 0.1144 12086 +12088 2 251.4992 225.1243 85.6072 0.1144 12087 +12089 2 251.9694 224.1004 85.1329 0.1144 12088 +12090 2 252.22 223.9128 84.9402 0.1144 12089 +12091 2 253.11 223.2459 84.3004 0.1144 12090 +12092 2 254.0172 222.5663 83.9174 0.1144 12091 +12093 2 254.9244 221.888 83.5341 0.1144 12092 +12094 2 255.8316 221.2096 83.1435 0.1144 12093 +12095 2 256.7342 220.5277 82.7305 0.1144 12094 +12096 2 257.6013 219.8104 82.2483 0.1144 12095 +12097 2 258.274 218.9376 81.6301 0.1144 12096 +12098 2 258.5875 217.8805 80.8889 0.1144 12097 +12099 2 258.9787 217.2502 79.4545 0.1144 12098 +12100 2 259.9912 217.6677 78.6509 0.1144 12099 +12101 2 261.0047 218.0853 77.8476 0.1144 12100 +12102 2 262.0343 218.4788 77.0958 0.1144 12101 +12103 2 263.0742 218.8609 76.405 0.1144 12102 +12104 2 264.1176 219.2442 75.7484 0.1144 12103 +12105 2 265.0968 219.6045 74.6018 0.1144 12104 +12106 2 251.5736 223.9231 83.8597 0.1144 12089 +12107 2 250.8334 223.5902 81.8888 0.1144 12106 +12108 2 249.9217 223.1807 80.5921 0.1144 12107 +12109 2 248.9115 222.8157 79.6295 0.1144 12108 +12110 2 247.859 222.5069 78.8376 0.1144 12109 +12111 2 246.7665 222.3101 78.1659 0.1144 12110 +12112 2 245.6523 222.2128 77.5835 0.1144 12111 +12113 2 244.7336 221.6042 76.9782 0.1144 12112 +12114 2 243.8608 220.9419 76.2056 0.1144 12113 +12115 2 243.1618 220.3172 74.6018 0.1144 12114 +12116 2 290.0543 365.0321 68.7618 0.1144 11691 +12117 2 288.9286 364.8399 68.9489 0.1144 12116 +12118 2 287.8041 364.6386 69.0788 0.1144 12117 +12119 2 286.7173 364.2874 69.1863 0.1144 12118 +12120 2 285.706 363.7554 69.3031 0.1144 12119 +12121 2 284.7027 363.2074 69.4134 0.1144 12120 +12122 2 283.6834 362.6915 69.5083 0.1144 12121 +12123 2 282.6103 362.3002 69.5901 0.1144 12122 +12124 2 281.4755 362.1572 69.664 0.1144 12123 +12125 2 280.3326 362.1149 69.7337 0.1144 12124 +12126 2 279.1898 362.0771 69.8048 0.1144 12125 +12127 2 278.0492 362.1263 69.9028 0.1144 12126 +12128 2 276.9487 362.4272 70.0823 0.1144 12127 +12129 2 275.879 362.8185 70.3206 0.1144 12128 +12130 2 274.7774 363.1148 70.5051 0.1144 12129 +12131 2 273.6597 363.3573 70.5916 0.1144 12130 +12132 2 272.5397 363.5861 70.5872 0.1144 12131 +12133 2 271.4071 363.7337 70.5009 0.1144 12132 +12134 2 270.2643 363.7348 70.3461 0.1144 12133 +12135 2 269.126 363.6696 70.1448 0.1144 12134 +12136 2 268.0129 363.4602 69.9152 0.1144 12135 +12137 2 267.0004 362.9409 69.6592 0.1144 12136 +12138 2 266.0155 362.4066 69.3776 0.1144 12137 +12139 2 264.8852 362.3528 69.0385 0.1144 12138 +12140 2 263.7584 362.4856 68.6739 0.1144 12139 +12141 2 262.6338 362.6194 68.2906 0.1144 12140 +12142 2 261.5081 362.7544 67.9064 0.1144 12141 +12143 2 260.3858 362.9123 67.5427 0.1144 12142 +12144 2 259.2865 363.188 67.23 0.1144 12143 +12145 2 258.2328 363.6215 66.9939 0.1144 12144 +12146 2 257.2078 364.1238 66.8441 0.1144 12145 +12147 2 256.2343 364.7209 66.8108 0.1144 12146 +12148 2 255.3122 365.3982 66.8968 0.1144 12147 +12149 2 254.4039 366.0903 67.0547 0.1144 12148 +12150 2 253.5196 366.8122 67.2062 0.1144 12149 +12151 2 252.7794 367.6656 67.1947 0.1144 12150 +12152 2 252.2497 368.6666 66.8377 0.1144 12151 +12153 2 251.378 368.9755 66.3132 0.1144 12152 +12154 2 250.2878 368.6952 65.8647 0.1144 12153 +12155 2 249.2032 368.3634 65.494 0.1144 12154 +12156 2 248.1153 368.0317 65.2002 0.1144 12155 +12157 2 247.0251 367.6988 64.9905 0.1144 12156 +12158 2 245.9314 367.3647 64.8438 0.1144 12157 +12159 2 244.848 367.0021 64.7284 0.1144 12158 +12160 2 243.8104 366.5273 64.6428 0.1144 12159 +12161 2 242.798 365.9942 64.5887 0.1144 12160 +12162 2 241.7901 365.4531 64.5602 0.1144 12161 +12163 2 240.7823 364.9131 64.5509 0.1144 12162 +12164 2 239.7744 364.372 64.5534 0.1144 12163 +12165 2 238.6899 364.0357 64.5747 0.1144 12164 +12166 2 237.5562 363.9041 64.6167 0.1144 12165 +12167 2 236.4476 363.6444 64.6576 0.1144 12166 +12168 2 235.5187 363.0106 64.6596 0.1144 12167 +12169 2 234.6722 362.2419 64.6103 0.1144 12168 +12170 2 233.8347 361.464 64.5106 0.1144 12169 +12171 2 232.9973 360.6872 64.3622 0.1144 12170 +12172 2 232.1611 359.9104 64.1729 0.1144 12171 +12173 2 231.3076 359.1565 63.9027 0.1144 12172 +12174 2 230.4451 358.4198 63.5482 0.1144 12173 +12175 2 229.5825 357.6876 63.1383 0.1144 12174 +12176 2 228.7211 356.9566 62.697 0.1144 12175 +12177 2 227.918 356.1547 62.3445 0.1144 12176 +12178 2 227.1549 355.3092 62.1102 0.1144 12177 +12179 2 226.3976 354.4535 61.9615 0.1144 12178 +12180 2 225.6414 353.5967 61.8444 0.1144 12179 +12181 2 224.6175 353.1986 61.3063 0.1144 12180 +12182 2 223.66 352.884 60.2067 0.1144 12181 +12183 2 222.802 352.2673 59.1738 0.1144 12182 +12184 2 221.8044 351.8555 58.3156 0.1144 12183 +12185 2 220.7382 351.5752 57.5677 0.1144 12184 +12186 2 219.6606 351.2927 56.9349 0.1144 12185 +12187 2 218.5646 351.0513 56.4096 0.1144 12186 +12188 2 217.4447 350.9586 55.9524 0.1144 12187 +12189 2 216.3178 351.0284 55.5254 0.1144 12188 +12190 2 215.1933 351.1542 55.1093 0.1144 12189 +12191 2 214.0687 351.168 54.7008 0.1144 12190 +12192 2 212.9945 350.8637 54.3144 0.1144 12191 +12193 2 211.9924 350.3317 53.9619 0.1144 12192 +12194 2 211.0028 349.7746 53.6326 0.1144 12193 +12195 2 209.9434 349.4279 53.312 0.1144 12194 +12196 2 208.8132 349.4359 53.0032 0.1144 12195 +12197 2 207.6806 349.5435 52.7136 0.1144 12196 +12198 2 206.5469 349.6407 52.439 0.1144 12197 +12199 2 205.4144 349.762 52.1674 0.1144 12198 +12200 2 204.2875 349.9038 51.8484 0.1144 12199 +12201 2 203.3975 349.5 51.3503 0.1144 12200 +12202 2 202.8976 348.5139 50.6982 0.1144 12201 +12203 2 202.059 347.8229 50.0993 0.1144 12202 +12204 2 201.0248 347.3825 49.6384 0.1144 12203 +12205 2 199.954 347.0095 49.2551 0.1144 12204 +12206 2 198.8958 346.5965 48.9353 0.1144 12205 +12207 2 197.9212 346.0131 48.6786 0.1144 12206 +12208 2 196.9808 345.3667 48.4613 0.1144 12207 +12209 2 196.0484 344.7089 48.2608 0.1144 12208 +12210 2 195.1241 344.0397 48.0757 0.1144 12209 +12211 2 194.1299 343.4814 47.8946 0.1144 12210 +12212 2 193.0157 343.2995 47.6832 0.1144 12211 +12213 2 191.8774 343.2458 47.4312 0.1144 12212 +12214 2 190.7426 343.1954 47.1226 0.1144 12213 +12215 2 189.6088 343.1417 46.7597 0.1144 12214 +12216 2 188.49 342.9838 46.3414 0.1144 12215 +12217 2 187.5245 342.4289 45.8405 0.1144 12216 +12218 2 186.663 341.7105 45.3121 0.1144 12217 +12219 2 185.8256 340.96 44.7871 0.1144 12218 +12220 2 184.9905 340.2062 44.2848 0.1144 12219 +12221 2 184.0456 339.5872 43.8631 0.1144 12220 +12222 2 182.9817 339.188 43.5728 0.1144 12221 +12223 2 181.9006 338.8231 43.3908 0.1144 12222 +12224 2 180.8172 338.457 43.2771 0.1144 12223 +12225 2 179.7338 338.0909 43.1964 0.1144 12224 +12226 2 178.6505 337.7248 43.1189 0.1144 12225 +12227 2 177.5488 337.4251 42.952 0.1144 12226 +12228 2 176.4414 337.1643 42.6661 0.1144 12227 +12229 2 175.3363 336.9091 42.2957 0.1144 12228 +12230 2 174.2346 336.654 41.8785 0.1144 12229 +12231 2 173.2062 336.1781 41.4896 0.1144 12230 +12232 2 172.347 335.4334 41.1967 0.1144 12231 +12233 2 171.4913 334.6783 40.99 0.1144 12232 +12234 2 170.6368 333.921 40.85 0.1144 12233 +12235 2 169.7421 333.2083 40.7473 0.1144 12234 +12236 2 168.7114 332.7152 40.6395 0.1144 12235 +12237 2 167.6772 332.2302 40.5166 0.1144 12236 +12238 2 166.7025 331.6353 40.3542 0.1144 12237 +12239 2 165.769 330.9775 40.1811 0.1144 12238 +12240 2 164.752 330.4547 40.0714 0.1144 12239 +12241 2 163.735 329.9319 40.007 0.1144 12240 +12242 2 163.2065 329.6676 40.1915 0.1144 12241 +12243 2 162.1883 329.1585 39.9294 0.1144 12242 +12244 2 161.1553 328.6723 39.7715 0.1144 12243 +12245 2 160.0719 328.336 39.6606 0.1144 12244 +12246 2 158.9371 328.2308 39.6634 0.1144 12245 +12247 2 157.8182 328.0683 39.7832 0.1144 12246 +12248 2 157.0884 327.3579 40.0095 0.1144 12247 +12249 2 156.6285 326.3329 40.476 0.1144 12248 +12250 2 156.0713 325.3502 40.8892 0.1144 12249 +12251 2 155.4765 324.3743 40.9542 0.1144 12250 +12252 2 154.7981 323.4546 40.8554 0.1144 12251 +12253 2 154.6402 322.3312 40.7431 0.1144 12252 +12254 2 155.0234 321.2546 40.6454 0.1144 12253 +12255 2 155.1516 320.1301 40.5471 0.1144 12254 +12256 2 154.7832 319.0479 40.4578 0.1144 12255 +12257 2 154.2776 318.0251 40.3326 0.1144 12256 +12258 2 153.6323 317.0848 40.112 0.1144 12257 +12259 2 152.9654 316.1638 39.8269 0.1144 12258 +12260 2 152.2046 315.3196 39.5399 0.1144 12259 +12261 2 151.3112 314.6149 39.2997 0.1144 12260 +12262 2 150.3296 314.036 39.0942 0.1144 12261 +12263 2 149.292 313.5578 38.9152 0.1144 12262 +12264 2 148.2578 313.0762 38.7503 0.1144 12263 +12265 2 147.2545 312.5374 38.547 0.1144 12264 +12266 2 146.3645 311.8281 38.3272 0.1144 12265 +12267 2 145.5591 311.0181 38.1836 0.1144 12266 +12268 2 144.7 310.2722 38.0786 0.1144 12267 +12269 2 143.6853 309.7574 37.9823 0.1144 12268 +12270 2 142.611 309.3788 37.8868 0.1144 12269 +12271 2 141.6627 308.7645 37.8132 0.1144 12270 +12272 2 140.9122 307.9019 37.7731 0.1144 12271 +12273 2 140.2166 306.9947 37.7602 0.1144 12272 +12274 2 139.4982 306.1035 37.7804 0.1144 12273 +12275 2 138.7752 305.2181 37.835 0.1144 12274 +12276 2 137.9481 304.4619 37.9316 0.1144 12275 +12277 2 136.8716 304.2239 38.0943 0.1144 12276 +12278 2 135.7402 304.3726 38.3096 0.1144 12277 +12279 2 134.6088 304.4985 38.5622 0.1144 12278 +12280 2 133.4773 304.614 38.859 0.1144 12279 +12281 2 132.3631 304.8211 39.2171 0.1144 12280 +12282 2 131.2637 305.0991 39.5875 0.1144 12281 +12283 2 130.1666 305.3908 39.9319 0.1144 12282 +12284 2 129.0684 305.6837 40.2363 0.1144 12283 +12285 2 127.9667 305.9754 40.4818 0.1144 12284 +12286 2 126.8604 306.2602 40.6358 0.1144 12285 +12287 2 125.7496 306.5325 40.6588 0.1144 12286 +12288 2 124.6354 306.7808 40.5118 0.1144 12287 +12289 2 123.5223 307.005 40.178 0.1144 12288 +12290 2 122.416 306.9855 39.7426 0.1144 12289 +12291 2 121.3235 306.703 39.2986 0.1144 12290 +12292 2 120.2241 306.4444 38.859 0.1144 12291 +12293 2 119.119 306.2008 38.4661 0.1144 12292 +12294 2 118.0173 305.9193 38.157 0.1144 12293 +12295 2 116.9157 305.6276 37.9215 0.1144 12294 +12296 2 115.8117 305.3359 37.7362 0.1144 12295 +12297 2 114.6906 305.13 37.5838 0.1144 12296 +12298 2 113.5531 305.027 37.4578 0.1144 12297 +12299 2 112.412 304.9607 37.3484 0.1144 12298 +12300 2 111.2705 304.9126 37.2095 0.1144 12299 +12301 2 110.1285 304.9378 37.1269 0.1144 12300 +12302 2 108.9887 305.0224 37.2058 0.1144 12301 +12303 2 107.854 305.1311 37.4368 0.1144 12302 +12304 2 106.7283 305.2753 37.7815 0.1144 12303 +12305 2 105.5963 305.2787 38.1142 0.1144 12304 +12306 2 104.4588 305.2215 38.3729 0.1144 12305 +12307 2 103.3651 305.4709 38.7296 0.1144 12306 +12308 2 102.292 305.8152 39.207 0.1144 12307 +12309 2 101.2256 306.1596 39.7698 0.1144 12308 +12310 2 100.1634 306.5016 40.3872 0.1144 12309 +12311 2 99.1033 306.8437 41.0264 0.1144 12310 +12312 2 98.0426 307.2018 41.5996 0.1144 12311 +12313 2 96.9913 307.6239 41.9846 0.1144 12312 +12314 2 95.9346 308.0517 42.2229 0.1144 12313 +12315 2 94.8883 308.5116 42.3304 0.1144 12314 +12316 2 93.9896 309.2152 42.2181 0.1144 12315 +12317 2 93.1275 309.9085 41.5078 0.1144 12316 +12318 2 162.7866 330.4501 39.8563 0.1144 12241 +12319 2 161.7845 330.9981 39.6987 0.1144 12318 +12320 2 160.7835 331.5461 39.4982 0.1144 12319 +12321 2 159.7585 332.038 39.2532 0.1144 12320 +12322 2 158.6797 332.3915 38.967 0.1144 12321 +12323 2 157.5746 332.6638 38.6618 0.1144 12322 +12324 2 156.4717 332.9395 38.36 0.1144 12323 +12325 2 155.3689 333.2197 38.0666 0.1144 12324 +12326 2 154.2661 333.5012 37.781 0.1144 12325 +12327 2 153.1633 333.7826 37.5052 0.1144 12326 +12328 2 152.0593 334.0652 37.2394 0.1144 12327 +12329 2 150.9565 334.3466 36.9852 0.1144 12328 +12330 2 149.8537 334.6349 36.7382 0.1144 12329 +12331 2 148.744 334.8923 36.4946 0.1144 12330 +12332 2 147.6138 335.001 36.2804 0.1144 12331 +12333 2 146.4732 334.9666 36.1267 0.1144 12332 +12334 2 145.3315 334.9003 36.0304 0.1144 12333 +12335 2 144.1898 334.8351 35.9803 0.1144 12334 +12336 2 143.048 334.7687 35.9663 0.1144 12335 +12337 2 141.9052 334.7104 35.9786 0.1144 12336 +12338 2 140.7635 334.6429 36.0086 0.1144 12337 +12339 2 139.6241 334.5456 36.0517 0.1144 12338 +12340 2 138.4846 334.4415 36.1127 0.1144 12339 +12341 2 137.3464 334.3374 36.2001 0.1144 12340 +12342 2 136.2081 334.2322 36.3219 0.1144 12341 +12343 2 135.087 334.3134 36.4868 0.1144 12342 +12344 2 134.015 334.6921 36.701 0.1144 12343 +12345 2 132.9385 334.9804 37.0955 0.1144 12344 +12346 2 131.8609 335.2355 37.7157 0.1144 12345 +12347 2 130.8828 335.7606 38.3228 0.1144 12346 +12348 2 129.8577 336.169 38.9791 0.1144 12347 +12349 2 128.7778 336.3875 39.7149 0.1144 12348 +12350 2 127.7059 336.6575 40.4239 0.1144 12349 +12351 2 126.579 336.7444 40.7817 0.1144 12350 +12352 2 125.451 336.9183 40.9542 0.1144 12351 +12353 2 124.3265 337.1219 41.1093 0.1144 12352 +12354 2 123.2031 337.3267 41.251 0.1144 12353 +12355 2 122.0637 337.4274 41.3372 0.1144 12354 +12356 2 120.9242 337.52 41.4 0.1144 12355 +12357 2 119.7837 337.6116 41.4812 0.1144 12356 +12358 2 118.6442 337.7042 41.5663 0.1144 12357 +12359 2 117.8217 337.432 41.683 0.1144 12358 +12360 2 116.7063 337.1963 41.8978 0.1144 12359 +12361 2 115.5875 337.011 42.2517 0.1144 12360 +12362 2 114.4641 337.0224 42.7672 0.1144 12361 +12363 2 113.3656 336.9709 43.5336 0.1144 12362 +12364 2 112.3027 336.8153 44.3761 0.1144 12363 +12365 2 111.367 336.241 45.1592 0.1144 12364 +12366 2 110.4126 335.6702 45.799 0.1144 12365 +12367 2 109.3641 335.2984 45.8934 0.1144 12366 +12368 2 108.3246 335.1531 44.8291 0.1144 12367 +12369 2 107.2972 335.049 43.6489 0.1144 12368 +12370 2 106.2032 334.9918 42.8641 0.1144 12369 +12371 2 105.0781 334.9518 42.3886 0.1144 12370 +12372 2 103.9385 334.9403 42.1957 0.1144 12371 +12373 2 102.7981 335.0055 42.2237 0.1144 12372 +12374 2 101.6619 335.1222 42.3746 0.1144 12373 +12375 2 100.5273 335.2469 42.5603 0.1144 12374 +12376 2 99.3912 335.3602 42.7291 0.1144 12375 +12377 2 98.2516 335.4322 42.8949 0.1144 12376 +12378 2 97.112 335.494 43.0819 0.1144 12377 +12379 2 95.9965 335.3453 43.2622 0.1144 12378 +12380 2 94.9854 334.8339 43.2911 0.1144 12379 +12381 2 93.8797 334.8202 43.0786 0.1144 12380 +12382 2 92.7941 334.4942 42.8809 0.1144 12381 +12383 2 91.8019 333.9302 42.707 0.1144 12382 +12384 2 90.833 333.3284 42.4883 0.1144 12383 +12385 2 89.8766 332.7084 42.2601 0.1144 12384 +12386 2 88.9175 332.0918 42.0221 0.1144 12385 +12387 2 87.9292 331.5243 41.7883 0.1144 12386 +12388 2 86.8965 331.0358 41.6304 0.1144 12387 +12389 2 85.827 330.6309 41.5727 0.1144 12388 +12390 2 84.7116 330.3769 41.5906 0.1144 12389 +12391 2 83.5846 330.1824 41.6503 0.1144 12390 +12392 2 82.4577 329.9879 41.722 0.1144 12391 +12393 2 81.3306 329.7923 41.7696 0.1144 12392 +12394 2 80.2039 329.5956 41.7606 0.1144 12393 +12395 2 79.0907 329.3359 41.6609 0.1144 12394 +12396 2 77.9976 329.0121 41.4464 0.1144 12395 +12397 2 76.9849 328.5076 41.0413 0.1144 12396 +12398 2 76.0495 327.899 40.427 0.1144 12397 +12399 2 75.0987 327.3773 39.5657 0.1144 12398 +12400 2 74.133 327.1646 38.1738 0.1144 12399 +12401 2 73.1843 327.1462 36.6206 0.1144 12400 +12402 2 72.2058 327.1405 35.1834 0.1144 12401 +12403 2 71.1833 327.0193 33.9752 0.1144 12402 +12404 2 70.1444 326.8397 32.8894 0.1144 12403 +12405 2 69.1065 326.6143 31.852 0.1144 12404 +12406 2 68.0613 326.358 30.9058 0.1144 12405 +12407 2 66.9825 326.2127 30.0852 0.1144 12406 +12408 2 65.8784 326.2425 29.3821 0.1144 12407 +12409 2 64.7673 326.3409 28.7602 0.1144 12408 +12410 2 63.6504 326.421 28.189 0.1144 12409 +12411 2 62.5313 326.3969 27.6504 0.1144 12410 +12412 2 61.4118 326.3283 27.1071 0.1144 12411 +12413 2 60.4437 326.6955 26.4523 0.1144 12412 +12414 2 59.6098 327.4139 25.6913 0.1144 12413 +12415 2 58.6627 327.9516 24.9114 0.1144 12414 +12416 2 57.6003 328.1747 24.1255 0.1144 12415 +12417 2 56.5123 328.1198 23.3207 0.1144 12416 +12418 2 55.6422 327.5878 22.3275 0.1144 12417 +12419 2 54.7363 327.8464 21.2625 0.1144 12418 +12420 2 53.7127 328.0981 20.19 0.1144 12419 +12421 2 52.6798 328.423 19.3 0.1144 12420 +12422 2 51.7269 329.0052 18.6913 0.1144 12421 +12423 2 50.7623 329.5978 18.288 0.1144 12422 +12424 2 49.9267 330.3666 17.9494 0.1144 12423 +12425 2 119.1773 338.036 41.2658 0.1144 12358 +12426 2 120.1452 338.6389 41.2143 0.1144 12425 +12427 2 121.1164 339.244 41.2619 0.1144 12426 +12428 2 121.9996 339.9693 41.225 0.1144 12427 +12429 2 122.6299 340.9131 41.034 0.1144 12428 +12430 2 122.7352 342.0434 40.9632 0.1144 12429 +12431 2 122.8542 343.1806 40.8456 0.1144 12430 +12432 2 122.9869 344.3005 40.3858 0.1144 12431 +12433 2 385.4594 487.8302 47.1624 0.1144 10271 +12434 2 385.3861 486.7171 47.5546 0.1144 12433 +12435 2 385.1573 485.6028 47.8419 0.1144 12434 +12436 2 385.0052 484.4783 48.1586 0.1144 12435 +12437 2 385.0086 483.3469 48.5313 0.1144 12436 +12438 2 384.6197 482.3333 48.9135 0.1144 12437 +12439 2 384.0202 481.3689 49.2554 0.1144 12438 +12440 2 383.7651 480.2878 49.5547 0.1144 12439 +12441 2 383.7022 479.1541 49.8744 0.1144 12440 +12442 2 383.3292 478.1028 50.2076 0.1144 12441 +12443 2 383.097 477.0091 50.5862 0.1144 12442 +12444 2 383.1828 475.8834 50.9188 0.1144 12443 +12445 2 383.5477 474.8126 51.2201 0.1144 12444 +12446 2 383.5294 473.7041 51.6622 0.1144 12445 +12447 2 382.994 472.718 52.1332 0.1144 12446 +12448 2 382.5261 471.6861 52.5067 0.1144 12447 +12449 2 382.1784 470.605 52.8464 0.1144 12448 +12450 2 381.8111 469.5331 53.1832 0.1144 12449 +12451 2 380.9772 468.7574 53.4447 0.1144 12450 +12452 2 380.0494 468.0996 53.6567 0.1144 12451 +12453 2 379.4854 467.1238 53.9694 0.1144 12452 +12454 2 379.3035 466.0027 54.2892 0.1144 12453 +12455 2 379.0472 464.8953 54.5664 0.1144 12454 +12456 2 378.9431 463.7627 54.8397 0.1144 12455 +12457 2 378.9431 462.6279 55.1947 0.1144 12456 +12458 2 378.902 461.4965 55.5472 0.1144 12457 +12459 2 378.6388 460.4005 55.9115 0.1144 12458 +12460 2 378.2876 459.3526 56.4133 0.1144 12459 +12461 2 378.1206 458.2395 56.7955 0.1144 12460 +12462 2 377.5452 457.3369 57.136 0.1144 12461 +12463 2 376.622 456.6837 57.5162 0.1144 12462 +12464 2 375.8257 455.892 57.9788 0.1144 12463 +12465 2 375.5592 454.875 58.4895 0.1144 12464 +12466 2 375.5111 453.7527 58.9646 0.1144 12465 +12467 2 374.9151 452.8764 59.4507 0.1144 12466 +12468 2 374.2916 451.9612 59.9614 0.1144 12467 +12469 2 374.1463 450.8584 60.3865 0.1144 12468 +12470 2 374.1372 449.7236 60.7261 0.1144 12469 +12471 2 374.1372 448.5864 61.0487 0.1144 12470 +12472 2 373.977 447.4676 61.4188 0.1144 12471 +12473 2 373.5881 446.406 61.7901 0.1144 12472 +12474 2 373.1728 445.3489 62.109 0.1144 12473 +12475 2 372.8822 444.2495 62.3837 0.1144 12474 +12476 2 372.7575 443.1192 62.6321 0.1144 12475 +12477 2 372.6065 441.989 62.8653 0.1144 12476 +12478 2 372.5436 440.8541 63.1599 0.1144 12477 +12479 2 372.2324 439.7776 63.6185 0.1144 12478 +12480 2 371.8275 438.7286 64.1248 0.1144 12479 +12481 2 371.4591 437.6681 64.6699 0.1144 12480 +12482 2 371.3962 436.5481 65.1678 0.1144 12481 +12483 2 371.6192 435.459 65.7866 0.1144 12482 +12484 2 371.6204 434.3276 66.1982 0.1144 12483 +12485 2 371.6204 433.1916 66.5428 0.1144 12484 +12486 2 371.6204 432.051 66.7383 0.1144 12485 +12487 2 371.6204 430.907 66.8136 0.1144 12486 +12488 2 372.0631 430.1989 66.7097 0.1144 12487 +12489 2 372.2862 429.0835 66.488 0.1144 12488 +12490 2 372.3068 427.9441 66.2494 0.1144 12489 +12491 2 372.2862 426.8058 66.0108 0.1144 12490 +12492 2 372.11 425.687 65.756 0.1144 12491 +12493 2 371.7302 424.6208 65.506 0.1144 12492 +12494 2 371.657 423.4894 65.2484 0.1144 12493 +12495 2 371.7817 422.3602 64.9132 0.1144 12494 +12496 2 371.7336 421.2391 64.6332 0.1144 12495 +12497 2 371.3824 420.1557 64.3821 0.1144 12496 +12498 2 371.0518 419.0678 64.1178 0.1144 12497 +12499 2 370.6217 418.0119 63.8957 0.1144 12498 +12500 2 370.0646 417.0349 63.7098 0.1144 12499 +12501 2 369.3679 416.1632 63.5373 0.1144 12500 +12502 2 369.1013 415.0672 63.2814 0.1144 12501 +12503 2 368.9663 413.9518 62.9087 0.1144 12502 +12504 2 368.5053 412.9291 62.627 0.1144 12503 +12505 2 367.9573 411.9418 62.41 0.1144 12504 +12506 2 367.6255 410.8504 62.2499 0.1144 12505 +12507 2 367.3567 409.7396 62.1292 0.1144 12506 +12508 2 366.9311 408.6997 62.0172 0.1144 12507 +12509 2 366.1955 407.8349 61.9136 0.1144 12508 +12510 2 365.3867 407.0283 61.8374 0.1144 12509 +12511 2 364.6992 406.12 61.7873 0.1144 12510 +12512 2 364.126 405.1304 61.7635 0.1144 12511 +12513 2 363.6261 404.102 61.7492 0.1144 12512 +12514 2 363.0381 403.133 61.7408 0.1144 12513 +12515 2 362.2487 402.3105 61.7957 0.1144 12514 +12516 2 361.48 401.4719 61.9153 0.1144 12515 +12517 2 361.0201 400.4503 62.0298 0.1144 12516 +12518 2 360.7696 399.3349 62.1348 0.1144 12517 +12519 2 360.5442 398.2138 62.2182 0.1144 12518 +12520 2 360.3463 397.087 62.2378 0.1144 12519 +12521 2 360.1243 395.9659 62.1874 0.1144 12520 +12522 2 359.9848 394.8344 62.088 0.1144 12521 +12523 2 360.0042 393.6939 61.9833 0.1144 12522 +12524 2 360.4538 392.6837 61.9007 0.1144 12523 +12525 2 361.0944 391.7376 61.8554 0.1144 12524 +12526 2 361.8415 390.8751 61.8481 0.1144 12525 +12527 2 362.4581 389.921 61.8965 0.1144 12526 +12528 2 362.8002 388.8376 61.9676 0.1144 12527 +12529 2 362.918 387.7027 62.0298 0.1144 12528 +12530 2 363.0621 386.5702 62.1382 0.1144 12529 +12531 2 363.1388 385.4308 62.2913 0.1144 12530 +12532 2 363.1777 384.2902 62.4548 0.1144 12531 +12533 2 363.4442 383.1862 62.6184 0.1144 12532 +12534 2 363.9053 382.1463 62.8513 0.1144 12533 +12535 2 364.0631 381.0424 63.2912 0.1144 12534 +12536 2 364.0643 379.9064 63.6202 0.1144 12535 +12537 2 363.8812 378.7807 63.8019 0.1144 12536 +12538 2 363.8423 377.6378 63.8613 0.1144 12537 +12539 2 363.84 376.4938 63.8722 0.1144 12538 +12540 2 363.5094 375.4002 63.9498 0.1144 12539 +12541 2 363.4843 374.0102 64.1245 0.1144 12540 +12542 2 363.466 372.8685 64.2608 0.1144 12541 +12543 2 363.4831 371.7268 64.409 0.1144 12542 +12544 2 363.6742 370.5999 64.5411 0.1144 12543 +12545 2 363.8664 369.4754 64.6556 0.1144 12544 +12546 2 363.8446 368.3337 64.7833 0.1144 12545 +12547 2 363.7314 367.1965 64.9247 0.1144 12546 +12548 2 363.6181 366.0606 65.0756 0.1144 12547 +12549 2 363.506 364.9234 65.2305 0.1144 12548 +12550 2 363.4179 363.7863 65.3836 0.1144 12549 +12551 2 363.5529 362.6549 65.5354 0.1144 12550 +12552 2 363.8195 361.5475 65.672 0.1144 12551 +12553 2 363.8057 360.4058 65.7446 0.1144 12552 +12554 2 363.6479 359.2732 65.742 0.1144 12553 +12555 2 363.4957 358.1395 65.6824 0.1144 12554 +12556 2 363.3756 357.0024 65.5816 0.1144 12555 +12557 2 363.2944 355.8629 65.4553 0.1144 12556 +12558 2 363.2234 354.7224 65.3187 0.1144 12557 +12559 2 363.1628 353.5818 65.1762 0.1144 12558 +12560 2 363.1765 352.4401 65.0647 0.1144 12559 +12561 2 363.2761 351.2995 65.0261 0.1144 12560 +12562 2 363.4145 350.167 65.0292 0.1144 12561 +12563 2 363.7451 349.0767 65.0619 0.1144 12562 +12564 2 364.2816 348.0677 65.1176 0.1144 12563 +12565 2 364.7838 347.0404 65.1384 0.1144 12564 +12566 2 365.0744 345.9731 65.0952 0.1144 12565 +12567 2 364.642 344.9583 65.0124 0.1144 12566 +12568 2 363.7096 344.3818 64.8995 0.1144 12567 +12569 2 362.8905 343.907 64.7335 0.1144 12568 +12570 2 362.696 342.7824 64.589 0.1144 12569 +12571 2 362.5668 341.6464 64.4728 0.1144 12570 +12572 2 362.4364 340.5105 64.372 0.1144 12571 +12573 2 362.3071 339.3745 64.2779 0.1144 12572 +12574 2 362.1927 338.2373 64.1729 0.1144 12573 +12575 2 362.1218 337.0979 64.02 0.1144 12574 +12576 2 362.0646 335.9585 63.8061 0.1144 12575 +12577 2 361.8781 334.8408 63.5793 0.1144 12576 +12578 2 361.544 333.7494 63.3791 0.1144 12577 +12579 2 361.2088 332.658 63.2066 0.1144 12578 +12580 2 360.8851 331.5632 63.0664 0.1144 12579 +12581 2 360.6277 330.4501 62.9793 0.1144 12580 +12582 2 360.4481 329.321 62.9527 0.1144 12581 +12583 2 360.32 328.1861 62.9283 0.1144 12582 +12584 2 360.2639 327.0433 62.8527 0.1144 12583 +12585 2 360.2113 325.9016 62.729 0.1144 12584 +12586 2 360.1575 324.761 62.5626 0.1144 12585 +12587 2 360.106 323.6216 62.3596 0.1144 12586 +12588 2 360.114 322.4833 62.1258 0.1144 12587 +12589 2 360.2159 321.3485 61.8708 0.1144 12588 +12590 2 360.257 320.2148 61.6042 0.1144 12589 +12591 2 360.1712 319.0799 61.3306 0.1144 12590 +12592 2 360.0626 317.9462 61.0498 0.1144 12591 +12593 2 359.9539 316.8136 60.76 0.1144 12592 +12594 2 359.8463 315.6822 60.4587 0.1144 12593 +12595 2 359.7377 314.5497 60.144 0.1144 12594 +12596 2 359.6816 313.4171 59.8046 0.1144 12595 +12597 2 359.8303 312.3051 59.4124 0.1144 12596 +12598 2 360.0786 311.208 58.9666 0.1144 12597 +12599 2 360.2273 310.0892 58.4982 0.1144 12598 +12600 2 360.3657 308.9715 58.011 0.1144 12599 +12601 2 360.32 307.8641 57.5053 0.1144 12600 +12602 2 360.0385 306.7762 56.9834 0.1144 12601 +12603 2 359.7239 305.6974 56.4561 0.1144 12602 +12604 2 359.2801 304.6758 55.9272 0.1144 12603 +12605 2 358.6886 303.7206 55.4014 0.1144 12604 +12606 2 358.0903 302.7676 54.892 0.1144 12605 +12607 2 357.5034 301.8055 54.4118 0.1144 12606 +12608 2 357.1602 300.7565 53.9966 0.1144 12607 +12609 2 357.2392 299.6376 53.692 0.1144 12608 +12610 2 357.5057 298.5279 53.4965 0.1144 12609 +12611 2 357.7563 297.4125 53.3842 0.1144 12610 +12612 2 357.8729 296.2811 53.3324 0.1144 12611 +12613 2 357.7254 295.1566 53.3196 0.1144 12612 +12614 2 357.4359 294.0492 53.3268 0.1144 12613 +12615 2 357.1476 292.9429 53.3428 0.1144 12614 +12616 2 356.8594 291.8355 53.3646 0.1144 12615 +12617 2 356.5608 290.7316 53.396 0.1144 12616 +12618 2 356.2096 289.6436 53.4411 0.1144 12617 +12619 2 355.7771 288.5854 53.5024 0.1144 12618 +12620 2 355.3218 287.5364 53.5816 0.1144 12619 +12621 2 354.9798 286.4507 53.6976 0.1144 12620 +12622 2 354.9809 285.333 53.9003 0.1144 12621 +12623 2 355.1525 284.2085 54.1797 0.1144 12622 +12624 2 355.1388 283.0759 54.4132 0.1144 12623 +12625 2 355.0187 281.9388 54.5504 0.1144 12624 +12626 2 354.9397 280.7994 54.6216 0.1144 12625 +12627 2 355.3172 279.7789 54.7901 0.1144 12626 +12628 2 356.3034 279.2596 55.1177 0.1144 12627 +12629 2 357.1511 278.4931 55.1824 0.1144 12628 +12630 2 357.7002 277.5722 55.0186 0.1144 12629 +12631 2 357.4302 276.4888 54.9564 0.1144 12630 +12632 2 356.9555 275.4523 55.0637 0.1144 12631 +12633 2 356.9726 274.3827 55.3115 0.1144 12632 +12634 2 356.833 273.3233 55.5234 0.1144 12633 +12635 2 356.2713 272.3303 55.5492 0.1144 12634 +12636 2 355.7074 271.3351 55.5979 0.1144 12635 +12637 2 355.1548 270.3352 55.7318 0.1144 12636 +12638 2 354.6034 269.3365 55.9549 0.1144 12637 +12639 2 354.4867 268.2177 56.2481 0.1144 12638 +12640 2 354.6686 267.1011 56.5995 0.1144 12639 +12641 2 354.8882 265.9903 56.9934 0.1144 12640 +12642 2 355.109 264.8806 57.4112 0.1144 12641 +12643 2 355.3058 263.7755 57.9538 0.1144 12642 +12644 2 355.4614 262.6967 58.7941 0.1144 12643 +12645 2 355.3172 262.564 59.631 0.1144 12644 +12646 2 354.5473 261.8524 60.7485 0.1144 12645 +12647 2 353.8003 261.1054 61.8153 0.1144 12646 +12648 2 353.0716 260.2966 62.6766 0.1144 12647 +12649 2 352.3428 259.4649 63.3898 0.1144 12648 +12650 2 351.6404 258.6012 64.0072 0.1144 12649 +12651 2 351.0307 257.662 64.5714 0.1144 12650 +12652 2 350.4678 256.6896 65.1036 0.1144 12651 +12653 2 349.9107 255.7149 65.6452 0.1144 12652 +12654 2 349.3559 254.7425 66.2236 0.1144 12653 +12655 2 348.7999 253.7792 66.8758 0.1144 12654 +12656 2 348.3217 252.8171 67.7634 0.1144 12655 +12657 2 348.324 251.7967 68.8125 0.1144 12656 +12658 2 348.6534 250.7774 69.7942 0.1144 12657 +12659 2 349.4234 250.4536 71.0898 0.1144 12658 +12660 2 349.4234 250.6321 72.1966 0.1144 12659 +12661 2 349.4234 251.0508 74.8017 0.1144 12660 +12662 2 349.357 251.4375 77.4281 0.1144 12661 +12663 2 348.8399 251.4821 79.5514 0.1144 12662 +12664 2 348.0002 251.0794 81.1664 0.1144 12663 +12665 2 347.5552 250.274 82.7548 0.1144 12664 +12666 2 348.1958 249.5075 84.1103 0.1144 12665 +12667 2 348.5574 248.5203 85.213 0.1144 12666 +12668 2 348.9578 247.5158 86.1288 0.1144 12667 +12669 2 349.2632 246.4714 86.9912 0.1144 12668 +12670 2 349.3261 245.3903 87.8763 0.1144 12669 +12671 2 349.6304 244.3355 88.6558 0.1144 12670 +12672 2 349.9485 243.2808 89.4149 0.1144 12671 +12673 2 349.667 242.234 90.2166 0.1144 12672 +12674 2 349.2884 241.2101 91.0493 0.1144 12673 +12675 2 349.0447 240.1611 91.9876 0.1144 12674 +12676 2 348.8639 239.1132 93.0213 0.1144 12675 +12677 2 348.6878 238.0767 94.1256 0.1144 12676 +12678 2 348.6512 237.992 94.6915 0.1144 12677 +12679 2 347.7897 237.7346 96.1853 0.1144 12678 +12680 2 346.8368 237.5241 97.5472 0.1144 12679 +12681 2 346.2545 236.6936 98.8319 0.1144 12680 +12682 2 345.8301 235.7532 100.0392 0.1144 12681 +12683 2 345.5269 234.7568 101.1903 0.1144 12682 +12684 2 345.3999 233.7078 102.2605 0.1144 12683 +12685 2 345.2718 232.6496 103.2763 0.1144 12684 +12686 2 345.0659 231.8179 104.8281 0.1144 12685 +12687 2 344.7856 230.8752 106.2555 0.1144 12686 +12688 2 344.2388 230.0778 107.6452 0.1144 12687 +12689 2 343.4471 229.4384 108.9068 0.1144 12688 +12690 2 342.6886 228.7588 110.1422 0.1144 12689 +12691 2 342.239 227.8917 111.4688 0.1144 12690 +12692 2 342.1441 226.9273 112.9285 0.1144 12691 +12693 2 342.3695 226.0624 114.6169 0.1144 12692 +12694 2 342.9529 225.2902 116.0726 0.1144 12693 +12695 2 343.3705 224.3681 117.3348 0.1144 12694 +12696 2 343.6507 223.3671 118.4952 0.1144 12695 +12697 2 343.9013 222.3433 119.5832 0.1144 12696 +12698 2 343.915 221.3057 120.6976 0.1144 12697 +12699 2 343.6404 220.3035 121.8339 0.1144 12698 +12700 2 343.2709 219.322 122.9536 0.1144 12699 +12701 2 342.8934 218.345 124.0761 0.1144 12700 +12702 2 342.5445 217.3611 125.2222 0.1144 12701 +12703 2 342.6955 216.4208 126.5331 0.1144 12702 +12704 2 342.9758 215.501 128.0434 0.1144 12703 +12705 2 342.7046 214.6693 129.7789 0.1144 12704 +12706 2 342.2631 213.8182 131.2956 0.1144 12705 +12707 2 341.7277 212.9178 132.4212 0.1144 12706 +12708 2 341.1763 211.9981 133.3984 0.1144 12707 +12709 2 340.6283 211.06 134.2788 0.1144 12708 +12710 2 340.1169 210.1002 135.1442 0.1144 12709 +12711 2 340.1055 209.0282 136.0892 0.1144 12710 +12712 2 340.1123 207.9563 137.0673 0.1144 12711 +12713 2 340.1192 206.8867 138.0582 0.1144 12712 +12714 2 340.1261 205.8331 139.1158 0.1144 12713 +12715 2 340.1318 204.9156 140.7896 0.1144 12714 +12716 2 344.9011 233.3852 103.8237 0.1144 12685 +12717 2 344.7364 234.4125 104.7766 0.1144 12716 +12718 2 345.1608 235.41 105.4206 0.1144 12717 +12719 2 345.7877 236.3355 106.006 0.1144 12718 +12720 2 346.3609 237.2999 106.5333 0.1144 12719 +12721 2 346.6183 238.3867 106.9827 0.1144 12720 +12722 2 346.7109 239.517 107.319 0.1144 12721 +12723 2 346.7819 240.6553 107.548 0.1144 12722 +12724 2 346.8539 241.7958 107.6771 0.1144 12723 +12725 2 347.0381 242.9227 107.595 0.1144 12724 +12726 2 347.3287 244.0163 107.2198 0.1144 12725 +12727 2 347.6444 245.0848 106.5795 0.1144 12726 +12728 2 347.7783 246.1694 105.7636 0.1144 12727 +12729 2 348.4773 246.9827 104.8603 0.1144 12728 +12730 2 349.5057 247.3625 104.0592 0.1144 12729 +12731 2 350.5376 247.7446 103.3012 0.1144 12730 +12732 2 351.5043 248.1016 102.0866 0.1144 12731 +12733 2 348.7759 237.475 93.5158 0.1144 12677 +12734 2 348.9234 236.4511 92.3213 0.1144 12733 +12735 2 349.0802 235.3803 91.4816 0.1144 12734 +12736 2 349.2403 234.2798 90.8219 0.1144 12735 +12737 2 349.4222 233.1815 90.1802 0.1144 12736 +12738 2 349.6636 232.081 89.7058 0.1144 12737 +12739 2 349.9313 230.9747 89.425 0.1144 12738 +12740 2 350.2036 229.8651 89.3183 0.1144 12739 +12741 2 350.4747 228.7542 89.3402 0.1144 12740 +12742 2 350.747 227.6434 89.4387 0.1144 12741 +12743 2 351.0318 226.5372 89.5698 0.1144 12742 +12744 2 351.391 225.4527 89.7148 0.1144 12743 +12745 2 351.7422 224.3647 89.8234 0.1144 12744 +12746 2 352.0568 223.2653 89.8652 0.1144 12745 +12747 2 352.36 222.1625 89.8456 0.1144 12746 +12748 2 352.662 221.0597 89.7831 0.1144 12747 +12749 2 352.964 219.9569 89.6983 0.1144 12748 +12750 2 353.2672 218.8541 89.6274 0.1144 12749 +12751 2 353.5692 217.7501 89.5868 0.1144 12750 +12752 2 353.8712 216.6473 89.5812 0.1144 12751 +12753 2 354.1515 215.5388 89.6333 0.1144 12752 +12754 2 355.0507 214.9427 89.801 0.1144 12753 +12755 2 356.0597 214.6522 90.8681 0.1144 12754 +12756 2 349.7059 249.6906 71.629 0.1144 12659 +12757 2 350.1807 248.6576 71.4762 0.1144 12756 +12758 2 350.9083 247.8053 71.1418 0.1144 12757 +12759 2 351.812 247.1189 70.8341 0.1144 12758 +12760 2 352.6758 246.3833 70.5261 0.1144 12759 +12761 2 353.3038 245.4589 70.091 0.1144 12760 +12762 2 353.5315 244.3916 69.3874 0.1144 12761 +12763 2 353.2661 243.37 68.357 0.1144 12762 +12764 2 352.9114 242.3896 67.2151 0.1144 12763 +12765 2 352.6803 241.3382 66.2978 0.1144 12764 +12766 2 352.5568 240.2297 65.6914 0.1144 12765 +12767 2 352.4515 239.0994 65.3635 0.1144 12766 +12768 2 352.3497 237.9612 65.3187 0.1144 12767 +12769 2 352.2673 236.8286 65.6177 0.1144 12768 +12770 2 352.1838 235.7143 66.2049 0.1144 12769 +12771 2 352.0019 234.6298 66.9312 0.1144 12770 +12772 2 351.6702 233.5773 67.6735 0.1144 12771 +12773 2 351.248 232.5946 68.5952 0.1144 12772 +12774 2 350.6898 231.779 69.9924 0.1144 12773 +12775 2 349.9816 231.3465 71.2754 0.1144 12774 +12776 2 348.9875 231.8739 71.6234 0.1144 12775 +12777 2 348.0117 232.4574 71.358 0.1144 12776 +12778 2 347.0873 233.106 70.9276 0.1144 12777 +12779 2 346.2076 233.8267 70.6342 0.1144 12778 +12780 2 345.3301 234.5589 70.5331 0.1144 12779 +12781 2 344.4538 235.2933 70.6507 0.1144 12780 +12782 2 343.5798 236.0232 70.9223 0.1144 12781 +12783 2 342.7092 236.7508 71.2715 0.1144 12782 +12784 2 341.9771 237.6202 71.5873 0.1144 12783 +12785 2 341.3044 238.5389 71.8368 0.1144 12784 +12786 2 340.6317 239.4609 72.035 0.1144 12785 +12787 2 339.9613 240.3853 72.1991 0.1144 12786 +12788 2 339.2898 241.3108 72.3486 0.1144 12787 +12789 2 338.6183 242.234 72.5063 0.1144 12788 +12790 2 337.9468 243.1572 72.6956 0.1144 12789 +12791 2 336.8977 243.5805 72.8966 0.1144 12790 +12792 2 335.8086 243.918 73.127 0.1144 12791 +12793 2 334.8042 244.4408 73.5134 0.1144 12792 +12794 2 333.9164 245.1134 74.1482 0.1144 12793 +12795 2 333.0504 245.777 74.9834 0.1144 12794 +12796 2 332.2004 246.429 75.9685 0.1144 12795 +12797 2 331.3653 247.0697 77.0661 0.1144 12796 +12798 2 331.7989 246.1122 78.7346 0.1144 12797 +12799 2 332.1833 245.2587 80.3466 0.1144 12798 +12800 2 332.5619 244.4213 82.0106 0.1144 12799 +12801 2 332.6409 243.6182 83.7869 0.1144 12800 +12802 2 331.9453 243.0908 85.3742 0.1144 12801 +12803 2 331.4465 242.4754 87.0531 0.1144 12802 +12804 2 332.1055 241.8336 88.4551 0.1144 12803 +12805 2 332.5345 240.9321 89.7333 0.1144 12804 +12806 2 331.8172 240.2675 90.8684 0.1144 12805 +12807 2 330.9672 239.6417 91.9492 0.1144 12806 +12808 2 330.028 239.1578 93.0143 0.1144 12807 +12809 2 330.4387 238.9107 94.9312 0.1144 12808 +12810 2 331.482 238.8535 96.0299 0.1144 12809 +12811 2 332.4739 238.4794 96.845 0.1144 12810 +12812 2 333.0298 237.5985 97.5344 0.1144 12811 +12813 2 333.0664 236.5003 98.1098 0.1144 12812 +12814 2 332.936 235.3872 98.6815 0.1144 12813 +12815 2 332.8948 234.2878 99.4207 0.1144 12814 +12816 2 332.9177 233.1747 100.06 0.1144 12815 +12817 2 332.9429 232.0467 100.5309 0.1144 12816 +12818 2 332.9692 230.9118 100.8742 0.1144 12817 +12819 2 332.9944 229.7724 101.1142 0.1144 12818 +12820 2 333.1225 228.6398 101.3197 0.1144 12819 +12821 2 333.317 227.5164 101.5406 0.1144 12820 +12822 2 333.3605 226.377 101.6977 0.1144 12821 +12823 2 333.7059 225.2936 101.8189 0.1144 12822 +12824 2 334.4495 224.4391 102.0116 0.1144 12823 +12825 2 335.2446 223.6234 102.2795 0.1144 12824 +12826 2 336.0809 222.8569 102.6312 0.1144 12825 +12827 2 336.9389 222.1213 103.0632 0.1144 12826 +12828 2 337.7957 221.3915 103.5591 0.1144 12827 +12829 2 338.6515 220.6627 104.0785 0.1144 12828 +12830 2 339.5083 219.9329 104.5867 0.1144 12829 +12831 2 340.2645 219.0977 105.0692 0.1144 12830 +12832 2 340.6786 218.0487 105.5166 0.1144 12831 +12833 2 341.3913 217.1644 105.8291 0.1144 12832 +12834 2 342.2207 216.3784 105.999 0.1144 12833 +12835 2 342.2516 216.3247 106.6685 0.1144 12834 +12836 2 342.739 215.5021 108.2066 0.1144 12835 +12837 2 343.2972 214.5606 109.0001 0.1144 12836 +12838 2 343.8521 213.6237 109.8628 0.1144 12837 +12839 2 344.4023 212.6913 110.7646 0.1144 12838 +12840 2 344.948 211.7716 111.7323 0.1144 12839 +12841 2 345.4297 210.957 113.3048 0.1144 12840 +12842 2 343.0753 215.5719 105.9103 0.1144 12834 +12843 2 343.4666 214.5046 105.7171 0.1144 12842 +12844 2 344.0157 213.5379 105.4449 0.1144 12843 +12845 2 345.1151 213.2862 105.1414 0.1144 12844 +12846 2 346.0165 212.6113 104.6755 0.1144 12845 +12847 2 346.9889 212.1285 103.8579 0.1144 12846 +12848 2 348.0689 211.9168 103.1484 0.1144 12847 +12849 2 349.103 211.5473 102.6228 0.1144 12848 +12850 2 350.0079 210.8792 102.1686 0.1144 12849 +12851 2 350.8923 210.1688 101.8133 0.1144 12850 +12852 2 351.8097 209.4927 101.5686 0.1144 12851 +12853 2 352.7364 208.8246 101.4034 0.1144 12852 +12854 2 353.6768 208.176 101.2788 0.1144 12853 +12855 2 354.6926 207.6669 101.2057 0.1144 12854 +12856 2 355.7851 207.3363 101.2035 0.1144 12855 +12857 2 356.896 207.0629 101.2463 0.1144 12856 +12858 2 357.9176 206.5835 101.1998 0.1144 12857 +12859 2 358.6932 205.7736 100.8759 0.1144 12858 +12860 2 359.6381 205.1764 100.4475 0.1144 12859 +12861 2 360.6975 204.7749 100.0835 0.1144 12860 +12862 2 361.7648 204.3848 99.7704 0.1144 12861 +12863 2 362.8356 203.9935 99.5168 0.1144 12862 +12864 2 363.9075 203.6023 99.3322 0.1144 12863 +12865 2 364.9818 203.211 99.2006 0.1144 12864 +12866 2 366.0548 202.8186 99.0844 0.1144 12865 +12867 2 367.129 202.4274 98.9696 0.1144 12866 +12868 2 368.2021 202.0338 98.8548 0.1144 12867 +12869 2 369.2763 201.6426 98.7403 0.1144 12868 +12870 2 370.3494 201.2502 98.6255 0.1144 12869 +12871 2 371.4236 200.8589 98.5107 0.1144 12870 +12872 2 372.4978 200.4677 98.3959 0.1144 12871 +12873 2 373.5709 200.0742 98.2814 0.1144 12872 +12874 2 374.6451 199.6829 98.1669 0.1144 12873 +12875 2 375.7182 199.2905 98.0521 0.1144 12874 +12876 2 376.7924 198.8981 97.9376 0.1144 12875 +12877 2 377.8666 198.5069 97.823 0.1144 12876 +12878 2 378.9397 198.1145 97.7088 0.1144 12877 +12879 2 380.0139 197.7232 97.5946 0.1144 12878 +12880 2 381.087 197.3308 97.4809 0.1144 12879 +12881 2 382.1612 196.9385 97.3675 0.1144 12880 +12882 2 383.2354 196.5472 97.2544 0.1144 12881 +12883 2 384.3085 196.1548 97.1418 0.1144 12882 +12884 2 385.3827 195.7636 97.0306 0.1144 12883 +12885 2 386.4558 195.3712 96.9206 0.1144 12884 +12886 2 387.53 194.9788 96.8125 0.1144 12885 +12887 2 388.6042 194.5875 96.707 0.1144 12886 +12888 2 389.6784 194.1951 96.605 0.1144 12887 +12889 2 390.7515 193.8028 96.5087 0.1144 12888 +12890 2 391.8257 193.4115 96.42 0.1144 12889 +12891 2 392.8999 193.0191 96.341 0.1144 12890 +12892 2 393.9742 192.6267 96.2746 0.1144 12891 +12893 2 395.0575 192.2584 96.2242 0.1144 12892 +12894 2 396.1947 192.1806 96.22 0.1144 12893 +12895 2 397.3375 192.1337 96.2536 0.1144 12894 +12896 2 398.4804 192.0868 96.3124 0.1144 12895 +12897 2 399.6232 192.0398 96.3819 0.1144 12896 +12898 2 400.7661 191.9929 96.448 0.1144 12897 +12899 2 401.9089 191.946 96.4956 0.1144 12898 +12900 2 403.0518 191.8991 96.5124 0.1144 12899 +12901 2 404.1946 191.8522 96.4919 0.1144 12900 +12902 2 405.3318 191.7401 96.3634 0.1144 12901 +12903 2 406.4643 191.612 96.1293 0.1144 12902 +12904 2 407.5935 191.4839 95.8157 0.1144 12903 +12905 2 408.7203 191.3557 95.4467 0.1144 12904 +12906 2 409.846 191.2276 95.0454 0.1144 12905 +12907 2 410.9694 191.0995 94.6322 0.1144 12906 +12908 2 412.0951 190.9725 94.2276 0.1144 12907 +12909 2 413.2197 190.8444 93.8384 0.1144 12908 +12910 2 414.3465 190.7162 93.469 0.1144 12909 +12911 2 415.4745 190.5881 93.1232 0.1144 12910 +12912 2 416.5945 190.3856 92.8404 0.1144 12911 +12913 2 417.7099 190.1454 92.6274 0.1144 12912 +12914 2 418.8264 189.9029 92.4692 0.1144 12913 +12915 2 419.943 189.6615 92.3504 0.1144 12914 +12916 2 421.0606 189.4201 92.258 0.1144 12915 +12917 2 422.1783 189.1776 92.1799 0.1144 12916 +12918 2 423.296 188.935 92.1043 0.1144 12917 +12919 2 424.4137 188.6925 92.0284 0.1144 12918 +12920 2 425.5314 188.4511 91.9512 0.1144 12919 +12921 2 426.6491 188.2086 91.8719 0.1144 12920 +12922 2 427.7668 187.9661 91.7902 0.1144 12921 +12923 2 428.8833 187.7235 91.705 0.1144 12922 +12924 2 430.001 187.4822 91.6143 0.1144 12923 +12925 2 431.1187 187.2396 91.5166 0.1144 12924 +12926 2 432.2352 186.9971 91.4105 0.1144 12925 +12927 2 433.3575 186.7809 91.2909 0.1144 12926 +12928 2 434.4981 186.718 91.1445 0.1144 12927 +12929 2 435.6386 186.663 90.9731 0.1144 12928 +12930 2 436.7792 186.607 90.7774 0.1144 12929 +12931 2 437.9175 186.5521 90.5598 0.1144 12930 +12932 2 439.0558 186.4972 90.3106 0.1144 12931 +12933 2 440.1929 186.4411 90.0421 0.1144 12932 +12934 2 441.2065 186.9376 89.7042 0.1144 12933 +12935 2 442.1274 187.5988 89.329 0.1144 12934 +12936 2 443.046 188.2601 88.9246 0.1144 12935 +12937 2 443.9315 188.8961 88.0785 0.1144 12936 +12938 2 331.0667 247.1738 76.0735 0.1144 12797 +12939 2 330.2682 247.4529 74.1994 0.1144 12938 +12940 2 329.321 247.8064 72.9739 0.1144 12939 +12941 2 328.3555 248.2251 71.8794 0.1144 12940 +12942 2 327.4036 248.6415 70.7109 0.1144 12941 +12943 2 326.437 249.0408 69.5738 0.1144 12942 +12944 2 325.468 249.4412 68.4536 0.1144 12943 +12945 2 324.5528 249.9079 67.2269 0.1144 12944 +12946 2 323.6536 250.3919 65.9672 0.1144 12945 +12947 2 322.751 250.8758 64.7195 0.1144 12946 +12948 2 321.7992 251.3437 63.6703 0.1144 12947 +12949 2 320.8234 251.8116 62.7598 0.1144 12948 +12950 2 320.28 251.4523 61.9867 0.1144 12949 +12951 2 319.4574 250.6939 61.4048 0.1144 12950 +12952 2 318.5479 250.0487 61.0481 0.1144 12951 +12953 2 317.5 249.5968 61.087 0.1144 12952 +12954 2 316.4464 249.1758 61.4261 0.1144 12953 +12955 2 315.3928 248.8051 62.0138 0.1144 12954 +12956 2 314.3369 248.4894 62.7592 0.1144 12955 +12957 2 313.2592 248.2217 63.4315 0.1144 12956 +12958 2 312.1656 247.9677 63.9719 0.1144 12957 +12959 2 311.0639 247.7149 64.3952 0.1144 12958 +12960 2 309.9565 247.4598 64.7242 0.1144 12959 +12961 2 308.8468 247.2047 64.9821 0.1144 12960 +12962 2 307.7349 246.9484 65.1991 0.1144 12961 +12963 2 306.624 246.6933 65.408 0.1144 12962 +12964 2 305.4995 246.4977 65.5892 0.1144 12963 +12965 2 304.3669 246.3501 65.7395 0.1144 12964 +12966 2 303.2332 246.2117 65.8871 0.1144 12965 +12967 2 302.1018 246.0641 66.0806 0.1144 12966 +12968 2 301.0047 245.8136 66.5384 0.1144 12967 +12969 2 299.9442 245.523 67.3081 0.1144 12968 +12970 2 298.9135 245.2187 68.2637 0.1144 12969 +12971 2 297.9228 244.8492 69.2902 0.1144 12970 +12972 2 297.1906 244.0541 70.196 0.1144 12971 +12973 2 296.5706 243.1366 70.8949 0.1144 12972 +12974 2 295.9631 242.2397 71.797 0.1144 12973 +12975 2 320.3589 252.1548 62.2107 0.1144 12949 +12976 2 319.4654 252.816 62.5411 0.1144 12975 +12977 2 318.5525 253.4921 62.8463 0.1144 12976 +12978 2 317.6373 254.1693 63.1266 0.1144 12977 +12979 2 316.7233 254.8454 63.4192 0.1144 12978 +12980 2 315.7234 255.3934 63.6289 0.1144 12979 +12981 2 314.6412 255.7549 63.686 0.1144 12980 +12982 2 313.5475 256.0878 63.6054 0.1144 12981 +12983 2 312.4458 256.3944 63.5337 0.1144 12982 +12984 2 311.3362 256.6724 63.5975 0.1144 12983 +12985 2 310.2288 256.9481 63.7857 0.1144 12984 +12986 2 309.1557 257.2147 64.5053 0.1144 12985 +12987 2 355.4545 262.453 58.8235 0.1144 12644 +12988 2 355.4225 261.3125 58.6659 0.1144 12987 +12989 2 355.3905 260.1708 58.5578 0.1144 12988 +12990 2 355.3596 259.0279 58.4545 0.1144 12989 +12991 2 355.3275 257.8851 58.3408 0.1144 12990 +12992 2 355.2955 256.7422 58.2246 0.1144 12991 +12993 2 355.2635 255.5993 58.1118 0.1144 12992 +12994 2 355.2326 254.4565 58.0084 0.1144 12993 +12995 2 355.109 253.3205 57.9208 0.1144 12994 +12996 2 354.926 252.1925 57.8584 0.1144 12995 +12997 2 354.8242 251.0531 57.8416 0.1144 12996 +12998 2 354.7418 249.9125 57.8542 0.1144 12997 +12999 2 354.5382 248.788 57.8438 0.1144 12998 +13000 2 353.6973 248.0707 57.6366 0.1144 12999 +13001 2 352.7718 247.4175 57.2499 0.1144 13000 +13002 2 352.1369 246.5537 56.9388 0.1144 13001 +13003 2 351.5924 245.5573 56.6149 0.1144 13002 +13004 2 351.1233 244.5231 56.2654 0.1144 13003 +13005 2 350.7207 243.4569 56.037 0.1144 13004 +13006 2 350.3283 242.3827 55.93 0.1144 13005 +13007 2 349.9359 241.3085 55.8978 0.1144 13006 +13008 2 349.4508 240.272 55.9056 0.1144 13007 +13009 2 348.6912 239.4186 55.9647 0.1144 13008 +13010 2 347.6948 240.1267 55.8575 0.1144 13009 +13011 2 346.7281 240.7319 55.6492 0.1144 13010 +13012 2 345.7443 241.3028 55.3554 0.1144 13011 +13013 2 344.7593 241.8656 54.994 0.1144 13012 +13014 2 343.6576 242.0464 54.5672 0.1144 13013 +13015 2 342.6017 241.702 54.0882 0.1144 13014 +13016 2 341.7231 241.0145 53.536 0.1144 13015 +13017 2 340.9017 240.2583 52.9357 0.1144 13016 +13018 2 340.2016 239.3854 52.3516 0.1144 13017 +13019 2 339.9236 238.2963 51.8893 0.1144 13018 +13020 2 339.8035 237.1695 51.5278 0.1144 13019 +13021 2 340.0574 236.0644 51.2134 0.1144 13020 +13022 2 340.3606 234.9673 50.9345 0.1144 13021 +13023 2 340.666 233.8702 50.6752 0.1144 13022 +13024 2 340.9543 232.7697 50.3835 0.1144 13023 +13025 2 341.0447 231.6394 50.0178 0.1144 13024 +13026 2 341.4119 231.3626 49.8618 0.1144 13025 +13027 2 342.2173 230.5629 49.6171 0.1144 13026 +13028 2 342.8648 229.626 49.4788 0.1144 13027 +13029 2 343.391 228.6124 49.4001 0.1144 13028 +13030 2 343.7262 227.5233 49.3702 0.1144 13029 +13031 2 343.947 226.4022 49.3587 0.1144 13030 +13032 2 344.1678 225.2799 49.331 0.1144 13031 +13033 2 344.4801 224.1805 49.3511 0.1144 13032 +13034 2 344.789 223.0789 49.4253 0.1144 13033 +13035 2 344.9194 221.9474 49.5197 0.1144 13034 +13036 2 344.7764 220.8195 49.6255 0.1144 13035 +13037 2 344.3932 219.7498 49.845 0.1144 13036 +13038 2 343.9665 218.6939 50.0909 0.1144 13037 +13039 2 343.7434 217.5774 50.286 0.1144 13038 +13040 2 343.9905 216.4757 50.4409 0.1144 13039 +13041 2 344.3943 215.4072 50.5618 0.1144 13040 +13042 2 345.0201 214.4542 50.6601 0.1144 13041 +13043 2 345.226 213.3411 50.7424 0.1144 13042 +13044 2 345.3747 212.2086 50.8603 0.1144 13043 +13045 2 345.6379 211.0977 51.0306 0.1144 13044 +13046 2 345.9868 210.0109 51.235 0.1144 13045 +13047 2 346.251 208.9024 51.4478 0.1144 13046 +13048 2 346.2659 207.7618 51.6354 0.1144 13047 +13049 2 346.1687 206.6247 51.8045 0.1144 13048 +13050 2 345.8747 205.523 52.0019 0.1144 13049 +13051 2 345.5429 204.4317 52.2222 0.1144 13050 +13052 2 344.9663 203.4478 52.4014 0.1144 13051 +13053 2 344.2971 202.5212 52.5274 0.1144 13052 +13054 2 343.6027 201.6128 52.6078 0.1144 13053 +13055 2 342.9895 200.6473 52.6453 0.1144 13054 +13056 2 342.2608 199.7664 52.645 0.1144 13055 +13057 2 341.5412 198.8764 52.621 0.1144 13056 +13058 2 341.0092 197.864 52.5868 0.1144 13057 +13059 2 340.5459 196.8183 52.5157 0.1144 13058 +13060 2 340.0918 195.7693 52.4082 0.1144 13059 +13061 2 339.5872 194.7431 52.3183 0.1144 13060 +13062 2 339.0667 193.725 52.2508 0.1144 13061 +13063 2 338.6332 192.6668 52.204 0.1144 13062 +13064 2 338.2465 191.5903 52.1766 0.1144 13063 +13065 2 338.0612 190.4611 52.166 0.1144 13064 +13066 2 338.1973 189.3263 52.1651 0.1144 13065 +13067 2 338.7659 188.3333 52.1651 0.1144 13066 +13068 2 339.1857 187.2694 52.1651 0.1144 13067 +13069 2 341.1305 231.3717 49.3511 0.1144 13025 +13070 2 341.2769 230.3627 48.1698 0.1144 13069 +13071 2 341.4417 229.2576 47.6073 0.1144 13070 +13072 2 341.7849 228.1834 47.1859 0.1144 13071 +13073 2 341.8615 227.0646 46.7292 0.1144 13072 +13074 2 341.1408 226.2615 46.1874 0.1144 13073 +13075 2 340.3286 225.4767 45.747 0.1144 13074 +13076 2 339.6502 224.5638 45.4507 0.1144 13075 +13077 2 339.2109 223.5136 45.2088 0.1144 13076 +13078 2 338.5416 222.5881 45.1167 0.1144 13077 +13079 2 337.5738 221.9829 45.213 0.1144 13078 +13080 2 336.6575 221.3057 45.453 0.1144 13079 +13081 2 335.7663 220.5998 45.7744 0.1144 13080 +13082 2 334.8305 219.9626 46.1664 0.1144 13081 +13083 2 333.8821 219.4547 47.117 0.1144 13082 +13084 2 348.6592 238.3215 56.4334 0.1144 13009 +13085 2 348.4418 237.2027 56.5278 0.1144 13084 +13086 2 348.0986 236.1124 56.588 0.1144 13085 +13087 2 347.7428 235.0256 56.6829 0.1144 13086 +13088 2 347.3516 233.9526 56.8523 0.1144 13087 +13089 2 346.942 232.8875 57.0119 0.1144 13088 +13090 2 346.5313 231.8224 56.9237 0.1144 13089 +13091 2 346.1241 230.7791 56.3926 0.1144 13090 +13092 2 346.0085 229.6843 55.6982 0.1144 13091 +13093 2 346.092 228.5746 55.0572 0.1144 13092 +13094 2 345.8701 227.4833 54.4779 0.1144 13093 +13095 2 345.2855 226.5234 54.0445 0.1144 13094 +13096 2 344.9286 225.4469 53.7541 0.1144 13095 +13097 2 344.8256 224.3144 53.536 0.1144 13096 +13098 2 344.9126 223.1784 53.305 0.1144 13097 +13099 2 345.0819 222.0504 53.0788 0.1144 13098 +13100 2 345.3713 220.9476 52.8917 0.1144 13099 +13101 2 346.036 220.0255 52.7414 0.1144 13100 +13102 2 345.7317 218.9582 52.6201 0.1144 13101 +13103 2 345.1574 217.9698 52.5392 0.1144 13102 +13104 2 344.6357 216.9539 52.4087 0.1144 13103 +13105 2 344.5934 215.8145 52.1651 0.1144 13104 +13106 2 352.6689 247.4586 56.6328 0.1144 13001 +13107 2 351.6702 247.8625 55.7519 0.1144 13106 +13108 2 350.6211 248.2869 55.3515 0.1144 13107 +13109 2 349.5298 248.5832 54.9214 0.1144 13108 +13110 2 348.4155 248.7628 54.4771 0.1144 13109 +13111 2 347.2921 248.8909 54.0436 0.1144 13110 +13112 2 346.1595 248.8783 53.6556 0.1144 13111 +13113 2 345.0247 248.9355 53.3226 0.1144 13112 +13114 2 343.9013 249.1106 53.0286 0.1144 13113 +13115 2 342.7767 249.2879 52.7629 0.1144 13114 +13116 2 341.651 249.4664 52.5168 0.1144 13115 +13117 2 340.5276 249.6608 52.2824 0.1144 13116 +13118 2 340.0025 250.6527 51.9445 0.1144 13117 +13119 2 339.5186 251.6217 51.0432 0.1144 13118 +13120 2 362.9901 375.2629 62.9773 0.1144 12540 +13121 2 362.028 375.0124 61.668 0.1144 13120 +13122 2 360.9537 374.8636 60.8199 0.1144 13121 +13123 2 359.8566 374.8408 60.027 0.1144 13122 +13124 2 358.7664 374.8796 59.1968 0.1144 13123 +13125 2 357.7311 375.1268 58.2439 0.1144 13124 +13126 2 356.7976 375.0192 56.9246 0.1144 13125 +13127 2 356.5024 374.9643 54.7845 0.1144 13126 +13128 2 355.4568 374.7378 53.8328 0.1144 13127 +13129 2 354.529 374.1818 53.3383 0.1144 13128 +13130 2 354.2064 373.1579 52.449 0.1144 13129 +13131 2 354.4272 372.3022 50.9617 0.1144 13130 +13132 2 355.0061 372.9863 49.677 0.1144 13131 +13133 2 354.8619 374.0514 48.7236 0.1144 13132 +13134 2 354.7064 375.1405 47.9503 0.1144 13133 +13135 2 354.7269 376.2627 47.416 0.1144 13134 +13136 2 354.7738 377.3976 47.0716 0.1144 13135 +13137 2 354.5897 378.5164 46.7208 0.1144 13136 +13138 2 353.9605 379.4591 46.3523 0.1144 13137 +13139 2 353.3187 380.3914 45.9603 0.1144 13138 +13140 2 352.598 381.2586 45.5487 0.1144 13139 +13141 2 351.4906 381.4828 45.1248 0.1144 13140 +13142 2 350.4175 381.7002 44.3122 0.1144 13141 +13143 2 357.0252 374.4895 56.287 0.1144 13126 +13144 2 357.1957 373.3844 55.7606 0.1144 13143 +13145 2 357.1682 372.2462 55.5307 0.1144 13144 +13146 2 357.1465 371.1022 55.5601 0.1144 13145 +13147 2 357.0538 369.9696 55.8522 0.1144 13146 +13148 2 356.5688 368.9983 56.6387 0.1144 13147 +13149 2 355.8698 368.1918 57.6279 0.1144 13148 +13150 2 355.2212 367.2869 58.2263 0.1144 13149 +13151 2 354.6308 366.3157 58.4892 0.1144 13150 +13152 2 353.7934 365.5938 58.5796 0.1144 13151 +13153 2 352.7089 365.2598 58.5698 0.1144 13152 +13154 2 351.5832 365.3295 58.5178 0.1144 13153 +13155 2 350.4941 365.6727 58.4926 0.1144 13154 +13156 2 349.4325 366.0983 58.5208 0.1144 13155 +13157 2 348.4109 366.6108 58.6174 0.1144 13156 +13158 2 347.4168 367.1737 58.7121 0.1144 13157 +13159 2 346.3185 367.4745 58.7924 0.1144 13158 +13160 2 345.3507 367.6072 59.1321 0.1144 13159 +13161 2 345.3301 368.7341 59.3737 0.1144 13160 +13162 2 344.9538 369.7969 59.4908 0.1144 13161 +13163 2 344.384 370.7876 59.5851 0.1144 13162 +13164 2 343.7869 371.7622 59.6635 0.1144 13163 +13165 2 343.1748 372.7278 59.7307 0.1144 13164 +13166 2 342.5868 373.7082 59.8349 0.1144 13165 +13167 2 342.0869 374.7332 60.0135 0.1144 13166 +13168 2 341.5664 375.7468 60.2174 0.1144 13167 +13169 2 340.9349 376.6952 60.4128 0.1144 13168 +13170 2 340.0448 377.377 60.5377 0.1144 13169 +13171 2 338.9432 377.5555 60.6057 0.1144 13170 +13172 2 337.8175 377.7316 60.5374 0.1144 13171 +13173 2 336.7524 378.1195 60.2182 0.1144 13172 +13174 2 335.7079 378.5359 59.6966 0.1144 13173 +13175 2 334.6749 378.9454 59.0366 0.1144 13174 +13176 2 333.6499 379.355 58.2985 0.1144 13175 +13177 2 332.6283 379.7611 57.5274 0.1144 13176 +13178 2 331.6044 380.1684 56.7736 0.1144 13177 +13179 2 330.576 380.5791 56.0703 0.1144 13178 +13180 2 329.5532 381.0046 55.4322 0.1144 13179 +13181 2 329.0419 381.9713 54.924 0.1144 13180 +13182 2 329.17 383.1016 54.6627 0.1144 13181 +13183 2 329.3873 384.2238 54.5485 0.1144 13182 +13184 2 329.7008 385.3232 54.5664 0.1144 13183 +13185 2 329.7569 386.3677 54.558 0.1144 13184 +13186 2 328.8886 386.7109 53.9174 0.1144 13185 +13187 2 328.6403 387.6982 53.0074 0.1144 13186 +13188 2 328.3772 388.6488 52.0318 0.1144 13187 +13189 2 327.3339 388.4692 51.0983 0.1144 13188 +13190 2 326.5731 387.7359 50.1421 0.1144 13189 +13191 2 326.1807 386.7692 49.0857 0.1144 13190 +13192 2 325.4131 386.1446 48.0872 0.1144 13191 +13193 2 325.1008 386.1137 46.3529 0.1144 13192 +13194 2 325.3467 386.8836 44.8879 0.1144 13193 +13195 2 324.991 387.8938 43.9396 0.1144 13194 +13196 2 324.3766 388.8067 43.1864 0.1144 13195 +13197 2 323.8241 389.7768 42.5762 0.1144 13196 +13198 2 323.5976 390.8636 41.9602 0.1144 13197 +13199 2 324.2359 391.7514 41.3126 0.1144 13198 +13200 2 324.2817 392.8313 40.6445 0.1144 13199 +13201 2 323.4603 393.393 39.2641 0.1144 13200 +13202 2 371.2966 430.1566 68.3337 0.1144 12487 +13203 2 371.4042 429.0641 68.8201 0.1144 13202 +13204 2 371.7016 427.9681 69.1634 0.1144 13203 +13205 2 371.5941 426.8458 69.4966 0.1144 13204 +13206 2 371.4454 425.7224 69.8874 0.1144 13205 +13207 2 371.3424 424.5967 70.3035 0.1144 13206 +13208 2 371.5483 423.4905 70.7638 0.1144 13207 +13209 2 371.8103 422.3968 71.2678 0.1144 13208 +13210 2 371.8641 421.2746 71.7959 0.1144 13209 +13211 2 371.7691 420.1649 72.4052 0.1144 13210 +13212 2 371.4877 419.0792 72.9529 0.1144 13211 +13213 2 371.1022 418.0222 73.4012 0.1144 13212 +13214 2 370.5038 417.0578 73.7307 0.1144 13213 +13215 2 369.8403 416.1311 73.9505 0.1144 13214 +13216 2 369.3118 415.1267 74.088 0.1144 13215 +13217 2 369.0979 414.0067 74.1891 0.1144 13216 +13218 2 368.908 412.9279 74.2913 0.1144 13217 +13219 2 368.0717 412.15 74.366 0.1144 13218 +13220 2 367.3864 411.2852 74.3719 0.1144 13219 +13221 2 367.0513 410.1926 74.3618 0.1144 13220 +13222 2 366.7367 409.0955 74.4047 0.1144 13221 +13223 2 366.1647 408.1323 74.5195 0.1144 13222 +13224 2 365.6499 407.153 74.6208 0.1144 13223 +13225 2 365.2312 406.1006 74.65 0.1144 13224 +13226 2 364.8491 405.0389 74.5721 0.1144 13225 +13227 2 364.6923 403.9086 74.4313 0.1144 13226 +13228 2 364.2839 402.8756 74.333 0.1144 13227 +13229 2 363.7897 401.8517 74.3453 0.1144 13228 +13230 2 363.3218 400.8096 74.4142 0.1144 13229 +13231 2 362.8642 399.7616 74.4965 0.1144 13230 +13232 2 362.4512 398.6954 74.5833 0.1144 13231 +13233 2 361.8289 397.7528 74.655 0.1144 13232 +13234 2 361.1722 396.8193 74.7222 0.1144 13233 +13235 2 360.6838 395.7908 74.8023 0.1144 13234 +13236 2 360.2925 394.7155 74.8552 0.1144 13235 +13237 2 359.7823 393.6962 74.8756 0.1144 13236 +13238 2 359.2171 392.702 74.8689 0.1144 13237 +13239 2 358.4438 391.8783 74.9535 0.1144 13238 +13240 2 357.7368 390.9837 75.1117 0.1144 13239 +13241 2 357.0264 390.0926 75.3234 0.1144 13240 +13242 2 356.602 389.0378 75.5353 0.1144 13241 +13243 2 356.3446 387.9258 75.7117 0.1144 13242 +13244 2 355.903 386.8745 75.8988 0.1144 13243 +13245 2 355.649 385.7625 76.0578 0.1144 13244 +13246 2 355.4385 384.6391 76.1734 0.1144 13245 +13247 2 355.1971 383.5214 76.2538 0.1144 13246 +13248 2 354.5588 382.5765 76.3157 0.1144 13247 +13249 2 354.3231 381.4599 76.3652 0.1144 13248 +13250 2 353.6584 380.5322 76.4086 0.1144 13249 +13251 2 353.5326 379.3973 76.4604 0.1144 13250 +13252 2 352.8474 378.4832 76.531 0.1144 13251 +13253 2 352.2456 377.5108 76.6256 0.1144 13252 +13254 2 351.3556 376.4263 76.634 0.1144 13253 +13255 2 350.588 375.5809 76.7931 0.1144 13254 +13256 2 349.6293 374.9597 76.9507 0.1144 13255 +13257 2 348.8067 374.1681 77.1131 0.1144 13256 +13258 2 348.1066 373.2666 77.2878 0.1144 13257 +13259 2 347.5678 372.261 77.5074 0.1144 13258 +13260 2 347.1891 371.188 77.7932 0.1144 13259 +13261 2 346.7944 370.9637 78.0363 0.1144 13260 +13262 2 346.036 370.1584 78.5708 0.1144 13261 +13263 2 345.7626 369.0899 79.0885 0.1144 13262 +13264 2 345.631 367.971 79.5847 0.1144 13263 +13265 2 345.3896 366.8671 80.0058 0.1144 13264 +13266 2 345.4697 365.7448 80.3426 0.1144 13265 +13267 2 345.8873 364.6958 80.6854 0.1144 13266 +13268 2 345.8381 363.5758 81.0247 0.1144 13267 +13269 2 345.1654 362.6686 81.289 0.1144 13268 +13270 2 344.4515 361.7797 81.541 0.1144 13269 +13271 2 343.8578 360.8084 81.7981 0.1144 13270 +13272 2 343.3167 359.8052 82.0372 0.1144 13271 +13273 2 343.1977 358.6726 82.2114 0.1144 13272 +13274 2 342.9804 357.5515 82.3273 0.1144 13273 +13275 2 342.7138 356.4395 82.4015 0.1144 13274 +13276 2 342.3454 355.3561 82.4401 0.1144 13275 +13277 2 341.9782 354.2728 82.4547 0.1144 13276 +13278 2 341.8066 353.1425 82.4578 0.1144 13277 +13279 2 341.7894 351.9985 82.4592 0.1144 13278 +13280 2 341.7368 350.8556 82.4611 0.1144 13279 +13281 2 341.5927 349.7208 82.4639 0.1144 13280 +13282 2 341.3788 348.5974 82.4678 0.1144 13281 +13283 2 341.2197 347.4637 82.4732 0.1144 13282 +13284 2 341.0413 346.3346 82.4802 0.1144 13283 +13285 2 340.7953 345.2169 82.4902 0.1144 13284 +13286 2 340.4098 344.1404 82.5054 0.1144 13285 +13287 2 340.0105 343.0684 82.5261 0.1144 13286 +13288 2 339.1994 342.2642 82.5538 0.1144 13287 +13289 2 338.2396 341.6442 82.5871 0.1144 13288 +13290 2 337.2947 340.9989 82.6414 0.1144 13289 +13291 2 336.439 340.2416 82.7579 0.1144 13290 +13292 2 335.8384 339.2681 82.8517 0.1144 13291 +13293 2 335.5032 338.1756 82.9226 0.1144 13292 +13294 2 334.7722 337.2958 82.9724 0.1144 13293 +13295 2 333.9496 336.5007 83.0024 0.1144 13294 +13296 2 333.0184 335.8361 83.0155 0.1144 13295 +13297 2 346.767 370.1103 76.4837 0.1144 13260 +13298 2 346.0245 369.2889 75.9072 0.1144 13297 +13299 2 345.536 368.2788 75.4034 0.1144 13298 +13300 2 344.908 367.3453 74.9081 0.1144 13299 +13301 2 344.3829 366.3431 74.4876 0.1144 13300 +13302 2 343.9859 365.2906 73.9906 0.1144 13301 +13303 2 342.9232 364.92 73.5305 0.1144 13302 +13304 2 341.8123 364.809 72.919 0.1144 13303 +13305 2 352.1632 377.0418 76.7071 0.1144 13253 +13306 2 351.8429 375.9493 76.9157 0.1144 13305 +13307 2 351.5512 374.8488 77.1826 0.1144 13306 +13308 2 351.3441 373.7322 77.5099 0.1144 13307 +13309 2 351.1565 372.6134 77.8786 0.1144 13308 +13310 2 350.9712 371.4968 78.2698 0.1144 13309 +13311 2 350.7767 370.3814 78.6649 0.1144 13310 +13312 2 350.5273 369.2752 79.0322 0.1144 13311 +13313 2 350.2299 368.1792 79.3618 0.1144 13312 +13314 2 349.921 367.0844 79.6673 0.1144 13313 +13315 2 349.6224 365.9862 79.9688 0.1144 13314 +13316 2 349.4005 364.8731 80.3009 0.1144 13315 +13317 2 349.2895 363.7485 80.7089 0.1144 13316 +13318 2 349.0985 362.6411 81.2162 0.1144 13317 +13319 2 348.761 361.5772 81.8082 0.1144 13318 +13320 2 348.3251 360.5453 82.3665 0.1144 13319 +13321 2 347.8481 359.5249 82.864 0.1144 13320 +13322 2 347.5335 358.453 83.4243 0.1144 13321 +13323 2 348.2267 357.6579 84.201 0.1144 13322 +13324 2 348.4647 356.5848 84.9358 0.1144 13323 +13325 2 348.5127 355.4763 85.6086 0.1144 13324 +13326 2 348.7244 354.3872 86.2523 0.1144 13325 +13327 2 349.1419 353.3496 86.8353 0.1144 13326 +13328 2 349.5835 352.3154 87.358 0.1144 13327 +13329 2 349.9736 351.2583 87.8284 0.1144 13328 +13330 2 350.3214 350.183 88.2734 0.1144 13329 +13331 2 350.6703 349.1076 88.704 0.1144 13330 +13332 2 351.0261 348.0345 89.1201 0.1144 13331 +13333 2 351.4379 346.9798 89.5084 0.1144 13332 +13334 2 351.915 345.9502 89.8484 0.1144 13333 +13335 2 352.2227 344.8622 90.1505 0.1144 13334 +13336 2 352.2136 343.7274 90.4428 0.1144 13335 +13337 2 351.9939 342.6188 90.8323 0.1144 13336 +13338 2 351.6542 341.5492 91.3651 0.1144 13337 +13339 2 351.3659 340.467 91.9444 0.1144 13338 +13340 2 351.1119 339.3768 92.5168 0.1144 13339 +13341 2 350.8556 338.2842 93.0574 0.1144 13340 +13342 2 350.5994 337.186 93.5329 0.1144 13341 +13343 2 350.3443 336.0809 93.8865 0.1144 13342 +13344 2 350.0949 334.9666 94.0276 0.1144 13343 +13345 2 349.8512 333.8501 93.9403 0.1144 13344 +13346 2 349.6087 332.7381 93.6821 0.1144 13345 +13347 2 349.4703 331.6181 93.3229 0.1144 13346 +13348 2 349.6762 330.5268 92.9552 0.1144 13347 +13349 2 350.1944 329.5178 92.6503 0.1144 13348 +13350 2 350.8442 328.5843 92.3983 0.1144 13349 +13351 2 351.6782 327.8349 92.1264 0.1144 13350 +13352 2 352.3531 327.0124 91.709 0.1144 13351 +13353 2 352.1976 325.9576 91.175 0.1144 13352 +13354 2 351.7342 324.9326 90.6637 0.1144 13353 +13355 2 351.224 323.927 90.1992 0.1144 13354 +13356 2 350.6486 322.9535 89.7907 0.1144 13355 +13357 2 350.0446 321.9925 89.4482 0.1144 13356 +13358 2 349.4451 321.0247 89.175 0.1144 13357 +13359 2 348.9875 319.9825 88.9907 0.1144 13358 +13360 2 348.6031 318.906 88.8866 0.1144 13359 +13361 2 348.332 317.7963 88.8516 0.1144 13360 +13362 2 348.197 316.6626 88.8787 0.1144 13361 +13363 2 348.1078 315.5221 88.9532 0.1144 13362 +13364 2 348.0231 314.3826 89.0574 0.1144 13363 +13365 2 347.6994 313.2958 89.1635 0.1144 13364 +13366 2 347.2429 312.2479 89.2592 0.1144 13365 +13367 2 346.7773 311.2035 89.3474 0.1144 13366 +13368 2 346.6045 310.0869 89.4566 0.1144 13367 +13369 2 346.5691 308.9441 89.5947 0.1144 13368 +13370 2 346.5256 307.8035 89.7383 0.1144 13369 +13371 2 346.4696 306.6618 89.8794 0.1144 13370 +13372 2 346.4135 305.5201 90.0183 0.1144 13371 +13373 2 346.3574 304.3795 90.1572 0.1144 13372 +13374 2 346.3002 303.2378 90.2969 0.1144 13373 +13375 2 346.2442 302.0972 90.4425 0.1144 13374 +13376 2 346.2293 300.9555 90.6153 0.1144 13375 +13377 2 346.2854 299.8172 90.837 0.1144 13376 +13378 2 346.3654 298.6812 91.105 0.1144 13377 +13379 2 346.6 297.5704 91.3822 0.1144 13378 +13380 2 346.9535 296.4882 91.6454 0.1144 13379 +13381 2 347.0152 295.3648 91.9271 0.1144 13380 +13382 2 346.9272 294.2322 92.2396 0.1144 13381 +13383 2 346.7578 293.1111 92.5994 0.1144 13382 +13384 2 346.5645 291.9957 93.0006 0.1144 13383 +13385 2 346.3677 290.8826 93.4307 0.1144 13384 +13386 2 346.1927 289.766 93.8689 0.1144 13385 +13387 2 346.1264 288.6369 94.2757 0.1144 13386 +13388 2 346.1309 287.5032 94.6386 0.1144 13387 +13389 2 346.2339 286.3718 94.948 0.1144 13388 +13390 2 346.3666 285.2404 95.2227 0.1144 13389 +13391 2 346.5004 284.1101 95.489 0.1144 13390 +13392 2 346.5393 282.9764 95.8272 0.1144 13391 +13393 2 346.4444 281.8553 96.3194 0.1144 13392 +13394 2 346.3163 280.749 96.9489 0.1144 13393 +13395 2 346.2831 279.6405 97.631 0.1144 13394 +13396 2 346.3266 278.532 98.3161 0.1144 13395 +13397 2 346.3838 277.4234 98.9934 0.1144 13396 +13398 2 346.441 276.3126 99.6526 0.1144 13397 +13399 2 346.4982 275.2018 100.2971 0.1144 13398 +13400 2 346.7006 274.107 100.931 0.1144 13399 +13401 2 346.9237 273.0167 101.5753 0.1144 13400 +13402 2 347.1216 271.9242 102.2473 0.1144 13401 +13403 2 347.4099 270.8569 102.965 0.1144 13402 +13404 2 347.6547 269.7998 103.8377 0.1144 13403 +13405 2 347.6216 268.7565 104.9462 0.1144 13404 +13406 2 347.5403 267.736 106.1976 0.1144 13405 +13407 2 348.4349 266.9776 106.1259 0.1144 13406 +13408 2 349.246 266.1733 105.9738 0.1144 13407 +13409 2 349.9896 265.305 105.9629 0.1144 13408 +13410 2 350.7264 264.431 106.0713 0.1144 13409 +13411 2 351.4242 263.5284 106.2625 0.1144 13410 +13412 2 351.7766 262.4439 106.4504 0.1144 13411 +13413 2 352.4149 261.499 106.6439 0.1144 13412 +13414 2 353.2363 260.7062 106.8256 0.1144 13413 +13415 2 354.06 259.9157 106.9844 0.1144 13414 +13416 2 354.886 259.1263 107.1291 0.1144 13415 +13417 2 355.7119 258.3369 107.2672 0.1144 13416 +13418 2 356.5368 257.5464 107.4038 0.1144 13417 +13419 2 357.3627 256.7559 107.5312 0.1144 13418 +13420 2 358.1887 255.9654 107.6429 0.1144 13419 +13421 2 359.0147 255.1749 107.7339 0.1144 13420 +13422 2 359.8406 254.3844 107.7986 0.1144 13421 +13423 2 360.7169 253.6488 107.8148 0.1144 13422 +13424 2 361.7053 253.0722 107.7773 0.1144 13423 +13425 2 362.7281 252.5643 107.6382 0.1144 13424 +13426 2 363.7497 252.0575 107.4276 0.1144 13425 +13427 2 364.7713 251.5519 107.1717 0.1144 13426 +13428 2 365.7723 251.0554 106.5739 0.1144 13427 +13429 2 346.6595 268.1902 108.0374 0.1144 13406 +13430 2 345.7294 268.5826 109.3422 0.1144 13429 +13431 2 344.9503 268.1101 110.6325 0.1144 13430 +13432 2 344.2834 267.3368 111.8902 0.1144 13431 +13433 2 343.6164 266.5223 112.9834 0.1144 13432 +13434 2 342.9334 265.6688 113.8099 0.1144 13433 +13435 2 342.2791 264.7765 114.5122 0.1144 13434 +13436 2 341.7437 263.8087 115.2231 0.1144 13435 +13437 2 341.2621 262.8443 116.1504 0.1144 13436 +13438 2 340.729 261.9863 117.4589 0.1144 13437 +13439 2 340.2862 261.1477 118.9818 0.1144 13438 +13440 2 340.356 260.2749 120.6131 0.1144 13439 +13441 2 340.8926 259.4398 121.9814 0.1144 13440 +13442 2 341.5389 258.6138 123.0928 0.1144 13441 +13443 2 342.215 257.7764 124.0383 0.1144 13442 +13444 2 342.9243 256.947 124.8792 0.1144 13443 +13445 2 343.4116 256.0512 125.7214 0.1144 13444 +13446 2 343.2114 254.9999 126.6252 0.1144 13445 +13447 2 342.8282 253.9852 127.514 0.1144 13446 +13448 2 342.4461 252.975 128.4399 0.1144 13447 +13449 2 342.0652 251.9683 129.3858 0.1144 13448 +13450 2 341.6842 250.9604 130.3288 0.1144 13449 +13451 2 341.2964 249.9526 131.2486 0.1144 13450 +13452 2 340.7278 249.0499 132.1446 0.1144 13451 +13453 2 339.9419 248.2995 133.0003 0.1144 13452 +13454 2 339.1182 247.5627 133.7168 0.1144 13453 +13455 2 338.306 246.7871 134.2457 0.1144 13454 +13456 2 337.4949 245.9966 134.6307 0.1144 13455 +13457 2 336.7341 245.1592 135.0177 0.1144 13456 +13458 2 336.0431 244.2737 135.5446 0.1144 13457 +13459 2 335.4025 243.37 136.2396 0.1144 13458 +13460 2 335.089 242.3484 137.0656 0.1144 13459 +13461 2 335.1085 241.2833 138.0445 0.1144 13460 +13462 2 335.3213 240.2835 139.2779 0.1144 13461 +13463 2 335.1142 239.2836 140.4634 0.1144 13462 +13464 2 335.4071 238.3398 141.7965 0.1144 13463 +13465 2 335.6073 237.2942 142.8154 0.1144 13464 +13466 2 335.5318 236.2017 143.624 0.1144 13465 +13467 2 335.2892 235.1332 144.4324 0.1144 13466 +13468 2 335.0742 234.059 145.2354 0.1144 13467 +13469 2 334.9552 232.9756 146.0827 0.1144 13468 +13470 2 334.8396 231.8957 146.9628 0.1144 13469 +13471 2 334.723 230.8214 147.8873 0.1144 13470 +13472 2 334.6074 229.7518 148.8404 0.1144 13471 +13473 2 334.493 228.6833 149.7958 0.1144 13472 +13474 2 334.3775 227.616 150.7621 0.1144 13473 +13475 2 334.2608 226.5463 151.7155 0.1144 13474 +13476 2 334.1464 225.4721 152.6372 0.1144 13475 +13477 2 334.0308 224.391 153.5117 0.1144 13476 +13478 2 333.9508 223.3145 154.4085 0.1144 13477 +13479 2 333.9153 222.3558 155.9345 0.1144 13478 +13480 2 395.0507 508.0801 45.521 0.1144 10250 +13481 2 394.3276 507.2061 45.8766 0.1144 13480 +13482 2 393.4582 506.4717 46.0118 0.1144 13481 +13483 2 392.3234 506.3859 46.2274 0.1144 13482 +13484 2 391.2411 506.7005 46.6189 0.1144 13483 +13485 2 390.3145 507.3423 47.0548 0.1144 13484 +13486 2 389.2517 507.7221 47.5107 0.1144 13485 +13487 2 388.1718 508.0321 48.0278 0.1144 13486 +13488 2 387.1056 508.3742 48.5464 0.1144 13487 +13489 2 386.1286 508.9462 48.9401 0.1144 13488 +13490 2 385.1173 509.398 49.1347 0.1144 13489 +13491 2 383.9756 509.3214 49.1596 0.1144 13490 +13492 2 382.8339 509.263 49.0893 0.1144 13491 +13493 2 381.6933 509.2058 48.9336 0.1144 13492 +13494 2 380.5539 509.1566 48.7113 0.1144 13493 +13495 2 379.4156 509.1178 48.4355 0.1144 13494 +13496 2 378.2945 509.1406 48.0245 0.1144 13495 +13497 2 377.3896 509.6554 47.1593 0.1144 13496 +13498 2 376.5076 510.256 46.2543 0.1144 13497 +13499 2 375.4631 510.5729 45.4765 0.1144 13498 +13500 2 374.3568 510.6301 44.8423 0.1144 13499 +13501 2 373.2575 510.8212 44.3355 0.1144 13500 +13502 2 372.2565 511.3337 44.0028 0.1144 13501 +13503 2 371.6833 512.2729 43.792 0.1144 13502 +13504 2 371.4705 513.386 43.587 0.1144 13503 +13505 2 371.1044 514.4591 43.3779 0.1144 13504 +13506 2 370.2419 515.1558 43.1332 0.1144 13505 +13507 2 369.2409 515.6912 42.8033 0.1144 13506 +13508 2 368.1632 515.9566 42.2106 0.1144 13507 +13509 2 367.5821 516.5869 41.585 0.1144 13508 +13510 2 367.3132 517.6875 41.2636 0.1144 13509 +13511 2 366.8373 518.7159 41.0374 0.1144 13510 +13512 2 366.3374 519.7409 40.8937 0.1144 13511 +13513 2 365.9061 520.8003 40.8103 0.1144 13512 +13514 2 365.2632 521.7166 40.7324 0.1144 13513 +13515 2 364.2965 522.2909 40.6207 0.1144 13514 +13516 2 363.4648 523.0276 40.5065 0.1144 13515 +13517 2 362.8917 524.0115 40.4135 0.1144 13516 +13518 2 362.3929 525.0411 40.336 0.1144 13517 +13519 2 361.8163 526.0261 40.2657 0.1144 13518 +13520 2 361.1986 526.9882 40.1988 0.1144 13519 +13521 2 360.4309 527.829 40.1226 0.1144 13520 +13522 2 359.4871 528.4662 40.017 0.1144 13521 +13523 2 358.4427 528.9181 39.846 0.1144 13522 +13524 2 357.349 529.2407 39.6318 0.1144 13523 +13525 2 356.3938 529.839 39.4036 0.1144 13524 +13526 2 355.4797 530.5106 39.0368 0.1144 13525 +13527 2 354.6572 531.2782 38.5442 0.1144 13526 +13528 2 353.9319 532.1465 38.1436 0.1144 13527 +13529 2 353.2169 533.0319 37.8431 0.1144 13528 +13530 2 352.4012 533.8282 37.6205 0.1144 13529 +13531 2 351.4185 534.4093 37.4584 0.1144 13530 +13532 2 350.3042 534.661 37.3425 0.1144 13531 +13533 2 349.1797 534.868 37.2378 0.1144 13532 +13534 2 348.0391 534.7994 37.1087 0.1144 13533 +13535 2 347.2635 533.962 36.9499 0.1144 13534 +13536 2 347.0267 534.1279 36.8379 0.1144 13535 +13537 2 346.1824 534.868 36.3947 0.1144 13536 +13538 2 345.512 535.7718 35.9629 0.1144 13537 +13539 2 344.9503 536.7556 35.5692 0.1144 13538 +13540 2 344.3062 537.6811 35.2131 0.1144 13539 +13541 2 343.4025 538.3298 34.9236 0.1144 13540 +13542 2 342.3386 538.7382 34.7172 0.1144 13541 +13543 2 341.2666 539.1272 34.5626 0.1144 13542 +13544 2 340.1844 539.491 34.4114 0.1144 13543 +13545 2 339.0999 539.8467 34.2185 0.1144 13544 +13546 2 338.2133 540.5125 33.9979 0.1144 13545 +13547 2 337.3359 541.2264 33.7196 0.1144 13546 +13548 2 336.2754 541.5685 33.3749 0.1144 13547 +13549 2 335.4517 541.0022 32.9426 0.1144 13548 +13550 2 335.1268 540.0435 32.4386 0.1144 13549 +13551 2 334.2448 540.7551 32.0835 0.1144 13550 +13552 2 333.2209 541.2378 31.7705 0.1144 13551 +13553 2 332.0929 541.3671 31.4569 0.1144 13552 +13554 2 331.1674 541.8659 31.1268 0.1144 13553 +13555 2 330.878 542.9687 30.9042 0.1144 13554 +13556 2 330.6606 544.0887 30.7168 0.1144 13555 +13557 2 330.489 545.2121 30.5231 0.1144 13556 +13558 2 330.02 546.2314 30.3489 0.1144 13557 +13559 2 329.1734 546.9853 30.2131 0.1144 13558 +13560 2 328.177 547.5447 30.0905 0.1144 13559 +13561 2 327.2652 548.2128 29.9426 0.1144 13560 +13562 2 326.5903 549.128 29.7674 0.1144 13561 +13563 2 326.1121 550.1599 29.5926 0.1144 13562 +13564 2 325.7243 551.2307 29.3978 0.1144 13563 +13565 2 325.1328 552.1939 29.1858 0.1144 13564 +13566 2 324.3412 553.0153 28.9918 0.1144 13565 +13567 2 323.6433 553.8973 28.7935 0.1144 13566 +13568 2 323.1914 554.943 28.5295 0.1144 13567 +13569 2 322.6595 555.9348 28.2251 0.1144 13568 +13570 2 321.8038 556.6304 27.9564 0.1144 13569 +13571 2 320.7684 557.104 27.6881 0.1144 13570 +13572 2 319.8635 557.7664 27.4275 0.1144 13571 +13573 2 319.2103 558.6861 27.1945 0.1144 13572 +13574 2 318.7664 559.7317 26.9387 0.1144 13573 +13575 2 318.1681 560.663 26.5947 0.1144 13574 +13576 2 317.2655 561.3391 26.2409 0.1144 13575 +13577 2 316.3904 562.0564 25.9338 0.1144 13576 +13578 2 315.6788 562.9395 25.6745 0.1144 13577 +13579 2 315.2692 563.9874 25.4899 0.1144 13578 +13580 2 315.2063 565.1177 25.3865 0.1144 13579 +13581 2 315.2349 566.2617 25.3158 0.1144 13580 +13582 2 315.0873 567.3908 25.3083 0.1144 13581 +13583 2 314.8505 568.5085 25.3998 0.1144 13582 +13584 2 314.592 569.6216 25.5207 0.1144 13583 +13585 2 314.1824 570.6855 25.6234 0.1144 13584 +13586 2 313.7065 571.7254 25.7011 0.1144 13585 +13587 2 313.1494 572.723 25.7552 0.1144 13586 +13588 2 312.5705 573.7103 25.781 0.1144 13587 +13589 2 312.0157 574.7101 25.7843 0.1144 13588 +13590 2 311.4243 575.6883 25.7784 0.1144 13589 +13591 2 310.7276 576.5943 25.769 0.1144 13590 +13592 2 309.9176 577.3997 25.7559 0.1144 13591 +13593 2 309.1534 578.2497 25.7373 0.1144 13592 +13594 2 308.3492 579.0608 25.7115 0.1144 13593 +13595 2 307.5427 579.873 25.6758 0.1144 13594 +13596 2 306.7156 580.6624 25.6252 0.1144 13595 +13597 2 305.9708 581.5272 25.5528 0.1144 13596 +13598 2 305.3919 582.5099 25.453 0.1144 13597 +13599 2 304.9115 583.5464 25.3208 0.1144 13598 +13600 2 304.7021 584.6595 25.1391 0.1144 13599 +13601 2 304.5282 585.7818 24.811 0.1144 13600 +13602 2 304.1255 586.8342 24.3825 0.1144 13601 +13603 2 303.5615 587.8112 23.9314 0.1144 13602 +13604 2 303.0113 588.7916 23.4265 0.1144 13603 +13605 2 302.1464 589.4952 22.9155 0.1144 13604 +13606 2 301.2587 590.1953 22.4788 0.1144 13605 +13607 2 300.4796 591.0179 22.1183 0.1144 13606 +13608 2 299.537 591.6288 21.6523 0.1144 13607 +13609 2 298.6206 592.29 21.2167 0.1144 13608 +13610 2 297.6391 592.8574 20.8452 0.1144 13609 +13611 2 296.6209 593.3608 20.4939 0.1144 13610 +13612 2 295.9334 594.26 20.1718 0.1144 13611 +13613 2 295.3556 595.2369 19.8093 0.1144 13612 +13614 2 294.7733 596.2128 19.5031 0.1144 13613 +13615 2 294.2128 597.1943 19.0711 0.1144 13614 +13616 2 346.8574 533.4278 37.3391 0.1144 13535 +13617 2 346.1584 532.5331 37.532 0.1144 13616 +13618 2 345.631 531.5264 37.5085 0.1144 13617 +13619 2 345.0853 530.5231 37.5015 0.1144 13618 +13620 2 344.209 529.8173 37.6474 0.1144 13619 +13621 2 343.6118 528.8655 37.9226 0.1144 13620 +13622 2 344.5602 528.3106 38.3664 0.1144 13621 +13623 2 345.5372 527.8416 39.2641 0.1144 13622 +13624 2 427.8251 548.7699 44.9028 0.1144 8272 +13625 2 427.443 549.8476 44.9148 0.1144 13624 +13626 2 427.0609 550.9264 44.9313 0.1144 13625 +13627 2 426.7269 552.0178 44.9546 0.1144 13626 +13628 2 426.545 553.1469 44.9868 0.1144 13627 +13629 2 426.3013 554.2646 45.0316 0.1144 13628 +13630 2 426.188 555.3971 45.0996 0.1144 13629 +13631 2 426.3196 556.532 45.1942 0.1144 13630 +13632 2 426.3631 557.6737 45.3107 0.1144 13631 +13633 2 426.378 558.8165 45.4689 0.1144 13632 +13634 2 426.2144 559.8805 45.7822 0.1144 13633 +13635 2 425.2282 560.2099 46.4822 0.1144 13634 +13636 2 424.1163 560.1848 47.1246 0.1144 13635 +13637 2 423.0672 560.4879 47.705 0.1144 13636 +13638 2 422.2046 561.1892 48.2135 0.1144 13637 +13639 2 421.3878 561.9694 48.652 0.1144 13638 +13640 2 420.6294 562.8137 48.9731 0.1144 13639 +13641 2 420.1432 563.8307 49.1831 0.1144 13640 +13642 2 419.6638 564.8672 49.3192 0.1144 13641 +13643 2 418.7452 565.4552 49.4147 0.1144 13642 +13644 2 417.7213 565.9631 49.4771 0.1144 13643 +13645 2 416.686 566.4493 49.5256 0.1144 13644 +13646 2 415.6186 566.8589 49.6098 0.1144 13645 +13647 2 414.4906 567.003 49.7277 0.1144 13646 +13648 2 413.3558 566.9 49.8406 0.1144 13647 +13649 2 412.2221 566.7513 49.9394 0.1144 13648 +13650 2 411.0953 566.5626 50.0301 0.1144 13649 +13651 2 409.9753 566.3303 50.1214 0.1144 13650 +13652 2 408.9434 566.7342 50.2205 0.1144 13651 +13653 2 408.0534 567.4457 50.335 0.1144 13652 +13654 2 407.0718 568.0223 50.4748 0.1144 13653 +13655 2 406.0788 568.5794 50.759 0.1144 13654 +13656 2 405.3467 569.4271 51.233 0.1144 13655 +13657 2 405.1979 569.1583 51.4097 0.1144 13656 +13658 2 404.547 568.234 51.7698 0.1144 13657 +13659 2 403.7508 567.4217 51.9658 0.1144 13658 +13660 2 402.9191 566.6381 52.0825 0.1144 13659 +13661 2 402.1755 565.7721 52.1284 0.1144 13660 +13662 2 401.4079 564.9244 52.1268 0.1144 13661 +13663 2 400.6414 564.0755 52.1108 0.1144 13662 +13664 2 400.1815 563.0482 52.0887 0.1144 13663 +13665 2 399.812 561.966 52.0607 0.1144 13664 +13666 2 399.1999 561.0107 52.0257 0.1144 13665 +13667 2 398.2825 560.3541 51.945 0.1144 13666 +13668 2 397.4428 559.5887 51.8465 0.1144 13667 +13669 2 396.7564 558.677 51.7658 0.1144 13668 +13670 2 396.0928 557.7446 51.7096 0.1144 13669 +13671 2 395.3939 556.8397 51.6768 0.1144 13670 +13672 2 394.6125 556.0057 51.6676 0.1144 13671 +13673 2 393.7122 555.3045 51.6813 0.1144 13672 +13674 2 392.7901 554.6261 51.7098 0.1144 13673 +13675 2 392.3371 553.6125 51.7485 0.1144 13674 +13676 2 392.2467 552.4776 51.7992 0.1144 13675 +13677 2 392.7638 551.4881 51.9198 0.1144 13676 +13678 2 392.0442 550.7433 52.0458 0.1144 13677 +13679 2 391.1084 550.0878 52.1492 0.1144 13678 +13680 2 390.1864 549.4106 52.2399 0.1144 13679 +13681 2 389.3547 548.6269 52.3194 0.1144 13680 +13682 2 388.5447 547.8204 52.3891 0.1144 13681 +13683 2 388.1741 546.7451 52.5353 0.1144 13682 +13684 2 387.8743 545.6445 52.7187 0.1144 13683 +13685 2 387.3492 544.6287 52.8041 0.1144 13684 +13686 2 386.6171 543.9102 52.8864 0.1144 13685 +13687 2 385.9478 542.987 52.9609 0.1144 13686 +13688 2 385.5177 541.93 53.0368 0.1144 13687 +13689 2 385.3404 540.8123 53.1233 0.1144 13688 +13690 2 385.6435 539.714 53.3075 0.1144 13689 +13691 2 385.7694 538.586 53.6029 0.1144 13690 +13692 2 385.6081 537.4832 53.8602 0.1144 13691 +13693 2 384.9057 536.6424 54.0453 0.1144 13692 +13694 2 383.8223 536.2775 54.1559 0.1144 13693 +13695 2 382.7286 536.0304 54.1943 0.1144 13694 +13696 2 381.6087 536.091 54.1626 0.1144 13695 +13697 2 380.5299 535.9892 54.0736 0.1144 13696 +13698 2 379.4511 536.3381 53.9431 0.1144 13697 +13699 2 378.3208 536.4914 53.7242 0.1144 13698 +13700 2 377.2226 536.7591 53.4204 0.1144 13699 +13701 2 376.1495 537.1252 53.125 0.1144 13700 +13702 2 375.0329 537.2567 52.8223 0.1144 13701 +13703 2 374.0468 536.8483 52.4695 0.1144 13702 +13704 2 373.1694 536.1493 51.9985 0.1144 13703 +13705 2 372.1638 535.6688 51.4324 0.1144 13704 +13706 2 371.0736 535.4641 50.8654 0.1144 13705 +13707 2 370.0016 535.6974 50.318 0.1144 13706 +13708 2 368.9057 535.8096 49.7882 0.1144 13707 +13709 2 367.8715 535.4114 49.3363 0.1144 13708 +13710 2 366.8808 534.8612 48.9516 0.1144 13709 +13711 2 365.9359 534.2297 48.6604 0.1144 13710 +13712 2 365.0458 533.5158 48.4635 0.1144 13711 +13713 2 364.1123 532.8592 48.3423 0.1144 13712 +13714 2 363.0564 532.4359 48.2756 0.1144 13713 +13715 2 361.965 532.0961 48.2471 0.1144 13714 +13716 2 360.9251 531.6237 48.2434 0.1144 13715 +13717 2 359.9962 530.9636 48.2552 0.1144 13716 +13718 2 358.9117 530.673 48.2345 0.1144 13717 +13719 2 357.7757 530.7691 48.2177 0.1144 13718 +13720 2 356.6706 531.0585 48.2401 0.1144 13719 +13721 2 355.546 531.2496 48.4011 0.1144 13720 +13722 2 354.4135 531.1569 48.7018 0.1144 13721 +13723 2 353.337 530.7851 48.9625 0.1144 13722 +13724 2 352.4 531.4326 49.177 0.1144 13723 +13725 2 351.1222 530.9476 49.4589 0.1144 13724 +13726 2 349.9908 530.8126 49.5379 0.1144 13725 +13727 2 348.8742 531.054 49.6222 0.1144 13726 +13728 2 347.7783 531.0048 49.7283 0.1144 13727 +13729 2 347.2498 530.0221 49.8624 0.1144 13728 +13730 2 347.3207 528.8906 50.0682 0.1144 13729 +13731 2 347.498 527.797 50.2334 0.1144 13730 +13732 2 347.0999 526.7285 50.3569 0.1144 13731 +13733 2 346.5439 525.7298 50.4423 0.1144 13732 +13734 2 345.9445 524.7585 50.4986 0.1144 13733 +13735 2 345.4216 523.7461 50.5327 0.1144 13734 +13736 2 344.6643 522.9167 50.5551 0.1144 13735 +13737 2 343.645 522.3984 50.5859 0.1144 13736 +13738 2 342.6074 522.1193 50.6296 0.1144 13737 +13739 2 341.5092 522.4053 50.6836 0.1144 13738 +13740 2 340.3697 522.4911 50.7573 0.1144 13739 +13741 2 339.2395 522.546 50.8987 0.1144 13740 +13742 2 338.1081 522.4225 51.1062 0.1144 13741 +13743 2 336.9709 522.4717 51.2641 0.1144 13742 +13744 2 335.8395 522.6295 51.3705 0.1144 13743 +13745 2 334.7024 522.7485 51.4282 0.1144 13744 +13746 2 333.5847 522.6764 51.4374 0.1144 13745 +13747 2 332.5208 522.2612 51.392 0.1144 13746 +13748 2 331.5587 521.6629 51.2921 0.1144 13747 +13749 2 330.7636 520.8483 51.1756 0.1144 13748 +13750 2 330.0543 519.9526 51.0756 0.1144 13749 +13751 2 329.2306 519.1781 50.988 0.1144 13750 +13752 2 328.2788 518.5443 50.9082 0.1144 13751 +13753 2 327.4288 517.795 50.832 0.1144 13752 +13754 2 326.6074 517.0125 50.7377 0.1144 13753 +13755 2 325.6488 516.3947 50.5904 0.1144 13754 +13756 2 324.6878 515.7827 50.4078 0.1144 13755 +13757 2 323.7566 515.1215 50.2505 0.1144 13756 +13758 2 322.8162 514.4717 50.1435 0.1144 13757 +13759 2 321.7969 513.9763 50.0858 0.1144 13758 +13760 2 320.6895 513.7006 50.0758 0.1144 13759 +13761 2 319.5707 513.4661 50.1077 0.1144 13760 +13762 2 318.4644 513.1778 50.176 0.1144 13761 +13763 2 317.3708 513.2327 50.2967 0.1144 13762 +13764 2 316.3721 513.767 50.4526 0.1144 13763 +13765 2 315.323 513.791 50.6688 0.1144 13764 +13766 2 314.2934 513.3105 50.9146 0.1144 13765 +13767 2 313.2306 512.8975 51.1053 0.1144 13766 +13768 2 312.137 512.5658 51.2184 0.1144 13767 +13769 2 310.9987 512.5395 51.2562 0.1144 13768 +13770 2 309.9142 512.8849 51.2299 0.1144 13769 +13771 2 308.7839 513.036 51.116 0.1144 13770 +13772 2 307.7303 512.6333 50.8539 0.1144 13771 +13773 2 306.7682 512.0269 50.5548 0.1144 13772 +13774 2 305.7237 511.5705 50.3297 0.1144 13773 +13775 2 304.6266 511.2502 50.1766 0.1144 13774 +13776 2 303.5535 510.8555 50.0912 0.1144 13775 +13777 2 302.5903 510.2389 50.069 0.1144 13776 +13778 2 302.4347 509.8362 50.6962 0.1144 13777 +13779 2 302.1464 508.9313 52.122 0.1144 13778 +13780 2 302.8648 508.4874 53.7883 0.1144 13779 +13781 2 303.7377 508.5377 55.5643 0.1144 13780 +13782 2 304.6426 508.8352 57.1007 0.1144 13781 +13783 2 305.0064 507.9943 58.511 0.1144 13782 +13784 2 304.0809 507.6477 59.8186 0.1144 13783 +13785 2 303.009 507.6809 60.73 0.1144 13784 +13786 2 301.9943 507.2976 61.5104 0.1144 13785 +13787 2 301.1351 506.5895 62.1328 0.1144 13786 +13788 2 300.3812 505.7647 62.6833 0.1144 13787 +13789 2 299.8687 504.7831 63.1719 0.1144 13788 +13790 2 299.7555 503.6632 63.5575 0.1144 13789 +13791 2 299.7715 502.526 63.8224 0.1144 13790 +13792 2 299.6365 501.3969 64.0136 0.1144 13791 +13793 2 299.2841 500.317 64.1589 0.1144 13792 +13794 2 298.695 499.348 64.2894 0.1144 13793 +13795 2 297.8701 498.5712 64.4398 0.1144 13794 +13796 2 296.9401 497.9111 64.6363 0.1144 13795 +13797 2 296.0512 497.1984 64.8962 0.1144 13796 +13798 2 295.3053 496.3724 65.2974 0.1144 13797 +13799 2 294.5754 495.6758 66.2284 0.1144 13798 +13800 2 293.5161 495.4904 67.1538 0.1144 13799 +13801 2 292.4304 495.4687 68.0243 0.1144 13800 +13802 2 293.3479 495.3863 69.0642 0.1144 13801 +13803 2 294.4221 495.2559 69.9706 0.1144 13802 +13804 2 294.6418 495.3829 70.2204 0.1144 13803 +13805 2 295.2046 496.0945 71.4087 0.1144 13804 +13806 2 294.8466 496.8438 73.1556 0.1144 13805 +13807 2 294.8626 496.9502 73.5666 0.1144 13806 +13808 2 294.9575 497.8471 72.3598 0.1144 13807 +13809 2 294.5994 498.8309 71.3899 0.1144 13808 +13810 2 294.6852 499.9074 70.5312 0.1144 13809 +13811 2 295.1634 500.8901 69.7119 0.1144 13810 +13812 2 296.0192 501.5776 68.9564 0.1144 13811 +13813 2 296.4733 502.5672 68.15 0.1144 13812 +13814 2 296.7204 503.6323 67.3392 0.1144 13813 +13815 2 296.0752 504.5166 66.6061 0.1144 13814 +13816 2 295.3854 505.386 65.9291 0.1144 13815 +13817 2 294.9987 506.371 64.9998 0.1144 13816 +13818 2 294.2311 506.903 63.3833 0.1144 13817 +13819 2 294.477 495.8325 74.349 0.1144 13806 +13820 2 294.1155 494.8395 75.4211 0.1144 13819 +13821 2 293.7506 493.8408 76.4537 0.1144 13820 +13822 2 293.4108 492.8352 77.4939 0.1144 13821 +13823 2 293.1969 491.8205 78.6758 0.1144 13822 +13824 2 293.2793 490.8126 79.9428 0.1144 13823 +13825 2 293.8021 489.9169 81.1272 0.1144 13824 +13826 2 294.3192 489.0177 82.3091 0.1144 13825 +13827 2 294.7562 488.0796 83.4898 0.1144 13826 +13828 2 294.9381 487.0694 84.6846 0.1144 13827 +13829 2 294.5491 486.2309 85.869 0.1144 13828 +13830 2 293.5676 485.7824 86.7905 0.1144 13829 +13831 2 292.6478 485.1967 87.5428 0.1144 13830 +13832 2 291.9179 484.3593 88.1185 0.1144 13831 +13833 2 291.41 483.3572 88.6043 0.1144 13832 +13834 2 290.91 482.3642 89.0641 0.1144 13833 +13835 2 290.1287 481.5565 89.5406 0.1144 13834 +13836 2 289.2673 480.8301 90.0284 0.1144 13835 +13837 2 288.4241 480.0819 90.503 0.1144 13836 +13838 2 287.6222 479.2868 90.9412 0.1144 13837 +13839 2 286.8431 478.4631 91.3214 0.1144 13838 +13840 2 286.0606 477.6394 91.6387 0.1144 13839 +13841 2 285.277 476.8135 91.9128 0.1144 13840 +13842 2 284.4922 475.9875 92.1715 0.1144 13841 +13843 2 283.7189 475.1524 92.4468 0.1144 13842 +13844 2 282.9833 474.2875 92.7727 0.1144 13843 +13845 2 282.2797 473.3998 93.1661 0.1144 13844 +13846 2 281.4618 472.6928 93.7182 0.1144 13845 +13847 2 280.4436 472.8038 94.5062 0.1144 13846 +13848 2 279.39 473.1058 95.2851 0.1144 13847 +13849 2 278.2997 473.0577 95.9916 0.1144 13848 +13850 2 277.3434 472.5384 96.6395 0.1144 13849 +13851 2 276.3675 472.6264 97.487 0.1144 13850 +13852 2 275.9156 473.4696 98.1064 0.1144 13851 +13853 2 275.2933 472.5235 98.471 0.1144 13852 +13854 2 274.5737 471.646 98.6132 0.1144 13853 +13855 2 273.686 470.9287 98.707 0.1144 13854 +13856 2 272.7879 470.2263 98.7935 0.1144 13855 +13857 2 272.0077 469.3935 98.884 0.1144 13856 +13858 2 271.2413 468.5492 98.9923 0.1144 13857 +13859 2 270.3592 467.8274 99.1068 0.1144 13858 +13860 2 269.4337 467.1593 99.2006 0.1144 13859 +13861 2 268.6238 466.3608 99.2653 0.1144 13860 +13862 2 267.9488 465.4387 99.3068 0.1144 13861 +13863 2 267.3082 464.4903 99.3348 0.1144 13862 +13864 2 266.6298 463.5705 99.3616 0.1144 13863 +13865 2 265.8873 462.7011 99.4003 0.1144 13864 +13866 2 265.1197 461.8534 99.4504 0.1144 13865 +13867 2 264.3578 461.0 99.4969 0.1144 13866 +13868 2 263.6165 460.1282 99.5109 0.1144 13867 +13869 2 262.8889 459.2462 99.4804 0.1144 13868 +13870 2 262.1487 458.3745 99.4294 0.1144 13869 +13871 2 261.3948 457.5142 99.3812 0.1144 13870 +13872 2 260.6375 456.6562 99.3429 0.1144 13871 +13873 2 259.8813 455.7993 99.3182 0.1144 13872 +13874 2 259.1114 454.9528 99.3096 0.1144 13873 +13875 2 258.2809 454.1691 99.316 0.1144 13874 +13876 2 257.4092 453.429 99.3297 0.1144 13875 +13877 2 256.5946 452.627 99.3415 0.1144 13876 +13878 2 255.8281 451.7782 99.3569 0.1144 13877 +13879 2 255.0994 450.8984 99.4081 0.1144 13878 +13880 2 254.4416 449.9649 99.5434 0.1144 13879 +13881 2 253.8239 449.0074 99.7766 0.1144 13880 +13882 2 253.213 448.0487 100.0938 0.1144 13881 +13883 2 252.7439 447.0306 100.4752 0.1144 13882 +13884 2 252.5963 445.9198 100.8885 0.1144 13883 +13885 2 252.5128 444.8021 101.3726 0.1144 13884 +13886 2 252.2337 443.7221 101.9623 0.1144 13885 +13887 2 251.7784 442.7017 102.5217 0.1144 13886 +13888 2 251.378 441.6561 103.0014 0.1144 13887 +13889 2 251.0897 440.5681 103.5034 0.1144 13888 +13890 2 250.4799 439.6941 104.1314 0.1144 13889 +13891 2 249.4435 439.4573 104.6996 0.1144 13890 +13892 2 248.3178 439.407 105.1708 0.1144 13891 +13893 2 247.3042 438.9825 105.6135 0.1144 13892 +13894 2 246.842 438.0342 106.0679 0.1144 13893 +13895 2 246.5091 436.968 106.6439 0.1144 13894 +13896 2 245.7987 436.15 107.3288 0.1144 13895 +13897 2 244.9853 435.4133 108.1161 0.1144 13896 +13898 2 244.2589 434.6182 109.0429 0.1144 13897 +13899 2 243.8276 433.6778 110.1649 0.1144 13898 +13900 2 243.3368 432.7798 111.3988 0.1144 13899 +13901 2 242.4902 432.2226 112.6042 0.1144 13900 +13902 2 241.5167 432.1243 113.9673 0.1144 13901 +13903 2 240.669 432.4903 115.5655 0.1144 13902 +13904 2 240.3304 433.258 117.4074 0.1144 13903 +13905 2 240.5683 434.0096 119.3738 0.1144 13904 +13906 2 241.1392 434.6182 121.273 0.1144 13905 +13907 2 241.7638 434.8733 123.1093 0.1144 13906 +13908 2 242.5749 434.3436 124.5154 0.1144 13907 +13909 2 243.4993 433.8437 125.6072 0.1144 13908 +13910 2 244.4465 434.0107 126.686 0.1144 13909 +13911 2 245.2221 434.7372 127.6369 0.1144 13910 +13912 2 245.7095 435.6924 128.5441 0.1144 13911 +13913 2 246.0332 436.7254 129.4328 0.1144 13912 +13914 2 246.667 437.5674 130.3994 0.1144 13913 +13915 2 247.66 437.4839 131.3665 0.1144 13914 +13916 2 248.701 437.2185 132.33 0.1144 13915 +13917 2 249.7398 436.9497 133.2968 0.1144 13916 +13918 2 250.7797 436.6797 134.2611 0.1144 13917 +13919 2 251.8207 436.4097 135.2154 0.1144 13918 +13920 2 252.8778 436.1855 136.1371 0.1144 13919 +13921 2 253.9417 435.9795 137.0298 0.1144 13920 +13922 2 255.0068 435.7759 137.9238 0.1144 13921 +13923 2 255.9929 435.3069 138.7193 0.1144 13922 +13924 2 256.9298 434.7154 139.4117 0.1144 13923 +13925 2 257.8633 434.1034 140.019 0.1144 13924 +13926 2 258.8929 433.9833 140.9912 0.1144 13925 +13927 2 259.6754 433.9947 143.0332 0.1144 13926 +13928 2 294.6875 495.2445 69.554 0.1144 13803 +13929 2 295.7309 494.9299 68.9296 0.1144 13928 +13930 2 295.9665 493.9037 68.7431 0.1144 13929 +13931 2 295.7904 492.7769 68.6381 0.1144 13930 +13932 2 295.454 491.6843 68.5692 0.1144 13931 +13933 2 295.0502 490.6136 68.5353 0.1144 13932 +13934 2 294.6017 489.5611 68.5353 0.1144 13933 +13935 2 294.2837 488.4628 68.57 0.1144 13934 +13936 2 293.9142 487.3806 68.6263 0.1144 13935 +13937 2 293.5458 486.2984 68.7033 0.1144 13936 +13938 2 293.285 485.1853 68.8041 0.1144 13937 +13939 2 293.1592 484.0504 68.9542 0.1144 13938 +13940 2 293.031 482.9179 69.1972 0.1144 13939 +13941 2 293.2278 481.8013 69.5131 0.1144 13940 +13942 2 293.7369 480.7877 69.8642 0.1144 13941 +13943 2 294.3478 479.8279 70.173 0.1144 13942 +13944 2 294.9918 478.8876 70.4001 0.1144 13943 +13945 2 295.4357 477.8351 70.5488 0.1144 13944 +13946 2 296.0203 476.8524 70.6303 0.1144 13945 +13947 2 296.7799 475.9978 70.6656 0.1144 13946 +13948 2 297.9045 476.2106 70.6754 0.1144 13947 +13949 2 302.4244 509.5525 50.0984 0.1144 13777 +13950 2 301.6167 508.7471 50.1626 0.1144 13949 +13951 2 300.967 507.8079 50.3098 0.1144 13950 +13952 2 300.5071 507.491 50.421 0.1144 13951 +13953 2 299.482 507.1363 50.6302 0.1144 13952 +13954 2 298.4353 507.4601 50.7937 0.1144 13953 +13955 2 297.3988 507.7873 50.888 0.1144 13954 +13956 2 296.2617 507.6935 51.0003 0.1144 13955 +13957 2 295.144 507.7061 51.1832 0.1144 13956 +13958 2 294.048 508.0195 51.394 0.1144 13957 +13959 2 292.9304 508.119 51.6314 0.1144 13958 +13960 2 291.8413 507.833 51.8328 0.1144 13959 +13961 2 290.9261 507.1844 51.9744 0.1144 13960 +13962 2 290.131 506.363 52.0542 0.1144 13961 +13963 2 289.3325 505.5439 52.0848 0.1144 13962 +13964 2 288.5774 504.687 52.0783 0.1144 13963 +13965 2 287.8384 503.813 52.0478 0.1144 13964 +13966 2 287.0033 503.0397 52.0075 0.1144 13965 +13967 2 286.2402 502.2103 51.9347 0.1144 13966 +13968 2 285.3834 501.5159 51.8263 0.1144 13967 +13969 2 284.379 500.9725 51.6816 0.1144 13968 +13970 2 283.3093 500.5984 51.5231 0.1144 13969 +13971 2 282.3003 500.0927 51.6393 0.1144 13970 +13972 2 280.9836 500.2987 51.6684 0.1144 13971 +13973 2 280.2079 501.0628 51.6211 0.1144 13972 +13974 2 279.5021 501.946 51.4716 0.1144 13973 +13975 2 278.8935 502.8841 51.1988 0.1144 13974 +13976 2 278.6727 503.9835 50.8696 0.1144 13975 +13977 2 278.4244 505.084 50.5182 0.1144 13976 +13978 2 277.6831 505.8505 50.0914 0.1144 13977 +13979 2 276.5952 506.069 49.6605 0.1144 13978 +13980 2 275.4809 506.0015 49.0974 0.1144 13979 +13981 2 274.4147 505.7304 48.3493 0.1144 13980 +13982 2 273.456 505.2098 47.5168 0.1144 13981 +13983 2 272.8268 504.3335 46.6497 0.1144 13982 +13984 2 271.7915 503.9858 45.8553 0.1144 13983 +13985 2 270.9267 503.3417 45.064 0.1144 13984 +13986 2 269.8284 503.1873 44.4016 0.1144 13985 +13987 2 268.7771 502.8429 43.6842 0.1144 13986 +13988 2 267.7795 502.3819 42.9915 0.1144 13987 +13989 2 266.9593 501.6554 42.1826 0.1144 13988 +13990 2 266.107 500.9793 41.4159 0.1144 13989 +13991 2 265.1128 500.4851 40.7683 0.1144 13990 +13992 2 264.2583 499.7861 40.1598 0.1144 13991 +13993 2 263.684 498.8458 39.4604 0.1144 13992 +13994 2 263.2058 497.8757 38.57 0.1144 13993 +13995 2 262.58 496.9673 37.856 0.1144 13994 +13996 2 261.9302 496.0487 37.3604 0.1144 13995 +13997 2 261.1649 495.2365 36.8948 0.1144 13996 +13998 2 260.3389 494.4665 36.4585 0.1144 13997 +13999 2 259.577 493.6234 36.1628 0.1144 13998 +14000 2 258.7076 492.9016 35.8436 0.1144 13999 +14001 2 257.7123 492.3639 35.4774 0.1144 14000 +14002 2 256.6289 492.0367 35.1383 0.1144 14001 +14003 2 255.652 491.4727 34.865 0.1144 14002 +14004 2 254.5594 491.2084 34.6567 0.1144 14003 +14005 2 253.5058 490.7874 34.4229 0.1144 14004 +14006 2 252.4419 490.3779 34.2364 0.1144 14005 +14007 2 251.4672 489.7876 34.0861 0.1144 14006 +14008 2 250.433 489.3117 33.8887 0.1144 14007 +14009 2 249.3108 489.1412 33.7156 0.1144 14008 +14010 2 248.2594 488.7111 33.565 0.1144 14009 +14011 2 247.3225 488.0636 33.3886 0.1144 14010 +14012 2 246.3078 487.5419 33.241 0.1144 14011 +14013 2 245.2599 487.0866 33.1226 0.1144 14012 +14014 2 244.7291 486.0856 33.0408 0.1144 14013 +14015 2 244.0495 485.167 32.9666 0.1144 14014 +14016 2 243.0348 484.643 32.8994 0.1144 14015 +14017 2 241.9285 484.3536 32.8238 0.1144 14016 +14018 2 240.8681 483.9292 32.699 0.1144 14017 +14019 2 239.9563 483.2416 32.513 0.1144 14018 +14020 2 239.0651 482.5335 32.3288 0.1144 14019 +14021 2 238.4382 481.5771 32.2014 0.1144 14020 +14022 2 237.8387 480.6036 32.1364 0.1144 14021 +14023 2 237.2782 479.6083 32.0698 0.1144 14022 +14024 2 236.8652 478.5444 32.0191 0.1144 14023 +14025 2 236.2772 477.5628 31.9799 0.1144 14024 +14026 2 235.7338 476.5618 31.9435 0.1144 14025 +14027 2 235.4707 475.4487 31.9634 0.1144 14026 +14028 2 235.1343 474.3779 31.9707 0.1144 14027 +14029 2 234.3518 473.5508 31.7268 0.1144 14028 +14030 2 233.7695 472.6116 31.4031 0.1144 14029 +14031 2 233.4298 471.5305 31.1212 0.1144 14030 +14032 2 232.8418 470.5752 30.8286 0.1144 14031 +14033 2 231.9757 469.8465 30.6144 0.1144 14032 +14034 2 231.2241 469.04 30.6415 0.1144 14033 +14035 2 230.4565 468.2323 30.8266 0.1144 14034 +14036 2 229.4624 467.6741 30.9019 0.1144 14035 +14037 2 228.4568 467.1295 30.9355 0.1144 14036 +14038 2 227.6526 466.3333 31.0293 0.1144 14037 +14039 2 226.9845 465.4078 31.1777 0.1144 14038 +14040 2 226.0864 464.7203 31.4426 0.1144 14039 +14041 2 225.0362 464.2924 31.771 0.1144 14040 +14042 2 224.4986 463.3086 32.1678 0.1144 14041 +14043 2 224.0776 462.2629 32.4887 0.1144 14042 +14044 2 223.2253 461.5113 32.7662 0.1144 14043 +14045 2 222.5984 460.5698 33.1173 0.1144 14044 +14046 2 222.222 459.5048 33.3892 0.1144 14045 +14047 2 222.1328 458.3711 33.5972 0.1144 14046 +14048 2 221.7209 457.4078 33.7588 0.1144 14047 +14049 2 220.5964 457.2133 33.9128 0.1144 14048 +14050 2 219.5748 456.925 34.1183 0.1144 14049 +14051 2 218.9639 455.9652 34.2843 0.1144 14050 +14052 2 218.4308 454.9699 34.3871 0.1144 14051 +14053 2 217.67 454.1165 34.4336 0.1144 14052 +14054 2 216.9539 453.2253 34.4067 0.1144 14053 +14055 2 216.3579 452.2896 34.2642 0.1144 14054 +14056 2 216.1142 451.1776 34.0668 0.1144 14055 +14057 2 215.5388 450.2807 33.9111 0.1144 14056 +14058 2 214.4886 449.8643 33.81 0.1144 14057 +14059 2 213.5356 449.3701 33.7663 0.1144 14058 +14060 2 212.9327 448.408 33.7464 0.1144 14059 +14061 2 212.3722 447.4207 33.726 0.1144 14060 +14062 2 211.5931 446.5913 33.717 0.1144 14061 +14063 2 210.933 445.6841 33.7128 0.1144 14062 +14064 2 210.3244 444.7208 33.7148 0.1144 14063 +14065 2 209.6895 443.7702 33.7254 0.1144 14064 +14066 2 209.0763 442.8035 33.7484 0.1144 14065 +14067 2 208.359 441.9192 33.7837 0.1144 14066 +14068 2 207.5548 441.1058 33.8456 0.1144 14067 +14069 2 206.7688 440.2764 33.9324 0.1144 14068 +14070 2 206.0744 439.3692 34.015 0.1144 14069 +14071 2 205.4155 438.4357 34.0774 0.1144 14070 +14072 2 204.6913 437.5514 34.1166 0.1144 14071 +14073 2 204.2074 436.5401 34.1149 0.1144 14072 +14074 2 203.9043 435.4384 34.0827 0.1144 14073 +14075 2 203.4169 434.4111 34.0701 0.1144 14074 +14076 2 202.8049 433.4444 34.0978 0.1144 14075 +14077 2 202.1562 432.5029 34.1639 0.1144 14076 +14078 2 201.4298 431.6232 34.272 0.1144 14077 +14079 2 200.8098 430.6668 34.3885 0.1144 14078 +14080 2 200.3441 429.6246 34.4702 0.1144 14079 +14081 2 199.9277 428.5596 34.5052 0.1144 14080 +14082 2 199.4003 427.5471 34.4826 0.1144 14081 +14083 2 198.7059 426.6434 34.3932 0.1144 14082 +14084 2 197.9429 425.7934 34.2499 0.1144 14083 +14085 2 197.1638 424.9582 34.0844 0.1144 14084 +14086 2 196.3504 424.1552 33.9433 0.1144 14085 +14087 2 195.5188 423.3715 33.847 0.1144 14086 +14088 2 194.7877 422.4952 33.7966 0.1144 14087 +14089 2 194.2066 421.5125 33.7856 0.1144 14088 +14090 2 193.527 420.5962 33.8173 0.1144 14089 +14091 2 192.7537 419.7542 33.8836 0.1144 14090 +14092 2 191.9632 418.9282 33.971 0.1144 14091 +14093 2 191.2951 418.0039 34.0631 0.1144 14092 +14094 2 190.8169 416.9686 34.1457 0.1144 14093 +14095 2 190.4474 415.8863 34.1762 0.1144 14094 +14096 2 189.9658 414.851 34.2073 0.1144 14095 +14097 2 189.2908 413.9324 34.288 0.1144 14096 +14098 2 188.3436 413.3135 34.4154 0.1144 14097 +14099 2 187.3334 412.7792 34.568 0.1144 14098 +14100 2 186.44 412.0722 34.6864 0.1144 14099 +14101 2 185.5408 411.3675 34.8177 0.1144 14100 +14102 2 184.6016 410.7189 35.0048 0.1144 14101 +14103 2 183.6417 410.1046 35.245 0.1144 14102 +14104 2 182.5344 409.8838 35.5085 0.1144 14103 +14105 2 181.3995 409.7934 35.7806 0.1144 14104 +14106 2 180.2727 409.6378 36.0704 0.1144 14105 +14107 2 179.7602 408.6826 36.4316 0.1144 14106 +14108 2 178.7237 409.0532 36.7758 0.1144 14107 +14109 2 177.6518 409.4262 37.1134 0.1144 14108 +14110 2 176.5329 409.2523 37.485 0.1144 14109 +14111 2 175.4152 409.0692 37.8717 0.1144 14110 +14112 2 174.8593 408.8587 38.0736 0.1144 14111 +14113 2 173.7965 408.456 38.4129 0.1144 14112 +14114 2 172.7337 408.0522 38.7041 0.1144 14113 +14115 2 171.6686 407.6484 38.96 0.1144 14114 +14116 2 170.6013 407.2434 39.1779 0.1144 14115 +14117 2 169.5099 406.9128 39.3288 0.1144 14116 +14118 2 168.3934 406.6668 39.3926 0.1144 14117 +14119 2 167.2711 406.446 39.3834 0.1144 14118 +14120 2 166.1488 406.2275 39.326 0.1144 14119 +14121 2 165.1032 405.794 39.2938 0.1144 14120 +14122 2 164.1926 405.111 39.345 0.1144 14121 +14123 2 163.2785 404.4257 39.424 0.1144 14122 +14124 2 162.3256 403.7931 39.4836 0.1144 14123 +14125 2 161.3658 403.1719 39.5195 0.1144 14124 +14126 2 160.5066 402.4237 39.5492 0.1144 14125 +14127 2 159.5891 401.7465 39.6001 0.1144 14126 +14128 2 158.5927 401.1894 39.6875 0.1144 14127 +14129 2 157.7702 400.4172 39.8138 0.1144 14128 +14130 2 157.2554 399.4093 39.9627 0.1144 14129 +14131 2 156.8561 398.3397 40.1215 0.1144 14130 +14132 2 156.4683 397.2654 40.2816 0.1144 14131 +14133 2 156.0668 396.1958 40.4275 0.1144 14132 +14134 2 155.6526 395.1307 40.5684 0.1144 14133 +14135 2 155.2294 394.0702 40.7198 0.1144 14134 +14136 2 154.8049 393.0098 40.8859 0.1144 14135 +14137 2 154.3794 391.9504 41.0642 0.1144 14136 +14138 2 153.9549 390.8911 41.251 0.1144 14137 +14139 2 153.5294 389.8317 41.4434 0.1144 14138 +14140 2 153.1038 388.7724 41.636 0.1144 14139 +14141 2 152.6794 387.713 41.8253 0.1144 14140 +14142 2 152.0342 386.7818 42.0059 0.1144 14141 +14143 2 151.1476 386.0737 42.1697 0.1144 14142 +14144 2 150.1935 385.4468 42.3212 0.1144 14143 +14145 2 149.2337 384.8279 42.4684 0.1144 14144 +14146 2 148.2738 384.2078 42.6208 0.1144 14145 +14147 2 147.3152 383.5878 42.784 0.1144 14146 +14148 2 146.3508 382.9757 42.9682 0.1144 14147 +14149 2 145.3441 382.4449 43.2247 0.1144 14148 +14150 2 144.3213 381.9507 43.5501 0.1144 14149 +14151 2 143.2974 381.4611 43.9074 0.1144 14150 +14152 2 142.2736 380.9714 44.2618 0.1144 14151 +14153 2 141.2497 380.4807 44.5866 0.1144 14152 +14154 2 140.2224 379.9899 44.8608 0.1144 14153 +14155 2 139.0955 379.9556 44.8356 0.1144 14154 +14156 2 138.0819 380.0826 44.3638 0.1144 14155 +14157 2 137.0878 379.53 44.0765 0.1144 14156 +14158 2 136.096 378.966 43.8726 0.1144 14157 +14159 2 135.2483 378.2476 43.8024 0.1144 14158 +14160 2 134.5996 377.3152 43.9396 0.1144 14159 +14161 2 133.8297 376.4755 44.1907 0.1144 14160 +14162 2 133.0323 375.6599 44.3775 0.1144 14161 +14163 2 132.2041 374.8716 44.3971 0.1144 14162 +14164 2 131.2763 374.2184 44.3299 0.1144 14163 +14165 2 130.1941 373.9095 44.3153 0.1144 14164 +14166 2 129.0638 373.7402 44.4133 0.1144 14165 +14167 2 127.9381 373.5515 44.6163 0.1144 14166 +14168 2 126.817 373.3604 44.905 0.1144 14167 +14169 2 125.697 373.1694 45.2432 0.1144 14168 +14170 2 124.6262 372.8079 45.54 0.1144 14169 +14171 2 123.8483 372.0071 45.5753 0.1144 14170 +14172 2 123.1184 371.1285 45.5297 0.1144 14171 +14173 2 122.281 370.354 45.7579 0.1144 14172 +14174 2 121.4596 369.5726 46.0496 0.1144 14173 +14175 2 120.8053 368.6437 46.3215 0.1144 14174 +14176 2 120.2138 367.6782 46.6567 0.1144 14175 +14177 2 119.4897 366.8087 47.0714 0.1144 14176 +14178 2 118.7209 365.9839 47.5132 0.1144 14177 +14179 2 117.8835 365.2254 47.9548 0.1144 14178 +14180 2 117.006 364.515 48.3988 0.1144 14179 +14181 2 116.1515 363.7771 48.8373 0.1144 14180 +14182 2 115.3976 362.9386 49.2422 0.1144 14181 +14183 2 114.7375 362.0154 49.5984 0.1144 14182 +14184 2 114.024 361.1333 49.91 0.1144 14183 +14185 2 113.2112 360.3371 50.1861 0.1144 14184 +14186 2 112.3888 359.5489 50.4375 0.1144 14185 +14187 2 111.638 358.6932 50.6766 0.1144 14186 +14188 2 110.9432 357.7894 50.9118 0.1144 14187 +14189 2 110.2546 356.8811 51.1476 0.1144 14188 +14190 2 109.5657 355.9728 51.3856 0.1144 14189 +14191 2 108.8767 355.0644 51.6258 0.1144 14190 +14192 2 108.188 354.1572 51.8675 0.1144 14191 +14193 2 107.4995 353.2489 52.1094 0.1144 14192 +14194 2 106.8109 352.3406 52.3513 0.1144 14193 +14195 2 106.1224 351.4322 52.5935 0.1144 14194 +14196 2 105.4336 350.5239 52.8368 0.1144 14195 +14197 2 104.7485 349.6133 53.0813 0.1144 14196 +14198 2 104.0842 348.6878 53.3215 0.1144 14197 +14199 2 103.4438 347.7451 53.5584 0.1144 14198 +14200 2 102.7931 346.8093 53.8112 0.1144 14199 +14201 2 102.126 345.8873 54.0943 0.1144 14200 +14202 2 101.4555 344.9698 54.409 0.1144 14201 +14203 2 100.7633 344.0706 54.7674 0.1144 14202 +14204 2 100.037 343.2034 55.1846 0.1144 14203 +14205 2 99.3078 342.3431 55.6461 0.1144 14204 +14206 2 98.5976 341.468 56.1235 0.1144 14205 +14207 2 97.8946 340.586 56.6034 0.1144 14206 +14208 2 97.2148 339.6891 57.0872 0.1144 14207 +14209 2 96.6603 338.7178 57.605 0.1144 14208 +14210 2 96.4363 337.6436 58.1613 0.1144 14209 +14211 2 96.7079 336.5797 58.6569 0.1144 14210 +14212 2 97.3677 335.6713 59.0204 0.1144 14211 +14213 2 98.273 335.0055 59.2651 0.1144 14212 +14214 2 99.328 334.5754 59.4222 0.1144 14213 +14215 2 100.4178 334.2299 59.5288 0.1144 14214 +14216 2 101.5354 334.0606 59.5885 0.1144 14215 +14217 2 102.6693 334.1716 59.5826 0.1144 14216 +14218 2 103.784 334.4244 59.5384 0.1144 14217 +14219 2 104.9042 334.4896 59.4737 0.1144 14218 +14220 2 105.9939 334.1773 59.3922 0.1144 14219 +14221 2 106.9789 333.6098 59.3261 0.1144 14220 +14222 2 107.9104 332.9463 59.318 0.1144 14221 +14223 2 108.891 332.3629 59.3942 0.1144 14222 +14224 2 109.929 331.8881 59.5328 0.1144 14223 +14225 2 111.0141 331.5426 59.7041 0.1144 14224 +14226 2 112.0442 331.776 59.9102 0.1144 14225 +14227 2 113.0662 332.2759 60.1454 0.1144 14226 +14228 2 114.0122 331.9419 60.5615 0.1144 14227 +14229 2 114.2588 330.8928 61.1828 0.1144 14228 +14230 2 114.2784 330.8928 61.5513 0.1144 14229 +14231 2 114.6425 330.7212 64.0612 0.1144 14230 +14232 2 115.2042 329.9822 65.4058 0.1144 14231 +14233 2 115.1653 328.9378 66.2502 0.1144 14232 +14234 2 114.9251 327.8532 66.9127 0.1144 14233 +14235 2 114.7684 326.7378 67.3896 0.1144 14234 +14236 2 114.6322 325.6099 67.7062 0.1144 14235 +14237 2 114.4515 324.483 67.8784 0.1144 14236 +14238 2 114.2357 323.3596 67.9689 0.1144 14237 +14239 2 114.0124 322.2385 68.0266 0.1144 14238 +14240 2 113.6381 321.1597 68.0957 0.1144 14239 +14241 2 113.1414 320.1312 68.1937 0.1144 14240 +14242 2 112.6168 319.1154 68.3183 0.1144 14241 +14243 2 112.18 318.0606 68.4639 0.1144 14242 +14244 2 111.8751 316.9612 68.6241 0.1144 14243 +14245 2 111.6241 315.847 68.7912 0.1144 14244 +14246 2 111.3788 314.7316 68.9573 0.1144 14245 +14247 2 111.1334 313.6162 69.1163 0.1144 14246 +14248 2 110.8883 312.5008 69.2656 0.1144 14247 +14249 2 110.4098 311.4677 69.3893 0.1144 14248 +14250 2 109.7707 310.5216 69.4764 0.1144 14249 +14251 2 109.1028 309.5927 69.5338 0.1144 14250 +14252 2 108.4332 308.6661 69.5727 0.1144 14251 +14253 2 107.4191 308.1856 69.6074 0.1144 14252 +14254 2 106.4092 307.6491 69.631 0.1144 14253 +14255 2 105.7304 306.7339 69.641 0.1144 14254 +14256 2 105.5807 305.6024 69.6598 0.1144 14255 +14257 2 105.1176 305.6368 68.2744 0.1144 14256 +14258 2 104.2945 305.7043 66.3628 0.1144 14257 +14259 2 103.2866 306.0223 65.5029 0.1144 14258 +14260 2 102.2457 306.449 64.9925 0.1144 14259 +14261 2 101.2519 306.9901 64.6271 0.1144 14260 +14262 2 100.1575 307.2338 64.1998 0.1144 14261 +14263 2 99.0704 307.4958 63.6132 0.1144 14262 +14264 2 98.0506 307.9339 62.937 0.1144 14263 +14265 2 97.051 308.3652 62.116 0.1144 14264 +14266 2 96.1736 308.745 60.5788 0.1144 14265 +14267 2 105.4229 304.8737 69.7724 0.1144 14256 +14268 2 105.1816 303.7606 70.019 0.1144 14267 +14269 2 105.2641 302.6406 70.3231 0.1144 14268 +14270 2 105.6624 301.5801 70.6104 0.1144 14269 +14271 2 105.832 300.4624 70.856 0.1144 14270 +14272 2 105.5461 299.3699 71.0175 0.1144 14271 +14273 2 105.0936 298.3209 71.1054 0.1144 14272 +14274 2 104.6163 297.2821 71.2082 0.1144 14273 +14275 2 103.9791 296.336 71.328 0.1144 14274 +14276 2 103.1005 295.6142 71.4521 0.1144 14275 +14277 2 102.7051 294.5686 71.659 0.1144 14276 +14278 2 102.2929 293.5058 71.8852 0.1144 14277 +14279 2 101.7319 292.5128 72.109 0.1144 14278 +14280 2 100.9856 291.6502 72.3164 0.1144 14279 +14281 2 99.7451 292.0346 72.5822 0.1144 14280 +14282 2 98.6072 292.0277 72.3506 0.1144 14281 +14283 2 97.4681 292.0186 72.0994 0.1144 14282 +14284 2 96.3275 291.9808 71.9102 0.1144 14283 +14285 2 95.2865 291.5644 71.6223 0.1144 14284 +14286 2 94.5097 290.7602 71.1586 0.1144 14285 +14287 2 94.7313 289.7031 70.6031 0.1144 14286 +14288 2 94.1575 288.7307 70.152 0.1144 14287 +14289 2 93.6256 287.7332 69.7287 0.1144 14288 +14290 2 93.2312 286.7024 68.9926 0.1144 14289 +14291 2 100.8531 291.4248 72.8031 0.1144 14280 +14292 2 100.3107 290.5028 73.7531 0.1144 14291 +14293 2 99.7385 289.5315 74.1782 0.1144 14292 +14294 2 99.2253 288.5305 74.6861 0.1144 14293 +14295 2 98.748 287.5284 75.3584 0.1144 14294 +14296 2 98.6678 286.4462 76.1858 0.1144 14295 +14297 2 99.3331 285.619 77.1039 0.1144 14296 +14298 2 100.3736 285.2873 77.9192 0.1144 14297 +14299 2 101.3091 284.8343 79.0891 0.1144 14298 +14300 2 114.1217 330.3758 61.6258 0.1144 14229 +14301 2 113.8017 329.2855 61.9632 0.1144 14300 +14302 2 113.3225 328.2525 62.2042 0.1144 14301 +14303 2 113.2158 327.1154 62.3574 0.1144 14302 +14304 2 113.2028 325.9725 62.4932 0.1144 14303 +14305 2 113.3054 324.8342 62.5892 0.1144 14304 +14306 2 113.4527 323.7005 62.6598 0.1144 14305 +14307 2 113.5999 322.5657 62.6923 0.1144 14306 +14308 2 113.7472 321.4308 62.6738 0.1144 14307 +14309 2 113.8945 320.2971 62.5923 0.1144 14308 +14310 2 114.0415 319.1646 62.4375 0.1144 14309 +14311 2 114.3898 319.5261 62.1261 0.1144 14310 +14312 2 115.1699 320.3337 61.591 0.1144 14311 +14313 2 115.9398 321.1322 60.9076 0.1144 14312 +14314 2 116.704 321.9239 60.1401 0.1144 14313 +14315 2 117.4659 322.7121 59.3421 0.1144 14314 +14316 2 118.2381 323.4866 58.522 0.1144 14315 +14317 2 119.0515 324.205 57.6425 0.1144 14316 +14318 2 120.0067 324.7587 57.0786 0.1144 14317 +14319 2 121.0226 325.2781 57.0072 0.1144 14318 +14320 2 122.0293 325.8215 57.0433 0.1144 14319 +14321 2 123.0761 326.2802 57.0744 0.1144 14320 +14322 2 124.0805 326.8236 56.9926 0.1144 14321 +14323 2 125.0827 326.898 56.7008 0.1144 14322 +14324 2 125.2886 325.7952 56.551 0.1144 14323 +14325 2 125.3675 324.7004 56.6524 0.1144 14324 +14326 2 126.1008 323.8721 56.856 0.1144 14325 +14327 2 127.0584 323.2532 57.055 0.1144 14326 +14328 2 128.0296 322.6526 57.241 0.1144 14327 +14329 2 129.0009 322.0509 57.3854 0.1144 14328 +14330 2 129.9733 321.4503 57.4759 0.1144 14329 +14331 2 130.9468 320.8485 57.528 0.1144 14330 +14332 2 131.9192 320.2468 57.5621 0.1144 14331 +14333 2 132.9019 319.6611 57.582 0.1144 14332 +14334 2 133.9098 319.1211 57.5786 0.1144 14333 +14335 2 134.9394 318.6223 57.547 0.1144 14334 +14336 2 135.9736 318.1327 57.4907 0.1144 14335 +14337 2 137.0066 317.6442 57.4165 0.1144 14336 +14338 2 138.0408 317.1546 57.3308 0.1144 14337 +14339 2 139.0749 316.6672 57.2373 0.1144 14338 +14340 2 140.1125 316.1867 57.1346 0.1144 14339 +14341 2 141.1524 315.712 57.0268 0.1144 14340 +14342 2 142.1923 315.2384 56.9293 0.1144 14341 +14343 2 143.2528 314.8139 56.8744 0.1144 14342 +14344 2 144.3614 314.5634 56.9234 0.1144 14343 +14345 2 145.4985 314.5199 57.1245 0.1144 14344 +14346 2 146.6333 314.5634 57.4588 0.1144 14345 +14347 2 147.7636 314.616 57.871 0.1144 14346 +14348 2 148.8916 314.6698 58.3055 0.1144 14347 +14349 2 150.023 314.7236 58.7146 0.1144 14348 +14350 2 150.9073 314.1779 58.9966 0.1144 14349 +14351 2 150.9439 313.0739 58.9302 0.1144 14350 +14352 2 151.0972 311.9459 58.6726 0.1144 14351 +14353 2 151.5091 310.8866 58.3719 0.1144 14352 +14354 2 151.9358 309.8318 58.0745 0.1144 14353 +14355 2 152.5764 308.8892 57.8642 0.1144 14354 +14356 2 153.3704 308.0666 57.7917 0.1144 14355 +14357 2 154.17 307.2475 57.8385 0.1144 14356 +14358 2 154.9685 306.4307 57.9642 0.1144 14357 +14359 2 155.7659 305.6127 58.1398 0.1144 14358 +14360 2 156.5621 304.7971 58.3456 0.1144 14359 +14361 2 157.4052 304.0294 58.5749 0.1144 14360 +14362 2 158.2941 303.3156 58.8269 0.1144 14361 +14363 2 159.1842 302.6052 59.0979 0.1144 14362 +14364 2 160.0719 301.8947 59.3846 0.1144 14363 +14365 2 160.7938 301.0139 59.6504 0.1144 14364 +14366 2 161.5911 300.2016 59.9525 0.1144 14365 +14367 2 162.3885 299.394 60.2792 0.1144 14366 +14368 2 163.187 298.5863 60.6228 0.1144 14367 +14369 2 163.9844 297.7775 60.9756 0.1144 14368 +14370 2 164.6376 296.8497 61.3141 0.1144 14369 +14371 2 165.2794 295.9116 61.6386 0.1144 14370 +14372 2 165.9212 294.9735 61.9447 0.1144 14371 +14373 2 166.5641 294.0343 62.2381 0.1144 14372 +14374 2 165.7118 294.0435 62.5797 0.1144 14373 +14375 2 164.5793 294.0858 62.9367 0.1144 14374 +14376 2 163.4433 294.1693 63.1963 0.1144 14375 +14377 2 162.3107 294.286 63.4726 0.1144 14376 +14378 2 161.185 294.4198 63.8235 0.1144 14377 +14379 2 160.0593 294.4953 64.2678 0.1144 14378 +14380 2 158.9405 294.5708 64.8088 0.1144 14379 +14381 2 157.8789 294.8671 65.4511 0.1144 14380 +14382 2 156.9042 295.3934 66.1172 0.1144 14381 +14383 2 155.9043 295.859 66.8021 0.1144 14382 +14384 2 154.8175 295.9688 67.475 0.1144 14383 +14385 2 153.7078 295.8636 68.0896 0.1144 14384 +14386 2 152.5959 295.7251 68.6482 0.1144 14385 +14387 2 151.4748 295.6176 69.1351 0.1144 14386 +14388 2 150.3445 295.5524 69.5372 0.1144 14387 +14389 2 149.2096 295.5021 69.8625 0.1144 14388 +14390 2 148.0714 295.454 70.128 0.1144 14389 +14391 2 146.9331 295.4002 70.3483 0.1144 14390 +14392 2 145.7959 295.3007 70.5267 0.1144 14391 +14393 2 144.6634 295.1486 70.6647 0.1144 14392 +14394 2 143.5331 294.9815 70.7728 0.1144 14393 +14395 2 142.4017 294.8134 70.8596 0.1144 14394 +14396 2 141.2703 294.6464 70.931 0.1144 14395 +14397 2 140.1389 294.4793 70.9929 0.1144 14396 +14398 2 139.0074 294.3123 71.0494 0.1144 14397 +14399 2 137.876 294.1453 71.1032 0.1144 14398 +14400 2 136.7469 293.9645 71.1539 0.1144 14399 +14401 2 135.6452 293.6682 71.1987 0.1144 14400 +14402 2 134.5824 293.2472 71.2348 0.1144 14401 +14403 2 133.5609 292.7336 71.2639 0.1144 14402 +14404 2 132.6148 292.0964 71.2908 0.1144 14403 +14405 2 131.7259 291.3768 71.3199 0.1144 14404 +14406 2 130.8496 290.6412 71.3558 0.1144 14405 +14407 2 130.0316 289.8438 71.4031 0.1144 14406 +14408 2 129.5809 288.828 71.4669 0.1144 14407 +14409 2 129.0432 287.8338 71.5722 0.1144 14408 +14410 2 128.1349 287.1726 71.727 0.1144 14409 +14411 2 127.1316 286.6281 71.9169 0.1144 14410 +14412 2 126.1237 286.095 72.1213 0.1144 14411 +14413 2 125.1147 285.5596 72.3223 0.1144 14412 +14414 2 124.1057 285.0265 72.5077 0.1144 14413 +14415 2 123.1802 284.3595 72.6258 0.1144 14414 +14416 2 122.6746 283.3596 72.5528 0.1144 14415 +14417 2 122.0316 282.4193 72.3593 0.1144 14416 +14418 2 120.9917 281.9537 72.2714 0.1144 14417 +14419 2 120.0205 281.3485 72.2921 0.1144 14418 +14420 2 119.31 280.4539 72.4164 0.1144 14419 +14421 2 118.6042 279.5581 72.6247 0.1144 14420 +14422 2 117.8995 278.6635 72.8938 0.1144 14421 +14423 2 117.2074 277.7849 73.4798 0.1144 14422 +14424 2 167.0126 293.5698 62.5887 0.1144 14373 +14425 2 167.7756 292.7805 63.364 0.1144 14424 +14426 2 168.5478 291.982 63.9828 0.1144 14425 +14427 2 169.3337 291.1697 64.4221 0.1144 14426 +14428 2 170.1162 290.3609 64.9228 0.1144 14427 +14429 2 170.8964 289.5544 65.4612 0.1144 14428 +14430 2 171.6766 288.7479 66.0167 0.1144 14429 +14431 2 172.4557 287.9414 66.5703 0.1144 14430 +14432 2 173.2359 287.1348 67.1115 0.1144 14431 +14433 2 174.0104 286.3203 67.636 0.1144 14432 +14434 2 174.7746 285.4944 68.1386 0.1144 14433 +14435 2 175.5068 284.6364 68.6036 0.1144 14434 +14436 2 176.1954 283.7395 69.0144 0.1144 14435 +14437 2 176.8647 282.8231 69.365 0.1144 14436 +14438 2 177.5328 281.9022 69.6545 0.1144 14437 +14439 2 178.2032 280.979 69.8807 0.1144 14438 +14440 2 178.8747 280.0558 70.0414 0.1144 14439 +14441 2 179.5886 279.1635 70.1151 0.1144 14440 +14442 2 180.4534 278.4324 70.0218 0.1144 14441 +14443 2 181.4064 277.8112 69.741 0.1144 14442 +14444 2 182.3616 277.2038 69.3311 0.1144 14443 +14445 2 183.3123 276.5986 68.8523 0.1144 14444 +14446 2 183.9255 275.6846 68.4351 0.1144 14445 +14447 2 184.3487 274.6298 68.1397 0.1144 14446 +14448 2 184.7457 273.5601 67.9602 0.1144 14447 +14449 2 185.2891 272.558 67.8748 0.1144 14448 +14450 2 186.1563 271.843 67.8572 0.1144 14449 +14451 2 187.1195 271.2264 67.8835 0.1144 14450 +14452 2 188.0873 270.6155 67.9336 0.1144 14451 +14453 2 189.054 270.0057 68.005 0.1144 14452 +14454 2 189.9784 269.3342 68.1055 0.1144 14453 +14455 2 190.8272 268.5712 68.248 0.1144 14454 +14456 2 191.6532 267.7841 68.446 0.1144 14455 +14457 2 192.4769 266.997 68.7109 0.1144 14456 +14458 2 193.2948 266.2111 69.0721 0.1144 14457 +14459 2 194.083 265.4252 69.704 0.1144 14458 +14460 2 194.8461 264.6552 70.5908 0.1144 14459 +14461 2 195.592 263.8991 71.6288 0.1144 14460 +14462 2 196.3287 263.1543 72.7527 0.1144 14461 +14463 2 197.0643 262.4119 73.8931 0.1144 14462 +14464 2 197.7759 261.642 74.9759 0.1144 14463 +14465 2 198.174 260.6272 75.8184 0.1144 14464 +14466 2 198.4611 259.5542 76.4859 0.1144 14465 +14467 2 198.7391 258.5097 77.4063 0.1144 14466 +14468 2 114.0716 318.9964 62.6878 0.1144 14310 +14469 2 114.2492 318.0023 63.9453 0.1144 14468 +14470 2 114.448 316.8926 64.4098 0.1144 14469 +14471 2 114.6277 315.768 64.6489 0.1144 14470 +14472 2 114.7935 314.6458 64.8642 0.1144 14471 +14473 2 115.1882 313.575 65.0577 0.1144 14472 +14474 2 115.5875 312.5053 65.221 0.1144 14473 +14475 2 115.8609 311.4174 65.3414 0.1144 14474 +14476 2 115.7476 310.2803 65.3951 0.1144 14475 +14477 2 115.7556 309.1374 65.3932 0.1144 14476 +14478 2 115.8815 308.0003 65.347 0.1144 14477 +14479 2 116.0359 306.8677 65.2736 0.1144 14478 +14480 2 116.2396 305.7443 65.1599 0.1144 14479 +14481 2 116.5141 304.638 64.9004 0.1144 14480 +14482 2 116.6926 303.5295 64.491 0.1144 14481 +14483 2 116.5576 302.4221 63.9873 0.1144 14482 +14484 2 116.108 301.4108 63.3884 0.1144 14483 +14485 2 115.4468 300.5208 62.6954 0.1144 14484 +14486 2 114.7363 299.6719 62.018 0.1144 14485 +14487 2 113.9061 298.9203 61.4723 0.1144 14486 +14488 2 112.9771 298.2843 61.0308 0.1144 14487 +14489 2 112.0916 297.6345 60.5018 0.1144 14488 +14490 2 111.7402 296.6049 59.9245 0.1144 14489 +14491 2 111.3469 295.5627 59.4205 0.1144 14490 +14492 2 110.7654 294.6029 58.8986 0.1144 14491 +14493 2 110.0989 293.7003 58.3596 0.1144 14492 +14494 2 109.4036 292.8194 57.822 0.1144 14493 +14495 2 108.6968 291.9454 57.302 0.1144 14494 +14496 2 107.979 291.0782 56.7988 0.1144 14495 +14497 2 107.2556 290.2145 56.3119 0.1144 14496 +14498 2 106.5305 289.3508 55.8446 0.1144 14497 +14499 2 105.8046 288.4859 55.3986 0.1144 14498 +14500 2 105.0833 287.6142 54.9749 0.1144 14499 +14501 2 104.4419 286.6841 54.5754 0.1144 14500 +14502 2 103.9679 285.6568 54.2357 0.1144 14501 +14503 2 103.4417 284.6489 53.9787 0.1144 14502 +14504 2 102.6674 283.8264 53.7832 0.1144 14503 +14505 2 101.6028 283.6262 53.599 0.1144 14504 +14506 2 100.4843 283.8401 53.4652 0.1144 14505 +14507 2 100.3349 284.8388 53.2868 0.1144 14506 +14508 2 175.294 408.4789 37.5547 0.1144 14111 +14509 2 175.0743 407.3967 36.8264 0.1144 14508 +14510 2 174.8421 406.2893 36.4333 0.1144 14509 +14511 2 174.5778 405.1819 36.1424 0.1144 14510 +14512 2 174.2953 404.0757 35.9744 0.1144 14511 +14513 2 174.0104 402.9683 35.8798 0.1144 14512 +14514 2 173.7118 401.8678 35.6899 0.1144 14513 +14515 2 173.3858 400.7844 35.2696 0.1144 14514 +14516 2 173.046 399.7262 34.6164 0.1144 14515 +14517 2 172.7074 398.6863 33.794 0.1144 14516 +14518 2 172.3722 397.659 32.8762 0.1144 14517 +14519 2 172.0382 396.634 31.9332 0.1144 14518 +14520 2 171.6904 395.6101 31.0274 0.1144 14519 +14521 2 171.2385 394.6159 30.2358 0.1144 14520 +14522 2 170.6059 393.6973 29.6363 0.1144 14521 +14523 2 169.9034 392.8118 29.2146 0.1144 14522 +14524 2 169.4024 391.8497 28.8859 0.1144 14523 +14525 2 169.6552 390.7858 28.5415 0.1144 14524 +14526 2 170.1483 389.77 28.2038 0.1144 14525 +14527 2 169.9012 388.8685 27.9936 0.1144 14526 +14528 2 169.3658 387.9178 27.9238 0.1144 14527 +14529 2 169.2331 386.7898 27.8492 0.1144 14528 +14530 2 169.2136 385.647 27.7402 0.1144 14529 +14531 2 169.1919 384.5053 27.5957 0.1144 14530 +14532 2 169.1324 383.3658 27.4024 0.1144 14531 +14533 2 168.9242 382.2504 27.1413 0.1144 14532 +14534 2 168.5467 381.1797 26.8453 0.1144 14533 +14535 2 168.1097 380.1295 26.5507 0.1144 14534 +14536 2 167.7093 379.0644 26.2699 0.1144 14535 +14537 2 167.3489 377.9845 26.0036 0.1144 14536 +14538 2 167.1601 376.8691 25.7558 0.1144 14537 +14539 2 167.2276 375.7365 25.5321 0.1144 14538 +14540 2 167.3638 374.6051 25.304 0.1144 14539 +14541 2 167.4152 373.4702 25.0045 0.1144 14540 +14542 2 167.3764 372.3377 24.6266 0.1144 14541 +14543 2 167.0057 371.2886 24.2597 0.1144 14542 +14544 2 166.4737 370.2853 23.9311 0.1144 14543 +14545 2 165.9418 369.2798 23.6329 0.1144 14544 +14546 2 165.4716 368.2444 23.3522 0.1144 14545 +14547 2 165.1032 367.1691 23.0714 0.1144 14546 +14548 2 164.7692 366.0811 22.7868 0.1144 14547 +14549 2 164.418 364.9978 22.5076 0.1144 14548 +14550 2 163.9455 363.9636 22.2842 0.1144 14549 +14551 2 163.4147 362.9523 22.1343 0.1144 14550 +14552 2 162.9365 361.9147 22.0651 0.1144 14551 +14553 2 162.6894 360.8062 22.0702 0.1144 14552 +14554 2 162.6882 359.6667 22.0888 0.1144 14553 +14555 2 162.9605 358.5639 22.0818 0.1144 14554 +14556 2 163.2396 357.4565 22.0201 0.1144 14555 +14557 2 163.2591 356.3228 21.8891 0.1144 14556 +14558 2 163.1939 355.1823 21.7048 0.1144 14557 +14559 2 163.1413 354.044 21.4843 0.1144 14558 +14560 2 163.1161 352.9057 21.211 0.1144 14559 +14561 2 163.1127 351.7697 20.8756 0.1144 14560 +14562 2 163.171 350.6394 20.4721 0.1144 14561 +14563 2 163.2477 349.5149 19.9907 0.1144 14562 +14564 2 163.0944 348.4063 19.4891 0.1144 14563 +14565 2 162.9868 347.2887 18.9867 0.1144 14564 +14566 2 163.1802 346.1927 18.434 0.1144 14565 +14567 2 163.8014 345.2775 17.8602 0.1144 14566 +14568 2 164.2876 344.2651 17.3734 0.1144 14567 +14569 2 164.0324 343.1989 16.9236 0.1144 14568 +14570 2 164.1903 342.0938 16.4969 0.1144 14569 +14571 2 164.6628 341.0825 15.934 0.1144 14570 +14572 2 165.2691 340.3835 15.5463 0.1144 14571 +14573 2 165.165 339.9385 15.3242 0.1144 14572 +14574 2 164.8847 338.8448 14.9152 0.1144 14573 +14575 2 164.6159 337.7374 14.7431 0.1144 14574 +14576 2 164.5049 336.6037 14.6372 0.1144 14575 +14577 2 164.4557 335.4631 14.5702 0.1144 14576 +14578 2 164.3024 334.3306 14.5155 0.1144 14577 +14579 2 164.2384 333.198 14.4675 0.1144 14578 +14580 2 164.5244 332.1089 14.4177 0.1144 14579 +14581 2 165.0712 331.1056 14.3555 0.1144 14580 +14582 2 165.5425 330.0749 14.2623 0.1144 14581 +14583 2 165.6638 328.9572 14.11 0.1144 14582 +14584 2 165.5162 327.8281 13.9115 0.1144 14583 +14585 2 165.2771 326.7127 13.7154 0.1144 14584 +14586 2 165.1936 325.587 13.5514 0.1144 14585 +14587 2 165.1055 324.4613 13.4137 0.1144 14586 +14588 2 164.7921 323.363 13.3036 0.1144 14587 +14589 2 164.2532 322.3655 13.2112 0.1144 14588 +14590 2 163.6538 321.3942 13.0765 0.1144 14589 +14591 2 163.2511 320.3314 12.8843 0.1144 14590 +14592 2 162.9914 319.2218 12.6985 0.1144 14591 +14593 2 162.9205 318.0846 12.5568 0.1144 14592 +14594 2 162.9182 316.9406 12.4654 0.1144 14593 +14595 2 163.0394 315.8058 12.3831 0.1144 14594 +14596 2 163.3666 314.7133 12.338 0.1144 14595 +14597 2 163.6995 313.6196 12.3896 0.1144 14596 +14598 2 163.5668 312.5053 12.5196 0.1144 14597 +14599 2 163.2374 311.4128 12.6879 0.1144 14598 +14600 2 162.9559 310.3066 12.8556 0.1144 14599 +14601 2 162.6974 309.1935 13.0176 0.1144 14600 +14602 2 162.3668 308.1009 13.1734 0.1144 14601 +14603 2 161.9549 307.0359 13.3263 0.1144 14602 +14604 2 161.3795 306.0532 13.5128 0.1144 14603 +14605 2 160.8201 305.0625 13.795 0.1144 14604 +14606 2 160.6039 303.9585 14.1739 0.1144 14605 +14607 2 160.4632 302.8374 14.6097 0.1144 14606 +14608 2 160.255 301.7243 15.0102 0.1144 14607 +14609 2 160.033 300.6112 15.3701 0.1144 14608 +14610 2 159.7962 299.4992 15.6599 0.1144 14609 +14611 2 159.5468 298.3861 15.8694 0.1144 14610 +14612 2 159.2848 297.2753 16.0758 0.1144 14611 +14613 2 159.0068 296.1736 16.3973 0.1144 14612 +14614 2 158.7254 295.0788 16.8321 0.1144 14613 +14615 2 158.5813 293.9611 17.3148 0.1144 14614 +14616 2 158.563 292.8354 17.7978 0.1144 14615 +14617 2 158.5561 291.7074 18.2662 0.1144 14616 +14618 2 158.484 290.5794 18.6997 0.1144 14617 +14619 2 158.0608 289.5338 19.136 0.1144 14618 +14620 2 157.6226 288.4916 19.5627 0.1144 14619 +14621 2 156.9053 287.7149 19.863 0.1144 14620 +14622 2 156.1011 286.9072 20.0833 0.1144 14621 +14623 2 155.2946 286.0984 20.2391 0.1144 14622 +14624 2 154.4869 285.2884 20.3496 0.1144 14623 +14625 2 153.6781 284.4796 20.4316 0.1144 14624 +14626 2 152.7961 283.7532 20.5441 0.1144 14625 +14627 2 151.8671 283.0897 20.7076 0.1144 14626 +14628 2 150.9382 282.4261 20.8811 0.1144 14627 +14629 2 150.0093 281.7615 21.0563 0.1144 14628 +14630 2 149.1032 281.0671 21.2131 0.1144 14629 +14631 2 148.2178 280.3429 21.3394 0.1144 14630 +14632 2 147.3346 279.6176 21.4423 0.1144 14631 +14633 2 146.4514 278.8912 21.5365 0.1144 14632 +14634 2 145.5671 278.1659 21.6373 0.1144 14633 +14635 2 144.6988 277.4246 21.7672 0.1144 14634 +14636 2 143.882 276.6284 21.9758 0.1144 14635 +14637 2 143.0686 275.831 22.2458 0.1144 14636 +14638 2 142.2564 275.0359 22.5565 0.1144 14637 +14639 2 141.4442 274.242 22.889 0.1144 14638 +14640 2 140.6296 273.4503 23.2254 0.1144 14639 +14641 2 139.6607 272.8543 23.5224 0.1144 14640 +14642 2 138.6642 272.3017 23.775 0.1144 14641 +14643 2 137.6655 271.7515 23.9916 0.1144 14642 +14644 2 136.5661 271.4437 24.1696 0.1144 14643 +14645 2 135.4599 271.1566 24.3195 0.1144 14644 +14646 2 134.3536 270.8695 24.452 0.1144 14645 +14647 2 133.2485 270.5823 24.5775 0.1144 14646 +14648 2 132.1434 270.2894 24.7013 0.1144 14647 +14649 2 131.0932 269.8376 24.8145 0.1144 14648 +14650 2 130.0442 269.3857 24.9319 0.1144 14649 +14651 2 128.994 268.9327 25.0672 0.1144 14650 +14652 2 127.9461 268.4808 25.2333 0.1144 14651 +14653 2 126.8982 268.0289 25.4415 0.1144 14652 +14654 2 127.2494 267.5576 23.0764 0.1144 14653 +14655 2 126.1592 267.3322 22.6366 0.1144 14654 +14656 2 125.0529 267.5576 22.2182 0.1144 14655 +14657 2 123.997 267.9637 21.799 0.1144 14656 +14658 2 122.9434 268.3778 21.3981 0.1144 14657 +14659 2 121.8875 268.7942 21.0332 0.1144 14658 +14660 2 121.0112 268.077 20.7285 0.1144 14659 +14661 2 120.2172 267.2819 20.193 0.1144 14660 +14662 2 126.7586 267.6743 25.6707 0.1144 14653 +14663 2 126.3491 266.6286 26.1968 0.1144 14662 +14664 2 125.9407 265.5888 26.7995 0.1144 14663 +14665 2 125.4041 264.6244 27.5284 0.1144 14664 +14666 2 124.6239 263.8419 28.2475 0.1144 14665 +14667 2 123.663 263.2619 28.7801 0.1144 14666 +14668 2 122.5613 263.0056 29.213 0.1144 14667 +14669 2 121.4539 262.7585 29.552 0.1144 14668 +14670 2 120.3419 262.5114 29.8178 0.1144 14669 +14671 2 119.2151 262.3318 30.0191 0.1144 14670 +14672 2 118.0722 262.3604 30.1512 0.1144 14671 +14673 2 116.9362 262.2357 30.2448 0.1144 14672 +14674 2 115.7991 262.1121 30.3052 0.1144 14673 +14675 2 114.662 261.9886 30.3447 0.1144 14674 +14676 2 113.5248 261.8639 30.3755 0.1144 14675 +14677 2 112.3877 261.7403 30.4102 0.1144 14676 +14678 2 111.2507 261.6156 30.459 0.1144 14677 +14679 2 110.114 261.4887 30.5256 0.1144 14678 +14680 2 108.9776 261.3628 30.6144 0.1144 14679 +14681 2 108.3909 261.6179 30.7406 0.1144 14680 +14682 2 107.3442 262.0721 30.9397 0.1144 14681 +14683 2 106.2219 262.2586 31.1928 0.1144 14682 +14684 2 105.0857 262.238 31.4958 0.1144 14683 +14685 2 103.9506 262.2037 31.8352 0.1144 14684 +14686 2 102.8167 262.1693 32.1978 0.1144 14685 +14687 2 101.6834 262.135 32.5699 0.1144 14686 +14688 2 100.5919 261.8422 32.9812 0.1144 14687 +14689 2 99.5075 261.5218 33.411 0.1144 14688 +14690 2 98.4123 261.2393 33.8268 0.1144 14689 +14691 2 97.289 261.0768 34.1776 0.1144 14690 +14692 2 96.1587 260.9475 34.4719 0.1144 14691 +14693 2 95.0203 260.8949 34.7175 0.1144 14692 +14694 2 93.8825 260.7862 34.8331 0.1144 14693 +14695 2 92.7467 260.6501 34.8547 0.1144 14694 +14696 2 91.6108 260.514 34.846 0.1144 14695 +14697 2 90.475 260.3778 34.825 0.1144 14696 +14698 2 89.3391 260.2428 34.8009 0.1144 14697 +14699 2 88.2032 260.1067 34.7768 0.1144 14698 +14700 2 108.9525 260.9521 31.3466 0.1144 14680 +14701 2 109.2555 260.2794 33.4746 0.1144 14700 +14702 2 109.5951 259.5553 35.3536 0.1144 14701 +14703 2 109.61 259.4523 38.1422 0.1144 14702 +14704 2 158.3067 287.8945 19.9099 0.1144 14620 +14705 2 159.0938 287.0742 19.7691 0.1144 14704 +14706 2 159.429 286.0583 19.697 0.1144 14705 +14707 2 159.2425 284.9372 19.5637 0.1144 14706 +14708 2 158.8696 283.8607 19.6377 0.1144 14707 +14709 2 158.42 282.838 20.2078 0.1144 14708 +14710 2 158.6499 282.3266 20.6683 0.1144 14709 +14711 2 159.0835 281.3611 21.7286 0.1144 14710 +14712 2 159.5445 280.3704 22.4924 0.1144 14711 +14713 2 160.033 279.3728 23.1598 0.1144 14712 +14714 2 160.5226 278.4016 24.0214 0.1144 14713 +14715 2 161.0111 277.4497 25.0116 0.1144 14714 +14716 2 161.6415 276.6226 26.1371 0.1144 14715 +14717 2 162.4835 276.0998 27.4697 0.1144 14716 +14718 2 163.322 275.5198 28.7286 0.1144 14717 +14719 2 164.1285 274.8597 29.8808 0.1144 14718 +14720 2 164.9373 274.1848 30.9722 0.1144 14719 +14721 2 165.7519 273.5029 32.011 0.1144 14720 +14722 2 166.5733 272.8154 32.993 0.1144 14721 +14723 2 167.4015 272.1233 33.9195 0.1144 14722 +14724 2 168.2344 271.4254 34.802 0.1144 14723 +14725 2 169.0191 270.6624 35.609 0.1144 14724 +14726 2 169.5991 269.7174 36.258 0.1144 14725 +14727 2 170.122 268.7233 36.7786 0.1144 14726 +14728 2 170.6425 267.72 37.2193 0.1144 14727 +14729 2 171.5211 267.0542 37.7594 0.1144 14728 +14730 2 172.5163 266.56 38.4152 0.1144 14729 +14731 2 173.5116 266.0864 39.1681 0.1144 14730 +14732 2 174.214 265.2433 39.9462 0.1144 14731 +14733 2 174.7597 264.2846 40.6935 0.1144 14732 +14734 2 175.2917 263.3156 41.4109 0.1144 14733 +14735 2 175.8259 262.3421 42.0851 0.1144 14734 +14736 2 176.3625 261.3651 42.7227 0.1144 14735 +14737 2 177.2822 260.7382 43.3434 0.1144 14736 +14738 2 178.3896 260.5723 43.9228 0.1144 14737 +14739 2 179.4993 260.4133 44.478 0.1144 14738 +14740 2 180.6101 260.2543 45.0198 0.1144 14739 +14741 2 181.7233 260.0941 45.5409 0.1144 14740 +14742 2 182.8375 259.9351 46.0334 0.1144 14741 +14743 2 183.9541 259.7715 46.4937 0.1144 14742 +14744 2 185.0466 259.4855 46.9235 0.1144 14743 +14745 2 185.9892 258.9158 47.6778 0.1144 14744 +14746 2 158.3685 282.7842 20.7484 0.1144 14709 +14747 2 157.5917 281.9811 21.3462 0.1144 14746 +14748 2 156.8172 281.1815 21.9883 0.1144 14747 +14749 2 156.0782 280.3612 22.63 0.1144 14748 +14750 2 155.8128 279.2687 23.1423 0.1144 14749 +14751 2 155.6069 278.1567 23.5679 0.1144 14750 +14752 2 155.4845 277.0413 24.0062 0.1144 14751 +14753 2 155.8849 276.0163 24.7574 0.1144 14752 +14754 2 156.1194 274.941 25.4932 0.1144 14753 +14755 2 155.9455 274.1013 26.4596 0.1144 14754 +14756 2 154.8438 273.9148 26.9891 0.1144 14755 +14757 2 153.7284 273.726 27.407 0.1144 14756 +14758 2 152.6096 273.5373 27.7683 0.1144 14757 +14759 2 151.4908 273.3474 28.1148 0.1144 14758 +14760 2 150.3719 273.1586 28.476 0.1144 14759 +14761 2 149.276 272.8829 28.9019 0.1144 14760 +14762 2 148.1869 272.5923 29.3804 0.1144 14761 +14763 2 147.1012 272.3006 29.899 0.1144 14762 +14764 2 146.0167 272.0112 30.4461 0.1144 14763 +14765 2 144.9345 271.7206 31.0114 0.1144 14764 +14766 2 143.8534 271.43 31.5854 0.1144 14765 +14767 2 142.7723 271.1406 32.1616 0.1144 14766 +14768 2 141.6913 270.85 32.7382 0.1144 14767 +14769 2 140.6102 270.5606 33.3155 0.1144 14768 +14770 2 139.5291 270.27 33.8929 0.1144 14769 +14771 2 138.448 269.9794 34.4702 0.1144 14770 +14772 2 137.3669 269.69 35.0498 0.1144 14771 +14773 2 136.2859 269.3994 35.6306 0.1144 14772 +14774 2 135.2048 269.1088 36.2135 0.1144 14773 +14775 2 134.1248 268.8194 36.7993 0.1144 14774 +14776 2 133.0449 268.53 37.3895 0.1144 14775 +14777 2 131.965 268.2405 37.9845 0.1144 14776 +14778 2 130.8725 268.0072 38.5916 0.1144 14777 +14779 2 129.7582 267.9934 39.2129 0.1144 14778 +14780 2 128.6439 267.9912 39.8493 0.1144 14779 +14781 2 127.5308 267.9889 40.4984 0.1144 14780 +14782 2 126.42 267.9854 41.1592 0.1144 14781 +14783 2 125.3092 267.9831 41.83 0.1144 14782 +14784 2 124.2018 267.9809 42.5365 0.1144 14783 +14785 2 123.0967 267.9786 43.2572 0.1144 14784 +14786 2 121.9904 267.9751 43.9751 0.1144 14785 +14787 2 120.883 267.9728 44.674 0.1144 14786 +14788 2 119.8306 267.9351 45.7257 0.1144 14787 +14789 2 118.944 268.0575 47.4681 0.1144 14788 +14790 2 165.6546 340.1421 15.1446 0.1144 14572 +14791 2 166.6385 339.5804 14.7488 0.1144 14790 +14792 2 167.6864 339.1285 14.5607 0.1144 14791 +14793 2 168.7354 338.6823 14.3243 0.1144 14792 +14794 2 169.7822 338.235 14.0577 0.1144 14793 +14795 2 170.909 338.3986 13.7709 0.1144 14794 +14796 2 172.021 338.6366 13.4805 0.1144 14795 +14797 2 173.1158 338.87 12.901 0.1144 14796 +14798 2 164.1937 341.031 15.3671 0.1144 14571 +14799 2 163.0612 340.9063 15.4782 0.1144 14798 +14800 2 161.924 340.7827 15.5274 0.1144 14799 +14801 2 160.7881 340.9154 15.5478 0.1144 14800 +14802 2 159.6727 341.1683 15.5417 0.1144 14801 +14803 2 158.5573 341.4234 15.5175 0.1144 14802 +14804 2 157.4419 341.6796 15.4833 0.1144 14803 +14805 2 156.3276 341.9347 15.4475 0.1144 14804 +14806 2 155.2168 342.2104 15.4382 0.1144 14805 +14807 2 154.1185 342.5308 15.4799 0.1144 14806 +14808 2 153.0203 342.8499 15.5613 0.1144 14807 +14809 2 151.9232 343.168 15.6706 0.1144 14808 +14810 2 150.8387 343.5295 15.8142 0.1144 14809 +14811 2 149.7496 343.8727 15.9792 0.1144 14810 +14812 2 148.6193 343.7091 16.1016 0.1144 14811 +14813 2 147.4868 343.5455 16.1852 0.1144 14812 +14814 2 146.3554 343.3819 16.2666 0.1144 14813 +14815 2 282.4422 500.1831 52.402 0.1144 13971 +14816 2 282.9341 500.4577 54.8313 0.1144 14815 +14817 2 283.251 499.8548 56.0734 0.1144 14816 +14818 2 283.3436 498.7382 56.6364 0.1144 14817 +14819 2 283.4043 497.6183 57.1847 0.1144 14818 +14820 2 283.1949 496.5372 57.7343 0.1144 14819 +14821 2 282.5394 495.6483 58.2313 0.1144 14820 +14822 2 281.7889 494.8052 58.6765 0.1144 14821 +14823 2 281.3222 493.7973 59.1248 0.1144 14822 +14824 2 281.2318 492.6819 59.5633 0.1144 14823 +14825 2 281.4046 491.5688 59.9833 0.1144 14824 +14826 2 281.8793 490.5552 60.4394 0.1144 14825 +14827 2 282.2591 489.4959 60.886 0.1144 14826 +14828 2 282.3644 488.3702 61.2136 0.1144 14827 +14829 2 282.377 487.233 61.5017 0.1144 14828 +14830 2 282.425 486.0948 61.7674 0.1144 14829 +14831 2 282.7133 484.9977 62.0144 0.1144 14830 +14832 2 282.8243 483.8685 62.288 0.1144 14831 +14833 2 282.8346 482.7302 62.5576 0.1144 14832 +14834 2 282.8346 481.5977 62.944 0.1144 14833 +14835 2 282.8346 480.4674 63.3693 0.1144 14834 +14836 2 282.6835 479.3429 63.7316 0.1144 14835 +14837 2 282.0086 478.4448 64.0483 0.1144 14836 +14838 2 281.2741 477.5742 64.3224 0.1144 14837 +14839 2 280.5397 476.7037 64.5652 0.1144 14838 +14840 2 279.946 475.7313 64.7956 0.1144 14839 +14841 2 279.3694 474.7474 65.0359 0.1144 14840 +14842 2 279.0639 473.6526 65.2674 0.1144 14841 +14843 2 278.842 472.5338 65.4836 0.1144 14842 +14844 2 278.4759 471.4573 65.7622 0.1144 14843 +14845 2 277.9748 470.446 66.2088 0.1144 14844 +14846 2 277.6019 469.3901 66.6873 0.1144 14845 +14847 2 277.6763 468.2541 66.9609 0.1144 14846 +14848 2 277.6854 467.1204 67.0998 0.1144 14847 +14849 2 277.2324 466.0736 67.1754 0.1144 14848 +14850 2 276.5677 465.1435 67.2277 0.1144 14849 +14851 2 275.9717 464.1746 67.296 0.1144 14850 +14852 2 275.7086 463.0649 67.4831 0.1144 14851 +14853 2 275.5679 461.9358 67.7765 0.1144 14852 +14854 2 275.4397 460.8055 68.0593 0.1144 14853 +14855 2 275.3173 459.6718 68.2867 0.1144 14854 +14856 2 275.1457 458.5449 68.4634 0.1144 14855 +14857 2 274.7865 457.4639 68.6059 0.1144 14856 +14858 2 274.2397 456.4606 68.7319 0.1144 14857 +14859 2 273.7031 455.4516 68.852 0.1144 14858 +14860 2 273.2238 454.4151 68.9668 0.1144 14859 +14861 2 272.8749 453.3283 69.0656 0.1144 14860 +14862 2 272.8875 452.2598 69.2076 0.1144 14861 +14863 2 273.4286 451.2817 69.3938 0.1144 14862 +14864 2 273.5945 450.1548 69.4473 0.1144 14863 +14865 2 273.6322 449.012 69.3748 0.1144 14864 +14866 2 273.607 447.8726 69.2362 0.1144 14865 +14867 2 273.4114 446.7503 69.1046 0.1144 14866 +14868 2 273.0911 445.6532 69.0264 0.1144 14867 +14869 2 272.717 444.5721 69.0376 0.1144 14868 +14870 2 272.2777 443.5185 69.1779 0.1144 14869 +14871 2 271.7824 442.4935 69.4464 0.1144 14870 +14872 2 271.2756 441.4788 69.8012 0.1144 14871 +14873 2 270.7127 440.4983 70.1991 0.1144 14872 +14874 2 270.0023 439.6255 70.611 0.1144 14873 +14875 2 269.174 438.8544 71.0094 0.1144 14874 +14876 2 268.4396 437.9998 71.3194 0.1144 14875 +14877 2 267.9237 436.9874 71.4512 0.1144 14876 +14878 2 267.2476 436.1054 71.4776 0.1144 14877 +14879 2 266.3667 435.3755 71.4843 0.1144 14878 +14880 2 265.7066 434.4672 71.4053 0.1144 14879 +14881 2 265.2295 433.4319 71.2096 0.1144 14880 +14882 2 264.7834 432.3851 70.9282 0.1144 14881 +14883 2 264.3384 431.3406 70.5849 0.1144 14882 +14884 2 263.8945 430.2984 70.1904 0.1144 14883 +14885 2 263.4518 429.2585 69.7648 0.1144 14884 +14886 2 263.0079 428.2186 69.3356 0.1144 14885 +14887 2 262.564 427.1776 68.9153 0.1144 14886 +14888 2 262.1201 426.1366 68.5101 0.1144 14887 +14889 2 261.7792 425.0578 68.126 0.1144 14888 +14890 2 261.6191 423.9389 67.7732 0.1144 14889 +14891 2 261.5378 422.8052 67.4559 0.1144 14890 +14892 2 261.5001 421.6658 67.2017 0.1144 14891 +14893 2 261.4967 420.5252 67.0289 0.1144 14892 +14894 2 261.5058 419.3812 66.9329 0.1144 14893 +14895 2 261.587 418.2418 66.897 0.1144 14894 +14896 2 261.9897 417.1859 66.8861 0.1144 14895 +14897 2 262.6018 416.2227 66.9166 0.1144 14896 +14898 2 263.3294 415.3429 67.0401 0.1144 14897 +14899 2 264.0695 414.4769 67.265 0.1144 14898 +14900 2 264.7365 413.5571 67.5844 0.1144 14899 +14901 2 264.5489 412.5081 67.8863 0.1144 14900 +14902 2 263.9872 411.5185 68.1153 0.1144 14901 +14903 2 263.3625 410.5633 68.2973 0.1144 14902 +14904 2 262.9335 409.5062 68.3346 0.1144 14903 +14905 2 262.5606 408.4252 68.2366 0.1144 14904 +14906 2 262.1899 407.3452 68.0546 0.1144 14905 +14907 2 262.0595 406.2127 67.9039 0.1144 14906 +14908 2 262.0584 405.0698 67.8264 0.1144 14907 +14909 2 262.071 403.9258 67.8191 0.1144 14908 +14910 2 262.0961 402.7818 67.8628 0.1144 14909 +14911 2 262.2769 401.6538 67.944 0.1144 14910 +14912 2 262.7791 400.6299 68.0702 0.1144 14911 +14913 2 263.4884 399.7342 68.1708 0.1144 14912 +14914 2 264.2526 398.8831 68.224 0.1144 14913 +14915 2 265.2078 398.2573 68.2654 0.1144 14914 +14916 2 266.2809 397.8638 68.2746 0.1144 14915 +14917 2 267.3928 397.5961 68.1747 0.1144 14916 +14918 2 268.5037 397.3387 67.9787 0.1144 14917 +14919 2 269.6122 397.0801 67.6964 0.1144 14918 +14920 2 270.7082 396.7827 67.3546 0.1144 14919 +14921 2 271.8007 396.4795 66.978 0.1144 14920 +14922 2 272.8932 396.1775 66.5949 0.1144 14921 +14923 2 273.9937 396.4132 66.1329 0.1144 14922 +14924 2 274.9833 396.7861 65.0661 0.1144 14923 +14925 2 301.4165 507.269 50.3992 0.1144 13951 +14926 2 301.6156 506.2463 49.2551 0.1144 14925 +14927 2 301.0596 505.2876 48.715 0.1144 14926 +14928 2 300.1055 504.7065 48.1194 0.1144 14927 +14929 2 299.0222 504.7248 47.252 0.1144 14928 +14930 2 297.9651 504.4537 46.4576 0.1144 14929 +14931 2 297.0053 503.916 45.6907 0.1144 14930 +14932 2 296.0741 503.3371 44.9336 0.1144 14931 +14933 2 295.0296 502.9859 44.2355 0.1144 14932 +14934 2 294.1659 502.3144 43.5904 0.1144 14933 +14935 2 294.0103 501.3397 42.8921 0.1144 14934 +14936 2 294.7928 500.5583 42.3531 0.1144 14935 +14937 2 295.7217 499.9143 42.0017 0.1144 14936 +14938 2 296.4047 499.0403 41.79 0.1144 14937 +14939 2 296.6175 497.9386 41.7141 0.1144 14938 +14940 2 296.4996 496.8014 41.7124 0.1144 14939 +14941 2 296.4573 495.6677 41.7082 0.1144 14940 +14942 2 296.6095 494.534 41.6679 0.1144 14941 +14943 2 296.8691 493.4244 41.5792 0.1144 14942 +14944 2 297.3828 492.4268 41.3991 0.1144 14943 +14945 2 298.2946 491.8491 41.0659 0.1144 14944 +14946 2 299.3528 491.4613 40.6353 0.1144 14945 +14947 2 300.3778 490.9808 40.224 0.1144 14946 +14948 2 301.4657 490.6925 39.888 0.1144 14947 +14949 2 302.5823 490.4923 39.5371 0.1144 14948 +14950 2 303.5936 490.0061 39.2118 0.1144 14949 +14951 2 304.55 489.386 38.9866 0.1144 14950 +14952 2 305.6368 489.0955 38.8368 0.1144 14951 +14953 2 306.6332 488.5658 38.7394 0.1144 14952 +14954 2 307.4271 487.7501 38.6814 0.1144 14953 +14955 2 308.03 486.7823 38.6072 0.1144 14954 +14956 2 308.5643 485.771 38.6005 0.1144 14955 +14957 2 308.0369 484.8455 38.6425 0.1144 14956 +14958 2 307.0473 484.2792 38.663 0.1144 14957 +14959 2 306.1985 483.515 38.6579 0.1144 14958 +14960 2 305.615 482.5346 38.7565 0.1144 14959 +14961 2 305.1014 481.5153 38.9558 0.1144 14960 +14962 2 304.8463 481.3574 39.2722 0.1144 14961 +14963 2 303.8887 480.7626 39.7158 0.1144 14962 +14964 2 302.8557 480.2787 39.9062 0.1144 14963 +14965 2 301.7723 480.5727 40.1517 0.1144 14964 +14966 2 300.9567 479.7742 40.3483 0.1144 14965 +14967 2 300.0941 479.026 40.5292 0.1144 14966 +14968 2 299.1709 478.3728 40.9469 0.1144 14967 +14969 2 305.305 481.3769 39.1222 0.1144 14961 +14970 2 306.2511 480.7374 39.2692 0.1144 14969 +14971 2 307.0256 479.8554 39.4246 0.1144 14970 +14972 2 307.7886 479.01 39.5587 0.1144 14971 +14973 2 308.713 478.3396 39.7242 0.1144 14972 +14974 2 309.6854 477.7424 39.8997 0.1144 14973 +14975 2 310.691 477.2162 40.0747 0.1144 14974 +14976 2 311.8052 477.0034 40.2791 0.1144 14975 +14977 2 312.9183 476.9336 40.6325 0.1144 14976 +14978 2 313.8827 476.3913 40.9581 0.1144 14977 +14979 2 314.5966 475.5036 41.2014 0.1144 14978 +14980 2 315.3276 474.6376 41.379 0.1144 14979 +14981 2 316.205 473.9077 41.5016 0.1144 14980 +14982 2 316.9921 473.0852 41.5769 0.1144 14981 +14983 2 317.6224 472.1311 41.6217 0.1144 14982 +14984 2 318.0629 471.0992 41.6685 0.1144 14983 +14985 2 318.1292 469.9598 41.734 0.1144 14984 +14986 2 318.0354 468.8226 41.8236 0.1144 14985 +14987 2 317.8181 467.7015 41.942 0.1144 14986 +14988 2 317.6213 466.5781 42.1137 0.1144 14987 +14989 2 317.6122 465.4513 42.4012 0.1144 14988 +14990 2 317.7082 464.3359 42.7932 0.1144 14989 +14991 2 317.5252 463.2193 43.1746 0.1144 14990 +14992 2 317.2529 462.1177 43.5196 0.1144 14991 +14993 2 316.9852 461.0126 43.8231 0.1144 14992 +14994 2 316.7553 459.8972 44.07 0.1144 14993 +14995 2 316.6031 458.7657 44.2487 0.1144 14994 +14996 2 316.5311 457.6263 44.3786 0.1144 14995 +14997 2 316.5276 456.4835 44.4931 0.1144 14996 +14998 2 316.5391 455.3406 44.6018 0.1144 14997 +14999 2 316.4762 454.2012 44.6984 0.1144 14998 +15000 2 316.2863 453.0743 44.7734 0.1144 14999 +15001 2 316.0186 451.9624 44.8263 0.1144 15000 +15002 2 315.7291 450.8561 44.8613 0.1144 15001 +15003 2 315.4443 449.7476 44.8823 0.1144 15002 +15004 2 315.2109 448.6288 44.8944 0.1144 15003 +15005 2 315.0473 447.4973 44.9022 0.1144 15004 +15006 2 314.8482 446.3728 44.9145 0.1144 15005 +15007 2 314.5222 445.278 44.9408 0.1144 15006 +15008 2 314.1081 444.2118 44.9719 0.1144 15007 +15009 2 313.6024 443.1879 44.9672 0.1144 15008 +15010 2 313.0785 442.1766 44.898 0.1144 15009 +15011 2 312.8154 441.0795 44.7916 0.1144 15010 +15012 2 312.6918 439.9469 44.6628 0.1144 15011 +15013 2 312.4264 438.8373 44.5001 0.1144 15012 +15014 2 312.1015 437.7436 44.3114 0.1144 15013 +15015 2 311.7778 436.6488 44.1146 0.1144 15014 +15016 2 311.4563 435.554 43.9286 0.1144 15015 +15017 2 311.1268 434.4603 43.7674 0.1144 15016 +15018 2 310.7516 433.3815 43.6262 0.1144 15017 +15019 2 310.3169 432.3256 43.491 0.1144 15018 +15020 2 309.8558 431.28 43.3544 0.1144 15019 +15021 2 309.4154 430.2252 43.2132 0.1144 15020 +15022 2 309.047 429.1464 43.0634 0.1144 15021 +15023 2 308.7404 428.0459 42.9047 0.1144 15022 +15024 2 308.4842 426.9339 42.7423 0.1144 15023 +15025 2 308.3274 425.8037 42.5886 0.1144 15024 +15026 2 308.0815 424.6963 42.4449 0.1144 15025 +15027 2 307.9808 423.5912 42.2948 0.1144 15026 +15028 2 308.1604 422.4632 42.124 0.1144 15027 +15029 2 308.3686 421.3421 41.9241 0.1144 15028 +15030 2 308.6077 420.2278 41.6828 0.1144 15029 +15031 2 308.8972 419.1284 41.3854 0.1144 15030 +15032 2 309.2118 418.037 41.032 0.1144 15031 +15033 2 309.5252 416.9491 40.633 0.1144 15032 +15034 2 309.7849 415.852 40.1862 0.1144 15033 +15035 2 309.865 414.7366 39.683 0.1144 15034 +15036 2 309.8135 413.6166 39.1269 0.1144 15035 +15037 2 309.8993 412.5138 38.5 0.1144 15036 +15038 2 310.405 411.5632 37.8073 0.1144 15037 +15039 2 311.128 410.728 37.0737 0.1144 15038 +15040 2 311.9985 410.0737 36.3112 0.1144 15039 +15041 2 313.0213 409.6675 35.6042 0.1144 15040 +15042 2 313.9147 409.0292 34.9334 0.1144 15041 +15043 2 314.8608 409.3598 34.1902 0.1144 15042 +15044 2 315.2281 408.3336 33.7355 0.1144 15043 +15045 2 315.7131 407.3052 33.427 0.1144 15044 +15046 2 316.356 406.366 33.1486 0.1144 15045 +15047 2 317.0024 405.4279 32.8983 0.1144 15046 +15048 2 317.6259 404.4715 32.7359 0.1144 15047 +15049 2 318.2471 403.514 32.5332 0.1144 15048 +15050 2 306.727 481.1504 39.0037 0.1144 14970 +15051 2 307.5244 481.9683 38.85 0.1144 15050 +15052 2 308.2073 482.8847 38.7976 0.1144 15051 +15053 2 308.8937 483.7999 38.7576 0.1144 15052 +15054 2 309.5927 484.7059 38.7293 0.1144 15053 +15055 2 310.2928 485.6108 38.7114 0.1144 15054 +15056 2 310.31 486.7537 38.703 0.1144 15055 +15057 2 310.2494 487.8966 38.703 0.1144 15056 +15058 2 310.1864 489.0383 38.703 0.1144 15057 +15059 2 351.6084 531.9932 48.7449 0.1144 13724 +15060 2 350.6486 532.4233 47.8374 0.1144 15059 +15061 2 350.0262 532.0675 46.6088 0.1144 15060 +15062 2 349.0722 531.5642 45.7204 0.1144 15061 +15063 2 348.3217 530.9212 44.3122 0.1144 15062 +15064 2 387.125 544.9581 52.4964 0.1144 13685 +15065 2 386.5942 545.7429 50.9779 0.1144 15064 +15066 2 385.9822 546.586 49.8859 0.1144 15065 +15067 2 385.2775 547.4109 48.9964 0.1144 15066 +15068 2 385.7328 548.5457 48.2171 0.1144 15067 +15069 2 386.0931 549.6131 47.7534 0.1144 15068 +15070 2 386.2865 550.7273 47.3816 0.1144 15069 +15071 2 386.2865 551.8599 47.0834 0.1144 15070 +15072 2 386.0806 552.981 46.8737 0.1144 15071 +15073 2 385.7133 554.0564 46.7368 0.1144 15072 +15074 2 385.0921 555.0047 46.6416 0.1144 15073 +15075 2 384.2616 555.7884 46.5858 0.1144 15074 +15076 2 383.4402 556.5709 46.5626 0.1144 15075 +15077 2 382.8911 557.5593 46.5584 0.1144 15076 +15078 2 382.5925 558.6632 46.5592 0.1144 15077 +15079 2 382.4358 559.7889 46.5606 0.1144 15078 +15080 2 382.5364 560.9249 46.5626 0.1144 15079 +15081 2 382.8099 562.0346 46.5651 0.1144 15080 +15082 2 383.216 563.0985 46.569 0.1144 15081 +15083 2 383.7994 564.0812 46.5741 0.1144 15082 +15084 2 384.4847 564.9953 46.5819 0.1144 15083 +15085 2 385.218 565.8727 46.592 0.1144 15084 +15086 2 385.9879 566.7193 46.6032 0.1144 15085 +15087 2 386.7624 567.559 46.6222 0.1144 15086 +15088 2 387.435 568.4811 46.6642 0.1144 15087 +15089 2 388.0185 569.4649 46.7107 0.1144 15088 +15090 2 388.6248 570.4339 46.73 0.1144 15089 +15091 2 389.246 571.3925 46.6852 0.1144 15090 +15092 2 389.7082 572.4301 46.5402 0.1144 15091 +15093 2 389.9976 573.533 46.3585 0.1144 15092 +15094 2 390.2848 574.6369 46.1969 0.1144 15093 +15095 2 390.6325 575.7249 46.0681 0.1144 15094 +15096 2 391.0055 576.8048 45.9721 0.1144 15095 +15097 2 391.4791 577.8447 45.9029 0.1144 15096 +15098 2 392.0934 578.8022 45.8483 0.1144 15097 +15099 2 392.7649 579.7254 45.7895 0.1144 15098 +15100 2 393.3736 580.6933 45.7125 0.1144 15099 +15101 2 393.8929 581.7046 45.5882 0.1144 15100 +15102 2 394.1755 582.8028 45.4003 0.1144 15101 +15103 2 394.3643 583.9262 45.1996 0.1144 15102 +15104 2 394.4352 585.0485 44.9705 0.1144 15103 +15105 2 393.9009 585.9065 44.5012 0.1144 15104 +15106 2 394.2224 586.7176 43.9925 0.1144 15105 +15107 2 394.8894 587.6339 43.6187 0.1144 15106 +15108 2 395.5815 588.5365 43.3353 0.1144 15107 +15109 2 396.0711 589.5581 43.0909 0.1144 15108 +15110 2 396.0768 590.685 42.9052 0.1144 15109 +15111 2 396.0368 591.8267 42.7888 0.1144 15110 +15112 2 396.0528 592.9695 42.712 0.1144 15111 +15113 2 396.3903 594.054 42.6569 0.1144 15112 +15114 2 397.1968 594.8434 42.6222 0.1144 15113 +15115 2 398.2458 595.2838 42.572 0.1144 15114 +15116 2 399.0352 596.0972 42.5673 0.1144 15115 +15117 2 399.6964 597.0307 42.5793 0.1144 15116 +15118 2 400.3279 597.9848 42.5905 0.1144 15117 +15119 2 400.7123 599.0613 42.5998 0.1144 15118 +15120 2 401.0166 600.1641 42.607 0.1144 15119 +15121 2 401.5634 601.1686 42.6121 0.1144 15120 +15122 2 402.2407 602.0906 42.6079 0.1144 15121 +15123 2 402.8207 603.0768 42.5995 0.1144 15122 +15124 2 403.4579 604.0263 42.5877 0.1144 15123 +15125 2 404.1718 604.9197 42.5704 0.1144 15124 +15126 2 404.6808 605.9436 42.546 0.1144 15125 +15127 2 405.1728 606.9767 42.5144 0.1144 15126 +15128 2 405.7734 607.9502 42.4757 0.1144 15127 +15129 2 406.4071 608.902 42.4054 0.1144 15128 +15130 2 406.7755 609.9831 42.2817 0.1144 15129 +15131 2 406.652 611.1202 42.1781 0.1144 15130 +15132 2 406.7789 612.2562 42.0918 0.1144 15131 +15133 2 407.5077 613.2092 42.0106 0.1144 15132 +15134 2 408.3519 613.9791 41.9476 0.1144 15133 +15135 2 409.226 614.7147 41.8858 0.1144 15134 +15136 2 409.989 615.5635 41.8118 0.1144 15135 +15137 2 410.6514 616.4959 41.7155 0.1144 15136 +15138 2 411.3435 617.4019 41.5797 0.1144 15137 +15139 2 411.8961 618.3984 41.3395 0.1144 15138 +15140 2 412.3319 619.4371 41.0273 0.1144 15139 +15141 2 412.4006 620.5594 40.6882 0.1144 15140 +15142 2 412.2301 621.6828 40.3676 0.1144 15141 +15143 2 412.2496 622.8028 40.0548 0.1144 15142 +15144 2 412.6008 623.885 39.7886 0.1144 15143 +15145 2 413.1018 624.8986 39.5727 0.1144 15144 +15146 2 413.882 625.7119 39.3492 0.1144 15145 +15147 2 414.7503 626.4224 39.058 0.1144 15146 +15148 2 415.3715 627.3685 38.75 0.1144 15147 +15149 2 416.0053 628.2917 38.4544 0.1144 15148 +15150 2 416.8461 629.0604 38.2057 0.1144 15149 +15151 2 417.6801 629.8384 38.0022 0.1144 15150 +15152 2 418.4272 630.6918 37.8087 0.1144 15151 +15153 2 418.9248 631.7054 37.6076 0.1144 15152 +15154 2 419.1467 632.8185 37.4013 0.1144 15153 +15155 2 419.2623 633.9522 37.175 0.1144 15154 +15156 2 419.6169 635.0058 36.9729 0.1144 15155 +15157 2 420.2301 635.969 36.7718 0.1144 15156 +15158 2 420.8948 636.8888 36.554 0.1144 15157 +15159 2 421.7219 637.6679 36.3457 0.1144 15158 +15160 2 422.6474 638.3337 36.1337 0.1144 15159 +15161 2 423.5557 639.019 35.8954 0.1144 15160 +15162 2 424.2284 639.901 35.6213 0.1144 15161 +15163 2 424.4572 640.9889 35.2993 0.1144 15162 +15164 2 424.6517 642.0849 34.9896 0.1144 15163 +15165 2 425.2202 643.0584 34.7332 0.1144 15164 +15166 2 425.8849 643.9816 34.5013 0.1144 15165 +15167 2 426.3699 645.0032 34.2502 0.1144 15166 +15168 2 426.6651 646.1015 33.9786 0.1144 15167 +15169 2 426.8447 647.2249 33.728 0.1144 15168 +15170 2 427.1216 648.3185 33.4869 0.1144 15169 +15171 2 427.5334 649.3813 33.2503 0.1144 15170 +15172 2 427.9738 650.4326 33.0498 0.1144 15171 +15173 2 428.4555 651.468 32.8801 0.1144 15172 +15174 2 428.8261 652.5422 32.6906 0.1144 15173 +15175 2 428.7838 653.6416 32.4363 0.1144 15174 +15176 2 428.1363 654.5419 32.2062 0.1144 15175 +15177 2 427.8686 655.5886 32.0326 0.1144 15176 +15178 2 428.4051 656.5382 31.892 0.1144 15177 +15179 2 429.4404 656.958 31.789 0.1144 15178 +15180 2 430.4998 657.3859 31.6812 0.1144 15179 +15181 2 431.4207 658.0551 31.5241 0.1144 15180 +15182 2 432.2284 658.8605 31.3544 0.1144 15181 +15183 2 432.8953 659.7871 31.2309 0.1144 15182 +15184 2 433.3518 660.8339 31.1671 0.1144 15183 +15185 2 433.6229 661.9447 31.1696 0.1144 15184 +15186 2 433.8197 663.0704 31.2402 0.1144 15185 +15187 2 433.894 664.211 31.337 0.1144 15186 +15188 2 433.6504 665.3229 31.5319 0.1144 15187 +15189 2 433.4284 666.4326 31.9505 0.1144 15188 +15190 2 433.2694 667.5457 32.4612 0.1144 15189 +15191 2 433.1699 668.6669 32.9616 0.1144 15190 +15192 2 433.0738 669.788 33.4718 0.1144 15191 +15193 2 432.9777 670.9068 34.0012 0.1144 15192 +15194 2 433.2648 671.9078 35.1389 0.1144 15193 +15195 2 433.4158 672.8859 36.4711 0.1144 15194 +15196 2 433.1802 673.8881 37.6155 0.1144 15195 +15197 2 433.0246 674.9108 38.6761 0.1144 15196 +15198 2 433.4433 675.8386 39.699 0.1144 15197 +15199 2 434.1125 676.6829 40.6375 0.1144 15198 +15200 2 434.6971 677.5843 41.5797 0.1144 15199 +15201 2 434.8275 678.6025 42.5536 0.1144 15200 +15202 2 434.7211 679.6653 43.5602 0.1144 15201 +15203 2 434.5907 680.7189 44.5973 0.1144 15202 +15204 2 433.9432 681.4762 45.5874 0.1144 15203 +15205 2 433.0692 682.1054 46.531 0.1144 15204 +15206 2 432.1906 682.7358 47.446 0.1144 15205 +15207 2 431.3097 683.3684 48.3344 0.1144 15206 +15208 2 430.4254 684.0033 49.1999 0.1144 15207 +15209 2 429.54 684.6394 50.0466 0.1144 15208 +15210 2 428.5435 684.8121 51.0577 0.1144 15209 +15211 2 427.7119 684.1669 52.0075 0.1144 15210 +15212 2 427.0952 683.2609 52.8007 0.1144 15211 +15213 2 426.5393 682.2999 53.4649 0.1144 15212 +15214 2 425.9798 681.3286 54.031 0.1144 15213 +15215 2 425.417 680.3517 54.5079 0.1144 15214 +15216 2 424.8679 679.3598 54.8761 0.1144 15215 +15217 2 424.3428 678.3485 55.1177 0.1144 15216 +15218 2 423.8177 677.3338 55.2779 0.1144 15217 +15219 2 423.2926 676.3179 55.3837 0.1144 15218 +15220 2 422.7675 675.3032 55.4523 0.1144 15219 +15221 2 422.3568 674.2358 55.5136 0.1144 15220 +15222 2 422.3202 673.0953 55.6147 0.1144 15221 +15223 2 422.2962 671.9524 55.7432 0.1144 15222 +15224 2 422.3133 670.8096 55.8317 0.1144 15223 +15225 2 422.3694 669.6667 55.8286 0.1144 15224 +15226 2 422.4266 668.525 55.7474 0.1144 15225 +15227 2 422.4838 667.3833 55.603 0.1144 15226 +15228 2 422.541 666.2439 55.4072 0.1144 15227 +15229 2 422.5982 665.1044 55.1877 0.1144 15228 +15230 2 422.6554 663.9662 54.9682 0.1144 15229 +15231 2 422.7114 662.8256 54.7618 0.1144 15230 +15232 2 422.7686 661.6862 54.5703 0.1144 15231 +15233 2 422.8258 660.5536 54.2021 0.1144 15232 +15234 2 406.7858 612.461 42.371 0.1144 15132 +15235 2 406.8991 613.5569 43.1024 0.1144 15234 +15236 2 407.3281 614.6129 43.3325 0.1144 15235 +15237 2 407.4882 615.7431 43.5064 0.1144 15236 +15238 2 407.4585 616.886 43.6299 0.1144 15237 +15239 2 407.2823 618.0163 43.708 0.1144 15238 +15240 2 407.1816 619.1557 43.745 0.1144 15239 +15241 2 407.5969 620.2219 43.7455 0.1144 15240 +15242 2 407.987 621.2972 43.7433 0.1144 15241 +15243 2 408.3645 622.3772 43.7399 0.1144 15242 +15244 2 408.837 623.4194 43.7354 0.1144 15243 +15245 2 409.314 624.4581 43.7293 0.1144 15244 +15246 2 409.4994 625.5872 43.7203 0.1144 15245 +15247 2 409.5909 626.7278 43.708 0.1144 15246 +15248 2 409.6675 627.8684 43.6906 0.1144 15247 +15249 2 409.6664 629.0124 43.666 0.1144 15248 +15250 2 409.5074 630.1449 43.6318 0.1144 15249 +15251 2 409.2202 631.2523 43.5856 0.1144 15250 +15252 2 408.8988 632.3506 43.5204 0.1144 15251 +15253 2 408.5739 633.4465 43.4249 0.1144 15252 +15254 2 408.2009 634.5265 43.2894 0.1144 15253 +15255 2 407.7296 635.5664 43.1122 0.1144 15254 +15256 2 407.4448 636.4861 43.6778 0.1144 15255 +15257 2 407.3384 637.6176 43.6159 0.1144 15256 +15258 2 407.6026 638.7238 43.5495 0.1144 15257 +15259 2 408.1209 639.7397 43.4664 0.1144 15258 +15260 2 408.7478 640.6961 43.3398 0.1144 15259 +15261 2 409.4056 641.6284 43.1768 0.1144 15260 +15262 2 410.0977 642.5368 42.9898 0.1144 15261 +15263 2 410.8024 643.4348 42.791 0.1144 15262 +15264 2 411.5071 644.3317 42.5897 0.1144 15263 +15265 2 412.2118 645.2297 42.3956 0.1144 15264 +15266 2 412.674 646.2696 42.2192 0.1144 15265 +15267 2 412.7518 647.4079 42.0893 0.1144 15266 +15268 2 412.8193 648.5496 41.9891 0.1144 15267 +15269 2 412.8868 649.6913 41.9082 0.1144 15268 +15270 2 412.9531 650.833 41.8379 0.1144 15269 +15271 2 413.0206 651.9748 41.7684 0.1144 15270 +15272 2 413.087 653.1165 41.6926 0.1144 15271 +15273 2 413.1545 654.257 41.603 0.1144 15272 +15274 2 413.4107 655.3701 41.4795 0.1144 15273 +15275 2 413.7974 656.4455 41.3199 0.1144 15274 +15276 2 414.1863 657.5186 41.1387 0.1144 15275 +15277 2 414.5753 658.5916 40.9497 0.1144 15276 +15278 2 415.4619 659.3021 40.6515 0.1144 15277 +15279 2 406.7309 635.3112 42.8551 0.1144 15255 +15280 2 405.6601 634.9944 42.2626 0.1144 15279 +15281 2 404.5882 634.8811 41.4764 0.1144 15280 +15282 2 403.6238 635.3479 40.887 0.1144 15281 +15283 2 402.7921 636.1155 40.5378 0.1144 15282 +15284 2 402.2281 637.0822 40.3836 0.1144 15283 +15285 2 401.7774 638.1266 40.579 0.1144 15284 +15286 2 401.4616 639.2203 40.8075 0.1144 15285 +15287 2 401.1779 640.3277 40.9024 0.1144 15286 +15288 2 400.8954 641.4362 40.8534 0.1144 15287 +15289 2 399.8646 641.4934 40.6022 0.1144 15288 +15290 2 398.7286 641.4042 40.3511 0.1144 15289 +15291 2 397.5972 641.4099 40.0481 0.1144 15290 +15292 2 396.4875 641.6284 39.697 0.1144 15291 +15293 2 395.4144 641.9853 39.2963 0.1144 15292 +15294 2 394.3917 642.459 38.8721 0.1144 15293 +15295 2 393.4262 643.0447 38.4367 0.1144 15294 +15296 2 393.1493 643.6762 37.4226 0.1144 15295 +15297 2 393.6904 644.0011 36.5319 0.1144 15296 +15298 2 394.5576 644.6314 35.8686 0.1144 15297 +15299 2 395.2829 645.4963 35.8324 0.1144 15298 +15300 2 395.7988 646.5144 35.8061 0.1144 15299 +15301 2 396.2473 647.5658 35.7686 0.1144 15300 +15302 2 396.7689 648.5816 35.7157 0.1144 15301 +15303 2 397.4279 649.5117 35.6437 0.1144 15302 +15304 2 398.1475 650.4006 35.551 0.1144 15303 +15305 2 398.9082 651.2517 35.3998 0.1144 15304 +15306 2 399.6987 652.0731 35.1742 0.1144 15305 +15307 2 400.4904 652.8911 34.8972 0.1144 15306 +15308 2 401.2534 653.7342 34.5982 0.1144 15307 +15309 2 401.9181 654.6551 34.3227 0.1144 15308 +15310 2 402.5324 655.615 34.0875 0.1144 15309 +15311 2 403.149 656.5748 33.8906 0.1144 15310 +15312 2 403.7656 657.5369 33.7232 0.1144 15311 +15313 2 404.3823 658.4978 33.5726 0.1144 15312 +15314 2 404.9989 659.4599 33.4275 0.1144 15313 +15315 2 405.6155 660.4209 33.2763 0.1144 15314 +15316 2 406.2321 661.383 33.1069 0.1144 15315 +15317 2 406.8476 662.344 32.9084 0.1144 15316 +15318 2 407.113 663.4125 32.7141 0.1144 15317 +15319 2 407.1416 664.5542 32.5304 0.1144 15318 +15320 2 407.6335 665.498 32.1219 0.1144 15319 +15321 2 408.3748 666.3194 31.4143 0.1144 15320 +15322 2 409.1013 667.1282 30.5449 0.1144 15321 +15323 2 409.8163 667.9827 29.9068 0.1144 15322 +15324 2 410.537 668.8442 29.3756 0.1144 15323 +15325 2 411.2623 669.7113 28.9439 0.1144 15324 +15326 2 411.872 670.6654 28.5628 0.1144 15325 +15327 2 412.2564 671.7282 28.1467 0.1144 15326 +15328 2 412.6339 672.7898 27.6543 0.1144 15327 +15329 2 413.0092 673.8457 27.0886 0.1144 15328 +15330 2 413.3833 674.8936 26.445 0.1144 15329 +15331 2 413.7573 675.9381 25.7533 0.1144 15330 +15332 2 414.128 676.9757 25.0236 0.1144 15331 +15333 2 414.4689 677.9275 23.7135 0.1144 15332 +15334 2 393.2763 642.5127 36.5355 0.1144 15296 +15335 2 393.0544 641.4111 36.1735 0.1144 15334 +15336 2 392.7226 640.3185 35.9912 0.1144 15335 +15337 2 392.5156 639.1951 35.9083 0.1144 15336 +15338 2 392.3199 638.0683 35.9016 0.1144 15337 +15339 2 392.0946 636.9472 35.9027 0.1144 15338 +15340 2 391.8406 635.8318 35.9041 0.1144 15339 +15341 2 391.4528 634.7564 35.9066 0.1144 15340 +15342 2 390.9471 633.7302 35.91 0.1144 15341 +15343 2 390.374 632.7407 35.9145 0.1144 15342 +15344 2 389.484 632.0348 35.9212 0.1144 15343 +15345 2 388.3766 631.7706 35.9299 0.1144 15344 +15346 2 387.2829 631.4342 35.943 0.1144 15345 +15347 2 386.2533 630.9366 35.9612 0.1144 15346 +15348 2 385.1642 630.59 35.9859 0.1144 15347 +15349 2 384.0442 630.3532 36.0167 0.1144 15348 +15350 2 382.9609 629.9871 36.0634 0.1144 15349 +15351 2 382.0857 629.2549 36.1547 0.1144 15350 +15352 2 381.3112 628.4141 36.2544 0.1144 15351 +15353 2 380.5447 627.5652 36.3345 0.1144 15352 +15354 2 379.7794 626.7152 36.3924 0.1144 15353 +15355 2 378.9546 625.9224 36.4302 0.1144 15354 +15356 2 378.1995 625.0633 36.4493 0.1144 15355 +15357 2 377.5692 624.1092 36.454 0.1144 15356 +15358 2 377.0224 623.1036 36.4526 0.1144 15357 +15359 2 376.527 622.0729 36.4498 0.1144 15358 +15360 2 375.9973 621.0593 36.4465 0.1144 15359 +15361 2 375.3636 620.1063 36.442 0.1144 15360 +15362 2 374.7664 619.1305 36.4344 0.1144 15361 +15363 2 374.08 618.2153 36.4199 0.1144 15362 +15364 2 373.3879 617.3058 36.4006 0.1144 15363 +15365 2 372.5093 616.5725 36.409 0.1144 15364 +15366 2 371.6284 615.8438 36.3888 0.1144 15365 +15367 2 370.8219 615.0361 36.2692 0.1144 15366 +15368 2 370.1812 614.0923 36.0718 0.1144 15367 +15369 2 369.5177 613.1714 35.7221 0.1144 15368 +15370 2 368.8256 612.2745 35.3486 0.1144 15369 +15371 2 368.0374 611.4623 34.96 0.1144 15370 +15372 2 367.2274 610.6935 34.5598 0.1144 15371 +15373 2 366.8179 609.6456 34.1172 0.1144 15372 +15374 2 366.4301 608.6423 33.7663 0.1144 15373 +15375 2 365.5069 607.9868 33.4799 0.1144 15374 +15376 2 364.7644 607.1334 33.1766 0.1144 15375 +15377 2 364.205 606.1553 32.6984 0.1144 15376 +15378 2 363.6604 605.1623 32.3134 0.1144 15377 +15379 2 362.9271 604.31 31.8035 0.1144 15378 +15380 2 362.2236 603.4337 31.2886 0.1144 15379 +15381 2 361.6699 602.5196 30.2893 0.1144 15380 +15382 2 384.7501 547.7907 48.05 0.1144 15067 +15383 2 383.8623 548.4725 48.587 0.1144 15382 +15384 2 383.0753 549.279 48.9457 0.1144 15383 +15385 2 382.4323 550.2057 49.408 0.1144 15384 +15386 2 381.7917 551.1426 49.7266 0.1144 15385 +15387 2 381.119 552.0647 49.6885 0.1144 15386 +15388 2 380.4429 552.9718 49.2915 0.1144 15387 +15389 2 379.6902 553.7932 48.6674 0.1144 15388 +15390 2 378.8962 554.5792 48.0656 0.1144 15389 +15391 2 378.2808 555.5207 47.5804 0.1144 15390 +15392 2 377.6847 556.4874 47.236 0.1144 15391 +15393 2 376.8897 557.303 47.0501 0.1144 15392 +15394 2 376.1392 558.1633 46.8734 0.1144 15393 +15395 2 375.3979 559.0305 46.6838 0.1144 15394 +15396 2 374.6554 559.8953 46.4537 0.1144 15395 +15397 2 374.0754 560.8769 46.2367 0.1144 15396 +15398 2 373.5663 561.8985 46.053 0.1144 15397 +15399 2 373.0092 562.896 45.9001 0.1144 15398 +15400 2 372.2885 563.7826 45.7792 0.1144 15399 +15401 2 371.514 564.6223 45.6537 0.1144 15400 +15402 2 371.0461 565.6611 45.4742 0.1144 15401 +15403 2 370.4352 566.6255 45.29 0.1144 15402 +15404 2 369.7774 567.5578 45.1013 0.1144 15403 +15405 2 369.1299 568.4971 44.8806 0.1144 15404 +15406 2 368.6025 569.5004 44.5222 0.1144 15405 +15407 2 368.0374 570.4865 44.1902 0.1144 15406 +15408 2 367.5489 571.5092 43.8259 0.1144 15407 +15409 2 367.0684 572.5354 43.428 0.1144 15408 +15410 2 366.5902 573.5604 43.006 0.1144 15409 +15411 2 366.1097 574.5832 42.5692 0.1144 15410 +15412 2 365.6327 575.607 42.1218 0.1144 15411 +15413 2 365.1556 576.6275 41.6377 0.1144 15412 +15414 2 364.6878 577.6502 41.1345 0.1144 15413 +15415 2 364.3537 578.7187 40.558 0.1144 15414 +15416 2 364.0242 579.7861 39.9552 0.1144 15415 +15417 2 363.6948 580.85 39.3224 0.1144 15416 +15418 2 363.3882 581.8407 38.1422 0.1144 15417 +15419 2 405.3215 570.5814 52.1668 0.1144 13656 +15420 2 405.2277 571.7163 52.2046 0.1144 15419 +15421 2 405.6121 572.7871 52.2214 0.1144 15420 +15422 2 406.3557 573.6565 52.2444 0.1144 15421 +15423 2 407.1107 574.5157 52.2735 0.1144 15422 +15424 2 407.8898 575.3531 52.3116 0.1144 15423 +15425 2 408.6929 576.1653 52.3872 0.1144 15424 +15426 2 409.3369 577.1091 52.4916 0.1144 15425 +15427 2 409.8986 578.101 52.5806 0.1144 15426 +15428 2 410.6594 578.9544 52.6478 0.1144 15427 +15429 2 411.3961 579.8295 52.6943 0.1144 15428 +15430 2 412.086 580.7413 52.7223 0.1144 15429 +15431 2 412.6911 581.7126 52.7352 0.1144 15430 +15432 2 413.2151 582.7284 52.7405 0.1144 15431 +15433 2 413.699 583.7649 52.7464 0.1144 15432 +15434 2 414.2241 584.7819 52.7542 0.1144 15433 +15435 2 414.7927 585.7738 52.766 0.1144 15434 +15436 2 415.4436 586.713 52.7828 0.1144 15435 +15437 2 416.2021 587.5687 52.8052 0.1144 15436 +15438 2 416.8725 588.4862 52.8335 0.1144 15437 +15439 2 417.1768 589.5867 52.8724 0.1144 15438 +15440 2 417.282 590.725 52.9564 0.1144 15439 +15441 2 417.4593 591.853 53.0533 0.1144 15440 +15442 2 417.7774 592.9501 53.1278 0.1144 15441 +15443 2 418.1812 594.0186 53.1768 0.1144 15442 +15444 2 418.3951 595.1385 53.2008 0.1144 15443 +15445 2 418.4397 596.2722 53.2003 0.1144 15444 +15446 2 418.8378 597.3453 53.1754 0.1144 15445 +15447 2 419.2234 598.4207 53.1314 0.1144 15446 +15448 2 419.4316 599.5429 53.0687 0.1144 15447 +15449 2 419.4659 600.6858 52.9816 0.1144 15448 +15450 2 419.4419 601.8275 52.8662 0.1144 15449 +15451 2 419.4076 602.9498 52.6946 0.1144 15450 +15452 2 419.8617 603.9942 52.4317 0.1144 15451 +15453 2 420.3491 605.0181 52.0649 0.1144 15452 +15454 2 420.881 606.0134 51.6404 0.1144 15453 +15455 2 421.3398 607.0567 51.4077 0.1144 15454 +15456 2 421.7322 608.1287 51.2529 0.1144 15455 +15457 2 421.9804 609.2372 51.1003 0.1144 15456 +15458 2 422.0651 610.3755 50.9242 0.1144 15457 +15459 2 422.3522 611.4463 50.7452 0.1144 15458 +15460 2 423.1816 612.1487 50.4932 0.1144 15459 +15461 2 424.1563 612.6989 50.192 0.1144 15460 +15462 2 424.9319 613.5215 49.9078 0.1144 15461 +15463 2 425.5497 614.4756 49.663 0.1144 15462 +15464 2 426.1022 615.4731 49.4371 0.1144 15463 +15465 2 426.72 616.4215 49.0983 0.1144 15464 +15466 2 427.4121 617.307 48.5803 0.1144 15465 +15467 2 428.0711 618.221 48.1149 0.1144 15466 +15468 2 428.7506 619.1282 47.7333 0.1144 15467 +15469 2 429.3626 620.0812 47.378 0.1144 15468 +15470 2 429.8466 621.1062 47.0361 0.1144 15469 +15471 2 430.3911 622.1015 46.7152 0.1144 15470 +15472 2 430.8144 623.1517 46.3898 0.1144 15471 +15473 2 431.0409 624.2614 46.0435 0.1144 15472 +15474 2 430.8052 625.3413 45.6154 0.1144 15473 +15475 2 431.0775 626.372 44.9971 0.1144 15474 +15476 2 431.3235 627.4657 44.4752 0.1144 15475 +15477 2 431.7067 628.5273 44.0328 0.1144 15476 +15478 2 432.194 629.5478 43.6024 0.1144 15477 +15479 2 432.8095 630.4767 42.9901 0.1144 15478 +15480 2 433.2591 631.5029 42.4144 0.1144 15479 +15481 2 433.5463 632.5931 41.9479 0.1144 15480 +15482 2 433.6115 633.6502 41.0987 0.1144 15481 +15483 2 433.8197 634.7495 40.5418 0.1144 15482 +15484 2 434.2452 635.786 40.0733 0.1144 15483 +15485 2 434.8619 636.7287 39.6217 0.1144 15484 +15486 2 435.5368 637.6359 39.1896 0.1144 15485 +15487 2 436.2758 638.4961 38.8534 0.1144 15486 +15488 2 437.127 639.25 38.6042 0.1144 15487 +15489 2 438.1017 639.8323 38.3743 0.1144 15488 +15490 2 439.1347 640.3128 38.136 0.1144 15489 +15491 2 440.1243 640.8757 37.905 0.1144 15490 +15492 2 440.9594 641.6421 37.6751 0.1144 15491 +15493 2 441.6149 642.5688 37.394 0.1144 15492 +15494 2 442.1091 643.5824 36.967 0.1144 15493 +15495 2 442.5415 644.6211 36.4633 0.1144 15494 +15496 2 442.8447 645.7022 35.945 0.1144 15495 +15497 2 443.0232 646.8142 35.4564 0.1144 15496 +15498 2 443.3446 647.8952 35.0199 0.1144 15497 +15499 2 443.8583 648.9054 34.6766 0.1144 15498 +15500 2 444.174 649.9979 34.4417 0.1144 15499 +15501 2 443.769 651.0401 34.291 0.1144 15500 +15502 2 442.9831 651.8661 34.2059 0.1144 15501 +15503 2 443.0209 652.9895 34.1502 0.1144 15502 +15504 2 443.6283 653.081 34.2647 0.1144 15503 +15505 2 444.7575 653.2503 34.454 0.1144 15504 +15506 2 445.8877 653.4196 34.5635 0.1144 15505 +15507 2 447.018 653.5901 34.6483 0.1144 15506 +15508 2 448.1483 653.7605 34.7402 0.1144 15507 +15509 2 449.2785 653.9321 34.832 0.1144 15508 +15510 2 450.4065 654.1255 34.9059 0.1144 15509 +15511 2 451.5311 654.3291 34.9563 0.1144 15510 +15512 2 452.6339 654.6288 34.9866 0.1144 15511 +15513 2 453.7035 655.0304 35.002 0.1144 15512 +15514 2 454.7663 655.4559 35.0095 0.1144 15513 +15515 2 455.8268 655.8827 35.0171 0.1144 15514 +15516 2 456.8896 656.3082 35.0347 0.1144 15515 +15517 2 457.9501 656.7349 35.0694 0.1144 15516 +15518 2 459.0117 657.1605 35.124 0.1144 15517 +15519 2 460.0733 657.5872 35.1968 0.1144 15518 +15520 2 461.0675 658.1409 35.3346 0.1144 15519 +15521 2 461.7493 659.0229 35.658 0.1144 15520 +15522 2 462.1497 660.0834 35.9817 0.1144 15521 +15523 2 462.4128 661.1931 36.1659 0.1144 15522 +15524 2 462.6679 662.3074 36.2328 0.1144 15523 +15525 2 462.923 663.4228 36.1962 0.1144 15524 +15526 2 463.1781 664.537 36.0718 0.1144 15525 +15527 2 463.4321 665.6501 35.8868 0.1144 15526 +15528 2 463.6838 666.7621 35.6541 0.1144 15527 +15529 2 463.9343 667.8729 35.3968 0.1144 15528 +15530 2 464.0773 669.0032 35.161 0.1144 15529 +15531 2 464.0842 670.1449 34.9913 0.1144 15530 +15532 2 464.0853 671.2878 34.8776 0.1144 15531 +15533 2 464.0865 672.4318 34.8099 0.1144 15532 +15534 2 464.0876 673.5758 34.7766 0.1144 15533 +15535 2 464.0236 674.7175 34.7561 0.1144 15534 +15536 2 463.5637 675.7631 34.7584 0.1144 15535 +15537 2 463.0901 676.8041 34.769 0.1144 15536 +15538 2 462.6279 677.8509 34.7696 0.1144 15537 +15539 2 462.2389 678.9251 34.6702 0.1144 15538 +15540 2 461.8568 679.9879 34.2157 0.1144 15539 +15541 2 443.3618 653.6919 34.1124 0.1144 15503 +15542 2 444.0276 654.6208 34.0698 0.1144 15541 +15543 2 444.6659 655.5692 34.0124 0.1144 15542 +15544 2 445.0297 656.6526 33.9349 0.1144 15543 +15545 2 445.3134 657.76 33.789 0.1144 15544 +15546 2 445.5708 658.8731 33.6515 0.1144 15545 +15547 2 446.0193 659.9198 33.4706 0.1144 15546 +15548 2 446.8739 660.6634 33.0996 0.1144 15547 +15549 2 447.8096 661.3086 32.8003 0.1144 15548 +15550 2 448.7946 661.8841 32.576 0.1144 15549 +15551 2 449.7796 662.4435 32.3845 0.1144 15550 +15552 2 450.569 663.2706 32.3226 0.1144 15551 +15553 2 451.3091 664.1423 32.3106 0.1144 15552 +15554 2 451.9944 665.0541 32.2188 0.1144 15553 +15555 2 452.5115 666.0723 32.1 0.1144 15554 +15556 2 452.9531 667.127 31.9883 0.1144 15555 +15557 2 453.3901 668.1829 31.8864 0.1144 15556 +15558 2 453.564 669.1988 31.792 0.1144 15557 +15559 2 453.0366 670.1438 31.7878 0.1144 15558 +15560 2 453.1876 671.2695 32.0208 0.1144 15559 +15561 2 453.501 672.3654 32.1202 0.1144 15560 +15562 2 453.8889 673.435 31.8819 0.1144 15561 +15563 2 454.5398 674.3502 31.5227 0.1144 15562 +15564 2 454.8738 675.4027 31.0962 0.1144 15563 +15565 2 454.3396 676.3946 30.8042 0.1144 15564 +15566 2 454.5341 677.5088 30.5189 0.1144 15565 +15567 2 454.7469 678.6277 30.2596 0.1144 15566 +15568 2 454.9608 679.7465 29.9992 0.1144 15567 +15569 2 455.1736 680.8642 29.715 0.1144 15568 +15570 2 455.4104 681.9762 29.4048 0.1144 15569 +15571 2 455.8394 683.0286 29.0839 0.1144 15570 +15572 2 456.2707 684.08 28.7678 0.1144 15571 +15573 2 456.7031 685.1313 28.4536 0.1144 15572 +15574 2 457.1344 686.1838 28.138 0.1144 15573 +15575 2 457.5657 687.2351 27.8179 0.1144 15574 +15576 2 457.9981 688.2853 27.4897 0.1144 15575 +15577 2 458.4294 689.3355 27.1486 0.1144 15576 +15578 2 458.7509 690.4234 26.7789 0.1144 15577 +15579 2 458.9362 691.54 26.3754 0.1144 15578 +15580 2 459.1204 692.6554 25.9484 0.1144 15579 +15581 2 459.3034 693.7696 25.5081 0.1144 15580 +15582 2 458.9442 693.7513 24.6768 0.1144 15581 +15583 2 459.7027 694.5796 24.1706 0.1144 15582 +15584 2 460.4783 695.4079 23.8177 0.1144 15583 +15585 2 460.508 696.4329 23.4998 0.1144 15584 +15586 2 460.1706 697.5185 23.214 0.1144 15585 +15587 2 459.8262 698.6042 22.9391 0.1144 15586 +15588 2 460.0207 699.6784 22.5609 0.1144 15587 +15589 2 460.4611 700.7206 22.1593 0.1144 15588 +15590 2 460.9165 701.7571 21.7594 0.1144 15589 +15591 2 461.3603 702.7992 21.3676 0.1144 15590 +15592 2 461.779 703.8529 20.9931 0.1144 15591 +15593 2 462.1909 704.9099 20.6387 0.1144 15592 +15594 2 462.6119 705.9647 20.3049 0.1144 15593 +15595 2 463.3314 706.8273 19.9917 0.1144 15594 +15596 2 464.1231 707.6441 19.6889 0.1144 15595 +15597 2 464.9147 708.4609 19.3863 0.1144 15596 +15598 2 465.7052 709.2777 19.0781 0.1144 15597 +15599 2 466.4969 710.0945 18.7646 0.1144 15598 +15600 2 467.4979 710.5796 18.3432 0.1144 15599 +15601 2 468.5549 710.964 17.8328 0.1144 15600 +15602 2 469.6097 711.3449 17.2854 0.1144 15601 +15603 2 470.5901 711.9101 16.8912 0.1144 15602 +15604 2 471.5248 712.5656 16.7059 0.1144 15603 +15605 2 472.4594 713.2234 16.8274 0.1144 15604 +15606 2 433.8265 632.4009 41.9846 0.1144 15481 +15607 2 434.7738 631.7626 42.1128 0.1144 15606 +15608 2 435.7736 631.2283 42.2416 0.1144 15607 +15609 2 436.8753 630.9229 42.3382 0.1144 15608 +15610 2 437.9941 630.6883 42.4063 0.1144 15609 +15611 2 439.1233 630.5293 42.4435 0.1144 15610 +15612 2 440.2387 630.6494 42.4469 0.1144 15611 +15613 2 441.2888 631.1013 42.4147 0.1144 15612 +15614 2 442.2921 631.6413 42.3478 0.1144 15613 +15615 2 443.1833 632.3517 42.2444 0.1144 15614 +15616 2 443.9738 632.4787 42.0207 0.1144 15615 +15617 2 444.9714 632.1309 41.7217 0.1144 15616 +15618 2 446.1108 632.0875 41.473 0.1144 15617 +15619 2 447.2502 632.044 41.2555 0.1144 15618 +15620 2 448.3908 632.0005 41.076 0.1144 15619 +15621 2 449.481 632.2488 40.9422 0.1144 15620 +15622 2 450.3287 632.9798 40.8859 0.1144 15621 +15623 2 451.0884 633.8343 40.885 0.1144 15622 +15624 2 451.8491 634.6889 40.9245 0.1144 15623 +15625 2 452.6122 635.54 41.0094 0.1144 15624 +15626 2 453.3832 636.3832 41.1578 0.1144 15625 +15627 2 454.1577 637.2206 41.3655 0.1144 15626 +15628 2 454.931 638.0568 41.6189 0.1144 15627 +15629 2 455.7032 638.892 41.9084 0.1144 15628 +15630 2 456.4754 639.7271 42.2285 0.1144 15629 +15631 2 457.2465 640.5599 42.5732 0.1144 15630 +15632 2 458.0164 641.3928 42.94 0.1144 15631 +15633 2 458.6513 642.3217 43.3586 0.1144 15632 +15634 2 458.8984 643.4016 43.846 0.1144 15633 +15635 2 459.0323 644.5159 44.3909 0.1144 15634 +15636 2 459.165 645.6278 44.973 0.1144 15635 +15637 2 459.2977 646.7375 45.5694 0.1144 15636 +15638 2 459.4304 647.8472 46.1608 0.1144 15637 +15639 2 459.5642 648.9603 46.7261 0.1144 15638 +15640 2 460.2964 648.5679 47.1962 0.1144 15639 +15641 2 461.1544 647.8266 47.5591 0.1144 15640 +15642 2 462.0136 647.0796 47.8492 0.1144 15641 +15643 2 462.8738 646.3325 48.0903 0.1144 15642 +15644 2 463.9343 646.4641 48.2174 0.1144 15643 +15645 2 464.8472 647.1322 48.3672 0.1144 15644 +15646 2 465.7293 647.8564 48.5764 0.1144 15645 +15647 2 466.609 648.5782 48.8379 0.1144 15646 +15648 2 467.4887 649.2989 49.1431 0.1144 15647 +15649 2 468.3673 650.0197 49.4819 0.1144 15648 +15650 2 469.2436 650.7381 49.8467 0.1144 15649 +15651 2 470.1211 651.4588 50.211 0.1144 15650 +15652 2 470.9539 652.2276 50.5772 0.1144 15651 +15653 2 471.7147 653.0673 50.9466 0.1144 15652 +15654 2 472.4686 653.915 51.315 0.1144 15653 +15655 2 473.3792 654.5888 51.6438 0.1144 15654 +15656 2 474.3127 655.2397 51.9378 0.1144 15655 +15657 2 475.2473 655.8907 52.2035 0.1144 15656 +15658 2 476.1831 656.5416 52.4468 0.1144 15657 +15659 2 477.1189 657.1925 52.6753 0.1144 15658 +15660 2 478.0547 657.8435 52.8962 0.1144 15659 +15661 2 478.9905 658.4956 53.1152 0.1144 15660 +15662 2 479.9274 659.1476 53.3336 0.1144 15661 +15663 2 480.8632 659.7997 53.5506 0.1144 15662 +15664 2 481.799 660.4518 53.7692 0.1144 15663 +15665 2 482.7348 661.1027 53.9851 0.1144 15664 +15666 2 483.6718 661.7548 54.1937 0.1144 15665 +15667 2 484.4245 662.6048 54.4124 0.1144 15666 +15668 2 484.3284 663.7419 54.5997 0.1144 15667 +15669 2 484.2323 664.8722 54.9696 0.1144 15668 +15670 2 432.909 554.6009 44.8717 0.1144 8265 +15671 2 433.8448 555.2221 45.3855 0.1144 15670 +15672 2 434.394 556.1636 45.638 0.1144 15671 +15673 2 434.7749 557.2401 45.8304 0.1144 15672 +15674 2 435.1559 558.3143 46.0502 0.1144 15673 +15675 2 435.5357 559.3885 46.2994 0.1144 15674 +15676 2 436.0608 560.3918 46.6077 0.1144 15675 +15677 2 436.8604 561.1755 47.0028 0.1144 15676 +15678 2 437.7333 561.887 47.4807 0.1144 15677 +15679 2 438.6027 562.5975 48.0228 0.1144 15678 +15680 2 439.4699 563.3033 48.6086 0.1144 15679 +15681 2 440.3348 564.0092 49.2218 0.1144 15680 +15682 2 441.1996 564.7139 49.8467 0.1144 15681 +15683 2 442.0633 565.4186 50.4736 0.1144 15682 +15684 2 442.9271 566.1233 51.1011 0.1144 15683 +15685 2 443.7908 566.828 51.7289 0.1144 15684 +15686 2 444.6556 567.5327 52.3564 0.1144 15685 +15687 2 445.5194 568.2374 52.9861 0.1144 15686 +15688 2 446.3819 568.9409 53.6225 0.1144 15687 +15689 2 447.3154 569.5484 54.245 0.1144 15688 +15690 2 448.2821 570.1078 54.8559 0.1144 15689 +15691 2 449.2156 570.7119 55.5108 0.1144 15690 +15692 2 448.9239 571.5721 56.289 0.1144 15691 +15693 2 448.3336 572.4828 57.171 0.1144 15692 +15694 2 447.8703 573.4632 58.0577 0.1144 15693 +15695 2 447.4539 574.4676 58.9252 0.1144 15694 +15696 2 447.0374 575.4778 59.757 0.1144 15695 +15697 2 446.6176 576.4936 60.5307 0.1144 15696 +15698 2 446.1955 577.5187 61.2245 0.1144 15697 +15699 2 446.1692 577.4946 61.7865 0.1144 15698 +15700 2 445.4988 576.8597 62.9188 0.1144 15699 +15701 2 444.6785 576.0852 63.3536 0.1144 15700 +15702 2 444.15 575.0888 63.6787 0.1144 15701 +15703 2 443.8674 573.9848 63.873 0.1144 15702 +15704 2 443.6009 572.8729 63.9719 0.1144 15703 +15705 2 443.3332 571.7609 64.001 0.1144 15704 +15706 2 442.7577 570.7759 64.0452 0.1144 15705 +15707 2 442.0553 569.8744 64.1528 0.1144 15706 +15708 2 441.3495 568.9764 64.3334 0.1144 15707 +15709 2 440.8884 567.9377 64.5826 0.1144 15708 +15710 2 440.8107 566.8017 64.8519 0.1144 15709 +15711 2 440.734 565.6657 65.1294 0.1144 15710 +15712 2 440.6562 564.5285 65.3937 0.1144 15711 +15713 2 440.5796 563.3914 65.6342 0.1144 15712 +15714 2 440.5738 562.2668 65.8437 0.1144 15713 +15715 2 441.3506 561.4294 66.0114 0.1144 15714 +15716 2 442.1285 560.5932 66.1242 0.1144 15715 +15717 2 442.7955 559.7603 66.1548 0.1144 15716 +15718 2 441.8929 559.0751 65.9501 0.1144 15717 +15719 2 440.8827 558.5603 65.5984 0.1144 15718 +15720 2 439.8806 558.0501 65.0908 0.1144 15719 +15721 2 438.891 557.7 64.244 0.1144 15720 +15722 2 437.9575 557.7698 62.6416 0.1144 15721 +15723 2 437.0801 557.8075 60.879 0.1144 15722 +15724 2 436.2278 557.3614 59.3872 0.1144 15723 +15725 2 435.5151 556.7562 57.7744 0.1144 15724 +15726 2 446.1852 578.1055 61.6661 0.1144 15698 +15727 2 446.1669 579.2427 61.9679 0.1144 15726 +15728 2 446.1474 580.3844 62.1379 0.1144 15727 +15729 2 446.1291 581.5272 62.2177 0.1144 15728 +15730 2 446.1897 582.6701 62.2401 0.1144 15729 +15731 2 447.0294 583.4469 62.2303 0.1144 15730 +15732 2 447.868 584.2248 62.2174 0.1144 15731 +15733 2 448.7077 585.0016 62.2017 0.1144 15732 +15734 2 449.5462 585.7795 62.1832 0.1144 15733 +15735 2 450.3859 586.5563 62.1622 0.1144 15734 +15736 2 451.2245 587.3342 62.1387 0.1144 15735 +15737 2 452.0642 588.111 62.1116 0.1144 15736 +15738 2 452.9039 588.8889 62.0791 0.1144 15737 +15739 2 453.7436 589.6656 62.0399 0.1144 15738 +15740 2 454.5821 590.4436 61.9948 0.1144 15739 +15741 2 454.3076 591.0785 60.8703 0.1144 15740 +15742 2 454.3796 592.0131 59.9206 0.1144 15741 +15743 2 455.129 592.8494 59.5148 0.1144 15742 +15744 2 455.9595 593.6273 59.2301 0.1144 15743 +15745 2 456.7923 594.4075 59.0153 0.1144 15744 +15746 2 457.8174 594.7061 58.7779 0.1144 15745 +15747 2 458.625 593.9385 58.5435 0.1144 15746 +15748 2 459.4029 593.1091 58.2436 0.1144 15747 +15749 2 460.2198 592.322 57.8656 0.1144 15748 +15750 2 461.1121 593.0141 57.4904 0.1144 15749 +15751 2 462.0055 593.712 57.1113 0.1144 15750 +15752 2 462.8979 594.4098 56.7342 0.1144 15751 +15753 2 463.7913 595.1077 56.3573 0.1144 15752 +15754 2 464.6836 595.8066 55.9714 0.1144 15753 +15755 2 465.5256 596.5594 55.5338 0.1144 15754 +15756 2 466.2155 597.446 55.0099 0.1144 15755 +15757 2 466.8996 598.3326 54.4407 0.1144 15756 +15758 2 467.5825 599.2192 53.858 0.1144 15757 +15759 2 468.2655 600.1035 53.2616 0.1144 15758 +15760 2 468.9084 600.9363 52.1651 0.1144 15759 +15761 2 455.6724 590.7376 61.8612 0.1144 15740 +15762 2 456.7763 591.035 61.745 0.1144 15761 +15763 2 457.8803 591.3325 61.6207 0.1144 15762 +15764 2 459.0106 591.496 61.5689 0.1144 15763 +15765 2 460.1488 591.6104 61.605 0.1144 15764 +15766 2 461.286 591.7203 61.712 0.1144 15765 +15767 2 462.4231 591.8312 61.8666 0.1144 15766 +15768 2 463.5602 591.9399 62.0382 0.1144 15767 +15769 2 464.6962 592.0497 62.1981 0.1144 15768 +15770 2 465.8345 592.1607 62.3199 0.1144 15769 +15771 2 466.9694 592.3026 62.3882 0.1144 15770 +15772 2 467.793 593.0622 62.2905 0.1144 15771 +15773 2 468.5824 593.8847 62.0539 0.1144 15772 +15774 2 469.3683 594.705 61.7266 0.1144 15773 +15775 2 470.1531 595.5241 61.3539 0.1144 15774 +15776 2 470.9368 596.342 60.9756 0.1144 15775 +15777 2 471.7364 597.1497 60.6612 0.1144 15776 +15778 2 472.5761 597.9242 60.5116 0.1144 15777 +15779 2 473.4169 598.6998 60.485 0.1144 15778 +15780 2 474.2566 599.4766 60.5461 0.1144 15779 +15781 2 475.0975 600.2511 60.6612 0.1144 15780 +15782 2 475.9326 601.0221 60.9773 0.1144 15781 +15783 2 429.6601 566.6644 42.2103 0.1144 3407 +15784 2 430.5879 566.0592 42.7784 0.1144 15783 +15785 2 431.6815 565.962 43.1964 0.1144 15784 +15786 2 432.8107 566.0501 43.5898 0.1144 15785 +15787 2 433.9421 566.1484 43.9306 0.1144 15786 +15788 2 435.0701 566.32 44.1067 0.1144 15787 +15789 2 436.1855 566.566 44.0468 0.1144 15788 +15790 2 437.294 566.8268 43.7898 0.1144 15789 +15791 2 438.3968 567.0877 43.4101 0.1144 15790 +15792 2 439.4962 567.3462 42.9719 0.1144 15791 +15793 2 440.5956 567.6059 42.5306 0.1144 15792 +15794 2 441.6847 567.9319 42.2223 0.1144 15793 +15795 2 442.7749 568.274 42.061 0.1144 15794 +15796 2 443.8651 568.6195 42.0274 0.1144 15795 +15797 2 444.9554 568.965 42.0972 0.1144 15796 +15798 2 446.0124 569.3928 42.3069 0.1144 15797 +15799 2 447.018 569.9133 42.6857 0.1144 15798 +15800 2 448.0201 570.4293 43.1598 0.1144 15799 +15801 2 449.1024 570.7542 43.596 0.1144 15800 +15802 2 450.1892 571.0756 43.9799 0.1144 15801 +15803 2 451.2794 571.3983 44.2837 0.1144 15802 +15804 2 452.333 571.841 44.4312 0.1144 15803 +15805 2 453.3386 572.3867 44.3876 0.1144 15804 +15806 2 454.3407 572.9312 44.186 0.1144 15805 +15807 2 455.3395 573.4735 43.86 0.1144 15806 +15808 2 456.0693 573.7515 43.3913 0.1144 15807 +15809 2 457.1138 574.0764 42.5838 0.1144 15808 +15810 2 458.1834 574.1484 41.622 0.1144 15809 +15811 2 459.2554 574.2502 40.6826 0.1144 15810 +15812 2 460.3319 574.4802 39.919 0.1144 15811 +15813 2 461.421 574.7124 39.277 0.1144 15812 +15814 2 462.5215 574.9469 38.7668 0.1144 15813 +15815 2 463.5911 574.1015 38.3522 0.1144 15814 +15816 2 464.4686 573.3705 38.1962 0.1144 15815 +15817 2 465.2293 572.532 38.1004 0.1144 15816 +15818 2 465.5645 571.4795 38.0372 0.1144 15817 +15819 2 465.7853 570.3664 37.9845 0.1144 15818 +15820 2 466.2669 569.3368 37.9221 0.1144 15819 +15821 2 466.8447 568.3495 37.8417 0.1144 15820 +15822 2 467.4052 567.3542 37.718 0.1144 15821 +15823 2 468.2106 566.6072 37.4965 0.1144 15822 +15824 2 469.2768 566.2331 37.2333 0.1144 15823 +15825 2 470.3396 565.8293 36.9919 0.1144 15824 +15826 2 471.447 565.7366 36.729 0.1144 15825 +15827 2 472.432 566.2503 36.4736 0.1144 15826 +15828 2 473.3906 566.8657 36.2496 0.1144 15827 +15829 2 474.291 567.5647 36.0405 0.1144 15828 +15830 2 474.7142 568.5874 35.7865 0.1144 15829 +15831 2 474.8401 569.7109 35.4133 0.1144 15830 +15832 2 475.6306 570.4716 35.0224 0.1144 15831 +15833 2 476.4177 571.2804 34.5881 0.1144 15832 +15834 2 476.9611 572.2574 34.0225 0.1144 15833 +15835 2 477.4781 573.2447 33.3931 0.1144 15834 +15836 2 478.0456 574.2079 32.8065 0.1144 15835 +15837 2 478.6176 575.1735 32.2557 0.1144 15836 +15838 2 478.756 576.2877 31.7419 0.1144 15837 +15839 2 479.0878 577.3654 31.2704 0.1144 15838 +15840 2 479.6517 578.3446 30.8372 0.1144 15839 +15841 2 480.226 579.3193 30.4284 0.1144 15840 +15842 2 480.8003 580.2963 30.0336 0.1144 15841 +15843 2 481.3746 581.2721 29.6531 0.1144 15842 +15844 2 481.8597 582.2994 29.3056 0.1144 15843 +15845 2 482.212 583.3805 29.0086 0.1144 15844 +15846 2 482.5609 584.465 28.7451 0.1144 15845 +15847 2 482.911 585.5495 28.499 0.1144 15846 +15848 2 483.2611 586.634 28.2554 0.1144 15847 +15849 2 484.055 587.444 27.9558 0.1144 15848 +15850 2 484.8764 588.2276 27.5988 0.1144 15849 +15851 2 485.7287 588.9712 27.1915 0.1144 15850 +15852 2 486.6107 589.6771 26.7493 0.1144 15851 +15853 2 487.4962 590.3761 26.3026 0.1144 15852 +15854 2 488.5544 590.7776 25.9018 0.1144 15853 +15855 2 489.6251 591.0785 25.2412 0.1144 15854 +15856 2 462.6302 575.0636 38.5669 0.1144 15814 +15857 2 463.3658 575.8496 37.7048 0.1144 15856 +15858 2 464.1402 576.6755 37.3436 0.1144 15857 +15859 2 464.9193 577.5072 37.0944 0.1144 15858 +15860 2 465.6972 578.3378 36.8001 0.1144 15859 +15861 2 466.474 579.166 36.4672 0.1144 15860 +15862 2 467.2805 579.9622 36.0892 0.1144 15861 +15863 2 468.1397 580.6955 35.6552 0.1144 15862 +15864 2 469.0194 581.398 35.1688 0.1144 15863 +15865 2 469.898 582.0992 34.6408 0.1144 15864 +15866 2 470.7732 582.7982 34.0788 0.1144 15865 +15867 2 471.6483 583.4949 33.4916 0.1144 15866 +15868 2 472.4972 584.2179 32.87 0.1144 15867 +15869 2 473.3128 584.9707 32.193 0.1144 15868 +15870 2 474.2807 585.3802 31.4278 0.1144 15869 +15871 2 475.3434 585.1857 30.7003 0.1144 15870 +15872 2 476.4005 584.846 30.0224 0.1144 15871 +15873 2 477.485 584.6023 29.3768 0.1144 15872 +15874 2 478.5661 584.775 28.7899 0.1144 15873 +15875 2 479.5751 585.2658 28.3032 0.1144 15874 +15876 2 480.6127 585.712 27.8902 0.1144 15875 +15877 2 481.6663 585.4889 27.5325 0.1144 15876 +15878 2 482.5781 584.8174 27.2648 0.1144 15877 +15879 2 483.2874 583.9319 27.0266 0.1144 15878 +15880 2 484.3113 583.5052 26.7394 0.1144 15879 +15881 2 485.2516 582.876 26.3973 0.1144 15880 +15882 2 485.8488 581.9196 26.0 0.1144 15881 +15883 2 486.8418 581.4163 25.4756 0.1144 15882 +15884 2 487.924 581.144 24.8733 0.1144 15883 +15885 2 488.9467 580.715 24.2362 0.1144 15884 +15886 2 489.6457 579.8501 23.5927 0.1144 15885 +15887 2 490.2749 579.0196 22.4367 0.1144 15886 +15888 2 455.701 573.3442 45.1665 0.1144 15807 +15889 2 456.5372 573.0445 46.8664 0.1144 15888 +15890 2 457.5485 572.675 47.7128 0.1144 15889 +15891 2 458.5941 572.2871 48.3451 0.1144 15890 +15892 2 459.6523 571.9405 48.9807 0.1144 15891 +15893 2 460.7529 571.8593 49.6398 0.1144 15892 +15894 2 461.866 571.8696 50.2818 0.1144 15893 +15895 2 462.994 571.9531 50.6948 0.1144 15894 +15896 2 464.0819 571.6671 51.002 0.1144 15895 +15897 2 465.1607 571.2987 51.2324 0.1144 15896 +15898 2 466.2418 570.9292 51.3828 0.1144 15897 +15899 2 467.3492 570.6466 51.3075 0.1144 15898 +15900 2 468.4588 570.403 50.995 0.1144 15899 +15901 2 469.5605 570.1627 50.521 0.1144 15900 +15902 2 470.6359 569.8356 50.0035 0.1144 15901 +15903 2 471.6987 569.4683 49.495 0.1144 15902 +15904 2 472.7649 569.1 49.0162 0.1144 15903 +15905 2 473.8334 568.7304 48.5887 0.1144 15904 +15906 2 474.9041 568.3609 48.2059 0.1144 15905 +15907 2 475.9772 567.9903 47.8568 0.1144 15906 +15908 2 477.0514 567.6196 47.53 0.1144 15907 +15909 2 478.1268 567.249 47.2262 0.1144 15908 +15910 2 479.201 566.8714 46.9577 0.1144 15909 +15911 2 480.2638 566.4562 46.7743 0.1144 15910 +15912 2 481.3277 566.0386 46.6567 0.1144 15911 +15913 2 482.3928 565.6222 46.5559 0.1144 15912 diff --git a/example_data/Vip-IRES-Cre_Ai14-387150.05.02.01_811371030_m.swc b/example_data/Vip-IRES-Cre_Ai14-387150.05.02.01_811371030_m.swc new file mode 100755 index 0000000..5e1b70f --- /dev/null +++ b/example_data/Vip-IRES-Cre_Ai14-387150.05.02.01_811371030_m.swc @@ -0,0 +1,5684 @@ +# id,type,x,y,z,r,pid +1 1 376.7261 276.3938 41.5128 4.3758 -1 +2 3 371.268 274.8414 40.451 0.3558 1 +3 3 369.0773 274.2179 40.171 0.4213 2 +4 3 368.1678 273.5247 40.1212 0.4868 3 +5 3 367.5146 272.5912 40.168 0.5523 4 +6 3 367.089 271.5478 40.3206 0.6178 5 +7 3 367.9115 271.2916 38.6943 0.4633 6 +8 3 368.813 270.7676 37.6188 0.4373 7 +9 3 369.5051 269.9062 37.1694 0.4242 8 +10 3 370.5462 269.6888 36.6114 0.4112 9 +11 3 371.5723 269.5287 35.919 0.3982 10 +12 3 372.6729 269.6099 35.2078 0.3852 11 +13 3 373.778 269.7438 34.5134 0.3721 12 +14 3 374.8899 269.7186 33.854 0.3591 13 +15 3 375.9699 269.3983 33.2601 0.3461 14 +16 3 376.9537 268.8446 32.7247 0.333 15 +17 3 377.8152 268.1376 32.2031 0.32 16 +18 3 378.9317 267.9294 31.7148 0.307 17 +19 3 379.8904 267.3082 31.2939 0.2939 18 +20 3 380.3159 266.25 30.8932 0.2809 19 +21 3 380.0482 265.2398 30.3671 0.2679 20 +22 3 379.697 264.232 29.7791 0.2549 21 +23 3 379.3721 263.3065 28.1786 0.2418 22 +24 3 366.9883 271.1669 40.5017 0.6178 6 +25 3 366.6726 270.0904 40.7358 0.6102 24 +26 3 366.2791 269.0276 40.9601 0.6065 25 +27 3 365.8043 267.99 41.1172 0.6027 26 +28 3 365.3009 266.9627 41.1776 0.599 27 +29 3 364.7999 265.9388 41.137 0.5952 28 +30 3 364.2633 264.9378 41.0074 0.5914 29 +31 3 363.5987 264.0215 40.8086 0.5877 30 +32 3 362.7212 263.3099 40.5866 0.5839 31 +33 3 361.6504 262.9656 40.3802 0.5801 32 +34 3 360.5156 262.977 40.2024 0.5764 33 +35 3 359.3784 263.08 40.0299 0.5726 34 +36 3 358.2585 262.9701 39.8345 0.5689 35 +37 3 357.2987 262.4096 39.6278 0.5651 36 +38 3 356.7587 261.4349 39.4453 0.5613 37 +39 3 356.4258 260.3412 39.3011 0.5576 38 +40 3 355.8069 259.394 39.1933 0.5538 39 +41 3 354.8047 258.8952 39.1115 0.55 40 +42 3 353.6745 258.8414 39.0323 0.5463 41 +43 3 352.5545 259.0485 38.9558 0.5425 42 +44 3 351.4402 259.299 38.8917 0.5388 43 +45 3 350.3042 259.3356 38.8301 0.535 44 +46 3 349.2552 258.9158 38.8226 0.5312 45 +47 3 348.4098 258.1699 38.9127 0.5275 46 +48 3 347.7188 257.2787 39.0902 0.5237 47 +49 3 347.0278 256.3784 39.31 0.5199 48 +50 3 346.2305 255.5627 39.5226 0.5162 49 +51 3 345.3164 254.8763 39.7032 0.5124 50 +52 3 344.2834 254.3913 39.8518 0.5087 51 +53 3 343.1714 254.1453 39.9829 0.5049 52 +54 3 342.0423 253.9794 40.1078 0.5011 53 +55 3 340.9989 253.531 40.231 0.4974 54 +56 3 340.0494 252.9018 40.3449 0.4936 55 +57 3 339.212 252.1273 40.4233 0.4898 56 +58 3 338.4673 251.259 40.444 0.4861 57 +59 3 337.7603 250.3598 40.406 0.4823 58 +60 3 336.8737 249.6402 40.3217 0.4786 59 +61 3 335.8978 249.3096 40.0436 0.4748 60 +62 3 334.9117 248.8772 39.6715 0.471 61 +63 3 334.2368 248.0123 39.2865 0.4673 62 +64 3 333.2632 247.4689 39.1062 0.4635 63 +65 3 332.3778 246.8043 39.1129 0.4598 64 +66 3 331.4179 246.2117 39.2255 0.456 65 +67 3 330.4707 245.571 39.349 0.4522 66 +68 3 329.4937 244.9762 39.4405 0.4485 67 +69 3 328.5156 244.3801 39.478 0.4447 68 +70 3 327.5261 243.8207 39.4117 0.4409 69 +71 3 326.4862 243.481 39.2073 0.4372 70 +72 3 325.3936 243.2258 38.9673 0.4334 71 +73 3 324.2817 242.965 38.827 0.4297 72 +74 3 323.2395 242.56 38.8242 0.4259 73 +75 3 322.2362 242.1299 38.9508 0.4221 74 +76 3 321.5624 241.9217 39.0401 0.4221 75 +77 3 320.5419 241.4355 39.0768 0.4212 76 +78 3 319.9047 240.518 38.9948 0.4207 77 +79 3 319.5741 239.4918 38.7209 0.4202 78 +80 3 318.9827 238.5789 38.3247 0.4198 79 +81 3 318.1418 237.8273 37.9417 0.4193 80 +82 3 317.0893 237.4303 37.6354 0.4188 81 +83 3 315.9545 237.4029 37.3932 0.4183 82 +84 3 314.8219 237.4967 37.1442 0.4179 83 +85 3 313.7363 237.3983 36.7982 0.4174 84 +86 3 312.8005 236.9064 36.3244 0.4169 85 +87 3 312.0397 236.1491 35.756 0.4164 86 +88 3 311.3625 235.3151 35.142 0.416 87 +89 3 310.834 234.3827 34.5456 0.4155 88 +90 3 310.556 233.2913 34.0816 0.415 89 +91 3 310.3661 232.1656 33.8064 0.4145 90 +92 3 309.9428 231.1509 33.7296 0.4141 91 +93 3 309.0916 230.4657 33.8148 0.4136 92 +94 3 308.0289 230.0859 33.9721 0.4131 93 +95 3 306.9306 229.7827 34.1253 0.4127 94 +96 3 305.8724 229.3628 34.2129 0.4122 95 +97 3 304.995 228.6856 34.1841 0.4117 96 +98 3 304.3681 227.7818 34.0057 0.4112 97 +99 3 303.724 226.8815 33.7613 0.4108 98 +100 3 303.0284 225.9812 33.5566 0.4103 99 +101 3 302.636 224.9321 33.4194 0.4098 100 +102 3 302.5445 223.7939 33.3542 0.4093 101 +103 3 302.4061 222.6659 33.357 0.4089 102 +104 3 301.9073 221.6763 33.4373 0.4084 103 +105 3 301.0596 220.9407 33.5894 0.4079 104 +106 3 300.0769 220.3744 33.7733 0.4074 105 +107 3 299.1125 219.7887 33.9746 0.407 106 +108 3 298.1172 219.2751 34.1611 0.4065 107 +109 3 297.003 219.092 34.2787 0.406 108 +110 3 295.9745 219.4341 34.3112 0.4055 109 +111 3 295.1371 220.2017 34.244 0.4051 110 +112 3 294.2288 220.8366 34.0757 0.4046 111 +113 3 293.1454 220.9476 33.8209 0.4041 112 +114 3 292.1765 220.4511 33.523 0.4036 113 +115 3 291.4672 219.6 33.1848 0.4032 114 +116 3 290.8654 218.6767 32.809 0.4027 115 +117 3 290.2831 217.7284 32.4548 0.4022 116 +118 3 289.7741 216.7285 32.1686 0.4017 117 +119 3 289.2901 215.7023 32.0166 0.4013 118 +120 3 289.0762 214.6133 32.0541 0.4008 119 +121 3 289.1391 213.5173 32.319 0.4003 120 +122 3 289.0957 212.4568 32.7925 0.3998 121 +123 3 288.4424 211.8688 33.4421 0.3994 122 +124 3 287.3808 211.7064 34.1076 0.3989 123 +125 3 286.2631 211.529 34.6858 0.3984 124 +126 3 285.2164 211.1023 35.1411 0.3979 125 +127 3 284.2829 210.4697 35.4984 0.3975 126 +128 3 283.45 209.7055 35.7697 0.397 127 +129 3 282.5955 208.9505 35.9302 0.3965 128 +130 3 281.6471 208.3247 35.9747 0.396 129 +131 3 280.6976 207.7081 35.917 0.3956 130 +132 3 279.8613 206.9404 35.8165 0.3951 131 +133 3 279.1692 206.0344 35.7165 0.3946 132 +134 3 278.5857 205.0506 35.6334 0.3941 133 +135 3 278.0675 204.0313 35.5757 0.3937 134 +136 3 277.531 203.0211 35.5426 0.3932 135 +137 3 276.8606 202.0979 35.5247 0.3927 136 +138 3 275.9889 201.3715 35.5093 0.3922 137 +139 3 274.9204 201.0065 35.4886 0.3918 138 +140 3 273.7855 200.9905 35.4612 0.3913 139 +141 3 272.6667 201.2159 35.4239 0.3908 140 +142 3 271.5604 201.5007 35.3665 0.3903 141 +143 3 270.4279 201.5522 35.278 0.3899 142 +144 3 269.4509 201.0202 35.1733 0.3894 143 +145 3 268.9933 199.9998 35.0784 0.3889 144 +146 3 268.9086 198.8638 34.9992 0.3884 145 +147 3 268.7542 197.7301 34.9334 0.388 146 +148 3 268.1994 196.7383 34.8746 0.3875 147 +149 3 267.315 196.021 34.8082 0.387 148 +150 3 266.3209 195.4627 34.722 0.3865 149 +151 3 265.2661 195.0268 34.6251 0.3861 150 +152 3 264.1748 194.6848 34.5369 0.3856 151 +153 3 263.0845 194.3393 34.4644 0.3851 152 +154 3 262.0229 193.9126 34.4064 0.3847 153 +155 3 260.9807 193.4401 34.3582 0.3842 154 +156 3 259.9202 193.0134 34.3134 0.3837 155 +157 3 258.8369 192.6462 34.2616 0.3832 156 +158 3 257.7386 192.3316 34.186 0.3828 157 +159 3 256.6278 192.0787 34.0743 0.3823 158 +160 3 255.5044 191.8877 33.9408 0.3818 159 +161 3 254.373 191.7321 33.8173 0.3813 160 +162 3 253.2564 191.4827 33.7226 0.3809 161 +163 3 252.2428 190.9565 33.6591 0.3804 162 +164 3 251.3494 190.2426 33.6221 0.3799 163 +165 3 250.4674 189.5139 33.6028 0.3794 164 +166 3 249.5716 188.8023 33.5944 0.379 165 +167 3 248.661 188.1148 33.602 0.3785 166 +168 3 247.7458 187.4398 33.6213 0.378 167 +169 3 246.8706 186.7031 33.5936 0.3775 168 +170 3 246.1602 185.8336 33.4527 0.3771 169 +171 3 245.6385 184.8532 33.2077 0.3766 170 +172 3 245.0151 183.914 32.9232 0.3761 171 +173 3 244.1262 183.199 32.6645 0.3756 172 +174 3 243.084 182.7288 32.466 0.3752 173 +175 3 241.98 182.4302 32.3386 0.3747 174 +176 3 240.8612 182.19 32.2764 0.3742 175 +177 3 239.7469 181.9303 32.2613 0.3737 176 +178 3 238.6544 181.594 32.2728 0.3733 177 +179 3 237.6282 181.0906 32.2997 0.3728 178 +180 3 236.7371 180.3733 32.34 0.3723 179 +181 3 235.9157 179.5794 32.3963 0.3718 180 +182 3 234.9147 179.0349 32.4705 0.3714 181 +183 3 233.781 178.8941 32.5746 0.3709 182 +184 3 232.6496 178.9296 32.7401 0.3704 183 +185 3 231.5525 178.7408 32.9784 0.3699 184 +186 3 230.5526 178.2135 33.2374 0.3695 185 +187 3 229.5379 177.7067 33.4583 0.369 186 +188 3 228.4042 177.5866 33.6151 0.3685 187 +189 3 227.267 177.6792 33.7053 0.368 188 +190 3 226.1642 177.4664 33.7341 0.3676 189 +191 3 225.3463 176.7 33.7134 0.3671 190 +192 3 224.9928 175.6234 33.6608 0.3666 191 +193 3 224.9642 174.4817 33.5773 0.3661 192 +194 3 224.8818 173.3721 33.4379 0.3657 193 +195 3 224.3201 172.4328 33.2396 0.3652 194 +196 3 223.4152 171.7544 33.0518 0.3647 195 +197 3 222.4233 171.1927 32.942 0.3642 196 +198 3 221.3606 170.8404 32.9532 0.3638 197 +199 3 220.2589 170.9205 33.0946 0.3633 198 +200 3 219.2076 171.3289 33.3127 0.3628 199 +201 3 218.1162 171.5794 33.5353 0.3624 200 +202 3 217.0237 171.3197 33.7187 0.3619 201 +203 3 216.0753 170.6825 33.8526 0.3614 202 +204 3 215.1784 169.9721 33.9436 0.3609 203 +205 3 214.2678 169.2811 34.0085 0.3605 204 +206 3 213.4521 168.4883 34.071 0.36 205 +207 3 212.8801 167.5136 34.1494 0.3595 206 +208 3 212.649 166.3994 34.2527 0.359 207 +209 3 212.6318 165.2577 34.3952 0.3586 208 +210 3 212.5804 164.1308 34.6167 0.3581 209 +211 3 212.3138 163.0646 34.9376 0.3576 210 +212 3 211.6709 162.2135 35.3248 0.3571 211 +213 3 210.6241 161.86 35.6997 0.3567 212 +214 3 209.4881 161.9641 36.0086 0.3562 213 +215 3 208.367 162.1448 36.2608 0.3557 214 +216 3 207.2653 162.0396 36.4991 0.3552 215 +217 3 206.3067 161.5122 36.7374 0.3548 216 +218 3 205.6054 160.6531 36.9328 0.3543 217 +219 3 205.1718 159.6155 36.9956 0.3538 218 +220 3 204.8183 158.6042 36.8589 0.3533 219 +221 3 204.4614 157.602 36.5856 0.3529 220 +222 3 204.0015 156.5804 36.3129 0.3524 221 +223 3 203.3552 155.6481 36.1421 0.3519 222 +224 3 202.5166 154.9022 36.1497 0.3514 223 +225 3 201.5797 154.345 36.3815 0.351 224 +226 3 200.6198 153.8508 36.7878 0.3505 225 +227 3 199.6749 153.2971 37.2702 0.35 226 +228 3 198.786 152.6199 37.7292 0.3495 227 +229 3 197.9498 151.8511 38.059 0.3491 228 +230 3 197.1821 151.0183 38.2119 0.3486 229 +231 3 196.4328 150.1603 38.255 0.3481 230 +232 3 195.5416 149.4659 38.2505 0.3476 231 +233 3 194.4697 149.1055 38.2337 0.3472 232 +234 3 193.3314 148.99 38.2301 0.3467 233 +235 3 192.1954 148.8596 38.2572 0.3462 234 +236 3 191.0686 148.6674 38.3194 0.3458 235 +237 3 189.9498 148.4271 38.414 0.3453 236 +238 3 188.8458 148.1297 38.5482 0.3448 237 +239 3 187.7727 147.7407 38.7352 0.3443 238 +240 3 186.7717 147.1962 38.9914 0.3439 239 +241 3 185.8348 146.5521 39.3478 0.3434 240 +242 3 184.883 146.0625 39.87 0.3429 241 +243 3 183.9529 145.9916 40.6227 0.3424 242 +244 3 183.064 145.9378 41.5394 0.342 243 +245 3 182.2495 145.2846 42.4474 0.3415 244 +246 3 181.6878 144.3167 43.2678 0.341 245 +247 3 181.2428 143.3146 44.0283 0.3405 246 +248 3 180.72 142.3765 44.7356 0.3401 247 +249 3 180.0908 141.4693 45.3552 0.3396 248 +250 3 179.5702 140.474 45.8492 0.3391 249 +251 3 179.3483 139.3724 46.1941 0.3386 250 +252 3 179.2168 138.2478 46.4318 0.3382 251 +253 3 178.5372 137.5912 46.718 0.3377 252 +254 3 177.5099 137.6392 47.1302 0.3372 253 +255 3 176.4837 137.3933 47.605 0.3367 254 +256 3 175.6475 136.6508 48.0511 0.3363 255 +257 3 174.9073 135.7791 48.4394 0.3358 256 +258 3 174.1866 134.8902 48.7718 0.3353 257 +259 3 173.4498 134.0196 49.0728 0.3348 258 +260 3 172.6296 133.2646 49.4113 0.3344 259 +261 3 171.7178 132.6743 49.8313 0.3339 260 +262 3 170.774 132.0954 50.293 0.3334 261 +263 3 169.9012 131.3747 50.7248 0.3329 262 +264 3 169.1621 130.5064 51.0863 0.3325 263 +265 3 168.4654 129.6003 51.3724 0.332 264 +266 3 167.5937 128.8796 51.6211 0.3315 265 +267 3 166.5184 128.7332 51.8918 0.331 266 +268 3 165.4956 129.1542 52.1749 0.3306 267 +269 3 164.4626 129.6404 52.3919 0.3301 268 +270 3 163.3609 129.598 52.4835 0.3296 269 +271 3 162.4766 128.9208 52.5112 0.3291 270 +272 3 161.6941 128.0891 52.5636 0.3287 271 +273 3 160.7263 127.5217 52.7349 0.3282 272 +274 3 159.6749 127.3524 53.0762 0.3277 273 +275 3 158.6465 127.246 53.5676 0.3272 274 +276 3 157.6661 126.9016 54.1335 0.3268 275 +277 3 157.0129 126.0127 54.6319 0.3263 276 +278 3 156.6914 124.9191 54.9158 0.3258 277 +279 3 156.0016 124.1217 54.8758 0.3253 278 +280 3 155.0109 124.0188 54.5597 0.3249 279 +281 3 153.9321 124.3665 54.2223 0.3244 280 +282 3 152.7915 124.4603 53.9641 0.3239 281 +283 3 151.731 124.0313 53.8166 0.3234 282 +284 3 151.1922 123.0464 53.8614 0.323 283 +285 3 150.8959 121.9687 54.0683 0.3225 284 +286 3 150.6007 120.8819 54.3558 0.322 285 +287 3 150.0642 119.8718 54.6017 0.3215 286 +288 3 149.3709 118.9623 54.7904 0.3211 287 +289 3 148.5084 118.2095 54.9307 0.3206 288 +290 3 147.3895 117.9716 55.032 0.3201 289 +291 3 146.3599 118.4681 55.1174 0.3196 290 +292 3 145.7456 119.4336 55.2093 0.3192 291 +293 3 145.5557 119.5217 54.8458 0.3192 292 +294 3 144.4586 119.8237 54.7548 0.3173 293 +295 3 143.3386 119.6979 54.714 0.3163 294 +296 3 142.2656 119.3135 54.691 0.3153 295 +297 3 141.1879 118.9382 54.6882 0.3144 296 +298 3 140.0782 118.666 54.6706 0.3134 297 +299 3 138.9708 118.3983 54.6 0.3125 298 +300 3 137.8943 118.0311 54.4849 0.3115 299 +301 3 136.7869 117.7542 54.3575 0.3106 300 +302 3 135.6578 117.8492 54.2298 0.3096 301 +303 3 134.5733 118.1924 54.0887 0.3086 302 +304 3 133.4945 118.5298 53.9235 0.3077 303 +305 3 132.3986 118.8193 53.7606 0.3067 304 +306 3 131.2786 119.0412 53.6581 0.3058 305 +307 3 130.1437 119.0298 53.6528 0.3048 306 +308 3 129.0386 118.7621 53.7258 0.3038 307 +309 3 127.9404 118.4452 53.8451 0.3029 308 +310 3 126.8021 118.42 53.9966 0.3019 309 +311 3 125.737 118.8113 54.1733 0.301 310 +312 3 124.6766 119.2414 54.3788 0.3 311 +313 3 123.5612 119.4359 54.6515 0.2991 312 +314 3 122.4663 119.564 55.0421 0.2981 313 +315 3 121.3887 119.6498 55.545 0.2971 314 +316 3 120.3488 119.3066 56.0944 0.2962 315 +317 3 119.4313 118.6568 56.6269 0.2952 316 +318 3 118.4383 118.102 57.1052 0.2943 317 +319 3 117.3401 117.7965 57.505 0.2933 318 +320 3 116.2121 117.6021 57.8323 0.2924 319 +321 3 115.1939 117.1353 58.1868 0.2914 320 +322 3 114.2923 116.529 58.623 0.2904 321 +323 3 113.242 116.1423 59.0778 0.2895 322 +324 3 112.1341 115.9455 59.5378 0.2885 323 +325 3 111.15 115.3838 59.9724 0.2876 324 +326 3 110.3469 114.5716 60.352 0.2866 325 +327 3 109.6046 113.7016 60.681 0.2857 326 +328 3 108.9444 112.7675 60.9857 0.2847 327 +329 3 108.1248 112.0287 61.3981 0.2837 328 +330 3 107.2206 112.4265 61.9836 0.2828 329 +331 3 106.2038 112.8656 62.6091 0.2818 330 +332 3 105.3323 113.5537 63.2506 0.2809 331 +333 3 104.5441 114.3068 63.9122 0.2799 332 +334 3 103.4074 114.2319 64.4798 0.279 333 +335 3 102.3801 113.7286 64.9244 0.278 334 +336 3 101.7008 114.4332 65.9823 0.278 335 +337 3 100.9777 115.139 67.5578 0.2737 336 +338 3 100.1177 115.7122 68.2472 0.2716 337 +339 3 99.0626 115.9089 69.0021 0.2694 338 +340 3 97.9463 115.7625 69.7354 0.2673 339 +341 3 96.8254 115.7328 70.4558 0.2652 340 +342 3 95.8663 116.1263 71.2289 0.263 341 +343 3 94.9965 116.513 72.0826 0.2609 342 +344 3 94.087 116.2842 72.9714 0.2587 343 +345 3 93.5128 115.385 73.7696 0.2566 344 +346 3 93.3765 114.2624 74.3999 0.2545 345 +347 3 93.3558 113.1192 74.8535 0.2523 346 +348 3 93.1051 112.0078 75.1288 0.2502 347 +349 3 92.5765 111.0014 75.273 0.2481 348 +350 3 91.7323 110.2435 75.4256 0.2459 349 +351 3 90.7023 109.8082 75.6672 0.2438 350 +352 3 89.6347 109.4069 75.957 0.2416 351 +353 3 88.6062 108.9069 76.2555 0.2395 352 +354 3 88.1494 107.9548 76.692 0.2374 353 +355 3 88.0428 106.9035 77.2215 0.2352 354 +356 3 87.7294 105.8083 77.6678 0.2331 355 +357 3 86.7382 105.2847 78.5375 0.2309 356 +358 3 101.6932 112.9139 65.3517 0.278 335 +359 3 101.0902 111.9715 65.7908 0.2746 358 +360 3 100.7351 110.9149 66.2469 0.2729 359 +361 3 100.5196 109.8238 66.7223 0.2712 360 +362 3 99.9202 108.8642 67.1762 0.2695 361 +363 3 99.1797 107.9934 67.5676 0.2678 362 +364 3 98.7603 106.934 67.9204 0.2661 363 +365 3 98.6621 105.8124 68.2884 0.2644 364 +366 3 98.5701 104.6918 68.6798 0.2627 365 +367 3 98.4085 103.567 69.0698 0.261 366 +368 3 98.0906 102.4723 69.4582 0.2593 367 +369 3 97.3265 101.631 69.86 0.2576 368 +370 3 96.4672 100.8971 70.2932 0.2559 369 +371 3 96.0623 99.8767 70.7955 0.2542 370 +372 3 95.8261 98.8194 71.3636 0.2525 371 +373 3 95.0777 98.0011 71.9415 0.2509 372 +374 3 94.1795 97.3504 72.5147 0.2492 373 +375 3 93.5003 96.4391 73.0167 0.2475 374 +376 3 93.1301 95.3569 73.416 0.2458 375 +377 3 93.021 94.2181 73.7363 0.2441 376 +378 3 93.0078 93.0761 74.039 0.2424 377 +379 3 93.0072 91.9577 74.4131 0.2407 378 +380 3 92.8575 90.8311 74.8322 0.239 379 +381 3 92.3907 89.8113 75.3214 0.2373 380 +382 3 91.705 88.9547 75.8881 0.2356 381 +383 3 90.7821 88.5369 76.5618 0.2339 382 +384 3 89.8326 89.0943 77.2027 0.2322 383 +385 3 88.7744 89.4608 78.4 0.2305 384 +386 3 144.6302 119.0046 55.5551 0.3192 292 +387 3 143.6303 118.4726 55.8267 0.3192 386 +388 3 142.6694 117.8537 56.1179 0.3192 387 +389 3 141.6341 117.4877 56.4578 0.3192 388 +390 3 140.5541 117.5117 56.887 0.3192 389 +391 3 139.5142 117.3469 57.3653 0.3192 390 +392 3 138.6036 116.7086 57.7951 0.3192 391 +393 3 137.7628 115.9341 58.1459 0.3192 392 +394 3 136.8304 115.2809 58.4312 0.3192 393 +395 3 135.755 114.9583 58.6706 0.3192 394 +396 3 134.6294 115.0052 58.9123 0.3192 395 +397 3 133.5597 114.8633 59.232 0.3192 396 +398 3 132.6434 114.2801 59.6319 0.3192 397 +399 3 131.6366 113.8096 60.0468 0.3192 398 +400 3 130.5338 113.5184 60.4254 0.3192 399 +401 3 129.4436 113.1787 60.7656 0.3192 400 +402 3 128.3648 112.8015 61.0775 0.3192 401 +403 3 127.4691 112.1268 61.3847 0.3192 402 +404 3 126.7346 111.2776 61.7515 0.3192 403 +405 3 125.8892 110.5719 62.2129 0.3192 404 +406 3 125.0495 109.8265 62.7239 0.3192 405 +407 3 124.5747 108.8206 63.2523 0.3192 406 +408 3 124.1789 107.8117 63.8546 0.3192 407 +409 3 123.266 107.4925 64.5425 0.3192 408 +410 3 122.17 107.6125 65.2086 0.3192 409 +411 3 121.1267 107.1898 65.7927 0.3192 410 +412 3 120.6142 106.1824 66.2794 0.3192 411 +413 3 120.4049 105.0621 66.7164 0.3192 412 +414 3 120.2859 103.9477 67.1712 0.3192 413 +415 3 120.1269 102.8713 67.6948 0.3192 414 +416 3 119.3467 102.1067 68.269 0.3192 415 +417 3 118.2976 102.5238 68.791 0.3192 416 +418 3 117.3 102.2134 69.4089 0.3192 417 +419 3 116.3906 101.6119 70.0342 0.3192 418 +420 3 115.7728 100.672 70.5936 0.3192 419 +421 3 115.7728 99.528 71.0192 0.3192 420 +422 3 115.3873 99.4051 71.3661 0.3192 421 +423 3 114.4744 98.7679 72.4926 0.3127 422 +424 3 113.8826 97.8387 72.9716 0.3095 423 +425 3 113.3246 96.8965 73.5619 0.3063 424 +426 3 112.5794 96.0971 74.2336 0.3031 425 +427 3 111.6474 95.5222 74.9538 0.2999 426 +428 3 110.6132 95.0831 75.6554 0.2967 427 +429 3 109.6871 94.4318 76.309 0.2934 428 +430 3 109.4342 93.3753 76.9927 0.2902 429 +431 3 109.2156 92.332 77.735 0.287 430 +432 3 108.7831 91.3034 78.4703 0.2838 431 +433 3 109.0059 90.1855 79.1451 0.2806 432 +434 3 109.2955 89.0905 79.812 0.2774 433 +435 3 108.689 88.4116 80.6602 0.2741 434 +436 3 108.1766 87.6359 81.6169 0.2709 435 +437 3 107.6504 86.7152 82.5524 0.2677 436 +438 3 107.5383 86.2023 83.6903 0.2677 437 +439 3 107.1243 85.1811 85.1679 0.2628 438 +440 3 106.5316 84.3017 85.806 0.2604 439 +441 3 105.8399 83.5459 86.611 0.258 440 +442 3 104.9826 82.8934 87.4852 0.2555 441 +443 3 103.9677 82.5501 88.401 0.2531 442 +444 3 102.9873 82.0667 89.3063 0.2507 443 +445 3 101.9812 81.5645 90.1368 0.2482 444 +446 3 101.1695 80.8679 90.972 0.2458 445 +447 3 100.3736 80.0736 91.7577 0.2434 446 +448 3 99.368 79.7095 92.568 0.241 447 +449 3 98.4639 79.6273 93.4802 0.2385 448 +450 3 97.743 78.7861 94.2976 0.2361 449 +451 3 96.8118 78.1217 94.9203 0.2337 450 +452 3 96.2104 77.3344 96.32 0.2312 451 +453 3 107.1406 86.6598 83.3504 0.2677 437 +454 3 106.0224 86.5677 84.0616 0.2634 453 +455 3 104.9262 86.3361 84.6852 0.2612 454 +456 3 103.9194 85.8649 85.2362 0.259 455 +457 3 102.804 85.6775 85.71 0.2569 456 +458 3 101.8611 86.3158 86.1008 0.2547 457 +459 3 100.7922 86.6758 86.4931 0.2526 458 +460 3 99.6687 86.7965 86.8776 0.2504 459 +461 3 98.5364 86.8703 87.2441 0.2482 460 +462 3 97.4248 87.0573 87.6156 0.2461 461 +463 3 96.2893 87.0752 87.9743 0.2439 462 +464 3 95.2594 86.5799 88.3025 0.2418 463 +465 3 94.1515 86.3415 88.6371 0.2396 464 +466 3 93.0112 86.2844 88.9426 0.2374 465 +467 3 91.8697 86.2144 89.206 0.2353 466 +468 3 90.9319 85.613 89.5149 0.2331 467 +469 3 91.4057 84.656 90.44 0.231 468 +470 3 115.592 98.608 71.3787 0.3192 421 +471 3 115.5463 97.4789 71.71 0.3152 470 +472 3 115.8437 96.3942 72.0076 0.3132 471 +473 3 116.307 95.3518 72.2918 0.3112 472 +474 3 116.5999 94.2589 72.5945 0.3092 473 +475 3 116.6079 93.1303 72.9322 0.3072 474 +476 3 116.4832 92.0079 73.3065 0.3052 475 +477 3 116.3677 90.9014 73.7341 0.3032 476 +478 3 116.3311 89.804 74.214 0.3012 477 +479 3 116.4295 88.6968 74.7001 0.2992 478 +480 3 116.5381 87.5671 75.1293 0.2972 479 +481 3 116.3517 86.4522 75.4726 0.2952 480 +482 3 115.8117 85.4559 75.7408 0.2932 481 +483 3 115.1562 84.5223 75.9682 0.2911 482 +484 3 114.6757 83.5001 76.1956 0.2891 483 +485 3 114.559 82.3826 76.435 0.2871 484 +486 3 114.6299 81.2446 76.6721 0.2851 485 +487 3 114.6528 80.1017 76.8975 0.2831 486 +488 3 114.6299 78.9581 77.1176 0.2811 487 +489 3 114.686 77.8195 77.3612 0.2791 488 +490 3 114.7924 76.7023 77.6773 0.2771 489 +491 3 114.805 75.5963 78.0805 0.2751 490 +492 3 114.7787 74.4734 78.5263 0.2731 491 +493 3 114.8931 73.3418 78.9592 0.2711 492 +494 3 115.1596 72.234 79.3761 0.2691 493 +495 3 115.4456 71.1474 79.8182 0.2671 494 +496 3 115.7156 70.0769 80.306 0.2651 495 +497 3 116.0268 69.0139 80.8242 0.2631 496 +498 3 116.4375 67.969 81.345 0.2611 497 +499 3 117.1227 67.0715 81.8325 0.2591 498 +500 3 117.8732 66.209 82.266 0.2571 499 +501 3 117.7897 65.135 82.6865 0.2551 500 +502 3 116.783 65.3495 83.2208 0.2531 501 +503 3 116.1915 66.3269 83.7575 0.2511 502 +504 3 115.4628 67.2078 84.3438 0.2491 503 +505 3 114.4 67.6104 85.045 0.2471 504 +506 3 114.2292 67.4762 85.9496 0.2471 505 +507 3 113.6916 67.1441 87.2388 0.2452 506 +508 3 113.0296 66.7789 88.7813 0.2442 507 +509 3 112.3647 66.2679 90.4831 0.2432 508 +510 3 111.9078 65.6735 92.3059 0.2423 509 +511 3 111.4978 65.0109 94.1688 0.2413 510 +512 3 110.7732 64.3998 95.9437 0.2404 511 +513 3 109.8494 63.9606 97.5657 0.2394 512 +514 3 109.0477 63.4326 99.1015 0.2384 513 +515 3 108.6234 63.4745 100.7048 0.2375 514 +516 3 109.1612 63.8374 102.2792 0.2365 515 +517 3 110.1583 63.7535 103.658 0.2355 516 +518 3 111.1787 63.2666 104.7407 0.2346 517 +519 3 112.2581 62.8877 105.5144 0.2336 518 +520 3 113.3474 62.5404 106.043 0.2327 519 +521 3 114.331 61.9609 106.3955 0.2317 520 +522 3 115.2283 61.251 106.6206 0.2307 521 +523 3 116.0016 60.632 107.52 0.2298 522 +524 3 114.0434 67.6614 83.44 0.2471 505 +525 3 112.9421 67.516 84.6376 0.2434 524 +526 3 111.9128 67.2188 85.1654 0.2416 525 +527 3 110.8418 67.1459 85.8024 0.2398 526 +528 3 109.7738 67.346 86.4814 0.238 527 +529 3 108.7375 67.1816 87.1937 0.2361 528 +530 3 107.6335 67.1062 87.8335 0.2343 529 +531 3 106.5007 67.2666 88.277 0.2325 530 +532 3 105.3624 67.1528 88.76 0.2306 531 +533 3 322.227 242.1253 39.7832 0.4221 75 +534 3 321.3576 241.6151 41.2516 0.4087 533 +535 3 320.4996 240.939 41.8709 0.402 534 +536 3 319.6039 240.2389 42.5093 0.3953 535 +537 3 318.7928 239.4426 43.1634 0.3886 536 +538 3 318.4427 238.508 43.9575 0.3818 537 +539 3 318.7195 237.8227 44.9663 0.3751 538 +540 3 318.8694 236.951 46.0578 0.3684 539 +541 3 318.1784 236.3092 47.1439 0.3617 540 +542 3 317.0653 236.2085 48.0385 0.355 541 +543 3 315.9465 236.204 48.7824 0.3483 542 +544 3 314.8185 236.1651 49.3536 0.3416 543 +545 3 313.766 235.7269 49.7311 0.3348 544 +546 3 312.9755 234.9044 49.9775 0.3281 545 +547 3 312.5294 233.853 50.1595 0.3214 546 +548 3 311.7983 232.9745 50.3314 0.3147 547 +549 3 310.9792 232.1759 50.5151 0.308 548 +550 3 309.9325 231.7172 50.7329 0.3013 549 +551 3 308.8079 231.5788 51.0418 0.2946 550 +552 3 307.927 231.35 51.6037 0.2878 551 +553 3 306.9489 231.0926 52.2735 0.2811 552 +554 3 305.9456 230.7608 52.9522 0.2744 553 +555 3 304.9481 230.2014 53.4456 0.2681 554 +556 3 304.6907 229.7884 56.4446 0.2677 555 +557 3 304.0729 229.531 60.2185 0.265 556 +558 3 303.4849 229.4521 61.8156 0.2637 557 +559 3 303.1634 229.2759 63.7762 0.2623 558 +560 3 302.9895 229.1409 65.9971 0.261 559 +561 3 302.8889 229.0894 68.3684 0.2596 560 +562 3 302.7871 229.0105 70.7787 0.2583 561 +563 3 302.6978 228.8366 73.1245 0.257 562 +564 3 302.6189 228.1788 75.2738 0.2556 563 +565 3 302.2173 227.3986 77.1823 0.2543 564 +566 3 301.2575 227.0485 78.745 0.2529 565 +567 3 300.546 226.417 80.127 0.2516 566 +568 3 299.8824 225.6391 81.3999 0.2502 567 +569 3 298.9295 225.1323 82.5418 0.2489 568 +570 3 297.9376 224.8921 83.6864 0.2476 569 +571 3 297.2112 224.5535 84.9601 0.2462 570 +572 3 296.2994 224.2583 86.2644 0.2449 571 +573 3 295.3053 223.8968 87.5104 0.2435 572 +574 3 294.6864 223.0903 88.7132 0.2422 573 +575 3 294.1293 222.2128 89.8755 0.2408 574 +576 3 293.4131 221.5047 91.0025 0.2395 575 +577 3 292.4762 222.0126 92.0472 0.2381 576 +578 3 291.5392 222.5206 93.0362 0.2368 577 +579 3 291.2658 221.634 93.9232 0.2368 578 +580 3 290.9409 220.5769 94.747 0.2364 579 +581 3 290.6149 219.521 95.5259 0.2362 580 +582 3 290.2889 218.4651 96.2783 0.236 581 +583 3 289.964 217.408 97.0236 0.2358 582 +584 3 289.6368 216.3521 97.7735 0.2356 583 +585 3 289.313 215.2962 98.5362 0.2354 584 +586 3 288.9893 214.2415 99.3124 0.2352 585 +587 3 288.6918 213.2141 100.133 0.235 586 +588 3 288.3978 212.1868 100.9865 0.2349 587 +589 3 288.1027 211.1607 101.8598 0.2347 588 +590 3 288.0112 210.0624 102.7037 0.2345 589 +591 3 288.01 208.9459 103.5062 0.2343 590 +592 3 288.0134 207.8282 104.279 0.2341 591 +593 3 288.0169 206.7105 105.0339 0.2339 592 +594 3 287.7126 205.6626 105.8187 0.2337 593 +595 3 287.184 204.7463 106.6688 0.2335 594 +596 3 286.5377 203.9352 107.5866 0.2333 595 +597 3 285.8845 203.1298 108.5445 0.2331 596 +598 3 285.2324 202.3233 109.5128 0.2329 597 +599 3 284.5814 201.5167 110.4653 0.2327 598 +600 3 283.7886 200.7171 111.2787 0.2325 599 +601 3 282.9753 199.9243 111.9555 0.2323 600 +602 3 282.1596 199.1326 112.5351 0.2321 601 +603 3 281.3451 198.3399 113.062 0.2319 602 +604 3 280.5294 197.5482 113.5786 0.2317 603 +605 3 279.716 196.7554 114.1235 0.2315 604 +606 3 278.9003 195.9638 114.7306 0.2313 605 +607 3 278.2402 195.1733 115.5372 0.2311 606 +608 3 277.73 194.3256 116.5335 0.231 607 +609 3 277.6465 193.32 117.6613 0.2308 608 +610 3 277.5641 192.3144 118.8802 0.2306 609 +611 3 277.4806 191.31 120.1516 0.2304 610 +612 3 277.3983 190.3044 121.4394 0.2302 611 +613 3 277.3159 189.2988 122.7352 0.23 612 +614 3 277.2324 188.2944 124.0044 0.2298 613 +615 3 277.15 187.2888 125.223 0.2296 614 +616 3 277.0665 186.2832 126.3688 0.2294 615 +617 3 276.9841 185.2788 127.4249 0.2292 616 +618 3 276.9018 184.2732 129.4804 0.229 617 +619 3 291.005 223.2962 94.2463 0.2368 578 +620 3 290.393 224.1885 95.8532 0.2356 619 +621 3 289.7809 225.0797 96.5322 0.235 620 +622 3 289.3039 226.0441 97.3566 0.2343 621 +623 3 289.1609 227.1069 98.2946 0.2337 622 +624 3 289.0682 228.1834 99.3205 0.2331 623 +625 3 288.9755 229.2587 100.4576 0.2325 624 +626 3 288.8829 230.3352 101.6406 0.2319 625 +627 3 288.8291 231.3134 102.9067 0.2313 626 +628 3 288.828 232.097 104.2874 0.2307 627 +629 3 288.7353 232.6198 105.7706 0.23 628 +630 3 288.4207 232.3235 109.2137 0.2294 629 +631 3 304.4413 229.261 53.7244 0.2683 555 +632 3 304.1187 228.188 53.7953 0.2685 631 +633 3 303.8716 227.0806 53.7205 0.2688 632 +634 3 303.2744 226.1459 53.6161 0.269 633 +635 3 302.3043 225.5911 53.5506 0.2692 634 +636 3 301.2358 225.1872 53.522 0.2694 635 +637 3 300.2439 224.6358 53.4923 0.2697 636 +638 3 299.3425 223.9449 53.4467 0.2699 637 +639 3 298.4502 223.2402 53.3946 0.2701 638 +640 3 297.5807 222.5011 53.3756 0.2703 639 +641 3 296.7284 221.7438 53.438 0.2705 640 +642 3 295.819 221.0826 53.6158 0.2708 641 +643 3 294.8706 220.4923 53.8961 0.271 642 +644 3 294.0366 219.7796 54.2545 0.2712 643 +645 3 293.2793 218.9879 54.647 0.2714 644 +646 3 292.3881 218.3072 54.9749 0.2717 645 +647 3 291.386 217.765 55.1552 0.2719 646 +648 3 290.4536 217.1415 55.1289 0.2721 647 +649 3 289.6185 216.4128 54.9108 0.2723 648 +650 3 288.6621 215.8259 54.5835 0.2726 649 +651 3 287.6165 215.3923 54.2086 0.2728 650 +652 3 286.5274 215.0514 53.8535 0.273 651 +653 3 285.444 214.7036 53.5304 0.2732 652 +654 3 284.7977 213.9005 53.1583 0.2735 653 +655 3 284.7016 212.8492 52.7668 0.2737 654 +656 3 284.5769 211.7258 52.4765 0.2739 655 +657 3 284.0083 210.7511 52.3981 0.2741 656 +658 3 283.0519 210.2878 52.5913 0.2743 657 +659 3 282.0052 209.948 52.9508 0.2746 658 +660 3 280.9756 209.5019 53.3898 0.2748 659 +661 3 280.0489 208.8464 53.8278 0.275 660 +662 3 279.2046 208.1005 54.2396 0.2752 661 +663 3 278.2917 207.4278 54.5838 0.2755 662 +664 3 277.301 206.8581 54.8288 0.2757 663 +665 3 276.3767 206.1957 54.9886 0.2759 664 +666 3 275.8562 205.1867 55.0855 0.2761 665 +667 3 275.8127 204.0438 55.1387 0.2763 666 +668 3 275.664 202.9239 55.1622 0.2766 667 +669 3 274.9295 202.1036 55.1712 0.2768 668 +670 3 273.7867 202.1036 55.1768 0.277 669 +671 3 272.6667 202.226 55.1835 0.2772 670 +672 3 271.6908 201.7169 55.193 0.2775 671 +673 3 271.2584 200.661 55.2059 0.2777 672 +674 3 270.9301 199.5765 55.2244 0.2779 673 +675 3 270.2277 198.6853 55.2499 0.2781 674 +676 3 269.2873 198.0356 55.286 0.2783 675 +677 3 268.3126 197.4395 55.3364 0.2786 676 +678 3 267.41 196.7394 55.4061 0.2788 677 +679 3 266.6149 195.918 55.5024 0.279 678 +680 3 265.8553 195.0669 55.6405 0.2792 679 +681 3 264.9904 194.337 55.839 0.2795 680 +682 3 264.026 193.7558 56.1047 0.2797 681 +683 3 263.0754 193.1575 56.4147 0.2799 682 +684 3 262.1453 192.5146 56.7288 0.2801 683 +685 3 261.1477 191.9724 57.0055 0.2804 684 +686 3 260.0552 191.6417 57.2174 0.2806 685 +687 3 258.9616 191.3454 57.3644 0.2808 686 +688 3 258.0361 190.6956 57.4636 0.281 687 +689 3 257.3005 189.8193 57.5378 0.2813 688 +690 3 256.4779 189.0471 57.6078 0.2815 689 +691 3 255.4232 188.6616 57.6909 0.2817 690 +692 3 254.2815 188.5953 57.8046 0.2819 691 +693 3 253.1706 188.4065 57.9734 0.2821 692 +694 3 252.1708 187.902 58.2154 0.2824 693 +695 3 251.2979 187.1973 58.5158 0.2826 694 +696 3 250.4719 186.4262 58.8344 0.2828 695 +697 3 249.5979 185.7009 59.1354 0.283 696 +698 3 248.6644 185.0477 59.3992 0.2833 697 +699 3 247.843 184.2824 59.6109 0.2835 698 +700 3 247.4003 183.2516 59.7607 0.2837 699 +701 3 247.1509 182.1397 59.8559 0.2839 700 +702 3 246.5331 181.2588 59.9138 0.2841 701 +703 3 245.4715 180.9762 59.9502 0.2844 702 +704 3 244.3287 180.9556 59.9766 0.2846 703 +705 3 243.2327 180.6937 60.0029 0.2848 704 +706 3 242.1859 180.2315 60.037 0.285 705 +707 3 241.106 179.8711 60.0835 0.2853 706 +708 3 239.9849 179.6503 60.1437 0.2855 707 +709 3 238.8695 179.4078 60.2328 0.2857 708 +710 3 237.7884 179.0692 60.3781 0.2859 709 +711 3 236.7554 178.6104 60.5707 0.2862 710 +712 3 235.7784 178.0281 60.7656 0.2864 711 +713 3 234.8563 177.352 60.9336 0.2866 712 +714 3 233.9263 176.6885 61.0708 0.2868 713 +715 3 232.8909 176.2309 61.1806 0.2871 714 +716 3 231.7698 176.0307 61.2777 0.2873 715 +717 3 230.6853 175.7356 61.4051 0.2875 716 +718 3 229.9715 174.9428 61.5695 0.2877 717 +719 3 229.7655 173.84 61.7288 0.2879 718 +720 3 229.3628 172.792 61.8663 0.2882 719 +721 3 228.4831 172.1079 61.9842 0.2884 720 +722 3 227.4135 171.719 62.0934 0.2886 721 +723 3 226.3026 171.465 62.2157 0.2888 722 +724 3 225.1758 171.3174 62.3613 0.2891 723 +725 3 224.041 171.2259 62.5218 0.2893 724 +726 3 222.945 170.9262 62.6746 0.2895 725 +727 3 222.0756 170.2123 62.7956 0.2897 726 +728 3 221.523 169.2216 62.8757 0.2899 727 +729 3 221.1455 168.1428 62.9168 0.2902 728 +730 3 220.8183 167.0469 62.9266 0.2904 729 +731 3 220.371 165.9955 62.9129 0.2906 730 +732 3 219.5942 165.1719 62.8816 0.2908 731 +733 3 218.5292 164.7978 62.8356 0.2911 732 +734 3 217.3909 164.712 62.7724 0.2913 733 +735 3 216.2721 164.49 62.6794 0.2915 734 +736 3 215.3008 163.9146 62.5408 0.2917 735 +737 3 214.4737 163.1493 62.3596 0.2919 736 +738 3 213.5539 162.4846 62.1746 0.2922 737 +739 3 212.4705 162.13 62.0486 0.2924 738 +740 3 211.362 161.8668 62.0052 0.2926 739 +741 3 210.234 161.6895 62.0211 0.2928 740 +742 3 209.098 161.5545 62.0612 0.2931 741 +743 3 208.1119 160.9883 62.1074 0.2933 742 +744 3 207.5342 160.009 62.1474 0.2935 743 +745 3 207.0228 158.9851 62.174 0.2937 744 +746 3 206.5092 157.9635 62.1905 0.294 745 +747 3 206.0161 156.9305 62.2042 0.2942 746 +748 3 205.5196 155.8997 62.2222 0.2944 747 +749 3 204.9888 154.8873 62.2471 0.2946 748 +750 3 204.3527 153.9366 62.281 0.2949 749 +751 3 203.5348 153.1381 62.3288 0.2951 750 +752 3 202.536 152.5833 62.3988 0.2953 751 +753 3 201.4481 152.2355 62.4957 0.2955 752 +754 3 200.4013 151.7848 62.6223 0.2957 753 +755 3 199.6097 150.9668 62.7718 0.296 754 +756 3 199.1063 149.9418 62.9168 0.2962 755 +757 3 198.659 148.8882 63.0445 0.2964 756 +758 3 198.055 147.9169 63.1576 0.2966 757 +759 3 197.0346 147.409 63.2652 0.2969 758 +760 3 195.9443 147.7442 63.3934 0.2971 759 +761 3 194.8724 147.9604 63.586 0.2973 760 +762 3 194.3244 147.0154 63.8277 0.2975 761 +763 3 194.3862 145.8772 64.0192 0.2977 762 +764 3 194.226 144.7812 64.0825 0.298 763 +765 3 193.5259 143.9221 64.0447 0.2982 764 +766 3 192.5489 143.3352 64.0088 0.2984 765 +767 3 191.5079 142.873 64.0388 0.2986 766 +768 3 190.468 142.4131 64.1497 0.2989 767 +769 3 189.4567 141.8846 64.3261 0.2991 768 +770 3 188.4912 141.2794 64.5616 0.2993 769 +771 3 187.6538 140.5232 64.8522 0.2995 770 +772 3 187.1241 139.536 65.1899 0.2998 771 +773 3 186.8392 138.4629 65.5844 0.3 772 +774 3 186.3187 137.5397 66.0251 0.3002 773 +775 3 185.3108 137.1061 66.4404 0.3004 774 +776 3 184.168 137.0901 66.7769 0.3007 775 +777 3 183.0469 136.9963 67.0471 0.3009 776 +778 3 182.1214 136.414 67.2885 0.3011 777 +779 3 181.5562 135.4427 67.5178 0.3013 778 +780 3 181.2382 134.3536 67.7258 0.3015 779 +781 3 181.07 133.2245 67.9031 0.3018 780 +782 3 180.9602 132.0851 68.0495 0.302 781 +783 3 180.7245 130.9754 68.171 0.3022 782 +784 3 180.1571 130.0076 68.2791 0.3024 783 +785 3 179.2625 129.3258 68.3973 0.3027 784 +786 3 178.1929 128.9654 68.5563 0.3029 785 +787 3 177.0683 128.8064 68.7616 0.3031 786 +788 3 175.9541 128.5959 68.9942 0.3033 787 +789 3 174.9382 128.1166 69.2474 0.3035 788 +790 3 174.0848 127.3764 69.5198 0.3038 789 +791 3 173.3171 126.5378 69.7936 0.304 790 +792 3 172.5918 125.6615 70.0557 0.3042 791 +793 3 172.0587 124.6754 70.3088 0.3044 792 +794 3 171.8082 123.5749 70.5468 0.3047 793 +795 3 171.425 122.5373 70.7582 0.3049 794 +796 3 170.5063 121.987 70.9159 0.3051 795 +797 3 169.3944 121.7594 70.9778 0.3053 796 +798 3 168.4231 121.2434 70.9498 0.3056 797 +799 3 167.7058 120.374 70.9075 0.3058 798 +800 3 166.9622 119.5183 70.9243 0.306 799 +801 3 166.0299 118.8925 71.013 0.3062 800 +802 3 165.0563 118.301 71.139 0.3064 801 +803 3 164.299 117.4659 71.2704 0.3067 802 +804 3 163.7705 116.4558 71.3905 0.3069 803 +805 3 162.9822 115.6561 71.4921 0.3071 804 +806 3 161.8863 115.4754 71.5761 0.3073 805 +807 3 160.7434 115.5074 71.6556 0.3076 806 +808 3 159.6429 115.2443 71.7665 0.3078 807 +809 3 158.8593 114.4664 71.944 0.308 808 +810 3 158.4326 113.4261 72.1535 0.3082 809 +811 3 157.7256 112.5359 72.3206 0.3085 810 +812 3 156.6228 112.347 72.4172 0.3087 811 +813 3 155.4856 112.4584 72.4794 0.3089 812 +814 3 154.3553 112.2969 72.5337 0.3091 813 +815 3 153.4115 111.6573 72.5959 0.3093 814 +816 3 152.8716 110.6531 72.6911 0.3096 815 +817 3 152.6004 109.5478 72.8594 0.3098 816 +818 3 152.2332 108.4869 73.1237 0.31 817 +819 3 151.4725 107.6629 73.453 0.3102 818 +820 3 150.4806 107.1141 73.7982 0.3105 819 +821 3 149.4178 106.6946 74.1269 0.3107 820 +822 3 148.3516 106.2823 74.4229 0.3109 821 +823 3 147.4147 105.6265 74.6883 0.3111 822 +824 3 146.9605 104.5855 74.9773 0.3114 823 +825 3 146.5052 103.6152 75.3838 0.3116 824 +826 3 145.6941 102.9449 75.887 0.3118 825 +827 3 144.6222 102.6989 76.3946 0.312 826 +828 3 143.5777 102.2404 76.7987 0.3122 827 +829 3 142.9336 101.2956 77.0795 0.3125 828 +830 3 142.3868 100.3029 77.1999 0.3127 829 +831 3 141.6684 99.4566 77.1607 0.3129 830 +832 3 140.7303 98.8401 77.0546 0.3131 831 +833 3 139.695 98.367 77.056 0.3134 832 +834 3 139.4158 97.3936 77.313 0.3136 833 +835 3 139.3243 96.2766 77.6611 0.3138 834 +836 3 138.996 95.1808 77.9948 0.314 835 +837 3 138.4892 94.7456 78.3118 0.3179 836 +838 3 137.423 94.331 78.6055 0.3218 837 +839 3 136.3236 94.0287 78.9076 0.3256 838 +840 3 135.3352 93.5792 79.3164 0.3295 839 +841 3 134.6282 94.2413 79.6071 0.278 840 +842 3 134.0047 95.1974 79.5928 0.2747 841 +843 3 133.1845 95.9951 79.5841 0.2731 842 +844 3 132.132 96.4408 79.5539 0.2714 843 +845 3 131.0463 96.8012 79.4937 0.2698 844 +846 3 130.0442 97.3407 79.3783 0.2682 845 +847 3 129.1484 98.0314 79.1988 0.2665 846 +848 3 128.1406 98.5591 78.9961 0.2649 847 +849 3 127.0961 99.0235 78.8194 0.2632 848 +850 3 126.2061 99.7422 78.6811 0.2616 849 +851 3 125.4453 100.5925 78.554 0.26 850 +852 3 124.6445 101.3952 78.4207 0.2583 851 +853 3 123.6481 101.9489 78.3138 0.2567 852 +854 3 122.5087 101.8555 78.2592 0.255 853 +855 3 121.4505 101.4304 78.2858 0.2534 854 +856 3 120.3213 101.2775 78.3913 0.2518 855 +857 3 119.2368 101.639 78.5386 0.2501 856 +858 3 118.0997 101.5176 78.7144 0.2485 857 +859 3 116.9969 101.2167 78.9345 0.2468 858 +860 3 115.8597 101.3247 79.1963 0.2452 859 +861 3 114.853 101.8639 79.5049 0.2436 860 +862 3 114.0872 102.6568 79.9445 0.2419 861 +863 3 113.1384 103.1981 80.5008 0.2403 862 +864 3 112.0451 103.3907 81.1362 0.2386 863 +865 3 111.0193 103.7422 81.8387 0.237 864 +866 3 109.909 103.9371 82.5048 0.2354 865 +867 3 108.8435 104.1952 83.162 0.2337 866 +868 3 107.8242 104.5905 83.7841 0.2321 867 +869 3 106.8496 105.0192 85.12 0.2304 868 +870 3 134.6774 92.6405 80.2318 0.3295 840 +871 3 133.6192 92.5496 80.8623 0.3252 870 +872 3 133.4316 92.3623 81.2795 0.323 871 +873 3 132.6308 91.5536 81.6539 0.3209 872 +874 3 131.8517 90.7192 81.8068 0.3188 873 +875 3 131.1173 89.8438 81.975 0.3166 874 +876 3 130.3737 88.98 82.1736 0.3145 875 +877 3 129.4814 88.2877 82.4135 0.3123 876 +878 3 128.3991 87.9795 82.6711 0.3102 877 +879 3 127.262 87.911 82.9206 0.3081 878 +880 3 126.1546 87.6514 83.1664 0.3059 879 +881 3 125.2302 86.998 83.4042 0.3038 880 +882 3 124.6205 86.0413 83.6293 0.3016 881 +883 3 124.2361 84.9701 83.8544 0.2995 882 +884 3 123.8002 83.9196 84.0924 0.2973 883 +885 3 123.1241 83.0104 84.3452 0.2952 884 +886 3 122.3119 82.2124 84.6006 0.2931 885 +887 3 121.6278 81.2982 84.8422 0.2909 886 +888 3 121.2137 80.235 85.0632 0.2888 887 +889 3 120.8876 79.1392 85.2827 0.2866 888 +890 3 120.4826 78.0775 85.5448 0.2845 889 +891 3 119.8111 77.1757 85.8718 0.2824 890 +892 3 118.8067 76.6561 86.2338 0.2802 891 +893 3 117.8663 76.0322 86.6491 0.2781 892 +894 3 117.1353 75.1832 87.1226 0.2759 893 +895 3 116.1858 74.5655 87.6098 0.2738 894 +896 3 115.075 74.3762 88.123 0.2716 895 +897 3 113.979 74.2336 88.6967 0.2695 896 +898 3 113.0171 73.6805 89.3105 0.2674 897 +899 3 112.3069 72.8189 89.9396 0.2652 898 +900 3 111.5286 72.054 90.6158 0.2631 899 +901 3 110.5945 71.4974 91.3357 0.2609 900 +902 3 109.9373 70.5857 92.0354 0.2588 901 +903 3 109.569 69.5034 92.6559 0.2566 902 +904 3 108.5853 68.9317 93.2534 0.2545 903 +905 3 107.7404 68.4004 94.0002 0.2524 904 +906 3 107.2294 67.7896 94.9452 0.2502 905 +907 3 106.457 67.0712 95.8919 0.2481 906 +908 3 106.008 66.0265 96.7162 0.2459 907 +909 3 105.6927 64.9286 97.4137 0.2438 908 +910 3 105.2725 63.8783 98.0482 0.2416 909 +911 3 105.0414 62.8025 98.66 0.2395 910 +912 3 105.0952 61.71 99.2597 0.2374 911 +913 3 104.9851 60.6413 99.8836 0.2352 912 +914 3 104.9358 59.5645 100.5124 0.2331 913 +915 3 105.4768 58.5728 101.64 0.2309 914 +916 3 133.5242 92.636 81.4268 0.3089 871 +917 3 132.6937 93.3664 82.0229 0.3089 916 +918 3 131.7671 93.9399 82.6238 0.3089 917 +919 3 130.7317 93.7787 83.2132 0.3089 918 +920 3 129.8554 93.1221 83.8127 0.3089 919 +921 3 128.8499 92.9103 84.4466 0.3089 920 +922 3 127.7859 93.2732 85.0256 0.3089 921 +923 3 126.7529 93.4352 85.5663 0.3089 922 +924 3 126.5642 92.533 86.1641 0.3089 923 +925 3 126.1638 91.5737 86.8417 0.3089 924 +926 3 125.2794 90.9676 87.5624 0.3089 925 +927 3 124.1801 90.7417 88.2529 0.3089 926 +928 3 123.0555 90.617 88.9283 0.3089 927 +929 3 122.0225 90.2452 89.6339 0.3089 928 +930 3 121.0787 89.718 90.3784 0.3089 929 +931 3 120.1051 89.2822 91.1674 0.3089 930 +932 3 119.0378 89.1566 91.9881 0.3089 931 +933 3 117.9842 89.518 92.7842 0.3089 932 +934 3 117.1353 90.2737 93.5166 0.3089 933 +935 3 116.1652 90.812 94.2771 0.3089 934 +936 3 115.163 90.4111 95.0914 0.3089 935 +937 3 114.1596 90.0527 95.993 0.3089 936 +938 3 113.2035 90.0726 97.0404 0.3089 937 +939 3 112.4347 89.8646 98.2565 0.3089 938 +940 3 111.8135 89.1213 99.4888 0.3089 939 +941 3 111.1563 88.3099 100.6348 0.3089 940 +942 3 110.3897 87.5771 101.666 0.3089 941 +943 3 109.498 86.8964 102.5055 0.3089 942 +944 3 108.3605 86.8099 103.1206 0.3089 943 +945 3 107.3292 87.302 103.558 0.3089 944 +946 3 106.513 86.5079 103.8892 0.3089 945 +947 3 105.82 85.8 104.3647 0.3089 946 +948 3 106.3076 85.1579 105.8112 0.3089 947 +949 3 106.9734 84.37 108.1408 0.3022 948 +950 3 107.7004 83.5631 109.0723 0.2989 949 +951 3 108.093 82.7136 110.2741 0.2955 950 +952 3 107.9009 82.0279 111.7539 0.2922 951 +953 3 107.8346 81.4013 113.43 0.2889 952 +954 3 108.2175 80.8751 115.1937 0.2855 953 +955 3 108.9149 80.5885 116.9252 0.2822 954 +956 3 109.9212 80.4199 118.4613 0.2789 955 +957 3 111.0128 80.3077 119.73 0.2755 956 +958 3 112.1262 80.2367 120.7455 0.2722 957 +959 3 113.2223 80.0805 121.5791 0.2688 958 +960 3 114.2854 79.8264 122.3046 0.2655 959 +961 3 115.3987 79.8499 122.943 0.2622 960 +962 3 116.5221 79.9909 123.5004 0.2588 961 +963 3 117.6558 80.1442 123.9672 0.2555 962 +964 3 118.7541 80.4571 124.3852 0.2522 963 +965 3 119.302 81.4118 124.8839 0.2488 964 +966 3 120.0559 82.2311 125.4218 0.2455 965 +967 3 121.0913 82.6994 125.9406 0.2422 966 +968 3 122.1884 82.7301 126.5037 0.2388 967 +969 3 123.2603 82.6038 127.101 0.2355 968 +970 3 124.2384 82.2536 128.52 0.2321 969 +971 3 105.8192 85.8 104.7514 0.3089 947 +972 3 104.7215 85.723 105.1915 0.3025 971 +973 3 103.6037 85.7645 105.6406 0.2993 972 +974 3 102.4848 85.9247 106.055 0.2961 973 +975 3 101.4196 86.3368 106.3832 0.2929 974 +976 3 100.5484 87.0781 106.6069 0.2897 975 +977 3 99.7552 87.8973 106.7984 0.2865 976 +978 3 99.0791 88.8142 106.9575 0.2833 977 +979 3 98.4531 89.7713 107.0717 0.2801 978 +980 3 97.7275 90.6557 107.1468 0.2768 979 +981 3 96.8798 91.4239 107.1958 0.2736 980 +982 3 95.9011 92.0162 107.2252 0.2704 981 +983 3 94.8082 92.3543 107.2372 0.2672 982 +984 3 93.6667 92.4304 107.2397 0.264 983 +985 3 92.5227 92.4352 107.24 0.2608 984 +986 3 91.5124 92.9716 107.24 0.2576 985 +987 3 90.844 93.9 107.24 0.2544 986 +988 3 90.3251 94.9195 107.24 0.2512 987 +989 3 90.189 96.0554 107.24 0.248 988 +990 3 89.9754 97.1793 107.24 0.2448 989 +991 3 89.6147 98.2649 107.24 0.2416 990 +992 3 89.1189 99.2959 107.24 0.2384 991 +993 3 89.2239 100.4351 107.24 0.2352 992 +994 3 90.0328 101.244 107.24 0.232 993 +995 3 138.6036 94.3053 78.428 0.3089 836 +996 3 138.1792 93.2519 79.165 0.3067 995 +997 3 137.8383 92.1785 79.4744 0.3056 996 +998 3 137.4848 91.1396 79.8902 0.3045 997 +999 3 136.9322 90.1869 80.3692 0.3034 998 +1000 3 136.3007 89.2469 80.8284 0.3023 999 +1001 3 135.8969 88.18 81.226 0.3012 1000 +1002 3 135.6532 87.0654 81.5654 0.3001 1001 +1003 3 135.5651 85.935 81.881 0.299 1002 +1004 3 135.7081 84.8066 82.1696 0.2979 1003 +1005 3 135.5228 83.6789 82.4216 0.2967 1004 +1006 3 134.7838 82.8094 82.6538 0.2956 1005 +1007 3 134.3102 81.7692 82.8993 0.2945 1006 +1008 3 134.1466 80.6456 83.1998 0.2934 1007 +1009 3 134.5927 79.6229 83.5929 0.2923 1008 +1010 3 135.1991 78.6811 84.0647 0.2912 1009 +1011 3 135.4038 77.5621 84.5659 0.2901 1010 +1012 3 134.9851 76.5099 85.1063 0.289 1011 +1013 3 134.4234 75.5596 85.722 0.2879 1012 +1014 3 134.0974 74.5611 86.4433 0.2868 1013 +1015 3 133.4373 73.8585 87.2942 0.2857 1014 +1016 3 132.6502 73.0518 88.0886 0.2846 1015 +1017 3 132.5438 71.9132 88.7748 0.2835 1016 +1018 3 131.9901 70.9193 89.4118 0.2824 1017 +1019 3 131.1607 70.2249 90.0998 0.2813 1018 +1020 3 130.2547 69.8315 90.8953 0.2802 1019 +1021 3 129.2468 69.4111 91.6835 0.2791 1020 +1022 3 128.4712 68.7544 92.5333 0.278 1021 +1023 3 127.6876 68.3837 93.3526 0.2471 1022 +1024 3 126.587 68.3042 94.0775 0.2454 1023 +1025 3 125.459 68.462 94.6308 0.2445 1024 +1026 3 124.3173 68.3858 95.0169 0.2436 1025 +1027 3 123.2157 68.0809 95.2834 0.2427 1026 +1028 3 122.1186 67.7544 95.4803 0.2419 1027 +1029 3 121.0409 67.3745 95.6614 0.241 1028 +1030 3 119.9392 67.0707 95.8532 0.2401 1029 +1031 3 118.8524 67.424 96.0767 0.2393 1030 +1032 3 117.7908 67.8449 96.369 0.2384 1031 +1033 3 116.696 68.1182 96.7758 0.2375 1032 +1034 3 115.6172 68.4032 97.3073 0.2366 1033 +1035 3 114.5579 68.6187 97.9815 0.2358 1034 +1036 3 113.5058 68.6842 98.786 0.2349 1035 +1037 3 112.5016 68.3595 99.6867 0.234 1036 +1038 3 112.2505 67.3861 100.6589 0.2332 1037 +1039 3 111.3808 66.8057 101.614 0.2323 1038 +1040 3 110.3033 66.6161 102.4702 0.2314 1039 +1041 3 109.1965 66.7848 103.1817 0.2305 1040 +1042 3 108.108 66.924 104.44 0.2297 1041 +1043 3 127.6933 69.0802 94.4499 0.278 1022 +1044 3 126.9348 69.4649 97.5416 0.2728 1043 +1045 3 126.4246 69.7187 98.898 0.2702 1044 +1046 3 125.8034 69.6284 100.5192 0.2676 1045 +1047 3 124.9946 69.3648 102.2386 0.265 1046 +1048 3 124.1755 69.1013 103.9842 0.2625 1047 +1049 3 123.2923 68.8832 105.677 0.2599 1048 +1050 3 122.2478 68.9142 107.189 0.2573 1049 +1051 3 121.3956 69.5449 108.5392 0.2547 1050 +1052 3 120.8968 70.4785 109.7942 0.2521 1051 +1053 3 120.4174 71.3551 111.0379 0.2495 1052 +1054 3 120.6783 72.1938 112.327 0.2469 1053 +1055 3 121.3464 72.8358 113.6321 0.2443 1054 +1056 3 122.0762 72.8101 114.9943 0.2418 1055 +1057 3 122.8164 72.0463 116.1877 0.2392 1056 +1058 3 123.9112 71.8496 117.1514 0.2366 1057 +1059 3 125.0449 71.8933 117.8646 0.234 1058 +1060 3 126.1706 71.7579 118.8088 0.2314 1059 +1061 3 381.9862 276.6375 41.2378 0.8546 1 +1062 3 383.1279 276.6901 41.2062 0.7949 1061 +1063 3 384.2707 276.6547 41.2196 0.765 1062 +1064 3 385.4136 276.6192 41.2728 0.7351 1063 +1065 3 386.688 277.0024 41.286 0.7053 1064 +1066 3 387.784 277.3296 41.3367 0.6754 1065 +1067 3 388.8834 277.6442 41.4033 0.6456 1066 +1068 3 389.9839 277.9577 41.4882 0.6157 1067 +1069 3 391.0753 278.262 41.6492 0.5858 1068 +1070 3 392.1632 278.564 41.8765 0.556 1069 +1071 3 392.9777 279.3785 42.3167 0.556 1070 +1072 3 393.7854 280.1862 42.5589 0.5524 1071 +1073 3 394.6171 280.9687 42.8254 0.5506 1072 +1074 3 395.5426 281.6276 43.1348 0.5488 1073 +1075 3 396.563 282.1367 43.4792 0.547 1074 +1076 3 397.5858 282.6366 43.869 0.5452 1075 +1077 3 398.5913 283.0565 44.3755 0.5434 1076 +1078 3 399.6175 282.9398 45.0103 0.5416 1077 +1079 3 400.4984 282.3152 45.6798 0.5398 1078 +1080 3 401.3106 281.5716 46.3212 0.538 1079 +1081 3 402.2201 280.9195 46.8835 0.5362 1080 +1082 3 403.2794 280.5408 47.3385 0.5344 1081 +1083 3 404.4189 280.5248 47.6412 0.5326 1082 +1084 3 405.4347 281.0499 47.7851 0.5308 1083 +1085 3 406.1783 281.9148 47.7728 0.529 1084 +1086 3 406.7858 282.8517 47.5944 0.5272 1085 +1087 3 407.2823 283.8527 47.3074 0.5253 1086 +1088 3 407.7479 284.8823 46.9837 0.5236 1087 +1089 3 408.2501 285.9096 46.7062 0.5217 1088 +1090 3 408.7592 286.9301 46.4635 0.5199 1089 +1091 3 409.441 287.8418 46.2568 0.5181 1090 +1092 3 410.4203 288.4333 46.1202 0.5163 1091 +1093 3 411.4854 288.8486 46.0424 0.5145 1092 +1094 3 412.5687 289.2169 46.0046 0.5127 1093 +1095 3 413.7127 289.2181 45.9936 0.5109 1094 +1096 3 414.851 289.1094 46.0068 0.5091 1095 +1097 3 415.9939 289.0396 46.039 0.5073 1096 +1098 3 417.1379 289.0362 46.0869 0.5055 1097 +1099 3 418.1 289.6539 46.1544 0.5037 1098 +1100 3 418.7589 290.5897 46.2462 0.5019 1099 +1101 3 418.9568 291.7166 46.3669 0.5001 1100 +1102 3 419.2588 292.8148 46.5578 0.4983 1101 +1103 3 419.8469 293.7758 46.8398 0.4965 1102 +1104 3 420.6682 294.5514 47.1856 0.4947 1103 +1105 3 421.6143 295.16 47.5843 0.4929 1104 +1106 3 422.581 295.7343 48.0161 0.4911 1105 +1107 3 423.5671 296.2663 48.461 0.4893 1106 +1108 3 424.5967 296.7136 48.8922 0.4875 1107 +1109 3 425.6446 297.1117 49.2976 0.4857 1108 +1110 3 426.712 297.44 49.6756 0.4839 1109 +1111 3 427.5483 297.4526 49.9128 0.4839 1110 +1112 3 428.6637 297.2398 50.0282 0.4788 1111 +1113 3 429.7413 296.8657 50.0654 0.4762 1112 +1114 3 430.8601 296.6426 50.0702 0.4736 1113 +1115 3 431.9836 296.7959 50.0721 0.471 1114 +1116 3 432.9274 297.4148 50.0996 0.4685 1115 +1117 3 433.5989 298.3255 50.1836 0.4659 1116 +1118 3 434.3482 299.1812 50.311 0.4633 1117 +1119 3 435.443 299.3779 50.4372 0.4607 1118 +1120 3 436.4417 298.8448 50.5336 0.4582 1119 +1121 3 437.405 298.2282 50.5977 0.4556 1120 +1122 3 438.5089 297.9376 50.6316 0.453 1121 +1123 3 439.6243 298.171 50.6405 0.4505 1122 +1124 3 440.631 298.7133 50.6321 0.4479 1123 +1125 3 441.6298 299.2704 50.6131 0.4453 1124 +1126 3 442.6411 299.8058 50.5859 0.4427 1125 +1127 3 443.5574 300.4899 50.5498 0.4402 1126 +1128 3 444.3948 301.2701 50.5044 0.4376 1127 +1129 3 445.4393 301.7266 50.4255 0.435 1128 +1130 3 446.5673 301.5836 50.2995 0.4324 1129 +1131 3 447.7033 301.4509 50.1673 0.4299 1130 +1132 3 448.8187 301.6717 50.0564 0.4273 1131 +1133 3 449.8654 302.1258 49.9388 0.4247 1132 +1134 3 450.8172 302.7424 49.7213 0.4221 1133 +1135 3 451.6489 303.4334 49.3458 0.4196 1134 +1136 3 452.3765 304.1782 48.8225 0.417 1135 +1137 3 452.7906 305.1517 48.2216 0.4144 1136 +1138 3 453.0023 306.2602 47.6829 0.4118 1137 +1139 3 453.286 307.3665 47.2657 0.4093 1138 +1140 3 453.6944 308.4327 46.9809 0.4067 1139 +1141 3 454.2412 309.436 46.8488 0.4041 1140 +1142 3 454.9047 310.3523 46.8611 0.4015 1141 +1143 3 455.6529 311.2138 46.9241 0.399 1142 +1144 3 456.6184 311.8269 46.9661 0.3964 1143 +1145 3 457.7544 311.7 46.9641 0.3938 1144 +1146 3 458.8344 311.3247 46.9109 0.3912 1145 +1147 3 459.9578 311.5398 46.8037 0.3887 1146 +1148 3 460.492 312.5397 46.5951 0.3861 1147 +1149 3 461.0572 313.464 46.244 0.3835 1148 +1150 3 461.8328 314.2568 45.8315 0.381 1149 +1151 3 462.7594 313.4377 44.6933 0.2574 1150 +1152 3 463.6426 312.7238 44.4531 0.2565 1151 +1153 3 464.5269 312.0008 44.2224 0.256 1152 +1154 3 465.4112 311.279 43.995 0.2556 1153 +1155 3 466.339 310.6315 43.7525 0.2551 1154 +1156 3 467.3011 310.0469 43.503 0.2547 1155 +1157 3 468.3056 309.5275 43.279 0.2542 1156 +1158 3 469.3992 309.2175 43.108 0.2538 1157 +1159 3 470.5203 309.0127 43.0391 0.2533 1158 +1160 3 471.5179 308.5174 43.1096 0.2529 1159 +1161 3 472.3382 307.7577 43.2793 0.2524 1160 +1162 3 473.2213 307.0404 43.4644 0.252 1161 +1163 3 474.2795 306.6229 43.598 0.2515 1162 +1164 3 475.4006 306.401 43.6666 0.251 1163 +1165 3 476.5172 306.1504 43.6649 0.2506 1164 +1166 3 477.6303 305.8884 43.5868 0.2501 1165 +1167 3 478.748 305.6459 43.4386 0.2497 1166 +1168 3 479.8462 305.3359 43.2169 0.2492 1167 +1169 3 480.9079 304.9424 42.9108 0.2488 1168 +1170 3 481.9661 304.5843 42.5104 0.2483 1169 +1171 3 483.038 304.3898 42.0109 0.2479 1170 +1172 3 484.1145 304.3623 41.4383 0.2474 1171 +1173 3 485.2219 304.4573 40.8722 0.247 1172 +1174 3 486.3419 304.6632 40.395 0.2465 1173 +1175 3 487.463 304.8874 40.0235 0.2461 1174 +1176 3 488.6024 304.9172 39.7174 0.2456 1175 +1177 3 489.7109 304.6861 39.4366 0.2451 1176 +1178 3 490.7954 304.3452 39.1712 0.2447 1177 +1179 3 491.8903 304.0191 38.9228 0.2442 1178 +1180 3 493.0079 303.7812 38.6848 0.2438 1179 +1181 3 494.1405 303.6588 38.4317 0.2433 1180 +1182 3 495.2593 303.5387 38.1368 0.2429 1181 +1183 3 496.3233 303.1817 37.8112 0.2424 1182 +1184 3 497.3265 302.6452 37.499 0.242 1183 +1185 3 498.3653 302.1704 37.2168 0.2415 1184 +1186 3 499.4338 301.7632 36.9597 0.2411 1185 +1187 3 500.5332 301.4497 36.7324 0.2406 1186 +1188 3 501.6715 301.4497 36.5112 0.2401 1187 +1189 3 502.7297 301.7689 36.2208 0.2397 1188 +1190 3 503.789 301.6694 35.8352 0.2392 1189 +1191 3 504.7648 301.0848 35.5043 0.2388 1190 +1192 3 505.8791 300.8949 35.313 0.2383 1191 +1193 3 507.0048 301.0047 35.2296 0.2379 1192 +1194 3 508.1488 300.9956 35.1702 0.2374 1193 +1195 3 509.2688 301.0299 35.0342 0.237 1194 +1196 3 510.399 300.9452 34.8463 0.2365 1195 +1197 3 511.4412 300.4727 34.6312 0.2361 1196 +1198 3 512.3759 299.8184 34.4075 0.2356 1197 +1199 3 513.4226 299.3722 34.1779 0.2352 1198 +1200 3 514.5586 299.2578 33.8548 0.2347 1199 +1201 3 515.6649 299.0553 33.3928 0.2342 1200 +1202 3 516.7128 298.7339 32.7561 0.2338 1201 +1203 3 517.6451 298.5074 31.8668 0.2333 1202 +1204 3 518.5008 298.346 30.7535 0.2329 1203 +1205 3 519.4492 298.5257 29.549 0.2324 1204 +1206 3 520.4891 298.8311 28.4068 0.232 1205 +1207 3 521.5507 299.0599 27.333 0.2315 1206 +1208 3 522.625 299.0691 26.342 0.2311 1207 +1209 3 523.6832 298.9375 25.4409 0.2306 1208 +1210 3 524.7436 299.1949 24.6503 0.2302 1209 +1211 3 525.6714 298.5737 23.9841 0.2297 1210 +1212 3 526.6976 298.2408 22.68 0.2293 1211 +1213 3 462.8052 315.1514 45.1094 0.381 1150 +1214 3 463.7124 315.8435 44.805 0.381 1213 +1215 3 464.7077 316.4075 44.5852 0.381 1214 +1216 3 465.7682 316.8354 44.4391 0.381 1215 +1217 3 466.8275 317.2667 44.3246 0.381 1216 +1218 3 467.7175 317.9725 44.175 0.381 1217 +1219 3 468.2232 318.9724 43.9715 0.381 1218 +1220 3 468.4634 320.0786 43.7489 0.381 1219 +1221 3 468.6899 321.1974 43.5593 0.381 1220 +1222 3 469.0903 322.2694 43.43 0.381 1221 +1223 3 469.7275 323.2189 43.3672 0.381 1222 +1224 3 470.5867 323.9739 43.3695 0.381 1223 +1225 3 471.6037 324.499 43.43 0.381 1224 +1226 3 472.7088 324.7885 43.5498 0.381 1225 +1227 3 472.6825 324.6809 42.5914 0.3089 1226 +1228 3 472.6573 324.5928 39.4576 0.2982 1227 +1229 3 473.092 324.7782 38.0817 0.2929 1228 +1230 3 473.9157 325.0584 36.5632 0.2875 1229 +1231 3 474.9636 325.2381 35.1243 0.2822 1230 +1232 3 476.063 325.365 33.7635 0.2768 1231 +1233 3 476.46 325.3765 32.249 0.2715 1232 +1234 3 476.6339 325.2678 30.5796 0.2662 1233 +1235 3 477.4495 325.2381 28.9162 0.2608 1234 +1236 3 478.2984 325.611 27.2976 0.2555 1235 +1237 3 479.2136 326.032 25.7859 0.2502 1236 +1238 3 480.2592 326.2219 24.4637 0.2448 1237 +1239 3 480.8712 326.8088 23.2301 0.2395 1238 +1240 3 481.751 326.8408 20.7564 0.2341 1239 +1241 3 473.6698 324.8388 43.7284 0.381 1226 +1242 3 474.8023 324.7999 43.9659 0.381 1241 +1243 3 475.9349 324.7908 44.2481 0.381 1242 +1244 3 477.0594 324.9498 44.5477 0.381 1243 +1245 3 478.1348 325.3342 44.833 0.381 1244 +1246 3 479.1198 325.9142 45.1004 0.381 1245 +1247 3 479.9846 326.6555 45.3796 0.381 1246 +1248 3 480.5978 327.6038 45.698 0.381 1247 +1249 3 480.8964 328.6872 46.0611 0.381 1248 +1250 3 481.5817 329.5875 46.4453 0.381 1249 +1251 3 482.6879 329.6905 46.8762 0.381 1250 +1252 3 483.8159 329.7042 47.3183 0.381 1251 +1253 3 484.9508 329.8415 47.7134 0.381 1252 +1254 3 486.0719 329.996 48.1116 0.381 1253 +1255 3 487.1793 330.155 48.5372 0.381 1254 +1256 3 488.2878 330.3655 48.9664 0.381 1255 +1257 3 489.362 330.7235 49.3828 0.381 1256 +1258 3 490.4156 331.1182 49.7972 0.381 1257 +1259 3 491.5116 331.172 50.2309 0.381 1258 +1260 3 492.5366 330.7796 50.6464 0.381 1259 +1261 3 493.6143 330.5108 51.0026 0.381 1260 +1262 3 494.6942 330.8791 51.2142 0.381 1261 +1263 3 495.2742 331.8241 51.1806 0.381 1262 +1264 3 496.1574 332.3892 50.8978 0.381 1263 +1265 3 496.8804 333.2255 50.5014 0.381 1264 +1266 3 497.5142 334.1727 50.1203 0.381 1265 +1267 3 498.2932 335.0101 49.8198 0.381 1266 +1268 3 499.2736 335.6016 49.6194 0.381 1267 +1269 3 500.3467 335.9333 49.4427 0.381 1268 +1270 3 501.4106 336.3371 49.3217 0.381 1269 +1271 3 502.4345 336.8462 49.28 0.381 1270 +1272 3 503.4469 337.3221 49.3797 0.381 1271 +1273 3 504.4846 337.7557 49.572 0.381 1272 +1274 3 505.5931 338.0383 49.7532 0.381 1273 +1275 3 506.6398 338.4799 49.9618 0.381 1274 +1276 3 507.5939 339.069 50.1939 0.381 1275 +1277 3 508.4588 339.808 50.3779 0.381 1276 +1278 3 509.3099 340.5699 50.4703 0.381 1277 +1279 3 510.1096 341.3696 50.4143 0.381 1278 +1280 3 511.2124 340.8891 50.0438 0.381 1279 +1281 3 512.2592 340.5322 49.7143 0.3805 1280 +1282 3 513.3769 340.6191 49.4052 0.3803 1281 +1283 3 514.4408 341.0264 49.2027 0.38 1282 +1284 3 515.5173 341.4005 49.1414 0.3798 1283 +1285 3 516.619 341.6705 49.2002 0.3796 1284 +1286 3 517.7183 341.9736 49.3424 0.3794 1285 +1287 3 518.7594 342.4427 49.5124 0.3791 1286 +1288 3 519.71 343.0776 49.6796 0.3789 1287 +1289 3 520.6001 343.796 49.8369 0.3787 1288 +1290 3 521.4913 344.511 50.0035 0.3784 1289 +1291 3 522.419 345.1631 50.2163 0.3782 1290 +1292 3 523.4155 345.6802 50.4944 0.378 1291 +1293 3 524.5194 345.9056 50.8077 0.3777 1292 +1294 3 525.6405 345.7168 51.1081 0.3775 1293 +1295 3 526.645 345.1745 51.3747 0.3773 1294 +1296 3 527.4904 344.4058 51.6174 0.3771 1295 +1297 3 528.3415 343.6542 51.8787 0.3768 1296 +1298 3 529.3585 343.2172 52.2015 0.3766 1297 +1299 3 530.4579 343.1989 52.5767 0.3764 1298 +1300 3 531.5493 343.446 52.9494 0.3761 1299 +1301 3 532.627 343.8086 53.2574 0.3759 1300 +1302 3 533.684 344.2445 53.4598 0.3757 1301 +1303 3 534.6301 344.8863 53.5475 0.3755 1302 +1304 3 535.2753 345.8278 53.5223 0.3752 1303 +1305 3 536.0818 346.6126 53.3565 0.375 1304 +1306 3 537.1915 346.5759 53.0838 0.3748 1305 +1307 3 538.3195 346.6881 52.7853 0.3745 1306 +1308 3 539.1786 347.4305 52.488 0.3743 1307 +1309 3 539.6088 348.4887 52.2393 0.3741 1308 +1310 3 539.8811 349.5995 52.0475 0.3739 1309 +1311 3 540.4428 350.5971 51.9053 0.3736 1310 +1312 3 541.4449 351.1474 51.7958 0.3734 1311 +1313 3 542.4802 350.7939 51.5858 0.3732 1312 +1314 3 543.4721 350.2367 51.3797 0.3729 1313 +1315 3 544.4879 349.7105 51.221 0.3727 1314 +1316 3 545.6159 349.5195 51.1076 0.3725 1315 +1317 3 546.7485 349.683 51.0367 0.3723 1316 +1318 3 547.841 350.0228 51.0065 0.372 1317 +1319 3 548.8409 350.5788 51.0132 0.3718 1318 +1320 3 549.7217 351.3075 51.0317 0.3716 1319 +1321 3 550.4619 352.1804 51.0502 0.3713 1320 +1322 3 551.225 353.0247 51.1039 0.3711 1321 +1323 3 552.0326 353.8243 51.184 0.3709 1322 +1324 3 553.0096 354.4112 51.2604 0.3707 1323 +1325 3 552.9844 354.497 51.8017 0.2986 1324 +1326 3 552.6653 355.5964 52.2766 0.2954 1325 +1327 3 552.2912 356.674 52.467 0.2938 1326 +1328 3 552.0303 357.7711 52.7551 0.2922 1327 +1329 3 551.9994 358.8831 53.1434 0.2905 1328 +1330 3 552.3941 359.9333 53.5858 0.2889 1329 +1331 3 553.3265 360.5648 54.0456 0.2873 1330 +1332 3 554.411 360.8107 54.539 0.2857 1331 +1333 3 555.5001 361.0247 55.041 0.2841 1332 +1334 3 556.5766 361.3633 55.4991 0.2825 1333 +1335 3 557.4769 362.0451 55.9084 0.2809 1334 +1336 3 558.0215 363.0473 56.2486 0.2793 1335 +1337 3 558.2914 364.1581 56.511 0.2777 1336 +1338 3 558.4779 365.2872 56.7148 0.2761 1337 +1339 3 558.7445 366.3992 56.8929 0.2745 1338 +1340 3 559.2547 367.4116 57.0214 0.2728 1339 +1341 3 559.6093 368.4961 57.2208 0.2712 1340 +1342 3 559.4846 369.5326 57.629 0.2696 1341 +1343 3 559.5098 370.6503 58.1182 0.268 1342 +1344 3 559.3988 371.7462 58.6894 0.2664 1343 +1345 3 558.9492 372.7507 59.3118 0.2648 1344 +1346 3 558.248 373.6315 59.9189 0.2632 1345 +1347 3 557.4506 374.4518 60.4321 0.2616 1346 +1348 3 556.508 375.0192 60.9666 0.26 1347 +1349 3 555.5642 375.621 61.5017 0.2584 1348 +1350 3 554.6753 376.3417 61.9637 0.2568 1349 +1351 3 553.9774 377.139 62.5209 0.2551 1350 +1352 3 553.7486 378.203 63.1224 0.2535 1351 +1353 3 554.0026 379.3184 63.6345 0.2519 1352 +1354 3 554.0381 380.3983 64.1987 0.2503 1353 +1355 3 553.5244 381.4176 64.706 0.2487 1354 +1356 3 553.0096 382.4392 65.1518 0.2471 1355 +1357 3 552.9009 382.7355 64.8782 0.2471 1356 +1358 3 552.5062 383.78 65.1221 0.2425 1357 +1359 3 551.8553 384.7203 65.2028 0.2402 1358 +1360 3 550.8177 385.202 65.2506 0.238 1359 +1361 3 549.7561 385.6264 65.2697 0.2357 1360 +1362 3 548.6899 386.0371 65.2403 0.2334 1361 +1363 3 547.6328 386.4432 64.96 0.2311 1362 +1364 3 553.672 382.406 65.574 0.2471 1356 +1365 3 554.7611 382.4781 66.0764 0.2452 1364 +1366 3 555.6534 382.9563 66.7461 0.2442 1365 +1367 3 556.3604 383.7845 67.5058 0.2432 1366 +1368 3 556.9541 384.7386 68.3021 0.2423 1367 +1369 3 557.3854 385.7614 69.1802 0.2413 1368 +1370 3 557.9849 386.5267 70.2134 0.2404 1369 +1371 3 558.8268 386.8116 71.433 0.2394 1370 +1372 3 559.6757 386.7567 72.8106 0.2384 1371 +1373 3 560.4445 386.3837 74.2854 0.2375 1372 +1374 3 560.8197 385.6149 75.7798 0.2365 1373 +1375 3 561.021 384.7878 77.2428 0.2355 1374 +1376 3 561.5587 384.1861 78.6848 0.2346 1375 +1377 3 562.308 383.6827 80.01 0.2336 1376 +1378 3 563.3948 383.5111 81.0046 0.2327 1377 +1379 3 564.4988 383.2206 81.6911 0.2317 1378 +1380 3 565.6108 382.9975 82.185 0.2307 1379 +1381 3 566.6587 382.6874 83.0253 0.2298 1380 +1382 3 553.9557 354.8848 51.2366 0.3707 1324 +1383 3 554.9544 355.4259 51.1342 0.3684 1382 +1384 3 555.9382 356.0025 50.9936 0.3673 1383 +1385 3 556.9003 356.6203 50.846 0.3662 1384 +1386 3 557.7766 357.3456 50.6836 0.3651 1385 +1387 3 558.5797 358.1464 50.4879 0.364 1386 +1388 3 559.4732 358.8236 50.2765 0.3629 1387 +1389 3 560.544 359.1451 50.0786 0.3618 1388 +1390 3 561.6788 359.1016 49.9117 0.3606 1389 +1391 3 562.8045 358.8968 49.7714 0.3595 1390 +1392 3 563.9348 358.8316 49.649 0.3584 1391 +1393 3 564.9552 359.2366 49.5334 0.3573 1392 +1394 3 565.6268 360.1232 49.4068 0.3562 1393 +1395 3 566.1061 361.1539 49.2299 0.3551 1394 +1396 3 566.8634 361.8735 48.9482 0.354 1395 +1397 3 567.9125 362.1996 48.592 0.3528 1396 +1398 3 568.8117 362.8219 48.2546 0.3517 1397 +1399 3 569.3402 363.816 47.9724 0.3506 1398 +1400 3 569.7406 364.888 47.7383 0.3495 1399 +1401 3 570.3 365.8787 47.5342 0.3484 1400 +1402 3 571.1569 366.6074 47.3413 0.3473 1401 +1403 3 572.2334 366.906 47.1262 0.3462 1402 +1404 3 573.3442 366.8671 46.8518 0.3451 1403 +1405 3 574.4424 366.7778 46.5228 0.3439 1404 +1406 3 575.5487 366.8293 46.1891 0.3428 1405 +1407 3 576.6504 367.0913 45.9365 0.3417 1406 +1408 3 577.6914 367.5329 45.8514 0.3406 1407 +1409 3 578.6627 368.0786 45.9452 0.3395 1408 +1410 3 579.5618 368.7249 46.1742 0.3384 1409 +1411 3 580.3649 369.4834 46.4758 0.3373 1410 +1412 3 581.1291 370.3071 46.7589 0.3362 1411 +1413 3 581.9551 371.093 46.9109 0.335 1412 +1414 3 582.86 371.752 46.8572 0.3339 1413 +1415 3 583.8038 372.3171 46.611 0.3328 1414 +1416 3 584.7648 372.8582 46.2356 0.3317 1415 +1417 3 585.7097 373.4657 45.8217 0.3306 1416 +1418 3 586.6466 374.1143 45.4594 0.3295 1417 +1419 3 587.714 374.5067 45.183 0.3284 1418 +1420 3 588.85 374.5364 44.9842 0.3272 1419 +1421 3 589.9917 374.6062 44.8353 0.3261 1420 +1422 3 591.0613 374.994 44.6984 0.325 1421 +1423 3 592.0841 375.4986 44.5278 0.3239 1422 +1424 3 593.1434 375.9127 44.2994 0.3228 1423 +1425 3 594.1844 376.3749 44.0238 0.3217 1424 +1426 3 594.9795 377.1699 43.6951 0.3206 1425 +1427 3 595.2358 378.2304 43.2804 0.3195 1426 +1428 3 595.698 379.2177 42.7966 0.3183 1427 +1429 3 596.7012 379.7039 42.3329 0.3172 1428 +1430 3 597.7732 380.0803 41.9196 0.3161 1429 +1431 3 598.7479 380.6683 41.5587 0.315 1430 +1432 3 599.5876 381.4405 41.2597 0.3139 1431 +1433 3 600.3552 382.2882 41.0206 0.3128 1432 +1434 3 601.1594 383.1027 40.8195 0.3117 1433 +1435 3 602.0655 383.7994 40.6238 0.3106 1434 +1436 3 603.039 384.3428 40.3438 0.3094 1435 +1437 3 603.9828 384.8336 39.9445 0.3083 1436 +1438 3 604.8374 385.5474 39.5268 0.3072 1437 +1439 3 605.4471 386.5107 39.1801 0.3061 1438 +1440 3 606.0603 387.4774 38.9267 0.305 1439 +1441 3 607.1563 387.7794 38.7624 0.3039 1440 +1442 3 608.1046 387.1445 38.6775 0.3028 1441 +1443 3 609.1217 386.6217 38.6478 0.3016 1442 +1444 3 610.2554 386.4661 38.6422 0.3005 1443 +1445 3 611.3994 386.4443 38.642 0.2994 1444 +1446 3 612.5388 386.5393 38.6428 0.2983 1445 +1447 3 613.4872 387.1788 38.6439 0.2972 1446 +1448 3 614.1141 388.1363 38.6456 0.2961 1447 +1449 3 614.4653 389.2243 38.6478 0.295 1448 +1450 3 615.4628 389.7837 38.6512 0.2938 1449 +1451 3 616.5657 390.0891 38.656 0.2927 1450 +1452 3 617.7039 390.2081 38.6613 0.2916 1451 +1453 3 618.8422 390.3156 38.6655 0.2905 1452 +1454 3 619.9622 390.5422 38.6845 0.2894 1453 +1455 3 621.0776 390.7904 38.7142 0.2883 1454 +1456 3 621.383 391.0958 39.482 0.2883 1455 +1457 3 621.5398 392.154 41.2846 0.2764 1456 +1458 3 621.0273 393.1688 41.9689 0.2704 1457 +1459 3 620.4964 394.148 42.8576 0.2645 1458 +1460 3 620.2436 395.0701 44.0138 0.2585 1459 +1461 3 620.644 395.3252 45.4787 0.2526 1460 +1462 3 621.2835 394.8779 47.0428 0.2466 1461 +1463 3 621.8555 394.8184 48.6587 0.2407 1462 +1464 3 622.5648 394.9088 52.08 0.2347 1463 +1465 3 621.518 390.6874 38.7246 0.2883 1455 +1466 3 622.646 390.4952 38.7072 0.2843 1465 +1467 3 623.7809 390.5959 38.6456 0.2823 1466 +1468 3 624.7281 391.224 38.5518 0.2804 1467 +1469 3 625.339 392.1872 38.4558 0.2784 1468 +1470 3 625.7932 393.2374 38.3701 0.2764 1469 +1471 3 626.1776 394.3151 38.2967 0.2744 1470 +1472 3 626.5127 395.4087 38.2315 0.2724 1471 +1473 3 627.1637 396.348 38.166 0.2704 1472 +1474 3 628.215 396.793 38.0831 0.2685 1473 +1475 3 629.2835 397.2014 37.9655 0.2665 1474 +1476 3 630.1781 397.9129 37.8134 0.2645 1475 +1477 3 630.6895 398.9334 37.6337 0.2625 1476 +1478 3 631.0258 400.0133 37.3321 0.2605 1477 +1479 3 631.4903 400.8553 36.7769 0.2585 1478 +1480 3 632.2408 401.449 36.0433 0.2566 1479 +1481 3 633.1102 402.1743 35.3648 0.2546 1480 +1482 3 633.8801 403.006 34.7544 0.2526 1481 +1483 3 634.6706 403.8171 34.214 0.2506 1482 +1484 3 635.6133 404.4646 33.7868 0.2486 1483 +1485 3 636.31 405.3718 33.4499 0.2466 1484 +1486 3 636.8042 406.4037 33.1422 0.2447 1485 +1487 3 637.2744 407.447 32.807 0.2427 1486 +1488 3 638.1152 408.1598 32.3131 0.2407 1487 +1489 3 638.9148 408.7855 31.626 0.2387 1488 +1490 3 639.7362 409.075 30.7362 0.2367 1489 +1491 3 640.3517 409.9638 29.8642 0.2347 1490 +1492 3 641.196 410.6525 29.0576 0.2328 1491 +1493 3 641.784 411.6112 27.72 0.2308 1492 +1494 3 510.8189 342.4553 48.8547 0.3192 1279 +1495 3 511.2204 343.4803 48.1838 0.3168 1494 +1496 3 511.273 344.5671 47.3665 0.3156 1495 +1497 3 511.0328 345.5944 46.3918 0.3144 1496 +1498 3 510.685 346.5405 45.2634 0.3132 1497 +1499 3 510.2755 347.3562 43.9866 0.312 1498 +1500 3 509.8556 348.0254 42.5883 0.3108 1499 +1501 3 509.5731 348.7404 41.1275 0.3097 1500 +1502 3 509.4438 349.6464 39.7289 0.3085 1501 +1503 3 509.2996 350.6989 38.5204 0.3073 1502 +1504 3 509.0434 351.7972 37.5715 0.3061 1503 +1505 3 508.7494 352.9 36.8813 0.3049 1504 +1506 3 508.6602 354.0383 36.3952 0.3037 1505 +1507 3 508.9278 355.1342 36.0049 0.3025 1506 +1508 3 509.1841 356.1695 35.5754 0.3013 1507 +1509 3 509.08 357.2026 35.0871 0.3002 1508 +1510 3 508.9942 358.3157 34.6458 0.299 1509 +1511 3 509.1418 359.4448 34.3672 0.2978 1510 +1512 3 509.2322 360.5705 34.2728 0.2966 1511 +1513 3 509.0663 361.6962 34.3034 0.2954 1512 +1514 3 508.7425 362.7921 34.4042 0.2942 1513 +1515 3 508.5583 363.9213 34.5377 0.293 1514 +1516 3 508.7414 365.047 34.678 0.2918 1515 +1517 3 509.2001 366.0926 34.8244 0.2906 1516 +1518 3 509.6509 367.1393 35.0011 0.2894 1517 +1519 3 509.9437 368.2353 35.2234 0.2883 1518 +1520 3 510.1554 369.3496 35.4844 0.2871 1519 +1521 3 510.3304 370.4718 35.7666 0.2859 1520 +1522 3 510.4574 371.6032 36.0545 0.2847 1521 +1523 3 510.4539 372.7438 36.3252 0.2835 1522 +1524 3 510.272 373.8718 36.5658 0.2823 1523 +1525 3 509.7756 374.8968 36.8018 0.2811 1524 +1526 3 508.929 375.6404 37.0664 0.2799 1525 +1527 3 507.8594 375.9539 37.368 0.2787 1526 +1528 3 506.7359 376.058 37.6659 0.2776 1527 +1529 3 505.6949 376.5247 37.9072 0.2764 1528 +1530 3 504.9044 377.3507 38.0702 0.2752 1529 +1531 3 504.1963 378.2487 38.1592 0.274 1530 +1532 3 503.4858 379.1456 38.1833 0.2728 1531 +1533 3 502.6153 379.8835 38.1413 0.2716 1532 +1534 3 501.5296 380.2256 38.0464 0.2704 1533 +1535 3 500.3982 380.3892 37.9487 0.2692 1534 +1536 3 499.3148 380.7564 37.8689 0.268 1535 +1537 3 498.4522 381.508 37.8064 0.2668 1536 +1538 3 497.8162 382.4575 37.758 0.2657 1537 +1539 3 497.251 383.4528 37.7202 0.2645 1538 +1540 3 496.647 384.424 37.6883 0.2633 1539 +1541 3 495.9812 385.3541 37.6452 0.2621 1540 +1542 3 495.2834 386.251 37.5626 0.2609 1541 +1543 3 494.4791 387.053 37.4562 0.2597 1542 +1544 3 493.5502 387.7188 37.3822 0.2585 1543 +1545 3 492.619 388.3834 37.3573 0.2573 1544 +1546 3 491.8205 389.2002 37.3993 0.2562 1545 +1547 3 491.3102 390.2104 37.5343 0.255 1546 +1548 3 490.943 391.2709 37.7474 0.2538 1547 +1549 3 490.4214 392.2662 37.9924 0.2526 1548 +1550 3 489.6274 393.0727 38.2133 0.2514 1549 +1551 3 488.6459 393.655 38.3541 0.2502 1550 +1552 3 487.7089 394.3071 38.3569 0.249 1551 +1553 3 487.1587 395.276 38.178 0.2478 1552 +1554 3 486.7297 396.3045 37.8666 0.2466 1553 +1555 3 485.9906 397.1602 37.5001 0.2454 1554 +1556 3 485.1956 397.937 37.0804 0.2443 1555 +1557 3 484.4851 398.8293 36.7119 0.2431 1556 +1558 3 484.0035 399.8669 36.437 0.2419 1557 +1559 3 483.3617 400.8038 36.204 0.2407 1558 +1560 3 482.3905 401.3118 35.9486 0.2395 1559 +1561 3 481.4844 401.9799 35.7409 0.2383 1560 +1562 3 480.8873 402.9546 35.6591 0.2371 1561 +1563 3 480.2295 403.8903 35.7286 0.2359 1562 +1564 3 479.1438 404.1798 35.975 0.2347 1563 +1565 3 478.0616 404.2713 36.407 0.2336 1564 +1566 3 476.9816 404.4829 36.9424 0.2324 1565 +1567 3 475.9029 404.722 37.5116 0.2312 1566 +1568 3 474.9888 405.2048 38.92 0.23 1567 +1569 3 427.5528 297.1792 51.8199 0.4839 1110 +1570 3 428.4646 296.5488 52.8254 0.4616 1569 +1571 3 429.1819 295.6634 53.2232 0.4505 1570 +1572 3 429.9038 294.7825 53.6928 0.4393 1571 +1573 3 430.7126 293.984 54.2517 0.4281 1572 +1574 3 431.8211 293.9611 54.9548 0.417 1573 +1575 3 432.8736 294.2848 55.7998 0.4058 1574 +1576 3 433.9249 294.5743 56.7717 0.3947 1575 +1577 3 434.6514 294.763 58.0325 0.3835 1576 +1578 3 435.1433 295.1188 59.5272 0.3724 1577 +1579 3 435.5826 295.7526 61.115 0.3612 1578 +1580 3 436.2072 296.0672 62.748 0.3501 1579 +1581 3 436.2289 296.1187 64.4084 0.3295 1580 +1582 3 436.6625 297.1757 65.2758 0.3192 1581 +1583 3 437.5148 297.8759 65.6782 0.314 1582 +1584 3 438.6188 298.0795 66.1777 0.3089 1583 +1585 3 439.7078 298.3552 66.7537 0.3037 1584 +1586 3 440.7603 298.7419 67.3971 0.2986 1585 +1587 3 441.8059 298.7888 68.1775 0.2934 1586 +1588 3 442.8779 298.6664 69.0284 0.2883 1587 +1589 3 443.9921 298.7911 69.8771 0.2831 1588 +1590 3 444.7186 299.6422 70.7364 0.278 1589 +1591 3 445.4015 300.4785 71.6573 0.2728 1590 +1592 3 445.977 301.1374 72.7437 0.2677 1591 +1593 3 446.7995 301.5916 73.9071 0.2625 1592 +1594 3 447.5328 302.1304 75.1321 0.2574 1593 +1595 3 447.9904 302.2826 76.1984 0.26 1594 +1596 3 449.0028 302.7573 77.1638 0.2625 1595 +1597 3 449.9707 303.3545 78.006 0.2651 1596 +1598 3 450.8046 304.0763 78.8245 0.2677 1597 +1599 3 451.5208 304.8577 79.6975 0.2703 1598 +1600 3 452.3044 305.3473 80.7212 0.2728 1599 +1601 3 453.294 305.6608 81.8104 0.2754 1600 +1602 3 454.2824 306.02 82.9256 0.278 1601 +1603 3 454.4231 306.1252 83.9336 0.278 1602 +1604 3 455.1782 306.6904 85.0326 0.2769 1603 +1605 3 456.0842 307.1732 86.1322 0.2763 1604 +1606 3 456.8781 307.7211 87.2567 0.2757 1605 +1607 3 457.7247 308.2954 88.3588 0.2752 1606 +1608 3 458.6891 308.7496 89.3942 0.2746 1607 +1609 3 459.7976 308.8365 90.3134 0.274 1608 +1610 3 460.9199 308.8056 91.0983 0.2735 1609 +1611 3 462.0399 308.7862 91.7896 0.2729 1610 +1612 3 463.1404 308.8628 92.4378 0.2724 1611 +1613 3 464.2329 308.9647 93.0686 0.2718 1612 +1614 3 465.3552 308.9406 93.6561 0.2712 1613 +1615 3 466.4797 308.8789 94.2029 0.2707 1614 +1616 3 467.6066 308.8148 94.7156 0.2701 1615 +1617 3 468.7346 308.7473 95.1919 0.2695 1616 +1618 3 469.866 308.6752 95.6306 0.269 1617 +1619 3 470.9985 308.602 96.0481 0.2684 1618 +1620 3 472.1299 308.5059 96.4594 0.2678 1619 +1621 3 473.2602 308.3572 96.8674 0.2673 1620 +1622 3 474.3882 308.197 97.2796 0.2667 1621 +1623 3 475.5173 308.0357 97.7024 0.2661 1622 +1624 3 476.5057 307.9705 98.3038 0.2656 1623 +1625 3 477.5045 308.0929 99.0153 0.265 1624 +1626 3 478.5913 308.3515 99.68 0.2644 1625 +1627 3 479.6826 308.6249 100.2705 0.2639 1626 +1628 3 480.7729 308.9246 100.7692 0.2633 1627 +1629 3 481.8356 309.3468 101.1276 0.2628 1628 +1630 3 482.8916 309.786 101.3558 0.2622 1629 +1631 3 483.9475 310.2231 101.5008 0.2616 1630 +1632 3 485.0045 310.6624 101.603 0.2611 1631 +1633 3 486.0719 311.0742 101.677 0.2605 1632 +1634 3 487.1438 311.4734 101.738 0.2599 1633 +1635 3 488.2146 311.8738 101.8024 0.2594 1634 +1636 3 489.2877 312.272 101.8777 0.2588 1635 +1637 3 490.363 312.6621 101.9754 0.2582 1636 +1638 3 491.4555 312.9995 102.1188 0.2577 1637 +1639 3 492.5492 313.3302 102.3151 0.2571 1638 +1640 3 493.6429 313.6608 102.5654 0.2566 1639 +1641 3 494.7377 313.9914 102.8684 0.256 1640 +1642 3 495.7238 314.4799 103.3108 0.2554 1641 +1643 3 496.5978 315.0496 103.913 0.2549 1642 +1644 3 497.5393 315.5495 104.6041 0.2543 1643 +1645 3 498.6353 315.8012 105.2736 0.2537 1644 +1646 3 499.737 316.038 105.9044 0.2532 1645 +1647 3 500.8443 316.2222 106.4941 0.2526 1646 +1648 3 501.9563 316.3137 107.0437 0.252 1647 +1649 3 503.0683 316.3995 107.5547 0.2515 1648 +1650 3 504.1791 316.4853 108.038 0.2509 1649 +1651 3 505.3048 316.5963 108.4723 0.2504 1650 +1652 3 506.4374 316.7564 108.8074 0.2498 1651 +1653 3 507.5699 316.9177 109.0678 0.2492 1652 +1654 3 508.7025 317.079 109.282 0.2487 1653 +1655 3 509.835 317.2438 109.4859 0.2481 1654 +1656 3 510.9493 317.4291 109.7589 0.2475 1655 +1657 3 512.0624 317.6156 110.1075 0.247 1656 +1658 3 513.1767 317.7998 110.5275 0.2464 1657 +1659 3 514.2898 317.9862 111.0049 0.2458 1658 +1660 3 515.4063 318.0686 111.5447 0.2453 1659 +1661 3 516.5206 318.1212 112.1352 0.2447 1660 +1662 3 517.6348 318.1578 112.763 0.2441 1661 +1663 3 518.7491 318.1819 113.4269 0.2436 1662 +1664 3 519.8622 318.2059 114.1258 0.243 1663 +1665 3 520.9753 318.2288 114.8571 0.2424 1664 +1666 3 522.0896 318.2528 115.6187 0.2419 1665 +1667 3 523.1329 318.4038 116.4722 0.2413 1666 +1668 3 524.1305 318.6109 117.4202 0.2408 1667 +1669 3 525.0548 319.0788 118.4184 0.2402 1668 +1670 3 525.8636 319.7686 119.42 0.2396 1669 +1671 3 526.6701 320.4607 120.4109 0.2391 1670 +1672 3 527.5728 321.0968 121.3416 0.2385 1671 +1673 3 528.5394 321.6768 122.1892 0.2379 1672 +1674 3 529.5061 322.2568 122.9931 0.2374 1673 +1675 3 530.4728 322.8368 123.797 0.2368 1674 +1676 3 530.697 322.9684 124.63 0.2368 1675 +1677 3 531.523 323.4534 125.6847 0.2359 1676 +1678 3 532.3478 323.9373 126.9344 0.2355 1677 +1679 3 533.1681 324.4167 128.3467 0.235 1678 +1680 3 533.938 324.8685 129.9052 0.2346 1679 +1681 3 534.5992 325.3284 131.5908 0.2341 1680 +1682 3 535.1518 325.8776 133.3478 0.2337 1681 +1683 3 535.7764 326.4061 135.0955 0.2333 1682 +1684 3 536.3816 326.9232 136.8114 0.2328 1683 +1685 3 536.6847 327.6393 138.4659 0.2324 1684 +1686 3 537.2132 328.4298 139.9656 0.2319 1685 +1687 3 537.7292 329.4091 141.2197 0.2315 1686 +1688 3 538.2863 330.4066 142.1952 0.231 1687 +1689 3 538.7691 331.426 143.0016 0.2306 1688 +1690 3 539.1466 332.3434 143.8116 0.2301 1689 +1691 3 539.4074 333.1465 144.6931 0.2297 1690 +1692 3 540.3398 333.7071 146.4165 0.2292 1691 +1693 3 531.1443 323.6113 122.92 0.2368 1675 +1694 3 531.8925 324.4762 123.0967 0.2358 1693 +1695 3 532.643 325.3399 123.1633 0.2353 1694 +1696 3 533.3923 326.2036 123.2448 0.2348 1695 +1697 3 533.8831 327.2183 123.4086 0.2343 1696 +1698 3 534.3521 328.2399 123.6329 0.2338 1697 +1699 3 534.7193 329.3118 123.8731 0.2333 1698 +1700 3 534.8017 330.4524 124.0574 0.2328 1699 +1701 3 534.8772 331.5941 124.1884 0.2323 1700 +1702 3 534.8738 332.7381 124.2704 0.2318 1701 +1703 3 534.6518 333.8604 124.3085 0.2313 1702 +1704 3 534.4276 334.9815 124.3197 0.2308 1703 +1705 3 534.2034 336.1038 124.32 0.2303 1704 +1706 3 533.7572 337.1574 124.32 0.2298 1705 +1707 3 533.2184 338.1664 124.32 0.2293 1706 +1708 3 455.1724 305.3222 83.16 0.2574 1602 +1709 3 456.1494 304.7284 82.829 0.2547 1708 +1710 3 457.1996 304.2731 82.7002 0.2533 1709 +1711 3 458.2704 303.8704 82.528 0.252 1710 +1712 3 459.3526 303.5375 82.2531 0.2506 1711 +1713 3 460.4314 303.2401 81.8642 0.2492 1712 +1714 3 461.493 302.8774 81.3856 0.2479 1713 +1715 3 462.5364 302.4564 80.8371 0.2465 1714 +1716 3 463.574 302.0183 80.2298 0.2451 1715 +1717 3 464.3553 301.206 79.571 0.2438 1716 +1718 3 464.9033 300.2165 78.8721 0.2424 1717 +1719 3 465.3243 299.2384 78.0416 0.2411 1718 +1720 3 466.1182 298.6389 77.051 0.2397 1719 +1721 3 466.5701 297.75 75.9452 0.2383 1720 +1722 3 466.8172 296.8119 74.7337 0.237 1721 +1723 3 467.3778 296.0226 73.4829 0.2356 1722 +1724 3 468.0218 295.2458 72.277 0.2342 1723 +1725 3 468.2861 294.2517 71.1726 0.2329 1724 +1726 3 468.4016 293.2003 70.2094 0.2315 1725 +1727 3 468.8112 292.1776 68.6 0.2302 1726 +1728 3 447.5134 302.159 76.16 0.2574 1594 +1729 3 446.8784 303.1108 76.3938 0.2562 1728 +1730 3 446.5021 304.1862 76.5022 0.2555 1729 +1731 3 446.2755 305.297 76.6646 0.2549 1730 +1732 3 445.9472 306.3907 76.8387 0.2543 1731 +1733 3 445.5228 307.4523 76.9958 0.2537 1732 +1734 3 445.0709 308.5036 77.1383 0.2531 1733 +1735 3 444.611 309.5515 77.2727 0.2524 1734 +1736 3 444.1511 310.5983 77.4049 0.2518 1735 +1737 3 443.8171 311.6794 77.6054 0.2512 1736 +1738 3 443.5299 312.7719 77.87 0.2506 1737 +1739 3 443.3801 313.8976 78.1698 0.2499 1738 +1740 3 443.2439 315.0256 78.4896 0.2493 1739 +1741 3 443.0392 316.141 78.8208 0.2487 1740 +1742 3 442.7921 317.2484 79.1532 0.2481 1741 +1743 3 442.5919 318.366 79.4696 0.2474 1742 +1744 3 442.4798 319.4998 79.7619 0.2468 1743 +1745 3 442.3699 320.6346 80.0352 0.2462 1744 +1746 3 442.2326 321.766 80.2911 0.2456 1745 +1747 3 442.0908 322.8974 80.5347 0.245 1746 +1748 3 441.6812 323.9636 80.7612 0.2443 1747 +1749 3 441.1607 324.9818 80.9757 0.2437 1748 +1750 3 440.6002 325.9771 81.1927 0.2431 1749 +1751 3 439.8783 326.8557 81.443 0.2425 1750 +1752 3 439.1416 327.7217 81.7256 0.2419 1751 +1753 3 438.3419 328.5225 82.0439 0.2412 1752 +1754 3 437.4793 329.2512 82.3992 0.2406 1753 +1755 3 436.5962 329.9513 82.7798 0.24 1754 +1756 3 435.6158 330.4947 83.181 0.2394 1755 +1757 3 434.815 331.3047 83.5439 0.2388 1756 +1758 3 434.1869 332.2622 83.8415 0.2381 1757 +1759 3 433.7728 333.325 84.1224 0.2375 1758 +1760 3 433.5199 334.4301 84.4152 0.2369 1759 +1761 3 433.1985 335.5169 84.723 0.2363 1760 +1762 3 432.7352 336.5522 85.0469 0.2356 1761 +1763 3 432.2901 337.5944 85.3882 0.235 1762 +1764 3 432.0007 338.6915 85.7391 0.2344 1763 +1765 3 431.7147 339.7897 86.0938 0.2338 1764 +1766 3 431.3132 340.8605 86.4181 0.2331 1765 +1767 3 430.8682 341.9141 86.7328 0.2325 1766 +1768 3 430.422 342.9678 87.04 0.2319 1767 +1769 3 429.9255 343.9425 87.4602 0.2313 1768 +1770 3 429.4256 344.9011 87.9701 0.2307 1769 +1771 3 428.9405 345.8655 88.5329 0.23 1770 +1772 3 428.5424 346.8608 89.88 0.2294 1771 +1773 3 436.3216 295.025 64.0721 0.3501 1580 +1774 3 437.1361 294.2574 65.189 0.3466 1773 +1775 3 438.1303 293.7563 66.159 0.3449 1774 +1776 3 439.1438 293.42 67.0891 0.3432 1775 +1777 3 440.0579 293.6945 68.0952 0.3415 1776 +1778 3 440.734 294.3981 69.1664 0.3398 1777 +1779 3 441.7659 294.6017 70.2512 0.3381 1778 +1780 3 442.7715 294.0812 71.2132 0.3363 1779 +1781 3 443.7484 294.2219 72.207 0.3346 1780 +1782 3 444.746 294.3466 73.1858 0.3329 1781 +1783 3 445.8076 294.1979 74.0816 0.3312 1782 +1784 3 446.732 293.5504 74.8331 0.3295 1783 +1785 3 447.1621 293.2633 75.4348 0.3295 1784 +1786 3 448.1048 292.6352 75.9506 0.2883 1785 +1787 3 448.6356 292.5883 76.4338 0.2883 1786 +1788 3 449.6915 292.4911 76.939 0.2872 1787 +1789 3 450.8195 292.4064 77.3648 0.2867 1788 +1790 3 451.9624 292.4075 77.6765 0.2862 1789 +1791 3 453.1029 292.5002 77.8834 0.2856 1790 +1792 3 454.2424 292.5917 77.9976 0.2851 1791 +1793 3 455.3864 292.6077 78.0368 0.2846 1792 +1794 3 456.5281 292.5402 78.0248 0.284 1793 +1795 3 457.6675 292.4384 77.989 0.2835 1794 +1796 3 458.8115 292.4053 77.9369 0.283 1795 +1797 3 459.9509 292.4979 77.8652 0.2824 1796 +1798 3 461.0846 292.6501 77.7633 0.2819 1797 +1799 3 462.2183 292.8022 77.6168 0.2814 1798 +1800 3 463.3417 293.0127 77.4152 0.2809 1799 +1801 3 464.4228 293.3754 77.1532 0.2803 1800 +1802 3 465.4799 293.7643 76.7936 0.2798 1801 +1803 3 466.5392 293.9691 76.3008 0.2793 1802 +1804 3 467.5986 294.1682 75.7162 0.2787 1803 +1805 3 468.6533 294.4748 75.1066 0.2782 1804 +1806 3 469.7516 294.7013 74.5315 0.2777 1805 +1807 3 470.8818 294.8294 74.0376 0.2771 1806 +1808 3 472.0201 294.9346 73.6448 0.2766 1807 +1809 3 473.1641 294.9415 73.3362 0.2761 1808 +1810 3 474.2772 294.6841 73.0688 0.2755 1809 +1811 3 475.3423 294.2894 72.7681 0.275 1810 +1812 3 476.4131 294.0515 72.3615 0.2745 1811 +1813 3 477.493 294.0835 71.8528 0.2739 1812 +1814 3 478.5718 294.3409 71.3076 0.2734 1813 +1815 3 479.6392 294.699 70.7787 0.2729 1814 +1816 3 480.7591 294.8912 70.3069 0.2724 1815 +1817 3 481.87 294.6303 69.9194 0.2718 1816 +1818 3 482.9499 294.2837 69.573 0.2713 1817 +1819 3 484.0573 294.1098 69.2275 0.2708 1818 +1820 3 485.1704 293.9268 68.8929 0.2702 1819 +1821 3 486.2526 293.5653 68.6014 0.2697 1820 +1822 3 487.3223 293.1614 68.367 0.2692 1821 +1823 3 488.44 292.9201 68.1761 0.2686 1822 +1824 3 489.5782 292.9601 67.9913 0.2681 1823 +1825 3 490.6868 293.2038 67.7986 0.2676 1824 +1826 3 491.7862 293.5138 67.6214 0.267 1825 +1827 3 492.8947 293.7952 67.4716 0.2665 1826 +1828 3 494.0192 294.0011 67.3369 0.266 1827 +1829 3 495.1541 294.0892 67.1874 0.2655 1828 +1830 3 496.2901 294.0538 67.0247 0.2649 1829 +1831 3 497.4295 293.9714 66.8836 0.2644 1830 +1832 3 498.5655 294.1018 66.7772 0.2639 1831 +1833 3 499.6351 294.5045 66.7022 0.2633 1832 +1834 3 500.6819 294.9667 66.6551 0.2628 1833 +1835 3 501.7836 295.2756 66.631 0.2623 1834 +1836 3 502.9253 295.3499 66.6201 0.2617 1835 +1837 3 504.0658 295.2687 66.6112 0.2612 1836 +1838 3 505.2087 295.2149 66.5997 0.2607 1837 +1839 3 506.3275 295.4517 66.5832 0.2601 1838 +1840 3 507.3674 295.9299 66.5608 0.2596 1839 +1841 3 508.3558 296.5054 66.5319 0.2591 1840 +1842 3 509.3511 297.0682 66.4882 0.2585 1841 +1843 3 510.3842 297.5544 66.4163 0.258 1842 +1844 3 511.4492 297.9617 66.3247 0.2575 1843 +1845 3 512.5555 298.2534 66.2379 0.257 1844 +1846 3 513.696 298.3449 66.1696 0.2564 1845 +1847 3 514.8378 298.4044 66.1217 0.2559 1846 +1848 3 515.8754 298.8872 66.0926 0.2554 1847 +1849 3 516.8798 299.4328 66.078 0.2548 1848 +1850 3 517.9208 299.9076 66.0719 0.2543 1849 +1851 3 518.915 300.4727 66.068 0.2538 1850 +1852 3 519.8919 301.0676 66.0629 0.2532 1851 +1853 3 520.9067 301.5984 66.0562 0.2527 1852 +1854 3 521.99 301.9634 66.0467 0.2522 1853 +1855 3 523.1203 302.143 66.0332 0.2516 1854 +1856 3 524.2597 302.2425 66.0148 0.2511 1855 +1857 3 525.4014 302.3066 65.9893 0.2506 1856 +1858 3 526.5454 302.294 65.9529 0.25 1857 +1859 3 527.6837 302.1796 65.9011 0.2495 1858 +1860 3 528.8277 302.1762 65.8297 0.249 1859 +1861 3 529.9443 302.4278 65.7359 0.2485 1860 +1862 3 530.9807 302.9095 65.6029 0.2479 1861 +1863 3 531.7278 303.7492 65.382 0.2474 1862 +1864 3 532.3066 304.7055 65.091 0.2469 1863 +1865 3 533.0125 305.5761 64.7702 0.2463 1864 +1866 3 533.8602 306.3163 64.4554 0.2458 1865 +1867 3 534.8051 306.9558 64.2146 0.2453 1866 +1868 3 535.726 307.6342 64.0811 0.2447 1867 +1869 3 536.6939 308.2405 64.073 0.2442 1868 +1870 3 537.791 308.5025 64.2032 0.2437 1869 +1871 3 538.9292 308.5929 64.3868 0.2431 1870 +1872 3 540.0652 308.5768 64.6139 0.2426 1871 +1873 3 541.1738 308.4361 64.8936 0.2421 1872 +1874 3 542.2926 308.2096 65.1375 0.2415 1873 +1875 3 543.408 307.9591 65.3117 0.241 1874 +1876 3 544.5223 307.6982 65.424 0.2405 1875 +1877 3 545.6422 307.4637 65.492 0.24 1876 +1878 3 546.784 307.3951 65.5256 0.2394 1877 +1879 3 547.928 307.3928 65.5371 0.2389 1878 +1880 3 549.072 307.3928 65.5444 0.2384 1879 +1881 3 550.216 307.3928 65.5539 0.2378 1880 +1882 3 551.3519 307.259 65.5676 0.2373 1881 +1883 3 552.4593 306.9707 65.5864 0.2368 1882 +1884 3 553.5793 306.7407 65.613 0.2362 1883 +1885 3 554.7199 306.6492 65.6499 0.2357 1884 +1886 3 555.8639 306.6046 65.7017 0.2352 1885 +1887 3 557.0067 306.592 65.774 0.2346 1886 +1888 3 558.1507 306.592 65.8734 0.2341 1887 +1889 3 559.2936 306.6469 66.0181 0.2336 1888 +1890 3 560.433 306.7339 66.2175 0.233 1889 +1891 3 561.5507 306.9581 66.4905 0.2325 1890 +1892 3 562.4911 307.5941 66.8696 0.232 1891 +1893 3 563.2209 308.443 67.3526 0.2315 1892 +1894 3 564.2471 308.6775 67.9745 0.2309 1893 +1895 3 565.3671 308.7519 68.5947 0.2304 1894 +1896 3 566.4001 308.8388 69.2796 0.2299 1895 +1897 3 567.424 308.6512 70.84 0.2293 1896 +1898 3 448.5464 291.6273 76.1877 0.2883 1786 +1899 3 448.9937 290.5771 76.4644 0.2861 1898 +1900 3 449.4296 289.5201 76.5733 0.285 1899 +1901 3 449.8254 288.447 76.6993 0.284 1900 +1902 3 450.1548 287.3522 76.8516 0.2829 1901 +1903 3 450.5106 286.2688 77.0465 0.2818 1902 +1904 3 450.9797 285.237 77.3004 0.2807 1903 +1905 3 451.5013 284.236 77.6087 0.2796 1904 +1906 3 451.9669 283.2052 77.9506 0.2786 1905 +1907 3 452.3731 282.147 78.3034 0.2775 1906 +1908 3 452.5447 281.035 78.6691 0.2764 1907 +1909 3 452.4875 279.9071 79.0252 0.2753 1908 +1910 3 452.4085 278.7688 79.3274 0.2742 1909 +1911 3 452.5332 277.6339 79.578 0.2731 1910 +1912 3 453.0263 276.6146 79.8134 0.2721 1911 +1913 3 453.6624 275.672 80.0327 0.271 1912 +1914 3 454.2504 274.6927 80.2102 0.2699 1913 +1915 3 454.8006 273.6894 80.3443 0.2688 1914 +1916 3 455.3395 272.6804 80.4597 0.2677 1915 +1917 3 455.8691 271.6691 80.5714 0.2667 1916 +1918 3 456.3954 270.6567 80.6806 0.2656 1917 +1919 3 456.9296 269.6465 80.7747 0.2645 1918 +1920 3 457.4707 268.6387 80.8466 0.2634 1919 +1921 3 458.0107 267.6296 80.8996 0.2623 1920 +1922 3 458.5221 266.6058 80.936 0.2612 1921 +1923 3 459.0071 265.5704 80.9614 0.2602 1922 +1924 3 459.4887 264.5328 80.9833 0.2591 1923 +1925 3 459.9921 263.5055 81.0088 0.258 1924 +1926 3 460.5149 262.4874 81.0446 0.2569 1925 +1927 3 461.0389 261.4704 81.0942 0.2558 1926 +1928 3 461.4267 260.395 81.163 0.2548 1927 +1929 3 461.5319 259.2579 81.2585 0.2537 1928 +1930 3 461.5971 258.1161 81.396 0.2526 1929 +1931 3 461.8179 256.9939 81.592 0.2515 1930 +1932 3 462.1062 255.8876 81.8524 0.2504 1931 +1933 3 462.3842 254.7814 82.1892 0.2493 1932 +1934 3 462.6576 253.7415 82.7025 0.2483 1933 +1935 3 462.923 252.8046 83.4198 0.2472 1934 +1936 3 463.1884 251.8722 84.278 0.2461 1935 +1937 3 462.5718 250.9478 85.0436 0.245 1936 +1938 3 461.9037 250.0235 85.7091 0.2439 1937 +1939 3 461.1784 249.1609 86.3187 0.2429 1938 +1940 3 460.3994 248.383 86.9109 0.2418 1939 +1941 3 459.6134 247.6211 87.4927 0.2407 1940 +1942 3 458.5427 247.3534 88.0572 0.2396 1941 +1943 3 457.4227 247.3808 88.5973 0.2385 1942 +1944 3 456.3027 247.4278 89.0994 0.2374 1943 +1945 3 455.1839 247.6211 89.5213 0.2364 1944 +1946 3 454.0765 247.8854 89.85 0.2353 1945 +1947 3 452.9691 248.1542 90.102 0.2342 1946 +1948 3 451.8628 248.4253 90.2955 0.2331 1947 +1949 3 450.72 248.4253 90.4254 0.232 1948 +1950 3 449.7899 247.7664 90.4565 0.231 1949 +1951 3 448.861 247.1063 90.3182 0.2299 1950 +1952 3 447.0958 293.7472 75.5252 0.3295 1784 +1953 3 448.0956 294.246 76.4179 0.3243 1952 +1954 3 449.1378 294.5903 76.8158 0.3218 1953 +1955 3 450.2063 294.874 77.2792 0.3192 1954 +1956 3 451.2943 295.1486 77.7526 0.3166 1955 +1957 3 452.3708 295.4998 78.1922 0.314 1956 +1958 3 453.4564 295.8384 78.573 0.3115 1957 +1959 3 454.6004 295.8681 78.8637 0.3089 1958 +1960 3 455.7147 295.6107 79.0821 0.3063 1959 +1961 3 456.8198 295.3167 79.2638 0.3037 1960 +1962 3 457.918 294.9941 79.4391 0.3012 1961 +1963 3 458.8447 294.3226 79.6289 0.2986 1962 +1964 3 459.8891 293.9336 79.9366 0.296 1963 +1965 3 460.9611 293.7472 80.3729 0.2934 1964 +1966 3 462.041 293.5596 80.8926 0.2909 1965 +1967 3 463.1621 293.4234 81.4187 0.2883 1966 +1968 3 464.3038 293.3491 81.8916 0.2857 1967 +1969 3 465.4204 293.595 82.3172 0.2831 1968 +1970 3 466.4854 294.0137 82.7126 0.2806 1969 +1971 3 467.5322 294.3604 83.214 0.278 1970 +1972 3 468.5195 294.6464 83.8858 0.2754 1971 +1973 3 469.5319 294.7356 84.7045 0.2728 1972 +1974 3 470.6279 294.5869 85.5453 0.2703 1973 +1975 3 471.7227 294.4725 86.389 0.2677 1974 +1976 3 472.8026 294.4656 87.2323 0.2651 1975 +1977 3 473.8437 294.5903 88.0692 0.2625 1976 +1978 3 474.919 294.6681 88.8577 0.26 1977 +1979 3 476.0401 294.6235 89.5476 0.2574 1978 +1980 3 477.1727 294.5949 90.1412 0.2548 1979 +1981 3 478.3156 294.6464 90.6002 0.2523 1980 +1982 3 479.4447 294.8031 90.9871 0.2497 1981 +1983 3 480.1368 295.4952 91.4995 0.2471 1982 +1984 3 480.5441 295.3682 91.9108 0.2471 1983 +1985 3 481.632 295.0273 92.274 0.2466 1984 +1986 3 482.7188 294.6875 92.6013 0.2463 1985 +1987 3 483.8342 294.4427 92.892 0.2461 1986 +1988 3 484.9748 294.3626 93.1319 0.2458 1987 +1989 3 486.1188 294.3409 93.3363 0.2455 1988 +1990 3 487.2536 294.2757 93.5855 0.2453 1989 +1991 3 488.3782 294.1807 93.8921 0.245 1990 +1992 3 489.5084 294.111 94.2376 0.2447 1991 +1993 3 490.6422 294.0618 94.6061 0.2445 1992 +1994 3 491.777 294.0503 94.9956 0.2442 1993 +1995 3 492.8935 294.1704 95.4198 0.244 1994 +1996 3 493.9941 294.3832 95.8642 0.2437 1995 +1997 3 495.0889 294.6544 96.3038 0.2434 1996 +1998 3 496.1814 294.9449 96.7305 0.2432 1997 +1999 3 497.2476 295.3373 97.1351 0.2429 1998 +2000 3 498.2784 295.819 97.5106 0.2427 1999 +2001 3 499.2988 296.3246 97.862 0.2424 2000 +2002 3 500.3295 296.8016 98.2069 0.2421 2001 +2003 3 501.3752 297.2387 98.5634 0.2419 2002 +2004 3 502.4254 297.6608 98.9369 0.2416 2003 +2005 3 503.4401 298.163 99.3261 0.2413 2004 +2006 3 504.4274 298.719 99.7279 0.2411 2005 +2007 3 505.4078 299.2864 100.1364 0.2408 2006 +2008 3 506.3882 299.847 100.5536 0.2406 2007 +2009 3 507.3674 300.3778 100.9996 0.2403 2008 +2010 3 508.3444 300.8903 101.47 0.24 2009 +2011 3 509.4507 301.1088 101.906 0.2398 2010 +2012 3 510.5855 301.1672 102.2792 0.2395 2011 +2013 3 511.7238 301.1386 102.5839 0.2393 2012 +2014 3 512.8106 300.7828 102.8006 0.239 2013 +2015 3 513.847 300.2989 102.935 0.2387 2014 +2016 3 514.8686 299.7841 103.01 0.2385 2015 +2017 3 515.8696 299.2304 103.0515 0.2382 2016 +2018 3 516.8638 298.6641 103.0756 0.238 2017 +2019 3 517.8053 298.0143 103.0935 0.2377 2018 +2020 3 518.4173 297.0476 103.115 0.2374 2019 +2021 3 518.8875 296.0043 103.145 0.2372 2020 +2022 3 519.5568 295.0765 103.1873 0.2369 2021 +2023 3 520.4914 294.4176 103.2461 0.2366 2022 +2024 3 521.4707 293.825 103.327 0.2364 2023 +2025 3 522.4522 293.2369 103.4351 0.2361 2024 +2026 3 523.4052 292.61 103.605 0.2359 2025 +2027 3 524.3513 291.974 103.843 0.2356 2026 +2028 3 525.2951 291.3356 104.146 0.2353 2027 +2029 3 526.2389 290.6973 104.5122 0.2351 2028 +2030 3 527.1712 290.0555 104.9644 0.2348 2029 +2031 3 528.0853 289.4148 105.5261 0.2346 2030 +2032 3 528.9936 288.7731 106.19 0.2343 2031 +2033 3 529.9031 288.1313 106.9474 0.234 2032 +2034 3 530.7874 287.4803 107.8056 0.2338 2033 +2035 3 531.5482 286.8065 108.8178 0.2335 2034 +2036 3 532.2757 286.1327 109.9543 0.2333 2035 +2037 3 533.1269 286.0606 111.2376 0.233 2036 +2038 3 534.0261 285.9073 112.5846 0.2327 2037 +2039 3 534.915 285.3365 113.8628 0.2325 2038 +2040 3 535.8805 284.864 115.0481 0.2322 2039 +2041 3 536.8849 284.475 116.1381 0.2319 2040 +2042 3 537.8928 284.0918 117.1484 0.2317 2041 +2043 3 538.9521 283.9568 118.1043 0.2314 2042 +2044 3 539.9749 284.268 119.028 0.2312 2043 +2045 3 540.993 284.594 119.9332 0.2309 2044 +2046 3 542.0798 284.6009 120.7993 0.2306 2045 +2047 3 543.1575 284.3572 121.6186 0.2304 2046 +2048 3 544.2363 284.1135 122.3832 0.2301 2047 +2049 3 545.3139 283.8699 123.0886 0.2298 2048 +2050 3 546.3916 283.6273 123.7323 0.2296 2049 +2051 3 547.4704 283.3837 124.3147 0.2293 2050 +2052 3 548.548 283.14 125.44 0.2291 2051 +2053 3 480.4125 295.9368 92.3227 0.2471 1983 +2054 3 481.0131 296.8955 93.0056 0.2465 2053 +2055 3 481.6412 297.8484 93.2837 0.2462 2054 +2056 3 482.2829 298.7956 93.5959 0.2459 2055 +2057 3 482.9362 299.7326 93.9596 0.2456 2056 +2058 3 483.6111 300.5494 94.5008 0.2453 2057 +2059 3 484.2952 301.3113 95.1944 0.245 2058 +2060 3 485.1738 301.8513 95.9736 0.2447 2059 +2061 3 486.1199 302.2917 96.7845 0.2444 2060 +2062 3 487.1507 302.6887 97.5257 0.2441 2061 +2063 3 488.242 303.0284 98.0885 0.2438 2062 +2064 3 489.3357 303.3636 98.4768 0.2435 2063 +2065 3 490.3928 303.8006 98.7473 0.2432 2064 +2066 3 491.3263 304.4504 98.9694 0.2429 2065 +2067 3 492.2392 305.1254 99.1726 0.2426 2066 +2068 3 493.1578 305.7946 99.3745 0.2423 2067 +2069 3 494.1439 306.3735 99.5478 0.242 2068 +2070 3 495.1449 306.9283 99.689 0.2417 2069 +2071 3 496.1482 307.4786 99.8071 0.2414 2070 +2072 3 497.1607 308.0094 99.9141 0.2411 2071 +2073 3 498.1834 308.5231 100.0255 0.2408 2072 +2074 3 499.2038 309.039 100.1543 0.2405 2073 +2075 3 500.1877 309.6202 100.3274 0.2402 2074 +2076 3 501.1132 310.0949 100.6824 0.2399 2075 +2077 3 501.9872 310.7996 101.0685 0.2396 2076 +2078 3 502.8555 311.5181 101.4544 0.2393 2077 +2079 3 503.8977 311.9825 101.7755 0.239 2078 +2080 3 504.9696 312.3818 102.0169 0.2387 2079 +2081 3 506.0415 312.7788 102.1784 0.2384 2080 +2082 3 507.1146 313.1746 102.2655 0.2381 2081 +2083 3 508.1865 313.5715 102.307 0.2378 2082 +2084 3 509.2619 313.9605 102.3098 0.2375 2083 +2085 3 510.3624 314.2637 102.2462 0.2372 2084 +2086 3 511.463 314.5622 102.1292 0.2369 2085 +2087 3 512.5761 314.8105 101.9696 0.2366 2086 +2088 3 513.7029 314.9764 101.7764 0.2363 2087 +2089 3 514.8309 315.1377 101.5644 0.236 2088 +2090 3 515.9589 315.299 101.3477 0.2357 2089 +2091 3 517.0857 315.4614 101.1396 0.2354 2090 +2092 3 518.2137 315.6227 100.9464 0.2351 2091 +2093 3 519.3417 315.784 100.7776 0.2348 2092 +2094 3 520.4697 315.9453 100.6452 0.2345 2093 +2095 3 521.5965 316.1078 100.5623 0.2342 2094 +2096 3 522.7245 316.2691 100.5444 0.2339 2095 +2097 3 523.8525 316.4304 100.6062 0.2336 2096 +2098 3 524.985 316.5551 100.8305 0.2333 2097 +2099 3 526.073 316.626 101.2906 0.233 2098 +2100 3 527.1598 316.697 101.9399 0.2327 2099 +2101 3 528.1654 316.8663 102.7911 0.2324 2100 +2102 3 529.1492 317.055 103.7915 0.2321 2101 +2103 3 530.1319 317.2449 104.8807 0.2318 2102 +2104 3 531.2164 317.0928 105.9262 0.2315 2103 +2105 3 532.3032 316.9132 106.9116 0.2312 2104 +2106 3 533.3889 316.7347 107.8462 0.2309 2105 +2107 3 534.4757 316.5551 108.7626 0.2306 2106 +2108 3 535.5384 316.4682 109.69 0.2303 2107 +2109 3 536.5635 316.475 110.6456 0.23 2108 +2110 3 537.5885 316.4819 111.6058 0.2297 2109 +2111 3 538.6124 316.4887 112.5368 0.2294 2110 +2112 3 539.6374 316.4956 114.4405 0.2291 2111 +2113 3 392.7649 277.9588 42.5838 0.4427 1070 +2114 3 393.5028 277.1226 43.2653 0.4398 2113 +2115 3 394.1675 276.2062 43.5448 0.4383 2114 +2116 3 394.7612 275.2453 43.8606 0.4368 2115 +2117 3 395.228 274.2317 44.2084 0.4354 2116 +2118 3 395.4545 273.138 44.5528 0.4339 2117 +2119 3 395.395 272.0089 44.8403 0.4324 2118 +2120 3 395.1204 270.9003 45.0374 0.431 2119 +2121 3 394.6914 269.8444 45.1528 0.4295 2120 +2122 3 394.0497 268.9121 45.1993 0.428 2121 +2123 3 393.1413 268.2497 45.1914 0.4266 2122 +2124 3 392.0499 267.9717 45.1441 0.4251 2123 +2125 3 390.9082 267.982 45.0598 0.4236 2124 +2126 3 389.7722 267.9934 44.9288 0.4221 2125 +2127 3 388.6797 267.7418 44.7544 0.4207 2126 +2128 3 387.7531 267.1126 44.5656 0.4192 2127 +2129 3 387.0896 266.1962 44.3828 0.4177 2128 +2130 3 386.6754 265.1369 44.2028 0.4163 2129 +2131 3 386.3997 264.0283 44.0068 0.4148 2130 +2132 3 386.0417 262.9656 43.7567 0.4133 2131 +2133 3 385.4502 262.0504 43.423 0.4118 2132 +2134 3 384.6105 261.356 43.0394 0.4104 2133 +2135 3 383.5706 260.9498 42.6868 0.4089 2134 +2136 3 382.4403 260.8057 42.4208 0.4074 2135 +2137 3 381.3044 260.6913 42.2506 0.406 2136 +2138 3 380.2393 260.3206 42.1674 0.4045 2137 +2139 3 379.3287 259.6445 42.1518 0.403 2138 +2140 3 378.5793 258.7865 42.1862 0.4015 2139 +2141 3 377.9536 257.8393 42.271 0.4001 2140 +2142 3 377.2489 256.9664 42.3973 0.3986 2141 +2143 3 376.257 256.502 42.5074 0.3971 2142 +2144 3 375.1268 256.4322 42.541 0.3957 2143 +2145 3 374.0045 256.296 42.4934 0.3942 2144 +2146 3 373.0069 255.7835 42.4074 0.3927 2145 +2147 3 372.1867 254.9965 42.3116 0.3912 2146 +2148 3 371.4843 254.0973 42.1898 0.3898 2147 +2149 3 370.8093 253.1809 42.019 0.3883 2148 +2150 3 370.0165 252.3721 41.8071 0.3868 2149 +2151 3 369.0784 251.7326 41.5719 0.3854 2150 +2152 3 368.1129 251.1309 41.3084 0.3839 2151 +2153 3 367.2091 250.4548 41.0052 0.3824 2152 +2154 3 366.3477 249.7352 40.6708 0.381 2153 +2155 3 365.476 249.0213 40.3365 0.3795 2154 +2156 3 364.5711 248.3349 40.04 0.378 2155 +2157 3 363.6387 247.6749 39.8084 0.3765 2156 +2158 3 362.7018 247.0182 39.6491 0.3751 2157 +2159 3 361.7751 246.3478 39.5534 0.3736 2158 +2160 3 360.8679 245.6511 39.5046 0.3721 2159 +2161 3 360.0237 244.8812 39.4848 0.3707 2160 +2162 3 359.3212 243.9843 39.478 0.3692 2161 +2163 3 358.692 243.0279 39.4758 0.3677 2162 +2164 3 357.9462 242.1676 39.4741 0.3662 2163 +2165 3 357.0607 241.4481 39.4716 0.3648 2164 +2166 3 356.1444 240.7628 39.4682 0.3633 2165 +2167 3 355.3081 239.986 39.4638 0.3618 2166 +2168 3 354.648 239.0594 39.4573 0.3604 2167 +2169 3 354.1446 238.0344 39.4481 0.3589 2168 +2170 3 353.6173 237.0196 39.4358 0.3574 2169 +2171 3 352.8668 236.1696 39.4178 0.3559 2170 +2172 3 351.9024 235.5713 39.3926 0.3545 2171 +2173 3 350.8659 235.0886 39.3576 0.353 2172 +2174 3 349.8821 234.5097 39.3112 0.3515 2173 +2175 3 349.0916 233.6963 39.2476 0.3501 2174 +2176 3 348.5379 232.7068 39.1437 0.3486 2175 +2177 3 348.0002 231.7069 38.9922 0.3471 2176 +2178 3 347.1754 230.9404 38.8324 0.3456 2177 +2179 3 346.0852 230.7162 38.6711 0.3442 2178 +2180 3 344.9743 230.9278 38.507 0.3427 2179 +2181 3 343.8372 231.0216 38.3704 0.3412 2180 +2182 3 342.7092 230.8569 38.2718 0.3398 2181 +2183 3 341.7128 230.3227 38.2357 0.3383 2182 +2184 3 341.1763 229.3388 38.2346 0.3368 2183 +2185 3 341.031 228.2097 38.22 0.3354 2184 +2186 3 340.9177 227.0783 38.1368 0.3339 2185 +2187 3 340.4956 226.043 37.9579 0.3324 2186 +2188 3 339.5987 225.3932 37.7006 0.3309 2187 +2189 3 338.4741 225.2307 37.4506 0.3295 2188 +2190 3 337.3416 225.1438 37.2812 0.328 2189 +2191 3 336.241 224.8395 37.1529 0.3265 2190 +2192 3 335.3258 224.1576 37.0443 0.3251 2191 +2193 3 334.3065 223.6955 36.869 0.3236 2192 +2194 3 333.5458 223.4438 36.4442 0.3221 2193 +2195 3 332.5631 222.8684 36.1564 0.3207 2194 +2196 3 331.593 222.2678 36.017 0.3192 2195 +2197 3 331.355 221.5459 34.5111 0.3192 2196 +2198 3 331.1823 220.458 33.6336 0.2934 2197 +2199 3 331.2429 219.3162 33.3242 0.2804 2198 +2200 3 331.3699 218.1848 32.9916 0.2675 2199 +2201 3 331.2921 217.0832 32.5926 0.2546 2200 +2202 3 331.1617 216.0627 31.4149 0.2417 2201 +2203 3 331.2143 222.262 36.0055 0.3192 2196 +2204 3 330.0703 222.246 36.1343 0.3037 2203 +2205 3 328.9744 221.9177 36.4115 0.296 2204 +2206 3 328.2628 221.0219 36.8264 0.2883 2205 +2207 3 328.2296 220.7142 35.3419 0.2883 2206 +2208 3 327.8956 219.6297 35.2307 0.2883 2207 +2209 3 327.0078 219.0337 35.1896 0.2883 2208 +2210 3 325.8856 218.8392 35.1436 0.2883 2209 +2211 3 324.8857 218.3518 35.035 0.2883 2210 +2212 3 324.0723 217.5796 34.8799 0.2883 2211 +2213 3 323.3608 216.6885 34.7396 0.2883 2212 +2214 3 322.7647 215.7195 34.6699 0.2883 2213 +2215 3 322.1515 214.8169 34.7362 0.2883 2214 +2216 3 321.3862 213.9966 34.8513 0.2883 2215 +2217 3 320.3989 213.4784 34.8594 0.2883 2216 +2218 3 319.3304 213.2622 34.7085 0.2883 2217 +2219 3 318.8385 212.3001 34.496 0.2883 2218 +2220 3 318.7825 211.1595 34.2787 0.2883 2219 +2221 3 317.9439 210.3908 34.0617 0.2883 2220 +2222 3 316.8011 210.3416 33.8584 0.2883 2221 +2223 3 315.7554 209.9286 33.5966 0.2883 2222 +2224 3 314.7853 209.3234 33.346 0.2883 2223 +2225 3 314.3472 208.3807 33.0826 0.2883 2224 +2226 3 313.7889 207.3935 32.7482 0.2839 2225 +2227 3 313.3828 206.3833 32.2848 0.2817 2226 +2228 3 313.0991 205.3286 31.7178 0.2795 2227 +2229 3 312.5911 204.3745 31.0803 0.2773 2228 +2230 3 312.1862 203.3609 30.394 0.2751 2229 +2231 3 311.9127 202.2684 29.7352 0.2729 2230 +2232 3 311.5009 201.217 29.1102 0.2707 2231 +2233 3 310.723 200.4185 28.5088 0.2685 2232 +2234 3 309.8021 199.763 27.9197 0.2663 2233 +2235 3 309.2186 198.8787 27.2481 0.264 2234 +2236 3 308.8903 197.8628 26.503 0.2619 2235 +2237 3 308.618 196.8321 25.6938 0.2596 2236 +2238 3 308.1478 195.8231 24.902 0.2574 2237 +2239 3 307.331 195.0566 24.1492 0.2552 2238 +2240 3 306.2934 194.7946 23.3679 0.253 2239 +2241 3 305.7374 193.9023 22.5648 0.2508 2240 +2242 3 305.4 192.8452 21.7913 0.2486 2241 +2243 3 304.7444 191.9884 21.0051 0.2464 2242 +2244 3 303.8395 191.3695 20.2295 0.2442 2243 +2245 3 303.2298 190.4428 19.4736 0.242 2244 +2246 3 303.1806 189.3412 18.748 0.2398 2245 +2247 3 303.4632 188.2498 18.1007 0.2376 2246 +2248 3 303.2355 187.1641 17.4926 0.2354 2247 +2249 3 302.4816 186.4194 16.88 0.2332 2248 +2250 3 301.7872 185.5568 15.68 0.231 2249 +2251 3 314.1527 209.7204 32.5279 0.2883 2224 +2252 3 313.1231 210.0361 30.9039 0.2734 2251 +2253 3 312.0809 210.226 30.2319 0.266 2252 +2254 3 311.2916 210.4903 29.3373 0.2585 2253 +2255 3 310.3638 210.2672 28.373 0.2511 2254 +2256 3 309.5916 209.4641 27.5385 0.2437 2255 +2257 3 308.9612 208.51 26.3662 0.2362 2256 +2258 3 328.137 221.0048 37.4469 0.2883 2206 +2259 3 327.6485 220.6707 38.4409 0.2857 2258 +2260 3 327.3236 219.831 39.6077 0.2844 2259 +2261 3 327.0993 218.9158 40.8856 0.2831 2260 +2262 3 326.4141 218.2615 42.1884 0.2818 2261 +2263 3 325.3765 217.8634 43.3454 0.2805 2262 +2264 3 324.2748 217.7535 44.3887 0.2792 2263 +2265 3 323.3333 218.0304 45.4507 0.2779 2264 +2266 3 322.5428 218.3804 46.6178 0.2767 2265 +2267 3 321.6802 218.6184 47.845 0.2754 2266 +2268 3 320.7387 219.0028 49.0386 0.2741 2267 +2269 3 319.7983 219.5073 50.1634 0.2728 2268 +2270 3 318.9369 220.2097 51.1535 0.2715 2269 +2271 3 318.0412 220.9156 51.9585 0.2702 2270 +2272 3 317.0013 221.3571 52.6515 0.2689 2271 +2273 3 316.0254 221.523 53.4344 0.2676 2272 +2274 3 315.1354 221.459 54.3614 0.2663 2273 +2275 3 314.0692 221.3548 55.2824 0.265 2274 +2276 3 312.9309 221.3285 56.0986 0.2637 2275 +2277 3 311.8247 221.483 56.8943 0.2624 2276 +2278 3 310.7813 221.904 57.6551 0.2611 2277 +2279 3 309.7849 222.4474 58.3722 0.2598 2278 +2280 3 308.9155 222.9702 59.2122 0.2585 2279 +2281 3 308.165 223.525 60.2221 0.2573 2280 +2282 3 307.4248 224.1451 61.3427 0.256 2281 +2283 3 306.6469 224.899 62.435 0.2547 2282 +2284 3 305.8633 225.6757 63.4754 0.2534 2283 +2285 3 305.0876 226.4079 64.5061 0.2521 2284 +2286 3 304.3017 227.1584 65.4996 0.2508 2285 +2287 3 303.4712 227.9283 66.402 0.2495 2286 +2288 3 302.4736 228.1811 67.3756 0.2482 2287 +2289 3 301.8638 227.4638 68.4704 0.2469 2288 +2290 3 301.1912 226.7591 69.6422 0.2456 2289 +2291 3 300.4064 226.1768 70.8506 0.2443 2290 +2292 3 299.3837 226.1494 72.0364 0.243 2291 +2293 3 298.3472 226.3358 73.1525 0.2417 2292 +2294 3 297.3233 226.5303 74.1821 0.2404 2293 +2295 3 296.3624 226.7614 75.1554 0.2391 2294 +2296 3 295.3556 227.2865 75.915 0.2378 2295 +2297 3 294.2951 227.704 76.5038 0.2366 2296 +2298 3 293.1511 227.704 76.9261 0.2353 2297 +2299 3 292.0071 227.704 77.2257 0.234 2298 +2300 3 290.8883 227.7876 77.518 0.2327 2299 +2301 3 289.7718 227.8722 77.8128 0.2314 2300 +2302 3 288.6541 227.958 78.5375 0.2301 2301 +2303 2 385.6527 277.0722 41.3538 0.1144 1064 +2304 2 386.1183 278.1156 41.4677 0.1144 2303 +2305 2 386.3631 279.2298 41.6058 0.1144 2304 +2306 2 386.4558 280.3681 41.7684 0.1144 2305 +2307 2 386.7063 281.4766 41.9695 0.1144 2306 +2308 2 387.3104 282.4273 42.2153 0.1144 2307 +2309 2 388.2244 283.0908 42.4841 0.1144 2308 +2310 2 389.286 283.5038 42.7426 0.1144 2309 +2311 2 390.3717 283.8619 42.9839 0.1144 2310 +2312 2 391.407 284.3469 43.2121 0.1144 2311 +2313 2 392.3314 285.0173 43.4258 0.1144 2312 +2314 2 393.1676 285.7918 43.6584 0.1144 2313 +2315 2 393.9982 286.5274 43.9748 0.1144 2314 +2316 2 394.8985 287.1715 44.3565 0.1144 2315 +2317 2 395.8778 287.7435 44.7261 0.1144 2316 +2318 2 396.8971 288.256 45.0559 0.1144 2317 +2319 2 397.8878 288.82 45.3452 0.1144 2318 +2320 2 398.652 289.6677 45.5812 0.1144 2319 +2321 2 399.1542 290.6927 45.764 0.1144 2320 +2322 2 400.1174 291.2979 45.9287 0.1144 2321 +2323 2 401.2008 291.6491 46.1042 0.1144 2322 +2324 2 402.0096 292.4442 46.3036 0.1144 2323 +2325 2 402.7441 293.293 46.5458 0.1144 2324 +2326 2 403.5689 294.0721 46.7869 0.1144 2325 +2327 2 404.5642 294.6315 46.9389 0.1144 2326 +2328 2 405.5789 295.1486 47.0131 0.1144 2327 +2329 2 406.5044 295.8201 47.0568 0.1144 2328 +2330 2 407.2285 296.7056 47.1092 0.1144 2329 +2331 2 407.7491 297.7226 47.194 0.1144 2330 +2332 2 408.408 298.6572 47.3155 0.1144 2331 +2333 2 409.3484 299.3082 47.4743 0.1144 2332 +2334 2 410.4089 299.7383 47.6655 0.1144 2333 +2335 2 411.4728 299.9248 48.0138 0.1144 2334 +2336 2 412.5298 300.1536 48.4694 0.1144 2335 +2337 2 413.4565 300.8079 48.9098 0.1144 2336 +2338 2 414.2035 301.6648 49.317 0.1144 2337 +2339 2 414.9048 302.5194 49.7381 0.1144 2338 +2340 2 415.7273 303.3041 50.0889 0.1144 2339 +2341 2 416.7889 303.7274 50.3269 0.1144 2340 +2342 2 417.8757 304.0844 50.47 0.1144 2341 +2343 2 418.5839 304.9835 50.5462 0.1144 2342 +2344 2 419.2085 305.9411 50.568 0.1144 2343 +2345 2 419.8526 306.8872 50.5445 0.1144 2344 +2346 2 420.7918 307.5404 50.4935 0.1144 2345 +2347 2 421.7665 308.1387 50.4221 0.1144 2346 +2348 2 422.7618 308.7027 50.3306 0.1144 2347 +2349 2 423.6278 309.4394 50.1735 0.1144 2348 +2350 2 424.392 310.2631 49.9332 0.1144 2349 +2351 2 425.417 310.763 49.6768 0.1144 2350 +2352 2 426.4443 311.2641 49.4166 0.1144 2351 +2353 2 427.467 311.7755 49.1546 0.1144 2352 +2354 2 428.4806 312.3028 48.883 0.1144 2353 +2355 2 429.4599 312.8851 48.5859 0.1144 2354 +2356 2 430.4369 313.472 48.2563 0.1144 2355 +2357 2 431.3486 314.0692 47.7977 0.1144 2356 +2358 2 432.4514 314.2088 47.269 0.1144 2357 +2359 2 433.576 314.1424 46.7158 0.1144 2358 +2360 2 434.0633 314.4524 46.1429 0.1144 2359 +2361 2 434.9225 315.1034 45.5076 0.1144 2360 +2362 2 435.6386 315.9762 44.9092 0.1144 2361 +2363 2 436.0928 316.9875 44.3167 0.1144 2362 +2364 2 436.2804 318.0903 43.745 0.1144 2363 +2365 2 436.5287 319.1897 43.2107 0.1144 2364 +2366 2 437.0332 320.1816 42.6933 0.1144 2365 +2367 2 437.8214 320.9881 42.2223 0.1144 2366 +2368 2 438.5673 321.8312 41.771 0.1144 2367 +2369 2 439.3521 322.6618 41.3784 0.1144 2368 +2370 2 440.3908 323.0713 41.1281 0.1144 2369 +2371 2 441.5188 323.2601 40.8845 0.1144 2370 +2372 2 442.6433 323.2166 40.5426 0.1144 2371 +2373 2 443.4144 322.9512 39.9014 0.1144 2372 +2374 2 444.0653 322.9626 40.4978 0.1144 2373 +2375 2 445.1247 322.8494 41.4694 0.1144 2374 +2376 2 446.208 322.5508 41.8664 0.1144 2375 +2377 2 447.3109 322.2831 42.2758 0.1144 2376 +2378 2 448.4366 322.3414 42.7025 0.1144 2377 +2379 2 449.5485 322.4993 43.141 0.1144 2378 +2380 2 450.6811 322.4009 43.5392 0.1144 2379 +2381 2 451.7839 322.1024 43.8752 0.1144 2380 +2382 2 452.8787 321.7855 44.1997 0.1144 2381 +2383 2 453.9758 321.504 44.5483 0.1144 2382 +2384 2 455.0992 321.3336 44.9137 0.1144 2383 +2385 2 456.2329 321.2306 45.2978 0.1144 2384 +2386 2 457.3483 321.043 45.7358 0.1144 2385 +2387 2 458.4694 320.8954 46.2269 0.1144 2386 +2388 2 459.5974 320.9446 46.7751 0.1144 2387 +2389 2 460.6591 321.2684 47.4085 0.1144 2388 +2390 2 461.5514 321.9216 48.12 0.1144 2389 +2391 2 462.208 322.7853 48.9171 0.1144 2390 +2392 2 462.8555 323.474 49.8711 0.1144 2391 +2393 2 463.7868 323.5587 50.932 0.1144 2392 +2394 2 464.8003 323.172 51.9487 0.1144 2393 +2395 2 465.7441 322.5428 52.8396 0.1144 2394 +2396 2 466.7017 321.9342 53.6323 0.1144 2395 +2397 2 467.7267 321.5098 54.3922 0.1144 2396 +2398 2 468.7632 321.2089 55.1614 0.1144 2397 +2399 2 469.7367 320.9263 55.9992 0.1144 2398 +2400 2 470.6839 320.749 56.9218 0.1144 2399 +2401 2 471.7284 320.7296 57.8343 0.1144 2400 +2402 2 472.8404 320.6117 58.6261 0.1144 2401 +2403 2 473.926 320.2582 59.2427 0.1144 2402 +2404 2 475.0037 319.8727 59.6963 0.1144 2403 +2405 2 476.1168 319.6107 60.0342 0.1144 2404 +2406 2 477.2539 319.494 60.328 0.1144 2405 +2407 2 478.3922 319.5295 60.6595 0.1144 2406 +2408 2 479.519 319.6416 61.0753 0.1144 2407 +2409 2 480.6344 319.7606 61.609 0.1144 2408 +2410 2 481.7338 319.8727 62.2776 0.1144 2409 +2411 2 482.8229 319.9482 63.077 0.1144 2410 +2412 2 483.9051 319.9734 63.9881 0.1144 2411 +2413 2 484.9565 320.0168 65.0073 0.1144 2412 +2414 2 485.866 320.0043 66.1794 0.1144 2413 +2415 2 486.6313 319.8464 67.4878 0.1144 2414 +2416 2 487.5202 319.6073 68.8069 0.1144 2415 +2417 2 488.504 319.3453 70.0448 0.1144 2416 +2418 2 489.5942 319.0467 71.0713 0.1144 2417 +2419 2 490.7188 318.8374 71.8679 0.1144 2418 +2420 2 491.8594 318.9209 72.4842 0.1144 2419 +2421 2 492.9164 319.1714 73.1102 0.1144 2420 +2422 2 493.7332 319.4403 73.9035 0.1144 2421 +2423 2 493.9483 320.4218 74.7158 0.1144 2422 +2424 2 494.1714 321.4446 75.5426 0.1144 2423 +2425 2 494.3087 322.5737 76.2219 0.1144 2424 +2426 2 494.4288 323.7108 76.7374 0.1144 2425 +2427 2 494.5466 324.8491 77.1156 0.1144 2426 +2428 2 494.6645 325.9874 77.4088 0.1144 2427 +2429 2 494.788 327.1245 77.6894 0.1144 2428 +2430 2 494.9104 328.2616 78.0018 0.1144 2429 +2431 2 495.0637 329.3153 78.5252 0.1144 2430 +2432 2 495.2216 330.3369 79.2375 0.1144 2431 +2433 2 495.1003 331.3116 80.108 0.1144 2432 +2434 2 494.7846 332.213 81.0779 0.1144 2433 +2435 2 494.4494 333.1053 82.0756 0.1144 2434 +2436 2 494.0387 334.1487 82.8904 0.1144 2435 +2437 2 493.6154 335.2114 83.4411 0.1144 2436 +2438 2 493.3374 336.3211 83.7687 0.1144 2437 +2439 2 493.1098 337.4422 83.921 0.1144 2438 +2440 2 492.881 338.5622 83.9468 0.1144 2439 +2441 2 492.6499 339.6833 83.8891 0.1144 2440 +2442 2 492.4199 340.8033 83.7847 0.1144 2441 +2443 2 492.2724 341.9382 83.6438 0.1144 2442 +2444 2 492.1545 343.0764 83.4663 0.1144 2443 +2445 2 492.0996 344.193 83.1695 0.1144 2444 +2446 2 492.0996 345.2466 82.7109 0.1144 2445 +2447 2 492.1053 346.3014 82.1425 0.1144 2446 +2448 2 492.1694 347.4431 81.6592 0.1144 2447 +2449 2 492.2975 348.5802 81.2602 0.1144 2448 +2450 2 492.5412 349.6968 80.9208 0.1144 2449 +2451 2 493.0411 350.676 80.5484 0.1144 2450 +2452 2 493.191 351.7731 80.1696 0.1144 2451 +2453 2 493.1967 352.8862 79.7922 0.1144 2452 +2454 2 493.6966 352.8451 78.9536 0.1144 2453 +2455 2 494.828 352.7524 77.9971 0.1144 2454 +2456 2 495.8348 352.6506 77.5132 0.1144 2455 +2457 2 496.909 352.8748 76.9563 0.1144 2456 +2458 2 497.9546 353.3187 76.4159 0.1144 2457 +2459 2 498.8618 354.0097 75.9394 0.1144 2458 +2460 2 498.9934 354.9626 75.3362 0.1144 2459 +2461 2 499.0265 356.0345 74.7256 0.1144 2460 +2462 2 499.1295 357.1625 74.2193 0.1144 2461 +2463 2 499.1421 358.3065 73.8304 0.1144 2462 +2464 2 499.3194 359.4368 73.5423 0.1144 2463 +2465 2 499.825 360.463 73.3373 0.1144 2464 +2466 2 500.4531 361.4182 73.2038 0.1144 2465 +2467 2 501.191 362.2751 73.0358 0.1144 2466 +2468 2 501.1269 362.4398 72.6429 0.1144 2467 +2469 2 500.8283 363.212 71.113 0.1144 2468 +2470 2 500.2655 364.2027 70.588 0.1144 2469 +2471 2 499.7129 365.1991 70.0902 0.1144 2470 +2472 2 499.213 366.1692 69.5472 0.1144 2471 +2473 2 498.4705 366.7767 68.0742 0.1144 2472 +2474 2 502.1348 362.8642 72.7964 0.1144 2467 +2475 2 503.2136 363.2383 72.6188 0.1144 2474 +2476 2 503.8805 362.7555 72.4531 0.1144 2475 +2477 2 504.806 362.0852 72.2952 0.1144 2476 +2478 2 505.6503 361.3324 72.1092 0.1144 2477 +2479 2 506.5998 360.7112 71.9359 0.1144 2478 +2480 2 507.6191 360.1918 71.7909 0.1144 2479 +2481 2 508.6521 359.7011 71.6559 0.1144 2480 +2482 2 509.7698 359.5626 71.505 0.1144 2481 +2483 2 510.9081 359.5123 71.335 0.1144 2482 +2484 2 512.0441 359.6153 71.1712 0.1144 2483 +2485 2 513.124 359.9653 70.9948 0.1144 2484 +2486 2 514.0907 360.5385 70.7728 0.1144 2485 +2487 2 515.0139 361.1917 70.5312 0.1144 2486 +2488 2 515.8296 361.9879 70.3357 0.1144 2487 +2489 2 516.6441 362.791 70.1893 0.1144 2488 +2490 2 517.5101 363.538 70.0806 0.1144 2489 +2491 2 518.3979 364.2599 69.998 0.1144 2490 +2492 2 519.3291 364.9188 69.9135 0.1144 2491 +2493 2 520.2683 365.5652 69.8177 0.1144 2492 +2494 2 521.2739 366.1052 69.7281 0.1144 2493 +2495 2 522.3184 366.5731 69.6632 0.1144 2494 +2496 2 523.3697 367.0227 69.6273 0.1144 2495 +2497 2 524.4405 367.4219 69.6083 0.1144 2496 +2498 2 525.5399 367.5809 69.5419 0.1144 2497 +2499 2 526.6621 367.7571 69.5486 0.1144 2498 +2500 2 527.7146 367.979 69.7292 0.1144 2499 +2501 2 528.8003 368.2971 69.9482 0.1144 2500 +2502 2 529.8905 368.6265 70.1789 0.1144 2501 +2503 2 530.9167 369.0109 70.453 0.1144 2502 +2504 2 531.6374 369.6539 70.6936 0.1144 2503 +2505 2 532.1957 370.4215 70.6485 0.1144 2504 +2506 2 532.9324 371.2909 70.6423 0.1144 2505 +2507 2 533.5868 372.1912 70.7748 0.1144 2506 +2508 2 534.2892 372.976 71.0808 0.1144 2507 +2509 2 535.1152 373.7368 71.428 0.1144 2508 +2510 2 535.9651 374.4792 71.792 0.1144 2509 +2511 2 536.9398 375.0787 72.3668 0.1144 2510 +2512 2 503.5099 363.3413 72.6387 0.1144 2475 +2513 2 504.5875 363.7165 72.2422 0.1144 2512 +2514 2 505.2236 364.2473 72.0922 0.1144 2513 +2515 2 504.687 365.1957 71.7976 0.1144 2514 +2516 2 504.4068 366.247 71.4067 0.1144 2515 +2517 2 504.1368 367.3018 70.9629 0.1144 2516 +2518 2 503.8668 368.3577 70.5043 0.1144 2517 +2519 2 503.7558 369.4857 70.2265 0.1144 2518 +2520 2 503.7215 370.5862 70.3111 0.1144 2519 +2521 2 493.0915 353.3061 79.5071 0.1144 2453 +2522 2 492.8123 354.4158 79.308 0.1144 2521 +2523 2 492.5343 355.5255 79.1874 0.1144 2522 +2524 2 492.2563 356.6351 79.1344 0.1144 2523 +2525 2 491.9921 357.7482 79.1232 0.1144 2524 +2526 2 491.7793 358.8717 79.1333 0.1144 2525 +2527 2 491.6592 360.0088 79.1476 0.1144 2526 +2528 2 491.5516 361.1471 79.1669 0.1144 2527 +2529 2 491.2851 362.2568 79.1921 0.1144 2528 +2530 2 490.903 363.3344 79.2282 0.1144 2529 +2531 2 490.5129 364.4075 79.2887 0.1144 2530 +2532 2 490.1296 365.4817 79.3736 0.1144 2531 +2533 2 489.7029 366.541 79.4553 0.1144 2532 +2534 2 489.2362 367.5855 79.5138 0.1144 2533 +2535 2 488.7637 368.6277 79.5477 0.1144 2534 +2536 2 488.2912 369.6687 79.5606 0.1144 2535 +2537 2 487.8176 370.7109 79.5567 0.1144 2536 +2538 2 487.2731 371.7153 79.5452 0.1144 2537 +2539 2 486.6496 372.674 79.5343 0.1144 2538 +2540 2 485.9804 373.6018 79.527 0.1144 2539 +2541 2 485.2928 374.5159 79.5234 0.1144 2540 +2542 2 484.6041 375.4288 79.522 0.1144 2541 +2543 2 483.9429 376.3623 79.522 0.1144 2542 +2544 2 483.3492 377.3404 79.5225 0.1144 2543 +2545 2 482.8069 378.3471 79.5236 0.1144 2544 +2546 2 482.3699 379.403 79.525 0.1144 2545 +2547 2 482.1422 380.5196 79.527 0.1144 2546 +2548 2 482.0358 381.6578 79.5295 0.1144 2547 +2549 2 481.8688 382.7893 79.5334 0.1144 2548 +2550 2 481.5668 383.8909 79.541 0.1144 2549 +2551 2 481.1973 384.9732 79.5497 0.1144 2550 +2552 2 480.8186 386.052 79.5536 0.1144 2551 +2553 2 480.448 387.1342 79.5393 0.1144 2552 +2554 2 480.0888 388.2198 79.4926 0.1144 2553 +2555 2 479.7353 389.3066 79.4105 0.1144 2554 +2556 2 479.3852 390.3946 79.298 0.1144 2555 +2557 2 479.0603 391.4894 79.1596 0.1144 2556 +2558 2 478.7937 392.6002 78.9986 0.1144 2557 +2559 2 478.5592 393.7179 78.8192 0.1144 2558 +2560 2 478.3316 394.8367 78.6232 0.1144 2559 +2561 2 478.1085 395.9567 78.4104 0.1144 2560 +2562 2 477.9415 397.0847 78.1752 0.1144 2561 +2563 2 477.8957 398.2184 77.908 0.1144 2562 +2564 2 477.9094 399.3487 77.6054 0.1144 2563 +2565 2 477.8019 400.4526 77.2425 0.1144 2564 +2566 2 477.739 401.584 76.8844 0.1144 2565 +2567 2 477.7836 402.7246 76.5906 0.1144 2566 +2568 2 477.8454 403.8663 76.3526 0.1144 2567 +2569 2 477.8843 404.9989 76.0908 0.1144 2568 +2570 2 477.8991 406.1006 75.7462 0.1144 2569 +2571 2 477.906 407.2194 75.3662 0.1144 2570 +2572 2 477.9094 408.3542 74.9944 0.1144 2571 +2573 2 477.914 409.4754 74.6001 0.1144 2572 +2574 2 477.8008 410.5999 74.2241 0.1144 2573 +2575 2 477.477 411.6913 73.9488 0.1144 2574 +2576 2 477.0217 412.7392 73.75 0.1144 2575 +2577 2 476.5778 413.7917 73.5627 0.1144 2576 +2578 2 476.2426 414.8705 73.3309 0.1144 2577 +2579 2 475.9566 415.955 73.0492 0.1144 2578 +2580 2 475.7416 417.0566 72.7314 0.1144 2579 +2581 2 475.6763 418.1789 72.4013 0.1144 2580 +2582 2 475.6741 419.3069 72.0857 0.1144 2581 +2583 2 475.7095 420.444 71.8976 0.1144 2582 +2584 2 476.015 421.5411 71.8141 0.1144 2583 +2585 2 476.4428 422.6016 71.7875 0.1144 2584 +2586 2 476.9187 423.6415 71.7959 0.1144 2585 +2587 2 477.4701 424.6436 71.8222 0.1144 2586 +2588 2 478.1302 425.5772 71.8539 0.1144 2587 +2589 2 478.9024 426.4203 71.881 0.1144 2588 +2590 2 479.6746 427.2634 71.9121 0.1144 2589 +2591 2 480.3988 428.1489 71.9533 0.1144 2590 +2592 2 481.1069 429.048 72.0065 0.1144 2591 +2593 2 481.7601 429.985 72.0958 0.1144 2592 +2594 2 482.3779 430.9425 72.2285 0.1144 2593 +2595 2 482.8572 431.979 72.3814 0.1144 2594 +2596 2 483.1867 433.0738 72.5323 0.1144 2595 +2597 2 483.3686 434.196 72.7126 0.1144 2596 +2598 2 483.4132 435.3149 72.9551 0.1144 2597 +2599 2 483.5276 436.4474 73.1909 0.1144 2598 +2600 2 483.7004 437.5777 73.3852 0.1144 2599 +2601 2 483.817 438.716 73.5454 0.1144 2600 +2602 2 483.8434 439.86 73.6856 0.1144 2601 +2603 2 483.8445 441.004 73.8186 0.1144 2602 +2604 2 483.8445 442.148 73.9614 0.1144 2603 +2605 2 483.8445 443.292 74.137 0.1144 2604 +2606 2 483.8491 444.4188 74.4173 0.1144 2605 +2607 2 483.7759 445.5216 74.8199 0.1144 2606 +2608 2 483.4738 446.5501 75.343 0.1144 2607 +2609 2 483.2782 447.6472 75.8892 0.1144 2608 +2610 2 483.1341 448.7637 76.4156 0.1144 2609 +2611 2 483.1043 449.886 76.9096 0.1144 2610 +2612 2 483.1055 451.0083 77.3556 0.1144 2611 +2613 2 483.1055 452.15 77.6919 0.1144 2612 +2614 2 483.1455 453.294 77.9279 0.1144 2613 +2615 2 483.5619 454.3556 78.1124 0.1144 2614 +2616 2 484.0664 455.3806 78.2667 0.1144 2615 +2617 2 484.5721 456.4045 78.4025 0.1144 2616 +2618 2 485.0789 457.4295 78.5302 0.1144 2617 +2619 2 485.6303 458.4225 78.6848 0.1144 2618 +2620 2 486.0547 459.4807 78.8427 0.1144 2619 +2621 2 486.2709 460.603 78.9678 0.1144 2620 +2622 2 486.4471 461.7333 79.0605 0.1144 2621 +2623 2 486.6233 462.8635 79.1288 0.1144 2622 +2624 2 486.7995 463.9938 79.1818 0.1144 2623 +2625 2 486.9745 465.1252 79.2285 0.1144 2624 +2626 2 487.0809 466.2635 79.2784 0.1144 2625 +2627 2 487.1232 467.4064 79.3467 0.1144 2626 +2628 2 487.1541 468.5492 79.4528 0.1144 2627 +2629 2 487.1861 469.6909 79.6118 0.1144 2628 +2630 2 487.217 470.8338 79.8328 0.1144 2629 +2631 2 487.1724 471.948 80.2228 0.1144 2630 +2632 2 486.9814 472.7569 80.9304 0.1144 2631 +2633 2 486.7331 473.5794 81.8454 0.1144 2632 +2634 2 486.2126 474.5701 82.6927 0.1144 2633 +2635 2 485.7573 475.5963 83.4459 0.1144 2634 +2636 2 485.4896 476.6808 84.0963 0.1144 2635 +2637 2 485.8522 477.1921 84.5449 0.1144 2636 +2638 2 486.2011 478.2572 84.9058 0.1144 2637 +2639 2 486.8887 478.7617 86.8235 0.1144 2638 +2640 2 486.955 479.6437 89.5121 0.1144 2639 +2641 2 486.6668 480.5326 90.6413 0.1144 2640 +2642 2 486.6107 481.37 92.0231 0.1144 2641 +2643 2 486.534 482.0233 93.6233 0.1144 2642 +2644 2 485.9003 482.2395 95.3123 0.1144 2643 +2645 2 485.1098 482.0827 97.0066 0.1144 2644 +2646 2 484.1751 482.0233 98.6219 0.1144 2645 +2647 2 483.0746 482.021 100.0084 0.1144 2646 +2648 2 481.9603 481.8642 101.1534 0.1144 2647 +2649 2 481.1161 481.584 102.2725 0.1144 2648 +2650 2 480.0396 481.5634 103.2399 0.1144 2649 +2651 2 479.2342 481.5634 105.4648 0.1144 2650 +2652 2 486.1817 479.0408 85.1402 0.1144 2638 +2653 2 486.0787 480.1757 85.3098 0.1144 2652 +2654 2 485.8374 481.2934 85.4428 0.1144 2653 +2655 2 485.5857 482.4099 85.566 0.1144 2654 +2656 2 485.4072 483.5345 85.706 0.1144 2655 +2657 2 485.3866 484.6785 85.8715 0.1144 2656 +2658 2 485.3923 485.819 86.1036 0.1144 2657 +2659 2 485.4209 486.923 86.476 0.1144 2658 +2660 2 485.366 487.9869 86.9996 0.1144 2659 +2661 2 485.0892 489.0886 87.563 0.1144 2660 +2662 2 484.7997 490.1765 88.1731 0.1144 2661 +2663 2 484.5595 491.2302 88.886 0.1144 2662 +2664 2 484.3479 492.2563 89.6994 0.1144 2663 +2665 2 484.1385 493.2928 90.5668 0.1144 2664 +2666 2 483.9337 494.3544 91.4441 0.1144 2665 +2667 2 483.729 495.4264 92.3132 0.1144 2666 +2668 2 483.5253 496.4994 93.1577 0.1144 2667 +2669 2 483.3217 497.5714 93.963 0.1144 2668 +2670 2 483.1181 498.6444 94.7254 0.1144 2669 +2671 2 482.9144 499.7164 95.4442 0.1144 2670 +2672 2 482.7097 500.7894 96.1156 0.1144 2671 +2673 2 482.506 501.8614 96.7327 0.1144 2672 +2674 2 482.3653 502.9585 97.2474 0.1144 2673 +2675 2 482.3504 504.1025 97.5856 0.1144 2674 +2676 2 482.3504 505.2465 97.7749 0.1144 2675 +2677 2 482.3516 506.3893 97.8522 0.1144 2676 +2678 2 482.3516 507.5333 97.853 0.1144 2677 +2679 2 482.3516 508.6773 97.809 0.1144 2678 +2680 2 482.3516 509.8202 97.75 0.1144 2679 +2681 2 482.3516 510.9642 97.6951 0.1144 2680 +2682 2 482.3527 512.107 97.6486 0.1144 2681 +2683 2 482.3527 513.251 97.6139 0.1144 2682 +2684 2 482.3527 514.395 97.5957 0.1144 2683 +2685 2 482.3527 515.5379 97.6016 0.1144 2684 +2686 2 482.3527 516.6819 97.6408 0.1144 2685 +2687 2 482.3539 517.8259 97.7206 0.1144 2686 +2688 2 482.3321 518.9687 97.8561 0.1144 2687 +2689 2 482.1697 520.0704 98.1016 0.1144 2688 +2690 2 481.8185 521.0989 98.5071 0.1144 2689 +2691 2 481.4684 522.1262 99.022 0.1144 2690 +2692 2 481.0737 523.1409 99.5938 0.1144 2691 +2693 2 480.5955 524.1293 100.1697 0.1144 2692 +2694 2 480.1997 525.1475 100.6925 0.1144 2693 +2695 2 480.154 526.2903 101.0506 0.1144 2694 +2696 2 480.1071 527.4343 101.2645 0.1144 2695 +2697 2 479.9686 528.56 101.3673 0.1144 2696 +2698 2 479.6174 529.6491 101.3891 0.1144 2697 +2699 2 479.2651 530.7371 101.3555 0.1144 2698 +2700 2 478.9127 531.8262 101.2869 0.1144 2699 +2701 2 478.6736 532.9416 101.1769 0.1144 2700 +2702 2 478.4574 534.0627 101.0254 0.1144 2701 +2703 2 478.24 535.1838 100.8392 0.1144 2702 +2704 2 478.1542 536.3118 100.604 0.1144 2703 +2705 2 478.1199 537.4432 100.3265 0.1144 2704 +2706 2 478.0856 538.5758 100.0233 0.1144 2705 +2707 2 478.0513 539.7072 99.7066 0.1144 2706 +2708 2 478.2686 540.794 99.4129 0.1144 2707 +2709 2 478.7423 541.8362 99.1687 0.1144 2708 +2710 2 479.2159 542.8772 98.9629 0.1144 2709 +2711 2 479.4481 543.9217 98.7305 0.1144 2710 +2712 2 479.2468 544.9741 98.3844 0.1144 2711 +2713 2 479.1255 545.1492 98.0944 0.1144 2712 +2714 2 478.478 546.0884 97.8228 0.1144 2713 +2715 2 477.8294 547.0276 97.5688 0.1144 2714 +2716 2 477.1807 547.9668 97.3361 0.1144 2715 +2717 2 476.5332 548.9061 97.127 0.1144 2716 +2718 2 475.8846 549.8453 96.9349 0.1144 2717 +2719 2 475.237 550.7845 96.738 0.1144 2718 +2720 2 474.5884 551.7237 96.5412 0.1144 2719 +2721 2 473.9409 552.663 96.3444 0.1144 2720 +2722 2 473.2922 553.6022 96.1472 0.1144 2721 +2723 2 472.6436 554.5414 95.9498 0.1144 2722 +2724 2 471.9961 555.4806 95.7522 0.1144 2723 +2725 2 471.3474 556.4199 95.5539 0.1144 2724 +2726 2 470.6999 557.3591 95.3554 0.1144 2725 +2727 2 470.0513 558.2983 95.156 0.1144 2726 +2728 2 469.4038 559.2375 94.955 0.1144 2727 +2729 2 468.7551 560.1768 94.7512 0.1144 2728 +2730 2 468.1065 561.116 94.5428 0.1144 2729 +2731 2 466.6891 560.8002 93.387 0.1144 2730 +2732 2 465.7613 560.2866 92.8766 0.1144 2731 +2733 2 464.9136 559.6585 92.195 0.1144 2732 +2734 2 464.0659 559.0305 91.4082 0.1144 2733 +2735 2 463.2182 558.4024 90.5761 0.1144 2734 +2736 2 462.3705 557.7744 89.7506 0.1144 2735 +2737 2 461.5228 557.1474 88.0743 0.1144 2736 +2738 2 468.071 561.2967 94.3502 0.1144 2730 +2739 2 467.8445 562.4133 94.1324 0.1144 2738 +2740 2 467.618 563.5298 93.8907 0.1144 2739 +2741 2 467.3926 564.6464 93.6264 0.1144 2740 +2742 2 467.1661 565.7629 93.3405 0.1144 2741 +2743 2 467.0437 566.8875 93.0166 0.1144 2742 +2744 2 466.9556 568.0143 92.657 0.1144 2743 +2745 2 466.8675 569.14 92.2692 0.1144 2744 +2746 2 466.7795 570.2668 91.8705 0.1144 2745 +2747 2 466.6914 571.3937 91.4763 0.1144 2746 +2748 2 466.6033 572.5205 91.0994 0.1144 2747 +2749 2 466.514 573.6474 90.7511 0.1144 2748 +2750 2 466.426 574.7731 90.0732 0.1144 2749 +2751 2 479.7661 545.6754 99.7125 0.1144 2712 +2752 2 480.2912 546.3858 102.4598 0.1144 2751 +2753 2 480.8163 547.0963 103.6302 0.1144 2752 +2754 2 481.3426 547.8067 105.0137 0.1144 2753 +2755 2 482.029 548.0996 106.5442 0.1144 2754 +2756 2 482.8435 548.0607 108.1522 0.1144 2755 +2757 2 483.658 548.0218 109.7788 0.1144 2756 +2758 2 484.0882 547.2896 111.2364 0.1144 2757 +2759 2 484.3456 546.2463 112.4827 0.1144 2758 +2760 2 484.6041 545.2029 113.5372 0.1144 2759 +2761 2 484.8615 544.1596 114.4217 0.1144 2760 +2762 2 485.1189 543.1163 115.9693 0.1144 2761 +2763 2 484.8684 477.0217 84.7084 0.1144 2636 +2764 2 483.8651 477.5708 84.7851 0.1144 2763 +2765 2 482.8618 478.1211 84.8156 0.1144 2764 +2766 2 481.8585 478.6702 84.8602 0.1144 2765 +2767 2 480.8918 479.2777 84.9212 0.1144 2766 +2768 2 479.9904 479.9778 85.0002 0.1144 2767 +2769 2 479.1198 480.7168 85.1088 0.1144 2768 +2770 2 478.1989 481.3918 85.2802 0.1144 2769 +2771 2 477.1613 481.7052 85.5971 0.1144 2770 +2772 2 476.0779 481.719 86.095 0.1144 2771 +2773 2 475.0014 481.6743 86.7426 0.1144 2772 +2774 2 473.926 481.6297 87.498 0.1144 2773 +2775 2 472.8507 481.7064 88.3165 0.1144 2774 +2776 2 471.8657 482.148 89.1374 0.1144 2775 +2777 2 470.931 482.7554 89.9298 0.1144 2776 +2778 2 470.0032 483.3709 90.7001 0.1144 2777 +2779 2 469.1727 484.0893 91.4777 0.1144 2778 +2780 2 468.4817 484.9405 92.281 0.1144 2779 +2781 2 468.0619 485.9609 93.0874 0.1144 2780 +2782 2 467.4853 486.8418 93.9523 0.1144 2781 +2783 2 466.5861 487.2433 94.925 0.1144 2782 +2784 2 465.8425 487.7135 96.0196 0.1144 2783 +2785 2 465.1069 488.1654 97.1774 0.1144 2784 +2786 2 464.5143 488.5441 98.3811 0.1144 2785 +2787 2 463.876 489.2007 99.4745 0.1144 2786 +2788 2 463.1999 489.4696 102.492 0.1144 2787 +2789 2 462.1611 489.8802 103.859 0.1144 2788 +2790 2 461.1224 490.2921 104.424 0.1144 2789 +2791 2 460.0836 490.7039 105.1112 0.1144 2790 +2792 2 459.3766 491.3858 106.0144 0.1144 2791 +2793 2 458.7005 492.0824 107.0717 0.1144 2792 +2794 2 458.0256 492.778 108.2259 0.1144 2793 +2795 2 457.3483 493.4747 109.4005 0.1144 2794 +2796 2 456.6722 494.1714 110.5437 0.1144 2795 +2797 2 455.7158 494.7011 111.5173 0.1144 2796 +2798 2 454.6622 495.1118 112.2598 0.1144 2797 +2799 2 453.6086 495.5236 113.3185 0.1144 2798 +2800 2 463.9549 490.252 100.0734 0.1144 2787 +2801 2 464.0373 491.3469 100.2683 0.1144 2800 +2802 2 464.1185 492.4417 100.1661 0.1144 2801 +2803 2 464.2009 493.5376 99.8782 0.1144 2802 +2804 2 464.2832 494.6324 99.5084 0.1144 2803 +2805 2 465.0886 495.4241 99.328 0.1144 2804 +2806 2 465.918 496.1871 99.3569 0.1144 2805 +2807 2 466.7474 496.9513 99.5408 0.1144 2806 +2808 2 467.5768 497.7155 99.8236 0.1144 2807 +2809 2 468.4062 498.4797 100.1546 0.1144 2808 +2810 2 469.2265 499.2542 100.4872 0.1144 2809 +2811 2 469.6658 500.3112 100.7182 0.1144 2810 +2812 2 470.1051 501.3672 100.977 0.1144 2811 +2813 2 493.9941 319.1977 74.9857 0.1144 2422 +2814 2 494.8383 318.5743 75.9273 0.1144 2813 +2815 2 495.8599 318.0846 76.2994 0.1144 2814 +2816 2 496.9204 317.6602 76.6648 0.1144 2815 +2817 2 497.9523 317.1843 77.0442 0.1144 2816 +2818 2 498.967 316.6821 77.439 0.1144 2817 +2819 2 499.9886 316.324 77.9041 0.1144 2818 +2820 2 501.0628 316.1856 78.4025 0.1144 2819 +2821 2 502.2011 316.1044 78.8259 0.1144 2820 +2822 2 503.3428 316.0277 79.1591 0.1144 2821 +2823 2 503.9972 315.9602 79.4256 0.1144 2822 +2824 2 505.1275 315.8104 79.6606 0.1144 2823 +2825 2 506.2509 315.6319 79.8854 0.1144 2824 +2826 2 507.372 315.4488 80.1189 0.1144 2825 +2827 2 508.4897 315.2349 80.3704 0.1144 2826 +2828 2 509.5856 314.9238 80.6207 0.1144 2827 +2829 2 510.653 314.5142 80.8503 0.1144 2828 +2830 2 511.7398 314.1824 81.0813 0.1144 2829 +2831 2 512.8495 314.0726 81.3593 0.1144 2830 +2832 2 513.9557 314.0863 81.69 0.1144 2831 +2833 2 515.0597 314.1161 82.0484 0.1144 2832 +2834 2 516.1248 314.4124 82.3648 0.1144 2833 +2835 2 516.9747 315.1377 82.5446 0.1144 2834 +2836 2 517.7447 315.9739 82.5815 0.1144 2835 +2837 2 518.5157 316.8091 82.5059 0.1144 2836 +2838 2 519.2856 317.6453 82.3553 0.1144 2837 +2839 2 519.9537 318.5662 82.1912 0.1144 2838 +2840 2 520.5349 319.5512 82.0593 0.1144 2839 +2841 2 521.1709 320.5008 81.9734 0.1144 2840 +2842 2 521.9603 321.321 81.9244 0.1144 2841 +2843 2 522.8 322.0989 81.9003 0.1144 2842 +2844 2 523.6385 322.8768 81.8905 0.1144 2843 +2845 2 524.5377 323.5815 81.8843 0.1144 2844 +2846 2 525.5364 324.1318 81.8765 0.1144 2845 +2847 2 526.5638 324.634 81.8658 0.1144 2846 +2848 2 527.5922 325.1374 81.851 0.1144 2847 +2849 2 528.6195 325.6396 81.8303 0.1144 2848 +2850 2 529.6468 326.143 81.8012 0.1144 2849 +2851 2 530.6833 326.6257 81.7603 0.1144 2850 +2852 2 531.7243 327.1016 81.7034 0.1144 2851 +2853 2 532.7642 327.5775 81.6239 0.1144 2852 +2854 2 533.7824 328.0981 81.5125 0.1144 2853 +2855 2 534.7742 328.6689 81.3554 0.1144 2854 +2856 2 535.7592 329.2501 81.1364 0.1144 2855 +2857 2 536.7442 329.8324 80.8419 0.1144 2856 +2858 2 537.6754 330.4764 80.4143 0.1144 2857 +2859 2 538.514 331.1869 79.8025 0.1144 2858 +2860 2 539.1981 331.8183 78.9228 0.1144 2859 +2861 2 539.7598 332.523 77.8218 0.1144 2860 +2862 2 540.3352 333.3753 76.6469 0.1144 2861 +2863 2 540.9164 334.2493 75.4527 0.1144 2862 +2864 2 541.4987 335.1222 74.2731 0.1144 2863 +2865 2 542.0798 335.9951 73.1301 0.1144 2864 +2866 2 542.661 336.8691 72.0317 0.1144 2865 +2867 2 543.2433 337.742 70.9688 0.1144 2866 +2868 2 543.8244 338.616 69.9345 0.1144 2867 +2869 2 544.4056 339.4889 68.9335 0.1144 2868 +2870 2 544.9879 340.3617 67.9647 0.1144 2869 +2871 2 545.569 341.2438 67.025 0.1144 2870 +2872 2 546.1033 342.2402 66.2348 0.1144 2871 +2873 2 546.4453 343.2332 65.7059 0.1144 2872 +2874 2 546.8148 344.0637 65.1414 0.1144 2873 +2875 2 547.5779 344.3268 64.2709 0.1144 2874 +2876 2 548.3672 344.511 63.1378 0.1144 2875 +2877 2 549.3408 344.2353 61.9382 0.1144 2876 +2878 2 550.2812 343.6324 60.6934 0.1144 2877 +2879 2 550.8898 343.1062 59.2346 0.1144 2878 +2880 2 550.5672 343.2549 57.5532 0.1144 2879 +2881 2 550.4219 343.8978 55.781 0.1144 2880 +2882 2 550.6209 344.4504 53.9353 0.1144 2881 +2883 2 551.0648 344.8199 52.0596 0.1144 2882 +2884 2 551.7615 345.6196 50.4274 0.1144 2883 +2885 2 551.7878 346.6309 48.9972 0.1144 2884 +2886 2 552.1825 347.2257 47.7719 0.1144 2885 +2887 2 552.7991 348.0689 46.7082 0.1144 2886 +2888 2 553.5061 348.9383 45.8444 0.1144 2887 +2889 2 554.2772 349.7608 45.117 0.1144 2888 +2890 2 555.0722 350.5536 44.4534 0.1144 2889 +2891 2 556.0412 351.017 43.8172 0.1144 2890 +2892 2 557.1051 351.3624 43.2068 0.1144 2891 +2893 2 558.1084 351.8521 42.6054 0.1144 2892 +2894 2 558.6472 352.3726 41.8228 0.1144 2893 +2895 2 559.5064 353.1265 41.1841 0.1144 2894 +2896 2 560.3827 353.8518 40.6302 0.1144 2895 +2897 2 561.2842 354.489 40.0705 0.1144 2896 +2898 2 562.2543 355.0061 39.5125 0.1144 2897 +2899 2 563.3033 355.4522 39.0583 0.1144 2898 +2900 2 564.2208 356.1238 38.6784 0.1144 2899 +2901 2 564.9347 356.8365 38.2424 0.1144 2900 +2902 2 565.565 356.8365 37.5651 0.1144 2901 +2903 2 566.4196 356.0986 36.967 0.1144 2902 +2904 2 567.1918 355.2623 36.4512 0.1144 2903 +2905 2 568.1058 354.7727 35.9374 0.1144 2904 +2906 2 569.1892 354.5828 35.5006 0.1144 2905 +2907 2 570.252 354.2236 35.142 0.1144 2906 +2908 2 571.3605 354.0337 34.7732 0.1144 2907 +2909 2 572.4816 353.9124 34.3454 0.1144 2908 +2910 2 573.2367 353.3072 33.805 0.1144 2909 +2911 2 573.9917 352.5179 33.2111 0.1144 2910 +2912 2 574.8543 351.9047 32.5279 0.1144 2911 +2913 2 575.9491 351.7525 31.9091 0.1144 2912 +2914 2 576.7545 351.3304 31.1548 0.1144 2913 +2915 2 576.8082 352.1312 29.8995 0.1144 2914 +2916 2 576.1973 351.9058 28.0669 0.1144 2915 +2917 2 576.322 350.9952 27.2541 0.1144 2916 +2918 2 576.6881 350.0686 26.2757 0.1144 2917 +2919 2 577.0656 349.1442 25.2115 0.1144 2918 +2920 2 577.4454 348.3469 24.0748 0.1144 2919 +2921 2 576.8883 347.4019 23.134 0.1144 2920 +2922 2 576.3827 346.5302 21.3172 0.1144 2921 +2923 2 576.8986 351.2961 30.5477 0.1144 2914 +2924 2 577.9946 350.9895 30.0423 0.1144 2923 +2925 2 578.9761 350.4209 29.5638 0.1144 2924 +2926 2 579.9462 349.9084 29.0914 0.1144 2925 +2927 2 580.4679 348.8983 28.5919 0.1144 2926 +2928 2 581.1383 348.0105 27.9901 0.1144 2927 +2929 2 581.9162 347.2177 27.2546 0.1144 2928 +2930 2 582.4893 346.8105 26.3281 0.1144 2929 +2931 2 582.8097 347.212 25.0838 0.1144 2930 +2932 2 583.2123 347.8526 23.716 0.1144 2931 +2933 2 583.7924 348.6946 22.4146 0.1144 2932 +2934 2 584.5932 349.0722 21.1628 0.1144 2933 +2935 2 585.5564 349.3112 20.0596 0.1144 2934 +2936 2 586.4876 349.9016 19.2229 0.1144 2935 +2937 2 587.0791 350.8419 18.6812 0.1144 2936 +2938 2 587.428 351.9138 18.3269 0.1144 2937 +2939 2 588.1041 352.7936 18.1321 0.1144 2938 +2940 2 589.1074 353.0967 18.2243 0.1144 2939 +2941 2 590.0054 353.7786 18.4388 0.1144 2940 +2942 2 590.5294 354.7956 18.6801 0.1144 2941 +2943 2 591.1048 355.784 18.9248 0.1144 2942 +2944 2 592.0818 356.0814 19.2775 0.1144 2943 +2945 2 593.2029 356.2313 19.6711 0.1144 2944 +2946 2 594.3355 356.102 20.0628 0.1144 2945 +2947 2 595.4646 355.9281 20.4865 0.1144 2946 +2948 2 596.6006 355.8629 20.9822 0.1144 2947 +2949 2 597.621 355.514 21.628 0.1144 2948 +2950 2 598.3841 354.8711 22.4482 0.1144 2949 +2951 2 598.9229 354.1126 23.4423 0.1144 2950 +2952 2 599.2958 353.234 24.5411 0.1144 2951 +2953 2 599.9273 352.3165 25.5509 0.1144 2952 +2954 2 600.5256 351.3453 26.4111 0.1144 2953 +2955 2 600.8768 350.2871 27.2005 0.1144 2954 +2956 2 601.4019 349.5069 28.0638 0.1144 2955 +2957 2 602.3846 349.4611 28.9444 0.1144 2956 +2958 2 603.476 349.3376 29.7405 0.1144 2957 +2959 2 604.3946 348.7267 30.4556 0.1144 2958 +2960 2 605.2424 347.9831 31.0447 0.1144 2959 +2961 2 606.1415 347.2784 31.4549 0.1144 2960 +2962 2 606.8577 346.3883 31.7153 0.1144 2961 +2963 2 607.4834 345.4319 31.8598 0.1144 2962 +2964 2 608.3094 344.6403 31.9119 0.1144 2963 +2965 2 609.0599 343.7777 31.89 0.1144 2964 +2966 2 609.4946 342.7195 31.8206 0.1144 2965 +2967 2 610.1249 341.7654 31.7086 0.1144 2966 +2968 2 610.8926 340.9681 31.4482 0.1144 2967 +2969 2 611.6396 340.1089 31.1416 0.1144 2968 +2970 2 612.4701 339.3573 30.765 0.1144 2969 +2971 2 613.3362 338.7247 30.2876 0.1144 2970 +2972 2 614.0008 337.8038 29.8416 0.1144 2971 +2973 2 614.5396 336.7947 29.4753 0.1144 2972 +2974 2 615.011 335.7526 29.1774 0.1144 2973 +2975 2 615.5052 334.7207 28.91 0.1144 2974 +2976 2 616.092 333.7391 28.6446 0.1144 2975 +2977 2 616.7418 332.7976 28.3399 0.1144 2976 +2978 2 617.1731 331.7646 27.8756 0.1144 2977 +2979 2 617.6994 330.7647 27.2408 0.1144 2978 +2980 2 618.2588 329.782 26.4851 0.1144 2979 +2981 2 618.5196 328.9149 25.4708 0.1144 2980 +2982 2 618.8983 328.3555 24.2211 0.1144 2981 +2983 2 619.635 327.9322 22.9083 0.1144 2982 +2984 2 620.2768 327.6416 19.88 0.1144 2983 +2985 2 589.8601 356.2164 19.459 0.1144 2943 +2986 2 588.9804 356.7633 19.9085 0.1144 2985 +2987 2 588.3237 357.6327 20.4977 0.1144 2986 +2988 2 587.7231 358.6005 21.1382 0.1144 2987 +2989 2 587.2083 359.5066 21.9461 0.1144 2988 +2990 2 586.7313 360.3806 22.9451 0.1144 2989 +2991 2 585.9328 361.0453 24.0156 0.1144 2990 +2992 2 584.9364 361.1722 25.159 0.1144 2991 +2993 2 584.4353 360.9778 26.4911 0.1144 2992 +2994 2 583.917 360.7833 27.9318 0.1144 2993 +2995 2 584.0417 361.4708 29.3118 0.1144 2994 +2996 2 584.2705 362.5668 30.3601 0.1144 2995 +2997 2 584.2808 363.6902 31.4149 0.1144 2996 +2998 2 551.6288 346.6526 48.2446 0.1144 2885 +2999 2 550.4951 346.8082 48.0491 0.1144 2998 +3000 2 550.0615 347.8023 47.9783 0.1144 2999 +3001 2 549.4987 348.793 47.8654 0.1144 3000 +3002 2 548.6899 349.587 47.7019 0.1144 3001 +3003 2 547.7998 350.2974 47.5252 0.1144 3002 +3004 2 546.9086 351.0067 47.1226 0.1144 3003 +3005 2 504.2981 315.5999 81.2624 0.1144 2822 +3006 2 505.1801 315.2349 82.1041 0.1144 3005 +3007 2 506.0198 314.9981 83.1348 0.1144 3006 +3008 2 507.1112 314.6675 84.0207 0.1144 3007 +3009 2 508.1007 314.3563 84.875 0.1144 3008 +3010 2 508.9439 314.0726 85.8225 0.1144 3009 +3011 2 509.9849 313.7168 86.5906 0.1144 3010 +3012 2 511.0557 313.5407 87.215 0.1144 3011 +3013 2 512.1002 313.8724 87.8284 0.1144 3012 +3014 2 513.1881 314.1939 88.3896 0.1144 3013 +3015 2 514.3184 314.2854 88.9134 0.1144 3014 +3016 2 515.4509 314.3586 89.4281 0.1144 3015 +3017 2 516.5835 314.4318 89.9766 0.1144 3016 +3018 2 517.7161 314.505 90.5551 0.1144 3017 +3019 2 518.6267 314.7018 91.329 0.1144 3018 +3020 2 519.4526 314.9249 92.2782 0.1144 3019 +3021 2 520.2752 315.1491 93.322 0.1144 3020 +3022 2 521.37 315.4019 94.1808 0.1144 3021 +3023 2 522.4865 315.6502 94.8077 0.1144 3022 +3024 2 523.6031 315.8984 95.2277 0.1144 3023 +3025 2 524.7196 316.1467 95.4682 0.1144 3024 +3026 2 525.8362 316.3949 95.585 0.1144 3025 +3027 2 526.9527 316.6432 95.6357 0.1144 3026 +3028 2 528.0693 316.8914 95.6726 0.1144 3027 +3029 2 529.1858 317.1397 95.7018 0.1144 3028 +3030 2 530.3023 317.3879 95.7146 0.1144 3029 +3031 2 531.4177 317.6373 95.7012 0.1144 3030 +3032 2 532.524 317.8856 95.7006 0.1144 3031 +3033 2 533.6096 318.1315 95.7303 0.1144 3032 +3034 2 534.2377 318.7962 95.5654 0.1144 3033 +3035 2 534.8589 319.645 95.1885 0.1144 3034 +3036 2 535.5522 320.4882 94.6935 0.1144 3035 +3037 2 536.4044 321.2455 94.2284 0.1144 3036 +3038 2 537.4867 321.5258 93.7322 0.1144 3037 +3039 2 538.5986 321.5624 93.2005 0.1144 3038 +3040 2 539.7346 321.6196 92.7186 0.1144 3039 +3041 2 540.8718 321.6779 92.2656 0.1144 3040 +3042 2 541.8121 322.3094 91.7781 0.1144 3041 +3043 2 542.7285 322.9718 91.2475 0.1144 3042 +3044 2 543.6002 323.6582 90.6632 0.1144 3043 +3045 2 544.3724 324.4087 90.0158 0.1144 3044 +3046 2 545.108 325.1545 89.3108 0.1144 3045 +3047 2 546.0232 325.4119 87.5132 0.1144 3046 +3048 2 533.692 318.0755 96.9741 0.1144 3033 +3049 2 534.6232 317.4474 96.5045 0.1144 3048 +3050 2 535.3176 316.6203 96.271 0.1144 3049 +3051 2 535.9617 315.76 95.8622 0.1144 3050 +3052 2 536.6138 314.9135 95.3148 0.1144 3051 +3053 2 537.5702 314.3277 94.7719 0.1144 3052 +3054 2 538.5712 313.7786 94.2542 0.1144 3053 +3055 2 539.5722 313.2306 93.7418 0.1144 3054 +3056 2 540.6578 313.305 93.1764 0.1144 3055 +3057 2 541.6932 313.6448 92.5772 0.1144 3056 +3058 2 542.6724 314.1252 91.961 0.1144 3057 +3059 2 543.6345 314.7075 91.3886 0.1144 3058 +3060 2 544.4147 315.3711 90.0007 0.1144 3059 +3061 2 443.5849 323.0793 39.2686 0.1144 2373 +3062 2 444.4108 323.6502 38.5151 0.1144 3061 +3063 2 445.3478 324.2485 37.8003 0.1144 3062 +3064 2 446.263 324.9235 37.2047 0.1144 3063 +3065 2 447.1244 325.6613 36.7189 0.1144 3064 +3066 2 448.1117 326.2127 36.3258 0.1144 3065 +3067 2 449.2213 326.4553 35.999 0.1144 3066 +3068 2 450.3287 326.7413 35.7414 0.1144 3067 +3069 2 451.2199 327.4425 35.5057 0.1144 3068 +3070 2 451.8125 328.4138 35.2612 0.1144 3069 +3071 2 452.3971 329.3965 35.0 0.1144 3070 +3072 2 453.0892 330.3025 34.6923 0.1144 3071 +3073 2 453.8019 331.1342 34.2574 0.1144 3072 +3074 2 454.4574 331.903 33.6552 0.1144 3073 +3075 2 455.1095 332.7507 32.9904 0.1144 3074 +3076 2 455.6781 333.7311 32.3977 0.1144 3075 +3077 2 456.0728 334.7985 31.8965 0.1144 3076 +3078 2 456.2878 335.9104 31.4658 0.1144 3077 +3079 2 456.488 337.0155 31.0929 0.1144 3078 +3080 2 457.2648 337.806 30.7647 0.1144 3079 +3081 2 458.3779 338.0371 30.5242 0.1144 3080 +3082 2 459.4178 338.505 30.3965 0.1144 3081 +3083 2 460.1088 339.4088 30.3643 0.1144 3082 +3084 2 460.714 340.3789 30.3755 0.1144 3083 +3085 2 461.596 341.1065 30.403 0.1144 3084 +3086 2 462.724 341.2849 30.4284 0.1144 3085 +3087 2 463.8634 341.389 30.4354 0.1144 3086 +3088 2 464.8816 341.9084 30.4178 0.1144 3087 +3089 2 465.8597 342.5022 30.3794 0.1144 3088 +3090 2 466.9877 342.6886 30.3246 0.1144 3089 +3091 2 468.0401 342.2425 30.254 0.1144 3090 +3092 2 469.1498 341.9736 30.1493 0.1144 3091 +3093 2 469.8316 342.8431 29.9435 0.1144 3092 +3094 2 470.8281 343.4059 29.7727 0.1144 3093 +3095 2 471.9 343.2 29.5218 0.1144 3094 +3096 2 472.3828 343.0067 29.3387 0.1144 3095 +3097 2 473.3014 342.3775 29.2356 0.1144 3096 +3098 2 474.2646 341.9748 29.2762 0.1144 3097 +3099 2 475.3938 341.8936 29.4154 0.1144 3098 +3100 2 476.4657 341.5549 29.5823 0.1144 3099 +3101 2 477.3855 340.912 29.8281 0.1144 3100 +3102 2 478.0456 340.0231 30.1451 0.1144 3101 +3103 2 478.3773 338.9455 30.4685 0.1144 3102 +3104 2 478.9322 337.9891 30.8014 0.1144 3103 +3105 2 479.9572 337.6276 31.1732 0.1144 3104 +3106 2 481.0875 337.4972 31.584 0.1144 3105 +3107 2 482.1823 337.3599 32.0886 0.1144 3106 +3108 2 483.2073 337.0235 32.6973 0.1144 3107 +3109 2 484.23 336.5556 33.3262 0.1144 3108 +3110 2 485.294 336.2902 34.0049 0.1144 3109 +3111 2 486.1828 336.725 34.7782 0.1144 3110 +3112 2 487.0157 337.4159 35.5603 0.1144 3111 +3113 2 487.9835 336.9709 36.2877 0.1144 3112 +3114 2 488.8026 336.2696 37.0048 0.1144 3113 +3115 2 489.6949 335.5569 37.5995 0.1144 3114 +3116 2 490.6616 335.0776 38.1973 0.1144 3115 +3117 2 491.0025 335.2595 38.64 0.1144 3116 +3118 2 491.9864 335.8429 39.2266 0.1144 3117 +3119 2 492.9279 336.4939 39.4537 0.1144 3118 +3120 2 493.7847 337.2455 39.7883 0.1144 3119 +3121 2 494.5569 338.0646 40.266 0.1144 3120 +3122 2 495.2879 338.9008 40.8957 0.1144 3121 +3123 2 496.067 339.6158 41.7113 0.1144 3122 +3124 2 496.8644 339.9636 42.7736 0.1144 3123 +3125 2 497.8654 340.1364 43.9258 0.1144 3124 +3126 2 498.9121 340.4166 45.0629 0.1144 3125 +3127 2 499.737 340.8045 46.2759 0.1144 3126 +3128 2 499.7221 341.0207 46.772 0.1144 3127 +3129 2 499.6443 342.1601 47.3623 0.1144 3128 +3130 2 499.6042 343.2972 47.6036 0.1144 3129 +3131 2 499.6054 344.4046 47.9811 0.1144 3130 +3132 2 500.3467 345.0487 48.5349 0.1144 3131 +3133 2 501.0548 345.8712 49.1484 0.1144 3132 +3134 2 501.7573 346.7178 49.7756 0.1144 3133 +3135 2 502.4837 347.5838 50.3415 0.1144 3134 +3136 2 503.1781 348.491 50.7758 0.1144 3135 +3137 2 503.8439 349.4051 51.0686 0.1144 3136 +3138 2 504.528 350.3077 51.2817 0.1144 3137 +3139 2 504.814 351.3567 51.6435 0.1144 3138 +3140 2 505.0874 352.3875 52.1917 0.1144 3139 +3141 2 505.6983 353.1311 52.9505 0.1144 3140 +3142 2 506.4351 353.8804 53.7902 0.1144 3141 +3143 2 507.2302 354.6286 54.6129 0.1144 3142 +3144 2 508.2254 355.093 55.3624 0.1144 3143 +3145 2 509.3054 355.339 56.6591 0.1144 3144 +3146 2 500.357 341.4989 47.46 0.1144 3127 +3147 2 501.0812 342.2962 48.5458 0.1144 3146 +3148 2 501.9986 342.9346 49.4914 0.1144 3147 +3149 2 503.0568 343.2904 50.337 0.1144 3148 +3150 2 504.0967 343.4711 51.1739 0.1144 3149 +3151 2 504.6916 344.2067 52.0618 0.1144 3150 +3152 2 505.1092 345.2432 52.8517 0.1144 3151 +3153 2 506.0232 345.9296 53.4912 0.1144 3152 +3154 2 507.0986 346.3094 54.0532 0.1144 3153 +3155 2 508.1579 346.6846 54.5992 0.1144 3154 +3156 2 509.072 347.3298 55.1424 0.1144 3155 +3157 2 509.6451 348.2416 55.7469 0.1144 3156 +3158 2 510.0158 349.23 56.4365 0.1144 3157 +3159 2 510.4734 350.2459 57.1262 0.1144 3158 +3160 2 511.0237 351.2458 57.7399 0.1144 3159 +3161 2 511.8897 351.9928 58.2798 0.1144 3160 +3162 2 512.8861 352.535 58.8297 0.1144 3161 +3163 2 513.4032 353.0155 59.4283 0.1144 3162 +3164 2 514.1742 353.758 60.1555 0.1144 3163 +3165 2 514.8423 354.5542 61.0081 0.1144 3164 +3166 2 515.1466 355.4442 62.004 0.1144 3165 +3167 2 515.4017 356.2004 63.2089 0.1144 3166 +3168 2 516.2277 356.7095 64.4039 0.1144 3167 +3169 2 517.0514 357.349 65.506 0.1144 3168 +3170 2 517.4232 358.3649 66.642 0.1144 3169 +3171 2 518.0055 359.1817 67.8975 0.1144 3170 +3172 2 518.3533 359.8738 69.3739 0.1144 3171 +3173 2 518.3693 360.686 71.0276 0.1144 3172 +3174 2 518.5821 360.4916 72.9375 0.1144 3173 +3175 2 518.5981 359.8784 74.9431 0.1144 3174 +3176 2 519.0568 359.1027 76.8877 0.1144 3175 +3177 2 519.2845 358.6543 78.8144 0.1144 3176 +3178 2 519.2845 358.6543 80.8069 0.1144 3177 +3179 2 519.3852 358.5273 82.7968 0.1144 3178 +3180 2 519.694 358.1361 84.6944 0.1144 3179 +3181 2 520.6939 357.8112 86.2624 0.1144 3180 +3182 2 521.7052 357.4886 87.5266 0.1144 3181 +3183 2 522.7931 357.5412 88.4794 0.1144 3182 +3184 2 523.8799 357.7116 89.1528 0.1144 3183 +3185 2 524.4142 357.7952 90.937 0.1144 3184 +3186 2 525.5067 357.8272 91.7851 0.1144 3185 +3187 2 526.6015 357.6899 92.1514 0.1144 3186 +3188 2 527.6952 357.5286 92.5646 0.1144 3187 +3189 2 528.7877 357.3684 92.99 0.1144 3188 +3190 2 529.8768 357.4439 93.3142 0.1144 3189 +3191 2 530.9601 357.7563 93.4553 0.1144 3190 +3192 2 532.0378 358.0869 93.4531 0.1144 3191 +3193 2 533.0319 358.6497 93.4354 0.1144 3192 +3194 2 534.0261 359.2137 93.4172 0.1144 3193 +3195 2 535.0202 359.7766 93.41 0.1144 3194 +3196 2 536.0178 360.3337 93.4181 0.1144 3195 +3197 2 537.0325 360.8622 93.4147 0.1144 3196 +3198 2 538.0472 361.3919 93.3806 0.1144 3197 +3199 2 538.9418 362.0874 93.2994 0.1144 3198 +3200 2 539.7735 362.8734 93.1714 0.1144 3199 +3201 2 540.6155 363.6387 92.9732 0.1144 3200 +3202 2 541.4861 364.3537 92.6537 0.1144 3201 +3203 2 542.3567 365.0687 92.2242 0.1144 3202 +3204 2 542.4619 365.2906 92.6719 0.1144 3203 +3205 2 542.947 366.3065 93.4268 0.1144 3204 +3206 2 543.4309 367.3224 93.7443 0.1144 3205 +3207 2 544.3198 367.9882 94.1335 0.1144 3206 +3208 2 545.2132 368.6483 94.5535 0.1144 3207 +3209 2 546.1067 369.3095 94.9746 0.1144 3208 +3210 2 547.0002 369.9696 95.3702 0.1144 3209 +3211 2 547.7964 370.7887 95.6054 0.1144 3210 +3212 2 548.5457 371.6387 95.6782 0.1144 3211 +3213 2 549.2962 372.4887 95.4528 0.1144 3212 +3214 2 543.3291 365.611 91.7616 0.1144 3203 +3215 2 544.3289 366.1669 91.2526 0.1144 3214 +3216 2 545.1732 366.795 90.578 0.1144 3215 +3217 2 545.5919 367.3887 89.6092 0.1144 3216 +3218 2 546.093 367.8143 88.4167 0.1144 3217 +3219 2 546.8126 368.1655 87.1298 0.1144 3218 +3220 2 547.674 368.5991 85.9102 0.1144 3219 +3221 2 548.6052 369.0876 84.8649 0.1144 3220 +3222 2 549.4689 369.774 84.1596 0.1144 3221 +3223 2 550.2377 370.5896 83.8572 0.1144 3222 +3224 2 550.455 371.6421 83.8068 0.1144 3223 +3225 2 550.455 372.7861 83.8975 0.1144 3224 +3226 2 550.4653 373.9267 84.0921 0.1144 3225 +3227 2 550.5065 375.0032 84.4348 0.1144 3226 +3228 2 550.6884 376.098 84.814 0.1144 3227 +3229 2 550.971 377.2043 85.1418 0.1144 3228 +3230 2 551.2719 378.3082 85.4224 0.1144 3229 +3231 2 551.5979 379.4042 85.6626 0.1144 3230 +3232 2 551.9011 380.4761 85.9398 0.1144 3231 +3233 2 552.3015 381.421 86.3204 0.1144 3232 +3234 2 553.0256 382.2058 86.7191 0.1144 3233 +3235 2 553.545 383.2022 86.9896 0.1144 3234 +3236 2 554.0266 384.2399 87.1032 0.1144 3235 +3237 2 554.4899 385.2843 87.0484 0.1144 3236 +3238 2 554.8617 386.3517 86.7821 0.1144 3237 +3239 2 555.1203 387.403 86.266 0.1144 3238 +3240 2 555.3182 388.499 85.6036 0.1144 3239 +3241 2 555.7952 389.5251 84.8481 0.1144 3240 +3242 2 556.3913 390.4998 84.0689 0.1144 3241 +3243 2 556.691 391.0844 82.9937 0.1144 3242 +3244 2 557.2252 391.4551 81.7071 0.1144 3243 +3245 2 558.0157 391.9436 80.411 0.1144 3244 +3246 2 558.4276 391.9047 77.2248 0.1144 3245 +3247 2 523.9577 357.8901 89.4762 0.1144 3184 +3248 2 524.3753 358.8476 89.4286 0.1144 3247 +3249 2 525.0091 359.7079 89.2318 0.1144 3248 +3250 2 525.8636 360.4687 89.033 0.1144 3249 +3251 2 526.717 361.2306 88.8628 0.1144 3250 +3252 2 527.5705 361.9913 88.7415 0.1144 3251 +3253 2 528.425 362.7532 88.688 0.1144 3252 +3254 2 529.3585 363.3882 88.6878 0.1144 3253 +3255 2 530.4076 363.84 88.7018 0.1144 3254 +3256 2 531.4566 364.2931 88.7228 0.1144 3255 +3257 2 532.5057 364.745 88.7608 0.1144 3256 +3258 2 533.5181 365.1671 88.926 0.1144 3257 +3259 2 534.51 365.5698 89.2508 0.1144 3258 +3260 2 535.4927 366.064 89.5479 0.1144 3259 +3261 2 536.4639 366.6131 89.7607 0.1144 3260 +3262 2 537.3951 367.1645 90.095 0.1144 3261 +3263 2 538.0861 368.0465 90.4294 0.1144 3262 +3264 2 538.7416 368.9766 90.7371 0.1144 3263 +3265 2 539.7014 369.5852 91.0199 0.1144 3264 +3266 2 540.675 370.1778 91.3055 0.1144 3265 +3267 2 541.5547 370.8882 91.5771 0.1144 3266 +3268 2 542.3269 371.7325 91.8053 0.1144 3267 +3269 2 543.1003 372.5756 92.0125 0.1144 3268 +3270 2 543.8141 373.2254 92.3392 0.1144 3269 +3271 2 544.4605 373.6613 92.8892 0.1144 3270 +3272 2 545.4295 373.9599 93.3299 0.1144 3271 +3273 2 546.5483 374.1418 93.5346 0.1144 3272 +3274 2 547.6717 374.2996 93.5225 0.1144 3273 +3275 2 548.794 374.4575 93.3218 0.1144 3274 +3276 2 549.8876 374.6039 92.9174 0.1144 3275 +3277 2 550.9676 374.7469 92.363 0.1144 3276 +3278 2 551.8462 374.3385 91.7146 0.1144 3277 +3279 2 552.6447 373.7162 91.021 0.1144 3278 +3280 2 553.696 373.556 90.5027 0.1144 3279 +3281 2 554.8366 373.6075 90.169 0.1144 3280 +3282 2 555.9783 373.6773 89.9808 0.1144 3281 +3283 2 557.12 373.7482 89.9055 0.1144 3282 +3284 2 558.2617 373.818 89.9091 0.1144 3283 +3285 2 559.4034 373.8889 89.9528 0.1144 3284 +3286 2 560.5451 373.9599 90.0004 0.1144 3285 +3287 2 561.6868 374.0297 90.0491 0.1144 3286 +3288 2 562.8286 374.1006 90.1023 0.1144 3287 +3289 2 563.9703 374.1704 90.162 0.1144 3288 +3290 2 565.112 374.2413 90.2306 0.1144 3289 +3291 2 566.2537 374.3122 90.3118 0.1144 3290 +3292 2 567.3954 374.382 90.4114 0.1144 3291 +3293 2 568.5371 374.4529 90.536 0.1144 3292 +3294 2 569.6788 374.5227 90.6923 0.1144 3293 +3295 2 570.8205 374.5948 90.8858 0.1144 3294 +3296 2 571.9474 374.6165 91.177 0.1144 3295 +3297 2 573.0651 374.6188 91.5746 0.1144 3296 +3298 2 574.1816 374.62 92.0581 0.1144 3297 +3299 2 575.2993 374.6211 92.6058 0.1144 3298 +3300 2 576.4158 374.6211 93.1972 0.1144 3299 +3301 2 577.5324 374.6222 93.816 0.1144 3300 +3302 2 578.6489 374.6222 94.4482 0.1144 3301 +3303 2 579.7655 374.6234 95.0902 0.1144 3302 +3304 2 580.8832 374.6234 95.7421 0.1144 3303 +3305 2 581.9997 374.6245 96.4018 0.1144 3304 +3306 2 583.011 374.8854 97.1298 0.1144 3305 +3307 2 584.0326 375.1656 97.9023 0.1144 3306 +3308 2 585.132 375.2572 98.6448 0.1144 3307 +3309 2 586.2474 375.3075 99.3423 0.1144 3308 +3310 2 587.3639 375.3567 99.995 0.1144 3309 +3311 2 588.4793 375.407 100.6026 0.1144 3310 +3312 2 589.5947 375.4574 101.1632 0.1144 3311 +3313 2 590.7113 375.5077 101.684 0.1144 3312 +3314 2 591.8267 375.558 102.1703 0.1144 3313 +3315 2 592.9421 375.6072 102.608 0.1144 3314 +3316 2 594.0586 375.6587 102.9756 0.1144 3315 +3317 2 595.174 375.7079 103.2298 0.1144 3316 +3318 2 596.2894 375.7582 103.3805 0.1144 3317 +3319 2 597.406 375.8086 103.4393 0.1144 3318 +3320 2 597.9253 375.8212 103.0431 0.1144 3319 +3321 2 598.574 375.8509 102.2904 0.1144 3320 +3322 2 599.615 376.05 100.4158 0.1144 3321 +3323 2 513.0829 353.3827 56.5412 0.1144 3162 +3324 2 513.3586 354.4524 56.5236 0.1144 3323 +3325 2 514.0312 355.3241 56.4948 0.1144 3324 +3326 2 514.8446 356.1203 56.5275 0.1144 3325 +3327 2 515.8525 356.6306 56.6656 0.1144 3326 +3328 2 516.913 356.9715 56.9859 0.1144 3327 +3329 2 517.9151 357.4336 57.4801 0.1144 3328 +3330 2 518.6541 357.9873 58.235 0.1144 3329 +3331 2 519.4183 358.5342 59.1573 0.1144 3330 +3332 2 520.1265 359.3887 60.023 0.1144 3331 +3333 2 520.83 360.2628 60.8042 0.1144 3332 +3334 2 521.553 361.1253 61.4914 0.1144 3333 +3335 2 522.3847 361.9033 62.0645 0.1144 3334 +3336 2 523.2221 362.6766 62.5534 0.1144 3335 +3337 2 524.0035 363.5026 63.0165 0.1144 3336 +3338 2 524.7631 364.3491 63.4964 0.1144 3337 +3339 2 525.6428 364.7816 64.1586 0.1144 3338 +3340 2 526.5111 365.3959 64.9001 0.1144 3339 +3341 2 527.368 366.0617 65.6673 0.1144 3340 +3342 2 528.2981 366.6383 66.4157 0.1144 3341 +3343 2 529.2636 367.1714 67.1012 0.1144 3342 +3344 2 530.1868 367.4986 67.7936 0.1144 3343 +3345 2 531.1581 367.9722 68.306 0.1144 3344 +3346 2 532.2986 368.0637 68.5966 0.1144 3345 +3347 2 533.3557 368.4984 68.7019 0.1144 3346 +3348 2 534.3006 368.6597 68.5787 0.1144 3347 +3349 2 534.6759 368.0145 68.1024 0.1144 3348 +3350 2 535.1552 367.1176 67.7692 0.1144 3349 +3351 2 535.9754 366.4747 67.4321 0.1144 3350 +3352 2 536.9112 365.9038 67.0359 0.1144 3351 +3353 2 537.7532 365.8146 66.495 0.1144 3352 +3354 2 538.6993 366.0102 65.931 0.1144 3353 +3355 2 539.5939 366.4175 65.7636 0.1144 3354 +3356 2 540.4988 366.9677 65.8428 0.1144 3355 +3357 2 541.3362 367.7411 65.982 0.1144 3356 +3358 2 541.9906 368.5751 66.0108 0.1144 3357 +3359 2 542.1084 369.5086 66.757 0.1144 3358 +3360 2 491.0689 334.9849 38.6582 0.1144 3116 +3361 2 492.0893 334.4736 39.0583 0.1144 3360 +3362 2 492.7494 333.5469 39.4416 0.1144 3361 +3363 2 493.2081 332.5185 39.8538 0.1144 3362 +3364 2 494.0433 331.7943 40.3357 0.1144 3363 +3365 2 495.1392 331.514 40.822 0.1144 3364 +3366 2 496.0979 331.0278 41.4019 0.1144 3365 +3367 2 497.0131 330.378 41.9745 0.1144 3366 +3368 2 497.8928 329.6493 42.4726 0.1144 3367 +3369 2 498.0187 328.5557 42.9932 0.1144 3368 +3370 2 498.5072 327.5741 43.5243 0.1144 3369 +3371 2 499.2153 326.7092 44.0252 0.1144 3370 +3372 2 500.2712 326.2688 44.4002 0.1144 3371 +3373 2 500.468 326.4267 44.5088 0.1144 3372 +3374 2 501.4884 326.9049 43.6808 0.1144 3373 +3375 2 502.5649 327.1016 43.3048 0.1144 3374 +3376 2 503.662 327.0376 42.8532 0.1144 3375 +3377 2 504.7591 326.8259 42.3864 0.1144 3376 +3378 2 505.8562 326.5479 41.958 0.1144 3377 +3379 2 506.9808 326.3638 41.6083 0.1144 3378 +3380 2 508.1248 326.334 41.3588 0.1144 3379 +3381 2 509.2665 326.3981 41.197 0.1144 3380 +3382 2 510.3853 326.6349 41.0917 0.1144 3381 +3383 2 511.5076 326.8591 41.0158 0.1144 3382 +3384 2 512.6447 326.9849 40.9455 0.1144 3383 +3385 2 513.783 326.8911 40.8498 0.1144 3384 +3386 2 514.8995 326.6543 40.7137 0.1144 3385 +3387 2 516.0001 326.3512 40.546 0.1144 3386 +3388 2 517.0754 325.9599 40.3679 0.1144 3387 +3389 2 518.1016 325.4566 40.182 0.1144 3388 +3390 2 519.1689 325.7048 39.8801 0.1144 3389 +3391 2 520.1459 326.2608 39.5349 0.1144 3390 +3392 2 521.2201 326.6532 39.2221 0.1144 3391 +3393 2 522.3412 326.8602 38.9169 0.1144 3392 +3394 2 523.4464 326.6692 38.5734 0.1144 3393 +3395 2 524.508 326.2436 38.2788 0.1144 3394 +3396 2 525.6028 325.9245 37.9834 0.1144 3395 +3397 2 526.7216 325.7174 37.6681 0.1144 3396 +3398 2 527.8645 325.6968 37.3778 0.1144 3397 +3399 2 529.0085 325.6888 37.1101 0.1144 3398 +3400 2 530.1319 325.6213 36.8021 0.1144 3399 +3401 2 531.0448 325.6968 35.56 0.1144 3400 +3402 2 501.0377 325.8821 44.7698 0.1144 3372 +3403 2 501.9883 325.2735 45.0982 0.1144 3402 +3404 2 503.0385 324.8205 45.3244 0.1144 3403 +3405 2 504.1814 324.8663 45.4633 0.1144 3404 +3406 2 505.3002 325.1065 45.5417 0.1144 3405 +3407 2 506.4179 325.3536 45.5792 0.1144 3406 +3408 2 507.5573 325.2541 45.5801 0.1144 3407 +3409 2 508.4325 324.5173 45.563 0.1144 3408 +3410 2 509.2802 323.752 45.5224 0.1144 3409 +3411 2 510.2515 323.1491 45.4672 0.1144 3410 +3412 2 511.265 322.6183 45.4168 0.1144 3411 +3413 2 512.369 322.3209 45.3768 0.1144 3412 +3414 2 513.2922 321.6459 45.3508 0.1144 3413 +3415 2 513.6526 320.5591 45.3393 0.1144 3414 +3416 2 513.8917 319.4506 45.2906 0.1144 3415 +3417 2 514.228 318.3752 45.192 0.1144 3416 +3418 2 514.8881 317.6488 43.874 0.1144 3417 +3419 2 515.5916 316.7896 43.2555 0.1144 3418 +3420 2 516.3536 315.9694 42.9772 0.1144 3419 +3421 2 517.1715 315.18 42.7 0.1144 3420 +3422 2 517.4873 314.0806 42.4743 0.1144 3421 +3423 2 517.9712 313.043 42.2985 0.1144 3422 +3424 2 518.9058 312.3852 42.161 0.1144 3423 +3425 2 519.7043 311.5661 42.0546 0.1144 3424 +3426 2 520.3804 310.6418 41.9619 0.1144 3425 +3427 2 521.473 310.3111 41.8488 0.1144 3426 +3428 2 522.5117 309.9611 41.6349 0.1144 3427 +3429 2 523.38 309.5664 41.2569 0.1144 3428 +3430 2 523.4029 309.3067 41.0455 0.1144 3429 +3431 2 523.6363 308.2428 41.0676 0.1144 3430 +3432 2 524.3421 307.3997 41.2518 0.1144 3431 +3433 2 525.3271 306.8883 41.5187 0.1144 3432 +3434 2 525.7424 305.8232 41.7642 0.1144 3433 +3435 2 526.3727 304.9572 41.9714 0.1144 3434 +3436 2 527.4698 304.7673 42.1537 0.1144 3435 +3437 2 528.3621 304.1713 42.3027 0.1144 3436 +3438 2 529.1606 303.4597 42.2484 0.1144 3437 +3439 2 530.0346 302.7482 42.1448 0.1144 3438 +3440 2 530.911 302.0194 42.0997 0.1144 3439 +3441 2 531.5413 301.15 42.1618 0.1144 3440 +3442 2 532.0584 300.2176 42.287 0.1144 3441 +3443 2 532.9942 299.5656 42.3998 0.1144 3442 +3444 2 533.9963 299.0153 42.499 0.1144 3443 +3445 2 535.0591 298.6412 42.581 0.1144 3444 +3446 2 536.0441 298.1733 42.6667 0.1144 3445 +3447 2 536.7591 297.321 42.6916 0.1144 3446 +3448 2 537.2647 296.3223 42.5659 0.1144 3447 +3449 2 537.6914 295.3499 42.2523 0.1144 3448 +3450 2 538.3081 294.5514 41.7816 0.1144 3449 +3451 2 539.0173 293.7163 41.3207 0.1144 3450 +3452 2 539.6477 292.7633 40.9688 0.1144 3451 +3453 2 540.1911 291.7772 40.6832 0.1144 3452 +3454 2 540.5469 290.711 40.5334 0.1144 3453 +3455 2 540.4679 289.6837 40.6448 0.1144 3454 +3456 2 540.5228 288.5671 40.8271 0.1144 3455 +3457 2 540.7848 287.4643 40.917 0.1144 3456 +3458 2 541.0971 286.3707 40.9909 0.1144 3457 +3459 2 541.5399 285.3239 41.0452 0.1144 3458 +3460 2 542.0238 284.3023 40.9536 0.1144 3459 +3461 2 542.566 283.3276 40.7078 0.1144 3460 +3462 2 543.3073 282.4662 40.4088 0.1144 3461 +3463 2 544.1573 281.7008 40.1094 0.1144 3462 +3464 2 545.0874 281.0396 39.7793 0.1144 3463 +3465 2 546.0701 280.4676 39.3974 0.1144 3464 +3466 2 547.0299 279.8602 38.9707 0.1144 3465 +3467 2 547.9268 279.1612 38.5003 0.1144 3466 +3468 2 548.8043 278.4851 37.9193 0.1144 3467 +3469 2 549.5822 277.8787 37.1468 0.1144 3468 +3470 2 549.9551 276.9681 36.2438 0.1144 3469 +3471 2 550.4791 275.9957 35.3651 0.1144 3470 +3472 2 551.138 275.0931 34.5394 0.1144 3471 +3473 2 551.8233 274.2511 33.7322 0.1144 3472 +3474 2 552.6012 273.4755 32.9762 0.1144 3473 +3475 2 553.5839 272.9287 32.3151 0.1144 3474 +3476 2 554.6409 272.6152 31.6896 0.1144 3475 +3477 2 555.6133 272.1221 31.073 0.1144 3476 +3478 2 556.4656 271.4174 30.4965 0.1144 3477 +3479 2 557.3968 270.7745 30.0112 0.1144 3478 +3480 2 558.3681 270.1705 29.6433 0.1144 3479 +3481 2 559.1231 269.3113 29.3714 0.1144 3480 +3482 2 559.686 268.316 29.1673 0.1144 3481 +3483 2 560.2523 267.3219 28.9962 0.1144 3482 +3484 2 560.9215 266.3941 28.8151 0.1144 3483 +3485 2 561.6868 265.5567 28.5586 0.1144 3484 +3486 2 562.4362 264.717 28.2052 0.1144 3485 +3487 2 563.1237 263.8201 27.7811 0.1144 3486 +3488 2 563.7701 262.9095 27.282 0.1144 3487 +3489 2 564.1053 261.8536 26.7206 0.1144 3488 +3490 2 564.2974 260.7748 26.1156 0.1144 3489 +3491 2 564.4141 259.6983 25.4857 0.1144 3490 +3492 2 564.5194 258.6412 24.8411 0.1144 3491 +3493 2 565.3774 257.9102 24.2936 0.1144 3492 +3494 2 566.4505 257.5144 23.9042 0.1144 3493 +3495 2 566.9858 256.5031 23.6448 0.1144 3494 +3496 2 567.1597 255.3728 23.4823 0.1144 3495 +3497 2 567.6825 254.3547 23.3811 0.1144 3496 +3498 2 568.4536 253.5104 23.3055 0.1144 3497 +3499 2 569.3688 252.824 23.2217 0.1144 3498 +3500 2 570.2245 252.7862 23.5234 0.1144 3499 +3501 2 571.3662 252.7268 22.7993 0.1144 3500 +3502 2 572.4725 252.7096 22.4804 0.1144 3501 +3503 2 573.4506 252.983 21.9976 0.1144 3502 +3504 2 574.4813 253.2919 21.4633 0.1144 3503 +3505 2 575.6025 253.3136 20.998 0.1144 3504 +3506 2 576.7167 253.1066 20.6489 0.1144 3505 +3507 2 577.7955 252.7634 20.4354 0.1144 3506 +3508 2 578.7816 252.1982 20.3872 0.1144 3507 +3509 2 579.3937 251.2441 20.5781 0.1144 3508 +3510 2 579.3708 250.1699 21.0475 0.1144 3509 +3511 2 579.6545 249.392 21.8484 0.1144 3510 +3512 2 580.5228 248.8715 22.7683 0.1144 3511 +3513 2 581.5352 248.4345 23.6508 0.1144 3512 +3514 2 581.6096 247.5616 25.76 0.1144 3513 +3515 2 570.0209 251.8482 22.9414 0.1144 3499 +3516 2 570.6821 250.9524 22.6675 0.1144 3515 +3517 2 571.0265 249.8828 22.3393 0.1144 3516 +3518 2 571.0013 248.7399 22.0419 0.1144 3517 +3519 2 571.4372 247.6829 21.7908 0.1144 3518 +3520 2 572.1407 246.7825 21.5429 0.1144 3519 +3521 2 572.6052 245.7495 21.2477 0.1144 3520 +3522 2 573.009 244.697 20.8972 0.1144 3521 +3523 2 573.3945 243.6628 20.4598 0.1144 3522 +3524 2 573.4906 242.552 19.9699 0.1144 3523 +3525 2 573.97 241.543 19.4583 0.1144 3524 +3526 2 574.6472 240.645 18.9678 0.1144 3525 +3527 2 574.7136 239.5342 18.4923 0.1144 3526 +3528 2 575.2181 238.5091 18.122 0.1144 3527 +3529 2 575.8896 237.6088 17.7806 0.1144 3528 +3530 2 576.576 236.6936 17.5416 0.1144 3529 +3531 2 577.5541 236.0552 17.2488 0.1144 3530 +3532 2 578.2451 235.1435 17.1386 0.1144 3531 +3533 2 578.4773 234.0281 17.0679 0.1144 3532 +3534 2 579.2896 233.2238 16.9899 0.1144 3533 +3535 2 580.31 232.7056 16.8918 0.1144 3534 +3536 2 581.152 232.3464 15.96 0.1144 3535 +3537 2 575.6425 236.3984 19.7235 0.1144 3530 +3538 2 574.8211 237.0036 20.6585 0.1144 3537 +3539 2 573.9963 237.4338 21.749 0.1144 3538 +3540 2 573.5158 237.9955 22.9806 0.1144 3539 +3541 2 573.144 238.7528 25.76 0.1144 3540 +3542 2 524.3558 309.0299 39.2109 0.1144 3429 +3543 2 525.3545 308.546 38.2418 0.1144 3542 +3544 2 526.3613 308.117 37.816 0.1144 3543 +3545 2 527.4 307.7829 37.3083 0.1144 3544 +3546 2 528.5086 307.6342 36.7945 0.1144 3545 +3547 2 529.648 307.569 36.3521 0.1144 3546 +3548 2 530.7874 307.5575 35.9727 0.1144 3547 +3549 2 531.9177 307.6594 35.642 0.1144 3548 +3550 2 533.0411 307.847 35.3671 0.1144 3549 +3551 2 534.1656 308.03 35.1296 0.1144 3550 +3552 2 535.2902 308.2199 34.9252 0.1144 3551 +3553 2 536.3758 308.57 34.7444 0.1144 3552 +3554 2 537.4901 308.7953 34.5758 0.1144 3553 +3555 2 538.633 308.7381 34.4574 0.1144 3554 +3556 2 539.7278 309.0688 34.3955 0.1144 3555 +3557 2 539.9897 309.2941 34.3854 0.1144 3556 +3558 2 540.7791 310.1201 34.4204 0.1144 3557 +3559 2 541.5627 310.9529 34.4977 0.1144 3558 +3560 2 542.5065 311.5867 34.6284 0.1144 3559 +3561 2 543.5144 312.0912 34.8365 0.1144 3560 +3562 2 544.5246 312.5705 35.1162 0.1144 3561 +3563 2 545.6251 312.8176 35.4066 0.1144 3562 +3564 2 546.7622 312.9286 35.6555 0.1144 3563 +3565 2 547.8593 313.2386 35.8616 0.1144 3564 +3566 2 548.9106 313.6848 36.0352 0.1144 3565 +3567 2 549.9906 314.0555 36.1824 0.1144 3566 +3568 2 551.1254 314.1252 36.3171 0.1144 3567 +3569 2 552.2694 314.1184 36.4487 0.1144 3568 +3570 2 553.3768 314.3838 36.5834 0.1144 3569 +3571 2 554.427 314.8311 36.7315 0.1144 3570 +3572 2 555.4784 315.2692 36.9102 0.1144 3571 +3573 2 556.5377 315.6834 37.1126 0.1144 3572 +3574 2 557.6371 315.9408 37.3422 0.1144 3573 +3575 2 558.7388 315.7486 37.5838 0.1144 3574 +3576 2 559.869 315.6285 37.7919 0.1144 3575 +3577 2 561.005 315.7177 37.9358 0.1144 3576 +3578 2 562.1479 315.7657 37.9898 0.1144 3577 +3579 2 563.2873 315.7863 37.9271 0.1144 3578 +3580 2 564.3958 315.6822 37.7202 0.1144 3579 +3581 2 565.4758 315.5038 37.3951 0.1144 3580 +3582 2 566.5946 315.5335 37.044 0.1144 3581 +3583 2 567.6642 315.919 36.7562 0.1144 3582 +3584 2 568.5932 316.5826 36.5697 0.1144 3583 +3585 2 569.5015 317.2792 36.4902 0.1144 3584 +3586 2 570.4682 317.889 36.5123 0.1144 3585 +3587 2 571.4417 318.4907 36.6212 0.1144 3586 +3588 2 572.3684 319.1611 36.7984 0.1144 3587 +3589 2 573.2687 319.8601 37.0684 0.1144 3588 +3590 2 574.1725 320.495 37.4931 0.1144 3589 +3591 2 575.1506 320.9892 38.0579 0.1144 3590 +3592 2 576.2717 321.1242 38.675 0.1144 3591 +3593 2 577.3539 320.8279 39.3478 0.1144 3592 +3594 2 578.2325 320.2353 40.1344 0.1144 3593 +3595 2 578.9429 319.5856 41.0578 0.1144 3594 +3596 2 579.8044 319.1829 42.0678 0.1144 3595 +3597 2 580.8774 319.0136 43.0237 0.1144 3596 +3598 2 581.9974 318.8408 43.8564 0.1144 3597 +3599 2 583.0819 318.5239 44.5886 0.1144 3598 +3600 2 584.1802 318.2871 45.2463 0.1144 3599 +3601 2 585.2818 318.1167 45.8651 0.1144 3600 +3602 2 586.3149 317.7792 46.5077 0.1144 3601 +3603 2 587.3193 317.3685 47.1887 0.1144 3602 +3604 2 588.3558 316.9349 47.8514 0.1144 3603 +3605 2 589.4025 316.4899 48.4641 0.1144 3604 +3606 2 590.471 316.1272 49.0636 0.1144 3605 +3607 2 591.5613 315.9305 49.6916 0.1144 3606 +3608 2 592.6515 315.8687 50.3644 0.1144 3607 +3609 2 593.7394 315.9831 51.0768 0.1144 3608 +3610 2 594.8159 316.2233 51.8202 0.1144 3609 +3611 2 595.8776 316.5642 52.5781 0.1144 3610 +3612 2 596.9083 317.0333 53.3266 0.1144 3611 +3613 2 597.9173 317.5595 54.0767 0.1144 3612 +3614 2 598.9057 318.1167 54.8761 0.1144 3613 +3615 2 599.8015 318.7584 55.8146 0.1144 3614 +3616 2 600.632 319.2492 57.0024 0.1144 3615 +3617 2 601.1468 319.5123 58.5281 0.1144 3616 +3618 2 601.1102 320.1919 60.277 0.1144 3617 +3619 2 601.6307 320.2376 62.23 0.1144 3618 +3620 2 602.3469 320.0054 64.2046 0.1144 3619 +3621 2 602.7542 319.2435 66.0699 0.1144 3620 +3622 2 603.0836 318.421 67.7622 0.1144 3621 +3623 2 603.2255 317.6305 69.2913 0.1144 3622 +3624 2 603.46 316.6592 71.96 0.1144 3623 +3625 2 540.0401 309.1008 34.2479 0.1144 3556 +3626 2 541.0251 308.7816 35.0874 0.1144 3625 +3627 2 541.7561 307.9694 35.4743 0.1144 3626 +3628 2 542.1313 307.0404 35.9246 0.1144 3627 +3629 2 541.549 306.139 36.3395 0.1144 3628 +3630 2 540.8866 305.2318 36.7063 0.1144 3629 +3631 2 541.0445 304.2239 37.0443 0.1144 3630 +3632 2 541.4518 303.2321 37.469 0.1144 3631 +3633 2 541.3751 302.1418 37.9176 0.1144 3632 +3634 2 540.659 301.333 38.4409 0.1144 3633 +3635 2 539.8971 300.5013 38.955 0.1144 3634 +3636 2 539.4772 299.4409 39.3904 0.1144 3635 +3637 2 539.1146 298.3712 39.7942 0.1144 3636 +3638 2 538.697 297.3187 40.1478 0.1144 3637 +3639 2 538.1399 296.3669 40.9517 0.1144 3638 +3640 2 515.2084 318.2494 45.2816 0.1144 3417 +3641 2 516.3147 318.334 45.4331 0.1144 3640 +3642 2 517.382 318.739 45.5316 0.1144 3641 +3643 2 518.3224 319.3831 45.5213 0.1144 3642 +3644 2 519.1644 320.1084 45.355 0.1144 3643 +3645 2 520.0544 320.7135 45.0246 0.1144 3644 +3646 2 521.0748 321.1528 44.6102 0.1144 3645 +3647 2 522.0804 321.6894 44.238 0.1144 3646 +3648 2 523.0505 322.2957 43.9592 0.1144 3647 +3649 2 524.063 322.8299 43.7738 0.1144 3648 +3650 2 525.0971 323.3184 43.6657 0.1144 3649 +3651 2 526.1382 323.792 43.6072 0.1144 3650 +3652 2 527.2284 324.1398 43.5655 0.1144 3651 +3653 2 528.3678 324.229 43.5184 0.1144 3652 +3654 2 529.5118 324.2062 43.4585 0.1144 3653 +3655 2 530.6558 324.1902 43.3726 0.1144 3654 +3656 2 531.7758 324.0037 43.23 0.1144 3655 +3657 2 532.8169 323.5678 43.0363 0.1144 3656 +3658 2 533.7607 322.9306 42.8369 0.1144 3657 +3659 2 534.5843 322.1401 42.6642 0.1144 3658 +3660 2 535.4343 321.3748 42.5354 0.1144 3659 +3661 2 536.4102 320.7776 42.4609 0.1144 3660 +3662 2 537.4363 320.272 42.4388 0.1144 3661 +3663 2 538.5002 319.851 42.4609 0.1144 3662 +3664 2 539.6317 319.6839 42.5186 0.1144 3663 +3665 2 540.7745 319.6187 42.6098 0.1144 3664 +3666 2 541.8865 319.351 42.7339 0.1144 3665 +3667 2 542.2297 320.4333 40.6101 0.1144 3666 +3668 2 542.3818 321.4217 39.8566 0.1144 3667 +3669 2 542.3933 322.5096 39.0068 0.1144 3668 +3670 2 542.2171 323.3585 37.9795 0.1144 3669 +3671 2 542.4093 323.9911 36.7814 0.1144 3670 +3672 2 543.3977 324.3846 35.7742 0.1144 3671 +3673 2 544.2305 324.7805 33.6591 0.1144 3672 +3674 2 542.8818 319.0158 42.9117 0.1144 3666 +3675 2 544.0017 319.0582 43.1917 0.1144 3674 +3676 2 545.013 319.5009 43.5728 0.1144 3675 +3677 2 546.1193 319.4574 44.0194 0.1144 3676 +3678 2 547.0711 318.8397 44.4531 0.1144 3677 +3679 2 547.9657 318.1281 44.8353 0.1144 3678 +3680 2 548.8534 317.4074 45.1618 0.1144 3679 +3681 2 549.8247 316.8434 45.5204 0.1144 3680 +3682 2 550.9447 316.7267 45.8973 0.1144 3681 +3683 2 552.0589 316.9074 46.2924 0.1144 3682 +3684 2 553.1217 317.1317 46.7695 0.1144 3683 +3685 2 554.2531 317.0916 47.229 0.1144 3684 +3686 2 555.3708 316.8537 47.6204 0.1144 3685 +3687 2 556.3913 316.3606 47.9816 0.1144 3686 +3688 2 557.3808 315.8492 48.3546 0.1144 3687 +3689 2 558.4859 315.5758 48.6738 0.1144 3688 +3690 2 559.3885 314.8734 48.9112 0.1144 3689 +3691 2 560.441 314.4559 49.1462 0.1144 3690 +3692 2 561.3619 313.7798 49.3394 0.1144 3691 +3693 2 562.3664 313.2318 49.4732 0.1144 3692 +3694 2 563.3022 312.5751 49.5628 0.1144 3693 +3695 2 564.3352 312.0832 49.6311 0.1144 3694 +3696 2 565.4792 312.0832 49.6916 0.1144 3695 +3697 2 566.6232 312.0832 49.7504 0.1144 3696 +3698 2 567.0225 312.7696 49.7288 0.1144 3697 +3699 2 567.6368 313.7157 51.3747 0.1144 3698 +3700 2 568.2237 314.5565 52.0565 0.1144 3699 +3701 2 568.2923 315.0713 53.0435 0.1144 3700 +3702 2 568.5085 315.3047 54.3074 0.1144 3701 +3703 2 569.5816 315.5621 55.4436 0.1144 3702 +3704 2 570.6295 316.0163 56.3928 0.1144 3703 +3705 2 571.5493 316.6649 57.2228 0.1144 3704 +3706 2 572.5068 317.2037 57.9919 0.1144 3705 +3707 2 573.6382 317.2083 58.6617 0.1144 3706 +3708 2 574.6289 316.753 59.3561 0.1144 3707 +3709 2 575.4938 316.141 60.1465 0.1144 3708 +3710 2 576.3564 315.482 60.9874 0.1144 3709 +3711 2 577.2132 314.8219 61.8638 0.1144 3710 +3712 2 578.1707 314.2499 62.7687 0.1144 3711 +3713 2 579.2095 313.7798 63.6222 0.1144 3712 +3714 2 580.0835 313.0648 64.4487 0.1144 3713 +3715 2 580.4473 312.129 65.3682 0.1144 3714 +3716 2 580.4084 311.5913 66.5006 0.1144 3715 +3717 2 580.8088 311.9688 69.44 0.1144 3716 +3718 2 567.4137 311.5512 49.8252 0.1144 3697 +3719 2 568.3518 310.898 49.931 0.1144 3718 +3720 2 569.3208 310.2928 50.0864 0.1144 3719 +3721 2 570.3218 309.7483 50.2992 0.1144 3720 +3722 2 571.2964 309.1557 50.5593 0.1144 3721 +3723 2 572.254 308.5643 50.89 0.1144 3722 +3724 2 573.271 308.2211 51.3408 0.1144 3723 +3725 2 574.3704 308.2508 51.844 0.1144 3724 +3726 2 575.4846 308.4739 52.3099 0.1144 3725 +3727 2 576.608 308.6546 52.7164 0.1144 3726 +3728 2 577.7337 308.5128 53.0869 0.1144 3727 +3729 2 578.7645 308.0243 53.4369 0.1144 3728 +3730 2 579.7723 307.4855 53.7673 0.1144 3729 +3731 2 580.8077 307.0485 54.1355 0.1144 3730 +3732 2 581.8029 307.0771 54.6571 0.1144 3731 +3733 2 582.4882 307.76 55.2465 0.1144 3732 +3734 2 583.5132 307.3734 55.8998 0.1144 3733 +3735 2 584.5291 307.1651 56.6404 0.1144 3734 +3736 2 585.5724 306.8025 57.365 0.1144 3735 +3737 2 586.6478 306.4273 57.9897 0.1144 3736 +3738 2 587.706 306.0189 58.5511 0.1144 3737 +3739 2 588.7402 305.5407 59.0554 0.1144 3738 +3740 2 589.7343 304.9927 59.5406 0.1144 3739 +3741 2 590.7055 304.4699 60.0804 0.1144 3740 +3742 2 591.6825 304.0272 60.7118 0.1144 3741 +3743 2 592.6812 303.6245 61.4104 0.1144 3742 +3744 2 593.7566 303.3453 62.1102 0.1144 3743 +3745 2 594.8869 303.2366 62.7628 0.1144 3744 +3746 2 596.0171 303.1303 63.3822 0.1144 3745 +3747 2 597.1405 302.9552 63.9839 0.1144 3746 +3748 2 598.2651 302.7573 64.5708 0.1144 3747 +3749 2 599.2215 303.2103 65.3027 0.1144 3748 +3750 2 599.3336 304.1988 66.2116 0.1144 3749 +3751 2 599.9273 304.892 67.2988 0.1144 3750 +3752 2 600.8574 305.2512 68.4541 0.1144 3751 +3753 2 601.8801 305.3393 69.613 0.1144 3752 +3754 2 602.9143 305.1643 70.7249 0.1144 3753 +3755 2 603.8924 304.6586 71.7119 0.1144 3754 +3756 2 604.8236 304.0432 72.5648 0.1144 3755 +3757 2 605.5627 303.2401 73.3426 0.1144 3756 +3758 2 606.272 302.4153 74.0692 0.1144 3757 +3759 2 606.9995 301.611 74.7552 0.1144 3758 +3760 2 607.8301 300.8754 75.3718 0.1144 3759 +3761 2 608.7853 300.26 75.8797 0.1144 3760 +3762 2 609.7451 299.6502 76.2958 0.1144 3761 +3763 2 610.6397 298.9386 76.601 0.1144 3762 +3764 2 611.5115 298.1973 76.816 0.1144 3763 +3765 2 612.3363 297.4057 76.9821 0.1144 3764 +3766 2 612.8511 296.391 77.1638 0.1144 3765 +3767 2 613.359 295.3739 77.3685 0.1144 3766 +3768 2 613.883 294.3626 77.5866 0.1144 3767 +3769 2 614.4264 293.3594 77.8112 0.1144 3768 +3770 2 614.9698 292.3561 78.0405 0.1144 3769 +3771 2 615.7603 291.5312 78.2516 0.1144 3770 +3772 2 616.6354 290.7934 78.4454 0.1144 3771 +3773 2 617.5232 290.0726 78.654 0.1144 3772 +3774 2 618.443 289.4091 78.9317 0.1144 3773 +3775 2 619.3616 288.7456 79.2747 0.1144 3774 +3776 2 620.0892 287.9425 80.1402 0.1144 3775 +3777 2 620.7973 287.1177 80.745 0.1144 3776 +3778 2 621.5009 286.2608 81.3826 0.1144 3777 +3779 2 622.2822 285.4703 82.0212 0.1144 3778 +3780 2 623.1345 284.7485 82.6454 0.1144 3779 +3781 2 624.0051 284.046 83.2451 0.1144 3780 +3782 2 624.8791 283.3471 83.8048 0.1144 3781 +3783 2 625.7531 282.6492 84.3371 0.1144 3782 +3784 2 626.6214 281.9285 84.8305 0.1144 3783 +3785 2 627.4794 281.1792 85.2718 0.1144 3784 +3786 2 628.3328 280.4196 85.6727 0.1144 3785 +3787 2 629.1851 279.6588 86.0566 0.1144 3786 +3788 2 630.0363 278.8969 86.4444 0.1144 3787 +3789 2 630.7684 278.111 86.9478 0.1144 3788 +3790 2 631.4114 277.317 87.6117 0.1144 3789 +3791 2 632.0955 276.5437 88.3831 0.1144 3790 +3792 2 632.9775 275.9031 89.1461 0.1144 3791 +3793 2 633.9419 275.3219 89.8517 0.1144 3792 +3794 2 634.9063 274.7396 90.4949 0.1144 3793 +3795 2 635.8707 274.1573 91.0734 0.1144 3794 +3796 2 636.8351 273.5762 91.604 0.1144 3795 +3797 2 637.7914 272.9778 92.1105 0.1144 3796 +3798 2 638.7352 272.3555 92.6117 0.1144 3797 +3799 2 639.6733 271.7229 93.1165 0.1144 3798 +3800 2 640.6766 271.2401 93.6513 0.1144 3799 +3801 2 641.7222 270.8717 94.227 0.1144 3800 +3802 2 642.7724 270.5228 94.836 0.1144 3801 +3803 2 643.8238 270.175 95.4668 0.1144 3802 +3804 2 644.8739 269.8238 96.1089 0.1144 3803 +3805 2 645.7228 269.1466 96.7361 0.1144 3804 +3806 2 646.479 268.3183 97.3372 0.1144 3805 +3807 2 647.2352 267.4889 97.9138 0.1144 3806 +3808 2 647.9902 266.6607 98.4701 0.1144 3807 +3809 2 648.7464 265.8324 99.0102 0.1144 3808 +3810 2 649.5026 265.003 99.5372 0.1144 3809 +3811 2 650.2576 264.1748 100.0527 0.1144 3810 +3812 2 651.0138 263.3465 100.5533 0.1144 3811 +3813 2 651.77 262.5171 101.0321 0.1144 3812 +3814 2 652.525 261.6889 101.4812 0.1144 3813 +3815 2 653.2812 260.8606 101.8942 0.1144 3814 +3816 2 654.0362 260.0312 102.2675 0.1144 3815 +3817 2 655.0395 259.6136 102.5251 0.1144 3816 +3818 2 656.1664 259.4992 102.6418 0.1144 3817 +3819 2 657.2978 259.4272 102.6556 0.1144 3818 +3820 2 658.4372 259.4432 102.657 0.1144 3819 +3821 2 659.5789 259.5084 102.6962 0.1144 3820 +3822 2 660.7183 259.5793 102.7902 0.1144 3821 +3823 2 661.8589 259.6491 102.9493 0.1144 3822 +3824 2 662.9251 259.3368 103.196 0.1144 3823 +3825 2 663.9479 258.8529 103.5194 0.1144 3824 +3826 2 664.9649 258.3575 103.8957 0.1144 3825 +3827 2 665.983 257.8622 104.3101 0.1144 3826 +3828 2 667.0653 257.5716 104.7612 0.1144 3827 +3829 2 668.1784 257.3886 105.2439 0.1144 3828 +3830 2 669.2915 257.217 105.7501 0.1144 3829 +3831 2 670.4057 257.0454 106.2762 0.1144 3830 +3832 2 671.4914 256.7719 106.8295 0.1144 3831 +3833 2 672.1824 255.9917 107.4427 0.1144 3832 +3834 2 672.7761 255.0926 108.0954 0.1144 3833 +3835 2 673.3698 254.1945 108.757 0.1144 3834 +3836 2 673.9624 253.2942 109.3996 0.1144 3835 +3837 2 674.8433 252.6398 109.9543 0.1144 3836 +3838 2 675.969 252.6821 110.2984 0.1144 3837 +3839 2 677.105 252.7611 110.4715 0.1144 3838 +3840 2 678.2398 252.8412 110.5266 0.1144 3839 +3841 2 679.3461 252.5655 110.5577 0.1144 3840 +3842 2 680.3128 251.9683 110.6378 0.1144 3841 +3843 2 681.2806 251.3711 110.7781 0.1144 3842 +3844 2 682.2473 250.774 110.9774 0.1144 3843 +3845 2 683.2082 250.2683 111.4459 0.1144 3844 +3846 2 684.2104 249.7398 111.8678 0.1144 3845 +3847 2 685.2125 249.2112 112.0543 0.1144 3846 +3848 2 686.2112 248.6747 112.2646 0.1144 3847 +3849 2 687.1688 248.0535 112.4536 0.1144 3848 +3850 2 688.084 247.3671 112.5916 0.1144 3849 +3851 2 688.9992 246.6807 112.6824 0.1144 3850 +3852 2 689.9144 245.9943 112.7305 0.1144 3851 +3853 2 690.8147 245.2908 112.7501 0.1144 3852 +3854 2 691.5858 244.4465 112.7538 0.1144 3853 +3855 2 692.3522 243.5965 112.7524 0.1144 3854 +3856 2 693.1176 242.7465 112.7504 0.1144 3855 +3857 2 693.8829 241.8977 112.7476 0.1144 3856 +3858 2 694.6448 241.0431 112.7437 0.1144 3857 +3859 2 695.3701 240.1588 112.7381 0.1144 3858 +3860 2 696.0897 239.2687 112.7305 0.1144 3859 +3861 2 696.8081 238.3787 112.7196 0.1144 3860 +3862 2 697.5265 237.4887 112.7045 0.1144 3861 +3863 2 698.2507 236.6032 112.6835 0.1144 3862 +3864 2 699.0229 235.759 112.6544 0.1144 3863 +3865 2 699.8363 234.9559 112.6132 0.1144 3864 +3866 2 700.6508 234.1528 112.5547 0.1144 3865 +3867 2 701.4653 233.3485 112.4735 0.1144 3866 +3868 2 702.2799 232.5443 112.364 0.1144 3867 +3869 2 703.1138 231.771 112.2173 0.1144 3868 +3870 2 704.1057 231.2379 111.974 0.1144 3869 +3871 2 705.1158 230.7528 111.6436 0.1144 3870 +3872 2 706.126 230.2678 111.2432 0.1144 3871 +3873 2 707.1419 229.7941 110.8022 0.1144 3872 +3874 2 708.1955 229.4075 110.4594 0.1144 3873 +3875 2 709.2445 229.0528 110.164 0.1144 3874 +3876 2 710.3096 228.8126 109.6872 0.1144 3875 +3877 2 711.3209 228.6822 108.9892 0.1144 3876 +3878 2 712.1606 228.3573 108.0649 0.1144 3877 +3879 2 712.8905 227.8654 106.9384 0.1144 3878 +3880 2 713.8823 227.7304 105.7874 0.1144 3879 +3881 2 714.9474 227.5416 104.6671 0.1144 3880 +3882 2 715.7242 226.9582 103.5126 0.1144 3881 +3883 2 716.7789 226.8209 102.4864 0.1144 3882 +3884 2 717.6175 226.3736 101.3947 0.1144 3883 +3885 2 718.3714 225.8176 100.1952 0.1144 3884 +3886 2 719.1241 225.2605 98.9044 0.1144 3885 +3887 2 719.8757 224.7033 97.5615 0.1144 3886 +3888 2 720.6273 224.1462 96.2066 0.1144 3887 +3889 2 721.1902 223.35 94.8889 0.1144 3888 +3890 2 721.3023 222.2712 93.7311 0.1144 3889 +3891 2 721.3755 221.1707 92.715 0.1144 3890 +3892 2 721.4682 220.0713 91.8022 0.1144 3891 +3893 2 721.5974 218.9788 90.9572 0.1144 3892 +3894 2 721.7302 217.8862 90.1468 0.1144 3893 +3895 2 721.8617 216.7926 89.3402 0.1144 3894 +3896 2 721.9944 215.7001 88.5147 0.1144 3895 +3897 2 722.1271 214.6075 87.6686 0.1144 3896 +3898 2 722.2598 213.515 86.8059 0.1144 3897 +3899 2 722.5504 212.5666 85.8446 0.1144 3898 +3900 2 722.9039 211.6995 84.7865 0.1144 3899 +3901 2 723.469 210.8815 83.7094 0.1144 3900 +3902 2 724.4071 210.2844 82.7504 0.1144 3901 +3903 2 725.3543 209.6918 81.9 0.1144 3902 +3904 2 726.3004 209.098 81.1465 0.1144 3903 +3905 2 727.2465 208.5043 80.4765 0.1144 3904 +3906 2 728.1938 207.9117 79.8633 0.1144 3905 +3907 2 729.1398 207.3191 79.2778 0.1144 3906 +3908 2 730.0859 206.7254 78.7016 0.1144 3907 +3909 2 731.0332 206.1328 78.1388 0.1144 3908 +3910 2 731.993 205.5631 77.5844 0.1144 3909 +3911 2 733.0798 205.3217 77.047 0.1144 3910 +3912 2 734.0579 204.7588 76.5635 0.1144 3911 +3913 2 734.9456 204.053 76.1471 0.1144 3912 +3914 2 735.8322 203.3471 75.7924 0.1144 3913 +3915 2 736.72 202.6413 75.1716 0.1144 3914 +3916 2 682.6992 251.0474 111.1869 0.1144 3844 +3917 2 683.6727 251.6354 111.4142 0.1144 3916 +3918 2 684.6474 252.2234 111.6391 0.1144 3917 +3919 2 685.5866 252.8492 111.8485 0.1144 3918 +3920 2 686.1518 253.8227 112.0297 0.1144 3919 +3921 2 686.3748 254.9427 112.1705 0.1144 3920 +3922 2 686.6025 256.0615 112.271 0.1144 3921 +3923 2 686.9079 257.1552 112.3181 0.1144 3922 +3924 2 687.4628 258.1539 112.2842 0.1144 3923 +3925 2 688.0176 259.1538 112.177 0.1144 3924 +3926 2 688.5725 260.1536 112.0022 0.1144 3925 +3927 2 689.1273 261.1535 111.7637 0.1144 3926 +3928 2 689.673 262.1545 111.4551 0.1144 3927 +3929 2 690.158 263.152 111.0228 0.1144 3928 +3930 2 690.5527 264.1176 110.4298 0.1144 3929 +3931 2 690.9485 265.0842 109.7365 0.1144 3930 +3932 2 691.3444 266.0498 109.0018 0.1144 3931 +3933 2 691.739 267.0165 108.2802 0.1144 3932 +3934 2 692.1726 267.9854 107.6664 0.1144 3933 +3935 2 692.7423 268.9647 107.3565 0.1144 3934 +3936 2 693.312 269.944 107.2988 0.1144 3935 +3937 2 693.8818 270.9244 107.4304 0.1144 3936 +3938 2 694.4515 271.9036 107.693 0.1144 3937 +3939 2 695.02 272.8829 108.033 0.1144 3938 +3940 2 695.5898 273.8622 108.4012 0.1144 3939 +3941 2 696.1595 274.8414 108.7626 0.1144 3940 +3942 2 696.7292 275.8218 109.1146 0.1144 3941 +3943 2 697.2989 276.8011 109.4526 0.1144 3942 +3944 2 697.8686 277.7804 109.7706 0.1144 3943 +3945 2 698.4383 278.7596 110.0632 0.1144 3944 +3946 2 699.008 279.7389 110.325 0.1144 3945 +3947 2 699.5251 280.7445 110.5342 0.1144 3946 +3948 2 699.8649 281.8347 110.6342 0.1144 3947 +3949 2 700.2046 282.9249 110.6498 0.1144 3948 +3950 2 700.5433 284.0163 110.6053 0.1144 3949 +3951 2 700.883 285.1065 110.5247 0.1144 3950 +3952 2 701.2228 286.1968 110.43 0.1144 3951 +3953 2 701.5626 287.287 110.3449 0.1144 3952 +3954 2 701.9012 288.3784 110.2909 0.1144 3953 +3955 2 702.241 289.4686 110.2786 0.1144 3954 +3956 2 702.5807 290.5588 110.3192 0.1144 3955 +3957 2 702.9205 291.6491 110.4222 0.1144 3956 +3958 2 703.2179 292.7187 110.6843 0.1144 3957 +3959 2 703.4914 293.7746 111.1337 0.1144 3958 +3960 2 703.7659 294.8305 111.7273 0.1144 3959 +3961 2 704.0393 295.8864 112.4231 0.1144 3960 +3962 2 704.3128 296.9424 113.1816 0.1144 3961 +3963 2 704.5862 297.9983 113.9653 0.1144 3962 +3964 2 704.8596 299.053 114.7395 0.1144 3963 +3965 2 705.133 300.109 115.4866 0.1144 3964 +3966 2 705.4064 301.1649 116.1947 0.1144 3965 +3967 2 705.6798 302.2208 116.846 0.1144 3966 +3968 2 705.9532 303.2767 117.4191 0.1144 3967 +3969 2 706.2267 304.3326 117.8892 0.1144 3968 +3970 2 706.5001 305.3885 118.2325 0.1144 3969 +3971 2 706.9497 306.3357 118.3412 0.1144 3970 +3972 2 707.739 307.0702 118.0609 0.1144 3971 +3973 2 708.5284 307.8058 117.4648 0.1144 3972 +3974 2 709.161 308.5254 116.5399 0.1144 3973 +3975 2 709.7834 309.2449 115.3765 0.1144 3974 +3976 2 710.4068 309.9634 114.0726 0.1144 3975 +3977 2 711.0292 310.6818 112.7213 0.1144 3976 +3978 2 711.6515 311.4014 111.3935 0.1144 3977 +3979 2 712.4123 311.8464 110.0935 0.1144 3978 +3980 2 713.1913 312.2605 108.8598 0.1144 3979 +3981 2 714.1752 312.844 107.9652 0.1144 3980 +3982 2 715.159 313.4274 107.3394 0.1144 3981 +3983 2 716.1154 314.036 106.8819 0.1144 3982 +3984 2 717.0455 314.6675 106.5128 0.1144 3983 +3985 2 717.9755 315.3001 106.2062 0.1144 3984 +3986 2 718.9056 315.9316 105.9344 0.1144 3985 +3987 2 719.7648 316.626 105.6905 0.1144 3986 +3988 2 720.2361 317.6648 105.5807 0.1144 3987 +3989 2 720.7074 318.7035 105.5883 0.1144 3988 +3990 2 721.1776 319.7423 105.6896 0.1144 3989 +3991 2 721.6489 320.7799 105.8568 0.1144 3990 +3992 2 722.1203 321.8186 106.0632 0.1144 3991 +3993 2 722.5916 322.8574 106.286 0.1144 3992 +3994 2 723.0618 323.895 106.5072 0.1144 3993 +3995 2 723.5331 324.9338 106.7262 0.1144 3994 +3996 2 724.0044 325.9725 106.9418 0.1144 3995 +3997 2 724.4758 327.0101 107.1529 0.1144 3996 +3998 2 724.9459 328.0489 107.3576 0.1144 3997 +3999 2 725.4173 329.0876 107.5533 0.1144 3998 +4000 2 725.8886 330.1252 107.7367 0.1144 3999 +4001 2 726.3599 331.164 107.9047 0.1144 4000 +4002 2 726.8301 332.2027 108.0492 0.1144 4001 +4003 2 727.3014 333.2403 108.1472 0.1144 4002 +4004 2 727.7728 334.2791 108.2029 0.1144 4003 +4005 2 728.2441 335.3178 108.2211 0.1144 4004 +4006 2 728.6022 336.3566 108.1766 0.1144 4005 +4007 2 728.4031 337.3999 107.9336 0.1144 4006 +4008 2 728.2029 338.4432 106.962 0.1144 4007 +4009 2 619.8398 288.9172 79.6482 0.1144 3775 +4010 2 620.7824 289.2547 81.625 0.1144 4009 +4011 2 621.6759 289.8804 82.4261 0.1144 4010 +4012 2 622.5534 290.5954 83.3361 0.1144 4011 +4013 2 623.3885 291.3139 84.4024 0.1144 4012 +4014 2 623.8507 291.879 85.7973 0.1144 4013 +4015 2 624.2373 292.4133 87.4768 0.1144 4014 +4016 2 624.6251 292.9464 89.348 0.1144 4015 +4017 2 625.0313 293.5195 91.3464 0.1144 4016 +4018 2 625.4706 294.159 93.3892 0.1144 4017 +4019 2 625.7566 294.4233 95.5044 0.1144 4018 +4020 2 626.4864 294.6143 97.5542 0.1144 4019 +4021 2 627.579 294.7505 99.3485 0.1144 4020 +4022 2 628.6086 294.7974 101.0411 0.1144 4021 +4023 2 629.4391 294.7264 102.8289 0.1144 4022 +4024 2 629.5352 294.6212 104.7838 0.1144 4023 +4025 2 629.4906 293.8913 106.7296 0.1144 4024 +4026 2 629.335 293.0608 108.5958 0.1144 4025 +4027 2 629.351 293.1351 110.4818 0.1144 4026 +4028 2 629.4299 293.1454 114.4405 0.1144 4027 +4029 2 471.9183 343.2961 28.6936 0.1144 3095 +4030 2 472.003 344.3188 27.571 0.1144 4029 +4031 2 472.0304 345.4045 27.0839 0.1144 4030 +4032 2 472.2215 346.4982 26.5712 0.1144 4031 +4033 2 472.8141 347.4305 26.1357 0.1144 4032 +4034 2 473.5451 348.3034 25.7882 0.1144 4033 +4035 2 474.3985 349.0561 25.4649 0.1144 4034 +4036 2 475.4052 349.5698 25.0939 0.1144 4035 +4037 2 476.2724 350.2631 24.6162 0.1144 4036 +4038 2 477.2425 350.5994 23.9604 0.1144 4037 +4039 2 477.6223 349.9519 23.0655 0.1144 4038 +4040 2 477.8602 349.2964 21.9758 0.1144 4039 +4041 2 478.8532 349.2929 21.1096 0.1144 4040 +4042 2 479.9721 349.4577 20.4102 0.1144 4041 +4043 2 480.9296 350.0446 19.8617 0.1144 4042 +4044 2 481.791 350.7893 19.4754 0.1144 4043 +4045 2 482.8344 351.2526 19.2511 0.1144 4044 +4046 2 483.8445 351.7903 19.1306 0.1144 4045 +4047 2 484.675 352.5751 19.0433 0.1144 4046 +4048 2 484.9439 353.6813 18.9748 0.1144 4047 +4049 2 485.6234 354.5988 18.9077 0.1144 4048 +4050 2 486.3396 355.4374 18.9095 0.1144 4049 +4051 2 486.6473 356.5059 18.863 0.1144 4050 +4052 2 487.5728 357.0721 18.621 0.1144 4051 +4053 2 488.5921 357.3192 18.1827 0.1144 4052 +4054 2 489.537 357.7849 17.6057 0.1144 4053 +4055 2 490.5346 358.2779 17.0164 0.1144 4054 +4056 2 491.4109 359.0055 16.4831 0.1144 4055 +4057 2 492.2907 359.7011 16.0149 0.1144 4056 +4058 2 493.2287 360.2364 15.5585 0.1144 4057 +4059 2 494.2057 360.7261 15.1645 0.1144 4058 +4060 2 495.2902 361.0624 14.9218 0.1144 4059 +4061 2 496.4262 361.1722 14.8179 0.1144 4060 +4062 2 497.5473 361.2615 14.8491 0.1144 4061 +4063 2 498.3767 361.7191 15.1093 0.1144 4062 +4064 2 498.7806 362.5222 15.5967 0.1144 4063 +4065 2 499.4864 363.1388 16.0609 0.1144 4064 +4066 2 500.4817 363.5346 16.2681 0.1144 4065 +4067 2 501.3866 364.0242 16.1722 0.1144 4066 +4068 2 502.3922 364.4098 15.8868 0.1144 4067 +4069 2 503.3909 364.9543 15.5529 0.1144 4068 +4070 2 504.3244 365.6121 15.2341 0.1144 4069 +4071 2 505.1424 366.4049 14.9672 0.1144 4070 +4072 2 505.9832 367.1634 14.749 0.1144 4071 +4073 2 506.919 367.8063 14.5244 0.1144 4072 +4074 2 507.9085 368.3497 14.2647 0.1144 4073 +4075 2 508.7002 369.1013 13.9739 0.1144 4074 +4076 2 509.3946 369.9399 13.6018 0.1144 4075 +4077 2 510.3967 370.0623 13.1653 0.1144 4076 +4078 2 511.4778 370.3574 12.805 0.1144 4077 +4079 2 512.4445 370.9626 12.5438 0.1144 4078 +4080 2 513.4318 371.53 12.3314 0.1144 4079 +4081 2 514.3756 372.1718 12.1715 0.1144 4080 +4082 2 514.8652 373.1797 12.118 0.1144 4081 +4083 2 515.3022 374.2356 12.1039 0.1144 4082 +4084 2 516.4016 374.3374 12.0851 0.1144 4083 +4085 2 517.4712 374.0182 11.9702 0.1144 4084 +4086 2 518.6027 373.8592 11.8538 0.1144 4085 +4087 2 519.6586 373.5652 11.8721 0.1144 4086 +4088 2 520.3335 374.0388 11.7179 0.1144 4087 +4089 2 521.3219 374.5994 11.6176 0.1144 4088 +4090 2 522.3698 374.7801 11.5935 0.1144 4089 +4091 2 523.5013 374.676 11.5869 0.1144 4090 +4092 2 524.5663 374.7092 11.4842 0.1144 4091 +4093 2 525.4735 375.1634 11.3674 0.1144 4092 +4094 2 526.0707 376.0637 11.4479 0.1144 4093 +4095 2 526.637 376.8816 11.758 0.1144 4094 +4096 2 527.36 377.6893 12.1334 0.1144 4095 +4097 2 527.7009 378.7441 12.4569 0.1144 4096 +4098 2 528.0956 379.8069 12.7736 0.1144 4097 +4099 2 528.9913 380.4727 13.0733 0.1144 4098 +4100 2 530.0335 380.9383 13.3336 0.1144 4099 +4101 2 530.967 381.5915 13.584 0.1144 4100 +4102 2 531.8914 382.2584 13.909 0.1144 4101 +4103 2 532.9301 382.66 14.3785 0.1144 4102 +4104 2 534.0009 383.0432 14.9278 0.1144 4103 +4105 2 534.8509 383.6987 15.6488 0.1144 4104 +4106 2 535.6014 384.4309 16.5343 0.1144 4105 +4107 2 536.5577 384.6288 17.5847 0.1144 4106 +4108 2 537.513 384.3646 18.7361 0.1144 4107 +4109 2 538.4957 384.1232 19.9292 0.1144 4108 +4110 2 539.4235 384.2822 21.1703 0.1144 4109 +4111 2 539.9932 385.2306 22.2776 0.1144 4110 +4112 2 541.0216 385.5188 23.3105 0.1144 4111 +4113 2 541.7984 385.2992 24.4088 0.1144 4112 +4114 2 541.6851 386.219 25.3322 0.1144 4113 +4115 2 542.1485 387.2554 26.0738 0.1144 4114 +4116 2 543.1312 387.7462 26.7382 0.1144 4115 +4117 2 544.1916 388.1249 27.3028 0.1144 4116 +4118 2 545.1412 388.7472 27.7572 0.1144 4117 +4119 2 546.2783 388.6923 28.1173 0.1144 4118 +4120 2 547.3308 388.2427 28.3982 0.1144 4119 +4121 2 548.4336 388.0448 28.7056 0.1144 4120 +4122 2 548.5503 388.205 28.9523 0.1144 4121 +4123 2 548.9541 389.2643 29.181 0.1144 4122 +4124 2 548.8969 390.3866 29.4367 0.1144 4123 +4125 2 548.9312 391.5203 29.7282 0.1144 4124 +4126 2 549.5639 392.4263 30.0574 0.1144 4125 +4127 2 550.534 392.932 30.4506 0.1144 4126 +4128 2 551.6002 393.1985 30.8921 0.1144 4127 +4129 2 552.7202 393.3564 31.2948 0.1144 4128 +4130 2 553.8241 393.631 31.6226 0.1144 4129 +4131 2 554.8297 394.1618 31.871 0.1144 4130 +4132 2 555.849 394.68 32.0244 0.1144 4131 +4133 2 556.969 394.8974 32.0776 0.1144 4132 +4134 2 558.0855 395.141 32.0421 0.1144 4133 +4135 2 558.8829 395.9315 31.9063 0.1144 4134 +4136 2 559.71 396.706 31.7122 0.1144 4135 +4137 2 560.7316 397.1407 31.4656 0.1144 4136 +4138 2 561.4489 397.7516 31.0915 0.1144 4137 +4139 2 561.8115 398.803 30.8182 0.1144 4138 +4140 2 562.0266 398.8419 28.763 0.1144 4139 +4141 2 563.1226 399.1393 28.3262 0.1144 4140 +4142 2 564.0298 399.7365 28.1218 0.1144 4141 +4143 2 564.8672 400.4343 27.848 0.1144 4142 +4144 2 565.6897 401.1848 27.5812 0.1144 4143 +4145 2 566.5088 401.9501 27.3605 0.1144 4144 +4146 2 567.5338 402.4214 27.2306 0.1144 4145 +4147 2 568.6446 402.6628 27.177 0.1144 4146 +4148 2 569.7818 402.7246 27.1553 0.1144 4147 +4149 2 570.9086 402.863 27.1308 0.1144 4148 +4150 2 571.9931 403.1971 27.0483 0.1144 4149 +4151 2 573.0227 402.95 26.8927 0.1144 4150 +4152 2 573.9734 402.3356 26.685 0.1144 4151 +4153 2 574.82 401.5737 26.483 0.1144 4152 +4154 2 575.8816 401.5257 26.3179 0.1144 4153 +4155 2 576.735 402.227 26.1534 0.1144 4154 +4156 2 577.7623 402.6834 25.9785 0.1144 4155 +4157 2 578.8205 403.0941 25.8385 0.1144 4156 +4158 2 579.96 403.0632 25.7626 0.1144 4157 +4159 2 580.1075 403.6844 25.8331 0.1144 4158 +4160 2 580.4908 404.7621 25.9988 0.1144 4159 +4161 2 581.1806 405.6647 26.3218 0.1144 4160 +4162 2 581.0548 405.7848 25.8621 0.1144 4161 +4163 2 580.4587 406.4117 27.5547 0.1144 4162 +4164 2 580.2585 407.4756 28.2341 0.1144 4163 +4165 2 580.1476 408.5945 28.9226 0.1144 4164 +4166 2 579.6305 409.5177 29.6738 0.1144 4165 +4167 2 579.5767 410.5805 30.4368 0.1144 4166 +4168 2 579.3262 411.6604 31.1245 0.1144 4167 +4169 2 578.9555 412.7174 31.6949 0.1144 4168 +4170 2 578.5769 413.7734 32.1782 0.1144 4169 +4171 2 578.1078 414.8007 32.5595 0.1144 4170 +4172 2 577.6159 415.8326 32.7734 0.1144 4171 +4173 2 577.5438 416.972 32.8462 0.1144 4172 +4174 2 577.4718 418.1103 32.8252 0.1144 4173 +4175 2 577.4008 419.2497 32.7452 0.1144 4174 +4176 2 577.3288 420.3891 32.48 0.1144 4175 +4177 2 581.7434 405.6658 26.7673 0.1144 4161 +4178 2 582.7479 405.9347 27.4373 0.1144 4177 +4179 2 583.3668 406.7812 28.2545 0.1144 4178 +4180 2 583.6951 407.2846 29.3479 0.1144 4179 +4181 2 584.5737 407.5878 30.5054 0.1144 4180 +4182 2 585.2841 407.6793 31.4552 0.1144 4181 +4183 2 585.99 408.4721 32.242 0.1144 4182 +4184 2 586.6398 409.2511 32.9778 0.1144 4183 +4185 2 587.7186 409.568 33.5163 0.1144 4184 +4186 2 588.2723 409.2488 35.2629 0.1144 4185 +4187 2 589.1337 408.7684 36.9771 0.1144 4186 +4188 2 590.0169 408.8885 37.7468 0.1144 4187 +4189 2 590.9561 408.4023 38.5392 0.1144 4188 +4190 2 591.6036 407.661 39.3672 0.1144 4189 +4191 2 592.2614 406.7412 40.3908 0.1144 4190 +4192 2 588.3146 409.9124 33.9032 0.1144 4185 +4193 2 589.2103 410.5553 34.1698 0.1144 4192 +4194 2 590.113 411.1307 34.2199 0.1144 4193 +4195 2 591.1998 411.1948 34.1085 0.1144 4194 +4196 2 592.3266 411.2062 33.9528 0.1144 4195 +4197 2 593.4168 411.4888 33.8425 0.1144 4196 +4198 2 594.4373 411.9521 33.7593 0.1144 4197 +4199 2 595.3616 412.6179 33.6403 0.1144 4198 +4200 2 596.1887 413.3878 33.4412 0.1144 4199 +4201 2 596.9495 414.1863 33.0873 0.1144 4200 +4202 2 597.8361 414.7675 32.5998 0.1144 4201 +4203 2 598.8016 415.2926 32.0323 0.1144 4202 +4204 2 599.6207 416.09 31.4619 0.1144 4203 +4205 2 600.5485 416.3233 30.7415 0.1144 4204 +4206 2 601.4797 416.6768 29.9172 0.1144 4205 +4207 2 602.3778 417.2191 29.0814 0.1144 4206 +4208 2 603.047 417.7053 26.927 0.1144 4207 +4209 2 584.0978 407.3395 32.7914 0.1144 4181 +4210 2 583.5933 406.4335 33.6154 0.1144 4209 +4211 2 583.4297 405.3055 33.9273 0.1144 4210 +4212 2 582.9801 404.2576 34.2373 0.1144 4211 +4213 2 581.8784 403.9979 34.5285 0.1144 4212 +4214 2 580.7813 403.8297 34.8748 0.1144 4213 +4215 2 579.8936 403.236 35.84 0.1144 4214 +4216 2 580.1876 402.5507 25.3972 0.1144 4158 +4217 2 580.961 401.8357 28.0952 0.1144 4216 +4218 2 581.2298 400.9869 29.1816 0.1144 4217 +4219 2 581.4574 400.6837 30.5813 0.1144 4218 +4220 2 581.8704 400.8885 32.1468 0.1144 4219 +4221 2 581.6691 401.1848 35.84 0.1144 4220 +4222 2 562.0175 399.1794 30.8353 0.1144 4139 +4223 2 562.5414 400.1174 31.2071 0.1144 4222 +4224 2 562.9235 401.1379 31.8612 0.1144 4223 +4225 2 563.1043 402.2087 32.7541 0.1144 4224 +4226 2 563.2644 403.1616 33.9198 0.1144 4225 +4227 2 563.4795 403.9475 35.3223 0.1144 4226 +4228 2 563.3102 404.8536 36.8136 0.1144 4227 +4229 2 562.6421 405.5263 38.3256 0.1144 4228 +4230 2 563.0905 406.0468 39.912 0.1144 4229 +4231 2 563.8456 406.0136 41.5024 0.1144 4230 +4232 2 564.5125 405.6166 43.0321 0.1144 4231 +4233 2 564.7024 405.6098 44.1927 0.1144 4232 +4234 2 565.7824 405.6658 45.1713 0.1144 4233 +4235 2 566.8543 405.7722 45.9976 0.1144 4234 +4236 2 567.9697 405.6121 46.6043 0.1144 4235 +4237 2 568.973 405.079 47.0058 0.1144 4236 +4238 2 569.8642 404.4612 47.306 0.1144 4237 +4239 2 570.9224 404.4623 47.6557 0.1144 4238 +4240 2 572.0606 404.579 47.889 0.1144 4239 +4241 2 573.1783 404.5287 48.0407 0.1144 4240 +4242 2 574.2033 404.0253 48.1396 0.1144 4241 +4243 2 575.1838 403.4465 48.1754 0.1144 4242 +4244 2 576.1653 402.8733 48.169 0.1144 4243 +4245 2 576.9318 402.1206 48.1872 0.1144 4244 +4246 2 577.3436 401.0624 48.2905 0.1144 4245 +4247 2 577.9179 400.1014 48.4806 0.1144 4246 +4248 2 578.7061 399.2766 48.7057 0.1144 4247 +4249 2 579.3388 398.4072 49.0392 0.1144 4248 +4250 2 580.0091 397.6269 49.4799 0.1144 4249 +4251 2 581.0811 397.3467 49.9089 0.1144 4250 +4252 2 582.1461 397.0755 50.3958 0.1144 4251 +4253 2 582.8611 396.2816 51.0196 0.1144 4252 +4254 2 583.5727 395.5025 51.8112 0.1144 4253 +4255 2 584.0909 395.2806 52.9158 0.1144 4254 +4256 2 584.3163 395.276 54.3371 0.1144 4255 +4257 2 584.8288 394.7566 55.8281 0.1144 4256 +4258 2 585.1388 393.7202 57.1418 0.1144 4257 +4259 2 585.1903 392.5819 58.2134 0.1144 4258 +4260 2 585.196 391.7182 59.2967 0.1144 4259 +4261 2 585.196 390.819 60.3747 0.1144 4260 +4262 2 585.196 389.7585 61.3455 0.1144 4261 +4263 2 585.41 388.6362 62.1216 0.1144 4262 +4264 2 585.8012 387.5803 62.8348 0.1144 4263 +4265 2 586.4304 386.6445 63.4995 0.1144 4264 +4266 2 587.1546 385.7797 64.0951 0.1144 4265 +4267 2 587.4852 384.7123 64.675 0.1144 4266 +4268 2 587.5504 383.7559 65.4377 0.1144 4267 +4269 2 588.0171 383.2068 66.456 0.1144 4268 +4270 2 588.6292 382.4975 67.4864 0.1144 4269 +4271 2 588.9987 381.4828 68.4499 0.1144 4270 +4272 2 589.4449 380.5619 69.4473 0.1144 4271 +4273 2 589.8372 379.6101 70.4586 0.1144 4272 +4274 2 590.3017 378.6537 71.4389 0.1144 4273 +4275 2 590.6575 377.687 72.4203 0.1144 4274 +4276 2 591.3428 377.3061 73.4972 0.1144 4275 +4277 2 591.6139 376.2547 74.3859 0.1144 4276 +4278 2 591.7843 375.2446 75.2626 0.1144 4277 +4279 2 592.3735 374.2779 75.9998 0.1144 4278 +4280 2 593.1834 373.4988 76.652 0.1144 4279 +4281 2 594.0792 372.8296 77.2506 0.1144 4280 +4282 2 594.3984 373.0252 77.6266 0.1144 4281 +4283 2 595.3113 373.5824 78.5957 0.1144 4282 +4284 2 596.2871 374.0468 79.0317 0.1144 4283 +4285 2 597.4117 374.088 79.4699 0.1144 4284 +4286 2 598.5477 374.1418 79.8616 0.1144 4285 +4287 2 599.6837 374.2813 80.1615 0.1144 4286 +4288 2 600.8174 374.4323 80.3779 0.1144 4287 +4289 2 601.9453 374.6257 80.5216 0.1144 4288 +4290 2 603.0722 374.8224 80.6268 0.1144 4289 +4291 2 604.183 375.065 80.764 0.1144 4290 +4292 2 605.2835 375.327 80.9514 0.1144 4291 +4293 2 606.3829 375.6027 81.1712 0.1144 4292 +4294 2 607.4709 375.9584 81.3593 0.1144 4293 +4295 2 608.5554 376.3199 81.5178 0.1144 4294 +4296 2 609.6296 376.7135 81.6558 0.1144 4295 +4297 2 610.6729 377.1837 81.7802 0.1144 4296 +4298 2 611.7128 377.6607 81.9042 0.1144 4297 +4299 2 612.8419 377.7602 82.0921 0.1144 4298 +4300 2 613.9516 377.6069 82.3673 0.1144 4299 +4301 2 615.059 377.4479 82.7165 0.1144 4300 +4302 2 616.1881 377.6218 83.0452 0.1144 4301 +4303 2 617.2955 377.909 83.3235 0.1144 4302 +4304 2 618.4029 378.1961 83.5512 0.1144 4303 +4305 2 619.4566 378.5427 83.8284 0.1144 4304 +4306 2 620.5056 378.8928 84.56 0.1144 4305 +4307 2 594.2336 372.4612 77.7868 0.1144 4281 +4308 2 594.689 371.4614 78.3619 0.1144 4307 +4309 2 595.1797 370.4489 78.9135 0.1144 4308 +4310 2 595.6339 369.4205 79.4632 0.1144 4309 +4311 2 596.0492 368.384 80.0184 0.1144 4310 +4312 2 596.4393 367.3395 80.5745 0.1144 4311 +4313 2 596.7653 366.2699 81.1222 0.1144 4312 +4314 2 597.0467 365.1865 81.6522 0.1144 4313 +4315 2 597.3568 364.1032 82.1598 0.1144 4314 +4316 2 597.7755 363.0427 82.6148 0.1144 4315 +4317 2 598.2605 362.0062 83.0144 0.1144 4316 +4318 2 598.7788 360.9858 83.393 0.1144 4317 +4319 2 599.5384 360.1587 83.8482 0.1144 4318 +4320 2 600.3952 359.4848 84.427 0.1144 4319 +4321 2 601.0759 358.6543 85.1214 0.1144 4320 +4322 2 601.7943 357.8958 85.9236 0.1144 4321 +4323 2 602.7324 357.524 86.8098 0.1144 4322 +4324 2 603.7277 357.2781 87.7108 0.1144 4323 +4325 2 604.7539 356.8468 88.494 0.1144 4324 +4326 2 605.7686 356.3446 89.1243 0.1144 4325 +4327 2 606.6083 355.5701 89.5902 0.1144 4326 +4328 2 607.3279 354.6812 89.9136 0.1144 4327 +4329 2 608.0326 353.7797 90.1398 0.1144 4328 +4330 2 608.7075 352.8576 90.3378 0.1144 4329 +4331 2 609.3402 351.915 90.571 0.1144 4330 +4332 2 609.9591 350.9666 90.8544 0.1144 4331 +4333 2 610.7004 350.1086 91.1786 0.1144 4332 +4334 2 611.5321 349.333 91.5312 0.1144 4333 +4335 2 612.3821 348.5768 91.905 0.1144 4334 +4336 2 613.2252 347.816 92.2964 0.1144 4335 +4337 2 613.9528 346.9443 92.7119 0.1144 4336 +4338 2 614.6426 346.0417 93.1636 0.1144 4337 +4339 2 615.329 345.1391 93.6698 0.1144 4338 +4340 2 616.1092 344.3108 94.2396 0.1144 4339 +4341 2 616.926 343.5169 94.8895 0.1144 4340 +4342 2 617.7486 342.7287 95.6365 0.1144 4341 +4343 2 618.5551 342.1361 96.6498 0.1144 4342 +4344 2 619.1351 341.9302 98.0216 0.1144 4343 +4345 2 619.6579 341.6613 99.6565 0.1144 4344 +4346 2 620.1567 341.2827 101.4471 0.1144 4345 +4347 2 620.9392 341.1351 103.2522 0.1144 4346 +4348 2 621.7526 340.888 104.9826 0.1144 4347 +4349 2 622.4813 340.1524 106.4843 0.1144 4348 +4350 2 623.2009 339.3973 107.7644 0.1144 4349 +4351 2 623.925 338.6412 108.8606 0.1144 4350 +4352 2 624.7647 337.8918 109.723 0.1144 4351 +4353 2 625.6078 337.1425 110.4124 0.1144 4352 +4354 2 626.4521 336.3955 110.9805 0.1144 4353 +4355 2 627.2964 335.6473 111.4722 0.1144 4354 +4356 2 628.1407 334.8991 111.9112 0.1144 4355 +4357 2 628.9632 334.1269 112.3195 0.1144 4356 +4358 2 629.5009 334.9014 112.6586 0.1144 4357 +4359 2 630.1518 335.8418 112.9612 0.1144 4358 +4360 2 630.8039 336.7822 113.2583 0.1144 4359 +4361 2 631.456 337.7225 113.5778 0.1144 4360 +4362 2 632.108 338.6091 114.0115 0.1144 4361 +4363 2 632.7624 339.4225 114.6522 0.1144 4362 +4364 2 633.4168 340.2359 115.4664 0.1144 4363 +4365 2 633.9053 341.166 116.3851 0.1144 4364 +4366 2 634.2084 342.2276 117.3497 0.1144 4365 +4367 2 634.5104 343.2881 118.3445 0.1144 4366 +4368 2 634.8914 344.2513 119.4026 0.1144 4367 +4369 2 635.3787 345.0796 120.5702 0.1144 4368 +4370 2 635.8672 345.9078 121.8227 0.1144 4369 +4371 2 636.3797 346.7361 123.1286 0.1144 4370 +4372 2 636.9231 347.5655 124.4536 0.1144 4371 +4373 2 637.4631 348.3995 125.7704 0.1144 4372 +4374 2 637.9333 349.3364 127.0203 0.1144 4373 +4375 2 638.4035 350.2734 128.205 0.1144 4374 +4376 2 638.8737 351.2103 129.3359 0.1144 4375 +4377 2 639.353 352.1381 130.4201 0.1144 4376 +4378 2 640.195 352.7421 131.469 0.1144 4377 +4379 2 641.0358 353.345 132.4795 0.1144 4378 +4380 2 641.8778 353.949 133.4505 0.1144 4379 +4381 2 642.7427 354.5645 134.3362 0.1144 4380 +4382 2 643.683 355.2166 135.0241 0.1144 4381 +4383 2 644.6223 355.8687 135.5791 0.1144 4382 +4384 2 645.5615 356.5139 136.0792 0.1144 4383 +4385 2 646.5007 357.1396 136.6131 0.1144 4384 +4386 2 647.4399 357.7666 137.1966 0.1144 4385 +4387 2 648.028 358.1635 138.0613 0.1144 4386 +4388 2 648.5462 358.5159 139.1715 0.1144 4387 +4389 2 649.3207 358.8167 140.2836 0.1144 4388 +4390 2 650.4361 359.0501 141.1673 0.1144 4389 +4391 2 651.5515 359.2846 141.8315 0.1144 4390 +4392 2 652.668 359.518 142.2946 0.1144 4391 +4393 2 653.7834 359.7525 142.5726 0.1144 4392 +4394 2 654.9148 359.8418 142.7188 0.1144 4393 +4395 2 656.0543 359.8555 142.7868 0.1144 4394 +4396 2 657.1948 359.8704 142.805 0.1144 4395 +4397 2 657.6456 359.6988 142.6902 0.1144 4396 +4398 2 658.6763 359.3075 142.4102 0.1144 4397 +4399 2 659.7059 358.9163 142.0132 0.1144 4398 +4400 2 660.7366 358.525 141.5428 0.1144 4399 +4401 2 661.8246 358.2264 141.1004 0.1144 4400 +4402 2 662.9366 357.9656 140.7249 0.1144 4401 +4403 2 664.0485 357.7036 140.4211 0.1144 4402 +4404 2 665.1605 357.4417 140.1789 0.1144 4403 +4405 2 666.245 357.762 139.9423 0.1144 4404 +4406 2 667.3295 358.0869 139.7071 0.1144 4405 +4407 2 668.4072 358.4381 139.4862 0.1144 4406 +4408 2 669.4711 358.8579 139.3249 0.1144 4407 +4409 2 670.535 359.2778 139.2146 0.1144 4408 +4410 2 671.5566 359.78 139.146 0.1144 4409 +4411 2 672.5118 360.4103 139.111 0.1144 4410 +4412 2 673.4659 361.0407 139.0945 0.1144 4411 +4413 2 674.4212 361.671 139.0827 0.1144 4412 +4414 2 675.3444 362.3368 139.0665 0.1144 4413 +4415 2 676.0971 363.1994 139.0438 0.1144 4414 +4416 2 676.8487 364.0608 139.0119 0.1144 4415 +4417 2 677.6015 364.9234 138.9674 0.1144 4416 +4418 2 678.3531 365.7848 138.906 0.1144 4417 +4419 2 679.1047 366.6474 138.8192 0.1144 4418 +4420 2 679.7099 367.6175 138.6955 0.1144 4419 +4421 2 680.3128 368.5899 138.5219 0.1144 4420 +4422 2 680.9157 369.5623 138.2903 0.1144 4421 +4423 2 681.5186 370.5347 137.9963 0.1144 4422 +4424 2 681.8046 371.4968 137.4708 0.1144 4423 +4425 2 682.0231 372.4567 136.7363 0.1144 4424 +4426 2 682.1764 373.4119 135.8694 0.1144 4425 +4427 2 681.5186 374.3214 135.0448 0.1144 4426 +4428 2 680.8619 375.2297 134.2748 0.1144 4427 +4429 2 680.2041 376.1392 133.569 0.1144 4428 +4430 2 679.5463 377.0475 132.9334 0.1144 4429 +4431 2 678.8896 377.9559 132.3428 0.1144 4430 +4432 2 678.2318 378.8653 131.7677 0.1144 4431 +4433 2 677.574 379.7737 131.1834 0.1144 4432 +4434 2 676.9162 380.6832 130.585 0.1144 4433 +4435 2 676.2596 381.5915 129.9662 0.1144 4434 +4436 2 675.6018 382.4998 129.3202 0.1144 4435 +4437 2 674.944 383.4093 128.6412 0.1144 4436 +4438 2 674.2873 384.3176 127.9256 0.1144 4437 +4439 2 673.4991 384.9835 127.0858 0.1144 4438 +4440 2 672.6869 385.6024 126.1364 0.1144 4439 +4441 2 671.8746 386.2224 125.1152 0.1144 4440 +4442 2 671.0624 386.8413 124.0624 0.1144 4441 +4443 2 670.2502 387.4614 123.0172 0.1144 4442 +4444 2 669.4368 388.0803 122.0164 0.1144 4443 +4445 2 668.6245 388.7003 121.0924 0.1144 4444 +4446 2 667.9313 389.5526 120.3818 0.1144 4445 +4447 2 667.2849 390.4952 119.8988 0.1144 4446 +4448 2 666.6385 391.439 119.5958 0.1144 4447 +4449 2 665.991 392.3817 119.4281 0.1144 4448 +4450 2 665.3447 393.3255 119.357 0.1144 4449 +4451 2 664.6972 394.2682 119.3486 0.1144 4450 +4452 2 664.0508 395.212 119.3738 0.1144 4451 +4453 2 663.4045 396.1546 119.4382 0.1144 4452 +4454 2 662.7627 397.0996 119.5354 0.1144 4453 +4455 2 662.7512 398.2207 119.7468 0.1144 4454 +4456 2 662.7409 399.3418 120.036 0.1144 4455 +4457 2 662.7295 400.4618 120.3703 0.1144 4456 +4458 2 662.7192 401.5829 121.1722 0.1144 4457 +4459 2 657.7828 360.5591 142.7068 0.1144 4396 +4460 2 658.4704 361.3656 141.2748 0.1144 4459 +4461 2 659.1568 362.171 140.656 0.1144 4460 +4462 2 659.8741 362.9534 139.9367 0.1144 4461 +4463 2 660.7698 363.5964 139.2012 0.1144 4462 +4464 2 661.6656 364.2393 138.4818 0.1144 4463 +4465 2 662.5625 364.8811 137.8084 0.1144 4464 +4466 2 663.4582 365.524 137.2092 0.1144 4465 +4467 2 664.354 366.1669 136.6842 0.1144 4466 +4468 2 665.3344 366.7389 136.3054 0.1144 4467 +4469 2 666.3262 367.3029 136.068 0.1144 4468 +4470 2 667.3181 367.8669 135.966 0.1144 4469 +4471 2 668.3099 368.4309 135.9949 0.1144 4470 +4472 2 669.3018 368.9949 136.1492 0.1144 4471 +4473 2 670.1964 369.5806 136.5367 0.1144 4472 +4474 2 671.0018 370.1858 137.2154 0.1144 4473 +4475 2 671.8071 370.791 138.115 0.1144 4474 +4476 2 672.6114 371.3962 139.169 0.1144 4475 +4477 2 673.4167 372.0013 140.3139 0.1144 4476 +4478 2 674.221 372.6077 141.4854 0.1144 4477 +4479 2 675.0264 373.2128 142.6202 0.1144 4478 +4480 2 675.8317 373.818 143.6786 0.1144 4479 +4481 2 676.636 374.4232 144.6432 0.1144 4480 +4482 2 677.4413 375.0295 145.5003 0.1144 4481 +4483 2 678.3611 375.621 146.022 0.1144 4482 +4484 2 679.3106 376.2101 146.2303 0.1144 4483 +4485 2 680.2602 376.7993 146.2216 0.1144 4484 +4486 2 681.2097 377.3884 146.0872 0.1144 4485 +4487 2 682.158 377.9776 145.9116 0.1144 4486 +4488 2 683.1179 378.354 145.8173 0.1144 4487 +4489 2 684.1154 377.9616 146.0248 0.1144 4488 +4490 2 685.1141 377.568 146.4705 0.1144 4489 +4491 2 686.1117 377.1757 147.0832 0.1144 4490 +4492 2 687.1093 376.7821 147.7941 0.1144 4491 +4493 2 688.1068 376.4298 148.538 0.1144 4492 +4494 2 689.0998 376.9674 149.1885 0.1144 4493 +4495 2 690.0917 377.5063 149.73 0.1144 4494 +4496 2 690.9108 378.251 150.1668 0.1144 4495 +4497 2 691.5812 379.1754 150.5031 0.1144 4496 +4498 2 692.2516 380.0986 150.7638 0.1144 4497 +4499 2 692.9219 381.0218 150.9715 0.1144 4498 +4500 2 693.5923 381.945 151.1471 0.1144 4499 +4501 2 694.2627 382.8682 151.4652 0.1144 4500 +4502 2 629.3464 333.0539 112.9512 0.1144 4357 +4503 2 629.7114 331.9728 113.1178 0.1144 4502 +4504 2 630.0763 330.8928 113.3168 0.1144 4503 +4505 2 630.4424 329.8141 113.5411 0.1144 4504 +4506 2 630.8073 328.7341 113.7828 0.1144 4505 +4507 2 631.1723 327.653 114.0356 0.1144 4506 +4508 2 631.5372 326.5731 114.2943 0.1144 4507 +4509 2 631.6939 325.4474 114.5707 0.1144 4508 +4510 2 631.806 324.3171 114.8633 0.1144 4509 +4511 2 631.917 323.1857 115.1685 0.1144 4510 +4512 2 632.0268 322.0554 115.4826 0.1144 4511 +4513 2 632.1378 320.924 115.8021 0.1144 4512 +4514 2 632.3929 319.8166 116.1222 0.1144 4513 +4515 2 632.7155 318.7253 116.4402 0.1144 4514 +4516 2 633.0381 317.6339 116.7586 0.1144 4515 +4517 2 633.3619 316.5437 117.0792 0.1144 4516 +4518 2 633.6845 315.4534 117.4048 0.1144 4517 +4519 2 634.0025 314.3609 117.7383 0.1144 4518 +4520 2 634.1604 313.2409 118.0981 0.1144 4519 +4521 2 634.3148 312.121 118.4789 0.1144 4520 +4522 2 634.4693 311.001 118.8748 0.1144 4521 +4523 2 634.6237 309.881 119.2811 0.1144 4522 +4524 2 634.7781 308.761 119.6927 0.1144 4523 +4525 2 634.8697 307.633 120.1057 0.1144 4524 +4526 2 634.4144 306.5909 120.5014 0.1144 4525 +4527 2 633.9533 305.551 120.8883 0.1144 4526 +4528 2 633.4946 304.5099 121.2896 0.1144 4527 +4529 2 633.0347 303.47 121.6967 0.1144 4528 +4530 2 632.6309 302.4187 122.1312 0.1144 4529 +4531 2 632.3266 301.3696 122.624 0.1144 4530 +4532 2 632.0211 300.3194 123.1451 0.1144 4531 +4533 2 631.7168 299.2704 124.32 0.1144 4532 +4534 2 563.6785 406.136 45.855 0.1144 4232 +4535 2 563.3456 406.9906 47.2746 0.1144 4534 +4536 2 564.087 406.9929 47.9147 0.1144 4535 +4537 2 564.802 406.1818 48.5523 0.1144 4536 +4538 2 565.2996 405.1636 49.1336 0.1144 4537 +4539 2 565.9425 404.2278 49.6471 0.1144 4538 +4540 2 566.7902 403.4888 50.1113 0.1144 4539 +4541 2 567.5945 402.6823 50.4826 0.1144 4540 +4542 2 568.2179 401.7762 50.869 0.1144 4541 +4543 2 568.9398 400.9571 51.2918 0.1144 4542 +4544 2 569.9214 400.4023 51.6785 0.1144 4543 +4545 2 570.6398 399.566 51.8795 0.1144 4544 +4546 2 571.3514 398.6737 52.0066 0.1144 4545 +4547 2 572.1739 399.4001 52.1382 0.1144 4546 +4548 2 572.9495 400.2158 52.3099 0.1144 4547 +4549 2 573.7263 401.0052 52.92 0.1144 4548 +4550 2 548.5732 387.2669 28.6479 0.1144 4121 +4551 2 548.9026 386.1721 28.3321 0.1144 4550 +4552 2 548.9884 385.0544 28.163 0.1144 4551 +4553 2 548.6063 384.837 27.9838 0.1144 4552 +4554 2 548.0252 383.9241 27.7445 0.1144 4553 +4555 2 548.2849 382.8396 27.5509 0.1144 4554 +4556 2 548.6818 381.778 27.489 0.1144 4555 +4557 2 548.8146 380.6466 27.5097 0.1144 4556 +4558 2 548.8306 379.5026 27.5743 0.1144 4557 +4559 2 549.1372 378.4043 27.6754 0.1144 4558 +4560 2 549.7789 377.4685 27.8123 0.1144 4559 +4561 2 550.0444 376.4458 28.0493 0.1144 4560 +4562 2 550.4505 375.3796 28.2013 0.1144 4561 +4563 2 550.9435 374.7996 28.7316 0.1144 4562 +4564 2 551.6574 373.9221 28.9635 0.1144 4563 +4565 2 552.0978 372.9165 29.1416 0.1144 4564 +4566 2 552.4387 371.8263 29.3474 0.1144 4565 +4567 2 553.434 371.2726 29.5702 0.1144 4566 +4568 2 554.0529 370.3162 29.846 0.1144 4567 +4569 2 554.2371 369.2569 30.2691 0.1144 4568 +4570 2 553.8859 368.1701 30.6785 0.1144 4569 +4571 2 553.1549 367.2915 31.0778 0.1144 4570 +4572 2 552.9135 366.2813 31.6235 0.1144 4571 +4573 2 553.0817 365.1728 32.1686 0.1144 4572 +4574 2 553.2224 364.038 32.6222 0.1144 4573 +4575 2 553.8035 363.1148 33.0952 0.1144 4574 +4576 2 554.3824 362.1904 34.16 0.1144 4575 +4577 2 550.4825 374.9437 28.2072 0.1144 4562 +4578 2 550.5637 373.8478 28.0258 0.1144 4577 +4579 2 550.6964 372.7484 27.7121 0.1144 4578 +4580 2 551.0213 371.6707 27.3503 0.1144 4579 +4581 2 551.5247 370.648 27.0078 0.1144 4580 +4582 2 552.0807 369.6481 26.7078 0.1144 4581 +4583 2 552.6504 368.6574 26.4335 0.1144 4582 +4584 2 553.1984 367.6553 26.169 0.1144 4583 +4585 2 553.6308 366.6051 25.8815 0.1144 4584 +4586 2 553.8779 365.5126 25.5278 0.1144 4585 +4587 2 554.1181 364.459 25.0718 0.1144 4586 +4588 2 554.6284 363.5403 24.5369 0.1144 4587 +4589 2 555.1843 362.5805 24.0232 0.1144 4588 +4590 2 555.6271 361.5326 23.6356 0.1144 4589 +4591 2 556.2917 360.6174 23.394 0.1144 4590 +4592 2 557.0159 359.7388 23.2643 0.1144 4591 +4593 2 557.652 358.7904 23.1827 0.1144 4592 +4594 2 558.2022 357.7906 23.0756 0.1144 4593 +4595 2 558.423 356.6958 22.8711 0.1144 4594 +4596 2 558.3509 355.593 22.5491 0.1144 4595 +4597 2 558.4299 354.4821 22.1544 0.1144 4596 +4598 2 558.5958 353.361 21.7569 0.1144 4597 +4599 2 558.717 352.2262 21.4057 0.1144 4598 +4600 2 558.8646 351.0936 21.1016 0.1144 4599 +4601 2 559.1975 350.0125 20.8181 0.1144 4600 +4602 2 559.6437 348.9715 20.5555 0.1144 4601 +4603 2 559.9788 347.8881 20.318 0.1144 4602 +4604 2 560.2374 346.7956 20.0819 0.1144 4603 +4605 2 560.6229 345.7271 19.8925 0.1144 4604 +4606 2 561.0016 344.6552 19.8392 0.1144 4605 +4607 2 561.1846 343.5421 19.9234 0.1144 4606 +4608 2 561.2327 342.4049 20.0847 0.1144 4607 +4609 2 561.2144 341.2632 20.2815 0.1144 4608 +4610 2 561.0851 340.1352 20.5126 0.1144 4609 +4611 2 560.8117 339.045 20.7687 0.1144 4610 +4612 2 560.6435 337.9284 21.0055 0.1144 4611 +4613 2 560.7144 336.7913 21.1742 0.1144 4612 +4614 2 560.7957 335.6507 21.2504 0.1144 4613 +4615 2 560.7957 334.5079 21.2266 0.1144 4614 +4616 2 560.8929 333.3742 21.093 0.1144 4615 +4617 2 561.1492 332.2862 20.8371 0.1144 4616 +4618 2 561.2727 331.1766 20.5004 0.1144 4617 +4619 2 561.2144 330.0406 20.171 0.1144 4618 +4620 2 561.6514 328.995 19.8777 0.1144 4619 +4621 2 562.6226 328.4264 19.6027 0.1144 4620 +4622 2 563.7163 328.1335 19.357 0.1144 4621 +4623 2 564.81 327.8029 19.1766 0.1144 4622 +4624 2 565.7881 327.2126 19.0707 0.1144 4623 +4625 2 566.4516 326.2825 19.025 0.1144 4624 +4626 2 566.5774 325.1488 19.05 0.1144 4625 +4627 2 566.2926 324.0472 19.148 0.1144 4626 +4628 2 565.9093 322.9706 19.2773 0.1144 4627 +4629 2 565.7846 321.8335 19.4101 0.1144 4628 +4630 2 565.9986 320.7101 19.5418 0.1144 4629 +4631 2 566.4573 319.6622 19.6784 0.1144 4630 +4632 2 567.0133 318.6715 19.8674 0.1144 4631 +4633 2 567.4904 317.651 20.124 0.1144 4632 +4634 2 567.6986 316.5311 20.4002 0.1144 4633 +4635 2 567.6036 315.3928 20.6786 0.1144 4634 +4636 2 567.5864 314.2602 20.9956 0.1144 4635 +4637 2 568.0166 313.2078 21.3199 0.1144 4636 +4638 2 568.5337 312.1953 21.6423 0.1144 4637 +4639 2 568.9718 311.1794 22.0189 0.1144 4638 +4640 2 569.5873 310.2631 22.4318 0.1144 4639 +4641 2 570.2611 309.3433 22.7864 0.1144 4640 +4642 2 570.8285 308.3503 23.0539 0.1144 4641 +4643 2 571.3822 307.3493 23.2506 0.1144 4642 +4644 2 571.8719 306.3152 23.3973 0.1144 4643 +4645 2 572.2402 305.2318 23.5167 0.1144 4644 +4646 2 572.6464 304.1621 23.6394 0.1144 4645 +4647 2 573.2584 303.1966 23.7933 0.1144 4646 +4648 2 574.0031 302.3283 23.9915 0.1144 4647 +4649 2 574.6358 301.4211 24.3423 0.1144 4648 +4650 2 575.0671 300.4304 24.8417 0.1144 4649 +4651 2 575.575 299.4123 25.3605 0.1144 4650 +4652 2 576.3861 298.6538 25.9463 0.1144 4651 +4653 2 577.1617 297.8896 26.6031 0.1144 4652 +4654 2 577.5427 296.8405 27.2722 0.1144 4653 +4655 2 577.7909 295.7354 27.9139 0.1144 4654 +4656 2 578.173 294.6612 28.523 0.1144 4655 +4657 2 578.9223 293.8158 29.1768 0.1144 4656 +4658 2 579.7357 293.0871 29.9051 0.1144 4657 +4659 2 580.3054 292.4247 30.8148 0.1144 4658 +4660 2 580.3604 291.5553 31.8371 0.1144 4659 +4661 2 580.6738 290.5291 32.783 0.1144 4660 +4662 2 581.4952 289.7752 34.44 0.1144 4661 +4663 2 549.1909 384.9388 28.1655 0.1144 4552 +4664 2 550.1645 384.3783 29.5044 0.1144 4663 +4665 2 551.138 383.8028 30.0068 0.1144 4664 +4666 2 552.1676 383.3956 30.6018 0.1144 4665 +4667 2 552.7167 382.6119 31.3648 0.1144 4666 +4668 2 553.0085 382.0331 33.6591 0.1144 4667 +4669 2 541.8293 385.1917 26.2448 0.1144 4113 +4670 2 541.7423 384.6002 28.9243 0.1144 4669 +4671 2 541.6634 383.6026 30.0166 0.1144 4670 +4672 2 542.4848 383.1336 31.2586 0.1144 4671 +4673 2 543.5476 383.2686 32.5366 0.1144 4672 +4674 2 544.4994 383.0387 33.8909 0.1144 4673 +4675 2 545.0439 382.3957 35.3772 0.1144 4674 +4676 2 545.4077 381.4268 36.7951 0.1144 4675 +4677 2 545.5507 380.3445 38.0993 0.1144 4676 +4678 2 545.6823 379.3847 39.3786 0.1144 4677 +4679 2 546.0072 379.244 40.7711 0.1144 4678 +4680 2 546.7176 378.7784 43.68 0.1144 4679 +4681 2 519.8485 373.4451 12.7931 0.1144 4087 +4682 2 520.4834 372.8079 14.8185 0.1144 4681 +4683 2 521.0497 371.9373 15.6659 0.1144 4682 +4684 2 521.9168 371.2989 16.5962 0.1144 4683 +4685 2 522.681 370.5393 17.6062 0.1144 4684 +4686 2 523.3548 369.6928 18.6756 0.1144 4685 +4687 2 523.634 368.9011 19.9087 0.1144 4686 +4688 2 524.3776 368.7272 21.2637 0.1144 4687 +4689 2 525.3992 368.7249 22.605 0.1144 4688 +4690 2 526.3544 368.2422 23.8946 0.1144 4689 +4691 2 526.6759 368.2628 25.0292 0.1144 4690 +4692 2 527.7615 368.2971 26.162 0.1144 4691 +4693 2 528.568 368.7512 27.3692 0.1144 4692 +4694 2 529.243 369.4731 28.6919 0.1144 4693 +4695 2 529.9809 369.5532 30.2044 0.1144 4694 +4696 2 530.1937 369.3862 31.9701 0.1144 4695 +4697 2 530.0827 369.1574 33.9212 0.1144 4696 +4698 2 529.5038 368.4996 35.7977 0.1144 4697 +4699 2 528.5406 368.1598 37.5158 0.1144 4698 +4700 2 527.7123 368.2879 39.1854 0.1144 4699 +4701 2 527.9251 369.3026 40.7123 0.1144 4700 +4702 2 528.1905 370.2602 42.1588 0.1144 4701 +4703 2 528.7019 371.2154 43.4893 0.1144 4702 +4704 2 529.0096 371.9819 44.9193 0.1144 4703 +4705 2 529.3471 372.6054 46.4442 0.1144 4704 +4706 2 530.0781 373.3215 47.887 0.1144 4705 +4707 2 530.7794 373.8855 49.331 0.1144 4706 +4708 2 531.5939 374.2951 50.7385 0.1144 4707 +4709 2 532.5984 374.39 52.047 0.1144 4708 +4710 2 533.7218 374.4392 53.1418 0.1144 4709 +4711 2 534.852 374.4289 54.0487 0.1144 4710 +4712 2 535.9388 374.2218 54.9273 0.1144 4711 +4713 2 536.9524 373.9622 55.8522 0.1144 4712 +4714 2 537.6937 373.4805 56.9136 0.1144 4713 +4715 2 538.4442 372.968 58.0866 0.1144 4714 +4716 2 539.3365 373.1442 59.306 0.1144 4715 +4717 2 540.3913 373.3387 60.4548 0.1144 4716 +4718 2 541.4575 373.0287 61.4678 0.1144 4717 +4719 2 542.5832 372.9532 62.3333 0.1144 4718 +4720 2 543.6048 372.8285 63.1963 0.1144 4719 +4721 2 544.6275 372.5207 64.0346 0.1144 4720 +4722 2 545.6708 372.1238 64.8105 0.1144 4721 +4723 2 546.7153 371.7268 65.5547 0.1144 4722 +4724 2 547.7586 371.3298 66.2836 0.1144 4723 +4725 2 548.8031 370.9328 67.0009 0.1144 4724 +4726 2 548.8043 371.5609 67.7029 0.1144 4725 +4727 2 549.0777 372.5562 68.4779 0.1144 4726 +4728 2 549.4357 373.4966 69.3154 0.1144 4727 +4729 2 549.6268 374.4301 70.1974 0.1144 4728 +4730 2 549.9025 375.4379 70.9996 0.1144 4729 +4731 2 550.0215 376.5659 71.5915 0.1144 4730 +4732 2 549.9402 377.7065 71.9284 0.1144 4731 +4733 2 549.8041 378.8219 71.9961 0.1144 4732 +4734 2 549.6668 379.9373 71.8724 0.1144 4733 +4735 2 549.5307 381.0527 71.2449 0.1144 4734 +4736 2 526.7251 367.4677 24.2362 0.1144 4690 +4737 2 527.0957 366.6085 26.1512 0.1144 4736 +4738 2 527.2044 365.5538 26.9204 0.1144 4737 +4739 2 527.8965 364.7907 27.8244 0.1144 4738 +4740 2 528.1814 364.1032 28.9629 0.1144 4739 +4741 2 527.9995 363.1674 30.1529 0.1144 4740 +4742 2 528.2763 362.3837 31.3818 0.1144 4741 +4743 2 528.9192 361.4926 32.4055 0.1144 4742 +4744 2 529.4787 360.5144 33.2027 0.1144 4743 +4745 2 529.8413 359.4299 33.7235 0.1144 4744 +4746 2 530.204 358.3443 34.0197 0.1144 4745 +4747 2 530.5666 357.2598 34.2199 0.1144 4746 +4748 2 477.5445 350.2688 19.1816 0.1144 4040 +4749 2 477.3923 351.2297 17.7932 0.1144 4748 +4750 2 477.0331 352.1289 17.1824 0.1144 4749 +4751 2 476.341 352.9972 16.5824 0.1144 4750 +4752 2 475.7736 353.9811 16.0322 0.1144 4751 +4753 2 475.014 354.8116 15.5414 0.1144 4752 +4754 2 474.6731 355.6845 15.0902 0.1144 4753 +4755 2 474.712 356.7495 14.6271 0.1144 4754 +4756 2 474.2624 357.7151 14.1474 0.1144 4755 +4757 2 473.6904 358.6726 13.6919 0.1144 4756 +4758 2 473.4272 359.7617 13.3188 0.1144 4757 +4759 2 473.2808 360.8954 13.049 0.1144 4758 +4760 2 473.0989 362.0245 12.8666 0.1144 4759 +4761 2 472.7752 363.1102 12.7248 0.1144 4760 +4762 2 472.043 363.9281 12.5794 0.1144 4761 +4763 2 471.1427 364.6168 12.493 0.1144 4762 +4764 2 470.303 365.3844 12.4431 0.1144 4763 +4765 2 469.5628 366.2516 12.3743 0.1144 4764 +4766 2 468.8718 367.1554 12.2816 0.1144 4765 +4767 2 468.2163 368.0912 12.1954 0.1144 4766 +4768 2 467.8102 369.1448 12.1539 0.1144 4767 +4769 2 467.4521 370.2259 12.0974 0.1144 4768 +4770 2 467.1661 371.331 12.0437 0.1144 4769 +4771 2 466.7074 372.34 12.0774 0.1144 4770 +4772 2 466.4488 373.4382 12.0733 0.1144 4771 +4773 2 466.2841 374.5673 12.0009 0.1144 4772 +4774 2 465.505 375.359 11.8921 0.1144 4773 +4775 2 464.5921 376.0248 11.704 0.1144 4774 +4776 2 464.2913 377.0944 11.4541 0.1144 4775 +4777 2 465.044 377.8804 10.6588 0.1144 4776 +4778 2 433.9295 313.7306 46.0709 0.1144 2359 +4779 2 434.5999 312.9012 45.341 0.1144 4778 +4780 2 435.2668 312.002 45.0335 0.1144 4779 +4781 2 435.904 311.065 44.746 0.1144 4780 +4782 2 436.5161 310.1052 44.515 0.1144 4781 +4783 2 437.1384 309.1466 44.38 0.1144 4782 +4784 2 437.7882 308.205 44.3663 0.1144 4783 +4785 2 438.5272 307.3356 44.4926 0.1144 4784 +4786 2 439.3246 306.5268 44.7437 0.1144 4785 +4787 2 440.2284 305.9159 45.1601 0.1144 4786 +4788 2 441.2431 305.5624 45.7114 0.1144 4787 +4789 2 442.3127 305.2032 46.2767 0.1144 4788 +4790 2 443.2485 304.5614 46.821 0.1144 4789 +4791 2 444.1111 303.8315 47.3508 0.1144 4790 +4792 2 444.881 303.0936 47.9371 0.1144 4791 +4793 2 445.5033 302.2048 48.5282 0.1144 4792 +4794 2 445.9815 301.1969 49.0731 0.1144 4793 +4795 2 446.4952 300.189 49.5474 0.1144 4794 +4796 2 447.042 299.1835 49.9022 0.1144 4795 +4797 2 447.5053 298.1378 50.1567 0.1144 4796 +4798 2 447.9687 297.0922 50.3373 0.1144 4797 +4799 2 448.4308 296.0455 50.486 0.1144 4798 +4800 2 448.8816 294.9976 50.6556 0.1144 4799 +4801 2 449.3209 293.9577 50.8897 0.1144 4800 +4802 2 449.8185 292.9532 51.1874 0.1144 4801 +4803 2 450.4271 292.0129 51.5256 0.1144 4802 +4804 2 451.2359 291.2166 51.8538 0.1144 4803 +4805 2 452.2667 290.7201 52.1105 0.1144 4804 +4806 2 453.1864 290.0532 52.3247 0.1144 4805 +4807 2 453.8374 289.249 52.3393 0.1144 4806 +4808 2 453.8992 289.2856 51.3576 0.1144 4807 +4809 2 454.6096 288.8589 51.2747 0.1144 4808 +4810 2 455.6952 289.0476 51.1736 0.1144 4809 +4811 2 456.7363 289.4766 50.9762 0.1144 4810 +4812 2 457.7384 290.0086 50.7335 0.1144 4811 +4813 2 458.7348 290.5566 50.4641 0.1144 4812 +4814 2 459.7381 291.0668 50.1637 0.1144 4813 +4815 2 460.7883 291.4534 49.8495 0.1144 4814 +4816 2 461.8934 291.696 49.5981 0.1144 4815 +4817 2 463.0134 291.9168 49.4508 0.1144 4816 +4818 2 464.0739 292.3286 49.4113 0.1144 4817 +4819 2 464.9433 293.0482 49.4757 0.1144 4818 +4820 2 465.5211 294.0274 49.7011 0.1144 4819 +4821 2 465.8036 295.112 50.1718 0.1144 4820 +4822 2 465.9398 296.1404 50.9502 0.1144 4821 +4823 2 466.1869 296.9687 52.0635 0.1144 4822 +4824 2 466.5312 297.6093 53.468 0.1144 4823 +4825 2 466.9808 298.2191 55.0508 0.1144 4824 +4826 2 467.618 298.8425 56.6664 0.1144 4825 +4827 2 468.2735 299.5919 58.1997 0.1144 4826 +4828 2 468.8078 300.5025 59.5857 0.1144 4827 +4829 2 469.2276 301.484 60.8289 0.1144 4828 +4830 2 469.5239 302.5033 61.9682 0.1144 4829 +4831 2 469.8431 303.4998 63.054 0.1144 4830 +4832 2 470.4391 304.3475 64.1197 0.1144 4831 +4833 2 471.2456 305.0419 65.156 0.1144 4832 +4834 2 472.0785 305.7386 66.1528 0.1144 4833 +4835 2 472.9582 306.3701 67.1219 0.1144 4834 +4836 2 473.9386 306.7819 68.0859 0.1144 4835 +4837 2 474.8984 307.2349 69.0458 0.1144 4836 +4838 2 475.8113 307.8149 69.984 0.1144 4837 +4839 2 476.7357 308.3949 70.8966 0.1144 4838 +4840 2 477.6589 308.9624 71.7965 0.1144 4839 +4841 2 478.6633 309.2998 72.6984 0.1144 4840 +4842 2 479.7055 309.1088 73.5834 0.1144 4841 +4843 2 480.7363 308.8903 74.4512 0.1144 4842 +4844 2 481.7864 308.864 75.2914 0.1144 4843 +4845 2 482.8927 308.9372 76.0326 0.1144 4844 +4846 2 484.0298 309.0356 76.6142 0.1144 4845 +4847 2 485.1704 309.118 77.0473 0.1144 4846 +4848 2 486.3133 309.1774 77.3746 0.1144 4847 +4849 2 487.4504 309.1694 77.6826 0.1144 4848 +4850 2 488.5555 309.0859 78.052 0.1144 4849 +4851 2 489.6766 309.0161 78.461 0.1144 4850 +4852 2 490.8057 308.8686 78.8726 0.1144 4851 +4853 2 491.7804 308.3172 79.322 0.1144 4852 +4854 2 492.5412 307.5141 79.8095 0.1144 4853 +4855 2 493.2825 306.6709 80.283 0.1144 4854 +4856 2 494.0387 305.829 80.7145 0.1144 4855 +4857 2 494.8132 304.9973 81.1009 0.1144 4856 +4858 2 495.6186 304.1873 81.429 0.1144 4857 +4859 2 496.4422 303.3934 81.697 0.1144 4858 +4860 2 497.2705 302.604 81.9386 0.1144 4859 +4861 2 498.0976 301.8238 82.213 0.1144 4860 +4862 2 498.927 301.0596 82.5499 0.1144 4861 +4863 2 499.8445 300.4007 82.9424 0.1144 4862 +4864 2 500.8203 299.8264 83.3798 0.1144 4863 +4865 2 501.8122 299.2818 83.8583 0.1144 4864 +4866 2 502.8235 298.8048 84.3923 0.1144 4865 +4867 2 503.8691 298.4376 84.98 0.1144 4866 +4868 2 504.9765 298.314 85.6008 0.1144 4867 +4869 2 506.0953 298.3289 86.2434 0.1144 4868 +4870 2 507.2027 298.3346 86.9193 0.1144 4869 +4871 2 508.3009 298.3186 87.6274 0.1144 4870 +4872 2 509.3992 298.298 88.3571 0.1144 4871 +4873 2 510.4963 298.2763 89.1022 0.1144 4872 +4874 2 511.5934 298.2545 89.8621 0.1144 4873 +4875 2 512.7053 298.1138 90.6046 0.1144 4874 +4876 2 513.8162 297.8839 91.313 0.1144 4875 +4877 2 514.9247 297.6711 92.0214 0.1144 4876 +4878 2 515.9943 297.6265 92.822 0.1144 4877 +4879 2 516.9988 297.6802 93.7446 0.1144 4878 +4880 2 518.0089 297.75 94.7719 0.1144 4879 +4881 2 519.0694 297.8301 95.8384 0.1144 4880 +4882 2 520.1562 297.9136 96.8982 0.1144 4881 +4883 2 521.1961 298.0475 97.9737 0.1144 4882 +4884 2 522.0038 298.3152 99.1449 0.1144 4883 +4885 2 522.9922 298.5291 100.2879 0.1144 4884 +4886 2 524.0858 298.6721 101.3172 0.1144 4885 +4887 2 525.191 298.8036 102.2445 0.1144 4886 +4888 2 526.2778 299.1034 103.0705 0.1144 4887 +4889 2 526.5832 299.0874 103.7952 0.1144 4888 +4890 2 527.6448 299.0313 104.5646 0.1144 4889 +4891 2 528.7065 298.9752 105.3982 0.1144 4890 +4892 2 529.7589 299.18 106.2824 0.1144 4891 +4893 2 530.8091 299.4409 107.2044 0.1144 4892 +4894 2 531.8593 299.7017 108.1514 0.1144 4893 +4895 2 532.8214 300.0426 109.1499 0.1144 4894 +4896 2 533.7515 300.4121 110.1744 0.1144 4895 +4897 2 534.6621 300.84 111.1883 0.1144 4896 +4898 2 535.5156 301.4429 112.1434 0.1144 4897 +4899 2 536.3701 302.0446 113.0237 0.1144 4898 +4900 2 536.9215 302.9953 113.6873 0.1144 4899 +4901 2 537.3917 304.0374 114.1336 0.1144 4900 +4902 2 537.5805 305.1631 114.4284 0.1144 4901 +4903 2 537.7555 306.2934 114.6197 0.1144 4902 +4904 2 537.9305 307.4225 114.7488 0.1144 4903 +4905 2 538.1056 308.5528 114.8482 0.1144 4904 +4906 2 538.2806 309.6819 114.9473 0.1144 4905 +4907 2 538.4556 310.8122 115.0492 0.1144 4906 +4908 2 538.6307 311.9425 115.1508 0.1144 4907 +4909 2 538.8057 313.0716 115.2525 0.1144 4908 +4910 2 538.9807 314.2019 115.3533 0.1144 4909 +4911 2 539.1558 315.331 115.4535 0.1144 4910 +4912 2 539.3308 316.4613 115.5529 0.1144 4911 +4913 2 539.5058 317.5904 115.6509 0.1144 4912 +4914 2 539.6809 318.7207 115.7472 0.1144 4913 +4915 2 539.8559 319.8498 115.841 0.1144 4914 +4916 2 540.0309 320.9801 115.9312 0.1144 4915 +4917 2 540.206 322.1092 116.0163 0.1144 4916 +4918 2 540.4897 323.2166 116.0953 0.1144 4917 +4919 2 540.8512 324.3011 116.1644 0.1144 4918 +4920 2 541.215 325.3845 116.219 0.1144 4919 +4921 2 541.5788 326.4679 116.2538 0.1144 4920 +4922 2 541.9425 327.5512 116.2596 0.1144 4921 +4923 2 542.3006 328.6334 116.1866 0.1144 4922 +4924 2 542.6575 329.7145 116.0485 0.1144 4923 +4925 2 543.0145 330.7956 115.862 0.1144 4924 +4926 2 543.3725 331.8767 115.6428 0.1144 4925 +4927 2 543.7295 332.9589 115.4054 0.1144 4926 +4928 2 544.0864 334.04 115.1629 0.1144 4927 +4929 2 544.8678 334.8648 114.933 0.1144 4928 +4930 2 545.7841 335.5444 114.7185 0.1144 4929 +4931 2 546.7016 336.2227 114.5169 0.1144 4930 +4932 2 547.6202 336.9011 114.3257 0.1144 4931 +4933 2 548.5377 337.5795 114.1431 0.1144 4932 +4934 2 549.4552 338.2591 113.9681 0.1144 4933 +4935 2 550.3727 338.9375 113.7998 0.1144 4934 +4936 2 551.2902 339.6158 113.6402 0.1144 4935 +4937 2 552.2077 340.2954 113.4927 0.1144 4936 +4938 2 553.1251 340.9738 113.3608 0.1144 4937 +4939 2 554.0438 341.6522 113.253 0.1144 4938 +4940 2 554.9613 342.3306 113.1799 0.1144 4939 +4941 2 555.8788 343.0101 113.1525 0.1144 4940 +4942 2 556.7962 343.6885 113.1816 0.1144 4941 +4943 2 557.7137 344.3669 113.2746 0.1144 4942 +4944 2 558.7571 344.7101 113.575 0.1144 4943 +4945 2 559.8004 345.0293 114.0619 0.1144 4944 +4946 2 560.8449 345.3484 114.6726 0.1144 4945 +4947 2 561.8882 345.6676 115.3505 0.1144 4946 +4948 2 562.9384 345.9662 116.0454 0.1144 4947 +4949 2 564.0023 346.2064 116.7144 0.1144 4948 +4950 2 565.0674 346.4467 118.0197 0.1144 4949 +4951 2 527.2193 299.7143 103.0288 0.1144 4888 +4952 2 528.1219 300.4167 103.2682 0.1144 4951 +4953 2 528.9822 301.1706 103.3648 0.1144 4952 +4954 2 529.7475 302.0206 103.4933 0.1144 4953 +4955 2 530.482 302.898 103.6574 0.1144 4954 +4956 2 531.2805 303.6828 103.9391 0.1144 4955 +4957 2 532.0904 304.4287 104.337 0.1144 4956 +4958 2 532.9015 305.1689 104.8163 0.1144 4957 +4959 2 533.9174 305.6528 105.3046 0.1144 4958 +4960 2 535.0179 305.9388 105.7574 0.1144 4959 +4961 2 536.1276 306.1939 106.1707 0.1144 4960 +4962 2 537.2647 306.306 106.5299 0.1144 4961 +4963 2 538.4076 306.2694 106.8385 0.1144 4962 +4964 2 539.5493 306.2008 107.1213 0.1144 4963 +4965 2 540.5995 306.1504 107.5603 0.1144 4964 +4966 2 541.6337 306.1024 108.127 0.1144 4965 +4967 2 542.6736 306.5462 108.666 0.1144 4966 +4968 2 543.7123 306.9958 109.1656 0.1144 4967 +4969 2 544.7499 307.4454 109.618 0.1144 4968 +4970 2 545.7955 307.8847 110.0106 0.1144 4969 +4971 2 546.8846 308.2359 110.2884 0.1144 4970 +4972 2 547.9737 308.5871 110.4947 0.1144 4971 +4973 2 549.0617 308.9395 110.6722 0.1144 4972 +4974 2 550.1954 309.0413 110.8814 0.1144 4973 +4975 2 551.3291 309.0962 111.1432 0.1144 4974 +4976 2 552.4639 309.1523 111.4462 0.1144 4975 +4977 2 553.5976 309.2072 111.7777 0.1144 4976 +4978 2 554.7084 309.3742 112.1464 0.1144 4977 +4979 2 555.8032 309.5847 112.537 0.1144 4978 +4980 2 556.8992 309.7952 113.4 0.1144 4979 +4981 2 516.9873 298.1401 92.2872 0.1144 4878 +4982 2 518.0032 298.6664 92.258 0.1144 4981 +4983 2 519.0191 299.1926 92.2454 0.1144 4982 +4984 2 520.0349 299.7188 92.2314 0.1144 4983 +4985 2 521.0508 300.2451 92.2172 0.1144 4984 +4986 2 522.0667 300.7713 92.2046 0.1144 4985 +4987 2 523.0826 301.2976 92.1959 0.1144 4986 +4988 2 524.0984 301.8227 92.1931 0.1144 4987 +4989 2 525.1143 302.3489 92.1995 0.1144 4988 +4990 2 526.1302 302.8751 92.2186 0.1144 4989 +4991 2 527.146 303.4014 92.2541 0.1144 4990 +4992 2 528.1608 303.9276 92.3087 0.1144 4991 +4993 2 529.1869 304.4253 92.398 0.1144 4992 +4994 2 530.2417 304.8417 92.5596 0.1144 4993 +4995 2 531.2976 305.257 92.7749 0.1144 4994 +4996 2 532.3707 305.5899 93.021 0.1144 4995 +4997 2 533.5113 305.6082 93.263 0.1144 4996 +4998 2 534.653 305.6253 93.4956 0.1144 4997 +4999 2 535.7947 305.6471 93.7152 0.1144 4998 +5000 2 536.9353 305.6928 93.9226 0.1144 4999 +5001 2 538.0758 305.7397 94.1251 0.1144 5000 +5002 2 539.2152 305.7855 94.3292 0.1144 5001 +5003 2 540.3558 305.8312 94.5386 0.1144 5002 +5004 2 541.4964 305.8781 94.7509 0.1144 5003 +5005 2 542.6232 305.8278 94.9729 0.1144 5004 +5006 2 543.7203 305.5521 95.2286 0.1144 5005 +5007 2 544.8174 305.2775 95.5167 0.1144 5006 +5008 2 545.9134 305.0453 95.7435 0.1144 5007 +5009 2 547.007 304.8382 95.886 0.1144 5008 +5010 2 548.1018 304.6312 96.0187 0.1144 5009 +5011 2 549.1177 304.5374 96.432 0.1144 5010 +5012 2 550.1336 304.4436 97.0519 0.1144 5011 +5013 2 551.1495 304.3498 97.8146 0.1144 5012 +5014 2 552.1653 304.2548 98.6608 0.1144 5013 +5015 2 553.1812 304.161 100.578 0.1144 5014 +5016 2 453.7573 288.9664 52.4818 0.1144 4807 +5017 2 453.5079 288.0912 52.9066 0.1144 5016 +5018 2 453.4896 288.0855 53.2944 0.1144 5017 +5019 2 452.4108 287.7057 52.8738 0.1144 5018 +5020 2 451.4087 287.2115 52.6733 0.1144 5019 +5021 2 450.3928 286.7585 52.3743 0.1144 5020 +5022 2 449.3357 286.3501 52.0472 0.1144 5021 +5023 2 448.2798 285.9176 51.7325 0.1144 5022 +5024 2 447.2228 285.5161 51.4083 0.1144 5023 +5025 2 446.1245 285.4108 51.0608 0.1144 5024 +5026 2 445.0126 285.5321 50.7332 0.1144 5025 +5027 2 443.8812 285.4863 50.4767 0.1144 5026 +5028 2 442.7978 285.142 50.3098 0.1144 5027 +5029 2 441.7156 284.7748 50.237 0.1144 5028 +5030 2 440.6196 284.4728 50.2729 0.1144 5029 +5031 2 439.5259 284.1993 50.4076 0.1144 5030 +5032 2 438.4071 284.0289 50.58 0.1144 5031 +5033 2 437.2711 284.0552 50.7189 0.1144 5032 +5034 2 436.1557 284.2771 50.8116 0.1144 5033 +5035 2 435.0392 284.5139 50.8298 0.1144 5034 +5036 2 433.9295 284.4602 50.678 0.1144 5035 +5037 2 432.845 284.3549 50.3524 0.1144 5036 +5038 2 431.7628 284.3103 49.9125 0.1144 5037 +5039 2 430.7194 284.0403 49.4194 0.1144 5038 +5040 2 429.8294 283.3802 48.9751 0.1144 5039 +5041 2 429.2837 282.3872 48.6858 0.1144 5040 +5042 2 428.9359 281.2993 48.5419 0.1144 5041 +5043 2 428.5824 280.2342 48.6052 0.1144 5042 +5044 2 428.2129 280.2342 48.8429 0.1144 5043 +5045 2 427.1982 280.2342 49.2237 0.1144 5044 +5046 2 426.0542 280.2342 49.5438 0.1144 5045 +5047 2 424.9514 280.4939 49.7921 0.1144 5046 +5048 2 423.82 280.574 49.9705 0.1144 5047 +5049 2 423.4573 280.0077 50.1141 0.1144 5048 +5050 2 422.7618 279.1474 50.2499 0.1144 5049 +5051 2 421.7459 278.6406 50.3734 0.1144 5050 +5052 2 420.6808 278.2791 50.4358 0.1144 5051 +5053 2 419.578 278.0309 50.3969 0.1144 5052 +5054 2 418.4752 277.7826 50.2799 0.1144 5053 +5055 2 417.6 277.0585 50.1642 0.1144 5054 +5056 2 416.5167 276.7004 50.0766 0.1144 5055 +5057 2 415.4413 276.3481 50.0592 0.1144 5056 +5058 2 414.3614 275.9854 50.0063 0.1144 5057 +5059 2 413.2826 275.6239 49.9201 0.1144 5058 +5060 2 412.2038 275.2613 49.8028 0.1144 5059 +5061 2 411.1239 274.8998 49.6591 0.1144 5060 +5062 2 410.0119 274.6344 49.5412 0.1144 5061 +5063 2 408.8885 274.4204 49.4522 0.1144 5062 +5064 2 407.7559 274.2523 49.4001 0.1144 5063 +5065 2 406.6428 273.9891 49.3749 0.1144 5064 +5066 2 405.6098 273.4995 49.3668 0.1144 5065 +5067 2 404.6099 272.9435 49.3665 0.1144 5066 +5068 2 403.6032 272.399 49.3665 0.1144 5067 +5069 2 422.6554 280.4813 49.7683 0.1144 5048 +5070 2 421.5171 280.4482 49.7372 0.1144 5069 +5071 2 420.4166 280.7513 49.7123 0.1144 5070 +5072 2 419.3389 281.1346 49.6672 0.1144 5071 +5073 2 418.2167 281.3142 49.5701 0.1144 5072 +5074 2 417.0761 281.3325 49.4455 0.1144 5073 +5075 2 416.0167 280.9012 49.3366 0.1144 5074 +5076 2 414.9574 280.4699 49.2366 0.1144 5075 +5077 2 413.8248 280.3498 49.1126 0.1144 5076 +5078 2 412.6923 280.2388 48.8054 0.1144 5077 +5079 2 428.4314 279.6016 49.6905 0.1144 5043 +5080 2 428.4143 278.7127 52.3572 0.1144 5079 +5081 2 428.2484 278.0263 53.5102 0.1144 5080 +5082 2 427.7645 277.1409 54.707 0.1144 5081 +5083 2 427.2554 276.3138 55.9222 0.1144 5082 +5084 2 426.8939 276.2016 58.9168 0.1144 5083 +5085 2 453.7459 287.8384 53.3229 0.1144 5017 +5086 2 454.5238 287.0159 53.7779 0.1144 5085 +5087 2 455.074 286.0286 54.2559 0.1144 5086 +5088 2 455.7353 285.1226 54.7641 0.1144 5087 +5089 2 456.4571 284.2634 55.2538 0.1144 5088 +5090 2 457.2602 283.466 55.7038 0.1144 5089 +5091 2 458.1434 282.7602 56.1518 0.1144 5090 +5092 2 459.022 282.0692 56.6104 0.1144 5091 +5093 2 459.8983 281.3714 57.0662 0.1144 5092 +5094 2 460.8444 280.7513 57.4916 0.1144 5093 +5095 2 461.8946 280.3029 57.8617 0.1144 5094 +5096 2 462.9574 279.8807 58.179 0.1144 5095 +5097 2 463.9847 279.3785 58.4746 0.1144 5096 +5098 2 464.996 278.8546 58.7829 0.1144 5097 +5099 2 465.9649 278.2769 59.1402 0.1144 5098 +5100 2 466.8023 277.5561 59.5851 0.1144 5099 +5101 2 467.6283 276.8286 60.1056 0.1144 5100 +5102 2 468.5721 276.2119 60.6399 0.1144 5101 +5103 2 469.5193 275.5759 61.1372 0.1144 5102 +5104 2 470.3796 274.8243 61.602 0.1144 5103 +5105 2 471.1061 273.9617 62.0922 0.1144 5104 +5106 2 471.6838 273.0396 62.6676 0.1144 5105 +5107 2 472.2695 272.1301 63.3206 0.1144 5106 +5108 2 473.0383 271.3065 63.9727 0.1144 5107 +5109 2 473.8608 270.5594 64.6422 0.1144 5108 +5110 2 474.5998 269.9131 65.4153 0.1144 5109 +5111 2 475.5665 269.6591 66.2225 0.1144 5110 +5112 2 476.0195 269.0562 67.4954 0.1144 5111 +5113 2 476.7037 268.1433 67.8689 0.1144 5112 +5114 2 477.3878 267.2315 68.0271 0.1144 5113 +5115 2 478.0719 266.3186 68.2178 0.1144 5114 +5116 2 478.756 265.4069 68.4334 0.1144 5115 +5117 2 479.4401 264.4939 68.6678 0.1144 5116 +5118 2 480.1242 263.581 68.9172 0.1144 5117 +5119 2 480.8152 262.6738 69.1782 0.1144 5118 +5120 2 481.5199 261.7769 69.454 0.1144 5119 +5121 2 482.228 260.8823 69.75 0.1144 5120 +5122 2 482.8755 259.9488 70.0874 0.1144 5121 +5123 2 483.4647 258.9822 70.4802 0.1144 5122 +5124 2 484.0413 258.0109 70.9257 0.1144 5123 +5125 2 484.9199 257.3783 71.4501 0.1144 5124 +5126 2 485.8877 256.8463 72.044 0.1144 5125 +5127 2 486.8555 256.3132 72.6858 0.1144 5126 +5128 2 487.8245 255.7824 73.355 0.1144 5127 +5129 2 488.7923 255.2516 74.0362 0.1144 5128 +5130 2 489.7613 254.7185 74.718 0.1144 5129 +5131 2 490.6708 254.0698 75.3696 0.1144 5130 +5132 2 491.5505 253.3663 75.9864 0.1144 5131 +5133 2 492.4268 252.6558 76.5836 0.1144 5132 +5134 2 493.302 251.9454 77.1781 0.1144 5133 +5135 2 494.1874 251.2487 77.789 0.1144 5134 +5136 2 495.1541 250.7156 78.4479 0.1144 5135 +5137 2 496.1436 250.2283 79.1526 0.1144 5136 +5138 2 497.052 249.9926 79.9842 0.1144 5137 +5139 2 497.8997 249.8896 80.9315 0.1144 5138 +5140 2 498.7314 249.9686 81.9272 0.1144 5139 +5141 2 498.4568 251.0588 82.5614 0.1144 5140 +5142 2 498.1811 252.149 83.0253 0.1144 5141 +5143 2 476.182 269.8993 66.8564 0.1144 5111 +5144 2 477.1979 270.405 67.3439 0.1144 5143 +5145 2 478.1623 271.0193 67.6992 0.1144 5144 +5146 2 479.1026 271.6634 67.958 0.1144 5145 +5147 2 480.0441 272.3052 68.1472 0.1144 5146 +5148 2 481.076 272.7525 68.29 0.1144 5147 +5149 2 482.2029 272.8955 68.3992 0.1144 5148 +5150 2 483.3457 272.8898 68.4698 0.1144 5149 +5151 2 484.4886 272.8383 68.5065 0.1144 5150 +5152 2 485.6234 272.7033 68.5132 0.1144 5151 +5153 2 486.7445 272.4814 68.4953 0.1144 5152 +5154 2 487.8611 272.2297 68.458 0.1144 5153 +5155 2 488.9765 271.9757 68.4009 0.1144 5154 +5156 2 490.093 271.7252 68.3203 0.1144 5155 +5157 2 491.2096 271.4769 68.2111 0.1144 5156 +5158 2 492.3307 271.2504 68.0674 0.1144 5157 +5159 2 493.4312 271.3007 67.8437 0.1144 5158 +5160 2 494.4402 271.7034 67.5021 0.1144 5159 +5161 2 495.384 272.2342 67.0692 0.1144 5160 +5162 2 496.3473 272.796 66.6386 0.1144 5161 +5163 2 497.3311 273.3748 66.2931 0.1144 5162 +5164 2 498.2875 274.0006 66.05 0.1144 5163 +5165 2 499.102 274.7877 65.9014 0.1144 5164 +5166 2 499.7793 275.7086 65.8288 0.1144 5165 +5167 2 500.4382 276.6432 65.8039 0.1144 5166 +5168 2 501.1498 277.5378 65.7992 0.1144 5167 +5169 2 501.9014 278.4004 65.7983 0.1144 5168 +5170 2 502.6118 279.295 65.7978 0.1144 5169 +5171 2 503.249 280.2445 65.7969 0.1144 5170 +5172 2 503.9412 281.1517 65.7955 0.1144 5171 +5173 2 504.8163 281.8702 65.7938 0.1144 5172 +5174 2 505.8207 282.4124 65.7913 0.1144 5173 +5175 2 506.903 282.759 65.788 0.1144 5174 +5176 2 508.0287 282.9615 65.7829 0.1144 5175 +5177 2 509.1589 283.1411 65.7762 0.1144 5176 +5178 2 510.2869 283.3288 65.767 0.1144 5177 +5179 2 511.416 283.5107 65.7538 0.1144 5178 +5180 2 512.5543 283.5736 65.7353 0.1144 5179 +5181 2 513.6983 283.5667 65.7096 0.1144 5180 +5182 2 514.7943 283.815 65.6737 0.1144 5181 +5183 2 515.8445 284.2691 65.6228 0.1144 5182 +5184 2 516.9015 284.7038 65.5516 0.1144 5183 +5185 2 517.986 285.0665 65.4536 0.1144 5184 +5186 2 519.0831 285.3914 65.3184 0.1144 5185 +5187 2 520.1848 285.698 65.1302 0.1144 5186 +5188 2 521.2933 285.809 64.8334 0.1144 5187 +5189 2 522.3756 285.5504 64.4633 0.1144 5188 +5190 2 523.4498 285.3754 63.9943 0.1144 5189 +5191 2 524.1808 285.8581 63.2974 0.1144 5190 +5192 2 525.1681 285.897 62.5332 0.1144 5191 +5193 2 526.2983 285.7872 61.8332 0.1144 5192 +5194 2 527.4366 285.8055 61.2066 0.1144 5193 +5195 2 528.4308 285.7906 60.4859 0.1144 5194 +5196 2 529.4409 286.1682 59.7839 0.1144 5195 +5197 2 530.4785 286.6281 59.187 0.1144 5196 +5198 2 531.5916 286.7116 58.6183 0.1144 5197 +5199 2 532.6887 286.54 58.0476 0.1144 5198 +5200 2 533.827 286.4336 57.5786 0.1144 5199 +5201 2 534.9699 286.4324 57.176 0.1144 5200 +5202 2 535.8233 287.0708 56.6658 0.1144 5201 +5203 2 536.1482 287.7778 57.423 0.1144 5202 +5204 2 536.6001 288.7467 57.9953 0.1144 5203 +5205 2 537.1435 289.6711 58.1977 0.1144 5204 +5206 2 537.6548 290.6435 58.2826 0.1144 5205 +5207 2 537.5931 291.6697 58.4556 0.1144 5206 +5208 2 537.2327 292.6913 58.7306 0.1144 5207 +5209 2 536.7945 293.7083 59.0316 0.1144 5208 +5210 2 536.1573 294.6372 59.2525 0.1144 5209 +5211 2 535.4389 295.5284 59.383 0.1144 5210 +5212 2 535.0877 296.5763 59.3986 0.1144 5211 +5213 2 535.2673 297.6654 59.2634 0.1144 5212 +5214 2 535.797 298.592 58.9856 0.1144 5213 +5215 2 536.488 299.4328 58.6561 0.1144 5214 +5216 2 537.1995 300.2989 58.3828 0.1144 5215 +5217 2 537.5793 301.1626 58.4858 0.1144 5216 +5218 2 537.1961 302.2173 58.6905 0.1144 5217 +5219 2 536.5326 303.1417 58.9915 0.1144 5218 +5220 2 536.1848 304.1907 59.4168 0.1144 5219 +5221 2 536.1791 305.2718 59.9301 0.1144 5220 +5222 2 536.1791 306.3472 61.147 0.1144 5221 +5223 2 536.1219 287.3328 56.1658 0.1144 5202 +5224 2 536.9295 288.0535 55.5988 0.1144 5223 +5225 2 537.8253 288.7078 55.0589 0.1144 5224 +5226 2 538.633 289.1586 54.4522 0.1144 5225 +5227 2 539.515 289.5922 53.8392 0.1144 5226 +5228 2 540.5446 290.0841 53.3862 0.1144 5227 +5229 2 541.6485 290.3209 53.0785 0.1144 5228 +5230 2 542.7857 290.4536 52.8968 0.1144 5229 +5231 2 543.821 290.8872 52.8007 0.1144 5230 +5232 2 544.735 291.5656 52.7666 0.1144 5231 +5233 2 545.6171 292.2886 52.7744 0.1144 5232 +5234 2 546.6524 292.7233 52.8352 0.1144 5233 +5235 2 547.7564 293.0207 52.9595 0.1144 5234 +5236 2 548.85 293.2358 53.2347 0.1144 5235 +5237 2 549.93 293.4268 53.6525 0.1144 5236 +5238 2 550.9893 293.5218 54.2018 0.1144 5237 +5239 2 551.996 293.1397 54.8128 0.1144 5238 +5240 2 552.1241 293.1191 55.316 0.1144 5239 +5241 2 553.2487 293.0253 55.7698 0.1144 5240 +5242 2 554.3058 293.3536 56.1487 0.1144 5241 +5243 2 555.3479 293.8101 56.4584 0.1144 5242 +5244 2 556.4599 293.9016 56.7165 0.1144 5243 +5245 2 557.5959 293.8101 56.9394 0.1144 5244 +5246 2 558.5683 293.2907 57.0836 0.1144 5245 +5247 2 559.5579 293.3982 57.2883 0.1144 5246 +5248 2 560.5005 294.0229 57.4417 0.1144 5247 +5249 2 561.6216 294.0698 57.5347 0.1144 5248 +5250 2 562.3332 293.2484 57.6475 0.1144 5249 +5251 2 563.0539 292.4053 57.6198 0.1144 5250 +5252 2 563.7815 291.5873 57.4658 0.1144 5251 +5253 2 564.7905 291.0656 57.3317 0.1144 5252 +5254 2 565.8464 290.6263 57.2723 0.1144 5253 +5255 2 566.9035 290.1905 57.2911 0.1144 5254 +5256 2 567.9605 289.7558 57.3854 0.1144 5255 +5257 2 569.0176 289.3199 57.5618 0.1144 5256 +5258 2 570.0815 288.9103 57.8124 0.1144 5257 +5259 2 571.1409 288.669 58.1958 0.1144 5258 +5260 2 571.9737 287.9574 58.653 0.1144 5259 +5261 2 572.7596 287.1852 59.1469 0.1144 5260 +5262 2 573.6085 286.4267 59.5834 0.1144 5261 +5263 2 574.4836 285.69 59.9178 0.1144 5262 +5264 2 575.5109 285.2049 60.2042 0.1144 5263 +5265 2 576.5623 284.7725 60.4388 0.1144 5264 +5266 2 577.6594 284.4648 60.6262 0.1144 5265 +5267 2 578.7576 284.1593 60.7779 0.1144 5266 +5268 2 579.8856 284.3378 60.8717 0.1144 5267 +5269 2 581.0113 284.5448 60.9157 0.1144 5268 +5270 2 582.1313 284.7736 60.9003 0.1144 5269 +5271 2 583.2432 285.0322 60.8224 0.1144 5270 +5272 2 584.3541 285.2907 60.6984 0.1144 5271 +5273 2 585.4912 285.4074 60.5828 0.1144 5272 +5274 2 586.6306 285.5149 60.4607 0.1144 5273 +5275 2 587.7735 285.5584 60.3176 0.1144 5274 +5276 2 588.8854 285.3182 60.1188 0.1144 5275 +5277 2 589.9391 284.9086 59.8514 0.1144 5276 +5278 2 590.987 284.4853 59.5235 0.1144 5277 +5279 2 592.0932 284.2257 59.1595 0.1144 5278 +5280 2 593.2246 284.0884 58.7796 0.1144 5279 +5281 2 594.3583 283.9614 58.3828 0.1144 5280 +5282 2 595.492 284.0277 57.9499 0.1144 5281 +5283 2 596.5056 284.5185 57.454 0.1144 5282 +5284 2 597.4243 285.1637 56.8929 0.1144 5283 +5285 2 598.2662 285.865 56.238 0.1144 5284 +5286 2 598.7513 286.6875 55.4148 0.1144 5285 +5287 2 599.2684 287.454 54.474 0.1144 5286 +5288 2 600.3392 287.1371 53.6337 0.1144 5287 +5289 2 601.4019 286.7688 52.9105 0.1144 5288 +5290 2 602.4716 286.4061 52.3068 0.1144 5289 +5291 2 602.7141 286.3249 51.8641 0.1144 5290 +5292 2 603.7883 285.9668 51.5029 0.1144 5291 +5293 2 604.8808 285.6808 51.1932 0.1144 5292 +5294 2 606.0191 285.6305 50.92 0.1144 5293 +5295 2 607.1597 285.7174 50.6778 0.1144 5294 +5296 2 608.3003 285.8124 50.4442 0.1144 5295 +5297 2 609.3985 286.0194 50.1743 0.1144 5296 +5298 2 610.4041 286.4645 49.7952 0.1144 5297 +5299 2 611.4211 286.8065 49.3035 0.1144 5298 +5300 2 612.4072 287.2069 48.7329 0.1144 5299 +5301 2 613.3602 287.8007 48.2028 0.1144 5300 +5302 2 614.3497 288.1885 47.7744 0.1144 5301 +5303 2 615.48 288.0134 47.4258 0.1144 5302 +5304 2 616.6011 287.7881 47.1257 0.1144 5303 +5305 2 617.72 287.5547 46.8289 0.1144 5304 +5306 2 618.8502 287.3785 46.492 0.1144 5305 +5307 2 619.8524 287.5261 46.018 0.1144 5306 +5308 2 620.5914 288.1942 45.281 0.1144 5307 +5309 2 621.3236 288.6815 44.2859 0.1144 5308 +5310 2 622.2365 288.685 43.1438 0.1144 5309 +5311 2 623.2054 288.2445 42.0017 0.1144 5310 +5312 2 624.0291 287.5638 40.8856 0.1144 5311 +5313 2 624.7281 286.8294 39.7704 0.1144 5312 +5314 2 625.4385 286.2517 38.6274 0.1144 5313 +5315 2 626.4166 285.754 37.6524 0.1144 5314 +5316 2 627.2094 284.9727 36.7654 0.1144 5315 +5317 2 628.1715 284.4087 35.901 0.1144 5316 +5318 2 629.1897 283.8928 35.0871 0.1144 5317 +5319 2 630.09 283.4958 34.0984 0.1144 5318 +5320 2 630.9789 282.9066 33.0672 0.1144 5319 +5321 2 631.6104 283.0302 31.7061 0.1144 5320 +5322 2 632.0943 283.3894 30.1008 0.1144 5321 +5323 2 632.8928 283.5404 28.3875 0.1144 5322 +5324 2 633.6227 283.8367 26.6433 0.1144 5323 +5325 2 634.0563 284.522 24.8956 0.1144 5324 +5326 2 634.5459 285.2598 23.2269 0.1144 5325 +5327 2 634.8296 286.3146 21.8315 0.1144 5326 +5328 2 635.7334 286.556 20.5685 0.1144 5327 +5329 2 636.5056 286.7825 19.3358 0.1144 5328 +5330 2 637.3762 286.5571 16.8294 0.1144 5329 +5331 2 602.7862 285.4932 53.3282 0.1144 5290 +5332 2 603.2152 284.5002 53.5018 0.1144 5331 +5333 2 603.7609 283.4992 53.5402 0.1144 5332 +5334 2 604.413 282.5669 53.6026 0.1144 5333 +5335 2 605.3956 282.3289 53.6861 0.1144 5334 +5336 2 606.2811 283.037 53.7471 0.1144 5335 +5337 2 607.1059 283.8275 53.7975 0.1144 5336 +5338 2 607.9262 284.6238 53.8294 0.1144 5337 +5339 2 608.7464 285.42 53.8398 0.1144 5338 +5340 2 609.5667 286.2151 53.8121 0.1144 5339 +5341 2 610.3389 287.0593 53.7146 0.1144 5340 +5342 2 611.0298 287.9631 53.5147 0.1144 5341 +5343 2 611.7162 288.8703 53.2213 0.1144 5342 +5344 2 612.4038 289.7763 52.8511 0.1144 5343 +5345 2 612.5994 290.8288 52.3345 0.1144 5344 +5346 2 612.5148 291.8367 51.6869 0.1144 5345 +5347 2 613.5329 292.0929 50.9902 0.1144 5346 +5348 2 614.6232 292.1536 50.328 0.1144 5347 +5349 2 615.6688 292.4304 49.7633 0.1144 5348 +5350 2 616.6274 293.0139 49.3892 0.1144 5349 +5351 2 617.7085 293.0219 49.184 0.1144 5350 +5352 2 618.658 292.3938 49.11 0.1144 5351 +5353 2 619.4977 291.6228 49.1462 0.1144 5352 +5354 2 620.1944 290.7728 49.3111 0.1144 5353 +5355 2 620.6806 289.7775 49.4897 0.1144 5354 +5356 2 621.4586 289.0156 49.6171 0.1144 5355 +5357 2 622.384 288.3475 49.7521 0.1144 5356 +5358 2 623.4068 287.9276 49.9192 0.1144 5357 +5359 2 624.3998 287.43 50.1264 0.1144 5358 +5360 2 625.442 287.1726 50.3874 0.1144 5359 +5361 2 626.1204 286.707 50.8329 0.1144 5360 +5362 2 626.6546 285.9085 51.2599 0.1144 5361 +5363 2 627.2769 284.9761 51.49 0.1144 5362 +5364 2 628.1395 284.2382 51.5953 0.1144 5363 +5365 2 629.0055 283.5038 51.5595 0.1144 5364 +5366 2 629.3384 282.5646 51.2963 0.1144 5365 +5367 2 629.208 281.472 51.0642 0.1144 5366 +5368 2 629.367 280.3772 50.4885 0.1144 5367 +5369 2 551.9789 293.3022 55.8096 0.1144 5239 +5370 2 551.8782 294.2448 55.5419 0.1144 5369 +5371 2 551.5647 294.9655 55.4655 0.1144 5370 +5372 2 550.8623 295.2664 54.9567 0.1144 5371 +5373 2 550.1244 295.4128 54.1215 0.1144 5372 +5374 2 549.3191 295.2904 53.1457 0.1144 5373 +5375 2 548.357 294.7104 52.2886 0.1144 5374 +5376 2 547.9348 293.7723 51.5376 0.1144 5375 +5377 2 547.9474 292.6524 50.895 0.1144 5376 +5378 2 547.9382 291.529 50.3678 0.1144 5377 +5379 2 547.7209 290.4319 49.9453 0.1144 5378 +5380 2 547.2107 289.416 49.595 0.1144 5379 +5381 2 546.4499 288.5889 49.2467 0.1144 5380 +5382 2 545.5313 288.0077 48.8384 0.1144 5381 +5383 2 544.8586 287.303 48.3255 0.1144 5382 +5384 2 544.7682 286.27 47.8324 0.1144 5383 +5385 2 544.9719 285.1706 47.5115 0.1144 5384 +5386 2 544.4502 284.2302 47.2702 0.1144 5385 +5387 2 543.503 283.6159 47.0714 0.1144 5386 +5388 2 542.7662 284.2188 46.8062 0.1144 5387 +5389 2 542.2617 285.0402 46.377 0.1144 5388 +5390 2 541.4655 285.8524 46.0314 0.1144 5389 +5391 2 540.3776 286.2025 45.7596 0.1144 5390 +5392 2 539.2336 286.2025 45.4395 0.1144 5391 +5393 3 377.1997 280.8623 42.196 0.381 1 +5394 3 377.393 281.9651 42.4178 0.3778 5393 +5395 3 377.9547 282.9306 42.6569 0.3762 5394 +5396 3 378.64 283.8413 42.8865 0.3747 5395 +5397 3 379.2955 284.7622 43.1234 0.3731 5396 +5398 3 380.0974 285.5573 43.3412 0.3715 5397 +5399 3 381.0721 286.1419 43.4913 0.37 5398 +5400 3 382.0262 286.7653 43.5408 0.3684 5399 +5401 3 382.6829 287.6725 43.4997 0.3668 5400 +5402 3 382.9277 288.7753 43.419 0.3652 5401 +5403 3 382.8819 289.9136 43.3418 0.3637 5402 +5404 3 382.7263 291.0473 43.2886 0.3621 5403 +5405 3 382.6497 292.1868 43.265 0.3605 5404 +5406 3 382.7549 293.3239 43.2782 0.359 5405 +5407 3 383.1279 294.4004 43.342 0.3574 5406 +5408 3 383.7491 295.3556 43.4722 0.3558 5407 +5409 3 384.3028 296.3521 43.6881 0.3543 5408 +5410 3 384.6345 297.4354 43.9992 0.3527 5409 +5411 3 384.8851 298.536 44.4088 0.3511 5410 +5412 3 385.2214 299.5884 44.9344 0.3495 5411 +5413 3 385.8163 300.4727 45.5795 0.348 5412 +5414 3 386.6354 301.1706 46.2885 0.3464 5413 +5415 3 387.4945 301.8444 47.0098 0.3448 5414 +5416 3 388.2404 302.6315 47.7232 0.3433 5415 +5417 3 388.9108 303.5055 48.3848 0.3417 5416 +5418 3 389.683 304.3326 48.9359 0.3401 5417 +5419 3 390.5547 305.0682 49.3562 0.3385 5418 +5420 3 391.3658 305.8713 49.6751 0.337 5419 +5421 3 391.7605 306.9318 49.936 0.3354 5420 +5422 3 391.7388 308.0666 50.1584 0.3338 5421 +5423 3 391.8234 309.206 50.3465 0.3323 5422 +5424 3 391.9653 310.3397 50.5182 0.3307 5423 +5425 3 391.8703 311.4723 50.6988 0.3291 5424 +5426 3 391.7102 312.5991 50.8816 0.3276 5425 +5427 3 391.7388 313.7397 51.0395 0.326 5426 +5428 3 391.9413 314.8654 51.1622 0.3244 5427 +5429 3 392.2387 315.9705 51.256 0.3228 5428 +5430 3 392.583 317.0607 51.3304 0.3213 5429 +5431 3 392.9548 318.143 51.3943 0.3197 5430 +5432 3 393.3438 319.2183 51.4612 0.3181 5431 +5433 3 393.7145 320.2994 51.5553 0.3166 5432 +5434 3 394.068 321.3851 51.6922 0.315 5433 +5435 3 394.4226 322.4707 51.8633 0.3134 5434 +5436 3 394.7097 323.5781 52.0554 0.3118 5435 +5437 3 394.9523 324.6958 52.2673 0.3103 5436 +5438 3 395.3675 325.7597 52.5252 0.3087 5437 +5439 3 395.9945 326.7001 52.8682 0.3071 5438 +5440 3 396.5916 327.6393 53.3165 0.3056 5439 +5441 3 396.8845 328.6861 53.8754 0.304 5440 +5442 3 396.7358 329.7488 54.5258 0.3024 5441 +5443 3 396.5298 330.8173 55.2208 0.3008 5442 +5444 3 396.674 331.9327 55.8785 0.2993 5443 +5445 3 397.6224 332.5494 56.4458 0.2977 5444 +5446 3 398.7618 332.5757 56.961 0.2961 5445 +5447 3 399.7342 333.1305 57.4913 0.2946 5446 +5448 3 399.9149 334.1967 58.0958 0.293 5447 +5449 3 400.1906 335.2458 58.7602 0.2914 5448 +5450 3 400.9034 336.098 59.4378 0.2899 5449 +5451 3 401.7728 336.7936 60.1124 0.2883 5450 +5452 3 402.2567 337.6493 60.1605 0.2883 5451 +5453 3 402.9946 338.4982 60.1182 0.2873 5452 +5454 3 403.967 339.0805 60.0852 0.2868 5453 +5455 3 405.0332 339.4877 60.0645 0.2862 5454 +5456 3 406.0754 339.927 60.0944 0.2857 5455 +5457 3 406.9746 340.5963 60.2003 0.2852 5456 +5458 3 407.6827 341.4497 60.37 0.2847 5457 +5459 3 408.1861 342.4518 60.5486 0.2842 5458 +5460 3 408.5773 343.5135 60.6287 0.2837 5459 +5461 3 408.9937 344.5453 60.5413 0.2832 5460 +5462 3 409.5383 345.5269 60.3347 0.2826 5461 +5463 3 410.1652 346.4787 60.086 0.2821 5462 +5464 3 410.8093 347.4248 59.8402 0.2816 5463 +5465 3 411.5014 348.3308 59.5949 0.2811 5464 +5466 3 412.3514 349.0653 59.3127 0.2806 5465 +5467 3 413.3398 349.5721 58.9495 0.2801 5466 +5468 3 414.3728 349.9187 58.4881 0.2796 5467 +5469 3 415.4161 350.2482 57.9622 0.2791 5468 +5470 3 416.3291 350.8659 57.4426 0.2785 5469 +5471 3 416.9949 351.7674 56.9615 0.278 5470 +5472 3 417.457 352.7776 56.5079 0.2775 5471 +5473 3 417.8769 353.8072 56.1019 0.277 5472 +5474 3 418.5804 354.6503 55.802 0.2765 5473 +5475 3 419.4751 355.355 55.6352 0.276 5474 +5476 3 420.0333 356.2988 55.5876 0.2755 5475 +5477 3 420.3925 357.3799 55.6214 0.2749 5476 +5478 3 421.0481 358.2779 55.6934 0.2744 5477 +5479 3 422.0124 358.8682 55.778 0.2739 5478 +5480 3 423.034 359.3773 55.8667 0.2734 5479 +5481 3 423.9161 360.0809 55.9664 0.2729 5480 +5482 3 424.4377 361.0601 56.0734 0.2724 5481 +5483 3 424.4618 362.1767 56.1705 0.2719 5482 +5484 3 424.3737 363.315 56.2512 0.2714 5483 +5485 3 424.8084 364.3079 56.3175 0.2709 5484 +5486 3 425.7327 364.936 56.3746 0.2703 5485 +5487 3 426.7635 365.4336 56.4295 0.2698 5486 +5488 3 427.6604 366.1269 56.4928 0.2693 5487 +5489 3 428.3033 367.0593 56.5779 0.2688 5488 +5490 3 428.8433 368.0671 56.6983 0.2683 5489 +5491 3 429.4862 369.0052 56.866 0.2678 5490 +5492 3 430.1314 369.9387 57.0906 0.2673 5491 +5493 3 430.5867 370.9649 57.3737 0.2667 5492 +5494 3 431.026 371.9991 57.7004 0.2662 5493 +5495 3 431.717 372.8822 58.0303 0.2657 5494 +5496 3 432.5864 373.6167 58.3201 0.2652 5495 +5497 3 433.4364 374.3797 58.5637 0.2647 5496 +5498 3 434.2315 375.1977 58.7751 0.2642 5497 +5499 3 435.0621 375.9813 58.9585 0.2637 5498 +5500 3 435.9578 376.6906 59.1128 0.2632 5499 +5501 3 436.8867 377.3576 59.2516 0.2627 5500 +5502 3 437.7676 378.084 59.3992 0.2621 5501 +5503 3 438.5341 378.9225 59.5708 0.2616 5502 +5504 3 439.1942 379.848 59.7649 0.2611 5503 +5505 3 439.7753 380.8262 59.9718 0.2606 5504 +5506 3 440.2718 381.8523 60.1784 0.2601 5505 +5507 3 440.6608 382.9254 60.3655 0.2596 5506 +5508 3 440.9068 384.0408 60.5228 0.2591 5507 +5509 3 441.0623 385.1722 60.6648 0.2585 5508 +5510 3 441.3255 386.2785 60.8154 0.258 5509 +5511 3 441.8528 387.2795 60.9728 0.2575 5510 +5512 3 442.5896 388.1478 61.1136 0.257 5511 +5513 3 443.4258 388.9268 61.2262 0.2565 5512 +5514 3 444.325 389.6327 61.3122 0.256 5513 +5515 3 445.2906 390.2459 61.3768 0.2555 5514 +5516 3 446.2973 390.7858 61.4272 0.255 5515 +5517 3 447.3086 391.3224 61.4771 0.2544 5516 +5518 3 448.3027 391.8852 61.5465 0.2539 5517 +5519 3 449.3083 392.4263 61.6448 0.2534 5518 +5520 3 450.3665 392.8507 61.7613 0.2529 5519 +5521 3 451.475 393.1276 61.8778 0.2524 5520 +5522 3 452.6019 393.3209 61.9906 0.2519 5521 +5523 3 453.731 393.4982 62.1104 0.2514 5522 +5524 3 454.8555 393.695 62.2457 0.2509 5523 +5525 3 455.9721 393.9353 62.3913 0.2503 5524 +5526 3 457.0738 394.2418 62.5405 0.2498 5525 +5527 3 458.1297 394.672 62.7038 0.2493 5526 +5528 3 459.0872 395.2783 62.8992 0.2488 5527 +5529 3 459.9463 396.0185 63.121 0.2483 5528 +5530 3 460.7483 396.8284 63.3396 0.2478 5529 +5531 3 461.4885 397.7002 63.5362 0.2473 5530 +5532 3 462.2996 398.5044 63.7104 0.2467 5531 +5533 3 463.3269 398.9826 63.8744 0.2462 5532 +5534 3 464.4182 399.3166 64.0534 0.2457 5533 +5535 3 465.497 399.6793 64.276 0.2452 5534 +5536 3 466.6044 399.8989 64.5621 0.2447 5535 +5537 3 467.7233 399.7571 64.8917 0.2442 5536 +5538 3 468.8284 399.4802 65.2422 0.2437 5537 +5539 3 469.9346 399.6484 65.6362 0.2432 5538 +5540 3 470.8487 400.2993 66.0688 0.2426 5539 +5541 3 471.7215 401.02 66.5246 0.2421 5540 +5542 3 472.6676 401.6401 67.0043 0.2416 5541 +5543 3 473.5554 402.3265 67.5237 0.2411 5542 +5544 3 474.363 403.093 68.0862 0.2406 5543 +5545 3 474.9819 403.9281 68.7504 0.2401 5544 +5546 3 475.4864 404.8868 69.447 0.2396 5545 +5547 3 475.9715 405.9187 70.0543 0.2391 5546 +5548 3 476.4268 406.9666 70.5888 0.2385 5547 +5549 3 476.7883 408.0373 71.1217 0.238 5548 +5550 3 477.1269 409.1081 71.6724 0.2375 5549 +5551 3 477.3466 410.1469 72.3153 0.237 5550 +5552 3 477.906 411.0838 73.0083 0.2365 5551 +5553 3 478.6793 411.705 73.8206 0.236 5552 +5554 3 479.6094 412.3365 74.5702 0.2355 5553 +5555 3 480.4034 413.1201 75.2612 0.235 5554 +5556 3 481.0177 414.0205 75.9181 0.2344 5555 +5557 3 481.5965 414.9803 76.4873 0.2339 5556 +5558 3 482.1399 415.9813 76.9476 0.2334 5557 +5559 3 482.6284 417.0132 77.3035 0.2329 5558 +5560 3 483.2187 417.9936 77.5788 0.2324 5559 +5561 3 484.1751 418.6205 77.8176 0.2319 5560 +5562 3 485.1452 419.2005 78.0808 0.2314 5561 +5563 3 486.1165 419.7816 78.3684 0.2308 5562 +5564 3 487.1163 420.3079 78.6752 0.2303 5563 +5565 3 488.1402 420.7849 78.9888 0.2298 5564 +5566 3 489.1641 421.262 79.6594 0.2293 5565 +5567 3 401.6813 337.734 60.8504 0.2883 5451 +5568 3 401.7842 338.8116 61.5404 0.2873 5567 +5569 3 402.2647 339.8183 62.1018 0.2868 5568 +5570 3 403.1044 340.5642 62.5531 0.2863 5569 +5571 3 404.1066 341.087 62.9367 0.2858 5570 +5572 3 405.1018 341.6259 63.2716 0.2853 5571 +5573 3 405.8866 342.4186 63.5628 0.2848 5572 +5574 3 406.2973 343.4597 63.8165 0.2842 5573 +5575 3 406.5044 344.5808 64.0192 0.2837 5574 +5576 3 406.7469 345.6962 64.1634 0.2832 5575 +5577 3 407.1141 346.7739 64.2561 0.2827 5576 +5578 3 407.6106 347.8012 64.2863 0.2822 5577 +5579 3 408.2227 348.7621 64.2177 0.2817 5578 +5580 3 408.9182 349.6499 64.0293 0.2812 5579 +5581 3 409.663 350.4838 63.7378 0.2807 5580 +5582 3 410.4352 351.2892 63.3828 0.2802 5581 +5583 3 411.2085 352.0786 62.9938 0.2797 5582 +5584 3 412.015 352.813 62.603 0.2792 5583 +5585 3 412.9508 353.4262 62.305 0.2787 5584 +5586 3 413.9964 353.8575 62.2138 0.2782 5585 +5587 3 415.0626 354.1778 62.3622 0.2777 5586 +5588 3 416.082 354.5679 62.722 0.2772 5587 +5589 3 416.9319 355.212 63.2433 0.2767 5588 +5590 3 417.4605 356.1466 63.8462 0.2762 5589 +5591 3 417.7179 357.2323 64.4235 0.2757 5590 +5592 3 418.0073 358.334 64.8978 0.2752 5591 +5593 3 418.537 359.3407 65.2621 0.2747 5592 +5594 3 419.1936 360.2742 65.5542 0.2742 5593 +5595 3 419.848 361.2031 65.8157 0.2737 5594 +5596 3 420.4841 362.1412 66.0738 0.2732 5595 +5597 3 421.0812 363.1056 66.332 0.2727 5596 +5598 3 421.6018 364.1203 66.5759 0.2722 5597 +5599 3 422.0044 365.1888 66.7915 0.2717 5598 +5600 3 422.2893 366.2951 66.9729 0.2712 5599 +5601 3 422.5364 367.4128 67.1255 0.2706 5600 +5602 3 422.8235 368.519 67.2773 0.2701 5601 +5603 3 423.1347 369.6104 67.4691 0.2696 5602 +5604 3 423.4104 370.7086 67.7046 0.2691 5603 +5605 3 423.5969 371.8309 67.9526 0.2686 5604 +5606 3 423.6953 372.9669 68.2038 0.2681 5605 +5607 3 423.7959 374.0994 68.4614 0.2676 5606 +5608 3 424.0236 375.2148 68.7053 0.2671 5607 +5609 3 424.4057 376.2913 68.9156 0.2666 5608 +5610 3 424.8953 377.3244 69.1015 0.2661 5609 +5611 3 425.4502 378.3219 69.2938 0.2656 5610 +5612 3 426.0027 379.3172 69.517 0.2651 5611 +5613 3 426.4237 380.372 69.7715 0.2646 5612 +5614 3 426.6594 381.4828 70.0521 0.2641 5613 +5615 3 426.8344 382.6005 70.3646 0.2636 5614 +5616 3 427.1216 383.6839 70.7146 0.2631 5615 +5617 3 427.5345 384.7249 71.0777 0.2626 5616 +5618 3 427.8777 385.806 71.4062 0.2621 5617 +5619 3 427.9887 386.9408 71.6646 0.2616 5618 +5620 3 428.0219 388.0837 71.85 0.2611 5619 +5621 3 428.2964 389.1899 71.9757 0.2606 5620 +5622 3 428.8387 390.1944 72.06 0.2601 5621 +5623 3 429.4038 391.1885 72.1241 0.2596 5622 +5624 3 429.8877 392.2238 72.2002 0.259 5623 +5625 3 430.3225 393.274 72.3128 0.2585 5624 +5626 3 430.7423 394.3334 72.4461 0.258 5625 +5627 3 431.1988 395.3813 72.5651 0.2575 5626 +5628 3 431.8017 396.3514 72.6527 0.257 5627 +5629 3 432.4778 397.2746 72.7073 0.2565 5628 +5630 3 433.0337 398.2733 72.7303 0.256 5629 +5631 3 433.5325 399.3029 72.7272 0.2555 5630 +5632 3 434.2521 400.1872 72.7042 0.255 5631 +5633 3 435.2325 400.7649 72.6662 0.2545 5632 +5634 3 436.293 401.1905 72.6124 0.254 5633 +5635 3 437.3089 401.7167 72.5424 0.2535 5634 +5636 3 438.1714 402.4626 72.4436 0.253 5635 +5637 3 438.835 403.379 72.2823 0.2525 5636 +5638 3 439.4813 404.2919 72.0535 0.252 5637 +5639 3 440.3714 404.9829 71.808 0.2515 5638 +5640 3 441.4387 405.381 71.6058 0.251 5639 +5641 3 442.5472 405.6601 71.4739 0.2505 5640 +5642 3 443.6592 405.9209 71.4286 0.25 5641 +5643 3 444.7712 406.1635 71.4683 0.2495 5642 +5644 3 445.8969 406.3511 71.5476 0.249 5643 +5645 3 447.0294 406.5101 71.615 0.2485 5644 +5646 3 448.1517 406.7332 71.6523 0.248 5645 +5647 3 449.1973 407.1942 71.6635 0.2475 5646 +5648 3 450.013 407.9904 71.6542 0.2469 5647 +5649 3 450.7543 408.8622 71.6299 0.2464 5648 +5650 3 451.6809 409.5291 71.5971 0.2459 5649 +5651 3 452.7449 409.9467 71.5585 0.2454 5650 +5652 3 453.8728 410.1354 71.5137 0.2449 5651 +5653 3 455.0008 410.315 71.4462 0.2444 5652 +5654 3 456.0098 410.8298 71.3272 0.2439 5653 +5655 3 456.9514 411.4693 71.1861 0.2434 5654 +5656 3 457.9398 412.0436 71.0646 0.2429 5655 +5657 3 458.9556 412.571 70.9752 0.2424 5656 +5658 3 459.9315 413.167 70.9187 0.2419 5657 +5659 3 460.8718 413.8191 70.8926 0.2414 5658 +5660 3 461.9072 414.3053 70.8926 0.2409 5659 +5661 3 462.9974 414.6485 70.9092 0.2404 5660 +5662 3 464.083 415.0112 70.9366 0.2399 5661 +5663 3 465.155 415.4093 70.9752 0.2394 5662 +5664 3 466.2258 415.812 71.0259 0.2389 5663 +5665 3 467.2943 416.2204 71.0998 0.2384 5664 +5666 3 468.3502 416.6482 71.2149 0.2379 5665 +5667 3 469.3946 417.0955 71.3712 0.2374 5666 +5668 3 470.4242 417.5749 71.5495 0.2369 5667 +5669 3 471.4104 418.1434 71.7228 0.2364 5668 +5670 3 472.2615 418.9065 71.8561 0.2359 5669 +5671 3 473.0303 419.753 71.9334 0.2354 5670 +5672 3 473.743 420.6454 71.9354 0.2349 5671 +5673 3 474.4454 421.5434 71.8816 0.2343 5672 +5674 3 475.3514 422.2024 71.7528 0.2338 5673 +5675 3 476.3044 422.7972 71.5893 0.2333 5674 +5676 3 477.429 422.9551 71.5403 0.2328 5675 +5677 3 478.478 423.3166 71.6419 0.2323 5676 +5678 3 479.4001 423.9447 71.8466 0.2318 5677 +5679 3 480.2706 424.686 72.0297 0.2313 5678 +5680 3 481.1389 425.4307 72.182 0.2308 5679 +5681 3 482.18 425.9066 72.2912 0.2303 5680 +5682 3 483.2931 426.1709 72.3484 0.2298 5681 +5683 3 484.4062 426.434 72.3668 0.2293 5682 diff --git a/example_data/Vipr2-IRES2-Cre_Slc32a1-T2A-FlpO_Ai65-337416.05.01.01_678210885_m.swc b/example_data/Vipr2-IRES2-Cre_Slc32a1-T2A-FlpO_Ai65-337416.05.01.01_678210885_m.swc new file mode 100755 index 0000000..8fc3881 --- /dev/null +++ b/example_data/Vipr2-IRES2-Cre_Slc32a1-T2A-FlpO_Ai65-337416.05.01.01_678210885_m.swc @@ -0,0 +1,16698 @@ +# id,type,x,y,z,r,pid +1 1 327.8715 363.0656 21.3699 5.1592 -1 +2 2 329.1482 367.2823 20.2895 0.3912 1 +3 2 328.8886 368.3577 20.0581 0.2172 2 +4 2 328.1301 369.1928 19.8548 0.191 3 +5 2 327.2023 369.7808 19.5796 0.1201 4 +6 2 326.3088 370.3894 19.227 0.1144 5 +7 2 325.4714 371.1697 18.9615 0.1144 6 +8 2 325.0642 371.776 18.7704 0.1144 7 +9 2 324.3251 372.6488 18.6381 0.1144 8 +10 2 323.9614 373.7322 18.5531 0.1144 9 +11 2 323.8561 374.8716 18.5062 0.1144 10 +12 2 323.7646 375.4356 19.6707 0.1144 11 +13 2 323.9373 376.5236 19.9485 0.1144 12 +14 2 323.9922 377.6367 20.0425 0.1144 13 +15 2 324.6764 378.4913 20.1103 0.1144 14 +16 2 325.6922 378.6571 20.1526 0.1144 15 +17 2 326.7516 378.7807 20.1697 0.1144 16 +18 2 326.9872 379.7497 20.1621 0.1144 17 +19 2 327.0582 380.8902 20.1295 0.1144 18 +20 2 327.3453 381.993 20.0826 0.1144 19 +21 2 327.6977 383.081 20.0164 0.1144 20 +22 2 328.1461 384.1323 19.9279 0.1144 21 +23 2 328.6655 385.1516 19.806 0.1144 22 +24 2 329.5807 385.7808 19.6389 0.1144 23 +25 2 330.5359 386.2865 19.3383 0.1144 24 +26 2 331.6204 386.4901 18.9854 0.1144 25 +27 2 332.6832 386.1458 18.6841 0.1144 26 +28 2 333.0619 385.0979 17.9956 0.1144 27 +29 2 323.9225 375.049 18.508 0.1144 11 +30 2 324.3297 376.1026 18.5444 0.1144 29 +31 2 324.4075 377.1471 18.4314 0.1144 30 +32 2 323.5632 377.1379 18.229 0.1144 31 +33 2 322.7018 377.5886 18.0369 0.1144 32 +34 2 322.5817 378.5016 18.1504 0.1144 33 +35 2 322.1607 379.5575 18.2951 0.1144 34 +36 2 322.608 380.4692 18.5578 0.1144 35 +37 2 322.9077 381.572 18.1402 0.1144 36 +38 2 322.8528 382.7115 18.0114 0.1144 37 +39 2 323.2315 383.5123 17.6231 0.1144 38 +40 2 322.203 383.0501 17.2987 0.1144 39 +41 2 321.2924 382.9906 17.0335 0.1144 40 +42 2 321.0911 384.0397 16.8191 0.1144 41 +43 2 320.7684 385.0452 16.6478 0.1144 42 +44 2 319.883 385.7019 16.4566 0.1144 43 +45 2 319.0971 386.4993 16.2955 0.1144 44 +46 2 318.0789 386.9157 16.1508 0.1144 45 +47 2 317.0367 386.9843 15.8843 0.1144 46 +48 2 315.9705 387.3355 15.659 0.1144 47 +49 2 315.037 387.9887 15.4974 0.1144 48 +50 2 314.1802 388.7186 15.4608 0.1144 49 +51 2 313.4263 389.5766 15.4552 0.1144 50 +52 2 313.2569 390.7023 15.455 0.1144 51 +53 2 312.995 390.1932 15.416 0.1144 52 +54 2 312.5774 389.2163 14.1437 0.1144 53 +55 2 311.7446 388.5905 13.641 0.1144 54 +56 2 310.6372 388.3331 13.1113 0.1144 55 +57 2 309.8856 387.7748 12.3715 0.1144 56 +58 2 309.3616 387.2543 11.4949 0.1144 57 +59 2 309.9714 386.9923 10.6124 0.1144 58 +60 2 309.9062 386.7486 9.672 0.1144 59 +61 2 310.5285 386.1538 8.7697 0.1144 60 +62 2 310.7367 385.1539 7.8898 0.1144 61 +63 2 311.2183 384.3085 7.0531 0.1144 62 +64 2 311.7206 384.6677 6.3346 0.1144 63 +65 2 311.2035 383.9161 5.0613 0.1144 64 +66 2 313.3633 391.4482 15.3756 0.1144 52 +67 2 313.6459 392.487 15.2977 0.1144 66 +68 2 312.9149 393.1734 15.2696 0.1144 67 +69 2 311.9734 393.7694 15.1855 0.1144 68 +70 2 311.1863 394.5816 15.0664 0.1144 69 +71 2 310.6177 395.5655 14.9429 0.1144 70 +72 2 309.619 395.8526 14.8135 0.1144 71 +73 2 308.4762 395.8354 14.6634 0.1144 72 +74 2 307.5713 396.2519 14.3358 0.1144 73 +75 2 306.7361 396.9863 13.9506 0.1144 74 +76 2 305.5384 397.0561 13.3923 0.1144 75 +77 2 304.4195 397.2929 13.1701 0.1144 76 +78 2 303.5604 397.1053 12.7012 0.1144 77 +79 2 302.9998 397.9484 12.2381 0.1144 78 +80 2 304.0214 397.6567 11.7619 0.1144 79 +81 2 305.0602 398.136 11.3555 0.1144 80 +82 2 306.1047 398.6028 11.0077 0.1144 81 +83 2 307.1491 399.0604 10.7112 0.1144 82 +84 2 308.0906 399.6678 10.3834 0.1144 83 +85 2 309.0974 400.1495 10.0124 0.1144 84 +86 2 310.1967 400.2021 9.5901 0.1144 85 +87 2 311.2332 399.8818 9.0882 0.1144 86 +88 2 312.3234 399.7468 8.5791 0.1144 87 +89 2 313.408 399.502 8.1166 0.1144 88 +90 2 314.4147 398.9894 7.7476 0.1144 89 +91 2 315.3459 398.3282 7.4912 0.1144 90 +92 2 316.3046 397.7105 7.324 0.1144 91 +93 2 317.3502 397.7516 7.2216 0.1144 92 +94 2 318.4324 398.1234 7.1546 0.1144 93 +95 2 319.5112 398.0125 7.0497 0.1144 94 +96 2 320.6357 397.9095 6.9387 0.1144 95 +97 2 321.7294 398.1944 6.8468 0.1144 96 +98 2 322.767 398.6726 6.7728 0.1144 97 +99 2 323.7577 399.2434 6.7137 0.1144 98 +100 2 324.7805 399.7525 6.6668 0.1144 99 +101 2 325.8135 400.2444 6.6304 0.1144 100 +102 2 326.7836 400.8473 6.5943 0.1144 101 +103 2 327.8475 401.1768 6.4872 0.1144 102 +104 2 328.9812 401.2591 6.3877 0.1144 103 +105 2 330.1252 401.3015 6.3119 0.1144 104 +106 2 331.2646 401.3953 6.2615 0.1144 105 +107 2 332.4064 401.3575 6.2339 0.1144 106 +108 2 333.5401 401.21 6.2236 0.1144 107 +109 2 334.644 401.4639 6.225 0.1144 108 +110 2 335.5478 402.148 6.2261 0.1144 109 +111 2 336.5556 402.4043 6.3598 0.1144 110 +112 2 337.671 402.362 6.3564 0.1144 111 +113 2 338.783 402.2396 6.2308 0.1144 112 +114 2 339.9041 402.0702 5.8771 0.1144 113 +115 2 340.8937 401.5463 5.6582 0.1144 114 +116 2 341.4188 400.5705 5.444 0.1144 115 +117 2 342.1189 399.6827 5.254 0.1144 116 +118 2 343.1542 399.248 5.0683 0.1144 117 +119 2 344.2674 399.2594 4.806 0.1144 118 +120 2 345.3198 399.2571 4.4003 0.1144 119 +121 2 345.9811 398.6325 3.9394 0.1144 120 +122 2 345.6127 397.564 3.5357 0.1144 121 +123 2 345.4285 396.4726 3.1558 0.1144 122 +124 2 345.0453 395.4591 2.8677 0.1144 123 +125 2 345.2718 394.3379 2.663 0.1144 124 +126 2 345.5017 393.2328 2.4859 0.1144 125 +127 2 346.0005 392.3634 2.2494 0.1144 126 +128 2 346.7636 391.5374 2.0541 0.1144 127 +129 2 347.7634 391.0798 1.9182 0.1144 128 +130 2 348.2919 390.0697 1.8296 0.1144 129 +131 2 348.9783 389.1545 1.7859 0.1144 130 +132 2 349.778 388.4017 1.7834 0.1144 131 +133 2 350.9014 388.1935 1.8112 0.1144 132 +134 2 351.9894 387.959 1.8632 0.1144 133 +135 2 352.8027 387.212 1.9624 0.1144 134 +136 2 353.4914 386.3574 2.0581 0.1144 135 +137 2 354.5508 385.9478 2.1296 0.1144 136 +138 2 355.3642 385.3141 2.178 0.1144 137 +139 2 355.4705 384.2204 2.2047 0.1144 138 +140 2 355.816 383.2103 2.2105 0.1144 139 +141 2 356.6798 382.4964 2.1987 0.1144 140 +142 2 357.7128 382.0125 2.178 0.1144 141 +143 2 358.6566 381.3913 2.1513 0.1144 142 +144 2 359.1302 380.4132 2.1193 0.1144 143 +145 2 358.978 379.3104 2.0531 0.1144 144 +146 2 358.7492 378.1961 1.9543 0.1144 145 +147 2 358.4415 377.0979 1.8665 0.1144 146 +148 2 358.0228 376.0351 1.8035 0.1144 147 +149 2 357.4977 375.0192 1.7645 0.1144 148 +150 2 356.9303 374.0262 1.7486 0.1144 149 +151 2 356.3045 373.0687 1.7549 0.1144 150 +152 2 355.5392 372.2244 1.7791 0.1144 151 +153 2 354.6457 371.5129 1.8174 0.1144 152 +154 2 354.028 370.5794 1.8702 0.1144 153 +155 2 354.3265 369.5314 1.9386 0.1144 154 +156 2 354.8837 368.5327 2.0227 0.1144 155 +157 2 355.7657 367.8646 2.1924 0.1144 156 +158 2 356.6649 367.2034 2.441 0.1144 157 +159 2 357.1145 366.1578 2.6566 0.1144 158 +160 2 357.8272 365.2643 2.8429 0.1144 159 +161 2 358.5582 364.412 3.0099 0.1144 160 +162 2 358.6188 363.2703 3.167 0.1144 161 +163 2 358.8614 362.1538 3.3274 0.1144 162 +164 2 358.9769 361.0281 3.55 0.1144 163 +165 2 359.0375 359.9733 3.8399 0.1144 164 +166 2 359.6347 360.1449 4.2783 0.1144 165 +167 2 359.5375 361.1837 4.7191 0.1144 166 +168 2 359.0341 362.1881 5.1368 0.1144 167 +169 2 358.8156 363.2509 5.5474 0.1144 168 +170 2 358.9655 364.372 5.8808 0.1144 169 +171 2 359.3075 365.46 6.1171 0.1144 170 +172 2 359.6908 366.5376 6.2738 0.1144 171 +173 2 359.5729 367.6187 6.3838 0.1144 172 +174 2 359.0078 368.4286 6.6181 0.1144 173 +175 2 359.5409 368.3337 6.7749 0.1144 174 +176 2 359.7583 369.409 6.8042 0.1144 175 +177 2 359.6084 370.5347 6.8138 0.1144 176 +178 2 359.7342 371.6719 6.8062 0.1144 177 +179 2 359.55 372.7141 6.7836 0.1144 178 +180 2 359.0204 373.7013 6.7482 0.1144 179 +181 2 358.8316 374.8247 6.7281 0.1144 180 +182 2 358.6348 375.939 6.72 0.1144 181 +183 2 358.3054 377.0327 6.7087 0.1144 182 +184 2 357.7883 377.9948 6.6931 0.1144 183 +185 2 357.0458 378.8539 6.6718 0.1144 184 +186 2 356.5448 379.8721 6.6402 0.1144 185 +187 2 356.1226 380.9326 6.5953 0.1144 186 +188 2 355.5163 381.8912 6.5361 0.1144 187 +189 2 355.2429 382.9609 6.4612 0.1144 188 +190 2 354.8082 384.0053 6.3592 0.1144 189 +191 2 353.9181 384.4973 6.1103 0.1144 190 +192 2 352.9835 385.1276 5.8953 0.1144 191 +193 2 352.4309 386.1092 5.7202 0.1144 192 +194 2 351.4116 386.5702 5.5252 0.1144 193 +195 2 350.2791 386.7132 5.3956 0.1144 194 +196 2 349.1454 386.7704 5.3392 0.1144 195 +197 2 348.1478 387.2818 5.3536 0.1144 196 +198 2 347.4042 388.1512 5.416 0.1144 197 +199 2 347.0095 389.119 5.5269 0.1144 198 +200 2 347.3676 390.1841 5.7131 0.1144 199 +201 2 347.6845 391.2102 6.0039 0.1144 200 +202 2 347.76 392.3051 6.3789 0.1144 201 +203 2 347.8458 393.3793 6.8291 0.1144 202 +204 2 347.6868 394.4832 7.2644 0.1144 203 +205 2 347.4099 395.5918 7.6099 0.1144 204 +206 2 346.9558 396.634 7.8652 0.1144 205 +207 2 346.7304 397.7276 8.0465 0.1144 206 +208 2 346.1355 398.6039 8.243 0.1144 207 +209 2 345.1151 399.073 8.4142 0.1144 208 +210 2 345.3084 400.1849 8.5631 0.1144 209 +211 2 345.1093 401.3118 8.7048 0.1144 210 +212 2 345.8976 400.5773 9.3176 0.1144 211 +213 2 346.6972 399.7937 9.579 0.1144 212 +214 2 347.8035 399.9413 9.8398 0.1144 213 +215 2 348.7232 400.4423 10.2088 0.1144 214 +216 2 349.81 400.7832 10.5067 0.1144 215 +217 2 350.8442 401.2294 10.763 0.1144 216 +218 2 351.971 401.3404 10.9945 0.1144 217 +219 2 353.1116 401.3358 11.1724 0.1144 218 +220 2 354.1778 401.4342 11.3032 0.1144 219 +221 2 355.0759 402.1366 11.3968 0.1144 220 +222 2 356.0666 402.2647 11.4812 0.1144 221 +223 2 357.0458 402.1663 11.6186 0.1144 222 +224 2 357.826 402.9237 11.8185 0.1144 223 +225 2 358.4186 403.8835 11.9511 0.1144 224 +226 2 359.1462 404.7632 12.0537 0.1144 225 +227 2 360.2548 404.9966 12.1346 0.1144 226 +228 2 361.3793 405.2037 12.1976 0.1144 227 +229 2 362.3929 405.7162 12.294 0.1144 228 +230 2 362.1298 405.9839 11.83 0.1144 229 +231 2 361.2912 406.6268 11.9113 0.1144 230 +232 2 360.4675 407.4104 11.9477 0.1144 231 +233 2 359.6404 408.1918 12.0282 0.1144 232 +234 2 358.7481 408.8988 12.138 0.1144 233 +235 2 358.5124 409.9947 12.2283 0.1144 234 +236 2 358.0011 411.0129 12.2962 0.1144 235 +237 2 357.0367 411.6135 12.3721 0.1144 236 +238 2 362.5302 405.9072 12.3757 0.1144 229 +239 2 363.077 406.9082 12.4618 0.1144 238 +240 2 363.4534 407.9847 12.5522 0.1144 239 +241 2 363.7611 409.0864 12.6565 0.1144 240 +242 2 364.1684 410.1537 12.7847 0.1144 241 +243 2 364.7713 411.1204 12.9488 0.1144 242 +244 2 365.6052 411.8892 13.1642 0.1144 243 +245 2 366.6737 411.9533 13.4655 0.1144 244 +246 2 367.4082 411.3732 14.0104 0.1144 245 +247 2 368.0031 410.4558 14.6186 0.1144 246 +248 2 368.2502 409.5817 15.3928 0.1144 247 +249 2 368.0271 408.4949 16.0879 0.1144 248 +250 2 367.2732 407.6678 16.7013 0.1144 249 +251 2 367.3533 407.574 17.1401 0.1144 250 +252 2 368.0946 406.7046 17.442 0.1144 251 +253 2 368.8359 405.8351 17.6542 0.1144 252 +254 2 369.5772 404.9646 17.8006 0.1144 253 +255 2 370.3185 404.0951 17.9253 0.1144 254 +256 2 371.0564 403.2211 18.0315 0.1144 255 +257 2 371.9396 402.5072 18.1659 0.1144 256 +258 2 373.0229 402.1755 18.306 0.1144 257 +259 2 374.1246 401.8678 18.4099 0.1144 258 +260 2 374.9357 401.0647 18.4816 0.1144 259 +261 2 375.8269 400.3485 18.5269 0.1144 260 +262 2 376.8027 399.7514 18.5578 0.1144 261 +263 2 367.3853 407.5534 17.746 0.1144 250 +264 2 368.0134 406.9151 18.7441 0.1144 263 +265 2 368.6952 406.1006 19.1533 0.1144 264 +266 2 369.3965 405.1979 19.4541 0.1144 265 +267 2 370.3151 404.5504 19.6445 0.1144 266 +268 2 371.1445 403.7759 19.7357 0.1144 267 +269 2 371.9727 403.0198 19.6661 0.1144 268 +270 2 373.0595 402.8859 19.1204 0.1144 269 +271 2 345.0487 401.7797 8.9004 0.1144 211 +272 2 344.892 402.8825 9.1662 0.1144 271 +273 2 344.5797 403.9761 9.3962 0.1144 272 +274 2 343.9939 404.952 9.5848 0.1144 273 +275 2 343.184 405.7493 9.7619 0.1144 274 +276 2 342.1418 405.9553 10.0139 0.1144 275 +277 2 341.1877 406.565 10.1827 0.1144 276 +278 2 340.5963 407.5443 10.2693 0.1144 277 +279 2 339.8893 408.4435 10.2861 0.1144 278 +280 2 339.5564 409.4822 10.1957 0.1144 279 +281 2 340.6374 409.6527 10.0707 0.1144 280 +282 2 341.3387 409.7854 9.8529 0.1144 281 +283 2 342.326 410.2212 9.5948 0.1144 282 +284 2 343.4094 410.5679 9.3373 0.1144 283 +285 2 342.9746 411.4854 7.873 0.1144 284 +286 2 342.4312 412.3994 7.4858 0.1144 285 +287 2 341.6339 413.0172 7.3018 0.1144 286 +288 2 341.3719 414.1257 7.1084 0.1144 287 +289 2 340.8685 415.0661 6.8247 0.1144 288 +290 2 340.6077 416.1003 6.61 0.1144 289 +291 2 339.9304 416.9308 6.3887 0.1144 290 +292 2 339.1525 417.7648 6.1798 0.1144 291 +293 2 338.1 418.1183 6.0071 0.1144 292 +294 2 337.019 417.8323 5.8428 0.1144 293 +295 2 335.9573 418.1526 5.6092 0.1144 294 +296 2 334.9884 418.6926 5.3383 0.1144 295 +297 2 333.8501 418.7841 5.1148 0.1144 296 +298 2 332.7518 418.9099 4.9156 0.1144 297 +299 2 331.7932 419.5185 4.6978 0.1144 298 +300 2 330.8494 420.126 4.4867 0.1144 299 +301 2 330.3128 421.0801 4.3095 0.1144 300 +302 2 330.2362 422.2207 4.1473 0.1144 301 +303 2 330.0509 423.2972 3.9265 0.1144 302 +304 2 329.9182 424.3016 3.5769 0.1144 303 +305 2 329.8301 425.4044 3.2747 0.1144 304 +306 2 329.2787 426.394 3.0434 0.1144 305 +307 2 328.4687 427.1868 2.8737 0.1144 306 +308 2 327.5215 427.824 2.746 0.1144 307 +309 2 326.723 428.5939 2.6325 0.1144 308 +310 2 326.0286 429.477 2.5706 0.1144 309 +311 2 325.1797 430.2321 2.5642 0.1144 310 +312 2 324.3972 431.0546 2.5601 0.1144 311 +313 2 323.6673 431.9355 2.5379 0.1144 312 +314 2 322.9706 432.8393 2.495 0.1144 313 +315 2 322.2968 433.7476 2.3873 0.1144 314 +316 2 321.5509 434.5999 2.2274 0.1144 315 +317 2 320.5637 434.6685 2.0682 0.1144 316 +318 2 319.6382 434.8916 1.7776 0.1144 317 +319 2 319.8796 435.9338 1.5327 0.1144 318 +320 2 319.8796 437.0755 1.3533 0.1144 319 +321 2 319.51 438.1554 1.2342 0.1144 320 +322 2 318.7516 439.0077 1.1628 0.1144 321 +323 2 318.3844 440.0876 1.1248 0.1144 322 +324 2 343.8761 410.8001 9.1804 0.1144 284 +325 2 344.7318 411.4979 9.0268 0.1144 324 +326 2 345.7099 412.0413 8.8715 0.1144 325 +327 2 346.8208 412.2759 8.744 0.1144 326 +328 2 347.8938 412.4429 8.5241 0.1144 327 +329 2 349.0001 412.3411 8.29 0.1144 328 +330 2 350.1052 412.5619 8.0963 0.1144 329 +331 2 351.184 412.9382 7.9517 0.1144 330 +332 2 352.3142 413.0732 7.847 0.1144 331 +333 2 353.4422 412.9108 7.7741 0.1144 332 +334 2 354.5405 412.5916 7.73 0.1144 333 +335 2 355.6341 412.7472 7.6235 0.1144 334 +336 2 356.5871 413.3581 7.5314 0.1144 335 +337 2 357.5366 413.9964 7.4668 0.1144 336 +338 2 358.6085 414.3854 7.4298 0.1144 337 +339 2 359.7468 414.414 7.4194 0.1144 338 +340 2 360.8897 414.454 7.4336 0.1144 339 +341 2 361.9856 414.7732 7.4697 0.1144 340 +342 2 363.0392 415.1839 7.5704 0.1144 341 +343 2 364.1123 415.574 7.6772 0.1144 342 +344 2 364.9703 416.3233 7.7631 0.1144 343 +345 2 365.4645 417.3506 7.8286 0.1144 344 +346 2 365.9931 418.3654 7.8759 0.1144 345 +347 2 366.6623 419.2932 7.9082 0.1144 346 +348 2 366.8625 420.4177 7.9294 0.1144 347 +349 2 367.1645 421.5205 7.9526 0.1144 348 +350 2 366.684 422.12 6.8208 0.1144 349 +351 2 366.4541 423.169 6.004 0.1144 350 +352 2 366.6406 424.289 5.6962 0.1144 351 +353 2 366.8682 425.3827 5.3019 0.1144 352 +354 2 366.9632 426.5004 4.8538 0.1144 353 +355 2 366.7881 427.5162 4.3404 0.1144 354 +356 2 366.2081 426.8596 3.7849 0.1144 355 +357 2 365.1282 427.1536 3.2916 0.1144 356 +358 2 364.0277 426.9602 2.858 0.1144 357 +359 2 363.0347 426.394 2.5577 0.1144 358 +360 2 361.9765 426.0302 2.3643 0.1144 359 +361 2 360.8714 426.1835 2.2543 0.1144 360 +362 2 359.8189 425.7385 2.2001 0.1144 361 +363 2 358.8465 425.1539 2.1614 0.1144 362 +364 2 357.9542 424.5006 2.0858 0.1144 363 +365 2 356.8719 424.1288 2.0499 0.1144 364 +366 2 355.7966 423.741 2.052 0.1144 365 +367 2 354.6938 423.4482 2.0943 0.1144 366 +368 2 353.7751 423.0501 2.2537 0.1144 367 +369 2 352.932 422.5593 2.5227 0.1144 368 +370 2 351.8006 422.4174 2.7393 0.1144 369 +371 2 350.6646 422.2882 2.8654 0.1144 370 +372 2 349.5275 422.2092 2.9002 0.1144 371 +373 2 348.3835 422.2092 2.8482 0.1144 372 +374 2 347.2406 422.2104 2.7029 0.1144 373 +375 2 346.2488 422.43 2.3774 0.1144 374 +376 2 345.2283 422.5604 1.945 0.1144 375 +377 2 344.0958 422.4758 1.5587 0.1144 376 +378 2 342.954 422.438 1.2498 0.1144 377 +379 2 341.8386 422.2859 0.9707 0.1144 378 +380 2 340.7095 422.2092 0.758 0.1144 379 +381 2 339.5689 422.2092 0.6115 0.1144 380 +382 2 338.4307 422.2092 0.4916 0.1144 381 +383 2 337.289 422.2092 0.4172 0.1144 382 +384 2 336.1816 422.3842 0.4579 0.1144 383 +385 2 335.0845 422.6245 0.5001 0.1144 384 +386 2 333.9542 422.6668 0.6024 0.1144 385 +387 2 332.8148 422.6668 0.7618 0.1144 386 +388 2 331.8115 422.9288 1.071 0.1144 387 +389 2 330.7155 422.6394 1.3257 0.1144 388 +390 2 329.5978 422.5661 1.58 0.1144 389 +391 2 328.5877 423.0992 1.747 0.1144 390 +392 2 327.4952 423.3761 1.7757 0.1144 391 +393 2 326.6543 424.1414 1.725 0.1144 392 +394 2 325.6202 424.5967 1.6134 0.1144 393 +395 2 324.5951 424.8953 1.4733 0.1144 394 +396 2 324.0403 425.8895 1.3694 0.1144 395 +397 2 323.6365 426.9557 1.3158 0.1144 396 +398 2 322.9009 427.7084 1.3115 0.1144 397 +399 2 321.8953 428.0711 1.3449 0.1144 398 +400 2 321.7969 429.0892 1.4126 0.1144 399 +401 2 322.5165 429.8569 1.5455 0.1144 400 +402 2 323.5896 430.1566 1.7344 0.1144 401 +403 2 324.6981 430.0136 1.9478 0.1144 402 +404 2 325.8284 429.953 2.1404 0.1144 403 +405 2 326.9712 429.9381 2.2839 0.1144 404 +406 2 327.9974 429.5812 2.3055 0.1144 405 +407 2 328.7158 428.9314 2.8118 0.1144 406 +408 2 367.4791 421.8866 7.9824 0.1144 349 +409 2 367.9653 422.9013 8.0182 0.1144 408 +410 2 368.6654 423.7559 8.0929 0.1144 409 +411 2 369.5875 424.4194 8.2002 0.1144 410 +412 2 370.5771 424.2032 8.2981 0.1144 411 +413 2 371.689 424.0213 8.3715 0.1144 412 +414 2 372.8319 423.9641 8.4173 0.1144 413 +415 2 373.9198 424.2044 8.4981 0.1144 414 +416 2 375.0249 424.4812 8.5406 0.1144 415 +417 2 375.9436 425.1321 8.5333 0.1144 416 +418 2 376.7295 425.9352 8.4213 0.1144 417 +419 2 377.4434 426.7967 8.2164 0.1144 418 +420 2 378.3746 427.4327 7.9832 0.1144 419 +421 2 379.3596 428.0047 7.7596 0.1144 420 +422 2 380.1512 428.8238 7.6014 0.1144 421 +423 2 380.9554 429.6384 7.5104 0.1144 422 +424 2 382.0537 429.9266 7.4805 0.1144 423 +425 2 383.1634 430.1692 7.5046 0.1144 424 +426 2 384.0831 430.811 7.6172 0.1144 425 +427 2 385.1379 431.1999 7.713 0.1144 426 +428 2 386.2682 431.264 7.7875 0.1144 427 +429 2 387.2886 431.7433 7.8458 0.1144 428 +430 2 388.134 432.5109 7.8879 0.1144 429 +431 2 389.103 433.0349 7.8928 0.1144 430 +432 2 390.2344 433.1481 7.8812 0.1144 431 +433 2 391.2537 433.5222 7.9392 0.1144 432 +434 2 391.923 434.3985 8.1159 0.1144 433 +435 2 392.5453 435.2966 8.3802 0.1144 434 +436 2 393.4182 436.015 8.6603 0.1144 435 +437 2 394.3196 436.0024 8.9015 0.1144 436 +438 2 395.1136 436.2713 9.107 0.1144 437 +439 2 395.8103 437.1773 9.2797 0.1144 438 +440 2 396.7735 437.6132 9.4319 0.1144 439 +441 2 397.8924 437.5823 9.6473 0.1144 440 +442 2 398.6176 438.3042 9.8844 0.1144 441 +443 2 399.4516 438.8373 10.2877 0.1144 442 +444 2 400.5441 439.1759 10.6458 0.1144 443 +445 2 400.7455 439.7113 10.6848 0.1144 444 +446 2 400.9686 440.8312 10.7472 0.1144 445 +447 2 401.6492 441.7327 10.7717 0.1144 446 +448 2 402.6354 442.3047 10.8015 0.1144 447 +449 2 403.7473 442.5667 10.8356 0.1144 448 +450 2 404.793 442.9682 10.9525 0.1144 449 +451 2 405.9072 443.2291 11.0428 0.1144 450 +452 2 406.6382 443.5036 11.1068 0.1144 451 +453 2 407.5569 444.1855 11.1449 0.1144 452 +454 2 408.5499 444.7529 11.1572 0.1144 453 +455 2 409.5486 445.2974 11.1427 0.1144 454 +456 2 410.1995 446.2344 11.1003 0.1144 455 +457 2 411.1319 446.7537 11.0426 0.1144 456 +458 2 412.1992 446.8636 10.9682 0.1144 457 +459 2 413.1545 447.4653 10.8477 0.1144 458 +460 2 414.2161 447.8222 10.6693 0.1144 459 +461 2 415.3246 447.8909 10.4514 0.1144 460 +462 2 416.3805 447.598 10.1976 0.1144 461 +463 2 417.3655 447.0237 9.9965 0.1144 462 +464 2 418.2876 446.3488 9.8703 0.1144 463 +465 2 419.2531 445.7493 9.8187 0.1144 464 +466 2 420.3228 445.3512 9.8348 0.1144 465 +467 2 421.3661 444.897 9.9075 0.1144 466 +468 2 422.4449 444.5733 10.0278 0.1144 467 +469 2 423.5603 444.4612 10.2471 0.1144 468 +470 2 424.5476 444.0047 10.5594 0.1144 469 +471 2 425.044 443.0346 10.8798 0.1144 470 +472 2 425.6595 442.0954 11.2276 0.1144 471 +473 2 426.6548 441.6973 11.6703 0.1144 472 +474 2 427.7599 441.5714 12.1551 0.1144 473 +475 2 428.8147 442.013 12.5717 0.1144 474 +476 2 429.3386 442.7177 12.3721 0.1144 475 +477 2 430.2538 443.3721 12.433 0.1144 476 +478 2 431.3086 443.8091 12.4571 0.1144 477 +479 2 432.424 443.7759 12.4921 0.1144 478 +480 2 433.5554 443.6112 12.5411 0.1144 479 +481 2 434.5415 444.0768 12.6059 0.1144 480 +482 2 434.7074 443.3103 12.6865 0.1144 481 +483 2 434.7623 442.1754 12.8263 0.1144 482 +484 2 434.8458 441.0646 13.0602 0.1144 483 +485 2 434.9843 439.9321 13.2928 0.1144 484 +486 2 434.9156 438.7915 13.4937 0.1144 485 +487 2 434.8138 437.6521 13.6639 0.1144 486 +488 2 434.7463 436.5184 13.8521 0.1144 487 +489 2 434.7086 435.4007 14.0821 0.1144 488 +490 2 435.0415 434.3127 14.281 0.1144 489 +491 2 435.5425 433.2843 14.4299 0.1144 490 +492 2 435.991 432.2318 14.537 0.1144 491 +493 2 436.301 431.1313 14.6065 0.1144 492 +494 2 437.0778 430.2916 14.6432 0.1144 493 +495 2 437.9976 429.6132 14.6603 0.1144 494 +496 2 439.026 429.1133 14.676 0.1144 495 +497 2 440.003 428.5275 14.6971 0.1144 496 +498 2 441.1035 428.2827 14.7246 0.1144 497 +499 2 441.8803 427.4659 14.7724 0.1144 498 +500 2 442.8332 426.9156 14.8366 0.1144 499 +501 2 443.6775 426.18 14.9133 0.1144 500 +502 2 443.9464 425.1115 14.9988 0.1144 501 +503 2 443.5929 424.0545 15.09 0.1144 502 +504 2 442.6891 423.6072 15.7461 0.1144 503 +505 2 429.3535 441.9386 12.9957 0.1144 475 +506 2 430.438 441.7934 13.4855 0.1144 505 +507 2 431.5122 441.6847 14.0219 0.1144 506 +508 2 432.6482 441.584 14.4617 0.1144 507 +509 2 433.7041 441.473 14.9403 0.1144 508 +510 2 434.7635 441.1184 15.3584 0.1144 509 +511 2 435.896 440.9868 15.6121 0.1144 510 +512 2 437.016 441.2053 15.7213 0.1144 511 +513 2 438.1371 441.0989 15.6841 0.1144 512 +514 2 439.1198 440.5967 15.4795 0.1144 513 +515 2 440.1162 440.114 15.1676 0.1144 514 +516 2 441.2099 439.7822 14.9005 0.1144 515 +517 2 442.3036 439.447 14.6922 0.1144 516 +518 2 443.4018 439.1438 14.5167 0.1144 517 +519 2 444.5309 439.0363 14.3571 0.1144 518 +520 2 445.6727 439.0214 14.2596 0.1144 519 +521 2 446.7835 438.772 14.2092 0.1144 520 +522 2 447.7868 438.2355 14.187 0.1144 521 +523 2 448.6848 437.5846 14.1907 0.1144 522 +524 2 449.7853 437.3375 14.2241 0.1144 523 +525 2 450.7657 436.7563 14.3049 0.1144 524 +526 2 451.7347 436.1637 14.4162 0.1144 525 +527 2 452.6785 435.5231 14.5067 0.1144 526 +528 2 453.5079 434.7349 14.5808 0.1144 527 +529 2 454.2092 433.862 14.6398 0.1144 528 +530 2 454.7297 432.909 14.6451 0.1144 529 +531 2 455.7296 432.4766 14.6769 0.1144 530 +532 2 456.8095 432.392 14.7698 0.1144 531 +533 2 456.5441 432.1117 14.9276 0.1144 532 +534 2 455.5214 431.9435 15.7461 0.1144 533 +535 2 405.7596 443.7759 11.6753 0.1144 451 +536 2 405.2528 444.762 12.0056 0.1144 535 +537 2 404.6957 445.7562 12.1327 0.1144 536 +538 2 404.3251 446.8327 12.2308 0.1144 537 +539 2 403.8354 447.8623 12.3019 0.1144 538 +540 2 403.268 448.8553 12.3484 0.1144 539 +541 2 402.5644 449.7544 12.3727 0.1144 540 +542 2 401.7431 450.5484 12.3776 0.1144 541 +543 2 400.7592 451.117 12.3796 0.1144 542 +544 2 400.1849 452.055 12.382 0.1144 543 +545 2 399.8246 453.1395 12.3875 0.1144 544 +546 2 399.2606 454.1291 12.395 0.1144 545 +547 2 398.8087 455.1782 12.4009 0.1144 546 +548 2 398.3648 456.2318 12.4053 0.1144 547 +549 2 398.0102 457.3186 12.4082 0.1144 548 +550 2 397.4027 458.2132 12.5236 0.1144 549 +551 2 396.4543 458.7165 12.5081 0.1144 550 +552 2 395.4019 459.1558 12.3721 0.1144 551 +553 2 401.1905 438.7595 10.967 0.1144 444 +554 2 402.0725 438.128 11.3555 0.1144 553 +555 2 402.9546 437.4553 11.7531 0.1144 554 +556 2 403.721 436.619 12.1014 0.1144 555 +557 2 404.3068 435.6821 12.4947 0.1144 556 +558 2 404.6969 434.6365 12.9347 0.1144 557 +559 2 404.8799 433.5142 13.3384 0.1144 558 +560 2 404.4509 432.6425 13.8449 0.1144 559 +561 2 403.9819 431.6152 14.3467 0.1144 560 +562 2 403.1342 431.6346 14.9513 0.1144 561 +563 2 402.2327 431.3166 15.6549 0.1144 562 +564 2 401.1127 431.2788 16.2726 0.1144 563 +565 2 400.0911 431.701 16.7785 0.1144 564 +566 2 399.4162 432.5693 17.1947 0.1144 565 +567 2 398.8133 433.3289 17.6404 0.1144 566 +568 2 397.8912 433.8746 18.0386 0.1144 567 +569 2 396.9611 434.5187 18.357 0.1144 568 +570 2 395.9018 434.8287 18.6144 0.1144 569 +571 2 394.8196 435.1501 18.7825 0.1144 570 +572 2 393.8861 435.7931 18.8675 0.1144 571 +573 2 393.091 436.5893 18.8271 0.1144 572 +574 2 392.0625 436.9211 18.7434 0.1144 573 +575 2 391.1885 437.5937 18.6643 0.1144 574 +576 2 390.3831 438.406 18.5977 0.1144 575 +577 2 389.5778 439.2182 18.5493 0.1144 576 +578 2 388.7712 440.0304 18.518 0.1144 577 +579 2 387.9659 440.8427 18.5023 0.1144 578 +580 2 387.1605 441.6549 18.4908 0.1144 579 +581 2 386.3551 442.4672 18.4792 0.1144 580 +582 2 385.5486 443.2794 18.4676 0.1144 581 +583 2 384.7432 444.0916 18.456 0.1144 582 +584 2 383.9378 444.9039 18.4445 0.1144 583 +585 2 383.1325 445.7161 18.4329 0.1144 584 +586 2 382.3259 446.5284 18.4213 0.1144 585 +587 2 381.5206 447.3406 18.4097 0.1144 586 +588 2 380.7152 448.1528 18.3981 0.1144 587 +589 2 379.9098 448.9651 18.3866 0.1144 588 +590 2 379.1033 449.7762 18.375 0.1144 589 +591 2 378.2979 450.5884 18.3634 0.1144 590 +592 2 377.4925 451.4007 18.3518 0.1144 591 +593 2 376.6872 452.2129 18.3403 0.1144 592 +594 2 375.8806 453.0251 18.3287 0.1144 593 +595 2 375.0753 453.8374 18.3171 0.1144 594 +596 2 374.2699 454.6496 18.3055 0.1144 595 +597 2 373.4645 455.4619 18.2939 0.1144 596 +598 2 372.658 456.2741 18.2823 0.1144 597 +599 2 371.8526 457.0863 18.2708 0.1144 598 +600 2 371.0472 457.8986 18.2592 0.1144 599 +601 2 370.2419 458.7108 18.2476 0.1144 600 +602 2 369.4354 459.5231 18.236 0.1144 601 +603 2 368.63 460.3353 18.2244 0.1144 602 +604 2 367.8246 461.1475 18.2129 0.1144 603 +605 2 367.0192 461.9586 18.2013 0.1144 604 +606 2 366.2127 462.7709 18.1897 0.1144 605 +607 2 365.4073 463.5831 18.1781 0.1144 606 +608 2 364.602 464.3954 18.1665 0.1144 607 +609 2 363.7966 465.2076 18.1549 0.1144 608 +610 2 362.9901 466.0198 18.1432 0.1144 609 +611 2 362.1847 466.8321 18.1316 0.1144 610 +612 2 361.3793 467.6443 18.1199 0.1144 611 +613 2 360.5739 468.4566 18.1082 0.1144 612 +614 2 359.7674 469.2688 18.0965 0.1144 613 +615 2 358.962 470.081 18.0847 0.1144 614 +616 2 358.1567 470.8933 18.0728 0.1144 615 +617 2 357.3513 471.7055 18.0608 0.1144 616 +618 2 356.5448 472.5178 18.0485 0.1144 617 +619 2 355.7394 473.33 18.0361 0.1144 618 +620 2 354.934 474.1422 18.0233 0.1144 619 +621 2 354.1275 474.9545 18.01 0.1144 620 +622 2 353.3221 475.7656 17.9959 0.1144 621 +623 2 352.4824 476.5366 17.9808 0.1144 622 +624 2 351.605 477.2459 17.9651 0.1144 623 +625 2 351.0067 478.2183 17.9473 0.1144 624 +626 2 350.5033 479.2445 17.9257 0.1144 625 +627 2 349.8707 480.1917 17.8954 0.1144 626 +628 2 349.1202 481.0531 17.8533 0.1144 627 +629 2 348.4716 481.9924 17.7979 0.1144 628 +630 2 347.919 482.9934 17.7294 0.1144 629 +631 2 347.3161 483.9326 17.6364 0.1144 630 +632 2 346.8128 484.7128 17.4 0.1144 631 +633 2 346.2236 485.6909 17.1957 0.1144 632 +634 2 345.4994 486.5729 17.0347 0.1144 633 +635 2 344.9732 487.5842 16.9117 0.1144 634 +636 2 344.2571 488.472 16.8187 0.1144 635 +637 2 343.518 489.346 16.7537 0.1144 636 +638 2 342.7287 490.1731 16.712 0.1144 637 +639 2 342.1853 491.1764 16.6655 0.1144 638 +640 2 341.9141 492.2643 16.5413 0.1144 639 +641 2 341.6579 493.3786 16.3086 0.1144 640 +642 2 404.3445 431.05 14.2359 0.1144 561 +643 2 404.9577 430.0925 14.5908 0.1144 642 +644 2 405.5709 429.1338 14.7444 0.1144 643 +645 2 406.1841 428.1763 14.9149 0.1144 644 +646 2 406.7984 427.2188 15.0889 0.1144 645 +647 2 407.4116 426.2613 15.2546 0.1144 646 +648 2 408.4263 425.7488 15.3611 0.1144 647 +649 2 409.4822 425.3724 15.3338 0.1144 648 +650 2 410.6056 425.1619 15.1838 0.1144 649 +651 2 339.3768 403.2222 5.8818 0.1144 113 +652 2 340.2588 403.9235 5.7767 0.1144 651 +653 2 341.3742 404.0711 5.6977 0.1144 652 +654 2 342.5113 404.0368 5.6119 0.1144 653 +655 2 343.5707 403.6375 5.5315 0.1144 654 +656 2 344.5694 403.0815 5.5064 0.1144 655 +657 2 345.6287 403.4465 5.5394 0.1144 656 +658 2 346.2019 403.6089 5.6998 0.1144 657 +659 2 347.2978 403.7405 5.944 0.1144 658 +660 2 348.4361 403.6684 6.1873 0.1144 659 +661 2 349.2243 403.1696 6.4525 0.1144 660 +662 2 349.0527 402.0691 6.6887 0.1144 661 +663 2 349.0813 400.9468 6.8815 0.1144 662 +664 2 349.0275 399.812 7.0414 0.1144 663 +665 2 349.1717 398.708 7.2504 0.1144 664 +666 2 349.4531 397.6064 7.4644 0.1144 665 +667 2 350.239 396.8856 7.7241 0.1144 666 +668 2 350.6063 397.6727 7.9695 0.1144 667 +669 2 350.8225 398.6417 8.3431 0.1144 668 +670 2 351.9527 398.7046 8.6321 0.1144 669 +671 2 353.0338 398.3316 8.8441 0.1144 670 +672 2 354.1378 398.0571 8.9982 0.1144 671 +673 2 355.2806 398.104 9.11 0.1144 672 +674 2 356.4212 398.1898 9.2011 0.1144 673 +675 2 357.5572 398.1921 9.2808 0.1144 674 +676 2 358.5891 398.1028 9.3801 0.1144 675 +677 2 359.526 398.6119 9.5122 0.1144 676 +678 2 360.4641 398.4872 9.8374 0.1144 677 +679 2 361.5578 398.4827 10.1496 0.1144 678 +680 2 362.6995 398.5524 10.3952 0.1144 679 +681 2 363.7874 398.8911 10.5811 0.1144 680 +682 2 364.9223 398.9597 10.7159 0.1144 681 +683 2 365.9347 398.4666 10.8067 0.1144 682 +684 2 366.9986 398.0491 10.862 0.1144 683 +685 2 368.1381 398.0148 10.9157 0.1144 684 +686 2 369.2523 397.9187 11.05 0.1144 685 +687 2 370.362 397.7562 11.2342 0.1144 686 +688 2 371.4557 397.4325 11.3638 0.1144 687 +689 2 372.5482 397.7619 11.4409 0.1144 688 +690 2 373.6762 397.6372 11.4265 0.1144 689 +691 2 374.7652 397.5434 11.2814 0.1144 690 +692 2 375.8898 397.3352 11.1645 0.1144 691 +693 2 377.0006 397.111 11.0941 0.1144 692 +694 2 377.9341 396.4646 11.0896 0.1144 693 +695 2 379.0164 396.3697 11.1686 0.1144 694 +696 2 379.919 397.0286 11.369 0.1144 695 +697 2 380.9978 397.2517 11.5931 0.1144 696 +698 2 381.9999 396.7804 11.8628 0.1144 697 +699 2 382.8625 396.2473 12.2985 0.1144 698 +700 2 383.8715 395.8709 12.7485 0.1144 699 +701 2 384.988 395.6284 13.0938 0.1144 700 +702 2 386.0908 395.3252 13.3465 0.1144 701 +703 2 387.2051 395.0667 13.5245 0.1144 702 +704 2 388.2484 394.6606 13.6458 0.1144 703 +705 2 389.1877 394.0165 13.7438 0.1144 704 +706 2 390.0754 393.3278 13.8608 0.1144 705 +707 2 390.8362 392.495 13.9653 0.1144 706 +708 2 391.526 391.5912 13.9737 0.1144 707 +709 2 392.1232 390.6291 13.9135 0.1144 708 +710 2 392.5236 389.6201 13.7483 0.1144 709 +711 2 392.5567 388.5493 13.5255 0.1144 710 +712 2 392.7546 387.4728 13.3584 0.1144 711 +713 2 393.2477 386.4398 13.2617 0.1144 712 +714 2 393.8346 385.4616 13.241 0.1144 713 +715 2 394.6182 384.6414 13.285 0.1144 714 +716 2 395.0049 383.653 13.3825 0.1144 715 +717 2 395.4453 382.6554 13.5911 0.1144 716 +718 2 396.3811 382.2447 13.9475 0.1144 717 +719 2 397.4382 381.8283 14.2505 0.1144 718 +720 2 398.4335 381.2666 14.4897 0.1144 719 +721 2 399.4013 380.6557 14.6723 0.1144 720 +722 2 400.2822 379.927 14.8063 0.1144 721 +723 2 401.0898 379.1182 14.9038 0.1144 722 +724 2 401.9375 378.3494 15.0073 0.1144 723 +725 2 402.9248 377.7751 15.1401 0.1144 724 +726 2 403.6318 376.8805 15.2968 0.1144 725 +727 2 403.7931 375.7514 15.4772 0.1144 726 +728 2 404.0345 374.7275 15.8234 0.1144 727 +729 2 404.2747 373.7048 16.9422 0.1144 728 +730 2 345.965 403.1868 5.0613 0.1144 657 +731 2 346.8745 402.4935 4.9058 0.1144 730 +732 2 347.8115 402.6388 4.8041 0.1144 731 +733 2 348.5082 403.5151 4.7 0.1144 732 +734 2 349.46 403.1319 4.6193 0.1144 733 +735 2 350.3157 402.3757 4.5607 0.1144 734 +736 2 351.4585 402.3528 4.5224 0.1144 735 +737 2 352.5728 402.0943 4.499 0.1144 736 +738 2 303.9368 397.5217 13.4958 0.1144 77 +739 2 302.8866 397.8569 13.3274 0.1144 738 +740 2 301.9016 398.374 13.2716 0.1144 739 +741 2 301.206 399.2468 13.2919 0.1144 740 +742 2 300.4213 399.9744 13.3352 0.1144 741 +743 2 299.3562 400.3428 13.375 0.1144 742 +744 2 298.2431 400.297 13.4635 0.1144 743 +745 2 297.1677 400.2822 13.6886 0.1144 744 +746 2 296.3029 400.8736 13.9816 0.1144 745 +747 2 295.3099 401.298 14.2719 0.1144 746 +748 2 294.1727 401.3827 14.5221 0.1144 747 +749 2 293.031 401.4559 14.7178 0.1144 748 +750 2 292.276 400.6482 15.1838 0.1144 749 +751 2 306.322 397.3581 14.3983 0.1144 75 +752 2 305.4171 398.0354 14.5228 0.1144 751 +753 2 304.6769 398.9059 14.5665 0.1144 752 +754 2 303.6187 399.0192 14.6029 0.1144 753 +755 2 302.4862 399.1622 14.6332 0.1144 754 +756 2 301.3765 399.0627 14.6593 0.1144 755 +757 2 300.3114 398.6508 14.6829 0.1144 756 +758 2 299.3734 398.017 14.7077 0.1144 757 +759 2 298.6298 397.1579 14.7435 0.1144 758 +760 2 297.8255 396.3594 14.793 0.1144 759 +761 2 296.8074 395.8812 14.8573 0.1144 760 +762 2 295.8327 395.3172 14.9363 0.1144 761 +763 2 295.2035 394.4237 15.0964 0.1144 762 +764 2 294.4953 393.5692 15.3237 0.1144 763 +765 2 293.5355 392.9709 15.5337 0.1144 764 +766 2 292.5036 392.4778 15.7104 0.1144 765 +767 2 291.3882 392.4595 15.8615 0.1144 766 +768 2 290.2671 392.6791 15.9965 0.1144 767 +769 2 289.13 392.7798 16.1229 0.1144 768 +770 2 288.0203 392.5464 16.2658 0.1144 769 +771 2 287.0891 393.0223 16.5201 0.1144 770 +772 2 285.9989 392.9377 16.821 0.1144 771 +773 2 285.015 393.3804 17.2139 0.1144 772 +774 2 283.9225 393.6984 17.5749 0.1144 773 +775 2 282.8105 393.8678 17.8585 0.1144 774 +776 2 281.8027 393.4227 18.0812 0.1144 775 +777 2 280.9939 392.6208 18.2745 0.1144 776 +778 2 280.0901 391.947 18.4414 0.1144 777 +779 2 279.0571 391.4791 18.5866 0.1144 778 +780 2 277.9909 391.1084 18.7405 0.1144 779 +781 2 276.8869 390.9723 18.8185 0.1144 780 +782 2 275.7738 391.1759 18.8353 0.1144 781 +783 2 274.8311 391.7422 18.8497 0.1144 782 +784 2 273.9365 392.4057 18.9179 0.1144 783 +785 2 272.8623 392.4652 19.0161 0.1144 784 +786 2 271.7881 392.0923 19.1102 0.1144 785 +787 2 270.7207 391.6839 19.2119 0.1144 786 +788 2 269.6545 391.2709 19.3188 0.1144 787 +789 2 268.7691 390.581 19.427 0.1144 788 +790 2 267.7887 390.0365 19.5385 0.1144 789 +791 2 266.7225 389.9736 19.7676 0.1144 790 +792 2 265.6311 389.7345 20.0277 0.1144 791 +793 2 264.5317 389.508 20.326 0.1144 792 +794 2 263.4094 389.3021 20.5772 0.1144 793 +795 2 262.3226 388.9486 20.7771 0.1144 794 +796 2 261.3056 388.4269 20.9352 0.1144 795 +797 2 260.5082 387.6147 21.0604 0.1144 796 +798 2 259.4192 387.3115 21.1784 0.1144 797 +799 2 258.671 386.4672 21.3055 0.1144 798 +800 2 258.1916 385.8563 21.6139 0.1144 799 +801 2 257.5327 384.9285 21.9096 0.1144 800 +802 2 256.844 384.0145 22.1884 0.1144 801 +803 2 256.1439 383.1096 22.4558 0.1144 802 +804 2 255.8476 382.8259 22.8594 0.1144 803 +805 2 255.1257 382.0605 23.3118 0.1144 804 +806 2 254.6761 381.0138 23.7044 0.1144 805 +807 2 254.0332 380.0848 24.097 0.1144 806 +808 2 253.4166 379.1628 24.5075 0.1144 807 +809 2 253.1546 378.1641 24.9705 0.1144 808 +810 2 252.6146 377.5886 25.5004 0.1144 809 +811 2 252.2703 376.9411 26.046 0.1144 810 +812 2 251.7658 376.0214 26.5448 0.1144 811 +813 2 251.3276 374.9712 26.9341 0.1144 812 +814 2 250.7728 373.9713 27.2235 0.1144 813 +815 2 250.0464 373.4371 27.672 0.1144 814 +816 2 249.7615 374.4632 27.9166 0.1144 815 +817 2 249.4 375.542 28.0697 0.1144 816 +818 2 248.8543 376.543 28.175 0.1144 817 +819 2 248.0821 377.3736 28.2461 0.1144 818 +820 2 247.1337 377.9902 28.3212 0.1144 819 +821 2 246.206 378.6446 28.3926 0.1144 820 +822 2 245.2301 379.2337 28.4626 0.1144 821 +823 2 244.1925 379.713 28.5048 0.1144 822 +824 2 243.084 379.9602 28.5166 0.1144 823 +825 2 241.948 379.9235 28.4987 0.1144 824 +826 2 240.8051 379.8904 28.4528 0.1144 825 +827 2 239.7023 379.6925 28.327 0.1144 826 +828 2 238.5732 379.6639 28.1809 0.1144 827 +829 2 237.4807 379.387 28.0417 0.1144 828 +830 2 236.4488 378.8985 27.9069 0.1144 829 +831 2 235.4867 378.2808 27.7735 0.1144 830 +832 2 234.6138 377.5841 27.5649 0.1144 831 +833 2 233.6174 377.0784 27.3052 0.1144 832 +834 2 232.5272 376.7512 27.0614 0.1144 833 +835 2 231.4701 376.3302 26.8229 0.1144 834 +836 2 230.421 375.8909 26.5975 0.1144 835 +837 2 229.372 375.4516 26.3959 0.1144 836 +838 2 228.3618 374.9197 26.2472 0.1144 837 +839 2 227.386 374.3488 26.2126 0.1144 838 +840 2 226.3393 373.8981 26.2204 0.1144 839 +841 2 225.2479 373.5572 26.2338 0.1144 840 +842 2 224.1428 373.2632 26.238 0.1144 841 +843 2 223.0365 372.9692 26.2183 0.1144 842 +844 2 221.8971 372.9165 26.1628 0.1144 843 +845 2 220.7989 373.2174 26.0665 0.1144 844 +846 2 219.6915 373.5057 25.9386 0.1144 845 +847 2 219.3666 374.0342 25.7345 0.1144 846 +848 2 219.3117 374.398 25.3589 0.1144 847 +849 2 218.2592 374.2665 24.9918 0.1144 848 +850 2 217.1541 373.9782 24.6627 0.1144 849 +851 2 216.0867 373.6087 24.3246 0.1144 850 +852 2 215.0297 373.2163 23.9764 0.1144 851 +853 2 213.9108 373.0195 23.6802 0.1144 852 +854 2 212.8526 373.3764 23.4434 0.1144 853 +855 2 211.7281 373.4508 23.2333 0.1144 854 +856 2 210.6207 373.5709 22.9592 0.1144 855 +857 2 209.8428 374.2482 22.5734 0.1144 856 +858 2 208.9024 374.8877 22.2523 0.1144 857 +859 2 207.8499 375.3315 21.9911 0.1144 858 +860 2 206.7208 375.5054 21.7799 0.1144 859 +861 2 205.61 375.6427 21.5297 0.1144 860 +862 2 204.4683 375.5706 21.3355 0.1144 861 +863 2 203.4444 375.0627 21.1722 0.1144 862 +864 2 202.1723 375.2126 22.2193 0.1144 863 +865 2 201.3131 375.7033 22.6249 0.1144 864 +866 2 201.0603 376.6551 23.1499 0.1144 865 +867 2 201.2696 377.7682 23.6685 0.1144 866 +868 2 201.2033 378.8573 24.2157 0.1144 867 +869 2 201.0077 379.9704 24.7353 0.1144 868 +870 2 200.7926 381.0916 25.1958 0.1144 869 +871 2 200.6153 382.1807 25.6723 0.1144 870 +872 2 200.7468 383.2125 26.2221 0.1144 871 +873 2 200.9768 384.2296 26.8305 0.1144 872 +874 2 200.2892 384.8965 27.34 0.1144 873 +875 2 199.2642 385.4033 27.7125 0.1144 874 +876 2 198.4829 386.2121 27.9659 0.1144 875 +877 2 197.9006 387.1948 28.1173 0.1144 876 +878 2 197.2233 388.1134 28.1966 0.1144 877 +879 2 196.4191 388.9257 28.2425 0.1144 878 +880 2 195.5954 389.7196 28.2937 0.1144 879 +881 2 194.7282 390.4655 28.3643 0.1144 880 +882 2 193.8119 391.1485 28.4592 0.1144 881 +883 2 192.8944 391.8326 28.583 0.1144 882 +884 2 192.5032 392.8553 28.7966 0.1144 883 +885 2 192.2103 393.9421 29.0895 0.1144 884 +886 2 191.9163 395.0289 29.4358 0.1144 885 +887 2 191.6223 396.1146 29.8094 0.1144 886 +888 2 191.3294 397.2014 30.1854 0.1144 887 +889 2 191.0354 398.2882 30.5416 0.1144 888 +890 2 190.6007 399.3349 30.8353 0.1144 889 +891 2 189.864 400.1975 31.0083 0.1144 890 +892 2 189.0872 401.0349 31.0789 0.1144 891 +893 2 188.3104 401.8735 31.0755 0.1144 892 +894 2 187.9958 402.9546 31.0383 0.1144 893 +895 2 189.0426 402.9465 30.9943 0.1144 894 +896 2 190.174 402.783 30.9588 0.1144 895 +897 2 191.3065 402.6194 30.9299 0.1144 896 +898 2 202.6596 374.2253 20.826 0.1144 863 +899 2 202.1871 373.2895 20.5147 0.1144 898 +900 2 201.725 372.2759 20.1846 0.1144 899 +901 2 201.2285 371.2932 19.7838 0.1144 900 +902 2 200.6565 370.322 19.3827 0.1144 901 +903 2 200.4723 369.2523 18.9611 0.1144 902 +904 2 200.3613 368.1392 18.5732 0.1144 903 +905 2 199.5742 367.3556 18.2682 0.1144 904 +906 2 198.6934 366.6268 18.0926 0.1144 905 +907 2 198.2174 365.5927 18.0347 0.1144 906 +908 2 198.5378 364.5985 18.2315 0.1144 907 +909 2 198.7151 364.4166 18.4528 0.1144 908 +910 2 199.4907 363.5758 18.6822 0.1144 909 +911 2 199.3958 362.767 18.9105 0.1144 910 +912 2 198.5012 362.0714 19.1641 0.1144 911 +913 2 198.4485 361.2763 19.4932 0.1144 912 +914 2 199.3386 360.622 19.8255 0.1144 913 +915 2 199.247 359.605 20.2307 0.1144 914 +916 2 199.4015 358.5811 20.7071 0.1144 915 +917 2 199.2917 357.8512 21.0171 0.1144 916 +918 2 199.0057 356.753 21.1439 0.1144 917 +919 2 198.5057 355.7405 21.126 0.1144 918 +920 2 197.9612 354.7441 21.0245 0.1144 919 +921 2 198.0493 353.7534 20.8242 0.1144 920 +922 2 198.1934 352.7249 20.4774 0.1144 921 +923 2 198.1271 351.5947 20.1242 0.1144 922 +924 2 197.6866 350.5559 19.7905 0.1144 923 +925 2 196.9968 349.6705 19.4024 0.1144 924 +926 2 196.5724 348.7415 18.8649 0.1144 925 +927 2 197.5757 348.2977 18.395 0.1144 926 +928 2 197.634 348.4899 17.7491 0.1144 927 +929 2 198.2541 348.9715 16.4034 0.1144 928 +930 2 199.3214 349.2312 16.1845 0.1144 929 +931 2 200.2995 349.7597 16.1106 0.1144 930 +932 2 201.0248 350.636 16.0933 0.1144 931 +933 2 201.7421 351.5043 16.1537 0.1144 932 +934 2 202.5532 352.2101 16.2145 0.1144 933 +935 2 203.6755 352.36 16.2997 0.1144 934 +936 2 204.7726 352.5533 16.4153 0.1144 935 +937 2 205.8479 352.9309 16.4538 0.1144 936 +938 2 206.945 353.2294 16.4073 0.1144 937 +939 2 208.0353 353.1517 16.3271 0.1144 938 +940 2 209.1381 353.0544 16.2529 0.1144 939 +941 2 210.1288 352.7993 16.0853 0.1144 940 +942 2 211.0428 352.1758 15.9217 0.1144 941 +943 2 212.0896 351.7525 15.8434 0.1144 942 +944 2 213.1855 351.5878 15.9228 0.1144 943 +945 2 214.309 351.5764 16.1149 0.1144 944 +946 2 215.4221 351.804 16.3405 0.1144 945 +947 2 216.5535 351.9516 16.587 0.1144 946 +948 2 217.5648 352.4401 16.8402 0.1144 947 +949 2 218.4056 353.2008 17.1308 0.1144 948 +950 2 218.7648 354.171 17.5556 0.1144 949 +951 2 219.5885 354.8802 18.063 0.1144 950 +952 2 220.6456 355.2886 18.5686 0.1144 951 +953 2 221.7289 355.5804 19.091 0.1144 952 +954 2 222.762 355.9842 19.6415 0.1144 953 +955 2 223.827 356.356 20.1638 0.1144 954 +956 2 224.9264 356.6729 20.5995 0.1144 955 +957 2 226.0109 356.8845 20.9967 0.1144 956 +958 2 226.6939 356.8571 21.5027 0.1144 957 +959 2 227.0554 357.643 22.177 0.1144 958 +960 2 227.7372 358.5079 22.8234 0.1144 959 +961 2 228.5769 359.2778 23.3577 0.1144 960 +962 2 229.3983 360.034 23.8578 0.1144 961 +963 2 230.4005 360.5362 24.2897 0.1144 962 +964 2 231.4781 360.9148 24.5999 0.1144 963 +965 2 232.5546 361.3015 24.8135 0.1144 964 +966 2 233.6311 361.6905 24.9774 0.1144 965 +967 2 234.7076 362.0783 25.1107 0.1144 966 +968 2 235.7978 362.4032 25.2541 0.1144 967 +969 2 236.8801 362.378 25.8686 0.1144 968 +970 2 196.9442 348.0288 17.2246 0.1144 928 +971 2 196.1857 347.1846 16.8069 0.1144 970 +972 2 195.6846 346.1893 16.414 0.1144 971 +973 2 196.3447 345.3553 16.0374 0.1144 972 +974 2 196.6833 344.2834 15.6836 0.1144 973 +975 2 196.4763 343.1634 15.4104 0.1144 974 +976 2 196.5426 342.0217 15.1899 0.1144 975 +977 2 196.4465 340.8823 15.0175 0.1144 976 +978 2 196.6856 340.8903 15.1838 0.1144 977 +979 2 197.7164 341.3387 15.198 0.1144 978 +980 2 198.7666 341.0561 15.2037 0.1144 979 +981 2 199.8202 340.6088 15.2116 0.1144 980 +982 2 200.9562 340.6031 15.2222 0.1144 981 +983 2 201.9217 339.9911 15.2381 0.1144 982 +984 2 202.742 339.1937 15.2608 0.1144 983 +985 2 203.5542 338.3872 15.2909 0.1144 984 +986 2 204.4522 337.6791 15.3284 0.1144 985 +987 2 205.3812 337.0144 15.3756 0.1144 986 +988 2 206.1271 336.1793 15.5069 0.1144 987 +989 2 206.7105 335.1954 15.6179 0.1144 988 +990 2 207.2104 334.1658 15.7094 0.1144 989 +991 2 207.7298 333.1465 15.7827 0.1144 990 +992 2 208.3087 332.1615 15.8482 0.1144 991 +993 2 208.8727 331.2235 15.9481 0.1144 992 +994 2 210.0029 331.0439 16.0025 0.1144 993 +995 2 209.9732 330.0085 16.0297 0.1144 994 +996 2 208.9985 329.4743 16.0235 0.1144 995 +997 2 208.0867 328.8142 15.7461 0.1144 996 +998 2 196.4099 340.4395 14.8556 0.1144 977 +999 2 196.379 339.323 14.6495 0.1144 998 +1000 2 196.1434 338.2591 14.4504 0.1144 999 +1001 2 195.6789 337.218 14.3029 0.1144 1000 +1002 2 195.322 336.1312 14.2011 0.1144 1001 +1003 2 195.298 335.0284 14.142 0.1144 1002 +1004 2 195.6789 333.9553 14.1233 0.1144 1003 +1005 2 195.9752 332.864 14.1382 0.1144 1004 +1006 2 196.1365 331.7314 14.1708 0.1144 1005 +1007 2 196.4763 330.6503 14.2122 0.1144 1006 +1008 2 197.0574 329.6699 14.2596 0.1144 1007 +1009 2 197.1055 328.6449 14.3622 0.1144 1008 +1010 2 197.2313 327.573 14.53 0.1144 1009 +1011 2 197.9337 326.7035 14.6619 0.1144 1010 +1012 2 198.7528 325.905 14.7368 0.1144 1011 +1013 2 199.5857 325.1351 14.7142 0.1144 1012 +1014 2 200.343 324.3309 14.5601 0.1144 1013 +1015 2 200.772 323.2864 14.4038 0.1144 1014 +1016 2 201.3554 322.3048 14.2745 0.1144 1015 +1017 2 202.0762 321.4182 14.1875 0.1144 1016 +1018 2 202.742 320.4882 14.1438 0.1144 1017 +1019 2 203.1641 319.4277 14.1415 0.1144 1018 +1020 2 203.1538 318.2848 14.1715 0.1144 1019 +1021 2 203.1733 317.0379 14.277 0.1144 1020 +1022 2 203.3609 315.9213 14.3576 0.1144 1021 +1023 2 203.8883 314.9363 14.4927 0.1144 1022 +1024 2 204.7039 314.1653 14.6862 0.1144 1023 +1025 2 205.7061 313.6368 14.8842 0.1144 1024 +1026 2 206.7711 313.5567 15.1463 0.1144 1025 +1027 2 207.6932 313.2718 15.478 0.1144 1026 +1028 2 208.7285 312.908 15.777 0.1144 1027 +1029 2 209.6266 312.2811 16.0724 0.1144 1028 +1030 2 210.1105 311.3716 16.4713 0.1144 1029 +1031 2 210.7786 310.501 16.7561 0.1144 1030 +1032 2 211.6938 309.8318 16.973 0.1144 1031 +1033 2 212.7623 309.4737 17.1759 0.1144 1032 +1034 2 213.2656 308.5116 17.3886 0.1144 1033 +1035 2 213.1043 307.3836 17.5023 0.1144 1034 +1036 2 213.5894 306.3495 17.527 0.1144 1035 +1037 2 213.8193 305.2284 17.4953 0.1144 1036 +1038 2 214.3181 304.3532 17.0301 0.1144 1037 +1039 2 215.1338 303.7297 16.6725 0.1144 1038 +1040 2 216.0066 303.0204 16.4116 0.1144 1039 +1041 2 216.7857 302.1842 16.1953 0.1144 1040 +1042 2 217.3749 301.2266 15.9708 0.1144 1041 +1043 2 218.0052 300.2783 15.7947 0.1144 1042 +1044 2 218.4079 299.2155 15.6749 0.1144 1043 +1045 2 218.4903 298.0818 15.5676 0.1144 1044 +1046 2 219.0714 297.1632 15.3926 0.1144 1045 +1047 2 220.1308 296.7971 15.2324 0.1144 1046 +1048 2 221.2302 296.4825 15.0901 0.1144 1047 +1049 2 221.3857 295.4014 14.9481 0.1144 1048 +1050 2 221.5081 294.2883 14.8765 0.1144 1049 +1051 2 221.7381 294.0435 15.7461 0.1144 1050 +1052 2 222.5206 293.2083 15.6243 0.1144 1051 +1053 2 223.3031 292.3744 15.5871 0.1144 1052 +1054 2 224.0307 291.5141 15.4772 0.1144 1053 +1055 2 224.7766 290.6481 15.3758 0.1144 1054 +1056 2 225.5968 289.8507 15.2975 0.1144 1055 +1057 2 226.4823 289.1266 15.241 0.1144 1056 +1058 2 227.3677 288.4024 15.2046 0.1144 1057 +1059 2 228.1811 287.597 15.1862 0.1144 1058 +1060 2 229.1455 286.9827 15.1838 0.1144 1059 +1061 2 221.8479 294.0252 14.6556 0.1144 1050 +1062 2 222.5927 293.2999 14.2946 0.1144 1061 +1063 2 223.255 292.3675 13.9593 0.1144 1062 +1064 2 223.8877 291.458 13.5897 0.1144 1063 +1065 2 224.4722 290.5726 13.1159 0.1144 1064 +1066 2 225.1552 289.6825 12.6745 0.1144 1065 +1067 2 226.0155 288.9321 12.3281 0.1144 1066 +1068 2 226.9021 288.2216 12.0166 0.1144 1067 +1069 2 227.5382 287.3362 11.7009 0.1144 1068 +1070 2 228.1399 286.4496 11.3645 0.1144 1069 +1071 2 228.9785 285.7083 11.0653 0.1144 1070 +1072 2 229.4864 284.7279 10.8403 0.1144 1071 +1073 2 229.6626 283.6193 10.6222 0.1144 1072 +1074 2 230.2117 282.6687 10.4587 0.1144 1073 +1075 2 231.064 281.9136 10.3681 0.1144 1074 +1076 2 231.8499 281.0877 10.3356 0.1144 1075 +1077 2 232.415 280.1084 10.3793 0.1144 1076 +1078 2 232.9973 279.1314 10.4753 0.1144 1077 +1079 2 233.7352 278.2688 10.5461 0.1144 1078 +1080 2 234.7923 277.9268 10.5853 0.1144 1079 +1081 2 235.4832 277.0734 10.7187 0.1144 1080 +1082 2 236.0987 276.1113 10.8642 0.1144 1081 +1083 2 236.4122 275.013 11.0116 0.1144 1082 +1084 2 236.3618 273.8725 11.1641 0.1144 1083 +1085 2 236.2738 273.5659 10.4436 0.1144 1084 +1086 2 236.0713 272.4642 9.9484 0.1144 1085 +1087 2 236.0816 271.3431 9.7352 0.1144 1086 +1088 2 236.276 270.238 9.4736 0.1144 1087 +1089 2 236.5174 269.1271 9.2214 0.1144 1088 +1090 2 236.7485 268.0152 8.9889 0.1144 1089 +1091 2 237.2553 267.0096 8.8281 0.1144 1090 +1092 2 237.698 265.9606 8.763 0.1144 1091 +1093 2 238.2391 264.9687 8.7412 0.1144 1092 +1094 2 238.9358 264.0684 8.7764 0.1144 1093 +1095 2 239.7527 263.271 8.8908 0.1144 1094 +1096 2 239.6154 262.5469 9.3074 0.1144 1095 +1097 2 240.4162 261.9771 9.8718 0.1144 1096 +1098 2 240.7548 260.8858 10.3515 0.1144 1097 +1099 2 240.7548 260.2577 10.6848 0.1144 1098 +1100 2 241.2147 260.1513 12.471 0.1144 1099 +1101 2 242.0521 259.505 13.2068 0.1144 1100 +1102 2 242.2637 258.8369 14.0543 0.1144 1101 +1103 2 241.336 258.4857 14.9541 0.1144 1102 +1104 2 240.7777 257.8313 15.7884 0.1144 1103 +1105 2 240.6564 256.7147 16.4923 0.1144 1104 +1106 2 240.5352 255.5993 17.0564 0.1144 1105 +1107 2 240.629 254.4874 17.4794 0.1144 1106 +1108 2 240.8955 253.3754 17.7528 0.1144 1107 +1109 2 240.7662 252.2817 17.9177 0.1144 1108 +1110 2 240.5592 251.1652 18.018 0.1144 1109 +1111 2 240.5214 250.0223 18.0819 0.1144 1110 +1112 2 240.3773 248.8932 18.1278 0.1144 1111 +1113 2 240.1965 247.7641 18.1715 0.1144 1112 +1114 2 240.248 246.6475 18.2793 0.1144 1113 +1115 2 240.5203 245.5459 18.396 0.1144 1114 +1116 2 240.9047 244.4694 18.4941 0.1144 1115 +1117 2 241.7661 243.7818 18.5774 0.1144 1116 +1118 2 242.7865 243.2647 18.6499 0.1144 1117 +1119 2 243.7567 242.663 18.7157 0.1144 1118 +1120 2 244.7245 242.0532 18.7775 0.1144 1119 +1121 2 245.3903 241.1483 18.8771 0.1144 1120 +1122 2 245.356 240.0375 19.0241 0.1144 1121 +1123 2 245.4669 238.905 19.1848 0.1144 1122 +1124 2 245.8342 237.833 19.3663 0.1144 1123 +1125 2 246.6018 236.9933 19.5063 0.1144 1124 +1126 2 247.7206 236.776 19.6826 0.1144 1125 +1127 2 240.7788 259.5038 10.6848 0.1144 1099 +1128 2 241.0419 258.4021 10.6919 0.1144 1127 +1129 2 241.5419 257.3771 10.6946 0.1144 1128 +1130 2 242.4342 256.7411 10.6986 0.1144 1129 +1131 2 243.4478 256.2114 10.7041 0.1144 1130 +1132 2 244.4671 255.6943 10.7118 0.1144 1131 +1133 2 245.4555 255.12 10.722 0.1144 1132 +1134 2 246.421 254.5068 10.7372 0.1144 1133 +1135 2 247.3099 253.7907 10.7598 0.1144 1134 +1136 2 247.9723 252.8709 10.7902 0.1144 1135 +1137 2 248.4516 251.8344 10.8257 0.1144 1136 +1138 2 248.8509 250.7625 10.8631 0.1144 1137 +1139 2 249.4961 249.8988 10.9962 0.1144 1138 +1140 2 250.067 248.9287 11.1364 0.1144 1139 +1141 2 250.8083 248.0627 11.2241 0.1144 1140 +1142 2 251.5931 247.2619 11.1864 0.1144 1141 +1143 2 252.6215 246.7802 11.1206 0.1144 1142 +1144 2 253.2416 245.8559 10.6848 0.1144 1143 +1145 2 240.8921 261.452 10.8347 0.1144 1098 +1146 2 241.2959 262.4645 11.2819 0.1144 1145 +1147 2 241.9137 263.4243 11.5977 0.1144 1146 +1148 2 242.6538 264.2937 11.7959 0.1144 1147 +1149 2 243.6137 264.8303 11.9305 0.1144 1148 +1150 2 244.7359 265.0373 12.0512 0.1144 1149 +1151 2 245.849 264.955 12.1928 0.1144 1150 +1152 2 246.9381 264.6255 12.3444 0.1144 1151 +1153 2 247.8739 264.0055 12.4919 0.1144 1152 +1154 2 248.5603 263.1051 12.6376 0.1144 1153 +1155 2 249.011 262.0595 12.7826 0.1144 1154 +1156 2 249.6231 261.1786 13.017 0.1144 1155 +1157 2 250.3049 260.3401 13.3505 0.1144 1156 +1158 2 250.9364 259.3974 13.6398 0.1144 1157 +1159 2 251.6136 258.4765 13.868 0.1144 1158 +1160 2 252.6261 257.9869 14.0414 0.1144 1159 +1161 2 253.7335 257.7089 14.167 0.1144 1160 +1162 2 254.7699 257.2318 14.252 0.1144 1161 +1163 2 255.803 256.7456 14.3425 0.1144 1162 +1164 2 256.9115 256.8246 14.491 0.1144 1163 +1165 2 257.9651 257.2707 14.6266 0.1144 1164 +1166 2 258.997 257.7077 14.7568 0.1144 1165 +1167 2 260.0312 257.3806 14.9054 0.1144 1166 +1168 2 261.0128 256.9756 15.0661 0.1144 1167 +1169 2 262.0893 256.6964 15.2335 0.1144 1168 +1170 2 262.9553 255.9826 15.4064 0.1144 1169 +1171 2 263.0022 255.4689 15.7752 0.1144 1170 +1172 2 262.2002 256.0798 16.8708 0.1144 1171 +1173 2 235.7853 274.1207 11.5115 0.1144 1084 +1174 2 235.815 273.0991 11.9198 0.1144 1173 +1175 2 236.1056 271.9929 12.2061 0.1144 1174 +1176 2 236.3515 270.8832 12.3766 0.1144 1175 +1177 2 236.2486 269.7712 12.4069 0.1144 1176 +1178 2 235.8162 268.7164 12.3375 0.1144 1177 +1179 2 235.4009 267.6537 12.2122 0.1144 1178 +1180 2 234.9353 266.6389 12.0287 0.1144 1179 +1181 2 234.4022 265.7443 11.7723 0.1144 1180 +1182 2 233.5098 265.0339 11.5509 0.1144 1181 +1183 2 232.9241 264.1096 11.3844 0.1144 1182 +1184 2 232.7399 262.985 11.2595 0.1144 1183 +1185 2 232.7262 261.8433 11.1674 0.1144 1184 +1186 2 232.8109 260.7027 11.1033 0.1144 1185 +1187 2 232.6507 259.6228 11.0183 0.1144 1186 +1188 2 232.1405 258.6126 10.9087 0.1144 1187 +1189 2 231.8648 257.5293 10.8228 0.1144 1188 +1190 2 232.1885 256.4871 10.7593 0.1144 1189 +1191 2 232.5844 255.4266 10.7165 0.1144 1190 +1192 2 232.129 254.4588 10.6924 0.1144 1191 +1193 2 231.636 253.4326 10.6848 0.1144 1192 +1194 2 231.0571 252.4488 10.6848 0.1144 1193 +1195 2 230.3856 251.5233 10.6848 0.1144 1194 +1196 2 229.8776 250.504 10.6848 0.1144 1195 +1197 2 229.5173 249.4195 10.6848 0.1144 1196 +1198 2 229.3812 248.288 10.6848 0.1144 1197 +1199 2 229.5219 247.1589 10.6848 0.1144 1198 +1200 2 230.1007 246.1899 10.6848 0.1144 1199 +1201 2 230.7368 245.2393 10.6848 0.1144 1200 +1202 2 231.501 244.3904 10.6848 0.1144 1201 +1203 2 232.558 243.9992 10.6848 0.1144 1202 +1204 2 233.5396 243.4192 10.6848 0.1144 1203 +1205 2 234.5669 242.9181 10.6848 0.1144 1204 +1206 2 235.5221 242.2912 10.6848 0.1144 1205 +1207 2 236.1227 241.3314 10.6848 0.1144 1206 +1208 2 236.4133 240.2274 10.6848 0.1144 1207 +1209 2 236.7428 239.1315 10.6848 0.1144 1208 +1210 2 237.0551 238.0309 10.6848 0.1144 1209 +1211 2 237.9051 237.2748 10.6848 0.1144 1210 +1212 2 238.9175 236.7416 10.6848 0.1144 1211 +1213 2 239.7961 236.0095 10.6848 0.1144 1212 +1214 2 240.367 235.0188 10.6848 0.1144 1213 +1215 2 240.8967 234.0052 10.6848 0.1144 1214 +1216 2 241.4046 232.9802 10.6848 0.1144 1215 +1217 2 213.666 305.1174 17.9956 0.1144 1037 +1218 2 212.7085 304.5031 17.9956 0.1144 1217 +1219 2 211.6366 304.1095 17.9956 0.1144 1218 +1220 2 210.6779 303.6348 17.9956 0.1144 1219 +1221 2 210.4457 302.5194 17.9956 0.1144 1220 +1222 2 210.6218 301.3925 17.9956 0.1144 1221 +1223 2 210.9982 300.3137 17.9956 0.1144 1222 +1224 2 210.9662 299.1732 17.9956 0.1144 1223 +1225 2 211.5016 298.171 17.9956 0.1144 1224 +1226 2 212.331 297.3828 17.9956 0.1144 1225 +1227 2 213.1272 296.5614 17.9956 0.1144 1226 +1228 2 213.7244 295.5856 17.9956 0.1144 1227 +1229 2 203.4982 317.9931 14.3551 0.1144 1020 +1230 2 204.45 317.3834 14.8983 0.1144 1229 +1231 2 205.5322 317.0413 15.0945 0.1144 1230 +1232 2 206.6693 316.999 15.3099 0.1144 1231 +1233 2 207.1612 317.5412 15.7739 0.1144 1232 +1234 2 208.1062 317.4714 16.2391 0.1144 1233 +1235 2 208.8475 316.6546 16.617 0.1144 1234 +1236 2 209.2948 315.6044 16.9147 0.1144 1235 +1237 2 209.972 314.6869 17.1494 0.1144 1236 +1238 2 210.6722 313.782 17.3309 0.1144 1237 +1239 2 211.5759 313.1277 17.5501 0.1144 1238 +1240 2 212.5255 312.5351 17.8377 0.1144 1239 +1241 2 213.2519 311.6531 18.103 0.1144 1240 +1242 2 213.8685 310.6887 18.3497 0.1144 1241 +1243 2 214.1762 309.5881 18.5828 0.1144 1242 +1244 2 214.5503 308.5871 18.9434 0.1144 1243 +1245 2 215.1029 307.6994 19.3711 0.1144 1244 +1246 2 215.6406 306.7178 19.7068 0.1144 1245 +1247 2 216.1577 305.726 20.0463 0.1144 1246 +1248 2 216.5729 304.6689 20.3422 0.1144 1247 +1249 2 216.9001 303.5982 20.6267 0.1144 1248 +1250 2 217.1529 302.4965 20.8609 0.1144 1249 +1251 2 217.6105 301.4554 21.0322 0.1144 1250 +1252 2 218.2992 300.5585 21.142 0.1144 1251 +1253 2 219.2304 299.9168 21.1924 0.1144 1252 +1254 2 220.3081 299.76 21.1989 0.1144 1253 +1255 2 221.4269 299.7852 21.1408 0.1144 1254 +1256 2 222.5023 299.4409 21.0339 0.1144 1255 +1257 2 223.4358 298.8025 20.9312 0.1144 1256 +1258 2 224.2183 297.972 20.8459 0.1144 1257 +1259 2 224.9516 297.0945 20.7761 0.1144 1258 +1260 2 225.7661 296.2949 20.7216 0.1144 1259 +1261 2 226.5829 295.4952 20.6861 0.1144 1260 +1262 2 227.2487 294.6086 20.597 0.1144 1261 +1263 2 227.8482 293.6591 20.4807 0.1144 1262 +1264 2 228.6055 292.8125 20.4216 0.1144 1263 +1265 2 229.5036 292.109 20.4381 0.1144 1264 +1266 2 230.3936 291.4775 20.6306 0.1144 1265 +1267 2 230.8283 290.5142 20.9754 0.1144 1266 +1268 2 230.786 289.4057 21.3895 0.1144 1267 +1269 2 231.4289 288.4928 21.7521 0.1144 1268 +1270 2 232.2881 287.7766 22.1192 0.1144 1269 +1271 2 232.9562 286.8523 22.3993 0.1144 1270 +1272 2 233.6197 285.9222 22.6107 0.1144 1271 +1273 2 234.242 284.9784 22.8253 0.1144 1272 +1274 2 234.9193 284.0575 22.9902 0.1144 1273 +1275 2 235.64 283.1697 23.1184 0.1144 1274 +1276 2 236.1262 282.1367 23.2135 0.1144 1275 +1277 2 236.8023 281.2444 23.3706 0.1144 1276 +1278 2 237.5299 280.3612 23.6191 0.1144 1277 +1279 2 197.3926 348.3789 18.5578 0.1144 927 +1280 2 196.5129 349.0722 18.237 0.1144 1279 +1281 2 195.5233 349.4119 18.1295 0.1144 1280 +1282 2 194.4697 349.1831 17.8972 0.1144 1281 +1283 2 193.455 348.7015 17.625 0.1144 1282 +1284 2 192.3705 348.4132 17.3199 0.1144 1283 +1285 2 191.2356 348.2988 17.0655 0.1144 1284 +1286 2 190.0939 348.3537 16.8696 0.1144 1285 +1287 2 189.4167 349.2186 16.6665 0.1144 1286 +1288 2 188.514 349.9153 16.5161 0.1144 1287 +1289 2 187.6252 350.6349 16.4182 0.1144 1288 +1290 2 186.8678 351.4929 16.3086 0.1144 1289 +1291 2 199.3306 358.8797 22.737 0.1144 916 +1292 2 198.8455 359.8349 23.4868 0.1144 1291 +1293 2 198.516 360.9286 23.7531 0.1144 1292 +1294 2 198.5126 362.0691 24.0496 0.1144 1293 +1295 2 197.9749 361.4102 23.6191 0.1144 1294 +1296 2 197.1833 360.5877 23.657 0.1144 1295 +1297 2 196.3482 359.8063 23.6725 0.1144 1296 +1298 2 195.6549 358.9048 23.6947 0.1144 1297 +1299 2 195.1367 357.8878 23.7248 0.1144 1298 +1300 2 195.0634 356.7747 23.7632 0.1144 1299 +1301 2 195.2408 355.6467 23.8101 0.1144 1300 +1302 2 195.5462 354.5645 23.9258 0.1144 1301 +1303 2 195.8425 353.4651 24.0498 0.1144 1302 +1304 2 196.2498 352.3989 24.1572 0.1144 1303 +1305 2 196.5987 351.311 24.2556 0.1144 1304 +1306 2 196.943 350.2207 24.3513 0.1144 1305 +1307 2 197.5814 349.2884 24.448 0.1144 1306 +1308 2 198.4634 348.5699 24.5472 0.1144 1307 +1309 2 199.3065 347.8 24.6602 0.1144 1308 +1310 2 199.8088 347.013 24.9879 0.1144 1309 +1311 2 200.335 346.0394 25.293 0.1144 1310 +1312 2 200.7926 344.9915 25.528 0.1144 1311 +1313 2 201.2147 343.9276 25.6974 0.1144 1312 +1314 2 201.5968 342.8499 25.8066 0.1144 1313 +1315 2 201.8016 341.7265 25.8614 0.1144 1314 +1316 2 202.1768 340.6489 25.8686 0.1144 1315 +1317 2 202.8518 339.7348 25.8686 0.1144 1316 +1318 2 203.6778 340.3103 25.8686 0.1144 1317 +1319 2 198.7345 362.4341 24.4682 0.1144 1294 +1320 2 198.8855 363.3927 24.9713 0.1144 1319 +1321 2 198.6659 364.5013 25.4457 0.1144 1320 +1322 2 198.4863 365.6167 25.8874 0.1144 1321 +1323 2 198.3868 366.7561 26.2821 0.1144 1322 +1324 2 198.2449 367.8235 26.7342 0.1144 1323 +1325 2 197.721 368.7284 27.237 0.1144 1324 +1326 2 196.7588 368.7661 27.7423 0.1144 1325 +1327 2 195.7418 369.0967 28.1879 0.1144 1326 +1328 2 196.0496 369.9227 28.6804 0.1144 1327 +1329 2 196.7291 370.8425 28.3102 0.1144 1328 +1330 2 197.4819 371.7016 28.1742 0.1144 1329 +1331 2 198.3502 372.42 27.9759 0.1144 1330 +1332 2 199.3386 372.8616 27.6441 0.1144 1331 +1333 2 200.3441 373.2449 27.2029 0.1144 1332 +1334 2 201.3863 373.6613 26.7729 0.1144 1333 +1335 2 201.8313 374.4976 26.3669 0.1144 1334 +1336 2 201.8108 375.637 26.045 0.1144 1335 +1337 2 202.4617 376.503 25.7418 0.1144 1336 +1338 2 203.5851 376.4435 25.5424 0.1144 1337 +1339 2 204.6593 376.8233 25.4221 0.1144 1338 +1340 2 205.4292 377.6699 25.3064 0.1144 1339 +1341 2 195.5668 368.789 28.7582 0.1144 1327 +1342 2 195.0646 367.8326 29.2376 0.1144 1341 +1343 2 194.2912 366.9975 29.582 0.1144 1342 +1344 2 193.6563 366.0537 29.8494 0.1144 1343 +1345 2 193.4618 364.944 30.0798 0.1144 1344 +1346 2 193.7272 363.8366 30.2347 0.1144 1345 +1347 2 194.2706 362.8322 30.3226 0.1144 1346 +1348 2 194.9319 361.8987 30.387 0.1144 1347 +1349 2 195.608 360.9766 30.4382 0.1144 1348 +1350 2 196.1754 359.9825 30.4788 0.1144 1349 +1351 2 196.6044 358.9231 30.5152 0.1144 1350 +1352 2 196.9671 357.8455 30.6001 0.1144 1351 +1353 2 197.2725 356.7484 30.7079 0.1144 1352 +1354 2 197.6958 355.6856 30.7933 0.1144 1353 +1355 2 198.3296 354.7338 30.8566 0.1144 1354 +1356 2 199.2013 353.9936 30.8988 0.1144 1355 +1357 2 200.0112 353.1848 30.9226 0.1144 1356 +1358 2 200.7194 352.2868 30.9299 0.1144 1357 +1359 2 198.2815 364.547 16.5177 0.1144 908 +1360 2 197.5722 364.1158 15.3416 0.1144 1359 +1361 2 196.6261 363.9064 14.9384 0.1144 1360 +1362 2 195.6068 364.2588 14.5367 0.1144 1361 +1363 2 194.5978 364.7804 14.1783 0.1144 1362 +1364 2 193.5476 365.2334 13.8876 0.1144 1363 +1365 2 192.4448 365.524 13.6559 0.1144 1364 +1366 2 191.3992 365.8992 13.3998 0.1144 1365 +1367 2 190.4142 366.3191 13.0278 0.1144 1366 +1368 2 189.491 366.962 12.6926 0.1144 1367 +1369 2 188.5346 367.5889 12.4088 0.1144 1368 +1370 2 187.5645 368.1941 12.1624 0.1144 1369 +1371 2 186.8907 369.1059 11.9433 0.1144 1370 +1372 2 186.3622 370.1195 11.7429 0.1144 1371 +1373 2 185.8417 371.0507 11.406 0.1144 1372 +1374 2 185.7856 371.903 10.9836 0.1144 1373 +1375 2 186.4754 371.1228 10.5869 0.1144 1374 +1376 2 186.2329 370.7178 10.1445 0.1144 1375 +1377 2 186.1482 371.7828 9.7274 0.1144 1376 +1378 2 186.7294 372.7415 9.3907 0.1144 1377 +1379 2 187.3872 373.5858 9.0282 0.1144 1378 +1380 2 188.2223 374.2539 8.6755 0.1144 1379 +1381 2 188.7577 375.1656 8.3668 0.1144 1380 +1382 2 189.4658 375.995 8.0846 0.1144 1381 +1383 2 189.4658 377.0144 7.7871 0.1144 1382 +1384 2 188.4763 377.4639 7.556 0.1144 1383 +1385 2 187.5313 378.1 7.3963 0.1144 1384 +1386 2 186.4663 378.5096 7.2833 0.1144 1385 +1387 2 185.3795 378.8642 7.2012 0.1144 1386 +1388 2 184.3613 379.3847 7.142 0.1144 1387 +1389 2 183.366 379.8961 7.0154 0.1144 1388 +1390 2 183.0995 378.7532 6.8345 0.1144 1389 +1391 2 182.921 377.6241 6.775 0.1144 1390 +1392 2 183.1555 376.5419 6.7325 0.1144 1391 +1393 2 183.2677 375.4047 6.7038 0.1144 1392 +1394 2 183.866 374.4312 6.686 0.1144 1393 +1395 2 184.4826 374.271 5.7212 0.1144 1394 +1396 2 185.5282 374.0949 5.2683 0.1144 1395 +1397 2 186.6585 374.1189 5.0878 0.1144 1396 +1398 2 187.3025 373.3078 5.0334 0.1144 1397 +1399 2 187.9478 372.3651 5.0081 0.1144 1398 +1400 2 188.0599 371.2337 5.0035 0.1144 1399 +1401 2 188.3379 370.1252 5.0166 0.1144 1400 +1402 2 188.9122 369.1356 5.0446 0.1144 1401 +1403 2 189.6649 368.2742 5.0604 0.1144 1402 +1404 2 190.5744 367.5809 5.0613 0.1144 1403 +1405 2 184.0353 373.1877 6.6335 0.1144 1394 +1406 2 184.4654 372.1707 6.5684 0.1144 1405 +1407 2 185.2113 371.3161 6.4957 0.1144 1406 +1408 2 185.6129 370.3036 6.4295 0.1144 1407 +1409 2 185.8371 370.0165 6.4258 0.1144 1408 +1410 2 186.5075 370.9271 6.4915 0.1144 1409 +1411 2 187.3986 370.6514 6.6955 0.1144 1410 +1412 2 188.0221 369.7122 6.9434 0.1144 1411 +1413 2 188.6982 368.789 7.1618 0.1144 1412 +1414 2 189.3732 367.8658 7.3438 0.1144 1413 +1415 2 190.0481 366.9426 7.4848 0.1144 1414 +1416 2 190.7242 366.0194 7.5892 0.1144 1415 +1417 2 191.3992 365.0962 7.664 0.1144 1416 +1418 2 192.0742 364.173 7.7302 0.1144 1417 +1419 2 192.7491 363.2497 7.7981 0.1144 1418 +1420 2 193.4252 362.3277 7.8682 0.1144 1419 +1421 2 194.1059 361.4079 7.9353 0.1144 1420 +1422 2 194.79 360.4916 7.9967 0.1144 1421 +1423 2 195.4341 359.5478 8.0772 0.1144 1422 +1424 2 196.0198 358.5788 8.202 0.1144 1423 +1425 2 196.7234 357.6773 8.2975 0.1144 1424 +1426 2 197.4269 356.7747 8.4356 0.1144 1425 +1427 2 183.4141 380.3079 6.7483 0.1144 1389 +1428 2 183.4072 381.4496 6.631 0.1144 1427 +1429 2 182.9611 382.4884 6.584 0.1144 1428 +1430 2 181.9166 382.8533 6.5225 0.1144 1429 +1431 2 180.7875 383.0318 6.4463 0.1144 1430 +1432 2 179.7064 383.2835 6.2758 0.1144 1431 +1433 2 178.7328 383.8589 6.1018 0.1144 1432 +1434 2 177.8657 384.5545 5.8809 0.1144 1433 +1435 2 176.843 385.0487 5.6941 0.1144 1434 +1436 2 175.8797 385.6138 5.5367 0.1144 1435 +1437 2 174.8432 385.9856 5.4005 0.1144 1436 +1438 2 174.1294 386.8619 5.2594 0.1144 1437 +1439 2 173.3789 387.6661 5.0641 0.1144 1438 +1440 2 172.3322 387.9304 4.8672 0.1144 1439 +1441 2 171.2019 387.8206 4.6805 0.1144 1440 +1442 2 170.2409 388.1249 4.3601 0.1144 1441 +1443 2 169.7204 388.9474 3.8405 0.1144 1442 +1444 2 169.2273 388.5665 3.2315 0.1144 1443 +1445 2 168.311 389.103 2.625 0.1144 1444 +1446 2 167.3992 389.786 2.1405 0.1144 1445 +1447 2 166.5275 390.5078 1.807 0.1144 1446 +1448 2 165.4556 390.6829 1.5802 0.1144 1447 +1449 2 164.6388 391.3338 1.4029 0.1144 1448 +1450 2 164.0118 392.2879 1.2521 0.1144 1449 +1451 2 163.3918 393.147 0.5622 0.1144 1450 +1452 2 197.6924 364.6065 16.4587 0.1144 1360 +1453 2 196.8618 365.0962 16.8239 0.1144 1452 +1454 2 196.0908 365.9073 16.9812 0.1144 1453 +1455 2 195.8711 367.0124 17.0981 0.1144 1454 +1456 2 195.8986 368.1541 17.1697 0.1144 1455 +1457 2 195.8986 369.2958 17.1755 0.1144 1456 +1458 2 195.4673 370.3391 17.1016 0.1144 1457 +1459 2 194.7294 371.2097 17.0201 0.1144 1458 +1460 2 193.8622 371.9544 16.9518 0.1144 1459 +1461 2 192.8658 372.515 16.8708 0.1144 1460 +1462 2 249.8347 373.3261 28.856 0.1144 815 +1463 2 248.8669 372.8033 29.5352 0.1144 1462 +1464 2 247.9357 372.1501 29.8026 0.1144 1463 +1465 2 246.9724 371.5895 30.1109 0.1144 1464 +1466 2 245.865 371.3184 30.3789 0.1144 1465 +1467 2 244.816 370.8654 30.6292 0.1144 1466 +1468 2 243.7498 370.4581 30.8748 0.1144 1467 +1469 2 242.6721 370.1069 31.1184 0.1144 1468 +1470 2 241.535 370.0211 31.3816 0.1144 1469 +1471 2 240.4162 369.8895 31.6652 0.1144 1470 +1472 2 239.3831 369.3999 31.9617 0.1144 1471 +1473 2 238.4016 369.1356 32.3464 0.1144 1472 +1474 2 237.4383 369.1173 32.8692 0.1144 1473 +1475 2 236.3229 368.9812 33.3382 0.1144 1474 +1476 2 235.1915 369.0212 33.8022 0.1144 1475 +1477 2 234.2008 368.662 34.3423 0.1144 1476 +1478 2 233.3165 367.9962 34.9255 0.1144 1477 +1479 2 232.3658 367.399 35.5174 0.1144 1478 +1480 2 231.4541 366.8305 36.1878 0.1144 1479 +1481 2 230.9118 365.9564 36.9303 0.1144 1480 +1482 2 231.0205 364.8834 37.6704 0.1144 1481 +1483 2 231.6863 364.0025 38.3953 0.1144 1482 +1484 2 232.0112 362.966 39.1283 0.1144 1483 +1485 2 232.5111 362.1607 39.9644 0.1144 1484 +1486 2 232.5409 361.1917 40.8346 0.1144 1485 +1487 2 232.0936 360.3303 41.7074 0.1144 1486 +1488 2 231.7938 360.2673 43.3294 0.1144 1487 +1489 2 230.6739 360.034 43.4924 0.1144 1488 +1490 2 229.555 359.8017 43.5616 0.1144 1489 +1491 2 228.4351 359.5684 43.6442 0.1144 1490 +1492 2 227.3162 359.3361 43.736 0.1144 1491 +1493 2 226.1974 359.1027 43.8332 0.1144 1492 +1494 2 225.0774 358.8694 43.9326 0.1144 1493 +1495 2 223.9586 358.6371 44.0308 0.1144 1494 +1496 2 222.8398 358.4038 44.1274 0.1144 1495 +1497 2 221.7198 358.1704 44.2215 0.1144 1496 +1498 2 220.601 357.9382 44.3128 0.1144 1497 +1499 2 219.4821 357.7048 44.3999 0.1144 1498 +1500 2 218.3621 357.4714 44.4805 0.1144 1499 +1501 2 217.2433 357.2392 44.5522 0.1144 1500 +1502 2 216.1233 357.0058 44.6118 0.1144 1501 +1503 2 215.0045 356.7724 44.6566 0.1144 1502 +1504 2 213.8857 356.5402 44.6841 0.1144 1503 +1505 2 212.9567 357.1557 44.6592 0.1144 1504 +1506 2 212.1537 357.9656 44.5852 0.1144 1505 +1507 2 211.3517 358.7778 44.4755 0.1144 1506 +1508 2 210.5498 359.5901 44.3428 0.1144 1507 +1509 2 209.749 360.4035 44.1991 0.1144 1508 +1510 2 208.947 361.2157 44.0552 0.1144 1509 +1511 2 208.2869 362.1492 43.9407 0.1144 1510 +1512 2 207.533 363.0095 43.8533 0.1144 1511 +1513 2 206.9588 363.9991 43.7842 0.1144 1512 +1514 2 206.4119 365.0046 43.7256 0.1144 1513 +1515 2 205.8662 366.0102 43.6708 0.1144 1514 +1516 2 205.1913 366.9174 43.5551 0.1144 1515 +1517 2 204.3813 367.7239 43.4255 0.1144 1516 +1518 2 203.5176 368.4732 43.3112 0.1144 1517 +1519 2 202.6527 369.2214 43.2132 0.1144 1518 +1520 2 201.789 369.9719 43.1309 0.1144 1519 +1521 2 201.0523 370.839 43.0245 0.1144 1520 +1522 2 200.3155 371.7073 42.7395 0.1144 1521 +1523 2 232.8395 359.8646 42.3326 0.1144 1487 +1524 2 233.8096 359.2583 42.742 0.1144 1523 +1525 2 234.7557 358.6165 42.9568 0.1144 1524 +1526 2 235.6834 357.9496 43.0074 0.1144 1525 +1527 2 236.6078 357.2781 42.9517 0.1144 1526 +1528 2 237.5322 356.6054 42.84 0.1144 1527 +1529 2 238.4565 355.9339 42.719 0.1144 1528 +1530 2 239.3809 355.2623 42.593 0.1144 1529 +1531 2 240.3052 354.5908 42.4665 0.1144 1530 +1532 2 241.2296 353.9181 42.3422 0.1144 1531 +1533 2 242.1539 353.2466 42.2206 0.1144 1532 +1534 2 243.0783 352.5751 42.1036 0.1144 1533 +1535 2 244.0026 351.9036 41.9927 0.1144 1534 +1536 2 244.927 351.232 41.8897 0.1144 1535 +1537 2 245.8296 350.5319 41.7956 0.1144 1536 +1538 2 245.7873 349.5892 41.725 0.1144 1537 +1539 2 245.3216 348.5448 41.6808 0.1144 1538 +1540 2 244.856 347.4992 41.6567 0.1144 1539 +1541 2 244.3904 346.4535 41.6472 0.1144 1540 +1542 2 243.926 345.4091 41.6475 0.1144 1541 +1543 2 243.4604 344.3646 41.6531 0.1144 1542 +1544 2 242.9948 343.319 41.6595 0.1144 1543 +1545 2 242.5291 342.2745 41.6662 0.1144 1544 +1546 2 242.0635 341.2289 41.6727 0.1144 1545 +1547 2 241.5979 340.1844 41.6794 0.1144 1546 +1548 2 241.1323 339.1388 41.6858 0.1144 1547 +1549 2 240.6679 338.0932 41.6926 0.1144 1548 +1550 2 240.2022 337.0487 41.699 0.1144 1549 +1551 2 239.7366 336.0042 41.7052 0.1144 1550 +1552 2 239.271 334.9586 41.7116 0.1144 1551 +1553 2 238.8054 333.9142 41.7178 0.1144 1552 +1554 2 238.3398 332.8685 41.7236 0.1144 1553 +1555 2 237.8742 331.8241 41.7292 0.1144 1554 +1556 2 237.4097 330.7784 41.7343 0.1144 1555 +1557 2 236.943 329.734 41.739 0.1144 1556 +1558 2 236.4785 328.6884 41.7427 0.1144 1557 +1559 2 236.0129 327.6439 41.7452 0.1144 1558 +1560 2 235.5473 326.5983 41.7463 0.1144 1559 +1561 2 235.0817 325.5538 41.7449 0.1144 1560 +1562 2 234.6161 324.5082 41.7407 0.1144 1561 +1563 2 234.1516 323.4637 41.732 0.1144 1562 +1564 2 233.972 322.3506 41.7166 0.1144 1563 +1565 2 234.3221 321.2878 41.6926 0.1144 1564 +1566 2 235.0817 320.4516 41.6573 0.1144 1565 +1567 2 235.9168 319.6691 41.61 0.1144 1566 +1568 2 236.8263 318.9815 41.5318 0.1144 1567 +1569 2 237.7827 318.3603 41.4176 0.1144 1568 +1570 2 238.7448 317.7506 41.2773 0.1144 1569 +1571 2 239.708 317.1397 41.123 0.1144 1570 +1572 2 240.6701 316.5299 40.9657 0.1144 1571 +1573 2 241.4938 315.7451 40.8397 0.1144 1572 +1574 2 242.2672 314.902 40.7537 0.1144 1573 +1575 2 243.0359 314.0555 40.7016 0.1144 1574 +1576 2 244.0964 313.9445 40.6745 0.1144 1575 +1577 2 245.2095 314.2019 40.6636 0.1144 1576 +1578 2 246.3467 314.3117 40.6616 0.1144 1577 +1579 2 247.4666 314.1046 40.6616 0.1144 1578 +1580 2 248.5843 313.8621 40.6616 0.1144 1579 +1581 2 249.6952 313.5864 40.6616 0.1144 1580 +1582 2 250.8037 313.3038 40.6616 0.1144 1581 +1583 2 251.9225 313.0659 40.6616 0.1144 1582 +1584 2 253.0448 312.844 40.6616 0.1144 1583 +1585 2 254.1545 312.566 40.6613 0.1144 1584 +1586 2 255.1864 312.0786 40.6613 0.1144 1585 +1587 2 256.1164 311.414 40.6613 0.1144 1586 +1588 2 256.6667 310.4233 40.6613 0.1144 1587 +1589 2 257.2673 309.4497 40.661 0.1144 1588 +1590 2 257.9869 308.5608 40.6608 0.1144 1589 +1591 2 258.7122 307.6765 40.6605 0.1144 1590 +1592 2 259.5439 306.8917 40.6599 0.1144 1591 +1593 2 260.6066 306.4696 40.6594 0.1144 1592 +1594 2 261.6706 306.0509 40.6585 0.1144 1593 +1595 2 262.7356 305.6322 40.6574 0.1144 1594 +1596 2 263.8007 305.2135 40.6557 0.1144 1595 +1597 2 264.7651 304.6003 40.6532 0.1144 1596 +1598 2 265.7249 303.978 40.6501 0.1144 1597 +1599 2 266.8163 303.637 40.6459 0.1144 1598 +1600 2 267.9168 303.3213 40.6386 0.1144 1599 +1601 2 268.9876 302.9198 40.6288 0.1144 1600 +1602 2 270.0309 302.4507 40.6171 0.1144 1601 +1603 2 271.0411 301.913 40.6042 0.1144 1602 +1604 2 271.9666 301.2404 40.5902 0.1144 1603 +1605 2 272.8497 300.5174 40.4902 0.1144 1604 +1606 2 255.8934 382.7252 21.8436 0.1144 803 +1607 2 255.2722 381.7688 21.6472 0.1144 1606 +1608 2 254.6498 380.8124 21.5538 0.1144 1607 +1609 2 254.1934 379.7668 21.4722 0.1144 1608 +1610 2 254.0424 378.6377 21.4066 0.1144 1609 +1611 2 253.8994 377.5017 21.3548 0.1144 1610 +1612 2 253.6134 376.3954 21.3139 0.1144 1611 +1613 2 253.523 375.2572 21.2801 0.1144 1612 +1614 2 253.3285 374.1315 21.2426 0.1144 1613 +1615 2 253.0116 373.0321 21.1904 0.1144 1614 +1616 2 252.7325 371.9224 21.1196 0.1144 1615 +1617 2 252.2303 370.8974 21.0283 0.1144 1616 +1618 2 251.5885 369.9524 20.8918 0.1144 1617 +1619 2 251.0805 368.948 20.665 0.1144 1618 +1620 2 250.7431 367.8726 20.3701 0.1144 1619 +1621 2 250.4937 366.7561 20.0944 0.1144 1620 +1622 2 250.0876 365.6865 19.8336 0.1144 1621 +1623 2 249.2341 364.9749 19.5002 0.1144 1622 +1624 2 248.2045 364.9497 19.0481 0.1144 1623 +1625 2 247.1669 365.4314 18.6789 0.1144 1624 +1626 2 246.0675 365.6258 18.3239 0.1144 1625 +1627 2 245.0322 365.9931 17.9397 0.1144 1626 +1628 2 244.1273 366.6714 17.6247 0.1144 1627 +1629 2 243.5793 367.6564 17.3954 0.1144 1628 +1630 2 243.1995 368.7146 17.1596 0.1144 1629 +1631 2 242.2077 369.2168 16.957 0.1144 1630 +1632 2 241.4721 370.0863 16.7989 0.1144 1631 +1633 2 240.4448 370.5896 16.6681 0.1144 1632 +1634 2 239.5799 371.3367 16.5262 0.1144 1633 +1635 2 238.6704 372.0036 16.3154 0.1144 1634 +1636 2 237.6809 372.5756 16.1227 0.1144 1635 +1637 2 236.649 373.0653 15.9306 0.1144 1636 +1638 2 235.7475 373.7299 15.6667 0.1144 1637 +1639 2 234.8895 374.3008 15.2658 0.1144 1638 +1640 2 233.8496 374.7767 14.9427 0.1144 1639 +1641 2 232.8555 375.343 14.686 0.1144 1640 +1642 2 231.8682 375.9184 14.4766 0.1144 1641 +1643 2 230.9919 376.6471 14.2972 0.1144 1642 +1644 2 230.1373 377.3621 14.0802 0.1144 1643 +1645 2 229.4292 378.2293 13.8769 0.1144 1644 +1646 2 228.395 378.664 13.641 0.1144 1645 +1647 2 227.2945 378.9752 13.4399 0.1144 1646 +1648 2 226.3484 379.5174 13.227 0.1144 1647 +1649 2 225.6334 380.3651 12.9677 0.1144 1648 +1650 2 224.915 381.2483 12.7668 0.1144 1649 +1651 2 223.8797 381.7013 12.6337 0.1144 1650 +1652 2 222.8798 381.8661 12.5604 0.1144 1651 +1653 2 221.7438 381.8306 12.537 0.1144 1652 +1654 2 220.7302 381.3078 12.5661 0.1144 1653 +1655 2 219.8619 380.7175 12.6398 0.1144 1654 +1656 2 218.8678 381.2025 12.7413 0.1144 1655 +1657 2 218.1597 382.0811 12.8696 0.1144 1656 +1658 2 217.3714 382.7652 13.089 0.1144 1657 +1659 2 217.0889 383.6999 13.4781 0.1144 1658 +1660 2 216.812 384.8084 13.8104 0.1144 1659 +1661 2 216.653 385.9284 14.1128 0.1144 1660 +1662 2 216.6747 387.0598 14.4035 0.1144 1661 +1663 2 216.3716 388.0517 14.6527 0.1144 1662 +1664 2 215.5605 388.849 14.791 0.1144 1663 +1665 2 215.1326 389.8489 14.804 0.1144 1664 +1666 2 214.9073 390.9231 14.8235 0.1144 1665 +1667 2 214.4291 391.9218 14.8642 0.1144 1666 +1668 2 213.8994 392.8725 14.7476 0.1144 1667 +1669 2 213.1569 393.6721 14.5422 0.1144 1668 +1670 2 212.2864 394.4157 14.3338 0.1144 1669 +1671 2 211.505 395.1662 14.0193 0.1144 1670 +1672 2 210.687 395.9224 13.6762 0.1144 1671 +1673 2 209.7272 396.4578 13.3031 0.1144 1672 +1674 2 208.8441 397.1362 12.9543 0.1144 1673 +1675 2 208.0913 397.9919 12.6857 0.1144 1674 +1676 2 207.3649 398.875 12.4918 0.1144 1675 +1677 2 206.5206 399.637 12.3858 0.1144 1676 +1678 2 205.4613 400.0259 12.2943 0.1144 1677 +1679 2 204.7829 400.9251 12.2294 0.1144 1678 +1680 2 204.3207 401.9684 12.1617 0.1144 1679 +1681 2 203.6126 402.7658 11.9664 0.1144 1680 +1682 2 202.631 403.3515 11.829 0.1144 1681 +1683 2 201.9892 403.6009 11.2473 0.1144 1682 +1684 2 200.9333 403.5346 11.1523 0.1144 1683 +1685 2 199.9884 402.9031 11.1123 0.1144 1684 +1686 2 198.9519 402.4569 11.0593 0.1144 1685 +1687 2 198.0733 401.7659 10.9939 0.1144 1686 +1688 2 197.4109 400.8382 10.9179 0.1144 1687 +1689 2 196.5449 400.3989 10.6731 0.1144 1688 +1690 2 196.5369 400.4183 10.1226 0.1144 1689 +1691 2 195.8208 401.3015 9.8152 0.1144 1690 +1692 2 195.036 402.1046 9.658 0.1144 1691 +1693 2 194.3073 402.95 9.4321 0.1144 1692 +1694 2 193.6964 403.9178 9.2543 0.1144 1693 +1695 2 192.9756 404.8055 8.9978 0.1144 1694 +1696 2 196.4992 399.5489 10.4769 0.1144 1689 +1697 2 196.7314 398.4358 10.3271 0.1144 1696 +1698 2 197.5688 397.675 10.2206 0.1144 1697 +1699 2 198.333 396.8239 10.1538 0.1144 1698 +1700 2 198.8432 395.8034 10.1226 0.1144 1699 +1701 2 198.7997 394.6617 10.1226 0.1144 1700 +1702 2 202.7706 403.7885 11.7867 0.1144 1682 +1703 2 203.5611 404.38 11.8797 0.1144 1702 +1704 2 204.6673 404.6442 11.9854 0.1144 1703 +1705 2 205.61 405.2769 12.0758 0.1144 1704 +1706 2 206.6773 405.6818 12.1479 0.1144 1705 +1707 2 207.2859 406.6142 12.1016 0.1144 1706 +1708 2 207.7104 407.6758 12.0521 0.1144 1707 +1709 2 208.2355 408.5167 12.0137 0.1144 1708 +1710 2 208.82 409.4868 11.9759 0.1144 1709 +1711 2 209.5099 410.3391 11.9873 0.1144 1710 +1712 2 210.5292 410.7646 12.0894 0.1144 1711 +1713 2 211.3757 411.4224 12.2621 0.1144 1712 +1714 2 211.3231 412.5138 12.4893 0.1144 1713 +1715 2 212.1068 413.1968 12.7862 0.1144 1714 +1716 2 213.0014 413.826 13.1583 0.1144 1715 +1717 2 213.7701 414.652 13.5007 0.1144 1716 +1718 2 214.6155 415.3967 13.7999 0.1144 1717 +1719 2 215.3557 416.2696 13.9741 0.1144 1718 +1720 2 214.7837 416.4423 13.9904 0.1144 1719 +1721 2 213.6569 416.5384 13.8858 0.1144 1720 +1722 2 212.5552 416.7855 13.6757 0.1144 1721 +1723 2 211.4936 417.1974 13.4182 0.1144 1722 +1724 2 210.3896 417.4822 13.1387 0.1144 1723 +1725 2 209.3245 417.6755 12.7609 0.1144 1724 +1726 2 208.2011 417.5577 12.4279 0.1144 1725 +1727 2 207.088 417.3072 12.1254 0.1144 1726 +1728 2 206.0573 417.0029 11.7377 0.1144 1727 +1729 2 204.9545 416.7089 11.4231 0.1144 1728 +1730 2 203.8459 416.4286 11.1737 0.1144 1729 +1731 2 202.9113 415.7708 10.9774 0.1144 1730 +1732 2 201.8485 415.4253 10.7338 0.1144 1731 +1733 2 200.7937 415.7799 10.4413 0.1144 1732 +1734 2 199.6978 415.9104 10.2056 0.1144 1733 +1735 2 198.6487 415.4642 9.9961 0.1144 1734 +1736 2 197.5288 415.2709 9.8092 0.1144 1735 +1737 2 196.4076 415.3258 9.6091 0.1144 1736 +1738 2 195.3632 415.304 9.2907 0.1144 1737 +1739 2 194.3084 414.9265 8.9829 0.1144 1738 +1740 2 193.2822 414.4678 8.7411 0.1144 1739 +1741 2 192.1554 414.2847 8.5592 0.1144 1740 +1742 2 191.1693 413.802 8.4457 0.1144 1741 +1743 2 190.2735 413.2666 8.3788 0.1144 1742 +1744 2 189.1432 413.3364 8.302 0.1144 1743 +1745 2 188.0084 413.4633 8.2219 0.1144 1744 +1746 2 186.8667 413.4553 8.1173 0.1144 1745 +1747 2 185.7925 413.2002 7.937 0.1144 1746 +1748 2 184.9104 412.5527 7.6985 0.1144 1747 +1749 2 183.9724 411.9578 7.4834 0.1144 1748 +1750 2 182.8959 412.0379 7.3042 0.1144 1749 +1751 2 181.7793 412.1066 7.1462 0.1144 1750 +1752 2 180.6628 411.8743 7.0021 0.1144 1751 +1753 2 179.5405 411.6604 6.8641 0.1144 1752 +1754 2 178.4915 411.2554 6.6664 0.1144 1753 +1755 2 177.4722 410.7887 6.3772 0.1144 1754 +1756 2 176.3991 410.8264 5.999 0.1144 1755 +1757 2 175.2848 410.6811 5.6528 0.1144 1756 +1758 2 174.1992 410.3334 5.3437 0.1144 1757 +1759 2 173.2508 410.7132 4.499 0.1144 1758 +1760 2 215.8133 416.1117 14.6213 0.1144 1719 +1761 2 216.9356 415.9904 14.9028 0.1144 1760 +1762 2 217.8988 416.3645 15.0777 0.1144 1761 +1763 2 218.4983 417.2443 15.3219 0.1144 1762 +1764 2 219.3117 418.0268 15.4991 0.1144 1763 +1765 2 220.26 417.7682 15.4585 0.1144 1764 +1766 2 221.3766 417.6858 15.3638 0.1144 1765 +1767 2 222.4863 417.9535 15.247 0.1144 1766 +1768 2 223.6257 417.9101 15.1066 0.1144 1767 +1769 2 224.7697 417.9055 14.9613 0.1144 1768 +1770 2 225.9114 417.9741 14.8273 0.1144 1769 +1771 2 227.0543 418.0268 14.6983 0.1144 1770 +1772 2 228.1125 418.3013 14.43 0.1144 1771 +1773 2 229.1867 418.6685 14.1188 0.1144 1772 +1774 2 230.3021 418.9225 13.8231 0.1144 1773 +1775 2 231.4243 419.1444 13.5393 0.1144 1774 +1776 2 232.3853 419.5494 13.1044 0.1144 1775 +1777 2 232.613 419.3504 13.6035 0.1144 1776 +1778 2 233.2341 418.5164 14.3277 0.1144 1777 +1779 2 233.6288 417.4582 14.587 0.1144 1778 +1780 2 233.837 416.3634 14.8881 0.1144 1779 +1781 2 234.7339 415.7593 15.2147 0.1144 1780 +1782 2 235.7475 415.2274 15.4566 0.1144 1781 +1783 2 236.8297 414.8579 15.7461 0.1144 1782 +1784 2 232.0524 419.8022 12.6297 0.1144 1776 +1785 2 231.366 420.6591 12.195 0.1144 1784 +1786 2 230.4577 421.3363 11.8461 0.1144 1785 +1787 2 229.5894 421.9278 11.4273 0.1144 1786 +1788 2 228.6581 422.5764 11.1138 0.1144 1787 +1789 2 227.7201 423.2308 10.9152 0.1144 1788 +1790 2 226.7053 423.757 10.7931 0.1144 1789 +1791 2 226.1013 424.7214 10.7222 0.1144 1790 +1792 2 225.4938 425.6916 10.6877 0.1144 1791 +1793 2 224.5775 426.3745 10.6848 0.1144 1792 +1794 2 207.0423 408.0842 11.2473 0.1144 1708 +1795 2 206.055 408.4892 11.2679 0.1144 1794 +1796 2 205.0826 408.9983 11.2649 0.1144 1795 +1797 2 204.1056 409.3518 11.3747 0.1144 1796 +1798 2 203.0589 409.1619 11.3188 0.1144 1797 +1799 2 201.9595 408.8587 11.2483 0.1144 1798 +1800 2 200.9013 408.4263 11.1745 0.1144 1799 +1801 2 199.9643 407.7708 11.0996 0.1144 1800 +1802 2 198.9633 407.2686 10.9457 0.1144 1801 +1803 2 197.9715 406.6989 10.6848 0.1144 1802 +1804 2 223.3694 380.6797 11.2492 0.1144 1651 +1805 2 222.9221 381.0447 10.65 0.1144 1804 +1806 2 223.5239 381.913 10.0722 0.1144 1805 +1807 2 224.5123 382.4735 9.6254 0.1144 1806 +1808 2 225.5728 382.9014 9.3078 0.1144 1807 +1809 2 226.6516 383.2823 9.1085 0.1144 1808 +1810 2 226.8644 384.3886 8.9978 0.1144 1809 +1811 2 258.9661 386.1869 20.8074 0.1144 799 +1812 2 258.4079 386.4764 20.5961 0.1144 1811 +1813 2 257.4927 387.133 20.4994 0.1144 1812 +1814 2 256.4665 387.6341 20.4292 0.1144 1813 +1815 2 255.5593 388.3022 20.3843 0.1144 1814 +1816 2 254.8294 389.1785 20.3614 0.1144 1815 +1817 2 254.0549 389.9965 20.4 0.1144 1816 +1818 2 253.007 390.1269 20.4615 0.1144 1817 +1819 2 251.8928 389.8809 20.4987 0.1144 1818 +1820 2 250.7625 389.7242 20.5033 0.1144 1819 +1821 2 249.8393 389.1282 20.4792 0.1144 1820 +1822 2 249.1049 388.4109 20.2713 0.1144 1821 +1823 2 249.3943 387.8137 20.1001 0.1144 1822 +1824 2 250.1276 386.9466 19.977 0.1144 1823 +1825 2 250.8254 386.0417 19.9082 0.1144 1824 +1826 2 251.0416 384.9388 19.8922 0.1144 1825 +1827 2 251.8127 384.1518 19.9249 0.1144 1826 +1828 2 252.8057 383.5901 20.0009 0.1144 1827 +1829 2 253.7586 383.0627 20.203 0.1144 1828 +1830 2 254.4256 382.1566 20.4167 0.1144 1829 +1831 2 255.0537 381.2014 20.5881 0.1144 1830 +1832 2 255.6783 380.2427 20.719 0.1144 1831 +1833 2 256.4059 379.3607 20.8145 0.1144 1832 +1834 2 257.3302 378.6892 20.8796 0.1144 1833 +1835 2 258.4056 378.3071 20.9185 0.1144 1834 +1836 2 259.4947 377.957 20.9544 0.1144 1835 +1837 2 260.6066 377.7225 21.0379 0.1144 1836 +1838 2 261.7449 377.6664 21.1466 0.1144 1837 +1839 2 262.8843 377.5692 21.2324 0.1144 1838 +1840 2 264.0283 377.5726 21.2958 0.1144 1839 +1841 2 265.1609 377.7362 21.3385 0.1144 1840 +1842 2 266.2157 377.2992 21.3624 0.1144 1841 +1843 2 267.1732 376.6746 21.3698 0.1144 1842 +1844 2 268.03 375.9161 21.3699 0.1144 1843 +1845 2 248.4917 387.9945 19.3615 0.1144 1822 +1846 2 247.581 387.3172 19.1715 0.1144 1845 +1847 2 246.6361 386.68 19.1026 0.1144 1846 +1848 2 245.5722 386.2979 19.0362 0.1144 1847 +1849 2 244.4408 386.1446 18.9718 0.1144 1848 +1850 2 243.3334 385.9421 18.8598 0.1144 1849 +1851 2 242.2374 385.6493 18.7353 0.1144 1850 +1852 2 241.3257 385.0155 18.6362 0.1144 1851 +1853 2 240.5214 384.2021 18.5526 0.1144 1852 +1854 2 239.5833 383.5683 18.4819 0.1144 1853 +1855 2 238.4805 383.3441 18.4218 0.1144 1854 +1856 2 237.9817 384.1758 18.3701 0.1144 1855 +1857 2 237.0963 384.7604 18.2516 0.1144 1856 +1858 2 236.1342 385.3656 18.1334 0.1144 1857 +1859 2 235.33 386.1744 18.0288 0.1144 1858 +1860 2 234.7191 387.1365 17.9384 0.1144 1859 +1861 2 234.1917 388.1523 17.8622 0.1144 1860 +1862 2 233.495 389.0538 17.8001 0.1144 1861 +1863 2 232.7605 389.9118 17.6924 0.1144 1862 +1864 2 231.6417 390.1326 17.4334 0.1144 1863 +1865 2 304.5385 399.288 14.6213 0.1144 753 +1866 2 304.0741 400.2833 15.1749 0.1144 1865 +1867 2 303.2641 400.9182 15.459 0.1144 1866 +1868 2 302.175 401.2694 15.7072 0.1144 1867 +1869 2 301.2484 401.8231 15.9687 0.1144 1868 +1870 2 300.4327 402.5679 16.2692 0.1144 1869 +1871 2 299.3837 402.9534 16.5135 0.1144 1870 +1872 2 298.6561 403.7165 16.6778 0.1144 1871 +1873 2 298.2053 404.7655 16.7783 0.1144 1872 +1874 2 297.3691 405.4714 16.8398 0.1144 1873 +1875 2 296.288 405.8248 16.8665 0.1144 1874 +1876 2 295.1737 406.0857 16.8708 0.1144 1875 +1877 2 294.2357 406.7069 16.8708 0.1144 1876 +1878 2 293.8844 407.7731 16.8708 0.1144 1877 +1879 2 293.2255 408.6986 16.8708 0.1144 1878 +1880 2 323.3127 383.7045 16.8708 0.1144 39 +1881 2 323.7234 384.773 16.9056 0.1144 1880 +1882 2 324.1078 385.8357 16.889 0.1144 1881 +1883 2 324.6615 386.8242 16.8876 0.1144 1882 +1884 2 325.1694 387.8469 16.9374 0.1144 1883 +1885 2 325.7517 388.817 17.0928 0.1144 1884 +1886 2 325.7448 389.9141 17.3213 0.1144 1885 +1887 2 324.8274 390.3522 17.7418 0.1144 1886 +1888 2 324.4601 391.288 18.1976 0.1144 1887 +1889 2 324.991 392.2467 18.6026 0.1144 1888 +1890 2 325.9656 392.8187 18.9642 0.1144 1889 +1891 2 326.7882 393.4433 19.3301 0.1144 1890 +1892 2 326.6166 394.4318 19.7322 0.1144 1891 +1893 2 326.779 395.2714 20.27 0.1144 1892 +1894 2 327.7377 395.443 20.8372 0.1144 1893 +1895 2 327.4814 395.6787 21.4446 0.1144 1894 +1896 2 326.3638 395.8823 22.013 0.1144 1895 +1897 2 325.8718 396.3823 22.6936 0.1144 1896 +1898 2 325.1202 396.6351 23.4853 0.1144 1897 +1899 2 326.1258 397.0252 24.1936 0.1144 1898 +1900 2 327.0604 397.6807 24.7996 0.1144 1899 +1901 2 326.8316 398.565 25.4274 0.1144 1900 +1902 2 326.5845 399.6415 26.0317 0.1144 1901 +1903 2 325.8089 400.4332 26.5301 0.1144 1902 +1904 2 325.6625 401.5429 26.9819 0.1144 1903 +1905 2 325.7929 402.5919 27.4943 0.1144 1904 +1906 2 326.5251 402.0474 28.8448 0.1144 1905 +1907 2 327.4528 401.4296 29.8346 0.1144 1906 +1908 2 328.3463 400.7729 30.2476 0.1144 1907 +1909 2 329.2855 400.1952 30.7432 0.1144 1908 +1910 2 329.6608 399.3979 31.3936 0.1144 1909 +1911 2 329.9616 398.3454 31.9928 0.1144 1910 +1912 2 330.2396 397.2368 32.4624 0.1144 1911 +1913 2 330.2316 396.11 32.8549 0.1144 1912 +1914 2 329.4617 395.3973 33.2293 0.1144 1913 +1915 2 328.908 394.402 33.7417 0.1144 1914 +1916 2 326.0286 403.1685 27.9309 0.1144 1905 +1917 2 326.3043 404.2759 28.2579 0.1144 1916 +1918 2 326.3798 405.3936 28.5527 0.1144 1917 +1919 2 326.0892 405.3284 28.7106 0.1144 1918 +1920 2 325.0321 405.0057 28.7048 0.1144 1919 +1921 2 324.1089 404.3376 28.6532 0.1144 1920 +1922 2 323.1823 404.2152 28.5905 0.1144 1921 +1923 2 322.5394 405.1602 28.5303 0.1144 1922 +1924 2 321.7111 405.9004 28.4572 0.1144 1923 +1925 2 320.9092 406.6359 28.3766 0.1144 1924 +1926 2 320.3372 407.6266 28.2677 0.1144 1925 +1927 2 319.7057 408.5785 28.1086 0.1144 1926 +1928 2 319.1508 409.5703 27.898 0.1144 1927 +1929 2 318.5079 410.4752 27.6396 0.1144 1928 +1930 2 317.9439 410.8241 27.1391 0.1144 1929 +1931 2 318.1052 411.2337 26.3073 0.1144 1930 +1932 2 317.8707 411.4613 25.6311 0.1144 1931 +1933 2 317.1008 412.3068 25.1026 0.1144 1932 +1934 2 316.1867 411.9544 24.7123 0.1144 1933 +1935 2 315.1617 411.8354 24.3126 0.1144 1934 +1936 2 314.4501 412.6397 24.0539 0.1144 1935 +1937 2 313.7557 413.5491 23.9182 0.1144 1936 +1938 2 312.773 414.1166 23.8354 0.1144 1937 +1939 2 311.788 414.6989 23.8048 0.1144 1938 +1940 2 310.8099 415.2914 23.8246 0.1144 1939 +1941 2 309.897 415.979 23.8976 0.1144 1940 +1942 2 309.3216 416.9605 23.9997 0.1144 1941 +1943 2 309.0116 418.037 24.2028 0.1144 1942 +1944 2 308.737 419.1456 24.4091 0.1144 1943 +1945 2 308.6409 420.285 24.6117 0.1144 1944 +1946 2 308.7873 421.1682 25.0503 0.1144 1945 +1947 2 308.9589 421.3638 25.4025 0.1144 1946 +1948 2 309.7472 422.1921 25.677 0.1144 1947 +1949 2 310.6109 422.9402 25.8851 0.1144 1948 +1950 2 311.4414 423.7262 26.051 0.1144 1949 +1951 2 312.1839 424.5956 26.1857 0.1144 1950 +1952 2 312.9504 425.4433 26.2984 0.1144 1951 +1953 2 313.8713 426.0725 26.5024 0.1144 1952 +1954 2 314.9283 426.4249 26.7871 0.1144 1953 +1955 2 315.8801 427.0266 27.0786 0.1144 1954 +1956 2 316.0906 428.0791 27.422 0.1144 1955 +1957 2 316.1558 429.2105 27.76 0.1144 1956 +1958 2 316.3389 430.3373 28.0314 0.1144 1957 +1959 2 316.491 431.4688 28.2632 0.1144 1958 +1960 2 316.6089 432.6025 28.474 0.1144 1959 +1961 2 316.6558 433.7442 28.6625 0.1144 1960 +1962 2 316.7404 434.8847 28.8207 0.1144 1961 +1963 2 316.9669 436.0047 28.9696 0.1144 1962 +1964 2 317.079 437.1316 29.1838 0.1144 1963 +1965 2 317.1843 438.2687 29.3782 0.1144 1964 +1966 2 317.3364 439.4024 29.563 0.1144 1965 +1967 2 317.6716 440.2043 29.9986 0.1144 1966 +1968 2 318.2082 441.2053 30.3657 0.1144 1967 +1969 2 318.9289 442.0931 30.9299 0.1144 1968 +1970 2 308.6066 420.9542 25.8686 0.1144 1946 +1971 2 307.6468 420.3479 26.0065 0.1144 1970 +1972 2 306.5234 420.2004 26.0716 0.1144 1971 +1973 2 305.5109 419.705 26.1834 0.1144 1972 +1974 2 304.4653 419.2405 26.2748 0.1144 1973 +1975 2 303.3911 418.8481 26.3435 0.1144 1974 +1976 2 302.2677 418.6365 26.3911 0.1144 1975 +1977 2 301.2026 418.2212 26.4195 0.1144 1976 +1978 2 300.2314 417.6183 26.4306 0.1144 1977 +1979 2 299.1388 417.2797 26.4312 0.1144 1978 +1980 2 298.1561 416.694 26.4312 0.1144 1979 +1981 2 318.3134 411.411 24.7439 0.1144 1931 +1982 2 319.2812 411.5082 24.8861 0.1144 1981 +1983 2 320.2628 410.9305 24.927 0.1144 1982 +1984 2 321.1414 410.2476 25.0368 0.1144 1983 +1985 2 322.1184 409.7122 25.1889 0.1144 1984 +1986 2 322.9089 408.9239 25.2955 0.1144 1985 +1987 2 323.5884 408.003 25.3367 0.1144 1986 +1988 2 324.6043 407.6003 25.2522 0.1144 1987 +1989 2 325.6659 407.2068 25.0767 0.1144 1988 +1990 2 326.7241 406.7904 24.8403 0.1144 1989 +1991 2 327.7812 406.374 24.5758 0.1144 1990 +1992 2 328.876 406.072 24.3156 0.1144 1991 +1993 2 329.9994 405.8958 24.0783 0.1144 1992 +1994 2 331.0599 405.4851 23.8907 0.1144 1993 +1995 2 331.6204 404.5173 23.764 0.1144 1994 +1996 2 332.1249 403.4899 23.6859 0.1144 1995 +1997 2 332.8331 402.5953 23.6435 0.1144 1996 +1998 2 333.6419 401.7877 23.6248 0.1144 1997 +1999 2 334.6028 401.1711 23.6195 0.1144 1998 +2000 2 335.7251 400.9926 23.6191 0.1144 1999 +2001 2 336.6174 400.2959 23.6191 0.1144 2000 +2002 2 337.051 399.2377 23.6191 0.1144 2001 +2003 2 326.3168 406.2893 30.7392 0.1144 1918 +2004 2 326.2608 407.3818 31.7153 0.1144 2003 +2005 2 326.1979 408.4984 32.1236 0.1144 2004 +2006 2 325.9416 409.5898 32.5931 0.1144 2005 +2007 2 325.9531 410.6594 33.1649 0.1144 2006 +2008 2 325.595 411.7164 33.7047 0.1144 2007 +2009 2 324.6111 412.2404 34.1863 0.1144 2008 +2010 2 324.5139 413.3524 34.6923 0.1144 2009 +2011 2 324.2256 414.4014 35.2428 0.1144 2010 +2012 2 324.1387 415.4322 35.8431 0.1144 2011 +2013 2 323.6948 416.3988 36.505 0.1144 2012 +2014 2 323.704 417.4788 37.1353 0.1144 2013 +2015 2 323.8996 418.577 37.739 0.1144 2014 +2016 2 323.5324 419.459 38.3841 0.1144 2015 +2017 2 322.7613 420.1752 39.0684 0.1144 2016 +2018 2 321.7134 420.5367 39.6323 0.1144 2017 +2019 2 320.7376 421.1144 40.0652 0.1144 2018 +2020 2 320.1404 422.0216 40.5031 0.1144 2019 +2021 2 320.0729 423.1267 40.9069 0.1144 2020 +2022 2 320.6712 424.0854 41.6147 0.1144 2021 +2023 2 327.2275 397.9473 24.7439 0.1144 1900 +2024 2 327.8292 398.9014 25.3217 0.1144 2023 +2025 2 328.4927 399.7765 25.6046 0.1144 2024 +2026 2 329.3336 400.543 25.9138 0.1144 2025 +2027 2 330.1184 401.3518 26.2394 0.1144 2026 +2028 2 330.9844 401.9787 26.5639 0.1144 2027 +2029 2 332.0311 402.3871 26.8922 0.1144 2028 +2030 2 332.8708 403.0358 27.3005 0.1144 2029 +2031 2 333.5812 403.8778 27.6898 0.1144 2030 +2032 2 334.2734 404.7895 27.9977 0.1144 2031 +2033 2 334.9415 405.7036 28.2836 0.1144 2032 +2034 2 335.3258 406.7469 28.5373 0.1144 2033 +2035 2 335.7388 407.8028 28.7353 0.1144 2034 +2036 2 336.2079 408.845 28.891 0.1144 2035 +2037 2 336.4973 409.9444 29.0531 0.1144 2036 +2038 2 336.9263 410.9854 29.2561 0.1144 2037 +2039 2 337.488 411.9773 29.4711 0.1144 2038 +2040 2 338.0223 412.9222 29.7794 0.1144 2039 +2041 2 338.4638 413.9564 30.074 0.1144 2040 +2042 2 338.8986 415.0146 30.3176 0.1144 2041 +2043 2 339.5758 415.9241 30.518 0.1144 2042 +2044 2 340.149 416.9079 30.69 0.1144 2043 +2045 2 340.9097 417.7247 30.903 0.1144 2044 +2046 2 341.5744 418.6365 31.1363 0.1144 2045 +2047 2 342.1555 419.6158 31.3788 0.1144 2046 +2048 2 342.4438 420.6923 31.6638 0.1144 2047 +2049 2 342.8762 421.7448 31.908 0.1144 2048 +2050 2 343.4837 422.7114 32.1 0.1144 2049 +2051 2 343.8658 423.7754 32.2941 0.1144 2050 +2052 2 344.2204 424.8587 32.4719 0.1144 2051 +2053 2 344.7066 425.8929 32.6108 0.1144 2052 +2054 2 345.2661 426.8882 32.7387 0.1144 2053 +2055 2 345.79 427.9006 32.8745 0.1144 2054 +2056 2 346.449 428.8318 33.0 0.1144 2055 +2057 2 347.236 429.6601 33.0901 0.1144 2056 +2058 2 347.7325 430.6863 33.1545 0.1144 2057 +2059 2 348.5551 431.4745 33.2024 0.1144 2058 +2060 2 349.2174 432.4057 33.2371 0.1144 2059 +2061 2 349.7071 433.4399 33.2693 0.1144 2060 +2062 2 350.2493 434.4466 33.3043 0.1144 2061 +2063 2 350.8076 435.4453 33.3491 0.1144 2062 +2064 2 351.4357 436.3982 33.4211 0.1144 2063 +2065 2 352.0637 437.3523 33.5107 0.1144 2064 +2066 2 352.6918 438.3053 33.7417 0.1144 2065 +2067 2 321.6505 380.1672 18.4423 0.1144 35 +2068 2 320.8474 380.9543 18.6548 0.1144 2067 +2069 2 319.7983 381.3009 18.8475 0.1144 2068 +2070 2 318.6601 381.3879 18.9741 0.1144 2069 +2071 2 317.984 382.1875 19.0313 0.1144 2070 +2072 2 317.3262 383.1222 19.0642 0.1144 2071 +2073 2 316.2817 383.5146 19.0757 0.1144 2072 +2074 2 315.3299 384.1014 19.0042 0.1144 2073 +2075 2 314.4044 384.7318 19.0248 0.1144 2074 +2076 2 313.4457 385.353 19.0502 0.1144 2075 +2077 2 312.8245 386.3105 19.0757 0.1144 2076 +2078 2 312.2697 387.3104 19.0997 0.1144 2077 +2079 2 311.3213 387.9453 19.1213 0.1144 2078 +2080 2 310.3569 388.5218 19.1398 0.1144 2079 +2081 2 310.0309 389.6144 19.1537 0.1144 2080 +2082 2 309.4966 390.4541 19.2078 0.1144 2081 +2083 2 308.4979 390.7938 19.1646 0.1144 2082 +2084 2 307.7452 391.653 19.1453 0.1144 2083 +2085 2 307.0016 392.5178 19.1507 0.1144 2084 +2086 2 306.203 393.3369 19.1609 0.1144 2085 +2087 2 305.4766 394.2178 19.1781 0.1144 2086 +2088 2 304.7845 395.1273 19.2057 0.1144 2087 +2089 2 303.9757 395.9292 19.2515 0.1144 2088 +2090 2 303.0879 396.6488 19.2993 0.1144 2089 +2091 2 302.4095 397.5148 19.382 0.1144 2090 +2092 2 301.8009 398.4232 19.5166 0.1144 2091 +2093 2 300.9544 399.1839 19.6528 0.1144 2092 +2094 2 300.0609 399.8909 19.7554 0.1144 2093 +2095 2 299.0679 400.448 19.8003 0.1144 2094 +2096 2 298.2351 401.0956 19.7051 0.1144 2095 +2097 2 297.456 401.8552 19.5149 0.1144 2096 +2098 2 296.5294 401.7831 19.3972 0.1144 2097 +2099 2 295.4746 401.7797 19.2478 0.1144 2098 +2100 2 294.7333 402.5828 19.0674 0.1144 2099 +2101 2 294.0927 403.5277 18.9147 0.1144 2100 +2102 2 293.4051 404.4418 18.8173 0.1144 2101 +2103 2 292.5254 405.1339 18.8324 0.1144 2102 +2104 2 291.4546 405.524 18.8451 0.1144 2103 +2105 2 290.5543 406.2252 18.858 0.1144 2104 +2106 2 289.607 406.8281 18.7885 0.1144 2105 +2107 2 288.6369 407.431 18.7252 0.1144 2106 +2108 2 287.6885 408.0717 18.6678 0.1144 2107 +2109 2 286.8122 408.8061 18.6173 0.1144 2108 +2110 2 285.9497 409.5589 18.5879 0.1144 2109 +2111 2 285.2438 410.458 18.5776 0.1144 2110 +2112 2 284.7324 411.4808 18.5816 0.1144 2111 +2113 2 284.3423 412.5561 18.5819 0.1144 2112 +2114 2 285.0951 413.0778 19.5042 0.1144 2113 +2115 2 286.0698 413.5491 20.2144 0.1144 2114 +2116 2 287.0605 414.0594 20.518 0.1144 2115 +2117 2 288.0729 414.5684 20.8236 0.1144 2116 +2118 2 289.1483 414.9391 21.078 0.1144 2117 +2119 2 290.1802 415.4219 21.266 0.1144 2118 +2120 2 291.291 415.5488 21.3927 0.1144 2119 +2121 2 292.3789 415.2308 21.4726 0.1144 2120 +2122 2 293.4028 414.7549 21.5747 0.1144 2121 +2123 2 294.4324 414.263 21.6463 0.1144 2122 +2124 2 295.4906 413.8283 21.6823 0.1144 2123 +2125 2 296.5866 413.5034 21.6846 0.1144 2124 +2126 2 297.5327 412.8765 21.6383 0.1144 2125 +2127 2 298.6195 412.5962 21.5064 0.1144 2126 +2128 2 299.7543 412.7037 21.3702 0.1144 2127 +2129 2 300.8869 412.5493 21.2443 0.1144 2128 +2130 2 301.9771 412.2919 21.0504 0.1144 2129 +2131 2 302.9758 411.7348 20.8942 0.1144 2130 +2132 2 304.1015 411.5288 20.7741 0.1144 2131 +2133 2 304.5625 411.7977 20.6238 0.1144 2132 +2134 2 305.4732 412.4841 20.5045 0.1144 2133 +2135 2 306.163 413.3958 20.4228 0.1144 2134 +2136 2 306.9089 414.263 20.3749 0.1144 2135 +2137 2 307.5987 415.1759 20.3438 0.1144 2136 +2138 2 308.0037 416.2444 20.3277 0.1144 2137 +2139 2 308.292 417.3518 20.3245 0.1144 2138 +2140 2 308.6787 418.4283 20.322 0.1144 2139 +2141 2 309.1168 419.4854 20.3185 0.1144 2140 +2142 2 310.2013 420.1271 20.3067 0.1144 2141 +2143 2 311.0547 420.889 20.2971 0.1144 2142 +2144 2 311.8716 421.6898 20.2836 0.1144 2143 +2145 2 312.6907 422.4884 20.2647 0.1144 2144 +2146 2 313.2752 423.471 20.2388 0.1144 2145 +2147 2 313.5967 424.5693 20.2028 0.1144 2146 +2148 2 314.2374 424.8118 20.27 0.1144 2147 +2149 2 315.355 424.7924 20.9928 0.1144 2148 +2150 2 316.4601 424.5075 21.2586 0.1144 2149 +2151 2 317.5389 424.6185 21.6875 0.1144 2150 +2152 2 318.5754 424.7146 22.3326 0.1144 2151 +2153 2 319.5856 425.0498 23.1215 0.1144 2152 +2154 2 320.304 424.2444 23.9373 0.1144 2153 +2155 2 320.2205 423.2743 24.9047 0.1144 2154 +2156 2 320.2228 422.4426 26.0167 0.1144 2155 +2157 2 319.7308 421.4828 27.0527 0.1144 2156 +2158 2 318.9884 420.7895 28.0098 0.1144 2157 +2159 2 317.9908 420.8376 28.9075 0.1144 2158 +2160 2 316.9498 421.0572 29.6192 0.1144 2159 +2161 2 316.0083 420.4886 30.1955 0.1144 2160 +2162 2 315.1434 419.7942 30.6502 0.1144 2161 +2163 2 314.0715 419.4304 31.0682 0.1144 2162 +2164 2 312.9675 419.133 31.4378 0.1144 2163 +2165 2 311.859 418.9282 31.817 0.1144 2164 +2166 2 310.9987 419.2634 32.3501 0.1144 2165 +2167 2 310.0984 419.7119 32.9633 0.1144 2166 +2168 2 308.9704 419.84 33.5563 0.1144 2167 +2169 2 307.8367 419.9201 34.1452 0.1144 2168 +2170 2 306.775 420.0722 34.8135 0.1144 2169 +2171 2 305.972 420.6008 35.5998 0.1144 2170 +2172 2 305.0659 421.0103 36.4448 0.1144 2171 +2173 2 303.9677 421.1384 37.2019 0.1144 2172 +2174 2 302.9015 420.7941 37.8476 0.1144 2173 +2175 2 302.5171 419.8 38.4328 0.1144 2174 +2176 2 302.1979 418.7452 39.011 0.1144 2175 +2177 2 301.563 417.8792 39.6119 0.1144 2176 +2178 2 301.285 416.8324 40.2282 0.1144 2177 +2179 2 301.2678 415.6999 40.7921 0.1144 2178 +2180 2 301.055 415.7845 41.2731 0.1144 2179 +2181 2 300.0575 416.1918 41.788 0.1144 2180 +2182 2 298.9867 416.3622 42.2621 0.1144 2181 +2183 2 297.8759 416.1609 42.6479 0.1144 2182 +2184 2 296.8405 415.7021 42.9867 0.1144 2183 +2185 2 295.8373 415.1599 43.2774 0.1144 2184 +2186 2 294.9209 414.4849 43.5187 0.1144 2185 +2187 2 294.0892 413.7001 43.7259 0.1144 2186 +2188 2 293.4143 412.7849 43.9314 0.1144 2187 +2189 2 292.7874 411.864 44.2257 0.1144 2188 +2190 2 292.1559 411.0609 44.6967 0.1144 2189 +2191 2 291.3962 410.2853 45.1973 0.1144 2190 +2192 2 290.4376 409.6756 45.638 0.1144 2191 +2193 2 289.5121 409.0578 46.0972 0.1144 2192 +2194 2 288.6015 408.4824 46.6155 0.1144 2193 +2195 2 287.5135 408.2959 47.0585 0.1144 2194 +2196 2 286.3707 408.3211 47.4079 0.1144 2195 +2197 2 285.2541 408.3439 47.7856 0.1144 2196 +2198 2 284.1662 408.0934 48.1877 0.1144 2197 +2199 2 283.1549 407.5729 48.5332 0.1144 2198 +2200 2 282.1573 407.0112 48.8354 0.1144 2199 +2201 2 281.3027 406.3545 49.2475 0.1144 2200 +2202 2 280.4036 405.7288 49.7339 0.1144 2201 +2203 2 279.6165 404.9016 50.1516 0.1144 2202 +2204 2 278.9838 403.9636 50.5798 0.1144 2203 +2205 2 278.6876 402.8996 51.0664 0.1144 2204 +2206 2 279.3099 401.7877 51.3724 0.1144 2205 +2207 2 279.843 400.7764 51.4136 0.1144 2206 +2208 2 280.3075 399.7308 51.4172 0.1144 2207 +2209 2 280.8017 398.6989 51.382 0.1144 2208 +2210 2 281.3451 397.6933 51.2812 0.1144 2209 +2211 2 281.964 396.7323 51.1067 0.1144 2210 +2212 2 282.7064 395.8755 50.8452 0.1144 2211 +2213 2 283.3173 394.9088 50.5784 0.1144 2212 +2214 2 283.8058 393.8769 50.3037 0.1144 2213 +2215 2 284.4121 393.433 48.9255 0.1144 2214 +2216 2 278.4736 402.9305 51.501 0.1144 2205 +2217 2 277.3651 403.0941 51.9554 0.1144 2216 +2218 2 276.2566 403.2577 52.4345 0.1144 2217 +2219 2 275.1469 403.4213 52.9396 0.1144 2218 +2220 2 274.0383 403.586 53.4537 0.1144 2219 +2221 2 272.9298 403.7496 53.9728 0.1144 2220 +2222 2 271.8201 403.9132 54.4986 0.1144 2221 +2223 2 270.7276 404.1832 54.9898 0.1144 2222 +2224 2 269.8113 404.8055 55.4151 0.1144 2223 +2225 2 269.0299 405.4244 55.9056 0.1144 2224 +2226 2 268.0289 405.6018 56.4645 0.1144 2225 +2227 2 267.9202 406.565 56.9173 0.1144 2226 +2228 2 268.2634 407.6552 57.2653 0.1144 2227 +2229 2 267.6457 408.583 57.5999 0.1144 2228 +2230 2 266.9044 409.4548 57.8444 0.1144 2229 +2231 2 266.3758 410.4695 58.0129 0.1144 2230 +2232 2 265.7466 411.4236 58.1403 0.1144 2231 +2233 2 264.9046 412.1981 58.2655 0.1144 2232 +2234 2 263.8853 412.6694 58.4783 0.1144 2233 +2235 2 262.7699 412.9199 58.6888 0.1144 2234 +2236 2 261.6259 412.9462 58.9117 0.1144 2235 +2237 2 260.5048 412.7197 59.15 0.1144 2236 +2238 2 260.657 412.539 58.2887 0.1144 2237 +2239 2 261.444 411.7519 57.9228 0.1144 2238 +2240 2 262.2357 410.9351 57.7682 0.1144 2239 +2241 2 262.9278 410.0268 57.6512 0.1144 2240 +2242 2 263.2996 408.9548 57.577 0.1144 2241 +2243 2 262.9175 407.9218 57.5551 0.1144 2242 +2244 2 262.4027 406.9002 57.5812 0.1144 2243 +2245 2 261.8879 405.8798 57.6481 0.1144 2244 +2246 2 261.3731 404.8582 57.734 0.1144 2245 +2247 2 260.8572 403.8377 57.8287 0.1144 2246 +2248 2 260.3424 402.8173 57.9284 0.1144 2247 +2249 2 259.8276 401.7968 58.0311 0.1144 2248 +2250 2 259.3128 400.7752 58.1389 0.1144 2249 +2251 2 258.798 399.7548 58.2537 0.1144 2250 +2252 2 258.282 398.7343 58.3761 0.1144 2251 +2253 2 257.7672 397.7127 58.5038 0.1144 2252 +2254 2 257.2524 396.6923 58.6345 0.1144 2253 +2255 2 257.4389 395.6707 58.8624 0.1144 2254 +2256 2 257.9457 394.6606 59.085 0.1144 2255 +2257 2 258.5532 393.6927 59.2463 0.1144 2256 +2258 2 259.3322 392.8576 59.3471 0.1144 2257 +2259 2 260.1548 392.0637 59.3956 0.1144 2258 +2260 2 260.8915 391.2171 59.327 0.1144 2259 +2261 2 261.547 390.2825 59.2388 0.1144 2260 +2262 2 262.2002 389.3444 59.1646 0.1144 2261 +2263 2 262.9976 388.5253 59.1119 0.1144 2262 +2264 2 263.8087 387.7188 59.0806 0.1144 2263 +2265 2 264.6186 386.9111 59.0685 0.1144 2264 +2266 2 265.4297 386.1046 59.0747 0.1144 2265 +2267 2 266.2408 385.2981 59.0853 0.1144 2266 +2268 2 267.0519 384.4904 59.1002 0.1144 2267 +2269 2 267.863 383.6839 59.1206 0.1144 2268 +2270 2 268.6741 382.8774 59.1492 0.1144 2269 +2271 2 269.4852 382.0697 59.1906 0.1144 2270 +2272 2 270.2277 381.2002 59.2491 0.1144 2271 +2273 2 270.9335 380.3011 59.3272 0.1144 2272 +2274 2 271.6382 379.3984 59.4252 0.1144 2273 +2275 2 272.3281 378.4947 59.5818 0.1144 2274 +2276 2 272.8646 377.5429 59.8564 0.1144 2275 +2277 2 272.5466 376.4767 60.1644 0.1144 2276 +2278 2 272.1725 375.3967 60.4243 0.1144 2277 +2279 2 271.5547 374.4346 60.6273 0.1144 2278 +2280 2 270.7745 373.5984 60.7816 0.1144 2279 +2281 2 270.0115 372.7461 60.8936 0.1144 2280 +2282 2 269.3548 371.8092 60.975 0.1144 2281 +2283 2 268.5826 370.9649 61.0492 0.1144 2282 +2284 2 267.6159 370.5668 61.2881 0.1144 2283 +2285 2 267.5507 370.5176 61.9063 0.1144 2284 +2286 2 266.6641 369.8426 62.9429 0.1144 2285 +2287 2 265.7775 369.1677 63.3833 0.1144 2286 +2288 2 264.8909 368.4927 63.9106 0.1144 2287 +2289 2 264.0043 367.8177 64.5011 0.1144 2288 +2290 2 263.1177 367.1428 65.1322 0.1144 2289 +2291 2 262.2666 366.4301 65.7868 0.1144 2290 +2292 2 261.6008 365.5721 66.4619 0.1144 2291 +2293 2 261.0173 364.6523 67.1488 0.1144 2292 +2294 2 260.4339 363.7325 67.8266 0.1144 2293 +2295 2 259.8504 362.8116 68.4751 0.1144 2294 +2296 2 259.267 361.8918 69.0757 0.1144 2295 +2297 2 258.6836 360.972 69.6125 0.1144 2296 +2298 2 258.6756 360.0019 69.876 0.1144 2297 +2299 2 259.2315 359.0032 69.9835 0.1144 2298 +2300 2 259.7875 358.0056 69.9756 0.1144 2299 +2301 2 260.3447 357.0069 69.8897 0.1144 2300 +2302 2 260.9006 356.0094 69.7595 0.1144 2301 +2303 2 261.4566 355.0107 69.6153 0.1144 2302 +2304 2 262.0126 354.0131 69.4837 0.1144 2303 +2305 2 262.5686 353.0144 69.3543 0.1144 2304 +2306 2 263.1246 352.0168 69.2278 0.1144 2305 +2307 2 263.6806 351.0181 69.106 0.1144 2306 +2308 2 264.2377 350.0205 68.9903 0.1144 2307 +2309 2 264.7937 349.0218 68.8822 0.1144 2308 +2310 2 265.3497 348.0242 68.7828 0.1144 2309 +2311 2 265.8645 347.0027 68.7086 0.1144 2310 +2312 2 266.3667 345.9753 68.6594 0.1144 2311 +2313 2 266.8689 344.9469 68.6302 0.1144 2312 +2314 2 267.3711 343.9196 68.6151 0.1144 2313 +2315 2 267.8733 342.8911 68.6084 0.1144 2314 +2316 2 266.7522 371.2692 61.4757 0.1144 2284 +2317 2 265.9525 372.0849 61.6137 0.1144 2316 +2318 2 265.1826 372.9314 61.7042 0.1144 2317 +2319 2 264.3715 373.7368 61.7476 0.1144 2318 +2320 2 263.4987 374.4758 61.7456 0.1144 2319 +2321 2 262.6738 375.2652 61.7 0.1144 2320 +2322 2 261.8879 376.0969 61.64 0.1144 2321 +2323 2 261.3502 377.0864 61.5616 0.1144 2322 +2324 2 260.7142 378.0005 61.4104 0.1144 2323 +2325 2 259.783 378.6205 61.2217 0.1144 2324 +2326 2 258.7682 379.1422 61.0246 0.1144 2325 +2327 2 257.7524 379.665 60.8244 0.1144 2326 +2328 2 256.7456 380.2004 60.6189 0.1144 2327 +2329 2 255.7469 380.7484 60.4086 0.1144 2328 +2330 2 254.8912 381.484 60.2025 0.1144 2329 +2331 2 254.2151 382.3957 60.0032 0.1144 2330 +2332 2 253.5836 383.3441 59.8172 0.1144 2331 +2333 2 252.9533 384.2925 59.654 0.1144 2332 +2334 2 252.3378 385.2534 59.5294 0.1144 2333 +2335 2 251.6503 386.1641 59.4695 0.1144 2334 +2336 2 250.7671 386.8779 59.4726 0.1144 2335 +2337 2 249.7272 387.284 59.5871 0.1144 2336 +2338 2 248.8223 387.943 59.7652 0.1144 2337 +2339 2 248.1347 388.7712 60.046 0.1144 2338 +2340 2 247.7 389.8054 60.3002 0.1144 2339 +2341 2 247.3385 390.8865 60.4316 0.1144 2340 +2342 2 246.9816 391.9687 60.4433 0.1144 2341 +2343 2 246.6258 393.0521 60.3515 0.1144 2342 +2344 2 246.2689 394.1355 60.1818 0.1144 2343 +2345 2 245.912 395.2177 59.9572 0.1144 2344 +2346 2 245.555 396.301 59.7092 0.1144 2345 +2347 2 245.1981 397.3833 59.453 0.1144 2346 +2348 2 244.8412 398.4666 59.1836 0.1144 2347 +2349 2 244.4842 399.5489 58.8974 0.1144 2348 +2350 2 244.1273 400.6322 58.5922 0.1144 2349 +2351 2 243.7704 401.7145 58.2683 0.1144 2350 +2352 2 243.7246 402.8482 57.927 0.1144 2351 +2353 2 244.403 403.427 57.3709 0.1144 2352 +2354 2 245.5356 403.4408 56.8534 0.1144 2353 +2355 2 246.6693 403.4522 56.3858 0.1144 2354 +2356 2 247.8041 403.4625 55.9751 0.1144 2355 +2357 2 248.9207 403.3996 55.5934 0.1144 2356 +2358 2 250.0612 403.4831 55.1116 0.1144 2357 +2359 2 260.1422 412.2621 59.514 0.1144 2237 +2360 2 259.6228 411.3813 60.041 0.1144 2359 +2361 2 259.2201 410.3528 60.5665 0.1144 2360 +2362 2 258.8552 409.2694 61.0327 0.1144 2361 +2363 2 258.7053 408.1495 61.4611 0.1144 2362 +2364 2 258.6962 407.073 61.9388 0.1144 2363 +2365 2 258.8506 406.0605 62.487 0.1144 2364 +2366 2 259.4123 405.119 62.9457 0.1144 2365 +2367 2 260.0861 404.1946 63.2968 0.1144 2366 +2368 2 260.7485 403.2611 63.5695 0.1144 2367 +2369 2 261.388 402.3151 63.7865 0.1144 2368 +2370 2 262.0218 401.3655 63.9612 0.1144 2369 +2371 2 262.6544 400.4149 64.1147 0.1144 2370 +2372 2 263.287 399.4642 64.2751 0.1144 2371 +2373 2 263.9197 398.5135 64.4428 0.1144 2372 +2374 2 264.5511 397.5629 64.6103 0.1144 2373 +2375 2 265.2215 396.6614 64.8175 0.1144 2374 +2376 2 266.0509 395.8869 64.9942 0.1144 2375 +2377 2 266.9478 395.1788 65.1255 0.1144 2376 +2378 2 267.8562 394.4821 65.2212 0.1144 2377 +2379 2 268.7599 393.7808 65.291 0.1144 2378 +2380 2 269.6831 393.1059 65.3428 0.1144 2379 +2381 2 270.6178 392.4458 65.3836 0.1144 2380 +2382 2 271.5776 391.8326 65.4581 0.1144 2381 +2383 2 272.4951 391.1611 65.569 0.1144 2382 +2384 2 273.3496 390.4037 65.6695 0.1144 2383 +2385 2 274.2168 389.6578 65.7516 0.1144 2384 +2386 2 275.0908 388.9188 65.8176 0.1144 2385 +2387 2 275.9614 388.1775 65.8703 0.1144 2386 +2388 2 276.8137 387.4145 65.9103 0.1144 2387 +2389 2 277.6488 386.6331 65.9604 0.1144 2388 +2390 2 278.3661 385.7602 66.0601 0.1144 2389 +2391 2 278.2471 384.6769 66.1441 0.1144 2390 +2392 2 278.7322 383.6873 66.2007 0.1144 2391 +2393 2 279.581 382.9243 66.2298 0.1144 2392 +2394 2 280.4436 382.1726 66.2326 0.1144 2393 +2395 2 281.3176 381.4348 66.1965 0.1144 2394 +2396 2 282.1905 380.698 66.1296 0.1144 2395 +2397 2 283.0645 379.9602 66.0472 0.1144 2396 +2398 2 283.9385 379.2234 65.9548 0.1144 2397 +2399 2 284.8125 378.4867 65.8563 0.1144 2398 +2400 2 285.6865 377.7499 65.7546 0.1144 2399 +2401 2 286.5606 377.0132 65.6527 0.1144 2400 +2402 2 287.4346 376.2753 65.5511 0.1144 2401 +2403 2 288.3086 375.5374 65.4492 0.1144 2402 +2404 2 289.1826 374.8007 65.3472 0.1144 2403 +2405 2 290.0566 374.064 65.2453 0.1144 2404 +2406 2 290.9295 373.3272 65.1437 0.1144 2405 +2407 2 291.8035 372.5894 65.0418 0.1144 2406 +2408 2 292.6775 371.8526 64.9398 0.1144 2407 +2409 2 293.5515 371.1159 64.8382 0.1144 2408 +2410 2 294.4256 370.3792 64.7363 0.1144 2409 +2411 2 295.2996 369.6424 64.6344 0.1144 2410 +2412 2 296.1736 368.9045 64.5327 0.1144 2411 +2413 2 297.0476 368.1667 64.4308 0.1144 2412 +2414 2 297.9216 367.4299 64.3292 0.1144 2413 +2415 2 298.7956 366.6932 64.2272 0.1144 2414 +2416 2 299.6685 365.9564 64.1256 0.1144 2415 +2417 2 300.5425 365.2186 64.024 0.1144 2416 +2418 2 301.4165 364.4818 63.9223 0.1144 2417 +2419 2 302.2906 363.7451 63.821 0.1144 2418 +2420 2 303.1646 363.0084 63.7196 0.1144 2419 +2421 2 304.0386 362.2716 63.6182 0.1144 2420 +2422 2 304.9126 361.5337 63.5174 0.1144 2421 +2423 2 305.7866 360.7959 63.4169 0.1144 2422 +2424 2 306.6606 360.0591 63.317 0.1144 2423 +2425 2 307.5347 359.3224 63.2178 0.1144 2424 +2426 2 308.4075 358.5845 63.1198 0.1144 2425 +2427 2 309.2815 357.8478 63.0232 0.1144 2426 +2428 2 310.1567 357.111 62.9283 0.1144 2427 +2429 2 311.0296 356.3743 62.8365 0.1144 2428 +2430 2 311.9036 355.6376 62.7497 0.1144 2429 +2431 2 312.7776 354.8997 62.6688 0.1144 2430 +2432 2 313.6516 354.163 62.5932 0.1144 2431 +2433 2 314.5886 353.5074 62.5254 0.1144 2432 +2434 2 315.6307 353.0384 62.4719 0.1144 2433 +2435 2 316.6249 352.5156 62.5005 0.1144 2434 +2436 2 317.3902 351.6713 62.4772 0.1144 2435 +2437 2 318.1544 350.8236 62.4053 0.1144 2436 +2438 2 318.9827 350.0365 62.2913 0.1144 2437 +2439 2 319.9825 349.4828 62.1491 0.1144 2438 +2440 2 320.9835 348.9292 61.9696 0.1144 2439 +2441 2 321.9845 348.3766 61.7484 0.1144 2440 +2442 2 322.9855 347.824 61.497 0.1144 2441 +2443 2 323.9865 347.2715 61.213 0.1144 2442 +2444 2 324.9589 346.672 60.8933 0.1144 2443 +2445 2 324.8296 346.5622 60.177 0.1144 2444 +2446 2 325.5973 345.774 59.4992 0.1144 2445 +2447 2 326.3821 344.9743 58.8882 0.1144 2446 +2448 2 327.3213 344.3223 58.4413 0.1144 2447 +2449 2 328.2639 343.6736 58.1434 0.1144 2448 +2450 2 329.2077 343.0273 57.9233 0.1144 2449 +2451 2 301.3502 414.366 41.0866 0.1144 2179 +2452 2 301.2381 413.2288 41.1009 0.1144 2451 +2453 2 300.9143 412.134 41.1211 0.1144 2452 +2454 2 300.7507 411.0037 41.1477 0.1144 2453 +2455 2 300.991 409.8929 41.181 0.1144 2454 +2456 2 301.0425 408.7523 41.2266 0.1144 2455 +2457 2 301.0024 407.6244 41.3364 0.1144 2456 +2458 2 300.6512 406.5421 41.4383 0.1144 2457 +2459 2 300.1044 405.5377 41.5187 0.1144 2458 +2460 2 299.4283 404.6156 41.5792 0.1144 2459 +2461 2 298.6721 403.7576 41.6214 0.1144 2460 +2462 2 297.8942 402.9191 41.6489 0.1144 2461 +2463 2 297.3245 401.9295 41.666 0.1144 2462 +2464 2 296.6827 400.9834 41.6875 0.1144 2463 +2465 2 296.4115 399.8749 41.7166 0.1144 2464 +2466 2 296.1507 398.7618 41.7536 0.1144 2465 +2467 2 295.9517 397.635 41.7981 0.1144 2466 +2468 2 296.2949 396.5653 41.911 0.1144 2467 +2469 2 296.6827 395.4911 42.0305 0.1144 2468 +2470 2 296.9401 394.3768 42.1341 0.1144 2469 +2471 2 297.1014 393.2443 42.2232 0.1144 2470 +2472 2 297.1563 392.1014 42.299 0.1144 2471 +2473 2 297.0739 390.962 42.376 0.1144 2472 +2474 2 296.7639 389.8763 42.5023 0.1144 2473 +2475 2 296.4573 388.7747 42.6096 0.1144 2474 +2476 2 296.1004 387.6879 42.6989 0.1144 2475 +2477 2 295.6096 386.6548 42.7734 0.1144 2476 +2478 2 294.9632 385.711 42.8347 0.1144 2477 +2479 2 294.2093 384.8508 42.884 0.1144 2478 +2480 2 293.0848 384.7158 42.9635 0.1144 2479 +2481 2 291.9488 384.662 43.0744 0.1144 2480 +2482 2 291.4855 384.9652 44.4209 0.1144 2481 +2483 2 290.6618 385.6618 44.8549 0.1144 2482 +2484 2 289.813 386.4249 45.0139 0.1144 2483 +2485 2 288.9401 387.1651 45.1531 0.1144 2484 +2486 2 287.9528 387.7348 45.2906 0.1144 2485 +2487 2 286.834 387.8103 45.3874 0.1144 2486 +2488 2 286.0526 387.0072 45.4605 0.1144 2487 +2489 2 285.4932 386.0451 45.6378 0.1144 2488 +2490 2 284.9349 385.0818 45.9007 0.1144 2489 +2491 2 284.3767 384.1197 46.676 0.1144 2490 +2492 2 292.9052 383.7983 43.2264 0.1144 2481 +2493 2 293.3296 382.7401 43.2706 0.1144 2492 +2494 2 293.968 381.7917 43.2964 0.1144 2493 +2495 2 294.3363 380.7095 43.3054 0.1144 2494 +2496 2 294.9278 379.7314 43.3068 0.1144 2495 +2497 2 295.3774 378.68 43.3087 0.1144 2496 +2498 2 295.9677 377.6996 43.3112 0.1144 2497 +2499 2 296.5603 376.7215 43.3152 0.1144 2498 +2500 2 297.1437 375.7365 43.3202 0.1144 2499 +2501 2 297.6814 374.7275 43.3275 0.1144 2500 +2502 2 298.4707 373.9004 43.3376 0.1144 2501 +2503 2 299.3082 373.1202 43.3516 0.1144 2502 +2504 2 300.3378 372.6237 43.372 0.1144 2503 +2505 2 301.2655 371.9533 43.4008 0.1144 2504 +2506 2 302.31 371.4888 43.4386 0.1144 2505 +2507 2 303.319 370.9489 43.4865 0.1144 2506 +2508 2 304.5545 370.8024 43.7097 0.1144 2507 +2509 2 305.4674 370.1229 43.8444 0.1144 2508 +2510 2 306.4101 369.4742 43.9603 0.1144 2509 +2511 2 307.5095 369.1722 44.0748 0.1144 2510 +2512 2 308.61 369.4136 44.4268 0.1144 2511 +2513 2 313.8106 424.8313 20.1503 0.1144 2147 +2514 2 314.5234 425.7259 20.0757 0.1144 2513 +2515 2 315.2555 426.6033 19.9767 0.1144 2514 +2516 2 316.0689 427.4076 19.8544 0.1144 2515 +2517 2 316.8251 428.2232 19.6599 0.1144 2516 +2518 2 317.3628 429.0927 19.2973 0.1144 2517 +2519 2 317.8169 430.0513 18.9021 0.1144 2518 +2520 2 318.4747 430.962 18.6059 0.1144 2519 +2521 2 319.2996 431.7548 18.4047 0.1144 2520 +2522 2 320.1553 432.5132 18.2936 0.1144 2521 +2523 2 321.0544 433.2202 18.2709 0.1144 2522 +2524 2 321.9651 433.9123 18.3266 0.1144 2523 +2525 2 322.8574 434.6285 18.4286 0.1144 2524 +2526 2 323.6353 435.4579 18.5588 0.1144 2525 +2527 2 324.1547 436.4612 18.7249 0.1144 2526 +2528 2 324.5116 437.342 19.0824 0.1144 2527 +2529 2 325.0173 438.2092 19.5333 0.1144 2528 +2530 2 325.7185 439.1084 19.9158 0.1144 2529 +2531 2 326.6852 439.2594 20.2233 0.1144 2530 +2532 2 326.7813 440.0476 20.4632 0.1144 2531 +2533 2 327.3053 441.0074 20.6431 0.1144 2532 +2534 2 327.8727 441.9558 20.8668 0.1144 2533 +2535 2 328.1129 443.0518 21.1093 0.1144 2534 +2536 2 328.6151 444.0756 21.3181 0.1144 2535 +2537 2 329.4205 444.8844 21.4932 0.1144 2536 +2538 2 330.1573 445.7596 21.6368 0.1144 2537 +2539 2 330.7201 446.7514 21.7785 0.1144 2538 +2540 2 331.569 447.4195 22.0117 0.1144 2539 +2541 2 332.2634 448.3267 22.1785 0.1144 2540 +2542 2 333.1385 449.0646 22.288 0.1144 2541 +2543 2 334.0263 449.7853 22.3432 0.1144 2542 +2544 2 333.9771 450.434 22.5898 0.1144 2543 +2545 2 333.8055 451.5643 22.7877 0.1144 2544 +2546 2 333.8284 452.7071 22.8539 0.1144 2545 +2547 2 333.8958 453.8454 22.9621 0.1144 2546 +2548 2 333.8535 454.9276 23.1942 0.1144 2547 +2549 2 334.1224 456.0384 23.3778 0.1144 2548 +2550 2 334.183 457.1813 23.5138 0.1144 2549 +2551 2 333.0642 457.6984 23.653 0.1144 2550 +2552 2 331.9453 457.9089 23.6624 0.1144 2551 +2553 2 330.8116 458.0668 23.6398 0.1144 2552 +2554 2 329.6722 458.148 23.6065 0.1144 2553 +2555 2 328.5579 457.9363 23.5608 0.1144 2554 +2556 2 327.486 457.5417 23.5023 0.1144 2555 +2557 2 326.4358 457.0875 23.4321 0.1144 2556 +2558 2 325.4142 456.6345 23.2775 0.1144 2557 +2559 2 324.6375 455.8428 23.0626 0.1144 2558 +2560 2 323.7314 455.153 22.8841 0.1144 2559 +2561 2 322.6984 454.6668 22.7506 0.1144 2560 +2562 2 321.615 454.3007 22.6587 0.1144 2561 +2563 2 320.5202 453.9678 22.6045 0.1144 2562 +2564 2 319.4014 453.7298 22.5836 0.1144 2563 +2565 2 318.4324 453.1361 22.5789 0.1144 2564 +2566 2 317.8478 452.1649 22.5746 0.1144 2565 +2567 2 317.2506 451.189 22.5685 0.1144 2566 +2568 2 316.5082 450.3196 22.5599 0.1144 2567 +2569 2 315.5724 449.6664 22.548 0.1144 2568 +2570 2 314.4684 449.3849 22.5313 0.1144 2569 +2571 2 313.345 449.1687 22.5084 0.1144 2570 +2572 2 312.2502 449.4776 22.476 0.1144 2571 +2573 2 311.1222 449.6629 22.4291 0.1144 2572 +2574 2 309.9782 449.6641 22.3644 0.1144 2573 +2575 2 308.8342 449.6995 22.2787 0.1144 2574 +2576 2 307.6925 449.7647 22.1708 0.1144 2575 +2577 2 307.299 449.9226 22.5898 0.1144 2576 +2578 2 306.3312 450.5312 22.5362 0.1144 2577 +2579 2 305.3977 451.1925 22.5147 0.1144 2578 +2580 2 304.2662 451.3618 22.4884 0.1144 2579 +2581 2 303.1222 451.3412 22.459 0.1144 2580 +2582 2 302.7035 450.8012 22.37 0.1144 2581 +2583 2 301.8982 450.0027 22.2725 0.1144 2582 +2584 2 300.8766 449.5154 22.2096 0.1144 2583 +2585 2 299.8607 448.9914 22.1854 0.1144 2584 +2586 2 299.0919 449.6114 22.1979 0.1144 2585 +2587 2 298.7831 450.7028 22.2435 0.1144 2586 +2588 2 298.4742 451.7587 22.4223 0.1144 2587 +2589 2 297.7672 452.6362 22.6342 0.1144 2588 +2590 2 296.7033 453.0503 22.8006 0.1144 2589 +2591 2 295.5638 453.151 22.9225 0.1144 2590 +2592 2 294.4313 453.3134 23.0035 0.1144 2591 +2593 2 293.3159 453.5674 23.0569 0.1144 2592 +2594 2 303.4677 451.6512 22.5898 0.1144 2581 +2595 2 303.9997 452.6499 22.5898 0.1144 2594 +2596 2 303.9997 453.7859 22.5898 0.1144 2595 +2597 2 303.7023 454.8876 22.5898 0.1144 2596 +2598 2 303.3682 455.9824 22.5898 0.1144 2597 +2599 2 303.1222 457.0989 22.5898 0.1144 2598 +2600 2 302.6704 458.1491 22.5898 0.1144 2599 +2601 2 301.9382 459.0254 22.5898 0.1144 2600 +2602 2 301.1054 459.8091 22.5898 0.1144 2601 +2603 2 300.0026 460.0951 22.5898 0.1144 2602 +2604 2 298.8586 460.1202 22.5898 0.1144 2603 +2605 2 307.2235 449.2179 21.9669 0.1144 2576 +2606 2 306.3289 448.5738 21.6763 0.1144 2605 +2607 2 305.1929 448.4663 21.4018 0.1144 2606 +2608 2 304.0718 448.4491 21.0934 0.1144 2607 +2609 2 302.9838 448.1002 20.8316 0.1144 2608 +2610 2 301.9405 447.6335 20.6063 0.1144 2609 +2611 2 300.8789 447.2376 20.3652 0.1144 2610 +2612 2 299.7818 446.9196 20.1411 0.1144 2611 +2613 2 298.7407 446.827 19.9514 0.1144 2612 +2614 2 297.9251 447.5808 19.6875 0.1144 2613 +2615 2 297.1529 448.2913 19.3074 0.1144 2614 +2616 2 296.2537 448.9651 18.9605 0.1144 2615 +2617 2 295.1314 449.1687 18.7413 0.1144 2616 +2618 2 294.016 449.0761 18.6373 0.1144 2617 +2619 2 293.1855 449.8391 18.6392 0.1144 2618 +2620 2 292.7347 450.8836 18.757 0.1144 2619 +2621 2 292.2588 451.8308 19.0794 0.1144 2620 +2622 2 291.7429 452.6785 19.5542 0.1144 2621 +2623 2 291.2807 453.7241 19.9485 0.1144 2622 +2624 2 290.727 454.724 20.2715 0.1144 2623 +2625 2 290.115 455.6907 20.5329 0.1144 2624 +2626 2 289.392 456.3645 20.7601 0.1144 2625 +2627 2 288.2846 456.1563 21.0081 0.1144 2626 +2628 2 287.1783 455.9481 21.28 0.1144 2627 +2629 2 286.0709 455.741 21.5799 0.1144 2628 +2630 2 284.9647 455.5328 21.8819 0.1144 2629 +2631 2 283.8447 455.3967 22.1584 0.1144 2630 +2632 2 283.0405 455.995 22.3144 0.1144 2631 +2633 2 282.3918 456.9262 22.3304 0.1144 2632 +2634 2 281.7443 457.8585 22.2447 0.1144 2633 +2635 2 281.3268 458.9053 22.1222 0.1144 2634 +2636 2 281.0453 460.0138 22.001 0.1144 2635 +2637 2 280.6015 461.0606 21.8943 0.1144 2636 +2638 2 280.0215 462.0456 21.8111 0.1144 2637 +2639 2 279.3591 462.9768 21.7456 0.1144 2638 +2640 2 279.1349 464.0304 21.6272 0.1144 2639 +2641 2 279.5616 465.0497 21.5004 0.1144 2640 +2642 2 280.232 465.9741 21.3908 0.1144 2641 +2643 2 280.0112 466.9728 21.2964 0.1144 2642 +2644 2 279.1211 467.6786 21.2005 0.1144 2643 +2645 2 278.0847 468.1259 21.0634 0.1144 2644 +2646 2 277.0825 468.6751 20.9644 0.1144 2645 +2647 2 276.1536 469.3432 20.8929 0.1144 2646 +2648 2 275.4443 470.2389 20.8074 0.1144 2647 +2649 2 334.2699 457.314 24.4878 0.1144 2550 +2650 2 334.6932 457.9581 25.401 0.1144 2649 +2651 2 335.2503 458.9522 25.7199 0.1144 2650 +2652 2 335.5592 460.039 25.9927 0.1144 2651 +2653 2 335.5512 461.1681 26.2532 0.1144 2652 +2654 2 335.4906 462.279 26.5485 0.1144 2653 +2655 2 335.6462 463.3921 26.8204 0.1144 2654 +2656 2 335.9013 464.5063 27.015 0.1144 2655 +2657 2 336.2422 465.5966 27.1814 0.1144 2656 +2658 2 336.7272 466.6296 27.3304 0.1144 2657 +2659 2 337.3988 467.5482 27.474 0.1144 2658 +2660 2 338.2019 468.3605 27.6303 0.1144 2659 +2661 2 339.0393 469.1395 27.8273 0.1144 2660 +2662 2 339.8321 469.9495 28.1277 0.1144 2661 +2663 2 340.4636 470.8624 28.5807 0.1144 2662 +2664 2 340.9429 471.8851 29.1234 0.1144 2663 +2665 2 341.2255 472.9616 29.79 0.1144 2664 +2666 2 341.3868 474.0587 30.6043 0.1144 2665 +2667 2 341.6041 474.8572 31.6938 0.1144 2666 +2668 2 341.2277 475.5436 32.9837 0.1144 2667 +2669 2 341.0493 476.2609 34.4585 0.1144 2668 +2670 2 341.4005 477.0835 35.9654 0.1144 2669 +2671 2 341.6602 477.8808 37.4643 0.1144 2670 +2672 2 342.2127 478.7766 38.7534 0.1144 2671 +2673 2 343.3373 478.9162 39.699 0.1144 2672 +2674 2 343.9745 478.6256 41.7911 0.1144 2673 +2675 2 334.6989 449.878 22.3487 0.1144 2543 +2676 2 335.8418 449.91 22.3109 0.1144 2675 +2677 2 336.8302 450.339 22.1189 0.1144 2676 +2678 2 337.9182 450.6731 21.9297 0.1144 2677 +2679 2 338.0268 450.8698 21.4603 0.1144 2678 +2680 2 338.4867 451.9178 21.5482 0.1144 2679 +2681 2 338.9615 452.9588 21.585 0.1144 2680 +2682 2 339.3802 454.0227 21.6347 0.1144 2681 +2683 2 339.7749 455.0969 21.6975 0.1144 2682 +2684 2 339.6833 455.979 21.3851 0.1144 2683 +2685 2 339.2143 457.0097 21.3842 0.1144 2684 +2686 2 338.3186 457.6938 21.3846 0.1144 2685 +2687 2 337.2604 458.1182 21.3858 0.1144 2686 +2688 2 336.1392 458.3367 21.3875 0.1144 2687 +2689 2 335.0341 458.6296 21.3892 0.1144 2688 +2690 2 334.096 459.2611 21.4293 0.1144 2689 +2691 2 333.2941 460.0653 21.4199 0.1144 2690 +2692 2 332.5265 460.9142 21.4079 0.1144 2691 +2693 2 332.1741 461.9964 21.3966 0.1144 2692 +2694 2 331.641 463.0065 21.3863 0.1144 2693 +2695 2 330.7235 463.6895 21.3699 0.1144 2694 +2696 2 340.1375 455.7547 21.7719 0.1144 2683 +2697 2 340.6855 456.7008 21.9673 0.1144 2696 +2698 2 341.1683 457.7247 22.1788 0.1144 2697 +2699 2 341.6053 458.7818 22.3495 0.1144 2698 +2700 2 342.2871 459.6935 22.4775 0.1144 2699 +2701 2 343.0307 460.5641 22.567 0.1144 2700 +2702 2 343.9013 461.3031 22.6231 0.1144 2701 +2703 2 344.8451 461.9483 22.6515 0.1144 2702 +2704 2 345.6939 462.7137 22.6772 0.1144 2703 +2705 2 346.537 463.487 22.7119 0.1144 2704 +2706 2 347.2292 464.3954 22.7599 0.1144 2705 +2707 2 347.8595 465.3506 22.8279 0.1144 2706 +2708 2 348.1981 466.4385 22.9244 0.1144 2707 +2709 2 348.3411 467.5734 23.0594 0.1144 2708 +2710 2 348.6477 468.6751 23.2405 0.1144 2709 +2711 2 349.3021 469.612 23.4734 0.1144 2710 +2712 2 349.055 470.3259 22.5898 0.1144 2711 +2713 2 348.507 471.3108 22.5898 0.1144 2712 +2714 2 347.9899 472.3107 22.5898 0.1144 2713 +2715 2 347.641 473.3998 22.5898 0.1144 2714 +2716 2 347.2646 474.4797 22.5898 0.1144 2715 +2717 2 346.7567 475.499 22.5898 0.1144 2716 +2718 2 346.1755 476.484 22.5898 0.1144 2717 +2719 2 345.639 477.4942 22.5898 0.1144 2718 +2720 2 345.035 478.4608 22.5898 0.1144 2719 +2721 2 344.6815 479.5019 22.5898 0.1144 2720 +2722 2 344.4778 480.623 22.5898 0.1144 2721 +2723 2 344.9011 481.592 22.5898 0.1144 2722 +2724 2 345.3004 482.6479 22.5898 0.1144 2723 +2725 2 345.6024 483.7507 22.5898 0.1144 2724 +2726 2 345.2821 484.7929 22.5898 0.1144 2725 +2727 2 344.9846 485.8911 22.5898 0.1144 2726 +2728 2 344.9824 487.0294 22.5898 0.1144 2727 +2729 2 344.8897 488.1677 22.5898 0.1144 2728 +2730 2 344.8817 489.3105 22.5898 0.1144 2729 +2731 2 344.8119 490.4522 22.5898 0.1144 2730 +2732 2 344.8233 491.5951 22.5898 0.1144 2731 +2733 2 344.9194 492.7345 22.5898 0.1144 2732 +2734 2 345.1173 493.8614 22.5898 0.1144 2733 +2735 2 345.6024 494.8887 22.5898 0.1144 2734 +2736 2 345.965 495.972 22.5898 0.1144 2735 +2737 2 345.9513 497.1092 22.5898 0.1144 2736 +2738 2 345.0922 497.8413 22.5898 0.1144 2737 +2739 2 344.5042 498.8195 22.5898 0.1144 2738 +2740 2 344.0809 499.8811 22.5898 0.1144 2739 +2741 2 343.4357 500.8249 22.5898 0.1144 2740 +2742 2 342.4564 501.4118 22.5898 0.1144 2741 +2743 2 349.6911 469.9529 23.8903 0.1144 2711 +2744 2 350.3477 470.7926 24.4305 0.1144 2743 +2745 2 351.097 471.4081 25.1239 0.1144 2744 +2746 2 351.3396 472.4262 25.8048 0.1144 2745 +2747 2 351.0707 473.4455 26.5006 0.1144 2746 +2748 2 350.9289 474.5781 27.0262 0.1144 2747 +2749 2 350.9529 475.7061 27.3329 0.1144 2748 +2750 2 351.0524 476.1397 27.1079 0.1144 2749 +2751 2 350.7412 477.1475 27.6554 0.1144 2750 +2752 2 350.4003 478.2343 27.8576 0.1144 2751 +2753 2 350.2059 479.3612 28.0134 0.1144 2752 +2754 2 349.9496 480.4766 28.1257 0.1144 2753 +2755 2 349.6201 481.5714 28.1977 0.1144 2754 +2756 2 349.2712 482.6616 28.2332 0.1144 2755 +2757 2 348.737 483.6718 28.2372 0.1144 2756 +2758 2 348.3034 484.7311 28.2372 0.1144 2757 +2759 2 347.522 485.5628 28.2372 0.1144 2758 +2760 2 351.7949 474.9167 27.7588 0.1144 2749 +2761 2 352.7089 474.2772 28.0288 0.1144 2760 +2762 2 353.6584 473.6515 28.2999 0.1144 2761 +2763 2 354.5416 472.9708 28.6446 0.1144 2762 +2764 2 355.4191 472.2661 29.0298 0.1144 2763 +2765 2 356.3148 471.5591 29.3714 0.1144 2764 +2766 2 357.214 470.8532 29.6713 0.1144 2765 +2767 2 357.9782 470.0067 29.9541 0.1144 2766 +2768 2 358.4484 468.9736 30.2543 0.1144 2767 +2769 2 359.0638 468.0699 30.6886 0.1144 2768 +2770 2 359.7537 467.1753 31.1993 0.1144 2769 +2771 2 359.2309 466.5529 31.9242 0.1144 2770 +2772 2 358.1727 466.3333 32.7216 0.1144 2771 +2773 2 358.0308 465.7327 33.7383 0.1144 2772 +2774 2 358.6257 464.7694 34.6433 0.1144 2773 +2775 2 359.1485 463.7948 35.4729 0.1144 2774 +2776 2 360.0557 463.3349 36.2267 0.1144 2775 +2777 2 360.7307 462.5901 36.8626 0.1144 2776 +2778 2 360.8622 461.5228 37.5133 0.1144 2777 +2779 2 360.5076 460.5481 38.2147 0.1144 2778 +2780 2 360.0763 460.6716 39.1882 0.1144 2779 +2781 2 360.1804 460.3891 39.0068 0.1144 2780 +2782 2 361.0521 459.7473 38.9312 0.1144 2781 +2783 2 362.1309 459.3755 38.9068 0.1144 2782 +2784 2 363.244 459.1112 38.8945 0.1144 2783 +2785 2 364.3503 458.8206 38.9001 0.1144 2784 +2786 2 365.4519 458.5129 38.9208 0.1144 2785 +2787 2 366.5937 458.4717 38.9542 0.1144 2786 +2788 2 367.6919 458.1594 38.9973 0.1144 2787 +2789 2 368.3794 457.2671 39.0768 0.1144 2788 +2790 2 368.8485 456.2318 39.3655 0.1144 2789 +2791 2 360.1129 460.9382 39.9916 0.1144 2780 +2792 2 360.4103 461.9918 40.7151 0.1144 2791 +2793 2 361.1116 462.8818 41.2429 0.1144 2792 +2794 2 361.9444 463.6643 41.5834 0.1144 2793 +2795 2 362.5107 464.6528 41.7766 0.1144 2794 +2796 2 363.1353 465.6114 41.869 0.1144 2795 +2797 2 363.6696 466.6227 41.9384 0.1144 2796 +2798 2 363.8355 467.7507 41.9958 0.1144 2797 +2799 2 363.4968 468.8387 42.0619 0.1144 2798 +2800 2 362.9248 469.8133 42.1982 0.1144 2799 +2801 2 362.3311 470.7491 42.4178 0.1144 2800 +2802 2 361.8346 471.5213 42.5866 0.1144 2801 +2803 2 361.194 472.4686 42.7056 0.1144 2802 +2804 2 360.4904 473.3472 42.7759 0.1144 2803 +2805 2 359.5031 473.878 42.8 0.1144 2804 +2806 2 358.3763 474.0404 42.7815 0.1144 2805 +2807 2 357.2483 474.1731 42.7361 0.1144 2806 +2808 2 356.2896 474.6765 42.6409 0.1144 2807 +2809 2 355.6559 475.5986 42.5001 0.1144 2808 +2810 2 355.0038 476.5343 42.3814 0.1144 2809 +2811 2 354.2945 477.4324 42.2932 0.1144 2810 +2812 2 353.5864 478.3304 42.233 0.1144 2811 +2813 2 352.8531 479.2079 42.1985 0.1144 2812 +2814 2 352.1278 480.0922 42.1868 0.1144 2813 +2815 2 351.4437 481.0085 42.1887 0.1144 2814 +2816 2 350.6715 481.8459 42.1949 0.1144 2815 +2817 2 349.8341 482.625 42.2027 0.1144 2816 +2818 2 348.9966 483.4052 42.2111 0.1144 2817 +2819 2 348.0792 484.0756 42.198 0.1144 2818 +2820 2 347.2806 484.8283 42.257 0.1144 2819 +2821 2 346.2545 485.1166 42.3284 0.1144 2820 +2822 2 345.2592 485.5742 42.3038 0.1144 2821 +2823 2 344.3463 486.2561 42.266 0.1144 2822 +2824 2 343.2549 486.5615 42.224 0.1144 2823 +2825 2 342.2127 486.9825 42.1201 0.1144 2824 +2826 2 341.1728 487.3989 42.1137 0.1144 2825 +2827 2 340.2851 488.1151 42.1772 0.1144 2826 +2828 2 363.3218 470.4826 42.7622 0.1144 2801 +2829 2 364.4555 470.5432 42.7507 0.1144 2828 +2830 2 365.5835 470.7285 42.7468 0.1144 2829 +2831 2 366.6726 471.074 42.7437 0.1144 2830 +2832 2 367.7811 471.3577 42.7414 0.1144 2831 +2833 2 368.9206 471.4115 42.74 0.1144 2832 +2834 2 370.0646 471.3715 42.7395 0.1144 2833 +2835 2 371.1822 471.137 42.7395 0.1144 2834 +2836 2 372.2587 470.7526 42.7395 0.1144 2835 +2837 2 373.3936 470.6359 42.7395 0.1144 2836 +2838 2 374.5296 470.7503 42.7395 0.1144 2837 +2839 2 375.653 470.9654 42.7395 0.1144 2838 +2840 2 376.7913 471.082 42.7395 0.1144 2839 +2841 2 377.909 471.3211 42.7395 0.1144 2840 +2842 2 379.0461 471.4413 42.7395 0.1144 2841 +2843 2 380.1546 471.7204 42.7395 0.1144 2842 +2844 2 381.2929 471.6506 42.7395 0.1144 2843 +2845 2 382.4346 471.7021 42.7395 0.1144 2844 +2846 2 383.494 471.288 42.7395 0.1144 2845 +2847 2 384.5464 470.8395 42.7395 0.1144 2846 +2848 2 385.6046 470.4059 42.7395 0.1144 2847 +2849 2 386.5324 469.7378 42.7395 0.1144 2848 +2850 2 387.0918 468.7448 42.7395 0.1144 2849 +2851 2 387.4602 467.6626 42.7395 0.1144 2850 +2852 2 387.6147 466.5289 42.7395 0.1144 2851 +2853 2 339.1331 450.5564 21.7154 0.1144 2678 +2854 2 340.2656 450.3939 21.6933 0.1144 2853 +2855 2 341.3993 450.2418 21.7278 0.1144 2854 +2856 2 342.5388 450.3196 21.8172 0.1144 2855 +2857 2 343.653 450.0805 21.9381 0.1144 2856 +2858 2 344.6758 449.6995 22.2018 0.1144 2857 +2859 2 345.8026 449.7384 22.509 0.1144 2858 +2860 2 346.9123 450.013 22.8094 0.1144 2859 +2861 2 347.9579 450.4775 23.1093 0.1144 2860 +2862 2 348.8182 451.2314 23.4143 0.1144 2861 +2863 2 349.3307 450.5896 23.8589 0.1144 2862 +2864 2 349.9244 449.83 24.4773 0.1144 2863 +2865 2 350.7801 449.5806 25.145 0.1144 2864 +2866 2 351.8841 449.7075 25.7221 0.1144 2865 +2867 2 352.9926 449.5588 26.2527 0.1144 2866 +2868 2 354.1172 449.5096 26.6806 0.1144 2867 +2869 2 355.2566 449.6092 26.9631 0.1144 2868 +2870 2 356.3617 449.8608 27.1418 0.1144 2869 +2871 2 357.4062 450.3253 27.2707 0.1144 2870 +2872 2 358.3454 450.9602 27.3876 0.1144 2871 +2873 2 359.1634 451.7587 27.5094 0.1144 2872 +2874 2 359.9024 452.6293 27.6646 0.1144 2873 +2875 2 360.527 453.5834 27.8844 0.1144 2874 +2876 2 361.0773 454.5535 28.2302 0.1144 2875 +2877 2 361.1333 455.5339 28.6717 0.1144 2876 +2878 2 360.7455 456.5727 29.1788 0.1144 2877 +2879 2 360.8748 457.0989 29.944 0.1144 2878 +2880 2 361.2741 456.4022 30.7171 0.1144 2879 +2881 2 362.1149 455.7776 31.4437 0.1144 2880 +2882 2 363.085 455.1919 32.0342 0.1144 2881 +2883 2 364.1032 454.6714 32.452 0.1144 2882 +2884 2 365.0504 454.0296 32.7281 0.1144 2883 +2885 2 365.9519 453.3249 32.8899 0.1144 2884 +2886 2 366.8579 452.627 33.0002 0.1144 2885 +2887 2 367.8326 452.0505 33.0873 0.1144 2886 +2888 2 368.8233 451.7267 33.3343 0.1144 2887 +2889 2 368.8279 451.4361 34.438 0.1144 2888 +2890 2 369.1059 450.9145 35.7739 0.1144 2889 +2891 2 369.8678 451.5768 36.3549 0.1144 2890 +2892 2 370.4592 452.4394 36.9858 0.1144 2891 +2893 2 370.8825 453.4759 37.501 0.1144 2892 +2894 2 371.1582 454.5844 37.8557 0.1144 2893 +2895 2 371.3435 455.7124 38.0629 0.1144 2894 +2896 2 371.4374 456.8507 38.1184 0.1144 2895 +2897 2 371.506 457.9764 38.0372 0.1144 2896 +2898 2 371.617 459.1089 37.9184 0.1144 2897 +2899 2 371.8881 460.2163 37.8224 0.1144 2898 +2900 2 372.102 461.3374 37.7549 0.1144 2899 +2901 2 372.1855 462.4769 37.7138 0.1144 2900 +2902 2 372.7198 463.4401 37.6964 0.1144 2901 +2903 2 373.4542 464.3164 37.6978 0.1144 2902 +2904 2 374.263 465.1241 37.7054 0.1144 2903 +2905 2 375.1748 465.8105 37.7166 0.1144 2904 +2906 2 376.1506 466.4065 37.7325 0.1144 2905 +2907 2 377.1104 467.0277 37.7544 0.1144 2906 +2908 2 377.9101 467.8365 37.7818 0.1144 2907 +2909 2 378.5279 468.794 37.8143 0.1144 2908 +2910 2 378.9889 469.8282 37.8955 0.1144 2909 +2911 2 379.1616 470.9448 37.9938 0.1144 2910 +2912 2 379.2326 472.0865 38.0722 0.1144 2911 +2913 2 379.4442 473.2076 38.1256 0.1144 2912 +2914 2 379.6673 474.3299 38.1536 0.1144 2913 +2915 2 379.2818 475.372 38.1562 0.1144 2914 +2916 2 378.7281 476.3719 38.1335 0.1144 2915 +2917 2 378.0874 477.3191 38.0948 0.1144 2916 +2918 2 377.2958 478.1428 38.0453 0.1144 2917 +2919 2 376.5179 478.9699 37.9431 0.1144 2918 +2920 2 375.8315 479.8794 37.8092 0.1144 2919 +2921 2 375.1679 480.8106 37.683 0.1144 2920 +2922 2 374.5067 481.7441 37.5642 0.1144 2921 +2923 2 373.8443 482.6765 37.4486 0.1144 2922 +2924 2 373.1854 483.6123 37.331 0.1144 2923 +2925 2 373.0676 484.7139 37.1367 0.1144 2924 +2926 2 372.7026 485.7893 36.9225 0.1144 2925 +2927 2 372.1546 486.788 36.682 0.1144 2926 +2928 2 371.5987 487.7822 36.4235 0.1144 2927 +2929 2 371.0415 488.7751 36.1564 0.1144 2928 +2930 2 370.3322 489.6617 35.882 0.1144 2929 +2931 2 369.3747 490.2578 35.6023 0.1144 2930 +2932 2 368.4115 490.8469 35.3231 0.1144 2931 +2933 2 367.4482 491.4372 35.0563 0.1144 2932 +2934 2 366.5765 492.1728 34.8477 0.1144 2933 +2935 2 365.7562 492.969 34.7262 0.1144 2934 +2936 2 364.6843 493.31 34.8664 0.1144 2935 +2937 2 369.4342 451.7931 33.5317 0.1144 2888 +2938 2 370.5725 451.9166 33.682 0.1144 2937 +2939 2 371.7096 452.039 33.7907 0.1144 2938 +2940 2 372.8468 452.1626 33.8638 0.1144 2939 +2941 2 373.9839 452.2861 33.9094 0.1144 2940 +2942 2 375.121 452.4097 33.9366 0.1144 2941 +2943 2 376.2582 452.5378 33.9805 0.1144 2942 +2944 2 377.3759 452.7552 34.0474 0.1144 2943 +2945 2 378.4821 452.8238 34.1474 0.1144 2944 +2946 2 379.5975 452.8284 34.326 0.1144 2945 +2947 2 380.7118 453.0457 34.5654 0.1144 2946 +2948 2 381.7677 453.461 34.8174 0.1144 2947 +2949 2 382.7263 453.9872 35.1708 0.1144 2948 +2950 2 383.4574 454.5764 35.7137 0.1144 2949 +2951 2 384.3657 455.1507 36.2314 0.1144 2950 +2952 2 385.3678 455.701 36.6293 0.1144 2951 +2953 2 386.4592 456.0156 36.918 0.1144 2952 +2954 2 387.5952 456.0167 37.1146 0.1144 2953 +2955 2 388.7392 456.0293 37.2299 0.1144 2954 +2956 2 389.8512 455.8051 37.2898 0.1144 2955 +2957 2 390.9311 455.4882 37.4041 0.1144 2956 +2958 2 392.0511 455.2868 37.5166 0.1144 2957 +2959 2 393.1928 455.2674 37.6096 0.1144 2958 +2960 2 394.3334 455.3452 37.6866 0.1144 2959 +2961 2 395.4545 455.5671 37.7516 0.1144 2960 +2962 2 396.5893 455.6964 37.8084 0.1144 2961 +2963 2 397.731 455.7753 37.8605 0.1144 2962 +2964 2 398.8728 455.8474 37.9271 0.1144 2963 +2965 2 400.003 455.8154 38.0604 0.1144 2964 +2966 2 401.139 455.9034 38.2096 0.1144 2965 +2967 2 402.2636 456.1071 38.3594 0.1144 2966 +2968 2 403.3492 456.464 38.5129 0.1144 2967 +2969 2 404.4166 456.8736 38.6733 0.1144 2968 +2970 2 405.4874 457.2774 38.8413 0.1144 2969 +2971 2 406.4197 457.6904 39.1818 0.1144 2970 +2972 2 407.3532 458.2098 39.6172 0.1144 2971 +2973 2 408.3508 458.7543 39.9745 0.1144 2972 +2974 2 409.4582 458.9648 40.2881 0.1144 2973 +2975 2 410.3745 458.3276 40.5163 0.1144 2974 +2976 2 411.4213 457.8677 40.6294 0.1144 2975 +2977 2 412.4898 457.4581 40.6316 0.1144 2976 +2978 2 413.1773 458.2029 41.9233 0.1144 2977 +2979 2 414.1314 458.7211 42.8812 0.1144 2978 +2980 2 415.0867 459.2416 43.2877 0.1144 2979 +2981 2 415.8463 459.2588 43.7777 0.1144 2980 +2982 2 416.5739 458.4477 44.2618 0.1144 2981 +2983 2 417.4662 457.7464 44.632 0.1144 2982 +2984 2 418.4466 457.1573 44.9014 0.1144 2983 +2985 2 419.459 456.6299 45.0839 0.1144 2984 +2986 2 420.452 456.0728 45.2138 0.1144 2985 +2987 2 421.135 455.209 45.3183 0.1144 2986 +2988 2 421.5892 454.1623 45.4479 0.1144 2987 +2989 2 422.1612 453.2208 45.677 0.1144 2988 +2990 2 422.8418 452.3319 45.948 0.1144 2989 +2991 2 423.3647 451.3355 46.2202 0.1144 2990 +2992 2 423.8886 450.3264 46.4531 0.1144 2991 +2993 2 424.6265 449.4822 46.6684 0.1144 2992 +2994 2 425.5772 448.8701 46.8387 0.1144 2993 +2995 2 426.418 448.114 46.9316 0.1144 2994 +2996 2 427.2646 447.3692 46.9171 0.1144 2995 +2997 2 428.1672 446.6737 46.8748 0.1144 2996 +2998 2 429.1178 446.0387 46.8381 0.1144 2997 +2999 2 429.8546 445.1773 46.8138 0.1144 2998 +3000 2 430.5204 444.2472 46.8107 0.1144 2999 +3001 2 431.1347 443.2817 46.8336 0.1144 3000 +3002 2 431.7467 442.3162 46.8874 0.1144 3001 +3003 2 432.3759 441.3792 47.0109 0.1144 3002 +3004 2 433.2191 440.6196 47.1335 0.1144 3003 +3005 2 433.8666 439.6872 47.2427 0.1144 3004 +3006 2 434.5804 438.7949 47.3416 0.1144 3005 +3007 2 435.443 438.0479 47.4348 0.1144 3006 +3008 2 436.2964 437.2871 47.5272 0.1144 3007 +3009 2 437.3569 436.9931 47.6935 0.1144 3008 +3010 2 438.4231 436.5927 47.864 0.1144 3009 +3011 2 439.4756 436.1466 48.0287 0.1144 3010 +3012 2 440.1494 435.276 48.26 0.1144 3011 +3013 2 441.036 434.5907 48.5288 0.1144 3012 +3014 2 441.9169 433.8631 48.7684 0.1144 3013 +3015 2 442.5884 432.9434 48.9854 0.1144 3014 +3016 2 443.316 432.0762 49.2058 0.1144 3015 +3017 2 444.0928 431.2377 49.3727 0.1144 3016 +3018 2 444.8696 430.3991 49.4808 0.1144 3017 +3019 2 445.6463 429.5606 49.5387 0.1144 3018 +3020 2 446.4231 428.722 49.5564 0.1144 3019 +3021 2 447.0317 427.7599 49.4855 0.1144 3020 +3022 2 447.5088 426.7383 49.315 0.1144 3021 +3023 2 447.9881 425.7179 49.0837 0.1144 3022 +3024 2 448.4617 424.6917 48.8267 0.1144 3023 +3025 2 448.8964 423.6335 48.629 0.1144 3024 +3026 2 449.33 422.5753 48.4896 0.1144 3025 +3027 2 449.7647 421.5171 48.3633 0.1144 3026 +3028 2 413.3409 456.8621 40.4765 0.1144 2977 +3029 2 414.1291 456.035 40.2909 0.1144 3028 +3030 2 414.3259 454.9127 40.0837 0.1144 3029 +3031 2 414.5055 453.7825 39.8692 0.1144 3030 +3032 2 414.5227 453.6761 40.4348 0.1144 3031 +3033 2 414.7 452.5698 40.9581 0.1144 3032 +3034 2 414.7332 451.4418 41.1807 0.1144 3033 +3035 2 414.5135 450.3745 41.5089 0.1144 3034 +3036 2 413.794 449.5222 41.8508 0.1144 3035 +3037 2 413.1499 448.6059 42.2159 0.1144 3036 +3038 2 413.3581 447.5099 42.5071 0.1144 3037 +3039 2 413.953 446.5329 42.721 0.1144 3038 +3040 2 414.6062 445.5937 42.8666 0.1144 3039 +3041 2 415.4299 444.8044 42.9906 0.1144 3040 +3042 2 416.3016 444.0779 43.302 0.1144 3041 +3043 2 415.2892 453.9335 39.4517 0.1144 3031 +3044 2 416.281 454.0422 38.9189 0.1144 3043 +3045 2 416.8908 452.9885 38.2754 0.1144 3044 +3046 2 417.5325 452.0459 38.1612 0.1144 3045 +3047 2 418.1675 451.0998 38.1735 0.1144 3046 +3048 2 418.6594 450.0759 38.2796 0.1144 3047 +3049 2 419.0952 449.0223 38.4199 0.1144 3048 +3050 2 419.5643 447.9824 38.5739 0.1144 3049 +3051 2 419.9407 446.9059 38.7579 0.1144 3050 +3052 2 420.277 445.8191 38.9824 0.1144 3051 +3053 2 420.2678 444.738 39.2563 0.1144 3052 +3054 2 420.0242 443.6375 39.5634 0.1144 3053 +3055 2 420.1775 442.5347 39.8894 0.1144 3054 +3056 2 420.6408 441.5016 40.2293 0.1144 3055 +3057 2 421.167 440.5258 40.6255 0.1144 3056 +3058 2 421.5789 439.4825 41.0144 0.1144 3057 +3059 2 421.874 438.3785 41.3678 0.1144 3058 +3060 2 422.1246 437.262 41.7144 0.1144 3059 +3061 2 422.104 436.134 42.0762 0.1144 3060 +3062 2 421.9026 435.1158 42.604 0.1144 3061 +3063 2 421.9118 435.1662 43.1777 0.1144 3062 +3064 2 421.8672 435.6569 44.1014 0.1144 3063 +3065 2 421.2082 436.4806 45.0747 0.1144 3064 +3066 2 420.4349 437.3146 45.9724 0.1144 3065 +3067 2 419.999 438.2813 46.8059 0.1144 3066 +3068 2 420.2553 439.1679 47.6588 0.1144 3067 +3069 2 420.8547 439.177 48.7197 0.1144 3068 +3070 2 421.7619 438.8498 49.7773 0.1144 3069 +3071 2 422.3454 438.168 50.8337 0.1144 3070 +3072 2 423.1107 437.6029 51.8563 0.1144 3071 +3073 2 424.2066 437.5422 52.736 0.1144 3072 +3074 2 425.2717 437.4633 53.5091 0.1144 3073 +3075 2 426.3265 437.0492 54.0442 0.1144 3074 +3076 2 427.2234 436.3433 54.404 0.1144 3075 +3077 2 428.0104 435.5139 54.6389 0.1144 3076 +3078 2 428.6774 434.5862 54.8122 0.1144 3077 +3079 2 429.2883 433.6275 54.9808 0.1144 3078 +3080 2 429.8946 432.6665 55.1533 0.1144 3079 +3081 2 430.5032 431.7067 55.3423 0.1144 3080 +3082 2 430.9986 430.6771 55.4994 0.1144 3081 +3083 2 431.471 429.6349 55.6195 0.1144 3082 +3084 2 431.8371 428.5516 55.7074 0.1144 3083 +3085 2 432.1391 427.4476 55.7721 0.1144 3084 +3086 2 432.7363 426.4763 55.8253 0.1144 3085 +3087 2 433.5463 425.6687 55.8852 0.1144 3086 +3088 2 434.0748 424.6608 55.991 0.1144 3087 +3089 2 434.6113 423.6552 56.1254 0.1144 3088 +3090 2 435.0792 422.6119 56.247 0.1144 3089 +3091 2 435.4773 421.5388 56.3587 0.1144 3090 +3092 2 434.7349 420.9554 56.7501 0.1144 3091 +3093 2 433.87 420.2118 56.8224 0.1144 3092 +3094 2 433.2042 419.284 56.8509 0.1144 3093 +3095 2 432.2467 418.6685 56.8837 0.1144 3094 +3096 2 431.1278 418.45 56.9212 0.1144 3095 +3097 2 430.0124 418.6868 56.9621 0.1144 3096 +3098 2 428.8982 418.7955 57.0858 0.1144 3097 +3099 2 428.2232 419.6261 57.1838 0.1144 3098 +3100 2 427.5014 420.5138 57.2589 0.1144 3099 +3101 2 426.7806 421.4027 57.3121 0.1144 3100 +3102 2 426.0588 422.2893 57.3454 0.1144 3101 +3103 2 425.1619 422.9963 57.3611 0.1144 3102 +3104 2 424.3885 423.836 57.3611 0.1144 3103 +3105 2 423.6472 424.7077 57.3611 0.1144 3104 +3106 2 422.9071 425.5806 57.3611 0.1144 3105 +3107 2 422.1692 426.4546 57.3611 0.1144 3106 +3108 2 421.429 427.3275 57.3611 0.1144 3107 +3109 2 420.69 428.2003 57.3611 0.1144 3108 +3110 2 419.951 429.0732 57.3611 0.1144 3109 +3111 2 419.2119 429.9472 57.3611 0.1144 3110 +3112 2 418.4729 430.8201 57.3611 0.1144 3111 +3113 2 417.7339 431.693 57.3611 0.1144 3112 +3114 2 416.9949 432.5658 57.3608 0.1144 3113 +3115 2 416.2558 433.4399 57.3608 0.1144 3114 +3116 2 415.1507 433.3701 57.3608 0.1144 3115 +3117 2 414.017 433.2214 57.3605 0.1144 3116 +3118 2 412.8822 433.0715 57.3602 0.1144 3117 +3119 2 411.7485 432.9228 57.36 0.1144 3118 +3120 2 410.6148 432.7729 57.3597 0.1144 3119 +3121 2 409.4799 432.623 57.3591 0.1144 3120 +3122 2 408.3462 432.4743 57.3583 0.1144 3121 +3123 2 407.2114 432.3245 57.3572 0.1144 3122 +3124 2 406.0777 432.1757 57.3555 0.1144 3123 +3125 2 404.9428 432.0259 57.3532 0.1144 3124 +3126 2 403.8091 431.8772 57.3504 0.1144 3125 +3127 2 402.6754 431.7273 57.346 0.1144 3126 +3128 2 401.5406 431.5774 57.3398 0.1144 3127 +3129 2 400.4069 431.4287 57.3314 0.1144 3128 +3130 2 399.272 431.2788 57.3199 0.1144 3129 +3131 2 398.1429 431.0935 57.3048 0.1144 3130 +3132 2 399.0375 430.3808 57.2788 0.1144 3131 +3133 2 399.9321 429.6692 57.244 0.1144 3132 +3134 2 400.8267 428.9565 57.2032 0.1144 3133 +3135 2 401.7225 428.2438 57.1575 0.1144 3134 +3136 2 402.6171 427.5311 57.1094 0.1144 3135 +3137 2 403.5117 426.8195 57.0606 0.1144 3136 +3138 2 404.4063 426.1068 57.0125 0.1144 3137 +3139 2 405.3009 425.3941 56.9657 0.1144 3138 +3140 2 406.1966 424.6814 56.9206 0.1144 3139 +3141 2 407.0913 423.9698 56.8772 0.1144 3140 +3142 2 407.9859 423.2571 56.8358 0.1144 3141 +3143 2 408.6048 423.0192 56.8033 0.1144 3142 +3144 2 409.6515 422.5616 56.7764 0.1144 3143 +3145 2 410.6171 421.9587 56.7532 0.1144 3144 +3146 2 411.5277 421.2711 56.7294 0.1144 3145 +3147 2 412.5356 420.7438 56.6969 0.1144 3146 +3148 2 413.6075 420.3479 56.6518 0.1144 3147 +3149 2 414.6794 419.9521 56.5989 0.1144 3148 +3150 2 415.6987 419.4568 56.553 0.1144 3149 +3151 2 416.4618 418.6491 56.5513 0.1144 3150 +3152 2 417.0029 417.655 56.6028 0.1144 3151 +3153 2 417.6687 416.75 56.6616 0.1144 3152 +3154 2 418.5541 416.035 56.6656 0.1144 3153 +3155 2 419.4465 415.3281 56.5796 0.1144 3154 +3156 2 420.2164 414.4838 56.392 0.1144 3155 +3157 2 420.8662 413.5457 56.1036 0.1144 3156 +3158 2 420.7174 413.0641 55.5923 0.1144 3157 +3159 2 419.9658 413.0561 54.773 0.1144 3158 +3160 2 419.4224 413.1476 53.7118 0.1144 3159 +3161 2 418.5164 413.4496 52.7411 0.1144 3160 +3162 2 417.4033 413.6967 52.0366 0.1144 3161 +3163 2 416.3828 414.1783 51.5584 0.1144 3162 +3164 2 415.6106 414.9986 51.2845 0.1144 3163 +3165 2 415.0878 416.0087 51.1692 0.1144 3164 +3166 2 414.8201 417.115 51.142 0.1144 3165 +3167 2 414.438 418.1858 51.1322 0.1144 3166 +3168 2 413.9152 419.2016 51.1154 0.1144 3167 +3169 2 412.936 419.538 51.0964 0.1144 3168 +3170 2 412.166 418.7269 51.077 0.1144 3169 +3171 2 411.3298 417.9821 50.9832 0.1144 3170 +3172 2 410.3116 417.4639 50.9211 0.1144 3171 +3173 2 409.1985 417.2042 50.8976 0.1144 3172 +3174 2 408.0556 417.2351 50.9144 0.1144 3173 +3175 2 406.9791 417.6183 50.9737 0.1144 3174 +3176 2 405.9209 418.0451 51.1008 0.1144 3175 +3177 2 404.8261 418.3356 51.3184 0.1144 3176 +3178 2 403.7325 418.6274 51.5922 0.1144 3177 +3179 2 402.6377 418.9179 51.9036 0.1144 3178 +3180 2 401.544 419.2085 52.2343 0.1144 3179 +3181 2 400.4503 419.5002 52.5692 0.1144 3180 +3182 2 399.3704 419.8652 52.8702 0.1144 3181 +3183 2 398.2939 420.2438 53.1325 0.1144 3182 +3184 2 397.2174 420.6236 53.3638 0.1144 3183 +3185 2 396.9222 421.1899 53.5648 0.1144 3184 +3186 2 396.3971 422.1966 53.7592 0.1144 3185 +3187 2 395.872 423.2034 53.9414 0.1144 3186 +3188 2 395.3458 424.2101 54.1061 0.1144 3187 +3189 2 394.8207 425.2168 54.2447 0.1144 3188 +3190 2 393.8872 425.4056 54.175 0.1144 3189 +3191 2 393.0086 424.7008 54.0652 0.1144 3190 +3192 2 392.0477 424.0819 53.942 0.1144 3191 +3193 2 390.9414 423.8863 53.7488 0.1144 3192 +3194 2 389.9576 423.3086 53.5696 0.1144 3193 +3195 2 389.0366 422.6302 53.429 0.1144 3194 +3196 2 387.9396 422.311 53.3319 0.1144 3195 +3197 2 386.8322 422.0433 53.2162 0.1144 3196 +3198 2 385.7408 421.7242 53.0818 0.1144 3197 +3199 2 384.6597 421.3489 52.9855 0.1144 3198 +3200 2 383.5638 421.0195 52.9124 0.1144 3199 +3201 2 382.4575 420.7323 52.857 0.1144 3200 +3202 2 381.3432 420.4715 52.8153 0.1144 3201 +3203 2 380.2015 420.3971 52.7842 0.1144 3202 +3204 2 379.0621 420.4189 52.7556 0.1144 3203 +3205 2 378.1515 419.7302 52.7187 0.1144 3204 +3206 2 377.3827 418.887 52.6512 0.1144 3205 +3207 2 376.7055 418.0622 52.5384 0.1144 3206 +3208 2 377.123 416.9972 52.4496 0.1144 3207 +3209 2 377.5417 415.9321 52.3835 0.1144 3208 +3210 2 377.9593 414.8682 52.3387 0.1144 3209 +3211 2 378.378 413.8031 52.313 0.1144 3210 +3212 2 378.7956 412.738 52.3043 0.1144 3211 +3213 2 379.2143 411.673 52.3062 0.1144 3212 +3214 2 379.633 410.6091 52.3088 0.1144 3213 +3215 2 380.0505 409.544 52.3124 0.1144 3214 +3216 2 380.4692 408.4789 52.3172 0.1144 3215 +3217 2 380.7426 407.4196 52.3242 0.1144 3216 +3218 2 380.2038 406.414 52.334 0.1144 3217 +3219 2 379.5403 405.4816 52.3477 0.1144 3218 +3220 2 378.8756 404.5504 52.3664 0.1144 3219 +3221 2 378.211 403.6192 52.3925 0.1144 3220 +3222 2 377.5475 402.688 52.43 0.1144 3221 +3223 2 376.8828 401.7568 52.484 0.1144 3222 +3224 2 376.2181 400.8256 52.5568 0.1144 3223 +3225 2 375.558 399.8909 52.6478 0.1144 3224 +3226 2 375.3178 399.0924 52.7797 0.1144 3225 +3227 2 376.3714 398.8407 53.0354 0.1144 3226 +3228 2 377.2935 398.4575 53.3484 0.1144 3227 +3229 2 377.9753 397.5389 53.59 0.1144 3228 +3230 2 378.2339 396.4498 53.7636 0.1144 3229 +3231 2 378.338 395.3103 53.874 0.1144 3230 +3232 2 378.4306 394.1698 53.9249 0.1144 3231 +3233 2 378.5233 393.0292 53.926 0.1144 3232 +3234 2 378.6915 391.8989 53.9017 0.1144 3233 +3235 2 379.3115 390.962 53.8709 0.1144 3234 +3236 2 380.0219 390.0651 53.8342 0.1144 3235 +3237 2 380.6706 389.1373 53.7412 0.1144 3236 +3238 2 381.0893 388.0814 53.6357 0.1144 3237 +3239 2 381.5412 387.0301 53.5497 0.1144 3238 +3240 2 381.9816 385.9753 53.4848 0.1144 3239 +3241 2 382.1086 384.845 53.4394 0.1144 3240 +3242 2 382.0136 383.7068 53.4108 0.1144 3241 +3243 2 381.7608 382.5914 53.3966 0.1144 3242 +3244 2 381.4737 381.484 53.3845 0.1144 3243 +3245 2 381.3421 380.3491 53.3686 0.1144 3244 +3246 2 381.143 379.2234 53.3467 0.1144 3245 +3247 2 380.8136 378.1286 53.3156 0.1144 3246 +3248 2 380.5985 377.0052 53.2717 0.1144 3247 +3249 2 380.4555 375.8704 53.2104 0.1144 3248 +3250 2 380.213 374.7527 53.1261 0.1144 3249 +3251 2 379.6227 373.7768 53.0155 0.1144 3250 +3252 2 379.0713 372.7804 52.8374 0.1144 3251 +3253 2 378.4466 371.8309 52.5896 0.1144 3252 +3254 2 377.8014 370.9008 52.2701 0.1144 3253 +3255 2 377.3953 369.8518 51.8826 0.1144 3254 +3256 2 377.6172 368.9308 51.9565 0.1144 3255 +3257 2 377.8849 367.8189 51.8686 0.1144 3256 +3258 2 378.4158 366.8144 51.8336 0.1144 3257 +3259 2 379.0049 365.8329 51.7877 0.1144 3258 +3260 2 379.6147 364.8662 51.7202 0.1144 3259 +3261 2 380.2667 363.9304 51.613 0.1144 3260 +3262 2 380.9268 363.0015 51.4749 0.1144 3261 +3263 2 381.5858 362.0726 51.3184 0.1144 3262 +3264 2 382.2459 361.1448 51.1557 0.1144 3263 +3265 2 382.4701 360.0431 51.0224 0.1144 3264 +3266 2 382.3237 358.914 50.9292 0.1144 3265 +3267 2 382.1326 357.786 50.8721 0.1144 3266 +3268 2 381.9427 356.658 50.8418 0.1144 3267 +3269 2 382.3237 355.6044 50.8298 0.1144 3268 +3270 2 382.6165 354.4981 50.827 0.1144 3269 +3271 2 377.0521 370.8459 51.0068 0.1144 3255 +3272 2 376.7009 371.8561 50.4442 0.1144 3271 +3273 2 376.2753 372.9028 49.9542 0.1144 3272 +3274 2 375.7182 373.8981 49.5768 0.1144 3273 +3275 2 375.2103 374.8957 49.2486 0.1144 3274 +3276 2 374.9792 375.9836 48.925 0.1144 3275 +3277 2 374.7824 377.0979 48.6724 0.1144 3276 +3278 2 374.1189 377.9204 48.4949 0.1144 3277 +3279 2 373.0252 378.0874 48.358 0.1144 3278 +3280 2 371.8847 378.1412 48.2482 0.1144 3279 +3281 2 370.751 378.2933 48.1611 0.1144 3280 +3282 2 369.6344 378.5404 48.0855 0.1144 3281 +3283 2 368.7215 379.1502 47.9531 0.1144 3282 +3284 2 367.7937 378.958 47.728 0.1144 3283 +3285 2 366.9369 378.203 47.5465 0.1144 3284 +3286 2 365.9233 377.6733 47.4102 0.1144 3285 +3287 2 364.9635 377.051 47.3164 0.1144 3286 +3288 2 363.9762 376.4721 47.2606 0.1144 3287 +3289 2 362.886 376.1255 47.2391 0.1144 3288 +3290 2 361.8197 375.7125 47.2385 0.1144 3289 +3291 2 360.8771 375.065 47.2385 0.1144 3290 +3292 2 360.0088 374.3191 47.2385 0.1144 3291 +3293 2 359.2309 373.4805 47.2385 0.1144 3292 +3294 2 358.453 372.642 47.2385 0.1144 3293 +3295 2 396.2885 420.3983 54.5493 0.1144 3184 +3296 2 395.2303 420.0459 54.4611 0.1144 3295 +3297 2 394.3345 419.3401 54.425 0.1144 3296 +3298 2 393.4422 418.6365 54.3746 0.1144 3297 +3299 2 392.4309 418.1045 54.3074 0.1144 3298 +3300 2 391.3864 417.6389 54.2231 0.1144 3299 +3301 2 390.3305 417.2546 54.0772 0.1144 3300 +3302 2 389.2449 417.0006 53.8432 0.1144 3301 +3303 2 388.1295 416.7764 53.5984 0.1144 3302 +3304 2 386.9969 416.6334 53.3792 0.1144 3303 +3305 2 385.854 416.5739 53.1798 0.1144 3304 +3306 2 384.7123 416.5132 52.9939 0.1144 3305 +3307 2 383.6152 416.3565 52.7528 0.1144 3306 +3308 2 382.5971 415.9653 52.4171 0.1144 3307 +3309 2 381.6327 415.3761 52.0724 0.1144 3308 +3310 2 380.6122 414.8819 51.7619 0.1144 3309 +3311 2 379.5231 414.581 51.4402 0.1144 3310 +3312 2 378.4478 414.3762 51.0521 0.1144 3311 +3313 2 377.377 414.1749 50.6229 0.1144 3312 +3314 2 376.3131 413.826 50.2508 0.1144 3313 +3315 2 375.2171 413.5182 49.9713 0.1144 3314 +3316 2 374.0869 413.3489 49.7678 0.1144 3315 +3317 2 372.9497 413.2174 49.6289 0.1144 3316 +3318 2 371.8149 413.0755 49.5373 0.1144 3317 +3319 2 370.7464 412.7129 49.4659 0.1144 3318 +3320 2 369.6916 412.2782 49.3797 0.1144 3319 +3321 2 368.6174 412.3376 49.224 0.1144 3320 +3322 2 367.5489 412.6911 49.0123 0.1144 3321 +3323 2 366.4953 413.1224 48.8155 0.1144 3322 +3324 2 365.4085 413.4633 48.6556 0.1144 3323 +3325 2 364.8216 412.7358 48.515 0.1144 3324 +3326 2 364.8182 411.6101 48.4114 0.1144 3325 +3327 2 364.6031 410.4969 48.3434 0.1144 3326 +3328 2 364.03 409.5188 48.2955 0.1144 3327 +3329 2 363.2131 408.7237 48.2471 0.1144 3328 +3330 2 362.5633 407.7891 48.1894 0.1144 3329 +3331 2 362.1549 406.724 48.1188 0.1144 3330 +3332 2 361.8003 405.6361 48.0329 0.1144 3331 +3333 2 361.2763 404.6214 47.9332 0.1144 3332 +3334 2 360.8062 403.7473 47.6372 0.1144 3333 +3335 2 360.1392 402.8413 47.3505 0.1144 3334 +3336 2 359.4139 401.9581 47.1397 0.1144 3335 +3337 2 358.8431 400.9674 47.0067 0.1144 3336 +3338 2 358.6566 399.8429 46.9504 0.1144 3337 +3339 2 358.8739 398.7218 46.9759 0.1144 3338 +3340 2 359.4025 397.7082 47.0708 0.1144 3339 +3341 2 359.8795 396.6774 47.2388 0.1144 3340 +3342 2 360.2788 395.6215 47.4667 0.1144 3341 +3343 2 360.6792 394.5656 47.7296 0.1144 3342 +3344 2 361.0784 393.5097 48.3633 0.1144 3343 +3345 2 407.9332 423.2972 55.9933 0.1144 3142 +3346 2 407.7353 423.6049 53.9885 0.1144 3345 +3347 2 407.5328 424.6722 53.2087 0.1144 3346 +3348 2 407.3304 425.7545 52.4398 0.1144 3347 +3349 2 407.129 426.8367 51.7168 0.1144 3348 +3350 2 406.9265 427.9189 51.0709 0.1144 3349 +3351 2 406.7229 429.0011 50.5288 0.1144 3350 +3352 2 406.3076 430.0639 50.2415 0.1144 3351 +3353 2 405.8901 431.1267 50.1192 0.1144 3352 +3354 2 405.4725 432.1895 50.1225 0.1144 3353 +3355 2 405.0549 433.2511 50.2146 0.1144 3354 +3356 2 404.6362 434.3139 50.363 0.1144 3355 +3357 2 404.2175 435.3767 50.5378 0.1144 3356 +3358 2 403.8 436.4394 50.7128 0.1144 3357 +3359 2 403.3813 437.5011 50.8878 0.1144 3358 +3360 2 402.9637 438.5638 51.0625 0.1144 3359 +3361 2 402.5461 439.6266 51.2369 0.1144 3360 +3362 2 402.1286 440.6882 51.4108 0.1144 3361 +3363 2 401.7099 441.751 51.5841 0.1144 3362 +3364 2 401.2912 442.8138 51.7569 0.1144 3363 +3365 2 400.8736 443.8766 51.9282 0.1144 3364 +3366 2 400.4561 444.9382 52.0979 0.1144 3365 +3367 2 400.0374 446.001 52.2656 0.1144 3366 +3368 2 399.6198 447.0638 52.43 0.1144 3367 +3369 2 399.2022 448.1254 52.5902 0.1144 3368 +3370 2 398.7835 449.1882 52.7447 0.1144 3369 +3371 2 398.144 450.1343 52.8884 0.1144 3370 +3372 2 397.4416 451.0346 53.0194 0.1144 3371 +3373 2 396.7381 451.9361 53.1373 0.1144 3372 +3374 2 396.0345 452.8364 53.2423 0.1144 3373 +3375 2 395.1834 453.5994 53.3198 0.1144 3374 +3376 2 394.2865 454.3099 53.37 0.1144 3375 +3377 2 393.417 455.0535 53.3994 0.1144 3376 +3378 2 392.6059 455.8611 53.4142 0.1144 3377 +3379 2 391.7971 456.6688 53.419 0.1144 3378 +3380 2 390.9414 457.4284 53.4181 0.1144 3379 +3381 2 390.0834 458.1857 53.4153 0.1144 3380 +3382 2 389.2266 458.9431 53.4117 0.1144 3381 +3383 2 388.3686 459.7004 53.4066 0.1144 3382 +3384 2 387.4568 460.3914 53.3996 0.1144 3383 +3385 2 386.4901 461.0023 53.3896 0.1144 3384 +3386 2 385.512 461.596 53.3753 0.1144 3385 +3387 2 384.527 462.1783 53.3557 0.1144 3386 +3388 2 383.542 462.7594 53.3305 0.1144 3387 +3389 2 382.9723 463.8462 53.2258 0.1144 3388 +3390 2 382.5936 464.9193 53.1471 0.1144 3389 +3391 2 382.2973 466.0244 53.0743 0.1144 3390 +3392 2 381.9633 467.1181 53.006 0.1144 3391 +3393 2 381.6018 468.2037 52.9357 0.1144 3392 +3394 2 381.2277 469.2848 52.8553 0.1144 3393 +3395 2 380.8182 470.3522 52.7576 0.1144 3394 +3396 2 380.2965 471.368 52.6338 0.1144 3395 +3397 2 379.7256 472.3599 52.4784 0.1144 3396 +3398 2 378.9866 473.1252 52.1847 0.1144 3397 +3399 2 378.1801 473.799 51.7474 0.1144 3398 +3400 2 377.3701 474.5678 51.3282 0.1144 3399 +3401 2 376.5613 475.3778 50.9846 0.1144 3400 +3402 2 375.7525 476.1866 50.7102 0.1144 3401 +3403 2 374.9277 476.9691 50.4616 0.1144 3402 +3404 2 374.0926 477.7127 50.197 0.1144 3403 +3405 2 373.2689 478.4917 49.9587 0.1144 3404 +3406 2 372.4578 479.2971 49.7568 0.1144 3405 +3407 2 371.7771 480.2112 49.5785 0.1144 3406 +3408 2 371.2566 481.227 49.4116 0.1144 3407 +3409 2 370.775 482.2646 49.2456 0.1144 3408 +3410 2 370.6434 483.3812 49.0652 0.1144 3409 +3411 2 370.664 484.5195 48.8166 0.1144 3410 +3412 2 370.7407 485.5777 48.3941 0.1144 3411 +3413 2 370.7224 486.6656 47.8646 0.1144 3412 +3414 2 370.4524 487.7581 47.3211 0.1144 3413 +3415 2 370.1309 488.8404 46.7681 0.1144 3414 +3416 2 369.9593 489.9111 46.1636 0.1144 3415 +3417 2 369.9627 491.0357 45.607 0.1144 3416 +3418 2 370.0062 492.1362 45.0593 0.1144 3417 +3419 2 370.2853 493.0251 44.4016 0.1144 3418 +3420 2 371.0221 492.444 43.302 0.1144 3419 +3421 2 371.9933 491.8422 43.472 0.1144 3420 +3422 2 373.0813 491.5013 43.5487 0.1144 3421 +3423 2 374.183 491.1913 43.6489 0.1144 3422 +3424 2 375.2938 490.9179 43.7668 0.1144 3423 +3425 2 376.3829 490.5701 43.8967 0.1144 3424 +3426 2 377.2111 489.9981 44.2106 0.1144 3425 +3427 2 378.116 489.3277 44.989 0.1144 3426 +3428 2 369.7728 493.4655 43.9057 0.1144 3419 +3429 2 368.9457 494.2549 43.5467 0.1144 3428 +3430 2 368.3131 495.1964 43.2964 0.1144 3429 +3431 2 368.0843 496.2947 43.118 0.1144 3430 +3432 2 367.7434 497.3734 42.9839 0.1144 3431 +3433 2 367.0558 498.2715 42.861 0.1144 3432 +3434 2 366.1383 498.9407 42.6835 0.1144 3433 +3435 2 365.1602 499.507 42.4091 0.1144 3434 +3436 2 365.1225 500.5732 42.0994 0.1144 3435 +3437 2 365.3764 501.5799 41.6128 0.1144 3436 +3438 2 365.7997 502.613 41.0799 0.1144 3437 +3439 2 365.9462 503.6803 40.4796 0.1144 3438 +3440 2 366.1669 504.679 39.8079 0.1144 3439 +3441 2 366.8671 505.5565 39.2619 0.1144 3440 +3442 2 366.8968 506.6696 38.7999 0.1144 3441 +3443 2 366.3042 507.6477 38.2407 0.1144 3442 +3444 2 382.7195 462.9242 53.4246 0.1144 3388 +3445 2 381.6601 462.6759 53.7054 0.1144 3444 +3446 2 380.857 461.8923 53.8129 0.1144 3445 +3447 2 380.245 460.929 53.9476 0.1144 3446 +3448 2 379.4465 460.1854 54.1898 0.1144 3447 +3449 2 378.5393 459.5894 54.553 0.1144 3448 +3450 2 377.5909 458.9934 54.9452 0.1144 3449 +3451 2 376.8176 458.1743 55.3036 0.1144 3450 +3452 2 376.4126 457.1207 55.5946 0.1144 3451 +3453 2 376.2616 455.9904 55.8169 0.1144 3452 +3454 2 376.1472 454.8601 56.021 0.1144 3453 +3455 2 375.9424 453.7722 56.2652 0.1144 3454 +3456 2 375.9035 452.6396 56.4631 0.1144 3455 +3457 2 375.9035 451.4956 56.6079 0.1144 3456 +3458 2 375.6999 450.3745 56.7092 0.1144 3457 +3459 2 375.4082 449.2682 56.7717 0.1144 3458 +3460 2 375.184 448.1471 56.8 0.1144 3459 +3461 2 375.0146 447.0157 56.8056 0.1144 3460 +3462 2 374.4655 446.0284 56.8084 0.1144 3461 +3463 2 373.8455 445.0675 56.8123 0.1144 3462 +3464 2 373.2357 444.0997 56.8176 0.1144 3463 +3465 2 372.7003 443.0895 56.8252 0.1144 3464 +3466 2 372.3342 442.0084 56.8358 0.1144 3465 +3467 2 372.4715 440.8884 56.8506 0.1144 3466 +3468 2 372.6031 439.7525 56.8714 0.1144 3467 +3469 2 372.6752 438.6119 56.9008 0.1144 3468 +3470 2 372.7724 437.4713 56.9411 0.1144 3469 +3471 2 372.849 436.3308 56.9968 0.1144 3470 +3472 2 372.8559 435.1868 57.0763 0.1144 3471 +3473 2 372.7941 434.045 57.1911 0.1144 3472 +3474 2 372.7003 432.9045 57.3485 0.1144 3473 +3475 2 372.6328 431.7628 57.5492 0.1144 3474 +3476 2 372.6019 430.6245 57.8281 0.1144 3475 +3477 2 372.6797 429.6498 58.3271 0.1144 3476 +3478 2 373.1694 428.96 59.0349 0.1144 3477 +3479 2 374.1852 428.5081 59.6613 0.1144 3478 +3480 2 375.2823 428.1889 60.1311 0.1144 3479 +3481 2 376.3943 427.9178 60.4545 0.1144 3480 +3482 2 377.472 427.5357 60.6446 0.1144 3481 +3483 2 378.3288 426.7772 60.7225 0.1144 3482 +3484 2 379.1925 426.0267 60.7351 0.1144 3483 +3485 2 429.2666 418.2601 57.3611 0.1144 3098 +3486 2 429.9129 417.3163 57.3611 0.1144 3485 +3487 2 430.5604 416.3725 57.3611 0.1144 3486 +3488 2 431.1496 415.3921 57.3611 0.1144 3487 +3489 2 431.8966 414.5284 57.3611 0.1144 3488 +3490 2 432.4549 413.532 57.3611 0.1144 3489 +3491 2 433.1653 412.6362 57.3611 0.1144 3490 +3492 2 433.9169 411.7736 57.3611 0.1144 3491 +3493 2 434.3882 410.7338 57.3611 0.1144 3492 +3494 2 434.831 409.679 57.3611 0.1144 3493 +3495 2 435.2485 408.6139 57.3611 0.1144 3494 +3496 2 435.7976 420.1752 56.621 0.1144 3091 +3497 2 436.2209 419.1181 56.7854 0.1144 3496 +3498 2 436.8067 418.1389 56.9467 0.1144 3497 +3499 2 437.159 417.0544 57.1192 0.1144 3498 +3500 2 437.2425 415.9161 57.3157 0.1144 3499 +3501 2 437.1304 414.7789 57.547 0.1144 3500 +3502 2 436.9725 413.6521 57.8614 0.1144 3501 +3503 2 437.2574 412.5596 58.2613 0.1144 3502 +3504 2 437.5663 411.7645 58.9562 0.1144 3503 +3505 2 438.0959 410.8939 59.7299 0.1144 3504 +3506 2 438.8281 410.2819 60.5066 0.1144 3505 +3507 2 438.8281 410.4992 61.3528 0.1144 3506 +3508 2 438.112 411.379 62.0312 0.1144 3507 +3509 2 437.2071 411.6924 62.5881 0.1144 3508 +3510 2 436.2061 411.1994 62.998 0.1144 3509 +3511 2 435.2119 410.6628 63.2744 0.1144 3510 +3512 2 434.188 410.8298 63.441 0.1144 3511 +3513 2 433.1195 411.1696 63.5292 0.1144 3512 +3514 2 432.0122 411.0255 63.5841 0.1144 3513 +3515 2 430.9711 410.5633 63.6188 0.1144 3514 +3516 2 429.9449 410.0565 63.6516 0.1144 3515 +3517 2 428.9954 409.4319 63.6941 0.1144 3516 +3518 2 428.3125 408.5407 63.7487 0.1144 3517 +3519 2 427.9246 407.4734 63.814 0.1144 3518 +3520 2 427.2874 406.6085 63.9528 0.1144 3519 +3521 2 426.2395 406.422 64.1561 0.1144 3520 +3522 2 425.1024 406.3511 64.3294 0.1144 3521 +3523 2 424.1357 405.794 64.4532 0.1144 3522 +3524 2 423.0935 405.3329 64.5299 0.1144 3523 +3525 2 422.0113 404.96 64.5632 0.1144 3524 +3526 2 420.8856 404.7666 64.559 0.1144 3525 +3527 2 419.7473 404.7152 64.5072 0.1144 3526 +3528 2 418.6113 404.6866 64.4148 0.1144 3527 +3529 2 417.4879 404.8788 64.3437 0.1144 3528 +3530 2 416.3954 405.2162 64.2978 0.1144 3529 +3531 2 415.6015 406.017 64.3012 0.1144 3530 +3532 2 415.1267 407.0444 64.3664 0.1144 3531 +3533 2 413.9884 407.089 64.4109 0.1144 3532 +3534 2 412.8444 407.0981 64.4308 0.1144 3533 +3535 2 411.7004 407.1084 64.4213 0.1144 3534 +3536 2 410.5576 407.1176 64.3866 0.1144 3535 +3537 2 409.4136 407.1279 64.3311 0.1144 3536 +3538 2 408.2696 407.137 64.2645 0.1144 3537 +3539 2 407.1267 407.1462 64.199 0.1144 3538 +3540 2 405.9827 407.1565 64.1354 0.1144 3539 +3541 2 404.8399 407.1656 64.0746 0.1144 3540 +3542 2 403.6959 407.1759 64.0178 0.1144 3541 +3543 2 402.5519 407.1851 63.9663 0.1144 3542 +3544 2 401.409 407.1942 63.922 0.1144 3543 +3545 2 400.265 407.2045 63.889 0.1144 3544 +3546 2 399.121 407.2137 63.8725 0.1144 3545 +3547 2 397.9782 407.224 63.875 0.1144 3546 +3548 2 396.8342 407.2331 63.8985 0.1144 3547 +3549 2 396.3319 407.5431 63.9537 0.1144 3548 +3550 2 395.3527 408.0305 64.1449 0.1144 3549 +3551 2 394.4615 408.7249 64.3745 0.1144 3550 +3552 2 393.7408 409.6103 64.5772 0.1144 3551 +3553 2 393.1436 410.585 64.7595 0.1144 3552 +3554 2 392.3428 411.3835 64.9642 0.1144 3553 +3555 2 391.5763 412.2312 65.1356 0.1144 3554 +3556 2 390.7458 413.0172 65.2571 0.1144 3555 +3557 2 389.8237 413.6876 65.38 0.1144 3556 +3558 2 388.8124 414.2012 65.5262 0.1144 3557 +3559 2 387.6741 414.1097 65.6298 0.1144 3558 +3560 2 386.537 413.977 65.6956 0.1144 3559 +3561 2 385.4102 413.7837 65.735 0.1144 3560 +3562 2 384.2868 413.564 65.7524 0.1144 3561 +3563 2 383.145 413.4942 65.749 0.1144 3562 +3564 2 382.0068 413.5983 65.7303 0.1144 3563 +3565 2 380.8914 413.8546 65.7056 0.1144 3564 +3566 2 380.7381 414.0514 65.8549 0.1144 3565 +3567 2 380.0402 414.9517 66.1276 0.1144 3566 +3568 2 379.3412 415.8509 66.2477 0.1144 3567 +3569 2 378.6434 416.7512 66.3818 0.1144 3568 +3570 2 377.8678 417.5852 66.5073 0.1144 3569 +3571 2 376.8714 418.1137 66.5809 0.1144 3570 +3572 2 375.8189 418.5599 66.5974 0.1144 3571 +3573 2 374.7664 419.0072 66.5647 0.1144 3572 +3574 2 373.7139 419.4545 66.4969 0.1144 3573 +3575 2 372.6614 419.9018 66.4073 0.1144 3574 +3576 2 371.6101 420.3491 66.3071 0.1144 3575 +3577 2 370.5576 420.7964 66.2052 0.1144 3576 +3578 2 369.5051 421.2437 66.1032 0.1144 3577 +3579 2 368.4538 421.691 66.0016 0.1144 3578 +3580 2 367.4013 422.1383 65.9 0.1144 3579 +3581 2 366.3488 422.5856 65.7989 0.1144 3580 +3582 2 365.2975 423.0329 65.6978 0.1144 3581 +3583 2 364.245 423.4802 65.5973 0.1144 3582 +3584 2 363.1925 423.9275 65.4976 0.1144 3583 +3585 2 362.1412 424.3748 65.3988 0.1144 3584 +3586 2 361.0887 424.8221 65.301 0.1144 3585 +3587 2 360.0362 425.2694 65.2053 0.1144 3586 +3588 2 358.9849 425.7167 65.1118 0.1144 3587 +3589 2 357.9324 426.164 65.0222 0.1144 3588 +3590 2 356.88 426.6113 64.9376 0.1144 3589 +3591 2 355.8286 427.0586 64.8589 0.1144 3590 +3592 2 354.8345 427.6192 64.7892 0.1144 3591 +3593 2 354.227 428.5584 64.7388 0.1144 3592 +3594 2 353.7031 429.5754 64.7069 0.1144 3593 +3595 2 353.1791 430.5924 64.6887 0.1144 3594 +3596 2 352.654 431.6095 64.6808 0.1144 3595 +3597 2 352.1632 432.6425 64.6797 0.1144 3596 +3598 2 351.8727 433.7453 64.6822 0.1144 3597 +3599 2 351.6233 434.8619 64.6862 0.1144 3598 +3600 2 351.2046 435.9223 64.6929 0.1144 3599 +3601 2 350.4438 436.7632 64.7021 0.1144 3600 +3602 2 349.7151 437.6452 64.7125 0.1144 3601 +3603 2 349.2243 438.6737 64.7228 0.1144 3602 +3604 2 348.7495 439.7124 64.7461 0.1144 3603 +3605 2 348.1798 440.6882 64.822 0.1144 3604 +3606 2 347.601 441.6664 64.8388 0.1144 3605 +3607 2 347.0644 442.6708 64.8052 0.1144 3606 +3608 2 346.6846 443.7484 64.769 0.1144 3607 +3609 2 346.3643 444.8467 64.7354 0.1144 3608 +3610 2 346.0611 445.9495 64.7055 0.1144 3609 +3611 2 345.7854 447.0592 64.6814 0.1144 3610 +3612 2 345.5177 448.1712 64.6724 0.1144 3611 +3613 2 345.1425 449.2511 64.6719 0.1144 3612 +3614 2 344.725 450.3173 64.6722 0.1144 3613 +3615 2 344.4607 451.4293 64.6724 0.1144 3614 +3616 2 344.2193 452.547 64.6727 0.1144 3615 +3617 2 344.0683 453.6807 64.673 0.1144 3616 +3618 2 343.9493 454.8178 64.6736 0.1144 3617 +3619 2 343.8212 455.9549 64.6744 0.1144 3618 +3620 2 343.5558 457.0669 64.6755 0.1144 3619 +3621 2 343.2172 458.1594 64.6769 0.1144 3620 +3622 2 342.7493 459.2027 64.6792 0.1144 3621 +3623 2 342.3088 460.2587 64.682 0.1144 3622 +3624 2 341.6934 461.2208 64.6862 0.1144 3623 +3625 2 340.9612 462.0994 64.6918 0.1144 3624 +3626 2 340.1009 462.8521 64.6999 0.1144 3625 +3627 2 339.3768 463.7341 64.7122 0.1144 3626 +3628 2 338.6652 464.6299 64.729 0.1144 3627 +3629 2 337.885 465.4673 64.7478 0.1144 3628 +3630 2 337.17 466.3596 64.7662 0.1144 3629 +3631 2 336.5614 467.3126 64.8413 0.1144 3630 +3632 2 335.8487 468.2037 64.9211 0.1144 3631 +3633 2 335.0753 469.0457 64.9662 0.1144 3632 +3634 2 334.2665 469.8214 64.9219 0.1144 3633 +3635 2 333.4714 470.6302 64.8466 0.1144 3634 +3636 2 332.7713 471.5202 64.8612 0.1144 3635 +3637 2 332.0757 472.4125 64.9533 0.1144 3636 +3638 2 331.3573 473.2991 65.0888 0.1144 3637 +3639 2 330.6183 474.1708 65.2308 0.1144 3638 +3640 2 329.7145 474.871 65.3764 0.1144 3639 +3641 2 328.7238 475.4418 65.5273 0.1144 3640 +3642 2 327.7068 475.9532 65.7 0.1144 3641 +3643 2 326.6898 476.4623 65.8952 0.1144 3642 +3644 2 325.6728 476.9725 66.1097 0.1144 3643 +3645 2 324.6546 477.4816 66.3356 0.1144 3644 +3646 2 323.6376 477.9907 66.5588 0.1144 3645 +3647 2 322.6206 478.5009 66.7635 0.1144 3646 +3648 2 321.6024 479.01 66.9427 0.1144 3647 +3649 2 320.7536 479.7742 67.0608 0.1144 3648 +3650 2 320.0878 480.7019 67.1006 0.1144 3649 +3651 2 319.4208 481.6297 67.083 0.1144 3650 +3652 2 318.755 482.5575 66.9211 0.1144 3651 +3653 2 381.1488 413.5274 65.6687 0.1144 3565 +3654 2 381.8569 412.6294 65.611 0.1144 3653 +3655 2 382.5639 411.7313 65.5379 0.1144 3654 +3656 2 383.2709 410.8333 65.4559 0.1144 3655 +3657 2 383.9779 409.9352 65.3708 0.1144 3656 +3658 2 384.6849 409.0372 65.2896 0.1144 3657 +3659 2 385.3919 408.1392 65.2196 0.1144 3658 +3660 2 386.1 407.2411 65.168 0.1144 3659 +3661 2 386.807 406.3431 65.1392 0.1144 3660 +3662 2 387.514 405.445 65.1375 0.1144 3661 +3663 2 388.221 404.5516 65.2067 0.1144 3662 +3664 2 388.9268 403.6615 65.3562 0.1144 3663 +3665 2 389.6327 402.7715 65.5687 0.1144 3664 +3666 2 390.2779 401.8357 65.8224 0.1144 3665 +3667 2 390.835 400.8427 66.0974 0.1144 3666 +3668 2 391.3647 399.8326 66.383 0.1144 3667 +3669 2 391.8944 398.8236 66.6697 0.1144 3668 +3670 2 392.424 397.8134 66.9558 0.1144 3669 +3671 2 393.3461 397.4656 67.2865 0.1144 3670 +3672 2 394.267 398.0891 67.6595 0.1144 3671 +3673 2 395.1868 398.7183 68.0551 0.1144 3672 +3674 2 396.3148 398.5559 68.3771 0.1144 3673 +3675 2 397.4416 398.3591 68.6314 0.1144 3674 +3676 2 398.5685 398.1635 68.8282 0.1144 3675 +3677 2 399.6953 397.9679 68.9805 0.1144 3676 +3678 2 400.821 397.7722 69.1079 0.1144 3677 +3679 2 401.9478 397.5755 69.2311 0.1144 3678 +3680 2 403.0747 397.3798 69.3686 0.1144 3679 +3681 2 403.101 396.1089 69.7374 0.1144 3680 +3682 2 402.9637 394.99 70.002 0.1144 3681 +3683 2 402.8276 393.87 70.2898 0.1144 3682 +3684 2 402.6903 392.7501 70.5802 0.1144 3683 +3685 2 402.6949 391.6427 70.8319 0.1144 3684 +3686 2 403.0941 390.5719 70.9758 0.1144 3685 +3687 2 403.4934 389.5011 71.0259 0.1144 3686 +3688 2 403.8938 388.4303 71.0055 0.1144 3687 +3689 2 404.2919 387.3584 70.9372 0.1144 3688 +3690 2 404.6911 386.2876 70.8406 0.1144 3689 +3691 2 405.0904 385.2168 70.7344 0.1144 3690 +3692 2 405.4885 384.1449 70.6311 0.1144 3691 +3693 2 405.8878 383.0741 70.5323 0.1144 3692 +3694 2 406.2882 382.0033 70.4393 0.1144 3693 +3695 2 406.6863 380.9314 70.3545 0.1144 3694 +3696 2 407.0855 379.8606 70.2794 0.1144 3695 +3697 2 407.5134 378.8001 70.222 0.1144 3696 +3698 2 408.4789 378.4993 71.1894 0.1144 3697 +3699 2 409.4742 378.1892 72.963 0.1144 3698 +3700 2 410.4695 377.8804 73.719 0.1144 3699 +3701 2 411.4648 377.5703 74.6147 0.1144 3700 +3702 2 412.46 377.2603 75.5978 0.1144 3701 +3703 2 413.4553 376.9503 76.6318 0.1144 3702 +3704 2 414.4506 376.6403 77.6572 0.1144 3703 +3705 2 415.4459 376.3302 78.6234 0.1144 3704 +3706 2 416.4114 375.8887 79.4998 0.1144 3705 +3707 2 417.1402 375.0329 80.2052 0.1144 3706 +3708 2 417.87 374.1761 81.3235 0.1144 3707 +3709 2 406.358 378.7544 70.1921 0.1144 3697 +3710 2 405.2151 378.7098 70.2162 0.1144 3709 +3711 2 404.0722 378.664 70.2573 0.1144 3710 +3712 2 402.9294 378.6194 70.3094 0.1144 3711 +3713 2 401.7865 378.5736 70.3671 0.1144 3712 +3714 2 400.6437 378.529 70.4262 0.1144 3713 +3715 2 399.5008 378.4832 70.4852 0.1144 3714 +3716 2 398.358 378.4386 70.5443 0.1144 3715 +3717 2 397.2151 378.3929 70.6034 0.1144 3716 +3718 2 396.0722 378.3483 70.6628 0.1144 3717 +3719 2 394.9294 378.3025 70.7218 0.1144 3718 +3720 2 393.7865 378.2579 70.7809 0.1144 3719 +3721 2 392.6437 378.2121 70.8403 0.1144 3720 +3722 2 391.5008 378.1675 70.8994 0.1144 3721 +3723 2 390.358 378.1217 70.9584 0.1144 3722 +3724 2 389.2151 378.0771 71.0178 0.1144 3723 +3725 2 388.0723 378.0314 71.0769 0.1144 3724 +3726 2 386.9294 377.9868 71.1362 0.1144 3725 +3727 2 385.7865 377.941 71.1956 0.1144 3726 +3728 2 384.6437 377.8964 71.255 0.1144 3727 +3729 2 383.5008 377.8506 71.3143 0.1144 3728 +3730 2 382.358 377.806 71.374 0.1144 3729 +3731 2 381.2151 377.7602 71.4336 0.1144 3730 +3732 2 380.0723 377.7156 71.4935 0.1144 3731 +3733 2 378.9294 377.6699 71.5537 0.1144 3732 +3734 2 377.7866 377.6252 71.6145 0.1144 3733 +3735 2 376.6437 377.5795 71.6755 0.1144 3734 +3736 2 375.5008 377.5349 71.7377 0.1144 3735 +3737 2 374.358 377.4891 71.801 0.1144 3736 +3738 2 373.2151 377.4445 71.8659 0.1144 3737 +3739 2 372.0723 377.3987 71.9331 0.1144 3738 +3740 2 370.9294 377.3541 72.0031 0.1144 3739 +3741 2 369.7866 377.3084 72.0782 0.1144 3740 +3742 2 368.6437 377.2637 72.1599 0.1144 3741 +3743 2 367.5008 377.218 72.2504 0.1144 3742 +3744 2 366.358 377.1734 72.3503 0.1144 3743 +3745 2 365.2151 377.1276 72.4601 0.1144 3744 +3746 2 364.181 377.425 72.6228 0.1144 3745 +3747 2 363.6833 378.3116 72.8232 0.1144 3746 +3748 2 363.5758 379.4488 73.0128 0.1144 3747 +3749 2 363.4671 380.5859 73.1898 0.1144 3748 +3750 2 363.3584 381.7242 73.353 0.1144 3749 +3751 2 363.2497 382.8613 73.502 0.1144 3750 +3752 2 363.1411 383.9996 73.6361 0.1144 3751 +3753 2 363.0324 385.1368 73.7624 0.1144 3752 +3754 2 362.9237 386.2739 73.8872 0.1144 3753 +3755 2 362.815 387.4122 74.0099 0.1144 3754 +3756 2 362.7063 388.5493 74.1297 0.1144 3755 +3757 2 362.5988 389.6876 74.2456 0.1144 3756 +3758 2 362.4901 390.8247 74.3554 0.1144 3757 +3759 2 362.3814 391.9619 74.4573 0.1144 3758 +3760 2 362.2728 393.1001 74.5497 0.1144 3759 +3761 2 362.06 394.1949 74.6273 0.1144 3760 +3762 2 361.3324 395.0781 74.6732 0.1144 3761 +3763 2 360.6403 395.983 74.6914 0.1144 3762 +3764 2 360.1518 397.016 74.6852 0.1144 3763 +3765 2 359.7846 398.0994 74.6609 0.1144 3764 +3766 2 359.4654 399.1919 74.6178 0.1144 3765 +3767 2 359.3807 400.3234 74.5276 0.1144 3766 +3768 2 359.3682 401.4559 74.4027 0.1144 3767 +3769 2 359.2663 402.569 74.2823 0.1144 3768 +3770 2 358.7962 403.6089 74.2526 0.1144 3769 +3771 2 358.3271 404.6477 74.3016 0.1144 3770 +3772 2 357.8569 405.6876 74.4164 0.1144 3771 +3773 2 357.3879 406.7275 74.5839 0.1144 3772 +3774 2 356.9188 407.7662 74.7846 0.1144 3773 +3775 2 356.4487 408.8061 74.9994 0.1144 3774 +3776 2 355.9785 409.846 75.2139 0.1144 3775 +3777 2 355.5094 410.8848 75.4284 0.1144 3776 +3778 2 355.0393 411.9247 75.6431 0.1144 3777 +3779 2 354.5702 412.9634 75.8576 0.1144 3778 +3780 2 354.1 414.0033 76.0721 0.1144 3779 +3781 2 353.631 415.0432 76.2866 0.1144 3780 +3782 2 353.1608 416.082 76.501 0.1144 3781 +3783 2 352.6918 417.1218 76.7155 0.1144 3782 +3784 2 352.2216 418.1617 76.9297 0.1144 3783 +3785 2 351.7525 419.2005 77.1439 0.1144 3784 +3786 2 351.2835 420.2404 77.3576 0.1144 3785 +3787 2 350.8133 421.2791 77.5712 0.1144 3786 +3788 2 350.3443 422.319 77.7843 0.1144 3787 +3789 2 349.8741 423.3589 77.9968 0.1144 3788 +3790 2 349.4051 424.3977 78.2085 0.1144 3789 +3791 2 348.9349 425.4376 78.4188 0.1144 3790 +3792 2 348.4658 426.4775 78.6276 0.1144 3791 +3793 2 347.9956 427.5162 78.8357 0.1144 3792 +3794 2 347.5255 428.5561 79.0384 0.1144 3793 +3795 2 347.0564 429.596 79.2313 0.1144 3794 +3796 2 346.4867 430.5787 79.429 0.1144 3795 +3797 2 345.8609 431.5317 79.6076 0.1144 3796 +3798 2 345.1276 432.4091 79.8554 0.1144 3797 +3799 2 403.9567 397.9713 70.1901 0.1144 3680 +3800 2 404.8399 398.5639 71.5501 0.1144 3799 +3801 2 405.723 399.1553 72.1339 0.1144 3800 +3802 2 406.6062 399.7479 72.8064 0.1144 3801 +3803 2 407.4882 400.3405 73.5168 0.1144 3802 +3804 2 408.3714 400.932 74.2188 0.1144 3803 +3805 2 407.4322 401.5852 74.7244 0.1144 3804 +3806 2 406.4929 402.2384 75.0501 0.1144 3805 +3807 2 405.5526 402.8916 75.238 0.1144 3806 +3808 2 404.6134 403.5437 75.3281 0.1144 3807 +3809 2 403.6741 404.1969 75.3567 0.1144 3808 +3810 2 396.5516 406.5845 63.4847 0.1144 3548 +3811 2 396.0951 405.5366 63.2027 0.1144 3810 +3812 2 395.6387 404.4887 63.0854 0.1144 3811 +3813 2 395.1811 403.4408 62.9364 0.1144 3812 +3814 2 394.7246 402.3928 62.7553 0.1144 3813 +3815 2 394.0828 401.4559 62.529 0.1144 3814 +3816 2 393.0338 401.1436 62.2283 0.1144 3815 +3817 2 391.9264 400.9274 61.8643 0.1144 3816 +3818 2 390.819 400.7123 61.4513 0.1144 3817 +3819 2 389.7105 400.5155 61.0005 0.1144 3818 +3820 2 388.5996 400.3325 60.5223 0.1144 3819 +3821 2 387.4888 400.1506 60.0312 0.1144 3820 +3822 2 386.3791 399.9687 59.5353 0.1144 3821 +3823 2 385.2683 399.7868 59.0369 0.1144 3822 +3824 2 384.1563 399.6209 58.5348 0.1144 3823 +3825 2 383.0352 399.5534 58.0306 0.1144 3824 +3826 2 381.9027 399.4116 57.5926 0.1144 3825 +3827 2 380.8959 399.1302 57.0615 0.1144 3826 +3828 2 379.8583 398.7229 56.5404 0.1144 3827 +3829 2 378.8608 398.2287 56.0319 0.1144 3828 +3830 2 377.909 397.7162 55.512 0.1144 3829 +3831 2 377.0327 396.9874 55.1121 0.1144 3830 +3832 2 376.1792 396.2255 54.8374 0.1144 3831 +3833 2 375.3064 395.4865 54.6753 0.1144 3832 +3834 2 374.3477 394.8619 54.5885 0.1144 3833 +3835 2 373.4016 394.219 54.5538 0.1144 3834 +3836 2 372.396 393.6756 54.5493 0.1144 3835 +3837 2 371.3195 393.2866 54.5493 0.1144 3836 +3838 2 370.1778 393.3198 54.5493 0.1144 3837 +3839 2 420.8559 435.5334 41.9849 0.1144 3062 +3840 2 419.7931 435.9567 41.9656 0.1144 3839 +3841 2 418.7303 436.3799 41.9574 0.1144 3840 +3842 2 417.6675 436.8044 41.9476 0.1144 3841 +3843 2 416.6048 437.2276 41.9367 0.1144 3842 +3844 2 415.542 437.6509 41.9252 0.1144 3843 +3845 2 414.4792 438.0742 41.9135 0.1144 3844 +3846 2 413.4164 438.4986 41.9014 0.1144 3845 +3847 2 412.3537 438.9219 41.8897 0.1144 3846 +3848 2 411.292 439.3452 41.8779 0.1144 3847 +3849 2 410.2292 439.7696 41.8664 0.1144 3848 +3850 2 409.1665 440.1929 41.855 0.1144 3849 +3851 2 408.1037 440.6162 41.8438 0.1144 3850 +3852 2 407.0409 441.0395 41.8328 0.1144 3851 +3853 2 405.9781 441.4639 41.8222 0.1144 3852 +3854 2 404.9154 441.8872 41.8121 0.1144 3853 +3855 2 403.8526 442.3104 41.8026 0.1144 3854 +3856 2 402.974 443.0243 41.795 0.1144 3855 +3857 2 402.1377 443.8056 41.7892 0.1144 3856 +3858 2 401.3255 444.6099 41.7838 0.1144 3857 +3859 2 400.5167 445.4198 41.7788 0.1144 3858 +3860 2 399.709 446.2298 41.7735 0.1144 3859 +3861 2 398.9014 447.0397 41.7682 0.1144 3860 +3862 2 398.0926 447.8485 41.7626 0.1144 3861 +3863 2 397.2849 448.6585 41.7567 0.1144 3862 +3864 2 396.4761 449.4684 41.7508 0.1144 3863 +3865 2 395.6684 450.2784 41.7449 0.1144 3864 +3866 2 394.8608 451.0884 41.739 0.1144 3865 +3867 2 394.0519 451.8972 41.7332 0.1144 3866 +3868 2 393.2443 452.7071 41.7273 0.1144 3867 +3869 2 392.4355 453.5171 41.7214 0.1144 3868 +3870 2 391.6278 454.327 41.7152 0.1144 3869 +3871 2 390.819 455.137 41.7094 0.1144 3870 +3872 2 390.0113 455.9458 41.7035 0.1144 3871 +3873 2 389.2037 456.7557 41.6976 0.1144 3872 +3874 2 388.3949 457.5657 41.6917 0.1144 3873 +3875 2 387.5872 458.3756 41.6858 0.1144 3874 +3876 2 386.7784 459.1856 41.68 0.1144 3875 +3877 2 385.9707 459.9944 41.6744 0.1144 3876 +3878 2 385.1619 460.8043 41.6685 0.1144 3877 +3879 2 384.3543 461.6143 41.6626 0.1144 3878 +3880 2 383.5466 462.4242 41.657 0.1144 3879 +3881 2 382.7378 463.2331 41.6511 0.1144 3880 +3882 2 381.9301 464.043 41.6458 0.1144 3881 +3883 2 381.1213 464.853 41.6402 0.1144 3882 +3884 2 380.3136 465.6629 41.6352 0.1144 3883 +3885 2 379.506 466.4729 41.6301 0.1144 3884 +3886 2 378.6972 467.2817 41.6256 0.1144 3885 +3887 2 377.8895 468.0916 41.6214 0.1144 3886 +3888 2 376.9915 468.8009 41.6184 0.1144 3887 +3889 2 376.0889 469.5033 41.6167 0.1144 3888 +3890 2 375.1782 470.1966 41.6156 0.1144 3889 +3891 2 374.3648 471.0008 41.615 0.1144 3890 +3892 2 373.5011 471.7501 41.6147 0.1144 3891 +3893 2 372.5802 472.4274 41.6147 0.1144 3892 +3894 2 372.0517 473.4375 41.6147 0.1144 3893 +3895 2 416.0579 454.5215 37.1199 0.1144 3044 +3896 2 415.1382 455.1999 38.1931 0.1144 3895 +3897 2 414.581 455.336 37.116 0.1144 3896 +3898 2 413.4828 455.6106 36.8259 0.1144 3897 +3899 2 413.3524 456.5624 36.6772 0.1144 3898 +3900 2 412.6923 456.9308 36.4381 0.1144 3899 +3901 2 411.6123 456.9044 36.1197 0.1144 3900 +3902 2 410.569 456.6791 35.6964 0.1144 3901 +3903 2 409.4891 456.5052 35.2526 0.1144 3902 +3904 2 408.3565 456.3885 34.8796 0.1144 3903 +3905 2 407.2743 456.6493 34.5486 0.1144 3904 +3906 2 406.3385 457.2328 34.1874 0.1144 3905 +3907 2 405.691 458.1251 33.8551 0.1144 3906 +3908 2 404.9177 458.9373 33.5821 0.1144 3907 +3909 2 403.8652 459.3126 33.3236 0.1144 3908 +3910 2 402.9088 459.8628 33.0151 0.1144 3909 +3911 2 402.2052 460.7231 32.6623 0.1144 3910 +3912 2 401.2912 461.294 32.2669 0.1144 3911 +3913 2 400.3382 460.7952 31.9026 0.1144 3912 +3914 2 399.2766 460.8913 30.9299 0.1144 3913 +3915 2 413.9015 456.6665 36.7912 0.1144 3899 +3916 2 415.0238 456.8186 36.8113 0.1144 3915 +3917 2 416.1277 457.0909 36.8267 0.1144 3916 +3918 2 417.226 457.4101 36.8749 0.1144 3917 +3919 2 418.3196 457.7453 36.9611 0.1144 3918 +3920 2 419.3984 458.124 37.0955 0.1144 3919 +3921 2 420.436 458.601 37.3103 0.1144 3920 +3922 2 421.4439 459.1147 37.6379 0.1144 3921 +3923 2 422.5044 459.5002 38.0456 0.1144 3922 +3924 2 423.4619 459.1616 38.5409 0.1144 3923 +3925 2 423.9733 458.5015 39.2496 0.1144 3924 +3926 2 423.8314 457.56 41.0525 0.1144 3925 +3927 2 415.3372 455.3909 38.6299 0.1144 3896 +3928 2 416.2387 455.5625 39.3128 0.1144 3927 +3929 2 417.0669 455.0535 40.1727 0.1144 3928 +3930 2 416.7432 454.4037 41.1757 0.1144 3929 +3931 2 415.8692 454.8521 42.1865 0.1144 3930 +3932 2 416.1517 455.7341 43.2586 0.1144 3931 +3933 2 417.2351 455.9801 44.2296 0.1144 3932 +3934 2 418.1617 456.2112 45.2281 0.1144 3933 +3935 2 419.0804 456.6802 46.1034 0.1144 3934 +3936 2 419.3492 457.6423 46.979 0.1144 3935 +3937 2 419.8217 458.6102 47.7613 0.1144 3936 +3938 2 420.4257 459.5368 48.4081 0.1144 3937 +3939 2 420.8433 460.5813 48.9143 0.1144 3938 +3940 2 421.5491 461.2436 49.3007 0.1144 3939 +3941 2 421.8752 461.8763 49.5894 0.1144 3940 +3942 2 421.5457 462.9665 49.6843 0.1144 3941 +3943 2 422.009 463.6907 49.6283 0.1144 3942 +3944 2 423.0626 464.1094 49.4637 0.1144 3943 +3945 2 424.1277 464.4995 49.2302 0.1144 3944 +3946 2 425.1916 464.8896 48.9608 0.1144 3945 +3947 2 426.2567 465.2797 48.6889 0.1144 3946 +3948 2 427.3218 465.6698 48.4439 0.1144 3947 +3949 2 428.436 465.8597 48.2656 0.1144 3948 +3950 2 429.5789 465.9169 48.1726 0.1144 3949 +3951 2 430.7171 466.0164 48.1558 0.1144 3950 +3952 2 431.8554 466.132 48.2023 0.1144 3951 +3953 2 432.9731 466.3367 48.3319 0.1144 3952 +3954 2 434.0016 466.1331 48.6007 0.1144 3953 +3955 2 434.8012 465.3517 48.8874 0.1144 3954 +3956 2 435.5688 464.5063 49.1596 0.1144 3955 +3957 2 436.3353 463.6598 49.4119 0.1144 3956 +3958 2 437.0938 462.8063 49.6404 0.1144 3957 +3959 2 437.8523 461.9529 49.8436 0.1144 3958 +3960 2 438.6096 461.0984 50.0312 0.1144 3959 +3961 2 439.407 460.2792 50.197 0.1144 3960 +3962 2 440.2936 459.5688 50.3804 0.1144 3961 +3963 2 441.393 459.3194 50.57 0.1144 3962 +3964 2 442.2738 458.6445 50.8021 0.1144 3963 +3965 2 442.9785 457.7453 51.175 0.1144 3964 +3966 2 366.6131 452.317 32.9297 0.1144 2886 +3967 2 366.0869 451.3343 32.8944 0.1144 3966 +3968 2 365.7402 450.2509 32.8513 0.1144 3967 +3969 2 365.3421 449.1836 32.7978 0.1144 3968 +3970 2 364.888 448.1334 32.7622 0.1144 3969 +3971 2 364.404 447.0969 32.7446 0.1144 3970 +3972 2 363.5621 446.5879 32.7513 0.1144 3971 +3973 2 362.6995 447.3074 32.786 0.1144 3972 +3974 2 361.8552 448.0796 32.8448 0.1144 3973 +3975 2 361.0121 448.8507 32.9146 0.1144 3974 +3976 2 360.1678 449.6229 32.9865 0.1144 3975 +3977 2 359.3247 450.3939 33.0562 0.1144 3976 +3978 2 358.4095 451.0815 33.1086 0.1144 3977 +3979 2 357.5984 451.8857 33.1433 0.1144 3978 +3980 2 356.5516 452.3376 33.1643 0.1144 3979 +3981 2 355.4179 452.2358 33.1747 0.1144 3980 +3982 2 354.2751 452.1683 33.1789 0.1144 3981 +3983 2 353.1334 452.1065 33.1794 0.1144 3982 +3984 2 352.1552 452.6854 33.1794 0.1144 3983 +3985 2 348.968 451.3938 22.5898 0.1144 2862 +3986 2 349.7345 452.2438 22.5929 0.1144 3985 +3987 2 350.2722 453.2517 22.5942 0.1144 3986 +3988 2 350.7962 454.2675 22.5959 0.1144 3987 +3989 2 351.176 455.3463 22.5983 0.1144 3988 +3990 2 351.7091 456.3576 22.6016 0.1144 3989 +3991 2 352.5659 457.1092 22.6063 0.1144 3990 +3992 2 353.4056 457.886 22.6129 0.1144 3991 +3993 2 354.2282 458.6822 22.6221 0.1144 3992 +3994 2 354.8105 459.6638 22.6344 0.1144 3993 +3995 2 355.4442 460.6167 22.6525 0.1144 3994 +3996 2 356.0448 461.5903 22.679 0.1144 3995 +3997 2 356.793 462.4551 22.7151 0.1144 3996 +3998 2 357.3032 462.7114 22.7597 0.1144 3997 +3999 2 358.1349 463.4824 22.8101 0.1144 3998 +4000 2 358.8408 464.3382 22.9487 0.1144 3999 +4001 2 359.4791 465.2671 23.1173 0.1144 4000 +4002 2 360.3062 466.0496 23.2353 0.1144 4001 +4003 2 361.2958 466.6182 23.2963 0.1144 4002 +4004 2 362.2865 467.1776 23.2651 0.1144 4003 +4005 2 363.252 467.6969 23.0913 0.1144 4004 +4006 2 364.0208 468.5309 22.9183 0.1144 4005 +4007 2 364.9143 469.2425 22.7769 0.1144 4006 +4008 2 365.9324 469.7607 22.6768 0.1144 4007 +4009 2 366.9975 470.1794 22.6154 0.1144 4008 +4010 2 368.1026 470.4723 22.5886 0.1144 4009 +4011 2 369.2271 470.3007 22.5853 0.1144 4010 +4012 2 370.3242 470.5981 22.5842 0.1144 4011 +4013 2 371.3252 471.1518 22.5837 0.1144 4012 +4014 2 372.34 471.6781 22.574 0.1144 4013 +4015 2 373.4405 471.9869 22.568 0.1144 4014 +4016 2 374.2287 472.8141 22.5706 0.1144 4015 +4017 2 374.7664 473.8231 22.5831 0.1144 4016 +4018 2 375.6004 474.5998 22.6072 0.1144 4017 +4019 2 376.7078 474.8641 22.6481 0.1144 4018 +4020 2 377.7991 474.5758 22.7109 0.1144 4019 +4021 2 378.4981 473.6709 22.7963 0.1144 4020 +4022 2 379.1182 472.7134 22.9062 0.1144 4021 +4023 2 379.9521 471.9423 23.0546 0.1144 4022 +4024 2 380.8147 471.336 23.3589 0.1144 4023 +4025 2 381.905 471.2193 23.7154 0.1144 4024 +4026 2 382.9906 471.5648 24.0229 0.1144 4025 +4027 2 384.0397 471.94 24.3336 0.1144 4026 +4028 2 385.1791 472.0293 24.5645 0.1144 4027 +4029 2 386.3208 472.0476 24.7251 0.1144 4028 +4030 2 387.4431 471.8542 24.8277 0.1144 4029 +4031 2 388.4612 471.3772 24.9061 0.1144 4030 +4032 2 389.2048 470.5238 24.9891 0.1144 4031 +4033 2 389.723 469.5079 25.1 0.1144 4032 +4034 2 390.2413 468.492 25.2411 0.1144 4033 +4035 2 390.7607 467.4773 25.4013 0.1144 4034 +4036 2 391.2789 466.4614 25.5694 0.1144 4035 +4037 2 391.7971 465.4456 25.734 0.1144 4036 +4038 2 392.3154 464.4297 25.884 0.1144 4037 +4039 2 392.7901 463.3944 26.0077 0.1144 4038 +4040 2 392.9331 462.3064 26.0884 0.1144 4039 +4041 2 392.5201 461.2425 26.1094 0.1144 4040 +4042 2 391.9916 460.2289 26.0639 0.1144 4041 +4043 2 391.4493 459.2268 25.953 0.1144 4042 +4044 2 390.9071 458.2246 25.797 0.1144 4043 +4045 2 390.366 457.2225 25.6155 0.1144 4044 +4046 2 389.8237 456.2203 25.4266 0.1144 4045 +4047 2 389.2815 455.2182 25.2444 0.1144 4046 +4048 2 388.785 454.1932 25.0841 0.1144 4047 +4049 2 388.5482 453.0984 24.968 0.1144 4048 +4050 2 388.8181 452.0161 24.9029 0.1144 4049 +4051 2 389.5045 451.1124 24.88 0.1144 4050 +4052 2 390.3603 450.3539 24.8906 0.1144 4051 +4053 2 391.2537 449.64 24.9262 0.1144 4052 +4054 2 392.0602 448.8518 25.0083 0.1144 4053 +4055 2 392.8336 448.0533 25.1443 0.1144 4054 +4056 2 393.7293 447.3532 25.2655 0.1144 4055 +4057 2 394.5679 446.5764 25.3759 0.1144 4056 +4058 2 395.4465 445.8454 25.4799 0.1144 4057 +4059 2 396.1455 444.9657 25.5921 0.1144 4058 +4060 2 396.6168 443.9281 25.731 0.1144 4059 +4061 2 397.0481 442.8721 25.9028 0.1144 4060 +4062 2 397.6109 441.886 26.1004 0.1144 4061 +4063 2 398.1944 440.909 26.3304 0.1144 4062 +4064 2 398.8018 439.9492 26.5926 0.1144 4063 +4065 2 399.5603 439.1198 26.9049 0.1144 4064 +4066 2 400.511 438.5661 27.2805 0.1144 4065 +4067 2 401.5474 438.1051 27.6778 0.1144 4066 +4068 2 402.5507 437.5571 28.0535 0.1144 4067 +4069 2 403.6364 437.3935 28.4245 0.1144 4068 +4070 2 404.7346 437.5388 28.8526 0.1144 4069 +4071 2 405.8065 437.4553 29.3451 0.1144 4070 +4072 2 406.6325 437.699 30.9299 0.1144 4071 +4073 2 356.9394 462.6702 23.1303 0.1144 3997 +4074 2 356.7575 463.7479 23.2347 0.1144 4073 +4075 2 356.3411 464.8049 23.2514 0.1144 4074 +4076 2 356.1695 465.9157 23.2033 0.1144 4075 +4077 2 356.2267 467.0574 23.16 0.1144 4076 +4078 2 356.2256 468.2014 23.1218 0.1144 4077 +4079 2 356.1707 469.3443 23.0886 0.1144 4078 +4080 2 356.0963 470.4849 23.0604 0.1144 4079 +4081 2 356.1272 471.6232 23.0479 0.1144 4080 +4082 2 356.4155 472.726 23.0444 0.1144 4081 +4083 2 356.8914 473.7659 23.0394 0.1144 4082 +4084 2 357.4439 474.7657 23.0325 0.1144 4083 +4085 2 358.1212 475.6821 23.0228 0.1144 4084 +4086 2 358.9861 476.4131 23.0092 0.1144 4085 +4087 2 360.0237 476.8947 22.9902 0.1144 4086 +4088 2 361.0647 477.3626 22.9637 0.1144 4087 +4089 2 361.973 478.0318 22.9268 0.1144 4088 +4090 2 362.6686 478.9402 22.8749 0.1144 4089 +4091 2 363.3161 479.8828 22.8014 0.1144 4090 +4092 2 363.9373 480.8438 22.6993 0.1144 4091 +4093 2 364.5505 481.8093 22.5611 0.1144 4092 +4094 2 365.1797 482.7634 22.3695 0.1144 4093 +4095 2 365.9587 483.5379 22.0759 0.1144 4094 +4096 2 366.9666 484.0161 21.6551 0.1144 4095 +4097 2 367.9779 484.5263 21.1608 0.1144 4096 +4098 2 368.8393 484.5778 20.5658 0.1144 4097 +4099 2 369.528 483.9566 19.7953 0.1144 4098 +4100 2 370.4592 483.5745 18.9606 0.1144 4099 +4101 2 371.3618 482.9579 18.1849 0.1144 4100 +4102 2 372.2851 482.3882 17.4634 0.1144 4101 +4103 2 373.3433 482.013 16.8476 0.1144 4102 +4104 2 374.374 481.5313 16.3792 0.1144 4103 +4105 2 375.3052 480.8735 16.0352 0.1144 4104 +4106 2 375.6072 479.8737 15.7166 0.1144 4105 +4107 2 375.5832 478.7629 15.3494 0.1144 4106 +4108 2 375.7846 477.6543 15.0058 0.1144 4107 +4109 2 376.4561 476.8581 14.582 0.1144 4108 +4110 2 377.3187 476.1454 14.1627 0.1144 4109 +4111 2 378.2922 475.65 13.7252 0.1144 4110 +4112 2 379.4133 475.6695 13.3927 0.1144 4111 +4113 2 380.5573 475.6798 13.1693 0.1144 4112 +4114 2 381.6281 476.0584 13.0291 0.1144 4113 +4115 2 382.7504 476.2735 12.9583 0.1144 4114 +4116 2 383.8761 476.476 12.9278 0.1144 4115 +4117 2 384.9537 476.857 12.9208 0.1144 4116 +4118 2 386.0096 477.2974 12.9153 0.1144 4117 +4119 2 386.9431 477.9552 12.9078 0.1144 4118 +4120 2 387.689 478.8212 12.8977 0.1144 4119 +4121 2 388.3377 479.7627 12.8825 0.1144 4120 +4122 2 389.127 480.5898 12.8609 0.1144 4121 +4123 2 390.1063 481.1813 12.832 0.1144 4122 +4124 2 390.9609 481.9409 12.796 0.1144 4123 +4125 2 391.6873 482.8241 12.7533 0.1144 4124 +4126 2 392.4904 483.6054 12.6246 0.1144 4125 +4127 2 393.2145 484.4897 12.5177 0.1144 4126 +4128 2 394.0302 485.2928 12.4297 0.1144 4127 +4129 2 393.7579 485.6795 12.3577 0.1144 4128 +4130 2 393.5955 486.7651 12.299 0.1144 4129 +4131 2 393.8735 487.8634 12.2519 0.1144 4130 +4132 2 394.4924 488.8106 12.2149 0.1144 4131 +4133 2 394.2155 489.7407 12.1094 0.1144 4132 +4134 2 393.4227 490.5506 12.0064 0.1144 4133 +4135 2 392.4732 491.1833 11.9269 0.1144 4134 +4136 2 391.4082 491.5882 11.8693 0.1144 4135 +4137 2 390.2767 491.7187 11.8319 0.1144 4136 +4138 2 389.1339 491.6798 11.8127 0.1144 4137 +4139 2 388.1672 492.2243 11.8096 0.1144 4138 +4140 2 387.7119 493.2562 11.8096 0.1144 4139 +4141 2 386.6365 493.4003 11.8096 0.1144 4140 +4142 2 395.0896 485.9826 12.4273 0.1144 4128 +4143 2 396.0505 485.3912 12.4381 0.1144 4142 +4144 2 397.0115 485.1132 12.8732 0.1144 4143 +4145 2 398.1154 484.9977 12.1991 0.1144 4144 +4146 2 399.2308 485.0938 11.9124 0.1144 4145 +4147 2 400.3073 484.865 11.5616 0.1144 4146 +4148 2 401.242 484.2392 11.2115 0.1144 4147 +4149 2 402.2601 483.7187 10.6848 0.1144 4148 +4150 2 396.4726 484.6808 12.5052 0.1144 4143 +4151 2 397.0813 483.7187 12.558 0.1144 4150 +4152 2 397.8203 482.8481 12.5718 0.1144 4151 +4153 2 398.2928 481.8185 12.5387 0.1144 4152 +4154 2 398.517 480.7157 12.4063 0.1144 4153 +4155 2 398.6154 479.5797 12.2373 0.1144 4154 +4156 2 398.517 478.4597 12.0037 0.1144 4155 +4157 2 398.1886 477.3706 11.7972 0.1144 4156 +4158 2 398.5673 476.3627 11.2473 0.1144 4157 +4159 2 308.6684 419.6764 20.3308 0.1144 2141 +4160 2 307.6571 420.2072 20.1796 0.1144 4159 +4161 2 306.5989 420.6351 20.1195 0.1144 4160 +4162 2 305.472 420.7403 20.0405 0.1144 4161 +4163 2 304.4127 420.3662 19.9417 0.1144 4162 +4164 2 303.4048 419.9178 19.7305 0.1144 4163 +4165 2 302.3706 419.4682 19.4738 0.1144 4164 +4166 2 301.2495 419.2943 19.2449 0.1144 4165 +4167 2 300.1627 419.5082 18.9684 0.1144 4166 +4168 2 299.0599 419.7988 18.7354 0.1144 4167 +4169 2 297.9193 419.8034 18.5525 0.1144 4168 +4170 2 296.9858 420.4326 18.4108 0.1144 4169 +4171 2 296.1461 421.1716 18.3689 0.1144 4170 +4172 2 295.5227 420.8501 19.1204 0.1144 4171 +4173 2 294.4015 421.0378 19.3827 0.1144 4172 +4174 2 293.3308 421.4256 19.4805 0.1144 4173 +4175 2 292.2863 421.3055 19.605 0.1144 4174 +4176 2 291.4203 420.7575 19.8352 0.1144 4175 +4177 2 290.4307 420.6156 20.2047 0.1144 4176 +4178 2 289.3084 420.4154 20.5109 0.1144 4177 +4179 2 288.1679 420.3765 20.7695 0.1144 4178 +4180 2 287.1051 420.1283 21.0099 0.1144 4179 +4181 2 286.1979 419.4442 21.2154 0.1144 4180 +4182 2 285.5195 418.561 21.3557 0.1144 4181 +4183 2 285.0894 417.5005 21.4537 0.1144 4182 +4184 2 284.6455 416.4469 21.5465 0.1144 4183 +4185 2 284.1868 415.4081 21.6666 0.1144 4184 +4186 2 283.7406 414.3648 21.8051 0.1144 4185 +4187 2 283.2395 413.3375 21.9252 0.1144 4186 +4188 2 282.6744 412.3422 22.0397 0.1144 4187 +4189 2 282.1024 411.3527 22.1533 0.1144 4188 +4190 2 281.3439 410.5461 22.2688 0.1144 4189 +4191 2 280.423 409.8746 22.388 0.1144 4190 +4192 2 279.5387 409.385 22.6313 0.1144 4191 +4193 2 278.5102 409.2488 22.9703 0.1144 4192 +4194 2 277.372 409.1505 23.2544 0.1144 4193 +4195 2 276.2302 409.0978 23.4765 0.1144 4194 +4196 2 275.1034 409.2443 23.6409 0.1144 4195 +4197 2 273.996 409.2168 23.7864 0.1144 4196 +4198 2 273.1437 408.5624 23.9095 0.1144 4197 +4199 2 272.566 408.8908 23.9914 0.1144 4198 +4200 2 271.7641 409.6435 24.0444 0.1144 4199 +4201 2 270.6944 410.0439 24.0709 0.1144 4200 +4202 2 269.6591 410.4992 24.0733 0.1144 4201 +4203 2 268.657 410.696 24.0548 0.1144 4202 +4204 2 267.5942 410.3139 23.9801 0.1144 4203 +4205 2 266.5932 410.5438 23.884 0.1144 4204 +4206 2 265.5418 410.9626 23.8163 0.1144 4205 +4207 2 264.5752 411.53 23.7785 0.1144 4206 +4208 2 263.8659 412.412 23.7721 0.1144 4207 +4209 2 263.1944 413.3375 23.7979 0.1144 4208 +4210 2 262.357 414.104 23.8549 0.1144 4209 +4211 2 261.3834 414.6989 23.9391 0.1144 4210 +4212 2 260.657 415.5191 24.1014 0.1144 4211 +4213 2 259.9202 416.3748 24.3093 0.1144 4212 +4214 2 259.0073 417.0463 24.5211 0.1144 4213 +4215 2 257.9194 417.3415 24.705 0.1144 4214 +4216 2 256.7788 417.393 24.8595 0.1144 4215 +4217 2 255.6817 417.1539 25.033 0.1144 4216 +4218 2 254.5663 417.2317 25.1879 0.1144 4217 +4219 2 253.5047 417.6069 25.3505 0.1144 4218 +4220 2 252.7451 418.4386 25.4579 0.1144 4219 +4221 2 252.0095 419.3138 25.5043 0.1144 4220 +4222 2 251.2659 420.1832 25.4935 0.1144 4221 +4223 2 250.9925 421.2654 25.3783 0.1144 4222 +4224 2 250.3381 422.176 25.1821 0.1144 4223 +4225 2 249.4652 422.9025 24.9503 0.1144 4224 +4226 2 248.5912 423.6266 24.7114 0.1144 4225 +4227 2 247.7401 424.3862 24.4995 0.1144 4226 +4228 2 246.8878 425.1493 24.3502 0.1144 4227 +4229 2 245.9406 425.7911 24.2584 0.1144 4228 +4230 2 244.9933 426.4317 24.2093 0.1144 4229 +4231 2 244.0461 427.0735 24.1875 0.1144 4230 +4232 2 243.14 427.7725 24.1817 0.1144 4231 +4233 2 242.2557 428.4978 24.1816 0.1144 4232 +4234 2 241.4092 429.2677 24.1816 0.1144 4233 +4235 2 295.4998 421.2826 18.1541 0.1144 4171 +4236 2 294.3912 421.3192 17.8856 0.1144 4235 +4237 2 293.5813 422.1268 17.6663 0.1144 4236 +4238 2 292.5814 422.6233 17.417 0.1144 4237 +4239 2 291.7211 423.3761 17.2518 0.1144 4238 +4240 2 290.8563 424.098 17.1573 0.1144 4239 +4241 2 289.742 424.3474 17.1452 0.1144 4240 +4242 2 288.7227 424.8313 17.1838 0.1144 4241 +4243 2 287.9711 425.6927 17.2552 0.1144 4242 +4244 2 287.1143 426.4237 17.3783 0.1144 4243 +4245 2 286.1144 426.8756 17.6177 0.1144 4244 +4246 2 285.0585 427.3023 17.8697 0.1144 4245 +4247 2 284.0403 427.8228 18.0965 0.1144 4246 +4248 2 283.0222 428.3388 18.3023 0.1144 4247 +4249 2 281.9491 428.7323 18.4885 0.1144 4248 +4250 2 280.9424 429.1556 18.7105 0.1144 4249 +4251 2 280.0455 429.5468 19.0918 0.1144 4250 +4252 2 279.0273 429.9999 19.4513 0.1144 4251 +4253 2 277.9806 430.462 19.7022 0.1144 4252 +4254 2 276.9155 430.8773 19.8475 0.1144 4253 +4255 2 275.8584 431.3017 19.8873 0.1144 4254 +4256 2 274.8506 431.8291 19.7998 0.1144 4255 +4257 2 273.8473 432.3439 19.5775 0.1144 4256 +4258 2 272.8188 432.8175 19.3011 0.1144 4257 +4259 2 271.748 433.2179 19.0338 0.1144 4258 +4260 2 270.7196 433.7007 18.7832 0.1144 4259 +4261 2 269.7277 434.1308 18.4788 0.1144 4260 +4262 2 268.7153 434.1663 18.0339 0.1144 4261 +4263 2 267.6296 434.0908 17.6021 0.1144 4262 +4264 2 266.4937 434.1606 17.2641 0.1144 4263 +4265 2 265.36 434.3196 17.0017 0.1144 4264 +4266 2 264.2377 434.5347 16.803 0.1144 4265 +4267 2 263.104 434.6022 16.6667 0.1144 4266 +4268 2 261.9897 434.6228 16.4914 0.1144 4267 +4269 2 261.0253 435.1479 16.3158 0.1144 4268 +4270 2 260.014 435.6352 16.1044 0.1144 4269 +4271 2 258.9799 435.3755 15.8421 0.1144 4270 +4272 2 257.8496 435.2611 15.6424 0.1144 4271 +4273 2 256.7067 435.2806 15.5226 0.1144 4272 +4274 2 255.6119 435.5128 15.539 0.1144 4273 +4275 2 254.4702 435.5791 15.5644 0.1144 4274 +4276 2 253.3285 435.6455 15.5894 0.1144 4275 +4277 2 252.1856 435.7107 15.6008 0.1144 4276 +4278 2 251.0439 435.7771 15.5816 0.1144 4277 +4279 2 250.7797 435.7519 15.8182 0.1144 4278 +4280 2 249.6483 435.6409 16.2964 0.1144 4279 +4281 2 248.5168 435.5311 16.4946 0.1144 4280 +4282 2 247.3843 435.4213 16.7207 0.1144 4281 +4283 2 246.3558 435.1398 17.0394 0.1144 4282 +4284 2 245.2919 434.7921 17.3232 0.1144 4283 +4285 2 244.2154 434.4054 17.5126 0.1144 4284 +4286 2 243.0874 434.3665 17.6107 0.1144 4285 +4287 2 241.996 434.0725 17.617 0.1144 4286 +4288 2 240.9172 433.7362 17.5078 0.1144 4287 +4289 2 239.7996 433.7179 17.2981 0.1144 4288 +4290 2 238.7448 434.1594 17.1244 0.1144 4289 +4291 2 237.9223 434.8504 16.9927 0.1144 4290 +4292 2 236.8423 435.2279 16.8996 0.1144 4291 +4293 2 235.767 435.618 16.8399 0.1144 4292 +4294 2 234.6916 436.0081 16.8048 0.1144 4293 +4295 2 233.6242 436.4177 16.7779 0.1144 4294 +4296 2 232.5786 436.8799 16.7413 0.1144 4295 +4297 2 231.5445 437.3706 16.6939 0.1144 4296 +4298 2 230.5606 437.9404 16.623 0.1144 4297 +4299 2 229.6317 438.5947 16.5041 0.1144 4298 +4300 2 228.6078 439.0718 16.3558 0.1144 4299 +4301 2 227.5485 439.4825 16.2125 0.1144 4300 +4302 2 226.6481 440.1643 16.0688 0.1144 4301 +4303 2 225.8405 440.972 15.9184 0.1144 4302 +4304 2 224.9939 441.7339 15.7273 0.1144 4303 +4305 2 224.1851 442.5118 15.4486 0.1144 4304 +4306 2 223.4415 443.3583 15.1157 0.1144 4305 +4307 2 222.643 444.1649 14.7749 0.1144 4306 +4308 2 221.6694 444.4097 14.3586 0.1144 4307 +4309 2 220.7188 443.9258 13.8881 0.1144 4308 +4310 2 219.8345 443.4716 13.3286 0.1144 4309 +4311 2 218.7728 443.3652 12.8042 0.1144 4310 +4312 2 217.6391 443.4785 12.4146 0.1144 4311 +4313 2 216.5237 443.7301 12.1558 0.1144 4312 +4314 2 215.5433 444.2907 12.0129 0.1144 4313 +4315 2 214.7036 445.0618 11.9647 0.1144 4314 +4316 2 213.9349 445.8889 12.0297 0.1144 4315 +4317 2 212.943 446.4254 12.1034 0.1144 4316 +4318 2 211.9157 446.9288 12.1482 0.1144 4317 +4319 2 211.3277 447.8749 12.1651 0.1144 4318 +4320 2 210.5017 448.6402 12.1238 0.1144 4319 +4321 2 209.4412 449.0383 12.0278 0.1144 4320 +4322 2 208.446 449.6023 11.9405 0.1144 4321 +4323 2 207.5708 450.3379 11.8096 0.1144 4322 +4324 2 238.2758 434.0908 16.7661 0.1144 4290 +4325 2 237.2359 433.8105 16.1659 0.1144 4324 +4326 2 236.133 433.5405 15.9398 0.1144 4325 +4327 2 235.0508 433.1722 15.738 0.1144 4326 +4328 2 233.9755 432.7821 15.5539 0.1144 4327 +4329 2 232.9081 432.3714 15.3824 0.1144 4328 +4330 2 231.8453 431.9538 15.1998 0.1144 4329 +4331 2 230.7791 431.7948 14.9055 0.1144 4330 +4332 2 229.6752 431.5717 14.5841 0.1144 4331 +4333 2 228.6524 431.0992 14.2541 0.1144 4332 +4334 2 227.9981 430.1749 13.9552 0.1144 4333 +4335 2 227.4581 429.1659 13.7412 0.1144 4334 +4336 2 227.0909 428.0825 13.6055 0.1144 4335 +4337 2 226.8575 426.9625 13.5367 0.1144 4336 +4338 2 226.7236 425.8265 13.5056 0.1144 4337 +4339 2 226.6333 424.686 13.4968 0.1144 4338 +4340 2 250.7419 435.8262 15.525 0.1144 4278 +4341 2 249.6162 436.0081 15.4129 0.1144 4340 +4342 2 248.4905 436.1912 15.2693 0.1144 4341 +4343 2 247.3557 436.1191 15.1243 0.1144 4342 +4344 2 246.2231 435.9567 14.985 0.1144 4343 +4345 2 245.0986 436.0596 14.8055 0.1144 4344 +4346 2 244.0209 436.4211 14.5957 0.1144 4345 +4347 2 242.9478 436.8158 14.3904 0.1144 4346 +4348 2 241.8736 437.2093 14.1808 0.1144 4347 +4349 2 240.7765 437.5308 13.9383 0.1144 4348 +4350 2 239.8968 436.9005 13.5933 0.1144 4349 +4351 2 239.0823 436.2106 13.1059 0.1144 4350 +4352 2 238.2735 435.4018 12.6569 0.1144 4351 +4353 2 237.4406 434.9682 12.9343 0.1144 4352 +4354 2 236.6478 435.4327 12.8524 0.1144 4353 +4355 2 236.1799 436.4715 12.8188 0.1144 4354 +4356 2 235.3402 437.0332 12.7716 0.1144 4355 +4357 2 234.3392 437.5514 12.7089 0.1144 4356 +4358 2 233.5442 438.3591 12.6304 0.1144 4357 +4359 2 232.7743 439.1953 12.4982 0.1144 4358 +4360 2 232.2228 440.1517 12.2758 0.1144 4359 +4361 2 231.7275 441.1733 12.0434 0.1144 4360 +4362 2 231.1772 442.1754 11.8404 0.1144 4361 +4363 2 230.8054 443.2508 11.6682 0.1144 4362 +4364 2 230.3478 444.293 11.4998 0.1144 4363 +4365 2 229.7941 445.2471 11.2687 0.1144 4364 +4366 2 229.0597 446.1039 11.0616 0.1144 4365 +4367 2 228.6478 447.1518 10.9048 0.1144 4366 +4368 2 228.0404 448.1094 10.7915 0.1144 4367 +4369 2 227.0016 448.5166 10.7171 0.1144 4368 +4370 2 226.115 449.2225 10.6774 0.1144 4369 +4371 2 225.3291 450.0542 10.6634 0.1144 4370 +4372 2 224.7148 451.0163 10.6542 0.1144 4371 +4373 2 224.2194 452.0459 10.642 0.1144 4372 +4374 2 223.7561 453.0926 10.6254 0.1144 4373 +4375 2 222.7196 453.5537 10.6018 0.1144 4374 +4376 2 222.0058 454.4448 10.5673 0.1144 4375 +4377 2 221.4441 455.4413 10.5195 0.1144 4376 +4378 2 221.2004 455.9973 10.4572 0.1144 4377 +4379 2 220.6501 456.9994 10.3809 0.1144 4378 +4380 2 219.8082 457.7327 10.235 0.1144 4379 +4381 2 219.1526 458.6216 10.0037 0.1144 4380 +4382 2 218.4148 459.4899 9.7973 0.1144 4381 +4383 2 217.4046 460.0127 9.628 0.1144 4382 +4384 2 216.4013 460.563 9.4947 0.1144 4383 +4385 2 215.4129 461.1372 9.3954 0.1144 4384 +4386 2 214.595 461.9346 9.3276 0.1144 4385 +4387 2 213.5745 462.3911 8.9978 0.1144 4386 +4388 2 221.4349 455.1896 10.2728 0.1144 4377 +4389 2 221.467 454.1165 9.7365 0.1144 4388 +4390 2 221.4281 452.9874 9.5051 0.1144 4389 +4391 2 220.6376 452.2815 9.3101 0.1144 4390 +4392 2 219.6091 452.5527 9.166 0.1144 4391 +4393 2 218.6562 453.1853 9.0688 0.1144 4392 +4394 2 217.7192 453.8408 8.9978 0.1144 4393 +4395 2 237.9714 435.3481 12.1257 0.1144 4352 +4396 2 236.9327 435.3378 11.5277 0.1144 4395 +4397 2 236.0141 435.8377 10.9732 0.1144 4396 +4398 2 235.0325 435.7874 10.3469 0.1144 4397 +4399 2 233.9594 436.0665 9.8283 0.1144 4398 +4400 2 233.0317 436.7312 9.4074 0.1144 4399 +4401 2 232.0307 437.04 8.9916 0.1144 4400 +4402 2 230.9542 436.8135 8.5879 0.1144 4401 +4403 2 230.1099 436.0894 8.2429 0.1144 4402 +4404 2 229.4933 435.2211 7.8329 0.1144 4403 +4405 2 229.1832 434.1514 7.4492 0.1144 4404 +4406 2 229.205 433.0143 7.1225 0.1144 4405 +4407 2 228.6078 432.1174 6.7721 0.1144 4406 +4408 2 227.8825 431.2354 6.4677 0.1144 4407 +4409 2 227.4981 430.2081 6.1029 0.1144 4408 +4410 2 227.5942 429.1624 5.6554 0.1144 4409 +4411 2 227.7063 428.0242 5.2924 0.1144 4410 +4412 2 227.9077 426.8996 4.9949 0.1144 4411 +4413 2 228.2349 425.838 4.7034 0.1144 4412 +4414 2 228.5792 424.8816 4.3977 0.1144 4413 +4415 2 228.2326 423.8005 4.188 0.1144 4414 +4416 2 227.7498 422.7663 4.0476 0.1144 4415 +4417 2 227.8207 421.8489 3.9431 0.1144 4416 +4418 2 228.7851 421.2345 3.8697 0.1144 4417 +4419 2 229.6397 420.4909 3.8217 0.1144 4418 +4420 2 230.1694 419.5059 3.7843 0.1144 4419 +4421 2 230.4943 418.4214 3.701 0.1144 4420 +4422 2 230.8935 417.3632 3.5886 0.1144 4421 +4423 2 231.5159 416.4194 3.4981 0.1144 4422 +4424 2 232.407 415.7296 3.4276 0.1144 4423 +4425 2 233.3028 415.0398 3.3769 0.1144 4424 +4426 2 233.765 414.0365 3.3451 0.1144 4425 +4427 2 234.5486 413.3833 3.3316 0.1144 4426 +4428 2 235.6457 413.1487 3.2696 0.1144 4427 +4429 2 236.2394 412.3239 3.2357 0.1144 4428 +4430 2 236.6456 411.2623 3.2684 0.1144 4429 +4431 2 237.2404 410.291 3.3117 0.1144 4430 +4432 2 237.9383 409.385 3.3558 0.1144 4431 +4433 2 238.9519 408.8976 3.4004 0.1144 4432 +4434 2 240.0867 408.8233 3.4462 0.1144 4433 +4435 2 241.2204 408.9228 3.5162 0.1144 4434 +4436 2 242.0372 408.1735 3.5719 0.1144 4435 +4437 2 242.8849 407.4127 3.5996 0.1144 4436 +4438 2 243.632 406.5479 3.6455 0.1144 4437 +4439 2 244.5414 405.8798 3.7154 0.1144 4438 +4440 2 245.6065 405.5766 3.821 0.1144 4439 +4441 2 246.1476 404.6031 4.0076 0.1144 4440 +4442 2 246.3238 403.4774 4.2356 0.1144 4441 +4443 2 246.5297 402.4054 4.529 0.1144 4442 +4444 2 247.0068 401.4296 4.9281 0.1144 4443 +4445 2 247.5067 400.424 5.3148 0.1144 4444 +4446 2 248.3921 399.804 5.7194 0.1144 4445 +4447 2 249.4572 399.669 6.2033 0.1144 4446 +4448 2 250.4388 399.5397 6.801 0.1144 4447 +4449 2 250.671 398.5479 7.3375 0.1144 4448 +4450 2 250.7751 397.4245 7.815 0.1144 4449 +4451 2 250.7042 396.2885 8.1885 0.1144 4450 +4452 2 250.5886 395.1502 8.4573 0.1144 4451 +4453 2 250.4571 394.013 8.6408 0.1144 4452 +4454 2 250.5829 392.8862 8.8029 0.1144 4453 +4455 2 251.1949 391.9905 9.0217 0.1144 4454 +4456 2 251.1458 390.8934 9.2363 0.1144 4455 +4457 2 251.8482 389.9988 9.4079 0.1144 4456 +4458 2 252.4167 389.0435 9.5438 0.1144 4457 +4459 2 253.4177 388.4944 9.6502 0.1144 4458 +4460 2 254.4622 388.0368 9.7367 0.1144 4459 +4461 2 255.3236 387.3298 9.8198 0.1144 4460 +4462 2 255.7709 386.2796 9.9238 0.1144 4461 +4463 2 256.2251 385.2878 10.0596 0.1144 4462 +4464 2 257.0465 384.535 10.2493 0.1144 4463 +4465 2 257.6254 384.1621 10.5723 0.1144 4464 +4466 2 257.7901 385.1894 11.0034 0.1144 4465 +4467 2 258.2477 386.1835 11.4755 0.1144 4466 +4468 2 259.3482 386.4535 11.8882 0.1144 4467 +4469 2 260.3801 386.6548 12.3908 0.1144 4468 +4470 2 261.523 386.6079 12.7824 0.1144 4469 +4471 2 262.6281 386.3402 13.0801 0.1144 4470 +4472 2 263.4666 385.6802 13.4379 0.1144 4471 +4473 2 264.4985 385.2443 13.7194 0.1144 4472 +4474 2 265.2078 384.3531 13.9262 0.1144 4473 +4475 2 266.0372 383.6026 14.1166 0.1144 4474 +4476 2 266.9902 382.9849 14.2316 0.1144 4475 +4477 2 267.7418 382.1223 14.278 0.1144 4476 +4478 2 268.4808 381.2826 14.2244 0.1144 4477 +4479 2 269.1843 380.475 14.0386 0.1144 4478 +4480 2 269.9966 379.6753 13.8891 0.1144 4479 +4481 2 270.9084 378.9855 13.7803 0.1144 4480 +4482 2 271.8624 378.4146 13.7278 0.1144 4481 +4483 2 272.987 378.2053 13.7317 0.1144 4482 +4484 2 274.0292 377.8049 13.7895 0.1144 4483 +4485 2 274.9009 377.0635 13.889 0.1144 4484 +4486 2 275.5759 376.2319 14.0588 0.1144 4485 +4487 2 275.982 375.2583 14.3649 0.1144 4486 +4488 2 276.8617 374.6943 14.6612 0.1144 4487 +4489 2 277.9131 374.2642 14.8898 0.1144 4488 +4490 2 278.8248 373.5881 15.0545 0.1144 4489 +4491 2 279.8007 373.0264 15.1596 0.1144 4490 +4492 2 280.6163 372.2896 15.2142 0.1144 4491 +4493 2 281.6002 371.9476 15.2849 0.1144 4492 +4494 2 282.6744 372.1912 15.2859 0.1144 4493 +4495 2 283.7566 372.5436 15.2592 0.1144 4494 +4496 2 284.888 372.6237 15.2327 0.1144 4495 +4497 2 285.952 372.2565 15.2069 0.1144 4496 +4498 2 286.5754 371.3401 15.181 0.1144 4497 +4499 2 287.1898 370.3769 15.1545 0.1144 4498 +4500 2 288.2491 370.2487 15.1368 0.1144 4499 +4501 2 289.3931 370.2705 15.1209 0.1144 4500 +4502 2 290.4536 369.8415 15.1054 0.1144 4501 +4503 2 290.9341 369.631 15.1838 0.1144 4502 +4504 2 291.974 369.1528 15.2694 0.1144 4503 +4505 2 292.9612 368.5774 15.3053 0.1144 4504 +4506 2 294.0194 368.1552 15.3539 0.1144 4505 +4507 2 294.9667 368.6826 15.4152 0.1144 4506 +4508 2 296.034 369.0738 15.489 0.1144 4507 +4509 2 297.0442 369.5097 15.6724 0.1144 4508 +4510 2 297.5956 370.4684 15.8873 0.1144 4509 +4511 2 298.3712 371.3081 16.0556 0.1144 4510 +4512 2 298.8471 372.348 16.1792 0.1144 4511 +4513 2 299.4534 373.3181 16.3086 0.1144 4512 +4514 2 290.8071 370.394 15.0434 0.1144 4502 +4515 2 291.7635 370.8322 14.9787 0.1144 4514 +4516 2 292.8022 371.2818 14.9498 0.1144 4515 +4517 2 293.4337 372.197 14.9542 0.1144 4516 +4518 2 293.7483 373.2758 15.0453 0.1144 4517 +4519 2 294.4805 374.0766 15.2296 0.1144 4518 +4520 2 295.5284 374.4987 15.3987 0.1144 4519 +4521 2 296.5774 374.954 15.5299 0.1144 4520 +4522 2 297.5647 375.5294 15.6165 0.1144 4521 +4523 2 298.5257 376.1232 15.608 0.1144 4522 +4524 2 299.6285 376.0019 15.589 0.1144 4523 +4525 2 300.7496 376.1243 15.632 0.1144 4524 +4526 2 301.714 375.5146 15.7461 0.1144 4525 +4527 2 304.6838 411.0129 20.0967 0.1144 2132 +4528 2 305.4068 410.172 19.6333 0.1144 4527 +4529 2 306.2671 409.4719 19.4292 0.1144 4528 +4530 2 306.9855 408.6276 19.2209 0.1144 4529 +4531 2 307.9705 408.2776 19.0332 0.1144 4530 +4532 2 309.0756 408.0568 18.8119 0.1144 4531 +4533 2 310.0389 407.4779 18.6117 0.1144 4532 +4534 2 310.9872 406.8396 18.4524 0.1144 4533 +4535 2 312.0866 406.6542 18.304 0.1144 4534 +4536 2 313.1551 406.3339 18.1081 0.1144 4535 +4537 2 314.1527 405.8134 17.8823 0.1144 4536 +4538 2 315.2761 405.6716 17.7112 0.1144 4537 +4539 2 316.4087 405.5125 17.5927 0.1144 4538 +4540 2 317.5447 405.3787 17.5186 0.1144 4539 +4541 2 318.6315 405.087 17.4321 0.1144 4540 +4542 2 319.7709 405.0481 17.4149 0.1144 4541 +4543 2 320.8886 404.9566 17.5351 0.1144 4542 +4544 2 321.647 404.1306 17.6442 0.1144 4543 +4545 2 322.6389 404.1569 16.3473 0.1144 4544 +4546 2 322.1561 403.7473 14.9135 0.1144 4545 +4547 2 321.5052 402.8539 14.6469 0.1144 4546 +4548 2 320.9698 401.8437 14.5595 0.1144 4547 +4549 2 320.2868 400.9526 14.4215 0.1144 4548 +4550 2 319.2218 400.5647 14.2899 0.1144 4549 +4551 2 318.1372 400.1987 14.191 0.1144 4550 +4552 2 317.0905 399.7365 14.1235 0.1144 4551 +4553 2 316.3343 398.8831 14.0844 0.1144 4552 +4554 2 315.5964 398.0102 14.0637 0.1144 4553 +4555 2 314.5931 397.4611 14.0592 0.1144 4554 +4556 2 313.4652 397.2769 14.0591 0.1144 4555 +4557 2 312.3223 397.2243 14.0591 0.1144 4556 +4558 2 311.1806 397.151 14.0591 0.1144 4557 +4559 2 310.0492 396.9863 14.0591 0.1144 4558 +4560 2 323.569 404.9428 15.8827 0.1144 4545 +4561 2 324.5562 405.1716 15.6329 0.1144 4560 +4562 2 325.3822 405.5217 15.3208 0.1144 4561 +4563 2 325.7277 406.597 15.055 0.1144 4562 +4564 2 326.421 407.4836 14.8281 0.1144 4563 +4565 2 327.4563 407.6415 14.4883 0.1144 4564 +4566 2 328.1404 408.4526 14.1353 0.1144 4565 +4567 2 328.59 409.4422 13.779 0.1144 4566 +4568 2 329.3816 410.1743 13.4034 0.1144 4567 +4569 2 330.4272 410.4466 13.1059 0.1144 4568 +4570 2 331.5587 410.4786 12.8784 0.1144 4569 +4571 2 332.6752 410.6262 12.6639 0.1144 4570 +4572 2 333.8055 410.6068 12.4678 0.1144 4571 +4573 2 334.9438 410.4981 12.3101 0.1144 4572 +4574 2 336.0614 410.2601 12.1778 0.1144 4573 +4575 2 337.1391 410.5427 12.0102 0.1144 4574 +4576 2 338.1115 410.0176 11.8357 0.1144 4575 +4577 2 339.0358 409.3426 11.6974 0.1144 4576 +4578 2 340.1204 409.0692 11.2473 0.1144 4577 +4579 2 322.0051 404.0677 17.9221 0.1144 4544 +4580 2 323.053 403.8354 18.2307 0.1144 4579 +4581 2 324.173 403.6009 18.5061 0.1144 4580 +4582 2 325.2895 403.7279 18.7993 0.1144 4581 +4583 2 325.7609 402.8402 19.0211 0.1144 4582 +4584 2 326.3054 401.9295 19.1936 0.1144 4583 +4585 2 327.4231 401.6927 19.3206 0.1144 4584 +4586 2 328.423 401.2008 19.4607 0.1144 4585 +4587 2 329.3404 400.6105 19.6469 0.1144 4586 +4588 2 330.4284 400.2776 19.8094 0.1144 4587 +4589 2 331.339 399.6507 19.9983 0.1144 4588 +4590 2 332.2439 399.1462 20.2543 0.1144 4589 +4591 2 333.3193 398.8327 20.4985 0.1144 4590 +4592 2 334.2596 398.2024 20.6867 0.1144 4591 +4593 2 335.1966 397.5572 20.829 0.1144 4592 +4594 2 336.1827 396.976 20.9397 0.1144 4593 +4595 2 337.0796 396.2873 21.0651 0.1144 4594 +4596 2 337.8289 395.4362 21.1909 0.1144 4595 +4597 2 338.5119 394.5187 21.3001 0.1144 4596 +4598 2 338.9375 393.4731 21.3952 0.1144 4597 +4599 2 339.1022 392.3451 21.479 0.1144 4598 +4600 2 339.3196 391.2251 21.5546 0.1144 4599 +4601 2 339.8012 390.2024 21.6549 0.1144 4600 +4602 2 340.7701 389.7196 21.7948 0.1144 4601 +4603 2 341.8958 389.5286 21.9286 0.1144 4602 +4604 2 342.5742 388.6488 22.0501 0.1144 4603 +4605 2 343.2915 387.7645 22.1994 0.1144 4604 +4606 2 344.1564 387.0278 22.3755 0.1144 4605 +4607 2 345.1105 386.3952 22.5251 0.1144 4606 +4608 2 346.0726 385.7774 22.6569 0.1144 4607 +4609 2 345.6768 384.5007 22.8683 0.1144 4608 +4610 2 345.2912 383.4242 22.9416 0.1144 4609 +4611 2 345.1185 382.3134 22.9997 0.1144 4610 +4612 2 345.5635 381.3375 23.0441 0.1144 4611 +4613 2 346.1847 380.3869 23.0767 0.1144 4612 +4614 2 346.4764 379.3001 23.1001 0.1144 4613 +4615 2 346.5336 378.1584 23.1178 0.1144 4614 +4616 2 346.5565 377.0144 23.1427 0.1144 4615 +4617 2 346.5336 375.8715 23.1757 0.1144 4616 +4618 2 346.2796 374.7675 23.2171 0.1144 4617 +4619 2 345.8987 373.691 23.2879 0.1144 4618 +4620 2 345.6585 372.5848 23.4045 0.1144 4619 +4621 2 345.4834 371.4568 23.5242 0.1144 4620 +4622 2 344.9412 370.4833 23.6309 0.1144 4621 +4623 2 344.3246 369.5212 23.7284 0.1144 4622 +4624 2 343.8086 368.5007 23.8204 0.1144 4623 +4625 2 343.4826 367.4093 23.9117 0.1144 4624 +4626 2 343.1817 366.3248 24.0722 0.1144 4625 +4627 2 343.0364 365.2003 24.2576 0.1144 4626 +4628 2 342.9129 364.0631 24.4467 0.1144 4627 +4629 2 342.4038 363.0541 24.6415 0.1144 4628 +4630 2 341.9073 362.0451 24.9071 0.1144 4629 +4631 2 341.9416 360.9892 25.2885 0.1144 4630 +4632 2 341.587 359.9585 25.7207 0.1144 4631 +4633 2 340.9967 359.518 26.0849 0.1144 4632 +4634 2 340.0906 358.8202 26.3839 0.1144 4633 +4635 2 339.2189 358.0789 26.6183 0.1144 4634 +4636 2 338.3197 357.3776 26.8172 0.1144 4635 +4637 2 337.4708 356.6923 27.0833 0.1144 4636 +4638 2 336.8222 355.7794 27.3268 0.1144 4637 +4639 2 335.9894 355.0095 27.5347 0.1144 4638 +4640 2 334.9129 354.6903 27.7187 0.1144 4639 +4641 2 333.8821 354.2087 27.8922 0.1144 4640 +4642 2 332.7804 354.203 28.1168 0.1144 4641 +4643 2 331.6799 354.497 28.3214 0.1144 4642 +4644 2 330.5474 354.6423 28.5233 0.1144 4643 +4645 2 329.6916 354.9512 28.9386 0.1144 4644 +4646 2 329.2169 355.9785 29.2706 0.1144 4645 +4647 2 328.6735 356.9852 29.517 0.1144 4646 +4648 2 328.209 358.0308 29.6859 0.1144 4647 +4649 2 327.8475 359.1165 29.7965 0.1144 4648 +4650 2 327.3476 360.1449 29.8589 0.1144 4649 +4651 2 326.7607 361.1265 29.8827 0.1144 4650 +4652 2 326.2082 362.1286 29.9127 0.1144 4651 +4653 2 325.5996 363.1468 30.0107 0.1144 4652 +4654 2 325.023 364.1249 30.1188 0.1144 4653 +4655 2 324.3423 365.0355 30.2324 0.1144 4654 +4656 2 323.5655 365.8741 30.3296 0.1144 4655 +4657 2 322.7213 366.6451 30.4125 0.1144 4656 +4658 2 321.7054 367.129 30.483 0.1144 4657 +4659 2 320.5797 367.2606 30.5435 0.1144 4658 +4660 2 319.4597 367.3773 30.6561 0.1144 4659 +4661 2 318.3603 367.6587 30.7748 0.1144 4660 +4662 2 317.2609 367.4574 30.8764 0.1144 4661 +4663 2 316.2863 366.8705 30.9635 0.1144 4662 +4664 2 315.1731 366.8511 31.0377 0.1144 4663 +4665 2 314.2465 367.4825 31.1013 0.1144 4664 +4666 2 313.17 367.8029 31.2068 0.1144 4665 +4667 2 312.0935 367.4459 31.3278 0.1144 4666 +4668 2 311.0158 367.0616 31.4308 0.1144 4667 +4669 2 309.8741 367.0318 31.5188 0.1144 4668 +4670 2 308.8194 367.4757 31.5988 0.1144 4669 +4671 2 307.8344 368.0568 31.6767 0.1144 4670 +4672 2 306.7796 368.4973 31.7568 0.1144 4671 +4673 2 305.8004 369.0876 31.8517 0.1144 4672 +4674 2 304.7856 369.5703 31.9827 0.1144 4673 +4675 2 303.7377 369.5784 32.2759 0.1144 4674 +4676 2 302.7985 370.0131 32.5396 0.1144 4675 +4677 2 302.4656 371.0656 32.8084 0.1144 4676 +4678 2 301.6305 371.8114 33.0691 0.1144 4677 +4679 2 300.5883 372.1524 33.32 0.1144 4678 +4680 2 299.6147 371.7394 33.5482 0.1144 4679 +4681 2 298.5748 371.3733 33.7142 0.1144 4680 +4682 2 297.4457 371.4454 33.8568 0.1144 4681 +4683 2 296.5248 372.038 33.9864 0.1144 4682 +4684 2 296.1175 373.0756 34.1188 0.1144 4683 +4685 2 295.263 373.7231 34.2706 0.1144 4684 +4686 2 294.2562 373.27 34.4602 0.1144 4685 +4687 2 293.6293 372.4406 34.8589 0.1144 4686 +4688 2 293.269 372.7655 35.25 0.1144 4687 +4689 2 292.2016 372.8113 35.6989 0.1144 4688 +4690 2 291.2166 372.4841 36.2807 0.1144 4689 +4691 2 290.4364 372.0917 37.0381 0.1144 4690 +4692 2 290.3895 372.3274 38.2407 0.1144 4691 +4693 2 289.7031 373.1316 38.7422 0.1144 4692 +4694 2 288.8554 373.8661 38.962 0.1144 4693 +4695 2 287.9734 374.5181 39.305 0.1144 4694 +4696 2 286.8408 374.6131 39.6382 0.1144 4695 +4697 2 285.8376 375.0158 40.0862 0.1144 4696 +4698 2 285.0024 375.7765 40.542 0.1144 4697 +4699 2 284.4579 376.765 40.9917 0.1144 4698 +4700 2 283.6537 377.5543 41.4277 0.1144 4699 +4701 2 283.037 378.4924 41.8474 0.1144 4700 +4702 2 282.4193 379.3847 42.2912 0.1144 4701 +4703 2 281.6082 380.1775 42.6614 0.1144 4702 +4704 2 280.7502 380.9131 42.9436 0.1144 4703 +4705 2 279.7069 381.3673 43.1326 0.1144 4704 +4706 2 278.5892 381.5457 43.2482 0.1144 4705 +4707 2 277.4509 381.5606 43.3101 0.1144 4706 +4708 2 276.3515 381.8375 43.3384 0.1144 4707 +4709 2 275.4535 382.4941 43.3583 0.1144 4708 +4710 2 274.7064 383.3555 43.3807 0.1144 4709 +4711 2 273.8313 384.0877 43.4084 0.1144 4710 +4712 2 272.9195 384.7764 43.4482 0.1144 4711 +4713 2 272.256 385.6516 43.5263 0.1144 4712 +4714 2 271.9494 386.7418 43.6251 0.1144 4713 +4715 2 271.6725 387.8515 43.6974 0.1144 4714 +4716 2 271.7412 388.9211 43.7433 0.1144 4715 +4717 2 272.1176 389.9976 43.7629 0.1144 4716 +4718 2 272.4116 391.1027 43.7559 0.1144 4717 +4719 2 272.7216 392.2044 43.7214 0.1144 4718 +4720 2 272.9138 393.3255 43.6638 0.1144 4719 +4721 2 273.082 394.4558 43.5854 0.1144 4720 +4722 2 273.2009 395.5883 43.4826 0.1144 4721 +4723 2 272.7616 396.5321 43.3194 0.1144 4722 +4724 2 271.9219 397.2872 43.0777 0.1144 4723 +4725 2 271.0628 398.0193 42.7784 0.1144 4724 +4726 2 270.2036 398.7526 42.4432 0.1144 4725 +4727 2 269.3445 399.4859 42.0941 0.1144 4726 +4728 2 268.4865 400.2181 41.7528 0.1144 4727 +4729 2 267.6663 401.0017 41.4543 0.1144 4728 +4730 2 266.8952 401.8426 41.2236 0.1144 4729 +4731 2 266.139 402.6972 41.0572 0.1144 4730 +4732 2 265.3485 403.5208 40.973 0.1144 4731 +4733 2 264.4402 404.1866 40.9906 0.1144 4732 +4734 2 263.4392 404.722 41.071 0.1144 4733 +4735 2 262.4359 405.2643 41.1634 0.1144 4734 +4736 2 261.4921 405.9061 41.2244 0.1144 4735 +4737 2 260.5792 406.5959 41.2311 0.1144 4736 +4738 2 259.6216 407.2171 41.1732 0.1144 4737 +4739 2 258.5989 407.0901 41.0332 0.1144 4738 +4740 2 257.5602 406.6199 40.8215 0.1144 4739 +4741 2 256.4997 406.2985 40.5076 0.1144 4740 +4742 2 255.4415 406.1326 40.0747 0.1144 4741 +4743 2 254.405 405.7619 39.6256 0.1144 4742 +4744 2 253.4006 405.2254 39.2361 0.1144 4743 +4745 2 252.4408 404.6053 38.9337 0.1144 4744 +4746 2 251.4558 404.0299 38.6938 0.1144 4745 +4747 2 250.4308 403.5346 38.4894 0.1144 4746 +4748 2 249.7592 402.6754 38.3303 0.1144 4747 +4749 2 250.2168 401.7774 38.2108 0.1144 4748 +4750 2 251.2613 401.433 38.061 0.1144 4749 +4751 2 252.395 401.3038 37.9288 0.1144 4750 +4752 2 253.499 401.0109 37.8361 0.1144 4751 +4753 2 254.564 400.5956 37.7768 0.1144 4752 +4754 2 255.5273 399.9836 37.7378 0.1144 4753 +4755 2 256.2171 399.1061 37.7846 0.1144 4754 +4756 2 256.7662 398.1063 37.8067 0.1144 4755 +4757 2 257.5933 397.3226 37.7717 0.1144 4756 +4758 2 258.4307 396.547 37.6841 0.1144 4757 +4759 2 259.267 395.7714 37.553 0.1144 4758 +4760 2 260.1044 394.9957 37.3884 0.1144 4759 +4761 2 260.9418 394.2201 37.1994 0.1144 4760 +4762 2 261.7781 393.4433 37.0062 0.1144 4761 +4763 2 262.6155 392.6677 36.8144 0.1144 4762 +4764 2 263.4529 391.8932 36.6243 0.1144 4763 +4765 2 264.2892 391.1164 36.4367 0.1144 4764 +4766 2 265.1266 390.3408 36.2524 0.1144 4765 +4767 2 265.9628 389.5652 36.0727 0.1144 4766 +4768 2 266.8002 388.7895 35.8996 0.1144 4767 +4769 2 267.6377 388.0139 35.7367 0.1144 4768 +4770 2 268.4739 387.2383 35.5872 0.1144 4769 +4771 2 269.3113 386.4626 35.4539 0.1144 4770 +4772 2 270.1487 385.687 35.3391 0.1144 4771 +4773 2 270.9919 384.9137 35.2654 0.1144 4772 +4774 2 271.74 384.0671 35.292 0.1144 4773 +4775 2 272.2228 383.0306 35.3276 0.1144 4774 +4776 2 272.5454 381.9336 35.3651 0.1144 4775 +4777 2 272.8863 380.841 35.429 0.1144 4776 +4778 2 289.9662 371.7908 37.6354 0.1144 4691 +4779 2 288.9378 371.8812 38.0509 0.1144 4778 +4780 2 288.0798 372.5699 38.4398 0.1144 4779 +4781 2 287.1211 373.1614 38.7923 0.1144 4780 +4782 2 286.0217 373.4531 39.0726 0.1144 4781 +4783 2 284.8892 373.5572 39.354 0.1144 4782 +4784 2 283.8733 374.0468 39.6763 0.1144 4783 +4785 2 282.7648 373.8798 40.0299 0.1144 4784 +4786 2 281.8519 373.5252 40.5647 0.1144 4785 +4787 2 281.1929 373.6338 41.0735 0.1144 4786 +4788 2 280.0672 373.8043 41.5374 0.1144 4787 +4789 2 278.9335 373.8867 41.9516 0.1144 4788 +4790 2 277.8112 373.8992 42.3811 0.1144 4789 +4791 2 276.6936 373.9759 42.8112 0.1144 4790 +4792 2 275.6422 374.2859 43.2104 0.1144 4791 +4793 2 274.9375 375.1268 43.6551 0.1144 4792 +4794 2 274.1344 375.812 44.1266 0.1144 4793 +4795 2 273.0373 375.8921 44.6284 0.1144 4794 +4796 2 272.2743 376.352 45.2502 0.1144 4795 +4797 2 271.6725 377.1448 45.9785 0.1144 4796 +4798 2 270.7688 377.7785 46.6256 0.1144 4797 +4799 2 269.666 377.7076 47.1436 0.1144 4798 +4800 2 268.6318 377.2695 47.6218 0.1144 4799 +4801 2 267.5667 376.8611 48.0214 0.1144 4800 +4802 2 266.5142 376.4115 48.3473 0.1144 4801 +4803 2 265.4503 375.9985 48.662 0.1144 4802 +4804 2 264.7353 375.4654 49.2114 0.1144 4803 +4805 2 263.8293 375.9287 49.8252 0.1144 4804 +4806 2 262.8248 376.1895 50.3317 0.1144 4805 +4807 2 261.7094 376.3463 50.8054 0.1144 4806 +4808 2 260.7107 375.8074 51.2056 0.1144 4807 +4809 2 259.6468 375.4047 51.5374 0.1144 4808 +4810 2 258.5474 375.0901 51.7611 0.1144 4809 +4811 2 258.5051 374.6577 51.9445 0.1144 4810 +4812 2 258.393 373.5229 52.136 0.1144 4811 +4813 2 258.2809 372.388 52.3314 0.1144 4812 +4814 2 258.1699 371.2532 52.5364 0.1144 4813 +4815 2 258.0578 370.1195 52.7506 0.1144 4814 +4816 2 257.9457 368.9846 52.9738 0.1144 4815 +4817 2 257.8347 367.8498 53.198 0.1144 4816 +4818 2 257.7226 366.7161 53.4178 0.1144 4817 +4819 2 257.6105 365.5812 53.632 0.1144 4818 +4820 2 257.4984 364.4464 53.8384 0.1144 4819 +4821 2 257.3874 363.3127 54.0333 0.1144 4820 +4822 2 257.2753 362.1778 54.2114 0.1144 4821 +4823 2 257.1632 361.043 54.367 0.1144 4822 +4824 2 257.0522 359.9093 54.4944 0.1144 4823 +4825 2 256.9401 358.7744 54.5888 0.1144 4824 +4826 2 257.1746 358.6623 55.5223 0.1144 4825 +4827 2 257.877 357.77 55.7206 0.1144 4826 +4828 2 258.5474 356.8433 55.7987 0.1144 4827 +4829 2 259.2178 355.9167 55.8807 0.1144 4828 +4830 2 259.8882 354.9901 55.9647 0.1144 4829 +4831 2 260.5574 354.0634 56.0482 0.1144 4830 +4832 2 261.2278 353.1368 56.1291 0.1144 4831 +4833 2 261.8982 352.2101 56.2061 0.1144 4832 +4834 2 262.5686 351.2835 56.2828 0.1144 4833 +4835 2 263.239 350.3569 56.3598 0.1144 4834 +4836 2 263.9082 349.4302 56.4365 0.1144 4835 +4837 2 264.5786 348.5036 56.5132 0.1144 4836 +4838 2 265.249 347.5769 56.5897 0.1144 4837 +4839 2 265.9194 346.6503 56.6661 0.1144 4838 +4840 2 266.5898 345.7237 56.7423 0.1144 4839 +4841 2 267.259 344.797 56.8179 0.1144 4840 +4842 2 267.9294 343.8704 56.8926 0.1144 4841 +4843 2 268.5998 342.9437 56.968 0.1144 4842 +4844 2 269.2701 342.0171 57.0419 0.1144 4843 +4845 2 269.9405 341.0905 57.113 0.1144 4844 +4846 2 270.6098 340.1638 57.1796 0.1144 4845 +4847 2 271.2802 339.2372 57.2412 0.1144 4846 +4848 2 271.9505 338.3105 57.3611 0.1144 4847 +4849 2 256.9733 358.1292 54.5908 0.1144 4825 +4850 2 257.0316 356.9921 54.4992 0.1144 4849 +4851 2 257.09 355.8549 54.3357 0.1144 4850 +4852 2 257.1483 354.7178 54.1204 0.1144 4851 +4853 2 257.2067 353.5818 53.872 0.1144 4852 +4854 2 257.2662 352.4447 53.608 0.1144 4853 +4855 2 257.3245 351.3075 53.3434 0.1144 4854 +4856 2 257.3828 350.1704 53.0827 0.1144 4855 +4857 2 257.4412 349.0333 52.8276 0.1144 4856 +4858 2 257.5007 347.8961 52.579 0.1144 4857 +4859 2 257.6654 346.7796 52.3421 0.1144 4858 +4860 2 258.0555 345.7065 52.1254 0.1144 4859 +4861 2 258.4445 344.6334 51.9263 0.1144 4860 +4862 2 258.8334 343.5604 51.7426 0.1144 4861 +4863 2 259.2224 342.4873 51.5724 0.1144 4862 +4864 2 259.6114 341.4142 51.4136 0.1144 4863 +4865 2 260.1582 340.4533 51.2708 0.1144 4864 +4866 2 261.0551 339.744 51.1526 0.1144 4865 +4867 2 261.952 339.0336 51.0544 0.1144 4866 +4868 2 262.8477 338.3243 50.9709 0.1144 4867 +4869 2 263.7446 337.6138 50.8976 0.1144 4868 +4870 2 264.6415 336.9046 50.8304 0.1144 4869 +4871 2 265.5384 336.1941 50.7654 0.1144 4870 +4872 2 266.4353 335.4837 50.7004 0.1144 4871 +4873 2 267.3311 334.7744 50.6355 0.1144 4872 +4874 2 268.228 334.064 50.5705 0.1144 4873 +4875 2 269.1249 333.3547 50.5056 0.1144 4874 +4876 2 270.0218 332.6443 50.4409 0.1144 4875 +4877 2 270.9186 331.9339 50.3759 0.1144 4876 +4878 2 271.8144 331.2246 50.311 0.1144 4877 +4879 2 272.7113 330.5142 50.246 0.1144 4878 +4880 2 273.6082 329.8049 50.181 0.1144 4879 +4881 2 274.5051 329.0945 50.1161 0.1144 4880 +4882 2 275.402 328.3841 50.0511 0.1144 4881 +4883 2 276.2977 327.6748 49.9864 0.1144 4882 +4884 2 277.1946 326.9644 49.9215 0.1144 4883 +4885 2 278.0915 326.2551 49.8565 0.1144 4884 +4886 2 278.9884 325.5446 49.7916 0.1144 4885 +4887 2 279.8842 324.8342 49.7266 0.1144 4886 +4888 2 280.7811 324.1249 49.6619 0.1144 4887 +4889 2 281.678 323.4145 49.597 0.1144 4888 +4890 2 282.5749 322.7052 49.532 0.1144 4889 +4891 2 283.4718 321.9948 49.4673 0.1144 4890 +4892 2 284.3675 321.2844 49.4024 0.1144 4891 +4893 2 285.2644 320.5751 49.3377 0.1144 4892 +4894 2 286.1613 319.8647 49.2727 0.1144 4893 +4895 2 287.0582 319.1554 49.208 0.1144 4894 +4896 2 287.9551 318.445 49.1436 0.1144 4895 +4897 2 288.8508 317.7346 49.0792 0.1144 4896 +4898 2 289.7477 317.0253 49.0148 0.1144 4897 +4899 2 290.6446 316.3149 48.951 0.1144 4898 +4900 2 291.5415 315.6056 48.8874 0.1144 4899 +4901 2 292.4384 314.8952 48.8244 0.1144 4900 +4902 2 293.3342 314.1859 48.762 0.1144 4901 +4903 2 294.2311 313.4754 48.7007 0.1144 4902 +4904 2 295.128 312.765 48.641 0.1144 4903 +4905 2 296.0249 312.0557 48.5834 0.1144 4904 +4906 2 296.9206 311.3453 48.5288 0.1144 4905 +4907 2 297.8175 310.636 48.4778 0.1144 4906 +4908 2 298.7144 309.9256 48.4313 0.1144 4907 +4909 2 299.7177 309.3754 48.3994 0.1144 4908 +4910 2 300.7198 308.8239 48.3633 0.1144 4909 +4911 2 258.2054 374.9677 51.9047 0.1144 4810 +4912 2 257.1472 374.5891 52.9589 0.1144 4911 +4913 2 256.0878 374.1967 53.3988 0.1144 4912 +4914 2 255.0273 373.7837 53.9174 0.1144 4913 +4915 2 253.9897 373.365 54.5401 0.1144 4914 +4916 2 253.1283 372.9509 55.3734 0.1144 4915 +4917 2 252.7073 372.213 56.3811 0.1144 4916 +4918 2 252.1879 371.4259 57.4616 0.1144 4917 +4919 2 251.9626 370.4993 58.5427 0.1144 4918 +4920 2 252.22 369.4811 59.5389 0.1144 4919 +4921 2 252.9281 368.7787 60.4492 0.1144 4920 +4922 2 253.7186 367.963 61.0814 0.1144 4921 +4923 2 254.508 367.1348 61.4802 0.1144 4922 +4924 2 255.2973 366.3065 61.7078 0.1144 4923 +4925 2 256.0867 365.4794 61.8184 0.1144 4924 +4926 2 256.876 364.6511 61.8579 0.1144 4925 +4927 2 257.6643 363.8229 61.8604 0.1144 4926 +4928 2 258.4536 362.9946 61.8607 0.1144 4927 +4929 2 259.243 362.1652 61.861 0.1144 4928 +4930 2 260.0323 361.3381 61.8612 0.1144 4929 +4931 2 260.8217 360.5099 61.8618 0.1144 4930 +4932 2 261.6099 359.6816 61.8626 0.1144 4931 +4933 2 262.3993 358.8534 61.8638 0.1144 4932 +4934 2 263.0742 357.9301 61.8652 0.1144 4933 +4935 2 263.6954 356.9692 61.8674 0.1144 4934 +4936 2 264.312 356.0059 61.8702 0.1144 4935 +4937 2 264.9298 355.0427 61.8744 0.1144 4936 +4938 2 265.5464 354.0794 61.8803 0.1144 4937 +4939 2 266.1642 353.1162 61.8884 0.1144 4938 +4940 2 266.7808 352.1529 61.8996 0.1144 4939 +4941 2 267.3013 351.1348 61.9158 0.1144 4940 +4942 2 267.5862 350.0285 61.9385 0.1144 4941 +4943 2 267.8573 348.9166 61.9696 0.1144 4942 +4944 2 268.554 348.0151 62.0071 0.1144 4943 +4945 2 269.4555 347.315 62.0679 0.1144 4944 +4946 2 270.4782 346.8345 62.1866 0.1144 4945 +4947 2 271.4197 346.1858 62.2807 0.1144 4946 +4948 2 272.3624 345.5372 62.4224 0.1144 4947 +4949 2 263.9219 376.2685 50.1959 0.1144 4805 +4950 2 263.9082 377.3404 49.9411 0.1144 4949 +4951 2 263.5879 378.4341 49.854 0.1144 4950 +4952 2 263.0971 379.4648 49.7876 0.1144 4951 +4953 2 262.5274 380.4555 49.74 0.1144 4952 +4954 2 261.9874 381.4645 49.7101 0.1144 4953 +4955 2 261.5779 382.5284 49.6955 0.1144 4954 +4956 2 261.4532 383.6518 49.6947 0.1144 4955 +4957 2 261.6603 384.7661 49.6933 0.1144 4956 +4958 2 262.2689 385.7065 49.6916 0.1144 4957 +4959 2 263.0216 386.569 49.6891 0.1144 4958 +4960 2 263.74 387.4579 49.6857 0.1144 4959 +4961 2 264.4402 388.3628 49.681 0.1144 4960 +4962 2 264.8371 389.4096 49.6742 0.1144 4961 +4963 2 265.0431 390.5341 49.665 0.1144 4962 +4964 2 265.2524 391.6587 49.6518 0.1144 4963 +4965 2 265.4858 392.7787 49.6322 0.1144 4964 +4966 2 265.7443 393.8929 49.6059 0.1144 4965 +4967 2 266.0029 395.0072 49.5734 0.1144 4966 +4968 2 266.2511 396.1237 49.537 0.1144 4967 +4969 2 266.4536 397.2254 49.4318 0.1144 4968 +4970 2 266.1104 398.2413 49.3114 0.1144 4969 +4971 2 265.4801 399.1942 49.2288 0.1144 4970 +4972 2 264.7285 400.0534 49.1924 0.1144 4971 +4973 2 263.7149 400.5293 49.203 0.1144 4972 +4974 2 262.6738 400.9972 49.259 0.1144 4973 +4975 2 261.5859 401.3369 49.3562 0.1144 4974 +4976 2 260.4968 401.4227 49.576 0.1144 4975 +4977 2 259.4077 401.3896 49.8982 0.1144 4976 +4978 2 258.274 401.3999 50.1805 0.1144 4977 +4979 2 257.1426 401.5589 50.3972 0.1144 4978 +4980 2 256.0581 401.9135 50.5529 0.1144 4979 +4981 2 254.929 402.0291 50.6783 0.1144 4980 +4982 2 253.8307 401.7488 50.75 0.1144 4981 +4983 2 252.8171 401.226 50.7844 0.1144 4982 +4984 2 251.8585 400.6013 50.8066 0.1144 4983 +4985 2 250.8426 400.0797 50.8211 0.1144 4984 +4986 2 249.7489 399.7514 50.8292 0.1144 4985 +4987 2 248.6267 399.5306 50.8315 0.1144 4986 +4988 2 247.4975 399.351 50.8329 0.1144 4987 +4989 2 246.3684 399.1679 50.8354 0.1144 4988 +4990 2 245.2393 398.9803 50.839 0.1144 4989 +4991 2 244.0976 398.9666 50.8446 0.1144 4990 +4992 2 242.9581 399.0592 50.85 0.1144 4991 +4993 2 241.8427 399.3052 50.8536 0.1144 4992 +4994 2 240.8212 399.8097 50.8729 0.1144 4993 +4995 2 240.1405 400.7112 50.9121 0.1144 4994 +4996 2 239.4369 401.6126 50.9359 0.1144 4995 +4997 2 238.4016 402.0222 50.8654 0.1144 4996 +4998 2 237.6191 402.8516 50.8063 0.1144 4997 +4999 2 236.8435 403.6924 50.7637 0.1144 4998 +5000 2 236.0667 404.5333 50.7382 0.1144 4999 +5001 2 235.2911 405.3741 50.7349 0.1144 5000 +5002 2 234.5154 406.215 50.7556 0.1144 5001 +5003 2 233.8656 407.1542 50.8169 0.1144 5002 +5004 2 233.376 408.1815 50.9169 0.1144 5003 +5005 2 232.8921 409.2157 51.0166 0.1144 5004 +5006 2 232.6633 410.3368 51.175 0.1144 5005 +5007 2 281.6928 373.9519 41.2776 0.1144 4786 +5008 2 281.2238 374.8533 42.2929 0.1144 5007 +5009 2 280.7685 375.7674 42.7865 0.1144 5008 +5010 2 280.5134 376.8702 43.1922 0.1144 5009 +5011 2 279.7183 377.6699 43.4946 0.1144 5010 +5012 2 279.0399 378.5885 43.7007 0.1144 5011 +5013 2 278.6429 379.6593 43.82 0.1144 5012 +5014 2 277.6637 380.2473 43.8642 0.1144 5013 +5015 2 293.2472 371.9693 34.8664 0.1144 4687 +5016 2 292.4247 371.1765 34.9527 0.1144 5015 +5017 2 291.3505 370.8322 34.9894 0.1144 5016 +5018 2 290.2454 370.537 35.0372 0.1144 5017 +5019 2 289.2329 370.0119 35.0963 0.1144 5018 +5020 2 288.5294 369.1242 35.1646 0.1144 5019 +5021 2 288.1118 368.1689 35.3906 0.1144 5020 +5022 2 287.271 367.4048 35.5701 0.1144 5021 +5023 2 286.191 367.033 35.6978 0.1144 5022 +5024 2 285.0493 366.9746 35.7832 0.1144 5023 +5025 2 283.9408 366.6932 35.8364 0.1144 5024 +5026 2 282.8952 366.7367 35.7067 0.1144 5025 +5027 2 282.2603 367.8749 35.6048 0.1144 5026 +5028 2 281.9239 368.8725 35.8089 0.1144 5027 +5029 2 281.1403 369.6653 36.0654 0.1144 5028 +5030 2 280.1999 369.107 36.3499 0.1144 5029 +5031 2 279.2859 368.4183 36.6668 0.1144 5030 +5032 2 279.5044 368.4389 37.1428 0.1144 5031 +5033 2 280.4985 368.7329 37.6855 0.1144 5032 +5034 2 281.5155 368.2994 38.1962 0.1144 5033 +5035 2 282.4628 367.9253 38.7699 0.1144 5034 +5036 2 283.4706 367.6839 39.4274 0.1144 5035 +5037 2 284.411 367.4791 40.2074 0.1144 5036 +5038 2 285.0974 367.1817 40.9951 0.1144 5037 +5039 2 285.6568 366.374 41.7466 0.1144 5038 +5040 2 286.4759 365.611 42.394 0.1144 5039 +5041 2 287.398 365.0939 42.9965 0.1144 5040 +5042 2 288.28 364.4132 43.5252 0.1144 5041 +5043 2 289.1048 363.6215 43.9272 0.1144 5042 +5044 2 289.7866 362.7098 44.2854 0.1144 5043 +5045 2 290.4204 361.766 44.6323 0.1144 5044 +5046 2 291.1011 360.8759 45.015 0.1144 5045 +5047 2 291.5701 361.1597 44.989 0.1144 5046 +5048 2 292.5826 360.9663 45.4157 0.1144 5047 +5049 2 293.7014 360.837 45.57 0.1144 5048 +5050 2 294.7036 360.4767 45.8758 0.1144 5049 +5051 2 295.5673 359.7651 46.2132 0.1144 5050 +5052 2 296.399 358.9895 46.578 0.1144 5051 +5053 2 296.9424 358.0731 47.0476 0.1144 5052 +5054 2 297.3176 357.0149 47.5149 0.1144 5053 +5055 2 297.5144 355.8938 47.938 0.1144 5054 +5056 2 298.1161 354.95 48.337 0.1144 5055 +5057 2 299.132 354.4707 48.7351 0.1144 5056 +5058 2 300.0861 353.8472 49.1033 0.1144 5057 +5059 2 300.8834 353.0281 49.425 0.1144 5058 +5060 2 301.2072 351.9699 49.8285 0.1144 5059 +5061 2 301.5241 350.9083 50.309 0.1144 5060 +5062 2 301.9485 349.8844 50.8508 0.1144 5061 +5063 2 302.5159 348.8948 51.3663 0.1144 5062 +5064 2 303.0044 347.8607 51.8333 0.1144 5063 +5065 2 303.4071 348.022 52.446 0.1144 5064 +5066 2 303.4426 347.6639 53.1896 0.1144 5065 +5067 2 302.7871 346.7556 53.8516 0.1144 5066 +5068 2 302.1064 345.8484 54.4202 0.1144 5067 +5069 2 301.4623 344.9057 54.8811 0.1144 5068 +5070 2 300.848 343.9413 55.2222 0.1144 5069 +5071 2 300.0723 343.1314 55.5167 0.1144 5070 +5072 2 299.2166 342.4118 55.8046 0.1144 5071 +5073 2 298.5165 341.5183 56.0423 0.1144 5072 +5074 2 297.9662 340.5242 56.2531 0.1144 5073 +5075 2 297.3599 339.5564 56.4164 0.1144 5074 +5076 2 296.6426 338.6663 56.5152 0.1144 5075 +5077 2 296.1198 337.6585 56.523 0.1144 5076 +5078 2 295.7629 336.5877 56.4533 0.1144 5077 +5079 2 295.4769 335.4929 56.3536 0.1144 5078 +5080 2 295.6508 334.3695 56.3032 0.1144 5079 +5081 2 296.2411 333.3959 56.3114 0.1144 5080 +5082 2 296.9618 332.65 56.5365 0.1144 5081 +5083 2 297.6677 331.8103 56.8669 0.1144 5082 +5084 2 298.2969 330.8562 57.1446 0.1144 5083 +5085 2 299.0164 329.9662 57.358 0.1144 5084 +5086 2 299.823 329.1563 57.5016 0.1144 5085 +5087 2 300.6775 328.3955 57.5809 0.1144 5086 +5088 2 301.5332 327.6347 57.6036 0.1144 5087 +5089 2 302.3741 326.8602 57.6041 0.1144 5088 +5090 2 303.2275 326.0983 57.6041 0.1144 5089 +5091 2 304.1599 325.436 57.6041 0.1144 5090 +5092 2 305.1826 324.9235 57.6041 0.1144 5091 +5093 2 306.2717 324.5745 57.6041 0.1144 5092 +5094 2 307.3619 324.2268 57.6041 0.1144 5093 +5095 2 308.4293 323.8149 57.6041 0.1144 5094 +5096 2 309.4795 323.3619 57.6041 0.1144 5095 +5097 2 310.5811 323.0542 57.6041 0.1144 5096 +5098 2 311.7011 322.8185 57.6041 0.1144 5097 +5099 2 312.8199 322.5828 57.6041 0.1144 5098 +5100 2 313.9399 322.3472 57.6041 0.1144 5099 +5101 2 302.866 346.9683 51.175 0.1144 5064 +5102 2 302.6315 345.8495 50.7674 0.1144 5101 +5103 2 302.0926 344.9606 50.5599 0.1144 5102 +5104 2 301.1832 345.0098 50.1892 0.1144 5103 +5105 2 300.4945 345.9044 49.9534 0.1144 5104 +5106 2 299.8115 346.8162 49.8448 0.1144 5105 +5107 2 299.1297 347.728 49.8434 0.1144 5106 +5108 2 298.4467 348.6409 49.9293 0.1144 5107 +5109 2 297.7649 349.5526 50.0828 0.1144 5108 +5110 2 297.0831 350.4655 50.267 0.1144 5109 +5111 2 296.3269 351.3235 50.4098 0.1144 5110 +5112 2 295.5387 352.1518 50.5044 0.1144 5111 +5113 2 294.7482 352.9801 50.561 0.1144 5112 +5114 2 293.9588 353.8072 50.5893 0.1144 5113 +5115 2 293.1694 354.6354 50.5985 0.1144 5114 +5116 2 292.3801 355.4637 50.5966 0.1144 5115 +5117 2 291.5907 356.2908 50.5901 0.1144 5116 +5118 2 290.8002 357.1179 50.5814 0.1144 5117 +5119 2 290.0109 357.9462 50.5691 0.1144 5118 +5120 2 289.2204 358.7744 50.5509 0.1144 5119 +5121 2 288.431 359.6015 50.5266 0.1144 5120 +5122 2 287.6416 360.4298 50.4941 0.1144 5121 +5123 2 286.8523 361.2569 50.456 0.1144 5122 +5124 2 285.7254 361.3221 50.3695 0.1144 5123 +5125 2 284.5872 361.2603 50.2589 0.1144 5124 +5126 2 283.4592 361.0716 50.1724 0.1144 5125 +5127 2 282.3198 360.9686 50.0503 0.1144 5126 +5128 2 291.1183 360.638 45.3849 0.1144 5046 +5129 2 291.2944 359.5947 45.8542 0.1144 5128 +5130 2 291.5267 358.485 46.2764 0.1144 5129 +5131 2 291.4534 357.3536 46.6463 0.1144 5130 +5132 2 291.8699 356.3034 46.9574 0.1144 5131 +5133 2 292.5517 355.4065 47.2298 0.1144 5132 +5134 2 293.1878 354.4558 47.3908 0.1144 5133 +5135 2 293.9462 353.599 47.4516 0.1144 5134 +5136 2 294.5686 352.6391 47.4432 0.1144 5135 +5137 2 294.5834 352.614 47.8008 0.1144 5136 +5138 2 295.16 351.6256 47.9282 0.1144 5137 +5139 2 295.6771 350.6051 47.9674 0.1144 5138 +5140 2 296.0283 349.5366 48.0808 0.1144 5139 +5141 2 296.3338 348.4349 48.183 0.1144 5140 +5142 2 296.8005 347.3916 48.2616 0.1144 5141 +5143 2 297.4423 346.4444 48.3633 0.1144 5142 +5144 2 293.7723 352.3074 47.3371 0.1144 5136 +5145 2 292.8709 351.6267 47.1839 0.1144 5144 +5146 2 292.1559 350.7515 46.9636 0.1144 5145 +5147 2 291.6296 349.7814 46.6441 0.1144 5146 +5148 2 290.9306 348.8903 46.3358 0.1144 5147 +5149 2 290.4959 347.8424 46.058 0.1144 5148 +5150 2 290.0761 346.7784 45.8074 0.1144 5149 +5151 2 289.6482 345.7809 45.4616 0.1144 5150 +5152 2 289.3862 344.8382 44.9686 0.1144 5151 +5153 2 289.8541 343.8166 44.5645 0.1144 5152 +5154 2 290.5737 342.9277 44.2621 0.1144 5153 +5155 2 291.2967 342.0411 44.0524 0.1144 5154 +5156 2 292.1833 341.3181 43.927 0.1144 5155 +5157 2 293.1592 340.721 43.8768 0.1144 5156 +5158 2 294.1178 340.0963 43.8738 0.1144 5157 +5159 2 294.9827 339.3482 43.8777 0.1144 5158 +5160 2 295.8453 338.5977 43.883 0.1144 5159 +5161 2 296.7067 337.8438 43.8903 0.1144 5160 +5162 2 297.2924 336.8622 43.9006 0.1144 5161 +5163 2 297.8782 335.8784 43.9149 0.1144 5162 +5164 2 298.6904 335.073 43.9354 0.1144 5163 +5165 2 299.5347 334.3008 43.9648 0.1144 5164 +5166 2 300.3069 333.4577 44.0051 0.1144 5165 +5167 2 300.475 333.5492 43.6962 0.1144 5166 +5168 2 301.42 334.0652 42.882 0.1144 5167 +5169 2 302.3649 334.5811 42.5186 0.1144 5168 +5170 2 303.3099 335.097 42.1257 0.1144 5169 +5171 2 304.304 335.5638 41.776 0.1144 5170 +5172 2 305.3794 335.5066 41.7245 0.1144 5171 +5173 2 306.4604 335.4162 41.939 0.1144 5172 +5174 2 307.5415 335.3258 42.3553 0.1144 5173 +5175 2 308.6226 335.2355 42.8912 0.1144 5174 +5176 2 309.7151 334.9506 43.405 0.1144 5175 +5177 2 310.6154 334.2516 43.8292 0.1144 5176 +5178 2 311.5158 333.5526 44.4268 0.1144 5177 +5179 2 300.3034 332.7232 44.0569 0.1144 5166 +5180 2 300.3423 331.5804 44.1188 0.1144 5179 +5181 2 300.8857 331.2132 44.2719 0.1144 5180 +5182 2 301.9268 330.775 44.4287 0.1144 5181 +5183 2 302.9449 330.4078 44.6023 0.1144 5182 +5184 2 303.732 329.5784 44.725 0.1144 5183 +5185 2 304.5031 328.7364 44.7978 0.1144 5184 +5186 2 305.1288 327.7857 44.8204 0.1144 5185 +5187 2 305.424 326.707 44.7922 0.1144 5186 +5188 2 305.3393 325.571 44.7283 0.1144 5187 +5189 2 305.043 324.4704 44.6345 0.1144 5188 +5190 2 304.6769 323.3985 44.4892 0.1144 5189 +5191 2 304.3532 322.3289 44.2512 0.1144 5190 +5192 2 303.978 321.2764 43.9516 0.1144 5191 +5193 2 303.4288 320.304 43.6671 0.1144 5192 +5194 2 302.8294 319.3419 43.4364 0.1144 5193 +5195 2 302.4175 318.2848 43.2328 0.1144 5194 +5196 2 302.2517 317.1717 43.0825 0.1144 5195 +5197 2 302.2402 316.0277 43.0108 0.1144 5196 +5198 2 301.889 314.9878 42.9982 0.1144 5197 +5199 2 300.9807 314.4261 43.0441 0.1144 5198 +5200 2 299.8744 314.4719 43.1623 0.1144 5199 +5201 2 299.0222 315.148 43.3073 0.1144 5200 +5202 2 298.5291 316.1638 43.4482 0.1144 5201 +5203 2 298.4032 317.2712 43.6391 0.1144 5202 +5204 2 298.258 318.3958 43.829 0.1144 5203 +5205 2 297.8736 319.4666 43.9958 0.1144 5204 +5206 2 297.4263 320.5008 44.2148 0.1144 5205 +5207 2 296.8932 321.4823 44.3811 0.1144 5206 +5208 2 296.6747 322.584 44.5488 0.1144 5207 +5209 2 296.542 323.7211 44.7429 0.1144 5208 +5210 2 296.4859 324.7633 45.1175 0.1144 5209 +5211 2 296.4573 325.7643 45.6672 0.1144 5210 +5212 2 296.4951 326.8442 46.2554 0.1144 5211 +5213 2 296.6667 327.947 46.807 0.1144 5212 +5214 2 296.5545 329.0739 47.2318 0.1144 5213 +5215 2 296.1885 330.1435 47.5479 0.1144 5214 +5216 2 295.2927 330.775 47.6375 0.1144 5215 +5217 2 294.1796 331.0015 47.6118 0.1144 5216 +5218 2 293.0367 331.0496 47.5222 0.1144 5217 +5219 2 291.8939 331.0244 47.3962 0.1144 5218 +5220 2 290.8448 331.061 47.1005 0.1144 5219 +5221 2 289.9216 331.712 46.8157 0.1144 5220 +5222 2 289.2215 332.6146 46.566 0.1144 5221 +5223 2 288.6781 333.6213 46.342 0.1144 5222 +5224 2 288.3486 334.715 46.1446 0.1144 5223 +5225 2 288.3784 335.8578 45.9749 0.1144 5224 +5226 2 288.4962 336.7581 44.989 0.1144 5225 +5227 2 301.0276 331.8264 45.372 0.1144 5180 +5228 2 301.5081 332.6489 46.5679 0.1144 5227 +5229 2 301.627 333.6728 47.1103 0.1144 5228 +5230 2 301.7735 334.6966 47.7599 0.1144 5229 +5231 2 302.0103 335.7892 48.3358 0.1144 5230 +5232 2 302.4324 336.8485 48.7967 0.1144 5231 +5233 2 302.9712 337.8564 49.1585 0.1144 5232 +5234 2 303.6771 338.7533 49.4455 0.1144 5233 +5235 2 304.5134 339.4488 49.7893 0.1144 5234 +5236 2 305.5315 339.9293 50.1276 0.1144 5235 +5237 2 306.338 340.6855 50.5126 0.1144 5236 +5238 2 307.339 341.0939 50.9558 0.1144 5237 +5239 2 308.3046 341.6991 51.7373 0.1144 5238 +5240 2 278.6853 368.749 35.9912 0.1144 5031 +5241 2 278.2288 369.7339 35.3702 0.1144 5240 +5242 2 277.8753 370.7967 35.0882 0.1144 5241 +5243 2 277.2919 371.7783 34.839 0.1144 5242 +5244 2 276.7611 372.7209 34.498 0.1144 5243 +5245 2 276.2485 373.7391 34.2034 0.1144 5244 +5246 2 275.537 374.128 33.6501 0.1144 5245 +5247 2 274.5794 374.5719 32.6385 0.1144 5246 +5248 2 273.5167 374.9048 32.2123 0.1144 5247 +5249 2 272.3898 375.0856 31.8116 0.1144 5248 +5250 2 271.2756 374.994 31.3729 0.1144 5249 +5251 2 270.2677 374.8591 30.8207 0.1144 5250 +5252 2 269.5664 375.3647 30.2355 0.1144 5251 +5253 2 270.286 375.9745 29.7651 0.1144 5252 +5254 2 271.2458 375.4139 29.465 0.1144 5253 +5255 2 272.0924 374.6726 29.3286 0.1144 5254 +5256 2 273.0968 374.1532 29.3751 0.1144 5255 +5257 2 274.1196 373.683 29.5739 0.1144 5256 +5258 2 275.1251 373.1728 29.8505 0.1144 5257 +5259 2 276.0747 372.5482 30.1185 0.1144 5258 +5260 2 276.9452 371.8126 30.3425 0.1144 5259 +5261 2 277.6511 370.9363 30.546 0.1144 5260 +5262 2 278.1968 369.9341 30.7068 0.1144 5261 +5263 2 278.7836 368.9537 30.809 0.1144 5262 +5264 2 279.3671 367.971 30.8697 0.1144 5263 +5265 2 279.9734 367.0055 30.9047 0.1144 5264 +5266 2 280.7937 366.2333 30.9215 0.1144 5265 +5267 2 281.7592 365.619 30.9246 0.1144 5266 +5268 2 282.5646 364.8422 30.9224 0.1144 5267 +5269 2 283.2041 363.8938 30.9193 0.1144 5268 +5270 2 284.0415 363.1742 30.9151 0.1144 5269 +5271 2 285.0962 363.3561 30.9095 0.1144 5270 +5272 2 286.2151 363.3699 30.9008 0.1144 5271 +5273 2 287.2115 362.8574 30.8882 0.1144 5272 +5274 2 287.5844 361.8232 30.872 0.1144 5273 +5275 2 287.9025 360.7238 30.8529 0.1144 5274 +5276 2 288.5774 359.8166 30.8333 0.1144 5275 +5277 2 289.4846 359.1657 30.7474 0.1144 5276 +5278 2 290.4238 358.5182 30.6827 0.1144 5277 +5279 2 291.3471 357.8421 30.6544 0.1144 5278 +5280 2 292.3446 357.2849 30.6634 0.1144 5279 +5281 2 293.3696 356.777 30.7098 0.1144 5280 +5282 2 294.3409 356.1993 30.8683 0.1144 5281 +5283 2 295.3122 355.5975 31.0688 0.1144 5282 +5284 2 296.272 354.9752 31.267 0.1144 5283 +5285 2 297.3496 354.6125 31.4894 0.1144 5284 +5286 2 298.457 354.3551 31.7313 0.1144 5285 +5287 2 297.9296 355.1445 32.6169 0.1144 5286 +5288 2 275.3185 373.8924 33.9931 0.1144 5245 +5289 2 274.1745 373.9061 33.8607 0.1144 5288 +5290 2 273.0328 373.9118 33.7848 0.1144 5289 +5291 2 271.9917 374.2379 33.7459 0.1144 5290 +5292 2 271.5055 375.272 33.7389 0.1144 5291 +5293 2 270.8466 376.1998 33.7378 0.1144 5292 +5294 2 269.944 376.9 33.7361 0.1144 5293 +5295 2 268.9487 377.4628 33.7341 0.1144 5294 +5296 2 267.9671 378.0485 33.731 0.1144 5295 +5297 2 267.0565 378.7361 33.7268 0.1144 5296 +5298 2 266.3243 379.6112 33.7207 0.1144 5297 +5299 2 265.7146 380.5768 33.7123 0.1144 5298 +5300 2 264.9767 381.4496 33.7008 0.1144 5299 +5301 2 264.1725 382.2584 33.6846 0.1144 5300 +5302 2 263.2378 382.9197 33.6619 0.1144 5301 +5303 2 262.2952 383.5672 33.6297 0.1144 5302 +5304 2 261.3708 384.2399 33.5838 0.1144 5303 +5305 2 260.4842 384.9606 33.5216 0.1144 5304 +5306 2 259.5278 385.5886 33.4407 0.1144 5305 +5307 2 258.5875 386.2304 33.3259 0.1144 5306 +5308 2 257.6734 386.8756 33.1178 0.1144 5307 +5309 2 256.6942 387.427 32.8602 0.1144 5308 +5310 2 255.803 388.1237 32.622 0.1144 5309 +5311 2 255.0548 388.9623 32.3624 0.1144 5310 +5312 2 254.1579 389.6693 32.1552 0.1144 5311 +5313 2 253.1706 390.2401 32.0001 0.1144 5312 +5314 2 252.1456 390.716 31.8685 0.1144 5313 +5315 2 251.2338 391.3761 31.7078 0.1144 5314 +5316 2 250.2809 392.0088 31.5829 0.1144 5315 +5317 2 249.3234 392.6345 31.4852 0.1144 5316 +5318 2 248.359 393.2328 31.3978 0.1144 5317 +5319 2 247.4255 393.1745 31.3146 0.1144 5318 +5320 2 246.9221 392.1689 31.2312 0.1144 5319 +5321 2 246.2998 391.3498 31.1276 0.1144 5320 +5322 2 245.2175 391.0489 30.9747 0.1144 5321 +5323 2 244.2875 391.3807 30.7432 0.1144 5322 +5324 2 243.5839 392.241 30.4828 0.1144 5323 +5325 2 242.8403 393.091 30.2484 0.1144 5324 +5326 2 242.1287 393.973 30.0804 0.1144 5325 +5327 2 241.5236 394.942 30.0152 0.1144 5326 +5328 2 240.7697 395.713 30.1249 0.1144 5327 +5329 2 239.9082 395.5426 30.5054 0.1144 5328 +5330 2 238.8054 395.4385 30.8636 0.1144 5329 +5331 2 237.6637 395.4705 31.1385 0.1144 5330 +5332 2 236.6993 396.0494 31.3222 0.1144 5331 +5333 2 235.8779 396.8422 31.4107 0.1144 5332 +5334 2 235.227 397.7802 31.407 0.1144 5333 +5335 2 234.687 398.7881 31.3298 0.1144 5334 +5336 2 234.1368 399.7914 31.2194 0.1144 5335 +5337 2 233.7501 400.8645 31.0646 0.1144 5336 +5338 2 232.6713 401.0978 30.7908 0.1144 5337 +5339 2 231.549 401.242 30.4508 0.1144 5338 +5340 2 230.405 401.2408 30.1059 0.1144 5339 +5341 2 229.2782 401.155 29.7049 0.1144 5340 +5342 2 228.1845 401.0075 29.2306 0.1144 5341 +5343 2 227.092 400.8599 28.7224 0.1144 5342 +5344 2 225.9983 400.7135 28.2128 0.1144 5343 +5345 2 224.9047 400.5659 27.1079 0.1144 5344 +5346 2 282.4273 366.5124 35.6199 0.1144 5026 +5347 2 281.3496 366.398 35.8747 0.1144 5346 +5348 2 280.2606 366.6989 35.9654 0.1144 5347 +5349 2 279.1497 366.9563 36.0528 0.1144 5348 +5350 2 278.0103 366.9906 36.1402 0.1144 5349 +5351 2 276.872 366.8877 36.2295 0.1144 5350 +5352 2 275.7337 366.7778 36.3222 0.1144 5351 +5353 2 274.6264 366.6737 36.4994 0.1144 5352 +5354 2 273.5041 366.7184 36.7326 0.1144 5353 +5355 2 272.3784 366.9014 36.9438 0.1144 5354 +5356 2 271.247 367.0707 37.123 0.1144 5355 +5357 2 270.1236 367.2881 37.2733 0.1144 5356 +5358 2 269.0459 367.6644 37.3979 0.1144 5357 +5359 2 268.0506 368.1415 37.5931 0.1144 5358 +5360 2 266.9501 368.3577 37.8087 0.1144 5359 +5361 2 265.8084 368.3783 37.984 0.1144 5360 +5362 2 264.6655 368.4252 38.117 0.1144 5361 +5363 2 263.5307 368.5682 38.2108 0.1144 5362 +5364 2 262.4004 368.4252 38.2712 0.1144 5363 +5365 2 261.2633 368.3039 38.3043 0.1144 5364 +5366 2 260.1193 368.2765 38.3317 0.1144 5365 +5367 2 258.9764 368.2994 38.3662 0.1144 5366 +5368 2 257.8725 368.5865 38.4087 0.1144 5367 +5369 2 256.7685 368.8725 38.4916 0.1144 5368 +5370 2 255.6634 369.1425 38.6114 0.1144 5369 +5371 2 254.6235 369.6138 38.7257 0.1144 5370 +5372 2 253.5859 370.0954 38.8273 0.1144 5371 +5373 2 252.5883 370.6549 38.922 0.1144 5372 +5374 2 251.4741 370.894 39.0158 0.1144 5373 +5375 2 250.4456 371.3882 39.114 0.1144 5374 +5376 2 249.5911 372.1455 39.2232 0.1144 5375 +5377 2 250.0315 373.1762 39.4293 0.1144 5376 +5378 2 250.4708 374.207 39.7034 0.1144 5377 +5379 2 250.9101 375.2377 40.0179 0.1144 5378 +5380 2 251.2739 376.273 40.3323 0.1144 5379 +5381 2 250.8986 377.3301 40.5014 0.1144 5380 +5382 2 250.3552 378.3368 40.6204 0.1144 5381 +5383 2 249.8645 379.3664 40.7025 0.1144 5382 +5384 2 249.5316 380.4589 40.7845 0.1144 5383 +5385 2 249.1987 381.5515 40.8778 0.1144 5384 +5386 2 248.8658 382.644 40.992 0.1144 5385 +5387 2 248.534 383.7376 41.1323 0.1144 5386 +5388 2 248.2011 384.8302 41.2807 0.1144 5387 +5389 2 247.8682 385.9227 41.4324 0.1144 5388 +5390 2 247.5353 387.0152 41.5842 0.1144 5389 +5391 2 247.2024 388.1077 41.7357 0.1144 5390 +5392 2 246.8706 389.2014 41.8869 0.1144 5391 +5393 2 246.5377 390.2939 42.0378 0.1144 5392 +5394 2 246.2048 391.3864 42.1887 0.1144 5393 +5395 2 245.8719 392.4789 42.3388 0.1144 5394 +5396 2 245.539 393.5726 42.4883 0.1144 5395 +5397 2 245.2072 394.6651 42.637 0.1144 5396 +5398 2 244.8743 395.7576 42.7843 0.1144 5397 +5399 2 244.5414 396.8502 42.9296 0.1144 5398 +5400 2 244.2085 397.9438 43.0724 0.1144 5399 +5401 2 243.8756 399.0364 43.2116 0.1144 5400 +5402 2 243.5427 400.1289 43.3454 0.1144 5401 +5403 2 243.211 401.2214 43.472 0.1144 5402 +5404 2 242.8781 402.3151 43.5898 0.1144 5403 +5405 2 242.5452 403.4076 43.6974 0.1144 5404 +5406 2 241.8816 404.3399 43.7718 0.1144 5405 +5407 2 241.2181 405.2712 43.8197 0.1144 5406 +5408 2 240.5557 406.2035 43.8474 0.1144 5407 +5409 2 239.8922 407.1359 43.8642 0.1144 5408 +5410 2 326.4301 362.5839 29.9345 0.1144 4652 +5411 2 326.9289 363.6067 30.1554 0.1144 5410 +5412 2 327.5718 364.5448 30.247 0.1144 5411 +5413 2 328.5499 365.0676 30.329 0.1144 5412 +5414 2 329.6642 365.3147 30.4024 0.1144 5413 +5415 2 330.7945 365.4897 30.4702 0.1144 5414 +5416 2 331.9339 365.5927 30.5326 0.1144 5415 +5417 2 333.0664 365.746 30.5892 0.1144 5416 +5418 2 333.9748 366.358 30.709 0.1144 5417 +5419 2 334.4164 367.3704 30.8952 0.1144 5418 +5420 2 334.8053 368.4446 31.0332 0.1144 5419 +5421 2 335.5798 369.274 31.0957 0.1144 5420 +5422 2 336.4161 370.052 31.0892 0.1144 5421 +5423 2 337.2535 370.8287 31.0251 0.1144 5422 +5424 2 338.0909 371.6055 30.9159 0.1144 5423 +5425 2 338.9283 372.3812 30.7835 0.1144 5424 +5426 2 339.7669 373.1568 30.6527 0.1144 5425 +5427 2 340.6043 373.9336 30.5298 0.1144 5426 +5428 2 339.8481 374.6829 30.438 0.1144 5427 +5429 2 338.9809 375.4299 30.371 0.1144 5428 +5430 2 338.1149 376.1769 30.3212 0.1144 5429 +5431 2 337.2478 376.924 30.2828 0.1144 5430 +5432 2 336.2136 377.3724 30.2358 0.1144 5431 +5433 2 335.1188 377.7008 30.1762 0.1144 5432 +5434 2 334.0217 378.0188 30.1064 0.1144 5433 +5435 2 332.928 378.3505 30.0345 0.1144 5434 +5436 2 332.2485 379.204 29.9922 0.1144 5435 +5437 2 331.6799 380.1958 29.981 0.1144 5436 +5438 2 331.1102 381.1865 29.9922 0.1144 5437 +5439 2 330.5416 382.1784 30.0163 0.1144 5438 +5440 2 329.9731 383.1702 30.0437 0.1144 5439 +5441 2 329.3668 384.1186 29.9908 0.1144 5440 +5442 2 328.9229 385.1642 29.9214 0.1144 5441 +5443 2 328.0614 385.8655 29.8556 0.1144 5442 +5444 2 326.9529 385.7339 29.7948 0.1144 5443 +5445 2 325.8741 385.3575 29.7382 0.1144 5444 +5446 2 324.7587 385.1082 29.685 0.1144 5445 +5447 2 323.7348 384.6025 29.6344 0.1144 5446 +5448 2 322.6858 384.1472 29.5742 0.1144 5447 +5449 2 321.6001 383.788 29.4832 0.1144 5448 +5450 2 320.479 383.796 29.3023 0.1144 5449 +5451 2 319.3373 383.7525 29.1273 0.1144 5450 +5452 2 318.2208 383.9905 28.9666 0.1144 5451 +5453 2 317.3319 384.7055 28.8221 0.1144 5452 +5454 2 317.1088 385.7213 28.1182 0.1144 5453 +5455 2 342.3809 359.3327 25.7225 0.1144 4632 +5456 2 343.1348 358.5582 25.1129 0.1144 5455 +5457 2 343.4482 357.4634 24.8688 0.1144 5456 +5458 2 343.7617 356.3674 24.5982 0.1144 5457 +5459 2 344.0752 355.2726 24.3074 0.1144 5458 +5460 2 344.3875 354.1767 24.002 0.1144 5459 +5461 2 344.7009 353.0819 23.6874 0.1144 5460 +5462 2 345.0144 351.9859 23.3673 0.1144 5461 +5463 2 345.4136 350.9472 22.9865 0.1144 5462 +5464 2 346.0314 350.032 22.5624 0.1144 5463 +5465 2 346.815 349.2037 22.1386 0.1144 5464 +5466 2 347.5975 348.3755 21.7104 0.1144 5465 +5467 2 348.3297 347.5186 21.2498 0.1144 5466 +5468 2 349.1923 346.8883 20.7179 0.1144 5467 +5469 2 350.1773 346.4432 20.1117 0.1144 5468 +5470 2 351.1359 346.0486 19.449 0.1144 5469 +5471 2 352.2651 346.179 18.8406 0.1144 5470 +5472 2 353.1917 346.6194 18.2349 0.1144 5471 +5473 2 353.9147 347.4248 17.6049 0.1144 5472 +5474 2 354.7269 347.6147 17.075 0.1144 5473 +5475 2 355.5335 346.8539 16.7329 0.1144 5474 +5476 2 355.649 347.1445 16.1951 0.1144 5475 +5477 2 356.213 347.8481 15.5269 0.1144 5476 +5478 2 356.7255 348.1718 14.846 0.1144 5477 +5479 2 356.4498 347.1068 14.2599 0.1144 5478 +5480 2 356.7541 346.0142 13.8677 0.1144 5479 +5481 2 357.2895 345.0521 13.5406 0.1144 5480 +5482 2 357.9462 344.1575 12.9343 0.1144 5481 +5483 2 347.1743 386.3322 22.9707 0.1144 4608 +5484 2 348.1958 386.7818 23.2165 0.1144 5483 +5485 2 349.2929 386.5484 23.4243 0.1144 5484 +5486 2 350.4141 386.3231 23.5947 0.1144 5485 +5487 2 351.5478 386.1744 23.7309 0.1144 5486 +5488 2 352.6735 386.1217 23.9058 0.1144 5487 +5489 2 353.7923 386.3551 24.0407 0.1144 5488 +5490 2 354.9352 386.3196 24.1405 0.1144 5489 +5491 2 356.0654 386.1423 24.2266 0.1144 5490 +5492 2 357.1957 385.9627 24.3039 0.1144 5491 +5493 2 357.8901 385.4628 24.1816 0.1144 5492 +5494 2 358.6074 384.5716 24.2621 0.1144 5493 +5495 2 359.3247 383.6804 24.2955 0.1144 5494 +5496 2 359.9699 382.7424 24.3419 0.1144 5495 +5497 2 360.4664 381.7265 24.4017 0.1144 5496 +5498 2 361.3084 380.9612 24.4786 0.1144 5497 +5499 2 362.3128 380.4852 24.6117 0.1144 5498 +5500 2 363.3916 380.4429 24.8484 0.1144 5499 +5501 2 364.5207 380.5894 25.0383 0.1144 5500 +5502 2 365.6487 380.4589 25.1869 0.1144 5501 +5503 2 366.7458 380.1523 25.3105 0.1144 5502 +5504 2 367.8738 379.9853 25.4054 0.1144 5503 +5505 2 369.0109 379.9132 25.4482 0.1144 5504 +5506 2 370.1538 379.967 25.427 0.1144 5505 +5507 2 371.2863 379.9739 25.3402 0.1144 5506 +5508 2 372.3628 379.7462 25.1319 0.1144 5507 +5509 2 373.3764 379.2749 24.8503 0.1144 5508 +5510 2 374.4175 378.8264 24.5743 0.1144 5509 +5511 2 375.51 378.489 24.3556 0.1144 5510 +5512 2 376.5682 378.0645 24.191 0.1144 5511 +5513 2 377.5841 377.5452 24.0738 0.1144 5512 +5514 2 378.6377 377.1036 23.9838 0.1144 5513 +5515 2 379.6684 376.614 23.8797 0.1144 5514 +5516 2 380.698 376.1232 23.7571 0.1144 5515 +5517 2 381.6636 375.5363 23.6302 0.1144 5516 +5518 2 382.557 374.8533 23.5117 0.1144 5517 +5519 2 383.6507 374.6406 23.3994 0.1144 5518 +5520 2 384.7466 374.8911 23.2768 0.1144 5519 +5521 2 385.687 375.4688 23.0839 0.1144 5520 +5522 2 386.4546 376.265 22.8507 0.1144 5521 +5523 2 387.0758 377.2203 22.6588 0.1144 5522 +5524 2 387.5494 378.2602 22.4995 0.1144 5523 +5525 2 387.9052 379.3447 22.3668 0.1144 5524 +5526 2 388.1249 380.4658 22.2553 0.1144 5525 +5527 2 388.1786 381.6041 22.147 0.1144 5526 +5528 2 388.0151 382.7126 21.9814 0.1144 5527 +5529 2 387.7142 383.796 21.7547 0.1144 5528 +5530 2 387.1811 384.7821 21.533 0.1144 5529 +5531 2 386.3528 385.5555 21.3394 0.1144 5530 +5532 2 385.4067 386.1984 21.1623 0.1144 5531 +5533 2 384.4973 386.8871 20.9921 0.1144 5532 +5534 2 383.7022 387.705 20.8211 0.1144 5533 +5535 2 383.0043 388.5939 20.5887 0.1144 5534 +5536 2 382.2642 389.4245 20.2607 0.1144 5535 +5537 2 381.6979 390.1681 19.7433 0.1144 5536 +5538 2 380.9028 390.8979 19.2641 0.1144 5537 +5539 2 380.0139 391.6187 18.8886 0.1144 5538 +5540 2 378.9534 392.011 18.6044 0.1144 5539 +5541 2 377.8369 392.2547 18.3942 0.1144 5540 +5542 2 377.1745 393.1196 18.2343 0.1144 5541 +5543 2 377.6916 393.4468 18.0969 0.1144 5542 +5544 2 378.3071 394.4112 17.9308 0.1144 5543 +5545 2 378.7773 395.3721 17.6557 0.1144 5544 +5546 2 378.8905 396.3548 17.1957 0.1144 5545 +5547 2 379.2978 397.4084 16.7731 0.1144 5546 +5548 2 379.975 398.3236 16.3642 0.1144 5547 +5549 2 380.6797 399.0352 15.848 0.1144 5548 +5550 2 381.5377 399.1302 15.2595 0.1144 5549 +5551 2 382.4461 399.3773 14.7515 0.1144 5550 +5552 2 381.7345 400.0351 14.3224 0.1144 5551 +5553 2 380.6614 400.4206 13.9756 0.1144 5552 +5554 2 379.6078 400.8633 13.7058 0.1144 5553 +5555 2 378.6125 401.2889 13.377 0.1144 5554 +5556 2 377.6561 401.8197 13.0126 0.1144 5555 +5557 2 376.8599 402.6411 12.7364 0.1144 5556 +5558 2 376.3382 403.6501 12.5339 0.1144 5557 +5559 2 377.4045 403.2863 12.3203 0.1144 5558 +5560 2 378.5187 403.3504 12.1906 0.1144 5559 +5561 2 379.5151 403.3904 12.253 0.1144 5560 +5562 2 380.4852 402.8321 12.2798 0.1144 5561 +5563 2 380.8445 403.8503 12.2433 0.1144 5562 +5564 2 380.563 404.9474 12.1422 0.1144 5563 +5565 2 380.3926 405.4611 13.2645 0.1144 5564 +5566 2 380.2564 406.581 14.3245 0.1144 5565 +5567 2 380.2702 407.7205 14.7318 0.1144 5566 +5568 2 380.2656 408.4206 15.272 0.1144 5567 +5569 2 379.6444 408.0419 16.0574 0.1144 5568 +5570 2 378.8722 408.5407 16.9721 0.1144 5569 +5571 2 378.0497 409.2603 17.8097 0.1144 5570 +5572 2 377.7831 410.1537 18.6166 0.1144 5571 +5573 2 377.1013 410.7715 19.3757 0.1144 5572 +5574 2 376.1506 411.2852 20.8074 0.1144 5573 +5575 2 380.793 404.2793 11.9014 0.1144 5564 +5576 2 381.0046 403.2611 11.4548 0.1144 5575 +5577 2 380.7587 402.2476 10.8807 0.1144 5576 +5578 2 380.9692 401.226 10.3453 0.1144 5577 +5579 2 381.1122 400.1209 9.8752 0.1144 5578 +5580 2 381.5961 399.216 9.3544 0.1144 5579 +5581 2 382.2104 398.2779 8.8855 0.1144 5580 +5582 2 382.6142 397.214 8.4913 0.1144 5581 +5583 2 383.1039 396.2713 8.0152 0.1144 5582 +5584 2 383.486 395.5689 7.4388 0.1144 5583 +5585 2 383.4574 394.6548 6.8664 0.1144 5584 +5586 2 384.1541 393.7831 6.3164 0.1144 5585 +5587 2 384.5053 392.7707 5.7914 0.1144 5586 +5588 2 384.686 391.6598 5.345 0.1144 5587 +5589 2 385.3633 390.8282 5.0157 0.1144 5588 +5590 2 386.2441 390.1246 4.721 0.1144 5589 +5591 2 386.6766 389.1442 4.4552 0.1144 5590 +5592 2 387.3618 388.372 4.2274 0.1144 5591 +5593 2 388.2324 387.7268 3.9306 0.1144 5592 +5594 2 389.008 386.9191 3.6506 0.1144 5593 +5595 2 388.4578 386.2281 3.3796 0.1144 5594 +5596 2 387.3206 386.2899 3.157 0.1144 5595 +5597 2 387.6455 387.2337 3.0063 0.1144 5596 +5598 2 388.0391 388.3068 2.9167 0.1144 5597 +5599 2 388.2141 389.4142 2.8804 0.1144 5598 +5600 2 387.951 390.5101 2.8738 0.1144 5599 +5601 2 388.0048 391.5969 2.8909 0.1144 5600 +5602 2 388.2793 392.7066 2.9267 0.1144 5601 +5603 2 388.5013 393.8289 2.9802 0.1144 5602 +5604 2 388.4246 394.9511 3.025 0.1144 5603 +5605 2 388.1123 396.0436 3.0636 0.1144 5604 +5606 2 387.641 396.9886 3.27 0.1144 5605 +5607 2 387.1914 397.9942 3.5829 0.1144 5606 +5608 2 386.4203 398.8156 3.8833 0.1144 5607 +5609 2 386.1194 399.8989 4.1534 0.1144 5608 +5610 2 385.5783 400.7764 4.5539 0.1144 5609 +5611 2 384.7913 401.1916 4.8881 0.1144 5610 +5612 2 383.7159 401.5429 5.1757 0.1144 5611 +5613 2 382.5845 401.6847 5.3862 0.1144 5612 +5614 2 381.4817 401.9776 5.5345 0.1144 5613 +5615 2 380.3892 402.3173 5.6299 0.1144 5614 +5616 2 379.2955 402.6537 5.6809 0.1144 5615 +5617 2 378.2133 403.0255 5.7235 0.1144 5616 +5618 2 377.1013 403.2863 5.7648 0.1144 5617 +5619 2 376.122 403.864 5.8134 0.1144 5618 +5620 2 375.4425 404.7724 5.8963 0.1144 5619 +5621 2 374.6714 405.6052 6.0204 0.1144 5620 +5622 2 373.9622 406.4735 6.1984 0.1144 5621 +5623 2 373.0984 407.2182 6.3305 0.1144 5622 +5624 2 372.0139 407.5408 6.3688 0.1144 5623 +5625 2 370.8951 407.7582 6.3426 0.1144 5624 +5626 2 369.7614 407.9115 6.303 0.1144 5625 +5627 2 368.6483 408.1781 6.2576 0.1144 5626 +5628 2 367.5489 408.4915 6.2164 0.1144 5627 +5629 2 366.4827 408.9079 6.193 0.1144 5628 +5630 2 365.4428 409.3838 6.186 0.1144 5629 +5631 2 386.5759 400.559 5.0613 0.1144 5610 +5632 2 387.6661 400.2158 4.7672 0.1144 5631 +5633 2 388.7026 399.7342 4.6555 0.1144 5632 +5634 2 389.7345 399.2423 4.5197 0.1144 5633 +5635 2 390.7698 399.55 4.2913 0.1144 5634 +5636 2 391.5111 400.0362 3.8249 0.1144 5635 +5637 2 392.1152 401.004 3.4514 0.1144 5636 +5638 2 392.4801 402.0874 3.1696 0.1144 5637 +5639 2 392.8793 403.1605 2.9731 0.1144 5638 +5640 2 392.9846 404.2988 2.8118 0.1144 5639 +5641 2 387.0495 385.0796 2.6425 0.1144 5596 +5642 2 386.5038 384.0843 2.5784 0.1144 5641 +5643 2 385.9776 383.0707 2.4888 0.1144 5642 +5644 2 385.9112 381.9713 2.329 0.1144 5643 +5645 2 385.4914 380.9531 2.1449 0.1144 5644 +5646 2 384.9057 379.9716 1.9596 0.1144 5645 +5647 2 384.9057 378.9306 1.6616 0.1144 5646 +5648 2 385.3541 377.8907 1.1248 0.1144 5647 +5649 2 376.71 393.2477 18.6831 0.1144 5542 +5650 2 375.9195 393.8277 18.5237 0.1144 5649 +5651 2 375.6232 394.9202 18.4399 0.1144 5650 +5652 2 375.1954 395.9819 18.3477 0.1144 5651 +5653 2 374.7126 397.0035 18.2136 0.1144 5652 +5654 2 373.897 397.5274 18.0089 0.1144 5653 +5655 2 373.8386 396.5996 17.8015 0.1144 5654 +5656 2 374.3854 395.6078 17.6398 0.1144 5655 +5657 2 374.1258 394.5439 17.4587 0.1144 5656 +5658 2 373.4188 393.671 17.4101 0.1144 5657 +5659 2 372.8033 392.7066 17.4334 0.1144 5658 +5660 2 357.5561 386.545 24.3741 0.1144 5492 +5661 2 358.3569 387.3001 24.4379 0.1144 5660 +5662 2 359.4013 387.6078 24.572 0.1144 5661 +5663 2 360.4378 387.8675 24.7812 0.1144 5662 +5664 2 361.4914 387.9087 24.9362 0.1144 5663 +5665 2 362.6045 387.7599 25.0368 0.1144 5664 +5666 2 363.7268 387.6169 25.0831 0.1144 5665 +5667 2 364.825 387.3001 25.0763 0.1144 5666 +5668 2 365.9473 387.1227 25.0185 0.1144 5667 +5669 2 367.073 387.196 24.885 0.1144 5668 +5670 2 368.1975 387.3618 24.7057 0.1144 5669 +5671 2 369.3164 387.3149 24.4863 0.1144 5670 +5672 2 370.4398 387.1456 24.2537 0.1144 5671 +5673 2 371.5712 387.0644 24.0187 0.1144 5672 +5674 2 372.6786 387.2692 23.8187 0.1144 5673 +5675 2 373.5915 387.9098 23.6764 0.1144 5674 +5676 2 374.6337 388.0425 23.5801 0.1144 5675 +5677 2 375.7548 387.9212 23.4656 0.1144 5676 +5678 2 376.8908 387.8572 23.3747 0.1144 5677 +5679 2 377.9158 388.2725 23.326 0.1144 5678 +5680 2 378.9912 388.1958 23.3509 0.1144 5679 +5681 2 380.1226 388.0997 23.4175 0.1144 5680 +5682 2 381.2655 388.11 23.4865 0.1144 5681 +5683 2 382.3774 388.3548 23.5497 0.1144 5682 +5684 2 383.423 388.8113 23.5975 0.1144 5683 +5685 2 384.2936 389.54 23.6279 0.1144 5684 +5686 2 385.1047 390.3477 23.6436 0.1144 5685 +5687 2 385.9467 391.121 23.6545 0.1144 5686 +5688 2 386.7326 391.9527 23.6692 0.1144 5687 +5689 2 387.6261 392.6608 23.69 0.1144 5688 +5690 2 388.4955 393.4044 23.7173 0.1144 5689 +5691 2 389.3558 394.1583 23.7506 0.1144 5690 +5692 2 390.136 394.9923 23.7999 0.1144 5691 +5693 2 389.7345 396.0116 23.9186 0.1144 5692 +5694 2 389.23 397.0378 24.0134 0.1144 5693 +5695 2 389.0813 397.2414 24.0852 0.1144 5694 +5696 2 388.5848 398.271 24.1355 0.1144 5695 +5697 2 389.421 399.1508 24.1816 0.1144 5696 +5698 2 390.4255 398.7206 24.1816 0.1144 5697 +5699 2 391.4482 398.2081 24.1816 0.1144 5698 +5700 2 392.5739 398.0251 24.1816 0.1144 5699 +5701 2 393.711 397.8969 24.1816 0.1144 5700 +5702 2 394.7498 397.4222 24.1816 0.1144 5701 +5703 2 387.2943 398.0811 24.1788 0.1144 5696 +5704 2 386.2956 398.5238 24.1777 0.1144 5703 +5705 2 385.5131 399.3475 24.1762 0.1144 5704 +5706 2 385.115 400.4057 24.1741 0.1144 5705 +5707 2 385.067 401.5429 24.171 0.1144 5706 +5708 2 384.8038 402.6525 24.1668 0.1144 5707 +5709 2 383.9664 403.3961 24.1608 0.1144 5708 +5710 2 383.1565 404.2027 24.1525 0.1144 5709 +5711 2 382.8419 405.2895 24.1413 0.1144 5710 +5712 2 382.6726 406.4209 24.1249 0.1144 5711 +5713 2 382.66 407.5637 24.1013 0.1144 5712 +5714 2 382.9918 408.654 24.0697 0.1144 5713 +5715 2 383.701 409.5451 24.0281 0.1144 5714 +5716 2 384.7718 409.9238 23.9762 0.1144 5715 +5717 2 384.9411 410.3299 23.858 0.1144 5716 +5718 2 384.9011 411.4407 23.7282 0.1144 5717 +5719 2 384.1918 412.2953 23.619 0.1144 5718 +5720 2 383.216 412.8364 23.4623 0.1144 5719 +5721 2 382.1006 413.0549 23.3435 0.1144 5720 +5722 2 381.2083 413.7436 23.2729 0.1144 5721 +5723 2 380.8765 414.8316 23.2468 0.1144 5722 +5724 2 380.2622 415.7937 23.253 0.1144 5723 +5725 2 379.3779 416.4801 23.3674 0.1144 5724 +5726 2 379.1548 416.1975 23.5079 0.1144 5725 +5727 2 378.2922 415.4711 22.962 0.1144 5726 +5728 2 377.2077 415.2914 22.734 0.1144 5727 +5729 2 376.1186 415.383 22.4093 0.1144 5728 +5730 2 375.0295 415.0409 22.1415 0.1144 5729 +5731 2 373.9072 414.8464 21.8935 0.1144 5730 +5732 2 372.7838 414.6577 21.6733 0.1144 5731 +5733 2 371.6421 414.6028 21.5239 0.1144 5732 +5734 2 370.6354 414.0582 21.3699 0.1144 5733 +5735 2 378.8505 417.3873 23.4698 0.1144 5725 +5736 2 378.0428 418.1869 23.5299 0.1144 5735 +5737 2 377.1905 418.9397 23.5947 0.1144 5736 +5738 2 376.2524 419.5597 23.72 0.1144 5737 +5739 2 375.1874 419.9475 23.8967 0.1144 5738 +5740 2 374.1166 420.325 24.1002 0.1144 5739 +5741 2 373.0904 420.7346 24.3723 0.1144 5740 +5742 2 372.0185 420.9703 24.678 0.1144 5741 +5743 2 370.9168 421.2368 24.917 0.1144 5742 +5744 2 369.9216 421.7756 25.0563 0.1144 5743 +5745 2 369.0681 422.5238 25.1212 0.1144 5744 +5746 2 368.6689 423.5397 25.1593 0.1144 5745 +5747 2 368.519 424.6734 25.1968 0.1144 5746 +5748 2 368.1815 425.7499 25.2837 0.1144 5747 +5749 2 367.8406 426.8321 25.4325 0.1144 5748 +5750 2 367.645 427.9487 25.6353 0.1144 5749 +5751 2 367.2846 429.0217 25.8412 0.1144 5750 +5752 2 366.5948 429.9141 26.0277 0.1144 5751 +5753 2 365.5492 430.2001 26.2441 0.1144 5752 +5754 2 364.4132 430.1715 26.4639 0.1144 5753 +5755 2 363.3847 429.7161 26.6628 0.1144 5754 +5756 2 362.4672 429.0686 26.913 0.1144 5755 +5757 2 361.3976 428.7906 27.2224 0.1144 5756 +5758 2 360.4309 428.1992 27.4938 0.1144 5757 +5759 2 359.6942 427.3332 27.7443 0.1144 5758 +5760 2 358.9266 426.4992 28.0036 0.1144 5759 +5761 2 358.0914 425.7202 28.2254 0.1144 5760 +5762 2 357.5904 424.7249 28.4718 0.1144 5761 +5763 2 356.9612 423.8017 28.7375 0.1144 5762 +5764 2 356.3308 423.566 28.8957 0.1144 5763 +5765 2 355.4545 422.8807 28.943 0.1144 5764 +5766 2 354.7235 422.0022 28.98 0.1144 5765 +5767 2 354.0531 421.0755 29.0237 0.1144 5766 +5768 2 353.4857 420.0882 29.0811 0.1144 5767 +5769 2 352.9915 419.0598 29.1679 0.1144 5768 +5770 2 352.3875 418.1858 29.3779 0.1144 5769 +5771 2 351.7205 417.4479 29.75 0.1144 5770 +5772 2 350.9998 416.5682 30.0684 0.1144 5771 +5773 2 350.4152 415.5843 30.3324 0.1144 5772 +5774 2 349.8123 414.6131 30.5525 0.1144 5773 +5775 2 349.254 413.6384 30.7734 0.1144 5774 +5776 2 348.9189 412.5767 31.0176 0.1144 5775 +5777 2 348.7896 411.4488 31.2262 0.1144 5776 +5778 2 348.666 410.3162 31.3956 0.1144 5777 +5779 2 348.4109 409.2019 31.5342 0.1144 5778 +5780 2 347.8973 408.2089 31.6509 0.1144 5779 +5781 2 347.1948 407.3063 31.7554 0.1144 5780 +5782 2 346.6732 406.303 31.8626 0.1144 5781 +5783 2 346.3849 405.1991 31.99 0.1144 5782 +5784 2 346.0245 404.1786 32.2294 0.1144 5783 +5785 2 345.6459 403.1662 32.5814 0.1144 5784 +5786 2 345.3278 402.0794 32.9213 0.1144 5785 +5787 2 344.9229 401.0258 33.2548 0.1144 5786 +5788 2 344.6906 399.9264 33.5574 0.1144 5787 +5789 2 344.5888 398.787 33.7991 0.1144 5788 +5790 2 344.4481 397.6521 33.9912 0.1144 5789 +5791 2 344.2204 396.5321 34.1684 0.1144 5790 +5792 2 343.9447 395.427 34.391 0.1144 5791 +5793 2 343.5855 394.3482 34.6696 0.1144 5792 +5794 2 343.3258 393.2408 34.9706 0.1144 5793 +5795 2 342.7516 392.4561 35.4203 0.1144 5794 +5796 2 342.3031 392.1209 36.1642 0.1144 5795 +5797 2 342.3328 392.0305 36.7461 0.1144 5796 +5798 2 342.7172 390.9528 37.1756 0.1144 5797 +5799 2 343.1153 389.8809 37.4699 0.1144 5798 +5800 2 343.3979 388.777 37.6499 0.1144 5799 +5801 2 343.6507 387.6638 37.7322 0.1144 5800 +5802 2 343.9916 386.5725 37.7538 0.1144 5801 +5803 2 344.7478 386.0588 37.7798 0.1144 5802 +5804 2 345.8575 386.2785 37.8137 0.1144 5803 +5805 2 346.5187 385.7625 37.8972 0.1144 5804 +5806 2 347.2395 384.9331 37.9915 0.1144 5805 +5807 2 347.9705 384.0683 38.0638 0.1144 5806 +5808 2 348.586 383.1164 38.0769 0.1144 5807 +5809 2 349.3044 382.2379 38.0657 0.1144 5808 +5810 2 350.0057 381.3364 38.073 0.1144 5809 +5811 2 350.9495 380.7632 38.1083 0.1144 5810 +5812 2 352.0008 380.9646 38.185 0.1144 5811 +5813 2 352.5957 381.8203 38.4261 0.1144 5812 +5814 2 353.4548 381.3364 38.7215 0.1144 5813 +5815 2 354.2293 380.4944 39.0032 0.1144 5814 +5816 2 354.9901 379.641 39.268 0.1144 5815 +5817 2 355.0896 379.2955 39.0202 0.1144 5816 +5818 2 355.4843 378.2316 39.4472 0.1144 5817 +5819 2 355.8984 377.1894 39.6654 0.1144 5818 +5820 2 356.5047 376.2216 39.8588 0.1144 5819 +5821 2 357.1797 375.2972 40.0246 0.1144 5820 +5822 2 357.7688 374.3214 40.1951 0.1144 5821 +5823 2 358.4461 373.476 40.4541 0.1144 5822 +5824 2 359.0044 372.4772 40.6319 0.1144 5823 +5825 2 358.3935 371.991 40.7294 0.1144 5824 +5826 2 357.5 371.2783 40.7644 0.1144 5825 +5827 2 356.6065 370.5668 40.7498 0.1144 5826 +5828 2 355.7131 369.8552 40.7002 0.1144 5827 +5829 2 354.8196 369.1425 40.6372 0.1144 5828 +5830 2 353.9261 368.4309 40.5983 0.1144 5829 +5831 2 353.0315 367.7194 40.5941 0.1144 5830 +5832 2 352.177 366.962 40.6347 0.1144 5831 +5833 2 351.955 365.937 40.7876 0.1144 5832 +5834 2 351.9424 364.8205 41.0522 0.1144 5833 +5835 2 352.2124 363.8446 41.4686 0.1144 5834 +5836 2 353.1013 363.2017 41.8737 0.1144 5835 +5837 2 353.9547 362.4421 42.1744 0.1144 5836 +5838 2 354.5931 361.496 42.3696 0.1144 5837 +5839 2 355.0896 360.4652 42.467 0.1144 5838 +5840 2 355.6124 359.4482 42.488 0.1144 5839 +5841 2 356.4704 358.7367 42.1772 0.1144 5840 +5842 2 359.4219 371.3767 41.1544 0.1144 5824 +5843 2 359.8086 370.3002 41.1883 0.1144 5842 +5844 2 360.1358 369.2054 41.2471 0.1144 5843 +5845 2 360.4435 368.1175 41.3624 0.1144 5844 +5846 2 360.9595 367.097 41.4557 0.1144 5845 +5847 2 361.742 366.263 41.5257 0.1144 5846 +5848 2 362.6217 365.5332 41.5747 0.1144 5847 +5849 2 363.4694 364.7644 41.6147 0.1144 5848 +5850 2 355.4145 380.4052 39.6802 0.1144 5816 +5851 2 355.5655 381.4908 40.1279 0.1144 5850 +5852 2 355.609 382.6245 40.507 0.1144 5851 +5853 2 355.3813 383.7411 40.8027 0.1144 5852 +5854 2 354.8745 384.7455 41.0614 0.1144 5853 +5855 2 354.1664 385.6435 41.1953 0.1144 5854 +5856 2 353.4811 386.5576 41.2152 0.1144 5855 +5857 2 352.7959 387.4717 41.1636 0.1144 5856 +5858 2 352.1106 388.3869 41.0659 0.1144 5857 +5859 2 351.4357 389.3089 40.9438 0.1144 5858 +5860 2 350.8179 390.2722 40.8122 0.1144 5859 +5861 2 350.1658 391.2125 40.6812 0.1144 5860 +5862 2 349.5172 392.0957 40.5017 0.1144 5861 +5863 2 348.9166 392.7924 40.1478 0.1144 5862 +5864 2 348.2039 393.687 39.8737 0.1144 5863 +5865 2 347.4786 394.5667 39.6724 0.1144 5864 +5866 2 346.6457 395.3504 39.5385 0.1144 5865 +5867 2 345.6859 395.7885 39.4682 0.1144 5866 +5868 2 344.7364 396.1203 39.4584 0.1144 5867 +5869 2 344.1747 397.0973 39.4965 0.1144 5868 +5870 2 343.8532 398.1932 39.5455 0.1144 5869 +5871 2 343.3556 399.1816 39.6043 0.1144 5870 +5872 2 342.4335 399.5809 39.7208 0.1144 5871 +5873 2 341.325 399.4505 39.9067 0.1144 5872 +5874 2 340.356 399.8086 40.075 0.1144 5873 +5875 2 339.6536 400.6986 40.1892 0.1144 5874 +5876 2 339.291 401.7614 40.2492 0.1144 5875 +5877 2 339.498 402.8344 40.2528 0.1144 5876 +5878 2 340.1718 403.7439 40.1974 0.1144 5877 +5879 2 340.4933 404.7747 40.0879 0.1144 5878 +5880 2 340.2256 405.866 39.9333 0.1144 5879 +5881 2 339.9716 406.9769 39.7188 0.1144 5880 +5882 2 339.6559 408.0419 39.3781 0.1144 5881 +5883 2 339.2944 409.0841 38.9141 0.1144 5882 +5884 2 338.9169 410.1217 38.3614 0.1144 5883 +5885 2 338.3872 411.0644 37.7325 0.1144 5884 +5886 2 337.6081 411.8286 37.0807 0.1144 5885 +5887 2 336.6941 412.4978 36.5002 0.1144 5886 +5888 2 335.7228 413.0103 35.9386 0.1144 5887 +5889 2 334.7424 413.4874 35.3889 0.1144 5888 +5890 2 333.8181 414.1234 34.9182 0.1144 5889 +5891 2 332.9795 414.8888 34.5372 0.1144 5890 +5892 2 332.1158 415.6312 34.2292 0.1144 5891 +5893 2 331.2132 416.1861 34.1384 0.1144 5892 +5894 2 330.187 416.6391 34.0281 0.1144 5893 +5895 2 329.1185 417.0315 33.9038 0.1144 5894 +5896 2 328.2742 417.7911 33.7565 0.1144 5895 +5897 2 327.2126 418.1423 33.5504 0.1144 5896 +5898 2 326.1315 418.5175 33.1794 0.1144 5897 +5899 2 341.5149 392.4034 37.469 0.1144 5796 +5900 2 340.3961 392.4149 37.2201 0.1144 5899 +5901 2 339.2669 392.233 37.123 0.1144 5900 +5902 2 338.1973 391.868 37.0283 0.1144 5901 +5903 2 337.1116 391.5878 36.9286 0.1144 5902 +5904 2 335.9974 391.7456 36.8136 0.1144 5903 +5905 2 334.9952 392.2673 36.6744 0.1144 5904 +5906 2 333.9851 392.7855 36.5056 0.1144 5905 +5907 2 332.9063 393.1665 36.2886 0.1144 5906 +5908 2 331.9122 393.4536 35.8943 0.1144 5907 +5909 2 330.9375 393.7705 35.3304 0.1144 5908 +5910 2 329.9159 394.2075 34.7519 0.1144 5909 +5911 2 328.8325 394.2235 34.2454 0.1144 5910 +5912 2 327.7892 394.068 33.7011 0.1144 5911 +5913 2 327.0776 393.3747 33.1173 0.1144 5912 +5914 2 326.1841 392.6872 32.6572 0.1144 5913 +5915 2 325.1145 392.2948 32.3322 0.1144 5914 +5916 2 323.9797 392.3417 32.1031 0.1144 5915 +5917 2 322.8894 392.6837 31.948 0.1144 5916 +5918 2 321.774 392.6368 31.7806 0.1144 5917 +5919 2 320.6426 392.4767 31.6733 0.1144 5918 +5920 2 319.5135 392.2925 31.5972 0.1144 5919 +5921 2 318.3741 392.1826 31.5431 0.1144 5920 +5922 2 317.2312 392.1552 31.5092 0.1144 5921 +5923 2 316.1021 392.3337 31.493 0.1144 5922 +5924 2 314.9592 392.4 31.4924 0.1144 5923 +5925 2 313.8301 392.5773 31.4924 0.1144 5924 +5926 2 312.749 392.9514 31.4924 0.1144 5925 +5927 2 311.6782 393.3541 31.4924 0.1144 5926 +5928 2 310.6589 393.8735 31.4924 0.1144 5927 +5929 2 309.6739 394.4558 31.4924 0.1144 5928 +5930 2 308.6237 394.9088 31.4924 0.1144 5929 +5931 2 307.5312 395.2486 31.4924 0.1144 5930 +5932 2 306.3929 395.3595 31.4924 0.1144 5931 +5933 2 305.2581 395.5037 31.4924 0.1144 5932 +5934 2 304.1164 395.5838 31.4924 0.1144 5933 +5935 2 302.9735 395.562 31.4924 0.1144 5934 +5936 2 301.8352 395.4442 31.4924 0.1144 5935 +5937 2 357.0996 423.7456 29.6534 0.1144 5763 +5938 2 357.7757 423.2114 31.1758 0.1144 5937 +5939 2 357.5034 423.3864 31.74 0.1144 5938 +5940 2 356.9863 424.0419 32.4439 0.1144 5939 +5941 2 357.7849 423.6781 33.0529 0.1144 5940 +5942 2 358.5342 422.8235 33.5255 0.1144 5941 +5943 2 358.771 421.7276 33.882 0.1144 5942 +5944 2 359.5146 420.897 34.1446 0.1144 5943 +5945 2 359.9848 419.8629 34.375 0.1144 5944 +5946 2 360.765 419.0644 34.6668 0.1144 5945 +5947 2 361.7339 418.7566 35.0538 0.1144 5946 +5948 2 361.2066 417.9329 35.5796 0.1144 5947 +5949 2 361.8266 417.9741 36.1595 0.1144 5948 +5950 2 362.8699 418.4317 36.6218 0.1144 5949 +5951 2 364.0014 418.4214 37.0023 0.1144 5950 +5952 2 365.1396 418.3276 37.2775 0.1144 5951 +5953 2 366.2516 418.1068 37.3926 0.1144 5952 +5954 2 367.3487 417.8723 37.5166 0.1144 5953 +5955 2 368.4641 418.1194 37.6782 0.1144 5954 +5956 2 357.7791 422.0525 31.4924 0.1144 5938 +5957 2 358.6371 421.4439 31.4924 0.1144 5956 +5958 2 359.7708 421.3684 31.4924 0.1144 5957 +5959 2 360.6746 420.6991 31.4924 0.1144 5958 +5960 2 360.9663 419.5998 31.4924 0.1144 5959 +5961 2 385.9993 409.7568 24.8655 0.1144 5716 +5962 2 386.8379 409.2992 25.2439 0.1144 5961 +5963 2 387.7565 409.9467 25.6743 0.1144 5962 +5964 2 388.6637 410.6239 26.1182 0.1144 5963 +5965 2 389.5309 411.3527 26.5485 0.1144 5964 +5966 2 390.1154 412.3182 26.973 0.1144 5965 +5967 2 390.5879 413.3455 27.3416 0.1144 5966 +5968 2 391.2674 414.1863 27.7657 0.1144 5967 +5969 2 392.0294 415.0283 28.1579 0.1144 5968 +5970 2 392.678 415.9492 28.5457 0.1144 5969 +5971 2 393.3255 416.8702 28.9173 0.1144 5970 +5972 2 393.9753 417.7911 29.2578 0.1144 5971 +5973 2 394.6388 418.7029 29.5495 0.1144 5972 +5974 2 395.3973 419.5563 29.7382 0.1144 5973 +5975 2 396.1901 420.3788 29.8116 0.1144 5974 +5976 2 396.9337 421.2425 29.7556 0.1144 5975 +5977 2 397.6761 422.1051 29.598 0.1144 5976 +5978 2 398.4186 422.9688 29.3642 0.1144 5977 +5979 2 399.161 423.8326 29.0746 0.1144 5978 +5980 2 399.9046 424.6963 28.7482 0.1144 5979 +5981 2 400.6654 425.5348 28.3878 0.1144 5980 +5982 2 401.52 426.2521 27.9715 0.1144 5981 +5983 2 402.3642 426.8916 27.53 0.1144 5982 +5984 2 403.2703 427.244 26.9499 0.1144 5983 +5985 2 404.0768 427.9578 26.4132 0.1144 5984 +5986 2 404.7918 428.8478 25.9738 0.1144 5985 +5987 2 405.7082 429.4931 25.5993 0.1144 5986 +5988 2 406.7275 429.9976 25.2605 0.1144 5987 +5989 2 407.5294 430.7686 24.9547 0.1144 5988 +5990 2 408.3508 431.248 24.5386 0.1144 5989 +5991 2 409.4456 431.3532 24.1666 0.1144 5990 +5992 2 410.4672 431.8325 23.8795 0.1144 5991 +5993 2 411.5071 432.3084 23.6703 0.1144 5992 +5994 2 412.6225 432.1986 23.5146 0.1144 5993 +5995 2 413.691 431.8337 23.3578 0.1144 5994 +5996 2 414.7709 431.4596 23.2655 0.1144 5995 +5997 2 415.8131 431.9126 23.2088 0.1144 5996 +5998 2 414.9963 432.6951 23.1797 0.1144 5997 +5999 2 414.1703 433.4856 23.1794 0.1144 5998 +6000 2 413.3306 434.2624 23.2086 0.1144 5999 +6001 2 412.4612 435.0049 23.2672 0.1144 6000 +6002 2 411.4304 435.3034 23.3485 0.1144 6001 +6003 2 410.291 435.2211 23.4654 0.1144 6002 +6004 2 409.1608 435.2245 23.6484 0.1144 6003 +6005 2 408.1952 435.7256 23.8593 0.1144 6004 +6006 2 407.4196 436.4955 24.1566 0.1144 6005 +6007 2 406.978 437.4633 24.5384 0.1144 6006 +6008 2 406.644 438.5467 24.8655 0.1144 6007 +6009 2 406.1646 439.582 25.1055 0.1144 6008 +6010 2 405.3558 440.3348 25.3272 0.1144 6009 +6011 2 404.428 440.996 25.4695 0.1144 6010 +6012 2 403.4957 441.6572 25.519 0.1144 6011 +6013 2 402.95 442.6353 25.4912 0.1144 6012 +6014 2 402.7406 443.7553 25.4184 0.1144 6013 +6015 2 402.243 444.7472 25.2332 0.1144 6014 +6016 2 401.2557 445.2562 24.9693 0.1144 6015 +6017 2 400.1964 445.6292 24.6721 0.1144 6016 +6018 2 399.1519 446.0948 24.1816 0.1144 6017 +6019 2 416.5933 432.4595 23.0569 0.1144 5997 +6020 2 417.5108 432.4354 22.4274 0.1144 6019 +6021 2 418.5816 432.1197 22.1879 0.1144 6020 +6022 2 419.7119 432.0144 21.9523 0.1144 6021 +6023 2 420.8124 431.7353 21.7339 0.1144 6022 +6024 2 421.7024 431.0363 21.575 0.1144 6023 +6025 2 422.6108 430.3408 21.4765 0.1144 6024 +6026 2 423.7067 430.0513 21.4331 0.1144 6025 +6027 2 424.8461 430.1051 21.4182 0.1144 6026 +6028 2 425.973 429.9095 21.4253 0.1144 6027 +6029 2 427.1158 429.9381 21.4467 0.1144 6028 +6030 2 428.253 429.8202 21.4754 0.1144 6029 +6031 2 429.3718 429.5812 21.51 0.1144 6030 +6032 2 430.4998 429.405 21.5783 0.1144 6031 +6033 2 431.6243 429.254 21.6912 0.1144 6032 +6034 2 432.7214 428.9325 21.7811 0.1144 6033 +6035 2 433.7716 428.4772 21.8484 0.1144 6034 +6036 2 434.871 428.1614 21.8947 0.1144 6035 +6037 2 435.959 427.808 21.9218 0.1144 6036 +6038 2 437.0961 427.6878 21.9321 0.1144 6037 +6039 2 388.3594 396.3388 24.1816 0.1144 5694 +6040 2 388.2324 395.5334 25.7684 0.1144 6039 +6041 2 387.9064 395.3126 26.5064 0.1144 6040 +6042 2 388.5333 396.142 27.1638 0.1144 6041 +6043 2 389.0927 397.119 27.7909 0.1144 6042 +6044 2 388.9966 398.255 28.3318 0.1144 6043 +6045 2 389.4027 399.3532 28.1232 0.1144 6044 +6046 2 390.0857 400.2707 28.1252 0.1144 6045 +6047 2 390.9071 400.9434 28.128 0.1144 6046 +6048 2 391.7228 400.4847 28.1319 0.1144 6047 +6049 2 392.201 399.4459 28.1375 0.1144 6048 +6050 2 392.845 398.525 28.145 0.1144 6049 +6051 2 393.3095 397.5263 28.1557 0.1144 6050 +6052 2 393.393 396.3926 28.1705 0.1144 6051 +6053 2 393.3781 395.2486 28.1924 0.1144 6052 +6054 2 393.5852 394.1377 28.222 0.1144 6053 +6055 2 393.9055 393.0395 28.2607 0.1144 6054 +6056 2 394.5278 392.122 28.3086 0.1144 6055 +6057 2 395.061 391.1485 28.4113 0.1144 6056 +6058 2 395.3195 390.0422 28.5407 0.1144 6057 +6059 2 395.649 388.9486 28.6608 0.1144 6058 +6060 2 396.0105 387.8629 28.7714 0.1144 6059 +6061 2 396.3766 386.7795 28.8809 0.1144 6060 +6062 2 396.6019 385.6584 29.001 0.1144 6061 +6063 2 396.8753 384.5487 29.141 0.1144 6062 +6064 2 397.3226 383.4974 29.3152 0.1144 6063 +6065 2 397.715 382.4232 29.538 0.1144 6064 +6066 2 398.6577 382.1063 29.9603 0.1144 6065 +6067 2 399.653 381.8603 30.5371 0.1144 6066 +6068 2 400.5842 381.2712 31.1282 0.1144 6067 +6069 2 401.4273 380.5116 31.6526 0.1144 6068 +6070 2 402.267 379.7439 32.1 0.1144 6069 +6071 2 403.1078 378.9775 32.4654 0.1144 6070 +6072 2 404.0173 378.2888 32.7298 0.1144 6071 +6073 2 404.9302 377.6035 32.9244 0.1144 6072 +6074 2 405.961 377.4445 33.0672 0.1144 6073 +6075 2 407.081 377.6802 33.1685 0.1144 6074 +6076 2 408.1929 377.941 33.2436 0.1144 6075 +6077 2 409.2843 378.2716 33.3068 0.1144 6076 +6078 2 410.4203 378.3974 33.3698 0.1144 6077 +6079 2 411.4945 378.6937 33.4396 0.1144 6078 +6080 2 412.4097 379.3676 33.5577 0.1144 6079 +6081 2 413.3135 380.0494 33.7308 0.1144 6080 +6082 2 414.2184 380.7324 33.9391 0.1144 6081 +6083 2 415.224 380.5184 34.1256 0.1144 6082 +6084 2 416.3096 380.1649 34.2779 0.1144 6083 +6085 2 417.4433 380.0585 34.4019 0.1144 6084 +6086 2 418.5862 380.0002 34.5033 0.1144 6085 +6087 2 419.7267 379.9132 34.5937 0.1144 6086 +6088 2 420.7849 379.562 34.7581 0.1144 6087 +6089 2 421.7962 379.0381 34.9353 0.1144 6088 +6090 2 422.6634 378.2991 35.1257 0.1144 6089 +6091 2 423.0295 377.2409 35.3228 0.1144 6090 +6092 2 423.1141 376.1026 35.5211 0.1144 6091 +6093 2 423.2583 375.1348 35.9078 0.1144 6092 +6094 2 423.2926 374.0091 36.2709 0.1144 6093 +6095 2 423.6415 372.9463 37.116 0.1144 6094 +6096 2 388.7255 398.2172 28.8092 0.1144 6044 +6097 2 387.6833 398.4037 29.2975 0.1144 6096 +6098 2 386.847 398.104 29.871 0.1144 6097 +6099 2 386.0348 397.3421 30.4931 0.1144 6098 +6100 2 385.433 396.3891 31.108 0.1144 6099 +6101 2 384.9194 395.3664 31.7341 0.1144 6100 +6102 2 384.8862 394.3631 32.5298 0.1144 6101 +6103 2 385.1539 393.5898 33.5961 0.1144 6102 +6104 2 384.6036 392.9697 34.8174 0.1144 6103 +6105 2 384.0179 392.9983 36.2564 0.1144 6104 +6106 2 384.1312 393.2237 37.0812 0.1144 6105 +6107 2 384.6414 394.2453 36.9636 0.1144 6106 +6108 2 385.1528 395.2669 36.9096 0.1144 6107 +6109 2 385.6607 396.2896 36.8542 0.1144 6108 +6110 2 386.0645 397.3558 36.82 0.1144 6109 +6111 2 386.2293 398.4792 36.8197 0.1144 6110 +6112 2 386.1515 399.6152 36.8628 0.1144 6111 +6113 2 385.9341 400.734 36.9695 0.1144 6112 +6114 2 385.6138 401.8266 37.1328 0.1144 6113 +6115 2 385.0315 402.791 37.3184 0.1144 6114 +6116 2 384.2582 403.6307 37.5074 0.1144 6115 +6117 2 383.3784 404.3296 37.751 0.1144 6116 +6118 2 382.4895 404.8936 38.1237 0.1144 6117 +6119 2 381.6807 405.6212 38.526 0.1144 6118 +6120 2 381.095 406.5856 38.8514 0.1144 6119 +6121 2 380.65 407.6381 39.0863 0.1144 6120 +6122 2 380.2713 408.718 39.2392 0.1144 6121 +6123 2 379.705 409.6996 39.3173 0.1144 6122 +6124 2 379.0164 410.6136 39.3378 0.1144 6123 +6125 2 378.3151 411.5174 39.3319 0.1144 6124 +6126 2 377.5726 412.3868 39.3187 0.1144 6125 +6127 2 376.6757 413.0847 39.3 0.1144 6126 +6128 2 375.7239 413.7196 39.2734 0.1144 6127 +6129 2 374.8327 414.4334 39.2361 0.1144 6128 +6130 2 374.3019 415.4173 39.1863 0.1144 6129 +6131 2 373.8855 416.4835 39.123 0.1144 6130 +6132 2 373.2472 417.4101 39.0062 0.1144 6131 +6133 2 372.5402 418.3047 38.8567 0.1144 6132 +6134 2 371.9384 419.2657 38.6728 0.1144 6133 +6135 2 371.681 420.3605 38.479 0.1144 6134 +6136 2 371.8915 421.469 38.3141 0.1144 6135 +6137 2 372.0871 422.5959 38.1814 0.1144 6136 +6138 2 371.4946 423.5363 38.0783 0.1144 6137 +6139 2 370.7441 424.3691 37.9201 0.1144 6138 +6140 2 370.3597 425.4399 37.7978 0.1144 6139 +6141 2 369.6356 426.315 37.679 0.1144 6140 +6142 2 368.7329 427.0049 37.5676 0.1144 6141 +6143 2 368.265 428.047 37.4984 0.1144 6142 +6144 2 368.074 429.1739 37.4713 0.1144 6143 +6145 2 367.8086 430.2676 37.546 0.1144 6144 +6146 2 367.4951 431.3658 37.5998 0.1144 6145 +6147 2 367.2446 432.4789 37.6533 0.1144 6146 +6148 2 366.8922 433.5646 37.7045 0.1144 6147 +6149 2 366.6714 434.6868 37.7471 0.1144 6148 +6150 2 366.406 435.7954 37.7611 0.1144 6149 +6151 2 366.1292 436.8856 37.7695 0.1144 6150 +6152 2 365.7265 437.9152 37.9098 0.1144 6151 +6153 2 365.3707 438.9608 38.0859 0.1144 6152 +6154 2 365.3101 440.0911 38.2656 0.1144 6153 +6155 2 364.7999 441.0269 38.4681 0.1144 6154 +6156 2 364.0723 441.8666 38.6394 0.1144 6155 +6157 2 363.4099 442.7658 38.7663 0.1144 6156 +6158 2 362.4672 443.403 38.8528 0.1144 6157 +6159 2 361.5715 444.0871 38.9222 0.1144 6158 +6160 2 361.1448 445.0892 38.9861 0.1144 6159 +6161 2 361.2306 446.2115 39.0508 0.1144 6160 +6162 2 361.6081 447.2662 39.1801 0.1144 6161 +6163 2 361.9124 448.3439 39.3506 0.1144 6162 +6164 2 362.0932 449.4742 39.5108 0.1144 6163 +6165 2 362.2179 450.6102 39.662 0.1144 6164 +6166 2 362.1504 451.7439 39.807 0.1144 6165 +6167 2 361.6596 452.7449 39.9454 0.1144 6166 +6168 2 360.8691 453.5411 40.1262 0.1144 6167 +6169 2 360.098 454.1051 40.4905 0.1144 6168 +6170 2 359.645 455.0763 40.8198 0.1144 6169 +6171 2 359.4151 456.1929 41.0396 0.1144 6170 +6172 2 359.0364 457.2568 41.1298 0.1144 6171 +6173 2 358.4449 458.2315 41.1594 0.1144 6172 +6174 2 357.8238 459.1913 41.1468 0.1144 6173 +6175 2 357.2632 460.1889 41.1071 0.1144 6174 +6176 2 356.7507 461.2116 41.0791 0.1144 6175 +6177 2 356.332 462.2744 41.0696 0.1144 6176 +6178 2 355.9773 463.3623 41.0724 0.1144 6177 +6179 2 355.3596 464.3164 41.0819 0.1144 6178 +6180 2 354.473 465.0314 41.0984 0.1144 6179 +6181 2 353.5624 465.7235 41.1152 0.1144 6180 +6182 2 352.6529 466.4157 41.1233 0.1144 6181 +6183 2 351.7422 467.1078 41.1113 0.1144 6182 +6184 2 350.8316 467.7988 41.0497 0.1144 6183 +6185 2 350.2013 468.7448 40.9394 0.1144 6184 +6186 2 350.0423 469.8751 40.782 0.1144 6185 +6187 2 349.8741 470.9882 40.5182 0.1144 6186 +6188 2 349.6876 472.0133 40.0898 0.1144 6187 +6189 2 349.5 473.0383 38.803 0.1144 6188 +6190 2 383.7148 393.1768 37.6222 0.1144 6105 +6191 2 382.8087 393.4479 39.0048 0.1144 6190 +6192 2 381.9221 394.0405 40.2668 0.1144 6191 +6193 2 381.4188 395.0209 41.3736 0.1144 6192 +6194 2 381.5377 395.729 42.5718 0.1144 6193 +6195 2 380.8616 395.5918 42.9072 0.1144 6194 +6196 2 379.7851 395.2463 42.3287 0.1144 6195 +6197 2 378.7166 394.863 42.0854 0.1144 6196 +6198 2 377.6481 394.4775 41.8015 0.1144 6197 +6199 2 376.5796 394.092 41.4915 0.1144 6198 +6200 2 375.5123 393.7076 41.1678 0.1144 6199 +6201 2 374.4438 393.3232 40.8422 0.1144 6200 +6202 2 373.3753 392.9377 40.5264 0.1144 6201 +6203 2 372.3068 392.5522 40.2223 0.1144 6202 +6204 2 371.2394 392.1678 39.9364 0.1144 6203 +6205 2 370.1709 391.7822 39.674 0.1144 6204 +6206 2 369.9238 390.7298 39.4041 0.1144 6205 +6207 2 369.2866 389.7825 39.2246 0.1144 6206 +6208 2 368.5785 388.8834 39.1208 0.1144 6207 +6209 2 367.8921 389.0115 39.1574 0.1144 6208 +6210 2 367.2068 389.7402 40.5208 0.1144 6209 +6211 2 366.914 390.7996 40.9536 0.1144 6210 +6212 2 366.3946 391.693 41.4263 0.1144 6211 +6213 2 365.5709 392.4561 41.8788 0.1144 6212 +6214 2 365.0092 393.3861 42.3489 0.1144 6213 +6215 2 365.6556 394.0222 42.7582 0.1144 6214 +6216 2 366.6749 394.4295 43.0769 0.1144 6215 +6217 2 367.1279 395.4122 43.4017 0.1144 6216 +6218 2 367.5741 396.2919 43.7819 0.1144 6217 +6219 2 368.1792 397.1316 44.1638 0.1144 6218 +6220 2 368.328 398.2161 44.546 0.1144 6219 +6221 2 368.6151 399.2995 44.8409 0.1144 6220 +6222 2 369.0201 400.3611 45.0657 0.1144 6221 +6223 2 369.4068 401.4319 45.2332 0.1144 6222 +6224 2 369.8941 402.4626 45.3821 0.1144 6223 +6225 2 370.4547 403.4533 45.5221 0.1144 6224 +6226 2 370.926 404.4841 45.6366 0.1144 6225 +6227 2 371.1125 405.4153 45.8917 0.1144 6226 +6228 2 371.2806 406.3763 46.2566 0.1144 6227 +6229 2 371.6273 407.4047 46.4136 0.1144 6228 +6230 2 372.0025 408.4229 46.3526 0.1144 6229 +6231 2 372.3777 409.441 46.1356 0.1144 6230 +6232 2 372.9806 410.386 45.8881 0.1144 6231 +6233 2 373.8798 411.0747 45.6856 0.1144 6232 +6234 2 374.8705 411.6444 45.5658 0.1144 6233 +6235 2 375.7571 412.285 45.6607 0.1144 6234 +6236 2 376.5854 413.0549 45.8685 0.1144 6235 +6237 2 377.4056 413.8512 46.0894 0.1144 6236 +6238 2 378.1378 414.7297 46.2902 0.1144 6237 +6239 2 378.8905 415.59 46.4596 0.1144 6238 +6240 2 379.6513 416.2936 46.7569 0.1144 6239 +6241 2 380.5928 416.9422 47.2385 0.1144 6240 +6242 2 367.0581 389.9862 39.2722 0.1144 6209 +6243 2 366.5182 390.9952 39.3288 0.1144 6242 +6244 2 365.9816 392.0042 39.3672 0.1144 6243 +6245 2 366.0217 393.0498 39.3896 0.1144 6244 +6246 2 366.2859 394.156 39.3994 0.1144 6245 +6247 2 365.8329 395.1765 39.4128 0.1144 6246 +6248 2 365.2918 396.1844 39.4316 0.1144 6247 +6249 2 364.7758 397.206 39.4579 0.1144 6248 +6250 2 364.2633 398.2287 39.4948 0.1144 6249 +6251 2 363.6719 399.2068 39.5475 0.1144 6250 +6252 2 363.0381 400.1586 39.6197 0.1144 6251 +6253 2 362.4009 401.1093 39.7155 0.1144 6252 +6254 2 361.7923 402.076 39.8516 0.1144 6253 +6255 2 361.2924 403.0838 40.0744 0.1144 6254 +6256 2 360.8084 404.0974 40.3648 0.1144 6255 +6257 2 360.3234 405.1098 40.6958 0.1144 6256 +6258 2 359.8372 406.1234 41.0399 0.1144 6257 +6259 2 359.3041 407.1324 41.3129 0.1144 6258 +6260 2 358.763 408.1403 41.5097 0.1144 6259 +6261 2 358.223 409.1493 41.6413 0.1144 6260 +6262 2 357.683 410.1572 41.7262 0.1144 6261 +6263 2 357.1431 411.165 41.799 0.1144 6262 +6264 2 356.6031 412.1603 41.9104 0.1144 6263 +6265 2 356.0254 413.1453 42.0062 0.1144 6264 +6266 2 355.4431 414.1291 42.0787 0.1144 6265 +6267 2 354.8208 415.0901 42.1299 0.1144 6266 +6268 2 354.1801 416.0373 42.1616 0.1144 6267 +6269 2 353.5269 416.9766 42.1758 0.1144 6268 +6270 2 352.8153 417.8723 42.1772 0.1144 6269 +6271 2 352.0832 418.7509 42.1772 0.1144 6270 +6272 2 351.3224 419.6055 42.1772 0.1144 6271 +6273 2 350.4289 420.317 42.1772 0.1144 6272 +6274 2 349.3639 420.7163 42.1772 0.1144 6273 +6275 2 348.3732 421.286 42.1772 0.1144 6274 +6276 2 347.792 422.263 42.1772 0.1144 6275 +6277 2 347.3047 423.2983 42.1772 0.1144 6276 +6278 2 346.5622 424.1689 42.1772 0.1144 6277 +6279 2 368.8256 388.0677 38.6523 0.1144 6208 +6280 2 368.3726 387.1788 37.3996 0.1144 6279 +6281 2 367.5397 386.6182 36.8192 0.1144 6280 +6282 2 366.9288 385.8289 36.1208 0.1144 6281 +6283 2 366.8694 384.7718 35.5211 0.1144 6282 +6284 2 366.7847 383.8395 34.9311 0.1144 6283 +6285 2 365.9233 383.1794 34.3602 0.1144 6284 +6286 2 365.1373 382.4198 33.8192 0.1144 6285 +6287 2 364.602 381.4188 33.3474 0.1144 6286 +6288 2 363.808 380.6683 32.8289 0.1144 6287 +6289 2 362.7818 380.4566 32.205 0.1144 6288 +6290 2 361.9227 380.563 32.4982 0.1144 6289 +6291 2 360.7856 380.5882 32.6939 0.1144 6290 +6292 2 359.6416 380.5974 32.765 0.1144 6291 +6293 2 358.5021 380.4978 32.8297 0.1144 6292 +6294 2 357.6968 379.7485 32.9375 0.1144 6293 +6295 2 358.2779 378.8528 33.0316 0.1144 6294 +6296 2 358.9334 377.9147 33.0996 0.1144 6295 +6297 2 359.232 376.8107 33.1794 0.1144 6296 +6298 2 362.2922 379.927 31.612 0.1144 6289 +6299 2 361.3027 379.4659 31.003 0.1144 6298 +6300 2 360.3486 379.1788 30.2924 0.1144 6299 +6301 2 359.2515 379.355 29.6537 0.1144 6300 +6302 2 358.239 378.9637 29.1043 0.1144 6301 +6303 2 357.635 378.1217 28.56 0.1144 6302 +6304 2 356.5436 377.9753 28.1238 0.1144 6303 +6305 2 355.6158 378.6114 27.7706 0.1144 6304 +6306 2 354.8665 379.4762 27.4687 0.1144 6305 +6307 2 354.1069 380.2507 27.1036 0.1144 6306 +6308 2 353.2569 380.785 26.5612 0.1144 6307 +6309 2 353.115 381.6258 26.024 0.1144 6308 +6310 2 353.0796 382.6405 25.4327 0.1144 6309 +6311 2 352.6334 383.6576 24.8868 0.1144 6310 +6312 2 351.915 384.5327 24.4376 0.1144 6311 +6313 2 351.6576 385.5966 23.6191 0.1144 6312 +6314 2 382.0708 396.2004 43.6741 0.1144 6194 +6315 2 382.6794 396.8742 44.7756 0.1144 6314 +6316 2 383.3841 397.7356 45.6582 0.1144 6315 +6317 2 383.7537 398.8121 46.2949 0.1144 6316 +6318 2 383.7422 399.9481 46.7547 0.1144 6317 +6319 2 383.7365 401.0338 47.1576 0.1144 6318 +6320 2 383.5008 402.148 47.4158 0.1144 6319 +6321 2 383.2629 403.268 47.5611 0.1144 6320 +6322 2 383.0329 404.388 47.6451 0.1144 6321 +6323 2 382.8087 405.5102 47.684 0.1144 6322 +6324 2 382.2859 406.525 47.6722 0.1144 6323 +6325 2 381.6132 407.4493 47.6176 0.1144 6324 +6326 2 380.9394 408.3725 47.5499 0.1144 6325 +6327 2 380.2656 409.2957 47.4762 0.1144 6326 +6328 2 379.5906 410.2201 47.4012 0.1144 6327 +6329 2 378.9511 411.1673 47.3348 0.1144 6328 +6330 2 378.3688 412.1523 47.2889 0.1144 6329 +6331 2 377.7877 413.1373 47.2592 0.1144 6330 +6332 2 377.2065 414.1234 47.2422 0.1144 6331 +6333 2 376.6254 415.1084 47.2329 0.1144 6332 +6334 2 376.0442 416.0934 47.2282 0.1144 6333 +6335 2 375.4631 417.0795 47.224 0.1144 6334 +6336 2 374.8819 418.0645 47.2184 0.1144 6335 +6337 2 374.2402 419.0117 47.2105 0.1144 6336 +6338 2 373.3707 419.7542 47.199 0.1144 6337 +6339 2 372.5001 420.4966 47.1828 0.1144 6338 +6340 2 371.6295 421.2402 47.1604 0.1144 6339 +6341 2 370.7601 421.9827 47.1313 0.1144 6340 +6342 2 371.1754 422.5421 47.5154 0.1144 6341 +6343 2 371.9922 423.3212 48.0127 0.1144 6342 +6344 2 373.0332 423.7021 48.2138 0.1144 6343 +6345 2 374.1475 423.5946 48.4635 0.1144 6344 +6346 2 375.1885 423.3212 48.8202 0.1144 6345 +6347 2 376.2925 423.3669 49.1529 0.1144 6346 +6348 2 377.3209 423.7765 49.4908 0.1144 6347 +6349 2 378.2636 423.1462 49.7356 0.1144 6348 +6350 2 379.2051 422.4964 49.8985 0.1144 6349 +6351 2 380.1466 421.8466 49.9926 0.1144 6350 +6352 2 381.1225 421.2483 50.034 0.1144 6351 +6353 2 382.2253 420.9485 50.05 0.1144 6352 +6354 2 383.3304 420.6511 50.0503 0.1144 6353 +6355 2 384.4286 420.3319 50.0503 0.1144 6354 +6356 2 385.4273 419.7736 50.0503 0.1144 6355 +6357 2 386.4764 419.316 50.0503 0.1144 6356 +6358 2 387.5838 419.0323 50.0503 0.1144 6357 +6359 2 388.6923 418.7486 50.0503 0.1144 6358 +6360 2 369.7888 422.6039 47.0212 0.1144 6341 +6361 2 368.8279 423.2182 46.9216 0.1144 6360 +6362 2 367.9527 423.9435 46.8227 0.1144 6361 +6363 2 367.0821 424.6825 46.7424 0.1144 6362 +6364 2 366.1246 425.3049 46.6791 0.1144 6363 +6365 2 365.1362 425.8803 46.6304 0.1144 6364 +6366 2 364.1466 426.4546 46.5917 0.1144 6365 +6367 2 363.1571 427.0289 46.5536 0.1144 6366 +6368 2 362.1687 427.6043 46.5046 0.1144 6367 +6369 2 361.1791 428.1786 46.4349 0.1144 6368 +6370 2 360.1895 428.7529 46.3369 0.1144 6369 +6371 2 359.2011 429.3283 46.2064 0.1144 6370 +6372 2 358.2127 429.9049 46.0379 0.1144 6371 +6373 2 357.1865 430.2767 45.7534 0.1144 6372 +6374 2 356.1261 430.3396 45.3278 0.1144 6373 +6375 2 355.0312 430.3076 44.8342 0.1144 6374 +6376 2 353.8987 430.2927 44.3836 0.1144 6375 +6377 2 352.8188 430.5982 44.0082 0.1144 6376 +6378 2 351.82 431.1507 43.6979 0.1144 6377 +6379 2 350.8934 431.812 43.4168 0.1144 6378 +6380 2 350.366 432.7043 43.0489 0.1144 6379 +6381 2 350.0983 433.7453 42.6059 0.1144 6380 +6382 2 349.4806 434.6571 42.2064 0.1144 6381 +6383 2 348.8285 435.5929 41.8799 0.1144 6382 +6384 2 348.4155 436.6522 41.6161 0.1144 6383 +6385 2 348.1169 437.7493 41.37 0.1144 6384 +6386 2 347.8355 438.8487 41.1278 0.1144 6385 +6387 2 347.5552 439.9481 40.8727 0.1144 6386 +6388 2 347.5346 441.0795 40.6224 0.1144 6387 +6389 2 347.6444 442.2178 40.3869 0.1144 6388 +6390 2 347.7428 443.3515 40.126 0.1144 6389 +6391 2 347.8149 444.4737 39.8146 0.1144 6390 +6392 2 347.8835 445.5926 39.4612 0.1144 6391 +6393 2 347.951 446.7114 39.0816 0.1144 6392 +6394 2 348.0071 447.8371 38.7016 0.1144 6393 +6395 2 348.0208 448.9754 38.369 0.1144 6394 +6396 2 348.0242 450.116 38.0985 0.1144 6395 +6397 2 347.7749 451.2222 37.8952 0.1144 6396 +6398 2 347.18 452.1889 37.7588 0.1144 6397 +6399 2 346.5176 453.1212 37.6712 0.1144 6398 +6400 2 345.8518 454.0525 37.6121 0.1144 6399 +6401 2 345.1871 454.9825 37.5659 0.1144 6400 +6402 2 344.471 455.8737 37.5172 0.1144 6401 +6403 2 343.5421 456.5132 37.4259 0.1144 6402 +6404 2 342.6017 457.1584 37.3251 0.1144 6403 +6405 2 341.611 457.727 37.2431 0.1144 6404 +6406 2 340.6477 458.3447 37.1834 0.1144 6405 +6407 2 339.8984 459.2027 37.144 0.1144 6406 +6408 2 338.8379 459.5917 37.1227 0.1144 6407 +6409 2 337.6962 459.5437 37.1165 0.1144 6408 +6410 2 336.5568 459.4396 37.116 0.1144 6409 +6411 2 335.4277 459.2599 37.116 0.1144 6410 +6412 2 334.3363 458.9179 37.116 0.1144 6411 +6413 2 333.2586 458.5324 37.116 0.1144 6412 +6414 2 332.2222 458.0496 37.116 0.1144 6413 +6415 2 331.3024 457.3689 37.116 0.1144 6414 +6416 2 330.3563 456.726 37.116 0.1144 6415 +6417 2 329.5052 455.9618 37.116 0.1144 6416 +6418 2 328.6518 455.1999 37.116 0.1144 6417 +6419 2 327.7892 454.4483 37.116 0.1144 6418 +6420 2 325.3616 404.3788 19.57 0.1144 4582 +6421 2 325.214 405.5022 19.9746 0.1144 6420 +6422 2 324.7141 406.5238 20.125 0.1144 6421 +6423 2 324.2188 407.5546 20.3042 0.1144 6422 +6424 2 323.426 408.2616 20.6438 0.1144 6423 +6425 2 323.4065 409.3358 21.0825 0.1144 6424 +6426 2 323.5335 409.5085 21.5008 0.1144 6425 +6427 2 324.0472 410.4878 21.9445 0.1144 6426 +6428 2 324.3423 411.5918 22.3503 0.1144 6427 +6429 2 324.5906 412.7014 22.7641 0.1144 6428 +6430 2 324.5128 413.7768 23.209 0.1144 6429 +6431 2 324.0563 414.7297 23.7799 0.1144 6430 +6432 2 324.3377 415.5363 24.5275 0.1144 6431 +6433 2 324.324 416.6013 25.2636 0.1144 6432 +6434 2 324.0735 417.52 26.1504 0.1144 6433 +6435 2 324.2588 418.2487 27.2136 0.1144 6434 +6436 2 324.8399 419.2062 28.1114 0.1144 6435 +6437 2 325.0607 420.3262 28.8355 0.1144 6436 +6438 2 324.729 420.4246 29.4669 0.1144 6437 +6439 2 323.5987 420.4211 30.0535 0.1144 6438 +6440 2 323.077 419.6352 30.7734 0.1144 6439 +6441 2 323.5346 419.181 31.5932 0.1144 6440 +6442 2 323.9293 419.8583 32.4128 0.1144 6441 +6443 2 323.5884 420.9119 33.1915 0.1144 6442 +6444 2 323.4568 422.0365 33.845 0.1144 6443 +6445 2 322.7888 422.835 34.4294 0.1144 6444 +6446 2 321.7363 423.0329 34.9961 0.1144 6445 +6447 2 320.908 423.6129 35.6185 0.1144 6446 +6448 2 320.026 424.2753 36.2454 0.1144 6447 +6449 2 319.5261 425.2694 36.8477 0.1144 6448 +6450 2 318.5651 425.8346 37.4287 0.1144 6449 +6451 2 317.7929 425.6755 37.9708 0.1144 6450 +6452 2 316.7256 425.3381 38.4748 0.1144 6451 +6453 2 315.895 424.6974 40.0674 0.1144 6452 +6454 2 316.1352 423.7937 40.5863 0.1144 6453 +6455 2 316.459 422.7149 41.095 0.1144 6454 +6456 2 316.8548 421.7699 41.6825 0.1144 6455 +6457 2 317.4245 420.7861 42.1291 0.1144 6456 +6458 2 318.0103 419.8034 42.4334 0.1144 6457 +6459 2 318.366 418.7177 42.609 0.1144 6458 +6460 2 318.7195 417.6286 42.7003 0.1144 6459 +6461 2 319.4117 416.7203 42.7395 0.1144 6460 +6462 2 316.6947 425.4765 38.8662 0.1144 6452 +6463 2 316.0643 426.3219 39.2372 0.1144 6462 +6464 2 315.013 426.4626 39.5867 0.1144 6463 +6465 2 313.917 426.1572 39.9087 0.1144 6464 +6466 2 312.8737 425.7751 40.2973 0.1144 6465 +6467 2 311.8475 425.3964 40.7876 0.1144 6466 +6468 2 311.0181 424.6768 41.2782 0.1144 6467 +6469 2 310.032 424.3782 41.8121 0.1144 6468 +6470 2 308.9887 424.2066 42.4393 0.1144 6469 +6471 2 307.9339 423.8383 43.0472 0.1144 6470 +6472 2 306.9409 423.5477 43.7086 0.1144 6471 +6473 2 306.8826 423.3097 44.2487 0.1144 6472 +6474 2 306.6023 422.2229 44.7252 0.1144 6473 +6475 2 306.2236 421.1476 45.0811 0.1144 6474 +6476 2 305.6585 420.2301 45.4261 0.1144 6475 +6477 2 305.1242 420.4898 45.7629 0.1144 6476 +6478 2 304.6998 421.5526 46.0191 0.1144 6477 +6479 2 304.2182 422.5902 46.2437 0.1144 6478 +6480 2 303.7137 423.6163 46.4442 0.1144 6479 +6481 2 303.4437 424.71 46.5842 0.1144 6480 +6482 2 303.4414 424.7214 45.5515 0.1144 6481 +6483 2 303.0776 425.8025 45.376 0.1144 6482 +6484 2 302.3741 426.6948 45.3076 0.1144 6483 +6485 2 301.3925 427.2657 45.2192 0.1144 6484 +6486 2 300.3 427.5677 45.071 0.1144 6485 +6487 2 299.1903 427.7999 44.861 0.1144 6486 +6488 2 298.0795 428.0253 44.6051 0.1144 6487 +6489 2 296.9698 428.2518 44.3212 0.1144 6488 +6490 2 295.8704 428.5504 44.0485 0.1144 6489 +6491 2 294.8134 428.984 43.8301 0.1144 6490 +6492 2 293.9199 429.6063 43.5551 0.1144 6491 +6493 2 293.0825 430.3705 43.3205 0.1144 6492 +6494 2 292.1158 430.9768 43.167 0.1144 6493 +6495 2 291.0119 430.8968 43.1614 0.1144 6494 +6496 2 290.6961 430.1246 43.1805 0.1144 6495 +6497 2 290.2797 429.0583 43.2144 0.1144 6496 +6498 2 289.8873 427.983 43.2594 0.1144 6497 +6499 2 289.3748 426.9614 43.2947 0.1144 6498 +6500 2 288.7433 426.0084 43.3135 0.1144 6499 +6501 2 287.8247 425.3312 43.318 0.1144 6500 +6502 2 286.8408 424.7455 43.3241 0.1144 6501 +6503 2 285.881 424.1243 43.3336 0.1144 6502 +6504 2 285.1717 423.2274 43.3471 0.1144 6503 +6505 2 284.618 422.2264 43.3633 0.1144 6504 +6506 2 284.1421 421.1865 43.381 0.1144 6505 +6507 2 283.6777 420.1432 43.4193 0.1144 6506 +6508 2 283.2979 419.0769 43.5025 0.1144 6507 +6509 2 282.9146 419.4442 43.5473 0.1144 6508 +6510 2 282.0566 420.2004 43.5523 0.1144 6509 +6511 2 281.1963 420.9554 43.5179 0.1144 6510 +6512 2 280.2514 421.5972 43.4417 0.1144 6511 +6513 2 279.2046 421.9587 43.2298 0.1144 6512 +6514 2 278.1339 422.3168 42.9523 0.1144 6513 +6515 2 277.1031 422.811 42.7034 0.1144 6514 +6516 2 276.0792 423.3212 42.4824 0.1144 6515 +6517 2 275.0679 423.5854 42.1266 0.1144 6516 +6518 2 275.4008 422.4906 41.6147 0.1144 6517 +6519 2 275.1846 421.3867 41.7298 0.1144 6518 +6520 2 275.0897 420.2484 41.7676 0.1144 6519 +6521 2 275.6125 419.252 41.8443 0.1144 6520 +6522 2 276.3538 418.3905 41.9577 0.1144 6521 +6523 2 276.9681 417.4262 42.0473 0.1144 6522 +6524 2 277.7369 416.5784 42.1772 0.1144 6523 +6525 2 274.6744 424.6436 41.8449 0.1144 6517 +6526 2 274.0383 425.5714 41.6262 0.1144 6525 +6527 2 273.1872 426.3345 41.4417 0.1144 6526 +6528 2 272.3441 427.1078 41.2714 0.1144 6527 +6529 2 271.6462 427.9612 41.0998 0.1144 6528 +6530 2 271.2447 429.0023 40.8696 0.1144 6529 +6531 2 270.6212 429.8843 40.5392 0.1144 6530 +6532 2 269.6934 430.4689 40.1685 0.1144 6531 +6533 2 268.6043 430.581 39.8112 0.1144 6532 +6534 2 267.5438 430.2149 39.5329 0.1144 6533 +6535 2 266.568 429.6189 39.3257 0.1144 6534 +6536 2 265.6379 428.9588 39.1563 0.1144 6535 +6537 2 264.7811 428.2141 38.9939 0.1144 6536 +6538 2 263.8579 427.5586 38.8508 0.1144 6537 +6539 2 262.9839 426.8458 38.7321 0.1144 6538 +6540 2 262.095 426.1549 38.598 0.1144 6539 +6541 2 261.0448 425.7385 38.4426 0.1144 6540 +6542 2 259.9225 425.5543 38.3006 0.1144 6541 +6543 2 258.7797 425.5108 38.1811 0.1144 6542 +6544 2 257.638 425.465 38.0708 0.1144 6543 +6545 2 256.4951 425.4479 37.9624 0.1144 6544 +6546 2 255.4083 425.7064 37.8084 0.1144 6545 +6547 2 254.3135 425.989 37.6166 0.1144 6546 +6548 2 253.1764 426.1011 37.4108 0.1144 6547 +6549 2 252.0358 426.1846 37.1832 0.1144 6548 +6550 2 250.9112 426.3802 36.9244 0.1144 6549 +6551 2 249.869 426.7864 36.5722 0.1144 6550 +6552 2 248.9264 427.316 36.0749 0.1144 6551 +6553 2 248.0123 427.8663 35.4502 0.1144 6552 +6554 2 247.0788 428.0699 34.6884 0.1144 6553 +6555 2 246.0161 427.9109 33.9455 0.1144 6554 +6556 2 244.9224 428.102 33.2968 0.1144 6555 +6557 2 243.8459 427.9475 32.6973 0.1144 6556 +6558 2 242.8174 428.412 32.2585 0.1144 6557 +6559 2 241.7741 428.8696 31.918 0.1144 6558 +6560 2 240.7159 429.2883 31.6473 0.1144 6559 +6561 2 239.668 429.7436 31.437 0.1144 6560 +6562 2 238.5629 429.9781 31.2256 0.1144 6561 +6563 2 237.4601 430.2801 30.9299 0.1144 6562 +6564 2 283.72 418.4935 43.8642 0.1144 6508 +6565 2 284.6329 417.8483 44.0972 0.1144 6564 +6566 2 285.6614 417.3575 44.2011 0.1144 6565 +6567 2 286.7802 417.3987 44.2915 0.1144 6566 +6568 2 287.8441 417.8105 44.3677 0.1144 6567 +6569 2 288.9607 417.854 44.3576 0.1144 6568 +6570 2 290.1024 417.8403 44.3803 0.1144 6569 +6571 2 291.2361 417.7968 44.4679 0.1144 6570 +6572 2 292.2611 417.3312 44.6236 0.1144 6571 +6573 2 293.285 416.829 44.8008 0.1144 6572 +6574 2 294.3398 416.3863 44.9646 0.1144 6573 +6575 2 295.398 415.9515 45.1153 0.1144 6574 +6576 2 296.4047 415.4081 45.2418 0.1144 6575 +6577 2 297.4652 415.0146 45.4065 0.1144 6576 +6578 2 298.5394 414.7217 45.6305 0.1144 6577 +6579 2 299.4203 413.9953 45.8144 0.1144 6578 +6580 2 300.0941 413.0709 45.9525 0.1144 6579 +6581 2 300.7873 412.1615 46.1138 0.1144 6580 +6582 2 290.9718 432.17 43.4006 0.1144 6495 +6583 2 291.1572 433.2969 43.4353 0.1144 6582 +6584 2 291.418 434.41 43.4764 0.1144 6583 +6585 2 291.8447 435.4464 43.5977 0.1144 6584 +6586 2 292.0357 436.5698 43.7046 0.1144 6585 +6587 2 291.68 437.6544 43.7912 0.1144 6586 +6588 2 291.1572 438.6725 43.8589 0.1144 6587 +6589 2 290.6126 439.3532 43.8642 0.1144 6588 +6590 2 289.8976 440.2455 43.5562 0.1144 6589 +6591 2 289.0671 441.028 43.4311 0.1144 6590 +6592 2 288.0775 441.5668 43.2309 0.1144 6591 +6593 2 287.1143 442.1468 42.9761 0.1144 6592 +6594 2 286.7116 443.1936 42.6936 0.1144 6593 +6595 2 286.2071 444.2209 42.4794 0.1144 6594 +6596 2 285.7037 445.2482 42.3287 0.1144 6595 +6597 2 285.2084 446.279 42.2363 0.1144 6596 +6598 2 284.7199 447.3143 42.1915 0.1144 6597 +6599 2 284.2325 448.3485 42.1772 0.1144 6598 +6600 2 283.7452 449.3838 42.1772 0.1144 6599 +6601 2 291.5656 438.8304 43.9135 0.1144 6588 +6602 2 292.6329 439.2434 43.9606 0.1144 6601 +6603 2 293.6991 439.6564 44.0 0.1144 6602 +6604 2 294.7653 440.0705 44.0437 0.1144 6603 +6605 2 295.8327 440.4835 44.0902 0.1144 6604 +6606 2 296.8989 440.8965 44.1367 0.1144 6605 +6607 2 297.9651 441.3094 44.1806 0.1144 6606 +6608 2 299.0324 441.7224 44.2196 0.1144 6607 +6609 2 300.0987 442.1354 44.252 0.1144 6608 +6610 2 301.1649 442.5484 44.2767 0.1144 6609 +6611 2 302.2471 442.919 44.2848 0.1144 6610 +6612 2 303.3465 443.2336 44.2686 0.1144 6611 +6613 2 304.447 443.546 44.2324 0.1144 6612 +6614 2 305.5475 443.8571 44.1818 0.1144 6613 +6615 2 306.6481 444.1694 44.1213 0.1144 6614 +6616 2 307.7486 444.4806 44.0546 0.1144 6615 +6617 2 308.8491 444.7929 43.9866 0.1144 6616 +6618 2 309.9485 445.1052 43.9186 0.1144 6617 +6619 2 311.049 445.4164 43.8508 0.1144 6618 +6620 2 312.1496 445.7287 43.7839 0.1144 6619 +6621 2 313.2501 446.0399 43.7178 0.1144 6620 +6622 2 314.3506 446.3522 43.6531 0.1144 6621 +6623 2 315.45 446.6645 43.5901 0.1144 6622 +6624 2 316.5505 446.9757 43.5296 0.1144 6623 +6625 2 317.651 447.288 43.4725 0.1144 6624 +6626 2 318.7516 447.5992 43.4196 0.1144 6625 +6627 2 319.8876 447.7158 43.3728 0.1144 6626 +6628 2 320.8165 447.0477 43.3409 0.1144 6627 +6629 2 321.7454 446.3808 43.3205 0.1144 6628 +6630 2 322.6744 445.7127 43.3087 0.1144 6629 +6631 2 323.6033 445.0446 43.302 0.1144 6630 +6632 2 304.3429 424.0442 47.2483 0.1144 6481 +6633 2 305.0911 423.5134 47.9111 0.1144 6632 +6634 2 305.8198 422.6794 48.5657 0.1144 6633 +6635 2 306.8128 422.2092 49.0706 0.1144 6634 +6636 2 307.9419 422.2115 49.4626 0.1144 6635 +6637 2 309.0608 422.3007 49.8187 0.1144 6636 +6638 2 310.0537 422.3316 50.1724 0.1144 6637 +6639 2 310.1384 421.429 50.6806 0.1144 6638 +6640 2 310.1681 421.3867 51.7373 0.1144 6639 +6641 2 310.9335 420.5413 52.1842 0.1144 6640 +6642 2 311.78 419.7736 52.3401 0.1144 6641 +6643 2 311.8109 418.8344 52.6649 0.1144 6642 +6644 2 311.6348 417.7133 53.0177 0.1144 6643 +6645 2 311.8704 416.6162 53.4282 0.1144 6644 +6646 2 312.1564 415.5328 53.8768 0.1144 6645 +6647 2 312.4436 414.4495 54.3301 0.1144 6646 +6648 2 312.0374 413.7688 54.959 0.1144 6647 +6649 2 311.8064 413.5217 55.3829 0.1144 6648 +6650 2 311.0044 412.706 55.6346 0.1144 6649 +6651 2 310.1052 411.999 55.7253 0.1144 6650 +6652 2 309.4085 411.1948 55.5467 0.1144 6651 +6653 2 308.6032 410.3825 55.3134 0.1144 6652 +6654 2 307.8149 409.7694 54.8685 0.1144 6653 +6655 2 307.2269 410.4512 53.9137 0.1144 6654 +6656 2 306.481 411.3183 53.7894 0.1144 6655 +6657 2 305.7351 412.1843 53.7359 0.1144 6656 +6658 2 304.9881 413.0504 53.6743 0.1144 6657 +6659 2 304.2422 413.9175 53.6091 0.1144 6658 +6660 2 303.4963 414.7835 53.5441 0.1144 6659 +6661 2 302.4622 415.2537 53.4932 0.1144 6660 +6662 2 301.5126 415.8909 53.4596 0.1144 6661 +6663 2 300.9681 416.893 53.4391 0.1144 6662 +6664 2 300.999 418.0359 53.4246 0.1144 6663 +6665 2 307.9476 408.4389 54.2822 0.1144 6654 +6666 2 308.1925 407.3223 54.1274 0.1144 6665 +6667 2 308.7953 406.3557 54.0526 0.1144 6666 +6668 2 309.4863 405.4439 54.0257 0.1144 6667 +6669 2 310.3386 404.6831 54.042 0.1144 6668 +6670 2 310.7493 403.6249 54.0649 0.1144 6669 +6671 2 310.985 402.5061 54.0957 0.1144 6670 +6672 2 311.1955 401.3816 54.1344 0.1144 6671 +6673 2 311.9333 400.5155 54.1811 0.1144 6672 +6674 2 312.7925 399.8886 54.3127 0.1144 6673 +6675 2 313.6974 399.1908 54.4281 0.1144 6674 +6676 2 314.584 398.4678 54.5278 0.1144 6675 +6677 2 315.4374 397.7059 54.6188 0.1144 6676 +6678 2 316.2897 396.9428 54.7005 0.1144 6677 +6679 2 317.142 396.1798 54.7725 0.1144 6678 +6680 2 317.9931 395.4167 54.8341 0.1144 6679 +6681 2 318.8454 394.6537 54.8988 0.1144 6680 +6682 2 319.6977 393.8906 54.9646 0.1144 6681 +6683 2 320.5499 393.1287 55.0306 0.1144 6682 +6684 2 321.4022 392.3657 55.097 0.1144 6683 +6685 2 322.2545 391.6026 55.1636 0.1144 6684 +6686 2 323.1056 390.8396 55.2308 0.1144 6685 +6687 2 323.9579 390.0765 55.2986 0.1144 6686 +6688 2 324.8102 389.3135 55.3675 0.1144 6687 +6689 2 325.6613 388.5504 55.4372 0.1144 6688 +6690 2 326.5136 387.7874 55.5086 0.1144 6689 +6691 2 327.3659 387.0244 55.5834 0.1144 6690 +6692 2 328.217 386.2613 55.6623 0.1144 6691 +6693 2 329.0087 385.4353 55.7444 0.1144 6692 +6694 2 329.5006 384.4034 55.8219 0.1144 6693 +6695 2 330.0818 383.4219 55.9275 0.1144 6694 +6696 2 330.7396 382.4975 56.0776 0.1144 6695 +6697 2 331.3619 381.5377 56.2083 0.1144 6696 +6698 2 331.8412 380.499 56.3245 0.1144 6697 +6699 2 332.4189 379.5117 56.4354 0.1144 6698 +6700 2 333.293 378.5416 56.2859 0.1144 6699 +6701 2 334.0549 377.687 56.3052 0.1144 6700 +6702 2 334.8946 376.9114 56.3307 0.1144 6701 +6703 2 335.7377 376.1392 56.371 0.1144 6702 +6704 2 336.4172 375.2217 56.4298 0.1144 6703 +6705 2 337.0819 374.2916 56.5037 0.1144 6704 +6706 2 337.7466 373.3616 56.5886 0.1144 6705 +6707 2 338.4112 372.4303 56.6815 0.1144 6706 +6708 2 339.077 371.5014 56.7792 0.1144 6707 +6709 2 339.7417 370.5713 56.8789 0.1144 6708 +6710 2 340.4064 369.6413 56.98 0.1144 6709 +6711 2 341.071 368.7112 57.0828 0.1144 6710 +6712 2 341.7357 367.78 57.1878 0.1144 6711 +6713 2 342.4003 366.8499 57.2964 0.1144 6712 +6714 2 343.0662 365.921 57.4092 0.1144 6713 +6715 2 343.7308 364.9909 57.5282 0.1144 6714 +6716 2 344.3955 364.0597 57.6579 0.1144 6715 +6717 2 345.0601 363.1296 57.8012 0.1144 6716 +6718 2 345.7248 362.1996 57.9597 0.1144 6717 +6719 2 346.3895 361.2695 58.1314 0.1144 6718 +6720 2 347.0244 360.3245 58.3386 0.1144 6719 +6721 2 347.466 359.3784 58.6891 0.1144 6720 +6722 2 348.2428 358.5628 59.0248 0.1144 6721 +6723 2 349.1328 357.8455 59.2816 0.1144 6722 +6724 2 350.0262 357.1305 59.467 0.1144 6723 +6725 2 350.9197 356.4166 59.5904 0.1144 6724 +6726 2 351.8132 355.7016 59.6627 0.1144 6725 +6727 2 352.7066 354.9878 59.6988 0.1144 6726 +6728 2 353.6001 354.2728 59.7338 0.1144 6727 +6729 2 354.4936 353.5589 59.7808 0.1144 6728 +6730 2 355.4076 352.8714 59.8514 0.1144 6729 +6731 2 356.3491 352.2239 59.9558 0.1144 6730 +6732 2 357.2906 351.5775 60.086 0.1144 6731 +6733 2 358.2322 350.9323 60.2403 0.1144 6732 +6734 2 359.1966 350.3637 60.4674 0.1144 6733 +6735 2 360.2479 349.913 60.6553 0.1144 6734 +6736 2 361.3198 349.5137 60.8045 0.1144 6735 +6737 2 362.386 349.1019 60.935 0.1144 6736 +6738 2 363.4248 348.6592 61.2976 0.1144 6737 +6739 2 333.0676 379.8778 56.572 0.1144 6699 +6740 2 334.0903 380.3686 56.726 0.1144 6739 +6741 2 335.2103 380.4933 56.8904 0.1144 6740 +6742 2 336.3211 380.698 57.0758 0.1144 6741 +6743 2 337.2558 381.1522 57.4126 0.1144 6742 +6744 2 338.0829 381.8203 57.8662 0.1144 6743 +6745 2 338.8379 382.6691 58.2789 0.1144 6744 +6746 2 339.5323 383.558 58.69 0.1144 6745 +6747 2 340.3045 384.3943 59.0005 0.1144 6746 +6748 2 340.9623 385.3267 59.2668 0.1144 6747 +6749 2 341.6945 386.1492 59.5753 0.1144 6748 +6750 2 342.3145 387.0186 59.9508 0.1144 6749 +6751 2 341.9988 387.3515 60.7351 0.1144 6750 +6752 2 341.2117 388.1809 60.7351 0.1144 6751 +6753 2 340.4247 389.0115 60.7351 0.1144 6752 +6754 2 339.6376 389.8409 60.7351 0.1144 6753 +6755 2 338.7384 390.549 60.7351 0.1144 6754 +6756 2 337.8404 391.2572 60.7351 0.1144 6755 +6757 2 336.9423 391.9653 60.7351 0.1144 6756 +6758 2 336.0431 392.6734 60.7351 0.1144 6757 +6759 2 342.9529 386.6674 60.2294 0.1144 6750 +6760 2 343.891 386.0142 60.4204 0.1144 6759 +6761 2 344.8039 385.3244 60.5388 0.1144 6760 +6762 2 345.7134 384.6311 60.5847 0.1144 6761 +6763 2 346.624 383.9378 60.5662 0.1144 6762 +6764 2 347.4797 383.1805 60.4974 0.1144 6763 +6765 2 348.2462 382.334 60.3935 0.1144 6764 +6766 2 348.9989 381.476 60.2585 0.1144 6765 +6767 2 349.7528 380.618 60.0978 0.1144 6766 +6768 2 350.5067 379.76 59.9158 0.1144 6767 +6769 2 351.2595 378.902 59.717 0.1144 6768 +6770 2 352.0122 378.044 59.5053 0.1144 6769 +6771 2 352.8382 377.2637 59.2626 0.1144 6770 +6772 2 353.6893 376.5144 58.9898 0.1144 6771 +6773 2 354.5428 375.7685 58.6989 0.1144 6772 +6774 2 355.395 375.0238 58.4024 0.1144 6773 +6775 2 356.2485 374.2768 58.112 0.1144 6774 +6776 2 357.1019 373.5309 57.8388 0.1144 6775 +6777 2 357.8752 372.6912 57.6352 0.1144 6776 +6778 2 358.8476 372.1032 57.5008 0.1144 6777 +6779 2 359.979 371.975 57.4202 0.1144 6778 +6780 2 361.1139 372.1009 57.3793 0.1144 6779 +6781 2 362.2533 372.0105 57.3636 0.1144 6780 +6782 2 363.053 371.2097 57.3611 0.1144 6781 +6783 2 363.752 370.3048 57.3611 0.1144 6782 +6784 2 364.4475 369.3965 57.3611 0.1144 6783 +6785 2 365.1362 368.4835 57.3611 0.1144 6784 +6786 2 365.8249 367.5695 57.3611 0.1144 6785 +6787 2 366.5136 366.6566 57.3611 0.1144 6786 +6788 2 367.2023 365.7425 57.3611 0.1144 6787 +6789 2 367.8429 364.7953 57.3611 0.1144 6788 +6790 2 367.8235 363.6513 57.3611 0.1144 6789 +6791 2 367.8052 362.5073 57.3611 0.1144 6790 +6792 2 312.1187 399.9161 54.9091 0.1144 6673 +6793 2 312.4356 398.9769 56.1095 0.1144 6792 +6794 2 313.0693 398.0251 56.5132 0.1144 6793 +6795 2 313.6356 397.2025 57.0164 0.1144 6794 +6796 2 314.1264 396.5218 57.7147 0.1144 6795 +6797 2 314.9272 395.705 58.2464 0.1144 6796 +6798 2 315.728 394.8882 58.6228 0.1144 6797 +6799 2 316.5013 394.0451 58.8568 0.1144 6798 +6800 2 317.269 393.1974 58.9952 0.1144 6799 +6801 2 318.0377 392.3497 59.0481 0.1144 6800 +6802 2 312.0981 413.7253 56.609 0.1144 6648 +6803 2 312.5259 413.2174 58.6625 0.1144 6802 +6804 2 312.5957 412.3926 59.5566 0.1144 6803 +6805 2 313.1883 411.872 60.566 0.1144 6804 +6806 2 312.8657 411.3309 62.4224 0.1144 6805 +6807 2 312.2788 410.3482 62.4224 0.1144 6806 +6808 2 311.6931 409.3655 62.4224 0.1144 6807 +6809 2 311.1074 408.3828 62.4224 0.1144 6808 +6810 2 310.5216 407.4001 62.4224 0.1144 6809 +6811 2 309.9348 406.4174 62.4224 0.1144 6810 +6812 2 309.349 405.4347 62.4224 0.1144 6811 +6813 2 308.7633 404.4532 62.4224 0.1144 6812 +6814 2 308.1776 403.4705 62.4224 0.1144 6813 +6815 2 307.5919 402.4878 62.4224 0.1144 6814 +6816 2 307.005 401.5051 62.4224 0.1144 6815 +6817 2 306.4193 400.5224 62.4224 0.1144 6816 +6818 2 305.8335 399.5397 62.4224 0.1144 6817 +6819 2 305.2478 398.5582 62.4224 0.1144 6818 +6820 2 304.6609 397.5755 62.4224 0.1144 6819 +6821 2 304.0752 396.5928 62.4224 0.1144 6820 +6822 2 303.4895 395.6101 62.4224 0.1144 6821 +6823 2 314.0623 412.5756 61.3393 0.1144 6805 +6824 2 315.0576 413.1281 61.8929 0.1144 6823 +6825 2 316.141 413.4828 62.246 0.1144 6824 +6826 2 317.2552 413.7448 62.421 0.1144 6825 +6827 2 318.3775 413.9667 62.4926 0.1144 6826 +6828 2 319.4277 414.398 62.5206 0.1144 6827 +6829 2 320.4138 414.9768 62.5612 0.1144 6828 +6830 2 321.3279 415.6621 62.6172 0.1144 6829 +6831 2 322.3357 416.1872 62.6906 0.1144 6830 +6832 2 323.1331 416.9754 62.7836 0.1144 6831 +6833 2 324.0746 417.5531 62.9636 0.1144 6832 +6834 2 325.047 418.1114 63.2117 0.1144 6833 +6835 2 325.8776 418.8825 63.4544 0.1144 6834 +6836 2 326.6749 419.7004 63.674 0.1144 6835 +6837 2 327.4734 420.5184 63.8672 0.1144 6836 +6838 2 328.2902 421.3169 64.0321 0.1144 6837 +6839 2 329.3702 421.3546 64.1656 0.1144 6838 +6840 2 330.5062 421.2288 64.2788 0.1144 6839 +6841 2 331.6422 421.103 64.3832 0.1144 6840 +6842 2 332.7793 420.976 64.4798 0.1144 6841 +6843 2 333.9153 420.8501 64.5677 0.1144 6842 +6844 2 335.0513 420.7243 64.6439 0.1144 6843 +6845 2 336.1873 420.5973 64.7035 0.1144 6844 +6846 2 337.3233 420.4715 64.7424 0.1144 6845 +6847 2 338.4593 420.3456 64.757 0.1144 6846 +6848 2 339.5941 420.2026 64.7349 0.1144 6847 +6849 2 340.7038 419.9738 64.6254 0.1144 6848 +6850 2 341.818 420.0139 64.4216 0.1144 6849 +6851 2 342.9472 419.9384 64.1841 0.1144 6850 +6852 2 344.0763 419.7839 63.9447 0.1144 6851 +6853 2 345.0693 419.2474 63.7255 0.1144 6852 +6854 2 345.7099 418.3082 63.5491 0.1144 6853 +6855 2 346.3288 417.3461 63.4152 0.1144 6854 +6856 2 346.9477 416.3851 63.313 0.1144 6855 +6857 2 347.5666 415.423 63.2265 0.1144 6856 +6858 2 348.1844 414.4609 63.1473 0.1144 6857 +6859 2 348.8033 413.4988 63.0689 0.1144 6858 +6860 2 349.4234 412.5378 62.9874 0.1144 6859 +6861 2 350.0663 411.5929 62.9009 0.1144 6860 +6862 2 350.7435 410.6708 62.8102 0.1144 6861 +6863 2 351.4231 409.7499 62.7094 0.1144 6862 +6864 2 352.1026 408.829 62.5926 0.1144 6863 +6865 2 352.781 407.9081 62.4529 0.1144 6864 +6866 2 353.2237 406.9688 62.1253 0.1144 6865 +6867 2 353.1482 406.8968 62.8037 0.1144 6866 +6868 2 352.9309 406.6909 64.5786 0.1144 6867 +6869 2 352.1232 406.9677 65.3498 0.1144 6868 +6870 2 351.1542 407.5752 65.9467 0.1144 6869 +6871 2 350.3477 408.3863 66.3751 0.1144 6870 +6872 2 349.5412 409.1974 66.6487 0.1144 6871 +6873 2 348.7347 410.0085 66.7831 0.1144 6872 +6874 2 347.9282 410.8196 66.7951 0.1144 6873 +6875 2 347.1216 411.6306 66.7666 0.1144 6874 +6876 2 346.314 412.4417 66.7383 0.1144 6875 +6877 2 345.5074 413.2528 66.712 0.1144 6876 +6878 2 344.7009 414.0639 66.6876 0.1144 6877 +6879 2 343.8944 414.875 66.64 0.1144 6878 +6880 2 353.4468 406.9402 61.8218 0.1144 6866 +6881 2 354.5519 407.1256 61.5135 0.1144 6880 +6882 2 355.625 407.5065 61.1912 0.1144 6881 +6883 2 356.6077 407.7994 60.7463 0.1144 6882 +6884 2 357.2426 406.9505 60.3548 0.1144 6883 +6885 2 357.8958 406.0239 60.0037 0.1144 6884 +6886 2 358.5559 405.103 59.6714 0.1144 6885 +6887 2 359.2011 404.1649 59.3872 0.1144 6886 +6888 2 359.8132 403.1994 59.1864 0.1144 6887 +6889 2 360.4229 402.2315 59.0584 0.1144 6888 +6890 2 361.0315 401.2626 58.9677 0.1144 6889 +6891 2 361.1482 400.1437 58.8641 0.1144 6890 +6892 2 360.6769 399.121 58.7826 0.1144 6891 +6893 2 360.1358 398.1131 58.7157 0.1144 6892 +6894 2 359.057 397.7379 58.653 0.1144 6893 +6895 2 357.9748 397.3673 58.5883 0.1144 6894 +6896 2 356.8376 397.2426 58.5169 0.1144 6895 +6897 2 355.6993 397.1202 58.4284 0.1144 6896 +6898 2 354.5622 397.0012 58.3058 0.1144 6897 +6899 2 353.4205 397.0092 58.1381 0.1144 6898 +6900 2 352.2776 397.063 57.8956 0.1144 6899 +6901 2 351.2149 396.6717 57.5915 0.1144 6900 +6902 2 350.4758 395.9556 57.0704 0.1144 6901 +6903 2 350.064 395.0003 56.4136 0.1144 6902 +6904 2 349.6522 394.0462 55.6836 0.1144 6903 +6905 2 349.2403 393.091 53.9868 0.1144 6904 +6906 2 309.9153 421.7127 51.0728 0.1144 6639 +6907 2 309.2015 422.6062 51.371 0.1144 6906 +6908 2 308.3343 423.3395 51.5752 0.1144 6907 +6909 2 307.3894 423.9847 51.6905 0.1144 6908 +6910 2 306.5245 424.7272 51.7362 0.1144 6909 +6911 2 306.0898 425.7465 51.7356 0.1144 6910 +6912 2 306.0086 426.8813 51.735 0.1144 6911 +6913 2 305.9079 428.0184 51.7342 0.1144 6912 +6914 2 305.7626 429.1533 51.7331 0.1144 6913 +6915 2 305.7557 430.2939 51.7311 0.1144 6914 +6916 2 305.8324 431.4356 51.7289 0.1144 6915 +6917 2 305.9559 432.5727 51.7255 0.1144 6916 +6918 2 305.8919 433.7087 51.7208 0.1144 6917 +6919 2 305.2386 434.5873 51.714 0.1144 6918 +6920 2 304.3463 435.3012 51.7056 0.1144 6919 +6921 2 303.3968 435.9384 51.6925 0.1144 6920 +6922 2 302.5239 436.674 51.6729 0.1144 6921 +6923 2 301.833 437.5789 51.6468 0.1144 6922 +6924 2 301.762 438.6908 51.6172 0.1144 6923 +6925 2 301.8078 439.8337 51.5875 0.1144 6924 +6926 2 302.143 440.885 51.4721 0.1144 6925 +6927 2 302.4896 441.9604 51.3316 0.1144 6926 +6928 2 303.2241 442.8172 51.2896 0.1144 6927 +6929 2 303.9848 443.6592 51.333 0.1144 6928 +6930 2 304.7444 444.5023 51.441 0.1144 6929 +6931 2 305.0076 445.6052 51.5477 0.1144 6930 +6932 2 305.2249 446.7286 51.6466 0.1144 6931 +6933 2 305.4514 447.8497 51.7224 0.1144 6932 +6934 2 305.71 448.9639 51.7689 0.1144 6933 +6935 2 305.861 450.0976 51.7992 0.1144 6934 +6936 2 306.0108 451.2325 51.8249 0.1144 6935 +6937 2 306.2431 452.3525 51.856 0.1144 6936 +6938 2 306.4387 453.4793 51.8921 0.1144 6937 +6939 2 306.4616 454.6073 51.9971 0.1144 6938 +6940 2 305.9868 455.6403 52.0985 0.1144 6939 +6941 2 305.1094 456.3713 52.1763 0.1144 6940 +6942 2 304.3635 457.2385 52.2315 0.1144 6941 +6943 2 303.6702 458.148 52.2656 0.1144 6942 +6944 2 302.739 458.8115 52.2802 0.1144 6943 +6945 2 301.7266 459.3435 52.2768 0.1144 6944 +6946 2 300.6512 459.7358 52.2679 0.1144 6945 +6947 2 299.6719 460.325 52.2553 0.1144 6946 +6948 2 298.7178 460.9576 52.2374 0.1144 6947 +6949 2 297.8496 461.7012 52.2124 0.1144 6948 +6950 2 296.9801 462.446 52.178 0.1144 6949 +6951 2 296.1118 463.1907 52.1298 0.1144 6950 +6952 2 295.12 463.7604 52.0615 0.1144 6951 +6953 2 294.1041 464.2867 51.9646 0.1144 6952 +6954 2 293.0894 464.8141 51.8311 0.1144 6953 +6955 2 292.0735 465.3403 51.6558 0.1144 6954 +6956 2 292.2325 465.8963 53.09 0.1144 6955 +6957 2 292.419 466.9087 53.6782 0.1144 6956 +6958 2 292.1112 467.9601 53.9045 0.1144 6957 +6959 2 291.3974 468.8375 54.0593 0.1144 6958 +6960 2 290.5451 469.596 54.1198 0.1144 6959 +6961 2 289.5178 470.0559 54.08 0.1144 6960 +6962 2 288.4138 470.3453 53.9997 0.1144 6961 +6963 2 287.4014 470.8567 53.8658 0.1144 6962 +6964 2 286.477 471.5156 53.7071 0.1144 6963 +6965 2 285.7678 472.4022 53.5805 0.1144 6964 +6966 2 285.0951 473.3277 53.492 0.1144 6965 +6967 2 284.4224 474.2532 53.4335 0.1144 6966 +6968 2 283.7486 475.1787 53.3915 0.1144 6967 +6969 2 283.0759 476.1031 53.3602 0.1144 6968 +6970 2 282.4033 477.0286 53.3322 0.1144 6969 +6971 2 281.7157 477.9426 53.2997 0.1144 6970 +6972 2 281.0213 478.8521 53.2624 0.1144 6971 +6973 2 280.2983 479.7147 53.165 0.1144 6972 +6974 2 279.5696 480.5692 53.027 0.1144 6973 +6975 2 278.8912 481.4844 52.9432 0.1144 6974 +6976 2 278.3695 482.5003 52.9334 0.1144 6975 +6977 2 277.7254 483.4292 53.0502 0.1144 6976 +6978 2 277.0471 484.3318 53.2857 0.1144 6977 +6979 2 276.3675 485.2333 53.6169 0.1144 6978 +6980 2 275.6891 486.1359 54.01 0.1144 6979 +6981 2 275.0096 487.0374 54.4317 0.1144 6980 +6982 2 274.3301 487.9389 54.8638 0.1144 6981 +6983 2 273.6517 488.8404 55.2905 0.1144 6982 +6984 2 272.9721 489.7418 55.7066 0.1144 6983 +6985 2 272.2937 490.6444 56.1072 0.1144 6984 +6986 2 271.6142 491.5459 56.4866 0.1144 6985 +6987 2 270.9347 492.4474 56.8386 0.1144 6986 +6988 2 270.2563 493.35 57.1528 0.1144 6987 +6989 2 269.6145 494.2904 57.3961 0.1144 6988 +6990 2 268.6936 494.9482 57.5484 0.1144 6989 +6991 2 268.0895 495.9057 57.6248 0.1144 6990 +6992 2 267.7875 497.0016 57.6069 0.1144 6991 +6993 2 267.1217 497.9226 57.3611 0.1144 6992 +6994 2 291.847 465.3723 51.408 0.1144 6955 +6995 2 290.7911 465.5222 50.988 0.1144 6994 +6996 2 289.7352 465.6721 50.4512 0.1144 6995 +6997 2 288.6792 465.8231 49.849 0.1144 6996 +6998 2 288.2823 465.7407 49.2736 0.1144 6997 +6999 2 289.273 465.1687 48.8474 0.1144 6998 +7000 2 290.2637 464.5978 48.5596 0.1144 6999 +7001 2 291.2544 464.0258 48.3916 0.1144 7000 +7002 2 292.2462 463.455 48.3062 0.1144 7001 +7003 2 293.2369 462.883 48.27 0.1144 7002 +7004 2 294.2276 462.311 48.2524 0.1144 7003 +7005 2 295.2184 461.739 48.235 0.1144 7004 +7006 2 296.2091 461.167 48.2174 0.1144 7005 +7007 2 297.2009 460.5961 48.1998 0.1144 7006 +7008 2 298.1916 460.0241 48.1824 0.1144 7007 +7009 2 299.1823 459.4533 48.1648 0.1144 7008 +7010 2 300.173 458.8813 48.1474 0.1144 7009 +7011 2 301.1637 458.3093 48.1298 0.1144 7010 +7012 2 302.1544 457.7373 48.1124 0.1144 7011 +7013 2 303.1463 457.1664 48.0948 0.1144 7012 +7014 2 304.137 456.5944 48.0774 0.1144 7013 +7015 2 305.1277 456.0224 48.0598 0.1144 7014 +7016 2 306.1184 455.4504 48.0424 0.1144 7015 +7017 2 307.1091 454.8796 48.0248 0.1144 7016 +7018 2 308.0998 454.3076 48.0074 0.1144 7017 +7019 2 309.0916 453.7367 47.99 0.1144 7018 +7020 2 310.0823 453.1647 47.973 0.1144 7019 +7021 2 311.073 452.5927 47.9559 0.1144 7020 +7022 2 312.0638 452.0207 47.9388 0.1144 7021 +7023 2 313.0545 451.4487 47.922 0.1144 7022 +7024 2 314.0452 450.8779 47.9055 0.1144 7023 +7025 2 315.0359 450.3059 47.8895 0.1144 7024 +7026 2 316.0277 449.735 47.8741 0.1144 7025 +7027 2 317.0184 449.163 47.8596 0.1144 7026 +7028 2 318.0091 448.591 47.8464 0.1144 7027 +7029 2 318.9998 448.019 47.8344 0.1144 7028 +7030 2 320.0077 447.4767 47.8251 0.1144 7029 +7031 2 321.0361 446.978 47.8198 0.1144 7030 +7032 2 322.0715 446.4906 47.8184 0.1144 7031 +7033 2 323.1056 446.001 47.8206 0.1144 7032 +7034 2 324.0838 445.4118 47.8265 0.1144 7033 +7035 2 325.0081 444.738 47.836 0.1144 7034 +7036 2 326.0091 444.19 47.85 0.1144 7035 +7037 2 327.0318 443.6787 47.8699 0.1144 7036 +7038 2 328.0557 443.1673 47.8971 0.1144 7037 +7039 2 329.0647 442.6296 47.9326 0.1144 7038 +7040 2 330.0188 442.0016 47.9906 0.1144 7039 +7041 2 330.9558 441.346 48.0721 0.1144 7040 +7042 2 331.8916 440.6894 48.1732 0.1144 7041 +7043 2 332.8274 440.0339 48.2899 0.1144 7042 +7044 2 333.7528 439.3635 48.4193 0.1144 7043 +7045 2 334.5228 438.5284 48.5685 0.1144 7044 +7046 2 335.2549 437.6544 48.7332 0.1144 7045 +7047 2 336.0683 436.8536 48.8961 0.1144 7046 +7048 2 336.9984 436.1923 49.051 0.1144 7047 +7049 2 337.9902 435.626 49.212 0.1144 7048 +7050 2 338.9901 435.0746 49.3805 0.1144 7049 +7051 2 339.9899 434.5232 49.555 0.1144 7050 +7052 2 341.0619 434.1606 49.7594 0.1144 7051 +7053 2 342.1544 433.8551 49.9918 0.1144 7052 +7054 2 343.2469 433.5508 50.2398 0.1144 7053 +7055 2 344.344 433.7018 50.3961 0.1144 7054 +7056 2 345.297 434.2395 50.6038 0.1144 7055 +7057 2 346.2167 434.8985 50.8113 0.1144 7056 +7058 2 346.8562 435.8331 50.9634 0.1144 7057 +7059 2 346.8322 436.9508 51.065 0.1144 7058 +7060 2 346.2488 437.9346 51.175 0.1144 7059 +7061 2 307.0107 424.2181 44.7121 0.1144 6472 +7062 2 307.1262 425.3392 45.0982 0.1144 7061 +7063 2 307.2418 426.4615 45.2805 0.1144 7062 +7064 2 307.2441 427.5917 45.4801 0.1144 7063 +7065 2 306.3312 428.2724 45.5823 0.1144 7064 +7066 2 305.4171 428.952 45.5515 0.1144 7065 +7067 2 318.5674 426.5507 38.677 0.1144 6450 +7068 2 318.3866 427.665 38.5134 0.1144 7067 +7069 2 318.2402 428.7998 38.4572 0.1144 7068 +7070 2 318.0537 429.906 38.3054 0.1144 7069 +7071 2 317.8272 431.0249 38.1405 0.1144 7070 +7072 2 317.4703 432.0957 37.9271 0.1144 7071 +7073 2 317.1237 433.1848 37.7336 0.1144 7072 +7074 2 316.8903 434.2887 37.5172 0.1144 7073 +7075 2 316.5803 435.3881 37.361 0.1144 7074 +7076 2 316.189 436.4635 37.2658 0.1144 7075 +7077 2 315.6388 437.4645 37.2148 0.1144 7076 +7078 2 314.9661 438.39 37.2028 0.1144 7077 +7079 2 314.3506 439.3543 37.2184 0.1144 7078 +7080 2 313.6608 440.2661 37.2585 0.1144 7079 +7081 2 312.9995 441.1996 37.3108 0.1144 7080 +7082 2 312.3212 442.1205 37.3727 0.1144 7081 +7083 2 311.5329 442.9156 37.522 0.1144 7082 +7084 2 310.9541 442.8344 37.7003 0.1144 7083 +7085 2 309.8432 442.6079 37.8636 0.1144 7084 +7086 2 308.7462 442.2876 37.9742 0.1144 7085 +7087 2 307.6227 442.0931 38.0324 0.1144 7086 +7088 2 306.5028 441.8654 38.0386 0.1144 7087 +7089 2 305.3759 441.6744 37.9921 0.1144 7088 +7090 2 304.2365 441.5737 37.9056 0.1144 7089 +7091 2 303.0959 441.4902 37.7544 0.1144 7090 +7092 2 301.9531 441.4833 37.5561 0.1144 7091 +7093 2 301.0344 440.9068 37.322 0.1144 7092 +7094 2 300.4773 439.9458 36.9986 0.1144 7093 +7095 2 299.9236 438.9825 36.5859 0.1144 7094 +7096 2 300.0449 438.3751 34.8664 0.1144 7095 +7097 2 310.9872 444.0287 37.4536 0.1144 7083 +7098 2 310.2631 444.913 37.3758 0.1144 7097 +7099 2 309.5984 445.8431 37.2896 0.1144 7098 +7100 2 308.9852 446.7858 37.1288 0.1144 7099 +7101 2 308.8114 447.8806 36.5537 0.1144 7100 +7102 2 325.1202 421.024 29.6318 0.1144 6437 +7103 2 325.2049 422.0205 31.5554 0.1144 7102 +7104 2 325.2907 423.0157 32.3795 0.1144 7103 +7105 2 325.3753 424.0122 33.3404 0.1144 7104 +7106 2 325.46 425.0086 34.3711 0.1144 7105 +7107 2 325.5446 426.005 35.4091 0.1144 7106 +7108 2 325.6053 427.0323 36.3784 0.1144 7107 +7109 2 325.2792 428.1191 37.1078 0.1144 7108 +7110 2 324.7187 429.1098 37.6323 0.1144 7109 +7111 2 324.1146 430.0811 37.9562 0.1144 7110 +7112 2 323.6994 431.1461 38.1332 0.1144 7111 +7113 2 323.1663 432.1586 38.2124 0.1144 7112 +7114 2 322.5073 433.0921 38.2388 0.1144 7113 +7115 2 322.171 434.1846 38.2483 0.1144 7114 +7116 2 322.06 435.324 38.2514 0.1144 7115 +7117 2 321.9491 436.4623 38.2556 0.1144 7116 +7118 2 321.8381 437.6006 38.2614 0.1144 7117 +7119 2 321.7237 438.7389 38.2698 0.1144 7118 +7120 2 321.5029 439.86 38.2816 0.1144 7119 +7121 2 321.0865 440.9193 38.2976 0.1144 7120 +7122 2 320.2548 441.6984 38.32 0.1144 7121 +7123 2 319.2687 442.2407 38.3533 0.1144 7122 +7124 2 318.7596 443.2577 38.3986 0.1144 7123 +7125 2 317.9862 444.1008 38.456 0.1144 7124 +7126 2 317.2678 444.9817 38.5314 0.1144 7125 +7127 2 316.8823 446.0273 38.6767 0.1144 7126 +7128 2 316.7702 447.1198 38.8951 0.1144 7127 +7129 2 316.4441 448.2158 39.0648 0.1144 7128 +7130 2 316.189 449.3289 39.1877 0.1144 7129 +7131 2 316.0266 450.4592 39.2664 0.1144 7130 +7132 2 315.7257 451.562 39.3039 0.1144 7131 +7133 2 315.41 452.6591 39.3044 0.1144 7132 +7134 2 315.2086 453.7836 39.2798 0.1144 7133 +7135 2 314.8849 454.8773 39.2442 0.1144 7134 +7136 2 314.4856 455.9412 39.1958 0.1144 7135 +7137 2 314.3415 457.0749 39.1348 0.1144 7136 +7138 2 314.2454 458.2109 39.0491 0.1144 7137 +7139 2 314.0429 459.316 38.89 0.1144 7138 +7140 2 313.8129 460.4005 38.6702 0.1144 7139 +7141 2 313.6688 461.5331 38.4966 0.1144 7140 +7142 2 313.6333 462.6771 38.3662 0.1144 7141 +7143 2 313.5853 463.8199 38.2743 0.1144 7142 +7144 2 313.5292 464.9616 38.2166 0.1144 7143 +7145 2 313.5933 466.1011 38.1844 0.1144 7144 +7146 2 313.837 467.2142 38.1618 0.1144 7145 +7147 2 314.2499 468.2792 38.1326 0.1144 7146 +7148 2 314.6378 469.3477 38.0954 0.1144 7147 +7149 2 314.9912 470.4105 38.024 0.1144 7148 +7150 2 315.5667 471.3841 37.9126 0.1144 7149 +7151 2 316.1627 472.3565 37.8255 0.1144 7150 +7152 2 316.7702 473.3128 37.7611 0.1144 7151 +7153 2 317.2518 474.3482 37.718 0.1144 7152 +7154 2 317.5424 475.3823 37.6942 0.1144 7153 +7155 2 317.0333 476.3559 37.6877 0.1144 7154 +7156 2 316.4052 477.294 37.6914 0.1144 7155 +7157 2 316.0494 478.375 37.6967 0.1144 7156 +7158 2 315.7783 479.4859 37.704 0.1144 7157 +7159 2 315.2555 480.4754 37.714 0.1144 7158 +7160 2 314.4307 481.2568 37.7289 0.1144 7159 +7161 2 313.5304 481.9626 37.7496 0.1144 7160 +7162 2 312.63 482.6685 37.7768 0.1144 7161 +7163 2 311.7331 483.3789 37.8101 0.1144 7162 +7164 2 310.8706 484.1248 37.8692 0.1144 7163 +7165 2 309.8844 484.6396 37.9716 0.1144 7164 +7166 2 308.7816 484.5309 38.0685 0.1144 7165 +7167 2 307.6857 484.7277 38.1424 0.1144 7166 +7168 2 306.6057 485.1029 38.1954 0.1144 7167 +7169 2 305.6574 485.7275 38.229 0.1144 7168 +7170 2 304.6278 486.2114 38.2458 0.1144 7169 +7171 2 303.5032 486.3602 38.2516 0.1144 7170 +7172 2 302.3592 486.3544 38.2561 0.1144 7171 +7173 2 301.2335 486.1668 38.262 0.1144 7172 +7174 2 300.0952 486.0719 38.2707 0.1144 7173 +7175 2 298.9707 485.8751 38.2824 0.1144 7174 +7176 2 297.845 485.6715 38.2992 0.1144 7175 +7177 2 296.7078 485.5559 38.3222 0.1144 7176 +7178 2 295.5673 485.6177 38.3544 0.1144 7177 +7179 2 294.5045 486.017 38.4003 0.1144 7178 +7180 2 293.7758 486.8692 38.4653 0.1144 7179 +7181 2 293.2633 487.8897 38.5532 0.1144 7180 +7182 2 292.4407 488.6619 38.6728 0.1144 7181 +7183 2 291.4329 489.195 38.838 0.1144 7182 +7184 2 290.3838 489.6194 39.1258 0.1144 7183 +7185 2 289.527 490.3584 39.4682 0.1144 7184 +7186 2 288.4321 490.6044 39.828 0.1144 7185 +7187 2 287.5044 490.7577 40.4096 0.1144 7186 +7188 2 286.5297 490.4717 41.0925 0.1144 7187 +7189 2 285.555 490.109 42.7395 0.1144 7188 +7190 2 322.6549 409.0155 21.7414 0.1144 6425 +7191 2 321.5898 408.6208 21.7575 0.1144 7190 +7192 2 320.4687 408.5201 21.7676 0.1144 7191 +7193 2 319.351 408.4091 21.7209 0.1144 7192 +7194 2 318.2208 408.3428 21.6588 0.1144 7193 +7195 2 317.0768 408.3714 21.622 0.1144 7194 +7196 2 315.9739 408.6334 21.6134 0.1144 7195 +7197 2 314.9203 409.0738 21.6339 0.1144 7196 +7198 2 314.0474 409.7819 21.7151 0.1144 7197 +7199 2 313.0636 410.299 21.8724 0.1144 7198 +7200 2 311.9459 410.172 22.0419 0.1144 7199 +7201 2 310.8042 410.1686 22.2128 0.1144 7200 +7202 2 309.6682 410.1068 22.4163 0.1144 7201 +7203 2 308.5528 409.981 22.6748 0.1144 7202 +7204 2 307.6971 409.3346 23.0042 0.1144 7203 +7205 2 306.6103 409.0852 23.3289 0.1144 7204 +7206 2 306.8734 407.7708 23.6252 0.1144 7205 +7207 2 307.0976 406.6531 23.5976 0.1144 7206 +7208 2 307.3219 405.5354 23.486 0.1144 7207 +7209 2 307.5472 404.4177 23.3225 0.1144 7208 +7210 2 307.7715 403.3 23.1444 0.1144 7209 +7211 2 307.9957 402.1824 22.9785 0.1144 7210 +7212 2 308.3698 401.1081 22.851 0.1144 7211 +7213 2 308.8548 400.0728 22.7732 0.1144 7212 +7214 2 309.3593 399.0455 22.7413 0.1144 7213 +7215 2 309.8638 398.0182 22.7478 0.1144 7214 +7216 2 310.3672 396.9909 22.784 0.1144 7215 +7217 2 310.8717 395.9647 22.8409 0.1144 7216 +7218 2 311.311 394.9351 22.9775 0.1144 7217 +7219 2 311.6817 393.8712 23.1624 0.1144 7218 +7220 2 312.1644 392.8393 23.3199 0.1144 7219 +7221 2 312.9927 392.0831 23.4335 0.1144 7220 +7222 2 313.8598 391.3395 23.5051 0.1144 7221 +7223 2 314.5577 390.4369 23.5369 0.1144 7222 +7224 2 315.4889 389.7894 23.5314 0.1144 7223 +7225 2 316.3789 389.0733 23.5001 0.1144 7224 +7226 2 317.0916 388.1821 23.4503 0.1144 7225 +7227 2 317.7266 387.2303 23.3818 0.1144 7226 +7228 2 318.3489 386.2705 23.2941 0.1144 7227 +7229 2 318.7813 385.2145 23.1864 0.1144 7228 +7230 2 319.0913 384.1552 22.9666 0.1144 7229 +7231 2 319.2595 383.0936 22.6331 0.1144 7230 +7232 2 318.6921 382.1177 22.363 0.1144 7231 +7233 2 317.6488 381.6613 22.1614 0.1144 7232 +7234 2 316.5173 381.4897 21.9321 0.1144 7233 +7235 2 306.5634 409.1276 24.4055 0.1144 7205 +7236 2 305.6596 409.3953 25.4814 0.1144 7235 +7237 2 304.5225 409.4124 25.857 0.1144 7236 +7238 2 303.3808 409.4044 26.2043 0.1144 7237 +7239 2 302.2562 409.274 26.5542 0.1144 7238 +7240 2 301.2484 409.0109 27.5559 0.1144 7239 +7241 2 284.0506 412.6202 18.6131 0.1144 2113 +7242 2 283.0782 413.1716 18.6632 0.1144 7241 +7243 2 282.1665 412.6065 18.6574 0.1144 7242 +7244 2 281.114 412.2038 18.5542 0.1144 7243 +7245 2 279.9986 412.4543 18.4364 0.1144 7244 +7246 2 279.6256 413.151 18.5578 0.1144 7245 +7247 2 278.8328 413.9644 18.6215 0.1144 7246 +7248 2 277.8261 414.4975 18.6479 0.1144 7247 +7249 2 276.7725 414.9414 18.6836 0.1144 7248 +7250 2 275.712 415.3727 18.7293 0.1144 7249 +7251 2 274.7488 415.9859 18.786 0.1144 7250 +7252 2 273.75 416.4961 18.9272 0.1144 7251 +7253 2 272.6255 416.6642 19.0641 0.1144 7252 +7254 2 271.5009 416.8679 19.1932 0.1144 7253 +7255 2 270.365 417.0017 19.3233 0.1144 7254 +7256 2 269.2884 417.3861 19.4616 0.1144 7255 +7257 2 268.1799 417.6652 19.6145 0.1144 7256 +7258 2 267.0588 417.894 19.7928 0.1144 7257 +7259 2 266.0166 418.243 20.1182 0.1144 7258 +7260 2 264.979 418.5507 20.5743 0.1144 7259 +7261 2 264.1565 419.3332 21.0103 0.1144 7260 +7262 2 263.7526 420.3731 21.4653 0.1144 7261 +7263 2 263.0834 421.0789 22.0207 0.1144 7262 +7264 2 263.1589 422.1635 22.6116 0.1144 7263 +7265 2 262.4736 423.0718 23.1255 0.1144 7264 +7266 2 263.1749 423.0855 23.7656 0.1144 7265 +7267 2 264.1382 423.0226 24.5277 0.1144 7266 +7268 2 265.011 422.43 25.2475 0.1144 7267 +7269 2 265.8507 421.6544 25.8202 0.1144 7268 +7270 2 266.7854 421.0252 26.3162 0.1144 7269 +7271 2 267.7589 420.6248 26.854 0.1144 7270 +7272 2 268.6947 420.1191 27.3792 0.1144 7271 +7273 2 269.7598 419.8617 27.7977 0.1144 7272 +7274 2 270.7562 420.3079 28.1744 0.1144 7273 +7275 2 271.8487 420.4143 28.4987 0.1144 7274 +7276 2 272.7422 419.745 28.7456 0.1144 7275 +7277 2 273.8427 419.5185 28.9293 0.1144 7276 +7278 2 274.9856 419.4888 29.0805 0.1144 7277 +7279 2 276.0701 419.3023 29.3247 0.1144 7278 +7280 2 277.1191 419.0792 29.6671 0.1144 7279 +7281 2 278.1808 418.6525 29.9326 0.1144 7280 +7282 2 279.2904 418.3745 30.1302 0.1144 7281 +7283 2 279.7835 417.8918 30.2655 0.1144 7282 +7284 2 280.4047 416.9583 30.3442 0.1144 7283 +7285 2 280.7559 415.8692 30.3724 0.1144 7284 +7286 2 281.1597 414.803 30.3744 0.1144 7285 +7287 2 281.5647 413.7436 30.3769 0.1144 7286 +7288 2 281.7878 412.6225 30.3808 0.1144 7287 +7289 2 282.1379 411.5403 30.3859 0.1144 7288 +7290 2 282.6721 410.5301 30.3932 0.1144 7289 +7291 2 283.2647 409.5509 30.4032 0.1144 7290 +7292 2 283.7681 408.5316 30.4175 0.1144 7291 +7293 2 284.2771 407.534 30.4371 0.1144 7292 +7294 2 285.1008 406.7469 30.4651 0.1144 7293 +7295 2 286.032 406.0845 30.5052 0.1144 7294 +7296 2 286.9449 405.4039 30.5586 0.1144 7295 +7297 2 287.7171 404.5642 30.6261 0.1144 7296 +7298 2 288.4344 403.6833 30.7348 0.1144 7297 +7299 2 289.2158 402.8745 30.9179 0.1144 7298 +7300 2 290.139 402.2487 31.1284 0.1144 7299 +7301 2 291.2029 401.8311 31.3144 0.1144 7300 +7302 2 292.125 401.218 31.4591 0.1144 7301 +7303 2 292.7782 400.2993 31.603 0.1144 7302 +7304 2 293.317 399.304 31.7349 0.1144 7303 +7305 2 293.8753 398.3065 31.8049 0.1144 7304 +7306 2 294.3867 397.2872 31.8287 0.1144 7305 +7307 2 295.0307 396.3685 31.8184 0.1144 7306 +7308 2 295.9745 395.7542 31.7803 0.1144 7307 +7309 2 296.9241 395.2303 31.6268 0.1144 7308 +7310 2 297.8175 394.5873 31.4286 0.1144 7309 +7311 2 298.4845 393.687 31.2838 0.1144 7310 +7312 2 298.9146 392.63 31.1898 0.1144 7311 +7313 2 299.2235 391.5294 31.1461 0.1144 7312 +7314 2 299.6559 390.4952 31.1965 0.1144 7313 +7315 2 300.6215 390.1177 31.285 0.1144 7314 +7316 2 301.698 390.4197 31.362 0.1144 7315 +7317 2 302.8179 390.4255 31.416 0.1144 7316 +7318 2 303.6668 389.7356 31.4482 0.1144 7317 +7319 2 304.7319 389.3901 31.46 0.1144 7318 +7320 2 305.8392 389.103 31.453 0.1144 7319 +7321 2 306.9741 388.9817 31.4364 0.1144 7320 +7322 2 308.1158 389.0378 31.4135 0.1144 7321 +7323 2 309.2301 388.8101 31.3838 0.1144 7322 +7324 2 309.9622 387.9659 31.3477 0.1144 7323 +7325 2 311.0513 387.721 31.2794 0.1144 7324 +7326 2 312.1839 387.6753 31.1632 0.1144 7325 +7327 2 313.3107 387.4831 31.068 0.1144 7326 +7328 2 314.4387 387.355 30.994 0.1144 7327 +7329 2 315.4637 387.8583 30.9386 0.1144 7328 +7330 2 316.5906 388.0459 30.898 0.1144 7329 +7331 2 317.7346 388.0414 30.87 0.1144 7330 +7332 2 318.866 388.0265 30.8482 0.1144 7331 +7333 2 319.859 388.5882 30.8216 0.1144 7332 +7334 2 320.7101 389.3352 30.7636 0.1144 7333 +7335 2 321.7763 389.643 30.6737 0.1144 7334 +7336 2 322.8997 389.4405 30.6163 0.1144 7335 +7337 2 323.998 389.1282 30.592 0.1144 7336 +7338 2 325.1294 388.9543 30.6009 0.1144 7337 +7339 2 326.2585 388.8193 30.6558 0.1144 7338 +7340 2 327.3865 388.8982 30.7894 0.1144 7339 +7341 2 328.5145 389.0115 30.9364 0.1144 7340 +7342 2 329.6459 388.9245 31.0904 0.1144 7341 +7343 2 330.7682 388.9554 31.2878 0.1144 7342 +7344 2 331.8675 388.9623 31.4558 0.1144 7343 +7345 2 332.8662 389.5217 31.5949 0.1144 7344 +7346 2 333.7917 390.1692 31.736 0.1144 7345 +7347 2 334.6703 390.8236 31.9124 0.1144 7346 +7348 2 335.7709 391.137 32.0608 0.1144 7347 +7349 2 336.8668 391.4631 32.1894 0.1144 7348 +7350 2 337.9593 391.5981 32.3117 0.1144 7349 +7351 2 338.9546 391.0993 32.4612 0.1144 7350 +7352 2 339.9236 390.7012 32.6953 0.1144 7351 +7353 2 340.9818 390.3534 32.9218 0.1144 7352 +7354 2 341.9416 389.7368 33.1078 0.1144 7353 +7355 2 342.7596 388.9508 33.292 0.1144 7354 +7356 2 343.0353 387.8755 33.4664 0.1144 7355 +7357 2 343.8155 387.0873 33.5885 0.1144 7356 +7358 2 344.876 386.6594 33.6622 0.1144 7357 +7359 2 345.4788 385.6847 33.9783 0.1144 7358 +7360 2 345.6996 384.5659 34.0539 0.1144 7359 +7361 2 345.7271 383.4219 34.1001 0.1144 7360 +7362 2 345.7294 382.2779 34.118 0.1144 7361 +7363 2 345.7397 381.135 34.0981 0.1144 7362 +7364 2 345.7568 380.0071 33.9956 0.1144 7363 +7365 2 345.536 378.8848 33.9007 0.1144 7364 +7366 2 344.9709 377.8907 33.8285 0.1144 7365 +7367 2 344.5339 376.8336 33.7417 0.1144 7366 +7368 2 346.0451 386.6034 33.7375 0.1144 7358 +7369 2 347.1525 386.8733 33.7495 0.1144 7368 +7370 2 348.2473 387.2062 33.754 0.1144 7369 +7371 2 349.3318 387.5712 33.7588 0.1144 7370 +7372 2 350.2928 388.1638 33.7658 0.1144 7371 +7373 2 350.8637 389.1156 33.7756 0.1144 7372 +7374 2 351.5958 389.9621 33.7887 0.1144 7373 +7375 2 352.4698 390.6989 33.8069 0.1144 7374 +7376 2 353.5006 391.1668 33.8335 0.1144 7375 +7377 2 354.449 391.7857 33.8722 0.1144 7376 +7378 2 355.1845 392.6517 33.924 0.1144 7377 +7379 2 355.9156 393.5314 33.9889 0.1144 7378 +7380 2 356.7827 394.2704 34.0659 0.1144 7379 +7381 2 357.5538 395.0095 34.277 0.1144 7380 +7382 2 358.2665 395.8743 34.4918 0.1144 7381 +7383 2 359.1371 396.6065 34.6626 0.1144 7382 +7384 2 360.0706 397.2677 34.7914 0.1144 7383 +7385 2 361.0327 397.8855 34.8796 0.1144 7384 +7386 2 361.9948 398.501 34.9499 0.1144 7385 +7387 2 363.0324 398.9517 35.0224 0.1144 7386 +7388 2 364.1512 399.1508 35.0599 0.1144 7387 +7389 2 365.1339 399.7022 35.0501 0.1144 7388 +7390 2 366.064 400.368 34.9894 0.1144 7389 +7391 2 367.0112 401.0086 34.8824 0.1144 7390 +7392 2 367.8944 401.7076 34.6752 0.1144 7391 +7393 2 368.6437 402.4615 34.3188 0.1144 7392 +7394 2 369.3724 403.2222 33.8638 0.1144 7393 +7395 2 370.1595 403.9922 33.4121 0.1144 7394 +7396 2 370.8768 404.7266 33.2475 0.1144 7395 +7397 2 371.649 405.5354 33.2335 0.1144 7396 +7398 2 372.5528 406.1966 33.1946 0.1144 7397 +7399 2 373.6064 406.6314 33.1974 0.1144 7398 +7400 2 374.7435 406.6874 33.2203 0.1144 7399 +7401 2 375.8875 406.6897 33.2343 0.1144 7400 +7402 2 376.908 407.1851 33.2237 0.1144 7401 +7403 2 377.6538 408.0534 33.2184 0.1144 7402 +7404 2 378.5588 408.7523 33.2326 0.1144 7403 +7405 2 379.3996 409.528 33.2548 0.1144 7404 +7406 2 380.1363 410.4031 33.2833 0.1144 7405 +7407 2 380.9966 411.157 33.3183 0.1144 7406 +7408 2 381.135 411.3046 33.3794 0.1144 7407 +7409 2 381.8901 412.1466 33.4911 0.1144 7408 +7410 2 382.7138 412.9371 33.5896 0.1144 7409 +7411 2 383.5466 413.7219 33.6669 0.1144 7410 +7412 2 384.273 414.6028 33.7252 0.1144 7411 +7413 2 384.6906 415.6575 33.7669 0.1144 7412 +7414 2 385.1368 416.71 33.7966 0.1144 7413 +7415 2 385.711 417.6984 33.8212 0.1144 7414 +7416 2 386.1297 418.7601 33.8528 0.1144 7415 +7417 2 386.6285 419.7885 33.8932 0.1144 7416 +7418 2 387.085 420.8376 33.9416 0.1144 7417 +7419 2 387.5529 421.8592 34.0684 0.1144 7418 +7420 2 388.086 422.867 34.1942 0.1144 7419 +7421 2 388.8284 423.7307 34.3048 0.1144 7420 +7422 2 389.7654 424.3805 34.4022 0.1144 7421 +7423 2 390.6531 425.1001 34.4887 0.1144 7422 +7424 2 391.6175 425.671 34.6374 0.1144 7423 +7425 2 392.5247 426.3608 34.7648 0.1144 7424 +7426 2 393.6012 426.7246 34.8785 0.1144 7425 +7427 2 394.7223 426.5393 34.9835 0.1144 7426 +7428 2 395.8114 426.1915 35.0829 0.1144 7427 +7429 2 396.9222 425.9192 35.1775 0.1144 7428 +7430 2 398.0445 425.9146 35.3424 0.1144 7429 +7431 2 399.1599 425.8746 35.5796 0.1144 7430 +7432 2 400.2982 425.7648 35.775 0.1144 7431 +7433 2 401.4422 425.7362 35.9293 0.1144 7432 +7434 2 402.5736 425.902 36.0436 0.1144 7433 +7435 2 403.6776 426.1091 36.1959 0.1144 7434 +7436 2 404.8216 426.0885 36.2894 0.1144 7435 +7437 2 405.9633 426.1572 36.3331 0.1144 7436 +7438 2 407.0821 426.4237 36.3054 0.1144 7437 +7439 2 408.2192 426.5267 36.2376 0.1144 7438 +7440 2 409.3278 426.7978 36.143 0.1144 7439 +7441 2 410.3963 426.9637 35.9257 0.1144 7440 +7442 2 411.3801 426.8596 35.5606 0.1144 7441 +7443 2 412.4154 426.3734 35.3203 0.1144 7442 +7444 2 412.7014 426.3596 35.208 0.1144 7443 +7445 2 413.826 426.3173 35.2747 0.1144 7444 +7446 2 414.8705 426.0862 35.5552 0.1144 7445 +7447 2 415.8806 425.6252 35.9464 0.1144 7446 +7448 2 416.9834 425.4971 36.3572 0.1144 7447 +7449 2 418.0153 425.6938 36.8382 0.1144 7448 +7450 2 419.0792 425.4147 37.2352 0.1144 7449 +7451 2 420.2129 425.3472 37.529 0.1144 7450 +7452 2 421.3558 425.3346 37.7381 0.1144 7451 +7453 2 422.4986 425.3232 37.8893 0.1144 7452 +7454 2 423.6426 425.3117 37.9982 0.1144 7453 +7455 2 424.7855 425.2992 38.0733 0.1144 7454 +7456 2 425.9272 425.2385 38.1363 0.1144 7455 +7457 2 427.0655 425.1196 38.1816 0.1144 7456 +7458 2 428.0791 424.6139 38.2108 0.1144 7457 +7459 2 429.1213 424.1437 38.227 0.1144 7458 +7460 2 430.2401 424.2741 38.2343 0.1144 7459 +7461 2 431.2937 424.7157 38.236 0.1144 7460 +7462 2 432.4228 424.8747 38.2346 0.1144 7461 +7463 2 433.56 424.9994 38.232 0.1144 7462 +7464 2 434.6353 425.3838 38.2284 0.1144 7463 +7465 2 435.7507 425.6378 38.2242 0.1144 7464 +7466 2 436.849 425.3358 38.2169 0.1144 7465 +7467 2 437.7424 424.6242 38.2063 0.1144 7466 +7468 2 438.5261 423.7914 38.1928 0.1144 7467 +7469 2 439.3738 423.0226 38.1786 0.1144 7468 +7470 2 440.0693 422.1154 38.166 0.1144 7469 +7471 2 440.9456 421.4176 38.0794 0.1144 7470 +7472 2 441.4536 420.3045 38.0293 0.1144 7471 +7473 2 441.9295 419.2634 38.0741 0.1144 7472 +7474 2 442.4042 418.2235 38.162 0.1144 7473 +7475 2 442.9248 417.266 38.3544 0.1144 7474 +7476 2 443.2531 416.2844 38.652 0.1144 7475 +7477 2 443.4281 415.3338 39.0513 0.1144 7476 +7478 2 443.9132 414.4723 39.4534 0.1144 7477 +7479 2 444.253 413.4919 39.5847 0.1144 7478 +7480 2 444.7758 412.5779 39.5993 0.1144 7479 +7481 2 445.2265 411.5506 39.5492 0.1144 7480 +7482 2 445.8488 411.8858 39.3896 0.1144 7481 +7483 2 446.557 412.7644 39.1194 0.1144 7482 +7484 2 446.9654 413.7482 38.719 0.1144 7483 +7485 2 447.0718 414.8693 38.3412 0.1144 7484 +7486 2 446.9459 415.9984 37.9898 0.1144 7485 +7487 2 446.6851 417.107 37.6737 0.1144 7486 +7488 2 446.4529 418.2189 37.3976 0.1144 7487 +7489 2 446.6565 419.3446 37.1991 0.1144 7488 +7490 2 447.0683 420.412 37.0563 0.1144 7489 +7491 2 447.256 421.3249 37.011 0.1144 7490 +7492 2 446.2778 421.8809 36.927 0.1144 7491 +7493 2 445.6372 422.7217 36.7002 0.1144 7492 +7494 2 445.1693 423.5008 36.3334 0.1144 7493 +7495 2 444.2266 424.1288 36.0662 0.1144 7494 +7496 2 443.2588 424.5922 35.7767 0.1144 7495 +7497 2 442.1754 424.6059 35.4654 0.1144 7496 +7498 2 441.131 424.2478 35.2666 0.1144 7497 +7499 2 440.194 423.5923 35.1708 0.1144 7498 +7500 2 439.2617 422.9299 35.1498 0.1144 7499 +7501 2 438.3945 422.1886 35.1705 0.1144 7500 +7502 2 437.5422 421.4725 35.2962 0.1144 7501 +7503 2 436.6476 420.8135 35.5102 0.1144 7502 +7504 2 435.8274 420.0276 35.7031 0.1144 7503 +7505 2 435.2462 419.0609 35.8543 0.1144 7504 +7506 2 434.9705 417.9593 35.9691 0.1144 7505 +7507 2 434.6548 416.8702 36.0517 0.1144 7506 +7508 2 434.1949 415.8223 36.1063 0.1144 7507 +7509 2 433.6927 414.795 36.1525 0.1144 7508 +7510 2 433.2122 413.7688 36.2435 0.1144 7509 +7511 2 432.7683 412.7232 36.349 0.1144 7510 +7512 2 432.2741 411.6924 36.4314 0.1144 7511 +7513 2 431.7376 410.6823 36.4918 0.1144 7512 +7514 2 431.1221 409.7202 36.5322 0.1144 7513 +7515 2 430.4277 408.8118 36.5543 0.1144 7514 +7516 2 429.6441 407.9801 36.563 0.1144 7515 +7517 2 428.7632 407.2548 36.5691 0.1144 7516 +7518 2 427.8629 406.549 36.5739 0.1144 7517 +7519 2 426.9522 405.8569 36.5691 0.1144 7518 +7520 2 426.092 405.111 36.5736 0.1144 7519 +7521 2 425.3724 404.2782 36.6472 0.1144 7520 +7522 2 424.4206 403.7656 36.7027 0.1144 7521 +7523 2 423.455 403.4442 36.5408 0.1144 7522 +7524 2 422.4575 403.109 36.2166 0.1144 7523 +7525 2 421.4302 402.6319 35.9117 0.1144 7524 +7526 2 420.412 402.1103 35.6544 0.1144 7525 +7527 2 419.3355 401.7305 35.4466 0.1144 7526 +7528 2 418.4558 401.0189 35.2926 0.1144 7527 +7529 2 417.4067 400.6425 35.1417 0.1144 7528 +7530 2 416.3943 400.1197 35.0358 0.1144 7529 +7531 2 415.4013 399.5534 34.9563 0.1144 7530 +7532 2 414.3088 399.2274 34.897 0.1144 7531 +7533 2 413.1934 398.9711 34.8547 0.1144 7532 +7534 2 412.2038 398.4106 34.8272 0.1144 7533 +7535 2 411.141 397.9919 34.8093 0.1144 7534 +7536 2 410.0885 398.3934 34.7861 0.1144 7535 +7537 2 410.0576 398.525 35.2089 0.1144 7536 +7538 2 409.9112 399.4516 36.1057 0.1144 7537 +7539 2 409.2431 400.066 36.4633 0.1144 7538 +7540 2 408.1506 400.3943 36.7503 0.1144 7539 +7541 2 407.2022 400.9983 36.9684 0.1144 7540 +7542 2 406.1761 401.1493 37.1238 0.1144 7541 +7543 2 405.0469 401.1756 37.2235 0.1144 7542 +7544 2 403.9853 401.5646 37.2817 0.1144 7543 +7545 2 402.9591 402.0439 37.3789 0.1144 7544 +7546 2 401.9135 402.4947 37.4814 0.1144 7545 +7547 2 400.8141 402.7944 37.5603 0.1144 7546 +7548 2 399.709 403.0838 37.6177 0.1144 7547 +7549 2 398.5925 403.3298 37.655 0.1144 7548 +7550 2 397.4828 403.6032 37.6737 0.1144 7549 +7551 2 396.364 403.8377 37.6782 0.1144 7550 +7552 2 395.4133 404.4154 37.6782 0.1144 7551 +7553 2 394.6056 405.222 37.6782 0.1144 7552 +7554 2 393.7625 405.9953 37.6782 0.1144 7553 +7555 2 393.4559 407.0466 37.6782 0.1144 7554 +7556 2 392.6414 407.7502 37.6782 0.1144 7555 +7557 2 391.5409 408.0282 37.6782 0.1144 7556 +7558 2 390.4117 408.2124 37.6782 0.1144 7557 +7559 2 389.4885 408.8645 37.6782 0.1144 7558 +7560 2 388.6923 409.6847 37.6782 0.1144 7559 +7561 2 387.6776 410.1995 37.6782 0.1144 7560 +7562 2 386.6011 410.5816 37.6782 0.1144 7561 +7563 2 385.6218 411.1708 37.6782 0.1144 7562 +7564 2 384.8519 412.0127 37.6782 0.1144 7563 +7565 2 409.1688 397.8866 34.7536 0.1144 7536 +7566 2 408.1437 397.3821 34.7094 0.1144 7565 +7567 2 407.1599 396.7987 34.6531 0.1144 7566 +7568 2 406.1806 396.221 34.5638 0.1144 7567 +7569 2 405.1545 395.7737 34.4134 0.1144 7568 +7570 2 404.0528 395.5014 34.2558 0.1144 7569 +7571 2 403.0015 395.109 34.0726 0.1144 7570 +7572 2 401.9295 394.7498 33.9343 0.1144 7571 +7573 2 400.8107 394.5198 33.8383 0.1144 7572 +7574 2 399.7628 394.0863 33.7803 0.1144 7573 +7575 2 398.7504 393.5612 33.7532 0.1144 7574 +7576 2 397.6613 393.2306 33.7431 0.1144 7575 +7577 2 396.5424 392.9972 33.7434 0.1144 7576 +7578 2 395.4202 392.7855 33.7442 0.1144 7577 +7579 2 394.2888 392.6208 33.745 0.1144 7578 +7580 2 393.1562 392.4606 33.7464 0.1144 7579 +7581 2 392.0316 392.2662 33.7484 0.1144 7580 +7582 2 391.0203 391.7845 33.7512 0.1144 7581 +7583 2 390.0674 391.1576 33.7551 0.1144 7582 +7584 2 389.0046 390.7732 33.7604 0.1144 7583 +7585 2 387.8824 390.5513 33.7677 0.1144 7584 +7586 2 386.7521 390.4964 33.7781 0.1144 7585 +7587 2 385.6321 390.7092 33.7932 0.1144 7586 +7588 2 384.5087 390.8087 33.8142 0.1144 7587 +7589 2 383.4425 390.4724 33.8408 0.1144 7588 +7590 2 382.4095 389.9816 33.8724 0.1144 7589 +7591 2 381.3593 389.5492 33.9444 0.1144 7590 +7592 2 380.2553 389.3993 34.0424 0.1144 7591 +7593 2 379.133 389.5823 34.1242 0.1144 7592 +7594 2 378.0188 389.8397 34.1796 0.1144 7593 +7595 2 376.9125 389.7414 34.2087 0.1144 7594 +7596 2 375.8154 389.4153 34.2129 0.1144 7595 +7597 2 374.6909 389.3924 34.1936 0.1144 7596 +7598 2 373.5881 389.1796 34.1603 0.1144 7597 +7599 2 372.5024 388.8559 34.0766 0.1144 7598 +7600 2 371.3744 388.7621 33.9741 0.1144 7599 +7601 2 370.2545 388.5596 33.889 0.1144 7600 +7602 2 369.1242 388.5928 33.8268 0.1144 7601 +7603 2 367.9825 388.6523 33.7862 0.1144 7602 +7604 2 366.8911 388.3617 33.7658 0.1144 7603 +7605 2 365.9313 387.7519 33.7638 0.1144 7604 +7606 2 365.0012 387.0861 33.7708 0.1144 7605 +7607 2 363.9911 386.5542 33.7826 0.1144 7606 +7608 2 362.8837 386.7063 33.7999 0.1144 7607 +7609 2 361.7522 386.5908 33.8232 0.1144 7608 +7610 2 360.7467 386.06 33.8528 0.1144 7609 +7611 2 360.0042 385.1962 33.8884 0.1144 7610 +7612 2 358.9163 384.9263 33.9718 0.1144 7611 +7613 2 357.778 384.9171 34.0802 0.1144 7612 +7614 2 356.6351 384.8645 34.1662 0.1144 7613 +7615 2 355.5335 384.5579 34.2297 0.1144 7614 +7616 2 354.4089 384.3531 34.2726 0.1144 7615 +7617 2 353.2729 384.2124 34.2966 0.1144 7616 +7618 2 352.1701 383.9092 34.3042 0.1144 7617 +7619 2 440.6402 422.0971 37.6782 0.1144 7471 +7620 2 440.1712 423.1404 37.7283 0.1144 7619 +7621 2 439.7021 424.1838 37.7482 0.1144 7620 +7622 2 439.2331 425.2271 37.7765 0.1144 7621 +7623 2 438.764 426.2704 37.816 0.1144 7622 +7624 2 438.295 427.3137 37.8697 0.1144 7623 +7625 2 437.826 428.3571 37.9428 0.1144 7624 +7626 2 438.7057 428.4818 38.0556 0.1144 7625 +7627 2 439.8371 428.6419 38.2141 0.1144 7626 +7628 2 440.9685 428.8021 38.4166 0.1144 7627 +7629 2 442.1011 428.9622 38.6585 0.1144 7628 +7630 2 443.189 428.7655 38.9973 0.1144 7629 +7631 2 444.174 428.3136 39.4439 0.1144 7630 +7632 2 445.1487 427.8411 39.9568 0.1144 7631 +7633 2 445.9678 427.0941 40.4572 0.1144 7632 +7634 2 446.5593 426.1263 40.8744 0.1144 7633 +7635 2 447.3498 425.3037 41.1799 0.1144 7634 +7636 2 448.3656 424.7809 41.3619 0.1144 7635 +7637 2 449.4456 424.4046 41.4431 0.1144 7636 +7638 2 450.5369 424.0636 41.4492 0.1144 7637 +7639 2 451.5357 423.5077 41.4061 0.1144 7638 +7640 2 452.3399 422.6931 41.3322 0.1144 7639 +7641 2 453.1441 421.8797 41.2378 0.1144 7640 +7642 2 453.779 420.8204 40.7641 0.1144 7641 +7643 2 454.7194 420.2187 40.4914 0.1144 7642 +7644 2 455.7696 420.4131 40.2937 0.1144 7643 +7645 2 456.7775 420.9508 40.1685 0.1144 7644 +7646 2 457.6721 421.6578 40.1134 0.1144 7645 +7647 2 458.6319 422.2756 40.1232 0.1144 7646 +7648 2 459.5917 422.8968 40.1853 0.1144 7647 +7649 2 460.4886 423.5957 40.3071 0.1144 7648 +7650 2 461.4084 424.2673 40.4793 0.1144 7649 +7651 2 462.4528 424.7146 40.6596 0.1144 7650 +7652 2 463.4538 425.2603 40.838 0.1144 7651 +7653 2 464.4068 425.8609 41.078 0.1144 7652 +7654 2 465.3803 426.2498 41.4484 0.1144 7653 +7655 2 466.4145 426.7017 41.7707 0.1144 7654 +7656 2 467.5276 426.9465 42.0216 0.1144 7655 +7657 2 468.6259 427.2646 42.222 0.1144 7656 +7658 2 469.7481 427.3435 42.4287 0.1144 7657 +7659 2 470.8864 427.4259 42.572 0.1144 7658 +7660 2 472.0293 427.4041 42.6577 0.1144 7659 +7661 2 473.1698 427.4876 42.7165 0.1144 7660 +7662 2 474.3047 427.6318 42.754 0.1144 7661 +7663 2 475.3926 427.9681 42.7966 0.1144 7662 +7664 2 476.3113 428.6259 42.8646 0.1144 7663 +7665 2 476.6121 429.6853 42.8249 0.1144 7664 +7666 2 477.1933 428.8799 42.7395 0.1144 7665 +7667 2 477.8774 427.9635 42.3727 0.1144 7666 +7668 2 478.6713 427.2325 42.1515 0.1144 7667 +7669 2 479.495 426.4569 41.911 0.1144 7668 +7670 2 480.1894 425.5508 41.7038 0.1144 7669 +7671 2 480.8381 424.6082 41.5324 0.1144 7670 +7672 2 481.2099 423.5546 41.3129 0.1144 7671 +7673 2 481.6171 422.4872 41.1384 0.1144 7672 +7674 2 482.3813 421.6429 41.0138 0.1144 7673 +7675 2 483.3938 421.1201 40.9156 0.1144 7674 +7676 2 484.492 420.801 40.8296 0.1144 7675 +7677 2 485.5983 420.6076 40.4902 0.1144 7676 +7678 2 475.9635 430.3248 42.7829 0.1144 7665 +7679 2 475.0998 431.0741 42.7384 0.1144 7678 +7680 2 474.2578 431.8486 42.6902 0.1144 7679 +7681 2 473.4341 432.6414 42.6334 0.1144 7680 +7682 2 472.6699 433.4902 42.5656 0.1144 7681 +7683 2 471.9309 434.3631 42.4956 0.1144 7682 +7684 2 471.193 435.2359 42.4127 0.1144 7683 +7685 2 470.454 436.1077 42.3209 0.1144 7684 +7686 2 469.715 436.9805 42.2232 0.1144 7685 +7687 2 468.9771 437.8534 42.1235 0.1144 7686 +7688 2 468.2381 438.7263 42.0238 0.1144 7687 +7689 2 467.5002 439.5992 41.9244 0.1144 7688 +7690 2 466.7612 440.472 41.8258 0.1144 7689 +7691 2 466.0233 441.3449 41.7284 0.1144 7690 +7692 2 465.2842 442.2178 41.6324 0.1144 7691 +7693 2 464.5452 443.0895 41.5386 0.1144 7692 +7694 2 463.8073 443.9624 41.4476 0.1144 7693 +7695 2 463.0683 444.8352 41.3608 0.1144 7694 +7696 2 462.3304 445.7081 41.2793 0.1144 7695 +7697 2 461.5914 446.581 41.2042 0.1144 7696 +7698 2 460.9199 447.5053 41.1438 0.1144 7697 +7699 2 460.301 448.4663 41.102 0.1144 7698 +7700 2 459.7084 449.4456 41.076 0.1144 7699 +7701 2 459.0552 450.3825 41.062 0.1144 7700 +7702 2 458.5141 451.3858 41.0561 0.1144 7701 +7703 2 458.2532 452.4909 41.055 0.1144 7702 +7704 2 458.0141 453.6086 41.0556 0.1144 7703 +7705 2 457.2408 454.3636 41.057 0.1144 7704 +7706 2 456.4217 455.1541 41.0586 0.1144 7705 +7707 2 455.7261 456.0602 41.0609 0.1144 7706 +7708 2 455.1312 457.036 41.0642 0.1144 7707 +7709 2 454.6027 458.0507 41.0698 0.1144 7708 +7710 2 454.2881 459.1444 41.0771 0.1144 7709 +7711 2 453.9152 460.2243 41.0847 0.1144 7710 +7712 2 453.5663 461.3134 41.0894 0.1144 7711 +7713 2 453.0892 462.343 41.123 0.1144 7712 +7714 2 452.5058 463.3211 41.1695 0.1144 7713 +7715 2 451.6535 464.0647 41.183 0.1144 7714 +7716 2 450.6399 464.5841 41.1342 0.1144 7715 +7717 2 449.5851 464.9971 41.0043 0.1144 7716 +7718 2 448.4583 465.1069 40.8212 0.1144 7717 +7719 2 447.4619 465.5416 40.5348 0.1144 7718 +7720 2 446.4735 466.1102 40.2993 0.1144 7719 +7721 2 445.397 466.4935 40.1274 0.1144 7720 +7722 2 444.2552 466.5049 40.0156 0.1144 7721 +7723 2 443.1604 466.1789 39.9543 0.1144 7722 +7724 2 442.3756 465.3517 39.9277 0.1144 7723 +7725 2 453.3546 421.7596 41.6147 0.1144 7641 +7726 2 454.3476 421.1911 41.6226 0.1144 7725 +7727 2 455.3395 420.6213 41.6256 0.1144 7726 +7728 2 456.3324 420.0528 41.6304 0.1144 7727 +7729 2 457.3197 419.4762 41.6363 0.1144 7728 +7730 2 458.2418 418.8001 41.6438 0.1144 7729 +7731 2 459.0849 418.0268 41.6567 0.1144 7730 +7732 2 459.9315 417.258 41.6769 0.1144 7731 +7733 2 460.8146 416.5315 41.7004 0.1144 7732 +7734 2 461.6978 415.8154 41.7169 0.1144 7733 +7735 2 462.3156 414.8933 41.7427 0.1144 7734 +7736 2 463.0649 414.1726 41.9126 0.1144 7735 +7737 2 463.6026 413.2162 42.0398 0.1144 7736 +7738 2 464.2718 412.6214 41.9297 0.1144 7737 +7739 2 465.2396 412.428 41.6377 0.1144 7738 +7740 2 466.3219 412.3365 41.4327 0.1144 7739 +7741 2 467.1089 411.7016 41.3778 0.1144 7740 +7742 2 467.8754 410.9305 41.4781 0.1144 7741 +7743 2 468.5103 410.0096 41.6648 0.1144 7742 +7744 2 469.0217 408.988 41.8678 0.1144 7743 +7745 2 470.0856 408.7157 42.1086 0.1144 7744 +7746 2 471.1816 408.9365 42.1772 0.1144 7745 +7747 2 437.771 428.8273 37.6631 0.1144 7625 +7748 2 437.6372 429.9644 37.6029 0.1144 7747 +7749 2 437.5045 431.1004 37.5771 0.1144 7748 +7750 2 437.3706 432.2364 37.5463 0.1144 7749 +7751 2 437.2379 433.3724 37.5119 0.1144 7750 +7752 2 437.1041 434.5084 37.4749 0.1144 7751 +7753 2 436.9714 435.6444 37.436 0.1144 7752 +7754 2 436.8375 436.7803 37.3962 0.1144 7753 +7755 2 436.7048 437.9163 37.3551 0.1144 7754 +7756 2 436.571 439.0523 37.3122 0.1144 7755 +7757 2 436.4383 440.1895 37.2669 0.1144 7756 +7758 2 436.3044 441.3255 37.2179 0.1144 7757 +7759 2 436.1717 442.4614 37.1636 0.1144 7758 +7760 2 436.0379 443.5974 37.1022 0.1144 7759 +7761 2 435.904 444.7334 37.0317 0.1144 7760 +7762 2 435.7713 445.8694 36.9505 0.1144 7761 +7763 2 436.5104 445.3466 36.8418 0.1144 7762 +7764 2 437.4416 444.6865 36.7041 0.1144 7763 +7765 2 438.3739 444.0264 36.5406 0.1144 7764 +7766 2 439.2777 443.3275 36.3541 0.1144 7765 +7767 2 440.1563 442.5999 36.1469 0.1144 7766 +7768 2 441.0349 441.8711 35.9215 0.1144 7767 +7769 2 441.9741 441.2271 35.6689 0.1144 7768 +7770 2 442.9705 440.6848 35.3811 0.1144 7769 +7771 2 443.9704 440.1471 35.0672 0.1144 7770 +7772 2 444.9462 439.574 34.7301 0.1144 7771 +7773 2 445.8591 438.9242 34.3638 0.1144 7772 +7774 2 446.7709 438.271 33.987 0.1144 7773 +7775 2 447.693 437.6155 33.6311 0.1144 7774 +7776 2 448.4183 436.7323 33.3634 0.1144 7775 +7777 2 449.155 435.856 33.171 0.1144 7776 +7778 2 450.0908 435.1982 33.0392 0.1144 7777 +7779 2 451.0266 434.545 32.9238 0.1144 7778 +7780 2 451.9589 433.8998 32.6169 0.1144 7779 +7781 2 436.5653 446.5272 36.7363 0.1144 7762 +7782 2 437.437 447.2491 36.2628 0.1144 7781 +7783 2 438.3087 447.9698 36.0542 0.1144 7782 +7784 2 439.2663 448.5647 35.812 0.1144 7783 +7785 2 439.9469 447.8245 35.6034 0.1144 7784 +7786 2 440.5533 446.8544 35.4351 0.1144 7785 +7787 2 441.6 446.5021 35.3016 0.1144 7786 +7788 2 442.6376 446.0273 35.1868 0.1144 7787 +7789 2 443.6661 445.5365 35.0496 0.1144 7788 +7790 2 444.6854 445.0274 34.8874 0.1144 7789 +7791 2 445.5674 444.3021 34.7304 0.1144 7790 +7792 2 446.4391 443.562 34.5722 0.1144 7791 +7793 2 447.2262 442.7509 34.3577 0.1144 7792 +7794 2 447.8371 441.8265 34.0704 0.1144 7793 +7795 2 448.496 440.893 33.8383 0.1144 7794 +7796 2 449.4856 440.329 33.6218 0.1144 7795 +7797 2 450.5049 439.8257 33.1794 0.1144 7796 +7798 2 412.7094 426.2338 34.0477 0.1144 7443 +7799 2 413.7825 425.8677 33.7187 0.1144 7798 +7800 2 414.8178 425.3838 33.5989 0.1144 7799 +7801 2 415.6301 424.5853 33.4774 0.1144 7800 +7802 2 416.2124 423.6358 33.2693 0.1144 7801 +7803 2 417.1653 423.0375 33.0285 0.1144 7802 +7804 2 417.7316 422.0525 32.814 0.1144 7803 +7805 2 418.1228 420.9771 32.6452 0.1144 7804 +7806 2 418.6251 419.951 32.4943 0.1144 7805 +7807 2 419.1273 418.9248 32.3646 0.1144 7806 +7808 2 419.6295 417.8986 32.2596 0.1144 7807 +7809 2 420.1317 416.8725 32.0547 0.1144 7808 +7810 2 405.5148 426.9214 36.7086 0.1144 7437 +7811 2 404.9382 427.9063 36.951 0.1144 7810 +7812 2 404.3605 428.8902 37.0625 0.1144 7811 +7813 2 403.6204 429.763 37.1706 0.1144 7812 +7814 2 402.8733 430.6291 37.2784 0.1144 7813 +7815 2 402.1263 431.4951 37.3895 0.1144 7814 +7816 2 401.528 431.733 37.5491 0.1144 7815 +7817 2 400.4092 431.7239 37.7418 0.1144 7816 +7818 2 399.6015 430.9585 37.9467 0.1144 7817 +7819 2 398.7709 430.1943 38.2066 0.1144 7818 +7820 2 397.6681 429.9632 38.4754 0.1144 7819 +7821 2 396.5539 430.176 38.7685 0.1144 7820 +7822 2 395.5746 430.7412 39.0835 0.1144 7821 +7823 2 394.632 431.383 39.389 0.1144 7822 +7824 2 393.6984 432.0442 39.6502 0.1144 7823 +7825 2 392.9228 432.821 39.9826 0.1144 7824 +7826 2 392.1689 433.6057 40.3704 0.1144 7825 +7827 2 391.2 434.2121 40.6613 0.1144 7826 +7828 2 390.3728 435.0026 41.0525 0.1144 7827 +7829 2 402.2464 431.59 36.3115 0.1144 7815 +7830 2 402.7017 432.019 34.435 0.1144 7829 +7831 2 402.9603 432.7432 33.574 0.1144 7830 +7832 2 402.1904 433.1939 32.7911 0.1144 7831 +7833 2 401.3655 433.9352 32.1992 0.1144 7832 +7834 2 400.7089 434.871 31.7831 0.1144 7833 +7835 2 400.424 435.9635 31.5207 0.1144 7834 +7836 2 400.074 437.0515 31.3967 0.1144 7835 +7837 2 399.2915 437.8797 31.3398 0.1144 7836 +7838 2 398.4575 438.6634 31.2967 0.1144 7837 +7839 2 397.5938 439.4024 31.2074 0.1144 7838 +7840 2 396.8456 440.2615 30.9299 0.1144 7839 +7841 2 381.0675 411.6844 32.6455 0.1144 7407 +7842 2 381.3135 412.7472 32.3456 0.1144 7841 +7843 2 381.7059 413.8226 32.2445 0.1144 7842 +7844 2 381.9175 414.9242 32.1689 0.1144 7843 +7845 2 381.858 416.0659 32.1138 0.1144 7844 +7846 2 381.7356 417.2031 32.0706 0.1144 7845 +7847 2 381.4142 418.2796 32.0516 0.1144 7846 +7848 2 380.658 418.871 32.132 0.1144 7847 +7849 2 380.2862 417.9421 32.1216 0.1144 7848 +7850 2 380.0425 416.8393 31.9743 0.1144 7849 +7851 2 379.8046 415.7365 31.7072 0.1144 7850 +7852 2 379.5666 414.6348 31.3412 0.1144 7851 +7853 2 379.3275 413.532 30.8977 0.1144 7852 +7854 2 378.7864 412.5653 30.3794 0.1144 7853 +7855 2 378.0382 411.7496 29.8206 0.1144 7854 +7856 2 377.488 410.8035 29.223 0.1144 7855 +7857 2 376.9766 409.8014 28.6566 0.1144 7856 +7858 2 376.4675 408.7958 28.133 0.1144 7857 +7859 2 375.9745 407.7765 27.6704 0.1144 7858 +7860 2 375.4894 406.8544 27.1638 0.1144 7859 +7861 2 374.7126 406.0148 26.4312 0.1144 7860 +7862 2 279.6634 418.7109 30.3677 0.1144 7282 +7863 2 280.28 419.6615 30.2991 0.1144 7862 +7864 2 280.8795 420.6351 30.2705 0.1144 7863 +7865 2 281.8095 421.2563 30.2322 0.1144 7864 +7866 2 282.7728 421.8706 30.1823 0.1144 7865 +7867 2 283.7303 422.4964 30.1196 0.1144 7866 +7868 2 284.7942 422.4128 29.9754 0.1144 7867 +7869 2 285.8158 422.8327 29.8222 0.1144 7868 +7870 2 286.8054 423.4047 29.6741 0.1144 7869 +7871 2 287.5513 424.2593 29.5302 0.1144 7870 +7872 2 288.4013 425.0029 29.3353 0.1144 7871 +7873 2 289.3405 425.6378 29.1133 0.1144 7872 +7874 2 290.2465 426.2819 28.838 0.1144 7873 +7875 2 290.8414 427.2474 28.5782 0.1144 7874 +7876 2 291.5026 428.1809 28.3847 0.1144 7875 +7877 2 292.1913 429.095 28.2548 0.1144 7876 +7878 2 292.7462 430.0948 28.1826 0.1144 7877 +7879 2 293.3799 431.0466 28.1537 0.1144 7878 +7880 2 293.714 432.1403 28.1551 0.1144 7879 +7881 2 294.6052 432.6551 28.1702 0.1144 7880 +7882 2 295.7251 432.837 28.1918 0.1144 7881 +7883 2 296.7696 433.2934 28.2206 0.1144 7882 +7884 2 297.7569 433.87 28.2565 0.1144 7883 +7885 2 298.854 434.1823 28.3038 0.1144 7884 +7886 2 299.8721 434.6548 28.427 0.1144 7885 +7887 2 300.6352 435.5014 28.5326 0.1144 7886 +7888 2 301.5813 436.1408 28.6177 0.1144 7887 +7889 2 302.1418 437.1361 28.6868 0.1144 7888 +7890 2 302.8282 438.0513 28.7431 0.1144 7889 +7891 2 303.6554 438.8418 28.7893 0.1144 7890 +7892 2 303.6416 439.3017 28.6804 0.1144 7891 +7893 2 303.7343 440.4274 29.8346 0.1144 7892 +7894 2 303.8029 441.4227 30.3657 0.1144 7893 +7895 2 303.7251 442.2475 31.122 0.1144 7894 +7896 2 303.9105 443.2897 31.8674 0.1144 7895 +7897 2 304.1484 444.4085 32.4321 0.1144 7896 +7898 2 304.058 445.548 32.8266 0.1144 7897 +7899 2 303.6874 446.6302 33.1794 0.1144 7898 +7900 2 304.2537 439.1072 28.8288 0.1144 7891 +7901 2 305.321 439.5202 28.875 0.1144 7900 +7902 2 306.4284 439.6884 29.0094 0.1144 7901 +7903 2 307.593 439.9813 29.2258 0.1144 7902 +7904 2 308.6478 440.4251 29.3076 0.1144 7903 +7905 2 309.7231 440.8084 29.37 0.1144 7904 +7906 2 310.6658 441.4078 29.4812 0.1144 7905 +7907 2 311.3876 442.259 29.6173 0.1144 7906 +7908 2 312.2113 443.0289 29.7063 0.1144 7907 +7909 2 313.0602 443.7576 29.6184 0.1144 7908 +7910 2 313.7237 444.6556 29.4109 0.1144 7909 +7911 2 314.0612 445.7436 29.1197 0.1144 7910 +7912 2 314.4993 446.7606 28.6818 0.1144 7911 +7913 2 315.3139 447.4092 28.1355 0.1144 7912 +7914 2 316.3789 447.6758 27.518 0.1144 7913 +7915 2 317.3696 448.0659 26.8114 0.1144 7914 +7916 2 318.3592 448.1757 25.9696 0.1144 7915 +7917 2 319.327 448.4869 25.1037 0.1144 7916 +7918 2 320.3086 448.9891 24.2837 0.1144 7917 +7919 2 321.2192 449.3186 23.4106 0.1144 7918 +7920 2 322.0657 449.8723 22.6174 0.1144 7919 +7921 2 322.9924 450.5266 21.9947 0.1144 7920 +7922 2 323.8744 451.2325 21.4926 0.1144 7921 +7923 2 323.8756 452.0825 20.9824 0.1144 7922 +7924 2 323.7543 453.1235 20.5108 0.1144 7923 +7925 2 323.8767 454.2584 20.1736 0.1144 7924 +7926 2 323.855 455.3978 19.9446 0.1144 7925 +7927 2 323.5598 456.4949 19.7962 0.1144 7926 +7928 2 323.0324 457.505 19.7168 0.1144 7927 +7929 2 322.4513 458.4912 19.6918 0.1144 7928 +7930 2 321.7912 459.4235 19.6912 0.1144 7929 +7931 2 321.0865 460.325 19.6946 0.1144 7930 +7932 2 320.1267 460.9222 19.6995 0.1144 7931 +7933 2 319.2435 461.644 19.7062 0.1144 7932 +7934 2 318.4278 462.446 19.7157 0.1144 7933 +7935 2 317.7334 463.3532 19.7285 0.1144 7934 +7936 2 317.1305 464.3244 19.7465 0.1144 7935 +7937 2 316.483 465.2671 19.7734 0.1144 7936 +7938 2 315.7371 466.1331 19.8109 0.1144 7937 +7939 2 315.0256 467.0288 19.8589 0.1144 7938 +7940 2 314.4456 468.0138 19.9157 0.1144 7939 +7941 2 313.845 468.9782 20.0219 0.1144 7940 +7942 2 313.3725 469.9666 20.227 0.1144 7941 +7943 2 312.9389 471.0237 20.3813 0.1144 7942 +7944 2 312.1427 471.8417 20.4769 0.1144 7943 +7945 2 311.5112 472.7958 20.5157 0.1144 7944 +7946 2 310.8671 473.7407 20.5014 0.1144 7945 +7947 2 309.8272 474.3699 20.1902 0.1144 7946 +7948 2 308.8022 474.8527 19.9696 0.1144 7947 +7949 2 307.7692 475.3457 19.7878 0.1144 7948 +7950 2 306.8059 475.9589 19.6416 0.1144 7949 +7951 2 306.2042 476.9004 19.5258 0.1144 7950 +7952 2 306.2236 477.8351 19.3607 0.1144 7951 +7953 2 305.0922 477.8499 19.2442 0.1144 7952 +7954 2 304.1015 478.3659 19.1492 0.1144 7953 +7955 2 303.6084 479.336 19.067 0.1144 7954 +7956 2 303.716 480.472 18.9931 0.1144 7955 +7957 2 303.5329 481.5622 18.9241 0.1144 7956 +7958 2 302.7699 482.4008 18.8499 0.1144 7957 +7959 2 301.8558 483.078 18.7289 0.1144 7958 +7960 2 300.8834 483.6329 18.553 0.1144 7959 +7961 2 299.8012 483.9772 18.3605 0.1144 7960 +7962 2 298.759 484.4257 18.196 0.1144 7961 +7963 2 297.7363 484.937 18.0761 0.1144 7962 +7964 2 296.6495 485.2631 17.9802 0.1144 7963 +7965 2 295.5879 485.6486 17.8851 0.1144 7964 +7966 2 294.556 486.1348 17.8307 0.1144 7965 +7967 2 293.5847 486.7022 17.8804 0.1144 7966 +7968 2 292.8388 487.5511 17.9565 0.1144 7967 +7969 2 292.4705 488.6196 18.0354 0.1144 7968 +7970 2 292.1261 489.7098 18.1278 0.1144 7969 +7971 2 291.6937 490.7531 18.2738 0.1144 7970 +7972 2 290.7613 491.3686 18.3928 0.1144 7971 +7973 2 289.6276 491.5162 18.4752 0.1144 7972 +7974 2 289.4377 492.4806 18.5355 0.1144 7973 +7975 2 289.7763 493.5376 18.5791 0.1144 7974 +7976 2 289.8793 494.6633 18.6089 0.1144 7975 +7977 2 289.043 495.3085 18.6319 0.1144 7976 +7978 2 288.153 496.0258 18.6623 0.1144 7977 +7979 2 287.2927 496.7797 18.7043 0.1144 7978 +7980 2 286.2757 497.3037 18.7585 0.1144 7979 +7981 2 285.2278 497.7613 18.8242 0.1144 7980 +7982 2 284.109 497.7738 18.9808 0.1144 7981 +7983 2 283.005 497.8894 19.1399 0.1144 7982 +7984 2 282.2774 498.752 19.3283 0.1144 7983 +7985 2 281.4537 499.5207 19.4704 0.1144 7984 +7986 2 281.0064 500.5732 19.569 0.1144 7985 +7987 2 280.4482 501.5605 19.6274 0.1144 7986 +7988 2 279.803 502.494 19.6492 0.1144 7987 +7989 2 279.6805 503.543 19.6516 0.1144 7988 +7990 2 280.0569 504.623 19.6391 0.1144 7989 +7991 2 280.0363 505.7121 19.6212 0.1144 7990 +7992 2 279.5387 506.7325 19.5963 0.1144 7991 +7993 2 279.438 507.7758 19.564 0.1144 7992 +7994 2 279.9791 508.7585 19.5242 0.1144 7993 +7995 2 280.5717 509.7241 19.4432 0.1144 7994 +7996 2 280.9961 510.7766 19.3306 0.1144 7995 +7997 2 281.1895 511.8954 19.2257 0.1144 7996 +7998 2 281.1014 513.0279 19.1334 0.1144 7997 +7999 2 281.2696 514.1273 19.0539 0.1144 7998 +8000 2 282.0463 514.9041 18.9873 0.1144 7999 +8001 2 282.3529 515.9108 18.9334 0.1144 8000 +8002 2 282.6858 516.9988 18.886 0.1144 8001 +8003 2 282.2614 517.9712 18.5578 0.1144 8002 +8004 2 289.2627 491.8262 19.4007 0.1144 7973 +8005 2 288.5546 492.6739 19.5059 0.1144 8004 +8006 2 287.6428 493.3523 19.5462 0.1144 8005 +8007 2 286.5251 493.3191 19.556 0.1144 8006 +8008 2 285.4314 493.5902 19.5071 0.1144 8007 +8009 2 284.4373 494.1256 19.5297 0.1144 8008 +8010 2 283.4477 494.6965 19.572 0.1144 8009 +8011 2 282.5005 495.3383 19.6049 0.1144 8010 +8012 2 281.75 496.1997 19.635 0.1144 8011 +8013 2 281.4206 497.2945 19.6826 0.1144 8012 +8014 2 311.6862 473.4787 21.3511 0.1144 7946 +8015 2 312.6575 472.8781 21.5226 0.1144 8014 +8016 2 313.4366 472.0579 21.6267 0.1144 8015 +8017 2 314.0326 471.0832 21.7354 0.1144 8016 +8018 2 314.5783 470.0776 21.8194 0.1144 8017 +8019 2 315.1537 469.0892 21.9321 0.1144 8018 +8020 2 306.5428 438.7583 30.07 0.1144 7902 +8021 2 306.147 438.4643 31.2458 0.1144 8020 +8022 2 305.44 438.7778 31.7638 0.1144 8021 +8023 2 304.479 438.2618 32.3086 0.1144 8022 +8024 2 303.5398 438.5192 32.7718 0.1144 8023 +8025 2 302.5262 438.9906 33.1663 0.1144 8024 +8026 2 301.7643 438.2035 33.4793 0.1144 8025 +8027 2 301.8192 437.961 33.7417 0.1144 8026 +8028 2 302.1327 436.8616 33.9108 0.1144 8027 +8029 2 302.8706 436.0047 33.976 0.1144 8028 +8030 2 303.8075 435.3515 34.062 0.1144 8029 +8031 2 304.8543 434.9145 34.2098 0.1144 8030 +8032 2 305.9113 434.4958 34.4084 0.1144 8031 +8033 2 306.9684 434.0771 34.643 0.1144 8032 +8034 2 308.0243 433.6584 34.9 0.1144 8033 +8035 2 309.0813 433.2397 35.1663 0.1144 8034 +8036 2 309.889 432.4457 35.4166 0.1144 8035 +8037 2 310.5514 431.5157 35.6384 0.1144 8036 +8038 2 311.2069 430.581 35.8372 0.1144 8037 +8039 2 311.8613 429.6452 36.0192 0.1144 8038 +8040 2 312.5168 428.7094 36.1906 0.1144 8039 +8041 2 313.1723 427.7736 36.3569 0.1144 8040 +8042 2 313.8267 426.8378 36.5224 0.1144 8041 +8043 2 314.4822 425.9032 36.6892 0.1144 8042 +8044 2 315.1377 424.9674 36.857 0.1144 8043 +8045 2 315.792 424.0316 37.0336 0.1144 8044 +8046 2 316.332 423.026 37.214 0.1144 8045 +8047 2 316.5151 421.9003 37.3926 0.1144 8046 +8048 2 316.6889 420.7712 37.5651 0.1144 8047 +8049 2 316.8617 419.6421 37.7286 0.1144 8048 +8050 2 316.6878 418.5416 38.2407 0.1144 8049 +8051 2 300.9921 438.4105 33.7165 0.1144 8026 +8052 2 300.1181 439.034 33.8817 0.1144 8051 +8053 2 299.49 439.9881 33.9626 0.1144 8052 +8054 2 298.9466 440.9948 33.9805 0.1144 8053 +8055 2 298.5474 442.061 33.9402 0.1144 8054 +8056 2 298.2465 443.149 33.8047 0.1144 8055 +8057 2 297.615 444.0333 33.5938 0.1144 8056 +8058 2 296.7639 444.7929 33.3553 0.1144 8057 +8059 2 295.9597 445.6017 33.1198 0.1144 8058 +8060 2 295.1932 446.4506 32.9025 0.1144 8059 +8061 2 294.4416 447.2605 32.6214 0.1144 8060 +8062 2 293.4532 447.6655 32.3075 0.1144 8061 +8063 2 292.316 447.7067 32.027 0.1144 8062 +8064 2 291.2189 447.431 31.7688 0.1144 8063 +8065 2 290.1321 447.1965 31.4639 0.1144 8064 +8066 2 289.0716 447.479 31.1525 0.1144 8065 +8067 2 288.1805 448.1323 30.828 0.1144 8066 +8068 2 287.2344 448.6699 30.4721 0.1144 8067 +8069 2 286.3192 449.3266 30.2554 0.1144 8068 +8070 2 285.5779 450.1789 30.1823 0.1144 8069 +8071 2 284.5654 450.688 30.196 0.1144 8070 +8072 2 283.5461 451.2062 30.2389 0.1144 8071 +8073 2 282.8094 452.0791 30.2935 0.1144 8072 +8074 2 281.8953 452.7677 30.3677 0.1144 8073 +8075 2 293.6476 432.8244 28.1182 0.1144 7880 +8076 2 292.7954 433.5394 28.1084 0.1144 8075 +8077 2 291.7944 434.0931 28.1047 0.1144 8076 +8078 2 290.7979 434.6548 28.0997 0.1144 8077 +8079 2 289.6848 434.911 28.0916 0.1144 8078 +8080 2 288.5488 434.7909 28.0795 0.1144 8079 +8081 2 287.5902 434.9133 28.0658 0.1144 8080 +8082 2 287.4975 436.047 28.0521 0.1144 8081 +8083 2 287.104 437.1144 28.026 0.1144 8082 +8084 2 286.5846 438.1108 27.9414 0.1144 8083 +8085 2 286.0011 439.0924 27.8865 0.1144 8084 +8086 2 285.0585 439.6518 27.9273 0.1144 8085 +8087 2 284.0438 440.1712 27.98 0.1144 8086 +8088 2 283.8447 441.2911 28.0286 0.1144 8087 +8089 2 283.8744 442.434 28.1182 0.1144 8088 +8090 2 261.5584 423.2468 22.5898 0.1144 7265 +8091 2 260.4282 423.423 22.8578 0.1144 8090 +8092 2 259.3951 423.8188 23.0162 0.1144 8091 +8093 2 258.4388 424.4103 23.2147 0.1144 8092 +8094 2 257.583 425.1653 23.3677 0.1144 8093 +8095 2 257.1151 426.1995 23.4677 0.1144 8094 +8096 2 257.082 427.3401 23.5161 0.1144 8095 +8097 2 256.979 428.4795 23.5111 0.1144 8096 +8098 2 256.256 429.3569 23.4474 0.1144 8097 +8099 2 255.5216 430.2332 23.3356 0.1144 8098 +8100 2 254.5949 430.9036 23.1835 0.1144 8099 +8101 2 254.1396 430.74 23.0332 0.1144 8100 +8102 2 253.3594 431.3463 22.6909 0.1144 8101 +8103 2 253.3239 431.5511 23.0569 0.1144 8102 +8104 2 252.919 432.615 23.0033 0.1144 8103 +8105 2 252.4842 433.6721 22.9808 0.1144 8104 +8106 2 251.7509 434.5301 22.9488 0.1144 8105 +8107 2 250.87 435.2588 22.9083 0.1144 8106 +8108 2 249.9411 435.9258 22.862 0.1144 8107 +8109 2 249.3931 436.8925 22.777 0.1144 8108 +8110 2 249.225 437.9701 22.5957 0.1144 8109 +8111 2 249.1426 439.1038 22.4514 0.1144 8110 +8112 2 249.0843 440.2421 22.3959 0.1144 8111 +8113 2 249.1003 441.3792 22.4245 0.1144 8112 +8114 2 248.7662 442.4683 22.4813 0.1144 8113 +8115 2 248.6129 443.6009 22.5642 0.1144 8114 +8116 2 248.4711 444.7357 22.6683 0.1144 8115 +8117 2 248.9001 445.7928 22.7749 0.1144 8116 +8118 2 249.5007 446.7663 22.8822 0.1144 8117 +8119 2 249.3806 447.0981 23.061 0.1144 8118 +8120 2 249.0797 448.1288 23.3606 0.1144 8119 +8121 2 248.7834 449.2248 23.6438 0.1144 8120 +8122 2 248.3956 450.299 23.8563 0.1144 8121 +8123 2 248.1725 451.4201 24.0021 0.1144 8122 +8124 2 248.0524 452.5584 24.0856 0.1144 8123 +8125 2 247.9323 453.6955 24.1105 0.1144 8124 +8126 2 247.7378 454.8098 24.093 0.1144 8125 +8127 2 247.2218 455.8257 24.0594 0.1144 8126 +8128 2 246.9541 456.9342 24.0178 0.1144 8127 +8129 2 246.6727 458.0027 23.9434 0.1144 8128 +8130 2 246.1396 458.9785 23.8147 0.1144 8129 +8131 2 245.9177 460.0974 23.7043 0.1144 8130 +8132 2 245.7953 461.2345 23.608 0.1144 8131 +8133 2 245.6877 462.3728 23.5218 0.1144 8132 +8134 2 245.6054 463.5145 23.4421 0.1144 8133 +8135 2 245.4864 464.6505 23.3642 0.1144 8134 +8136 2 245.0677 465.6641 23.2468 0.1144 8135 +8137 2 244.6055 466.6468 23.073 0.1144 8136 +8138 2 244.4133 467.7724 22.893 0.1144 8137 +8139 2 244.1548 468.8867 22.7128 0.1144 8138 +8140 2 243.5828 469.8008 22.4885 0.1144 8139 +8141 2 242.8426 470.5707 22.1436 0.1144 8140 +8142 2 242.4216 471.5602 21.7854 0.1144 8141 +8143 2 242.0979 472.6562 21.4893 0.1144 8142 +8144 2 241.2913 473.3277 21.2373 0.1144 8143 +8145 2 240.2732 473.8448 21.0202 0.1144 8144 +8146 2 239.255 474.3276 20.7759 0.1144 8145 +8147 2 238.3307 474.9488 20.4879 0.1144 8146 +8148 2 237.4246 475.6374 20.2125 0.1144 8147 +8149 2 236.7005 476.4028 19.8404 0.1144 8148 +8150 2 236.2371 477.4152 19.5046 0.1144 8149 +8151 2 235.6045 478.3625 19.2455 0.1144 8150 +8152 2 234.647 478.9596 19.0539 0.1144 8151 +8153 2 233.5876 479.3772 18.8851 0.1144 8152 +8154 2 232.9413 480.2695 18.7037 0.1144 8153 +8155 2 232.2343 481.1687 18.5699 0.1144 8154 +8156 2 231.3328 481.8711 18.4551 0.1144 8155 +8157 2 230.4062 482.5072 18.2813 0.1144 8156 +8158 2 229.4521 483.1375 18.1458 0.1144 8157 +8159 2 228.5792 483.8777 18.0464 0.1144 8158 +8160 2 227.6674 484.5675 17.9722 0.1144 8159 +8161 2 226.8415 485.2654 17.9099 0.1144 8160 +8162 2 226.4354 486.3293 17.8565 0.1144 8161 +8163 2 225.8233 487.2948 17.8068 0.1144 8162 +8164 2 225.3451 488.3175 17.7246 0.1144 8163 +8165 2 225.0408 489.3952 17.574 0.1144 8164 +8166 2 224.4677 490.3687 17.4564 0.1144 8165 +8167 2 223.8213 491.2565 17.3479 0.1144 8166 +8168 2 223.1246 492.0859 17.1536 0.1144 8167 +8169 2 222.182 492.7254 16.963 0.1144 8168 +8170 2 221.2061 493.2928 16.762 0.1144 8169 +8171 2 220.4499 494.0844 16.5698 0.1144 8170 +8172 2 219.5771 494.7182 16.4189 0.1144 8171 +8173 2 218.7671 495.4435 16.3067 0.1144 8172 +8174 2 218.0018 496.2844 16.2268 0.1144 8173 +8175 2 216.9802 496.7179 16.1584 0.1144 8174 +8176 2 215.8453 496.8232 16.0942 0.1144 8175 +8177 2 214.7082 496.7317 16.026 0.1144 8176 +8178 2 213.6065 496.6424 15.8632 0.1144 8177 +8179 2 212.482 496.6527 15.6595 0.1144 8178 +8180 2 211.3426 496.7282 15.4906 0.1144 8179 +8181 2 210.2008 496.7889 15.3689 0.1144 8180 +8182 2 209.0854 496.5726 15.2919 0.1144 8181 +8183 2 208.0261 496.1448 15.257 0.1144 8182 +8184 2 206.9073 496.2043 15.2617 0.1144 8183 +8185 2 205.7747 496.3667 15.2896 0.1144 8184 +8186 2 204.6376 496.4937 15.3322 0.1144 8185 +8187 2 203.5439 496.2089 15.3917 0.1144 8186 +8188 2 202.4914 495.7616 15.4747 0.1144 8187 +8189 2 201.3554 495.6918 15.5863 0.1144 8188 +8190 2 200.2492 495.4046 15.7397 0.1144 8189 +8191 2 199.2448 494.9013 16.0052 0.1144 8190 +8192 2 198.3433 494.2057 16.2908 0.1144 8191 +8193 2 197.6535 493.4301 16.7414 0.1144 8192 +8194 2 197.3 492.3833 17.172 0.1144 8193 +8195 2 197.451 491.4006 17.743 0.1144 8194 +8196 2 196.8595 490.7337 18.3078 0.1144 8195 +8197 2 195.8986 490.1365 18.7371 0.1144 8196 +8198 2 194.9159 489.5782 19.0588 0.1144 8197 +8199 2 193.9435 488.9948 19.2917 0.1144 8198 +8200 2 193.0168 488.3256 19.4808 0.1144 8199 +8201 2 192.5043 487.384 19.6449 0.1144 8200 +8202 2 192.3682 486.2686 19.8826 0.1144 8201 +8203 2 192.1531 485.1555 20.1689 0.1144 8202 +8204 2 192.2584 484.1111 20.5826 0.1144 8203 +8205 2 192.6919 483.626 21.1035 0.1144 8204 +8206 2 191.9769 483.0597 21.6478 0.1144 8205 +8207 2 191.0915 482.3493 22.1462 0.1144 8206 +8208 2 190.4771 481.4661 22.6843 0.1144 8207 +8209 2 190.0184 480.4388 23.1891 0.1144 8208 +8210 2 189.2256 479.6357 23.6334 0.1144 8209 +8211 2 188.1331 479.5751 24.086 0.1144 8210 +8212 2 186.9914 479.5877 24.4819 0.1144 8211 +8213 2 186.1986 478.7903 24.8458 0.1144 8212 +8214 2 185.3852 478.073 25.2821 0.1144 8213 +8215 2 184.8395 477.4598 25.9125 0.1144 8214 +8216 2 184.9013 476.3284 26.4959 0.1144 8215 +8217 2 184.7377 475.2634 27.035 0.1144 8216 +8218 2 184.0113 474.4854 27.607 0.1144 8217 +8219 2 183.1773 473.7052 28.0619 0.1144 8218 +8220 2 182.2815 473.0028 28.4427 0.1144 8219 +8221 2 181.5116 472.1997 28.7756 0.1144 8220 +8222 2 180.9396 471.2239 29.0931 0.1144 8221 +8223 2 180.1983 470.3773 29.4353 0.1144 8222 +8224 2 179.5268 469.4839 29.7489 0.1144 8223 +8225 2 179.028 468.5321 30.1339 0.1144 8224 +8226 2 178.5395 467.6443 30.6625 0.1144 8225 +8227 2 177.8623 466.7863 31.1562 0.1144 8226 +8228 2 177.0946 465.9375 31.556 0.1144 8227 +8229 2 176.8635 464.8701 31.8741 0.1144 8228 +8230 2 176.6931 463.8279 32.2622 0.1144 8229 +8231 2 176.1268 462.8716 32.6301 0.1144 8230 +8232 2 175.2974 462.0925 32.9031 0.1144 8231 +8233 2 174.7071 461.1178 33.1142 0.1144 8232 +8234 2 174.1626 460.1122 33.2808 0.1144 8233 +8235 2 174.1511 459.4567 33.4891 0.1144 8234 +8236 2 173.9006 458.3722 33.8657 0.1144 8235 +8237 2 173.4407 457.3254 34.0052 0.1144 8236 +8238 2 172.9373 456.305 34.174 0.1144 8237 +8239 2 172.2486 455.4012 34.4109 0.1144 8238 +8240 2 171.56 454.4975 34.7004 0.1144 8239 +8241 2 170.8713 453.5949 35.0288 0.1144 8240 +8242 2 170.1036 452.841 35.4606 0.1144 8241 +8243 2 169.2937 452.1385 35.966 0.1144 8242 +8244 2 168.3774 451.4521 36.3807 0.1144 8243 +8245 2 167.7779 450.6273 36.7332 0.1144 8244 +8246 2 167.8648 449.4993 37.0737 0.1144 8245 +8247 2 167.9518 448.3702 37.3985 0.1144 8246 +8248 2 168.0387 447.2411 37.7037 0.1144 8247 +8249 2 168.2115 446.144 37.9938 0.1144 8248 +8250 2 168.907 445.2379 38.2488 0.1144 8249 +8251 2 169.6014 444.3307 38.4675 0.1144 8250 +8252 2 170.2958 443.4247 38.6526 0.1144 8251 +8253 2 170.6173 442.402 38.8038 0.1144 8252 +8254 2 170.551 441.2602 38.9231 0.1144 8253 +8255 2 169.8257 440.551 39.0454 0.1144 8254 +8256 2 168.8075 440.035 39.1857 0.1144 8255 +8257 2 167.7905 439.5191 39.3403 0.1144 8256 +8258 2 166.7723 439.002 39.51 0.1144 8257 +8259 2 165.7542 438.486 39.6875 0.1144 8258 +8260 2 164.7371 437.969 39.8647 0.1144 8259 +8261 2 163.719 437.453 40.0333 0.1144 8260 +8262 2 162.702 436.9359 40.1884 0.1144 8261 +8263 2 161.6838 436.42 40.4902 0.1144 8262 +8264 2 173.5768 460.198 33.4099 0.1144 8234 +8265 2 172.4569 460.1946 33.5538 0.1144 8264 +8266 2 171.3483 459.9727 33.7221 0.1144 8265 +8267 2 170.3782 459.4247 33.8884 0.1144 8266 +8268 2 169.6563 458.5495 34.0609 0.1144 8267 +8269 2 168.899 457.6995 34.2504 0.1144 8268 +8270 2 167.9335 457.1481 34.5072 0.1144 8269 +8271 2 166.8764 456.7752 34.848 0.1144 8270 +8272 2 165.9212 456.2146 35.2615 0.1144 8271 +8273 2 165.0048 455.5534 35.7076 0.1144 8272 +8274 2 164.0221 455.0168 36.1844 0.1144 8273 +8275 2 163.0166 454.5261 36.6814 0.1144 8274 +8276 2 162.0121 454.0353 37.1795 0.1144 8275 +8277 2 161.0981 453.413 37.6816 0.1144 8276 +8278 2 160.2687 452.6408 38.1091 0.1144 8277 +8279 2 159.6143 451.7107 38.458 0.1144 8278 +8280 2 159.397 450.6388 38.8287 0.1144 8279 +8281 2 159.056 449.5748 39.2087 0.1144 8280 +8282 2 158.5939 448.5315 39.5349 0.1144 8281 +8283 2 158.1923 447.4699 39.8605 0.1144 8282 +8284 2 157.888 446.5364 40.3416 0.1144 8283 +8285 2 157.2725 445.572 40.7274 0.1144 8284 +8286 2 156.728 444.5687 41.0292 0.1144 8285 +8287 2 156.4958 443.4499 41.2748 0.1144 8286 +8288 2 156.1205 442.3768 41.519 0.1144 8287 +8289 2 155.4948 441.4467 41.7746 0.1144 8288 +8290 2 154.5292 440.8541 42.0386 0.1144 8289 +8291 2 153.5648 440.2581 42.3335 0.1144 8290 +8292 2 152.6165 439.6312 42.6314 0.1144 8291 +8293 2 151.7001 438.9505 42.8901 0.1144 8292 +8294 2 150.7048 438.4105 43.1614 0.1144 8293 +8295 2 149.7908 437.739 43.4258 0.1144 8294 +8296 2 148.9694 436.9897 43.7158 0.1144 8295 +8297 2 147.9249 436.5229 43.9648 0.1144 8296 +8298 2 146.9068 436.0013 44.1949 0.1144 8297 +8299 2 145.8909 435.4888 44.445 0.1144 8298 +8300 2 144.8327 435.0952 44.7549 0.1144 8299 +8301 2 143.7745 434.7006 45.1175 0.1144 8300 +8302 2 142.7163 434.3013 45.5151 0.1144 8301 +8303 2 141.6764 433.8883 45.9452 0.1144 8302 +8304 2 140.696 433.4822 46.4825 0.1144 8303 +8305 2 139.7236 432.9411 47.0028 0.1144 8304 +8306 2 138.8484 432.2089 47.4558 0.1144 8305 +8307 2 137.9367 431.5317 47.8853 0.1144 8306 +8308 2 137.1633 430.7743 48.314 0.1144 8307 +8309 2 136.708 429.8557 48.8432 0.1144 8308 +8310 2 136.2161 428.9096 49.3562 0.1144 8309 +8311 2 135.6418 427.9235 49.7664 0.1144 8310 +8312 2 135.016 426.9683 50.0954 0.1144 8311 +8313 2 134.3891 426.013 50.3488 0.1144 8312 +8314 2 133.7622 425.0578 50.5327 0.1144 8313 +8315 2 133.2531 424.0408 50.6556 0.1144 8314 +8316 2 132.7257 423.034 50.7534 0.1144 8315 +8317 2 132.0313 422.1268 50.85 0.1144 8316 +8318 2 131.3426 421.2174 50.9698 0.1144 8317 +8319 2 130.6848 420.2873 51.1322 0.1144 8318 +8320 2 130.0225 419.3618 51.3366 0.1144 8319 +8321 2 129.3601 418.4352 51.5743 0.1144 8320 +8322 2 128.6977 417.5097 51.8364 0.1144 8321 +8323 2 128.0342 416.5842 52.1133 0.1144 8322 +8324 2 127.3718 415.6587 52.3972 0.1144 8323 +8325 2 126.7094 414.7332 52.6842 0.1144 8324 +8326 2 126.0127 413.8351 52.9749 0.1144 8325 +8327 2 125.2749 412.9703 53.2717 0.1144 8326 +8328 2 124.5255 412.1146 53.5738 0.1144 8327 +8329 2 123.7774 411.2588 53.8798 0.1144 8328 +8330 2 123.028 410.4043 54.189 0.1144 8329 +8331 2 122.2787 409.5486 54.4995 0.1144 8330 +8332 2 121.5294 408.6929 54.8108 0.1144 8331 +8333 2 120.7812 407.8371 55.1225 0.1144 8332 +8334 2 120.0319 406.9826 55.4344 0.1144 8333 +8335 2 119.2826 406.1269 55.7469 0.1144 8334 +8336 2 118.5344 405.2712 56.0594 0.1144 8335 +8337 2 117.7942 404.4086 56.3721 0.1144 8336 +8338 2 117.1936 403.4545 56.6871 0.1144 8337 +8339 2 116.688 402.4375 57.0044 0.1144 8338 +8340 2 116.1824 401.4216 57.3199 0.1144 8339 +8341 2 115.6778 400.4057 57.6293 0.1144 8340 +8342 2 115.1722 399.3887 57.9264 0.1144 8341 +8343 2 114.6677 398.3728 58.2033 0.1144 8342 +8344 2 114.1619 397.357 58.45 0.1144 8343 +8345 2 113.6567 396.3399 58.6564 0.1144 8344 +8346 2 113.1514 395.3241 58.8134 0.1144 8345 +8347 2 112.5083 394.3929 58.8818 0.1144 8346 +8348 2 111.6336 393.6916 58.802 0.1144 8347 +8349 2 110.6804 393.0921 58.5768 0.1144 8348 +8350 2 109.7272 392.4915 58.2406 0.1144 8349 +8351 2 108.7737 391.8921 57.825 0.1144 8350 +8352 2 107.8205 391.2926 57.36 0.1144 8351 +8353 2 106.8673 390.692 56.8714 0.1144 8352 +8354 2 105.9142 390.0926 56.3766 0.1144 8353 +8355 2 104.9609 389.4931 55.8799 0.1144 8354 +8356 2 104.0074 388.8925 55.3804 0.1144 8355 +8357 2 103.0543 388.293 54.8783 0.1144 8356 +8358 2 102.101 387.6924 54.3763 0.1144 8357 +8359 2 101.181 387.0701 53.858 0.1144 8358 +8360 2 100.1905 386.6297 53.3201 0.1144 8359 +8361 2 99.1123 386.5896 52.7856 0.1144 8360 +8362 2 98.0186 386.6823 52.2794 0.1144 8361 +8363 2 97.1671 387.2989 51.8644 0.1144 8362 +8364 2 97.0936 388.4017 51.639 0.1144 8363 +8365 2 97.1185 389.54 51.5788 0.1144 8364 +8366 2 97.1434 390.6794 51.6398 0.1144 8365 +8367 2 97.1684 391.8177 51.7759 0.1144 8366 +8368 2 97.2907 392.9057 52.0206 0.1144 8367 +8369 2 96.8158 393.9124 52.2368 0.1144 8368 +8370 2 96.0013 394.7063 52.3261 0.1144 8369 +8371 2 95.1865 395.5002 52.3163 0.1144 8370 +8372 2 94.3724 396.2953 52.2346 0.1144 8371 +8373 2 93.5173 397.0549 52.1405 0.1144 8372 +8374 2 92.6545 397.8066 52.0531 0.1144 8373 +8375 2 91.7912 398.557 51.9565 0.1144 8374 +8376 2 227.1126 483.9532 18.5578 0.1144 8160 +8377 2 226.3942 483.3343 18.5096 0.1144 8376 +8378 2 225.3554 483.8068 18.487 0.1144 8377 +8379 2 224.2995 484.238 18.4569 0.1144 8378 +8380 2 223.3969 484.9061 18.4259 0.1144 8379 +8381 2 222.659 485.7802 18.3824 0.1144 8380 +8382 2 221.8193 486.5318 18.3262 0.1144 8381 +8383 2 220.768 486.9093 18.2409 0.1144 8382 +8384 2 219.6583 487.1003 18.0879 0.1144 8383 +8385 2 218.5658 487.376 17.8902 0.1144 8384 +8386 2 217.5362 487.8496 17.7166 0.1144 8385 +8387 2 216.5237 488.3816 17.5869 0.1144 8386 +8388 2 215.5765 489.012 17.4924 0.1144 8387 +8389 2 214.5389 489.4421 17.4233 0.1144 8388 +8390 2 213.7507 490.1571 17.4318 0.1144 8389 +8391 2 212.7817 490.6422 17.453 0.1144 8390 +8392 2 211.8711 490.1662 17.3939 0.1144 8391 +8393 2 210.9124 489.8219 17.1615 0.1144 8392 +8394 2 210.9399 490.8 16.8708 0.1144 8393 +8395 2 249.7386 447.0592 22.3948 0.1144 8118 +8396 2 250.0338 447.9561 21.5313 0.1144 8395 +8397 2 249.3851 448.8976 21.2292 0.1144 8396 +8398 2 249.0968 449.7888 20.8967 0.1144 8397 +8399 2 249.9846 450.426 20.465 0.1144 8398 +8400 2 251.0966 450.6342 20.0707 0.1144 8399 +8401 2 252.1662 450.2464 19.718 0.1144 8400 +8402 2 253.0265 449.6584 19.2419 0.1144 8401 +8403 2 253.4635 449.1813 19.1204 0.1144 8402 +8404 2 254.1911 448.7718 20.111 0.1144 8403 +8405 2 255.0708 448.0831 20.5055 0.1144 8404 +8406 2 256.0466 447.5168 20.798 0.1144 8405 +8407 2 257.1529 447.2422 20.9912 0.1144 8406 +8408 2 258.29 447.1656 21.0893 0.1144 8407 +8409 2 259.3254 447.4962 21.0975 0.1144 8408 +8410 2 260.2348 448.186 21.0063 0.1144 8409 +8411 2 261.2232 448.7409 20.8395 0.1144 8410 +8412 2 262.2986 449.1012 20.6293 0.1144 8411 +8413 2 263.4174 449.338 20.4061 0.1144 8412 +8414 2 264.5454 449.5131 20.1509 0.1144 8413 +8415 2 265.5807 449.8082 19.7943 0.1144 8414 +8416 2 265.9365 450.6376 19.3438 0.1144 8415 +8417 2 266.2031 451.5585 18.7934 0.1144 8416 +8418 2 266.8643 452.3891 18.2573 0.1144 8417 +8419 2 267.7715 453.0469 17.846 0.1144 8418 +8420 2 268.681 453.7321 17.6217 0.1144 8419 +8421 2 269.4658 454.5581 17.6303 0.1144 8420 +8422 2 270.4347 455.1278 17.8732 0.1144 8421 +8423 2 271.0685 456.027 18.3354 0.1144 8422 +8424 2 271.9025 456.6699 19.1021 0.1144 8423 +8425 2 272.256 456.7626 20.3688 0.1144 8424 +8426 2 272.6095 456.8553 21.9816 0.1144 8425 +8427 2 272.963 456.9479 23.7972 0.1144 8426 +8428 2 273.3176 457.0406 25.6869 0.1144 8427 +8429 2 273.6711 457.1332 27.5369 0.1144 8428 +8430 2 273.6654 457.1435 28.8722 0.1144 8429 +8431 2 273.1437 458.1617 29.7598 0.1144 8430 +8432 2 272.6518 459.1924 30.3131 0.1144 8431 +8433 2 272.3578 460.2873 30.6382 0.1144 8432 +8434 2 272.3784 461.4267 30.847 0.1144 8433 +8435 2 272.3017 462.5032 31.0738 0.1144 8434 +8436 2 271.5787 463.3555 31.3566 0.1144 8435 +8437 2 270.6178 463.9275 31.6487 0.1144 8436 +8438 2 269.5516 464.162 32.0079 0.1144 8437 +8439 2 268.5288 464.4411 32.3859 0.1144 8438 +8440 2 267.6205 465.1195 32.646 0.1144 8439 +8441 2 266.8231 465.9386 32.7933 0.1144 8440 +8442 2 265.8793 466.5083 32.8429 0.1144 8441 +8443 2 264.7525 466.6982 32.8096 0.1144 8442 +8444 2 263.7034 467.0574 32.704 0.1144 8443 +8445 2 262.8351 467.7782 32.5114 0.1144 8444 +8446 2 262.1384 468.6007 32.177 0.1144 8445 +8447 2 261.7644 469.6028 31.7839 0.1144 8446 +8448 2 261.5516 470.7263 31.43 0.1144 8447 +8449 2 261.1077 471.7616 31.1038 0.1144 8448 +8450 2 260.2531 472.3988 30.7387 0.1144 8449 +8451 2 259.4535 473.0989 30.3162 0.1144 8450 +8452 2 259.3116 474.1857 29.9012 0.1144 8451 +8453 2 258.8243 475.0735 29.3759 0.1144 8452 +8454 2 257.9022 475.6683 28.7902 0.1144 8453 +8455 2 257.4149 476.6453 28.177 0.1144 8454 +8456 2 257.0305 477.7207 27.6225 0.1144 8455 +8457 2 256.0993 477.7584 26.8985 0.1144 8456 +8458 2 256.0993 478.3053 26.2868 0.1144 8457 +8459 2 255.4621 479.1907 25.6986 0.1144 8458 +8460 2 254.6407 479.217 24.9466 0.1144 8459 +8461 2 254.7242 479.8005 25.4668 0.1144 8460 +8462 2 254.3718 480.7957 25.273 0.1144 8461 +8463 2 253.5207 481.4741 25.1523 0.1144 8462 +8464 2 252.5666 482.0999 25.0165 0.1144 8463 +8465 2 251.8058 482.8435 24.7476 0.1144 8464 +8466 2 251.4386 483.9166 24.1816 0.1144 8465 +8467 2 254.1911 478.9722 24.3425 0.1144 8460 +8468 2 253.1752 478.8876 23.7559 0.1144 8467 +8469 2 252.1605 478.629 23.2027 0.1144 8468 +8470 2 251.2682 477.9701 22.6984 0.1144 8469 +8471 2 250.2649 477.461 22.3203 0.1144 8470 +8472 2 249.2684 476.9027 22.071 0.1144 8471 +8473 2 248.1748 476.9714 21.8951 0.1144 8472 +8474 2 247.8842 478.0547 21.7648 0.1144 8473 +8475 2 247.6074 479.1518 21.6246 0.1144 8474 +8476 2 247.199 480.2203 21.5277 0.1144 8475 +8477 2 247.0159 481.3494 21.4579 0.1144 8476 +8478 2 246.7242 482.4545 21.4094 0.1144 8477 +8479 2 246.3718 483.5436 21.3699 0.1144 8478 +8480 2 256.0535 477.2482 26.4312 0.1144 8457 +8481 2 256.018 476.1053 26.2475 0.1144 8480 +8482 2 256.1999 474.9968 26.128 0.1144 8481 +8483 2 256.4139 473.8757 26.0127 0.1144 8482 +8484 2 256.6896 472.7649 25.9152 0.1144 8483 +8485 2 257.297 471.8028 25.8314 0.1144 8484 +8486 2 258.0189 470.915 25.7563 0.1144 8485 +8487 2 258.782 470.0627 25.6812 0.1144 8486 +8488 2 259.5118 469.1819 25.6078 0.1144 8487 +8489 2 260.2245 468.2872 25.5265 0.1144 8488 +8490 2 260.7668 467.3183 25.348 0.1144 8489 +8491 2 260.9956 466.2178 25.1271 0.1144 8490 +8492 2 260.6272 465.1401 24.7439 0.1144 8491 +8493 2 273.718 457.0417 30.3677 0.1144 8429 +8494 2 274.2397 456.0236 30.3464 0.1144 8493 +8495 2 274.5005 454.915 30.338 0.1144 8494 +8496 2 274.8906 453.842 30.3268 0.1144 8495 +8497 2 275.4615 452.8524 30.3097 0.1144 8496 +8498 2 276.0987 451.9029 30.2856 0.1144 8497 +8499 2 276.9452 451.1387 30.2537 0.1144 8498 +8500 2 277.8364 450.4214 30.2134 0.1144 8499 +8501 2 278.5411 449.5245 30.1588 0.1144 8500 +8502 2 278.6738 448.4217 30.0286 0.1144 8501 +8503 2 278.6944 447.2788 29.9104 0.1144 8502 +8504 2 278.882 446.1508 29.8057 0.1144 8503 +8505 2 279.112 445.0309 29.7105 0.1144 8504 +8506 2 279.6794 444.0402 29.6223 0.1144 8505 +8507 2 280.3589 443.1204 29.54 0.1144 8506 +8508 2 281.1186 442.2727 29.4244 0.1144 8507 +8509 2 281.805 441.4135 29.2051 0.1144 8508 +8510 2 282.3426 440.4057 29.0147 0.1144 8509 +8511 2 283.0656 439.5202 28.8702 0.1144 8510 +8512 2 283.8939 438.7309 28.7686 0.1144 8511 +8513 2 284.6764 437.8969 28.6804 0.1144 8512 +8514 2 252.0507 450.1125 18.7634 0.1144 8402 +8515 2 251.2487 450.7406 18.2014 0.1144 8514 +8516 2 250.3244 451.3458 17.6911 0.1144 8515 +8517 2 249.2616 451.7519 17.2989 0.1144 8516 +8518 2 248.1714 452.1019 17.0228 0.1144 8517 +8519 2 247.4335 452.9359 16.8491 0.1144 8518 +8520 2 246.6613 453.779 16.7327 0.1144 8519 +8521 2 245.6694 454.3316 16.6493 0.1144 8520 +8522 2 244.967 455.2285 16.5599 0.1144 8521 +8523 2 244.7588 456.353 16.4443 0.1144 8522 +8524 2 244.6833 457.4948 16.2975 0.1144 8523 +8525 2 244.6604 458.5415 15.9594 0.1144 8524 +8526 2 245.3994 458.8035 14.7769 0.1144 8525 +8527 2 246.4439 458.5507 14.0375 0.1144 8526 +8528 2 247.5444 458.863 13.7667 0.1144 8527 +8529 2 248.6404 459.1822 13.4877 0.1144 8528 +8530 2 249.6837 459.3721 13.1433 0.1144 8529 +8531 2 249.2879 459.8891 12.5753 0.1144 8530 +8532 2 249.0271 460.9016 11.9787 0.1144 8531 +8533 2 249.5213 461.922 11.4886 0.1144 8532 +8534 2 250.3026 462.7274 11.0772 0.1144 8533 +8535 2 249.9114 463.0798 10.6883 0.1144 8534 +8536 2 249.0568 462.359 10.2845 0.1144 8535 +8537 2 248.0341 461.9289 9.9018 0.1144 8536 +8538 2 247.0205 462.176 9.5392 0.1144 8537 +8539 2 246.0973 462.7755 9.0845 0.1144 8538 +8540 2 245.1112 462.8532 8.4927 0.1144 8539 +8541 2 244.0804 463.0523 7.8276 0.1144 8540 +8542 2 242.957 463.1781 7.2272 0.1144 8541 +8543 2 242.3873 462.6061 6.5203 0.1144 8542 +8544 2 242.0304 461.5502 5.9234 0.1144 8543 +8545 2 241.368 460.6396 5.4306 0.1144 8544 +8546 2 240.7582 459.7004 5.0481 0.1144 8545 +8547 2 240.28 458.6811 4.7272 0.1144 8546 +8548 2 239.6325 457.743 4.4897 0.1144 8547 +8549 2 238.9827 456.8095 4.3127 0.1144 8548 +8550 2 238.4085 455.8234 4.1497 0.1144 8549 +8551 2 237.904 454.8144 3.9892 0.1144 8550 +8552 2 237.7644 453.7127 3.7738 0.1144 8551 +8553 2 238.1511 452.9062 3.3704 0.1144 8552 +8554 2 238.7356 452.039 2.95 0.1144 8553 +8555 2 239.4243 451.1307 2.6163 0.1144 8554 +8556 2 239.9494 450.1228 2.3594 0.1144 8555 +8557 2 240.0707 448.9983 2.1633 0.1144 8556 +8558 2 240.0764 447.8554 2.0241 0.1144 8557 +8559 2 240.5832 446.8624 1.9289 0.1144 8558 +8560 2 241.352 446.0216 1.8216 0.1144 8559 +8561 2 242.3678 446.1097 1.5865 0.1144 8560 +8562 2 243.4729 445.8683 1.1248 0.1144 8561 +8563 2 244.6627 458.8561 15.6421 0.1144 8525 +8564 2 244.8149 459.9555 15.2961 0.1144 8563 +8565 2 245.1992 460.9737 14.8612 0.1144 8564 +8566 2 245.6877 461.9666 14.4477 0.1144 8565 +8567 2 246.4279 462.8201 14.126 0.1144 8566 +8568 2 246.81 463.7902 13.8032 0.1144 8567 +8569 2 246.214 464.5967 13.4414 0.1144 8568 +8570 2 245.1272 464.6974 13.1327 0.1144 8569 +8571 2 244.3184 465.3929 12.8299 0.1144 8570 +8572 2 245.277 464.6699 12.4418 0.1144 8571 +8573 2 246.2552 464.083 12.334 0.1144 8572 +8574 2 247.1486 463.3841 12.2592 0.1144 8573 +8575 2 247.7938 462.4528 12.1932 0.1144 8574 +8576 2 248.7353 461.9495 12.1261 0.1144 8575 +8577 2 249.8622 461.7664 12.0424 0.1144 8576 +8578 2 250.4479 460.9691 11.8764 0.1144 8577 +8579 2 250.5349 459.8617 11.6409 0.1144 8578 +8580 2 250.7408 458.744 11.4311 0.1144 8579 +8581 2 251.6182 458.1159 11.2229 0.1144 8580 +8582 2 252.7245 457.87 11.0273 0.1144 8581 +8583 2 253.8444 458.0645 10.8899 0.1144 8582 +8584 2 254.8683 457.6355 10.8779 0.1144 8583 +8585 2 255.9368 457.2557 10.8317 0.1144 8584 +8586 2 257.0431 457.0646 10.7576 0.1144 8585 +8587 2 257.4732 456.0076 10.696 0.1144 8586 +8588 2 258.2008 455.1724 10.6405 0.1144 8587 +8589 2 259.3345 455.0226 10.5869 0.1144 8588 +8590 2 260.4293 454.8269 10.5092 0.1144 8589 +8591 2 261.269 454.1508 10.3546 0.1144 8590 +8592 2 262.079 453.3455 10.2792 0.1144 8591 +8593 2 262.9129 452.5858 10.2903 0.1144 8592 +8594 2 263.5215 451.6592 10.4574 0.1144 8593 +8595 2 264.2697 450.8916 10.773 0.1144 8594 +8596 2 265.2181 450.2567 11.0976 0.1144 8595 +8597 2 265.9548 449.4456 11.3959 0.1144 8596 +8598 2 266.3793 448.4526 11.7179 0.1144 8597 +8599 2 267.1229 447.8039 12.1135 0.1144 8598 +8600 2 268.2131 447.4767 12.4216 0.1144 8599 +8601 2 269.0093 446.8189 12.6328 0.1144 8600 +8602 2 269.4063 445.7516 12.7737 0.1144 8601 +8603 2 269.881 444.7243 12.8526 0.1144 8602 +8604 2 270.6326 443.8743 12.8757 0.1144 8603 +8605 2 271.0651 442.8813 12.8627 0.1144 8604 +8606 2 271.4334 441.8082 12.8423 0.1144 8605 +8607 2 272.2457 441.1035 12.7732 0.1144 8606 +8608 2 273.1964 440.4846 12.7028 0.1144 8607 +8609 2 273.9136 439.6163 12.6712 0.1144 8608 +8610 2 274.6401 438.7377 12.6799 0.1144 8609 +8611 2 275.5347 438.0365 12.7321 0.1144 8610 +8612 2 276.5849 437.6097 12.8283 0.1144 8611 +8613 2 277.6271 437.7539 13.0558 0.1144 8612 +8614 2 278.5651 438.3591 13.3442 0.1144 8613 +8615 2 279.6485 438.6565 13.6131 0.1144 8614 +8616 2 280.5454 438.2161 13.9963 0.1144 8615 +8617 2 281.6253 438.4346 14.3319 0.1144 8616 +8618 2 282.6893 438.049 14.5996 0.1144 8617 +8619 2 283.7932 437.7516 14.8028 0.1144 8618 +8620 2 284.9292 437.8568 14.9608 0.1144 8619 +8621 2 286.048 438.0959 15.0868 0.1144 8620 +8622 2 287.0719 438.295 15.7461 0.1144 8621 +8623 2 244.3195 465.6332 12.3721 0.1144 8571 +8624 2 243.9477 466.704 12.089 0.1144 8623 +8625 2 243.3357 467.6478 11.9455 0.1144 8624 +8626 2 242.6378 468.5126 11.7231 0.1144 8625 +8627 2 242.2088 469.5708 11.5439 0.1144 8626 +8628 2 242.1573 470.7114 11.41 0.1144 8627 +8629 2 241.9354 471.8325 11.3182 0.1144 8628 +8630 2 241.6025 472.9273 11.2473 0.1144 8629 +8631 2 253.1969 431.3772 22.1481 0.1144 8102 +8632 2 252.5826 430.9139 21.5556 0.1144 8631 +8633 2 252.5323 429.85 21.0129 0.1144 8632 +8634 2 253.0677 428.8799 20.5294 0.1144 8633 +8635 2 252.53 427.9693 20.1643 0.1144 8634 +8636 2 251.9042 427.0117 19.9481 0.1144 8635 +8637 2 251.2567 426.0691 19.8451 0.1144 8636 +8638 2 250.6573 425.0944 19.8139 0.1144 8637 +8639 2 250.1162 424.0865 19.8301 0.1144 8638 +8640 2 249.9629 422.954 19.8804 0.1144 8639 +8641 2 250.1379 421.8248 19.9507 0.1144 8640 +8642 2 250.3507 420.7003 20.0351 0.1144 8641 +8643 2 250.8346 420.2324 20.266 0.1144 8642 +8644 2 251.8127 419.6936 20.4915 0.1144 8643 +8645 2 252.872 419.2611 20.6766 0.1144 8644 +8646 2 253.8502 418.6708 20.8239 0.1144 8645 +8647 2 253.642 418.6251 21.3819 0.1144 8646 +8648 2 252.9235 417.8071 23.0469 0.1144 8647 +8649 2 252.1296 417.1207 23.6711 0.1144 8648 +8650 2 251.235 417.3083 24.4409 0.1144 8649 +8651 2 250.7133 417.568 25.4491 0.1144 8650 +8652 2 250.4616 416.9537 28.1182 0.1144 8651 +8653 2 254.0916 418.6891 20.9566 0.1144 8646 +8654 2 255.2184 418.8035 21.1006 0.1144 8653 +8655 2 256.3429 419.0026 21.201 0.1144 8654 +8656 2 257.4778 419.1387 21.273 0.1144 8655 +8657 2 258.5394 418.8012 21.3238 0.1144 8656 +8658 2 259.6594 418.6239 21.355 0.1144 8657 +8659 2 260.53 417.9467 21.3689 0.1144 8658 +8660 2 261.5756 417.5062 21.3709 0.1144 8659 +8661 2 262.6555 417.1299 21.3713 0.1144 8660 +8662 2 263.5604 416.44 21.3719 0.1144 8661 +8663 2 264.4939 415.7788 21.3727 0.1144 8662 +8664 2 265.2902 414.9608 21.3739 0.1144 8663 +8665 2 266.1951 414.263 21.3755 0.1144 8664 +8666 2 267.1835 413.6887 21.3777 0.1144 8665 +8667 2 268.1067 413.0137 21.3808 0.1144 8666 +8668 2 269.0677 412.3937 21.3851 0.1144 8667 +8669 2 269.9634 411.6833 21.3912 0.1144 8668 +8670 2 270.4816 410.672 21.3997 0.1144 8669 +8671 2 271.0902 409.7042 21.4115 0.1144 8670 +8672 2 271.7549 408.7729 21.4282 0.1144 8671 +8673 2 272.7479 408.2204 21.4516 0.1144 8672 +8674 2 273.726 407.6278 21.484 0.1144 8673 +8675 2 274.1768 406.5856 21.5284 0.1144 8674 +8676 2 274.6881 405.5629 21.5923 0.1144 8675 +8677 2 275.4031 404.6706 21.6841 0.1144 8676 +8678 2 275.9477 403.665 21.8101 0.1144 8677 +8679 2 276.6398 402.7532 21.9737 0.1144 8678 +8680 2 277.1695 401.7396 22.1774 0.1144 8679 +8681 2 277.0528 400.948 22.6199 0.1144 8680 +8682 2 277.6419 400.0625 23.1424 0.1144 8681 +8683 2 277.3639 399.145 23.6737 0.1144 8682 +8684 2 277.1294 398.0514 24.1446 0.1144 8683 +8685 2 276.84 397.0035 24.6386 0.1144 8684 +8686 2 276.7233 395.919 25.1326 0.1144 8685 +8687 2 276.9304 394.8093 25.5004 0.1144 8686 +8688 2 277.3079 393.7305 25.7635 0.1144 8687 +8689 2 277.7026 392.6688 26.001 0.1144 8688 +8690 2 277.5767 391.5454 26.1896 0.1144 8689 +8691 2 277.4017 390.4152 26.3061 0.1144 8690 +8692 2 277.4589 389.2735 26.3749 0.1144 8691 +8693 2 277.8238 388.1924 26.421 0.1144 8692 +8694 2 278.1281 387.0896 26.4506 0.1144 8693 +8695 2 277.8948 385.9742 26.4667 0.1144 8694 +8696 2 277.5161 384.8942 26.4814 0.1144 8695 +8697 2 277.0253 383.8612 26.5013 0.1144 8696 +8698 2 276.5666 382.8133 26.5285 0.1144 8697 +8699 2 276.4556 381.6762 26.5676 0.1144 8698 +8700 2 276.4533 380.5322 26.6246 0.1144 8699 +8701 2 276.3275 379.395 26.7023 0.1144 8700 +8702 2 275.7726 378.3952 26.8017 0.1144 8701 +8703 2 276.0072 377.8495 27.1985 0.1144 8702 +8704 2 276.0426 376.7672 27.483 0.1144 8703 +8705 2 275.9694 375.6267 27.5791 0.1144 8704 +8706 2 276.117 374.5033 27.6934 0.1144 8705 +8707 2 276.2783 373.3776 27.8306 0.1144 8706 +8708 2 276.459 372.2496 27.9449 0.1144 8707 +8709 2 277.1706 371.4019 28.0249 0.1144 8708 +8710 2 277.7026 370.4055 28.0742 0.1144 8709 +8711 2 278.659 369.8804 28.1039 0.1144 8710 +8712 2 279.6268 369.2752 28.1162 0.1144 8711 +8713 2 280.4276 368.4618 28.1182 0.1144 8712 +8714 2 281.5407 368.2433 28.1182 0.1144 8713 +8715 2 282.6618 368.0168 28.1182 0.1144 8714 +8716 2 283.6296 367.4105 28.1182 0.1144 8715 +8717 2 284.4911 366.6566 28.1182 0.1144 8716 +8718 2 285.2175 365.7734 28.1182 0.1144 8717 +8719 2 275.3253 377.9193 26.9233 0.1144 8702 +8720 2 274.5474 377.1917 27.1962 0.1144 8719 +8721 2 273.9114 376.2971 27.5486 0.1144 8720 +8722 2 273.297 375.3327 27.8423 0.1144 8721 +8723 2 272.7319 374.3385 28.0756 0.1144 8722 +8724 2 272.2468 373.3272 28.3307 0.1144 8723 +8725 2 271.6428 372.3571 28.5118 0.1144 8724 +8726 2 271.0937 371.3538 28.6236 0.1144 8725 +8727 2 270.516 370.3666 28.6975 0.1144 8726 +8728 2 269.8204 369.4582 28.7577 0.1144 8727 +8729 2 268.9624 368.7009 28.8126 0.1144 8728 +8730 2 268.2463 367.8097 28.8674 0.1144 8729 +8731 2 267.4329 367.0055 28.9408 0.1144 8730 +8732 2 267.2739 366.2173 29.0346 0.1144 8731 +8733 2 267.0737 365.0916 29.1668 0.1144 8732 +8734 2 266.8849 364.03 29.4417 0.1144 8733 +8735 2 266.6264 362.9283 29.7175 0.1144 8734 +8736 2 266.1299 361.9033 29.9771 0.1144 8735 +8737 2 265.4263 361.0132 30.2456 0.1144 8736 +8738 2 264.6358 360.217 30.5452 0.1144 8737 +8739 2 263.9471 359.4128 30.924 0.1144 8738 +8740 2 263.3179 358.4838 31.1592 0.1144 8739 +8741 2 262.5022 357.6865 31.3174 0.1144 8740 +8742 2 261.5436 357.0653 31.4143 0.1144 8741 +8743 2 260.6124 356.4006 31.4572 0.1144 8742 +8744 2 259.7429 355.6582 31.4574 0.1144 8743 +8745 2 259.1892 354.6629 31.4311 0.1144 8744 +8746 2 258.6939 353.631 31.4054 0.1144 8745 +8747 2 258.2386 352.5819 31.374 0.1144 8746 +8748 2 257.8748 351.4974 31.3368 0.1144 8747 +8749 2 257.7455 350.3729 31.2396 0.1144 8748 +8750 2 257.5213 349.254 31.1324 0.1144 8749 +8751 2 257.4435 348.1123 31.0484 0.1144 8750 +8752 2 257.4114 347.3264 29.909 0.1144 8751 +8753 2 257.1449 346.3666 29.3563 0.1144 8752 +8754 2 257.1392 347.053 29.1852 0.1144 8753 +8755 2 256.9413 348.1661 29.076 0.1144 8754 +8756 2 256.3475 349.1191 29.0228 0.1144 8755 +8757 2 255.4323 349.6911 29.0688 0.1144 8756 +8758 2 254.4496 350.0446 29.248 0.1144 8757 +8759 2 253.6351 350.827 29.4073 0.1144 8758 +8760 2 252.9338 351.7239 29.5131 0.1144 8759 +8761 2 252.1948 352.5865 29.5534 0.1144 8760 +8762 2 251.5679 353.536 29.5173 0.1144 8761 +8763 2 250.838 354.394 29.4445 0.1144 8762 +8764 2 249.9709 355.1399 29.3748 0.1144 8763 +8765 2 249.2055 355.9831 29.3311 0.1144 8764 +8766 2 248.5248 356.9028 29.3168 0.1144 8765 +8767 2 247.8579 357.8295 29.3194 0.1144 8766 +8768 2 247.3122 358.8213 29.3177 0.1144 8767 +8769 2 246.8763 359.8749 29.3348 0.1144 8768 +8770 2 246.3444 360.813 29.4868 0.1144 8769 +8771 2 245.6511 361.655 29.7483 0.1144 8770 +8772 2 244.7599 362.3391 30.0166 0.1144 8771 +8773 2 243.7384 362.8551 30.2935 0.1144 8772 +8774 2 242.6802 363.2372 30.6239 0.1144 8773 +8775 2 241.718 363.4625 31.1192 0.1144 8774 +8776 2 240.7308 363.2932 31.6817 0.1144 8775 +8777 2 239.843 362.616 32.1622 0.1144 8776 +8778 2 238.9427 361.9136 32.5517 0.1144 8777 +8779 2 237.9303 361.3907 32.8734 0.1144 8778 +8780 2 236.8435 361.3953 33.1895 0.1144 8779 +8781 2 235.7315 361.2477 33.4519 0.1144 8780 +8782 2 234.7202 360.7753 33.7456 0.1144 8781 +8783 2 233.5888 360.8634 34.0239 0.1144 8782 +8784 2 232.5123 360.8679 34.8664 0.1144 8783 +8785 2 257.3691 347.379 30.9854 0.1144 8751 +8786 2 257.098 346.2694 30.9417 0.1144 8785 +8787 2 256.7697 345.1734 30.9148 0.1144 8786 +8788 2 256.4848 344.0649 30.9025 0.1144 8787 +8789 2 256.1954 342.9586 30.891 0.1144 8788 +8790 2 255.5147 342.0491 30.8745 0.1144 8789 +8791 2 254.6841 341.2644 30.8526 0.1144 8790 +8792 2 254.1087 340.2805 30.826 0.1144 8791 +8793 2 254.2094 339.1468 30.7958 0.1144 8792 +8794 2 254.143 338.0245 30.6936 0.1144 8793 +8795 2 253.785 336.9389 30.609 0.1144 8794 +8796 2 253.3045 335.9001 30.5528 0.1144 8795 +8797 2 252.7279 334.9129 30.5222 0.1144 8796 +8798 2 252.4671 334.4106 30.5141 0.1144 8797 +8799 2 251.7795 333.5366 30.6037 0.1144 8798 +8800 2 251.1412 332.745 30.9299 0.1144 8799 +8801 2 250.9101 331.6319 30.6715 0.1144 8800 +8802 2 250.6756 330.513 30.5676 0.1144 8801 +8803 2 250.2912 329.4354 30.4287 0.1144 8802 +8804 2 250.0223 328.3234 30.2462 0.1144 8803 +8805 2 249.7032 327.2504 29.9348 0.1144 8804 +8806 2 249.5464 327.152 30.3568 0.1144 8805 +8807 2 248.5317 326.6326 30.1188 0.1144 8806 +8808 2 247.4872 326.1681 30.0174 0.1144 8807 +8809 2 246.4428 325.7048 29.8976 0.1144 8808 +8810 2 245.3983 325.2403 29.7693 0.1144 8809 +8811 2 244.4739 325.4062 29.5464 0.1144 8810 +8812 2 243.4581 325.3181 29.3356 0.1144 8811 +8813 2 242.3301 325.2026 29.2088 0.1144 8812 +8814 2 241.193 325.2953 29.162 0.1144 8813 +8815 2 240.0684 325.3422 29.2496 0.1144 8814 +8816 2 238.9953 325.6728 29.4064 0.1144 8815 +8817 2 238.0824 326.35 29.5974 0.1144 8816 +8818 2 237.0654 326.4347 29.9298 0.1144 8817 +8819 2 235.9534 326.2333 30.2487 0.1144 8818 +8820 2 234.8929 326.5903 30.5682 0.1144 8819 +8821 2 233.8096 326.7962 30.9184 0.1144 8820 +8822 2 232.8063 326.2539 31.1772 0.1144 8821 +8823 2 231.8522 325.6224 31.4924 0.1144 8822 +8824 2 250.6607 326.9392 29.4857 0.1144 8805 +8825 2 251.6434 326.4129 29.0032 0.1144 8824 +8826 2 252.5334 325.7426 28.4676 0.1144 8825 +8827 2 253.2233 325.0379 27.7725 0.1144 8826 +8828 2 253.6134 324.038 27.1123 0.1144 8827 +8829 2 253.6706 322.9032 26.5516 0.1144 8828 +8830 2 253.7484 321.8415 25.9342 0.1144 8829 +8831 2 254.4656 321.5635 25.1378 0.1144 8830 +8832 2 255.5971 321.5795 24.4907 0.1144 8831 +8833 2 256.566 321.0236 23.9734 0.1144 8832 +8834 2 257.583 321.2169 23.3926 0.1144 8833 +8835 2 258.3175 320.7421 22.787 0.1144 8834 +8836 2 258.3541 319.6679 22.3531 0.1144 8835 +8837 2 257.7695 318.6887 22.0515 0.1144 8836 +8838 2 257.1609 317.7288 21.806 0.1144 8837 +8839 2 256.7113 316.6855 21.5867 0.1144 8838 +8840 2 256.645 315.5907 21.4201 0.1144 8839 +8841 2 257.0065 314.5119 21.2984 0.1144 8840 +8842 2 257.0751 313.4377 21.1427 0.1144 8841 +8843 2 256.3853 312.6621 20.982 0.1144 8842 +8844 2 255.4609 311.9963 20.8548 0.1144 8843 +8845 2 254.6235 311.2172 20.7512 0.1144 8844 +8846 2 253.8982 310.3363 20.6594 0.1144 8845 +8847 2 253.2999 309.3639 20.5708 0.1144 8846 +8848 2 252.5346 308.5391 20.4872 0.1144 8847 +8849 2 251.6182 307.982 20.2956 0.1144 8848 +8850 2 250.6561 307.4294 20.08 0.1144 8849 +8851 2 249.8816 306.6092 19.9125 0.1144 8850 +8852 2 248.9161 306.0578 19.6826 0.1144 8851 +8853 2 251.8768 334.1521 30.6796 0.1144 8799 +8854 2 251.1801 335.0456 30.7252 0.1144 8853 +8855 2 250.2477 335.7091 30.737 0.1144 8854 +8856 2 249.344 336.376 30.7121 0.1144 8855 +8857 2 248.8944 337.4239 30.6499 0.1144 8856 +8858 2 248.5775 338.5142 30.5446 0.1144 8857 +8859 2 247.9437 339.45 30.3814 0.1144 8858 +8860 2 247.1681 340.2553 30.1314 0.1144 8859 +8861 2 246.5171 341.1705 29.8368 0.1144 8860 +8862 2 245.6706 341.9347 29.5481 0.1144 8861 +8863 2 244.8926 342.7424 29.2107 0.1144 8862 +8864 2 244.2726 343.6645 28.8467 0.1144 8863 +8865 2 243.6377 344.5842 28.527 0.1144 8864 +8866 2 242.9078 344.7913 28.1352 0.1144 8865 +8867 2 241.948 344.4275 27.7801 0.1144 8866 +8868 2 240.8452 344.6815 27.5614 0.1144 8867 +8869 2 239.7893 345.0933 27.4878 0.1144 8868 +8870 2 239.0903 345.9868 27.4691 0.1144 8869 +8871 2 238.4268 346.9191 27.4823 0.1144 8870 +8872 2 237.7209 347.8195 27.5178 0.1144 8871 +8873 2 237.0128 348.7175 27.5477 0.1144 8872 +8874 2 236.3767 349.6682 27.5608 0.1144 8873 +8875 2 235.7475 350.6246 27.5636 0.1144 8874 +8876 2 235.1812 351.6176 27.5666 0.1144 8875 +8877 2 234.7213 352.6643 27.5709 0.1144 8876 +8878 2 234.4628 353.7786 27.5769 0.1144 8877 +8879 2 233.8508 354.7418 27.5852 0.1144 8878 +8880 2 233.2216 355.6971 27.5964 0.1144 8879 +8881 2 232.7308 356.7301 27.613 0.1144 8880 +8882 2 232.0421 357.6419 27.6368 0.1144 8881 +8883 2 231.3431 358.5479 27.6688 0.1144 8882 +8884 2 230.4462 359.256 27.709 0.1144 8883 +8885 2 229.7472 360.1587 27.7573 0.1144 8884 +8886 2 229.0311 361.0212 27.8936 0.1144 8885 +8887 2 228.3127 361.9113 28.0137 0.1144 8886 +8888 2 227.648 362.8425 28.1184 0.1144 8887 +8889 2 227.0748 363.832 28.21 0.1144 8888 +8890 2 226.6539 364.896 28.2898 0.1144 8889 +8891 2 226.7156 365.2575 28.4161 0.1144 8890 +8892 2 226.838 366.3843 28.5407 0.1144 8891 +8893 2 226.8861 367.5272 28.6502 0.1144 8892 +8894 2 227.0588 368.6574 28.7479 0.1144 8893 +8895 2 227.0909 369.8003 28.8411 0.1144 8894 +8896 2 227.124 370.9431 28.9377 0.1144 8895 +8897 2 226.5154 371.8915 29.0483 0.1144 8896 +8898 2 226.8106 372.984 29.1906 0.1144 8897 +8899 2 227.8219 373.5137 29.3748 0.1144 8898 +8900 2 228.8583 373.802 29.7086 0.1144 8899 +8901 2 229.9005 374.2447 30.1073 0.1144 8900 +8902 2 230.6167 374.9803 30.6684 0.1144 8901 +8903 2 231.0068 374.8819 31.2035 0.1144 8902 +8904 2 231.6303 374.2504 31.824 0.1144 8903 +8905 2 231.3042 373.1739 32.412 0.1144 8904 +8906 2 230.8867 372.1203 32.9412 0.1144 8905 +8907 2 230.23 371.2589 33.4765 0.1144 8906 +8908 2 229.515 370.4272 34.013 0.1144 8907 +8909 2 229.3228 369.3656 34.5358 0.1144 8908 +8910 2 229.3457 368.2319 35.0246 0.1144 8909 +8911 2 229.4166 367.2011 35.5964 0.1144 8910 +8912 2 229.5104 366.1212 36.1542 0.1144 8911 +8913 2 229.7095 365.0149 36.6691 0.1144 8912 +8914 2 229.7827 363.887 37.1112 0.1144 8913 +8915 2 230.0401 362.7841 37.4749 0.1144 8914 +8916 2 229.8353 361.7397 37.8504 0.1144 8915 +8917 2 229.7621 360.6895 38.2973 0.1144 8916 +8918 2 229.9291 359.6324 38.7923 0.1144 8917 +8919 2 230.1042 358.5147 39.2106 0.1144 8918 +8920 2 230.2517 357.3799 39.5158 0.1144 8919 +8921 2 230.3947 356.245 39.7155 0.1144 8920 +8922 2 230.5366 355.1102 39.8188 0.1144 8921 +8923 2 230.6796 353.9753 39.8482 0.1144 8922 +8924 2 230.9313 352.8599 39.825 0.1144 8923 +8925 2 231.2196 351.7548 39.7793 0.1144 8924 +8926 2 231.5113 350.6497 39.7272 0.1144 8925 +8927 2 231.8041 349.5446 39.678 0.1144 8926 +8928 2 232.0959 348.4395 39.6421 0.1144 8927 +8929 2 232.3876 347.3344 39.6346 0.1144 8928 +8930 2 232.6793 346.2293 39.6715 0.1144 8929 +8931 2 232.9722 345.1242 39.7659 0.1144 8930 +8932 2 233.2639 344.0191 39.9255 0.1144 8931 +8933 2 233.646 342.9552 40.2234 0.1144 8932 +8934 2 233.8302 341.9622 40.7677 0.1144 8933 +8935 2 233.8576 340.9475 41.494 0.1144 8934 +8936 2 233.6654 339.9053 42.3072 0.1144 8935 +8937 2 233.3108 338.8253 43.062 0.1144 8936 +8938 2 233.1346 337.6962 43.7276 0.1144 8937 +8939 2 232.9825 336.6231 44.4231 0.1144 8938 +8940 2 232.8303 335.5501 45.1307 0.1144 8939 +8941 2 232.6782 334.4759 45.8511 0.1144 8940 +8942 2 232.526 333.4028 46.5811 0.1144 8941 +8943 2 232.3739 332.3297 47.3085 0.1144 8942 +8944 2 232.8349 332.7839 48.0553 0.1144 8943 +8945 2 233.1781 333.8146 48.6819 0.1144 8944 +8946 2 233.3451 334.9449 49.1109 0.1144 8945 +8947 2 233.1907 336.0763 49.3744 0.1144 8946 +8948 2 233.042 337.21 49.506 0.1144 8947 +8949 2 232.9973 338.3529 49.539 0.1144 8948 +8950 2 233.0088 339.4969 49.5076 0.1144 8949 +8951 2 233.408 340.5665 49.4519 0.1144 8950 +8952 2 233.4 341.6842 49.3147 0.1144 8951 +8953 2 233.1941 342.763 49.0952 0.1144 8952 +8954 2 233.4469 342.1212 48.9619 0.1144 8953 +8955 2 233.8633 341.0596 48.9171 0.1144 8954 +8956 2 234.2809 339.9979 48.9457 0.1144 8955 +8957 2 234.6985 338.9363 49.0325 0.1144 8956 +8958 2 235.116 337.8758 49.1638 0.1144 8957 +8959 2 235.6663 336.8748 49.2948 0.1144 8958 +8960 2 236.3698 335.9745 49.383 0.1144 8959 +8961 2 237.0848 335.0822 49.4441 0.1144 8960 +8962 2 237.7998 334.1899 49.499 0.1144 8961 +8963 2 238.5148 333.2975 49.5667 0.1144 8962 +8964 2 239.2298 332.4064 49.6644 0.1144 8963 +8965 2 240.0112 331.5987 49.8929 0.1144 8964 +8966 2 240.8006 330.807 50.2435 0.1144 8965 +8967 2 241.5899 330.0154 50.6881 0.1144 8966 +8968 2 242.3804 329.2238 51.1988 0.1144 8967 +8969 2 243.1698 328.4321 51.7499 0.1144 8968 +8970 2 243.9603 327.6405 52.3177 0.1144 8969 +8971 2 244.7496 326.8488 52.8808 0.1144 8970 +8972 2 245.5402 326.0572 53.4338 0.1144 8971 +8973 2 246.3295 325.2655 53.9717 0.1144 8972 +8974 2 247.12 324.4739 54.4883 0.1144 8973 +8975 2 247.9105 323.6822 54.9766 0.1144 8974 +8976 2 248.6999 322.8906 55.4305 0.1144 8975 +8977 2 249.4927 322.0932 55.8345 0.1144 8976 +8978 2 250.2832 321.2684 56.1184 0.1144 8977 +8979 2 251.1274 320.4962 56.301 0.1144 8978 +8980 2 251.9786 319.732 56.4066 0.1144 8979 +8981 2 252.8309 318.9689 56.457 0.1144 8980 +8982 2 253.5333 318.0675 56.4738 0.1144 8981 +8983 2 253.8639 316.9749 56.4746 0.1144 8982 +8984 2 254.1808 315.8756 56.4746 0.1144 8983 +8985 2 254.7516 314.886 56.4746 0.1144 8984 +8986 2 255.3763 313.9273 56.4746 0.1144 8985 +8987 2 256.002 312.9698 56.4746 0.1144 8986 +8988 2 256.8337 312.1862 56.4746 0.1144 8987 +8989 2 257.6974 311.4346 56.4746 0.1144 8988 +8990 2 258.5143 310.6349 56.4746 0.1144 8989 +8991 2 258.6115 309.4943 56.4746 0.1144 8990 +8992 2 258.7087 308.3549 56.4746 0.1144 8991 +8993 2 258.806 307.2143 56.4746 0.1144 8992 +8994 2 258.9032 306.0749 56.4746 0.1144 8993 +8995 2 233.4481 343.2126 48.3974 0.1144 8953 +8996 2 234.0109 344.209 48.5125 0.1144 8995 +8997 2 234.5738 345.2043 48.5626 0.1144 8996 +8998 2 235.1355 346.2007 48.6214 0.1144 8997 +8999 2 235.6983 347.196 48.6844 0.1144 8998 +9000 2 236.2612 348.1913 48.7477 0.1144 8999 +9001 2 236.8229 349.1877 48.8082 0.1144 9000 +9002 2 237.3857 350.183 48.9255 0.1144 9001 +9003 2 232.6747 331.2612 48.0768 0.1144 8943 +9004 2 232.9836 330.1653 48.3946 0.1144 9003 +9005 2 233.2925 329.0705 48.5352 0.1144 9004 +9006 2 233.6014 327.9745 48.699 0.1144 9005 +9007 2 233.1609 327.8521 48.9255 0.1144 9006 +9008 2 232.0398 327.6233 48.9255 0.1144 9007 +9009 2 230.9095 327.7514 48.9255 0.1144 9008 +9010 2 229.7724 327.875 48.9255 0.1144 9009 +9011 2 228.7725 328.4081 48.9255 0.1144 9010 +9012 2 228.6238 329.5143 48.9255 0.1144 9011 +9013 2 234.3061 327.0959 48.8337 0.1144 9006 +9014 2 235.2682 326.4839 48.9423 0.1144 9013 +9015 2 236.2795 325.9496 49.0342 0.1144 9014 +9016 2 237.2805 325.3994 49.1229 0.1144 9015 +9017 2 238.2815 324.848 49.2125 0.1144 9016 +9018 2 239.2836 324.2977 49.3055 0.1144 9017 +9019 2 240.2846 323.7463 49.4026 0.1144 9018 +9020 2 241.2856 323.1949 49.4984 0.1144 9019 +9021 2 242.1162 322.4135 49.5793 0.1144 9020 +9022 2 242.6813 321.4194 49.6345 0.1144 9021 +9023 2 243.2419 320.4218 49.6689 0.1144 9022 +9024 2 244.2783 319.9493 49.6877 0.1144 9023 +9025 2 245.3514 319.5512 49.6978 0.1144 9024 +9026 2 230.1751 375.7136 30.9299 0.1144 8902 +9027 2 229.5379 376.6563 30.8204 0.1144 9026 +9028 2 228.7245 377.4605 30.7768 0.1144 9027 +9029 2 227.9729 378.3025 30.716 0.1144 9028 +9030 2 227.5347 379.3584 30.6317 0.1144 9029 +9031 2 227.0188 380.34 30.5141 0.1144 9030 +9032 2 226.1127 381.0241 30.338 0.1144 9031 +9033 2 225.1724 381.6578 30.1078 0.1144 9032 +9034 2 224.502 382.4735 29.7996 0.1144 9033 +9035 2 224.5226 383.5008 29.3709 0.1144 9034 +9036 2 224.6873 384.6185 28.9682 0.1144 9035 +9037 2 224.5466 385.7374 28.6289 0.1144 9036 +9038 2 224.081 386.767 28.315 0.1144 9037 +9039 2 223.477 387.7302 28.0126 0.1144 9038 +9040 2 223.0045 388.7472 27.7012 0.1144 9039 +9041 2 222.8432 389.786 27.3096 0.1144 9040 +9042 2 222.9141 390.9025 26.9683 0.1144 9041 +9043 2 223.4152 391.9092 26.7129 0.1144 9042 +9044 2 224.1222 392.8061 26.5352 0.1144 9043 +9045 2 224.8669 393.6744 26.4208 0.1144 9044 +9046 2 225.7089 394.4455 26.3535 0.1144 9045 +9047 2 226.5978 395.1662 26.3151 0.1144 9046 +9048 2 227.4261 395.9544 26.2764 0.1144 9047 +9049 2 228.0758 396.8845 26.1978 0.1144 9048 +9050 2 228.7245 397.8191 26.0844 0.1144 9049 +9051 2 229.3571 398.7709 25.9823 0.1144 9050 +9052 2 229.825 399.812 25.8976 0.1144 9051 +9053 2 230.0538 400.9285 25.8277 0.1144 9052 +9054 2 230.0298 402.0691 25.7704 0.1144 9053 +9055 2 229.8204 403.1914 25.7242 0.1144 9054 +9056 2 229.3468 404.221 25.6433 0.1144 9055 +9057 2 228.8984 405.2677 25.5356 0.1144 9056 +9058 2 228.5552 406.358 25.4463 0.1144 9057 +9059 2 228.1319 407.4196 25.3786 0.1144 9058 +9060 2 228.0598 408.5544 25.3301 0.1144 9059 +9061 2 228.5174 409.592 25.2994 0.1144 9060 +9062 2 229.2805 410.4409 25.2858 0.1144 9061 +9063 2 229.9394 411.3755 25.2858 0.1144 9062 +9064 2 230.4828 412.3754 25.2571 0.1144 9063 +9065 2 230.8306 413.4588 25.2179 0.1144 9064 +9066 2 231.6177 414.2847 25.2224 0.1144 9065 +9067 2 231.7035 414.8487 24.7439 0.1144 9066 +9068 2 232.1268 415.9035 24.5796 0.1144 9067 +9069 2 232.47 416.972 24.467 0.1144 9068 +9070 2 233.4767 417.385 24.3662 0.1144 9069 +9071 2 234.615 417.3106 24.2888 0.1144 9070 +9072 2 235.7578 417.2706 24.2333 0.1144 9071 +9073 2 236.5769 418.0542 24.1816 0.1144 9072 +9074 2 232.5272 413.6921 25.4824 0.1144 9066 +9075 2 233.1461 412.7689 25.7414 0.1144 9074 +9076 2 233.4984 411.6913 26.0205 0.1144 9075 +9077 2 233.6666 410.5724 26.2921 0.1144 9076 +9078 2 233.9858 409.5165 26.5509 0.1144 9077 +9079 2 234.8129 409.2431 26.7883 0.1144 9078 +9080 2 235.9283 409.409 26.9599 0.1144 9079 +9081 2 236.8458 408.8976 27.0896 0.1144 9080 +9082 2 237.5367 408.0019 27.227 0.1144 9081 +9083 2 238.2586 407.1302 27.3769 0.1144 9082 +9084 2 239.0708 406.3385 27.5259 0.1144 9083 +9085 2 239.7504 405.4359 27.6377 0.1144 9084 +9086 2 240.2343 404.42 27.6474 0.1144 9085 +9087 2 240.6873 403.4041 27.5405 0.1144 9086 +9088 2 241.2021 402.3871 27.446 0.1144 9087 +9089 2 241.9468 401.5257 27.3877 0.1144 9088 +9090 2 242.965 401.0315 27.3708 0.1144 9089 +9091 2 243.6949 400.1723 27.3977 0.1144 9090 +9092 2 244.7645 399.8326 27.4648 0.1144 9091 +9093 2 245.8067 399.7662 28.1182 0.1144 9092 +9094 2 227.3894 373.6579 29.9516 0.1144 8899 +9095 2 226.7831 374.5605 30.7549 0.1144 9094 +9096 2 225.6757 374.843 31.0489 0.1144 9095 +9097 2 224.5912 374.8671 31.4157 0.1144 9096 +9098 2 223.787 374.2871 31.9861 0.1144 9097 +9099 2 222.8878 373.9095 32.7051 0.1144 9098 +9100 2 221.8616 373.4897 33.4219 0.1144 9099 +9101 2 221.0219 372.8319 34.1004 0.1144 9100 +9102 2 220.5117 371.8343 34.7136 0.1144 9101 +9103 2 220.1376 370.767 35.2453 0.1144 9102 +9104 2 219.7773 369.6939 35.6958 0.1144 9103 +9105 2 219.4158 368.622 36.0914 0.1144 9104 +9106 2 219.0554 367.55 36.4566 0.1144 9105 +9107 2 218.9856 366.4667 36.7945 0.1144 9106 +9108 2 219.7246 365.6956 37.0857 0.1144 9107 +9109 2 220.6936 365.0927 37.3276 0.1144 9108 +9110 2 221.666 364.4933 37.5312 0.1144 9109 +9111 2 221.4223 364.9177 37.7202 0.1144 9110 +9112 2 220.8801 365.9038 37.8288 0.1144 9111 +9113 2 220.6421 366.9941 37.9548 0.1144 9112 +9114 2 220.6364 368.1289 38.0624 0.1144 9113 +9115 2 220.7909 369.2615 38.1352 0.1144 9114 +9116 2 221.0963 370.362 38.18 0.1144 9115 +9117 2 221.4521 371.4488 38.2035 0.1144 9116 +9118 2 221.7678 372.5482 38.2144 0.1144 9117 +9119 2 221.9337 373.6773 38.2088 0.1144 9118 +9120 2 222.0687 374.8133 38.1965 0.1144 9119 +9121 2 221.7907 375.9047 38.1783 0.1144 9120 +9122 2 221.7747 377.0349 38.1525 0.1144 9121 +9123 2 221.9646 378.1618 38.1181 0.1144 9122 +9124 2 221.8616 379.2909 38.0741 0.1144 9123 +9125 2 222.119 380.388 38.0131 0.1144 9124 +9126 2 222.2037 381.5057 37.8812 0.1144 9125 +9127 2 222.2014 382.6463 37.749 0.1144 9126 +9128 2 222.4554 383.7571 37.6289 0.1144 9127 +9129 2 222.7734 384.8553 37.5144 0.1144 9128 +9130 2 222.9381 385.9856 37.394 0.1144 9129 +9131 2 223.1669 387.0884 37.2103 0.1144 9130 +9132 2 223.7504 388.0482 37.0849 0.1144 9131 +9133 2 223.8911 389.1476 36.8934 0.1144 9132 +9134 2 223.7653 390.2276 36.591 0.1144 9133 +9135 2 223.8167 391.3635 36.3084 0.1144 9134 +9136 2 223.9174 392.503 36.0772 0.1144 9135 +9137 2 224.0204 393.6424 35.8946 0.1144 9136 +9138 2 224.1222 394.7818 35.7451 0.1144 9137 +9139 2 224.224 395.9201 35.6328 0.1144 9138 +9140 2 224.3258 397.0595 35.5443 0.1144 9139 +9141 2 224.4276 398.1989 35.4578 0.1144 9140 +9142 2 224.5294 399.3384 35.3702 0.1144 9141 +9143 2 224.5603 400.4618 35.2204 0.1144 9142 +9144 2 224.1554 401.5303 35.0896 0.1144 9143 +9145 2 223.7161 402.5862 34.9924 0.1144 9144 +9146 2 223.2779 403.6432 34.9247 0.1144 9145 +9147 2 222.8386 404.6992 34.8816 0.1144 9146 +9148 2 222.4005 405.7562 34.8592 0.1144 9147 +9149 2 221.9612 406.8121 34.8527 0.1144 9148 +9150 2 221.5219 407.8692 34.8468 0.1144 9149 +9151 2 221.0837 408.9262 34.839 0.1144 9150 +9152 2 220.6444 409.9821 34.8286 0.1144 9151 +9153 2 220.2063 411.0392 34.8149 0.1144 9152 +9154 2 219.767 412.0951 34.7908 0.1144 9153 +9155 2 219.3288 413.1522 34.7589 0.1144 9154 +9156 2 218.8895 414.2081 34.7206 0.1144 9155 +9157 2 218.4514 415.2651 34.6777 0.1144 9156 +9158 2 218.0121 416.321 34.6321 0.1144 9157 +9159 2 217.6963 417.3964 34.3042 0.1144 9158 +9160 2 226.0761 364.5345 28.1182 0.1144 8890 +9161 2 225.201 363.8092 27.8173 0.1144 9160 +9162 2 224.2835 363.1456 27.72 0.1144 9161 +9163 2 223.3305 362.632 27.5123 0.1144 9162 +9164 2 222.476 361.973 27.2122 0.1144 9163 +9165 2 221.5768 361.2844 26.9495 0.1144 9164 +9166 2 220.9361 360.3714 26.7578 0.1144 9165 +9167 2 220.4797 359.3293 26.6651 0.1144 9166 +9168 2 219.6709 358.5719 26.6021 0.1144 9167 +9169 2 219.0314 357.6441 26.5893 0.1144 9168 +9170 2 218.5532 356.6065 26.6165 0.1144 9169 +9171 2 218.1288 355.5438 26.6576 0.1144 9170 +9172 2 217.9377 354.4215 26.7166 0.1144 9171 +9173 2 217.4801 353.4628 26.9065 0.1144 9172 +9174 2 216.7205 352.6243 27.0717 0.1144 9173 +9175 2 216.105 351.6633 27.1876 0.1144 9174 +9176 2 216.0593 350.5582 27.1765 0.1144 9175 +9177 2 216.2023 350.1578 27.1517 0.1144 9176 +9178 2 216.3979 349.047 27.1169 0.1144 9177 +9179 2 216.5146 347.9144 27.0769 0.1144 9178 +9180 2 217.0179 346.9352 27.0538 0.1144 9179 +9181 2 217.884 346.1996 27.0499 0.1144 9180 +9182 2 218.7339 345.4605 27.097 0.1144 9181 +9183 2 219.2956 344.4962 27.1481 0.1144 9182 +9184 2 219.7418 343.4425 27.1629 0.1144 9183 +9185 2 220.244 342.4267 27.105 0.1144 9184 +9186 2 220.8332 341.4806 26.9444 0.1144 9185 +9187 2 221.5322 340.5917 26.7644 0.1144 9186 +9188 2 222.2678 339.7154 26.6126 0.1144 9187 +9189 2 222.913 338.775 26.4946 0.1144 9188 +9190 2 223.4312 337.7568 26.4117 0.1144 9189 +9191 2 223.7675 336.6689 26.3572 0.1144 9190 +9192 2 223.6852 335.5535 26.3172 0.1144 9191 +9193 2 223.5021 334.4255 26.2718 0.1144 9192 +9194 2 223.1761 333.3353 26.2121 0.1144 9193 +9195 2 223.0159 332.2153 26.1346 0.1144 9194 +9196 2 222.7013 331.1491 25.9794 0.1144 9195 +9197 2 222.5412 330.0371 25.7947 0.1144 9196 +9198 2 223.0514 329.0819 25.6035 0.1144 9197 +9199 2 223.8408 328.2559 25.3984 0.1144 9198 +9200 2 224.5947 327.4208 25.1098 0.1144 9199 +9201 2 225.4218 326.6383 24.8089 0.1144 9200 +9202 2 225.8885 325.7105 24.3787 0.1144 9201 +9203 2 226.7694 325.1786 23.8488 0.1144 9202 +9204 2 227.7876 324.7576 23.3124 0.1144 9203 +9205 2 228.8389 325.0825 22.8225 0.1144 9204 +9206 2 229.0071 325.1111 22.4912 0.1144 9205 +9207 2 230.1442 325.2369 22.2975 0.1144 9206 +9208 2 231.2756 325.4039 22.2275 0.1144 9207 +9209 2 231.9403 324.5276 22.2444 0.1144 9208 +9210 2 232.2789 324.4796 22.3652 0.1144 9209 +9211 2 233.3325 324.2634 22.605 0.1144 9210 +9212 2 233.8965 323.5289 22.8007 0.1144 9211 +9213 2 233.686 322.4215 22.9531 0.1144 9212 +9214 2 233.4046 321.321 23.0637 0.1144 9213 +9215 2 233.6895 320.328 23.1777 0.1144 9214 +9216 2 233.797 319.3453 23.2784 0.1144 9215 +9217 2 233.8096 318.2482 23.3148 0.1144 9216 +9218 2 234.5314 317.4497 23.2828 0.1144 9217 +9219 2 235.3265 316.6398 23.2341 0.1144 9218 +9220 2 236.2017 315.9122 23.1923 0.1144 9219 +9221 2 237.1855 315.3322 23.16 0.1144 9220 +9222 2 238.2391 314.8917 23.1463 0.1144 9221 +9223 2 239.2665 314.3929 23.1592 0.1144 9222 +9224 2 240.0924 313.6207 23.1921 0.1144 9223 +9225 2 240.8681 312.7799 23.2331 0.1144 9224 +9226 2 241.71 312.0363 23.34 0.1144 9225 +9227 2 242.2592 311.0616 23.4456 0.1144 9226 +9228 2 241.6334 310.2677 23.6191 0.1144 9227 +9229 2 232.0993 324.602 21.9321 0.1144 9209 +9230 2 232.836 325.4154 21.2408 0.1144 9229 +9231 2 233.5693 326.278 20.9739 0.1144 9230 +9232 2 234.1665 327.0639 20.5326 0.1144 9231 +9233 2 234.9765 327.8178 20.1281 0.1144 9232 +9234 2 235.7018 328.6735 19.7382 0.1144 9233 +9235 2 236.125 329.7248 19.4374 0.1144 9234 +9236 2 236.4293 330.8265 19.2306 0.1144 9235 +9237 2 235.8676 331.7783 19.0984 0.1144 9236 +9238 2 235.0794 332.6066 19.0227 0.1144 9237 +9239 2 234.329 333.4691 18.9663 0.1144 9238 +9240 2 233.5465 334.2951 18.8789 0.1144 9239 +9241 2 232.8257 335.1771 18.7679 0.1144 9240 +9242 2 232.1199 336.0775 18.681 0.1144 9241 +9243 2 231.1955 336.7513 18.5578 0.1144 9242 +9244 2 215.7847 350.7538 26.9934 0.1144 9176 +9245 2 214.7288 351.1725 26.7796 0.1144 9244 +9246 2 213.5951 351.2755 26.7051 0.1144 9245 +9247 2 212.5346 351.6221 26.5406 0.1144 9246 +9248 2 211.6514 352.3303 26.3658 0.1144 9247 +9249 2 211.0428 353.2912 26.1954 0.1144 9248 +9250 2 210.2661 354.1275 26.0301 0.1144 9249 +9251 2 209.4698 354.7819 25.7076 0.1144 9250 +9252 2 208.7022 355.5964 25.3722 0.1144 9251 +9253 2 207.8614 356.3709 25.1223 0.1144 9252 +9254 2 207.1143 357.238 24.9412 0.1144 9253 +9255 2 206.4657 358.1795 24.8214 0.1144 9254 +9256 2 205.7713 359.089 24.7439 0.1144 9255 +9257 2 252.975 334.8591 30.3937 0.1144 8797 +9258 2 254.0927 334.6189 30.5418 0.1144 9257 +9259 2 255.2092 334.3786 30.6065 0.1144 9258 +9260 2 256.3269 334.1384 30.6835 0.1144 9259 +9261 2 257.4446 333.8981 30.7692 0.1144 9260 +9262 2 258.3964 333.349 30.7944 0.1144 9261 +9263 2 259.3906 332.8628 30.8658 0.1144 9262 +9264 2 260.4636 332.483 30.9543 0.1144 9263 +9265 2 261.4029 331.8412 31.0433 0.1144 9264 +9266 2 261.928 330.8425 31.1422 0.1144 9265 +9267 2 262.365 329.7855 31.2595 0.1144 9266 +9268 2 262.7368 328.7032 31.4023 0.1144 9267 +9269 2 263.7309 328.2468 31.6123 0.1144 9268 +9270 2 264.8383 328.1244 31.9169 0.1144 9269 +9271 2 265.9468 328.0157 32.289 0.1144 9270 +9272 2 267.0554 327.907 32.6964 0.1144 9271 +9273 2 268.149 327.6656 33.1013 0.1144 9272 +9274 2 268.7931 326.7207 33.4004 0.1144 9273 +9275 2 269.4109 325.7586 33.6025 0.1144 9274 +9276 2 269.9245 324.7358 33.7274 0.1144 9275 +9277 2 270.437 323.7131 33.7999 0.1144 9276 +9278 2 270.9507 322.6915 33.845 0.1144 9277 +9279 2 271.4895 321.6814 33.887 0.1144 9278 +9280 2 272.0912 320.7101 33.9503 0.1144 9279 +9281 2 272.6918 319.7388 34.0278 0.1144 9280 +9282 2 273.2936 318.7664 34.1121 0.1144 9281 +9283 2 273.8953 317.7952 34.3042 0.1144 9282 +9284 2 266.5154 367.3533 28.6804 0.1144 8731 +9285 2 265.3943 367.2904 28.5522 0.1144 9284 +9286 2 264.3361 367.6519 28.5104 0.1144 9285 +9287 2 263.8041 368.6311 28.39 0.1144 9286 +9288 2 263.0045 369.4479 28.2926 0.1144 9287 +9289 2 262.1682 370.2293 28.2187 0.1144 9288 +9290 2 261.3651 371.045 28.166 0.1144 9289 +9291 2 260.435 371.7108 28.1333 0.1144 9290 +9292 2 259.5965 372.4875 28.1182 0.1144 9291 +9293 2 258.6504 373.1316 28.1182 0.1144 9292 +9294 2 277.7209 401.0635 21.3126 0.1144 8680 +9295 2 278.5915 400.3577 21.1814 0.1144 9294 +9296 2 279.5444 399.7433 21.1144 0.1144 9295 +9297 2 280.4733 399.0764 21.079 0.1144 9296 +9298 2 281.4183 398.4323 21.0751 0.1144 9297 +9299 2 282.3564 397.7917 21.1334 0.1144 9298 +9300 2 283.2979 397.1568 21.2479 0.1144 9299 +9301 2 284.2668 396.5516 21.3788 0.1144 9300 +9302 2 285.2656 396.0093 21.5349 0.1144 9301 +9303 2 286.254 395.4488 21.6851 0.1144 9302 +9304 2 287.1852 394.7864 21.7923 0.1144 9303 +9305 2 288.1713 394.235 21.86 0.1144 9304 +9306 2 289.2753 394.1583 21.8972 0.1144 9305 +9307 2 290.2923 393.8598 21.9137 0.1144 9306 +9308 2 291.2601 393.2523 21.9142 0.1144 9307 +9309 2 292.3435 392.9937 21.9071 0.1144 9308 +9310 2 293.4863 392.9571 21.8973 0.1144 9309 +9311 2 294.6097 392.7787 21.8835 0.1144 9310 +9312 2 295.7023 392.4423 21.8635 0.1144 9311 +9313 2 296.7959 392.1094 21.8356 0.1144 9312 +9314 2 297.9022 391.8189 21.7987 0.1144 9313 +9315 2 299.0038 391.51 21.7518 0.1144 9314 +9316 2 300.109 391.2297 21.6711 0.1144 9315 +9317 2 300.8251 390.4449 21.5412 0.1144 9316 +9318 2 301.3433 389.429 21.4097 0.1144 9317 +9319 2 302.0549 388.5447 21.2919 0.1144 9318 +9320 2 302.8934 387.7737 21.1577 0.1144 9319 +9321 2 303.7743 387.0541 21.0004 0.1144 9320 +9322 2 304.5648 386.2338 20.8609 0.1144 9321 +9323 2 305.2295 385.3049 20.7428 0.1144 9322 +9324 2 305.8255 384.3291 20.6338 0.1144 9323 +9325 2 305.9239 383.2206 20.5291 0.1144 9324 +9326 2 305.6905 382.1097 20.3923 0.1144 9325 +9327 2 305.5063 381.0286 20.1583 0.1144 9326 +9328 2 305.1082 379.9659 19.9559 0.1144 9327 +9329 2 304.4173 379.069 19.765 0.1144 9328 +9330 2 303.6039 378.2728 19.6018 0.1144 9329 +9331 2 302.8019 377.4571 19.5135 0.1144 9330 +9332 2 302.5891 376.3405 19.5002 0.1144 9331 +9333 2 302.2928 375.2389 19.5778 0.1144 9332 +9334 2 301.7208 374.2596 19.7312 0.1144 9333 +9335 2 302.3386 373.675 19.9897 0.1144 9334 +9336 2 302.9598 372.7369 20.2492 0.1144 9335 +9337 2 303.6348 371.8172 20.4458 0.1144 9336 +9338 2 304.3715 370.9431 20.5723 0.1144 9337 +9339 2 305.2764 370.2545 20.6316 0.1144 9338 +9340 2 306.3323 369.8289 20.6292 0.1144 9339 +9341 2 307.418 369.4674 20.5741 0.1144 9340 +9342 2 308.4453 368.9697 20.4841 0.1144 9341 +9343 2 309.4406 368.4058 20.3675 0.1144 9342 +9344 2 310.5502 368.2136 20.198 0.1144 9343 +9345 2 311.589 368.0031 19.8755 0.1144 9344 +9346 2 312.5969 367.5192 19.5268 0.1144 9345 +9347 2 313.1185 366.5513 19.164 0.1144 9346 +9348 2 313.3336 365.4325 18.8767 0.1144 9347 +9349 2 313.5487 364.3091 18.6676 0.1144 9348 +9350 2 313.7534 363.1834 18.5257 0.1144 9349 +9351 2 313.8129 362.0428 18.4348 0.1144 9350 +9352 2 313.7775 360.8988 18.3609 0.1144 9351 +9353 2 313.5315 359.7834 18.2855 0.1144 9352 +9354 2 313.0213 358.763 18.1843 0.1144 9353 +9355 2 312.0924 358.1521 17.9872 0.1144 9354 +9356 2 311.1497 357.5057 17.7722 0.1144 9355 +9357 2 310.3752 356.666 17.5529 0.1144 9356 +9358 2 309.6488 355.8034 17.271 0.1144 9357 +9359 2 309.1466 354.8368 16.8952 0.1144 9358 +9360 2 308.6466 353.8689 16.4678 0.1144 9359 +9361 2 308.3149 352.7753 15.7461 0.1144 9360 +9362 2 301.0173 373.4142 19.6826 0.1144 9334 +9363 2 300.7004 372.3285 19.7703 0.1144 9362 +9364 2 300.5528 371.1937 19.8056 0.1144 9363 +9365 2 300.6638 370.0794 19.8571 0.1144 9364 +9366 2 301.2896 369.1631 19.9273 0.1144 9365 +9367 2 302.1842 368.4572 20.0168 0.1144 9366 +9368 2 303.1383 367.8257 20.124 0.1144 9367 +9369 2 304.0146 367.264 20.3752 0.1144 9368 +9370 2 304.6506 366.4266 20.6929 0.1144 9369 +9371 2 304.9973 365.3467 20.9577 0.1144 9370 +9372 2 305.3805 364.2713 21.157 0.1144 9371 +9373 2 306.1527 363.4591 21.2962 0.1144 9372 +9374 2 306.5394 362.4238 21.3817 0.1144 9373 +9375 2 306.727 361.2958 21.4206 0.1144 9374 +9376 2 306.4879 360.1941 21.4475 0.1144 9375 +9377 2 305.8198 359.2812 21.48 0.1144 9376 +9378 2 305.0156 358.4678 21.5186 0.1144 9377 +9379 2 304.2354 357.6327 21.5616 0.1144 9378 +9380 2 304.0031 356.5196 21.6255 0.1144 9379 +9381 2 303.3796 355.5792 21.9321 0.1144 9380 +9382 2 250.3244 420.2576 19.6826 0.1144 8642 +9383 2 249.6929 419.308 19.3655 0.1144 9382 +9384 2 249.0534 418.3619 19.2502 0.1144 9383 +9385 2 248.3475 417.5348 18.9973 0.1144 9384 +9386 2 247.9574 416.4709 18.7453 0.1144 9385 +9387 2 248.1107 415.3486 18.528 0.1144 9386 +9388 2 247.7092 414.295 18.2968 0.1144 9387 +9389 2 247.1967 413.3352 18.0157 0.1144 9388 +9390 2 246.6418 412.3479 17.8254 0.1144 9389 +9391 2 246.2082 411.3252 17.7214 0.1144 9390 +9392 2 245.3228 410.6205 17.6784 0.1144 9391 +9393 2 244.2703 410.1743 17.6883 0.1144 9392 +9394 2 243.2041 409.7602 17.7462 0.1144 9393 +9395 2 242.1676 409.4101 17.8944 0.1144 9394 +9396 2 241.1209 409.2168 18.1403 0.1144 9395 +9397 2 240.391 408.5041 18.3462 0.1144 9396 +9398 2 239.7641 407.5672 18.5166 0.1144 9397 +9399 2 239.3809 406.5307 18.6576 0.1144 9398 +9400 2 239.0685 405.4336 18.7748 0.1144 9399 +9401 2 238.4222 404.5241 18.9067 0.1144 9400 +9402 2 237.7003 403.6455 19.0605 0.1144 9401 +9403 2 236.9979 402.7441 19.2148 0.1144 9402 +9404 2 236.4637 401.7602 19.4294 0.1144 9403 +9405 2 235.4546 401.8311 19.6295 0.1144 9404 +9406 2 234.6436 402.561 19.804 0.1144 9405 +9407 2 233.6872 402.871 19.9636 0.1144 9406 +9408 2 232.5855 402.6502 20.1692 0.1144 9407 +9409 2 231.4747 402.6983 20.386 0.1144 9408 +9410 2 230.413 403.0884 20.6202 0.1144 9409 +9411 2 229.3102 403.3321 20.8798 0.1144 9410 +9412 2 228.3275 403.7908 21.217 0.1144 9411 +9413 2 227.2476 403.681 21.5418 0.1144 9412 +9414 2 226.4823 402.9122 21.8678 0.1144 9413 +9415 2 225.6014 402.1892 22.1123 0.1144 9414 +9416 2 224.6072 401.6309 22.2551 0.1144 9415 +9417 2 224.041 400.6631 22.2981 0.1144 9416 +9418 2 223.9449 399.5248 22.3323 0.1144 9417 +9419 2 223.5445 398.4541 22.3866 0.1144 9418 +9420 2 222.9782 397.4599 22.4729 0.1144 9419 +9421 2 222.4657 397.5446 22.66 0.1144 9420 +9422 2 221.3903 397.7219 22.9855 0.1144 9421 +9423 2 220.3321 397.9587 23.3927 0.1144 9422 +9424 2 219.394 398.5421 23.7963 0.1144 9423 +9425 2 218.7774 399.4551 24.0979 0.1144 9424 +9426 2 218.5555 400.559 24.2524 0.1144 9425 +9427 2 217.837 401.3335 24.2961 0.1144 9426 +9428 2 216.7308 401.5474 24.2864 0.1144 9427 +9429 2 215.6257 401.3438 24.2504 0.1144 9428 +9430 2 214.5549 400.9812 24.2381 0.1144 9429 +9431 2 213.4407 400.8851 24.2387 0.1144 9430 +9432 2 212.3882 401.1974 24.1978 0.1144 9431 +9433 2 211.4101 401.7888 24.1572 0.1144 9432 +9434 2 210.3404 401.9707 24.1088 0.1144 9433 +9435 2 209.2079 401.8106 24.0496 0.1144 9434 +9436 2 208.1108 401.9684 23.9748 0.1144 9435 +9437 2 207.0857 402.4695 23.8849 0.1144 9436 +9438 2 206.1088 403.0621 23.7667 0.1144 9437 +9439 2 205.1055 403.5895 23.582 0.1144 9438 +9440 2 204.1697 404.221 23.3665 0.1144 9439 +9441 2 203.1961 404.5276 23.0376 0.1144 9440 +9442 2 202.1517 404.8845 22.7053 0.1144 9441 +9443 2 201.0626 405.1247 22.3576 0.1144 9442 +9444 2 200.2252 404.4177 22.0766 0.1144 9443 +9445 2 199.1624 404.0414 21.8032 0.1144 9444 +9446 2 198.0241 403.9487 21.592 0.1144 9445 +9447 2 199.0148 404.4726 21.4526 0.1144 9446 +9448 2 199.8671 405.2242 21.3558 0.1144 9447 +9449 2 200.6198 406.0845 21.285 0.1144 9448 +9450 2 200.7148 407.1759 21.2217 0.1144 9449 +9451 2 200.5272 408.3028 21.1614 0.1144 9450 +9452 2 200.1234 409.3701 21.0917 0.1144 9451 +9453 2 199.4701 410.291 20.9631 0.1144 9452 +9454 2 198.8627 411.2165 20.7429 0.1144 9453 +9455 2 197.9692 411.9064 20.5506 0.1144 9454 +9456 2 197.1032 412.6534 20.4015 0.1144 9455 +9457 2 196.3893 413.5446 20.2917 0.1144 9456 +9458 2 195.6343 414.4026 20.2164 0.1144 9457 +9459 2 194.7626 415.1427 20.1684 0.1144 9458 +9460 2 193.765 415.6976 20.1331 0.1144 9459 +9461 2 192.8784 416.416 20.0892 0.1144 9460 +9462 2 191.8053 416.7867 20.0316 0.1144 9461 +9463 2 190.7185 417.147 19.9581 0.1144 9462 +9464 2 189.61 417.2992 19.7871 0.1144 9463 +9465 2 188.8836 416.1369 19.6826 0.1144 9464 +9466 2 188.5564 415.0421 19.6826 0.1144 9465 +9467 2 188.657 413.9026 19.6826 0.1144 9466 +9468 2 188.8412 412.7735 19.6826 0.1144 9467 +9469 2 188.8035 411.6306 19.6826 0.1144 9468 +9470 2 189.5471 417.7922 19.6243 0.1144 9464 +9471 2 189.3286 418.9134 19.4637 0.1144 9470 +9472 2 188.8389 419.9086 19.2502 0.1144 9471 +9473 2 188.3264 420.9142 19.0183 0.1144 9472 +9474 2 187.5279 421.6658 18.8004 0.1144 9473 +9475 2 186.5006 422.1383 18.5397 0.1144 9474 +9476 2 185.4115 422.0605 18.1796 0.1144 9475 +9477 2 184.3865 422.5147 17.8384 0.1144 9476 +9478 2 183.3752 423.0478 17.5298 0.1144 9477 +9479 2 182.587 423.7273 17.0894 0.1144 9478 +9480 2 181.8697 424.4984 16.5641 0.1144 9479 +9481 2 181.2474 425.4467 16.1246 0.1144 9480 +9482 2 180.3161 426.0828 15.7472 0.1144 9481 +9483 2 179.2682 426.5404 15.4777 0.1144 9482 +9484 2 178.337 427.2028 15.3067 0.1144 9483 +9485 2 177.2411 427.5288 15.2242 0.1144 9484 +9486 2 176.1634 427.9121 15.1838 0.1144 9485 +9487 2 196.8035 403.3755 21.2454 0.1144 9446 +9488 2 195.8963 402.68 21.1951 0.1144 9487 +9489 2 195.1653 401.8025 21.1266 0.1144 9488 +9490 2 194.1562 401.3392 21.0346 0.1144 9489 +9491 2 193.098 401.7614 20.9047 0.1144 9490 +9492 2 192.0158 401.79 20.6716 0.1144 9491 +9493 2 190.9473 401.393 20.4272 0.1144 9492 +9494 2 189.9532 400.9331 20.1287 0.1144 9493 +9495 2 189.0975 400.2273 19.7295 0.1144 9494 +9496 2 188.1491 400.1575 19.2462 0.1144 9495 +9497 2 187.3083 400.8828 18.7521 0.1144 9496 +9498 2 186.5075 401.6287 18.2311 0.1144 9497 +9499 2 186.4892 401.1116 17.637 0.1144 9498 +9500 2 187.2888 400.3245 17.1718 0.1144 9499 +9501 2 188.2898 399.8337 16.3086 0.1144 9500 +9502 2 222.4188 396.301 22.352 0.1144 9420 +9503 2 221.8891 395.2966 22.5211 0.1144 9502 +9504 2 221.4841 394.2338 22.6811 0.1144 9503 +9505 2 221.1341 393.2031 22.911 0.1144 9504 +9506 2 220.5666 392.2787 23.1872 0.1144 9505 +9507 2 219.8093 391.4253 23.4045 0.1144 9506 +9508 2 218.9627 390.6566 23.5686 0.1144 9507 +9509 2 217.9743 390.1223 23.6925 0.1144 9508 +9510 2 216.8589 390.0376 23.7867 0.1144 9509 +9511 2 215.9277 389.6178 23.9122 0.1144 9510 +9512 2 215.4072 388.6282 24.0335 0.1144 9511 +9513 2 214.7128 387.7348 24.1385 0.1144 9512 +9514 2 213.6809 387.3195 24.231 0.1144 9513 +9515 2 212.8355 386.5931 24.3158 0.1144 9514 +9516 2 212.2177 385.6344 24.3968 0.1144 9515 +9517 2 211.5942 384.6757 24.4776 0.1144 9516 +9518 2 210.7031 384.0133 24.6383 0.1144 9517 +9519 2 209.8096 383.3075 24.8031 0.1144 9518 +9520 2 208.9367 382.6016 25.0289 0.1144 9519 +9521 2 208.0227 381.9164 25.2247 0.1144 9520 +9522 2 207.5216 380.9154 25.4389 0.1144 9521 +9523 2 206.9759 379.9132 25.6185 0.1144 9522 +9524 2 206.6373 378.8207 25.7386 0.1144 9523 +9525 2 205.9349 377.9193 25.8686 0.1144 9524 +9526 2 254.4496 430.9562 24.2027 0.1144 8100 +9527 2 253.5676 431.1027 24.9308 0.1144 9526 +9528 2 252.5266 430.9826 25.138 0.1144 9527 +9529 2 251.4329 430.9059 25.2911 0.1144 9528 +9530 2 250.2935 430.9059 25.4648 0.1144 9529 +9531 2 249.1518 430.9059 25.6479 0.1144 9530 +9532 2 248.0169 430.9059 25.8564 0.1144 9531 +9533 2 246.8901 430.9059 26.0993 0.1144 9532 +9534 2 245.7518 430.9059 26.3453 0.1144 9533 +9535 2 244.6078 430.9059 26.5558 0.1144 9534 +9536 2 243.4855 430.9059 26.7948 0.1144 9535 +9537 2 242.3633 430.891 27.0614 0.1144 9536 +9538 2 241.2753 430.5936 27.2814 0.1144 9537 +9539 2 240.1473 430.4826 27.4426 0.1144 9538 +9540 2 239.0445 430.6954 27.5131 0.1144 9539 +9541 2 237.9234 430.5375 27.5979 0.1144 9540 +9542 2 236.8972 430.1886 27.7897 0.1144 9541 +9543 2 235.9168 429.6063 27.9404 0.1144 9542 +9544 2 235.4032 428.5916 28.0574 0.1144 9543 +9545 2 234.8609 427.5849 28.1453 0.1144 9544 +9546 2 234.3164 426.5782 28.2055 0.1144 9545 +9547 2 233.9034 425.5119 28.2313 0.1144 9546 +9548 2 233.3634 424.5041 28.2307 0.1144 9547 +9549 2 233.3543 423.3658 28.2282 0.1144 9548 +9550 2 233.9629 422.3991 28.2246 0.1144 9549 +9551 2 234.79 421.7516 28.2195 0.1144 9550 +9552 2 235.6651 421.0298 28.2125 0.1144 9551 +9553 2 236.2554 420.0539 28.2027 0.1144 9552 +9554 2 236.7886 419.0541 28.189 0.1144 9553 +9555 2 237.5825 418.235 28.17 0.1144 9554 +9556 2 238.4885 417.5383 28.1436 0.1144 9555 +9557 2 239.4152 416.8679 28.1056 0.1144 9556 +9558 2 240.3304 416.1815 28.0515 0.1144 9557 +9559 2 241.2181 415.4596 27.9797 0.1144 9558 +9560 2 242.0487 414.6737 27.8881 0.1144 9559 +9561 2 242.8243 413.85 27.7431 0.1144 9560 +9562 2 243.5828 413.0412 27.4901 0.1144 9561 +9563 2 244.3641 412.2152 27.2177 0.1144 9562 +9564 2 245.1672 411.4018 26.9702 0.1144 9563 +9565 2 246.0069 410.6331 26.7201 0.1144 9564 +9566 2 246.8455 409.8883 26.412 0.1144 9565 +9567 2 247.6771 409.1322 26.0785 0.1144 9566 +9568 2 248.5031 408.3405 25.7818 0.1144 9567 +9569 2 249.3371 407.5569 25.4932 0.1144 9568 +9570 2 250.1894 406.8018 25.1769 0.1144 9569 +9571 2 251.1503 406.3774 24.7736 0.1144 9570 +9572 2 252.1559 406.16 24.2436 0.1144 9571 +9573 2 252.9292 405.5091 23.5852 0.1144 9572 +9574 2 253.8353 404.9039 22.9613 0.1144 9573 +9575 2 254.9175 404.7964 22.3893 0.1144 9574 +9576 2 256.0306 404.7609 21.8545 0.1144 9575 +9577 2 257.0522 404.507 21.3104 0.1144 9576 +9578 2 258.0853 404.841 20.8998 0.1144 9577 +9579 2 259.1377 405.2906 20.6241 0.1144 9578 +9580 2 260.2577 405.4965 20.4398 0.1144 9579 +9581 2 261.2427 404.9966 20.3266 0.1144 9580 +9582 2 261.9497 404.1088 20.2655 0.1144 9581 +9583 2 262.8637 403.4339 20.23 0.1144 9582 +9584 2 263.732 402.6903 20.1874 0.1144 9583 +9585 2 264.7022 402.0897 20.1312 0.1144 9584 +9586 2 265.6437 401.4399 20.0621 0.1144 9585 +9587 2 266.5394 400.7295 19.9818 0.1144 9586 +9588 2 267.3654 400.1369 19.7203 0.1144 9587 +9589 2 268.3778 399.6061 19.5099 0.1144 9588 +9590 2 269.444 399.1919 19.3597 0.1144 9589 +9591 2 270.596 399.2903 20.0352 0.1144 9590 +9592 2 271.4712 399.9149 20.344 0.1144 9591 +9593 2 272.3612 400.6288 20.5999 0.1144 9592 +9594 2 273.3657 401.1665 20.8113 0.1144 9593 +9595 2 274.4445 401.5383 20.9879 0.1144 9594 +9596 2 275.4832 402.0062 21.1416 0.1144 9595 +9597 2 276.5403 402.4386 21.2963 0.1144 9596 +9598 2 277.6614 402.5656 21.4868 0.1144 9597 +9599 2 278.7825 402.5587 21.7708 0.1144 9598 +9600 2 279.8968 402.5175 22.1334 0.1144 9599 +9601 2 280.8898 402.8344 22.5883 0.1144 9600 +9602 2 281.4126 403.8057 23.6191 0.1144 9601 +9603 2 269.6534 398.4998 19.2499 0.1144 9590 +9604 2 270.0504 397.429 19.176 0.1144 9603 +9605 2 270.8168 396.6912 19.1321 0.1144 9604 +9606 2 271.9185 396.5253 19.1123 0.1144 9605 +9607 2 272.9355 396.1729 19.0801 0.1144 9606 +9608 2 273.8256 395.4545 19.0308 0.1144 9607 +9609 2 274.814 394.918 18.9623 0.1144 9608 +9610 2 275.9317 394.7681 18.8693 0.1144 9609 +9611 2 277.0173 395.0552 18.7479 0.1144 9610 +9612 2 278.0652 395.4819 18.5501 0.1144 9611 +9613 2 279.0914 395.919 18.2485 0.1144 9612 +9614 2 280.1656 396.2782 17.9312 0.1144 9613 +9615 2 281.0842 396.8147 17.5204 0.1144 9614 +9616 2 282.0726 397.3249 17.1171 0.1144 9615 +9617 2 283.0942 397.8329 16.7544 0.1144 9616 +9618 2 284.1353 398.1109 16.3488 0.1144 9617 +9619 2 285.245 398.3042 16.01 0.1144 9618 +9620 2 286.2871 398.7034 15.6905 0.1144 9619 +9621 2 286.6223 399.7399 15.4606 0.1144 9620 +9622 2 286.9713 400.829 15.1838 0.1144 9621 +9623 2 233.3897 422.5307 28.2839 0.1144 9550 +9624 2 232.5111 423.1256 28.9246 0.1144 9623 +9625 2 231.398 423.1599 29.1645 0.1144 9624 +9626 2 230.3467 422.7675 29.4336 0.1144 9625 +9627 2 230.7551 423.3601 29.6817 0.1144 9626 +9628 2 231.4037 424.2982 29.4232 0.1144 9627 +9629 2 232.0524 425.2374 29.3121 0.1144 9628 +9630 2 232.701 426.1766 29.1838 0.1144 9629 +9631 2 233.3497 427.1158 29.0483 0.1144 9630 +9632 2 234.1779 427.7759 28.9176 0.1144 9631 +9633 2 235.1984 427.443 28.8165 0.1144 9632 +9634 2 236.1628 426.8275 28.7504 0.1144 9633 +9635 2 237.1272 426.2132 28.7115 0.1144 9634 +9636 2 238.119 425.6435 28.6924 0.1144 9635 +9637 2 239.1292 425.1081 28.686 0.1144 9636 +9638 2 239.9357 424.3302 28.6868 0.1144 9637 +9639 2 240.5477 423.3658 28.6896 0.1144 9638 +9640 2 241.5476 422.8933 28.693 0.1144 9639 +9641 2 242.4754 422.2401 28.6961 0.1144 9640 +9642 2 243.3059 421.4542 28.702 0.1144 9641 +9643 2 244.1262 420.6557 28.7199 0.1144 9642 +9644 2 244.9453 419.8572 28.7479 0.1144 9643 +9645 2 245.9417 419.3526 28.7179 0.1144 9644 +9646 2 246.9244 418.7738 28.7017 0.1144 9645 +9647 2 247.5307 417.8906 28.8358 0.1144 9646 +9648 2 247.2584 416.8107 29.2429 0.1144 9647 +9649 2 229.3377 421.9347 29.8206 0.1144 9626 +9650 2 228.4545 421.2071 29.9508 0.1144 9649 +9651 2 227.5725 420.4783 30.0468 0.1144 9650 +9652 2 226.5658 419.9853 30.198 0.1144 9651 +9653 2 225.4332 419.983 30.3677 0.1144 9652 +9654 2 224.2892 419.9853 30.529 0.1144 9653 +9655 2 223.1452 419.9853 30.6785 0.1144 9654 +9656 2 222.0012 419.9853 30.8168 0.1144 9655 +9657 2 220.8801 420.0127 31.0204 0.1144 9656 +9658 2 219.7921 420.2392 31.2805 0.1144 9657 +9659 2 218.8598 420.7941 31.6067 0.1144 9658 +9660 2 217.8519 420.8135 31.7072 0.1144 9659 +9661 2 217.7307 419.7199 31.7895 0.1144 9660 +9662 2 217.0465 418.8459 31.8598 0.1144 9661 +9663 2 216.041 418.3459 31.9225 0.1144 9662 +9664 2 214.9519 418.227 32.0698 0.1144 9663 +9665 2 213.9555 417.8037 32.2857 0.1144 9664 +9666 2 213.1215 417.0395 32.5394 0.1144 9665 +9667 2 212.9247 415.9687 32.7793 0.1144 9666 +9668 2 213.11 414.8419 32.9585 0.1144 9667 +9669 2 213.5917 413.8088 33.0772 0.1144 9668 +9670 2 213.8845 412.7049 33.1411 0.1144 9669 +9671 2 214.3124 411.6444 33.1696 0.1144 9670 +9672 2 214.7071 410.5713 33.1789 0.1144 9671 +9673 2 215.2505 409.5646 33.1794 0.1144 9672 +9674 2 215.8488 408.5899 33.1794 0.1144 9673 +9675 2 216.3453 407.5603 33.1794 0.1144 9674 +9676 2 216.8681 406.5433 33.1794 0.1144 9675 +9677 2 217.376 405.5171 33.1794 0.1144 9676 +9678 2 218.2214 404.7483 33.1794 0.1144 9677 +9679 2 279.9345 411.3321 18.1214 0.1144 7245 +9680 2 279.7114 410.243 17.8439 0.1144 9679 +9681 2 279.7858 409.1264 17.5761 0.1144 9680 +9682 2 279.8819 407.9893 17.3464 0.1144 9681 +9683 2 280.0409 406.8613 17.1174 0.1144 9682 +9684 2 280.1004 405.731 16.8726 0.1144 9683 +9685 2 280.1004 404.6145 16.5884 0.1144 9684 +9686 2 280.1004 403.4877 16.3003 0.1144 9685 +9687 2 280.1004 402.3459 16.0592 0.1144 9686 +9688 2 279.8521 401.2397 15.8764 0.1144 9687 +9689 2 279.1772 400.352 15.7082 0.1144 9688 +9690 2 278.9015 399.2938 15.638 0.1144 9689 +9691 2 278.8248 398.1543 15.6008 0.1144 9690 +9692 2 278.516 397.0584 15.5578 0.1144 9691 +9693 2 278.4965 395.9212 15.4919 0.1144 9692 +9694 2 278.2952 394.799 15.3995 0.1144 9693 +9695 2 277.547 393.9581 15.2834 0.1144 9694 +9696 2 276.9086 393.0967 15.013 0.1144 9695 +9697 2 276.5174 392.1701 14.5876 0.1144 9696 +9698 2 276.5254 391.0306 14.2615 0.1144 9697 +9699 2 276.4362 389.8901 14.0382 0.1144 9698 +9700 2 276.1982 388.7712 13.9171 0.1144 9699 +9701 2 275.4386 387.9201 13.899 0.1144 9700 +9702 2 274.6527 387.0896 13.9836 0.1144 9701 +9703 2 274.0109 386.1412 14.1473 0.1144 9702 +9704 2 273.2616 385.2775 14.3621 0.1144 9703 +9705 2 273.1655 385.1825 13.554 0.1144 9704 +9706 2 272.3509 384.3783 13.3759 0.1144 9705 +9707 2 271.9082 383.3304 13.3158 0.1144 9706 +9708 2 271.8373 382.2024 13.19 0.1144 9707 +9709 2 272.026 381.0813 13.032 0.1144 9708 +9710 2 272.1096 379.943 12.8695 0.1144 9709 +9711 2 272.145 378.8001 12.7262 0.1144 9710 +9712 2 271.557 378.3952 12.249 0.1144 9711 +9713 2 270.6029 377.7797 12.0959 0.1144 9712 +9714 2 269.9142 376.9171 12.042 0.1144 9713 +9715 2 269.2518 375.995 12.0009 0.1144 9714 +9716 2 268.546 375.097 11.9529 0.1144 9715 +9717 2 267.847 374.1921 11.8765 0.1144 9716 +9718 2 267.7875 373.1762 11.6514 0.1144 9717 +9719 2 267.815 372.0517 11.4376 0.1144 9718 +9720 2 267.5198 370.9592 11.1809 0.1144 9719 +9721 2 267.1743 369.893 10.8444 0.1144 9720 +9722 2 266.1184 369.6264 10.385 0.1144 9721 +9723 2 265.0419 369.2683 9.8545 0.1144 9722 +9724 2 263.9894 369.3507 9.6546 0.1144 9723 +9725 2 263.3328 370.2796 9.4105 0.1144 9724 +9726 2 263.0193 371.3241 9.07 0.1144 9725 +9727 2 263.5364 372.0059 8.5687 0.1144 9726 +9728 2 264.4814 371.7428 7.9909 0.1144 9727 +9729 2 265.2181 371.0347 7.3456 0.1144 9728 +9730 2 265.8759 371.4557 6.7499 0.1144 9729 +9731 2 266.8174 372.0151 6.2449 0.1144 9730 +9732 2 267.8733 371.8046 5.8427 0.1144 9731 +9733 2 268.9864 371.8172 5.525 0.1144 9732 +9734 2 270.1098 371.9991 5.2545 0.1144 9733 +9735 2 270.7001 372.904 5.046 0.1144 9734 +9736 2 271.7664 373.0401 4.8724 0.1144 9735 +9737 2 272.8429 372.6637 4.7181 0.1144 9736 +9738 2 273.3668 371.9636 4.2043 0.1144 9737 +9739 2 274.4731 371.6993 3.8862 0.1144 9738 +9740 2 275.5736 371.4122 3.6453 0.1144 9739 +9741 2 276.6753 371.133 3.5199 0.1144 9740 +9742 2 277.8147 371.0427 3.5116 0.1144 9741 +9743 2 278.8797 370.9226 3.6922 0.1144 9742 +9744 2 279.8258 371.0324 4.0994 0.1144 9743 +9745 2 280.8543 371.5037 4.489 0.1144 9744 +9746 2 281.8816 372.0013 4.8036 0.1144 9745 +9747 2 282.9009 372.5161 5.0452 0.1144 9746 +9748 2 283.9843 372.8628 5.2218 0.1144 9747 +9749 2 285.1088 372.9474 5.3703 0.1144 9748 +9750 2 286.1396 373.2483 5.5181 0.1144 9749 +9751 2 287.1612 373.7093 5.6979 0.1144 9750 +9752 2 288.2537 374.0239 5.8763 0.1144 9751 +9753 2 289.3851 374.0949 6.0162 0.1144 9752 +9754 2 290.5245 373.9999 6.116 0.1144 9753 +9755 2 291.6342 373.7356 6.1803 0.1144 9754 +9756 2 292.2577 374.4026 6.2185 0.1144 9755 +9757 2 292.8651 375.3658 6.2423 0.1144 9756 +9758 2 293.8581 375.8601 6.2658 0.1144 9757 +9759 2 294.8637 376.4012 6.299 0.1144 9758 +9760 2 295.8887 376.9057 6.3449 0.1144 9759 +9761 2 297.0087 377.0956 6.4036 0.1144 9760 +9762 2 298.131 376.9171 6.4755 0.1144 9761 +9763 2 299.2452 376.7592 6.6236 0.1144 9762 +9764 2 300.2371 376.265 6.8465 0.1144 9763 +9765 2 301.1626 375.5935 7.0258 0.1144 9764 +9766 2 302.1819 375.0753 7.1595 0.1144 9765 +9767 2 303.3064 374.8762 7.3108 0.1144 9766 +9768 2 273.2467 372.7289 4.8183 0.1144 9737 +9769 2 274.3438 372.6443 4.5858 0.1144 9768 +9770 2 275.3974 372.2118 4.5017 0.1144 9769 +9771 2 276.4773 371.9133 4.4202 0.1144 9770 +9772 2 277.0574 372.4772 4.3383 0.1144 9771 +9773 2 277.1981 373.611 4.2543 0.1144 9772 +9774 2 277.8193 374.4976 4.1076 0.1144 9773 +9775 2 278.6132 375.3132 3.9575 0.1144 9774 +9776 2 279.3328 376.1918 3.7838 0.1144 9775 +9777 2 279.517 377.2832 3.5976 0.1144 9776 +9778 2 278.9072 378.1972 3.4411 0.1144 9777 +9779 2 277.8341 378.1847 3.3189 0.1144 9778 +9780 2 276.7107 377.9845 3.1989 0.1144 9779 +9781 2 275.5793 377.8792 3.0623 0.1144 9780 +9782 2 274.4628 378.1023 2.9611 0.1144 9781 +9783 2 273.6871 378.942 2.8914 0.1144 9782 +9784 2 272.8348 379.705 2.8118 0.1144 9783 +9785 2 267.7303 369.337 10.3869 0.1144 9721 +9786 2 267.648 368.2628 9.9329 0.1144 9785 +9787 2 267.1046 367.2732 9.6208 0.1144 9786 +9788 2 267.0576 366.1601 9.2976 0.1144 9787 +9789 2 267.0439 365.0172 9.0578 0.1144 9788 +9790 2 266.2122 364.2427 8.8875 0.1144 9789 +9791 2 266.298 363.1754 10.1337 0.1144 9790 +9792 2 266.5268 362.1252 10.619 0.1144 9791 +9793 2 266.5509 361.051 11.1208 0.1144 9792 +9794 2 266.2408 359.9996 11.6751 0.1144 9793 +9795 2 266.4754 359.0284 12.2382 0.1144 9794 +9796 2 266.6813 357.9999 12.7663 0.1144 9795 +9797 2 266.711 356.8674 13.1769 0.1144 9796 +9798 2 266.9833 355.7668 13.5024 0.1144 9797 +9799 2 267.2624 354.664 13.7762 0.1144 9798 +9800 2 267.3368 353.5292 13.9724 0.1144 9799 +9801 2 267.4237 352.3886 14.1053 0.1144 9800 +9802 2 267.8424 351.3487 14.2425 0.1144 9801 +9803 2 268.4991 350.4209 14.3751 0.1144 9802 +9804 2 268.8526 349.3513 14.4732 0.1144 9803 +9805 2 269.0905 348.2325 14.538 0.1144 9804 +9806 2 269.5596 347.196 14.5796 0.1144 9805 +9807 2 270.0618 346.1675 14.6014 0.1144 9806 +9808 2 270.4382 345.0887 14.6052 0.1144 9807 +9809 2 271.2641 344.3326 14.6002 0.1144 9808 +9810 2 271.8121 343.3453 14.5919 0.1144 9809 +9811 2 271.946 342.2139 14.5802 0.1144 9810 +9812 2 271.9265 341.071 14.5632 0.1144 9811 +9813 2 272.018 339.9316 14.5397 0.1144 9812 +9814 2 272.4528 338.878 14.5082 0.1144 9813 +9815 2 273.1575 337.9799 14.4705 0.1144 9814 +9816 2 274.1333 337.3953 14.3991 0.1144 9815 +9817 2 274.9936 336.6552 14.2845 0.1144 9816 +9818 2 275.7589 335.8052 14.1933 0.1144 9817 +9819 2 276.2588 334.7767 14.0591 0.1144 9818 +9820 2 265.7512 363.331 8.7637 0.1144 9790 +9821 2 265.297 362.3059 8.5772 0.1144 9820 +9822 2 264.4448 361.5532 8.41 0.1144 9821 +9823 2 263.819 360.6082 8.2211 0.1144 9822 +9824 2 263.5021 359.5134 8.0277 0.1144 9823 +9825 2 263.2424 358.3992 7.8633 0.1144 9824 +9826 2 263.1303 357.2609 7.7206 0.1144 9825 +9827 2 263.8316 356.8456 7.873 0.1144 9826 +9828 2 264.9481 356.6946 7.9861 0.1144 9827 +9829 2 266.0017 356.3972 8.0323 0.1144 9828 +9830 2 267.0645 356.0391 8.0933 0.1144 9829 +9831 2 268.1696 356.1752 8.1693 0.1144 9830 +9832 2 268.935 356.9086 8.3026 0.1144 9831 +9833 2 269.5447 357.8432 8.5188 0.1144 9832 +9834 2 270.2288 358.747 8.741 0.1144 9833 +9835 2 271.0502 359.5329 8.9296 0.1144 9834 +9836 2 271.9414 360.2513 9.0895 0.1144 9835 +9837 2 272.8634 360.9274 9.2247 0.1144 9836 +9838 2 273.7615 361.6344 9.3396 0.1144 9837 +9839 2 274.7144 362.068 9.5641 0.1144 9838 +9840 2 275.736 362.5187 9.7914 0.1144 9839 +9841 2 276.6695 363.1731 9.9802 0.1144 9840 +9842 2 277.658 363.7485 10.1347 0.1144 9841 +9843 2 278.667 364.2851 10.2591 0.1144 9842 +9844 2 279.4643 365.0927 10.3669 0.1144 9843 +9845 2 280.2663 365.8855 10.5173 0.1144 9844 +9846 2 281.1288 366.6326 10.6622 0.1144 9845 +9847 2 282.1047 367.2251 10.7965 0.1144 9846 +9848 2 283.1938 367.5603 10.9208 0.1144 9847 +9849 2 284.3069 367.5947 11.1128 0.1144 9848 +9850 2 285.3742 367.264 11.3455 0.1144 9849 +9851 2 286.4496 366.8762 11.5224 0.1144 9850 +9852 2 287.5661 367.105 11.6525 0.1144 9851 +9853 2 288.6644 367.4253 11.741 0.1144 9852 +9854 2 289.7798 367.677 11.7916 0.1144 9853 +9855 2 290.9238 367.6576 11.8087 0.1144 9854 +9856 2 292.006 367.2869 11.8096 0.1144 9855 +9857 2 293.0264 366.771 11.8096 0.1144 9856 +9858 2 262.3638 356.8674 7.5946 0.1144 9826 +9859 2 261.3594 356.3388 7.4693 0.1144 9858 +9860 2 260.8434 355.4522 7.2687 0.1144 9859 +9861 2 260.4202 354.4684 6.9609 0.1144 9860 +9862 2 260.0827 353.4125 6.6658 0.1144 9861 +9863 2 260.0335 352.2754 6.4398 0.1144 9862 +9864 2 259.6468 351.2469 6.2795 0.1144 9863 +9865 2 259.0302 350.3031 6.125 0.1144 9864 +9866 2 258.4468 349.3284 6.0206 0.1144 9865 +9867 2 258.4147 348.2588 6.0544 0.1144 9866 +9868 2 258.8266 347.196 6.106 0.1144 9867 +9869 2 258.9147 346.0566 6.1587 0.1144 9868 +9870 2 259.0508 344.9206 6.2116 0.1144 9869 +9871 2 259.132 343.78 6.2626 0.1144 9870 +9872 2 258.6481 343.2904 6.186 0.1144 9871 +9873 2 257.988 342.3843 5.7239 0.1144 9872 +9874 2 257.4561 341.3788 5.5441 0.1144 9873 +9875 2 256.9058 340.3755 5.364 0.1144 9874 +9876 2 256.0844 339.6307 5.1088 0.1144 9875 +9877 2 255.5341 338.6423 4.8632 0.1144 9876 +9878 2 254.6166 338.0188 4.5577 0.1144 9877 +9879 2 254.2403 336.9469 4.2902 0.1144 9878 +9880 2 253.7232 336.0466 3.8884 0.1144 9879 +9881 2 253.2336 335.0147 3.5624 0.1144 9880 +9882 2 252.4556 334.2082 3.2983 0.1144 9881 +9883 2 251.3528 334.2345 3.0191 0.1144 9882 +9884 2 250.5921 333.5858 2.7537 0.1144 9883 +9885 2 250.3335 332.4979 2.546 0.1144 9884 +9886 2 249.964 331.4157 2.4145 0.1144 9885 +9887 2 249.7913 330.2854 2.3246 0.1144 9886 +9888 2 249.0259 329.4411 2.2725 0.1144 9887 +9889 2 248.0547 328.8371 2.2495 0.1144 9888 +9890 2 259.4924 343.7777 6.3396 0.1144 9871 +9891 2 260.4579 343.303 6.4212 0.1144 9890 +9892 2 261.3376 342.5719 6.4665 0.1144 9891 +9893 2 262.3295 342.024 6.4769 0.1144 9892 +9894 2 263.2012 341.3101 6.4548 0.1144 9893 +9895 2 264.2034 340.8731 6.3366 0.1144 9894 +9896 2 264.7205 339.9236 6.1789 0.1144 9895 +9897 2 264.8371 338.799 5.9884 0.1144 9896 +9898 2 265.3966 337.8095 5.8395 0.1144 9897 +9899 2 266.1299 336.932 5.7334 0.1144 9898 +9900 2 267.1297 336.384 5.6666 0.1144 9899 +9901 2 267.7818 335.4483 5.635 0.1144 9900 +9902 2 268.0072 334.3271 5.6231 0.1144 9901 +9903 2 268.0552 333.1843 5.6221 0.1144 9902 +9904 2 268.0198 332.0426 5.6215 0.1144 9903 +9905 2 267.7566 330.9295 5.6207 0.1144 9904 +9906 2 267.5805 329.8003 5.6195 0.1144 9905 +9907 2 267.6239 328.6575 5.6179 0.1144 9906 +9908 2 267.8081 327.5295 5.6157 0.1144 9907 +9909 2 268.1364 326.4347 5.6126 0.1144 9908 +9910 2 268.6444 325.4097 5.6086 0.1144 9909 +9911 2 269.0722 324.3515 5.6022 0.1144 9910 +9912 2 269.3342 323.2395 5.5925 0.1144 9911 +9913 2 269.5378 322.1138 5.581 0.1144 9912 +9914 2 269.9279 321.0487 5.5696 0.1144 9913 +9915 2 269.9394 319.9459 5.5524 0.1144 9914 +9916 2 269.674 318.8488 5.4853 0.1144 9915 +9917 2 269.6362 317.7208 5.4257 0.1144 9916 +9918 2 270.1316 316.7416 5.458 0.1144 9917 +9919 2 270.4485 315.6616 5.5143 0.1144 9918 +9920 2 269.9691 314.6915 5.5714 0.1144 9919 +9921 2 269.6808 313.8255 5.6304 0.1144 9920 +9922 2 270.8123 313.9948 5.6909 0.1144 9921 +9923 2 271.7114 313.9159 5.7454 0.1144 9922 +9924 2 272.0066 312.836 5.7953 0.1144 9923 +9925 2 272.6358 311.883 5.8679 0.1144 9924 +9926 2 273.4366 311.1897 5.992 0.1144 9925 +9927 2 274.5188 311.2549 6.1046 0.1144 9926 +9928 2 275.5599 311.2252 6.2384 0.1144 9927 +9929 2 276.4842 310.6109 6.4396 0.1144 9928 +9930 2 277.4269 309.976 6.6292 0.1144 9929 +9931 2 278.3981 309.3708 6.7841 0.1144 9930 +9932 2 279.3671 308.7633 6.9083 0.1144 9931 +9933 2 279.8258 307.8252 7.124 0.1144 9932 +9934 2 280.6987 307.1617 7.326 0.1144 9933 +9935 2 281.7352 306.7407 7.3902 0.1144 9934 +9936 2 282.8677 306.5931 7.4316 0.1144 9935 +9937 2 283.8859 306.0749 7.4615 0.1144 9936 +9938 2 284.5494 305.1448 7.4829 0.1144 9937 +9939 2 284.7656 304.0214 6.5166 0.1144 9938 +9940 2 285.7243 303.5181 6.2652 0.1144 9939 +9941 2 286.5034 302.7321 5.9722 0.1144 9940 +9942 2 287.1371 301.7895 5.6917 0.1144 9941 +9943 2 287.7926 300.8583 5.4437 0.1144 9942 +9944 2 288.002 299.7383 5.2732 0.1144 9943 +9945 2 288.7181 298.8494 5.1769 0.1144 9944 +9946 2 288.995 298.0406 4.957 0.1144 9945 +9947 2 289.4663 297.0739 3.9955 0.1144 9946 +9948 2 289.8347 296.1461 3.5291 0.1144 9947 +9949 2 289.6059 295.0822 3.0652 0.1144 9948 +9950 2 289.4057 293.9817 2.618 0.1144 9949 +9951 2 289.2009 292.9864 2.0891 0.1144 9950 +9952 2 288.3029 292.3252 1.6863 0.1144 9951 +9953 2 287.3373 291.712 1.4189 0.1144 9952 +9954 2 286.2013 291.6022 1.2585 0.1144 9953 +9955 2 285.0676 291.7497 1.1668 0.1144 9954 +9956 2 283.9259 291.8275 1.1248 0.1144 9955 +9957 2 288.8554 299.3184 5.1259 0.1144 9945 +9958 2 289.8656 299.8252 5.1106 0.1144 9957 +9959 2 290.9993 299.6983 5.1125 0.1144 9958 +9960 2 292.1296 299.8149 5.1277 0.1144 9959 +9961 2 293.2106 299.5232 5.2104 0.1144 9960 +9962 2 294.1647 298.9604 5.2473 0.1144 9961 +9963 2 294.7367 297.9937 5.195 0.1144 9962 +9964 2 295.2961 297.0087 5.1425 0.1144 9963 +9965 2 295.7034 295.9722 5.0891 0.1144 9964 +9966 2 296.5305 295.1829 5.0331 0.1144 9965 +9967 2 297.3931 294.4313 4.9741 0.1144 9966 +9968 2 298.1687 293.6099 4.9228 0.1144 9967 +9969 2 298.6057 292.5666 4.8743 0.1144 9968 +9970 2 299.0061 291.5644 4.7932 0.1144 9969 +9971 2 299.7989 290.7648 4.6563 0.1144 9970 +9972 2 300.173 289.7558 4.5172 0.1144 9971 +9973 2 300.1204 288.614 4.3884 0.1144 9972 +9974 2 300.3366 287.5147 4.2675 0.1144 9973 +9975 2 300.5654 286.461 4.0975 0.1144 9974 +9976 2 300.419 285.3639 3.8722 0.1144 9975 +9977 2 300.5871 284.2966 3.6877 0.1144 9976 +9978 2 301.0722 283.2613 3.5564 0.1144 9977 +9979 2 301.2186 282.171 3.4269 0.1144 9978 +9980 2 301.1397 281.0419 3.349 0.1144 9979 +9981 2 300.8423 279.9562 3.3751 0.1144 9980 +9982 2 300.5803 278.858 3.4794 0.1144 9981 +9983 2 300.6192 277.73 3.6148 0.1144 9982 +9984 2 300.626 276.5917 3.738 0.1144 9983 +9985 2 300.5162 275.4535 3.8395 0.1144 9984 +9986 2 300.2954 274.3323 3.9185 0.1144 9985 +9987 2 300.3149 273.2192 3.928 0.1144 9986 +9988 2 300.6157 272.1267 3.9345 0.1144 9987 +9989 2 301.4062 271.3705 3.9756 0.1144 9988 +9990 2 302.445 271.5261 4.1316 0.1144 9989 +9991 2 303.271 272.0604 4.4836 0.1144 9990 +9992 2 304.2868 272.5591 4.8065 0.1144 9991 +9993 2 305.0487 273.4103 5.0498 0.1144 9992 +9994 2 305.9811 274.0727 5.2043 0.1144 9993 +9995 2 306.6778 274.9535 5.0613 0.1144 9994 +9996 2 284.848 304.9961 7.5128 0.1144 9938 +9997 2 285.8959 304.6163 7.6 0.1144 9996 +9998 2 287.0079 304.7364 7.7051 0.1144 9997 +9999 2 288.0798 305.0213 7.7612 0.1144 9998 +10000 2 289.0522 304.7067 7.8494 0.1144 9999 +10001 2 289.9136 304.0546 7.9886 0.1144 10000 +10002 2 291.0164 303.8201 8.2159 0.1144 10001 +10003 2 292.0174 303.5467 8.597 0.1144 10002 +10004 2 293.0345 303.4277 9.0472 0.1144 10003 +10005 2 293.0653 304.3292 9.4406 0.1144 10004 +10006 2 293.9416 304.4424 9.7745 0.1144 10005 +10007 2 294.2311 304.2228 9.6788 0.1144 10006 +10008 2 295.1108 303.5226 9.8704 0.1144 10007 +10009 2 295.8453 302.7035 9.9888 0.1144 10008 +10010 2 296.4184 301.7151 10.0463 0.1144 10009 +10011 2 297.1483 300.8777 10.0073 0.1144 10010 +10012 2 298.0051 300.2817 9.7714 0.1144 10011 +10013 2 298.7956 299.5026 9.5167 0.1144 10012 +10014 2 299.4054 298.5394 9.3054 0.1144 10013 +10015 2 300.3744 297.9948 9.1512 0.1144 10014 +10016 2 301.3365 297.416 8.9969 0.1144 10015 +10017 2 302.1876 296.6609 8.9174 0.1144 10016 +10018 2 303.1039 296.0008 8.9668 0.1144 10017 +10019 2 304.1004 295.5124 9.1283 0.1144 10018 +10020 2 305.2249 295.3797 9.2772 0.1144 10019 +10021 2 305.9868 294.564 9.3982 0.1144 10020 +10022 2 305.9102 293.4326 9.56 0.1144 10021 +10023 2 293.9394 304.4562 10.0628 0.1144 10006 +10024 2 293.9176 305.4286 10.4705 0.1144 10023 +10025 2 294.1533 306.5359 10.8415 0.1144 10024 +10026 2 293.8844 306.6023 11.2132 0.1144 10025 +10027 2 292.9178 306.1767 11.548 0.1144 10026 +10028 2 291.8561 306.2488 11.959 0.1144 10027 +10029 2 290.7979 306.0383 12.3631 0.1144 10028 +10030 2 289.6894 305.9148 12.7665 0.1144 10029 +10031 2 288.6873 305.4697 13.2 0.1144 10030 +10032 2 287.8018 304.7559 13.5827 0.1144 10031 +10033 2 286.9552 303.9871 13.9114 0.1144 10032 +10034 2 286.6772 303.0342 14.3644 0.1144 10033 +10035 2 286.4805 301.9313 14.8152 0.1144 10034 +10036 2 285.7792 301.0276 15.1919 0.1144 10035 +10037 2 285.6682 300.4808 15.5167 0.1144 10036 +10038 2 285.2953 299.41 15.8545 0.1144 10037 +10039 2 284.4693 298.6755 16.2061 0.1144 10038 +10040 2 283.7257 299.0073 16.7164 0.1144 10039 +10041 2 282.6927 299.3768 17.2064 0.1144 10040 +10042 2 281.8393 298.6995 17.6329 0.1144 10041 +10043 2 281.8313 298.4444 18.3686 0.1144 10042 +10044 2 282.1985 297.71 20.6836 0.1144 10043 +10045 2 282.846 296.7799 21.4727 0.1144 10044 +10046 2 283.6594 296.0386 21.8314 0.1144 10045 +10047 2 284.5151 295.3362 22.273 0.1144 10046 +10048 2 285.4108 294.6429 22.7073 0.1144 10047 +10049 2 286.1613 293.8501 23.1782 0.1144 10048 +10050 2 287.2126 293.8799 24.1816 0.1144 10049 +10051 2 281.1277 298.7041 18.7739 0.1144 10043 +10052 2 280.0249 298.8517 18.9941 0.1144 10051 +10053 2 278.8843 298.8082 19.1018 0.1144 10052 +10054 2 277.7655 298.584 19.1421 0.1144 10053 +10055 2 276.7622 298.0566 19.1313 0.1144 10054 +10056 2 275.7269 297.5738 19.0764 0.1144 10055 +10057 2 274.6515 297.186 19.0472 0.1144 10056 +10058 2 273.8873 296.3772 19.0182 0.1144 10057 +10059 2 273.2684 295.4151 18.9816 0.1144 10058 +10060 2 272.7319 294.4061 18.9377 0.1144 10059 +10061 2 271.9563 293.603 18.8187 0.1144 10060 +10062 2 271.0731 292.8812 18.7037 0.1144 10061 +10063 2 270.2689 292.0689 18.6058 0.1144 10062 +10064 2 269.6854 291.0897 18.5234 0.1144 10063 +10065 2 269.0436 290.1436 18.4548 0.1144 10064 +10066 2 268.1479 289.4434 18.3989 0.1144 10065 +10067 2 267.3974 288.6129 18.2816 0.1144 10066 +10068 2 266.4685 287.954 18.1814 0.1144 10067 +10069 2 265.7398 287.0765 18.1044 0.1144 10068 +10070 2 265.6357 285.9439 18.0493 0.1144 10069 +10071 2 265.6562 284.7999 18.0142 0.1144 10070 +10072 2 266.0486 283.728 17.997 0.1144 10071 +10073 2 266.7064 282.7911 17.9956 0.1144 10072 +10074 2 267.5702 282.0418 17.9956 0.1144 10073 +10075 2 286.6875 300.2634 15.5278 0.1144 10036 +10076 2 287.5822 299.5781 15.6726 0.1144 10075 +10077 2 288.248 298.6606 15.8092 0.1144 10076 +10078 2 288.2743 297.5773 15.961 0.1144 10077 +10079 2 288.0786 296.4539 16.1313 0.1144 10078 +10080 2 287.9208 295.3225 16.2965 0.1144 10079 +10081 2 287.8029 294.1842 16.4369 0.1144 10080 +10082 2 287.589 293.0756 16.6069 0.1144 10081 +10083 2 287.2778 292.006 16.8306 0.1144 10082 +10084 2 287.2859 290.8837 17.0109 0.1144 10083 +10085 2 287.9997 290.0315 17.1278 0.1144 10084 +10086 2 288.8108 289.2249 17.1921 0.1144 10085 +10087 2 289.599 288.4104 17.1611 0.1144 10086 +10088 2 290.4124 287.6108 17.0812 0.1144 10087 +10089 2 291.3825 287.0067 17.0016 0.1144 10088 +10090 2 292.3915 286.4679 16.9402 0.1144 10089 +10091 2 293.3834 285.8982 16.8993 0.1144 10090 +10092 2 294.135 285.0368 16.8769 0.1144 10091 +10093 2 295.0628 284.3675 16.8708 0.1144 10092 +10094 2 272.5855 378.3483 12.5957 0.1144 9711 +10095 2 273.5155 377.6985 12.4931 0.1144 10094 +10096 2 274.5943 377.7511 12.4296 0.1144 10095 +10097 2 275.7029 378.0348 12.3914 0.1144 10096 +10098 2 276.7874 377.8049 12.3686 0.1144 10097 +10099 2 277.9165 377.8438 12.3541 0.1144 10098 +10100 2 279.0594 377.8804 12.3442 0.1144 10099 +10101 2 280.1084 377.4594 12.3331 0.1144 10100 +10102 2 281.2352 377.329 12.3169 0.1144 10101 +10103 2 282.3644 377.1448 12.293 0.1144 10102 +10104 2 283.4889 376.9354 12.2657 0.1144 10103 +10105 2 284.6283 376.8496 12.2353 0.1144 10104 +10106 2 285.6991 376.4858 12.1546 0.1144 10105 +10107 2 286.7459 376.0362 12.0526 0.1144 10106 +10108 2 287.8258 375.7331 11.8971 0.1144 10107 +10109 2 288.2285 374.986 12.0055 0.1144 10108 +10110 2 288.4642 373.9301 12.0098 0.1144 10109 +10111 2 289.1643 373.0595 11.9458 0.1144 10110 +10112 2 289.7477 372.0768 11.895 0.1144 10111 +10113 2 290.449 371.1731 11.849 0.1144 10112 +10114 2 291.2647 370.3723 11.799 0.1144 10113 +10115 2 291.895 369.417 11.7312 0.1144 10114 +10116 2 292.3275 369.3473 11.8096 0.1144 10115 +10117 2 293.1534 369.8746 10.5409 0.1144 10116 +10118 2 293.4337 370.9489 10.0378 0.1144 10117 +10119 2 294.3489 371.4179 9.4004 0.1144 10118 +10120 2 295.0365 372.2656 8.8277 0.1144 10119 +10121 2 295.9562 371.8549 8.1702 0.1144 10120 +10122 2 296.3509 370.9168 7.5844 0.1144 10121 +10123 2 296.1541 369.8243 7.0314 0.1144 10122 +10124 2 296.0889 368.7158 6.5148 0.1144 10123 +10125 2 296.4665 367.7056 6.0288 0.1144 10124 +10126 2 296.5442 366.644 5.571 0.1144 10125 +10127 2 296.272 365.5389 5.2074 0.1144 10126 +10128 2 295.9803 364.4326 4.9195 0.1144 10127 +10129 2 295.5009 363.403 4.6889 0.1144 10128 +10130 2 295.1634 362.3872 4.3808 0.1144 10129 +10131 2 295.1657 361.2775 4.0808 0.1144 10130 +10132 2 295.2813 360.1587 3.7702 0.1144 10131 +10133 2 294.8637 359.1496 3.4685 0.1144 10132 +10134 2 294.1739 358.247 3.1893 0.1144 10133 +10135 2 293.8204 357.1751 2.9772 0.1144 10134 +10136 2 293.3239 356.1478 2.8359 0.1144 10135 +10137 2 293.0436 355.045 2.7357 0.1144 10136 +10138 2 292.9281 353.9078 2.6653 0.1144 10137 +10139 2 293.3422 352.8817 2.5375 0.1144 10138 +10140 2 293.5687 351.7651 2.4358 0.1144 10139 +10141 2 293.5596 350.6383 2.4239 0.1144 10140 +10142 2 294.0835 349.6499 2.2495 0.1144 10141 +10143 2 292.5322 368.6849 11.6833 0.1144 10115 +10144 2 293.2644 367.8257 11.6391 0.1144 10143 +10145 2 294.2585 367.2709 11.5693 0.1144 10144 +10146 2 295.1989 366.66 11.4306 0.1144 10145 +10147 2 296.0638 365.9118 11.3096 0.1144 10146 +10148 2 296.8428 365.1122 11.2054 0.1144 10147 +10149 2 297.3645 364.1066 11.0972 0.1144 10148 +10150 2 298.0086 363.1765 10.9601 0.1144 10149 +10151 2 298.4101 362.1401 10.8515 0.1144 10150 +10152 2 298.3472 361.0075 10.7779 0.1144 10151 +10153 2 298.1253 359.8852 10.7253 0.1144 10152 +10154 2 297.869 358.771 10.6914 0.1144 10153 +10155 2 297.9273 357.7036 10.674 0.1144 10154 +10156 2 298.2454 356.6191 10.6672 0.1144 10155 +10157 2 297.845 355.6559 10.6602 0.1144 10156 +10158 2 297.1323 354.7624 10.6504 0.1144 10157 +10159 2 296.5076 353.8049 10.6366 0.1144 10158 +10160 2 295.8224 352.8931 10.6178 0.1144 10159 +10161 2 295.192 351.9424 10.5912 0.1144 10160 +10162 2 294.8122 350.8728 10.5525 0.1144 10161 +10163 2 294.5811 349.754 10.4989 0.1144 10162 +10164 2 294.5045 348.6157 10.4286 0.1144 10163 +10165 2 294.7241 347.5037 10.3413 0.1144 10164 +10166 2 295.1051 346.4467 10.1752 0.1144 10165 +10167 2 295.8075 345.5978 9.9269 0.1144 10166 +10168 2 296.3829 344.6243 9.6907 0.1144 10167 +10169 2 296.733 343.5386 9.4804 0.1144 10168 +10170 2 296.7261 342.4038 9.2882 0.1144 10169 +10171 2 296.733 341.2701 9.063 0.1144 10170 +10172 2 296.5523 340.1467 8.8291 0.1144 10171 +10173 2 296.1267 339.0896 8.597 0.1144 10172 +10174 2 295.4552 338.2636 8.2386 0.1144 10173 +10175 2 294.7539 337.3931 7.857 0.1144 10174 +10176 2 294.6818 337.0201 6.919 0.1144 10175 +10177 2 294.1785 336.2639 6.3941 0.1144 10176 +10178 2 293.4943 336.892 6.1693 0.1144 10177 +10179 2 292.697 337.6642 5.9684 0.1144 10178 +10180 2 291.8138 338.3906 5.82 0.1144 10179 +10181 2 290.8757 339.0416 5.7204 0.1144 10180 +10182 2 289.9342 339.6914 5.6655 0.1144 10181 +10183 2 289.0213 340.38 5.651 0.1144 10182 +10184 2 287.9723 340.7987 5.6576 0.1144 10183 +10185 2 286.8843 341.1511 5.6724 0.1144 10184 +10186 2 286.0927 341.9267 5.6878 0.1144 10185 +10187 2 285.1614 342.5754 5.7008 0.1144 10186 +10188 2 284.0586 342.8396 5.7369 0.1144 10187 +10189 2 283.0164 342.5685 5.8897 0.1144 10188 +10190 2 282.139 342.3054 6.7763 0.1144 10189 +10191 2 281.1414 342.469 7.7181 0.1144 10190 +10192 2 280.5225 343.2675 8.1828 0.1144 10191 +10193 2 279.7778 343.9722 8.7795 0.1144 10192 +10194 2 279.1886 343.6576 9.2826 0.1144 10193 +10195 2 278.1201 343.2972 9.6971 0.1144 10194 +10196 2 277.0356 343.1851 10.1086 0.1144 10195 +10197 2 276.236 342.7081 10.5771 0.1144 10196 +10198 2 275.7601 341.7265 10.965 0.1144 10197 +10199 2 275.283 340.6901 11.2136 0.1144 10198 +10200 2 274.6641 339.7314 11.3601 0.1144 10199 +10201 2 273.8439 338.9546 11.4109 0.1144 10200 +10202 2 272.9573 338.2614 11.3218 0.1144 10201 +10203 2 272.0238 337.6527 11.1058 0.1144 10202 +10204 2 270.961 337.6688 10.8832 0.1144 10203 +10205 2 269.8513 337.6081 10.6698 0.1144 10204 +10206 2 268.729 337.671 10.4666 0.1144 10205 +10207 2 267.5908 337.7523 10.3134 0.1144 10206 +10208 2 266.4468 337.7477 10.2177 0.1144 10207 +10209 2 265.4103 337.3256 10.1647 0.1144 10208 +10210 2 264.3018 337.1585 10.136 0.1144 10209 +10211 2 263.6279 337.9856 10.1244 0.1144 10210 +10212 2 263.9071 339.077 10.1226 0.1144 10211 +10213 2 264.4184 340.0998 10.1226 0.1144 10212 +10214 2 265.2421 340.8937 10.1226 0.1144 10213 +10215 2 280.1027 344.0969 10.1267 0.1144 10193 +10216 2 281.114 344.5671 10.2526 0.1144 10215 +10217 2 281.5864 345.4949 10.1778 0.1144 10216 +10218 2 281.7489 345.3038 10.1771 0.1144 10217 +10219 2 282.4891 344.4904 10.304 0.1144 10218 +10220 2 283.299 343.6908 10.4245 0.1144 10219 +10221 2 283.8321 342.6886 10.5207 0.1144 10220 +10222 2 284.2989 341.6442 10.5937 0.1144 10221 +10223 2 284.8194 340.626 10.6554 0.1144 10222 +10224 2 285.8707 340.2851 10.6821 0.1144 10223 +10225 2 287.0067 340.1547 10.6848 0.1144 10224 +10226 2 288.145 340.0437 10.6848 0.1144 10225 +10227 2 289.2329 339.6982 10.6848 0.1144 10226 +10228 2 282.2671 346.3014 9.2229 0.1144 10217 +10229 2 283.1732 346.7121 8.999 0.1144 10228 +10230 2 284.0769 347.2395 8.7362 0.1144 10229 +10231 2 285.0768 347.7852 8.5564 0.1144 10230 +10232 2 285.8993 348.5024 8.5178 0.1144 10231 +10233 2 286.4645 349.4554 8.6186 0.1144 10232 +10234 2 285.7094 350.2848 8.7306 0.1144 10233 +10235 2 285.6099 351.4174 8.8463 0.1144 10234 +10236 2 285.9165 352.519 8.9978 0.1144 10235 +10237 2 282.4628 342.9723 5.8805 0.1144 10189 +10238 2 282.1768 343.9036 5.7833 0.1144 10237 +10239 2 281.5087 344.4939 5.6824 0.1144 10238 +10240 2 280.471 344.964 5.5781 0.1144 10239 +10241 2 279.3476 345.059 5.4713 0.1144 10240 +10242 2 278.5423 344.3074 5.2867 0.1144 10241 +10243 2 278.1442 343.1622 5.042 0.1144 10242 +10244 2 277.1146 342.7973 5.0344 0.1144 10243 +10245 2 275.974 342.7195 5.0236 0.1144 10244 +10246 2 274.83 342.6875 5.0086 0.1144 10245 +10247 2 273.6871 342.6635 4.9876 0.1144 10246 +10248 2 272.5454 342.5914 4.9589 0.1144 10247 +10249 2 271.4689 342.8614 4.9174 0.1144 10248 +10250 2 270.3615 343.0261 4.8585 0.1144 10249 +10251 2 269.2175 343.0181 4.7779 0.1144 10250 +10252 2 268.077 342.9449 4.6716 0.1144 10251 +10253 2 267.0336 342.5365 4.5369 0.1144 10252 +10254 2 266.6424 341.6613 4.247 0.1144 10253 +10255 2 266.5211 340.5471 3.9392 0.1144 10254 +10256 2 266.7259 339.45 3.5911 0.1144 10255 +10257 2 266.7854 338.3346 3.2168 0.1144 10256 +10258 2 266.7282 337.2169 2.8434 0.1144 10257 +10259 2 267.4157 336.3303 2.5695 0.1144 10258 +10260 2 268.4556 335.8544 2.2495 0.1144 10259 +10261 2 278.1178 344.5717 5.1515 0.1144 10242 +10262 2 276.9899 344.7398 5.0405 0.1144 10261 +10263 2 275.9454 344.2799 4.9389 0.1144 10262 +10264 2 274.8254 344.3726 4.8449 0.1144 10263 +10265 2 273.8725 344.9961 4.7446 0.1144 10264 +10266 2 272.971 345.6402 4.5627 0.1144 10265 +10267 2 271.9963 346.2179 4.3637 0.1144 10266 +10268 2 270.993 346.759 4.2078 0.1144 10267 +10269 2 269.8959 346.9672 4.0863 0.1144 10268 +10270 2 268.9533 347.0896 4.0477 0.1144 10269 +10271 2 268.3012 347.9442 4.1094 0.1144 10270 +10272 2 267.386 348.5436 4.0795 0.1144 10271 +10273 2 266.3701 348.7209 3.8534 0.1144 10272 +10274 2 265.3908 349.2037 3.5446 0.1144 10273 +10275 2 264.3624 349.6956 3.2785 0.1144 10274 +10276 2 263.382 350.2848 3.0664 0.1144 10275 +10277 2 262.7837 351.2492 2.9151 0.1144 10276 +10278 2 261.8193 351.8464 2.8366 0.1144 10277 +10279 2 260.8343 352.4286 2.8136 0.1144 10278 +10280 2 259.9568 353.162 2.8118 0.1144 10279 +10281 2 259.2224 354.0394 2.8118 0.1144 10280 +10282 2 258.5875 354.9912 2.8118 0.1144 10281 +10283 2 295.0742 337.0727 7.5233 0.1144 10175 +10284 2 295.7011 336.1255 7.2432 0.1144 10283 +10285 2 295.6519 334.9872 7.0627 0.1144 10284 +10286 2 295.1657 333.9736 7.0206 0.1144 10285 +10287 2 294.4931 333.0504 7.0056 0.1144 10286 +10288 2 294.0332 332.006 6.9835 0.1144 10287 +10289 2 293.3536 331.1514 6.9351 0.1144 10288 +10290 2 293.5824 330.1996 6.8532 0.1144 10289 +10291 2 292.8514 329.3896 6.6527 0.1144 10290 +10292 2 292.1604 328.5625 6.3332 0.1144 10291 +10293 2 291.6685 327.5501 6.0259 0.1144 10292 +10294 2 291.585 326.4564 5.745 0.1144 10293 +10295 2 292.0392 325.4474 5.5136 0.1144 10294 +10296 2 292.8343 324.6443 5.3853 0.1144 10295 +10297 2 293.825 324.1089 5.3687 0.1144 10296 +10298 2 294.9175 324.133 5.3982 0.1144 10297 +10299 2 295.6862 323.5667 5.4221 0.1144 10298 +10300 2 296.4985 322.7796 5.429 0.1144 10299 +10301 2 297.0385 321.8026 5.4102 0.1144 10300 +10302 2 297.2204 320.6815 5.3604 0.1144 10301 +10303 2 297.4034 319.573 5.2186 0.1144 10302 +10304 2 297.3759 318.4416 5.0547 0.1144 10303 +10305 2 297.7386 317.3799 4.8926 0.1144 10304 +10306 2 297.7775 316.2485 4.7286 0.1144 10305 +10307 2 297.3576 315.1892 4.561 0.1144 10306 +10308 2 297.6699 314.1836 4.2468 0.1144 10307 +10309 2 297.98 313.1185 3.8813 0.1144 10308 +10310 2 299.0279 312.4218 3.1658 0.1144 10309 +10311 2 300.0884 312.0454 3.0523 0.1144 10310 +10312 2 300.7748 311.2732 2.9161 0.1144 10311 +10313 2 300.88 310.1487 2.7988 0.1144 10312 +10314 2 300.9509 309.023 2.642 0.1144 10313 +10315 2 301.325 307.9556 2.5035 0.1144 10314 +10316 2 302.1098 307.1468 2.4074 0.1144 10315 +10317 2 302.9312 306.3506 2.353 0.1144 10316 +10318 2 303.4975 305.3656 2.329 0.1144 10317 +10319 2 303.7652 304.2594 2.3304 0.1144 10318 +10320 2 303.9562 303.1314 2.3568 0.1144 10319 +10321 2 304.0786 301.9943 2.3972 0.1144 10320 +10322 2 304.1152 300.8514 2.4554 0.1144 10321 +10323 2 303.8327 299.7509 2.5271 0.1144 10322 +10324 2 304.0649 298.679 2.6878 0.1144 10323 +10325 2 305.011 298.044 2.83 0.1144 10324 +10326 2 305.9948 297.4594 2.9515 0.1144 10325 +10327 2 306.6286 296.5362 3.3743 0.1144 10326 +10328 2 297.2501 312.9892 3.5821 0.1144 10309 +10329 2 296.4882 312.2525 3.2789 0.1144 10328 +10330 2 296.1095 311.1897 3.0323 0.1144 10329 +10331 2 295.3179 310.4198 2.8565 0.1144 10330 +10332 2 294.4359 309.6922 2.7427 0.1144 10331 +10333 2 293.5252 309.0013 2.6596 0.1144 10332 +10334 2 292.483 308.5505 2.5679 0.1144 10333 +10335 2 291.418 308.1593 2.4487 0.1144 10334 +10336 2 290.3094 308.0346 2.2798 0.1144 10335 +10337 2 289.1952 307.8412 2.1559 0.1144 10336 +10338 2 288.1507 307.4134 2.1029 0.1144 10337 +10339 2 287.0571 307.2155 2.1623 0.1144 10338 +10340 2 286.0366 306.6972 2.247 0.1144 10339 +10341 2 285.0619 306.1047 2.3545 0.1144 10340 +10342 2 284.1444 305.7592 2.4796 0.1144 10341 +10343 2 283.116 306.2294 2.6118 0.1144 10342 +10344 2 282.0257 306.1676 2.772 0.1144 10343 +10345 2 280.9515 305.9205 3.0179 0.1144 10344 +10346 2 279.8693 306.0795 3.3078 0.1144 10345 +10347 2 279.0628 305.71 3.6791 0.1144 10346 +10348 2 278.6727 304.6827 4.0243 0.1144 10347 +10349 2 277.6957 304.3566 4.2885 0.1144 10348 +10350 2 276.554 304.3761 4.4792 0.1144 10349 +10351 2 275.7223 303.6519 4.613 0.1144 10350 +10352 2 275.2842 302.5972 4.7159 0.1144 10351 +10353 2 274.9261 301.5104 4.8071 0.1144 10352 +10354 2 274.9135 300.3675 4.9135 0.1144 10353 +10355 2 274.7556 299.2338 5.0532 0.1144 10354 +10356 2 273.8095 298.7705 5.3601 0.1144 10355 +10357 2 272.8726 298.4993 5.6693 0.1144 10356 +10358 2 272.2491 297.5487 5.9836 0.1144 10357 +10359 2 271.5662 297.4926 6.3241 0.1144 10358 +10360 2 270.699 298.0738 6.7748 0.1144 10359 +10361 2 269.714 297.7008 7.1885 0.1144 10360 +10362 2 268.6135 297.5384 7.5947 0.1144 10361 +10363 2 267.6308 298.0646 7.953 0.1144 10362 +10364 2 266.5142 298.1836 8.297 0.1144 10363 +10365 2 265.6128 298.6115 8.7089 0.1144 10364 +10366 2 264.8394 297.7752 9.0482 0.1144 10365 +10367 2 264.2079 296.8234 9.3601 0.1144 10366 +10368 2 263.4838 295.9379 9.6644 0.1144 10367 +10369 2 262.7413 295.0696 9.9798 0.1144 10368 +10370 2 262.2231 294.1716 10.3785 0.1144 10369 +10371 2 262.0675 293.436 11.0737 0.1144 10370 +10372 2 261.7278 292.546 11.8974 0.1144 10371 +10373 2 261.2907 291.5164 12.6425 0.1144 10372 +10374 2 260.7771 290.4971 13.2251 0.1144 10373 +10375 2 260.2005 289.5167 13.6801 0.1144 10374 +10376 2 259.823 288.4756 14.0742 0.1144 10375 +10377 2 259.5313 287.4048 14.3902 0.1144 10376 +10378 2 258.9341 286.4416 14.6185 0.1144 10377 +10379 2 258.1264 285.6362 14.8104 0.1144 10378 +10380 2 257.3142 284.8388 14.988 0.1144 10379 +10381 2 256.6861 283.8893 15.1575 0.1144 10380 +10382 2 256.0878 282.9558 15.3808 0.1144 10381 +10383 2 255.4541 282.0589 15.6937 0.1144 10382 +10384 2 254.8512 281.146 16.0775 0.1144 10383 +10385 2 254.0755 280.3727 16.4939 0.1144 10384 +10386 2 253.1008 279.8224 16.8411 0.1144 10385 +10387 2 252.0644 279.3659 17.1333 0.1144 10386 +10388 2 251.3265 278.5446 17.3877 0.1144 10387 +10389 2 250.631 277.674 17.6656 0.1144 10388 +10390 2 249.6391 277.1729 17.971 0.1144 10389 +10391 2 248.8337 276.4854 18.3444 0.1144 10390 +10392 2 247.938 276.1422 18.8768 0.1144 10391 +10393 2 247.104 276.6364 19.5547 0.1144 10392 +10394 2 245.9863 276.7542 20.1848 0.1144 10393 +10395 2 244.9304 276.2268 21.074 0.1144 10394 +10396 2 244.0541 276.0769 21.6034 0.1144 10395 +10397 2 243.632 276.2268 22.6934 0.1144 10396 +10398 2 242.5589 276.6078 22.9867 0.1144 10397 +10399 2 241.4847 276.9887 23.1155 0.1144 10398 +10400 2 240.4116 277.3697 23.2628 0.1144 10399 +10401 2 239.3408 277.7678 23.3974 0.1144 10400 +10402 2 238.2735 278.1796 23.497 0.1144 10401 +10403 2 237.3091 278.7939 23.5633 0.1144 10402 +10404 2 236.6078 279.6954 23.5993 0.1144 10403 +10405 2 235.95 280.6324 23.6149 0.1144 10404 +10406 2 235.5038 281.6848 23.619 0.1144 10405 +10407 2 235.1961 282.7865 23.6191 0.1144 10406 +10408 2 243.378 276.0026 21.9595 0.1144 10396 +10409 2 243.291 275.8493 23.501 0.1144 10408 +10410 2 243.4375 275.4718 24.2558 0.1144 10409 +10411 2 243.9866 274.9707 24.4954 0.1144 10410 +10412 2 243.4592 273.9994 24.5736 0.1144 10411 +10413 2 243.4855 272.9046 24.6178 0.1144 10412 +10414 2 243.4352 271.7801 24.71 0.1144 10413 +10415 2 243.203 270.6796 24.8098 0.1144 10414 +10416 2 242.8186 269.6168 24.8552 0.1144 10415 +10417 2 242.4491 268.5643 25.0259 0.1144 10416 +10418 2 242.0361 267.6857 25.3935 0.1144 10417 +10419 2 241.853 267.2933 25.7504 0.1144 10418 +10420 2 242.8655 266.9044 26.059 0.1144 10419 +10421 2 243.5553 266.0269 26.2961 0.1144 10420 +10422 2 244.1262 265.0351 26.4684 0.1144 10421 +10423 2 245.0151 264.4619 26.6298 0.1144 10422 +10424 2 246.0733 264.0478 26.7441 0.1144 10423 +10425 2 246.8294 263.2355 26.816 0.1144 10424 +10426 2 247.525 262.3272 26.8507 0.1144 10425 +10427 2 248.4368 261.6488 26.857 0.1144 10426 +10428 2 249.3874 261.0128 26.8389 0.1144 10427 +10429 2 250.3381 260.3767 26.8003 0.1144 10428 +10430 2 251.2876 259.7441 26.7278 0.1144 10429 +10431 2 251.3597 258.6653 26.4312 0.1144 10430 +10432 2 242.6882 275.8928 22.1808 0.1144 10408 +10433 2 241.5625 275.688 22.3111 0.1144 10432 +10434 2 240.4413 275.4603 22.3702 0.1144 10433 +10435 2 239.3774 275.0634 22.3605 0.1144 10434 +10436 2 238.3341 274.6813 22.2281 0.1144 10435 +10437 2 237.2736 274.3095 22.0614 0.1144 10436 +10438 2 236.2154 273.8816 21.9397 0.1144 10437 +10439 2 235.1137 273.6013 21.8861 0.1144 10438 +10440 2 234.0704 273.9491 21.9024 0.1144 10439 +10441 2 233.1209 274.5852 21.9875 0.1144 10440 +10442 2 232.192 275.2418 22.1718 0.1144 10441 +10443 2 231.1544 275.5827 22.4918 0.1144 10442 +10444 2 230.087 275.6983 22.9356 0.1144 10443 +10445 2 228.9808 275.513 23.3734 0.1144 10444 +10446 2 227.8802 275.2018 23.7599 0.1144 10445 +10447 2 226.806 274.8105 24.0995 0.1144 10446 +10448 2 225.7295 274.4273 24.4159 0.1144 10447 +10449 2 224.6541 274.1653 24.7908 0.1144 10448 +10450 2 223.8499 273.567 25.2932 0.1144 10449 +10451 2 223.3271 272.701 25.8932 0.1144 10450 +10452 2 223.239 271.5764 26.3693 0.1144 10451 +10453 2 223.0869 270.4427 26.7135 0.1144 10452 +10454 2 222.8752 269.3182 26.936 0.1144 10453 +10455 2 222.4988 268.2383 27.0512 0.1144 10454 +10456 2 222.3353 267.108 27.0869 0.1144 10455 +10457 2 222.4176 265.9686 27.0819 0.1144 10456 +10458 2 222.4211 264.8246 27.0716 0.1144 10457 +10459 2 222.4211 263.6806 27.0575 0.1144 10458 +10460 2 222.2186 262.5549 27.0373 0.1144 10459 +10461 2 221.6672 261.5539 27.0081 0.1144 10460 +10462 2 221.1958 260.5117 26.9673 0.1144 10461 +10463 2 220.8412 259.4237 26.9147 0.1144 10462 +10464 2 219.9981 258.6504 26.8517 0.1144 10463 +10465 2 219.64 259.4283 26.7207 0.1144 10464 +10466 2 219.1458 260.4362 26.5329 0.1144 10465 +10467 2 218.5086 261.3628 26.3494 0.1144 10466 +10468 2 217.7112 262.1831 26.2233 0.1144 10467 +10469 2 216.915 263.0022 26.165 0.1144 10468 +10470 2 216.1542 263.8476 26.1905 0.1144 10469 +10471 2 215.4758 264.7616 26.2679 0.1144 10470 +10472 2 214.9256 265.7581 26.3481 0.1144 10471 +10473 2 214.4622 266.8025 26.4186 0.1144 10472 +10474 2 213.9143 267.807 26.4761 0.1144 10473 +10475 2 213.3285 268.7885 26.5227 0.1144 10474 +10476 2 212.744 269.7724 26.5612 0.1144 10475 +10477 2 212.1582 270.7551 26.5984 0.1144 10476 +10478 2 211.5725 271.7378 26.6379 0.1144 10477 +10479 2 210.9868 272.7204 26.6786 0.1144 10478 +10480 2 210.401 273.702 26.7196 0.1144 10479 +10481 2 209.8153 274.6847 26.7605 0.1144 10480 +10482 2 209.2307 275.6674 26.8015 0.1144 10481 +10483 2 208.645 276.6512 26.8424 0.1144 10482 +10484 2 208.0593 277.6328 26.8833 0.1144 10483 +10485 2 207.4736 278.6155 26.9243 0.1144 10484 +10486 2 206.8878 279.5982 26.9653 0.1144 10485 +10487 2 206.3032 280.5809 27.0062 0.1144 10486 +10488 2 205.7175 281.5636 27.0471 0.1144 10487 +10489 2 205.1318 282.5463 27.0881 0.1144 10488 +10490 2 204.5461 283.529 27.1291 0.1144 10489 +10491 2 203.9603 284.5117 27.17 0.1144 10490 +10492 2 203.3746 285.4944 27.2109 0.1144 10491 +10493 2 202.79 286.477 27.2519 0.1144 10492 +10494 2 202.2043 287.4597 27.2928 0.1144 10493 +10495 2 201.6186 288.4424 27.3337 0.1144 10494 +10496 2 201.0328 289.4251 27.3746 0.1144 10495 +10497 2 200.4471 290.4078 27.4155 0.1144 10496 +10498 2 199.8614 291.3905 27.4564 0.1144 10497 +10499 2 199.2768 292.3732 27.4973 0.1144 10498 +10500 2 198.6911 293.3559 27.5381 0.1144 10499 +10501 2 198.1053 294.3386 27.5789 0.1144 10500 +10502 2 197.5196 295.3213 27.6196 0.1144 10501 +10503 2 196.9339 296.304 27.6602 0.1144 10502 +10504 2 196.3493 297.2867 27.7007 0.1144 10503 +10505 2 195.7636 298.2694 27.7409 0.1144 10504 +10506 2 195.1778 299.2521 27.781 0.1144 10505 +10507 2 194.5921 300.2348 27.8207 0.1144 10506 +10508 2 194.0075 301.2175 27.8598 0.1144 10507 +10509 2 193.4218 302.2002 27.8982 0.1144 10508 +10510 2 192.8361 303.1829 27.9357 0.1144 10509 +10511 2 192.2503 304.1656 27.9717 0.1144 10510 +10512 2 191.6646 305.1483 28.0059 0.1144 10511 +10513 2 191.08 306.131 28.0375 0.1144 10512 +10514 2 190.4291 307.0656 28.0652 0.1144 10513 +10515 2 189.6626 307.9145 28.0862 0.1144 10514 +10516 2 188.9659 308.8125 28.0997 0.1144 10515 +10517 2 188.1651 309.4978 28.107 0.1144 10516 +10518 2 187.06 309.7952 28.1095 0.1144 10517 +10519 2 186.003 310.215 28.1086 0.1144 10518 +10520 2 185.0729 310.8648 28.1053 0.1144 10519 +10521 2 184.3407 311.732 28.1002 0.1144 10520 +10522 2 183.5193 312.4504 28.093 0.1144 10521 +10523 2 182.4783 312.9229 28.0829 0.1144 10522 +10524 2 181.5173 313.5315 28.0686 0.1144 10523 +10525 2 180.6342 314.2579 28.0493 0.1144 10524 +10526 2 179.743 314.9752 28.0218 0.1144 10525 +10527 2 178.8598 315.7017 27.9824 0.1144 10526 +10528 2 178.17 316.5871 27.9274 0.1144 10527 +10529 2 177.4916 317.4863 27.8548 0.1144 10528 +10530 2 176.6473 318.2585 27.764 0.1144 10529 +10531 2 175.9403 319.1096 27.5938 0.1144 10530 +10532 2 175.3054 320.026 27.351 0.1144 10531 +10533 2 174.6385 320.9435 27.0904 0.1144 10532 +10534 2 174.2735 321.9948 26.8622 0.1144 10533 +10535 2 173.88 323.0633 26.6531 0.1144 10534 +10536 2 173.2542 324.0208 26.4986 0.1144 10535 +10537 2 172.8012 325.0539 26.4312 0.1144 10536 +10538 2 172.5415 326.1658 27.4234 0.1144 10537 +10539 2 172.3447 327.1245 27.9124 0.1144 10538 +10540 2 172.2841 327.9516 28.6443 0.1144 10539 +10541 2 172.4843 329.0602 29.2939 0.1144 10540 +10542 2 172.7429 330.1435 29.8962 0.1144 10541 +10543 2 173.03 331.2463 30.3761 0.1144 10542 +10544 2 173.2634 332.3663 30.7006 0.1144 10543 +10545 2 173.8079 333.3719 30.8862 0.1144 10544 +10546 2 174.4634 334.3088 30.9845 0.1144 10545 +10547 2 175.0389 335.2984 31.0537 0.1144 10546 +10548 2 175.6063 336.2914 31.1069 0.1144 10547 +10549 2 176.2229 337.2535 31.1822 0.1144 10548 +10550 2 176.923 338.1412 31.3191 0.1144 10549 +10551 2 177.1221 338.8334 31.4457 0.1144 10550 +10552 2 177.4367 339.9327 31.5644 0.1144 10551 +10553 2 177.7513 341.0321 31.6728 0.1144 10552 +10554 2 178.0659 342.1315 31.7677 0.1144 10553 +10555 2 178.3805 343.2309 31.8472 0.1144 10554 +10556 2 178.6962 344.3303 31.9124 0.1144 10555 +10557 2 178.9113 345.4514 31.9656 0.1144 10556 +10558 2 179.0394 346.5874 32.0015 0.1144 10557 +10559 2 179.1493 347.7268 32.0225 0.1144 10558 +10560 2 179.2602 348.8651 32.0312 0.1144 10559 +10561 2 179.37 350.0034 32.0309 0.1144 10560 +10562 2 179.481 351.1428 32.0242 0.1144 10561 +10563 2 179.6069 352.2799 32.013 0.1144 10562 +10564 2 180.1102 353.2821 31.9962 0.1144 10563 +10565 2 180.7314 354.243 31.9701 0.1144 10564 +10566 2 181.3526 355.2028 31.9362 0.1144 10565 +10567 2 181.9749 356.1627 31.8965 0.1144 10566 +10568 2 182.5973 357.1236 31.8531 0.1144 10567 +10569 2 183.517 357.6819 31.7268 0.1144 10568 +10570 2 184.3076 356.8548 31.4924 0.1144 10569 +10571 2 176.7674 338.3208 31.4605 0.1144 10550 +10572 2 176.0216 339.1857 31.2334 0.1144 10571 +10573 2 175.2757 340.0506 31.1363 0.1144 10572 +10574 2 174.5298 340.9166 31.0223 0.1144 10573 +10575 2 173.7839 341.7814 30.8988 0.1144 10574 +10576 2 173.038 342.6463 30.7731 0.1144 10575 +10577 2 172.2921 343.5112 30.6522 0.1144 10576 +10578 2 171.5451 344.376 30.5416 0.1144 10577 +10579 2 170.7283 345.1757 30.4634 0.1144 10578 +10580 2 170.027 346.0794 30.413 0.1144 10579 +10581 2 169.3761 347.021 30.3677 0.1144 10580 +10582 2 172.4328 323.2189 26.3179 0.1144 10536 +10583 2 171.6137 322.4192 26.2567 0.1144 10582 +10584 2 170.734 321.7042 26.146 0.1144 10583 +10585 2 170.0064 320.8279 26.0235 0.1144 10584 +10586 2 169.4733 319.8166 25.9176 0.1144 10585 +10587 2 168.835 318.8671 25.8236 0.1144 10586 +10588 2 167.8431 318.2974 25.7357 0.1144 10587 +10589 2 167.6257 317.3994 25.6495 0.1144 10588 +10590 2 167.6257 316.2702 25.5616 0.1144 10589 +10591 2 167.7722 315.1365 25.4592 0.1144 10590 +10592 2 167.8408 314.0658 25.2215 0.1144 10591 +10593 2 167.9815 312.9606 24.9531 0.1144 10592 +10594 2 168.1577 311.8304 24.7144 0.1144 10593 +10595 2 168.057 310.7035 24.5011 0.1144 10594 +10596 2 167.6738 309.6705 24.223 0.1144 10595 +10597 2 167.4564 308.5711 23.9317 0.1144 10596 +10598 2 167.2288 307.4523 23.6859 0.1144 10597 +10599 2 166.913 306.3529 23.4664 0.1144 10598 +10600 2 166.7105 305.2341 23.2223 0.1144 10599 +10601 2 166.555 304.1232 22.9131 0.1144 10600 +10602 2 166.4394 302.9941 22.5935 0.1144 10601 +10603 2 166.6373 301.8764 22.2992 0.1144 10602 +10604 2 166.8261 300.7668 21.9621 0.1144 10603 +10605 2 166.587 299.8241 21.4667 0.1144 10604 +10606 2 166.2575 298.7476 21.0304 0.1144 10605 +10607 2 165.8743 297.6711 20.7068 0.1144 10606 +10608 2 165.0998 296.8348 20.4747 0.1144 10607 +10609 2 164.307 296.0089 20.3156 0.1144 10608 +10610 2 163.433 295.2721 20.2177 0.1144 10609 +10611 2 162.5361 294.5617 20.1581 0.1144 10610 +10612 2 161.4504 294.2105 20.0884 0.1144 10611 +10613 2 160.5078 293.563 19.9889 0.1144 10612 +10614 2 159.477 293.0665 19.8503 0.1144 10613 +10615 2 158.3879 292.7176 19.6692 0.1144 10614 +10616 2 157.562 291.9271 19.4424 0.1144 10615 +10617 2 156.8413 292.3503 20.3308 0.1144 10616 +10618 2 155.8036 292.8285 20.3308 0.1144 10617 +10619 2 154.7992 293.3742 20.3308 0.1144 10618 +10620 2 153.7044 293.6842 20.3308 0.1144 10619 +10621 2 153.1233 294.6017 20.3308 0.1144 10620 +10622 2 152.4723 295.5398 20.3308 0.1144 10621 +10623 2 151.6681 296.3509 20.3308 0.1144 10622 +10624 2 150.8707 297.1712 20.3308 0.1144 10623 +10625 2 150.4852 298.2362 20.3308 0.1144 10624 +10626 2 150.2278 299.3505 20.3308 0.1144 10625 +10627 2 150.4143 300.4705 20.3308 0.1144 10626 +10628 2 151.2174 301.2793 20.3308 0.1144 10627 +10629 2 152.033 302.0812 20.3308 0.1144 10628 +10630 2 152.8476 302.8854 20.3308 0.1144 10629 +10631 2 153.6632 303.6874 20.3308 0.1144 10630 +10632 2 154.543 304.4195 20.3308 0.1144 10631 +10633 2 155.4067 305.1689 20.3308 0.1144 10632 +10634 2 156.3379 305.8335 20.3308 0.1144 10633 +10635 2 157.1158 291.9202 18.9993 0.1144 10616 +10636 2 156.1274 291.7669 18.3982 0.1144 10635 +10637 2 155.0909 292.0438 17.7561 0.1144 10636 +10638 2 153.9824 292.3149 17.2273 0.1144 10637 +10639 2 152.9322 292.3881 16.6665 0.1144 10638 +10640 2 151.8191 292.1444 16.2631 0.1144 10639 +10641 2 150.7552 291.7269 16.0089 0.1144 10640 +10642 2 149.6764 291.3459 15.8577 0.1144 10641 +10643 2 148.5438 291.1835 15.7658 0.1144 10642 +10644 2 147.4078 291.0553 15.7028 0.1144 10643 +10645 2 146.2867 290.8231 15.6577 0.1144 10644 +10646 2 145.193 290.4879 15.5927 0.1144 10645 +10647 2 144.1486 290.0212 15.5028 0.1144 10646 +10648 2 143.032 289.7752 15.3871 0.1144 10647 +10649 2 142.3479 288.8611 15.2474 0.1144 10648 +10650 2 141.4968 288.4562 14.9715 0.1144 10649 +10651 2 140.6331 287.9871 14.5179 0.1144 10650 +10652 2 139.5142 287.7709 14.1532 0.1144 10651 +10653 2 138.3748 287.6657 13.8784 0.1144 10652 +10654 2 137.3383 287.1863 13.6863 0.1144 10653 +10655 2 136.398 286.5354 13.569 0.1144 10654 +10656 2 135.3981 285.9817 13.5169 0.1144 10655 +10657 2 134.2736 285.7723 13.5009 0.1144 10656 +10658 2 133.1296 285.7701 13.4796 0.1144 10657 +10659 2 132.0245 285.5584 13.4501 0.1144 10658 +10660 2 131.2729 284.7004 13.4096 0.1144 10659 +10661 2 130.718 283.6994 13.3514 0.1144 10660 +10662 2 130.273 282.6458 13.2675 0.1144 10661 +10663 2 129.9309 281.5601 13.1537 0.1144 10662 +10664 2 129.8623 280.431 13.0076 0.1144 10663 +10665 2 129.3155 279.4403 12.8107 0.1144 10664 +10666 2 128.6771 278.6212 12.4204 0.1144 10665 +10667 2 128.2264 277.7083 11.9267 0.1144 10666 +10668 2 128.414 276.5814 11.5058 0.1144 10667 +10669 2 128.4826 275.4477 11.115 0.1144 10668 +10670 2 128.4769 274.3209 10.7421 0.1144 10669 +10671 2 128.4735 273.1838 10.4264 0.1144 10670 +10672 2 128.5364 272.0512 10.2061 0.1144 10671 +10673 2 128.8922 270.9644 10.0339 0.1144 10672 +10674 2 129.145 269.849 9.874 0.1144 10673 +10675 2 129.232 268.7256 9.7192 0.1144 10674 +10676 2 128.835 267.6651 9.5499 0.1144 10675 +10677 2 128.1589 266.8163 9.2786 0.1144 10676 +10678 2 127.6326 266.0784 8.8127 0.1144 10677 +10679 2 128.0845 265.2959 8.392 0.1144 10678 +10680 2 128.9826 264.6747 8.0413 0.1144 10679 +10681 2 129.272 263.6268 7.7506 0.1144 10680 +10682 2 129.4836 262.5183 7.512 0.1144 10681 +10683 2 129.8429 261.4326 7.3114 0.1144 10682 +10684 2 130.0225 260.4865 6.9708 0.1144 10683 +10685 2 130.0614 259.4546 6.5493 0.1144 10684 +10686 2 130.011 258.3163 6.1982 0.1144 10685 +10687 2 129.9115 257.1769 5.9354 0.1144 10686 +10688 2 129.876 256.0341 5.7534 0.1144 10687 +10689 2 129.9836 254.8981 5.6436 0.1144 10688 +10690 2 129.8818 253.7724 5.5956 0.1144 10689 +10691 2 129.8108 252.6364 5.5705 0.1144 10690 +10692 2 129.8108 251.4924 5.5383 0.1144 10691 +10693 2 129.7834 250.3484 5.4938 0.1144 10692 +10694 2 129.4482 249.2742 5.4364 0.1144 10693 +10695 2 128.7252 248.4082 5.3671 0.1144 10694 +10696 2 127.7333 247.9094 5.2328 0.1144 10695 +10697 2 126.6374 247.8945 5.0056 0.1144 10696 +10698 2 125.6878 247.2676 4.8232 0.1144 10697 +10699 2 124.6674 246.7505 4.6866 0.1144 10698 +10700 2 123.8712 245.9314 4.5923 0.1144 10699 +10701 2 123.258 244.9659 4.5181 0.1144 10700 +10702 2 142.3639 288.5866 15.2113 0.1144 10649 +10703 2 142.6522 287.6645 14.4347 0.1144 10702 +10704 2 143.3626 286.8168 14.1374 0.1144 10703 +10705 2 144.1612 285.9966 13.9105 0.1144 10704 +10706 2 144.7915 285.0493 13.7503 0.1144 10705 +10707 2 145.4985 284.1536 13.6524 0.1144 10706 +10708 2 146.1586 283.2212 13.6117 0.1144 10707 +10709 2 146.6711 282.2008 13.6235 0.1144 10708 +10710 2 147.306 281.2535 13.6523 0.1144 10709 +10711 2 147.8094 280.232 13.693 0.1144 10710 +10712 2 147.9844 279.1108 13.7466 0.1144 10711 +10713 2 148.4077 278.0618 13.8124 0.1144 10712 +10714 2 149.4373 277.6671 13.9142 0.1144 10713 +10715 2 150.5138 277.7884 14.1319 0.1144 10714 +10716 2 151.5125 277.2793 14.3268 0.1144 10715 +10717 2 152.0834 276.2989 14.4762 0.1144 10716 +10718 2 152.9208 275.5267 14.5822 0.1144 10717 +10719 2 153.9527 275.037 14.6486 0.1144 10718 +10720 2 154.4617 274.0258 14.6795 0.1144 10719 +10721 2 154.9273 272.9813 14.6835 0.1144 10720 +10722 2 166.8513 318.6246 26.664 0.1144 10588 +10723 2 165.7553 318.8522 26.9863 0.1144 10722 +10724 2 164.6719 319.152 27.3289 0.1144 10723 +10725 2 163.7499 319.8075 27.638 0.1144 10724 +10726 2 163.012 320.6804 27.8628 0.1144 10725 +10727 2 162.3691 321.6264 28.009 0.1144 10726 +10728 2 161.5545 322.4295 28.1182 0.1144 10727 +10729 2 219.5302 257.559 27.1848 0.1144 10464 +10730 2 219.1687 256.4745 27.2153 0.1144 10729 +10731 2 218.75 255.4117 27.2593 0.1144 10730 +10732 2 218.2523 254.381 27.32 0.1144 10731 +10733 2 217.8931 253.2988 27.4022 0.1144 10732 +10734 2 217.3646 252.2932 27.5082 0.1144 10733 +10735 2 216.7788 251.3219 27.686 0.1144 10734 +10736 2 216.3361 250.3061 27.9614 0.1144 10735 +10737 2 216.3064 249.1849 28.2279 0.1144 10736 +10738 2 215.8911 248.232 28.588 0.1144 10737 +10739 2 215.3672 247.2333 28.8926 0.1144 10738 +10740 2 215.0594 246.1362 29.1116 0.1144 10739 +10741 2 214.9862 244.9979 29.2519 0.1144 10740 +10742 2 215.4758 243.99 29.33 0.1144 10741 +10743 2 216.2869 243.1892 29.3686 0.1144 10742 +10744 2 217.1735 242.4674 29.3765 0.1144 10743 +10745 2 217.9549 241.6334 29.3804 0.1144 10744 +10746 2 218.6493 240.7251 29.3857 0.1144 10745 +10747 2 219.4753 239.9357 29.3933 0.1144 10746 +10748 2 220.5998 239.7424 29.4042 0.1144 10747 +10749 2 221.237 238.7951 29.4188 0.1144 10748 +10750 2 221.7083 237.7529 29.4392 0.1144 10749 +10751 2 222.071 236.6684 29.4689 0.1144 10750 +10752 2 222.1865 235.3517 29.568 0.1144 10751 +10753 2 222.1305 234.2123 29.64 0.1144 10752 +10754 2 222.0275 233.0728 29.7388 0.1144 10753 +10755 2 222.0596 231.978 29.9513 0.1144 10754 +10756 2 221.769 230.8992 30.1795 0.1144 10755 +10757 2 221.4258 229.809 30.3769 0.1144 10756 +10758 2 221.2256 228.6845 30.5452 0.1144 10757 +10759 2 221.221 227.5427 30.6916 0.1144 10758 +10760 2 221.3823 226.4113 30.8238 0.1144 10759 +10761 2 220.7542 225.5373 30.9557 0.1144 10760 +10762 2 220.0804 224.669 31.1968 0.1144 10761 +10763 2 219.7166 223.6074 31.4625 0.1144 10762 +10764 2 219.4272 222.5343 31.78 0.1144 10763 +10765 2 219.2899 221.4189 32.0947 0.1144 10764 +10766 2 219.5244 220.3001 32.314 0.1144 10765 +10767 2 219.8722 219.211 32.4388 0.1144 10766 +10768 2 220.4271 218.21 32.4736 0.1144 10767 +10769 2 221.0322 217.2399 32.4341 0.1144 10768 +10770 2 221.9166 216.5134 32.3229 0.1144 10769 +10771 2 222.802 215.7893 32.1532 0.1144 10770 +10772 2 223.7286 215.1189 31.9376 0.1144 10771 +10773 2 224.3544 214.7174 32.7552 0.1144 10772 +10774 2 225.2936 214.0641 32.954 0.1144 10773 +10775 2 226.1356 213.2942 33.0347 0.1144 10774 +10776 2 227.0611 212.633 33.1442 0.1144 10775 +10777 2 227.8768 211.8436 33.285 0.1144 10776 +10778 2 228.4785 210.8953 33.5121 0.1144 10777 +10779 2 228.9441 209.892 33.8531 0.1144 10778 +10780 2 229.3823 208.8818 34.2871 0.1144 10779 +10781 2 230.0687 207.9986 34.7248 0.1144 10780 +10782 2 231.0697 207.4896 35.1151 0.1144 10781 +10783 2 232.1908 207.4941 35.4472 0.1144 10782 +10784 2 233.0236 208.1977 35.8218 0.1144 10783 +10785 2 233.7489 208.812 36.3378 0.1144 10784 +10786 2 234.6127 209.5614 36.7217 0.1144 10785 +10787 2 235.3231 210.4582 37.2733 0.1144 10786 +10788 2 223.3397 214.9519 31.5991 0.1144 10772 +10789 2 223.1235 214.063 31.0531 0.1144 10788 +10790 2 223.1189 213.0563 30.3503 0.1144 10789 +10791 2 222.6567 212.0587 29.7142 0.1144 10790 +10792 2 222.2026 211.0188 29.2062 0.1144 10791 +10793 2 221.7541 210.1242 28.5723 0.1144 10792 +10794 2 221.5734 209.0134 27.9797 0.1144 10793 +10795 2 221.2061 208.0055 27.386 0.1144 10794 +10796 2 220.4694 207.4369 26.7035 0.1144 10795 +10797 2 221.1272 206.7963 26.1264 0.1144 10796 +10798 2 221.7186 205.8319 25.6647 0.1144 10797 +10799 2 222.2815 205.189 25.0751 0.1144 10798 +10800 2 223.1166 204.4225 24.6362 0.1144 10799 +10801 2 223.7138 203.4673 24.318 0.1144 10800 +10802 2 224.6702 202.9387 24.084 0.1144 10801 +10803 2 225.7169 202.8426 23.8869 0.1144 10802 +10804 2 226.4525 201.9766 23.7156 0.1144 10803 +10805 2 227.0451 201.0134 23.5364 0.1144 10804 +10806 2 227.6263 200.1142 23.208 0.1144 10805 +10807 2 227.4672 199.1612 22.8258 0.1144 10806 +10808 2 227.3917 198.1053 22.4268 0.1144 10807 +10809 2 227.5999 196.9831 22.1036 0.1144 10808 +10810 2 227.6377 195.8654 21.7829 0.1144 10809 +10811 2 228.101 194.8198 21.3699 0.1144 10810 +10812 2 222.8546 236.1948 29.9956 0.1144 10751 +10813 2 223.8396 235.6331 30.5379 0.1144 10812 +10814 2 224.5363 234.7282 30.7518 0.1144 10813 +10815 2 225.1369 233.7581 31.0108 0.1144 10814 +10816 2 225.7364 232.788 31.3102 0.1144 10815 +10817 2 227.0039 232.7571 31.3228 0.1144 10816 +10818 2 228.1445 232.7068 31.4874 0.1144 10817 +10819 2 229.2839 232.6564 31.6907 0.1144 10818 +10820 2 230.2517 232.0993 31.9682 0.1144 10819 +10821 2 231.1349 231.406 32.3011 0.1144 10820 +10822 2 232.0146 230.7082 32.6614 0.1144 10821 +10823 2 233.1117 230.4222 32.9762 0.1144 10822 +10824 2 233.9457 229.642 33.234 0.1144 10823 +10825 2 234.7728 228.8698 33.7417 0.1144 10824 +10826 2 226.3576 232.0604 31.6884 0.1144 10816 +10827 2 227.0817 231.2104 32.1376 0.1144 10826 +10828 2 227.8059 230.3604 32.6332 0.1144 10827 +10829 2 228.5312 229.5116 33.1607 0.1144 10828 +10830 2 229.2553 228.6616 33.6988 0.1144 10829 +10831 2 229.9806 227.8116 34.2286 0.1144 10830 +10832 2 230.7048 226.9616 34.7318 0.1144 10831 +10833 2 231.4289 226.1116 35.2008 0.1144 10832 +10834 2 232.2629 225.3497 35.6045 0.1144 10833 +10835 2 233.2696 224.8074 35.891 0.1144 10834 +10836 2 234.2809 224.2732 36.0861 0.1144 10835 +10837 2 235.2487 223.6634 36.2169 0.1144 10836 +10838 2 236.1891 223.0114 36.3107 0.1144 10837 +10839 2 237.1089 222.3318 36.3944 0.1144 10838 +10840 2 238.0916 221.7461 36.5036 0.1144 10839 +10841 2 239.1715 221.372 36.6422 0.1144 10840 +10842 2 240.2537 221.0014 36.8026 0.1144 10841 +10843 2 241.2673 220.6204 37.1073 0.1144 10842 +10844 2 242.3701 220.5609 37.4811 0.1144 10843 +10845 2 243.4832 220.5987 38.4028 0.1144 10844 +10846 2 246.4828 277.1889 20.8074 0.1144 10394 +10847 2 247.4255 277.6854 21.2284 0.1144 10846 +10848 2 247.8419 278.7173 21.4205 0.1144 10847 +10849 2 247.9975 279.8396 21.6598 0.1144 10848 +10850 2 248.1519 280.9401 21.9701 0.1144 10849 +10851 2 248.8715 281.702 22.2785 0.1144 10850 +10852 2 249.8851 282.2259 22.5441 0.1144 10851 +10853 2 250.83 282.8643 22.7669 0.1144 10852 +10854 2 251.7395 283.5404 22.9957 0.1144 10853 +10855 2 252.649 283.0805 23.2772 0.1144 10854 +10856 2 253.3937 282.2168 23.498 0.1144 10855 +10857 2 253.7781 281.1677 23.7489 0.1144 10856 +10858 2 253.9829 280.0432 23.9368 0.1144 10857 +10859 2 254.4187 278.9861 24.065 0.1144 10858 +10860 2 255.144 278.1018 24.1816 0.1144 10859 +10861 2 287.9459 375.8269 11.4148 0.1144 10108 +10862 2 288.8177 376.4057 11.9115 0.1144 10861 +10863 2 289.9228 376.4996 12.0816 0.1144 10862 +10864 2 290.9524 376.0214 12.2134 0.1144 10863 +10865 2 291.8722 375.3418 12.3102 0.1144 10864 +10866 2 292.8674 374.7984 12.3757 0.1144 10865 +10867 2 293.817 374.2813 12.4144 0.1144 10866 +10868 2 294.4793 373.3513 12.4311 0.1144 10867 +10869 2 295.3716 372.7106 12.454 0.1144 10868 +10870 2 296.455 372.3468 12.4875 0.1144 10869 +10871 2 297.5498 372.0299 12.5357 0.1144 10870 +10872 2 298.6504 371.7325 12.5998 0.1144 10871 +10873 2 299.7349 371.3756 12.6785 0.1144 10872 +10874 2 300.8423 371.1159 12.7954 0.1144 10873 +10875 2 301.8879 370.8962 13.0335 0.1144 10874 +10876 2 302.9472 370.6938 13.3059 0.1144 10875 +10877 2 304.0718 370.7315 13.4927 0.1144 10876 +10878 2 305.2009 370.9123 13.5966 0.1144 10877 +10879 2 306.338 371.0072 13.604 0.1144 10878 +10880 2 307.4168 371.2989 13.5004 0.1144 10879 +10881 2 308.4716 371.6753 13.2833 0.1144 10880 +10882 2 309.5904 371.8206 13.0355 0.1144 10881 +10883 2 310.7333 371.7783 12.8149 0.1144 10882 +10884 2 311.867 371.6879 12.5907 0.1144 10883 +10885 2 312.9915 371.6925 12.3391 0.1144 10884 +10886 2 314.0944 371.8275 12.0481 0.1144 10885 +10887 2 315.1731 372.1032 11.772 0.1144 10886 +10888 2 316.1947 372.6054 11.5679 0.1144 10887 +10889 2 317.1717 373.2014 11.4248 0.1144 10888 +10890 2 318.1235 373.834 11.3368 0.1144 10889 +10891 2 319.0444 374.5136 11.293 0.1144 10890 +10892 2 319.8613 375.3041 11.2774 0.1144 10891 +10893 2 320.5923 376.1838 11.2704 0.1144 10892 +10894 2 321.3061 377.0773 11.2606 0.1144 10893 +10895 2 322.0452 377.9501 11.2468 0.1144 10894 +10896 2 322.8425 378.7704 11.2276 0.1144 10895 +10897 2 323.736 379.4774 11.2014 0.1144 10896 +10898 2 324.6981 380.0974 11.1645 0.1144 10897 +10899 2 325.7643 380.4212 11.1103 0.1144 10898 +10900 2 326.763 380.0059 11.0347 0.1144 10899 +10901 2 327.5569 379.1925 10.9364 0.1144 10900 +10902 2 328.2228 378.2636 10.8156 0.1144 10901 +10903 2 328.6163 377.234 10.5984 0.1144 10902 +10904 2 328.9458 376.2593 10.214 0.1144 10903 +10905 2 329.8438 375.5523 9.8899 0.1144 10904 +10906 2 329.7832 374.6291 9.56 0.1144 10905 +10907 2 330.2396 374.0972 9.5899 0.1144 10906 +10908 2 331.1297 373.6716 9.602 0.1144 10907 +10909 2 331.3504 372.5859 9.6196 0.1144 10908 +10910 2 332.3526 372.6202 9.6435 0.1144 10909 +10911 2 333.3742 372.1421 9.6738 0.1144 10910 +10912 2 334.326 371.5071 9.7104 0.1144 10911 +10913 2 335.2515 370.8493 9.798 0.1144 10912 +10914 2 336.2239 370.2556 9.9051 0.1144 10913 +10915 2 336.9206 369.3553 9.991 0.1144 10914 +10916 2 337.0201 368.2239 10.0543 0.1144 10915 +10917 2 336.2719 367.3647 10.1226 0.1144 10916 +10918 2 330.3403 375.7022 9.6225 0.1144 10905 +10919 2 331.4202 376.0774 9.4071 0.1144 10918 +10920 2 332.5128 376.3657 9.2189 0.1144 10919 +10921 2 333.5321 376.3611 8.9411 0.1144 10920 +10922 2 334.5273 375.9184 8.7432 0.1144 10921 +10923 2 335.6199 376.2376 8.5882 0.1144 10922 +10924 2 336.6552 376.7215 8.4709 0.1144 10923 +10925 2 337.7431 377.0121 8.3865 0.1144 10924 +10926 2 338.8574 376.8336 8.3308 0.1144 10925 +10927 2 339.8481 376.2822 8.2956 0.1144 10926 +10928 2 340.658 375.4894 8.2311 0.1144 10927 +10929 2 341.2724 374.5536 8.1164 0.1144 10928 +10930 2 341.4474 373.4988 8.0255 0.1144 10929 +10931 2 340.8216 372.6145 7.9573 0.1144 10930 +10932 2 340.2096 371.8355 7.9099 0.1144 10931 +10933 2 340.372 370.7121 7.8816 0.1144 10932 +10934 2 340.308 369.6218 7.8701 0.1144 10933 +10935 2 340.1695 368.5076 7.8689 0.1144 10934 +10936 2 340.4944 367.4391 7.8672 0.1144 10935 +10937 2 341.341 367.2343 7.8649 0.1144 10936 +10938 2 342.2516 367.8932 7.8618 0.1144 10937 +10939 2 343.295 368.2708 7.8572 0.1144 10938 +10940 2 344.4081 368.1335 7.8508 0.1144 10939 +10941 2 345.4731 367.7239 7.842 0.1144 10940 +10942 2 346.4741 367.1725 7.8302 0.1144 10941 +10943 2 347.5747 366.9552 7.8131 0.1144 10942 +10944 2 348.6386 366.5708 7.7865 0.1144 10943 +10945 2 349.4806 365.818 7.7523 0.1144 10944 +10946 2 350.1887 364.92 7.7125 0.1144 10945 +10947 2 350.803 363.9567 7.6607 0.1144 10946 +10948 2 350.5319 362.9191 7.5373 0.1144 10947 +10949 2 349.46 362.5199 7.3108 0.1144 10948 +10950 2 272.661 385.0384 14.7373 0.1144 9704 +10951 2 271.7618 384.4092 15.2507 0.1144 10950 +10952 2 270.8294 383.8417 15.8483 0.1144 10951 +10953 2 269.8261 383.3704 16.4622 0.1144 10952 +10954 2 268.9613 383.1062 17.2438 0.1144 10953 +10955 2 267.966 383.0833 18.0644 0.1144 10954 +10956 2 266.8735 382.851 18.7486 0.1144 10955 +10957 2 265.7901 382.9151 19.3183 0.1144 10956 +10958 2 264.741 382.7012 19.838 0.1144 10957 +10959 2 264.0352 381.9107 20.3675 0.1144 10958 +10960 2 263.4563 380.9383 20.7917 0.1144 10959 +10961 2 263.3156 379.8366 21.2026 0.1144 10960 +10962 2 262.699 378.9145 21.6309 0.1144 10961 +10963 2 261.8959 378.1641 22.0543 0.1144 10962 +10964 2 261.1603 377.2878 22.3814 0.1144 10963 +10965 2 260.3733 376.4641 22.6347 0.1144 10964 +10966 2 259.6262 375.6576 22.8427 0.1144 10965 +10967 2 259.2533 374.6531 23.0857 0.1144 10966 +10968 2 258.5875 373.8878 23.4278 0.1144 10967 +10969 2 257.7729 373.0939 23.7152 0.1144 10968 +10970 2 257.0762 372.1901 23.937 0.1144 10969 +10971 2 256.415 371.2566 24.0992 0.1144 10970 +10972 2 255.7366 370.3357 24.2087 0.1144 10971 +10973 2 255.0388 369.4296 24.2735 0.1144 10972 +10974 2 254.2551 368.6014 24.3163 0.1144 10973 +10975 2 253.3159 367.9653 24.3722 0.1144 10974 +10976 2 252.252 367.5638 24.4493 0.1144 10975 +10977 2 251.1789 367.1782 24.5493 0.1144 10976 +10978 2 250.5097 366.3385 24.6733 0.1144 10977 +10979 2 249.8256 365.5309 24.9207 0.1144 10978 +10980 2 248.868 365.0458 25.2795 0.1144 10979 +10981 2 247.8705 364.5036 25.6014 0.1144 10980 +10982 2 247.1063 363.6593 25.8679 0.1144 10981 +10983 2 246.1282 363.1239 26.1646 0.1144 10982 +10984 2 245.2484 362.394 26.398 0.1144 10983 +10985 2 244.6604 361.4136 26.5779 0.1144 10984 +10986 2 244.7394 360.4023 26.4312 0.1144 10985 +10987 2 245.2553 359.3887 25.889 0.1144 10986 +10988 2 245.5607 358.3042 25.6399 0.1144 10987 +10989 2 246.1076 357.3215 25.3456 0.1144 10988 +10990 2 247.1166 356.9017 24.9483 0.1144 10989 +10991 2 248.089 356.8285 24.3684 0.1144 10990 +10992 2 248.6621 356.0597 23.7874 0.1144 10991 +10993 2 248.9859 354.9683 23.2923 0.1144 10992 +10994 2 248.8074 353.8712 22.8991 0.1144 10993 +10995 2 248.7456 352.8256 22.4468 0.1144 10994 +10996 2 248.1954 351.8544 22.0942 0.1144 10995 +10997 2 247.565 350.9003 21.8417 0.1144 10996 +10998 2 247.5799 349.8798 21.4867 0.1144 10997 +10999 2 247.8179 349.8684 21.2262 0.1144 10998 +11000 2 248.9527 349.7334 21.0507 0.1144 10999 +11001 2 250.0155 349.3421 20.9548 0.1144 11000 +11002 2 251.0588 348.872 20.9087 0.1144 11001 +11003 2 252.1662 348.6111 20.9052 0.1144 11002 +11004 2 253.2576 348.2794 20.9402 0.1144 11003 +11005 2 254.3776 348.0631 20.9822 0.1144 11004 +11006 2 255.4563 347.7577 21.0955 0.1144 11005 +11007 2 256.4173 347.1594 21.2078 0.1144 11006 +11008 2 257.2204 346.3506 21.3006 0.1144 11007 +11009 2 258.21 345.798 21.3763 0.1144 11008 +11010 2 259.0394 345.0247 21.4399 0.1144 11009 +11011 2 259.2041 343.923 21.4966 0.1144 11010 +11012 2 259.2613 342.7802 21.5512 0.1144 11011 +11013 2 259.2624 341.6362 21.6193 0.1144 11012 +11014 2 259.1091 340.5036 21.7083 0.1144 11013 +11015 2 259.7029 339.5575 21.8828 0.1144 11014 +11016 2 260.1147 338.4924 22.0918 0.1144 11015 +11017 2 260.5105 337.4194 22.3118 0.1144 11016 +11018 2 261.0539 337.0361 22.555 0.1144 11017 +11019 2 261.9177 336.59 22.9061 0.1144 11018 +11020 2 262.9312 336.3978 23.3708 0.1144 11019 +11021 2 263.9357 335.9482 23.8797 0.1144 11020 +11022 2 264.9241 335.4357 24.3639 0.1144 11021 +11023 2 265.964 334.9758 24.7564 0.1144 11022 +11024 2 266.9718 334.5331 25.1454 0.1144 11023 +11025 2 267.7532 333.7723 25.4989 0.1144 11024 +11026 2 268.5288 332.9578 25.8121 0.1144 11025 +11027 2 269.1477 332.0185 26.0592 0.1144 11026 +11028 2 269.7438 331.0439 26.2319 0.1144 11027 +11029 2 270.1133 329.9742 26.3447 0.1144 11028 +11030 2 270.2528 328.8417 26.4036 0.1144 11029 +11031 2 270.8649 327.9299 26.4287 0.1144 11030 +11032 2 271.517 326.9941 26.4363 0.1144 11031 +11033 2 272.4184 326.3271 26.4382 0.1144 11032 +11034 2 273.535 326.2825 26.4399 0.1144 11033 +11035 2 274.6424 326.0297 26.4435 0.1144 11034 +11036 2 275.7223 325.6545 26.4531 0.1144 11035 +11037 2 276.5837 324.9212 26.4731 0.1144 11036 +11038 2 277.2987 324.0563 26.4415 0.1144 11037 +11039 2 278.1499 323.3013 26.449 0.1144 11038 +11040 2 278.9552 322.4913 26.53 0.1144 11039 +11041 2 279.9379 321.9422 26.7193 0.1144 11040 +11042 2 281.0339 321.6287 26.9441 0.1144 11041 +11043 2 281.9445 321.0991 27.3397 0.1144 11042 +11044 2 282.8654 320.6197 27.8727 0.1144 11043 +11045 2 283.9751 320.36 28.3102 0.1144 11044 +11046 2 284.8263 319.6359 28.7283 0.1144 11045 +11047 2 285.849 319.9127 29.1421 0.1144 11046 +11048 2 286.8031 320.5065 28.9134 0.1144 11047 +11049 2 287.7801 321.0979 28.8291 0.1144 11048 +11050 2 288.7822 321.6493 28.7633 0.1144 11049 +11051 2 289.8393 322.0852 28.7143 0.1144 11050 +11052 2 290.9558 322.3312 28.6807 0.1144 11051 +11053 2 292.0632 322.0589 28.6602 0.1144 11052 +11054 2 293.174 321.7878 28.6502 0.1144 11053 +11055 2 294.3157 321.7237 28.6381 0.1144 11054 +11056 2 295.3968 322.0898 28.6216 0.1144 11055 +11057 2 296.0478 321.3599 28.975 0.1144 11056 +11058 2 296.6392 320.423 29.1858 0.1144 11057 +11059 2 296.6255 319.279 29.2614 0.1144 11058 +11060 2 296.5728 318.1361 29.339 0.1144 11059 +11061 2 296.4779 316.9967 29.4241 0.1144 11060 +11062 2 296.3841 315.8561 29.5212 0.1144 11061 +11063 2 296.3349 314.7144 29.6321 0.1144 11062 +11064 2 296.4333 313.5887 29.7741 0.1144 11063 +11065 2 296.7959 312.5683 30.0544 0.1144 11064 +11066 2 297.1243 311.5306 30.406 0.1144 11065 +11067 2 297.3153 310.405 30.7042 0.1144 11066 +11068 2 297.5052 309.2793 30.9369 0.1144 11067 +11069 2 297.6963 308.1536 31.0948 0.1144 11068 +11070 2 297.8873 307.0279 31.1696 0.1144 11069 +11071 2 298.0784 305.9022 31.1578 0.1144 11070 +11072 2 298.3106 304.8222 31.0268 0.1144 11071 +11073 2 298.6481 303.8475 30.6852 0.1144 11072 +11074 2 298.8894 302.7424 30.3019 0.1144 11073 +11075 2 299.1011 301.6705 29.8332 0.1144 11074 +11076 2 298.9775 300.7679 29.2916 0.1144 11075 +11077 2 297.9205 300.8377 28.8422 0.1144 11076 +11078 2 296.8142 301.1283 28.5228 0.1144 11077 +11079 2 295.6988 301.3799 28.3153 0.1144 11078 +11080 2 294.58 301.6202 28.1789 0.1144 11079 +11081 2 293.4738 301.9085 28.0938 0.1144 11080 +11082 2 292.3709 302.2128 28.0302 0.1144 11081 +11083 2 291.2441 302.3958 27.9492 0.1144 11082 +11084 2 290.2362 301.9782 27.8231 0.1144 11083 +11085 2 289.5441 301.0905 27.6498 0.1144 11084 +11086 2 288.8943 300.1581 27.4452 0.1144 11085 +11087 2 288.2434 299.2258 27.2261 0.1144 11086 +11088 2 287.5936 298.2934 27.008 0.1144 11087 +11089 2 287.1451 297.2501 26.8148 0.1144 11088 +11090 2 287.4975 296.1805 26.689 0.1144 11089 +11091 2 288.05 295.1795 26.6268 0.1144 11090 +11092 2 288.5294 294.1407 26.6177 0.1144 11091 +11093 2 289.0327 293.1134 26.65 0.1144 11092 +11094 2 289.5201 292.0781 26.7128 0.1144 11093 +11095 2 289.7374 290.9638 26.8385 0.1144 11094 +11096 2 290.0257 289.9068 27.0707 0.1144 11095 +11097 2 289.9022 288.7742 27.2588 0.1144 11096 +11098 2 289.456 287.7217 27.4002 0.1144 11097 +11099 2 288.8714 286.7459 27.5381 0.1144 11098 +11100 2 288.3555 285.7312 27.6639 0.1144 11099 +11101 2 288.1107 284.6375 27.5559 0.1144 11100 +11102 2 296.1141 323.0198 28.5642 0.1144 11056 +11103 2 296.7387 323.9785 28.5177 0.1144 11102 +11104 2 297.5956 324.7347 28.4567 0.1144 11103 +11105 2 298.4227 325.5252 28.3755 0.1144 11104 +11106 2 298.5565 325.2564 28.5827 0.1144 11105 +11107 2 298.6778 325.0138 28.3122 0.1144 11106 +11108 2 299.1846 324.0002 28.1792 0.1144 11107 +11109 2 299.7108 322.9958 28.0109 0.1144 11108 +11110 2 300.3412 322.0497 27.8433 0.1144 11109 +11111 2 301.063 321.1643 27.7164 0.1144 11110 +11112 2 301.69 320.2079 27.6271 0.1144 11111 +11113 2 302.2906 319.2343 27.5717 0.1144 11112 +11114 2 302.8992 318.2654 27.5434 0.1144 11113 +11115 2 303.4494 317.2644 27.5291 0.1144 11114 +11116 2 304.034 316.3126 27.5195 0.1144 11115 +11117 2 305.003 315.7554 27.5094 0.1144 11116 +11118 2 306.1264 315.5427 27.4899 0.1144 11117 +11119 2 307.2498 315.4809 27.4369 0.1144 11118 +11120 2 308.3149 315.8023 27.3953 0.1144 11119 +11121 2 309.261 316.4155 27.4206 0.1144 11120 +11122 2 310.1864 317.0871 27.4415 0.1144 11121 +11123 2 311.1566 317.6888 27.456 0.1144 11122 +11124 2 312.1976 318.1613 27.4626 0.1144 11123 +11125 2 313.2958 318.3924 27.4595 0.1144 11124 +11126 2 314.2259 317.9576 27.4413 0.1144 11125 +11127 2 314.6961 316.9406 27.3862 0.1144 11126 +11128 2 314.7327 315.8275 27.2962 0.1144 11127 +11129 2 314.5325 314.703 27.2139 0.1144 11128 +11130 2 314.6538 313.6059 27.1595 0.1144 11129 +11131 2 314.8757 312.4985 27.1343 0.1144 11130 +11132 2 314.9443 311.3568 27.1404 0.1144 11131 +11133 2 314.9798 310.2139 27.1784 0.1144 11132 +11134 2 314.9798 309.0699 27.244 0.1144 11133 +11135 2 314.9112 307.9293 27.3296 0.1144 11134 +11136 2 314.6789 306.846 27.4984 0.1144 11135 +11137 2 314.4879 305.7523 27.7351 0.1144 11136 +11138 2 314.4158 304.614 27.9523 0.1144 11137 +11139 2 314.2236 303.5032 28.1722 0.1144 11138 +11140 2 313.7729 302.4702 28.3718 0.1144 11139 +11141 2 313.3439 301.4154 28.5127 0.1144 11140 +11142 2 313.2146 300.292 28.597 0.1144 11141 +11143 2 312.9057 299.2178 28.6412 0.1144 11142 +11144 2 312.2342 298.306 28.6628 0.1144 11143 +11145 2 311.5398 297.4 28.6667 0.1144 11144 +11146 2 311.0753 296.3658 28.6622 0.1144 11145 +11147 2 310.691 295.2881 28.6549 0.1144 11146 +11148 2 310.1373 294.2951 28.6451 0.1144 11147 +11149 2 309.6476 293.2667 28.6306 0.1144 11148 +11150 2 309.134 292.2474 28.6098 0.1144 11149 +11151 2 308.4888 291.3059 28.5827 0.1144 11150 +11152 2 307.5278 290.7465 28.5494 0.1144 11151 +11153 2 306.4925 290.2637 28.4953 0.1144 11152 +11154 2 305.7031 289.4755 28.3903 0.1144 11153 +11155 2 304.8771 288.6918 28.2904 0.1144 11154 +11156 2 304.2068 287.7743 28.2128 0.1144 11155 +11157 2 303.7492 286.7287 28.1557 0.1144 11156 +11158 2 303.6439 285.5985 28.1168 0.1144 11157 +11159 2 303.978 284.5174 28.093 0.1144 11158 +11160 2 304.4378 283.4706 28.0792 0.1144 11159 +11161 2 305.1231 282.56 28.0636 0.1144 11160 +11162 2 306.1687 282.1562 28.0423 0.1144 11161 +11163 2 307.2132 281.694 28.0148 0.1144 11162 +11164 2 308.2039 281.1231 27.9671 0.1144 11163 +11165 2 309.0299 280.3372 27.9029 0.1144 11164 +11166 2 309.5675 279.3339 27.8262 0.1144 11165 +11167 2 310.04 278.2917 27.7406 0.1144 11166 +11168 2 310.8557 277.4955 27.6495 0.1144 11167 +11169 2 311.7652 276.9899 26.9934 0.1144 11168 +11170 2 299.1423 325.1671 28.604 0.1144 11106 +11171 2 300.2725 324.9932 29.1063 0.1144 11170 +11172 2 301.3994 324.8136 29.2992 0.1144 11171 +11173 2 302.4953 324.5894 29.6092 0.1144 11172 +11174 2 303.5901 324.364 30.0096 0.1144 11173 +11175 2 304.6861 324.1398 30.4755 0.1144 11174 +11176 2 305.782 323.9144 30.9837 0.1144 11175 +11177 2 306.8082 323.5266 31.5031 0.1144 11176 +11178 2 307.7017 322.8276 31.9987 0.1144 11177 +11179 2 308.5951 322.1287 32.475 0.1144 11178 +11180 2 309.4898 321.4297 32.9518 0.1144 11179 +11181 2 310.3832 320.7318 33.446 0.1144 11180 +11182 2 311.3064 320.0615 33.9382 0.1144 11181 +11183 2 312.2445 319.4082 34.4308 0.1144 11182 +11184 2 312.8394 318.8145 35.2338 0.1144 11183 +11185 2 313.6413 318.6761 36.1911 0.1144 11184 +11186 2 314.6458 319.0605 37.1557 0.1144 11185 +11187 2 315.5141 319.7 38.0999 0.1144 11186 +11188 2 316.3824 320.3394 38.99 0.1144 11187 +11189 2 316.8983 320.9584 41.0525 0.1144 11188 +11190 2 298.1596 326.1693 28.2248 0.1144 11105 +11191 2 297.9159 327.2812 28.0297 0.1144 11190 +11192 2 297.98 328.4218 27.8321 0.1144 11191 +11193 2 298.2179 329.5395 27.6231 0.1144 11192 +11194 2 298.1516 330.5451 27.2456 0.1144 11193 +11195 2 298.3975 331.6078 26.871 0.1144 11194 +11196 2 298.9764 332.5871 26.5452 0.1144 11195 +11197 2 299.6548 333.4611 26.2714 0.1144 11196 +11198 2 300.6398 334.0308 26.0816 0.1144 11197 +11199 2 301.6831 334.4907 25.9836 0.1144 11198 +11200 2 302.6406 335.0948 25.9553 0.1144 11199 +11201 2 303.5021 335.8441 25.9266 0.1144 11200 +11202 2 304.4378 336.4836 25.9061 0.1144 11201 +11203 2 305.5201 336.7844 25.8927 0.1144 11202 +11204 2 306.6606 336.7913 25.8798 0.1144 11203 +11205 2 307.6857 337.1311 25.8675 0.1144 11204 +11206 2 308.7416 337.4548 25.8585 0.1144 11205 +11207 2 309.7563 337.8953 25.8527 0.1144 11206 +11208 2 310.3764 338.8356 25.8453 0.1144 11207 +11209 2 311.0136 339.7852 25.8357 0.1144 11208 +11210 2 311.7183 340.6855 25.8272 0.1144 11209 +11211 2 312.3372 341.6464 25.8231 0.1144 11210 +11212 2 313.0728 342.4919 25.7593 0.1144 11211 +11213 2 313.7271 343.4231 25.7151 0.1144 11212 +11214 2 313.7203 344.5373 25.7086 0.1144 11213 +11215 2 313.0373 345.3908 25.824 0.1144 11214 +11216 2 313.0442 346.2991 25.9575 0.1144 11215 +11217 2 312.9218 347.4351 26.1111 0.1144 11216 +11218 2 312.5625 348.5173 26.2842 0.1144 11217 +11219 2 312.1827 349.5961 26.4774 0.1144 11218 +11220 2 311.6622 350.4381 26.8509 0.1144 11219 +11221 2 311.152 351.3979 27.2751 0.1144 11220 +11222 2 310.5731 352.3852 27.6059 0.1144 11221 +11223 2 309.9885 353.3679 27.8483 0.1144 11222 +11224 2 309.3811 354.3368 28.0092 0.1144 11223 +11225 2 308.6237 355.1948 28.0963 0.1144 11224 +11226 2 308.6237 355.8229 28.1207 0.1144 11225 +11227 2 308.6489 356.9669 28.1218 0.1144 11226 +11228 2 308.4281 358.0857 28.1232 0.1144 11227 +11229 2 308.149 359.1954 28.1254 0.1144 11228 +11230 2 307.7257 360.257 28.1282 0.1144 11229 +11231 2 307.2715 361.3072 28.1324 0.1144 11230 +11232 2 306.7785 362.3391 28.138 0.1144 11231 +11233 2 306.0383 363.2063 28.1456 0.1144 11232 +11234 2 305.0808 363.8263 28.1565 0.1144 11233 +11235 2 304.3944 364.7324 28.1728 0.1144 11234 +11236 2 303.9745 365.794 28.1949 0.1144 11235 +11237 2 303.7537 366.9151 28.2237 0.1144 11236 +11238 2 303.494 368.0294 28.2582 0.1144 11237 +11239 2 303.0994 369.099 28.3262 0.1144 11238 +11240 2 303.1394 370.2316 28.4393 0.1144 11239 +11241 2 303.049 371.3721 28.5292 0.1144 11240 +11242 2 302.9632 372.5127 28.5967 0.1144 11241 +11243 2 303.0136 373.6556 28.6429 0.1144 11242 +11244 2 303.1005 374.7961 28.67 0.1144 11243 +11245 2 303.2492 375.931 28.6804 0.1144 11244 +11246 2 303.1508 377.0704 28.6804 0.1144 11245 +11247 2 302.9335 378.1938 28.6804 0.1144 11246 +11248 2 302.731 379.3195 28.6804 0.1144 11247 +11249 2 302.4702 380.2576 28.6804 0.1144 11248 +11250 2 302.6132 381.3753 28.6804 0.1144 11249 +11251 2 303.0456 382.43 28.6804 0.1144 11250 +11252 2 303.6691 383.3864 28.6804 0.1144 11251 +11253 2 304.3006 384.3417 28.6804 0.1144 11252 +11254 2 305.0602 385.194 28.6804 0.1144 11253 +11255 2 305.5555 386.2201 28.6804 0.1144 11254 +11256 2 305.6436 387.3538 28.6804 0.1144 11255 +11257 2 305.2489 388.4212 28.6804 0.1144 11256 +11258 2 304.8096 389.4771 28.6804 0.1144 11257 +11259 2 304.3555 390.5261 28.6804 0.1144 11258 +11260 2 303.9288 391.5878 28.6804 0.1144 11259 +11261 2 303.4609 392.6322 28.6804 0.1144 11260 +11262 2 302.8351 393.5886 28.6804 0.1144 11261 +11263 2 302.2951 394.5965 28.6804 0.1144 11262 +11264 2 301.7838 395.6204 28.6804 0.1144 11263 +11265 2 301.3136 396.6626 28.6804 0.1144 11264 +11266 2 300.4899 397.4519 28.6804 0.1144 11265 +11267 2 299.5484 398.0994 28.6804 0.1144 11266 +11268 2 298.7739 398.9403 28.6804 0.1144 11267 +11269 2 297.7214 399.3876 28.6804 0.1144 11268 +11270 2 296.6804 399.8623 28.6804 0.1144 11269 +11271 2 295.6554 400.3703 28.6804 0.1144 11270 +11272 2 294.6303 400.8782 28.6804 0.1144 11271 +11273 2 303.2332 378.8779 29.6374 0.1144 11248 +11274 2 303.9768 378.0348 30.172 0.1144 11273 +11275 2 304.4722 377.0647 30.4548 0.1144 11274 +11276 2 304.7936 375.9767 30.7504 0.1144 11275 +11277 2 305.1483 374.8899 31.0153 0.1144 11276 +11278 2 305.7752 373.9381 31.25 0.1144 11277 +11279 2 306.298 372.9909 31.5767 0.1144 11278 +11280 2 306.7064 371.9762 31.9466 0.1144 11279 +11281 2 306.8826 370.8459 32.2148 0.1144 11280 +11282 2 307.1388 369.7316 32.4078 0.1144 11281 +11283 2 307.3734 368.6117 32.6169 0.1144 11282 +11284 2 308.1204 355.2028 28.1182 0.1144 11225 +11285 2 306.997 355.0438 28.0918 0.1144 11284 +11286 2 305.8987 354.7247 28.0815 0.1144 11285 +11287 2 304.8314 354.3174 28.0669 0.1144 11286 +11288 2 303.7297 354.0417 28.047 0.1144 11287 +11289 2 302.5949 353.8964 28.0182 0.1144 11288 +11290 2 301.4543 353.8255 27.9766 0.1144 11289 +11291 2 300.3183 353.917 27.9203 0.1144 11290 +11292 2 299.2304 354.2453 27.8475 0.1144 11291 +11293 2 298.2191 354.7738 27.7581 0.1144 11292 +11294 2 297.313 355.3664 27.552 0.1144 11293 +11295 2 296.7525 354.8997 27.308 0.1144 11294 +11296 2 296.1198 353.9525 27.1055 0.1144 11295 +11297 2 295.4094 353.067 26.896 0.1144 11296 +11298 2 294.7756 352.1198 26.7091 0.1144 11297 +11299 2 294.628 350.9975 26.5794 0.1144 11298 +11300 2 294.6704 349.8546 26.5049 0.1144 11299 +11301 2 294.3947 348.7484 26.4625 0.1144 11300 +11302 2 294.0686 347.6524 26.4388 0.1144 11301 +11303 2 293.4474 346.6938 26.4317 0.1144 11302 +11304 2 292.6386 345.885 26.4312 0.1144 11303 +11305 2 312.3944 345.8918 25.9649 0.1144 11215 +11306 2 311.494 346.5954 26.0383 0.1144 11305 +11307 2 310.5937 347.299 26.0741 0.1144 11306 +11308 2 309.6922 348.0014 26.1097 0.1144 11307 +11309 2 308.8377 348.761 26.1159 0.1144 11308 +11310 2 308.0197 349.5595 26.0765 0.1144 11309 +11311 2 307.204 350.3603 25.9957 0.1144 11310 +11312 2 306.3884 351.16 25.8796 0.1144 11311 +11313 2 305.5716 351.9608 25.7377 0.1144 11312 +11314 2 304.7547 352.7501 25.5519 0.1144 11313 +11315 2 303.9368 353.5395 25.3385 0.1144 11314 +11316 2 303.12 354.3288 25.1124 0.1144 11315 +11317 2 302.35 355.172 24.9106 0.1144 11316 +11318 2 301.5515 355.9876 24.7323 0.1144 11317 +11319 2 300.7496 356.801 24.5791 0.1144 11318 +11320 2 299.9476 357.6133 24.4538 0.1144 11319 +11321 2 299.4717 358.6497 24.3734 0.1144 11320 +11322 2 299.3024 359.78 24.3381 0.1144 11321 +11323 2 298.9718 360.8748 24.3346 0.1144 11322 +11324 2 298.6698 361.9788 24.3589 0.1144 11323 +11325 2 298.0269 362.9214 24.4231 0.1144 11324 +11326 2 297.3828 363.8652 24.5116 0.1144 11325 +11327 2 296.7399 364.8079 24.7439 0.1144 11326 +11328 2 284.3824 319.4654 29.0237 0.1144 11046 +11329 2 283.3139 319.0685 29.239 0.1144 11328 +11330 2 282.2877 318.7195 29.4627 0.1144 11329 +11331 2 281.1723 318.469 29.5565 0.1144 11330 +11332 2 280.0318 318.5434 29.5462 0.1144 11331 +11333 2 278.9152 318.5296 29.3426 0.1144 11332 +11334 2 277.809 318.3775 28.996 0.1144 11333 +11335 2 276.9521 317.6247 28.5939 0.1144 11334 +11336 2 276.2177 316.7747 28.0885 0.1144 11335 +11337 2 275.3528 316.1169 27.4657 0.1144 11336 +11338 2 274.8163 315.3447 26.6717 0.1144 11337 +11339 2 274.4811 314.4902 25.7733 0.1144 11338 +11340 2 273.7718 314.036 24.7936 0.1144 11339 +11341 2 272.9195 313.5956 23.9225 0.1144 11340 +11342 2 271.9448 312.9973 23.3093 0.1144 11341 +11343 2 270.8866 312.5866 22.9256 0.1144 11342 +11344 2 269.7792 312.296 22.7321 0.1144 11343 +11345 2 268.6741 312.0031 22.6755 0.1144 11344 +11346 2 267.664 311.4998 22.7201 0.1144 11345 +11347 2 266.7122 310.8694 22.819 0.1144 11346 +11348 2 265.7592 310.2391 22.9417 0.1144 11347 +11349 2 264.7857 309.6408 23.0691 0.1144 11348 +11350 2 263.8041 309.055 23.1931 0.1144 11349 +11351 2 262.8351 308.4464 23.3208 0.1144 11350 +11352 2 261.9451 307.7326 23.4651 0.1144 11351 +11353 2 261.1111 306.9501 23.643 0.1144 11352 +11354 2 260.3092 306.1367 23.8774 0.1144 11353 +11355 2 259.7086 305.1895 24.2101 0.1144 11354 +11356 2 259.4146 304.1152 24.6521 0.1144 11355 +11357 2 259.068 303.3453 25.3426 0.1144 11356 +11358 2 258.8346 302.4519 26.1826 0.1144 11357 +11359 2 258.6653 301.3593 26.9456 0.1144 11358 +11360 2 258.4982 300.2314 27.5816 0.1144 11359 +11361 2 258.258 299.1171 28.1072 0.1144 11360 +11362 2 257.6791 298.1653 28.565 0.1144 11361 +11363 2 257.5338 297.0625 28.9139 0.1144 11362 +11364 2 256.8486 296.2308 29.2558 0.1144 11363 +11365 2 256.3418 295.2733 29.6638 0.1144 11364 +11366 2 256.0466 294.1922 30.074 0.1144 11365 +11367 2 255.8453 293.0756 30.4486 0.1144 11366 +11368 2 255.5879 291.9614 30.744 0.1144 11367 +11369 2 255.2436 290.87 30.9694 0.1144 11368 +11370 2 254.691 289.869 31.1399 0.1144 11369 +11371 2 254.0092 288.9504 31.2785 0.1144 11370 +11372 2 253.3697 288.0306 31.493 0.1144 11371 +11373 2 253.0665 288.6792 31.6949 0.1144 11372 +11374 2 252.4213 289.6139 31.911 0.1144 11373 +11375 2 252.0861 290.6023 32.2462 0.1144 11374 +11376 2 252.4957 291.6045 32.5842 0.1144 11375 +11377 2 252.8778 292.6775 32.8821 0.1144 11376 +11378 2 253.0128 293.7609 33.2441 0.1144 11377 +11379 2 252.8194 294.8271 33.6697 0.1144 11378 +11380 2 252.1834 295.7492 34.0242 0.1144 11379 +11381 2 251.3242 296.4699 34.3557 0.1144 11380 +11382 2 250.5371 297.2924 34.6147 0.1144 11381 +11383 2 249.8313 298.1916 34.8009 0.1144 11382 +11384 2 248.9847 298.9581 34.9255 0.1144 11383 +11385 2 248.0295 299.5839 35.0146 0.1144 11384 +11386 2 247.1635 300.3297 35.0941 0.1144 11385 +11387 2 246.3009 301.0814 35.1683 0.1144 11386 +11388 2 245.396 301.6968 35.3556 0.1144 11387 +11389 2 244.4659 302.342 35.5667 0.1144 11388 +11390 2 243.545 303.0181 35.737 0.1144 11389 +11391 2 242.6241 303.6954 35.8515 0.1144 11390 +11392 2 241.7043 304.3749 35.9047 0.1144 11391 +11393 2 240.7834 305.0522 35.8952 0.1144 11392 +11394 2 239.8625 305.7306 35.8268 0.1144 11393 +11395 2 238.9564 306.4101 35.6588 0.1144 11394 +11396 2 238.4245 306.8586 35.1644 0.1144 11395 +11397 2 237.793 307.4809 33.8848 0.1144 11396 +11398 2 236.9899 308.2954 33.8604 0.1144 11397 +11399 2 236.2085 309.1305 33.8509 0.1144 11398 +11400 2 235.4192 309.9588 33.838 0.1144 11399 +11401 2 234.5417 310.6864 33.8187 0.1144 11400 +11402 2 233.6448 311.3957 33.791 0.1144 11401 +11403 2 232.907 312.2571 33.754 0.1144 11402 +11404 2 232.828 313.3313 33.7078 0.1144 11403 +11405 2 233.1621 314.4204 33.6529 0.1144 11404 +11406 2 233.6975 314.3083 33.4897 0.1144 11405 +11407 2 233.4607 313.2261 33.3528 0.1144 11406 +11408 2 232.7148 312.36 33.2391 0.1144 11407 +11409 2 231.9437 311.5146 33.1447 0.1144 11408 +11410 2 231.1727 310.6692 33.0644 0.1144 11409 +11411 2 230.4016 309.8238 32.9935 0.1144 11410 +11412 2 229.7541 308.9166 32.9207 0.1144 11411 +11413 2 229.5207 307.8001 32.8045 0.1144 11412 +11414 2 229.2942 306.6812 32.6528 0.1144 11413 +11415 2 229.0688 305.5624 32.4736 0.1144 11414 +11416 2 228.8435 304.4447 32.2734 0.1144 11415 +11417 2 228.617 303.3259 32.0583 0.1144 11416 +11418 2 228.3916 302.2082 31.8335 0.1144 11417 +11419 2 228.1662 301.0894 31.6 0.1144 11418 +11420 2 227.9077 299.9797 31.3544 0.1144 11419 +11421 2 227.5347 298.9009 31.096 0.1144 11420 +11422 2 227.1309 297.8335 30.8207 0.1144 11421 +11423 2 226.7374 296.7685 30.5133 0.1144 11422 +11424 2 226.3724 295.7229 30.1221 0.1144 11423 +11425 2 225.9583 294.7024 29.6733 0.1144 11424 +11426 2 225.3852 293.7609 29.2163 0.1144 11425 +11427 2 224.6747 292.9487 28.7325 0.1144 11426 +11428 2 223.9735 292.046 28.3452 0.1144 11427 +11429 2 223.1566 291.2647 28.0423 0.1144 11428 +11430 2 222.19 290.6538 27.8013 0.1144 11429 +11431 2 221.324 289.9251 27.5907 0.1144 11430 +11432 2 220.6032 289.0877 27.3227 0.1144 11431 +11433 2 219.9603 288.2319 26.957 0.1144 11432 +11434 2 219.4947 287.2001 26.561 0.1144 11433 +11435 2 219.2236 286.1224 26.0904 0.1144 11434 +11436 2 218.5852 285.5985 25.6085 0.1144 11435 +11437 2 217.8393 285.0116 25.1255 0.1144 11436 +11438 2 217.6746 283.9625 24.5817 0.1144 11437 +11439 2 217.3783 283.3242 23.8437 0.1144 11438 +11440 2 216.4402 283.5793 23.1324 0.1144 11439 +11441 2 215.3534 283.9294 22.5904 0.1144 11440 +11442 2 214.3227 284.4247 22.1983 0.1144 11441 +11443 2 213.3995 285.0985 21.9323 0.1144 11442 +11444 2 212.625 285.9394 21.7663 0.1144 11443 +11445 2 211.751 286.6772 21.6605 0.1144 11444 +11446 2 210.7259 287.1818 21.5478 0.1144 11445 +11447 2 210.0109 288.0718 21.3965 0.1144 11446 +11448 2 209.5385 289.1128 21.2018 0.1144 11447 +11449 2 208.6393 289.7615 20.8836 0.1144 11448 +11450 2 207.8293 290.4536 20.4489 0.1144 11449 +11451 2 207.1681 290.2534 19.8101 0.1144 11450 +11452 2 206.508 290.4913 19.1889 0.1144 11451 +11453 2 207.1887 291.3471 18.6697 0.1144 11452 +11454 2 208.2423 291.6639 18.2183 0.1144 11453 +11455 2 209.3028 291.7772 17.7431 0.1144 11454 +11456 2 210.3747 291.8824 17.3034 0.1144 11455 +11457 2 211.5062 291.7337 16.973 0.1144 11456 +11458 2 212.6456 291.704 16.6911 0.1144 11457 +11459 2 213.7804 291.5816 16.4307 0.1144 11458 +11460 2 214.905 291.7623 16.182 0.1144 11459 +11461 2 215.9758 291.7749 15.8979 0.1144 11460 +11462 2 216.7319 291.0759 15.4601 0.1144 11461 +11463 2 217.2159 290.8654 14.7798 0.1144 11462 +11464 2 218.1814 291.2853 14.1751 0.1144 11463 +11465 2 218.5955 290.6092 12.9822 0.1144 11464 +11466 2 219.1046 289.5922 12.751 0.1144 11465 +11467 2 219.6091 288.5706 12.6445 0.1144 11466 +11468 2 220.1731 287.5764 12.5459 0.1144 11467 +11469 2 220.9808 286.7688 12.4709 0.1144 11468 +11470 2 221.7781 285.9485 12.4189 0.1144 11469 +11471 2 222.6785 285.2438 12.3876 0.1144 11470 +11472 2 223.1155 284.1948 12.375 0.1144 11471 +11473 2 223.8419 283.3139 12.3722 0.1144 11472 +11474 2 224.9093 282.9032 12.3721 0.1144 11473 +11475 2 217.6048 292.149 13.1653 0.1144 11464 +11476 2 216.8818 293.0264 12.8176 0.1144 11475 +11477 2 215.9735 293.7071 12.6081 0.1144 11476 +11478 2 215.39 294.5949 12.5479 0.1144 11477 +11479 2 214.8924 295.6107 12.529 0.1144 11478 +11480 2 214.6075 296.7021 12.4986 0.1144 11479 +11481 2 214.3238 297.8072 12.4385 0.1144 11480 +11482 2 213.7873 298.7865 12.2738 0.1144 11481 +11483 2 212.7851 299.1194 12.0693 0.1144 11482 +11484 2 212.3378 300.0529 11.7784 0.1144 11483 +11485 2 211.9374 301.0242 11.3688 0.1144 11484 +11486 2 211.7899 302.1579 10.6848 0.1144 11485 +11487 2 237.5047 307.49 34.7892 0.1144 11396 +11488 2 236.5632 308.1387 34.5276 0.1144 11487 +11489 2 235.6217 308.7862 34.3722 0.1144 11488 +11490 2 234.679 309.4348 34.3132 0.1144 11489 +11491 2 233.7364 310.0823 34.3403 0.1144 11490 +11492 2 232.7948 310.7298 34.4316 0.1144 11491 +11493 2 231.8533 311.3785 34.5232 0.1144 11492 +11494 2 230.9107 312.026 34.6147 0.1144 11493 +11495 2 229.9692 312.6746 34.7063 0.1144 11494 +11496 2 229.0265 313.3222 34.7978 0.1144 11495 +11497 2 228.085 313.9697 34.8897 0.1144 11496 +11498 2 227.1423 314.6183 34.9812 0.1144 11497 +11499 2 226.2008 315.2658 35.0728 0.1144 11498 +11500 2 225.2582 315.9145 35.1646 0.1144 11499 +11501 2 224.3167 316.562 35.2562 0.1144 11500 +11502 2 223.374 317.2095 35.3483 0.1144 11501 +11503 2 222.4325 317.8581 35.4402 0.1144 11502 +11504 2 221.4898 318.5056 35.5326 0.1144 11503 +11505 2 220.5483 319.1543 35.6252 0.1144 11504 +11506 2 219.6057 319.8018 35.7179 0.1144 11505 +11507 2 218.6642 320.4504 35.8114 0.1144 11506 +11508 2 217.7215 321.0979 35.9058 0.1144 11507 +11509 2 216.78 321.7454 36.0013 0.1144 11508 +11510 2 215.8385 322.3941 36.0982 0.1144 11509 +11511 2 214.8958 323.0416 36.1973 0.1144 11510 +11512 2 213.9532 323.6891 36.2992 0.1144 11511 +11513 2 213.0117 324.3377 36.4056 0.1144 11512 +11514 2 212.069 324.9852 36.5176 0.1144 11513 +11515 2 211.1275 325.6339 36.638 0.1144 11514 +11516 2 210.1848 326.2814 36.7696 0.1144 11515 +11517 2 209.2433 326.9289 36.9172 0.1144 11516 +11518 2 208.3018 327.5775 37.0885 0.1144 11517 +11519 2 207.3592 328.225 37.2921 0.1144 11518 +11520 2 206.4165 328.8725 37.5326 0.1144 11519 +11521 2 205.5219 329.575 37.8252 0.1144 11520 +11522 2 204.9121 330.441 38.2407 0.1144 11521 +11523 2 204.1868 330.9386 38.8058 0.1144 11522 +11524 2 203.1618 330.9295 39.4615 0.1144 11523 +11525 2 202.067 330.878 40.0635 0.1144 11524 +11526 2 200.939 331.0095 40.5191 0.1144 11525 +11527 2 199.9472 331.5312 40.8313 0.1144 11526 +11528 2 198.9405 332.0574 41.0203 0.1144 11527 +11529 2 197.8239 332.1856 41.1188 0.1144 11528 +11530 2 196.6811 332.1993 41.1776 0.1144 11529 +11531 2 195.5382 332.229 41.2353 0.1144 11530 +11532 2 194.3953 332.2611 41.3039 0.1144 11531 +11533 2 193.2525 332.2931 41.379 0.1144 11532 +11534 2 192.1108 332.3263 41.4557 0.1144 11533 +11535 2 190.9771 332.4601 41.5198 0.1144 11534 +11536 2 189.8514 332.3617 41.5643 0.1144 11535 +11537 2 188.7531 332.0506 41.5923 0.1144 11536 +11538 2 187.799 331.4477 41.6074 0.1144 11537 +11539 2 186.9445 330.6881 41.6144 0.1144 11538 +11540 2 186.0888 329.9285 41.6164 0.1144 11539 +11541 2 185.4561 328.995 41.6175 0.1144 11540 +11542 2 184.8166 328.0489 41.6184 0.1144 11541 +11543 2 184.1394 327.1268 41.62 0.1144 11542 +11544 2 183.4621 326.2047 41.622 0.1144 11543 +11545 2 182.7837 325.2838 41.6248 0.1144 11544 +11546 2 182.1065 324.3618 41.629 0.1144 11545 +11547 2 181.4281 323.4408 41.6346 0.1144 11546 +11548 2 180.7509 322.5188 41.6424 0.1144 11547 +11549 2 180.0725 321.5978 41.6536 0.1144 11548 +11550 2 179.3952 320.6758 41.6696 0.1144 11549 +11551 2 178.7168 319.7537 41.6917 0.1144 11550 +11552 2 178.0396 318.8328 41.7194 0.1144 11551 +11553 2 177.4561 317.8512 41.7575 0.1144 11552 +11554 2 177.598 316.7839 41.8317 0.1144 11553 +11555 2 177.9858 315.7131 41.9292 0.1144 11554 +11556 2 178.7797 314.9329 42.0109 0.1144 11555 +11557 2 179.8231 314.4822 42.0678 0.1144 11556 +11558 2 180.6273 313.6985 42.1 0.1144 11557 +11559 2 181.3183 312.7868 42.1092 0.1144 11558 +11560 2 182.15 312.0043 42.098 0.1144 11559 +11561 2 182.9839 311.2218 42.0748 0.1144 11560 +11562 2 183.7012 310.3375 42.0134 0.1144 11561 +11563 2 184.2412 309.333 41.9412 0.1144 11562 +11564 2 184.6084 308.2508 41.8832 0.1144 11563 +11565 2 184.9642 307.164 41.8404 0.1144 11564 +11566 2 185.3349 306.0818 41.8118 0.1144 11565 +11567 2 185.7078 305.0007 41.7959 0.1144 11566 +11568 2 185.7467 303.8613 41.7914 0.1144 11567 +11569 2 185.7444 302.7173 41.7911 0.1144 11568 +11570 2 185.717 301.5744 41.7911 0.1144 11569 +11571 2 185.6826 300.4304 41.7911 0.1144 11570 +11572 2 185.5156 299.299 41.7911 0.1144 11571 +11573 2 185.2388 298.1905 41.7911 0.1144 11572 +11574 2 184.8338 297.1208 41.7911 0.1144 11573 +11575 2 184.3968 296.0638 41.7911 0.1144 11574 +11576 2 183.9392 295.0147 41.7911 0.1144 11575 +11577 2 183.4576 293.9771 41.7911 0.1144 11576 +11578 2 182.7998 293.0425 41.7911 0.1144 11577 +11579 2 182.1431 292.1067 41.7911 0.1144 11578 +11580 2 181.6111 291.0942 41.7911 0.1144 11579 +11581 2 181.0883 290.0772 41.7911 0.1144 11580 +11582 2 180.6044 289.0396 41.7911 0.1144 11581 +11583 2 180.1331 287.9974 41.7911 0.1144 11582 +11584 2 179.7384 286.9244 41.7911 0.1144 11583 +11585 2 179.3769 285.8387 41.7911 0.1144 11584 +11586 2 179.1618 284.7164 41.7911 0.1144 11585 +11587 2 179.2602 283.5793 41.7911 0.1144 11586 +11588 2 180.0828 282.7922 41.7911 0.1144 11587 +11589 2 180.8103 281.9102 41.7911 0.1144 11588 +11590 2 181.5528 281.0396 41.7911 0.1144 11589 +11591 2 182.373 280.2422 41.7911 0.1144 11590 +11592 2 183.2036 279.4552 41.7911 0.1144 11591 +11593 2 184.049 278.6853 41.7914 0.1144 11592 +11594 2 184.8967 277.9165 41.7914 0.1144 11593 +11595 2 185.7742 277.182 41.7914 0.1144 11594 +11596 2 186.5853 276.3755 41.7917 0.1144 11595 +11597 2 187.3048 275.4866 41.7917 0.1144 11596 +11598 2 188.0267 274.5989 41.792 0.1144 11597 +11599 2 188.7383 273.7031 41.7922 0.1144 11598 +11600 2 189.4304 272.7925 41.7928 0.1144 11599 +11601 2 190.1625 271.9139 41.7936 0.1144 11600 +11602 2 190.921 271.0571 41.7945 0.1144 11601 +11603 2 191.7184 270.2368 41.7959 0.1144 11602 +11604 2 192.5924 269.4989 41.7978 0.1144 11603 +11605 2 193.4847 268.7817 41.8006 0.1144 11604 +11606 2 194.44 268.1547 41.8043 0.1144 11605 +11607 2 195.3963 267.5267 41.8096 0.1144 11606 +11608 2 196.3573 266.9055 41.8169 0.1144 11607 +11609 2 197.3217 266.29 41.8272 0.1144 11608 +11610 2 198.3799 265.8553 41.841 0.1144 11609 +11611 2 199.4541 265.4618 41.8606 0.1144 11610 +11612 2 200.4963 264.9916 41.8919 0.1144 11611 +11613 2 201.5396 264.5214 41.9322 0.1144 11612 +11614 2 202.5818 264.0512 41.9793 0.1144 11613 +11615 2 203.624 263.5799 42.0314 0.1144 11614 +11616 2 204.6673 263.1097 42.086 0.1144 11615 +11617 2 205.7095 262.6395 42.142 0.1144 11616 +11618 2 206.7517 262.1693 42.1982 0.1144 11617 +11619 2 207.795 261.6992 42.2542 0.1144 11618 +11620 2 208.8372 261.229 42.3108 0.1144 11619 +11621 2 209.8805 260.7588 42.3676 0.1144 11620 +11622 2 210.9227 260.2875 42.425 0.1144 11621 +11623 2 211.9649 259.8173 42.483 0.1144 11622 +11624 2 213.0082 259.3471 42.5418 0.1144 11623 +11625 2 214.0504 258.8769 42.602 0.1144 11624 +11626 2 215.0926 258.4067 42.6636 0.1144 11625 +11627 2 216.1359 257.9365 42.7277 0.1144 11626 +11628 2 217.1781 257.4652 42.7955 0.1144 11627 +11629 2 218.2203 256.995 42.868 0.1144 11628 +11630 2 219.2636 256.5248 42.9472 0.1144 11629 +11631 2 220.3058 256.0547 43.0343 0.1144 11630 +11632 2 220.5357 255.6485 42.9206 0.1144 11631 +11633 2 221.0986 254.6521 42.9206 0.1144 11632 +11634 2 221.6683 253.6603 42.9206 0.1144 11633 +11635 2 222.2403 252.6696 42.9206 0.1144 11634 +11636 2 222.8134 251.68 42.9206 0.1144 11635 +11637 2 223.3866 250.6893 42.9206 0.1144 11636 +11638 2 224.0913 249.7878 42.9206 0.1144 11637 +11639 2 224.9939 249.0854 42.9206 0.1144 11638 +11640 2 225.8954 248.3818 42.9206 0.1144 11639 +11641 2 226.7946 247.6749 42.9206 0.1144 11640 +11642 2 227.6949 246.9679 42.9206 0.1144 11641 +11643 2 228.6147 246.2883 42.9206 0.1144 11642 +11644 2 229.5402 245.6157 42.9206 0.1144 11643 +11645 2 219.8654 256.272 43.1337 0.1144 11631 +11646 2 218.8403 256.7754 43.2611 0.1144 11645 +11647 2 217.8165 257.2787 43.4101 0.1144 11646 +11648 2 216.7926 257.7832 43.5758 0.1144 11647 +11649 2 215.7676 258.2866 43.7531 0.1144 11648 +11650 2 214.7437 258.79 43.9373 0.1144 11649 +11651 2 213.7198 259.2945 44.1244 0.1144 11650 +11652 2 212.6948 259.7978 44.3117 0.1144 11651 +11653 2 211.6709 260.3012 44.4987 0.1144 11652 +11654 2 210.647 260.8057 44.686 0.1144 11653 +11655 2 209.622 261.309 44.8731 0.1144 11654 +11656 2 208.5981 261.8124 45.0604 0.1144 11655 +11657 2 207.5731 262.3158 45.2474 0.1144 11656 +11658 2 206.5492 262.8203 45.4348 0.1144 11657 +11659 2 205.5253 263.3236 45.6218 0.1144 11658 +11660 2 204.5003 263.827 45.8088 0.1144 11659 +11661 2 203.4764 264.3315 45.9962 0.1144 11660 +11662 2 202.4525 264.8349 46.1832 0.1144 11661 +11663 2 201.4275 265.3382 46.3702 0.1144 11662 +11664 2 200.4036 265.8427 46.5576 0.1144 11663 +11665 2 199.3798 266.3461 46.7446 0.1144 11664 +11666 2 198.3547 266.8494 46.9314 0.1144 11665 +11667 2 197.3308 267.3539 47.1184 0.1144 11666 +11668 2 196.307 267.8573 47.3052 0.1144 11667 +11669 2 195.2819 268.3607 47.4916 0.1144 11668 +11670 2 194.2581 268.864 47.6781 0.1144 11669 +11671 2 193.233 269.3674 47.864 0.1144 11670 +11672 2 192.2092 269.8719 48.0497 0.1144 11671 +11673 2 191.1853 270.3752 48.2348 0.1144 11672 +11674 2 190.1603 270.8786 48.4187 0.1144 11673 +11675 2 189.1364 271.3831 48.6016 0.1144 11674 +11676 2 188.1125 271.8865 48.783 0.1144 11675 +11677 2 187.0875 272.3898 48.9616 0.1144 11676 +11678 2 186.0636 272.8943 49.1364 0.1144 11677 +11679 2 185.0397 273.3977 49.3069 0.1144 11678 +11680 2 184.0147 273.9011 49.4732 0.1144 11679 +11681 2 182.9874 274.3998 49.6303 0.1144 11680 +11682 2 181.9475 274.878 49.761 0.1144 11681 +11683 2 180.9087 275.3574 49.8764 0.1144 11682 +11684 2 179.9329 275.9522 49.9993 0.1144 11683 +11685 2 179.0886 276.7164 50.1556 0.1144 11684 +11686 2 178.2432 277.4806 50.3406 0.1144 11685 +11687 2 177.3989 278.2448 50.5498 0.1144 11686 +11688 2 176.5535 279.009 50.7808 0.1144 11687 +11689 2 177.2136 279.4048 50.827 0.1144 11688 +11690 2 178.194 279.994 50.7794 0.1144 11689 +11691 2 179.1756 280.582 50.7609 0.1144 11690 +11692 2 180.156 281.1712 50.7338 0.1144 11691 +11693 2 181.1375 281.7592 50.6948 0.1144 11692 +11694 2 182.1568 281.5418 50.643 0.1144 11693 +11695 2 183.1796 281.0293 50.5786 0.1144 11694 +11696 2 184.2126 280.5408 50.4932 0.1144 11695 +11697 2 185.2616 280.3292 50.2804 0.1144 11696 +11698 2 186.3496 280.0363 50.0772 0.1144 11697 +11699 2 187.4147 279.6199 49.9206 0.1144 11698 +11700 2 188.4683 279.176 49.8078 0.1144 11699 +11701 2 189.5128 278.7104 49.7347 0.1144 11700 +11702 2 190.5835 278.3077 49.6972 0.1144 11701 +11703 2 191.6749 277.9645 49.6891 0.1144 11702 +11704 2 192.8063 277.9851 49.6857 0.1144 11703 +11705 2 193.9492 278.0 49.681 0.1144 11704 +11706 2 195.0932 277.9783 49.6742 0.1144 11705 +11707 2 196.236 278.0172 49.665 0.1144 11706 +11708 2 197.3778 277.9634 49.6518 0.1144 11707 +11709 2 198.4794 277.6717 49.6339 0.1144 11708 +11710 2 199.5731 277.3353 49.6079 0.1144 11709 +11711 2 200.6976 277.1351 49.5712 0.1144 11710 +11712 2 201.8302 276.9738 49.5219 0.1144 11711 +11713 2 202.9559 276.7748 49.4603 0.1144 11712 +11714 2 204.0736 276.5494 49.357 0.1144 11713 +11715 2 205.1775 276.3046 49.1946 0.1144 11714 +11716 2 206.2804 276.0575 48.995 0.1144 11715 +11717 2 207.3958 275.8138 48.8289 0.1144 11716 +11718 2 208.5134 275.5702 48.7071 0.1144 11717 +11719 2 209.6311 275.3265 48.6259 0.1144 11718 +11720 2 210.742 275.0508 48.5811 0.1144 11719 +11721 2 211.8505 274.7671 48.5635 0.1144 11720 +11722 2 212.959 274.4856 48.559 0.1144 11721 +11723 2 214.0687 274.2099 48.5551 0.1144 11722 +11724 2 215.1795 273.9342 48.55 0.1144 11723 +11725 2 216.2686 273.5853 48.5428 0.1144 11724 +11726 2 217.352 273.2169 48.5327 0.1144 11725 +11727 2 218.4342 272.8474 48.5184 0.1144 11726 +11728 2 219.5096 272.4562 48.4985 0.1144 11727 +11729 2 220.6158 272.1679 48.4702 0.1144 11728 +11730 2 221.7518 272.2171 48.4316 0.1144 11729 +11731 2 222.8912 272.3166 48.3809 0.1144 11730 +11732 2 224.0272 272.4425 48.3039 0.1144 11731 +11733 2 225.1552 272.606 48.1846 0.1144 11732 +11734 2 226.2809 272.7742 48.0337 0.1144 11733 +11735 2 227.4078 272.9424 47.864 0.1144 11734 +11736 2 228.5369 273.1003 47.6935 0.1144 11735 +11737 2 229.6752 273.2066 47.5577 0.1144 11736 +11738 2 230.7997 273.4149 47.4575 0.1144 11737 +11739 2 231.8922 273.7489 47.3841 0.1144 11738 +11740 2 233.0259 273.8805 47.325 0.1144 11739 +11741 2 234.1654 273.98 47.269 0.1144 11740 +11742 2 235.3082 274.0017 47.208 0.1144 11741 +11743 2 236.4499 274.0349 47.1128 0.1144 11742 +11744 2 237.5768 274.123 46.9552 0.1144 11743 +11745 2 238.7002 274.2191 46.753 0.1144 11744 +11746 2 239.8385 274.3163 46.5842 0.1144 11745 +11747 2 240.9779 274.4159 46.459 0.1144 11746 +11748 2 242.1207 274.4753 46.3753 0.1144 11747 +11749 2 243.2567 274.3564 46.3288 0.1144 11748 +11750 2 244.3595 274.0566 46.3114 0.1144 11749 +11751 2 245.2221 273.3199 46.3092 0.1144 11750 +11752 2 245.9028 272.4024 46.3092 0.1144 11751 +11753 2 246.5286 271.446 46.3092 0.1144 11752 +11754 2 247.128 270.4713 46.3092 0.1144 11753 +11755 2 247.9368 269.666 46.3092 0.1144 11754 +11756 2 248.8989 269.0482 46.3092 0.1144 11755 +11757 2 249.948 268.5952 46.3092 0.1144 11756 +11758 2 250.8872 267.9442 46.3092 0.1144 11757 +11759 2 251.6892 267.1297 46.3092 0.1144 11758 +11760 2 252.2406 266.1287 46.3092 0.1144 11759 +11761 2 252.4854 265.0133 46.3092 0.1144 11760 +11762 2 252.5849 263.8739 46.3092 0.1144 11761 +11763 2 252.6799 262.7333 46.3092 0.1144 11762 +11764 2 252.9933 261.6339 46.3092 0.1144 11763 +11765 2 253.4006 260.5643 46.3092 0.1144 11764 +11766 2 253.8616 259.5175 46.3092 0.1144 11765 +11767 2 254.4839 258.5577 46.3092 0.1144 11766 +11768 2 176.7972 278.3535 50.9989 0.1144 11688 +11769 2 177.1976 277.2816 51.2154 0.1144 11768 +11770 2 177.5968 276.2096 51.4399 0.1144 11769 +11771 2 177.9961 275.1377 51.681 0.1144 11770 +11772 2 177.7936 275.0748 52.0568 0.1144 11771 +11773 2 177.1804 274.8906 52.7492 0.1144 11772 +11774 2 176.1016 274.8391 53.3716 0.1144 11773 +11775 2 174.9588 274.8037 53.8751 0.1144 11774 +11776 2 173.8159 274.7682 54.2646 0.1144 11775 +11777 2 172.6731 274.7327 54.5471 0.1144 11776 +11778 2 171.5314 274.6984 54.7313 0.1144 11777 +11779 2 170.3885 274.663 54.8456 0.1144 11778 +11780 2 169.2456 274.6275 54.9522 0.1144 11779 +11781 2 168.1028 274.592 55.0589 0.1144 11780 +11782 2 166.9599 274.5577 55.1656 0.1144 11781 +11783 2 165.8182 274.5222 55.2723 0.1144 11782 +11784 2 164.6754 274.4868 55.379 0.1144 11783 +11785 2 163.5325 274.4513 55.4856 0.1144 11784 +11786 2 162.3897 274.417 55.5923 0.1144 11785 +11787 2 161.2468 274.3815 55.699 0.1144 11786 +11788 2 160.1051 274.3461 55.8057 0.1144 11787 +11789 2 158.9622 274.3106 55.9124 0.1144 11788 +11790 2 157.8194 274.2763 56.0188 0.1144 11789 +11791 2 156.6765 274.2408 56.1252 0.1144 11790 +11792 2 155.5337 274.2054 56.2316 0.1144 11791 +11793 2 154.392 274.1699 56.3377 0.1144 11792 +11794 2 153.2491 274.1356 56.4432 0.1144 11793 +11795 2 152.1062 274.1001 56.5488 0.1144 11794 +11796 2 150.9634 274.0646 56.6538 0.1144 11795 +11797 2 149.8205 274.0292 56.758 0.1144 11796 +11798 2 148.6788 273.9949 56.8613 0.1144 11797 +11799 2 147.536 273.9594 56.9629 0.1144 11798 +11800 2 146.3931 273.9239 57.0629 0.1144 11799 +11801 2 145.2502 273.8885 57.16 0.1144 11800 +11802 2 144.1074 273.8542 57.2533 0.1144 11801 +11803 2 142.9657 273.8187 57.3409 0.1144 11802 +11804 2 141.8228 273.7832 57.4227 0.1144 11803 +11805 2 140.6788 273.7569 57.4932 0.1144 11804 +11806 2 139.5348 273.7535 57.5434 0.1144 11805 +11807 2 138.4286 274.0235 57.5753 0.1144 11806 +11808 2 137.6438 274.846 57.594 0.1144 11807 +11809 2 136.875 275.6926 57.6033 0.1144 11808 +11810 2 136.1051 276.5391 57.6069 0.1144 11809 +11811 2 135.3352 277.3857 57.6083 0.1144 11810 +11812 2 134.5653 278.2311 57.61 0.1144 11811 +11813 2 133.7954 279.0777 57.6125 0.1144 11812 +11814 2 133.0529 279.9471 57.6159 0.1144 11813 +11815 2 132.386 280.8772 57.6206 0.1144 11814 +11816 2 131.7224 281.8095 57.6271 0.1144 11815 +11817 2 131.0601 282.7419 57.6358 0.1144 11816 +11818 2 130.5476 283.7635 57.6484 0.1144 11817 +11819 2 130.6345 284.904 57.6682 0.1144 11818 +11820 2 130.7203 286.0446 57.6943 0.1144 11819 +11821 2 130.8072 287.1852 57.7245 0.1144 11820 +11822 2 130.8942 288.3269 57.7581 0.1144 11821 +11823 2 130.98 289.4675 57.7937 0.1144 11822 +11824 2 131.0669 290.608 57.8298 0.1144 11823 +11825 2 131.1527 291.7486 57.8659 0.1144 11824 +11826 2 131.2397 292.8892 57.902 0.1144 11825 +11827 2 131.3266 294.0297 57.9382 0.1144 11826 +11828 2 131.4124 295.1703 57.9743 0.1144 11827 +11829 2 131.4994 296.3109 58.0104 0.1144 11828 +11830 2 131.5852 297.4514 58.0465 0.1144 11829 +11831 2 131.6721 298.592 58.0829 0.1144 11830 +11832 2 131.7591 299.7326 58.119 0.1144 11831 +11833 2 131.8449 300.8731 58.1552 0.1144 11832 +11834 2 131.9318 302.0137 58.1913 0.1144 11833 +11835 2 132.0176 303.1543 58.2271 0.1144 11834 +11836 2 132.1045 304.2948 58.2632 0.1144 11835 +11837 2 132.1915 305.4354 58.2994 0.1144 11836 +11838 2 132.2773 306.576 58.3355 0.1144 11837 +11839 2 132.3642 307.7166 58.3713 0.1144 11838 +11840 2 132.4512 308.8571 58.4072 0.1144 11839 +11841 2 132.537 309.9988 58.443 0.1144 11840 +11842 2 132.6239 311.1394 58.4786 0.1144 11841 +11843 2 132.7097 312.28 58.5136 0.1144 11842 +11844 2 132.7967 313.4205 58.5491 0.1144 11843 +11845 2 132.8836 314.5611 58.5838 0.1144 11844 +11846 2 132.9694 315.7017 58.6172 0.1144 11845 +11847 2 133.0564 316.8422 58.6485 0.1144 11846 +11848 2 133.1422 317.9828 58.6774 0.1144 11847 +11849 2 133.2291 319.1234 58.7336 0.1144 11848 +11850 2 178.567 274.4959 51.3458 0.1144 11771 +11851 2 179.306 273.6665 51.8983 0.1144 11850 +11852 2 180.0439 272.8371 52.1598 0.1144 11851 +11853 2 180.7612 271.9574 52.4068 0.1144 11852 +11854 2 181.4361 271.0342 52.5658 0.1144 11853 +11855 2 182.1076 270.1098 52.6411 0.1144 11854 +11856 2 182.7803 269.1843 52.6411 0.1144 11855 +11857 2 183.4518 268.26 52.5748 0.1144 11856 +11858 2 184.1234 267.3345 52.4667 0.1144 11857 +11859 2 184.796 266.4101 52.3379 0.1144 11858 +11860 2 185.4676 265.4846 52.1959 0.1144 11859 +11861 2 186.1402 264.5603 52.0352 0.1144 11860 +11862 2 186.8118 263.6359 51.8543 0.1144 11861 +11863 2 187.4844 262.7104 51.6544 0.1144 11862 +11864 2 188.1777 261.8113 51.4058 0.1144 11863 +11865 2 188.9007 261.0368 51.023 0.1144 11864 +11866 2 189.5722 260.1959 50.5702 0.1144 11865 +11867 2 189.8274 259.084 50.2208 0.1144 11866 +11868 2 190.0756 257.9674 49.9685 0.1144 11867 +11869 2 190.3238 256.8497 49.8028 0.1144 11868 +11870 2 190.5721 255.7332 49.7123 0.1144 11869 +11871 2 190.7986 254.6121 49.6798 0.1144 11870 +11872 2 191.008 253.4875 49.672 0.1144 11871 +11873 2 191.2185 252.363 49.6616 0.1144 11872 +11874 2 191.8682 251.4237 49.6471 0.1144 11873 +11875 2 192.5775 250.5268 49.6269 0.1144 11874 +11876 2 193.2227 249.5819 49.5992 0.1144 11875 +11877 2 193.7318 248.5569 49.5594 0.1144 11876 +11878 2 194.2409 247.533 49.5034 0.1144 11877 +11879 2 194.7511 246.508 49.4259 0.1144 11878 +11880 2 195.2602 245.4841 49.3226 0.1144 11879 +11881 2 195.7315 244.2898 48.9412 0.1144 11880 +11882 2 196.1457 243.243 48.6282 0.1144 11881 +11883 2 196.5598 242.1951 48.2658 0.1144 11882 +11884 2 196.9739 241.1483 47.8783 0.1144 11883 +11885 2 197.3892 240.1016 47.4883 0.1144 11884 +11886 2 197.8033 239.0537 47.1159 0.1144 11885 +11887 2 198.1683 237.9795 46.7972 0.1144 11886 +11888 2 198.4062 236.8618 46.5766 0.1144 11887 +11889 2 199.0377 235.9134 46.4366 0.1144 11888 +11890 2 199.882 235.1423 46.3574 0.1144 11889 +11891 2 200.7274 234.3713 46.321 0.1144 11890 +11892 2 201.447 233.4824 46.3098 0.1144 11891 +11893 2 202.1654 232.5924 46.3092 0.1144 11892 +11894 2 202.631 231.5479 46.3092 0.1144 11893 +11895 2 203.06 230.4874 46.3092 0.1144 11894 +11896 2 203.4501 229.412 46.3092 0.1144 11895 +11897 2 203.7842 228.3184 46.3092 0.1144 11896 +11898 2 204.1171 227.2236 46.3092 0.1144 11897 +11899 2 204.7485 226.2706 46.3092 0.1144 11898 +11900 2 205.4292 225.3508 46.3092 0.1144 11899 +11901 2 206.111 224.4322 46.3092 0.1144 11900 +11902 2 206.6956 223.4495 46.3092 0.1144 11901 +11903 2 207.2059 222.4256 46.3092 0.1144 11902 +11904 2 207.7161 221.4018 46.3092 0.1144 11903 +11905 2 208.2274 220.3779 46.3092 0.1144 11904 +11906 2 208.7377 219.354 46.3092 0.1144 11905 +11907 2 209.2479 218.3301 46.3092 0.1144 11906 +11908 2 195.4261 245.2988 49.6978 0.1144 11880 +11909 2 196.1868 244.4442 49.6381 0.1144 11908 +11910 2 196.9488 243.5908 49.6166 0.1144 11909 +11911 2 197.0265 242.4548 49.5793 0.1144 11910 +11912 2 197.0277 241.3108 49.5286 0.1144 11911 +11913 2 197.0277 240.1679 49.4679 0.1144 11912 +11914 2 197.0277 239.0239 49.3996 0.1144 11913 +11915 2 197.0288 237.8799 49.3268 0.1144 11914 +11916 2 197.0288 236.7371 49.252 0.1144 11915 +11917 2 197.0288 235.5931 49.177 0.1144 11916 +11918 2 197.03 234.4491 49.1028 0.1144 11917 +11919 2 197.03 233.3062 49.0288 0.1144 11918 +11920 2 197.03 232.1622 48.9549 0.1144 11919 +11921 2 197.0311 231.0194 48.8821 0.1144 11920 +11922 2 197.0311 229.8754 48.8121 0.1144 11921 +11923 2 197.0311 228.7314 48.7466 0.1144 11922 +11924 2 197.0323 227.5885 48.6861 0.1144 11923 +11925 2 197.0323 226.4445 48.5682 0.1144 11924 +11926 2 253.2759 287.5776 31.4924 0.1144 11372 +11927 2 252.8217 286.5377 31.9788 0.1144 11926 +11928 2 252.5426 285.4406 32.1546 0.1144 11927 +11929 2 252.8103 284.427 32.48 0.1144 11928 +11930 2 253.6671 283.7246 32.8558 0.1144 11929 +11931 2 253.7095 282.6446 33.3365 0.1144 11930 +11932 2 253.7632 281.6883 33.962 0.1144 11931 +11933 2 253.7792 280.5546 34.4708 0.1144 11932 +11934 2 253.4646 279.4552 34.874 0.1144 11933 +11935 2 253.1981 278.3489 35.1966 0.1144 11934 +11936 2 252.6741 277.3571 35.5239 0.1144 11935 +11937 2 251.8768 276.6615 35.8887 0.1144 11936 +11938 2 250.7602 276.4979 36.178 0.1144 11937 +11939 2 249.7409 276.4396 36.4764 0.1144 11938 +11940 2 248.9287 275.9179 36.9687 0.1144 11939 +11941 2 248.2 275.0931 37.4478 0.1144 11940 +11942 2 247.4701 274.2374 37.8756 0.1144 11941 +11943 2 246.6338 273.4972 38.3177 0.1144 11942 +11944 2 245.976 272.6244 38.7878 0.1144 11943 +11945 2 245.4932 271.6016 39.2078 0.1144 11944 +11946 2 244.8972 270.6372 39.5536 0.1144 11945 +11947 2 244.1422 269.7804 39.8656 0.1144 11946 +11948 2 243.3482 268.9567 40.1542 0.1144 11947 +11949 2 242.7236 268.0484 40.5012 0.1144 11948 +11950 2 242.2912 267.0771 40.9716 0.1144 11949 +11951 2 241.9057 266.1013 41.5503 0.1144 11950 +11952 2 241.527 265.0659 42.1291 0.1144 11951 +11953 2 241.1724 263.9814 42.618 0.1144 11952 +11954 2 241.1792 262.8672 43.0066 0.1144 11953 +11955 2 241.6975 261.881 43.3062 0.1144 11954 +11956 2 242.369 260.9658 43.58 0.1144 11955 +11957 2 242.814 260.0701 43.9771 0.1144 11956 +11958 2 242.9341 259.0085 44.394 0.1144 11957 +11959 2 243.0748 257.877 44.7336 0.1144 11958 +11960 2 243.3997 256.7834 44.9907 0.1144 11959 +11961 2 243.6995 255.6806 45.1741 0.1144 11960 +11962 2 243.9168 254.5572 45.2962 0.1144 11961 +11963 2 244.1124 253.4303 45.3785 0.1144 11962 +11964 2 244.3081 252.3035 45.4628 0.1144 11963 +11965 2 244.5037 251.1766 45.57 0.1144 11964 +11966 2 244.7005 250.0487 45.7013 0.1144 11965 +11967 2 245.1009 249.0351 45.95 0.1144 11966 +11968 2 245.6122 248.1073 46.333 0.1144 11967 +11969 2 246.2471 247.1875 46.713 0.1144 11968 +11970 2 246.9381 246.278 47.012 0.1144 11969 +11971 2 247.3671 245.2278 47.2245 0.1144 11970 +11972 2 247.6829 244.1285 47.3581 0.1144 11971 +11973 2 247.9448 243.0153 47.4205 0.1144 11972 +11974 2 248.2423 241.9114 47.437 0.1144 11973 +11975 2 248.7983 240.9195 47.4387 0.1144 11974 +11976 2 249.4755 239.9986 47.4387 0.1144 11975 +11977 2 250.2477 239.1555 47.4387 0.1144 11976 +11978 2 251.1904 238.5183 47.4387 0.1144 11977 +11979 2 252.1193 237.8502 47.4387 0.1144 11978 +11980 2 252.7085 236.8778 47.4387 0.1144 11979 +11981 2 253.5928 236.1594 47.4387 0.1144 11980 +11982 2 254.0881 235.1355 47.4387 0.1144 11981 +11983 2 260.3778 336.1976 21.9321 0.1144 11017 +11984 2 260.4167 335.0559 21.9321 0.1144 11983 +11985 2 260.4774 333.913 21.9321 0.1144 11984 +11986 2 260.84 332.8331 21.9321 0.1144 11985 +11987 2 261.1786 331.7394 21.9321 0.1144 11986 +11988 2 261.428 330.624 21.9321 0.1144 11987 +11989 2 262.0332 329.6562 21.9321 0.1144 11988 +11990 2 262.9701 329.0052 21.9321 0.1144 11989 +11991 2 264.0787 328.7284 21.9321 0.1144 11990 +11992 2 247.4152 349.73 20.6525 0.1144 10998 +11993 2 247.4872 349.3753 19.6703 0.1144 11992 +11994 2 248.1405 348.6226 19.2249 0.1144 11993 +11995 2 249.1472 348.2679 18.7128 0.1144 11994 +11996 2 249.4103 348.0551 18.2966 0.1144 11995 +11997 2 250.3438 347.4683 17.9526 0.1144 11996 +11998 2 251.4672 347.4259 17.6313 0.1144 11997 +11999 2 252.5769 347.2509 17.3939 0.1144 11998 +12000 2 253.5916 346.7441 17.1803 0.1144 11999 +12001 2 254.6395 346.2934 17.0067 0.1144 12000 +12002 2 255.7126 345.8976 16.8666 0.1144 12001 +12003 2 256.7788 345.4823 16.7533 0.1144 12002 +12004 2 257.7066 344.8657 16.6374 0.1144 12003 +12005 2 258.4605 344.0122 16.5155 0.1144 12004 +12006 2 259.3139 343.2686 16.4103 0.1144 12005 +12007 2 260.3035 342.7275 16.2459 0.1144 12006 +12008 2 261.2518 342.1212 16.0283 0.1144 12007 +12009 2 262.1831 341.603 15.7063 0.1144 12008 +12010 2 263.2607 341.5137 15.3416 0.1144 12009 +12011 2 264.3281 341.1957 15.0105 0.1144 12010 +12012 2 265.3874 341.3353 14.6817 0.1144 12011 +12013 2 266.449 341.4165 14.2593 0.1144 12012 +12014 2 267.4169 340.8502 13.8849 0.1144 12013 +12015 2 268.0781 340.0483 13.4139 0.1144 12014 +12016 2 268.9681 339.3424 13.0014 0.1144 12015 +12017 2 269.9829 338.9866 12.5355 0.1144 12016 +12018 2 269.7644 339.0267 11.704 0.1144 12017 +12019 2 268.7416 339.3459 11.3057 0.1144 12018 +12020 2 268.4224 340.3697 11.1676 0.1144 12019 +12021 2 268.9841 341.3135 11.0072 0.1144 12020 +12022 2 268.9121 341.8993 10.8149 0.1144 12021 +12023 2 268.0072 342.5479 10.6123 0.1144 12022 +12024 2 268.0209 343.4768 10.4242 0.1144 12023 +12025 2 268.1994 344.5797 10.2936 0.1144 12024 +12026 2 267.8138 345.6196 10.2043 0.1144 12025 +12027 2 267.2704 346.6251 10.1525 0.1144 12026 +12028 2 266.4593 347.3973 10.1293 0.1144 12027 +12029 2 265.5899 348.1398 10.1226 0.1144 12028 +12030 2 265.9136 349.0218 10.1226 0.1144 12029 +12031 2 266.8449 349.683 10.1226 0.1144 12030 +12032 2 269.9783 338.4547 12.1925 0.1144 12017 +12033 2 269.9623 337.3107 11.9559 0.1144 12032 +12034 2 270.1476 336.1884 11.7914 0.1144 12033 +12035 2 271.0857 335.9985 11.6858 0.1144 12034 +12036 2 272.1954 335.7766 11.6027 0.1144 12035 +12037 2 273.0602 335.0684 11.5316 0.1144 12036 +12038 2 274.0372 334.5434 11.3767 0.1144 12037 +12039 2 275.092 334.1132 11.2186 0.1144 12038 +12040 2 275.9946 333.4325 11.0232 0.1144 12039 +12041 2 277.0047 332.9051 10.8296 0.1144 12040 +12042 2 277.944 332.2576 10.6494 0.1144 12041 +12043 2 278.8523 331.5792 10.4615 0.1144 12042 +12044 2 279.5604 330.6835 10.3326 0.1144 12043 +12045 2 280.2491 329.7694 10.2498 0.1144 12044 +12046 2 281.3256 329.4068 10.2088 0.1144 12045 +12047 2 282.4662 329.4777 10.1988 0.1144 12046 +12048 2 283.6033 329.3816 10.2126 0.1144 12047 +12049 2 284.6444 328.9057 10.2437 0.1144 12048 +12050 2 285.6705 328.4046 10.2848 0.1144 12049 +12051 2 286.7596 328.1186 10.387 0.1144 12050 +12052 2 287.9013 328.0992 10.489 0.1144 12051 +12053 2 289.0144 328.2639 10.5675 0.1144 12052 +12054 2 289.9662 328.8977 10.624 0.1144 12053 +12055 2 290.9615 329.4423 10.6601 0.1144 12054 +12056 2 292.0609 329.52 10.6779 0.1144 12055 +12057 2 293.0734 328.9869 10.6799 0.1144 12056 +12058 2 294.0572 328.4081 10.6779 0.1144 12057 +12059 2 295.0056 327.7812 10.6752 0.1144 12058 +12060 2 295.986 327.2652 10.6714 0.1144 12059 +12061 2 296.4596 326.2596 10.6663 0.1144 12060 +12062 2 296.6243 325.1282 10.6588 0.1144 12061 +12063 2 297.122 324.181 10.6476 0.1144 12062 +12064 2 297.7397 323.3424 10.6326 0.1144 12063 +12065 2 297.8518 322.2042 10.6145 0.1144 12064 +12066 2 298.2351 321.1597 10.5952 0.1144 12065 +12067 2 299.0508 320.4321 10.5332 0.1144 12066 +12068 2 299.863 319.6816 10.4588 0.1144 12067 +12069 2 300.6993 318.914 10.4201 0.1144 12068 +12070 2 301.5813 318.1864 10.4159 0.1144 12069 +12071 2 302.4175 317.4074 10.4528 0.1144 12070 +12072 2 303.3385 316.8056 10.5939 0.1144 12071 +12073 2 304.2548 316.1627 10.7875 0.1144 12072 +12074 2 305.2535 315.6239 10.9526 0.1144 12073 +12075 2 306.2328 315.0404 11.0703 0.1144 12074 +12076 2 306.9123 314.1516 11.1428 0.1144 12075 +12077 2 307.5633 313.2123 11.1744 0.1144 12076 +12078 2 308.0312 312.1782 11.1728 0.1144 12077 +12079 2 308.6466 311.2241 11.1567 0.1144 12078 +12080 2 309.444 310.4313 11.0768 0.1144 12079 +12081 2 310.2276 309.603 11.0013 0.1144 12080 +12082 2 311.0959 308.8731 10.9896 0.1144 12081 +12083 2 312.1782 308.5677 11.0214 0.1144 12082 +12084 2 313.2009 308.0643 11.0477 0.1144 12083 +12085 2 314.3323 307.9717 11.0635 0.1144 12084 +12086 2 315.3653 308.4476 11.0688 0.1144 12085 +12087 2 316.3698 308.9841 11.0162 0.1144 12086 +12088 2 317.4394 309.3708 10.9149 0.1144 12087 +12089 2 318.572 309.5286 10.828 0.1144 12088 +12090 2 319.6153 309.9954 10.763 0.1144 12089 +12091 2 320.6094 310.5617 10.7188 0.1144 12090 +12092 2 321.6791 310.9689 10.6935 0.1144 12091 +12093 2 322.5188 311.7446 10.6848 0.1144 12092 +12094 2 249.241 348.3503 18.1352 0.1144 11995 +12095 2 250.1859 348.928 18.4398 0.1144 12094 +12096 2 250.9375 349.7586 18.5413 0.1144 12095 +12097 2 251.4363 350.7607 18.689 0.1144 12096 +12098 2 250.9593 351.6976 18.8114 0.1144 12097 +12099 2 250.2694 352.6105 18.8868 0.1144 12098 +12100 2 249.845 353.663 18.9202 0.1144 12099 +12101 2 249.9434 354.7876 18.9167 0.1144 12100 +12102 2 249.773 355.8847 18.8109 0.1144 12101 +12103 2 249.1792 356.8616 18.7141 0.1144 12102 +12104 2 248.5855 357.8398 18.5578 0.1144 12103 +12105 2 244.2909 361.1185 26.7324 0.1144 10985 +12106 2 243.2682 361.5383 26.8902 0.1144 12105 +12107 2 242.2031 361.2546 27.1424 0.1144 12106 +12108 2 241.289 360.6208 27.4279 0.1144 12107 +12109 2 240.5066 359.915 27.8002 0.1144 12108 +12110 2 239.4129 359.5958 28.1406 0.1144 12109 +12111 2 238.3078 359.3293 28.4813 0.1144 12110 +12112 2 237.2004 359.0513 28.7946 0.1144 12111 +12113 2 236.1113 358.7264 29.0629 0.1144 12112 +12114 2 235.1538 358.1486 29.3493 0.1144 12113 +12115 2 234.3656 357.3707 29.724 0.1144 12114 +12116 2 233.6712 356.491 30.1568 0.1144 12115 +12117 2 233.2204 355.4648 30.5959 0.1144 12116 +12118 2 233.0946 354.3391 31.0318 0.1144 12117 +12119 2 233.6414 353.5807 31.5454 0.1144 12118 +12120 2 234.5269 353.1665 32.2272 0.1144 12119 +12121 2 233.9652 352.2788 32.853 0.1144 12120 +12122 2 232.9527 351.8326 33.5149 0.1144 12121 +12123 2 232.4459 352.5213 34.2742 0.1144 12122 +12124 2 232.8864 353.1722 34.9714 0.1144 12123 +12125 2 232.2331 353.5452 35.7434 0.1144 12124 +12126 2 231.8625 353.6504 36.7766 0.1144 12125 +12127 2 230.842 353.9204 37.7479 0.1144 12126 +12128 2 229.8605 353.4914 38.5871 0.1144 12127 +12129 2 229.2656 352.5568 39.3322 0.1144 12128 +12130 2 228.7497 351.6084 40.0355 0.1144 12129 +12131 2 227.9557 350.8728 40.6333 0.1144 12130 +12132 2 227.0096 350.2367 41.0724 0.1144 12131 +12133 2 226.0395 349.6647 41.4383 0.1144 12132 +12134 2 225.0648 349.1133 41.767 0.1144 12133 +12135 2 224.343 348.3469 42.1828 0.1144 12134 +12136 2 223.612 347.6307 42.7367 0.1144 12135 +12137 2 222.635 347.109 43.2874 0.1144 12136 +12138 2 221.5814 346.95 43.89 0.1144 12137 +12139 2 220.6559 346.4844 44.5418 0.1144 12138 +12140 2 220.2086 345.464 45.1032 0.1144 12139 +12141 2 219.5428 344.5511 45.6075 0.1144 12140 +12142 2 218.8941 343.7972 46.2381 0.1144 12141 +12143 2 217.8576 343.3613 46.804 0.1144 12142 +12144 2 217.1804 342.4564 47.3099 0.1144 12143 +12145 2 218.0624 341.7574 47.789 0.1144 12144 +12146 2 218.8117 341.0836 46.9162 0.1144 12145 +12147 2 219.6583 340.3217 47.2072 0.1144 12146 +12148 2 220.5037 339.5598 47.336 0.1144 12147 +12149 2 221.3503 338.7979 47.4832 0.1144 12148 +12150 2 221.9154 337.8049 47.6078 0.1144 12149 +12151 2 222.3696 336.7547 47.6983 0.1144 12150 +12152 2 222.8237 335.7045 47.7571 0.1144 12151 +12153 2 223.2791 334.6555 47.7873 0.1144 12152 +12154 2 223.7332 333.6053 47.8008 0.1144 12153 +12155 2 218.1505 341.5103 48.4971 0.1144 12145 +12156 2 217.4103 341.4417 49.4292 0.1144 12155 +12157 2 216.2995 341.5561 50.2911 0.1144 12156 +12158 2 215.231 341.15 51.0583 0.1144 12157 +12159 2 215.2894 340.9806 50.5067 0.1144 12158 +12160 2 215.6062 339.9087 49.7106 0.1144 12159 +12161 2 215.7309 338.8276 49.3592 0.1144 12160 +12162 2 215.9449 337.8152 48.8995 0.1144 12161 +12163 2 216.3556 336.7742 48.5069 0.1144 12162 +12164 2 216.7834 335.7137 48.228 0.1144 12163 +12165 2 217.2124 334.6532 48.0553 0.1144 12164 +12166 2 217.6529 333.5973 47.9814 0.1144 12165 +12167 2 218.1391 332.5619 47.983 0.1144 12166 +12168 2 218.9216 331.7497 48.0354 0.1144 12167 +12169 2 219.4764 330.7899 48.1732 0.1144 12168 +12170 2 219.9363 329.7477 48.319 0.1144 12169 +12171 2 220.49 328.7478 48.4571 0.1144 12170 +12172 2 220.9636 327.7068 48.5912 0.1144 12171 +12173 2 221.5596 326.7458 48.769 0.1144 12172 +12174 2 222.5515 326.2265 48.9594 0.1144 12173 +12175 2 223.6211 325.8272 49.1448 0.1144 12174 +12176 2 224.5855 325.3525 49.4379 0.1144 12175 +12177 2 225.6082 324.848 49.6712 0.1144 12176 +12178 2 226.7088 324.5436 49.8392 0.1144 12177 +12179 2 227.847 324.427 49.9467 0.1144 12178 +12180 2 228.919 324.0277 50.0074 0.1144 12179 +12181 2 229.8342 323.3424 50.0312 0.1144 12180 +12182 2 230.6075 322.5005 50.0259 0.1144 12181 +12183 2 231.1074 321.4709 50.0147 0.1144 12182 +12184 2 231.6062 320.4413 49.9999 0.1144 12183 +12185 2 232.105 319.4117 49.9825 0.1144 12184 +12186 2 232.6027 318.3821 49.9629 0.1144 12185 +12187 2 233.1026 317.3525 49.9425 0.1144 12186 +12188 2 233.6014 316.324 49.9215 0.1144 12187 +12189 2 234.1002 315.2944 49.9005 0.1144 12188 +12190 2 234.6001 314.2648 49.8795 0.1144 12189 +12191 2 235.0989 313.2352 49.859 0.1144 12190 +12192 2 235.5976 312.2056 49.8386 0.1144 12191 +12193 2 236.0953 311.176 49.8184 0.1144 12192 +12194 2 236.5941 310.1464 49.7986 0.1144 12193 +12195 2 237.0929 309.1168 49.7795 0.1144 12194 +12196 2 237.5928 308.0884 49.7613 0.1144 12195 +12197 2 238.0927 307.0588 49.7442 0.1144 12196 +12198 2 238.5915 306.0292 49.7286 0.1144 12197 +12199 2 239.0937 305.0018 49.716 0.1144 12198 +12200 2 239.6119 303.9814 49.7073 0.1144 12199 +12201 2 240.4013 303.1543 49.702 0.1144 12200 +12202 2 241.1918 302.3272 49.6992 0.1144 12201 +12203 2 241.9812 301.4989 49.698 0.1144 12202 +12204 2 242.7717 300.6718 49.6978 0.1144 12203 +12205 2 214.826 341.055 51.8916 0.1144 12158 +12206 2 213.9223 341.603 52.7363 0.1144 12205 +12207 2 213.0711 342.2116 53.6194 0.1144 12206 +12208 2 212.1456 342.723 54.5395 0.1144 12207 +12209 2 211.2018 343.2034 55.5108 0.1144 12208 +12210 2 210.2569 343.6839 56.5102 0.1144 12209 +12211 2 209.9412 343.7411 57.5011 0.1144 12210 +12212 2 210.8003 343.0639 58.4458 0.1144 12211 +12213 2 211.5016 342.3248 59.3104 0.1144 12212 +12214 2 210.9788 341.5892 60.2582 0.1144 12213 +12215 2 210.0075 341.3902 61.2097 0.1144 12214 +12216 2 208.883 341.5767 62.0388 0.1144 12215 +12217 2 207.771 341.8329 62.7864 0.1144 12216 +12218 2 207.0148 342.3523 63.5435 0.1144 12217 +12219 2 207.5342 343.097 64.4487 0.1144 12218 +12220 2 208.3338 343.1142 65.4912 0.1144 12219 +12221 2 209.2754 343.4482 66.54 0.1144 12220 +12222 2 210.2352 343.8544 67.555 0.1144 12221 +12223 2 211.1938 344.2605 68.495 0.1144 12222 +12224 2 212.2978 344.376 69.2381 0.1144 12223 +12225 2 213.4304 344.2353 69.7228 0.1144 12224 +12226 2 214.54 343.9619 70.0022 0.1144 12225 +12227 2 215.4976 343.343 70.1408 0.1144 12226 +12228 2 216.4391 342.6944 70.1828 0.1144 12227 +12229 2 217.3817 342.0457 70.1655 0.1144 12228 +12230 2 218.1425 341.1946 70.1131 0.1144 12229 +12231 2 218.5978 340.149 70.0325 0.1144 12230 +12232 2 219.044 339.0976 69.93 0.1144 12231 +12233 2 219.4901 338.0451 69.8116 0.1144 12232 +12234 2 219.9363 336.9938 69.6822 0.1144 12233 +12235 2 220.3824 335.9413 69.5461 0.1144 12234 +12236 2 220.8286 334.89 69.4081 0.1144 12235 +12237 2 221.2759 333.8375 69.27 0.1144 12236 +12238 2 221.7221 332.7862 69.1317 0.1144 12237 +12239 2 222.1682 331.7348 68.9937 0.1144 12238 +12240 2 222.6144 330.6824 68.8556 0.1144 12239 +12241 2 223.0606 329.631 68.7179 0.1144 12240 +12242 2 223.5067 328.5785 68.5801 0.1144 12241 +12243 2 223.9529 327.5272 68.4424 0.1144 12242 +12244 2 224.399 326.4747 68.3049 0.1144 12243 +12245 2 224.8463 325.4234 68.168 0.1144 12244 +12246 2 225.2925 324.372 68.031 0.1144 12245 +12247 2 225.7387 323.3196 67.895 0.1144 12246 +12248 2 226.1848 322.2682 67.76 0.1144 12247 +12249 2 226.631 321.2158 67.6259 0.1144 12248 +12250 2 227.0771 320.1644 67.4937 0.1144 12249 +12251 2 227.5233 319.1119 67.3635 0.1144 12250 +12252 2 227.9695 318.0606 67.237 0.1144 12251 +12253 2 228.4168 317.0081 67.1152 0.1144 12252 +12254 2 228.8629 315.9568 67.0001 0.1144 12253 +12255 2 229.3091 314.9054 66.8928 0.1144 12254 +12256 2 229.7587 313.8541 66.7948 0.1144 12255 +12257 2 230.5766 313.059 66.7265 0.1144 12256 +12258 2 231.4106 312.2765 66.6823 0.1144 12257 +12259 2 232.2549 311.5032 66.6565 0.1144 12258 +12260 2 233.0866 310.7184 66.6442 0.1144 12259 +12261 2 233.8862 309.9004 66.64 0.1144 12260 +12262 2 234.6836 309.0802 66.64 0.1144 12261 +12263 2 235.5427 308.3252 66.64 0.1144 12262 +12264 2 236.4671 307.6502 66.64 0.1144 12263 +12265 2 237.3914 306.9775 66.64 0.1144 12264 +12266 2 238.2815 306.258 66.64 0.1144 12265 +12267 2 238.1911 305.1174 66.64 0.1144 12266 +12268 2 238.1019 303.978 66.64 0.1144 12267 +12269 2 238.1213 302.834 66.64 0.1144 12268 +12270 2 238.143 301.69 66.64 0.1144 12269 +12271 2 238.1636 300.546 66.64 0.1144 12270 +12272 2 239.1555 300.5585 66.6856 0.1144 12271 +12273 2 240.2446 300.8137 67.2837 0.1144 12272 +12274 2 241.2936 301.2278 67.5559 0.1144 12273 +12275 2 242.2088 301.8627 67.8703 0.1144 12274 +12276 2 242.9742 302.7104 68.1932 0.1144 12275 +12277 2 243.7956 303.494 68.558 0.1144 12276 +12278 2 244.7348 304.1049 69.0113 0.1144 12277 +12279 2 245.7095 304.6518 69.5562 0.1144 12278 +12280 2 246.6842 305.1975 70.1842 0.1144 12279 +12281 2 247.5353 305.8701 70.9148 0.1144 12280 +12282 2 248.1153 306.6549 71.7987 0.1144 12281 +12283 2 248.7033 307.4706 72.7605 0.1144 12282 +12284 2 249.4675 308.1181 73.7472 0.1144 12283 +12285 2 249.8908 308.848 74.7863 0.1144 12284 +12286 2 249.1014 309.5561 75.64 0.1144 12285 +12287 2 248.2 310.2608 76.242 0.1144 12286 +12288 2 247.6085 311.2401 76.6371 0.1144 12287 +12289 2 247.5399 312.3818 76.8852 0.1144 12288 +12290 2 247.5422 313.5258 77.0403 0.1144 12289 +12291 2 247.6051 314.6675 77.1523 0.1144 12290 +12292 2 246.5354 314.2431 77.4998 0.1144 12291 +12293 2 245.4864 313.8278 77.7955 0.1144 12292 +12294 2 244.4385 313.4114 78.1424 0.1144 12293 +12295 2 243.3894 312.9961 78.5176 0.1144 12294 +12296 2 242.3415 312.5797 78.8995 0.1144 12295 +12297 2 241.2925 312.1644 79.2683 0.1144 12296 +12298 2 240.2286 311.7892 79.6034 0.1144 12297 +12299 2 239.1772 312.0374 79.8552 0.1144 12298 +12300 2 238.1316 312.503 80.0209 0.1144 12299 +12301 2 237.0871 312.9698 80.1203 0.1144 12300 +12302 2 236.0209 312.8062 80.1713 0.1144 12301 +12303 2 235.044 312.2102 80.1906 0.1144 12302 +12304 2 234.0464 311.6508 80.194 0.1144 12303 +12305 2 233.0488 311.0902 80.194 0.1144 12304 +12306 2 232.0512 310.5308 80.194 0.1144 12305 +12307 2 231.1395 309.8387 80.194 0.1144 12306 +12308 2 230.2392 309.134 80.194 0.1144 12307 +12309 2 229.3365 308.4316 80.194 0.1144 12308 +12310 2 228.4351 307.7268 80.194 0.1144 12309 +12311 2 227.5084 307.0553 80.194 0.1144 12310 +12312 2 226.5566 306.4204 80.194 0.1144 12311 +12313 2 225.606 305.7855 80.194 0.1144 12312 +12314 2 224.6541 305.1506 80.194 0.1144 12313 +12315 2 223.7023 304.5156 80.194 0.1144 12314 +12316 2 222.7505 303.8796 80.194 0.1144 12315 +12317 2 221.7999 303.2447 80.194 0.1144 12316 +12318 2 220.8481 302.6097 80.194 0.1144 12317 +12319 2 247.6989 315.0382 76.8054 0.1144 12291 +12320 2 247.9403 316.1558 76.7698 0.1144 12319 +12321 2 247.9208 317.2907 76.7542 0.1144 12320 +12322 2 247.5193 318.3466 76.7332 0.1144 12321 +12323 2 246.9885 319.3602 76.7119 0.1144 12322 +12324 2 246.4462 320.3669 76.685 0.1144 12323 +12325 2 245.8948 321.3439 76.596 0.1144 12324 +12326 2 245.4475 322.3758 76.4733 0.1144 12325 +12327 2 245.3365 323.4877 76.4448 0.1144 12326 +12328 2 245.1535 324.5379 76.592 0.1144 12327 +12329 2 244.4179 325.4039 76.7295 0.1144 12328 +12330 2 243.4912 326.072 76.8491 0.1144 12329 +12331 2 242.6344 326.8305 76.949 0.1144 12330 +12332 2 241.6929 327.4803 77.0437 0.1144 12331 +12333 2 238.2449 299.8138 66.64 0.1144 12271 +12334 2 238.4702 298.6973 66.64 0.1144 12333 +12335 2 238.8512 297.6185 66.64 0.1144 12334 +12336 2 239.2768 296.5591 66.6397 0.1144 12335 +12337 2 239.8282 295.557 66.6397 0.1144 12336 +12338 2 240.4219 294.58 66.6397 0.1144 12337 +12339 2 241.0431 293.619 66.6397 0.1144 12338 +12340 2 241.6643 292.6581 66.6394 0.1144 12339 +12341 2 242.2843 291.6971 66.6392 0.1144 12340 +12342 2 242.9055 290.7362 66.6389 0.1144 12341 +12343 2 243.5267 289.7763 66.6386 0.1144 12342 +12344 2 244.149 288.8154 66.638 0.1144 12343 +12345 2 244.7691 287.8544 66.6372 0.1144 12344 +12346 2 245.3903 286.8935 66.6358 0.1144 12345 +12347 2 246.0115 285.9336 66.6344 0.1144 12346 +12348 2 246.6327 284.9727 66.6322 0.1144 12347 +12349 2 247.2539 284.0117 66.6288 0.1144 12348 +12350 2 247.8751 283.0508 66.6243 0.1144 12349 +12351 2 248.4951 282.0898 66.6182 0.1144 12350 +12352 2 249.1163 281.1288 66.6095 0.1144 12351 +12353 2 249.7844 280.2045 66.5974 0.1144 12352 +12354 2 250.5875 279.3911 66.5804 0.1144 12353 +12355 2 251.4489 278.6395 66.5566 0.1144 12354 +12356 2 252.3687 277.9623 66.5232 0.1144 12355 +12357 2 253.3411 277.3582 66.4787 0.1144 12356 +12358 2 254.1831 276.6341 66.4149 0.1144 12357 +12359 2 254.6281 275.5907 66.316 0.1144 12358 +12360 2 254.9107 274.4845 66.1839 0.1144 12359 +12361 2 255.1944 273.3794 66.0257 0.1144 12360 +12362 2 255.4781 272.2731 65.8484 0.1144 12361 +12363 2 255.7618 271.168 65.6569 0.1144 12362 +12364 2 256.1542 270.1064 65.4581 0.1144 12363 +12365 2 256.7719 269.1454 65.2613 0.1144 12364 +12366 2 257.4435 268.22 65.0597 0.1144 12365 +12367 2 258.2431 267.8321 64.8446 0.1144 12366 +12368 2 258.9707 268.6821 64.5554 0.1144 12367 +12369 2 259.5313 269.4944 64.0716 0.1144 12368 +12370 2 259.728 270.4782 63.4662 0.1144 12369 +12371 2 260.4465 271.3579 62.9535 0.1144 12370 +12372 2 260.6192 271.0536 62.1219 0.1144 12371 +12373 2 261.1844 270.0584 62.1219 0.1144 12372 +12374 2 261.7483 269.0631 62.1219 0.1144 12373 +12375 2 262.3123 268.0678 62.1219 0.1144 12374 +12376 2 262.8981 267.0851 62.1219 0.1144 12375 +12377 2 263.6222 266.1996 62.1219 0.1144 12376 +12378 2 264.3532 265.3199 62.1219 0.1144 12377 +12379 2 264.9813 264.3647 62.1219 0.1144 12378 +12380 2 265.6036 263.4049 62.1219 0.1144 12379 +12381 2 266.2271 262.445 62.1219 0.1144 12380 +12382 2 267.0222 261.6236 62.1219 0.1144 12381 +12383 2 267.8859 260.8743 62.1219 0.1144 12382 +12384 2 268.7519 260.1262 62.1219 0.1144 12383 +12385 2 269.563 259.3208 62.1219 0.1144 12384 +12386 2 270.3592 258.4982 62.1219 0.1144 12385 +12387 2 270.9461 257.5178 62.1219 0.1144 12386 +12388 2 271.2355 256.4104 62.1219 0.1144 12387 +12389 2 271.5238 255.3042 62.1219 0.1144 12388 +12390 2 271.8133 254.1968 62.1219 0.1144 12389 +12391 2 272.0947 253.0883 62.1219 0.1144 12390 +12392 2 272.0432 251.9454 62.1219 0.1144 12391 +12393 2 260.2749 271.7183 62.5744 0.1144 12371 +12394 2 259.7818 272.7513 62.3188 0.1144 12393 +12395 2 259.2899 273.7844 62.1746 0.1144 12394 +12396 2 258.7968 274.8163 62.1194 0.1144 12395 +12397 2 258.3049 275.8493 62.1085 0.1144 12396 +12398 2 257.813 276.8823 62.1032 0.1144 12397 +12399 2 257.3199 277.9142 62.0956 0.1144 12398 +12400 2 256.7925 278.9289 62.085 0.1144 12399 +12401 2 256.2571 279.9402 62.0701 0.1144 12400 +12402 2 255.7206 280.9504 62.0497 0.1144 12401 +12403 2 255.1852 281.9617 62.0231 0.1144 12402 +12404 2 255.5536 282.4284 61.9811 0.1144 12403 +12405 2 256.2617 283.3265 61.9189 0.1144 12404 +12406 2 256.9699 284.2234 61.8414 0.1144 12405 +12407 2 257.678 285.1203 61.7529 0.1144 12406 +12408 2 258.3861 286.0183 61.658 0.1144 12407 +12409 2 259.0954 286.9152 61.5611 0.1144 12408 +12410 2 259.8035 287.8121 61.4664 0.1144 12409 +12411 2 260.5117 288.7101 61.3771 0.1144 12410 +12412 2 261.2198 289.607 61.2951 0.1144 12411 +12413 2 261.928 290.5051 61.222 0.1144 12412 +12414 2 262.6361 291.402 61.1596 0.1144 12413 +12415 2 263.5078 292.2051 61.1218 0.1144 12414 +12416 2 264.3498 292.9795 61.1433 0.1144 12415 +12417 2 265.1906 293.754 61.1828 0.1144 12416 +12418 2 266.0315 294.5297 61.2343 0.1144 12417 +12419 2 266.8735 295.3042 61.2923 0.1144 12418 +12420 2 267.7143 296.0786 61.3516 0.1144 12419 +12421 2 268.5563 296.8531 61.411 0.1144 12420 +12422 2 269.3971 297.6288 61.4704 0.1144 12421 +12423 2 270.2391 298.4032 61.5297 0.1144 12422 +12424 2 271.08 299.1777 61.5891 0.1144 12423 +12425 2 271.9208 299.9534 61.6484 0.1144 12424 +12426 2 272.7628 300.7279 61.7078 0.1144 12425 +12427 2 273.6036 301.5023 61.7669 0.1144 12426 +12428 2 274.4456 302.2768 61.826 0.1144 12427 +12429 2 275.2864 303.0525 61.8848 0.1144 12428 +12430 2 276.1284 303.827 61.9433 0.1144 12429 +12431 2 276.9693 304.6014 62.0012 0.1144 12430 +12432 2 277.8101 305.3759 62.0589 0.1144 12431 +12433 2 278.6521 306.1516 62.116 0.1144 12432 +12434 2 279.4929 306.926 62.1718 0.1144 12433 +12435 2 280.3349 307.7005 62.2261 0.1144 12434 +12436 2 281.1758 308.475 62.2784 0.1144 12435 +12437 2 282.0177 309.2507 62.3283 0.1144 12436 +12438 2 282.8586 310.0251 62.3753 0.1144 12437 +12439 2 283.1057 309.8432 62.4224 0.1144 12438 +12440 2 284.0277 309.166 62.4224 0.1144 12439 +12441 2 284.9498 308.4888 62.4224 0.1144 12440 +12442 2 285.8673 307.8069 62.4224 0.1144 12441 +12443 2 286.755 307.0851 62.4224 0.1144 12442 +12444 2 287.6428 306.3632 62.4224 0.1144 12443 +12445 2 288.5305 305.6413 62.4224 0.1144 12444 +12446 2 283.4592 310.9266 62.4126 0.1144 12438 +12447 2 284.0941 311.8784 62.4425 0.1144 12446 +12448 2 284.729 312.8302 62.4674 0.1144 12447 +12449 2 285.3639 313.782 62.4884 0.1144 12448 +12450 2 286.0046 314.7293 62.5148 0.1144 12449 +12451 2 286.7436 315.5838 62.5904 0.1144 12450 +12452 2 287.5833 316.356 62.6382 0.1144 12451 +12453 2 288.4356 317.1168 62.648 0.1144 12452 +12454 2 289.289 317.8787 62.6273 0.1144 12453 +12455 2 290.1413 318.6395 62.5825 0.1144 12454 +12456 2 290.8631 319.5226 62.5218 0.1144 12455 +12457 2 290.6893 320.6277 62.4646 0.1144 12456 +12458 2 290.5428 321.7614 62.4212 0.1144 12457 +12459 2 290.5577 322.9043 62.3882 0.1144 12458 +12460 2 290.7487 324.0311 62.3599 0.1144 12459 +12461 2 291.1594 325.0985 62.3314 0.1144 12460 +12462 2 291.6411 326.1361 62.2952 0.1144 12461 +12463 2 292.0518 327.2034 62.2423 0.1144 12462 +12464 2 292.0792 328.3429 62.167 0.1144 12463 +12465 2 292.0049 329.4846 62.0707 0.1144 12464 +12466 2 291.8138 330.6126 61.9654 0.1144 12465 +12467 2 291.7989 331.6868 61.7322 0.1144 12466 +12468 2 292.0369 332.6615 61.371 0.1144 12467 +12469 2 292.014 333.7117 60.9857 0.1144 12468 +12470 2 292.6741 334.4267 61.1044 0.1144 12469 +12471 2 293.3868 335.2023 61.5558 0.1144 12470 +12472 2 294.3009 335.859 62.0491 0.1144 12471 +12473 2 295.2824 336.2994 62.5621 0.1144 12472 +12474 2 296.2102 336.0408 63.0361 0.1144 12473 +12475 2 297.0762 335.2927 63.3192 0.1144 12474 +12476 2 297.7489 334.4564 63.3494 0.1144 12475 +12477 2 298.2911 333.5057 63.224 0.1144 12476 +12478 2 298.7636 332.4739 63.0585 0.1144 12477 +12479 2 299.2407 331.4454 62.8603 0.1144 12478 +12480 2 299.8287 330.4684 62.6858 0.1144 12479 +12481 2 300.4441 329.504 62.5736 0.1144 12480 +12482 2 301.0333 328.5236 62.5201 0.1144 12481 +12483 2 301.5092 327.4872 62.5066 0.1144 12482 +12484 2 301.8959 326.4107 62.5178 0.1144 12483 +12485 2 302.2688 325.3284 62.5509 0.1144 12484 +12486 2 302.7264 324.2828 62.603 0.1144 12485 +12487 2 303.2435 323.2624 62.6774 0.1144 12486 +12488 2 303.7606 322.2419 62.7771 0.1144 12487 +12489 2 304.2777 321.2215 62.9031 0.1144 12488 +12490 2 304.6678 320.1644 63.0972 0.1144 12489 +12491 2 304.7055 319.1222 63.443 0.1144 12490 +12492 2 304.3715 318.0903 63.8397 0.1144 12491 +12493 2 303.867 317.0653 64.1897 0.1144 12492 +12494 2 303.343 316.0483 64.4882 0.1144 12493 +12495 2 302.8179 315.0313 64.745 0.1144 12494 +12496 2 302.1212 314.1527 65.0152 0.1144 12495 +12497 2 301.3285 313.3553 65.3243 0.1144 12496 +12498 2 300.5322 312.5625 65.6807 0.1144 12497 +12499 2 299.7349 311.7697 66.0825 0.1144 12498 +12500 2 298.8368 311.0845 66.4871 0.1144 12499 +12501 2 297.837 310.5331 66.8559 0.1144 12500 +12502 2 296.8142 310.0217 67.1891 0.1144 12501 +12503 2 295.7537 309.6316 67.5545 0.1144 12502 +12504 2 294.6852 309.4898 68.0403 0.1144 12503 +12505 2 293.5939 309.3101 68.6017 0.1144 12504 +12506 2 292.4922 309.0848 69.2093 0.1144 12505 +12507 2 291.4752 308.6203 69.8418 0.1144 12506 +12508 2 290.6332 308.117 70.6096 0.1144 12507 +12509 2 289.813 307.4672 71.4176 0.1144 12508 +12510 2 288.9458 306.878 72.2392 0.1144 12509 +12511 2 288.0123 306.2888 73.0083 0.1144 12510 +12512 2 287.0319 305.7031 73.6366 0.1144 12511 +12513 2 286.4633 304.7181 74.1594 0.1144 12512 +12514 2 286.3135 303.5856 74.6194 0.1144 12513 +12515 2 286.4839 302.4553 75.0758 0.1144 12514 +12516 2 286.1682 301.4863 75.7574 0.1144 12515 +12517 2 285.6877 300.6535 76.6755 0.1144 12516 +12518 2 284.8754 299.9602 77.684 0.1144 12517 +12519 2 284.7874 299.0382 78.8978 0.1144 12518 +12520 2 284.8526 297.9479 80.1349 0.1144 12519 +12521 2 284.9269 297.2547 81.5195 0.1144 12520 +12522 2 284.1341 297.2432 83.0382 0.1144 12521 +12523 2 283.3173 297.2409 84.6336 0.1144 12522 +12524 2 282.5989 297.2409 86.2876 0.1144 12523 +12525 2 282.0269 297.1117 87.9528 0.1144 12524 +12526 2 281.6082 296.1942 89.397 0.1144 12525 +12527 2 281.4251 295.7904 90.7936 0.1144 12526 +12528 2 282.25 295.1543 93.8862 0.1144 12527 +12529 2 283.0611 294.3501 93.8689 0.1144 12528 +12530 2 283.8081 293.484 93.861 0.1144 12529 +12531 2 284.387 292.4979 93.8473 0.1144 12530 +12532 2 285.2747 291.7818 93.8232 0.1144 12531 +12533 2 286.1304 291.0233 93.7905 0.1144 12532 +12534 2 286.7596 290.0681 93.7493 0.1144 12533 +12535 2 287.5547 289.249 93.6782 0.1144 12534 +12536 2 288.3509 288.431 93.588 0.1144 12535 +12537 2 289.146 287.6119 93.3523 0.1144 12536 +12538 2 280.725 295.4277 91.7151 0.1144 12527 +12539 2 279.6462 295.6805 92.2132 0.1144 12538 +12540 2 278.5606 296.0077 92.386 0.1144 12539 +12541 2 277.4761 296.3349 92.3387 0.1144 12540 +12542 2 276.3915 296.6632 92.1726 0.1144 12541 +12543 2 275.283 296.9229 91.964 0.1144 12542 +12544 2 274.1459 297.0396 91.8257 0.1144 12543 +12545 2 273.0064 297.1437 91.7501 0.1144 12544 +12546 2 271.9116 297.194 91.8204 0.1144 12545 +12547 2 270.81 296.9435 91.9181 0.1144 12546 +12548 2 269.7666 296.4768 91.9654 0.1144 12547 +12549 2 268.9029 295.7297 91.9517 0.1144 12548 +12550 2 268.1994 294.8397 91.8285 0.1144 12549 +12551 2 267.6971 294.1762 91.3948 0.1144 12550 +12552 2 268.0026 293.5481 90.3594 0.1144 12551 +12553 2 268.5025 292.5197 90.3594 0.1144 12552 +12554 2 268.9933 291.4866 90.3594 0.1144 12553 +12555 2 269.3994 290.417 90.3594 0.1144 12554 +12556 2 269.9646 289.4228 90.3594 0.1144 12555 +12557 2 270.8889 288.749 90.3594 0.1144 12556 +12558 2 267.2384 295.2881 90.7374 0.1144 12551 +12559 2 266.8025 296.3463 90.5349 0.1144 12558 +12560 2 266.3667 297.4034 90.4109 0.1144 12559 +12561 2 265.9617 298.4719 90.3568 0.1144 12560 +12562 2 265.7203 299.5884 90.356 0.1144 12561 +12563 2 265.5636 300.7221 90.3546 0.1144 12562 +12564 2 265.4046 301.8547 90.3526 0.1144 12563 +12565 2 265.2318 302.9861 90.3501 0.1144 12564 +12566 2 264.9664 304.0798 90.3462 0.1144 12565 +12567 2 264.2823 304.995 90.3412 0.1144 12566 +12568 2 263.4849 305.8118 90.3336 0.1144 12567 +12569 2 262.524 306.3643 90.3235 0.1144 12568 +12570 2 261.4898 306.6069 90.3095 0.1144 12569 +12571 2 260.8412 307.5484 90.2896 0.1144 12570 +12572 2 260.1216 308.435 90.2611 0.1144 12571 +12573 2 259.3013 309.2312 90.221 0.1144 12572 +12574 2 258.4445 309.9897 90.1681 0.1144 12573 +12575 2 257.575 310.7333 90.0992 0.1144 12574 +12576 2 256.7067 311.4666 89.9889 0.1144 12575 +12577 2 255.8808 312.2216 89.8022 0.1144 12576 +12578 2 255.2584 313.138 89.6 0.1144 12577 +12579 2 254.8946 314.2202 89.4432 0.1144 12578 +12580 2 254.3798 315.2372 89.329 0.1144 12579 +12581 2 253.706 316.1593 89.2528 0.1144 12580 +12582 2 252.9247 316.9932 89.2094 0.1144 12581 +12583 2 252.0667 317.7494 89.1887 0.1144 12582 +12584 2 251.1675 318.4553 89.1724 0.1144 12583 +12585 2 250.3438 319.2343 89.1495 0.1144 12584 +12586 2 249.6883 320.1724 89.1173 0.1144 12585 +12587 2 248.9893 321.0693 89.0719 0.1144 12586 +12588 2 248.1622 321.8587 89.0098 0.1144 12587 +12589 2 247.3946 322.703 88.9263 0.1144 12588 +12590 2 246.6739 323.5861 88.8012 0.1144 12589 +12591 2 245.8868 324.4064 88.6133 0.1144 12590 +12592 2 245.1009 325.2278 88.3758 0.1144 12591 +12593 2 244.3149 326.048 88.1017 0.1144 12592 +12594 2 243.529 326.8694 87.803 0.1144 12593 +12595 2 242.7431 327.6896 87.4905 0.1144 12594 +12596 2 241.9571 328.511 87.1735 0.1144 12595 +12597 2 241.1712 329.3313 86.858 0.1144 12596 +12598 2 240.3853 330.1527 86.5446 0.1144 12597 +12599 2 239.5982 330.9729 86.2333 0.1144 12598 +12600 2 238.8123 331.7932 85.9219 0.1144 12599 +12601 2 238.0275 332.618 85.6142 0.1144 12600 +12602 2 237.2484 333.4543 85.3255 0.1144 12601 +12603 2 236.5037 334.3191 85.0567 0.1144 12602 +12604 2 235.958 335.2858 84.7535 0.1144 12603 +12605 2 235.6697 336.3566 84.3718 0.1144 12604 +12606 2 235.3826 337.4262 83.9373 0.1144 12605 +12607 2 235.0954 338.4959 83.475 0.1144 12606 +12608 2 234.6699 339.506 83.0186 0.1144 12607 +12609 2 233.7867 340.1089 82.6434 0.1144 12608 +12610 2 232.6804 340.3983 82.3892 0.1144 12609 +12611 2 231.5731 340.6878 82.2366 0.1144 12610 +12612 2 230.4668 340.9761 82.159 0.1144 12611 +12613 2 229.3594 341.2655 82.1316 0.1144 12612 +12614 2 228.2532 341.5549 82.1324 0.1144 12613 +12615 2 227.1458 341.8444 82.1433 0.1144 12614 +12616 2 226.0395 342.1338 82.1584 0.1144 12615 +12617 2 224.9321 342.4232 82.1772 0.1144 12616 +12618 2 223.8133 342.4942 82.2086 0.1144 12617 +12619 2 222.6807 342.3397 82.2584 0.1144 12618 +12620 2 221.5493 342.1807 82.3166 0.1144 12619 +12621 2 220.4156 342.0434 82.3712 0.1144 12620 +12622 2 219.2751 342.0091 82.4018 0.1144 12621 +12623 2 218.1322 342.0571 82.3948 0.1144 12622 +12624 2 216.9893 342.1063 82.348 0.1144 12623 +12625 2 216.1828 342.6497 82.2441 0.1144 12624 +12626 2 215.7721 343.7114 82.0739 0.1144 12625 +12627 2 215.4083 344.7913 81.8448 0.1144 12626 +12628 2 215.0445 345.8712 81.5634 0.1144 12627 +12629 2 214.6808 346.9512 81.2372 0.1144 12628 +12630 2 214.3158 348.0311 80.8746 0.1144 12629 +12631 2 213.952 349.111 80.488 0.1144 12630 +12632 2 213.8456 349.8169 79.8983 0.1144 12631 +12633 2 214.7277 349.9999 79.1862 0.1144 12632 +12634 2 215.779 350.4369 78.6136 0.1144 12633 +12635 2 216.8818 350.7138 78.1404 0.1144 12634 +12636 2 216.0204 350.5525 77.9066 0.1144 12635 +12637 2 214.9073 350.3443 78.342 0.1144 12636 +12638 2 213.8342 350.0057 78.5333 0.1144 12637 +12639 2 212.9396 349.3376 78.743 0.1144 12638 +12640 2 212.1102 348.5596 78.9463 0.1144 12639 +12641 2 211.1309 347.9991 79.1154 0.1144 12640 +12642 2 210.0681 347.5758 79.2383 0.1144 12641 +12643 2 209.0054 347.1514 79.3187 0.1144 12642 +12644 2 207.9426 346.7281 79.3696 0.1144 12643 +12645 2 206.8798 346.3037 79.4032 0.1144 12644 +12646 2 205.8182 345.8804 79.4284 0.1144 12645 +12647 2 204.7554 345.456 79.4511 0.1144 12646 +12648 2 203.6926 345.0327 79.4738 0.1144 12647 +12649 2 202.6299 344.6094 79.4962 0.1144 12648 +12650 2 201.5671 344.1861 79.518 0.1144 12649 +12651 2 200.5043 343.7617 79.5396 0.1144 12650 +12652 2 199.4415 343.3384 79.56 0.1144 12651 +12653 2 198.3799 342.914 79.5796 0.1144 12652 +12654 2 197.3171 342.4907 79.5978 0.1144 12653 +12655 2 196.2543 342.0674 79.6138 0.1144 12654 +12656 2 195.1916 341.6442 79.627 0.1144 12655 +12657 2 194.1288 341.2197 79.6359 0.1144 12656 +12658 2 193.066 340.7965 79.6393 0.1144 12657 +12659 2 192.0044 340.372 79.6348 0.1144 12658 +12660 2 190.9416 339.9488 79.6188 0.1144 12659 +12661 2 189.8788 339.5243 79.5866 0.1144 12660 +12662 2 188.8161 339.101 79.5329 0.1144 12661 +12663 2 187.7533 338.6778 79.4522 0.1144 12662 +12664 2 186.6916 338.2533 79.333 0.1144 12663 +12665 2 185.6529 337.8083 79.1308 0.1144 12664 +12666 2 184.6656 337.2844 78.8365 0.1144 12665 +12667 2 183.7047 336.7078 78.4812 0.1144 12666 +12668 2 182.7448 336.1312 78.0937 0.1144 12667 +12669 2 181.7141 335.7091 77.7076 0.1144 12668 +12670 2 180.6937 335.9928 77.3917 0.1144 12669 +12671 2 179.7052 336.5682 77.1677 0.1144 12670 +12672 2 178.7168 337.1437 77.0188 0.1144 12671 +12673 2 177.7284 337.7214 76.925 0.1144 12672 +12674 2 176.74 338.2968 76.8667 0.1144 12673 +12675 2 175.7527 338.8734 76.8278 0.1144 12674 +12676 2 174.7643 339.4488 76.7948 0.1144 12675 +12677 2 173.7759 340.0254 76.7637 0.1144 12676 +12678 2 172.7875 340.602 76.7354 0.1144 12677 +12679 2 171.8002 341.1786 76.7116 0.1144 12678 +12680 2 170.8118 341.754 76.6937 0.1144 12679 +12681 2 169.8234 342.3306 76.6844 0.1144 12680 +12682 2 168.835 342.9071 76.6858 0.1144 12681 +12683 2 167.8477 343.4837 76.6998 0.1144 12682 +12684 2 166.9611 344.1953 76.7432 0.1144 12683 +12685 2 166.1763 345.0247 76.8247 0.1144 12684 +12686 2 165.4167 345.877 76.9398 0.1144 12685 +12687 2 164.6559 346.7281 77.0795 0.1144 12686 +12688 2 163.8952 347.5804 77.2372 0.1144 12687 +12689 2 163.1355 348.4327 77.4054 0.1144 12688 +12690 2 162.3496 349.2609 77.5793 0.1144 12689 +12691 2 161.3326 349.6853 77.7532 0.1144 12690 +12692 2 160.2172 349.9336 77.929 0.1144 12691 +12693 2 159.1007 350.183 78.1105 0.1144 12692 +12694 2 157.9853 350.4312 78.3012 0.1144 12693 +12695 2 156.9843 350.9369 78.5252 0.1144 12694 +12696 2 156.2143 351.7445 78.7998 0.1144 12695 +12697 2 155.5039 352.6151 79.1076 0.1144 12696 +12698 2 154.7935 353.4857 79.4245 0.1144 12697 +12699 2 154.0842 354.3563 79.7289 0.1144 12698 +12700 2 153.3967 355.2589 79.9753 0.1144 12699 +12701 2 152.8601 356.2302 80.0386 0.1144 12700 +12702 2 151.8923 356.6317 79.966 0.1144 12701 +12703 2 150.77 356.4361 79.849 0.1144 12702 +12704 2 149.6478 356.2153 79.7104 0.1144 12703 +12705 2 148.5255 355.9956 79.5682 0.1144 12704 +12706 2 147.4033 355.776 79.4374 0.1144 12705 +12707 2 146.281 355.5563 79.3229 0.1144 12706 +12708 2 145.1599 355.3356 79.21 0.1144 12707 +12709 2 144.0376 355.1159 79.0888 0.1144 12708 +12710 2 142.9153 354.8963 78.9606 0.1144 12709 +12711 2 141.7885 354.7109 78.8178 0.1144 12710 +12712 2 140.8676 355.2143 78.5394 0.1144 12711 +12713 2 139.8551 355.7451 78.3241 0.1144 12712 +12714 2 138.8416 356.2771 78.1684 0.1144 12713 +12715 2 137.8291 356.8079 78.0665 0.1144 12714 +12716 2 136.8155 357.3387 78.013 0.1144 12715 +12717 2 135.802 357.8707 78.0027 0.1144 12716 +12718 2 134.7895 358.4015 78.0293 0.1144 12717 +12719 2 133.7759 358.9323 78.0665 0.1144 12718 +12720 2 132.7623 359.4642 78.122 0.1144 12719 +12721 2 131.7499 359.9951 78.192 0.1144 12720 +12722 2 130.7821 360.6025 78.2925 0.1144 12721 +12723 2 129.8909 361.3072 78.4412 0.1144 12722 +12724 2 128.9997 362.0119 78.6192 0.1144 12723 +12725 2 128.1086 362.7166 79.0644 0.1144 12724 +12726 2 217.177 350.7138 77.8044 0.1144 12635 +12727 2 218.3198 350.7149 77.579 0.1144 12726 +12728 2 219.4638 350.7161 77.448 0.1144 12727 +12729 2 220.6078 350.7161 77.3637 0.1144 12728 +12730 2 221.7507 350.7172 77.2856 0.1144 12729 +12731 2 222.8947 350.7184 77.2122 0.1144 12730 +12732 2 224.0375 350.7195 77.1372 0.1144 12731 +12733 2 225.1815 350.7207 77.0622 0.1144 12732 +12734 2 226.3255 350.7218 76.9874 0.1144 12733 +12735 2 227.4684 350.7218 76.9124 0.1144 12734 +12736 2 228.6124 350.7229 76.8373 0.1144 12735 +12737 2 229.7564 350.7241 76.7626 0.1144 12736 +12738 2 230.8992 350.7252 76.6875 0.1144 12737 +12739 2 232.0432 350.7264 76.6125 0.1144 12738 +12740 2 233.1872 350.7275 76.5377 0.1144 12739 +12741 2 234.3301 350.7275 76.4627 0.1144 12740 +12742 2 235.4741 350.7287 76.3879 0.1144 12741 +12743 2 236.617 350.7298 76.3129 0.1144 12742 +12744 2 237.761 350.731 76.2381 0.1144 12743 +12745 2 238.905 350.7321 76.1634 0.1144 12744 +12746 2 240.0478 350.7332 76.0883 0.1144 12745 +12747 2 241.1918 350.7332 76.0138 0.1144 12746 +12748 2 242.3358 350.7344 75.9391 0.1144 12747 +12749 2 243.4787 350.7355 75.8643 0.1144 12748 +12750 2 244.6227 350.7367 75.7901 0.1144 12749 +12751 2 245.7667 350.7378 75.7159 0.1144 12750 +12752 2 246.9095 350.7378 75.642 0.1144 12751 +12753 2 248.0535 350.739 75.5686 0.1144 12752 +12754 2 249.1975 350.7401 75.4958 0.1144 12753 +12755 2 250.3404 350.7412 75.4239 0.1144 12754 +12756 2 251.4844 350.7424 75.353 0.1144 12755 +12757 2 252.6272 350.7435 75.2839 0.1144 12756 +12758 2 253.7712 350.7435 75.217 0.1144 12757 +12759 2 254.9152 350.7447 75.1534 0.1144 12758 +12760 2 256.0581 350.7458 75.0943 0.1144 12759 +12761 2 257.2021 350.747 75.0417 0.1144 12760 +12762 2 258.3461 350.7481 74.9972 0.1144 12761 +12763 2 259.4546 350.6108 74.965 0.1144 12762 +12764 2 260.3183 349.9107 74.9526 0.1144 12763 +12765 2 260.9338 348.9475 74.9638 0.1144 12764 +12766 2 261.5207 347.9648 75.0033 0.1144 12765 +12767 2 262.1087 346.9855 75.08 0.1144 12766 +12768 2 262.6876 346.0005 75.1909 0.1144 12767 +12769 2 263.2664 345.0167 75.3273 0.1144 12768 +12770 2 263.8453 344.0317 75.4813 0.1144 12769 +12771 2 264.4242 343.0478 75.6462 0.1144 12770 +12772 2 265.0019 342.0629 75.8167 0.1144 12771 +12773 2 265.6174 341.1042 75.994 0.1144 12772 +12774 2 266.3003 340.1936 76.1832 0.1144 12773 +12775 2 266.9684 339.2726 76.3734 0.1144 12774 +12776 2 267.5919 338.3174 76.55 0.1144 12775 +12777 2 268.2005 337.3519 76.7077 0.1144 12776 +12778 2 268.8629 336.4275 76.8284 0.1144 12777 +12779 2 269.7049 335.6633 76.8947 0.1144 12778 +12780 2 270.6349 335.001 76.9202 0.1144 12779 +12781 2 271.5662 334.3386 76.9266 0.1144 12780 +12782 2 272.558 333.7986 76.9577 0.1144 12781 +12783 2 273.6334 333.4234 77.0543 0.1144 12782 +12784 2 274.7099 333.0504 77.2094 0.1144 12783 +12785 2 275.7852 332.6763 77.413 0.1144 12784 +12786 2 276.8617 332.3034 77.6499 0.1144 12785 +12787 2 277.9371 331.9293 77.9066 0.1144 12786 +12788 2 279.0136 331.5564 78.1707 0.1144 12787 +12789 2 280.0901 331.1823 78.4353 0.1144 12788 +12790 2 281.1655 330.8093 78.701 0.1144 12789 +12791 2 282.242 330.4352 78.9681 0.1144 12790 +12792 2 283.3173 330.0623 79.2372 0.1144 12791 +12793 2 284.3938 329.6882 79.5088 0.1144 12792 +12794 2 285.4692 329.3153 79.7843 0.1144 12793 +12795 2 286.5457 328.9412 80.0649 0.1144 12794 +12796 2 287.621 328.5682 80.353 0.1144 12795 +12797 2 288.6976 328.1942 80.6509 0.1144 12796 +12798 2 289.7729 327.8212 80.9637 0.1144 12797 +12799 2 290.8494 327.4471 81.2966 0.1144 12798 +12800 2 291.9259 327.0742 81.6572 0.1144 12799 +12801 2 293.0013 326.7001 82.0576 0.1144 12800 +12802 2 294.0778 326.3271 82.5045 0.1144 12801 +12803 2 295.0113 325.8009 83.053 0.1144 12802 +12804 2 295.8567 325.1088 83.6828 0.1144 12803 +12805 2 296.6426 324.944 84.4724 0.1144 12804 +12806 2 297.321 325.1957 85.4731 0.1144 12805 +12807 2 298.258 325.5824 86.4209 0.1144 12806 +12808 2 299.3619 325.8478 87.1811 0.1144 12807 +12809 2 300.4453 325.5641 87.7643 0.1144 12808 +12810 2 301.4806 325.0802 88.2098 0.1144 12809 +12811 2 302.5045 324.57 88.5539 0.1144 12810 +12812 2 303.3316 324.1432 89.052 0.1144 12811 +12813 2 304.0889 323.3676 89.5885 0.1144 12812 +12814 2 304.7982 322.592 90.209 0.1144 12813 +12815 2 305.3954 321.6299 90.7301 0.1144 12814 +12816 2 306.4501 321.3816 91.2103 0.1144 12815 +12817 2 307.5484 321.0682 91.5771 0.1144 12816 +12818 2 308.1982 320.1381 91.8582 0.1144 12817 +12819 2 308.8388 319.1943 92.094 0.1144 12818 +12820 2 309.4783 318.2494 92.3014 0.1144 12819 +12821 2 310.119 317.3056 92.5053 0.1144 12820 +12822 2 310.7584 316.3606 92.703 0.1144 12821 +12823 2 311.3979 315.4168 92.9009 0.1144 12822 +12824 2 312.0374 314.4719 93.0941 0.1144 12823 +12825 2 312.6769 313.5269 93.2814 0.1144 12824 +12826 2 313.3176 312.5831 93.4623 0.1144 12825 +12827 2 314.0074 311.6725 93.6331 0.1144 12826 +12828 2 314.934 311.0044 93.7712 0.1144 12827 +12829 2 315.8653 310.3397 93.8904 0.1144 12828 +12830 2 316.7965 309.6751 94.0075 0.1144 12829 +12831 2 317.5733 308.8354 94.1374 0.1144 12830 +12832 2 318.3409 307.9877 94.295 0.1144 12831 +12833 2 319.1085 307.1388 94.4885 0.1144 12832 +12834 2 319.144 306.0497 94.8394 0.1144 12833 +12835 2 319.1257 304.9607 95.3114 0.1144 12834 +12836 2 319.1085 303.8727 95.8628 0.1144 12835 +12837 2 319.0913 302.7836 96.4541 0.1144 12836 +12838 2 318.5182 302.8122 96.9472 0.1144 12837 +12839 2 317.3811 302.8706 97.365 0.1144 12838 +12840 2 316.2428 302.9289 97.7066 0.1144 12839 +12841 2 315.1056 302.9873 97.991 0.1144 12840 +12842 2 313.9685 303.0456 98.2366 0.1144 12841 +12843 2 312.8314 303.1028 98.4575 0.1144 12842 +12844 2 311.6942 303.1611 98.6661 0.1144 12843 +12845 2 310.5571 303.2195 98.8537 0.1144 12844 +12846 2 309.42 303.303 99.0144 0.1144 12845 +12847 2 308.5059 303.9883 99.1071 0.1144 12846 +12848 2 307.593 304.6769 99.1402 0.1144 12847 +12849 2 306.6801 305.3668 99.122 0.1144 12848 +12850 2 305.7992 306.0955 99.0444 0.1144 12849 +12851 2 304.9687 306.8734 98.898 0.1144 12850 +12852 2 304.1381 307.6513 98.7042 0.1144 12851 +12853 2 303.3087 308.4304 98.4833 0.1144 12852 +12854 2 302.731 309.412 98.2492 0.1144 12853 +12855 2 302.1716 310.4038 98.0137 0.1144 12854 +12856 2 301.6122 311.3945 97.79 0.1144 12855 +12857 2 301.0528 312.3864 97.5867 0.1144 12856 +12858 2 300.4933 313.3782 97.4103 0.1144 12857 +12859 2 299.9351 314.3712 97.2684 0.1144 12858 +12860 2 299.4271 315.3951 97.1964 0.1144 12859 +12861 2 298.9398 316.4304 97.2014 0.1144 12860 +12862 2 298.2751 315.5026 97.4817 0.1144 12861 +12863 2 297.6185 314.5851 97.7844 0.1144 12862 +12864 2 296.9618 313.6676 98.1562 0.1144 12863 +12865 2 296.3063 312.7502 98.5701 0.1144 12864 +12866 2 295.6496 311.8338 99.0058 0.1144 12865 +12867 2 294.993 310.9163 99.4462 0.1144 12866 +12868 2 294.3363 310.0 99.8743 0.1144 12867 +12869 2 293.6797 309.0825 100.2859 0.1144 12868 +12870 2 293.023 308.1661 100.6757 0.1144 12869 +12871 2 292.3675 307.2487 101.0394 0.1144 12870 +12872 2 291.6822 306.3415 101.3522 0.1144 12871 +12873 2 290.9547 305.4606 101.5804 0.1144 12872 +12874 2 290.2362 304.5706 101.7372 0.1144 12873 +12875 2 289.5453 303.6588 101.8438 0.1144 12874 +12876 2 288.8577 302.7436 101.9217 0.1144 12875 +12877 2 288.1702 301.8295 101.9928 0.1144 12876 +12878 2 287.4826 300.9155 102.0774 0.1144 12877 +12879 2 286.7951 300.0003 102.1891 0.1144 12878 +12880 2 286.1087 299.0862 102.333 0.1144 12879 +12881 2 285.4795 299.7326 102.5864 0.1144 12880 +12882 2 284.9452 300.713 102.9333 0.1144 12881 +12883 2 284.3584 301.6636 103.3435 0.1144 12882 +12884 2 283.4489 302.326 103.7742 0.1144 12883 +12885 2 282.5337 302.9827 104.207 0.1144 12884 +12886 2 281.7443 303.8041 104.592 0.1144 12885 +12887 2 280.9893 304.6609 104.9208 0.1144 12886 +12888 2 280.2354 305.5178 105.2117 0.1144 12887 +12889 2 279.4815 306.3746 105.4858 0.1144 12888 +12890 2 278.7264 307.2315 105.7624 0.1144 12889 +12891 2 277.9726 308.0884 106.0534 0.1144 12890 +12892 2 277.3822 309.0447 106.4151 0.1144 12891 +12893 2 277.0631 309.2907 106.8189 0.1144 12892 +12894 2 276.2348 309.9268 107.3495 0.1144 12893 +12895 2 275.4969 310.7413 107.9067 0.1144 12894 +12896 2 274.9341 311.732 108.3866 0.1144 12895 +12897 2 274.3701 312.7227 108.792 0.1144 12896 +12898 2 273.8072 313.7145 109.1275 0.1144 12897 +12899 2 273.2433 314.7052 109.4058 0.1144 12898 +12900 2 272.6804 315.696 109.6371 0.1144 12899 +12901 2 272.1176 316.6878 109.8462 0.1144 12900 +12902 2 271.5547 317.6796 110.0462 0.1144 12901 +12903 2 270.9907 318.6704 110.2352 0.1144 12902 +12904 2 270.4279 319.6611 110.4107 0.1144 12903 +12905 2 269.9154 320.6838 110.5496 0.1144 12904 +12906 2 269.4269 321.7191 110.6487 0.1144 12905 +12907 2 268.9384 322.7533 110.7193 0.1144 12906 +12908 2 268.4488 323.7875 110.7714 0.1144 12907 +12909 2 267.8138 324.7381 110.8243 0.1144 12908 +12910 2 267.1755 325.6865 110.8836 0.1144 12909 +12911 2 266.5383 326.636 110.9536 0.1144 12910 +12912 2 265.8999 327.5855 111.0348 0.1144 12911 +12913 2 265.2627 328.5351 111.1261 0.1144 12912 +12914 2 264.6244 329.4846 111.2278 0.1144 12913 +12915 2 263.9872 330.433 111.3412 0.1144 12914 +12916 2 263.3488 331.3825 111.4688 0.1144 12915 +12917 2 262.7116 332.332 111.6136 0.1144 12916 +12918 2 262.2071 332.5688 111.3479 0.1144 12917 +12919 2 261.1718 333.0539 111.3479 0.1144 12918 +12920 2 260.1353 333.5401 111.3479 0.1144 12919 +12921 2 259.1 334.0251 111.3479 0.1144 12920 +12922 2 258.0647 334.5113 111.3479 0.1144 12921 +12923 2 257.0282 334.9964 111.3479 0.1144 12922 +12924 2 263.581 332.1924 111.8037 0.1144 12917 +12925 2 264.7022 332.0128 112.0426 0.1144 12924 +12926 2 265.8233 331.8332 112.3195 0.1144 12925 +12927 2 266.9455 331.6536 112.6238 0.1144 12926 +12928 2 268.0667 331.474 112.9464 0.1144 12927 +12929 2 269.1878 331.2944 113.2785 0.1144 12928 +12930 2 270.31 331.1148 113.6125 0.1144 12929 +12931 2 271.4312 330.9352 113.9466 0.1144 12930 +12932 2 272.5523 330.7556 114.28 0.1144 12931 +12933 2 273.6745 330.576 114.6135 0.1144 12932 +12934 2 274.7957 330.3964 114.9462 0.1144 12933 +12935 2 275.9168 330.2167 115.2782 0.1144 12934 +12936 2 277.039 330.0371 115.6092 0.1144 12935 +12937 2 278.1602 329.8575 115.9388 0.1144 12936 +12938 2 279.2813 329.6779 116.2664 0.1144 12937 +12939 2 280.4036 329.4983 116.5914 0.1144 12938 +12940 2 281.5247 329.3187 116.9123 0.1144 12939 +12941 2 282.6469 329.1391 117.2282 0.1144 12940 +12942 2 283.7681 328.9595 117.5367 0.1144 12941 +12943 2 284.8892 328.7799 117.8344 0.1144 12942 +12944 2 286.0114 328.6003 118.1169 0.1144 12943 +12945 2 287.1326 328.4207 118.3795 0.1144 12944 +12946 2 288.2537 328.2388 118.6184 0.1144 12945 +12947 2 289.3428 327.9631 118.816 0.1144 12946 +12948 2 290.3266 327.3796 118.9308 0.1144 12947 +12949 2 291.3104 326.7962 118.9807 0.1144 12948 +12950 2 292.2931 326.2116 118.9838 0.1144 12949 +12951 2 293.277 325.6282 118.9577 0.1144 12950 +12952 2 294.2597 325.0447 118.9185 0.1144 12951 +12953 2 295.2435 324.4613 118.8818 0.1144 12952 +12954 2 295.8418 323.8012 118.8617 0.1144 12953 +12955 2 295.0342 323.0095 118.8698 0.1144 12954 +12956 2 294.1098 322.3346 118.9084 0.1144 12955 +12957 2 293.1855 321.6608 118.977 0.1144 12956 +12958 2 292.7336 320.7467 119.0994 0.1144 12957 +12959 2 292.8972 319.6325 119.2918 0.1144 12958 +12960 2 293.1614 318.5296 119.5365 0.1144 12959 +12961 2 293.4246 317.4268 119.8128 0.1144 12960 +12962 2 293.6888 316.3252 120.1007 0.1144 12961 +12963 2 293.9531 315.2223 120.3821 0.1144 12962 +12964 2 294.2162 314.1195 120.6416 0.1144 12963 +12965 2 294.4976 313.0167 120.8511 0.1144 12964 +12966 2 294.8271 311.9276 120.9566 0.1144 12965 +12967 2 295.0822 310.8179 120.9779 0.1144 12966 +12968 2 295.2138 309.6831 120.9625 0.1144 12967 +12969 2 295.3099 308.5437 120.9236 0.1144 12968 +12970 2 295.406 307.4054 120.8606 0.1144 12969 +12971 2 295.5009 306.266 120.773 0.1144 12970 +12972 2 295.597 305.1265 120.6576 0.1144 12971 +12973 2 295.3774 304.0855 120.3969 0.1144 12972 +12974 2 294.707 303.2515 119.9985 0.1144 12973 +12975 2 293.8753 302.5102 119.5261 0.1144 12974 +12976 2 293.0345 301.7758 119.0146 0.1144 12975 +12977 2 292.1948 301.0425 118.498 0.1144 12976 +12978 2 291.3551 300.308 118.0127 0.1144 12977 +12979 2 290.5142 299.5736 117.5936 0.1144 12978 +12980 2 289.6745 298.8403 117.2539 0.1144 12979 +12981 2 288.8348 298.1058 117.0005 0.1144 12980 +12982 2 287.827 298.0006 116.9678 0.1144 12981 +12983 2 286.8328 298.4067 117.2125 0.1144 12982 +12984 2 285.8627 298.8608 117.6745 0.1144 12983 +12985 2 284.8503 299.3322 118.2314 0.1144 12984 +12986 2 283.8253 299.8092 118.8228 0.1144 12985 +12987 2 282.8609 300.3915 119.4273 0.1144 12986 +12988 2 282.3415 301.3548 120.0394 0.1144 12987 +12989 2 281.8988 302.3809 120.6556 0.1144 12988 +12990 2 281.4549 303.4071 121.2803 0.1144 12989 +12991 2 280.9286 304.3509 121.9574 0.1144 12990 +12992 2 280.3029 305.1414 122.7181 0.1144 12991 +12993 2 279.6634 305.9102 123.5212 0.1144 12992 +12994 2 278.6544 305.7134 124.2262 0.1144 12993 +12995 2 277.6019 305.2741 124.7366 0.1144 12994 +12996 2 276.4842 305.0453 125.0718 0.1144 12995 +12997 2 275.3745 305.3004 125.2636 0.1144 12996 +12998 2 274.3884 305.8747 125.3487 0.1144 12997 +12999 2 273.5064 306.6023 125.372 0.1144 12998 +13000 2 272.7548 307.4637 125.3736 0.1144 12999 +13001 2 271.9814 308.3069 125.3736 0.1144 13000 +13002 2 271.1017 309.0379 125.3736 0.1144 13001 +13003 2 269.9611 308.9578 125.3736 0.1144 13002 +13004 2 268.8194 308.8777 125.3736 0.1144 13003 +13005 2 277.4292 309.7918 105.3553 0.1144 12892 +13006 2 277.4955 310.834 104.7634 0.1144 13005 +13007 2 276.522 311.0605 104.5307 0.1144 13006 +13008 2 275.3791 311.0056 104.3686 0.1144 13007 +13009 2 274.2374 310.9335 104.2765 0.1144 13008 +13010 2 273.289 310.2974 104.2765 0.1144 13009 +13011 2 272.3406 309.6625 104.3557 0.1144 13010 +13012 2 271.3934 309.0264 104.501 0.1144 13011 +13013 2 270.445 308.3904 104.6718 0.1144 13012 +13014 2 269.4967 307.7554 104.8533 0.1144 13013 +13015 2 268.5483 307.1194 105.0389 0.1144 13014 +13016 2 267.601 306.4845 105.224 0.1144 13015 +13017 2 266.6527 305.8484 105.408 0.1144 13016 +13018 2 265.7043 305.2135 105.5905 0.1144 13017 +13019 2 264.7559 304.5774 105.7706 0.1144 13018 +13020 2 263.8075 303.9425 105.9475 0.1144 13019 +13021 2 262.8603 303.3064 106.12 0.1144 13020 +13022 2 261.9119 302.6715 106.2869 0.1144 13021 +13023 2 260.9636 302.0354 106.4448 0.1144 13022 +13024 2 260.0152 301.4005 106.5901 0.1144 13023 +13025 2 259.068 300.7645 106.7186 0.1144 13024 +13026 2 258.1196 300.1295 106.8267 0.1144 13025 +13027 2 257.1712 299.4935 106.9104 0.1144 13026 +13028 2 257.1094 299.5209 107.3016 0.1144 13027 +13029 2 256.0604 299.9785 107.3016 0.1144 13028 +13030 2 255.0125 300.4373 107.3016 0.1144 13029 +13031 2 253.9646 300.8949 107.3016 0.1144 13030 +13032 2 252.9155 301.3536 107.3016 0.1144 13031 +13033 2 251.8676 301.8112 107.3016 0.1144 13032 +13034 2 250.8197 302.27 107.3016 0.1144 13033 +13035 2 249.7707 302.7276 107.3016 0.1144 13034 +13036 2 248.7228 303.1863 107.3016 0.1144 13035 +13037 2 247.6749 303.6439 107.3016 0.1144 13036 +13038 2 246.627 304.1027 107.3016 0.1144 13037 +13039 2 245.5779 304.5603 107.3016 0.1144 13038 +13040 2 244.53 305.019 107.3016 0.1144 13039 +13041 2 243.4821 305.4766 107.3016 0.1144 13040 +13042 2 242.433 305.9353 107.3016 0.1144 13041 +13043 2 241.3851 306.3929 107.3016 0.1144 13042 +13044 2 256.3384 298.7945 106.9177 0.1144 13027 +13045 2 255.4632 298.06 106.8626 0.1144 13044 +13046 2 254.588 297.3267 106.7592 0.1144 13045 +13047 2 253.714 296.5923 106.622 0.1144 13046 +13048 2 252.8389 295.8578 106.4636 0.1144 13047 +13049 2 251.9649 295.1245 106.295 0.1144 13048 +13050 2 251.0897 294.3901 106.127 0.1144 13049 +13051 2 250.2145 293.6556 105.9596 0.1144 13050 +13052 2 249.3405 292.9223 105.7932 0.1144 13051 +13053 2 248.4654 292.1879 105.628 0.1144 13052 +13054 2 247.5913 291.4546 105.4648 0.1144 13053 +13055 2 246.7162 290.7201 105.3044 0.1144 13054 +13056 2 245.841 289.9857 105.1476 0.1144 13055 +13057 2 244.967 289.2524 104.9961 0.1144 13056 +13058 2 244.0918 288.5179 104.8513 0.1144 13057 +13059 2 243.2178 287.7835 104.7169 0.1144 13058 +13060 2 242.3427 287.0502 104.5976 0.1144 13059 +13061 2 241.4675 286.3157 104.4982 0.1144 13060 +13062 2 240.5935 285.5824 104.4235 0.1144 13061 +13063 2 239.7183 284.848 104.375 0.1144 13062 +13064 2 238.9107 285.5813 104.6167 0.1144 13063 +13065 2 238.0916 286.3238 105.2187 0.1144 13064 +13066 2 237.2725 287.0674 105.5071 0.1144 13065 +13067 2 236.4591 287.8704 105.7543 0.1144 13066 +13068 2 235.6503 288.6804 105.9394 0.1144 13067 +13069 2 234.8426 289.4903 106.0665 0.1144 13068 +13070 2 234.0349 290.3003 106.141 0.1144 13069 +13071 2 233.3508 291.2166 106.1684 0.1144 13070 +13072 2 232.6953 292.1536 106.1721 0.1144 13071 +13073 2 232.0398 293.0917 106.1721 0.1144 13072 +13074 2 231.3832 294.0286 106.1721 0.1144 13073 +13075 2 230.6464 294.9038 106.1721 0.1144 13074 +13076 2 229.8468 295.7217 106.1721 0.1144 13075 +13077 2 229.0471 296.5397 106.1721 0.1144 13076 +13078 2 228.2474 297.3588 106.1721 0.1144 13077 +13079 2 227.4489 298.1767 106.1721 0.1144 13078 +13080 2 226.6493 298.9947 106.1721 0.1144 13079 +13081 2 225.7844 299.744 106.1721 0.1144 13080 +13082 2 224.82 300.3595 106.1721 0.1144 13081 +13083 2 223.8625 300.9853 106.1721 0.1144 13082 +13084 2 223.1795 301.9027 106.1721 0.1144 13083 +13085 2 222.4966 302.8202 106.1721 0.1144 13084 +13086 2 221.8136 303.7377 106.1721 0.1144 13085 +13087 2 221.1306 304.6564 106.1721 0.1144 13086 +13088 2 220.4477 305.5738 106.1721 0.1144 13087 +13089 2 239.9803 284.0117 104.4187 0.1144 13063 +13090 2 240.3212 282.9295 104.5439 0.1144 13089 +13091 2 240.661 281.8473 104.7262 0.1144 13090 +13092 2 240.947 280.7422 104.9191 0.1144 13091 +13093 2 241.2032 279.6279 105.0974 0.1144 13092 +13094 2 241.4595 278.5137 105.2542 0.1144 13093 +13095 2 241.7135 277.3994 105.385 0.1144 13094 +13096 2 241.9686 276.284 105.4967 0.1144 13095 +13097 2 242.2237 275.1698 105.5981 0.1144 13096 +13098 2 242.4788 274.0555 105.6966 0.1144 13097 +13099 2 242.7339 272.9412 105.7949 0.1144 13098 +13100 2 242.9879 271.8258 105.8929 0.1144 13099 +13101 2 243.243 270.7116 105.9906 0.1144 13100 +13102 2 243.4981 269.5973 106.0878 0.1144 13101 +13103 2 243.7532 268.4831 106.1844 0.1144 13102 +13104 2 244.0095 267.3688 106.2802 0.1144 13103 +13105 2 244.2634 266.2546 106.3745 0.1144 13104 +13106 2 244.5186 265.1392 106.4672 0.1144 13105 +13107 2 244.7737 264.0249 106.5574 0.1144 13106 +13108 2 245.0288 262.9106 106.6442 0.1144 13107 +13109 2 245.2839 261.7964 106.7265 0.1144 13108 +13110 2 245.539 260.6821 106.8018 0.1144 13109 +13111 2 245.793 259.5667 106.867 0.1144 13110 +13112 2 246.0481 258.4525 106.9194 0.1144 13111 +13113 2 246.3032 257.3382 106.9552 0.1144 13112 +13114 2 246.5595 256.224 106.9712 0.1144 13113 +13115 2 247.35 255.4106 106.9323 0.1144 13114 +13116 2 248.2526 254.7127 106.8393 0.1144 13115 +13117 2 249.1563 254.0149 106.7038 0.1144 13116 +13118 2 250.059 253.3171 106.5369 0.1144 13117 +13119 2 250.9627 252.6204 106.3493 0.1144 13118 +13120 2 251.8665 251.9225 106.1528 0.1144 13119 +13121 2 252.5506 251.0165 105.9391 0.1144 13120 +13122 2 253.2175 250.0967 105.7179 0.1144 13121 +13123 2 253.8845 249.1769 105.499 0.1144 13122 +13124 2 254.4119 248.1645 105.315 0.1144 13123 +13125 2 254.8054 247.0903 105.187 0.1144 13124 +13126 2 255.1978 246.0149 105.1058 0.1144 13125 +13127 2 255.5902 244.9407 105.0428 0.1144 13126 +13128 2 299.0702 316.8891 96.7263 0.1144 12861 +13129 2 299.3573 317.9965 96.621 0.1144 13128 +13130 2 299.442 319.1348 96.5804 0.1144 13129 +13131 2 299.0427 320.1964 96.5146 0.1144 13130 +13132 2 298.5989 321.2489 96.4278 0.1144 13131 +13133 2 298.155 322.3026 96.3245 0.1144 13132 +13134 2 297.7111 323.3562 96.21 0.1144 13133 +13135 2 297.2684 324.4087 96.0884 0.1144 13134 +13136 2 296.8245 325.4623 95.9638 0.1144 13135 +13137 2 296.3807 326.5159 95.8392 0.1144 13136 +13138 2 295.9368 327.5684 95.7149 0.1144 13137 +13139 2 295.4941 328.622 95.5912 0.1144 13138 +13140 2 295.0502 329.6756 95.468 0.1144 13139 +13141 2 294.6063 330.7281 95.3456 0.1144 13140 +13142 2 294.1624 331.7817 95.2244 0.1144 13141 +13143 2 293.7186 332.8354 95.1048 0.1144 13142 +13144 2 293.2758 333.8878 94.9878 0.1144 13143 +13145 2 292.832 334.9415 94.8741 0.1144 13144 +13146 2 292.3881 335.9951 94.7649 0.1144 13145 +13147 2 291.9442 337.0476 94.6607 0.1144 13146 +13148 2 291.5678 338.1275 94.5655 0.1144 13147 +13149 2 291.3997 339.2566 94.4899 0.1144 13148 +13150 2 291.1457 340.372 94.4292 0.1144 13149 +13151 2 290.9638 341.5012 94.3779 0.1144 13150 +13152 2 290.7888 342.6314 94.3323 0.1144 13151 +13153 2 290.4627 343.7182 94.2416 0.1144 13152 +13154 2 290.2671 344.8405 94.1352 0.1144 13153 +13155 2 289.9994 345.9525 94.05 0.1144 13154 +13156 2 289.7226 347.0621 93.9873 0.1144 13155 +13157 2 289.2146 348.086 93.9453 0.1144 13156 +13158 2 288.5294 349.0012 93.9218 0.1144 13157 +13159 2 288.0569 350.0423 93.9148 0.1144 13158 +13160 2 287.4174 350.9906 93.9145 0.1144 13159 +13161 2 286.556 351.7434 93.9145 0.1144 13160 +13162 2 285.698 352.5007 93.9145 0.1144 13161 +13163 2 284.7553 353.1482 93.9145 0.1144 13162 +13164 2 283.7097 353.6127 93.9145 0.1144 13163 +13165 2 319.6725 302.5411 97.0634 0.1144 12837 +13166 2 320.7273 302.1007 96.8582 0.1144 13165 +13167 2 321.7809 301.6602 96.7711 0.1144 13166 +13168 2 322.8357 301.2198 96.6658 0.1144 13167 +13169 2 323.8904 300.7793 96.5504 0.1144 13168 +13170 2 324.9452 300.34 96.4323 0.1144 13169 +13171 2 326.0 299.8996 96.3178 0.1144 13170 +13172 2 327.0536 299.4592 96.2122 0.1144 13171 +13173 2 328.1084 299.0187 96.0067 0.1144 13172 +13174 2 291.4866 333.5446 58.9702 0.1144 12469 +13175 2 290.3975 333.1992 58.8372 0.1144 13174 +13176 2 289.3084 332.8548 58.7765 0.1144 13175 +13177 2 288.2205 332.5093 58.7101 0.1144 13176 +13178 2 287.1154 332.7953 58.6701 0.1144 13177 +13179 2 286.1453 333.4005 58.6592 0.1144 13178 +13180 2 285.3353 334.2082 58.6807 0.1144 13179 +13181 2 284.5689 335.0582 58.7376 0.1144 13180 +13182 2 283.8047 335.9104 58.828 0.1144 13181 +13183 2 282.9776 336.6998 58.9467 0.1144 13182 +13184 2 282.2305 337.3988 59.1682 0.1144 13183 +13185 2 281.4137 338.1595 59.4686 0.1144 13184 +13186 2 280.598 338.9214 59.8158 0.1144 13185 +13187 2 279.8041 339.7245 60.1558 0.1144 13186 +13188 2 279.0777 340.6077 60.4089 0.1144 13187 +13189 2 278.2197 341.365 60.5805 0.1144 13188 +13190 2 277.3937 342.1555 60.6774 0.1144 13189 +13191 2 276.6867 343.0547 60.7219 0.1144 13190 +13192 2 276.1227 344.05 60.7348 0.1144 13191 +13193 2 275.5999 345.067 60.7351 0.1144 13192 +13194 2 275.0119 346.0486 60.7351 0.1144 13193 +13195 2 274.25 346.9008 60.7351 0.1144 13194 +13196 2 273.464 347.7325 60.7351 0.1144 13195 +13197 2 262.453 292.4567 60.9927 0.1144 12414 +13198 2 262.2574 293.5836 60.9997 0.1144 13197 +13199 2 262.0618 294.7104 61.0025 0.1144 13198 +13200 2 261.8662 295.8384 61.0067 0.1144 13199 +13201 2 261.6694 296.9652 61.012 0.1144 13200 +13202 2 261.4738 298.0921 61.0198 0.1144 13201 +13203 2 261.2782 299.2189 61.0308 0.1144 13202 +13204 2 261.0825 300.3458 61.0459 0.1144 13203 +13205 2 260.8869 301.4737 61.0669 0.1144 13204 +13206 2 260.6901 302.6006 61.0963 0.1144 13205 +13207 2 260.4945 303.7274 61.1383 0.1144 13206 +13208 2 260.2989 304.8543 61.1971 0.1144 13207 +13209 2 260.1033 305.9822 61.2763 0.1144 13208 +13210 2 259.9076 307.1091 61.3785 0.1144 13209 +13211 2 259.1457 307.9396 61.5527 0.1144 13210 +13212 2 258.1756 308.5139 61.7999 0.1144 13211 +13213 2 257.2067 309.0882 62.0934 0.1144 13212 +13214 2 256.2377 309.6625 62.4092 0.1144 13213 +13215 2 255.271 310.2436 62.7197 0.1144 13214 +13216 2 254.357 310.9312 62.942 0.1144 13215 +13217 2 253.4429 311.6187 63.0823 0.1144 13216 +13218 2 252.5288 312.3063 63.1554 0.1144 13217 +13219 2 251.6136 312.9938 63.1789 0.1144 13218 +13220 2 250.695 313.6745 63.1674 0.1144 13219 +13221 2 249.6997 314.2385 63.1338 0.1144 13220 +13222 2 248.6736 314.743 63.0879 0.1144 13221 +13223 2 247.6463 315.2475 63.0227 0.1144 13222 +13224 2 246.6189 315.7509 62.9286 0.1144 13223 +13225 2 245.5928 316.2565 62.7992 0.1144 13224 +13226 2 244.5735 316.7759 62.6284 0.1144 13225 +13227 2 243.5748 317.325 62.4042 0.1144 13226 +13228 2 242.6893 317.9084 61.9993 0.1144 13227 +13229 2 242.0967 318.6795 61.4258 0.1144 13228 +13230 2 241.5785 319.6771 60.8877 0.1144 13229 +13231 2 241.0694 320.598 60.2756 0.1144 13230 +13232 2 240.6381 321.5532 59.6652 0.1144 13231 +13233 2 240.6004 322.6343 59.2206 0.1144 13232 +13234 2 241.1438 323.641 58.9246 0.1144 13233 +13235 2 241.6597 324.6592 58.7353 0.1144 13234 +13236 2 241.8084 325.7334 58.6068 0.1144 13235 +13237 2 241.4469 326.8191 58.5214 0.1144 13236 +13238 2 241.0797 327.9024 58.4438 0.1144 13237 +13239 2 240.5969 328.9194 58.3324 0.1144 13238 +13240 2 239.7446 329.5807 58.1342 0.1144 13239 +13241 2 238.9244 330.235 57.8813 0.1144 13240 +13242 2 238.4027 331.2532 57.6484 0.1144 13241 +13243 2 237.8788 332.2679 57.4356 0.1144 13242 +13244 2 237.364 333.2884 57.2351 0.1144 13243 +13245 2 236.9098 334.334 57.0172 0.1144 13244 +13246 2 236.3984 335.3304 56.7328 0.1144 13245 +13247 2 235.7738 336.2536 56.3755 0.1144 13246 +13248 2 235.0943 337.1494 55.9717 0.1144 13247 +13249 2 234.4193 338.052 55.5461 0.1144 13248 +13250 2 233.7684 338.9832 55.1496 0.1144 13249 +13251 2 233.225 339.9796 54.7854 0.1144 13250 +13252 2 232.7216 340.9967 54.4244 0.1144 13251 +13253 2 232.1302 341.9691 54.0711 0.1144 13252 +13254 2 231.4941 342.9151 53.72 0.1144 13253 +13255 2 231.1052 343.8349 53.2532 0.1144 13254 +13256 2 230.9759 344.8554 52.7285 0.1144 13255 +13257 2 231.4701 345.6447 52.2995 0.1144 13256 +13258 2 231.9792 346.4936 51.8185 0.1144 13257 +13259 2 231.7458 347.4946 51.333 0.1144 13258 +13260 2 231.3065 348.5116 50.9505 0.1144 13259 +13261 2 230.643 349.4154 50.715 0.1144 13260 +13262 2 230.5629 349.1442 50.7797 0.1144 13261 +13263 2 230.3227 348.3194 51.2568 0.1144 13262 +13264 2 230.3044 347.3447 51.9722 0.1144 13263 +13265 2 229.8685 346.3815 52.6952 0.1144 13264 +13266 2 228.9316 345.8895 53.4089 0.1144 13265 +13267 2 227.8722 346.0017 54.0806 0.1144 13266 +13268 2 226.7625 346.0703 54.644 0.1144 13267 +13269 2 225.7718 345.5486 55.0362 0.1144 13268 +13270 2 224.6942 345.1837 55.309 0.1144 13269 +13271 2 223.5754 345.3301 55.5089 0.1144 13270 +13272 2 222.4657 345.6047 55.6545 0.1144 13271 +13273 2 221.3983 345.9696 55.83 0.1144 13272 +13274 2 220.49 346.5382 56.1081 0.1144 13273 +13275 2 219.7464 347.3973 56.3301 0.1144 13274 +13276 2 219.0119 348.2748 56.4866 0.1144 13275 +13277 2 218.2775 349.1511 56.5793 0.1144 13276 +13278 2 217.455 349.9462 56.6112 0.1144 13277 +13279 2 216.645 350.7538 56.5838 0.1144 13278 +13280 2 215.9014 351.6233 56.4878 0.1144 13279 +13281 2 215.3672 352.6334 56.3578 0.1144 13280 +13282 2 214.6647 353.5349 56.2033 0.1144 13281 +13283 2 213.7987 354.2808 56.0314 0.1144 13282 +13284 2 212.9133 354.9706 55.7732 0.1144 13283 +13285 2 212.2074 355.5323 54.5493 0.1144 13284 +13286 2 254.7059 282.3495 60.9367 0.1144 12403 +13287 2 253.8856 283.0725 60.4366 0.1144 13286 +13288 2 253.0471 283.8481 60.2574 0.1144 13287 +13289 2 252.3447 284.7496 60.0972 0.1144 13288 +13290 2 251.6148 285.6225 59.9119 0.1144 13289 +13291 2 250.9284 286.5308 59.717 0.1144 13290 +13292 2 250.3713 287.5295 59.5552 0.1144 13291 +13293 2 249.6517 288.4161 59.4129 0.1144 13292 +13294 2 248.9024 289.2718 59.2337 0.1144 13293 +13295 2 248.0787 290.0612 59.0486 0.1144 13294 +13296 2 247.4918 291.0416 58.8848 0.1144 13295 +13297 2 246.4897 291.5781 58.6947 0.1144 13296 +13298 2 245.4692 292.0838 58.4791 0.1144 13297 +13299 2 244.4488 292.5883 58.2467 0.1144 13298 +13300 2 243.4272 293.0939 58.0042 0.1144 13299 +13301 2 242.4067 293.5984 57.752 0.1144 13300 +13302 2 241.3863 294.1041 57.4935 0.1144 13301 +13303 2 240.3658 294.6109 57.2373 0.1144 13302 +13304 2 239.3454 295.1165 56.9845 0.1144 13303 +13305 2 238.3249 295.6222 56.7356 0.1144 13304 +13306 2 237.3045 296.1278 56.4934 0.1144 13305 +13307 2 236.284 296.6335 56.2601 0.1144 13306 +13308 2 235.2625 297.1368 56.0395 0.1144 13307 +13309 2 234.242 297.6425 55.8337 0.1144 13308 +13310 2 233.2216 298.1481 55.6455 0.1144 13309 +13311 2 232.5352 299.0622 55.5128 0.1144 13310 +13312 2 231.8716 299.9946 55.4271 0.1144 13311 +13313 2 231.2093 300.9269 55.377 0.1144 13312 +13314 2 230.5457 301.8593 55.3451 0.1144 13313 +13315 2 263.223 378.7853 21.9762 0.1144 10962 +13316 2 264.2651 378.41 22.8041 0.1144 13315 +13317 2 265.3016 377.9559 23.1393 0.1144 13316 +13318 2 266.3083 377.4639 23.5458 0.1144 13317 +13319 2 267.4031 377.139 23.9434 0.1144 13318 +13320 2 268.4888 376.8828 24.3895 0.1144 13319 +13321 2 269.5847 377.043 24.8446 0.1144 13320 +13322 2 270.532 377.2191 25.3556 0.1144 13321 +13323 2 271.1612 376.4263 25.8269 0.1144 13322 +13324 2 270.9701 376.1232 26.2385 0.1144 13323 +13325 2 270.3295 377.0441 26.4533 0.1144 13324 +13326 2 269.8147 378.0611 26.5759 0.1144 13325 +13327 2 269.3296 379.0964 26.6597 0.1144 13326 +13328 2 268.6776 380.0322 26.7298 0.1144 13327 +13329 2 268.0186 380.9634 26.8071 0.1144 13328 +13330 2 267.4226 381.9393 26.8701 0.1144 13329 +13331 2 266.6218 382.7549 26.9271 0.1144 13330 +13332 2 265.813 383.5638 26.9655 0.1144 13331 +13333 2 265.1403 384.4881 26.9856 0.1144 13332 +13334 2 264.5225 385.4514 26.9928 0.1144 13333 +13335 2 263.6565 386.1961 26.9934 0.1144 13334 +13336 2 262.7894 386.9431 26.9934 0.1144 13335 +13337 2 262.0927 387.8492 26.9934 0.1144 13336 +13338 2 261.7106 388.9268 26.9934 0.1144 13337 +13339 2 326.143 371.1273 17.5082 0.1144 7 +13340 2 327.2195 371.0072 17.1234 0.1144 13339 +13341 2 328.3589 370.9157 16.9836 0.1144 13340 +13342 2 329.1505 371.5918 16.859 0.1144 13341 +13343 2 329.0659 372.6591 16.7438 0.1144 13342 +13344 2 328.4252 373.4119 16.6305 0.1144 13343 +13345 2 329.2718 374.1486 16.5115 0.1144 13344 +13346 2 330.37 374.4529 16.3689 0.1144 13345 +13347 2 331.3905 374.5021 16.1417 0.1144 13346 +13348 2 332.205 373.7528 15.8698 0.1144 13347 +13349 2 333.0173 373.4188 15.4981 0.1144 13348 +13350 2 333.7128 373.1534 15.0691 0.1144 13349 +13351 2 333.714 373.1373 14.0591 0.1144 13350 +13352 2 333.905 372.0265 13.6813 0.1144 13351 +13353 2 334.1315 370.9191 13.5135 0.1144 13352 +13354 2 334.3134 369.79 13.3568 0.1144 13353 +13355 2 334.6383 368.7215 13.1595 0.1144 13354 +13356 2 335.1966 367.7605 12.9005 0.1144 13355 +13357 2 335.3556 366.6577 12.6824 0.1144 13356 +13358 2 335.7343 365.5915 12.5233 0.1144 13357 +13359 2 336.0237 364.4887 12.4107 0.1144 13358 +13360 2 336.0855 363.3493 12.3327 0.1144 13359 +13361 2 336.3177 362.2339 12.2906 0.1144 13360 +13362 2 337.1768 361.552 12.2285 0.1144 13361 +13363 2 337.5452 360.5041 12.1692 0.1144 13362 +13364 2 338.1733 359.5615 12.1102 0.2206 13363 +13365 2 339.053 358.8453 12.0649 0.2288 13364 +13366 2 338.6537 358.0342 12.2473 0.1332 13365 +13367 2 338.243 356.9863 12.485 0.1144 13366 +13368 2 337.4606 356.189 12.7746 0.1144 13367 +13369 2 336.4973 355.681 13.1722 0.1144 13368 +13370 2 335.4219 355.3973 13.6132 0.1144 13369 +13371 2 334.3271 355.0736 13.9747 0.1144 13370 +13372 2 333.4348 354.3586 14.2586 0.1144 13371 +13373 2 332.6317 353.5555 14.5178 0.1144 13372 +13374 2 331.7142 353.0338 14.8917 0.1144 13373 +13375 2 330.6377 352.6472 15.1994 0.1144 13374 +13376 2 329.5555 352.2891 15.475 0.1144 13375 +13377 2 328.5957 351.8006 15.7899 0.1144 13376 +13378 2 327.6656 351.6759 16.1973 0.1144 13377 +13379 2 326.9369 350.7939 16.5559 0.1144 13378 +13380 2 326.0938 350.0995 16.906 0.1144 13379 +13381 2 325.1866 349.5767 17.358 0.1144 13380 +13382 2 324.6123 348.7026 17.8949 0.1144 13381 +13383 2 323.9911 347.7886 18.4137 0.1144 13382 +13384 2 323.5472 346.7681 18.8434 0.1144 13383 +13385 2 322.7968 345.9856 19.1854 0.1144 13384 +13386 2 322.9798 346.5153 20.2817 0.1144 13385 +13387 2 323.3127 347.5747 20.3736 0.1144 13386 +13388 2 323.6525 348.6672 20.4082 0.1144 13387 +13389 2 324.1936 349.6476 20.3317 0.1144 13388 +13390 2 324.7027 350.6715 20.2497 0.1144 13389 +13391 2 325.0504 351.7617 20.1668 0.1144 13390 +13392 2 325.5538 352.7684 20.0149 0.1144 13391 +13393 2 326.0469 353.7992 19.8792 0.1144 13392 +13394 2 326.4633 354.8654 19.7846 0.1144 13393 +13395 2 327.2469 355.6982 19.6826 0.1144 13394 +13396 2 322.5622 346.1595 19.4489 0.1144 13385 +13397 2 321.5887 346.3998 19.8082 0.1144 13396 +13398 2 320.5156 346.0234 20.0923 0.1144 13397 +13399 2 319.3716 345.9742 20.3321 0.1144 13398 +13400 2 318.2356 345.8438 20.5493 0.1144 13399 +13401 2 317.2461 346.4535 20.5816 0.1144 13400 +13402 2 317.0928 347.4843 20.7588 0.1144 13401 +13403 2 317.2712 348.6077 20.9549 0.1144 13402 +13404 2 316.5803 349.4234 21.1519 0.1144 13403 +13405 2 315.5278 349.7471 21.4564 0.1144 13404 +13406 2 314.4215 349.9622 21.8088 0.1144 13405 +13407 2 313.3668 350.4026 22.1162 0.1144 13406 +13408 2 312.304 350.827 22.3753 0.1144 13407 +13409 2 311.2332 350.7435 22.7312 0.1144 13408 +13410 2 310.1842 350.4061 23.6191 0.1144 13409 +13411 2 317.5984 345.0979 21.0858 0.1144 13400 +13412 2 316.6443 344.5019 21.4397 0.1144 13411 +13413 2 315.7337 343.8315 21.7876 0.1144 13412 +13414 2 314.6801 343.5054 22.0958 0.1144 13413 +13415 2 313.7054 342.9746 22.3678 0.1144 13414 +13416 2 313.0247 342.0754 22.6504 0.1144 13415 +13417 2 312.4744 341.4405 23.1415 0.1144 13416 +13418 2 311.5673 340.8125 23.5621 0.1144 13417 +13419 2 310.572 340.2485 23.884 0.1144 13418 +13420 2 309.5961 339.6513 24.1146 0.1144 13419 +13421 2 308.7519 339.0496 24.4191 0.1144 13420 +13422 2 309.0974 338.6206 24.254 0.1144 13421 +13423 2 309.6202 337.615 24.1119 0.1144 13422 +13424 2 309.8009 336.4859 24.0591 0.1144 13423 +13425 2 310.4667 335.5832 23.9988 0.1144 13424 +13426 2 311.5798 335.8132 23.9049 0.1144 13425 +13427 2 312.5969 335.6874 23.7541 0.1144 13426 +13428 2 313.5418 335.0662 23.6158 0.1144 13427 +13429 2 314.6378 334.9506 23.4839 0.1144 13428 +13430 2 315.76 335.1714 23.3518 0.1144 13429 +13431 2 316.888 335.3407 23.2117 0.1144 13430 +13432 2 318.0114 335.2835 23.0219 0.1144 13431 +13433 2 319.0364 334.906 22.7424 0.1144 13432 +13434 2 320.1118 334.6818 22.4153 0.1144 13433 +13435 2 321.2158 334.9129 22.1241 0.1144 13434 +13436 2 322.346 335.057 21.8804 0.1144 13435 +13437 2 323.482 335.1863 21.6727 0.1144 13436 +13438 2 324.618 335.1176 21.5 0.1144 13437 +13439 2 324.1398 335.3899 21.2003 0.1144 13438 +13440 2 323.9328 336.4916 20.9537 0.1144 13439 +13441 2 323.609 337.5692 20.6839 0.1144 13440 +13442 2 322.7865 338.3586 20.2451 0.1144 13441 +13443 2 308.0986 338.8436 24.5902 0.1144 13421 +13444 2 307.585 338.7121 24.5495 0.1144 13443 +13445 2 306.5394 338.3849 24.4019 0.1144 13444 +13446 2 305.4205 338.2282 24.2348 0.1144 13445 +13447 2 304.3269 338.4959 24.1008 0.1144 13446 +13448 2 303.2161 338.759 24.0164 0.1144 13447 +13449 2 302.2562 339.3482 24.0092 0.1144 13448 +13450 2 301.5641 340.2393 24.1105 0.1144 13449 +13451 2 300.9441 341.1625 24.338 0.1144 13450 +13452 2 300.5666 342.2265 24.5829 0.1144 13451 +13453 2 300.3263 343.3419 24.82 0.1144 13452 +13454 2 300.3503 344.471 25.0672 0.1144 13453 +13455 2 300.2783 345.6093 25.2782 0.1144 13454 +13456 2 299.7314 346.5737 25.4994 0.1144 13455 +13457 2 298.8849 347.3436 25.6497 0.1144 13456 +13458 2 298.1058 348.181 25.7503 0.1144 13457 +13459 2 298.1333 346.8871 25.5301 0.1144 13458 +13460 2 297.8026 345.8015 25.4516 0.1144 13459 +13461 2 297.2901 344.781 25.391 0.1144 13460 +13462 2 296.7971 343.7491 25.3471 0.1144 13461 +13463 2 296.2868 342.7252 25.3185 0.1144 13462 +13464 2 295.7171 341.7334 25.3034 0.1144 13463 +13465 2 295.104 340.7679 25.3002 0.1144 13464 +13466 2 294.6555 339.7211 25.2973 0.1144 13465 +13467 2 294.6784 338.5943 25.2938 0.1144 13466 +13468 2 295.1142 337.5475 25.2896 0.1144 13467 +13469 2 295.8384 336.67 25.2836 0.1144 13468 +13470 2 296.6472 335.8612 25.2745 0.1144 13469 +13471 2 297.5212 335.1234 25.2406 0.1144 13470 +13472 2 298.2934 334.3088 25.2552 0.1144 13471 +13473 2 298.5623 333.2232 25.2421 0.1144 13472 +13474 2 299.5621 332.9223 25.1923 0.1144 13473 +13475 2 300.7038 332.8468 25.1122 0.1144 13474 +13476 2 301.1202 332.1124 24.1816 0.1144 13475 +13477 2 297.6368 348.9772 25.8105 0.1144 13458 +13478 2 297.2695 350.0606 25.8383 0.1144 13477 +13479 2 296.8314 351.1176 25.8457 0.1144 13478 +13480 2 296.3338 352.1472 25.8357 0.1144 13479 +13481 2 295.3991 352.8073 25.8205 0.1144 13480 +13482 2 294.4645 353.4674 25.8025 0.1144 13481 +13483 2 293.5298 354.1263 25.7845 0.1144 13482 +13484 2 292.5952 354.7864 25.7689 0.1144 13483 +13485 2 292.1707 355.1422 25.8686 0.1144 13484 +13486 2 291.3711 355.959 25.8686 0.1144 13485 +13487 2 290.5954 356.801 25.8686 0.1144 13486 +13488 2 289.6562 357.4497 25.8686 0.1144 13487 +13489 2 288.5843 357.8466 25.8686 0.1144 13488 +13490 2 287.7103 358.5788 25.8686 0.1144 13489 +13491 2 286.7024 359.1188 25.8686 0.1144 13490 +13492 2 285.8456 359.8761 25.8686 0.1144 13491 +13493 2 284.9887 360.6346 25.8686 0.1144 13492 +13494 2 291.9442 354.8173 25.6419 0.1144 13484 +13495 2 290.8368 354.7636 25.5547 0.1144 13494 +13496 2 289.7535 354.5736 25.615 0.1144 13495 +13497 2 288.6358 354.3666 25.6955 0.1144 13496 +13498 2 287.5089 354.1698 25.7744 0.1144 13497 +13499 2 286.3741 354.0268 25.8535 0.1144 13498 +13500 2 285.2335 353.9376 25.9345 0.1144 13499 +13501 2 284.1101 353.7271 25.9994 0.1144 13500 +13502 2 283.0405 353.3278 26.0516 0.1144 13501 +13503 2 282.0223 352.8073 26.1127 0.1144 13502 +13504 2 281.0579 352.2319 26.2573 0.1144 13503 +13505 2 280.1725 351.5146 26.407 0.1144 13504 +13506 2 279.0982 351.1474 26.5531 0.1144 13505 +13507 2 277.9714 350.9598 26.6986 0.1144 13506 +13508 2 276.9601 350.4381 26.8447 0.1144 13507 +13509 2 276.0163 349.8089 27.0388 0.1144 13508 +13510 2 275.2395 349.1682 27.4052 0.1144 13509 +13511 2 274.2511 348.6054 27.7174 0.1144 13510 +13512 2 273.2101 349.0413 27.9677 0.1144 13511 +13513 2 272.2285 349.6281 28.159 0.1144 13512 +13514 2 271.2618 350.2184 28.3514 0.1144 13513 +13515 2 270.3752 350.938 28.4987 0.1144 13514 +13516 2 269.6236 351.8006 28.6804 0.1144 13515 +13517 2 307.887 338.2556 26.2394 0.1144 13443 +13518 2 307.0016 338.0097 28.1061 0.1144 13517 +13519 2 306.4742 337.4651 28.9859 0.1144 13518 +13520 2 305.7923 336.6254 29.8553 0.1144 13519 +13521 2 305.2055 335.6576 30.6454 0.1144 13520 +13522 2 304.5122 334.7641 31.3765 0.1144 13521 +13523 2 303.9459 333.8581 32.1014 0.1144 13522 +13524 2 303.7675 332.8537 32.8448 0.1144 13523 +13525 2 304.1232 331.8652 33.5765 0.1144 13524 +13526 2 304.0763 330.878 34.2504 0.1144 13525 +13527 2 303.4483 329.9319 34.8496 0.1144 13526 +13528 2 302.7058 329.2924 35.5216 0.1144 13527 +13529 2 301.714 329.2604 36.2191 0.1144 13528 +13530 2 300.8777 328.8634 36.9687 0.1144 13529 +13531 2 300.2577 327.9059 37.522 0.1144 13530 +13532 2 299.9053 326.8179 38.2407 0.1144 13531 +13533 2 339.6239 357.9347 10.6403 0.2288 13365 +13534 2 340.0208 356.8616 10.4454 0.2288 13533 +13535 2 340.5539 355.4465 10.2356 0.2288 13534 +13536 2 341.3856 354.6869 10.0944 0.2288 13535 +13537 2 342.4667 354.3357 9.9398 0.2288 13536 +13538 2 343.4265 353.7706 9.6925 0.2288 13537 +13539 2 344.2193 352.9984 9.3622 0.2288 13538 +13540 2 344.7936 352.0191 9.0396 0.2288 13539 +13541 2 344.4126 350.9884 8.6807 0.2288 13540 +13542 2 343.9047 350.906 8.8496 0.1338 13541 +13543 2 342.9826 351.5546 8.7613 0.1144 13542 +13544 2 342.2688 352.4481 8.7253 0.1144 13543 +13545 2 341.452 353.2397 8.6694 0.1144 13544 +13546 2 340.578 353.9136 8.5458 0.1144 13545 +13547 2 339.8092 354.6446 8.3111 0.1144 13546 +13548 2 338.8379 354.8825 8.1135 0.1144 13547 +13549 2 337.7603 354.8711 7.9497 0.1144 13548 +13550 2 337.0487 355.6456 7.82 0.1144 13549 +13551 2 336.6632 356.7198 7.7206 0.1144 13550 +13552 2 336.574 357.8375 7.6079 0.1144 13551 +13553 2 335.9882 358.6829 7.4848 0.1144 13552 +13554 2 335.0135 359.2743 7.3709 0.1144 13553 +13555 2 334.096 359.9516 7.2732 0.1144 13554 +13556 2 333.587 360.9434 7.1909 0.1144 13555 +13557 2 333.0573 361.933 7.0596 0.1144 13556 +13558 2 332.5802 362.966 6.9468 0.1144 13557 +13559 2 331.625 363.5049 6.8658 0.1144 13558 +13560 2 330.5714 363.9533 6.808 0.1144 13559 +13561 2 329.4537 364.1844 6.7704 0.1144 13560 +13562 2 328.3177 364.3148 6.7483 0.1144 13561 +13563 2 344.4481 350.2802 8.4058 0.2288 13541 +13564 2 344.8005 349.2552 8.206 0.2288 13563 +13565 2 345.8003 348.7507 8.0719 0.2288 13564 +13566 2 346.8379 348.3217 7.9778 0.2288 13565 +13567 2 347.6078 347.5152 7.8971 0.199 13566 +13568 2 347.7302 346.4707 7.7962 0.1351 13567 +13569 2 347.4911 345.3553 7.6693 0.1144 13568 +13570 2 347.2395 344.2399 7.5282 0.1144 13569 +13571 2 347.466 343.2412 7.2649 0.1144 13570 +13572 2 348.0117 342.2631 7.0003 0.1144 13571 +13573 2 348.4921 341.2266 6.7815 0.1144 13572 +13574 2 348.9864 340.2176 6.5375 0.1144 13573 +13575 2 349.5675 339.2383 6.3338 0.1144 13574 +13576 2 350.0697 338.2122 6.1809 0.1144 13575 +13577 2 350.6074 337.202 6.0714 0.1144 13576 +13578 2 351.1611 336.2022 5.9637 0.1144 13577 +13579 2 351.5134 335.1279 5.8135 0.1144 13578 +13580 2 352.0591 334.1269 5.6807 0.1144 13579 +13581 2 352.5213 333.0802 5.5599 0.1144 13580 +13582 2 352.8039 331.9739 5.4403 0.1144 13581 +13583 2 352.9434 330.8391 5.3126 0.1144 13582 +13584 2 353.2478 329.7374 5.1689 0.1144 13583 +13585 2 352.7661 328.7295 5.0025 0.1144 13584 +13586 2 352.7238 327.8315 4.7429 0.1144 13585 +13587 2 353.2089 326.9827 4.3257 0.1144 13586 +13588 2 353.1414 325.9073 3.8182 0.1144 13587 +13589 2 353.6722 324.9292 3.3126 0.1144 13588 +13590 2 354.1893 323.9259 2.8972 0.1144 13589 +13591 2 354.2476 322.8208 2.479 0.1144 13590 +13592 2 354.4009 321.7088 2.1389 0.1144 13591 +13593 2 354.449 320.5888 1.9206 0.1144 13592 +13594 2 354.2316 319.4654 1.687 0.1144 13593 +13595 2 340.3697 357.4954 11.0434 0.1527 13534 +13596 2 341.0962 358.3523 11.0668 0.1144 13595 +13597 2 342.0251 359.0089 11.0732 0.1144 13596 +13598 2 342.7847 359.8372 11.0658 0.1144 13597 +13599 2 343.4391 360.7615 10.998 0.1144 13598 +13600 2 344.0855 361.6996 10.9082 0.1144 13599 +13601 2 344.9904 362.3609 10.8315 0.1144 13600 +13602 2 346.0566 362.7658 10.7727 0.1144 13601 +13603 2 347.1731 363.0049 10.7362 0.1144 13602 +13604 2 348.0917 363.6398 10.7206 0.1144 13603 +13605 2 349.1728 363.9064 10.7248 0.1144 13604 +13606 2 350.3157 363.9373 10.7396 0.1144 13605 +13607 2 351.3556 364.3834 10.7608 0.1144 13606 +13608 2 351.9985 365.3078 10.7922 0.1144 13607 +13609 2 352.6963 366.2138 10.836 0.1144 13608 +13610 2 353.5486 366.9746 10.8968 0.1144 13609 +13611 2 354.6308 367.3167 10.9706 0.1144 13610 +13612 2 355.7337 367.6152 11.0737 0.1144 13611 +13613 2 356.4933 368.3623 11.3109 0.1144 13612 +13614 2 357.1431 369.2992 11.5065 0.1144 13613 +13615 2 357.4554 370.3997 11.8096 0.1144 13614 +13616 2 334.7767 372.7358 14.7705 0.1144 13350 +13617 2 335.867 372.3914 14.596 0.1144 13616 +13618 2 337.0075 372.3034 14.533 0.1144 13617 +13619 2 338.0108 372.4658 14.8697 0.1144 13618 +13620 2 339.0747 372.8262 15.1595 0.1144 13619 +13621 2 340.1329 373.2609 15.376 0.1144 13620 +13622 2 341.0516 373.9244 15.5226 0.1144 13621 +13623 2 341.8283 374.7607 15.6027 0.1144 13622 +13624 2 342.4861 375.6953 15.6177 0.1144 13623 +13625 2 343.2378 376.5522 15.5741 0.1144 13624 +13626 2 344.1861 377.1768 15.5078 0.1144 13625 +13627 2 344.9995 377.9684 15.4255 0.1144 13626 +13628 2 345.5212 378.9717 15.2935 0.1144 13627 +13629 2 346.0772 379.911 15.0397 0.1144 13628 +13630 2 345.869 380.9737 14.7978 0.1144 13629 +13631 2 345.3988 382.0159 14.5965 0.1144 13630 +13632 2 345.8198 383.0204 14.437 0.1144 13631 +13633 2 346.4924 383.5924 14.0795 0.1144 13632 +13634 2 346.2751 383.7891 13.8704 0.1144 13633 +13635 2 345.4114 384.4698 13.8524 0.1144 13634 +13636 2 344.455 384.9766 13.9268 0.1144 13635 +13637 2 343.724 385.8563 14.0204 0.1144 13636 +13638 2 342.9884 386.7189 14.1603 0.1144 13637 +13639 2 342.3111 387.6169 14.3504 0.1144 13638 +13640 2 341.8444 388.6488 14.482 0.1144 13639 +13641 2 341.6567 389.7711 14.5651 0.1144 13640 +13642 2 341.6259 390.914 14.6205 0.1144 13641 +13643 2 341.7711 392.0351 14.6614 0.1144 13642 +13644 2 342.2093 393.0853 14.6918 0.1144 13643 +13645 2 342.7779 394.0771 14.7197 0.1144 13644 +13646 2 343.3567 395.0644 14.7551 0.1144 13645 +13647 2 343.9356 396.0505 14.7974 0.1144 13646 +13648 2 344.7307 396.4658 14.9105 0.1144 13647 +13649 2 345.5269 395.681 15.0238 0.1144 13648 +13650 2 346.5405 395.1536 15.1187 0.1144 13649 +13651 2 347.3859 394.3837 15.1973 0.1144 13650 +13652 2 347.9407 393.3838 15.2608 0.1144 13651 +13653 2 348.2977 392.8164 15.1838 0.1144 13652 +13654 2 348.9143 391.8532 15.132 0.1144 13653 +13655 2 349.6041 390.9437 15.1114 0.1144 13654 +13656 2 350.4633 390.2035 15.0876 0.1144 13655 +13657 2 351.4357 389.6018 15.063 0.1144 13656 +13658 2 352.3978 389.0584 14.9642 0.1144 13657 +13659 2 352.972 388.1809 14.8657 0.1144 13658 +13660 2 353.5326 387.1948 14.8358 0.1144 13659 +13661 2 354.1138 386.211 14.8516 0.1144 13660 +13662 2 354.5736 385.1654 14.9131 0.1144 13661 +13663 2 354.9523 384.0866 15.0221 0.1144 13662 +13664 2 355.5094 383.0959 15.1855 0.1144 13663 +13665 2 356.4372 382.5021 15.4307 0.1144 13664 +13666 2 357.5183 382.5559 15.755 0.1144 13665 +13667 2 358.3752 382.4724 16.2977 0.1144 13666 +13668 2 359.0501 381.6578 16.7212 0.1144 13667 +13669 2 359.7411 380.7461 17.0318 0.1144 13668 +13670 2 360.0603 379.6536 17.2373 0.1144 13669 +13671 2 361.1414 380.0654 17.9784 0.1144 13670 +13672 2 362.1172 380.5493 18.2441 0.1144 13671 +13673 2 362.839 381.4107 18.5131 0.1144 13672 +13674 2 363.6353 382.223 18.7577 0.1144 13673 +13675 2 364.5196 382.9071 19.0544 0.1144 13674 +13676 2 365.2209 383.7697 19.3893 0.1144 13675 +13677 2 366.0262 384.5728 19.6794 0.1144 13676 +13678 2 366.9838 385.1917 19.9247 0.1144 13677 +13679 2 368.0088 385.6298 20.2255 0.1144 13678 +13680 2 369.0533 386.0428 20.5593 0.1144 13679 +13681 2 369.6172 387.0129 20.831 0.1144 13680 +13682 2 369.8712 388.0963 21.1358 0.1144 13681 +13683 2 370.3494 389.1133 21.4457 0.1144 13682 +13684 2 371.0015 390.0537 21.6696 0.1144 13683 +13685 2 371.6227 391.0146 21.9321 0.1144 13684 +13686 2 359.8177 379.5346 17.3481 0.1144 13670 +13687 2 358.7859 379.0404 17.3825 0.1144 13686 +13688 2 357.7368 378.5862 17.3622 0.1144 13687 +13689 2 356.6809 378.1458 17.3338 0.1144 13688 +13690 2 355.6227 377.711 17.2947 0.1144 13689 +13691 2 354.5142 377.5086 17.2399 0.1144 13690 +13692 2 353.3736 377.5543 17.1606 0.1144 13691 +13693 2 352.2628 377.8014 17.0501 0.1144 13692 +13694 2 351.1416 377.9513 16.902 0.1144 13693 +13695 2 349.9988 377.9364 16.7126 0.1144 13694 +13696 2 348.9314 377.7202 16.403 0.1144 13695 +13697 2 348.4864 376.9812 15.8771 0.1144 13696 +13698 2 347.5243 376.5888 15.3808 0.1144 13697 +13699 2 346.5542 376.9457 14.8036 0.1144 13698 +13700 2 345.591 377.5143 14.2783 0.1144 13699 +13701 2 344.6849 378.2121 13.9023 0.1144 13700 +13702 2 343.8578 379.0026 13.4968 0.1144 13701 +13703 2 358.2779 382.5628 17.5013 0.1144 13667 +13704 2 357.4542 383.3212 18.0751 0.1144 13703 +13705 2 356.6111 384.058 18.3298 0.1144 13704 +13706 2 355.657 384.6689 18.592 0.1144 13705 +13707 2 354.7029 385.2809 18.8411 0.1144 13706 +13708 2 353.8289 385.9753 19.0394 0.1144 13707 +13709 2 353.1986 386.9283 19.1194 0.1144 13708 +13710 2 352.5682 387.8812 19.0931 0.1144 13709 +13711 2 351.9379 388.8342 18.9797 0.1144 13710 +13712 2 351.4379 389.8432 18.7973 0.1144 13711 +13713 2 351.1359 390.9345 18.5545 0.1144 13712 +13714 2 350.8328 392.0271 18.2841 0.1144 13713 +13715 2 350.5308 393.1184 18.0117 0.1144 13714 +13716 2 350.2276 394.211 17.4334 0.1144 13715 +13717 2 348.1169 393.5349 15.2997 0.1144 13652 +13718 2 348.5413 394.513 15.3999 0.1144 13717 +13719 2 348.6123 395.6432 15.4949 0.1144 13718 +13720 2 348.2313 396.7072 15.5626 0.1144 13719 +13721 2 347.5014 397.5835 15.6008 0.1144 13720 +13722 2 347.5564 398.7195 15.6042 0.1144 13721 +13723 2 347.5209 399.8635 15.5665 0.1144 13722 +13724 2 347.5964 400.988 15.5477 0.1144 13723 +13725 2 348.0288 402.0439 15.4799 0.1144 13724 +13726 2 347.8378 403.0976 15.2921 0.1144 13725 +13727 2 346.9226 403.6707 14.9309 0.1144 13726 +13728 2 346.0371 404.3182 14.4615 0.1144 13727 +13729 2 345.3896 405.0927 13.9494 0.1144 13728 +13730 2 345.0498 406.0994 13.4457 0.1144 13729 +13731 2 344.6426 407.097 12.9078 0.1144 13730 +13732 2 344.0923 408.0591 12.4036 0.1144 13731 +13733 2 343.3682 408.9102 11.946 0.1144 13732 +13734 2 342.6291 409.7739 11.578 0.1144 13733 +13735 2 342.1315 410.7692 11.3488 0.1144 13734 +13736 2 342.6486 411.4545 11.1785 0.1144 13735 +13737 2 342.9037 412.3456 10.9358 0.1144 13736 +13738 2 342.1635 413.0927 10.7044 0.1144 13737 +13739 2 341.1397 413.3478 10.3933 0.1144 13738 +13740 2 340.165 412.8502 10.1097 0.1144 13739 +13741 2 339.1308 412.364 9.8976 0.1144 13740 +13742 2 338.0028 412.3765 9.7638 0.1144 13741 +13743 2 337.1871 413.1476 9.7018 0.1144 13742 +13744 2 336.6071 414.1326 9.6847 0.1144 13743 +13745 2 335.8441 414.9494 9.779 0.1144 13744 +13746 2 334.9438 415.6564 9.8484 0.1144 13745 +13747 2 334.7596 416.7134 9.8834 0.1144 13746 +13748 2 334.3191 417.7316 9.8839 0.1144 13747 +13749 2 333.4691 418.4649 9.8522 0.1144 13748 +13750 2 332.5322 419.1113 9.7616 0.1144 13749 +13751 2 331.6708 419.8091 9.5649 0.1144 13750 +13752 2 330.8883 420.6179 9.3637 0.1144 13751 +13753 2 330.3666 421.6178 9.2079 0.1144 13752 +13754 2 329.9616 422.6874 9.0944 0.1144 13753 +13755 2 329.4686 423.7182 9.0189 0.1144 13754 +13756 2 328.8085 424.6471 8.9768 0.1144 13755 +13757 2 328.1667 425.592 8.9583 0.1144 13756 +13758 2 327.3796 426.4077 8.9427 0.1144 13757 +13759 2 326.3981 426.9786 8.9195 0.1144 13758 +13760 2 325.3593 427.459 8.8872 0.1144 13759 +13761 2 324.3034 427.8995 8.8462 0.1144 13760 +13762 2 323.228 428.2861 8.8007 0.1144 13761 +13763 2 322.2133 428.7723 8.6978 0.1144 13762 +13764 2 321.3496 429.469 8.5292 0.1144 13763 +13765 2 320.6472 430.3625 8.4004 0.1144 13764 +13766 2 320.0615 431.3441 8.3243 0.1144 13765 +13767 2 319.6313 432.3359 8.414 0.1144 13766 +13768 2 319.1771 433.3747 8.5421 0.1144 13767 +13769 2 318.8992 434.4832 8.6566 0.1144 13768 +13770 2 319.0147 435.6158 8.7453 0.1144 13769 +13771 2 318.7939 436.7083 8.7163 0.1144 13770 +13772 2 318.1121 436.6373 8.4356 0.1144 13771 +13773 2 316.9704 436.5882 8.4793 0.1144 13772 +13774 2 315.8287 436.5264 8.4977 0.1144 13773 +13775 2 314.7647 436.1603 8.5225 0.1144 13774 +13776 2 313.6734 435.8514 8.5536 0.1144 13775 +13777 2 312.5477 435.6478 8.5903 0.1144 13776 +13778 2 311.4323 435.4922 8.6892 0.1144 13777 +13779 2 310.3478 435.7416 8.7946 0.1144 13778 +13780 2 309.2587 436.0917 8.8767 0.1144 13779 +13781 2 308.1444 436.3456 8.9369 0.1144 13780 +13782 2 307.0302 436.1889 8.9772 0.1144 13781 +13783 2 306.068 435.5849 8.9996 0.1144 13782 +13784 2 304.9424 435.4888 9.0066 0.1144 13783 +13785 2 303.8601 435.8468 9.0101 0.1144 13784 +13786 2 302.755 436.1397 9.015 0.1144 13785 +13787 2 301.619 436.0413 9.0214 0.1144 13786 +13788 2 300.5849 435.554 9.0315 0.1144 13787 +13789 2 299.6914 434.8413 9.0459 0.1144 13788 +13790 2 299.1148 433.854 9.0646 0.1144 13789 +13791 2 299.5747 434.0862 9.4181 0.1144 13790 +13792 2 300.5437 434.5747 9.981 0.1144 13791 +13793 2 301.6511 434.7921 10.2163 0.1144 13792 +13794 2 302.6704 434.2933 10.4013 0.1144 13793 +13795 2 303.4609 433.4685 10.5365 0.1144 13794 +13796 2 304.2971 432.6883 10.6257 0.1144 13795 +13797 2 305.2707 432.0877 10.6735 0.1144 13796 +13798 2 306.4124 432.1048 10.6848 0.1144 13797 +13799 2 298.5565 433.1447 9.0865 0.1144 13790 +13800 2 297.7535 432.3313 9.1098 0.1144 13799 +13801 2 296.8737 431.6404 9.2111 0.1144 13800 +13802 2 296.8989 431.7994 9.56 0.1144 13801 +13803 2 297.0339 432.9342 9.6655 0.1144 13802 +13804 2 297.337 433.9958 9.6998 0.1144 13803 +13805 2 297.988 434.9351 9.7481 0.1144 13804 +13806 2 298.4993 435.9109 9.8647 0.1144 13805 +13807 2 298.7911 436.9805 10.0154 0.1144 13806 +13808 2 299.0324 438.0937 10.0824 0.1144 13807 +13809 2 299.0027 439.1816 10.021 0.1144 13808 +13810 2 298.5909 440.2169 9.9005 0.1144 13809 +13811 2 298.0921 441.2465 9.7906 0.1144 13810 +13812 2 297.9022 442.3459 9.6951 0.1144 13811 +13813 2 297.5441 443.3732 9.6279 0.1144 13812 +13814 2 296.5271 443.7267 9.5993 0.1144 13813 +13815 2 295.3911 443.8606 9.6014 0.1144 13814 +13816 2 294.4347 444.4326 9.6174 0.1144 13815 +13817 2 293.4898 445.0778 9.6404 0.1144 13816 +13818 2 292.8411 445.993 9.6741 0.1144 13817 +13819 2 292.7347 447.1107 9.7201 0.1144 13818 +13820 2 292.6398 448.2501 9.7787 0.1144 13819 +13821 2 292.5483 449.3895 9.849 0.1144 13820 +13822 2 292.2073 450.4443 10.0099 0.1144 13821 +13823 2 291.4958 451.3034 10.2225 0.1144 13822 +13824 2 290.8414 452.2381 10.3974 0.1144 13823 +13825 2 290.528 453.3317 10.5274 0.1144 13824 +13826 2 290.5096 454.4734 10.6158 0.1144 13825 +13827 2 290.441 455.6152 10.6664 0.1144 13826 +13828 2 289.6322 456.3965 10.6834 0.1144 13827 +13829 2 289.4251 457.5131 10.6848 0.1144 13828 +13830 2 289.424 458.6571 10.6848 0.1144 13829 +13831 2 289.4492 459.7999 10.6848 0.1144 13830 +13832 2 289.5418 460.9405 10.6848 0.1144 13831 +13833 2 289.4755 462.0822 10.6848 0.1144 13832 +13834 2 289.106 463.1644 10.6848 0.1144 13833 +13835 2 288.876 464.2844 10.6848 0.1144 13834 +13836 2 288.9241 465.4261 10.6848 0.1144 13835 +13837 2 289.1414 466.5495 10.6848 0.1144 13836 +13838 2 289.4251 467.658 10.6848 0.1144 13837 +13839 2 289.6059 468.7872 10.6848 0.1144 13838 +13840 2 289.5167 469.9277 10.6848 0.1144 13839 +13841 2 289.2615 471.0431 10.6848 0.1144 13840 +13842 2 288.9515 472.1448 10.6848 0.1144 13841 +13843 2 288.6964 473.2591 10.6848 0.1144 13842 +13844 2 288.4184 474.3688 10.6848 0.1144 13843 +13845 2 288.2708 475.5036 10.6848 0.1144 13844 +13846 2 295.7434 431.5111 9.3107 0.1144 13801 +13847 2 294.6006 431.55 9.31 0.1144 13846 +13848 2 293.5035 431.8028 9.2793 0.1144 13847 +13849 2 292.4407 432.035 9.1492 0.1144 13848 +13850 2 291.4043 431.7422 8.9495 0.1144 13849 +13851 2 290.3106 431.5934 8.785 0.1144 13850 +13852 2 289.1677 431.6083 8.6731 0.1144 13851 +13853 2 288.2548 431.0661 8.6125 0.1144 13852 +13854 2 287.2321 430.9585 8.5996 0.1144 13853 +13855 2 286.1796 431.3967 8.6269 0.1144 13854 +13856 2 285.1466 430.9654 8.6741 0.1144 13855 +13857 2 284.1799 430.581 8.8829 0.1144 13856 +13858 2 284.6947 430.4552 9.56 0.1144 13857 +13859 2 285.5664 429.9587 8.6551 0.1144 13858 +13860 2 285.6888 428.9371 8.2573 0.1144 13859 +13861 2 285.4852 427.8263 7.8165 0.1144 13860 +13862 2 285.0116 426.8172 7.3467 0.1144 13861 +13863 2 284.6341 426.3013 6.6697 0.1144 13862 +13864 2 284.1502 426.2578 5.9873 0.1144 13863 +13865 2 283.4066 425.5497 5.3747 0.1144 13864 +13866 2 283.7337 424.543 4.856 0.1144 13865 +13867 2 283.7555 423.447 4.3387 0.1144 13866 +13868 2 283.966 422.3945 3.8332 0.1144 13867 +13869 2 284.8709 421.7665 3.3968 0.1144 13868 +13870 2 285.3102 420.7117 3.078 0.1144 13869 +13871 2 285.5836 419.602 2.8431 0.1144 13870 +13872 2 285.8982 418.5141 2.6389 0.1144 13871 +13873 2 286.3832 417.4822 2.4843 0.1144 13872 +13874 2 286.7287 416.3954 2.3932 0.1144 13873 +13875 2 286.818 415.2651 2.341 0.1144 13874 +13876 2 286.469 414.2081 2.312 0.1144 13875 +13877 2 285.595 413.5125 2.3053 0.1144 13876 +13878 2 284.4819 413.3238 2.3194 0.1144 13877 +13879 2 283.474 413.6612 2.3472 0.1144 13878 +13880 2 282.9204 414.6497 2.3869 0.1144 13879 +13881 2 282.5428 415.7296 2.442 0.1144 13880 +13882 2 282.123 416.7935 2.5157 0.1144 13881 +13883 2 281.6917 417.8517 2.6174 0.1144 13882 +13884 2 281.2055 418.8733 2.7763 0.1144 13883 +13885 2 280.5237 419.7725 3.0089 0.1144 13884 +13886 2 279.8922 420.7037 3.2798 0.1144 13885 +13887 2 279.3156 421.6853 3.5473 0.1144 13886 +13888 2 278.6189 422.5844 3.824 0.1144 13887 +13889 2 277.7598 423.2445 4.1616 0.1144 13888 +13890 2 276.6924 423.4951 4.5636 0.1144 13889 +13891 2 275.5656 423.4505 4.9401 0.1144 13890 +13892 2 274.4696 423.145 5.2563 0.1144 13891 +13893 2 273.4686 422.6016 5.5205 0.1144 13892 +13894 2 272.6724 421.8203 5.7971 0.1144 13893 +13895 2 271.7961 421.3741 6.7483 0.1144 13894 +13896 2 284.2874 426.0062 5.8453 0.1144 13863 +13897 2 283.5335 425.1687 5.6491 0.1144 13896 +13898 2 282.6126 424.5155 5.5839 0.1144 13897 +13899 2 281.6414 424.8496 5.5146 0.1144 13898 +13900 2 280.8932 425.6858 5.388 0.1144 13899 +13901 2 279.8544 426.1263 5.2823 0.1144 13900 +13902 2 278.8294 426.6228 5.24 0.1144 13901 +13903 2 277.9337 427.3206 5.2566 0.1144 13902 +13904 2 277.6225 428.4074 5.2207 0.1144 13903 +13905 2 277.2862 429.4965 5.0613 0.1144 13904 +13906 2 283.8939 430.2756 9.0328 0.1144 13857 +13907 2 282.9638 429.6143 9.1251 0.1144 13906 +13908 2 281.9663 429.1018 9.0909 0.1144 13907 +13909 2 280.9035 429.4061 9.0187 0.1144 13908 +13910 2 279.9917 428.5538 8.1533 0.1144 13909 +13911 2 279.811 427.4636 7.9879 0.1144 13910 +13912 2 279.4529 426.5198 7.8102 0.1144 13911 +13913 2 278.5709 425.814 7.6369 0.1144 13912 +13914 2 277.7964 424.9949 7.5184 0.1144 13913 +13915 2 277.0917 424.0957 7.4523 0.1144 13914 +13916 2 276.1788 423.4447 7.4365 0.1144 13915 +13917 2 275.2315 422.8167 7.4499 0.1144 13916 +13918 2 274.6378 421.8843 7.4935 0.1144 13917 +13919 2 274.3987 420.7724 7.5604 0.1144 13918 +13920 2 274.1333 419.6695 7.6731 0.1144 13919 +13921 2 273.9354 418.5541 7.8327 0.1144 13920 +13922 2 274.1173 417.4479 8.0043 0.1144 13921 +13923 2 274.9947 417.2168 8.237 0.1144 13922 +13924 2 275.3974 416.3451 8.4651 0.1144 13923 +13925 2 276.324 415.8383 8.6671 0.1144 13924 +13926 2 277.3411 415.3326 8.8834 0.1144 13925 +13927 2 277.9817 414.5856 9.2536 0.1144 13926 +13928 2 278.2597 413.4828 9.527 0.1144 13927 +13929 2 278.1785 412.3434 9.6998 0.1144 13928 +13930 2 278.564 411.292 9.862 0.1144 13929 +13931 2 278.445 410.2956 9.6914 0.1144 13930 +13932 2 279.3808 410.076 9.4419 0.1144 13931 +13933 2 280.3933 410.5233 9.1298 0.1144 13932 +13934 2 281.5006 410.5393 8.8047 0.1144 13933 +13935 2 282.3255 411.2634 8.4759 0.1144 13934 +13936 2 283.323 411.5586 8.0217 0.1144 13935 +13937 2 283.434 410.6926 7.2833 0.1144 13936 +13938 2 282.711 411.0495 6.0971 0.1144 13937 +13939 2 282.2328 410.9214 5.563 0.1144 13938 +13940 2 281.3748 411.6776 5.0887 0.1144 13939 +13941 2 280.3624 412.1397 4.6199 0.1144 13940 +13942 2 279.247 412.3548 4.2241 0.1144 13941 +13943 2 278.5446 413.1773 3.8747 0.1144 13942 +13944 2 277.9668 413.9701 2.8118 0.1144 13943 +13945 2 283.5839 411.7439 7.6017 0.1144 13936 +13946 2 284.4693 412.436 7.1671 0.1144 13945 +13947 2 285.4154 412.9291 6.7078 0.1144 13946 +13948 2 286.4256 413.2654 6.1657 0.1144 13947 +13949 2 287.4975 413.4004 5.6652 0.1144 13948 +13950 2 288.6152 413.2757 5.2063 0.1144 13949 +13951 2 289.6619 412.8971 4.7664 0.1144 13950 +13952 2 290.576 412.261 4.3386 0.1144 13951 +13953 2 291.6273 411.9407 3.9343 0.1144 13952 +13954 2 292.6135 411.3893 3.6263 0.1144 13953 +13955 2 293.1283 410.394 3.3968 0.1144 13954 +13956 2 293.2083 409.2603 3.2287 0.1144 13955 +13957 2 293.4417 408.1655 3.0292 0.1144 13956 +13958 2 294.0366 407.1976 2.869 0.1144 13957 +13959 2 294.596 406.2001 2.7378 0.1144 13958 +13960 2 294.898 405.0996 2.6184 0.1144 13959 +13961 2 294.9998 403.9613 2.5005 0.1144 13960 +13962 2 295.4403 402.9797 2.2648 0.1144 13961 +13963 2 296.0146 401.9959 2.063 0.1144 13962 +13964 2 296.685 401.0681 1.9083 0.1144 13963 +13965 2 297.0522 399.987 1.7972 0.1144 13964 +13966 2 297.154 398.8487 1.7261 0.1144 13965 +13967 2 297.5292 397.7677 1.687 0.1144 13966 +13968 2 278.731 411.0552 10.8709 0.1144 13930 +13969 2 279.4357 410.1732 11.2098 0.1144 13968 +13970 2 279.811 409.1299 11.3355 0.1144 13969 +13971 2 280.4573 408.2478 11.458 0.1144 13970 +13972 2 281.0465 407.3018 11.6363 0.1144 13971 +13973 2 281.2558 406.2161 11.878 0.1144 13972 +13974 2 281.2856 405.0778 12.0801 0.1144 13973 +13975 2 281.3943 403.9395 12.2276 0.1144 13974 +13976 2 281.472 402.799 12.3313 0.1144 13975 +13977 2 281.4229 401.6573 12.3957 0.1144 13976 +13978 2 281.3954 400.5327 12.4875 0.1144 13977 +13979 2 281.1906 399.4127 12.5191 0.1144 13978 +13980 2 280.749 398.3602 12.5003 0.1144 13979 +13981 2 280.3338 397.294 12.441 0.1144 13980 +13982 2 279.9482 396.2164 12.3483 0.1144 13981 +13983 2 279.6908 395.1033 12.2293 0.1144 13982 +13984 2 279.295 394.3299 11.2473 0.1144 13983 +13985 2 280.0157 430.0513 8.9175 0.1144 13909 +13986 2 279.2836 430.9288 8.7839 0.1144 13985 +13987 2 278.802 431.9527 8.6406 0.1144 13986 +13988 2 278.9083 433.0646 8.4804 0.1144 13987 +13989 2 278.4942 434.1045 8.2998 0.1144 13988 +13990 2 278.4782 435.1273 7.9267 0.1144 13989 +13991 2 278.2837 435.61 9.6854 0.1144 13990 +13992 2 278.3707 434.9088 10.761 0.1144 13991 +13993 2 278.8443 433.8769 11.1528 0.1144 13992 +13994 2 279.3282 432.9102 11.6047 0.1144 13993 +13995 2 280.1816 432.3142 12.0418 0.1144 13994 +13996 2 281.2776 431.9916 12.3906 0.1144 13995 +13997 2 282.3586 431.8348 12.7513 0.1144 13996 +13998 2 283.3757 431.4241 13.0691 0.1144 13997 +13999 2 284.3183 430.7789 13.3144 0.1144 13998 +14000 2 284.9464 429.8511 13.4955 0.1144 13999 +14001 2 285.5367 428.8719 13.6409 0.1144 14000 +14002 2 285.968 427.8194 13.7691 0.1144 14001 +14003 2 286.1579 426.696 13.8869 0.1144 14002 +14004 2 286.3993 425.5886 14.0552 0.1144 14003 +14005 2 286.9369 424.6334 14.336 0.1144 14004 +14006 2 287.6291 423.7353 14.6212 0.1144 14005 +14007 2 288.3784 422.8762 14.9186 0.1144 14006 +14008 2 289.13 422.0205 15.2208 0.1144 14007 +14009 2 290.1584 421.6727 15.4906 0.1144 14008 +14010 2 290.8197 421.6052 15.9541 0.1144 14009 +14011 2 290.5943 420.4886 16.3014 0.1144 14010 +14012 2 290.3403 419.387 16.5556 0.1144 14011 +14013 2 289.3393 418.8321 16.7274 0.1144 14012 +14014 2 288.3383 418.2784 16.8708 0.1144 14013 +14015 2 279.0205 435.9853 7.51 0.1144 13990 +14016 2 278.8386 436.8639 7.0168 0.1144 14015 +14017 2 278.0892 437.6566 6.5071 0.1144 14016 +14018 2 277.4017 438.5616 6.102 0.1144 14017 +14019 2 276.7645 439.5122 5.8138 0.1144 14018 +14020 2 276.0575 440.4103 5.6288 0.1144 14019 +14021 2 275.3528 441.3106 5.5035 0.1144 14020 +14022 2 274.5909 442.1629 5.4144 0.1144 14021 +14023 2 273.7283 442.9122 5.3323 0.1144 14022 +14024 2 272.8131 443.594 5.2142 0.1144 14023 +14025 2 271.9174 444.2918 5.0417 0.1144 14024 +14026 2 271.1463 445.0743 4.7774 0.1144 14025 +14027 2 270.4405 445.9552 4.5016 0.1144 14026 +14028 2 270.3638 447.0878 4.2951 0.1144 14027 +14029 2 270.0423 448.1837 4.1577 0.1144 14028 +14030 2 269.412 449.1378 4.0862 0.1144 14029 +14031 2 268.4018 449.6686 4.073 0.1144 14030 +14032 2 267.283 449.9055 4.1076 0.1144 14031 +14033 2 266.1424 449.8208 4.177 0.1144 14032 +14034 2 265.0305 449.5508 4.2762 0.1144 14033 +14035 2 263.9517 449.1733 4.4098 0.1144 14034 +14036 2 262.8214 449.0074 4.5806 0.1144 14035 +14037 2 261.825 448.6402 4.8096 0.1144 14036 +14038 2 262.3375 448.3725 5.322 0.1144 14037 +14039 2 262.6899 447.3578 5.8313 0.1144 14038 +14040 2 263.6131 446.7823 6.3168 0.1144 14039 +14041 2 264.4059 445.9792 6.7698 0.1144 14040 +14042 2 265.1517 445.2093 7.2619 0.1144 14041 +14043 2 265.9491 444.4234 7.6938 0.1144 14042 +14044 2 266.6264 443.9063 7.9701 0.1144 14043 +14045 2 267.3013 442.9831 8.1483 0.1144 14044 +14046 2 268.0712 442.148 8.2379 0.1144 14045 +14047 2 268.7187 441.2339 8.2228 0.1144 14046 +14048 2 269.3456 440.2856 8.164 0.1144 14047 +14049 2 270.2883 439.7101 8.1227 0.1144 14048 +14050 2 271.1566 439.002 8.1163 0.1144 14049 +14051 2 271.7972 438.0605 8.1474 0.1144 14050 +14052 2 272.3555 437.0675 8.2452 0.1144 14051 +14053 2 273.0556 436.1763 8.4018 0.1144 14052 +14054 2 273.8816 435.3892 8.5594 0.1144 14053 +14055 2 274.6755 434.6136 8.7783 0.1144 14054 +14056 2 275.1274 433.6641 9.088 0.1144 14055 +14057 2 276.1524 433.2534 9.3083 0.1144 14056 +14058 2 276.7233 432.2982 9.3392 0.1144 14057 +14059 2 277.4051 431.3864 9.283 0.1144 14058 +14060 2 278.095 430.5066 9.1568 0.1144 14059 +14061 2 278.1693 429.5937 8.9747 0.1144 14060 +14062 2 277.531 428.7449 8.7845 0.1144 14061 +14063 2 277.5493 427.6283 8.6619 0.1144 14062 +14064 2 277.7621 426.5049 8.6091 0.1144 14063 +14065 2 278.0606 425.401 8.6082 0.1144 14064 +14066 2 278.4347 424.3199 8.6515 0.1144 14065 +14067 2 278.5629 423.185 8.7293 0.1144 14066 +14068 2 279.3053 422.3282 8.8576 0.1144 14067 +14069 2 279.7011 421.3306 9.1323 0.1144 14068 +14070 2 280.4207 420.7609 9.371 0.1144 14069 +14071 2 281.3588 420.1466 9.5796 0.1144 14070 +14072 2 282.1356 419.3275 9.7639 0.1144 14071 +14073 2 283.0279 418.6342 9.9298 0.1144 14072 +14074 2 283.7166 417.7625 10.1351 0.1144 14073 +14075 2 284.2863 416.8587 10.4286 0.1144 14074 +14076 2 284.0724 415.9023 10.6968 0.1144 14075 +14077 2 283.1148 415.6713 10.9717 0.1144 14076 +14078 2 282.0738 415.3727 11.2582 0.1144 14077 +14079 2 280.971 415.137 11.5122 0.1144 14078 +14080 2 279.9894 415.0867 11.894 0.1144 14079 +14081 2 278.9358 415.4276 12.2508 0.1144 14080 +14082 2 277.8147 415.6186 12.5151 0.1144 14081 +14083 2 276.8789 416.2753 12.692 0.1144 14082 +14084 2 275.8802 416.8336 12.7912 0.1144 14083 +14085 2 274.8654 417.3621 12.8256 0.1144 14084 +14086 2 273.8507 417.8918 12.8029 0.1144 14085 +14087 2 272.8234 418.3905 12.7563 0.1144 14086 +14088 2 271.7206 418.6594 12.6753 0.1144 14087 +14089 2 270.5983 418.5427 12.5429 0.1144 14088 +14090 2 269.5367 418.1412 12.4262 0.1144 14089 +14091 2 268.5529 417.6595 12.3199 0.1144 14090 +14092 2 267.4146 417.7339 12.2201 0.1144 14091 +14093 2 266.3049 417.5451 12.124 0.1144 14092 +14094 2 265.289 417.0235 12.0198 0.1144 14093 +14095 2 264.2606 416.7912 11.8468 0.1144 14094 +14096 2 263.3431 416.7054 11.5997 0.1144 14095 +14097 2 262.6487 415.8005 11.3911 0.1144 14096 +14098 2 261.9337 414.9231 11.218 0.1144 14097 +14099 2 261.1969 414.0765 11.0482 0.1144 14098 +14100 2 260.4247 413.3261 10.8694 0.1144 14099 +14101 2 259.3448 412.9657 10.7264 0.1144 14100 +14102 2 258.2191 412.7746 10.6127 0.1144 14101 +14103 2 257.0774 412.7106 10.5046 0.1144 14102 +14104 2 256.0043 412.9554 10.3634 0.1144 14103 +14105 2 255.1784 413.6876 10.2049 0.1144 14104 +14106 2 254.3604 414.4609 10.0674 0.1144 14105 +14107 2 253.3091 414.8236 9.9378 0.1144 14106 +14108 2 252.2017 415.0718 9.7805 0.1144 14107 +14109 2 251.2018 415.5877 9.5881 0.1144 14108 +14110 2 250.5978 416.4949 9.3958 0.1144 14109 +14111 2 249.8839 417.3335 9.2094 0.1144 14110 +14112 2 248.8726 417.8037 8.9574 0.1144 14111 +14113 2 247.922 418.3837 8.6313 0.1144 14112 +14114 2 247.0045 419.0278 8.2628 0.1144 14113 +14115 2 246.1293 419.7553 7.9414 0.1144 14114 +14116 2 245.2805 420.5218 7.6797 0.1144 14115 +14117 2 244.7954 421.5091 7.3975 0.1144 14116 +14118 2 243.9614 422.2447 6.7483 0.1144 14117 +14119 2 279.6325 421.4542 9.6343 0.1144 14069 +14120 2 279.0742 422.4334 9.8825 0.1144 14119 +14121 2 278.5514 423.4505 9.9678 0.1144 14120 +14122 2 278.3546 424.5762 10.0331 0.1144 14121 +14123 2 278.3306 425.7202 10.0795 0.1144 14122 +14124 2 278.3329 426.8642 10.1087 0.1144 14123 +14125 2 278.1705 427.9967 10.1226 0.1144 14124 +14126 2 265.0831 443.7176 8.4356 0.1144 14043 +14127 2 263.9906 443.9235 8.3197 0.1144 14126 +14128 2 262.8592 444.0871 8.2805 0.1144 14127 +14129 2 261.8536 444.6236 8.229 0.1144 14128 +14130 2 261.3605 445.6509 8.1416 0.1144 14129 +14131 2 260.8675 446.6782 7.873 0.1144 14130 +14132 2 319.454 437.7241 8.6451 0.1144 13771 +14133 2 320.4584 438.2492 8.6351 0.1144 14132 +14134 2 321.5109 438.6965 8.6633 0.1144 14133 +14135 2 322.4433 439.3566 8.734 0.1144 14134 +14136 2 323.4054 439.9755 8.8482 0.1144 14135 +14137 2 324.5402 439.9046 8.9915 0.1144 14136 +14138 2 324.8354 438.7755 9.3582 0.1144 14137 +14139 2 324.5665 437.6955 9.5518 0.1144 14138 +14140 2 324.5128 436.5973 9.7272 0.1144 14139 +14141 2 324.9109 436.8513 9.8828 0.1144 14140 +14142 2 325.8764 436.7735 10.075 0.1144 14141 +14143 2 326.2677 435.7645 10.6848 0.1144 14142 +14144 2 324.9932 440.2787 9.2487 0.1144 14137 +14145 2 325.913 440.3851 9.6364 0.1144 14144 +14146 2 326.9197 439.9058 10.0499 0.1144 14145 +14147 2 328.0203 439.7021 10.4279 0.1144 14146 +14148 2 329.1471 439.5431 10.7525 0.1144 14147 +14149 2 330.2854 439.5122 10.986 0.1144 14148 +14150 2 331.3802 439.8062 11.1267 0.1144 14149 +14151 2 332.4658 439.6175 11.2022 0.1144 14150 +14152 2 333.5984 439.5374 11.2464 0.1144 14151 +14153 2 334.4987 438.9036 11.2059 0.1144 14152 +14154 2 335.3304 438.1211 11.1963 0.1144 14153 +14155 2 336.1427 437.342 11.301 0.1144 14154 +14156 2 336.8863 436.4726 11.4343 0.1144 14155 +14157 2 337.0476 436.6156 11.2473 0.1144 14156 +14158 2 337.6768 437.477 11.1563 0.1144 14157 +14159 2 337.8175 438.5982 11.1192 0.1144 14158 +14160 2 338.1115 439.6953 11.069 0.1144 14159 +14161 2 338.0589 440.8175 11.0061 0.1144 14160 +14162 2 337.7282 441.902 10.9023 0.1144 14161 +14163 2 337.7317 442.9682 10.7384 0.1144 14162 +14164 2 337.7694 444.0173 10.5432 0.1144 14163 +14165 2 337.5612 445.1132 10.3504 0.1144 14164 +14166 2 337.5235 446.255 10.2304 0.1144 14165 +14167 2 337.051 447.1999 10.2336 0.1144 14166 +14168 2 336.463 448.1563 10.3295 0.1144 14167 +14169 2 335.7022 448.9868 10.4428 0.1144 14168 +14170 2 334.7493 449.6114 10.5423 0.1144 14169 +14171 2 333.8043 450.2555 10.6168 0.1144 14170 +14172 2 332.9852 451.0472 10.659 0.1144 14171 +14173 2 332.2908 451.9544 10.6728 0.1144 14172 +14174 2 331.7177 452.9428 10.6714 0.1144 14173 +14175 2 331.2441 453.9827 10.6661 0.1144 14174 +14176 2 330.6435 454.9528 10.6589 0.1144 14175 +14177 2 330.2019 456.003 10.6485 0.1144 14176 +14178 2 329.5704 456.9468 10.6332 0.1144 14177 +14179 2 328.6048 457.5234 10.6123 0.1144 14178 +14180 2 327.4814 457.5886 10.5862 0.1144 14179 +14181 2 326.4862 458.0976 10.5559 0.1144 14180 +14182 2 325.6419 458.855 10.4791 0.1144 14181 +14183 2 324.5185 458.9751 10.3803 0.1144 14182 +14184 2 323.3779 458.8859 10.31 0.1144 14183 +14185 2 322.2488 459.0666 10.2674 0.1144 14184 +14186 2 321.1059 459.1009 10.2509 0.1144 14185 +14187 2 320.0168 459.4487 10.2586 0.1144 14186 +14188 2 318.9094 459.7141 10.3227 0.1144 14187 +14189 2 317.8959 460.1992 10.4227 0.1144 14188 +14190 2 317.166 461.0686 10.495 0.1144 14189 +14191 2 316.7313 462.1257 10.5396 0.1144 14190 +14192 2 316.1364 463.0878 10.5543 0.1144 14191 +14193 2 315.2544 463.8165 10.5382 0.1144 14192 +14194 2 314.3781 464.5521 10.4929 0.1144 14193 +14195 2 313.4549 465.2213 10.4271 0.1144 14194 +14196 2 312.431 465.576 10.3228 0.1144 14195 +14197 2 311.4197 465.2053 10.1142 0.1144 14196 +14198 2 310.5228 464.5063 9.9157 0.1144 14197 +14199 2 309.603 463.8405 9.7627 0.1144 14198 +14200 2 308.7484 463.1084 9.6519 0.1144 14199 +14201 2 307.6777 462.7274 9.5791 0.1144 14200 +14202 2 306.5588 462.4975 9.5397 0.1144 14201 +14203 2 305.4491 462.2298 9.524 0.1144 14202 +14204 2 304.32 462.1943 9.51 0.1144 14203 +14205 2 303.1897 462.3602 9.4901 0.1144 14204 +14206 2 302.0492 462.4357 9.4608 0.1144 14205 +14207 2 300.9075 462.5066 9.4203 0.1144 14206 +14208 2 299.7658 462.4792 9.3691 0.1144 14207 +14209 2 298.6252 462.3979 9.3059 0.1144 14208 +14210 2 297.5212 462.3007 9.1793 0.1144 14209 +14211 2 296.4687 462.0147 8.9731 0.1144 14210 +14212 2 295.3762 461.6772 8.8188 0.1144 14211 +14213 2 294.2734 461.3763 8.7225 0.1144 14212 +14214 2 293.1694 461.0743 8.6789 0.1144 14213 +14215 2 292.0666 460.7735 8.6821 0.1144 14214 +14216 2 290.9627 460.4726 8.7258 0.1144 14215 +14217 2 289.8599 460.1706 8.7948 0.1144 14216 +14218 2 288.7559 459.8697 8.8691 0.1144 14217 +14219 2 287.6531 459.5688 8.949 0.1144 14218 +14220 2 286.5503 459.2668 9.0387 0.1144 14219 +14221 2 285.4932 458.8584 9.1391 0.1144 14220 +14222 2 284.4167 458.6845 9.25 0.1144 14221 +14223 2 283.3391 458.4191 9.3743 0.1144 14222 +14224 2 282.3998 457.7922 9.548 0.1144 14223 +14225 2 281.4126 457.7407 9.8397 0.1144 14224 +14226 2 280.5202 458.4351 10.106 0.1144 14225 +14227 2 279.4723 458.5278 10.4739 0.1144 14226 +14228 2 278.588 459.2371 10.7772 0.1144 14227 +14229 2 277.8822 460.1374 10.9948 0.1144 14228 +14230 2 277.1271 460.9965 11.1338 0.1144 14229 +14231 2 276.5517 461.6784 11.2077 0.1144 14230 +14232 2 275.7909 462.5329 11.2434 0.1144 14231 +14233 2 275.0302 463.3875 11.2473 0.1144 14232 +14234 2 274.3312 464.2924 11.2473 0.1144 14233 +14235 2 273.6082 465.1801 11.2473 0.1144 14234 +14236 2 272.7479 465.9318 11.2473 0.1144 14235 +14237 2 272.1725 466.9179 11.2473 0.1144 14236 +14238 2 271.9277 468.0356 11.2473 0.1144 14237 +14239 2 271.6531 469.1464 11.2473 0.1144 14238 +14240 2 276.0197 460.4897 11.5656 0.1144 14230 +14241 2 275.1446 459.8857 11.7799 0.1144 14240 +14242 2 274.4776 458.9705 11.9852 0.1144 14241 +14243 2 273.7489 458.0885 12.1447 0.1144 14242 +14244 2 273.0122 457.2133 12.26 0.1144 14243 +14245 2 271.9231 456.8644 12.3721 0.1144 14244 +14246 2 337.7877 436.1637 11.5837 0.1144 14156 +14247 2 338.8253 435.8892 11.888 0.1144 14246 +14248 2 339.9648 435.9006 12.1917 0.1144 14247 +14249 2 341.0859 435.6741 12.4544 0.1144 14248 +14250 2 342.0457 434.8859 12.9105 0.1144 14249 +14251 2 343.0387 435.2474 13.2849 0.1144 14250 +14252 2 343.1302 434.7417 13.4238 0.1144 14251 +14253 2 343.3316 433.6172 13.185 0.1144 14252 +14254 2 343.534 432.4938 13.0816 0.1144 14253 +14255 2 343.6976 431.3646 12.9596 0.1144 14254 +14256 2 343.8761 430.2424 12.8336 0.1144 14255 +14257 2 344.5717 429.5846 12.7067 0.1144 14256 +14258 2 345.7122 429.5869 12.5728 0.1144 14257 +14259 2 346.8162 429.4542 12.3976 0.1144 14258 +14260 2 347.7211 428.8593 12.126 0.1144 14259 +14261 2 348.4681 428.0184 11.8253 0.1144 14260 +14262 2 349.1843 427.1261 11.5511 0.1144 14261 +14263 2 349.7826 426.2647 11.1626 0.1144 14262 +14264 2 350.6211 425.5657 10.7535 0.1144 14263 +14265 2 351.6061 424.9914 10.4257 0.1144 14264 +14266 2 351.9951 423.9801 10.1829 0.1144 14265 +14267 2 351.8269 422.867 9.9864 0.1144 14266 +14268 2 351.7846 421.7402 9.7857 0.1144 14267 +14269 2 351.9642 420.6156 9.637 0.1144 14268 +14270 2 352.9652 420.094 9.5223 0.1144 14269 +14271 2 353.965 419.5368 9.4221 0.1144 14270 +14272 2 354.3872 418.4889 9.2879 0.1144 14271 +14273 2 354.4638 417.3747 9.1471 0.1144 14272 +14274 2 355.2326 416.5293 9.0376 0.1144 14273 +14275 2 355.9579 415.6621 8.8974 0.1144 14274 +14276 2 356.6832 414.7801 8.7946 0.1144 14275 +14277 2 357.516 413.9964 8.7517 0.1144 14276 +14278 2 358.3774 413.2448 8.7701 0.1144 14277 +14279 2 359.1302 412.3926 8.841 0.1144 14278 +14280 2 359.4871 411.3504 8.9572 0.1144 14279 +14281 2 359.5283 410.2887 9.1851 0.1144 14280 +14282 2 360.0546 409.4433 9.5736 0.1144 14281 +14283 2 360.8897 408.6654 9.94 0.1144 14282 +14284 2 361.6459 407.812 10.2852 0.1144 14283 +14285 2 362.4764 407.5431 10.604 0.1144 14284 +14286 2 363.3985 407.2937 10.9471 0.1144 14285 +14287 2 364.356 406.6874 11.2645 0.1144 14286 +14288 2 365.3261 406.438 11.6973 0.1144 14287 +14289 2 366.3729 406.4197 12.9343 0.1144 14288 +14290 2 343.4849 435.6272 13.6049 0.1144 14251 +14291 2 344.4996 435.9761 13.9419 0.1144 14290 +14292 2 345.5486 436.2941 14.3294 0.1144 14291 +14293 2 346.5062 436.2026 14.8143 0.1144 14292 +14294 2 347.4019 435.5357 15.212 0.1144 14293 +14295 2 348.4796 435.1765 15.4967 0.1144 14294 +14296 2 349.5824 435.4167 15.7083 0.1144 14295 +14297 2 349.8844 435.1787 16.353 0.1144 14296 +14298 2 350.4896 434.307 16.8744 0.1144 14297 +14299 2 351.0936 433.3369 17.0561 0.1144 14298 +14300 2 351.4345 432.289 17.3156 0.1144 14299 +14301 2 351.3968 431.1519 17.5704 0.1144 14300 +14302 2 351.6507 430.0388 17.8186 0.1144 14301 +14303 2 351.4254 428.9211 18.0679 0.1144 14302 +14304 2 351.5558 427.7851 18.6641 0.1144 14303 +14305 2 351.6542 426.6582 19.0144 0.1144 14304 +14306 2 351.9013 425.544 19.3422 0.1144 14305 +14307 2 352.241 424.4549 19.6763 0.1144 14306 +14308 2 352.7066 423.4207 20.0348 0.1144 14307 +14309 2 352.8485 422.4003 20.516 0.1144 14308 +14310 2 352.4378 421.4462 21.073 0.1144 14309 +14311 2 352.1667 420.3445 21.5445 0.1144 14310 +14312 2 351.9779 419.2165 21.9291 0.1144 14311 +14313 2 352.0077 418.0737 22.2379 0.1144 14312 +14314 2 352.7135 417.2237 22.5653 0.1144 14313 +14315 2 353.7385 416.7764 22.9065 0.1144 14314 +14316 2 353.9616 416.8564 23.0569 0.1144 14315 +14317 2 355.0827 417.0784 22.8481 0.1144 14316 +14318 2 356.2233 417.1527 22.7747 0.1144 14317 +14319 2 357.3284 416.885 22.6869 0.1144 14318 +14320 2 358.0537 416.162 22.4261 0.1144 14319 +14321 2 359.0913 415.6838 22.2062 0.1144 14320 +14322 2 360.2296 415.574 22.0264 0.1144 14321 +14323 2 361.3736 415.5694 21.8832 0.1144 14322 +14324 2 362.4936 415.3658 21.7353 0.1144 14323 +14325 2 363.6147 415.1679 21.5939 0.1144 14324 +14326 2 364.7392 415.3784 21.5075 0.1144 14325 +14327 2 365.8638 415.5889 21.4437 0.1144 14326 +14328 2 366.9883 415.7982 21.4007 0.1144 14327 +14329 2 368.1129 416.0087 21.3699 0.1144 14328 +14330 2 353.2237 416.4904 23.1913 0.1144 14315 +14331 2 352.1838 416.0774 23.5397 0.1144 14330 +14332 2 351.5077 416.5384 23.8614 0.1144 14331 +14333 2 350.4015 416.4766 24.1957 0.1144 14332 +14334 2 349.3284 416.1426 24.5425 0.1144 14333 +14335 2 348.2142 416.1712 24.9109 0.1144 14334 +14336 2 347.1708 416.3485 25.4113 0.1144 14335 +14337 2 346.3163 415.8143 25.944 0.1144 14336 +14338 2 345.599 414.9814 26.5083 0.1144 14337 +14339 2 344.9412 414.1612 27.1321 0.1144 14338 +14340 2 344.5385 413.1236 27.6565 0.1144 14339 +14341 2 344.4756 411.9899 28.0594 0.1144 14340 +14342 2 344.2902 410.8642 28.3618 0.1144 14341 +14343 2 344.1747 409.727 28.6012 0.1144 14342 +14344 2 344.217 408.6723 28.9394 0.1144 14343 +14345 2 344.1644 407.5694 29.3166 0.1144 14344 +14346 2 343.6473 406.5547 29.6377 0.1144 14345 +14347 2 342.9415 405.6567 29.9211 0.1144 14346 +14348 2 341.9622 405.0984 30.2126 0.1144 14347 +14349 2 340.9818 404.5413 30.4928 0.1144 14348 +14350 2 340.0323 403.9041 30.6858 0.1144 14349 +14351 2 339.1926 403.1273 30.9299 0.1144 14350 +14352 2 352.4401 415.6781 23.6191 0.1144 14331 +14353 2 352.8965 414.6348 23.6339 0.1144 14352 +14354 2 353.0659 413.5125 23.6398 0.1144 14353 +14355 2 352.9686 412.3777 23.6481 0.1144 14354 +14356 2 352.7021 411.2669 23.6596 0.1144 14355 +14357 2 352.5282 410.1389 23.6754 0.1144 14356 +14358 2 352.4584 408.9972 23.6983 0.1144 14357 +14359 2 352.646 407.8772 23.7307 0.1144 14358 +14360 2 353.4033 407.073 23.7751 0.1144 14359 +14361 2 354.4913 406.7904 23.8332 0.1144 14360 +14362 2 355.6307 406.7034 23.9078 0.1144 14361 +14363 2 356.6614 406.2824 24.0673 0.1144 14362 +14364 2 357.6293 405.6807 24.2388 0.1144 14363 +14365 2 358.406 404.8479 24.4246 0.1144 14364 +14366 2 358.811 403.7897 24.6183 0.1144 14365 +14367 2 358.8545 402.6514 24.814 0.1144 14366 +14368 2 358.6554 401.5634 25.1 0.1144 14367 +14369 2 358.668 400.5487 25.5291 0.1144 14368 +14370 2 359.2801 399.5958 26.4312 0.1144 14369 +14371 2 351.2069 429.1762 18.4583 0.1144 14303 +14372 2 351.0707 430.2538 18.9165 0.1144 14371 +14373 2 350.668 431.2354 19.3376 0.1144 14372 +14374 2 350.612 431.955 19.9013 0.1144 14373 +14375 2 351.6187 432.3142 20.4382 0.1144 14374 +14376 2 352.7101 432.1174 20.8865 0.1144 14375 +14377 2 353.7271 431.6037 21.2073 0.1144 14376 +14378 2 354.7407 431.0786 21.4435 0.1144 14377 +14379 2 355.8401 430.9322 21.6282 0.1144 14378 +14380 2 356.9577 431.1484 21.7772 0.1144 14379 +14381 2 358.0377 431.5214 21.932 0.1144 14380 +14382 2 359.1153 431.5729 22.1602 0.1144 14381 +14383 2 359.661 430.859 22.567 0.1144 14382 +14384 2 360.5751 430.4517 23.029 0.1144 14383 +14385 2 361.7008 430.6062 23.4294 0.1144 14384 +14386 2 361.9742 430.2893 22.5893 0.1144 14385 +14387 2 362.4238 429.2563 22.6959 0.1144 14386 +14388 2 362.8734 428.2152 22.7592 0.1144 14387 +14389 2 363.3287 427.1788 22.8647 0.1144 14388 +14390 2 363.8069 426.14 22.9524 0.1144 14389 +14391 2 364.261 425.0898 23.0246 0.1144 14390 +14392 2 363.9476 423.9904 23.0847 0.1144 14391 +14393 2 363.4225 423.0077 23.1355 0.1144 14392 +14394 2 362.7876 422.0868 23.1771 0.1144 14393 +14395 2 362.2384 421.1453 23.2176 0.1144 14394 +14396 2 361.544 420.3239 23.2936 0.1144 14395 +14397 2 361.17 419.26 23.4188 0.1144 14396 +14398 2 361.1619 418.116 23.5243 0.1144 14397 +14399 2 361.6081 417.0749 23.6145 0.1144 14398 +14400 2 362.06 416.0248 23.6933 0.1144 14399 +14401 2 362.267 414.9082 23.7643 0.1144 14400 +14402 2 362.5553 413.8031 23.8308 0.1144 14401 +14403 2 362.8173 412.69 23.9034 0.1144 14402 +14404 2 363.609 411.9235 24.0753 0.1144 14403 +14405 2 364.5333 411.3801 24.2409 0.1144 14404 +14406 2 365.651 411.6226 24.4023 0.1144 14405 +14407 2 366.7275 411.6524 24.5622 0.1144 14406 +14408 2 367.6187 411.3263 24.8507 0.1144 14407 +14409 2 367.7846 412.317 25.1317 0.1144 14408 +14410 2 367.2274 413.262 25.4089 0.1144 14409 +14411 2 366.7035 414.279 25.6173 0.1144 14410 +14412 2 366.5067 415.3967 25.8686 0.1144 14411 +14413 2 362.3609 430.9906 23.7699 0.1144 14385 +14414 2 363.3882 431.4802 24.079 0.1144 14413 +14415 2 364.4807 431.7799 24.379 0.1144 14414 +14416 2 365.4977 432.0957 24.7473 0.1144 14415 +14417 2 366.4175 432.6505 25.1798 0.1144 14416 +14418 2 366.9025 433.5829 25.567 0.1144 14417 +14419 2 367.2549 434.6536 25.9148 0.1144 14418 +14420 2 368.0671 435.3698 26.2141 0.1144 14419 +14421 2 368.7936 436.1935 26.4877 0.1144 14420 +14422 2 369.5234 437.0618 26.6933 0.1144 14421 +14423 2 370.2304 437.9598 26.8272 0.1144 14422 +14424 2 370.8837 438.8979 26.9147 0.1144 14423 +14425 2 371.5437 439.8325 26.9648 0.1144 14424 +14426 2 372.4864 440.4217 26.9878 0.1144 14425 +14427 2 373.508 440.9342 26.9932 0.1144 14426 +14428 2 374.4873 441.5257 26.9934 0.1144 14427 +14429 2 375.4802 442.0931 26.9934 0.1144 14428 +14430 2 376.4126 442.7497 26.9934 0.1144 14429 +14431 2 377.3587 443.3915 26.9934 0.1144 14430 +14432 2 378.267 444.0848 26.9934 0.1144 14431 +14433 2 378.7692 445.0938 26.9934 0.1144 14432 +14434 2 379.5209 445.9461 26.9934 0.1144 14433 +14435 2 380.1134 446.9196 26.9934 0.1144 14434 +14436 2 380.6191 447.9469 26.9934 0.1144 14435 +14437 2 381.4107 448.7637 26.9934 0.1144 14436 +14438 2 382.4289 449.274 26.9934 0.1144 14437 +14439 2 383.2537 450.0599 26.9934 0.1144 14438 +14440 2 384.1277 450.7978 26.9934 0.1144 14439 +14441 2 384.8382 451.6924 26.9934 0.1144 14440 +14442 2 385.2729 452.7483 26.9934 0.1144 14441 +14443 2 385.9581 453.6624 26.9934 0.1144 14442 +14444 2 386.6091 454.6027 26.9934 0.1144 14443 +14445 2 387.339 455.4836 26.9934 0.1144 14444 +14446 2 388.4498 455.7307 26.9934 0.1144 14445 +14447 2 350.2859 435.4453 15.8584 0.1144 14296 +14448 2 351.3533 435.5048 15.9651 0.1144 14447 +14449 2 352.3211 436.023 16.0515 0.1144 14448 +14450 2 353.4537 435.9681 16.1723 0.1144 14449 +14451 2 354.5576 435.8834 16.3849 0.1144 14450 +14452 2 355.6502 436.118 16.6468 0.1144 14451 +14453 2 356.7358 436.4772 16.8795 0.1144 14452 +14454 2 357.8295 436.8147 17.0862 0.1144 14453 +14455 2 358.8453 437.2517 17.3206 0.1144 14454 +14456 2 359.7068 437.9358 17.6056 0.1144 14455 +14457 2 360.479 438.7663 17.8703 0.1144 14456 +14458 2 361.1562 439.6758 18.1152 0.1144 14457 +14459 2 361.9067 440.5212 18.3066 0.1144 14458 +14460 2 362.8185 441.2111 18.4362 0.1144 14459 +14461 2 363.8275 441.7236 18.5098 0.1144 14460 +14462 2 364.9371 441.9844 18.5429 0.1144 14461 +14463 2 366.0743 442.0324 18.5564 0.1144 14462 +14464 2 367.2046 441.878 18.5592 0.1144 14463 +14465 2 368.3177 441.624 18.5456 0.1144 14464 +14466 2 369.4079 441.7636 18.5508 0.1144 14465 +14467 2 370.4764 441.6092 18.5738 0.1144 14466 +14468 2 371.4785 441.0635 18.6018 0.1144 14467 +14469 2 372.539 440.6494 18.6376 0.1144 14468 +14470 2 373.6682 440.5372 18.6835 0.1144 14469 +14471 2 374.8099 440.5922 18.7412 0.1144 14470 +14472 2 375.9527 440.6116 18.8106 0.1144 14471 +14473 2 377.0944 440.6173 18.92 0.1144 14472 +14474 2 378.1515 440.9823 19.0939 0.1144 14473 +14475 2 379.2097 441.409 19.2801 0.1144 14474 +14476 2 380.3114 441.7144 19.4661 0.1144 14475 +14477 2 381.1762 442.4008 19.7196 0.1144 14476 +14478 2 381.9541 443.1364 20.0852 0.1144 14477 +14479 2 382.8831 443.7839 20.4146 0.1144 14478 +14480 2 383.4745 444.746 20.6772 0.1144 14479 +14481 2 383.9722 445.755 20.9531 0.1144 14480 +14482 2 384.6631 446.6359 21.0909 0.1144 14481 +14483 2 384.6322 447.5774 21.4122 0.1144 14482 +14484 2 385.1905 448.5292 21.5932 0.1144 14483 +14485 2 386.0462 449.282 21.7283 0.1144 14484 +14486 2 386.9877 449.9306 21.8217 0.1144 14485 +14487 2 387.9773 450.5026 21.8887 0.1144 14486 +14488 2 388.8891 451.181 21.9183 0.1144 14487 +14489 2 389.6052 452.0619 21.9117 0.1144 14488 +14490 2 390.4449 452.8181 21.8922 0.1144 14489 +14491 2 390.986 453.7619 21.9157 0.1144 14490 +14492 2 390.8396 454.8441 21.9188 0.1144 14491 +14493 2 390.5341 455.9412 21.8478 0.1144 14492 +14494 2 390.2562 457.0349 21.67 0.1144 14493 +14495 2 389.9782 458.1262 21.4072 0.1144 14494 +14496 2 389.7002 459.2176 21.0864 0.1144 14495 +14497 2 389.4233 460.3101 20.7339 0.1144 14496 +14498 2 389.2231 461.413 20.3828 0.1144 14497 +14499 2 389.8272 461.9747 20.095 0.1144 14498 +14500 2 390.8156 462.4494 19.901 0.1144 14499 +14501 2 391.5271 463.3257 19.7818 0.1144 14500 +14502 2 392.0477 464.3427 19.7206 0.1144 14501 +14503 2 392.4572 465.4089 19.7042 0.1144 14502 +14504 2 392.4709 466.5083 19.685 0.1144 14503 +14505 2 392.0065 467.5276 19.6654 0.1144 14504 +14506 2 391.5454 468.5675 19.6877 0.1144 14505 +14507 2 392.241 469.2871 19.8105 0.1144 14506 +14508 2 393.1676 469.9312 20.0212 0.1144 14507 +14509 2 394.0954 470.5741 20.2922 0.1144 14508 +14510 2 395.0221 471.217 20.596 0.1144 14509 +14511 2 395.9487 471.8611 20.899 0.1144 14510 +14512 2 396.8708 472.512 21.1688 0.1144 14511 +14513 2 397.6304 473.3563 21.3292 0.1144 14512 +14514 2 398.5696 473.9935 21.3762 0.1144 14513 +14515 2 399.4082 474.7646 21.3158 0.1144 14514 +14516 2 399.8097 475.8022 21.1144 0.1144 14515 +14517 2 400.2913 476.8341 20.8431 0.1144 14516 +14518 2 400.3622 477.8877 20.4167 0.1144 14517 +14519 2 399.9699 478.8978 19.9088 0.1144 14518 +14520 2 399.6758 479.9927 19.4292 0.1144 14519 +14521 2 400.0717 481.0589 19.033 0.1144 14520 +14522 2 400.3851 481.5965 18.6509 0.1144 14521 +14523 2 400.9388 482.5472 18.2387 0.1144 14522 +14524 2 401.6893 483.2839 17.8561 0.1144 14523 +14525 2 402.7681 483.6615 17.5539 0.1144 14524 +14526 2 403.8469 484.0401 17.3083 0.1144 14525 +14527 2 404.9245 484.4188 17.1097 0.1144 14526 +14528 2 406.0033 484.7975 16.9563 0.1144 14527 +14529 2 407.0821 485.1761 16.8357 0.1144 14528 +14530 2 408.1609 485.5548 16.729 0.1144 14529 +14531 2 409.2397 485.9323 16.6258 0.1144 14530 +14532 2 410.3173 486.311 16.5267 0.1144 14531 +14533 2 411.3961 486.6896 16.432 0.1144 14532 +14534 2 412.4944 487.0042 16.3514 0.1144 14533 +14535 2 413.5686 487.3863 16.2871 0.1144 14534 +14536 2 414.66 487.7112 16.2324 0.1144 14535 +14537 2 415.7937 487.8416 16.1792 0.1144 14536 +14538 2 416.9319 487.7822 16.118 0.1144 14537 +14539 2 418.0668 487.638 16.0392 0.1144 14538 +14540 2 419.1994 487.479 15.9339 0.1144 14539 +14541 2 420.2953 487.1701 15.7974 0.1144 14540 +14542 2 421.2059 486.5421 15.5727 0.1144 14541 +14543 2 421.9266 485.6898 15.2513 0.1144 14542 +14544 2 422.7515 484.953 14.8519 0.1144 14543 +14545 2 423.8142 484.7723 14.4036 0.1144 14544 +14546 2 424.9514 484.6979 13.994 0.1144 14545 +14547 2 426.0817 484.5286 13.624 0.1144 14546 +14548 2 427.1421 484.3707 13.1722 0.1144 14547 +14549 2 428.2701 484.2701 12.7751 0.1144 14548 +14550 2 429.3043 484.1683 12.2818 0.1144 14549 +14551 2 430.3145 484.603 11.7944 0.1144 14550 +14552 2 431.3189 485.1498 11.4023 0.1144 14551 +14553 2 432.194 485.8877 11.0921 0.1144 14552 +14554 2 432.98 486.6862 10.769 0.1144 14553 +14555 2 433.5234 487.2067 10.4901 0.1144 14554 +14556 2 434.3482 487.9961 10.2359 0.1144 14555 +14557 2 435.173 488.7866 9.9709 0.1144 14556 +14558 2 435.9978 489.5771 9.6727 0.1144 14557 +14559 2 436.8227 490.3664 9.3335 0.1144 14558 +14560 2 437.6475 491.157 8.9241 0.1144 14559 +14561 2 438.4723 491.9463 8.4545 0.1144 14560 +14562 2 439.185 492.6739 7.7971 0.1144 14561 +14563 2 439.8119 493.3408 6.9514 0.1144 14562 +14564 2 440.3176 494.033 5.9756 0.1144 14563 +14565 2 439.5248 494.6244 3.999 0.1144 14564 +14566 2 399.6839 481.449 19.1204 0.1144 14521 +14567 2 398.8487 482.2303 19.0694 0.1144 14566 +14568 2 397.9484 482.9339 19.0483 0.1144 14567 +14569 2 397.0138 483.594 19.02 0.1144 14568 +14570 2 396.2839 484.4348 18.984 0.1144 14569 +14571 2 395.9132 485.5033 18.9318 0.1144 14570 +14572 2 395.49 486.5352 18.8331 0.1144 14571 +14573 2 394.6468 487.2296 18.7152 0.1144 14572 +14574 2 393.5738 487.6117 18.6153 0.1144 14573 +14575 2 392.4492 487.7947 18.5292 0.1144 14574 +14576 2 391.3441 488.0521 18.4528 0.1144 14575 +14577 2 390.342 488.5864 18.3821 0.1144 14576 +14578 2 389.4176 489.2591 18.3114 0.1144 14577 +14579 2 388.4555 489.8585 18.1975 0.1144 14578 +14580 2 387.3836 490.2097 18.0349 0.1144 14579 +14581 2 386.2533 490.3733 17.8582 0.1144 14580 +14582 2 385.1184 490.514 17.6694 0.1144 14581 +14583 2 383.9836 490.6559 17.4544 0.1144 14582 +14584 2 382.8693 490.9018 17.1973 0.1144 14583 +14585 2 381.8455 491.3892 16.8486 0.1144 14584 +14586 2 381.071 492.2014 16.4245 0.1144 14585 +14587 2 380.4967 492.2575 15.7263 0.1144 14586 +14588 2 379.5414 492.031 14.8762 0.1144 14587 +14589 2 378.8242 491.8159 13.8324 0.1144 14588 +14590 2 378.0428 491.5482 11.2473 0.1144 14589 +14591 2 385.4491 446.7549 21.3454 0.1144 14482 +14592 2 386.5244 447.1404 20.9154 0.1144 14591 +14593 2 387.641 447.3315 20.7276 0.1144 14592 +14594 2 388.7575 447.5236 20.4987 0.1144 14593 +14595 2 389.8752 447.7147 20.2493 0.1144 14594 +14596 2 390.9917 447.9057 19.6826 0.1144 14595 +14597 2 341.2369 436.015 12.1341 0.1144 14249 +14598 2 341.8855 436.8444 11.1348 0.1144 14597 +14599 2 342.7493 437.5388 10.7194 0.1144 14598 +14600 2 343.772 437.7859 10.2706 0.1144 14599 +14601 2 344.8714 437.5388 9.8264 0.1144 14600 +14602 2 345.8415 437.3558 9.2759 0.1144 14601 +14603 2 346.7979 437.6818 8.6683 0.1144 14602 +14604 2 347.2051 436.8616 8.1511 0.1144 14603 +14605 2 347.6776 435.8331 7.6934 0.1144 14604 +14606 2 348.3743 434.9294 7.3372 0.1144 14605 +14607 2 348.7026 433.8391 7.0673 0.1144 14606 +14608 2 348.9646 433.7934 6.8039 0.1144 14607 +14609 2 349.675 433.1424 6.5061 0.1144 14608 +14610 2 350.0915 432.098 6.2252 0.1144 14609 +14611 2 350.9094 431.6712 5.9764 0.1144 14610 +14612 2 351.9219 431.2537 5.7875 0.1144 14611 +14613 2 352.9114 430.6828 5.6547 0.1144 14612 +14614 2 354.0062 430.4003 5.5728 0.1144 14613 +14615 2 354.8379 429.7139 5.526 0.1144 14614 +14616 2 355.7051 429.0114 5.4378 0.1144 14615 +14617 2 356.5265 428.2278 5.3666 0.1144 14616 +14618 2 357.1259 427.2554 5.3253 0.1144 14617 +14619 2 358.2516 427.2337 5.3104 0.1144 14618 +14620 2 359.1851 426.5816 5.3239 0.1144 14619 +14621 2 360.2559 426.2441 5.6235 0.1144 14620 +14622 2 348.5711 433.4204 7.3108 0.1144 14607 +14623 2 348.1375 432.3656 7.2414 0.1144 14622 +14624 2 347.6696 431.3223 7.2098 0.1144 14623 +14625 2 347.0541 430.3762 7.1645 0.1144 14624 +14626 2 346.2899 429.5354 7.1359 0.1144 14625 +14627 2 345.6745 428.603 7.0611 0.1144 14626 +14628 2 345.4216 427.5139 6.9288 0.1144 14627 +14629 2 345.0018 426.6823 6.6192 0.1144 14628 +14630 2 344.9972 427.7622 6.3331 0.1144 14629 +14631 2 344.9595 428.9062 6.0843 0.1144 14630 +14632 2 344.5293 429.9495 5.816 0.1144 14631 +14633 2 343.7903 430.7709 5.5087 0.1144 14632 +14634 2 343.1165 431.6953 5.0613 0.1144 14633 +14635 2 335.0353 415.844 10.2238 0.1144 13746 +14636 2 335.5043 416.8747 10.5977 0.1144 14635 +14637 2 335.9345 417.9215 10.7703 0.1144 14636 +14638 2 335.9619 419.0506 10.9398 0.1144 14637 +14639 2 335.4002 420.0345 11.0705 0.1144 14638 +14640 2 334.5639 420.8112 11.1626 0.1144 14639 +14641 2 333.7277 421.5903 11.2198 0.1144 14640 +14642 2 333.0253 422.4929 11.2457 0.1144 14641 +14643 2 332.4327 423.471 11.2542 0.1144 14642 +14644 2 331.744 424.384 11.2575 0.1144 14643 +14645 2 330.8608 425.1093 11.2615 0.1144 14644 +14646 2 330.1881 426.0336 11.2671 0.1144 14645 +14647 2 329.5418 426.9763 11.275 0.1144 14646 +14648 2 328.6849 427.7347 11.286 0.1144 14647 +14649 2 327.8201 428.4772 11.3012 0.1144 14648 +14650 2 326.7779 428.9451 11.3229 0.1144 14649 +14651 2 325.9016 429.6761 11.3539 0.1144 14650 +14652 2 325.2335 430.6039 11.3961 0.1144 14651 +14653 2 324.7164 431.6243 11.4517 0.1144 14652 +14654 2 324.2382 432.6585 11.5284 0.1144 14653 +14655 2 323.4912 433.5119 11.666 0.1144 14654 +14656 2 322.5691 434.1709 11.8418 0.1144 14655 +14657 2 321.5315 434.6525 12.0117 0.1144 14656 +14658 2 320.6094 435.2634 12.2151 0.1144 14657 +14659 2 319.9104 436.1145 12.5043 0.1144 14658 +14660 2 319.144 436.9577 12.7771 0.1144 14659 +14661 2 318.6315 437.9255 13.0094 0.1144 14660 +14662 2 318.2585 438.9974 13.2124 0.1144 14661 +14663 2 317.6019 439.9046 13.4309 0.1144 14662 +14664 2 316.6729 440.4812 13.7011 0.1144 14663 +14665 2 315.8046 441.0818 14.0502 0.1144 14664 +14666 2 315.1251 441.9684 14.3716 0.1144 14665 +14667 2 314.282 442.696 14.5354 0.1144 14666 +14668 2 313.5921 443.5986 14.6259 0.1144 14667 +14669 2 313.0556 444.6076 14.6632 0.1144 14668 +14670 2 311.9711 444.9313 14.6602 0.1144 14669 +14671 2 310.8362 445.0789 14.6213 0.1144 14670 +14672 2 346.7567 382.9574 12.9343 0.1144 13633 +14673 2 346.5039 382.1177 12.8697 0.1144 14672 +14674 2 345.4594 381.6498 12.8448 0.1144 14673 +14675 2 344.3703 381.3444 12.8141 0.1144 14674 +14676 2 343.2332 381.2643 12.7621 0.1144 14675 +14677 2 342.0949 381.2391 12.6723 0.1144 14676 +14678 2 341.0447 381.5286 12.5756 0.1144 14677 +14679 2 340.1558 382.2413 12.5035 0.1144 14678 +14680 2 339.4237 383.113 12.4552 0.1144 14679 +14681 2 338.6949 383.9882 12.4296 0.1144 14680 +14682 2 337.7466 384.5762 12.4265 0.1144 14681 +14683 2 336.646 384.8782 12.4424 0.1144 14682 +14684 2 335.6313 385.3484 12.4691 0.1144 14683 +14685 2 335.0147 386.2544 12.5018 0.1144 14684 +14686 2 334.4026 387.1914 12.5614 0.1144 14685 +14687 2 333.468 387.7943 12.6597 0.1144 14686 +14688 2 332.3595 387.9533 12.7557 0.1144 14687 +14689 2 331.2258 387.8297 12.8286 0.1144 14688 +14690 2 330.1069 387.5906 12.8796 0.1144 14689 +14691 2 329.6962 388.2644 12.9106 0.1144 14690 +14692 2 328.9286 388.825 12.9233 0.1144 14691 +14693 2 327.9219 388.4669 12.9233 0.1144 14692 +14694 2 327.581 387.4545 12.9189 0.1144 14693 +14695 2 327.5146 386.3128 12.9128 0.1144 14694 +14696 2 327.0868 385.2729 12.9044 0.1144 14695 +14697 2 326.3043 384.4538 12.8923 0.1144 14696 +14698 2 325.2346 384.1197 12.8748 0.1144 14697 +14699 2 324.0975 384.1426 12.8509 0.1144 14698 +14700 2 323.0084 384.4721 12.8207 0.1144 14699 +14701 2 321.9422 384.8874 12.7849 0.1144 14700 +14702 2 321.0602 385.5829 12.6944 0.1144 14701 +14703 2 320.7158 386.6468 12.5898 0.1144 14702 +14704 2 320.4538 387.7599 12.5054 0.1144 14703 +14705 2 320.2422 388.8845 12.4434 0.1144 14704 +14706 2 319.7297 389.9015 12.4018 0.1144 14705 +14707 2 318.9735 390.7561 12.379 0.1144 14706 +14708 2 318.7928 391.8726 12.3726 0.1144 14707 +14709 2 318.3283 392.9148 12.3721 0.1144 14708 +14710 2 317.5264 393.7305 12.3721 0.1144 14709 +14711 2 316.8114 394.6228 12.3721 0.1144 14710 +14712 2 337.5532 372.976 13.5651 0.1144 13618 +14713 2 338.5885 373.3398 13.1477 0.1144 14712 +14714 2 339.7222 373.222 12.9962 0.1144 14713 +14715 2 340.7015 372.6317 12.8641 0.1144 14714 +14716 2 341.8981 372.8376 12.879 0.1144 14715 +14717 2 342.7321 373.5984 12.8564 0.1144 14716 +14718 2 343.8143 373.5743 12.8246 0.1144 14717 +14719 2 344.9377 373.357 12.7818 0.1144 14718 +14720 2 346.0543 373.5606 12.7259 0.1144 14719 +14721 2 346.9638 374.2504 12.6467 0.1144 14720 +14722 2 348.0242 374.628 12.4871 0.1144 14721 +14723 2 349.071 375.0913 12.339 0.1144 14722 +14724 2 350.1098 375.558 12.1685 0.1144 14723 +14725 2 351.1897 375.8944 11.9764 0.1144 14724 +14726 2 352.3326 375.8738 11.8138 0.1144 14725 +14727 2 353.4617 376.0477 11.6735 0.1144 14726 +14728 2 354.5325 376.2902 11.547 0.1144 14727 +14729 2 355.5152 375.7285 11.4149 0.1144 14728 +14730 2 356.6248 375.5374 11.2448 0.1144 14729 +14731 2 357.6979 375.5237 10.9407 0.1144 14730 +14732 2 358.8408 375.5123 10.6509 0.1144 14731 +14733 2 359.9642 375.4242 10.3536 0.1144 14732 +14734 2 361.0315 375.1348 9.9853 0.1144 14733 +14735 2 362.1607 375.0684 9.6151 0.1144 14734 +14736 2 363.2486 374.8991 9.2803 0.1144 14735 +14737 2 364.1535 374.2402 8.928 0.1144 14736 +14738 2 365.0996 373.7379 8.5709 0.1144 14737 +14739 2 366.2173 373.683 8.2114 0.1144 14738 +14740 2 367.2492 373.4279 7.8833 0.1144 14739 +14741 2 368.2353 372.8742 7.6691 0.1144 14740 +14742 2 369.3004 372.5047 7.4678 0.1144 14741 +14743 2 370.3002 372.0437 7.2623 0.1144 14742 +14744 2 370.9271 371.1777 7.0243 0.1144 14743 +14745 2 371.7016 370.553 6.7854 0.1144 14744 +14746 2 372.6637 370.0771 6.6951 0.1144 14745 +14747 2 373.4416 369.3026 6.6828 0.1144 14746 +14748 2 374.1967 368.4664 6.6123 0.1144 14747 +14749 2 375.041 367.7308 6.462 0.1144 14748 +14750 2 376.0706 367.2858 6.2971 0.1144 14749 +14751 2 376.9274 366.5822 6.1354 0.1144 14750 +14752 2 377.9067 366.0457 5.9678 0.1144 14751 +14753 2 378.9523 366.3157 5.7511 0.1144 14752 +14754 2 380.0391 366.1647 5.4939 0.1144 14753 +14755 2 381.1316 365.8363 5.2822 0.1144 14754 +14756 2 382.223 365.5 5.0944 0.1144 14755 +14757 2 383.288 365.1156 4.9017 0.1144 14756 +14758 2 383.9916 364.2176 4.7705 0.1144 14757 +14759 2 384.7501 363.3973 4.7569 0.1144 14758 +14760 2 385.8426 363.0919 4.7696 0.1144 14759 +14761 2 386.7601 362.4135 4.767 0.1144 14760 +14762 2 387.8274 362.0085 4.7448 0.1144 14761 +14763 2 388.9486 361.8003 4.6879 0.1144 14762 +14764 2 390.0308 361.607 4.5283 0.1144 14763 +14765 2 390.922 360.9274 4.2947 0.1144 14764 +14766 2 391.7765 360.185 4.0902 0.1144 14765 +14767 2 392.3588 359.2046 3.9214 0.1144 14766 +14768 2 392.7832 358.1452 3.7707 0.1144 14767 +14769 2 393.3209 357.1717 3.5989 0.1144 14768 +14770 2 394.2407 356.6397 3.4547 0.1144 14769 +14771 2 395.3744 356.6855 3.3393 0.1144 14770 +14772 2 396.5058 356.5116 3.2376 0.1144 14771 +14773 2 397.6407 356.3754 3.142 0.1144 14772 +14774 2 398.6565 356.221 2.9552 0.1144 14773 +14775 2 399.3384 356.2771 2.7856 0.1144 14774 +14776 2 400.3794 356.5127 2.7013 0.1144 14775 +14777 2 401.5017 356.7301 2.6267 0.1144 14776 +14778 2 402.6262 356.777 2.5004 0.1144 14777 +14779 2 403.7107 357.1099 2.3929 0.1144 14778 +14780 2 404.8284 357.0653 2.3718 0.1144 14779 +14781 2 405.9255 356.8022 2.2828 0.1144 14780 +14782 2 407.0672 356.7518 2.1934 0.1144 14781 +14783 2 408.1666 356.4441 2.1182 0.1144 14782 +14784 2 408.9983 355.6833 1.9974 0.1144 14783 +14785 2 409.6698 354.759 1.877 0.1144 14784 +14786 2 410.5381 354.0154 1.687 0.1144 14785 +14787 2 339.736 372.1947 12.7536 0.1144 14715 +14788 2 339.0656 371.7588 12.5058 0.1144 14787 +14789 2 339.8675 370.95 12.3369 0.1144 14788 +14790 2 340.2336 370.1435 12.25 0.1144 14789 +14791 2 339.5323 370.0211 12.274 0.1144 14790 +14792 2 340.5024 369.52 12.346 0.1144 14791 +14793 2 341.619 369.2821 12.446 0.1144 14792 +14794 2 342.7596 369.2203 12.5707 0.1144 14793 +14795 2 343.8772 369.0018 12.6881 0.1144 14794 +14796 2 344.511 368.1232 12.8473 0.1144 14795 +14797 2 345.2546 367.4448 13.1613 0.1144 14796 +14798 2 345.9891 366.5799 13.3892 0.1144 14797 +14799 2 346.6835 365.6739 13.5218 0.1144 14798 +14800 2 347.3939 364.7816 13.5757 0.1144 14799 +14801 2 348.1947 363.9659 13.5883 0.1144 14800 +14802 2 348.7221 362.9523 13.5637 0.1144 14801 +14803 2 349.1408 361.9136 13.5939 0.1144 14802 +14804 2 349.0436 362.5405 14.1848 0.1144 14803 +14805 2 348.9486 363.6032 14.6877 0.1144 14804 +14806 2 348.674 364.7106 14.8634 0.1144 14805 +14807 2 348.4521 365.8318 14.9978 0.1144 14806 +14808 2 348.0426 366.9002 15.0936 0.1144 14807 +14809 2 347.7325 368.0008 15.1541 0.1144 14808 +14810 2 347.4134 369.1002 15.1829 0.1144 14809 +14811 2 347.053 370.1858 15.1838 0.1144 14810 +14812 2 346.5519 371.2131 15.1838 0.1144 14811 +14813 2 345.9296 372.1729 15.1838 0.1144 14812 +14814 2 345.607 373.27 15.1838 0.1144 14813 +14815 2 350.0079 361.901 13.6051 0.1144 14803 +14816 2 350.4736 361.1448 13.5171 0.1144 14815 +14817 2 350.2001 360.0923 13.3542 0.1144 14816 +14818 2 350.1338 358.9883 13.221 0.1144 14817 +14819 2 350.7493 358.072 13.1172 0.1144 14818 +14820 2 351.5272 357.2334 13.0435 0.1144 14819 +14821 2 352.5728 356.8491 13.0132 0.1144 14820 +14822 2 353.6733 356.539 13.0222 0.1144 14821 +14823 2 354.5977 355.887 13.0523 0.1144 14822 +14824 2 354.648 354.7773 13.0906 0.1144 14823 +14825 2 354.7864 353.663 13.202 0.1144 14824 +14826 2 355.1422 352.5774 13.2938 0.1144 14825 +14827 2 355.2829 351.4437 13.3599 0.1144 14826 +14828 2 354.8322 350.4015 13.4007 0.1144 14827 +14829 2 354.0257 349.5927 13.4166 0.1144 14828 +14830 2 353.9742 348.2405 13.3719 0.1144 14829 +14831 2 354.4135 347.22 13.3232 0.1144 14830 +14832 2 355.339 346.6057 13.258 0.1144 14831 +14833 2 356.4006 346.6755 13.162 0.1144 14832 +14834 2 357.246 347.4362 13.0045 0.1144 14833 +14835 2 358.0709 348.2187 12.812 0.1144 14834 +14836 2 358.9117 348.9944 12.6245 0.1144 14835 +14837 2 359.4059 349.8489 12.3411 0.1144 14836 +14838 2 359.6759 350.819 11.9684 0.1144 14837 +14839 2 360.344 351.7205 11.6788 0.1144 14838 +14840 2 361.2798 352.3657 11.4699 0.1144 14839 +14841 2 362.1915 353.0361 11.3274 0.1144 14840 +14842 2 362.9683 353.8747 11.2388 0.1144 14841 +14843 2 363.7542 354.7029 11.1961 0.1144 14842 +14844 2 364.6603 355.3916 11.1739 0.1144 14843 +14845 2 365.5286 356.1215 11.1456 0.1144 14844 +14846 2 366.255 357.0035 11.1101 0.1144 14845 +14847 2 366.954 357.9073 11.0517 0.1144 14846 +14848 2 367.6278 358.8225 10.951 0.1144 14847 +14849 2 368.3245 359.7228 10.8418 0.1144 14848 +14850 2 369.0738 360.5865 10.7522 0.1144 14849 +14851 2 369.8998 361.3747 10.6793 0.1144 14850 +14852 2 370.8276 362.0394 10.6187 0.1144 14851 +14853 2 371.7462 362.7178 10.5657 0.1144 14852 +14854 2 372.5916 363.4877 10.5131 0.1144 14853 +14855 2 373.4188 364.2771 10.4503 0.1144 14854 +14856 2 374.199 365.1099 10.3541 0.1144 14855 +14857 2 375.0009 365.9107 10.196 0.1144 14856 +14858 2 375.8509 366.6703 10.0087 0.1144 14857 +14859 2 376.384 367.6358 9.8167 0.1144 14858 +14860 2 376.8714 368.6643 9.6166 0.1144 14859 +14861 2 377.4742 369.5818 9.3183 0.1144 14860 +14862 2 377.1551 370.537 8.8885 0.1144 14861 +14863 2 377.2146 371.673 8.5118 0.1144 14862 +14864 2 377.2889 372.8056 8.1294 0.1144 14863 +14865 2 377.2546 373.937 7.7626 0.1144 14864 +14866 2 377.5841 375.0284 7.4323 0.1144 14865 +14867 2 377.8529 376.1003 7.0577 0.1144 14866 +14868 2 378.5485 376.9709 6.6496 0.1144 14867 +14869 2 379.355 377.7454 6.2136 0.1144 14868 +14870 2 379.935 378.7029 5.7517 0.1144 14869 +14871 2 380.5585 379.6021 5.2654 0.1144 14870 +14872 2 380.8147 380.4166 4.8506 0.1144 14871 +14873 2 379.9338 380.4315 4.4851 0.1144 14872 +14874 2 380.0837 380.1455 3.9971 0.1144 14873 +14875 2 380.7552 380.9749 3.4841 0.1144 14874 +14876 2 380.6019 381.7631 2.9775 0.1144 14875 +14877 2 379.7336 382.2436 2.5418 0.1144 14876 +14878 2 378.6892 382.5742 1.687 0.1144 14877 +14879 3 324.8136 359.0375 19.8075 0.3295 1 +14880 3 324.491 357.9668 19.531 0.3267 14879 +14881 3 324.944 357.1225 19.2763 0.3254 14880 +14882 3 325.8592 356.4532 19.0326 0.324 14881 +14883 3 325.6259 355.6868 18.6551 0.3226 14882 +14884 3 324.7004 355.18 18.1835 0.3212 14883 +14885 3 324.2062 354.2156 17.7026 0.3199 14884 +14886 3 323.8481 353.1311 17.2875 0.3185 14885 +14887 3 323.3344 352.1152 16.9208 0.3171 14886 +14888 3 322.64 351.2114 16.6046 0.3157 14887 +14889 3 321.8724 350.366 16.3419 0.3144 14888 +14890 3 321.0258 349.6682 16.0156 0.313 14889 +14891 3 320.32 348.7759 15.7293 0.3116 14890 +14892 3 319.8086 347.7531 15.4698 0.3103 14891 +14893 3 319.4906 346.68 15.1477 0.3089 14892 +14894 3 319.8361 345.5429 14.4843 0.3089 14893 +14895 3 320.0283 344.4206 14.1417 0.2831 14894 +14896 3 320.6952 343.9196 13.6846 0.2703 14895 +14897 3 321.1483 344.9229 13.3131 0.2574 14896 +14898 3 321.464 344.3371 13.0328 0.2574 14897 +14899 3 322.0795 343.3739 12.8232 0.2567 14898 +14900 3 322.7235 342.4335 12.6476 0.2564 14899 +14901 3 323.4145 341.5812 12.4183 0.2561 14900 +14902 3 324.1787 340.7484 12.2349 0.2558 14901 +14903 3 324.9589 339.9121 12.1051 0.2554 14902 +14904 3 325.7529 339.1022 12.0724 0.2551 14903 +14905 3 326.461 338.2259 12.023 0.2548 14904 +14906 3 327.2126 337.3667 12.006 0.2544 14905 +14907 3 328.1381 336.7192 12.0729 0.2541 14906 +14908 3 328.9664 335.9482 12.1854 0.2538 14907 +14909 3 329.6653 335.0456 12.2747 0.2535 14908 +14910 3 330.0783 333.9839 12.3229 0.2531 14909 +14911 3 330.521 332.9292 12.3383 0.2528 14910 +14912 3 330.9878 331.8847 12.3144 0.2525 14911 +14913 3 331.3516 330.8162 12.1921 0.2521 14912 +14914 3 330.9523 329.9033 12.0033 0.2518 14913 +14915 3 331.6902 329.0361 11.8364 0.2515 14914 +14916 3 332.5734 328.312 11.69 0.2512 14915 +14917 3 333.2598 327.4185 11.5562 0.2508 14916 +14918 3 333.5458 326.3191 11.4084 0.2505 14917 +14919 3 333.6693 325.1889 11.2412 0.2502 14918 +14920 3 333.9462 324.0895 11.0523 0.2498 14919 +14921 3 334.4335 323.0645 10.862 0.2495 14920 +14922 3 334.9415 322.068 10.7151 0.2492 14921 +14923 3 335.1073 320.9481 10.5314 0.2489 14922 +14924 3 335.1634 319.8086 10.3466 0.2485 14923 +14925 3 335.3842 318.723 10.1092 0.2482 14924 +14926 3 335.9688 317.7815 9.821 0.2479 14925 +14927 3 336.7032 316.9052 9.5739 0.2475 14926 +14928 3 337.432 316.0231 9.3539 0.2472 14927 +14929 3 338.1538 315.1457 9.1364 0.2469 14928 +14930 3 338.8093 314.2271 8.8905 0.2466 14929 +14931 3 339.6273 313.432 8.665 0.2462 14930 +14932 3 340.4269 312.6769 8.401 0.2459 14931 +14933 3 340.8342 311.6931 8.0367 0.2456 14932 +14934 3 341.2632 310.7825 7.6998 0.2452 14933 +14935 3 342.334 310.4576 7.3459 0.2449 14934 +14936 3 343.1908 310.0251 6.939 0.2446 14935 +14937 3 343.5295 308.9784 6.5498 0.2443 14936 +14938 3 343.7342 307.855 6.2802 0.2439 14937 +14939 3 343.9779 306.7407 6.0749 0.2436 14938 +14940 3 344.2902 305.6436 5.906 0.2433 14939 +14941 3 344.5888 304.5397 5.7847 0.2429 14940 +14942 3 345.0407 303.5078 5.6672 0.2426 14941 +14943 3 345.6825 302.5708 5.5429 0.2423 14942 +14944 3 346.3757 301.6671 5.4506 0.2419 14943 +14945 3 347.2806 301.0356 5.374 0.2416 14944 +14946 3 348.3434 300.6329 5.2721 0.2413 14945 +14947 3 349.1637 299.9088 5.1045 0.241 14946 +14948 3 349.8295 298.9947 4.8801 0.2406 14947 +14949 3 350.5914 298.1664 4.6059 0.2403 14948 +14950 3 351.2572 297.2673 4.3097 0.24 14949 +14951 3 351.8406 296.288 4.0344 0.2396 14950 +14952 3 352.503 295.3568 3.812 0.2393 14951 +14953 3 353.0201 294.3489 3.63 0.239 14952 +14954 3 353.4788 293.3147 3.4334 0.2387 14953 +14955 3 354.0028 292.308 3.2357 0.2383 14954 +14956 3 354.4192 291.2578 3.0342 0.238 14955 +14957 3 354.6183 290.1481 2.8316 0.2377 14956 +14958 3 355.0026 289.0934 2.6693 0.2373 14957 +14959 3 355.7039 288.2056 2.5908 0.237 14958 +14960 3 356.459 287.3499 2.5786 0.2367 14959 +14961 3 357.1602 286.4645 2.6455 0.2364 14960 +14962 3 357.7734 285.5081 2.7307 0.236 14961 +14963 3 358.5674 284.7119 2.7642 0.2357 14962 +14964 3 359.4162 283.95 2.7523 0.2354 14963 +14965 3 360.0763 283.0279 2.711 0.235 14964 +14966 3 360.805 282.1539 2.6722 0.2347 14965 +14967 3 361.6699 281.408 2.6253 0.2344 14966 +14968 3 362.5107 280.6335 2.5713 0.2341 14967 +14969 3 363.2394 279.7618 2.4782 0.2337 14968 +14970 3 363.816 278.7825 2.3506 0.2334 14969 +14971 3 364.3732 277.7872 2.2029 0.2331 14970 +14972 3 365.1351 276.9441 2.0591 0.2327 14971 +14973 3 366.0354 276.244 1.9188 0.2324 14972 +14974 3 366.8396 275.442 1.7727 0.2321 14973 +14975 3 367.4963 274.5108 1.6734 0.2318 14974 +14976 3 367.9779 273.4755 1.6202 0.2314 14975 +14977 3 368.098 272.3486 1.5878 0.2311 14976 +14978 3 368.9148 271.6096 1.559 0.2308 14977 +14979 3 369.8689 270.9793 1.5309 0.2304 14978 +14980 3 370.751 270.2517 1.5001 0.2301 14979 +14981 3 371.482 269.4028 1.3847 0.2298 14980 +14982 3 372.4155 268.7462 1.2848 0.2295 14981 +14983 3 372.9634 267.7463 1.1248 0.2291 14982 +14984 3 320.5099 344.5213 11.9087 0.2368 14897 +14985 3 319.5398 343.9459 11.3896 0.236 14984 +14986 3 318.6257 343.2744 11.173 0.2357 14985 +14987 3 317.7048 342.6108 10.926 0.2353 14986 +14988 3 316.8251 341.9027 10.6358 0.2349 14987 +14989 3 316.1169 341.0321 10.3566 0.2345 14988 +14990 3 316.0472 339.9922 10.0451 0.2341 14989 +14991 3 316.3835 338.91 9.69 0.2338 14990 +14992 3 316.0632 337.8964 9.29 0.2334 14991 +14993 3 315.9453 336.8565 8.763 0.233 14992 +14994 3 316.1112 335.796 8.1337 0.2326 14993 +14995 3 316.7988 335.0284 7.4222 0.2322 14994 +14996 3 316.9383 333.953 6.6997 0.2319 14995 +14997 3 317.6247 334.0835 6.072 0.2315 14996 +14998 3 318.3638 334.0022 5.4974 0.2311 14997 +14999 3 318.6772 332.9704 4.972 0.2307 14998 +15000 3 318.1029 332.0609 4.4826 0.2303 14999 +15001 3 317.6899 331.339 3.8228 0.2299 15000 +15002 3 317.5412 330.2556 3.2013 0.2296 15001 +15003 3 317.7529 329.1311 2.2495 0.2292 15002 +15004 3 318.5148 346.4421 15.1116 0.2574 14893 +15005 3 317.4062 346.4661 15.0495 0.2566 15004 +15006 3 316.5139 347.0255 15.1396 0.2562 15005 +15007 3 315.593 347.379 15.4614 0.2557 15006 +15008 3 314.4833 347.6033 15.7916 0.2553 15007 +15009 3 313.4732 348.0963 16.1444 0.2549 15008 +15010 3 312.3326 348.1421 16.4298 0.2545 15009 +15011 3 311.2241 348.3228 16.5604 0.2541 15010 +15012 3 310.0858 348.4349 16.6377 0.2537 15011 +15013 3 308.9441 348.4052 16.6907 0.2533 15012 +15014 3 307.8447 348.1856 16.8267 0.2528 15013 +15015 3 306.7087 348.3228 16.9694 0.2524 15014 +15016 3 305.6711 348.6386 17.1295 0.252 15015 +15017 3 305.0693 349.5847 17.3504 0.2516 15016 +15018 3 304.2056 350.2939 17.6191 0.2512 15017 +15019 3 303.3213 350.9517 17.9209 0.2508 15018 +15020 3 302.4644 351.7045 18.132 0.2504 15019 +15021 3 301.7197 352.5728 18.2679 0.2499 15020 +15022 3 300.9624 353.4285 18.33 0.2495 15021 +15023 3 300.252 354.2957 18.3214 0.2491 15022 +15024 3 299.6902 355.2486 18.2557 0.2487 15023 +15025 3 298.7224 355.8286 18.1514 0.2483 15024 +15026 3 297.6654 356.1993 17.9756 0.2479 15025 +15027 3 296.6163 356.4464 17.6731 0.2474 15026 +15028 3 295.5066 356.5036 17.3559 0.247 15027 +15029 3 294.3809 356.3503 17.0998 0.2466 15028 +15030 3 293.2907 356.0094 16.8972 0.2462 15029 +15031 3 292.1925 355.9956 16.7379 0.2458 15030 +15032 3 291.1274 356.3926 16.6118 0.2454 15031 +15033 3 290.2248 357.071 16.5022 0.245 15032 +15034 3 289.3405 357.762 16.3288 0.2446 15033 +15035 3 288.2811 358.1246 16.1264 0.2441 15034 +15036 3 287.3636 358.6291 15.8085 0.2437 15035 +15037 3 286.3684 359.1256 15.4927 0.2433 15036 +15038 3 285.2804 359.4734 15.2303 0.2429 15037 +15039 3 284.2577 359.9779 15.0171 0.2425 15038 +15040 3 283.4031 360.7112 14.793 0.2421 15039 +15041 3 282.7636 361.6115 14.5192 0.2416 15040 +15042 3 282.028 362.4844 14.3145 0.2412 15041 +15043 3 281.0922 363.1399 14.1576 0.2408 15042 +15044 3 280.0192 363.4968 14.0343 0.2404 15043 +15045 3 279.4895 364.5059 13.9362 0.24 15044 +15046 3 279.2481 365.5927 13.8554 0.2396 15045 +15047 3 278.2574 365.937 13.7769 0.2392 15046 +15048 3 277.1935 365.7311 13.6785 0.2388 15047 +15049 3 276.2474 366.2116 13.5052 0.2383 15048 +15050 3 275.4237 366.8716 13.2296 0.2379 15049 +15051 3 274.3632 367.184 12.945 0.2375 15050 +15052 3 273.2547 367.4253 12.7347 0.2371 15051 +15053 3 272.2388 367.8555 12.7081 0.2367 15052 +15054 3 271.1795 368.177 12.8328 0.2363 15053 +15055 3 270.3913 368.8736 13.0749 0.2358 15054 +15056 3 269.7861 369.8358 13.3428 0.2354 15055 +15057 3 269.2301 370.8356 13.5795 0.235 15056 +15058 3 268.276 371.2246 13.8542 0.2346 15057 +15059 3 267.1537 371.2474 14.1207 0.2342 15058 +15060 3 266.012 371.2715 14.3147 0.2338 15059 +15061 3 264.8703 371.3527 14.4429 0.2334 15060 +15062 3 263.7298 371.4419 14.5227 0.2329 15061 +15063 3 262.5892 371.5312 14.562 0.2325 15062 +15064 3 261.4498 371.6215 14.5651 0.2321 15063 +15065 3 260.4957 372.2107 14.5384 0.2317 15064 +15066 3 259.5919 372.9108 14.5034 0.2313 15065 +15067 3 258.6916 373.6155 14.4657 0.2309 15066 +15068 3 257.7924 374.3214 14.4293 0.2305 15067 +15069 3 256.8921 375.0261 14.3972 0.23 15068 +15070 3 255.7915 375.2617 14.3779 0.2296 15069 +15071 3 254.6727 375.2251 14.6213 0.2292 15070 +15072 3 327.4894 357.6419 21.5079 0.5148 1 +15073 3 326.9083 355.4328 21.5609 0.5123 15072 +15074 3 326.3512 354.4387 21.585 0.511 15073 +15075 3 326.1521 353.321 21.6094 0.5097 15074 +15076 3 326.3878 352.2079 21.6371 0.5085 15075 +15077 3 326.6829 351.1028 21.6714 0.5072 15076 +15078 3 326.7756 349.9633 21.7141 0.5059 15077 +15079 3 326.6452 348.8285 21.7676 0.5047 15078 +15080 3 326.5319 347.7005 21.8783 0.5034 15079 +15081 3 326.5239 346.5599 22.0023 0.5021 15080 +15082 3 326.7722 345.4583 22.1575 0.5009 15081 +15083 3 326.9186 344.3246 22.2782 0.4996 15082 +15084 3 326.8477 343.184 22.3397 0.4983 15083 +15085 3 326.9609 342.0457 22.3427 0.4971 15084 +15086 3 326.8454 340.9086 22.2887 0.4958 15085 +15087 3 326.2024 339.9728 22.1547 0.4946 15086 +15088 3 325.5721 339.0862 21.8793 0.4933 15087 +15089 3 324.5311 338.6309 21.6047 0.492 15088 +15090 3 323.577 337.9994 21.3748 0.4908 15089 +15091 3 322.8505 337.1231 21.1557 0.4895 15090 +15092 3 322.3975 336.0729 20.9849 0.4882 15091 +15093 3 322.29 334.9392 20.8329 0.487 15092 +15094 3 322.3426 333.7998 20.7091 0.4857 15093 +15095 3 322.0543 332.6958 20.6172 0.4844 15094 +15096 3 321.3359 331.8058 20.5585 0.4832 15095 +15097 3 320.6666 330.878 20.5293 0.4819 15096 +15098 3 320.0477 329.917 20.5246 0.4806 15097 +15099 3 319.573 328.8806 20.5741 0.4794 15098 +15100 3 319.1737 327.8143 20.6211 0.4781 15099 +15101 3 319.2206 326.6898 20.6113 0.4768 15100 +15102 3 319.0055 325.587 20.6292 0.4756 15101 +15103 3 318.9495 324.483 20.6947 0.4743 15102 +15104 3 319.5284 323.5701 20.7899 0.473 15103 +15105 3 320.2022 322.6641 20.8953 0.4718 15104 +15106 3 320.5602 321.6093 21.0588 0.4705 15105 +15107 3 320.6106 320.4927 21.2717 0.4692 15106 +15108 3 320.5454 319.3613 21.4857 0.468 15107 +15109 3 320.5442 318.223 21.6452 0.4667 15108 +15110 3 320.6701 317.0916 21.7132 0.4654 15109 +15111 3 320.9435 315.9865 21.7092 0.4642 15110 +15112 3 321.2855 314.8952 21.6616 0.4629 15111 +15113 3 321.5212 313.7798 21.5967 0.4616 15112 +15114 3 321.5281 312.6415 21.5318 0.4604 15113 +15115 3 321.3851 311.5078 21.4747 0.4591 15114 +15116 3 321.2661 310.3706 21.4237 0.4579 15115 +15117 3 321.0075 309.2667 21.3499 0.4566 15116 +15118 3 320.9423 308.1433 21.2625 0.4553 15117 +15119 3 321.2627 307.0576 21.1789 0.4541 15118 +15120 3 321.5532 305.9674 21.0573 0.4528 15119 +15121 3 321.4697 304.8726 20.8779 0.4515 15120 +15122 3 321.3107 303.764 20.7815 0.4503 15121 +15123 3 321.5921 302.6955 20.7275 0.449 15122 +15124 3 321.9651 301.6167 20.7042 0.4477 15123 +15125 3 322.2328 300.5094 20.7533 0.4465 15124 +15126 3 322.4215 299.3859 20.8657 0.4452 15125 +15127 3 322.648 298.2774 20.9517 0.4439 15126 +15128 3 323.1697 297.2821 21.0119 0.4427 15127 +15129 3 323.8538 296.479 21.2428 0.4414 15128 +15130 3 323.8092 295.3842 21.5367 0.4401 15129 +15131 3 323.1892 294.4233 21.7949 0.4389 15130 +15132 3 322.9032 293.3433 22.0512 0.4376 15131 +15133 3 323.4763 292.3572 22.2997 0.4363 15132 +15134 3 324.054 291.4294 22.5486 0.4351 15133 +15135 3 323.9144 290.3392 22.8507 0.4338 15134 +15136 3 323.8184 289.2329 23.1615 0.4325 15135 +15137 3 324.0002 288.1072 23.4082 0.4313 15136 +15138 3 324.34 287.0193 23.5648 0.43 15137 +15139 3 324.8079 285.976 23.6643 0.4287 15138 +15140 3 325.2632 284.9395 23.7546 0.4275 15139 +15141 3 325.5229 283.8504 23.8622 0.4262 15140 +15142 3 325.6362 282.7156 23.913 0.425 15141 +15143 3 325.7563 281.5876 23.9309 0.4237 15142 +15144 3 325.6968 280.463 23.9709 0.4224 15143 +15145 3 325.357 279.3797 23.957 0.4212 15144 +15146 3 324.9452 278.3249 23.8707 0.4199 15145 +15147 3 324.7187 277.2106 23.7691 0.4186 15146 +15148 3 324.6706 276.0678 23.6676 0.4174 15147 +15149 3 324.6478 274.9261 23.5461 0.4161 15148 +15150 3 324.594 273.7855 23.3916 0.4148 15149 +15151 3 324.5745 272.6427 23.2365 0.4136 15150 +15152 3 324.5928 271.5067 23.0512 0.4123 15151 +15153 3 324.8788 270.516 22.7822 0.411 15152 +15154 3 325.754 269.8158 22.4643 0.4098 15153 +15155 3 326.6715 269.1466 22.1601 0.4085 15154 +15156 3 327.478 268.3492 21.8672 0.4072 15155 +15157 3 327.9848 267.4031 21.5472 0.406 15156 +15158 3 327.9562 266.2877 21.2335 0.4047 15157 +15159 3 328.1038 265.2089 20.9763 0.4034 15158 +15160 3 328.471 264.1302 20.7792 0.4022 15159 +15161 3 328.6563 263.009 20.6069 0.4009 15160 +15162 3 328.8302 261.8833 20.4611 0.3996 15161 +15163 3 329.1528 260.7931 20.383 0.3984 15162 +15164 3 329.5635 259.7292 20.3611 0.3971 15163 +15165 3 329.8038 258.6241 20.3343 0.3958 15164 +15166 3 329.7271 257.4938 20.2918 0.3946 15165 +15167 3 329.432 256.391 20.2398 0.3933 15166 +15168 3 329.0933 255.2985 20.1676 0.392 15167 +15169 3 328.8359 254.1876 20.0477 0.3908 15168 +15170 3 328.8234 253.0631 19.8647 0.3895 15169 +15171 3 329.019 251.9443 19.6463 0.3883 15170 +15172 3 328.9355 250.8346 19.4161 0.387 15171 +15173 3 328.7101 249.7386 19.1335 0.3857 15172 +15174 3 328.8325 248.6392 18.8385 0.3845 15173 +15175 3 329.1711 247.549 18.5911 0.3832 15174 +15176 3 329.512 246.4576 18.3892 0.3819 15175 +15177 3 329.7454 245.3457 18.1927 0.3807 15176 +15178 3 329.6699 244.2268 17.9919 0.3794 15177 +15179 3 329.3427 243.1378 17.8226 0.3781 15178 +15180 3 329.0956 242.0246 17.6823 0.3769 15179 +15181 3 329.1574 240.8955 17.5569 0.3756 15180 +15182 3 329.3061 239.7618 17.4605 0.3743 15181 +15183 3 329.0705 238.6636 17.3965 0.3731 15182 +15184 3 328.6918 237.5836 17.3551 0.3718 15183 +15185 3 328.5271 236.4591 17.3372 0.3705 15184 +15186 3 328.5774 235.3185 17.3171 0.3693 15185 +15187 3 328.741 234.1882 17.2738 0.368 15186 +15188 3 328.8542 233.0522 17.2046 0.3667 15187 +15189 3 328.8474 231.9174 17.0946 0.3655 15188 +15190 3 329.0396 230.7997 16.9653 0.3642 15189 +15191 3 329.3427 229.6992 16.8757 0.3629 15190 +15192 3 329.5281 228.5758 16.8501 0.3617 15191 +15193 3 330.1115 227.608 16.8516 0.3604 15192 +15194 3 330.8231 226.7122 16.851 0.3591 15193 +15195 3 331.1388 225.6197 16.8402 0.3579 15194 +15196 3 331.2784 224.4871 16.781 0.3566 15195 +15197 3 331.808 223.4838 16.6611 0.3553 15196 +15198 3 332.3652 222.4851 16.5313 0.3541 15197 +15199 3 332.5665 221.3606 16.4109 0.3528 15198 +15200 3 332.658 220.2246 16.2697 0.3516 15199 +15201 3 332.8274 219.1 16.109 0.3503 15200 +15202 3 332.8491 217.9766 15.9132 0.349 15201 +15203 3 332.6935 216.8452 15.798 0.3478 15202 +15204 3 332.6706 215.7023 15.7305 0.3465 15203 +15205 3 332.864 214.5744 15.6936 0.3452 15204 +15206 3 333.1923 213.4784 15.6838 0.344 15205 +15207 3 333.6304 212.4225 15.6926 0.3427 15206 +15208 3 333.6728 211.2785 15.7107 0.3414 15207 +15209 3 333.5984 210.1368 15.7264 0.3402 15208 +15210 3 333.73 209.0008 15.7458 0.3389 15209 +15211 3 333.6156 207.8625 15.7716 0.3376 15210 +15212 3 333.5046 206.7242 15.8009 0.3364 15211 +15213 3 333.484 205.5825 15.8526 0.3351 15212 +15214 3 333.0413 204.5392 15.9501 0.3338 15213 +15215 3 333.0996 203.3963 16.0497 0.3326 15214 +15216 3 333.182 202.2558 16.1538 0.3313 15215 +15217 3 333.0447 201.1278 16.267 0.33 15216 +15218 3 332.4418 200.1657 16.4287 0.3288 15217 +15219 3 331.76 199.3134 16.6805 0.3275 15218 +15220 3 331.5884 198.1923 16.9071 0.3262 15219 +15221 3 331.6811 197.0643 17.1092 0.325 15220 +15222 3 331.2349 196.1777 17.3583 0.3237 15221 +15223 3 330.1836 195.8116 17.618 0.3224 15222 +15224 3 329.6676 194.9124 17.8262 0.3212 15223 +15225 3 329.607 193.7753 18.0027 0.3199 15224 +15226 3 329.5486 192.6382 18.1785 0.3186 15225 +15227 3 329.218 191.5662 18.3507 0.3174 15226 +15228 3 328.6495 190.5801 18.4699 0.3161 15227 +15229 3 328.225 189.5311 18.5411 0.3149 15228 +15230 3 328.1953 188.4076 18.5959 0.3136 15229 +15231 3 328.5271 187.3266 18.6602 0.3123 15230 +15232 3 329.0808 186.3301 18.7237 0.3111 15231 +15233 3 329.7797 185.4287 18.7773 0.3098 15232 +15234 3 330.1035 184.3819 18.852 0.3085 15233 +15235 3 329.8484 183.2974 18.9268 0.3073 15234 +15236 3 330.0383 182.2461 18.9832 0.306 15235 +15237 3 330.3986 181.1616 19.0219 0.3047 15236 +15238 3 330.5622 180.0347 19.0489 0.3035 15237 +15239 3 330.8642 178.9399 19.0691 0.3022 15238 +15240 3 331.72 178.2993 19.0866 0.3009 15239 +15241 3 332.6729 177.6781 19.1075 0.2997 15240 +15242 3 333.3261 176.7652 19.1236 0.2984 15241 +15243 3 334.0228 175.8637 19.1528 0.2971 15242 +15244 3 334.588 174.8776 19.2189 0.2959 15243 +15245 3 334.7664 173.7702 19.3538 0.2946 15244 +15246 3 334.8419 172.6399 19.5654 0.2933 15245 +15247 3 335.8143 172.0816 19.8536 0.2921 15246 +15248 3 336.59 171.2797 20.2054 0.2908 15247 +15249 3 337.512 170.6299 20.4556 0.2895 15248 +15250 3 338.4387 170.1002 20.7306 0.2883 15249 +15251 3 338.5645 168.9882 21.0536 0.287 15250 +15252 3 338.7727 167.8751 21.3551 0.2857 15251 +15253 3 338.7533 166.7494 21.6743 0.2845 15252 +15254 3 339.1983 166.1614 22.0989 0.2832 15253 +15255 3 340.2256 166.6316 22.5655 0.282 15254 +15256 3 341.0813 166.5286 23.1273 0.2807 15255 +15257 3 341.4062 165.6295 23.7578 0.2794 15256 +15258 3 341.6705 164.5289 24.2798 0.2782 15257 +15259 3 342.0366 163.5417 24.8603 0.2769 15258 +15260 3 341.7597 162.4789 25.4186 0.2756 15259 +15261 3 341.3971 161.4024 25.8932 0.2744 15260 +15262 3 340.7267 160.4757 26.2517 0.2731 15261 +15263 3 340.1661 159.4999 26.5919 0.2718 15262 +15264 3 340.0757 158.3605 26.8625 0.2706 15263 +15265 3 340.2691 157.2336 27.0677 0.2693 15264 +15266 3 340.4521 156.1228 27.3067 0.268 15265 +15267 3 340.4098 154.98 27.5153 0.2668 15266 +15268 3 340.1387 153.8691 27.709 0.2655 15267 +15269 3 339.8469 152.7698 27.9303 0.2642 15268 +15270 3 339.8458 151.6361 28.1901 0.263 15269 +15271 3 340.1032 150.5275 28.4631 0.2617 15270 +15272 3 340.2096 149.4133 28.7823 0.2604 15271 +15273 3 339.8549 148.3459 29.1186 0.2592 15272 +15274 3 339.2372 147.4136 29.3891 0.2579 15273 +15275 3 339.1125 146.2936 29.6792 0.2566 15274 +15276 3 338.3037 145.7204 29.99 0.2554 15275 +15277 3 338.5233 145.0912 30.284 0.2541 15276 +15278 3 339.0896 144.1406 30.6608 0.2528 15277 +15279 3 339.8172 143.4553 31.1013 0.2516 15278 +15280 3 340.7999 143.6326 31.5879 0.2503 15279 +15281 3 341.6956 144.319 32.0611 0.249 15280 +15282 3 342.6577 144.9368 32.4766 0.2478 15281 +15283 3 342.7115 145.6701 32.8978 0.2465 15282 +15284 3 343.0032 145.3646 33.5348 0.2453 15283 +15285 3 344.1118 145.4916 34.1004 0.244 15284 +15286 3 344.9412 146.1815 34.5909 0.2427 15285 +15287 3 345.4457 147.1928 35.0619 0.2415 15286 +15288 3 345.9696 147.5005 35.6544 0.2402 15287 +15289 3 346.5542 146.718 36.2953 0.2389 15288 +15290 3 346.6126 145.6873 36.9281 0.2377 15289 +15291 3 346.1469 144.6691 37.4884 0.2364 15290 +15292 3 345.3793 143.9255 38.057 0.2351 15291 +15293 3 344.5968 143.1167 38.5347 0.2339 15292 +15294 3 343.5192 142.8261 38.8083 0.2326 15293 +15295 3 342.3775 142.7655 38.9836 0.2313 15294 +15296 3 341.484 143.4267 39.3655 0.2301 15295 +15297 3 323.4328 360.7387 22.8262 0.3604 1 +15298 3 322.4009 360.2834 23.0152 0.3541 15297 +15299 3 321.4079 359.7502 23.0919 0.351 15298 +15300 3 320.4744 359.0902 23.1046 0.3478 15299 +15301 3 319.4734 358.5513 23.0856 0.3447 15300 +15302 3 318.3958 358.1715 23.0495 0.3416 15301 +15303 3 317.3204 357.7826 23.0073 0.3384 15302 +15304 3 316.2142 357.5309 22.9676 0.3353 15303 +15305 3 315.3024 356.968 22.9279 0.3322 15304 +15306 3 314.6 356.0666 22.8805 0.329 15305 +15307 3 313.5887 355.6685 22.8248 0.3259 15306 +15308 3 312.4905 355.8172 22.7016 0.3228 15307 +15309 3 311.3774 355.8263 22.5162 0.3196 15308 +15310 3 310.2871 355.514 22.3712 0.3165 15309 +15311 3 309.2518 355.0312 22.2821 0.3134 15310 +15312 3 308.1421 354.7693 22.2479 0.3102 15311 +15313 3 307.1823 354.1927 22.3253 0.3071 15312 +15314 3 306.1184 353.7912 22.4544 0.304 15313 +15315 3 304.9824 353.6687 22.5936 0.3008 15314 +15316 3 303.8613 353.4457 22.7249 0.2977 15315 +15317 3 302.9587 352.7959 22.9273 0.2946 15316 +15318 3 302.0801 352.0992 23.1699 0.2914 15317 +15319 3 301.1065 351.4986 23.3495 0.2883 15318 +15320 3 302.342 351.2583 22.6976 0.2368 15319 +15321 3 303.2836 350.7481 22.3408 0.2362 15320 +15322 3 303.5764 349.6739 21.9238 0.2358 15321 +15323 3 303.5055 348.5596 21.4959 0.2355 15322 +15324 3 302.9186 347.6181 21.0664 0.2352 15323 +15325 3 302.1762 346.8391 20.6913 0.2349 15324 +15326 3 302.3478 345.8175 20.3301 0.2346 15325 +15327 3 303.2309 345.154 19.9934 0.2342 15326 +15328 3 303.6279 344.2479 19.6787 0.2339 15327 +15329 3 304.042 343.2126 19.3803 0.2336 15328 +15330 3 304.566 342.2024 19.1225 0.2333 15329 +15331 3 305.0956 341.19 18.9092 0.233 15330 +15332 3 305.6459 340.1878 18.7421 0.2326 15331 +15333 3 306.2854 339.2418 18.6243 0.2323 15332 +15334 3 306.9512 338.3105 18.5441 0.232 15333 +15335 3 307.6262 337.3873 18.4864 0.2317 15334 +15336 3 308.4716 336.6266 18.436 0.2314 15335 +15337 3 309.3605 335.9059 18.3811 0.231 15336 +15338 3 310.2665 335.208 18.3019 0.2307 15337 +15339 3 310.7756 334.2059 18.2005 0.2304 15338 +15340 3 311.1611 333.1294 18.0819 0.2301 15339 +15341 3 311.6851 332.1295 17.8961 0.2298 15340 +15342 3 312.6838 331.7291 17.6321 0.2294 15341 +15343 3 313.7546 331.4362 16.8708 0.2291 15342 +15344 3 300.3847 351.367 23.4809 0.2883 15319 +15345 3 299.4111 350.7676 23.5721 0.2859 15344 +15346 3 298.5051 350.0743 23.6277 0.2847 15345 +15347 3 297.6917 349.2712 23.6526 0.2834 15346 +15348 3 296.8222 348.5276 23.6657 0.2822 15347 +15349 3 296.0409 347.7119 23.6839 0.281 15348 +15350 3 295.3991 346.7773 23.7105 0.2798 15349 +15351 3 294.54 346.0268 23.7483 0.2786 15350 +15352 3 293.5733 345.4194 23.7982 0.2774 15351 +15353 3 292.5174 345.0018 23.8599 0.2762 15352 +15354 3 291.4271 344.7089 23.9602 0.2749 15353 +15355 3 290.4124 344.241 24.1427 0.2737 15354 +15356 3 289.4949 343.6027 24.3394 0.2725 15355 +15357 3 288.6243 342.8705 24.4876 0.2713 15356 +15358 3 287.7 342.199 24.5886 0.2701 15357 +15359 3 286.7894 341.508 24.6451 0.2689 15358 +15360 3 285.8215 340.9006 24.6608 0.2677 15359 +15361 3 284.7931 340.4041 24.6456 0.2664 15360 +15362 3 283.7806 339.8847 24.6027 0.2652 15361 +15363 3 282.7968 339.3173 24.5238 0.264 15362 +15364 3 281.7283 338.9546 24.4452 0.2628 15363 +15365 3 280.677 338.5382 24.3975 0.2616 15364 +15366 3 279.6233 338.1058 24.3799 0.2604 15365 +15367 3 278.5846 337.6402 24.3938 0.2592 15366 +15368 3 277.6225 337.0464 24.4801 0.2579 15367 +15369 3 276.6341 336.4916 24.6014 0.2567 15368 +15370 3 275.6422 335.923 24.7121 0.2555 15369 +15371 3 274.6401 335.3739 24.8107 0.2543 15370 +15372 3 273.6745 334.7664 24.9007 0.2531 15371 +15373 3 272.7902 334.0434 24.9868 0.2519 15372 +15374 3 271.9174 333.3273 25.1251 0.2507 15373 +15375 3 270.9472 332.7416 25.2849 0.2494 15374 +15376 3 269.9497 332.1844 25.4356 0.2482 15375 +15377 3 268.9807 331.5804 25.5975 0.247 15376 +15378 3 268.0632 330.9786 25.8444 0.2458 15377 +15379 3 266.9661 330.9786 26.0747 0.2446 15378 +15380 3 265.8278 331.0908 26.2489 0.2434 15379 +15381 3 264.685 331.1422 26.3792 0.2422 15380 +15382 3 263.6016 330.8128 26.4766 0.2409 15381 +15383 3 262.6773 330.1492 26.5485 0.2397 15382 +15384 3 261.69 329.575 26.606 0.2385 15383 +15385 3 260.5872 329.289 26.6722 0.2373 15384 +15386 3 259.5256 328.8691 26.7764 0.2361 15385 +15387 3 258.4902 328.3829 26.911 0.2349 15386 +15388 3 257.3794 328.161 27.1146 0.2337 15387 +15389 3 256.24 328.1198 27.3511 0.2324 15388 +15390 3 255.0983 328.169 27.5742 0.2312 15389 +15391 3 254.2174 328.0191 28.6804 0.23 15390 +15392 3 327.5707 357.2174 24.7374 0.4118 1 +15393 3 327.4048 356.1306 25.272 0.4078 15392 +15394 3 327.0193 355.2761 25.6679 0.4057 15393 +15395 3 328.1553 355.1514 25.9606 0.4037 15394 +15396 3 329.0888 354.7109 26.1962 0.4017 15395 +15397 3 329.0602 353.6459 26.4405 0.3996 15396 +15398 3 328.3989 352.7318 26.6891 0.3976 15397 +15399 3 327.7045 351.8498 26.9319 0.3956 15398 +15400 3 327.2149 350.8671 27.2505 0.3935 15399 +15401 3 326.5937 350.7458 27.7099 0.3915 15400 +15402 3 325.9714 350.4255 28.2414 0.3895 15401 +15403 3 325.4211 349.4474 28.7249 0.3874 15402 +15404 3 325.0218 348.38 29.1136 0.3854 15403 +15405 3 324.4075 347.4385 29.4132 0.3834 15404 +15406 3 323.7028 346.5416 29.6542 0.3813 15405 +15407 3 323.4809 345.7282 30.0502 0.3793 15406 +15408 3 323.4019 344.6826 30.3164 0.3773 15407 +15409 3 323.2269 343.5581 30.4727 0.3752 15408 +15410 3 322.8185 342.5044 30.5105 0.3732 15409 +15411 3 322.2602 341.5115 30.469 0.3712 15410 +15412 3 322.3026 340.3995 30.3526 0.3691 15411 +15413 3 322.5645 339.2921 30.1994 0.3671 15412 +15414 3 322.5622 338.1515 30.1036 0.3651 15413 +15415 3 322.2682 337.0487 30.0706 0.363 15414 +15416 3 321.7534 336.0294 30.0972 0.361 15415 +15417 3 321.2798 335.0135 30.0944 0.359 15416 +15418 3 321.0293 333.9462 30.2669 0.3569 15417 +15419 3 320.8154 332.88 30.5785 0.3549 15418 +15420 3 320.622 331.7817 30.9364 0.3529 15419 +15421 3 320.2765 330.6938 31.2455 0.3508 15420 +15422 3 320.1392 329.5601 31.507 0.3488 15421 +15423 3 320.0866 328.4207 31.733 0.3468 15422 +15424 3 319.8372 327.3041 31.9186 0.3447 15423 +15425 3 319.6897 326.1738 32.0981 0.3427 15424 +15426 3 319.8532 325.1328 32.3548 0.3407 15425 +15427 3 320.622 324.4647 32.7953 0.3386 15426 +15428 3 321.3679 323.6776 33.2562 0.3366 15427 +15429 3 321.917 322.6778 33.6417 0.3346 15428 +15430 3 322.3014 321.6242 34.0049 0.3325 15429 +15431 3 322.4353 320.5385 34.3773 0.3305 15430 +15432 3 322.3289 319.4231 34.6861 0.3285 15431 +15433 3 322.2145 318.2883 34.8765 0.3264 15432 +15434 3 321.9525 317.1877 34.9712 0.3244 15433 +15435 3 321.6219 316.0941 34.9849 0.3224 15434 +15436 3 321.3851 315.0061 34.8634 0.3203 15435 +15437 3 321.2192 313.9273 34.6091 0.3183 15436 +15438 3 320.6872 312.9744 34.3675 0.3162 15437 +15439 3 320.2536 311.9356 34.2026 0.3142 15438 +15440 3 320.1358 310.8042 34.1138 0.3122 15439 +15441 3 319.9665 309.6911 34.1513 0.3101 15440 +15442 3 319.8967 308.5585 34.2616 0.3081 15441 +15443 3 319.5684 307.4775 34.4025 0.3061 15442 +15444 3 319.2881 306.3724 34.5526 0.3041 15443 +15445 3 319.2206 305.2329 34.7136 0.302 15444 +15446 3 318.8923 304.1484 34.8972 0.3 15445 +15447 3 318.3809 303.1508 35.184 0.2979 15446 +15448 3 318.8031 302.1579 35.5718 0.2959 15447 +15449 3 319.5478 301.3273 35.926 0.2939 15448 +15450 3 320.145 300.4705 36.4686 0.2918 15449 +15451 3 320.7913 299.6502 37.1417 0.2898 15450 +15452 3 321.6848 299.1743 37.896 0.2878 15451 +15453 3 322.3906 298.441 38.6579 0.2857 15452 +15454 3 323.3058 297.8312 39.3145 0.2837 15453 +15455 3 324.3846 297.8061 39.9518 0.2817 15454 +15456 3 324.7164 296.8943 40.5857 0.2796 15455 +15457 3 324.8171 295.7595 41.0976 0.2776 15456 +15458 3 325.3261 294.7802 41.6016 0.2756 15457 +15459 3 326.0686 293.9966 42.1162 0.2735 15458 +15460 3 325.913 292.8709 42.5723 0.2715 15459 +15461 3 325.9782 291.7509 42.9948 0.2695 15460 +15462 3 326.5079 290.7728 43.3446 0.2674 15461 +15463 3 327.5169 290.2362 43.65 0.2654 15462 +15464 3 328.2193 289.4412 43.9594 0.2634 15463 +15465 3 328.4584 288.3292 44.2968 0.2613 15464 +15466 3 328.932 287.3648 44.6832 0.2593 15465 +15467 3 329.8072 286.6395 45.1268 0.2573 15466 +15468 3 330.5966 285.8341 45.6386 0.2552 15467 +15469 3 331.4946 285.388 46.2801 0.2532 15468 +15470 3 332.4372 285.3628 47.1248 0.2512 15469 +15471 3 332.8926 285.0985 48.2294 0.2491 15470 +15472 3 332.9589 284.0987 49.252 0.2471 15471 +15473 3 332.9623 282.9798 50.1603 0.2451 15472 +15474 3 333.0664 282.0052 51.0661 0.243 15473 +15475 3 333.4016 280.9778 51.849 0.241 15474 +15476 3 333.5778 279.851 52.3891 0.239 15475 +15477 3 334.2024 278.898 52.7366 0.2369 15476 +15478 3 334.7847 277.9405 53.0457 0.2349 15477 +15479 3 335.2503 276.896 53.2398 0.2329 15478 +15480 3 335.2503 275.752 53.4246 0.2308 15479 +15481 3 330.4467 357.9382 21.8606 0.9781 1 +15482 3 331.3607 357.2701 22.006 0.8939 15481 +15483 3 332.3995 356.7999 22.1126 0.8518 15482 +15484 3 333.5252 356.6214 22.1725 0.8096 15483 +15485 3 334.5045 356.046 22.1883 0.7675 15484 +15486 3 335.3121 355.2383 22.1625 0.7254 15485 +15487 3 336.098 354.4066 22.0958 0.6833 15486 +15488 3 336.8554 353.5578 21.9655 0.6412 15487 +15489 3 337.8129 353.0087 21.7401 0.599 15488 +15490 3 338.8585 352.5476 21.5511 0.5569 15489 +15491 3 339.8058 351.9527 21.3241 0.5148 15490 +15492 3 340.0014 352.0374 21.0886 0.4633 15491 +15493 3 341.0481 352.3188 21.8468 0.4376 15492 +15494 3 342.1555 352.5122 22.1657 0.4247 15493 +15495 3 343.2698 352.3543 22.4726 0.4118 15494 +15496 3 344.1392 351.7022 22.8152 0.399 15495 +15497 3 344.1541 350.6074 23.1342 0.3861 15496 +15498 3 344.2239 349.4668 23.3636 0.3732 15497 +15499 3 344.7684 348.4613 23.5019 0.3604 15498 +15500 3 344.8325 348.0094 23.6068 0.3089 15499 +15501 3 344.9858 346.8905 23.6928 0.3089 15500 +15502 3 345.4754 345.9399 23.7077 0.3089 15501 +15503 3 346.473 345.5349 23.6363 0.3089 15502 +15504 3 347.5678 345.4194 23.4443 0.3089 15503 +15505 3 348.4327 344.8371 23.199 0.3089 15504 +15506 3 349.1385 343.9413 22.9961 0.3089 15505 +15507 3 350.0411 343.2892 22.8647 0.3089 15506 +15508 3 350.8099 342.4884 22.8106 0.3089 15507 +15509 3 351.0639 341.4039 22.828 0.3089 15508 +15510 3 351.0604 340.2656 22.932 0.3089 15509 +15511 3 351.1188 339.1731 23.1647 0.3089 15510 +15512 3 351.9813 338.5725 23.3853 0.3089 15511 +15513 3 353.0945 338.4661 23.6328 0.3089 15512 +15514 3 354.0028 337.7877 23.8146 0.3089 15513 +15515 3 354.5954 336.813 23.9277 0.3089 15514 +15516 3 355.0381 335.7583 23.977 0.3089 15515 +15517 3 355.7382 335.2709 23.9374 0.3089 15516 +15518 3 356.7633 334.9346 23.8364 0.3077 15517 +15519 3 357.7974 335.2709 23.7607 0.3071 15518 +15520 3 358.8373 335.661 23.7016 0.3065 15519 +15521 3 359.6015 334.9609 23.616 0.306 15520 +15522 3 360.0488 333.913 23.5341 0.3054 15521 +15523 3 360.9869 333.301 23.4538 0.3048 15522 +15524 3 362.1229 333.2403 23.3646 0.3042 15523 +15525 3 363.1845 332.8239 23.2501 0.3036 15524 +15526 3 363.9522 332.006 23.0533 0.303 15525 +15527 3 364.4544 330.9832 22.8691 0.3025 15526 +15528 3 365.1671 330.2225 22.5478 0.3019 15527 +15529 3 366.2058 329.7912 22.2896 0.3013 15528 +15530 3 367.3212 329.9525 22.092 0.3007 15529 +15531 3 368.3177 330.481 21.9483 0.3001 15530 +15532 3 369.4251 330.4707 21.8507 0.2995 15531 +15533 3 370.3689 329.8358 21.7809 0.2989 15532 +15534 3 371.196 329.0659 21.719 0.2984 15533 +15535 3 372.2187 328.6083 21.596 0.2978 15534 +15536 3 373.2918 328.2662 21.4849 0.2972 15535 +15537 3 374.2836 327.7606 21.3898 0.2966 15536 +15538 3 375.4253 327.6908 21.3078 0.296 15537 +15539 3 376.5693 327.6816 21.2363 0.2954 15538 +15540 3 377.6504 327.4883 21.1673 0.2949 15539 +15541 3 378.6217 326.9369 21.0679 0.2943 15540 +15542 3 379.7279 326.6852 20.9298 0.2937 15541 +15543 3 380.8513 326.4667 20.8064 0.2931 15542 +15544 3 381.9816 326.326 20.696 0.2925 15543 +15545 3 383.0787 326.1544 20.5654 0.2919 15544 +15546 3 384.0843 325.6407 20.4045 0.2913 15545 +15547 3 385.0864 325.0916 20.2708 0.2908 15546 +15548 3 386.1011 324.5642 20.1559 0.2902 15547 +15549 3 387.1605 324.165 20.0487 0.2896 15548 +15550 3 388.2564 324.2176 19.9052 0.289 15549 +15551 3 389.3604 324.2657 19.7388 0.2884 15550 +15552 3 390.3866 323.8103 19.5921 0.2878 15551 +15553 3 391.4013 323.3161 19.4092 0.2872 15552 +15554 3 392.511 323.156 19.2259 0.2867 15553 +15555 3 393.6035 323.3756 19.0212 0.2861 15554 +15556 3 394.7246 323.4294 18.8483 0.2855 15555 +15557 3 395.8389 323.1926 18.7286 0.2849 15556 +15558 3 396.96 323.2898 18.6517 0.2843 15557 +15559 3 398.1006 323.347 18.6144 0.2837 15558 +15560 3 399.2446 323.3505 18.605 0.2832 15559 +15561 3 400.3691 323.5335 18.6168 0.2826 15560 +15562 3 401.5085 323.5529 18.64 0.282 15561 +15563 3 402.64 323.3962 18.6718 0.2814 15562 +15564 3 403.7679 323.5129 18.7296 0.2808 15563 +15565 3 404.881 323.768 18.7806 0.2802 15564 +15566 3 405.7734 323.1686 18.8523 0.2797 15565 +15567 3 406.8533 322.9146 19.0021 0.2791 15566 +15568 3 407.9252 323.1731 19.1393 0.2785 15567 +15569 3 408.7764 323.9099 19.2794 0.2779 15568 +15570 3 409.8369 324.1982 19.4542 0.2773 15569 +15571 3 410.9671 324.0906 19.6153 0.2767 15570 +15572 3 412.1008 324.213 19.7556 0.2762 15571 +15573 3 413.1922 324.4304 19.9297 0.2756 15572 +15574 3 414.2024 324.8628 20.0912 0.275 15573 +15575 3 415.2537 325.1442 20.1132 0.2744 15574 +15576 3 416.3885 325.0733 20.1284 0.2738 15575 +15577 3 417.5177 324.9521 20.154 0.2732 15576 +15578 3 418.6525 324.864 20.1575 0.2726 15577 +15579 3 419.7828 324.7175 20.1412 0.2721 15578 +15580 3 420.9268 324.7061 20.1174 0.2715 15579 +15581 3 421.953 324.3984 20.0906 0.2709 15580 +15582 3 422.6073 323.4923 20.044 0.2703 15581 +15583 3 423.2983 322.6675 19.9414 0.2697 15582 +15584 3 424.3588 322.3323 19.8027 0.2691 15583 +15585 3 425.2626 321.75 19.6742 0.2685 15584 +15586 3 426.0245 320.8966 19.5544 0.268 15585 +15587 3 426.8275 320.1084 19.3869 0.2674 15586 +15588 3 427.8812 319.9768 19.265 0.2668 15587 +15589 3 429.0103 319.931 19.1278 0.2662 15588 +15590 3 430.1463 319.9562 18.9633 0.2656 15589 +15591 3 431.2754 320.0981 18.7824 0.265 15590 +15592 3 432.3496 319.7297 18.6333 0.2645 15591 +15593 3 433.4856 319.8132 18.5136 0.2639 15592 +15594 3 434.6273 319.8933 18.4082 0.2633 15593 +15595 3 435.7633 319.7697 18.3172 0.2627 15594 +15596 3 436.881 319.772 18.1651 0.2621 15595 +15597 3 437.8271 319.1703 18.0186 0.2615 15596 +15598 3 438.9219 319.4677 17.8608 0.2609 15597 +15599 3 439.9458 319.8716 17.678 0.2604 15598 +15600 3 441.0864 319.7709 17.5369 0.2598 15599 +15601 3 442.2109 319.756 17.4152 0.2592 15600 +15602 3 443.2966 320.0168 17.2934 0.2586 15601 +15603 3 444.3937 320.0008 17.2606 0.258 15602 +15604 3 445.477 319.8235 17.2358 0.2574 15603 +15605 3 446.5764 320.1381 17.2108 0.2569 15604 +15606 3 447.6358 320.177 17.1706 0.2563 15605 +15607 3 448.6425 319.6965 17.0589 0.2557 15606 +15608 3 449.6549 319.2446 16.8831 0.2551 15607 +15609 3 450.617 318.6612 16.7709 0.2545 15608 +15610 3 451.6306 318.2116 16.7268 0.2539 15609 +15611 3 452.7597 318.0514 16.6988 0.2534 15610 +15612 3 453.8271 317.7094 16.6817 0.2528 15611 +15613 3 454.6576 316.9772 16.6273 0.2522 15612 +15614 3 455.6209 316.5391 16.5536 0.2516 15613 +15615 3 456.718 316.2359 16.4912 0.251 15614 +15616 3 457.8368 316.0712 16.4479 0.2504 15615 +15617 3 458.7406 316.6043 16.4289 0.2498 15616 +15618 3 459.7507 316.6592 16.4302 0.2493 15617 +15619 3 460.8284 316.3263 16.506 0.2487 15618 +15620 3 461.9575 316.2565 16.5878 0.2481 15619 +15621 3 463.0912 316.1192 16.6454 0.2475 15620 +15622 3 464.2306 316.0392 16.665 0.2469 15621 +15623 3 465.3609 316.0449 16.6036 0.2463 15622 +15624 3 466.3813 316.4693 16.5946 0.2458 15623 +15625 3 467.2302 317.222 16.5656 0.2452 15624 +15626 3 468.317 317.3765 16.4572 0.2446 15625 +15627 3 469.3992 317.0379 16.3552 0.244 15626 +15628 3 470.5364 316.9475 16.2691 0.2434 15627 +15629 3 471.6781 316.92 16.1723 0.2428 15628 +15630 3 472.6196 316.3126 16.0352 0.2422 15629 +15631 3 473.7361 316.0941 15.9364 0.2417 15630 +15632 3 474.8458 316.3698 15.8787 0.2411 15631 +15633 3 475.9898 316.3926 15.849 0.2405 15632 +15634 3 477.1258 316.2828 15.8451 0.2399 15633 +15635 3 478.2389 316.5356 15.8651 0.2393 15634 +15636 3 479.3772 316.4476 15.9069 0.2387 15635 +15637 3 480.4892 316.3023 15.9946 0.2382 15636 +15638 3 481.5817 316.626 16.1018 0.2376 15637 +15639 3 482.6582 316.8308 16.1889 0.237 15638 +15640 3 483.6878 316.3412 16.2617 0.2364 15639 +15641 3 484.7814 316.0437 16.2952 0.2358 15640 +15642 3 485.8602 315.7188 16.2932 0.2352 15641 +15643 3 486.7091 315.0336 16.3275 0.2346 15642 +15644 3 487.5339 314.3163 16.4648 0.2341 15643 +15645 3 488.6218 314.2522 16.712 0.2335 15644 +15646 3 489.7521 314.3952 16.9747 0.2329 15645 +15647 3 490.8744 314.346 17.2973 0.2323 15646 +15648 3 491.793 313.7203 17.6253 0.2317 15647 +15649 3 492.762 313.2592 18.0271 0.2311 15648 +15650 3 493.453 312.3692 18.3497 0.2306 15649 +15651 3 494.5478 312.1404 18.6488 0.23 15650 +15652 3 495.6666 312.3669 19.1204 0.2294 15651 +15653 3 355.0393 335.4277 24.1816 0.3089 15516 +15654 3 355.4877 334.3889 24.15 0.3073 15653 +15655 3 356.4555 333.7826 24.1373 0.3065 15654 +15656 3 357.5126 333.3467 24.1198 0.3056 15655 +15657 3 358.5456 332.856 24.0955 0.3048 15656 +15658 3 359.5066 332.2348 24.0608 0.304 15657 +15659 3 360.4492 331.5884 24.0112 0.3032 15658 +15660 3 361.4251 330.9981 23.9438 0.3024 15659 +15661 3 362.2796 330.2396 23.8563 0.3016 15660 +15662 3 363.0187 329.3736 23.7324 0.3008 15661 +15663 3 363.5483 328.3978 23.511 0.3 15662 +15664 3 363.8755 327.335 23.2257 0.2992 15663 +15665 3 364.4681 326.3626 22.9676 0.2984 15664 +15666 3 365.341 325.7346 22.6939 0.2976 15665 +15667 3 366.1647 325.1465 22.3643 0.2967 15666 +15668 3 366.7847 324.2027 22.062 0.2959 15667 +15669 3 367.5478 323.3608 21.7889 0.2951 15668 +15670 3 368.3131 322.5199 21.5284 0.2943 15669 +15671 3 368.7913 321.5029 21.3009 0.2935 15670 +15672 3 369.2409 320.4699 21.0594 0.2927 15671 +15673 3 369.9868 319.6347 20.8374 0.2919 15672 +15674 3 371.061 319.3282 20.6452 0.2911 15673 +15675 3 372.0357 318.7584 20.4743 0.2903 15674 +15676 3 372.7907 317.929 20.2579 0.2895 15675 +15677 3 373.413 317.0893 19.9121 0.2887 15676 +15678 3 373.7459 316.0186 19.6249 0.2879 15677 +15679 3 374.1692 314.9558 19.4114 0.287 15678 +15680 3 374.1052 313.8244 19.2623 0.2862 15679 +15681 3 373.9702 312.6884 19.1723 0.2854 15680 +15682 3 373.8581 311.5535 19.1356 0.2846 15681 +15683 3 374.3683 310.5308 19.1356 0.2838 15682 +15684 3 375.1313 309.6785 19.1413 0.283 15683 +15685 3 375.7468 308.7141 19.1499 0.2822 15684 +15686 3 376.3806 307.768 19.1634 0.2814 15685 +15687 3 376.5362 306.6469 19.1799 0.2806 15686 +15688 3 376.1003 305.6459 19.1974 0.2798 15687 +15689 3 376.3634 304.5397 19.2214 0.279 15688 +15690 3 376.8164 303.5101 19.2966 0.2781 15689 +15691 3 377.3106 302.5788 19.4092 0.2773 15690 +15692 3 377.9467 301.7494 19.3675 0.2765 15691 +15693 3 378.3288 300.6798 19.3229 0.2757 15692 +15694 3 378.767 299.6433 19.2861 0.2749 15693 +15695 3 379.0164 298.5382 19.2602 0.2741 15694 +15696 3 379.5975 297.5704 19.2499 0.2733 15695 +15697 3 380.3606 296.7216 19.267 0.2725 15696 +15698 3 381.0675 295.8224 19.3204 0.2717 15697 +15699 3 381.826 295.557 19.3869 0.2709 15698 +15700 3 382.7504 296.1084 19.5161 0.2701 15699 +15701 3 383.8498 296.1816 19.7175 0.2692 15700 +15702 3 384.9812 296.2159 19.9048 0.2684 15701 +15703 3 386.0234 295.9539 20.0459 0.2676 15702 +15704 3 386.7086 295.0822 20.1448 0.2668 15703 +15705 3 387.5529 294.3535 20.2035 0.266 15704 +15706 3 388.5996 293.9073 20.2242 0.2652 15705 +15707 3 389.723 293.8993 20.2183 0.2644 15706 +15708 3 390.8327 293.6934 20.21 0.2636 15707 +15709 3 391.2846 292.7668 20.2448 0.2628 15708 +15710 3 392.2261 292.7061 20.1743 0.262 15709 +15711 3 393.3541 292.8812 20.0879 0.2612 15710 +15712 3 394.4798 292.753 19.9836 0.2604 15711 +15713 3 395.4831 292.2188 19.8496 0.2595 15712 +15714 3 396.5424 291.8641 19.6169 0.2587 15713 +15715 3 397.5846 291.4512 19.3377 0.2579 15714 +15716 3 398.5639 290.8666 19.0812 0.2571 15715 +15717 3 399.5672 290.3415 18.8192 0.2563 15716 +15718 3 400.6151 289.8839 18.6083 0.2555 15717 +15719 3 401.671 289.4434 18.4402 0.2547 15718 +15720 3 402.6846 288.9183 18.3047 0.2539 15719 +15721 3 403.6387 288.288 18.1768 0.2531 15720 +15722 3 404.4475 287.5719 17.9847 0.2523 15721 +15723 3 405.159 286.8317 17.705 0.2515 15722 +15724 3 406.1486 286.2677 17.4564 0.2506 15723 +15725 3 407.0958 285.6454 17.1965 0.2498 15724 +15726 3 408.0957 285.118 16.9296 0.249 15725 +15727 3 409.0235 284.4739 16.6979 0.2482 15726 +15728 3 409.6527 283.5587 16.4596 0.2474 15727 +15729 3 410.0016 282.4845 16.2074 0.2466 15728 +15730 3 410.6377 281.6139 15.9459 0.2458 15729 +15731 3 411.4957 280.8852 15.6604 0.245 15730 +15732 3 412.5298 280.5626 15.4058 0.2442 15731 +15733 3 413.5423 280.1107 15.1962 0.2434 15732 +15734 3 414.4472 279.4277 14.9955 0.2426 15733 +15735 3 415.4939 279.0262 14.8407 0.2417 15734 +15736 3 416.5968 278.723 14.7403 0.2409 15735 +15737 3 417.3312 277.9222 14.6822 0.2401 15736 +15738 3 418.2636 277.3113 14.6502 0.2393 15737 +15739 3 419.26 276.7485 14.6371 0.2385 15738 +15740 3 419.8228 275.7784 14.6388 0.2377 15739 +15741 3 420.515 274.8723 14.6458 0.2369 15740 +15742 3 421.4141 274.171 14.6555 0.2361 15741 +15743 3 422.4895 273.7947 14.6691 0.2353 15742 +15744 3 423.4916 273.2467 14.6881 0.2345 15743 +15745 3 424.3714 272.518 14.7163 0.2337 15744 +15746 3 425.385 271.9906 14.7515 0.2328 15745 +15747 3 426.2064 271.2001 14.7991 0.232 15746 +15748 3 426.7715 270.2105 14.8794 0.2312 15747 +15749 3 427.332 269.2175 14.9811 0.2304 15748 +15750 3 428.1592 268.4293 15.1838 0.2296 15749 +15751 3 345.1471 348.4967 23.8529 0.3604 15499 +15752 3 346.1675 348.8868 24.6148 0.3536 15751 +15753 3 347.0232 349.6167 24.8942 0.3502 15752 +15754 3 348.0357 349.826 25.2758 0.3469 15753 +15755 3 349.1236 350.1269 25.6547 0.3435 15754 +15756 3 350.0251 350.8213 25.9852 0.3401 15755 +15757 3 350.819 351.6164 26.3436 0.3367 15756 +15758 3 351.5981 352.4515 26.6535 0.3334 15757 +15759 3 352.336 353.3267 26.9435 0.33 15758 +15760 3 353.1825 354.0691 27.2997 0.3266 15759 +15761 3 354.3105 354.0325 27.6847 0.3232 15760 +15762 3 355.4019 354.2385 28.1445 0.3199 15761 +15763 3 355.943 355.1319 28.765 0.3165 15762 +15764 3 355.7474 356.0311 29.5344 0.3131 15763 +15765 3 354.9374 356.1844 30.464 0.3098 15764 +15766 3 354.3448 356.6042 31.3006 0.3064 15765 +15767 3 354.8928 357.452 32.1012 0.303 15766 +15768 3 355.5724 358.2242 32.8574 0.2996 15767 +15769 3 356.1215 359.192 33.5101 0.2963 15768 +15770 3 356.8056 360.0717 34.0738 0.2929 15769 +15771 3 357.6407 360.8256 34.5195 0.2895 15770 +15772 3 358.6532 361.321 34.858 0.2861 15771 +15773 3 359.7651 361.4857 35.1464 0.2828 15772 +15774 3 360.892 361.3839 35.3923 0.2794 15773 +15775 3 362.0268 361.3381 35.593 0.276 15774 +15776 3 363.1639 361.2924 35.779 0.2726 15775 +15777 3 364.3034 361.1986 35.9769 0.2693 15776 +15778 3 365.4428 361.1288 36.2258 0.2659 15777 +15779 3 366.557 361.0464 36.5795 0.2625 15778 +15780 3 367.6587 360.9858 37.0507 0.2592 15779 +15781 3 368.7512 360.9526 37.6219 0.2558 15780 +15782 3 369.7454 360.5579 38.2463 0.2524 15781 +15783 3 370.6972 359.9893 38.8892 0.249 15782 +15784 3 371.689 359.5112 39.5223 0.2457 15783 +15785 3 372.7541 359.5924 40.096 0.2423 15784 +15786 3 373.8112 359.3739 40.5992 0.2389 15785 +15787 3 374.2104 358.3443 41.0376 0.2355 15786 +15788 3 374.3168 357.206 41.6147 0.2322 15787 +15789 3 340.086 351.0536 21.164 0.5148 15491 +15790 3 339.9774 349.9256 21.0802 0.469 15789 +15791 3 339.9396 348.7964 21.1027 0.4462 15790 +15792 3 340.5471 347.8469 21.1417 0.4233 15791 +15793 3 341.508 347.2292 21.1672 0.4004 15792 +15794 3 342.4358 346.5588 21.1779 0.3775 15793 +15795 3 343.4185 345.9731 21.1611 0.3546 15794 +15796 3 344.3806 345.3736 21.068 0.3604 15795 +15797 3 344.106 343.9894 22.1892 0.3604 15796 +15798 3 343.6759 342.9437 22.4574 0.3572 15797 +15799 3 343.4128 341.8478 22.7053 0.3557 15798 +15800 3 343.3338 340.7175 22.9591 0.3541 15799 +15801 3 343.192 339.5941 23.1995 0.3526 15800 +15802 3 343.0273 338.465 23.3923 0.351 15801 +15803 3 342.8522 337.3359 23.5155 0.3494 15802 +15804 3 342.5033 336.2822 23.5215 0.3479 15803 +15805 3 342.0057 335.2835 23.5429 0.3463 15804 +15806 3 341.4634 334.2928 23.5362 0.3448 15805 +15807 3 342.0343 333.4474 23.5187 0.3432 15806 +15808 3 342.7104 334.3672 23.5336 0.3416 15807 +15809 3 343.4643 335.0799 23.5721 0.3401 15808 +15810 3 344.0225 334.342 23.8399 0.3385 15809 +15811 3 344.3348 333.317 24.2101 0.337 15810 +15812 3 344.8394 332.3732 24.6765 0.3354 15811 +15813 3 345.1311 331.3344 25.1557 0.3338 15812 +15814 3 345.2924 330.203 25.5455 0.3323 15813 +15815 3 345.5589 329.1036 25.8668 0.3307 15814 +15816 3 345.8083 327.9951 26.0845 0.3292 15815 +15817 3 345.639 326.9003 26.2053 0.3276 15816 +15818 3 345.5109 325.7815 26.2576 0.326 15817 +15819 3 346.1332 324.9967 26.2181 0.3245 15818 +15820 3 347.188 324.6031 26.1532 0.3229 15819 +15821 3 347.7588 323.7554 26.1034 0.3214 15820 +15822 3 347.4522 322.7087 26.0757 0.3198 15821 +15823 3 347.3104 321.6081 26.1316 0.3182 15822 +15824 3 347.9751 320.7261 26.2041 0.3167 15823 +15825 3 348.3388 319.653 26.2679 0.3151 15824 +15826 3 348.9578 318.6978 26.3131 0.3136 15825 +15827 3 349.8432 317.9817 26.3381 0.312 15826 +15828 3 350.7401 317.2838 26.3052 0.3104 15827 +15829 3 351.7262 316.7141 26.2469 0.3089 15828 +15830 3 351.764 316.3046 25.8707 0.2574 15829 +15831 3 351.8818 315.1709 26.1527 0.2562 15830 +15832 3 351.7056 314.06 26.3134 0.2555 15831 +15833 3 351.4597 312.9435 26.4662 0.2549 15832 +15834 3 351.4322 311.8372 26.6162 0.2543 15833 +15835 3 352.0443 310.9335 26.7746 0.2537 15834 +15836 3 351.8692 309.8135 26.9839 0.2531 15835 +15837 3 351.7205 308.7061 27.2164 0.2524 15836 +15838 3 351.2503 307.7051 27.5031 0.2518 15837 +15839 3 351.1588 306.5931 27.8261 0.2512 15838 +15840 3 350.9929 305.4789 28.1165 0.2506 15839 +15841 3 350.7515 304.3749 28.3928 0.2499 15840 +15842 3 350.5948 303.2447 28.6272 0.2493 15841 +15843 3 350.1315 302.2345 28.819 0.2487 15842 +15844 3 349.4428 301.3216 28.9862 0.2481 15843 +15845 3 348.8674 300.3389 29.1525 0.2474 15844 +15846 3 348.9349 299.3356 29.3502 0.2468 15845 +15847 3 349.1614 298.3346 29.6814 0.2462 15846 +15848 3 348.7678 297.3473 30.1006 0.2456 15847 +15849 3 348.2897 296.3177 30.5239 0.245 15848 +15850 3 348.1078 295.2458 31.0097 0.2443 15849 +15851 3 347.6742 294.2231 31.4552 0.2437 15850 +15852 3 346.9981 293.3044 31.8363 0.2431 15851 +15853 3 346.4295 292.4121 32.2804 0.2425 15852 +15854 3 346.0314 291.3814 32.7219 0.2419 15853 +15855 3 345.4159 290.4513 33.1439 0.2412 15854 +15856 3 345.1505 289.3622 33.4771 0.2406 15855 +15857 3 345.2786 288.2331 33.7322 0.24 15856 +15858 3 345.2855 287.0914 33.9296 0.2394 15857 +15859 3 345.1677 285.96 34.1113 0.2388 15858 +15860 3 345.0922 284.8251 34.2958 0.2381 15859 +15861 3 345.1345 283.6857 34.4817 0.2375 15860 +15862 3 345.1928 282.5474 34.6755 0.2369 15861 +15863 3 345.1562 281.4046 34.8533 0.2363 15862 +15864 3 345.1997 280.2628 35.0081 0.2356 15863 +15865 3 345.5864 279.1932 35.1464 0.235 15864 +15866 3 345.6356 278.0641 35.317 0.2344 15865 +15867 3 345.4422 276.9498 35.5376 0.2338 15866 +15868 3 345.297 275.8184 35.7728 0.2331 15867 +15869 3 345.1574 274.6858 36.0394 0.2325 15868 +15870 3 345.0178 273.5533 36.3236 0.2319 15869 +15871 3 344.8782 272.4207 36.6114 0.2313 15870 +15872 3 344.7387 271.2882 36.8908 0.2307 15871 +15873 3 344.2628 270.254 37.133 0.23 15872 +15874 3 343.8647 269.4566 38.2407 0.2294 15873 +15875 3 351.8864 316.7164 26.2252 0.3089 15829 +15876 3 353.0304 316.7324 26.2427 0.3089 15875 +15877 3 354.116 317.0813 26.3031 0.3089 15876 +15878 3 355.2017 317.166 26.5095 0.3089 15877 +15879 3 356.3274 317.1717 26.7684 0.3089 15878 +15880 3 357.46 317.2735 27.0135 0.3089 15879 +15881 3 358.5605 317.587 27.1803 0.3089 15880 +15882 3 359.7033 317.6236 27.2753 0.3089 15881 +15883 3 360.6849 317.0859 27.3061 0.3089 15882 +15884 3 361.1288 316.0414 27.2494 0.3089 15883 +15885 3 361.7946 315.2281 27.0768 0.3089 15884 +15886 3 362.8722 315.2098 26.8864 0.3089 15885 +15887 3 363.7256 315.8824 26.8513 0.3089 15886 +15888 3 364.2908 316.8434 26.946 0.3089 15887 +15889 3 365.1007 317.595 27.1144 0.3089 15888 +15890 3 366.1578 317.9199 27.2887 0.3089 15889 +15891 3 367.3006 317.8856 27.4253 0.3089 15890 +15892 3 368.4435 317.8352 27.505 0.3089 15891 +15893 3 369.5829 317.7654 27.5215 0.3089 15892 +15894 3 370.6995 317.5595 27.4668 0.3089 15893 +15895 3 371.7828 317.2381 27.3421 0.3089 15894 +15896 3 372.8273 316.7919 27.2104 0.3089 15895 +15897 3 373.8684 316.3263 27.1127 0.3089 15896 +15898 3 374.9563 316.2611 27.0632 0.3089 15897 +15899 3 376.0294 316.642 27.062 0.3089 15898 +15900 3 377.1047 317.0218 27.0832 0.3089 15899 +15901 3 378.1972 317.357 27.1095 0.3089 15900 +15902 3 379.3024 317.5172 27.1277 0.3089 15901 +15903 3 380.2359 317.0161 27.1422 0.3089 15902 +15904 3 381.0515 316.2302 27.1717 0.3089 15903 +15905 3 382.0743 315.9865 27.1612 0.3089 15904 +15906 3 383.1553 316.2748 27.0694 0.3089 15905 +15907 3 384.2604 316.3789 26.9377 0.3089 15906 +15908 3 385.3793 316.1764 26.8068 0.3089 15907 +15909 3 386.4169 315.7257 26.7287 0.3089 15908 +15910 3 387.2062 314.9375 26.7239 0.3089 15909 +15911 3 387.8286 313.9811 26.7541 0.3089 15910 +15912 3 388.6557 313.2203 26.7949 0.3089 15911 +15913 3 389.7265 312.8771 26.8344 0.3089 15912 +15914 3 390.8144 313.1082 26.8668 0.3089 15913 +15915 3 391.9447 313.2329 26.889 0.3089 15914 +15916 3 392.4183 312.2754 26.8725 0.3089 15915 +15917 3 393.1962 311.4574 26.8328 0.3089 15916 +15918 3 394.1984 310.9758 26.9065 0.3089 15917 +15919 3 395.1479 310.3992 27.0479 0.3089 15918 +15920 3 396.2336 310.0984 27.1071 0.3089 15919 +15921 3 397.3306 310.3089 27.0775 0.3089 15920 +15922 3 398.3671 310.6429 27.126 0.3089 15921 +15923 3 399.4608 310.4438 27.0587 0.3089 15922 +15924 3 400.4538 310.0572 26.8645 0.3089 15923 +15925 3 401.5612 309.8158 26.7413 0.3089 15924 +15926 3 402.6422 310.048 26.7 0.3089 15925 +15927 3 403.4831 310.8099 26.7602 0.3089 15926 +15928 3 403.8423 311.216 27.0029 0.3089 15927 +15929 3 402.974 311.0033 27.4987 0.3089 15928 +15930 3 402.2052 310.2311 28.0274 0.3089 15929 +15931 3 402.2647 309.3159 28.4682 0.3089 15930 +15932 3 403.2303 309.404 28.8308 0.3089 15931 +15933 3 404.3216 309.7472 29.127 0.3089 15932 +15934 3 405.3844 309.8044 29.4955 0.3089 15933 +15935 3 406.4506 309.46 29.834 0.3089 15934 +15936 3 406.9723 308.491 30.1428 0.3089 15935 +15937 3 406.6394 307.6765 30.527 0.3089 15936 +15938 3 407.5809 307.831 31.0358 0.3089 15937 +15939 3 408.6437 307.4637 31.4689 0.3089 15938 +15940 3 409.6893 307.2841 31.8357 0.3089 15939 +15941 3 410.7967 307.275 32.2025 0.3089 15940 +15942 3 411.721 306.8654 32.6872 0.3089 15941 +15943 3 412.11 307.3436 33.2595 0.3089 15942 +15944 3 412.9199 307.9648 33.724 0.3089 15943 +15945 3 414.0033 307.6948 34.0886 0.3089 15944 +15946 3 414.7812 306.8872 34.3834 0.3089 15945 +15947 3 415.1198 305.8232 34.6326 0.3089 15946 +15948 3 415.3166 304.7502 34.785 0.3089 15947 +15949 3 416.0305 303.8636 34.879 0.3089 15948 +15950 3 416.6082 302.8854 34.981 0.3089 15949 +15951 3 416.9514 301.857 35.0792 0.3089 15950 +15952 3 417.1813 300.7656 35.1215 0.3089 15951 +15953 3 417.7122 299.7566 35.1624 0.3089 15952 +15954 3 418.4535 298.9192 35.2517 0.3089 15953 +15955 3 419.3721 298.2602 35.397 0.3089 15954 +15956 3 420.1786 297.4846 35.5653 0.3089 15955 +15957 3 421.0469 296.7879 35.7221 0.3089 15956 +15958 3 422.1028 296.8142 35.8422 0.3089 15957 +15959 3 423.1999 297.1334 35.9223 0.3089 15958 +15960 3 424.3313 297.2375 35.9685 0.3089 15959 +15961 3 425.2969 296.7593 35.9912 0.3089 15960 +15962 3 426.2144 296.0821 35.9839 0.3089 15961 +15963 3 427.292 296.0169 35.9456 0.3089 15962 +15964 3 428.4028 295.9791 35.9934 0.3089 15963 +15965 3 429.3215 295.3751 36.1024 0.3089 15964 +15966 3 430.0971 294.5663 36.1323 0.3089 15965 +15967 3 431.1267 294.1087 36.1542 0.3089 15966 +15968 3 431.8577 293.2518 36.1872 0.3089 15967 +15969 3 432.7134 292.4945 36.2292 0.3089 15968 +15970 3 433.8037 292.1524 36.2746 0.3089 15969 +15971 3 433.8185 291.8355 35.6115 0.3089 15970 +15972 3 434.1972 290.9272 35.037 0.2974 15971 +15973 3 435.165 290.3529 34.8326 0.2917 15972 +15974 3 436.2026 289.8862 34.6354 0.286 15973 +15975 3 436.7449 288.979 34.3801 0.2803 15974 +15976 3 437.6681 288.5214 34.1194 0.2746 15975 +15977 3 438.7846 288.2743 33.8733 0.2688 15976 +15978 3 439.8097 287.8945 33.5261 0.2631 15977 +15979 3 440.4263 286.9976 33.1632 0.2574 15978 +15980 3 441.2065 286.2425 32.7342 0.2517 15979 +15981 3 442.2796 285.8959 32.3641 0.246 15980 +15982 3 443.1307 285.404 31.8702 0.2402 15981 +15983 3 444.1202 284.8411 31.08 0.2345 15982 +15984 3 434.2132 291.6914 36.3871 0.3089 15970 +15985 3 435.1868 291.1972 36.5884 0.3042 15984 +15986 3 436.309 291.1102 36.7643 0.3018 15985 +15987 3 437.453 291.1102 36.8889 0.2995 15986 +15988 3 438.2103 291.823 37.0266 0.2971 15987 +15989 3 439.1416 292.4236 37.0597 0.2948 15988 +15990 3 440.1346 291.9957 36.9687 0.2924 15989 +15991 3 441.1241 291.4626 36.8337 0.29 15990 +15992 3 442.2578 291.3127 36.78 0.2877 15991 +15993 3 443.4018 291.3127 36.818 0.2853 15992 +15994 3 444.5447 291.315 36.9452 0.283 15993 +15995 3 445.3375 291.9042 37.3304 0.2806 15994 +15996 3 445.5079 292.9475 37.877 0.2783 15995 +15997 3 445.9232 293.8009 38.4759 0.2759 15996 +15998 3 446.9848 293.9725 39.0684 0.2736 15997 +15999 3 448.0396 294.4164 39.5172 0.2712 15998 +16000 3 449.0783 294.8717 39.8532 0.2688 15999 +16001 3 450.1194 295.2195 40.1134 0.2665 16000 +16002 3 451.2325 295.3991 40.2676 0.2641 16001 +16003 3 452.3227 295.5844 40.3214 0.2618 16002 +16004 3 453.453 295.4746 40.3194 0.2594 16003 +16005 3 454.5547 295.3568 40.3903 0.2571 16004 +16006 3 455.6472 295.2401 40.5244 0.2547 16005 +16007 3 456.79 295.2103 40.6171 0.2524 16006 +16008 3 457.8791 295.43 40.6465 0.25 16007 +16009 3 458.9167 295.9036 40.6062 0.2476 16008 +16010 3 460.0127 296.1141 40.5502 0.2453 16009 +16011 3 461.1521 296.129 40.448 0.2429 16010 +16012 3 462.2961 296.137 40.2928 0.2406 16011 +16013 3 463.2754 296.4699 40.0098 0.2382 16012 +16014 3 464.1586 296.9572 39.5536 0.2359 16013 +16015 3 465.2602 297.0339 39.1432 0.2335 16014 +16016 3 466.3756 297.0339 38.2407 0.2312 16015 +16017 3 345.6699 345.234 20.7752 0.4633 15796 +16018 3 346.2053 345.3256 20.6975 0.3089 16017 +16019 3 347.3024 345.2043 20.6515 0.3089 16018 +16020 3 348.0586 344.4481 20.6333 0.3089 16019 +16021 3 347.959 343.3636 20.7252 0.3089 16020 +16022 3 347.9133 342.2402 20.9017 0.3089 16021 +16023 3 348.7415 341.4874 21.0889 0.3089 16022 +16024 3 349.7437 340.936 21.2339 0.3089 16023 +16025 3 349.9851 340.5963 21.2884 0.3089 16024 +16026 3 350.7024 339.7451 20.7375 0.3063 16025 +16027 3 351.5112 338.9981 20.4693 0.3051 16026 +16028 3 352.312 338.1836 20.2252 0.3038 16027 +16029 3 353.1974 337.4606 20.0045 0.3025 16028 +16030 3 354.1298 336.8805 19.7495 0.3012 16029 +16031 3 355.1113 336.4561 19.4029 0.3 16030 +16032 3 355.9682 335.7697 19.0915 0.2987 16031 +16033 3 356.3949 334.7447 18.8651 0.2974 16032 +16034 3 356.3182 333.6236 18.7026 0.2962 16033 +16035 3 355.9533 332.5402 18.5979 0.2949 16034 +16036 3 355.8 331.4408 18.5445 0.2936 16035 +16037 3 356.1066 330.3506 18.5255 0.2924 16036 +16038 3 356.682 329.369 18.5126 0.2911 16037 +16039 3 357.349 328.4401 18.4949 0.2898 16038 +16040 3 358.0537 327.5432 18.4697 0.2885 16039 +16041 3 358.8774 326.7527 18.4337 0.2873 16040 +16042 3 359.7159 325.9771 18.384 0.286 16041 +16043 3 360.4504 325.1031 18.3179 0.2847 16042 +16044 3 360.9663 324.0986 18.2296 0.2835 16043 +16045 3 361.3221 323.0221 18.0775 0.2822 16044 +16046 3 361.814 322.0108 17.8646 0.2809 16045 +16047 3 362.6755 321.3542 17.6403 0.2796 16046 +16048 3 363.7577 320.9835 17.3987 0.2784 16047 +16049 3 364.7941 320.7787 17.0289 0.2771 16048 +16050 3 365.7196 320.3372 16.5507 0.2758 16049 +16051 3 365.9153 319.3602 16.0907 0.2746 16050 +16052 3 366.2001 318.3363 15.6069 0.2733 16051 +16053 3 366.3889 317.2712 15.0547 0.272 16052 +16054 3 365.4291 317.3056 14.4275 0.2708 16053 +16055 3 366.3122 317.7826 13.7562 0.2695 16054 +16056 3 367.2949 317.5161 13.1741 0.2682 16055 +16057 3 367.6896 316.491 12.6461 0.2669 16056 +16058 3 367.7949 315.418 12.112 0.2657 16057 +16059 3 368.3634 314.7647 11.6892 0.2644 16058 +16060 3 369.4777 314.8666 11.3311 0.2631 16059 +16061 3 370.4432 314.4204 10.9345 0.2619 16060 +16062 3 371.2188 313.6265 10.5191 0.2606 16061 +16063 3 371.2543 312.9629 9.9809 0.2593 16062 +16064 3 371.8927 312.5488 9.4648 0.258 16063 +16065 3 372.6111 312.9195 9.0358 0.2568 16064 +16066 3 373.1053 311.9253 8.6809 0.2555 16065 +16067 3 373.9301 311.7045 8.2911 0.2542 16066 +16068 3 374.8213 312.2022 7.851 0.2529 16067 +16069 3 375.8452 312.1942 7.5183 0.2517 16068 +16070 3 376.8816 311.7469 7.2174 0.2504 16069 +16071 3 377.9879 311.5101 6.9352 0.2491 16070 +16072 3 379.0736 311.6942 6.7095 0.2479 16071 +16073 3 380.1706 311.9494 6.5374 0.2466 16072 +16074 3 381.2803 311.8121 6.3482 0.2453 16073 +16075 3 381.9187 311.0444 6.1386 0.244 16074 +16076 3 382.1486 309.929 5.9294 0.2428 16075 +16077 3 382.5193 308.8789 5.6703 0.2415 16076 +16078 3 383.2697 308.0655 5.3851 0.2402 16077 +16079 3 383.9504 307.1651 5.1358 0.239 16078 +16080 3 384.8084 306.4513 4.9106 0.2377 16079 +16081 3 385.9101 306.2774 4.6726 0.2364 16080 +16082 3 387.0381 306.1069 4.4677 0.2352 16081 +16083 3 388.134 305.7855 4.3032 0.2339 16082 +16084 3 389.1888 305.3428 4.1656 0.2326 16083 +16085 3 390.1555 304.7364 4.0445 0.2313 16084 +16086 3 390.6222 303.8441 3.3743 0.2301 16085 +16087 3 350.2402 341.158 21.3494 0.3089 16024 +16088 3 351.3327 341.4646 21.4369 0.308 16087 +16089 3 352.4687 341.508 21.4967 0.3075 16088 +16090 3 353.5841 341.293 21.5543 0.3071 16089 +16091 3 354.6983 341.1282 21.6524 0.3066 16090 +16092 3 355.8103 340.9234 21.7631 0.3062 16091 +16093 3 356.7598 340.3366 21.8544 0.3057 16092 +16094 3 357.6419 339.609 21.9269 0.3053 16093 +16095 3 358.7115 339.4351 21.9802 0.3049 16094 +16096 3 359.6221 340.0208 22.0194 0.3044 16095 +16097 3 360.7284 340.0849 22.1129 0.304 16096 +16098 3 361.7534 339.5907 22.1756 0.3035 16097 +16099 3 362.7201 338.9866 22.1764 0.3031 16098 +16100 3 363.665 338.3563 22.1173 0.3026 16099 +16101 3 364.539 337.6333 22.0624 0.3022 16100 +16102 3 365.6704 337.7042 22.0123 0.3017 16101 +16103 3 366.7206 338.1492 21.9684 0.3013 16102 +16104 3 367.8463 338.3357 21.9431 0.3008 16103 +16105 3 368.9858 338.2614 21.9349 0.3004 16104 +16106 3 370.108 338.0657 21.936 0.2999 16105 +16107 3 371.2474 338.0817 21.9375 0.2995 16106 +16108 3 372.0277 337.5212 21.9397 0.299 16107 +16109 3 372.5825 336.6289 21.9426 0.2986 16108 +16110 3 373.635 336.5682 21.9469 0.2981 16109 +16111 3 374.7538 336.7936 21.9528 0.2977 16110 +16112 3 375.8898 336.9252 21.9608 0.2972 16111 +16113 3 376.996 336.7433 21.9722 0.2968 16112 +16114 3 378.1103 336.4939 21.9887 0.2964 16113 +16115 3 379.2474 336.4527 22.0118 0.2959 16114 +16116 3 380.3834 336.5785 22.0421 0.2955 16115 +16117 3 381.4245 337.0144 22.0797 0.295 16116 +16118 3 382.4632 337.4823 22.1468 0.2946 16117 +16119 3 383.5432 337.8346 22.2578 0.2941 16118 +16120 3 384.6608 338.0554 22.3658 0.2937 16119 +16121 3 385.79 338.2362 22.4507 0.2932 16120 +16122 3 386.9237 338.3735 22.5313 0.2928 16121 +16123 3 387.9121 338.8688 22.6344 0.2923 16122 +16124 3 388.3045 339.8961 22.6891 0.2919 16123 +16125 3 389.0973 340.6512 22.6502 0.2914 16124 +16126 3 390.1292 340.2782 22.6024 0.291 16125 +16127 3 390.7458 339.3218 22.5565 0.2905 16126 +16128 3 391.8612 339.1354 22.5124 0.2901 16127 +16129 3 393.0052 339.1274 22.4727 0.2896 16128 +16130 3 394.1492 339.1171 22.4434 0.2892 16129 +16131 3 395.2875 339.005 22.4209 0.2887 16130 +16132 3 396.404 338.7681 22.3937 0.2883 16131 +16133 3 397.4164 338.2636 22.3593 0.2879 16132 +16134 3 398.5479 338.4124 22.2963 0.2874 16133 +16135 3 399.6381 338.6332 22.1848 0.287 16134 +16136 3 400.7409 338.3357 22.1019 0.2865 16135 +16137 3 401.8117 338.0497 22.0445 0.2861 16136 +16138 3 402.7521 338.5107 21.9873 0.2856 16137 +16139 3 403.3618 339.3573 21.9446 0.2852 16138 +16140 3 404.436 339.5415 22.0247 0.2847 16139 +16141 3 405.556 339.379 22.1467 0.2843 16140 +16142 3 406.6851 339.2074 22.2415 0.2838 16141 +16143 3 407.8188 339.0633 22.3076 0.2834 16142 +16144 3 408.9525 338.9764 22.3471 0.2829 16143 +16145 3 410.0565 339.1811 22.3281 0.2825 16144 +16146 3 411.1444 339.4866 22.2534 0.282 16145 +16147 3 412.2782 339.585 22.1931 0.2816 16146 +16148 3 413.4004 339.4191 22.1639 0.2811 16147 +16149 3 414.517 339.315 22.1815 0.2807 16148 +16150 3 415.4894 339.7829 22.2735 0.2802 16149 +16151 3 416.511 340.0551 22.351 0.2798 16150 +16152 3 417.6332 339.9144 22.4236 0.2794 16151 +16153 3 418.6994 340.054 22.597 0.2789 16152 +16154 3 419.6432 340.6432 22.8101 0.2785 16153 +16155 3 420.6625 341.1122 23.0418 0.278 16154 +16156 3 421.7882 341.1991 23.2494 0.2776 16155 +16157 3 422.9322 341.2003 23.4088 0.2771 16156 +16158 3 424.0545 341.3971 23.5137 0.2767 16157 +16159 3 425.1722 341.6373 23.5648 0.2762 16158 +16160 3 426.156 342.1967 23.582 0.2758 16159 +16161 3 426.8253 343.1131 23.5775 0.2753 16160 +16162 3 427.6078 343.9447 23.5594 0.2749 16161 +16163 3 428.5321 344.6151 23.54 0.2744 16162 +16164 3 429.6338 344.9057 23.5101 0.274 16163 +16165 3 430.7137 345.2821 23.4659 0.2735 16164 +16166 3 431.6495 345.9342 23.3952 0.2731 16165 +16167 3 432.6757 346.3185 23.2081 0.2726 16166 +16168 3 433.7304 346.7475 23.0209 0.2722 16167 +16169 3 434.8138 347.1125 22.8815 0.2717 16168 +16170 3 435.9406 346.9123 22.7927 0.2713 16169 +16171 3 437.024 346.5462 22.7551 0.2709 16170 +16172 3 438.1394 346.298 22.7665 0.2704 16171 +16173 3 439.2823 346.3094 22.8204 0.27 16172 +16174 3 440.3336 346.7453 22.8968 0.2695 16173 +16175 3 441.1344 347.5094 23.0741 0.2691 16174 +16176 3 442.1663 347.9419 23.2894 0.2686 16175 +16177 3 443.3069 348.0334 23.4572 0.2682 16176 +16178 3 444.4348 348.173 23.5805 0.2677 16177 +16179 3 445.4747 348.6454 23.6626 0.2673 16178 +16180 3 446.565 348.9852 23.7076 0.2668 16179 +16181 3 447.6724 349.2266 23.7203 0.2664 16180 +16182 3 448.6402 349.8226 23.7206 0.2659 16181 +16183 3 449.4376 350.6429 23.7212 0.2655 16182 +16184 3 450.291 351.3819 23.7219 0.265 16183 +16185 3 451.3492 351.8178 23.7229 0.2646 16184 +16186 3 452.3902 352.2856 23.7243 0.2641 16185 +16187 3 453.2997 352.9572 23.7263 0.2637 16186 +16188 3 454.0479 353.7763 23.729 0.2632 16187 +16189 3 455.1393 354.108 23.7329 0.2628 16188 +16190 3 456.2409 354.3792 23.7383 0.2624 16189 +16191 3 457.2648 354.8905 23.7459 0.2619 16190 +16192 3 458.2875 355.403 23.7562 0.2615 16191 +16193 3 459.2908 355.9487 23.7707 0.261 16192 +16194 3 460.2232 356.61 23.7921 0.2606 16193 +16195 3 461.1967 357.111 23.8223 0.2601 16194 +16196 3 462.3316 357.0172 23.8608 0.2597 16195 +16197 3 463.4493 356.8868 23.9072 0.2592 16196 +16198 3 464.5384 357.1545 23.9929 0.2588 16197 +16199 3 465.5783 357.5389 24.1483 0.2583 16198 +16200 3 466.6994 357.6968 24.2892 0.2579 16199 +16201 3 467.8377 357.6968 24.3527 0.2574 16200 +16202 3 468.9634 357.6968 24.3049 0.257 16201 +16203 3 470.0913 357.6968 24.1932 0.2565 16202 +16204 3 471.2262 357.6098 24.0915 0.2561 16203 +16205 3 472.3507 357.3993 24.0198 0.2556 16204 +16206 3 473.4799 357.3627 23.9971 0.2552 16205 +16207 3 474.5506 357.7116 24.0304 0.2547 16206 +16208 3 475.5883 358.0823 24.1508 0.2543 16207 +16209 3 476.7048 358.1532 24.3494 0.2539 16208 +16210 3 477.8442 358.1784 24.5364 0.2534 16209 +16211 3 478.9859 358.2436 24.6788 0.253 16210 +16212 3 480.1059 358.4552 24.7741 0.2525 16211 +16213 3 481.1961 358.7984 24.8241 0.2521 16212 +16214 3 482.212 359.256 24.885 0.2516 16213 +16215 3 483.2656 359.5398 24.9559 0.2512 16214 +16216 3 484.2106 359.9802 24.8998 0.2507 16215 +16217 3 485.0674 360.654 24.6827 0.2503 16216 +16218 3 486.1096 360.8897 24.3662 0.2498 16217 +16219 3 487.2433 360.9034 24.0526 0.2494 16218 +16220 3 488.377 361.0338 23.7791 0.2489 16219 +16221 3 489.4982 361.258 23.5532 0.2485 16220 +16222 3 490.6273 361.3518 23.3444 0.248 16221 +16223 3 491.7438 361.361 23.1024 0.2476 16222 +16224 3 492.8569 361.5383 22.8794 0.2471 16223 +16225 3 493.9792 361.7603 22.6946 0.2467 16224 +16226 3 495.1175 361.8186 22.5376 0.2462 16225 +16227 3 496.2615 361.8186 22.403 0.2458 16226 +16228 3 497.4055 361.8186 22.2873 0.2454 16227 +16229 3 498.5495 361.8186 22.1813 0.2449 16228 +16230 3 499.6512 361.782 21.9812 0.2445 16229 +16231 3 500.7448 361.5349 21.7549 0.244 16230 +16232 3 501.8717 361.536 21.5517 0.2436 16231 +16233 3 502.9928 361.7568 21.3755 0.2431 16232 +16234 3 504.1299 361.8186 21.2229 0.2427 16233 +16235 3 505.2659 361.8186 21.0491 0.2422 16234 +16236 3 506.3836 361.8186 20.822 0.2418 16235 +16237 3 507.5207 361.8186 20.6028 0.2413 16236 +16238 3 508.6624 361.7648 20.4077 0.2409 16237 +16239 3 509.7756 361.5212 20.2395 0.2404 16238 +16240 3 510.8818 361.2283 20.0964 0.24 16239 +16241 3 511.9926 360.9606 19.9546 0.2395 16240 +16242 3 513.0039 360.5556 19.7228 0.2391 16241 +16243 3 513.918 359.899 19.4975 0.2386 16242 +16244 3 514.8835 359.2869 19.3085 0.2382 16243 +16245 3 515.9989 359.1359 19.1504 0.2377 16244 +16246 3 517.1052 359.391 19.0185 0.2373 16245 +16247 3 518.24 359.5054 18.909 0.2369 16246 +16248 3 519.3634 359.5272 18.7471 0.2364 16247 +16249 3 520.4891 359.5295 18.533 0.236 16248 +16250 3 521.6308 359.5295 18.335 0.2355 16249 +16251 3 522.7519 359.319 18.1716 0.2351 16250 +16252 3 523.8044 358.8774 18.039 0.2346 16251 +16253 3 524.9244 358.6692 17.9312 0.2342 16252 +16254 3 526.0661 358.6348 17.8435 0.2337 16253 +16255 3 527.2101 358.6165 17.7602 0.2333 16254 +16256 3 528.2958 358.9174 17.611 0.2328 16255 +16257 3 529.2567 359.4597 17.366 0.2324 16256 +16258 3 530.339 359.8235 17.1568 0.2319 16257 +16259 3 531.4635 360.0294 16.9992 0.2315 16258 +16260 3 532.5789 360.2513 16.8489 0.231 16259 +16261 3 533.6634 360.4424 16.6481 0.2306 16260 +16262 3 534.8063 360.4447 16.522 0.2301 16261 +16263 3 535.9354 360.4447 16.5322 0.2297 16262 +16264 3 537.0451 360.4447 16.9422 0.2292 16263 +16265 3 345.6539 344.3497 19.8531 0.3089 16017 +16266 3 345.7054 343.2137 19.6278 0.3075 16265 +16267 3 345.8118 342.0743 19.543 0.3068 16266 +16268 3 345.8792 340.9337 19.458 0.3061 16267 +16269 3 346.0863 339.8241 19.3377 0.3054 16268 +16270 3 346.648 338.8562 19.1862 0.3047 16269 +16271 3 347.3115 337.9284 19.0559 0.3041 16270 +16272 3 347.7463 336.8851 18.927 0.3034 16271 +16273 3 348.0631 335.7869 18.7784 0.3027 16272 +16274 3 348.5425 334.7676 18.5809 0.302 16273 +16275 3 349.079 333.7654 18.3528 0.3013 16274 +16276 3 349.5114 332.7313 18.0739 0.3006 16275 +16277 3 349.4382 331.6662 17.7464 0.2999 16276 +16278 3 349.254 330.5542 17.4352 0.2992 16277 +16279 3 349.0767 329.4308 17.1743 0.2985 16278 +16280 3 349.1694 328.3063 16.9976 0.2978 16279 +16281 3 349.3639 327.1794 16.9125 0.2971 16280 +16282 3 349.8878 326.231 16.9817 0.2965 16281 +16283 3 350.2276 325.174 17.1028 0.2958 16282 +16284 3 350.2573 324.0369 17.2155 0.2951 16283 +16285 3 350.6349 322.9867 17.3083 0.2944 16284 +16286 3 351.5329 322.3323 17.3784 0.2937 16285 +16287 3 351.6564 321.2672 17.4445 0.293 16286 +16288 3 351.6404 320.1244 17.4833 0.2923 16287 +16289 3 351.5352 318.985 17.4992 0.2916 16288 +16290 3 351.6244 317.8478 17.4956 0.2909 16289 +16291 3 351.8681 316.7301 17.4703 0.2902 16290 +16292 3 352.7124 315.9797 17.4128 0.2895 16291 +16293 3 353.5269 315.1812 17.313 0.2889 16292 +16294 3 353.6596 314.0772 17.2088 0.2882 16293 +16295 3 353.1974 313.0625 17.054 0.2875 16294 +16296 3 353.2832 311.9551 16.8441 0.2868 16295 +16297 3 353.6825 310.89 16.7017 0.2861 16296 +16298 3 354.2476 309.9096 16.6428 0.2854 16297 +16299 3 354.807 308.9235 16.5784 0.2847 16298 +16300 3 355.5232 308.0781 16.4254 0.284 16299 +16301 3 356.4349 307.3917 16.2796 0.2833 16300 +16302 3 357.2964 306.6595 16.1652 0.2826 16301 +16303 3 357.945 305.734 15.9956 0.282 16302 +16304 3 358.6165 304.9458 15.7259 0.2813 16303 +16305 3 359.7022 304.8291 15.4456 0.2806 16304 +16306 3 360.8256 305.0179 15.2182 0.2799 16305 +16307 3 361.9033 304.8062 15.0238 0.2792 16306 +16308 3 362.8379 304.1518 14.8496 0.2785 16307 +16309 3 363.7909 303.5764 14.6647 0.2778 16308 +16310 3 364.888 303.4037 14.4393 0.2771 16309 +16311 3 366.0205 303.3625 14.2057 0.2764 16310 +16312 3 367.1588 303.2698 13.9919 0.2757 16311 +16313 3 368.2959 303.2824 13.7825 0.2751 16312 +16314 3 369.4296 303.263 13.5817 0.2744 16313 +16315 3 370.489 302.9026 13.4016 0.2737 16314 +16316 3 371.1388 302.0549 13.2378 0.273 16315 +16317 3 371.5586 300.9933 13.0944 0.2723 16316 +16318 3 372.38 300.2691 12.9704 0.2716 16317 +16319 3 373.4073 299.8138 12.8006 0.2709 16318 +16320 3 374.4449 299.3562 12.6079 0.2702 16319 +16321 3 375.5558 299.1457 12.4382 0.2695 16320 +16322 3 376.6631 298.8723 12.2987 0.2688 16321 +16323 3 377.6596 298.3277 12.182 0.2682 16322 +16324 3 378.6617 297.8152 12.0229 0.2675 16323 +16325 3 379.7554 297.5029 11.8869 0.2668 16324 +16326 3 380.7815 297.0076 11.7769 0.2661 16325 +16327 3 381.3993 296.0741 11.682 0.2654 16326 +16328 3 381.2941 294.9815 11.5262 0.2647 16327 +16329 3 381.7494 293.9531 11.3983 0.264 16328 +16330 3 382.8488 293.6854 11.3041 0.2633 16329 +16331 3 383.5683 292.7988 11.2283 0.2626 16330 +16332 3 384.2788 291.903 11.1635 0.2619 16331 +16333 3 385.1127 291.1446 11.1051 0.2612 16332 +16334 3 386.2556 291.0839 11.0473 0.2606 16333 +16335 3 387.3973 291.0702 10.9718 0.2599 16334 +16336 3 388.5207 290.862 10.8641 0.2592 16335 +16337 3 389.6189 290.6424 10.6721 0.2585 16336 +16338 3 390.6394 290.1378 10.4795 0.2578 16337 +16339 3 391.7399 289.9765 10.2191 0.2571 16338 +16340 3 392.845 290.1413 9.9232 0.2564 16339 +16341 3 393.7602 289.7821 9.6628 0.2557 16340 +16342 3 393.7854 288.6415 9.4505 0.255 16341 +16343 3 393.9673 287.7435 9.2543 0.2543 16342 +16344 3 394.998 287.4289 9.0014 0.2536 16343 +16345 3 395.8766 286.7139 8.765 0.253 16344 +16346 3 396.8021 286.0423 8.589 0.2523 16345 +16347 3 397.6292 285.277 8.4356 0.2516 16346 +16348 3 398.2378 284.332 8.28 0.2509 16347 +16349 3 398.5902 283.2658 8.1921 0.2502 16348 +16350 3 398.6531 282.131 8.1876 0.2495 16349 +16351 3 398.9128 281.0636 8.26 0.2488 16350 +16352 3 399.5923 280.1519 8.3399 0.2481 16351 +16353 3 400.2284 279.2321 8.4209 0.2474 16352 +16354 3 400.5224 278.1316 8.4998 0.2467 16353 +16355 3 400.6471 276.9956 8.5694 0.2461 16354 +16356 3 400.5968 275.8584 8.6322 0.2454 16355 +16357 3 400.2902 274.7774 8.7286 0.2447 16356 +16358 3 400.0248 273.7031 8.8649 0.244 16357 +16359 3 399.9127 272.5729 8.9992 0.2433 16358 +16360 3 399.7822 271.446 9.1437 0.2426 16359 +16361 3 399.5866 270.3352 9.263 0.2419 16360 +16362 3 398.9494 269.4406 9.3348 0.2412 16361 +16363 3 398.3854 268.5231 9.3612 0.2405 16362 +16364 3 398.398 267.4123 9.3088 0.2399 16363 +16365 3 398.6943 266.3186 9.2214 0.2392 16364 +16366 3 398.8602 265.1986 9.1406 0.2385 16365 +16367 3 399.0512 264.0855 9.1032 0.2378 16366 +16368 3 399.4207 263.0102 9.0975 0.2371 16367 +16369 3 399.5431 261.8879 9.0745 0.2364 16368 +16370 3 399.5523 260.7485 8.9915 0.2357 16369 +16371 3 399.6267 259.6136 8.8346 0.235 16370 +16372 3 399.7616 258.4834 8.6143 0.2343 16371 +16373 3 400.1735 257.4732 8.2842 0.2336 16372 +16374 3 400.9697 256.6839 7.9505 0.2329 16373 +16375 3 401.9078 256.0615 7.599 0.2323 16374 +16376 3 402.8299 255.39 7.2959 0.2316 16375 +16377 3 403.5082 254.4977 6.9965 0.2309 16376 +16378 3 403.8789 253.4269 6.7393 0.2302 16377 +16379 3 404.817 252.8686 6.186 0.2295 16378 +16380 3 332.4693 363.1022 20.8662 0.5663 1 +16381 3 333.5835 363.2189 20.9057 0.429 16380 +16382 3 334.6475 363.5689 21.0507 0.3604 16381 +16383 3 335.3075 362.5233 21.3217 0.3604 16382 +16384 3 336.2056 361.9719 21.4388 0.3568 16383 +16385 3 337.3359 361.8358 21.5354 0.355 16384 +16386 3 338.4776 361.7648 21.6169 0.3533 16385 +16387 3 339.5712 361.496 21.7359 0.3515 16386 +16388 3 340.6798 361.3839 21.9128 0.3497 16387 +16389 3 341.7689 361.6687 22.0949 0.3479 16388 +16390 3 342.8934 361.7488 22.2459 0.3462 16389 +16391 3 343.8761 361.2352 22.3624 0.3444 16390 +16392 3 344.781 360.5362 22.4494 0.3426 16391 +16393 3 345.7763 359.9802 22.515 0.3408 16392 +16394 3 346.799 359.4665 22.5742 0.3391 16393 +16395 3 347.7566 358.8442 22.6443 0.3373 16394 +16396 3 348.7873 358.3557 22.7341 0.3355 16395 +16397 3 349.9004 358.1361 22.8721 0.3337 16396 +16398 3 350.9781 358.3923 23.0915 0.332 16397 +16399 3 352.0912 358.5937 23.3519 0.3302 16398 +16400 3 353.2089 358.5456 23.6577 0.3284 16399 +16401 3 354.2133 358.0388 23.9294 0.3266 16400 +16402 3 355.3195 358.072 24.1825 0.3249 16401 +16403 3 356.261 358.7001 24.4101 0.3231 16402 +16404 3 357.2609 359.2538 24.5918 0.3213 16403 +16405 3 358.374 359.5066 24.7261 0.3195 16404 +16406 3 359.4551 359.7594 24.9184 0.3178 16405 +16407 3 360.5819 359.5718 25.0595 0.316 16406 +16408 3 361.6264 359.1439 25.1548 0.3142 16407 +16409 3 362.3345 360.0374 25.211 0.3124 16408 +16410 3 363.2578 360.654 25.2312 0.3107 16409 +16411 3 364.4006 360.6449 25.2219 0.3089 16410 +16412 3 365.5389 360.6494 25.2123 0.3071 16411 +16413 3 366.66 360.5053 25.2135 0.3053 16412 +16414 3 367.7422 360.3714 25.0834 0.3035 16413 +16415 3 368.7501 360.2788 24.8078 0.3018 16414 +16416 3 369.7557 359.8177 24.6013 0.3 16415 +16417 3 370.4501 358.9609 24.5569 0.2982 16416 +16418 3 371.3618 358.4118 24.5902 0.2965 16417 +16419 3 372.2359 357.7425 24.6593 0.2947 16418 +16420 3 372.7324 356.7301 24.7591 0.2929 16419 +16421 3 373.3169 355.7565 24.8652 0.2911 16420 +16422 3 373.7345 354.7064 24.9469 0.2894 16421 +16423 3 374.3179 353.8266 25.1169 0.2876 16422 +16424 3 375.2354 353.2031 25.2861 0.2858 16423 +16425 3 376.3234 353.0887 25.3434 0.284 16424 +16426 3 377.4571 353.0098 25.3531 0.2822 16425 +16427 3 378.5931 353.0887 25.3447 0.2805 16426 +16428 3 379.7325 353.1917 25.3094 0.2787 16427 +16429 3 380.8365 352.9263 25.2652 0.2769 16428 +16430 3 381.9656 352.7627 25.2207 0.2752 16429 +16431 3 383.057 352.4275 25.2002 0.2734 16430 +16432 3 384.193 352.3337 25.2158 0.2716 16431 +16433 3 385.3335 352.2719 25.2809 0.2698 16432 +16434 3 386.4581 352.066 25.3704 0.2681 16433 +16435 3 387.5666 352.217 25.5368 0.2663 16434 +16436 3 388.6385 352.519 25.7668 0.2645 16435 +16437 3 389.723 352.8714 25.9634 0.2627 16436 +16438 3 390.692 353.4708 26.0506 0.2609 16437 +16439 3 391.717 353.933 26.0055 0.2592 16438 +16440 3 392.8599 353.9662 25.9248 0.2574 16439 +16441 3 393.504 353.2031 25.8813 0.2574 16440 +16442 3 393.8986 352.193 25.8307 0.2569 16441 +16443 3 393.9661 351.0856 25.6762 0.2566 16442 +16444 3 394.3631 350.0983 25.4868 0.2563 16443 +16445 3 395.2978 349.5057 25.3226 0.2561 16444 +16446 3 396.4177 349.3261 25.19 0.2558 16445 +16447 3 397.5537 349.2609 25.083 0.2555 16446 +16448 3 398.6428 349.3376 25.0943 0.2552 16447 +16449 3 399.7262 349.4726 25.2249 0.255 16448 +16450 3 400.8473 349.2792 25.3632 0.2547 16449 +16451 3 401.7922 348.729 25.4874 0.2544 16450 +16452 3 402.3288 347.7508 25.632 0.2542 16451 +16453 3 403.0289 346.8928 25.8513 0.2539 16452 +16454 3 404.0654 346.6995 26.1943 0.2536 16453 +16455 3 404.8982 346.942 26.826 0.2534 16454 +16456 3 405.8477 347.3081 27.6018 0.2531 16455 +16457 3 406.6222 347.1285 28.4642 0.2528 16456 +16458 3 407.4836 346.7864 29.2958 0.2525 16457 +16459 3 408.4938 347.1926 29.9589 0.2523 16458 +16460 3 409.4891 347.7371 30.4357 0.252 16459 +16461 3 410.5919 347.8435 30.7686 0.2517 16460 +16462 3 411.6741 348.0014 31.0744 0.2515 16461 +16463 3 412.7117 348.443 31.3541 0.2512 16462 +16464 3 413.5995 349.1328 31.6117 0.2509 16463 +16465 3 414.3705 349.9759 31.8643 0.2507 16464 +16466 3 415.2571 350.6669 32.1364 0.2504 16465 +16467 3 416.1998 351.2652 32.4677 0.2501 16466 +16468 3 417.115 351.907 32.8359 0.2498 16467 +16469 3 418.1675 352.1346 33.1386 0.2496 16468 +16470 3 419.3057 352.1301 33.3841 0.2493 16469 +16471 3 420.3182 352.4927 33.7263 0.249 16470 +16472 3 421.3123 353.0281 34.1029 0.2488 16471 +16473 3 422.3968 353.3724 34.463 0.2485 16472 +16474 3 423.4619 353.2249 34.9191 0.2482 16473 +16475 3 424.3142 353.0876 35.6023 0.248 16474 +16476 3 425.3918 352.9503 36.2625 0.2477 16475 +16477 3 426.5152 352.7604 36.8122 0.2474 16476 +16478 3 427.6112 353.0281 37.2506 0.2471 16477 +16479 3 428.6019 353.5429 37.6272 0.2469 16478 +16480 3 429.5102 352.8805 37.9772 0.2466 16479 +16481 3 430.3911 352.1953 38.3048 0.2463 16480 +16482 3 431.5088 351.9642 38.5851 0.2461 16481 +16483 3 432.5567 351.5821 38.8088 0.2458 16482 +16484 3 433.4238 350.8591 39.041 0.2455 16483 +16485 3 434.4191 350.382 39.291 0.2453 16484 +16486 3 435.4842 350.024 39.4859 0.245 16485 +16487 3 436.4932 349.5549 39.6488 0.2447 16486 +16488 3 437.6303 349.4359 39.8012 0.2444 16487 +16489 3 438.7526 349.238 39.9568 0.2442 16488 +16490 3 439.7788 348.7964 40.1624 0.2439 16489 +16491 3 440.7214 348.205 40.4538 0.2436 16490 +16492 3 441.7648 347.7829 40.7616 0.2434 16491 +16493 3 442.8859 347.6261 41.0911 0.2431 16492 +16494 3 443.9807 347.4374 41.4828 0.2428 16493 +16495 3 445.0652 347.1205 41.8729 0.2426 16494 +16496 3 445.9529 346.5794 42.2629 0.2423 16495 +16497 3 446.621 345.7443 42.7244 0.242 16496 +16498 3 447.4104 344.9743 43.1925 0.2418 16497 +16499 3 448.2169 344.1678 43.5789 0.2415 16498 +16500 3 449.036 343.3705 43.8698 0.2412 16499 +16501 3 449.9672 342.7321 44.0894 0.2409 16500 +16502 3 451.03 342.3157 44.256 0.2407 16501 +16503 3 452.0665 341.8558 44.4041 0.2404 16502 +16504 3 453.0904 341.357 44.5463 0.2401 16503 +16505 3 454.1119 340.8548 44.7059 0.2399 16504 +16506 3 454.7869 340.0311 44.9369 0.2396 16505 +16507 3 454.9333 338.9352 45.1615 0.2393 16506 +16508 3 455.0958 337.8083 45.3331 0.2391 16507 +16509 3 455.1621 336.6712 45.4538 0.2388 16508 +16510 3 455.1621 335.5272 45.533 0.2385 16509 +16511 3 455.1026 334.3843 45.579 0.2382 16510 +16512 3 454.835 333.2781 45.603 0.238 16511 +16513 3 454.6714 332.1512 45.6254 0.2377 16512 +16514 3 454.5043 331.021 45.6546 0.2374 16513 +16515 3 453.9747 330.0314 45.691 0.2372 16514 +16516 3 453.4576 329.0155 45.7402 0.2369 16515 +16517 3 453.3329 327.9104 45.8542 0.2366 16516 +16518 3 453.3157 326.771 45.969 0.2364 16517 +16519 3 453.1395 325.643 46.0622 0.2361 16518 +16520 3 452.5653 324.6741 46.1376 0.2358 16519 +16521 3 452.4234 323.5781 46.2434 0.2355 16520 +16522 3 452.4165 322.4364 46.3128 0.2353 16521 +16523 3 452.2392 321.3084 46.3313 0.235 16522 +16524 3 452.1912 320.1678 46.3103 0.2347 16523 +16525 3 452.1877 319.033 46.207 0.2345 16524 +16526 3 452.1877 317.9245 45.9925 0.2342 16525 +16527 3 451.928 316.8182 45.7797 0.2339 16526 +16528 3 451.4945 315.7612 45.5949 0.2337 16527 +16529 3 451.0483 314.7087 45.4437 0.2334 16528 +16530 3 450.6033 313.6562 45.3281 0.2331 16529 +16531 3 450.1571 312.6026 45.25 0.2328 16530 +16532 3 449.711 311.5501 45.201 0.2326 16531 +16533 3 449.5417 310.4221 45.187 0.2323 16532 +16534 3 449.481 309.2815 45.2071 0.232 16533 +16535 3 449.4273 308.1398 45.2511 0.2318 16534 +16536 3 449.3724 306.9981 45.3051 0.2315 16535 +16537 3 449.3598 305.8541 45.3566 0.2312 16536 +16538 3 449.4833 304.7181 45.3866 0.231 16537 +16539 3 449.6172 303.5821 45.3961 0.2307 16538 +16540 3 449.8025 302.4553 45.3751 0.2304 16539 +16541 3 450.2612 301.4806 45.2256 0.2301 16540 +16542 3 450.4111 300.3538 45.1587 0.2299 16541 +16543 3 450.5552 299.2235 45.1643 0.2296 16542 +16544 3 451.4384 298.5142 45.2334 0.2293 16543 +16545 3 452.3593 297.845 45.5515 0.2291 16544 +16546 3 394.235 353.8346 25.9182 0.2574 16440 +16547 3 395.2314 354.394 25.9688 0.2557 16546 +16548 3 396.2496 354.9008 26.0265 0.2549 16547 +16549 3 397.1533 355.5941 26.1012 0.254 16548 +16550 3 398.1383 356.1592 26.2255 0.2532 16549 +16551 3 399.1027 356.7347 26.3758 0.2524 16550 +16552 3 400.1518 356.7278 26.5148 0.2515 16551 +16553 3 400.8954 355.8801 26.6545 0.2507 16552 +16554 3 401.3552 354.8459 26.8261 0.2498 16553 +16555 3 401.7339 353.7809 27.0292 0.249 16554 +16556 3 402.4523 353.0109 27.2129 0.2481 16555 +16557 3 403.5266 352.9091 27.4489 0.2473 16556 +16558 3 404.5401 353.3141 27.7444 0.2465 16557 +16559 3 405.4096 354.0405 28.0098 0.2456 16558 +16560 3 406.3854 354.3483 28.2517 0.2448 16559 +16561 3 407.3692 353.8484 28.4964 0.2439 16560 +16562 3 408.4458 353.671 28.7137 0.2431 16561 +16563 3 409.4845 354.0783 28.9022 0.2423 16562 +16564 3 410.569 354.4043 29.097 0.2414 16563 +16565 3 411.6844 354.648 29.3166 0.2406 16564 +16566 3 412.8044 354.8688 29.5506 0.2397 16565 +16567 3 413.794 355.3733 29.8407 0.2389 16566 +16568 3 414.6737 355.9362 30.2677 0.2381 16567 +16569 3 415.7342 356.3091 30.6468 0.2372 16568 +16570 3 416.8416 356.4807 31.0262 0.2364 16569 +16571 3 417.9787 356.4121 31.3328 0.2355 16570 +16572 3 419.1227 356.3983 31.5711 0.2347 16571 +16573 3 420.2564 356.5402 31.7593 0.2338 16572 +16574 3 421.3947 356.6523 31.9105 0.233 16573 +16575 3 422.5032 356.6386 32.1448 0.2322 16574 +16576 3 423.6209 356.674 32.4268 0.2313 16575 +16577 3 424.662 357.1019 32.7194 0.2305 16576 +16578 3 425.6755 357.6338 33.1794 0.2296 16577 +16579 3 334.6669 364.1569 21.3699 0.3089 16382 +16580 3 334.6223 365.2952 21.5853 0.3061 16579 +16581 3 334.4747 366.4232 21.6857 0.3047 16580 +16582 3 334.2345 367.5249 21.8314 0.3033 16581 +16583 3 333.6934 368.4984 21.982 0.3019 16582 +16584 3 332.7438 368.7158 22.0403 0.3004 16583 +16585 3 331.6879 368.3154 22.0474 0.299 16584 +16586 3 330.8345 368.7455 22.0412 0.2976 16585 +16587 3 331.0725 369.8632 22.0271 0.2962 16586 +16588 3 331.4408 370.9443 22.0153 0.2948 16587 +16589 3 331.7268 372.0254 22.0191 0.2934 16588 +16590 3 332.65 372.6557 22.0476 0.292 16589 +16591 3 333.7231 373.0287 22.0937 0.2906 16590 +16592 3 334.7092 373.6075 22.1557 0.2892 16591 +16593 3 335.5787 374.3157 22.2385 0.2878 16592 +16594 3 335.9814 375.3155 22.3762 0.2864 16593 +16595 3 335.9905 376.4366 22.5789 0.285 16594 +16596 3 336.3211 377.5074 22.78 0.2836 16595 +16597 3 336.8176 378.5084 23.0371 0.2822 16596 +16598 3 336.8645 379.5312 23.4016 0.2808 16597 +16599 3 336.8531 380.6191 23.763 0.2794 16598 +16600 3 337.162 381.7162 24.0502 0.278 16599 +16601 3 337.48 382.8133 24.288 0.2766 16600 +16602 3 337.631 383.9344 24.5226 0.2752 16601 +16603 3 337.6699 385.0715 24.7262 0.2738 16602 +16604 3 337.7729 386.2087 24.8829 0.2724 16603 +16605 3 337.949 387.3275 25.0638 0.2709 16604 +16606 3 338.2911 388.404 25.2617 0.2695 16605 +16607 3 338.4902 389.5045 25.4799 0.2681 16606 +16608 3 338.2556 390.5959 25.6763 0.2667 16607 +16609 3 337.758 391.6232 25.8298 0.2653 16608 +16610 3 337.4983 392.718 25.9478 0.2639 16609 +16611 3 337.8747 393.7293 26.0914 0.2625 16610 +16612 3 338.171 394.8127 26.214 0.2611 16611 +16613 3 338.227 395.9521 26.2965 0.2597 16612 +16614 3 337.9605 397.0515 26.3507 0.2583 16613 +16615 3 337.7649 398.1738 26.3832 0.2569 16614 +16616 3 337.8644 399.3063 26.3939 0.2555 16615 +16617 3 337.8324 400.4458 26.384 0.2541 16616 +16618 3 338.2762 401.4616 26.3653 0.2527 16617 +16619 3 338.4444 402.577 26.343 0.2513 16618 +16620 3 338.4112 403.7199 26.3194 0.2499 16619 +16621 3 338.2957 404.8376 26.2288 0.2485 16620 +16622 3 338.203 405.9747 26.1542 0.2471 16621 +16623 3 337.933 407.0844 26.109 0.2457 16622 +16624 3 337.6253 408.1849 26.0998 0.2443 16623 +16625 3 337.8163 409.2832 26.1764 0.2428 16624 +16626 3 338.0257 410.4054 26.2561 0.2414 16625 +16627 3 338.1332 411.5448 26.3284 0.24 16626 +16628 3 337.925 412.6648 26.3813 0.2386 16627 +16629 3 337.4697 413.7127 26.4144 0.2372 16628 +16630 3 337.4079 414.8476 26.4298 0.2358 16629 +16631 3 337.5292 415.9836 26.4312 0.2344 16630 +16632 3 338.4135 416.6642 26.4312 0.233 16631 +16633 3 339.3939 417.2534 26.4312 0.2316 16632 +16634 3 340.0117 418.2121 26.4312 0.2302 16633 +16635 3 326.6852 367.7159 24.1776 0.3604 1 +16636 3 326.4129 368.8039 24.635 0.3539 16635 +16637 3 326.2253 369.9307 24.9578 0.3507 16636 +16638 3 326.485 371.0049 25.1581 0.3475 16637 +16639 3 326.1887 372.0551 25.2685 0.3443 16638 +16640 3 326.0183 373.1785 25.3196 0.341 16639 +16641 3 326.064 374.3202 25.3391 0.3378 16640 +16642 3 326.0331 375.4631 25.3521 0.3346 16641 +16643 3 325.6087 376.5167 25.3695 0.3314 16642 +16644 3 325.349 377.6275 25.3956 0.3282 16643 +16645 3 325.2506 378.767 25.4331 0.325 16644 +16646 3 325.2667 379.9098 25.4831 0.3218 16645 +16647 3 324.7896 380.9348 25.545 0.3185 16646 +16648 3 324.2931 381.9656 25.6171 0.3153 16647 +16649 3 324.2359 383.0318 25.8387 0.3121 16648 +16650 3 324.2496 384.1735 26.034 0.3089 16649 +16651 3 323.7875 384.98 26.1803 0.3089 16650 +16652 3 322.8837 385.663 26.2819 0.3048 16651 +16653 3 321.9445 386.2808 26.346 0.3027 16652 +16654 3 321.1837 387.125 26.352 0.3007 16653 +16655 3 320.3829 387.9167 26.2916 0.2986 16654 +16656 3 319.4517 388.5676 26.2654 0.2966 16655 +16657 3 318.4576 389.1133 26.3105 0.2945 16656 +16658 3 317.6865 389.8832 26.4401 0.2925 16657 +16659 3 317.1328 390.8808 26.5901 0.2904 16658 +16660 3 316.562 391.8566 26.7285 0.2883 16659 +16661 3 315.8298 392.6254 26.9314 0.2863 16660 +16662 3 315.0542 393.3026 27.2981 0.2842 16661 +16663 3 314.2007 393.9753 27.6761 0.2822 16662 +16664 3 313.3553 394.7166 28.0347 0.2801 16663 +16665 3 312.8051 395.689 28.3458 0.2781 16664 +16666 3 312.0786 396.5356 28.5796 0.276 16665 +16667 3 311.1119 397.1362 28.7378 0.274 16666 +16668 3 310.0961 397.6624 28.8408 0.2719 16667 +16669 3 309.2575 398.398 28.971 0.2699 16668 +16670 3 308.578 399.3086 29.0942 0.2678 16669 +16671 3 307.9797 400.2822 29.1945 0.2658 16670 +16672 3 307.3756 401.2534 29.2796 0.2637 16671 +16673 3 306.7293 402.1972 29.3504 0.2617 16672 +16674 3 306.0658 403.1273 29.4258 0.2596 16673 +16675 3 305.3828 404.0345 29.5316 0.2575 16674 +16676 3 304.6037 404.8639 29.6324 0.2555 16675 +16677 3 303.6473 405.4736 29.7114 0.2534 16676 +16678 3 302.6338 406.0045 29.7674 0.2514 16677 +16679 3 301.5927 406.4781 29.7973 0.2493 16678 +16680 3 300.5757 406.9894 29.8323 0.2473 16679 +16681 3 299.5713 407.526 29.8749 0.2452 16680 +16682 3 298.6206 408.1563 29.8914 0.2432 16681 +16683 3 297.6379 408.6357 29.7777 0.2411 16682 +16684 3 296.6415 408.297 29.5669 0.2391 16683 +16685 3 295.7823 407.5592 29.4392 0.237 16684 +16686 3 294.9335 406.7927 29.3406 0.235 16685 +16687 3 294.6601 405.6887 29.2723 0.2329 16686 +16688 3 295.0605 404.6202 29.2429 0.2308 16687 +16689 3 325.0562 384.2833 26.1851 0.278 16650 +16690 3 326.1933 384.3188 26.2037 0.2682 16689 +16691 3 327.2732 383.9722 26.2103 0.2632 16690 +16692 3 328.4035 384.0271 26.2555 0.2583 16691 +16693 3 329.48 384.3474 26.4015 0.2534 16692 +16694 3 330.6114 384.4847 26.5614 0.2485 16693 +16695 3 331.7543 384.4721 26.7344 0.2436 16694 +16696 3 332.8834 384.4401 26.9546 0.2386 16695 +16697 3 333.9988 384.3405 27.5559 0.2337 16696 diff --git a/example_data/aligned_coord_example.csv b/example_data/aligned_coord_example.csv new file mode 100644 index 0000000..b41c052 --- /dev/null +++ b/example_data/aligned_coord_example.csv @@ -0,0 +1,6 @@ +cell_id,target_cell_type,x,y,z +1,4P,-92.0060469028378,-421.0797644340709,821.64 +1,4P,-105.11025186647323,-399.30901042554444,796.56 +2,4P,1.6844004295792985,-335.2109182277234,737.76 +3,5P-ET,5.634215690400225,-382.48922026392205,950.92 +3,5P-IT,-12.739372718728555,-508.88802416730545,826.44 diff --git a/example_data/aligned_coord_hist.csv b/example_data/aligned_coord_hist.csv new file mode 100644 index 0000000..fb0c08e --- /dev/null +++ b/example_data/aligned_coord_hist.csv @@ -0,0 +1,4 @@ +cell_id,4P_0,4P_1,4P_2,4P_3,4P_4,4P_5,4P_6,4P_7,4P_8,4P_9,4P_10,4P_11,4P_12,4P_13,4P_14,4P_15,4P_16,4P_17,4P_18,4P_19,4P_20,4P_21,4P_22,4P_23,4P_24,4P_25,4P_26,4P_27,4P_28,4P_29,4P_30,4P_31,4P_32,4P_33,4P_34,4P_35,4P_36,4P_37,4P_38,4P_39,4P_40,4P_41,4P_42,4P_43,4P_44,4P_45,4P_46,4P_47,4P_48,4P_49,4P_50,4P_51,4P_52,4P_53,4P_54,4P_55,4P_56,4P_57,4P_58,4P_59,4P_60,4P_61,4P_62,4P_63,4P_64,4P_65,4P_66,4P_67,4P_68,4P_69,4P_70,4P_71,4P_72,4P_73,4P_74,4P_75,4P_76,4P_77,4P_78,4P_79,4P_80,4P_81,4P_82,4P_83,4P_84,4P_85,4P_86,4P_87,4P_88,4P_89,4P_90,4P_91,4P_92,4P_93,4P_94,4P_95,4P_96,4P_97,4P_98,4P_99,4P_100,4P_101,4P_102,4P_103,4P_104,4P_105,4P_106,4P_107,4P_108,4P_109,4P_110,4P_111,4P_112,4P_113,4P_114,4P_115,4P_116,4P_117,4P_118,4P_119,4P_120,4P_121,4P_122,4P_123,4P_124,4P_125,4P_126,4P_127,4P_128,4P_129,4P_130,4P_131,4P_132,4P_133,4P_134,4P_135,4P_136,4P_137,4P_138,4P_139,4P_140,4P_141,4P_142,4P_143,4P_144,4P_145,4P_146,4P_147,4P_148,4P_149,4P_150,4P_151,4P_152,4P_153,4P_154,4P_155,4P_156,4P_157,4P_158,4P_159,4P_160,4P_161,4P_162,4P_163,4P_164,4P_165,4P_166,4P_167,4P_168,4P_169,4P_170,4P_171,4P_172,4P_173,4P_174,4P_175,4P_176,4P_177,4P_178,4P_179,4P_180,4P_181,4P_182,4P_183,4P_184,4P_185,4P_186,4P_187,4P_188,4P_189,4P_190,4P_191,4P_192,4P_193,4P_194,4P_195,4P_196,4P_197,4P_198,4P_199,4P_200,4P_201,4P_202,4P_203,4P_204,4P_205,4P_206,4P_207,4P_208,4P_209,4P_210,4P_211,4P_212,4P_213,4P_214,4P_215,4P_216,4P_217,4P_218,4P_219,4P_220,4P_221,4P_222,4P_223,4P_224,4P_225,4P_226,4P_227,4P_228,4P_229,4P_230,5P-ET_0,5P-ET_1,5P-ET_2,5P-ET_3,5P-ET_4,5P-ET_5,5P-ET_6,5P-ET_7,5P-ET_8,5P-ET_9,5P-ET_10,5P-ET_11,5P-ET_12,5P-ET_13,5P-ET_14,5P-ET_15,5P-ET_16,5P-ET_17,5P-ET_18,5P-ET_19,5P-ET_20,5P-ET_21,5P-ET_22,5P-ET_23,5P-ET_24,5P-ET_25,5P-ET_26,5P-ET_27,5P-ET_28,5P-ET_29,5P-ET_30,5P-ET_31,5P-ET_32,5P-ET_33,5P-ET_34,5P-ET_35,5P-ET_36,5P-ET_37,5P-ET_38,5P-ET_39,5P-ET_40,5P-ET_41,5P-ET_42,5P-ET_43,5P-ET_44,5P-ET_45,5P-ET_46,5P-ET_47,5P-ET_48,5P-ET_49,5P-ET_50,5P-ET_51,5P-ET_52,5P-ET_53,5P-ET_54,5P-ET_55,5P-ET_56,5P-ET_57,5P-ET_58,5P-ET_59,5P-ET_60,5P-ET_61,5P-ET_62,5P-ET_63,5P-ET_64,5P-ET_65,5P-ET_66,5P-ET_67,5P-ET_68,5P-ET_69,5P-ET_70,5P-ET_71,5P-ET_72,5P-ET_73,5P-ET_74,5P-ET_75,5P-ET_76,5P-ET_77,5P-ET_78,5P-ET_79,5P-ET_80,5P-ET_81,5P-ET_82,5P-ET_83,5P-ET_84,5P-ET_85,5P-ET_86,5P-ET_87,5P-ET_88,5P-ET_89,5P-ET_90,5P-ET_91,5P-ET_92,5P-ET_93,5P-ET_94,5P-ET_95,5P-ET_96,5P-ET_97,5P-ET_98,5P-ET_99,5P-ET_100,5P-ET_101,5P-ET_102,5P-ET_103,5P-ET_104,5P-ET_105,5P-ET_106,5P-ET_107,5P-ET_108,5P-ET_109,5P-ET_110,5P-ET_111,5P-ET_112,5P-ET_113,5P-ET_114,5P-ET_115,5P-ET_116,5P-ET_117,5P-ET_118,5P-ET_119,5P-ET_120,5P-ET_121,5P-ET_122,5P-ET_123,5P-ET_124,5P-ET_125,5P-ET_126,5P-ET_127,5P-ET_128,5P-ET_129,5P-ET_130,5P-ET_131,5P-ET_132,5P-ET_133,5P-ET_134,5P-ET_135,5P-ET_136,5P-ET_137,5P-ET_138,5P-ET_139,5P-ET_140,5P-ET_141,5P-ET_142,5P-ET_143,5P-ET_144,5P-ET_145,5P-ET_146,5P-ET_147,5P-ET_148,5P-ET_149,5P-ET_150,5P-ET_151,5P-ET_152,5P-ET_153,5P-ET_154,5P-ET_155,5P-ET_156,5P-ET_157,5P-ET_158,5P-ET_159,5P-ET_160,5P-ET_161,5P-ET_162,5P-ET_163,5P-ET_164,5P-ET_165,5P-ET_166,5P-ET_167,5P-ET_168,5P-ET_169,5P-ET_170,5P-ET_171,5P-ET_172,5P-ET_173,5P-ET_174,5P-ET_175,5P-ET_176,5P-ET_177,5P-ET_178,5P-ET_179,5P-ET_180,5P-ET_181,5P-ET_182,5P-ET_183,5P-ET_184,5P-ET_185,5P-ET_186,5P-ET_187,5P-ET_188,5P-ET_189,5P-ET_190,5P-ET_191,5P-ET_192,5P-ET_193,5P-ET_194,5P-ET_195,5P-ET_196,5P-ET_197,5P-ET_198,5P-ET_199,5P-ET_200,5P-ET_201,5P-ET_202,5P-ET_203,5P-ET_204,5P-ET_205,5P-ET_206,5P-ET_207,5P-ET_208,5P-ET_209,5P-ET_210,5P-ET_211,5P-ET_212,5P-ET_213,5P-ET_214,5P-ET_215,5P-ET_216,5P-ET_217,5P-ET_218,5P-ET_219,5P-ET_220,5P-ET_221,5P-ET_222,5P-ET_223,5P-ET_224,5P-ET_225,5P-ET_226,5P-ET_227,5P-ET_228,5P-ET_229,5P-ET_230,5P-IT_0,5P-IT_1,5P-IT_2,5P-IT_3,5P-IT_4,5P-IT_5,5P-IT_6,5P-IT_7,5P-IT_8,5P-IT_9,5P-IT_10,5P-IT_11,5P-IT_12,5P-IT_13,5P-IT_14,5P-IT_15,5P-IT_16,5P-IT_17,5P-IT_18,5P-IT_19,5P-IT_20,5P-IT_21,5P-IT_22,5P-IT_23,5P-IT_24,5P-IT_25,5P-IT_26,5P-IT_27,5P-IT_28,5P-IT_29,5P-IT_30,5P-IT_31,5P-IT_32,5P-IT_33,5P-IT_34,5P-IT_35,5P-IT_36,5P-IT_37,5P-IT_38,5P-IT_39,5P-IT_40,5P-IT_41,5P-IT_42,5P-IT_43,5P-IT_44,5P-IT_45,5P-IT_46,5P-IT_47,5P-IT_48,5P-IT_49,5P-IT_50,5P-IT_51,5P-IT_52,5P-IT_53,5P-IT_54,5P-IT_55,5P-IT_56,5P-IT_57,5P-IT_58,5P-IT_59,5P-IT_60,5P-IT_61,5P-IT_62,5P-IT_63,5P-IT_64,5P-IT_65,5P-IT_66,5P-IT_67,5P-IT_68,5P-IT_69,5P-IT_70,5P-IT_71,5P-IT_72,5P-IT_73,5P-IT_74,5P-IT_75,5P-IT_76,5P-IT_77,5P-IT_78,5P-IT_79,5P-IT_80,5P-IT_81,5P-IT_82,5P-IT_83,5P-IT_84,5P-IT_85,5P-IT_86,5P-IT_87,5P-IT_88,5P-IT_89,5P-IT_90,5P-IT_91,5P-IT_92,5P-IT_93,5P-IT_94,5P-IT_95,5P-IT_96,5P-IT_97,5P-IT_98,5P-IT_99,5P-IT_100,5P-IT_101,5P-IT_102,5P-IT_103,5P-IT_104,5P-IT_105,5P-IT_106,5P-IT_107,5P-IT_108,5P-IT_109,5P-IT_110,5P-IT_111,5P-IT_112,5P-IT_113,5P-IT_114,5P-IT_115,5P-IT_116,5P-IT_117,5P-IT_118,5P-IT_119,5P-IT_120,5P-IT_121,5P-IT_122,5P-IT_123,5P-IT_124,5P-IT_125,5P-IT_126,5P-IT_127,5P-IT_128,5P-IT_129,5P-IT_130,5P-IT_131,5P-IT_132,5P-IT_133,5P-IT_134,5P-IT_135,5P-IT_136,5P-IT_137,5P-IT_138,5P-IT_139,5P-IT_140,5P-IT_141,5P-IT_142,5P-IT_143,5P-IT_144,5P-IT_145,5P-IT_146,5P-IT_147,5P-IT_148,5P-IT_149,5P-IT_150,5P-IT_151,5P-IT_152,5P-IT_153,5P-IT_154,5P-IT_155,5P-IT_156,5P-IT_157,5P-IT_158,5P-IT_159,5P-IT_160,5P-IT_161,5P-IT_162,5P-IT_163,5P-IT_164,5P-IT_165,5P-IT_166,5P-IT_167,5P-IT_168,5P-IT_169,5P-IT_170,5P-IT_171,5P-IT_172,5P-IT_173,5P-IT_174,5P-IT_175,5P-IT_176,5P-IT_177,5P-IT_178,5P-IT_179,5P-IT_180,5P-IT_181,5P-IT_182,5P-IT_183,5P-IT_184,5P-IT_185,5P-IT_186,5P-IT_187,5P-IT_188,5P-IT_189,5P-IT_190,5P-IT_191,5P-IT_192,5P-IT_193,5P-IT_194,5P-IT_195,5P-IT_196,5P-IT_197,5P-IT_198,5P-IT_199,5P-IT_200,5P-IT_201,5P-IT_202,5P-IT_203,5P-IT_204,5P-IT_205,5P-IT_206,5P-IT_207,5P-IT_208,5P-IT_209,5P-IT_210,5P-IT_211,5P-IT_212,5P-IT_213,5P-IT_214,5P-IT_215,5P-IT_216,5P-IT_217,5P-IT_218,5P-IT_219,5P-IT_220,5P-IT_221,5P-IT_222,5P-IT_223,5P-IT_224,5P-IT_225,5P-IT_226,5P-IT_227,5P-IT_228,5P-IT_229,5P-IT_230 +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/example_data/aligned_depth_profiles.csv b/example_data/aligned_depth_profiles.csv new file mode 100644 index 0000000..01f32f8 --- /dev/null +++ b/example_data/aligned_depth_profiles.csv @@ -0,0 +1,4 @@ +specimen_id,2_0,2_1,2_2,2_3,2_4,2_5,2_6,2_7,2_8,2_9,2_10,2_11,2_12,2_13,2_14,2_15,2_16,2_17,2_18,2_19,2_20,2_21,2_22,2_23,2_24,2_25,2_26,2_27,2_28,2_29,2_30,2_31,2_32,2_33,2_34,2_35,2_36,2_37,2_38,2_39,2_40,2_41,2_42,2_43,2_44,2_45,2_46,2_47,2_48,2_49,2_50,2_51,2_52,2_53,2_54,2_55,2_56,2_57,2_58,2_59,2_60,2_61,2_62,2_63,2_64,2_65,2_66,2_67,2_68,2_69,2_70,2_71,2_72,2_73,2_74,2_75,2_76,2_77,2_78,2_79,2_80,2_81,2_82,2_83,2_84,2_85,2_86,2_87,2_88,2_89,2_90,2_91,2_92,2_93,2_94,2_95,2_96,2_97,2_98,2_99,2_100,2_101,2_102,2_103,2_104,2_105,2_106,2_107,2_108,2_109,2_110,2_111,2_112,2_113,2_114,2_115,2_116,2_117,2_118,2_119,2_120,2_121,2_122,2_123,2_124,2_125,2_126,2_127,2_128,2_129,2_130,2_131,2_132,2_133,2_134,2_135,2_136,2_137,2_138,2_139,2_140,2_141,2_142,2_143,2_144,2_145,2_146,2_147,2_148,2_149,2_150,2_151,2_152,2_153,2_154,2_155,2_156,2_157,2_158,2_159,2_160,2_161,2_162,2_163,2_164,2_165,2_166,2_167,2_168,2_169,2_170,2_171,2_172,2_173,2_174,2_175,2_176,2_177,2_178,2_179,2_180,2_181,2_182,2_183,2_184,2_185,2_186,2_187,2_188,2_189,2_190,2_191,2_192,2_193,2_194,2_195,2_196,2_197,2_198,2_199,2_200,2_201,2_202,2_203,2_204,2_205,2_206,2_207,2_208,2_209,2_210,2_211,2_212,2_213,2_214,2_215,2_216,2_217,2_218,2_219,2_220,2_221,2_222,2_223,2_224,2_225,2_226,2_227,2_228,2_229,2_230,3_0,3_1,3_2,3_3,3_4,3_5,3_6,3_7,3_8,3_9,3_10,3_11,3_12,3_13,3_14,3_15,3_16,3_17,3_18,3_19,3_20,3_21,3_22,3_23,3_24,3_25,3_26,3_27,3_28,3_29,3_30,3_31,3_32,3_33,3_34,3_35,3_36,3_37,3_38,3_39,3_40,3_41,3_42,3_43,3_44,3_45,3_46,3_47,3_48,3_49,3_50,3_51,3_52,3_53,3_54,3_55,3_56,3_57,3_58,3_59,3_60,3_61,3_62,3_63,3_64,3_65,3_66,3_67,3_68,3_69,3_70,3_71,3_72,3_73,3_74,3_75,3_76,3_77,3_78,3_79,3_80,3_81,3_82,3_83,3_84,3_85,3_86,3_87,3_88,3_89,3_90,3_91,3_92,3_93,3_94,3_95,3_96,3_97,3_98,3_99,3_100,3_101,3_102,3_103,3_104,3_105,3_106,3_107,3_108,3_109,3_110,3_111,3_112,3_113,3_114,3_115,3_116,3_117,3_118,3_119,3_120,3_121,3_122,3_123,3_124,3_125,3_126,3_127,3_128,3_129,3_130,3_131,3_132,3_133,3_134,3_135,3_136,3_137,3_138,3_139,3_140,3_141,3_142,3_143,3_144,3_145,3_146,3_147,3_148,3_149,3_150,3_151,3_152,3_153,3_154,3_155,3_156,3_157,3_158,3_159,3_160,3_161,3_162,3_163,3_164,3_165,3_166,3_167,3_168,3_169,3_170,3_171,3_172,3_173,3_174,3_175,3_176,3_177,3_178,3_179,3_180,3_181,3_182,3_183,3_184,3_185,3_186,3_187,3_188,3_189,3_190,3_191,3_192,3_193,3_194,3_195,3_196,3_197,3_198,3_199,3_200,3_201,3_202,3_203,3_204,3_205,3_206,3_207,3_208,3_209,3_210,3_211,3_212,3_213,3_214,3_215,3_216,3_217,3_218,3_219,3_220,3_221,3_222,3_223,3_224,3_225,3_226,3_227,3_228,3_229,3_230,4_0,4_1,4_2,4_3,4_4,4_5,4_6,4_7,4_8,4_9,4_10,4_11,4_12,4_13,4_14,4_15,4_16,4_17,4_18,4_19,4_20,4_21,4_22,4_23,4_24,4_25,4_26,4_27,4_28,4_29,4_30,4_31,4_32,4_33,4_34,4_35,4_36,4_37,4_38,4_39,4_40,4_41,4_42,4_43,4_44,4_45,4_46,4_47,4_48,4_49,4_50,4_51,4_52,4_53,4_54,4_55,4_56,4_57,4_58,4_59,4_60,4_61,4_62,4_63,4_64,4_65,4_66,4_67,4_68,4_69,4_70,4_71,4_72,4_73,4_74,4_75,4_76,4_77,4_78,4_79,4_80,4_81,4_82,4_83,4_84,4_85,4_86,4_87,4_88,4_89,4_90,4_91,4_92,4_93,4_94,4_95,4_96,4_97,4_98,4_99,4_100,4_101,4_102,4_103,4_104,4_105,4_106,4_107,4_108,4_109,4_110,4_111,4_112,4_113,4_114,4_115,4_116,4_117,4_118,4_119,4_120,4_121,4_122,4_123,4_124,4_125,4_126,4_127,4_128,4_129,4_130,4_131,4_132,4_133,4_134,4_135,4_136,4_137,4_138,4_139,4_140,4_141,4_142,4_143,4_144,4_145,4_146,4_147,4_148,4_149,4_150,4_151,4_152,4_153,4_154,4_155,4_156,4_157,4_158,4_159,4_160,4_161,4_162,4_163,4_164,4_165,4_166,4_167,4_168,4_169,4_170,4_171,4_172,4_173,4_174,4_175,4_176,4_177,4_178,4_179,4_180,4_181,4_182,4_183,4_184,4_185,4_186,4_187,4_188,4_189,4_190,4_191,4_192,4_193,4_194,4_195,4_196,4_197,4_198,4_199,4_200,4_201,4_202,4_203,4_204,4_205,4_206,4_207,4_208,4_209,4_210,4_211,4_212,4_213,4_214,4_215,4_216,4_217,4_218,4_219,4_220,4_221,4_222,4_223,4_224,4_225,4_226,4_227,4_228,4_229,4_230 +740135032,0,0,4,8,15,9,20,52,114,178,279,272,304,367,480,303,380,274,254,253,237,239,166,108,114,122,82,74,61,59,55,68,57,67,67,97,84,90,88,126,172,120,126,147,148,124,95,139,180,140,130,116,120,107,160,128,113,135,126,132,129,94,109,102,127,112,116,107,100,114,75,68,69,44,47,48,40,52,55,86,106,55,48,68,67,87,58,61,76,55,47,41,58,104,92,108,106,115,153,121,146,111,160,149,124,138,130,145,135,107,80,92,98,84,65,70,60,73,67,51,51,39,55,64,39,32,22,18,11,11,8,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,3,6,3,4,4,4,4,5,4,4,3,5,5,4,5,3,5,4,4,7,7,9,9,8,9,12,7,8,9,7,10,9,8,12,17,17,12,26,28,64,100,74,68,49,30,40,29,27,31,60,37,33,33,55,81,47,32,23,24,23,28,22,27,29,34,27,25,31,42,42,33,34,33,29,25,28,24,18,13,19,5,5,4,3,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +606271263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,11,20,29,33,53,101,158,166,279,274,358,485,571,618,636,576,539,433,519,555,571,545,521,460,510,488,450,523,460,431,480,402,326,271,241,267,181,170,170,134,167,111,90,81,60,58,29,17,6,5,9,22,41,61,66,31,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,9,14,22,24,31,48,49,49,53,45,44,42,54,57,62,58,72,77,67,78,61,55,47,52,49,57,59,42,43,38,49,32,31,35,42,37,23,22,17,8,9,9,9,14,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +694146546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,3,3,6,6,6,5,9,10,11,10,6,6,6,7,5,6,6,15,41,23,35,26,23,18,16,20,18,17,27,33,28,72,59,47,95,148,119,92,95,68,72,56,71,86,91,91,84,91,112,68,75,72,58,57,54,65,98,100,58,40,40,28,32,34,17,8,8,9,15,13,13,12,14,23,35,9,9,10,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,68,85,78,65,49,47,28,20,21,16,15,12,14,13,10,16,13,13,11,9,8,10,9,10,8,10,11,8,9,9,8,10,8,9,8,8,9,16,17,12,13,15,20,22,33,28,30,34,19,22,21,20,10,9,9,10,7,9,8,9,8,8,9,8,16,7,11,3,5,10,7,14,10,7,6,7,5,9,7,6,7,9,10,10,10,19,20,35,24,28,20,39,56,45,31,38,36,40,36,42,39,33,31,40,43,37,30,28,31,43,58,46,39,15,12,9,4,4,9,8,8,23,15,10,12,4,4,4,3,5,4,3,4,5,4,4,3,14,5,4,5,3,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/example_data/aligned_soma_depths.csv b/example_data/aligned_soma_depths.csv new file mode 100644 index 0000000..70ff941 --- /dev/null +++ b/example_data/aligned_soma_depths.csv @@ -0,0 +1,4 @@ +specimen_id,soma_distance_from_pia +740135032,488.95489922056464 +606271263,185.35510042590795 +694146546,363.1829539564272 diff --git a/example_data/axon_loadings.csv b/example_data/axon_loadings.csv new file mode 100644 index 0000000..3dda83c --- /dev/null +++ b/example_data/axon_loadings.csv @@ -0,0 +1,2 @@ +-4.12669587574325e-16,9.59576494503881e-18,-0.0006380581891186059,-0.0012761163782372118,-0.002392718209194773,-0.001435630925516864,-0.003190290945593031,-0.008294756458541878,-0.018184658389880263,-0.02839358941577797,-0.044504558691022766,-0.04338795686006522,-0.04849242237301406,-0.05854183885163211,-0.07656698269423273,-0.04833290782573439,-0.06061552796626757,-0.04370698595462452,-0.04051669500903149,-0.04035718046175184,-0.037804947705277404,-0.03602384221586609,-0.021859118763686798,-0.008827032770319891,-0.006003877802850687,-0.005599886513911419,0.00918123371315711,0.03061864209751224,0.056633865469412736,0.060313109898325015,0.10841420968517959,0.10424038598657347,0.14127730701735597,0.1930255799774131,0.22914789482170778,0.24410372349264195,0.2537378971095717,0.22757919481824637,0.2123572279914231,0.1617728220146193,0.19055746768404988,0.21397319314718022,0.21973653653220826,0.20546603120268844,0.19522587065234978,0.17343257786261992,0.19905984557343598,0.1828006133236606,0.1602994940470182,0.19734204086417526,0.17247549057894201,0.16252791365382757,0.18247117438762098,0.15178276399231483,0.11140644731013996,0.09340943239941202,0.08320134310478308,0.09061272290127796,0.05592603898250023,0.05034865561408696,0.050827199255925916,0.04128923940612528,0.052757409451136564,0.03035250394162323,0.01754407500695536,0.01615655096500301,0.006697927523207824,0.007293504615136434,-0.003770674140935577,-0.011044200804380178,-0.009443429545209124,-0.008746854631045683,-0.007226261511148847,0.0022219520891660453,0.009463407496900963,0.01718340654647483,0.020559657508682657,0.003944540853532524,-0.008294756458541878,-0.015281325283136863,-0.018471616228729892,-0.01033637431746766,-0.008959260116995634,-0.013191600540646551,-0.013292598362881372,-0.016743401677988868,-0.011856967437364507,-0.011293461601145572,-0.013686179810340343,-0.01033637431746766,-0.009320770308744923,-0.007842658286038069,-0.010814917959306615,-0.01815258713417059,-0.01858302389244501,-0.027908578256295703,-0.022900326510475914,-0.027462105870166436,-0.031179047341162947,-0.025293044719670685,-0.027978346554089616,-0.021874312660272868,-0.030732574955033676,-0.028456890195928564,-0.024208514144422804,-0.029046841501482644,-0.02933379934033227,-0.030423955701954674,-0.04029135448779492,-0.03243828636027654,-0.025005245149552296,-0.03942401345360276,-0.05418825632154767,-0.04440019394371286,-0.03433558356850875,-0.03591469341345042,-0.02728571396376317,-0.03040145255645653,-0.02527616736054707,-0.02663162014678972,-0.030539305689506795,-0.029927692969723342,-0.03247992572619777,-0.03209197006511333,-0.029927692969723342,-0.034281850898569693,-0.021224161167136414,-0.02240968956461911,-0.020511550625118138,-0.01686437745191553,-0.016125321440562102,-0.01470572614290008,-0.01741184766027962,-0.025530212212418232,-0.026051236951447176,-0.015109717431839363,-0.010420494780578871,-0.010420494780578871,-0.007294346346405209,-0.008336395824463095,-0.008857420563492042,-0.004428710281746021,-0.0020840989561157737,-0.0020840989561157737,-0.0023446113256302458,-0.003907685542717075,-0.0033866608036881335,-0.0033866608036881335,-0.003126148434173662,-0.0036471731732026047,-0.00599178449883285,-0.009117932933006508,-0.0023446113256302458,-0.0023446113256302458,-0.002605123695144718,-0.0010420494780578869,-0.001302561847572359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +-3.165030539847211e-16,7.359614088056125e-18,0.0029690689591603836,0.005938137918320767,0.011134008596851435,0.006680405158110861,0.014845344795801912,0.038597896469084986,0.08461846533607092,0.13212356868263703,0.2070925599014367,0.20189668922290602,0.22564924089618912,0.2724120770029652,0.35628827509924593,0.224906973656399,0.28206155112023634,0.20338122370248626,0.1885358789066843,0.1877936116668942,0.17591733583025268,0.17685107643030765,0.12200461527020035,0.07796168637922937,0.0814238608348245,0.08692136364952506,0.05502749853982022,0.04380173937805708,0.027873215034198012,0.02550741034737742,0.01009039971094646,0.020290667707742925,0.002872390894027689,-0.0036951012480126296,-0.013168755975846868,0.0039217987503186195,-0.007710533333243509,0.0033525966598000616,0.005943936888706689,0.045826922246665576,0.07049756054917569,0.02793394814750899,0.03062501117176872,0.0490767513808921,0.05246282924240334,0.041368100817649085,0.014334412068483847,0.04941766368915912,0.08403665400494495,0.04630437377227249,0.04582170425638967,0.038624567400574725,0.0361958563403877,0.03513876674371032,0.08285099742136917,0.06515717842286382,0.057327933103163864,0.0707936842050147,0.0735869337747381,0.07925228374843421,0.07702548202906391,0.05501184456899236,0.06251061356097715,0.06348363433312926,0.08435364962188771,0.07421107000818172,0.07949347326134813,0.07303338565504737,0.07103211947776314,0.08274576614568509,0.05500909032882688,0.049923378426201266,0.05022501056237116,0.03023626548085312,0.029737941994142418,0.027012816788061427,0.020523884990215412,0.0332866490243733,0.038597896469084986,0.06004233183863795,0.07488767663443985,0.03703204740514499,0.032468285190499366,0.04478519613076109,0.043410820427085946,0.057624056759002826,0.03673041526897508,0.04148565084388557,0.05261965944073701,0.03703204740514499,0.030461801022939175,0.02727241451196869,0.03925884912451528,0.07340314215485969,0.05880695910241312,0.054248414878043445,0.06414183274839408,0.0632369363398844,0.09713206762687344,0.07527584134524552,0.09699306465942316,0.07227792819453988,0.1061205890887144,0.09921986637879343,0.08129529384792608,0.08536595056613695,0.0756351618645059,0.0899297127807826,0.0546942679719396,0.04212819528832251,0.02967228138061049,0.00823828199160942,-0.020809863155557447,-0.012870459059952457,-0.009906608091068029,-0.008091597283772681,0.001552658843222608,0.008673699104953662,0.014333831088373829,-0.0070240717065433896,-0.016505698664819084,-0.028573447861725478,-0.016697172025083935,-0.005592007619777755,-0.028573447861725478,-0.04704359628184211,-0.026653496268801032,-0.03404732447515674,-0.037346869762032275,-0.02849735126764162,-0.030092044523126867,-0.031164788090632105,-0.03886024843315772,-0.06194662946073452,-0.06321084638850462,-0.03666229090533268,-0.025284338555401846,-0.025284338555401846,-0.017699036988781294,-0.020227470844321478,-0.02149168777209157,-0.010745843886045785,-0.0050568677110803695,-0.0050568677110803695,-0.0056889761749654155,-0.009481626958275691,-0.0082174100305056,-0.0082174100305056,-0.007585301566620555,-0.008849518494390647,-0.01453849466935606,-0.022123796235976614,-0.0056889761749654155,-0.0056889761749654155,-0.0063210846388504615,-0.0025284338555401848,-0.0031605423194252307,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0 diff --git a/example_data/coord_example.csv b/example_data/coord_example.csv new file mode 100644 index 0000000..ebb5541 --- /dev/null +++ b/example_data/coord_example.csv @@ -0,0 +1,6 @@ +cell_id,target_cell_type,x,y,z +1,4P,838.184,691.792,821.64 +1,4P,850.392,676.904,796.56 +2,4P,741.704,649.608,737.76 +3,5P-ET,739.656,680.464,950.92 +3,5P-IT,762.28,748.584,826.44 \ No newline at end of file diff --git a/example_data/coord_layer_drawings.json b/example_data/coord_layer_drawings.json new file mode 100644 index 0000000..1fc3c3d --- /dev/null +++ b/example_data/coord_layer_drawings.json @@ -0,0 +1 @@ +{"layer_polygons": [{"name": "Layer6a", "path": [[263.548, 962.064], [452.908, 950.496], [663.58, 925.532], [868.144, 908.196], [1066.82, 896.736], [1066.656, 999.816], [963.756, 1011.384], [810.928, 1024.78], [720.784, 1034.8600000000001], [536.932, 1044.872], [417.592, 1048.5240000000001], [264.764, 1039.392]], "resolution": 1}, {"name": "Layer6b", "path": [[266.592, 1044.872], [416.984, 1051.568], [536.932, 1048.5240000000001], [721.5600000000001, 1037.38], [808.908, 1028.752], [962.576, 1014.196], [1066.1, 1005.028], [1066.404, 1019.98], [961.916, 1029.328], [781.092, 1050.352], [613.652, 1062.528], [446.208, 1072.88], [262.936, 1058.876]], "resolution": 1}, {"name": "Layer1", "path": [[215.168, 383.076], [350.72, 369.032], [407.396, 363.32800000000003], [540.16, 349.968], [592.5120000000001, 345.568], [718.72, 335.144], [870.196, 324.236], [961.1080000000001, 317.172], [1049.284, 310.904], [1054.792, 399.604], [919.26, 412.276], [772.712, 424.94800000000004], [576.028, 436.516], [433.32, 449.54], [223.984, 472.32800000000003]], "resolution": 1}, {"name": "Layer4", "path": [[240.512, 721.9], [366.656, 709.024], [482.372, 697.66], [697.216, 672.1320000000001], [905.364, 648.556], [1058.576, 647.196], [1060.56, 704.244], [883.452, 710.884], [646.548, 732.368], [410.748, 759.364], [243.816, 778.096]], "resolution": 1}, {"name": "Layer5", "path": [[245.28, 783.056], [410.784, 763.004], [647.176, 736.436], [883.564, 713.952], [1060.684, 707.8240000000001], [1066.664, 892.024], [869.38, 905.44], [664.796, 922.488], [452.908, 947.452], [262.32800000000003, 957.804]], "resolution": 1}, {"name": "Layer2/3", "path": [[224.532, 476.736], [432.78000000000003, 453.772], [576.58, 441.476], [771.708, 429.648], [918.712, 417.784], [1054.404, 405.66], [1059.7, 642.556], [906.04, 646.424], [697.784, 669.0120000000001], [480.716, 695.456], [367.776, 705.3720000000001], [241.06, 718.596]], "resolution": 1}], "pia_path": {"name": null, "path": [[214.616, 378.668], [407.996, 358.836], [471.808, 350.92400000000004], [593.66, 343.408], [715.968, 332.38800000000003], [869.676, 321.92], [960.58, 313.108], [1049.284, 308.148]], "resolution": 1}, "soma_path": {"name": null, "path": [[753.12, 790.232], [756.1080000000001, 791.4200000000001], [758.28, 794.904], [758.364, 797.524], [757.0120000000001, 801.2520000000001], [753.936, 803.588], [750.5360000000001, 803.096], [748.736, 801.788], [746.604, 797.444], [746.932, 794.66], [749.02, 792.12], [751.192, 791.0120000000001]], "resolution": 1, "center": [752.4866666666667, 796.5866666666667]}, "wm_path": {"name": null, "path": [[264.332, 1060.884], [446.564, 1075.32], [614.36, 1065.848], [781.708, 1052.7640000000001], [961.004, 1032.468], [1067.008, 1023.8960000000001]], "resolution": 1}} \ No newline at end of file diff --git a/example_data/example_features_long.csv b/example_data/example_features_long.csv new file mode 100644 index 0000000..8e30e7c --- /dev/null +++ b/example_data/example_features_long.csv @@ -0,0 +1,139 @@ +,specimen_id,feature,compartment_type,dimension,value +0,740135032,aligned_dist_from_pia,soma,none,488.95489922056464 +1,606271263,aligned_dist_from_pia,soma,none,185.35510042590795 +2,694146546,aligned_dist_from_pia,soma,none,363.1829539564272 +3,740135032,depth_pc_0,axon,none,-591.3768052788041 +4,740135032,depth_pc_1,axon,none,771.0611928161894 +5,606271263,depth_pc_0,axon,none,1557.1882340570776 +6,606271263,depth_pc_1,axon,none,-114.4320436027042 +7,694146546,depth_pc_0,axon,none,-965.8114287782732 +8,694146546,depth_pc_1,axon,none,-656.6291492134859 +9,740135032,emd_with_basal_dendrite,axon,none,53.842009790570955 +10,606271263,emd_with_basal_dendrite,axon,none,20.02095840833445 +11,694146546,emd_with_basal_dendrite,axon,none,50.38248981181829 +12,740135032,frac_above_basal_dendrite,axon,none,0.5537837260625045 +13,740135032,frac_intersect_basal_dendrite,axon,none,0.4462162739374956 +14,740135032,frac_below_basal_dendrite,axon,none,0.0 +15,606271263,frac_above_basal_dendrite,axon,none,0.0 +16,606271263,frac_intersect_basal_dendrite,axon,none,0.7648047321368555 +17,606271263,frac_below_basal_dendrite,axon,none,0.23519526786314446 +18,694146546,frac_above_basal_dendrite,axon,none,0.0 +19,694146546,frac_intersect_basal_dendrite,axon,none,0.9692556634304207 +20,694146546,frac_below_basal_dendrite,axon,none,0.030744336569579287 +21,740135032,frac_above_axon,basal_dendrite,none,0.0 +22,740135032,frac_intersect_axon,basal_dendrite,none,0.946916890080429 +23,740135032,frac_below_axon,basal_dendrite,none,0.05308310991957105 +24,606271263,frac_above_axon,basal_dendrite,none,0.37383177570093457 +25,606271263,frac_intersect_axon,basal_dendrite,none,0.6261682242990654 +26,606271263,frac_below_axon,basal_dendrite,none,0.0 +27,694146546,frac_above_axon,basal_dendrite,none,0.47685185185185186 +28,694146546,frac_intersect_axon,basal_dendrite,none,0.5231481481481481 +29,694146546,frac_below_axon,basal_dendrite,none,0.0 +30,740135032,extent,basal_dendrite,x,259.0984945349686 +31,740135032,extent,basal_dendrite,y,360.15791867251323 +32,740135032,bias,basal_dendrite,x,105.9123765215528 +33,740135032,bias,basal_dendrite,y,-5.017693772805842 +34,740135032,extent,axon,x,424.46299006297437 +35,740135032,extent,axon,y,587.2419117540196 +36,740135032,bias,axon,x,5.169444355631811 +37,740135032,bias,axon,y,297.6111166818944 +38,740135032,num_branches,basal_dendrite,none,44.0 +39,740135032,num_branches,axon,none,475.0 +40,740135032,max_branch_order,basal_dendrite,none,9.0 +41,740135032,max_branch_order,axon,none,24.0 +42,740135032,total_length,basal_dendrite,none,2204.2444298161276 +43,740135032,total_length,axon,none,17053.86846302751 +44,740135032,total_surface_area,basal_dendrite,none,3338.8595673807986 +45,740135032,mean_diameter,basal_dendrite,none,0.4823025201072386 +46,740135032,max_euclidean_distance,basal_dendrite,none,196.6200075357029 +47,740135032,max_euclidean_distance,axon,none,465.79754223311477 +48,740135032,max_path_distance,basal_dendrite,none,228.61814194352212 +49,740135032,max_path_distance,axon,none,712.7996048944084 +50,740135032,num_outer_bifurcations,basal_dendrite,none,5.0 +51,740135032,num_outer_bifurcations,axon,none,112.0 +52,740135032,mean_contraction,basal_dendrite,none,0.8927636513643621 +53,740135032,mean_contraction,axon,none,0.8629205591762148 +54,740135032,soma_percentile,basal_dendrite,x,0.31796246648793564 +55,740135032,soma_percentile,basal_dendrite,y,0.8273458445040215 +56,740135032,soma_percentile,axon,x,0.3885527158823948 +57,740135032,soma_percentile,axon,y,0.1986189221897914 +58,740135032,calculate_number_of_stems,basal_dendrite,none,4.0 +59,740135032,surface_area,soma,none,201.46425475133606 +60,740135032,early_branch_path,none,none,0.9062144295279363 +61,740135032,stem_exit,basal_dendrite,down,0.0 +62,740135032,stem_exit,basal_dendrite,side,1.0 +63,740135032,stem_exit,basal_dendrite,up,0.0 +64,740135032,exit_theta,axon,none,0.5210092861882935 +65,740135032,exit_distance,axon,none,20.438908268544992 +66,606271263,extent,basal_dendrite,x,292.89796650490916 +67,606271263,extent,basal_dendrite,y,227.92135942447814 +68,606271263,bias,basal_dendrite,x,0.16188293284596966 +69,606271263,bias,basal_dendrite,y,107.3874873605935 +70,606271263,extent,axon,x,400.41180940041914 +71,606271263,extent,axon,y,262.2553175261422 +72,606271263,bias,axon,x,56.22872989248452 +73,606271263,bias,axon,y,-121.2103061622121 +74,606271263,num_branches,basal_dendrite,none,35.0 +75,606271263,num_branches,axon,none,665.0 +76,606271263,max_branch_order,basal_dendrite,none,5.0 +77,606271263,max_branch_order,axon,none,25.0 +78,606271263,total_length,basal_dendrite,none,2057.344684556989 +79,606271263,total_length,axon,none,16935.227964908227 +80,606271263,total_surface_area,basal_dendrite,none,3746.221348808403 +81,606271263,mean_diameter,basal_dendrite,none,0.5797508521165475 +82,606271263,max_euclidean_distance,basal_dendrite,none,221.48224685084813 +83,606271263,max_euclidean_distance,axon,none,240.68462273608174 +84,606271263,max_path_distance,basal_dendrite,none,261.57785404864563 +85,606271263,max_path_distance,axon,none,902.0221232091973 +86,606271263,num_outer_bifurcations,basal_dendrite,none,1.0 +87,606271263,num_outer_bifurcations,axon,none,69.0 +88,606271263,mean_contraction,basal_dendrite,none,0.8777370205959968 +89,606271263,mean_contraction,axon,none,0.8194136640160532 +90,606271263,soma_percentile,basal_dendrite,x,0.48708081363386474 +91,606271263,soma_percentile,basal_dendrite,y,0.1423859263331501 +92,606271263,soma_percentile,axon,x,0.48894266317133833 +93,606271263,soma_percentile,axon,y,0.7447065940713854 +94,606271263,calculate_number_of_stems,basal_dendrite,none,7.0 +95,606271263,surface_area,soma,none,334.48341751636667 +96,606271263,early_branch_path,none,none,0.5122275147209207 +97,606271263,stem_exit,basal_dendrite,down,0.42857142857142855 +98,606271263,stem_exit,basal_dendrite,side,0.5714285714285714 +99,606271263,stem_exit,basal_dendrite,up,0.0 +100,606271263,exit_theta,axon,none,0.6246170133542251 +101,606271263,exit_distance,axon,none,0.0 +102,694146546,extent,basal_dendrite,x,158.97060160570243 +103,694146546,extent,basal_dendrite,y,640.1652005614803 +104,694146546,bias,basal_dendrite,x,4.519987715724085 +105,694146546,bias,basal_dendrite,y,45.38310515181024 +106,694146546,extent,axon,x,456.4507565320748 +107,694146546,extent,axon,y,329.4824306809105 +108,694146546,bias,axon,x,20.979837762279885 +109,694146546,bias,axon,y,-337.62296125250555 +110,694146546,num_branches,basal_dendrite,none,69.0 +111,694146546,num_branches,axon,none,117.0 +112,694146546,max_branch_order,basal_dendrite,none,9.0 +113,694146546,max_branch_order,axon,none,14.0 +114,694146546,total_length,basal_dendrite,none,3185.736311407383 +115,694146546,total_length,axon,none,3856.9279258047723 +116,694146546,total_surface_area,basal_dendrite,none,5983.0167307564 +117,694146546,mean_diameter,basal_dendrite,none,0.6016030092592592 +118,694146546,max_euclidean_distance,basal_dendrite,none,353.0402965262322 +119,694146546,max_euclidean_distance,axon,none,369.00942279418837 +120,694146546,max_path_distance,basal_dendrite,none,434.5470290069107 +121,694146546,max_path_distance,axon,none,537.3808743109979 +122,694146546,num_outer_bifurcations,basal_dendrite,none,14.0 +123,694146546,num_outer_bifurcations,axon,none,28.0 +124,694146546,mean_contraction,basal_dendrite,none,0.896216086452986 +125,694146546,mean_contraction,axon,none,0.8804317016691116 +126,694146546,soma_percentile,basal_dendrite,x,0.1689814814814815 +127,694146546,soma_percentile,basal_dendrite,y,0.5262345679012346 +128,694146546,soma_percentile,axon,x,0.3268608414239482 +129,694146546,soma_percentile,axon,y,1.0 +130,694146546,calculate_number_of_stems,basal_dendrite,none,3.0 +131,694146546,surface_area,soma,none,240.61616017724623 +132,694146546,early_branch_path,none,none,0.7175151344782787 +133,694146546,stem_exit,basal_dendrite,down,0.3333333333333333 +134,694146546,stem_exit,basal_dendrite,side,0.0 +135,694146546,stem_exit,basal_dendrite,up,0.6666666666666666 +136,694146546,exit_theta,axon,none,0.8624144236833117 +137,694146546,exit_distance,axon,none,8.953753130391712 diff --git a/example_data/example_features_wide_normalized.csv b/example_data/example_features_wide_normalized.csv new file mode 100644 index 0000000..dbef482 --- /dev/null +++ b/example_data/example_features_wide_normalized.csv @@ -0,0 +1,4 @@ +specimen_id,axon_bias_x,axon_bias_y,axon_depth_pc_0,axon_depth_pc_1,axon_emd_with_basal_dendrite,axon_exit_distance,axon_exit_theta,axon_extent_x,axon_extent_y,axon_frac_above_basal_dendrite,axon_frac_below_basal_dendrite,axon_frac_intersect_basal_dendrite,axon_max_branch_order,axon_max_euclidean_distance,axon_max_path_distance,axon_mean_contraction,axon_num_branches,axon_num_outer_bifurcations,axon_soma_percentile_x,axon_soma_percentile_y,axon_total_length,basal_dendrite_bias_x,basal_dendrite_bias_y,basal_dendrite_calculate_number_of_stems,basal_dendrite_extent_x,basal_dendrite_extent_y,basal_dendrite_frac_above_axon,basal_dendrite_frac_below_axon,basal_dendrite_frac_intersect_axon,basal_dendrite_max_branch_order,basal_dendrite_max_euclidean_distance,basal_dendrite_max_path_distance,basal_dendrite_mean_contraction,basal_dendrite_mean_diameter,basal_dendrite_num_branches,basal_dendrite_num_outer_bifurcations,basal_dendrite_soma_percentile_x,basal_dendrite_soma_percentile_y,basal_dendrite_stem_exit_down,basal_dendrite_stem_exit_side,basal_dendrite_stem_exit_up,basal_dendrite_total_length,basal_dendrite_total_surface_area,none_early_branch_path,soma_aligned_dist_from_pia,soma_surface_area +606271263,0.20214914700390474,-0.4740774380080805,1.4007793967849609,-0.19446614497840345,-1.408090398949939,-1.1711920549775867,-0.3129677229449073,-0.19379620989043247,-0.9490499272661417,-0.7071067811865475,1.403952715438453,0.17677818152425395,0.5227282102428386,-1.2296995679240956,0.7731878399078593,-1.3547973026897833,1.0036541871491684,0.09682915249211844,0.33682216877749893,0.373167581740133,0.6441639903566643,-0.25789397760749083,0.40849830701966866,1.372812945967288,0.40585308298760336,-1.3174936894266327,0.4406203987470091,-0.7071067811865475,-0.4021867053511252,-0.34848547349522574,-0.3712218154430119,-0.19545169869985624,-0.43428324889610753,0.4858873665516533,-0.0584784959992063,-0.7493759044943853,0.6252318716428529,-1.371570048927418,0.5073921644158866,0.1383796812043326,-0.6457718456202195,-0.0633887623766324,-0.5246095783565463,-1.2415668814172616,-1.2884462008676767,1.3549858006704518 +694146546,-0.04552843128216433,-1.9947085581360262,-0.868802320119805,-1.1158774702244163,0.590198498649907,-0.10086728381635801,1.3508616925192336,0.21300057740911946,-0.46103623231692287,-0.7071067811865475,-0.554709322678299,1.1267496280279274,-0.9147743679249675,0.10972411937236902,-0.7539179012507842,1.0178540045971227,-1.232128311053044,-0.5394448409272533,-0.28716208965305295,1.3559987522143233,-1.3060191715454794,-0.2272716013196628,-0.027177661798535077,-0.9805806756909203,-0.5663497252574577,1.6750584326639746,0.9434725329936758,-0.7071067811865475,-0.9730805656726117,0.17424273674761281,1.0019497609782562,0.5289376042667531,0.28426460104165135,0.9072454751973036,0.08023793637100397,0.7054938714987149,-0.5993901972632477,0.10617438518764764,0.23063280200722128,-1.5221764932476605,1.291543691240439,0.10487242937882599,1.3996651510348068,0.034367411574142775,0.1393173759641737,-0.3267649288443704 +740135032,-0.1566207157217404,2.4687859961441068,-0.5319770766651558,1.3103436152028198,0.8178919003000319,1.2720593387939447,-1.0378939695743254,-0.019204367518687385,1.4100861595830654,1.4142135623730951,-0.8492433927601537,-1.30352780955218,0.3920461576821289,1.1199754485517253,-0.019269938657075606,0.3369432980926778,0.22847412390387573,0.44261568843513527,-0.04966007912444554,-1.7291663339544563,0.6618551811888154,0.4851655789271538,-0.3813206452211336,-0.39223227027636826,0.16049664226985497,-0.3575647432373422,-1.3840929317406847,1.4142135623730951,1.375267271023737,0.17424273674761281,-0.6307279455352458,-0.33348590556689717,0.15001864785446048,-1.3931328417489548,-0.021759440371797698,0.04388203299567012,-0.025841674379605203,1.2653956637397705,-0.7380249664231081,1.3837968120433277,-0.6457718456202195,-0.0414836670021936,-0.8750555726782601,1.2071994698431194,1.1491288249035039,-1.028220871826082 diff --git a/example_data/example_features_wide_unnormalized.csv b/example_data/example_features_wide_unnormalized.csv new file mode 100644 index 0000000..128a632 --- /dev/null +++ b/example_data/example_features_wide_unnormalized.csv @@ -0,0 +1,4 @@ +specimen_id,axon_bias_x,axon_bias_y,axon_depth_pc_0,axon_depth_pc_1,axon_emd_with_basal_dendrite,axon_exit_distance,axon_exit_theta,axon_extent_x,axon_extent_y,axon_frac_above_basal_dendrite,axon_frac_below_basal_dendrite,axon_frac_intersect_basal_dendrite,axon_max_branch_order,axon_max_euclidean_distance,axon_max_path_distance,axon_mean_contraction,axon_num_branches,axon_num_outer_bifurcations,axon_soma_percentile_x,axon_soma_percentile_y,axon_total_length,basal_dendrite_bias_x,basal_dendrite_bias_y,basal_dendrite_calculate_number_of_stems,basal_dendrite_extent_x,basal_dendrite_extent_y,basal_dendrite_frac_above_axon,basal_dendrite_frac_below_axon,basal_dendrite_frac_intersect_axon,basal_dendrite_max_branch_order,basal_dendrite_max_euclidean_distance,basal_dendrite_max_path_distance,basal_dendrite_mean_contraction,basal_dendrite_mean_diameter,basal_dendrite_num_branches,basal_dendrite_num_outer_bifurcations,basal_dendrite_soma_percentile_x,basal_dendrite_soma_percentile_y,basal_dendrite_stem_exit_down,basal_dendrite_stem_exit_side,basal_dendrite_stem_exit_up,basal_dendrite_total_length,basal_dendrite_total_surface_area,none_early_branch_path,soma_aligned_dist_from_pia,soma_surface_area +606271263,56.22872989248452,-121.2103061622121,1557.1882340570776,-114.4320436027042,20.02095840833445,0.0,0.6246170133542251,400.4118094004192,262.2553175261422,0.0,0.2351952678631444,0.7648047321368555,25.0,240.6846227360817,902.0221232091972,0.8194136640160532,665.0,1.845098040014257,0.4889426631713383,0.7447065940713854,16935.227964908227,0.1618829328459696,107.3874873605935,7.0,292.8979665049092,227.9213594244781,0.3738317757009345,0.0,0.6261682242990654,5.0,221.48224685084813,261.57785404864563,0.8777370205959968,0.5797508521165475,35.0,0.3010299956639812,0.4870808136338647,0.1423859263331501,0.4285714285714285,0.5714285714285714,0.0,2057.344684556989,3746.221348808403,0.5122275147209207,185.35510042590795,334.48341751636667 +694146546,20.979837762279885,-337.62296125250555,-965.8114287782732,-656.6291492134859,50.38248981181829,8.953753130391712,0.8624144236833117,456.4507565320748,329.4824306809105,0.0,0.0307443365695792,0.9692556634304208,14.0,369.0094227941884,537.3808743109979,0.8804317016691116,117.0,1.462397997898956,0.3268608414239482,1.0,3856.927925804772,4.519987715724085,45.38310515181024,3.0,158.97060160570243,640.1652005614803,0.4768518518518518,0.0,0.5231481481481481,9.0,353.0402965262322,434.5470290069107,0.896216086452986,0.6016030092592592,69.0,1.1760912590556813,0.1689814814814815,0.5262345679012346,0.3333333333333333,0.0,0.6666666666666666,3185.736311407383,5983.0167307564,0.7175151344782787,363.1829539564272,240.61616017724623 +740135032,5.169444355631811,297.6111166818944,-591.3768052788041,771.0611928161894,53.84200979057096,20.438908268544992,0.5210092861882935,424.4629900629744,587.2419117540196,0.5537837260625045,0.0,0.4462162739374956,24.0,465.7975422331148,712.7996048944084,0.8629205591762148,475.0,2.05307844348342,0.3885527158823948,0.1986189221897914,17053.86846302751,105.9123765215528,-5.017693772805842,4.0,259.0984945349686,360.15791867251323,0.0,0.053083109919571,0.946916890080429,9.0,196.6200075357029,228.6181419435221,0.8927636513643621,0.4823025201072386,44.0,0.7781512503836436,0.3179624664879356,0.8273458445040215,0.0,1.0,0.0,2204.244429816128,3338.8595673807986,0.9062144295279364,488.95489922056464,201.46425475133609 diff --git a/example_data/example_specimen_ids.txt b/example_data/example_specimen_ids.txt new file mode 100644 index 0000000..ef51e04 --- /dev/null +++ b/example_data/example_specimen_ids.txt @@ -0,0 +1,3 @@ +740135032 +606271263 +694146546 diff --git a/example_data/layer_aligned_740135032.swc b/example_data/layer_aligned_740135032.swc new file mode 100644 index 0000000..33f2d0a --- /dev/null +++ b/example_data/layer_aligned_740135032.swc @@ -0,0 +1,15913 @@ +1 1 0.0 -488.95489922056464 25.802 4.004 -1 +2 3 -2.720275584853238 -493.2794414872338 23.225 0.4665 1 +3 3 -3.21494301630527 -494.28918371758397 22.6751 0.2771 2 +4 3 -3.886552090283911 -496.7086100645881 22.2276 0.2764 3 +5 3 -4.843247467490889 -496.766436195831 21.8782 0.2758 4 +6 3 -5.806763783311134 -496.77726215311077 21.5706 0.2752 5 +7 3 -6.293099539908534 -497.63794503453886 21.3484 0.2746 6 +8 3 -6.533252382495578 -499.25163340378805 21.1794 0.274 7 +9 3 -6.810029443586291 -501.1494746025198 21.0111 0.2735 8 +10 3 -7.0332109921019015 -502.94882800919424 20.8461 0.2729 9 +11 3 -7.358375088134382 -504.29934054599005 20.704 0.2723 10 +12 3 -8.176682342961733 -504.6309420305501 20.5689 0.2717 11 +13 3 -8.947310036980086 -506.67101500057765 20.4322 0.2711 12 +14 3 -9.248899235906674 -508.2146635887475 20.2613 0.2705 13 +15 3 -9.728322752570962 -509.1349022029656 20.0099 0.2699 14 +16 3 -10.432369881617376 -509.69295140100485 19.7581 0.2693 15 +17 3 -10.840545048836674 -510.7472789974827 19.514 0.2687 16 +18 3 -10.78910148844994 -512.156850739372 19.2728 0.2682 17 +19 3 -10.584638565655727 -513.6072020090137 19.062 0.2676 18 +20 3 -10.218720566510669 -515.2021694159109 18.8517 0.267 19 +21 3 -9.935983426411639 -516.7353520489694 18.6769 0.2664 20 +22 3 -10.339247542244706 -517.6105021363902 18.5399 0.2658 21 +23 3 -11.342027243706143 -517.8590149858352 18.4376 0.2652 22 +24 3 -12.189303074351248 -519.5821897903379 18.3487 0.2647 23 +25 3 -12.885421065200422 -520.4432327583637 18.2385 0.2641 24 +26 3 -13.33146630386602 -521.3791540818726 18.1254 0.2635 25 +27 3 -13.64291124949812 -522.7190785971272 18.0367 0.2629 26 +28 3 -14.167643144715647 -524.8713899536435 17.9658 0.2624 27 +29 3 -14.760285958161017 -526.1533458271786 17.9106 0.2618 28 +30 3 -15.335593278544122 -526.9319909750975 17.8693 0.2612 29 +31 3 -15.881579537914533 -527.752731268447 17.8304 0.2606 30 +32 3 -16.543567330495726 -528.6795858446709 17.7654 0.2601 31 +33 3 -17.52518337128372 -530.3679545202914 17.6849 0.2595 32 +34 3 -18.488095228086877 -530.2832928298849 17.6363 0.2589 33 +35 3 -19.15426066658742 -531.9479838925068 17.6274 0.2583 34 +36 3 -19.938008562618634 -533.1956800873803 17.6829 0.2577 35 +37 3 -20.969627798751716 -533.1568620740244 17.775 0.2571 36 +38 3 -21.952574192795552 -533.6949514732033 17.8644 0.2565 37 +39 3 -22.80153665601125 -535.4853819421907 17.9365 0.256 38 +40 3 -23.40131524813482 -536.2026479095623 17.9743 0.2554 39 +41 3 -23.789793044785362 -537.4408882525356 18.0105 0.2548 40 +42 3 -24.28961899710459 -539.681495775092 18.1207 0.2542 41 +43 3 -24.67133132253757 -541.1996730815939 18.3782 0.2536 42 +44 3 -24.74285668893876 -542.5357922512638 18.7237 0.253 43 +45 3 -25.083446799254382 -543.5887497706956 19.0568 0.2524 44 +46 3 -25.589641889299862 -544.4582312463575 19.3179 0.2518 45 +47 3 -26.132783957589915 -545.2830645745846 19.5 0.2512 46 +48 3 -26.957060915069263 -545.7134463195823 19.6135 0.2507 47 +49 3 -27.94736042337027 -547.6386553184198 19.6706 0.2501 48 +50 3 -28.784568682360515 -547.9463715031732 19.7008 0.2495 49 +51 3 -29.454344260356763 -550.1181439193255 19.7231 0.2489 50 +52 3 -29.911305897592136 -551.6099434500586 19.7806 0.2483 51 +53 3 -30.39780903300221 -552.5207972236676 19.8624 0.2478 52 +54 3 -30.79786754659551 -553.5387706039229 19.8926 0.2472 53 +55 3 -30.933367137868125 -555.0026253597238 19.9062 0.2466 54 +56 3 -31.249039686185814 -556.636533311721 19.9347 0.246 55 +57 3 -31.354372491113963 -558.1491679281405 20.0067 0.2454 56 +58 3 -31.054839953272605 -559.1789581192633 20.1126 0.2449 57 +59 3 -30.79200830926825 -560.4348821369178 20.2633 0.2443 58 +60 3 -30.576042037401265 -561.9906410736874 20.4688 0.2437 59 +61 3 -30.16793876222801 -563.6201886979497 20.6698 0.2431 60 +62 3 -29.788930002435425 -565.2424313545012 20.8238 0.2426 61 +63 3 -29.51838724834929 -566.443914738856 20.932 0.242 62 +64 3 -29.500494760707262 -567.8219599328511 21.0083 0.2414 63 +65 3 -29.76778027408324 -569.4332675799274 21.0658 0.2408 64 +66 3 -30.412027030057903 -570.103046421005 21.0893 0.2403 65 +67 3 -30.784279942276683 -571.1607759799424 21.0664 0.2397 66 +68 3 -30.7173367938565 -572.6228319066948 21.1791 0.2391 67 +69 3 -30.57803848148064 -574.13536777668 21.4231 0.2385 68 +70 3 -30.722892061805474 -575.4291315034542 21.6821 0.2379 69 +71 3 -30.874073340606753 -576.7156718944448 21.9531 0.2374 70 +72 3 -30.61971093011965 -578.2946815437443 22.2553 0.2368 71 +73 3 -30.827493585660264 -578.6952527742911 22.6571 0.2368 72 +74 3 -31.401488375053166 -580.1976419147054 23.4274 0.2368 73 +75 3 -31.97511896545545 -581.2748842084309 24.0129 0.2366 74 +76 3 -32.239163954259794 -582.5397927676482 24.5705 0.2366 75 +77 3 -32.476961027810304 -583.9897547111683 25.1318 0.2365 76 +78 3 -32.71053049867533 -585.4519602588305 25.7486 0.2364 77 +79 3 -32.99408534261964 -586.8705844149981 26.3448 0.2363 78 +80 3 -33.48305036376496 -587.7468503641296 26.8329 0.2363 79 +81 3 -34.3087292476519 -588.5023044185757 27.2581 0.2362 80 +82 3 -35.06850832213247 -590.4806415173206 27.682 0.2361 81 +83 3 -35.03037937489007 -591.7784713518749 28.198 0.2361 82 +84 3 -34.598630730443745 -592.5776423602667 28.7465 0.236 83 +85 3 -33.875937387986895 -592.8502626408235 29.3513 0.2359 84 +86 3 -33.54235853666543 -594.3103108257283 30.0913 0.2359 85 +87 3 -34.01749388106666 -595.0877736825631 30.9546 0.2358 86 +88 3 -34.49872176609968 -596.8912453794427 31.9838 0.2357 87 +89 3 -34.84301651351009 -598.8944587090042 32.741 0.2356 88 +90 3 -35.08665355602994 -600.2239655567291 33.3729 0.2356 89 +91 3 -34.90691206759225 -601.6730349125127 33.9276 0.2355 90 +92 3 -34.556637418309265 -602.3608151971395 34.468 0.2354 91 +93 3 -33.88471221332446 -602.876338233948 34.9423 0.2353 92 +94 3 -33.501827720515934 -604.3120658500366 35.639 0.2353 93 +95 3 -34.142114858686824 -604.953210120921 36.2748 0.2352 94 +96 3 -34.62226737117291 -607.0641060340308 36.7312 0.2351 95 +97 3 -34.637388962538836 -608.512085093926 37.0723 0.235 96 +98 3 -34.79748955923457 -610.1982756647676 37.3685 0.235 97 +99 3 -35.30400430743788 -611.4734205338729 37.6555 0.2349 98 +100 3 -35.941468462465885 -612.15953601966 37.9753 0.2348 99 +101 3 -36.74240739719392 -614.1116505768326 38.4135 0.2347 100 +102 3 -37.61339706868069 -614.8767651538909 38.939 0.2347 101 +103 3 -38.30043215694243 -615.4323356435277 39.4425 0.2346 102 +104 3 -38.832211536405346 -616.2722929367355 39.8658 0.2345 103 +105 3 -39.59465511151737 -617.217947304918 40.2422 0.2345 104 +106 3 -40.520498460157995 -618.9002077136465 40.696 0.2344 105 +107 3 -41.36408437439099 -619.4339433742005 41.1421 0.2343 106 +108 3 -41.982799899297575 -621.3924444002068 41.5097 0.2343 107 +109 3 -42.08899074119369 -622.8617223642233 41.8592 0.2342 108 +110 3 -42.08023180544188 -624.2708335733046 42.2657 0.2341 109 +111 3 -42.22451246340968 -625.809963820313 42.6056 0.234 110 +112 3 -42.451607372386256 -627.2977830148548 42.9556 0.234 111 +113 3 -43.21383361191947 -627.6756350721557 43.435 0.2339 112 +114 3 -43.63868064636455 -628.6335352808744 43.9396 0.2338 113 +115 3 -44.061873182739646 -629.629689074696 44.373 0.2338 114 +116 3 -44.000324405567916 -631.0751460607634 44.8882 0.2337 115 +117 3 -43.53422822727477 -632.7309248260576 45.3698 0.2336 116 +118 3 -43.676370451785 -634.036669568656 45.7509 0.2335 117 +119 3 -44.308493293913926 -634.7428368398212 46.025 0.2335 118 +120 3 -45.05799566492541 -636.3098513127718 46.2571 0.2334 119 +121 3 -45.643012561138775 -638.1486379309829 46.5161 0.2333 120 +122 3 -46.26003525030865 -638.8795662573855 46.755 0.2333 121 +123 3 -46.6797935435172 -640.2586203080542 46.9392 0.2332 122 +124 3 -46.78437132659291 -641.6922723009302 47.0526 0.2331 123 +125 3 -47.41770478558093 -643.5959193692122 47.1324 0.233 124 +126 3 -48.32835658524659 -644.2204733089769 47.2612 0.233 125 +127 3 -48.82418768367838 -645.0668553928235 47.4827 0.2329 126 +128 3 -48.79435648326907 -646.5322336258752 47.784 0.2328 127 +129 3 -48.88837896518275 -647.8952837075578 48.0866 0.2327 128 +130 3 -49.24232712849101 -648.9725953594682 48.356 0.2327 129 +131 3 -49.9574320088894 -649.9503804137292 48.638 0.2326 130 +132 3 -50.69784837573041 -651.6202174147077 48.9454 0.2325 131 +133 3 -51.30818226901611 -652.8884143223456 49.2083 0.2325 132 +134 3 -52.16683620170768 -653.6569233142907 49.4704 0.2324 133 +135 3 -53.09834603203495 -655.3667930850261 49.7818 0.2323 134 +136 3 -53.75939980485141 -655.9788418967063 50.1088 0.2322 135 +137 3 -54.2283915508701 -656.9491542600158 50.398 0.2322 136 +138 3 -54.71685722340857 -659.1188526432555 50.6456 0.2321 137 +139 3 -55.19413610344907 -660.969513657344 50.8928 0.232 138 +140 3 -55.226552441163996 -662.3422593579315 51.1734 0.232 139 +141 3 -54.847059053447346 -663.4212878537564 51.4665 0.2319 140 +142 3 -54.82346554057175 -664.7655214359972 51.8395 0.2318 141 +143 3 -54.98383273707605 -666.5239689548811 52.2822 0.2317 142 +144 3 -55.20474370940484 -667.9639756790102 52.8217 0.2317 143 +145 3 -55.523004775557304 -669.0866243448716 53.4066 0.2316 144 +146 3 -55.82296040026264 -670.2372708942872 53.9288 0.2315 145 +147 3 -56.35482807415843 -671.0882091045016 54.4186 0.2314 146 +148 3 -56.74028027276983 -672.3200534705251 54.9914 0.2314 147 +149 3 -57.227103758874335 -673.410201806473 55.5478 0.2313 148 +150 3 -57.53324642181063 -674.5544341060219 55.993 0.2312 149 +151 3 -57.8530667958975 -676.5243658820681 56.3774 0.2312 150 +152 3 -58.09015880436183 -678.2625291498571 56.9016 0.2311 151 +153 3 -58.76569226006071 -679.29367434808 57.2376 0.231 152 +154 3 -59.311907474109674 -680.1369291754127 57.4963 0.2309 153 +155 3 -59.623300053929036 -681.6139891989476 57.7853 0.2309 154 +156 3 -59.87972153454792 -683.5449519842177 58.0835 0.2308 155 +157 3 -60.26587879824546 -685.6935655751879 58.3307 0.2307 156 +158 3 -60.41752178052358 -687.0214709286715 58.548 0.2307 157 +159 3 -60.07370387086309 -688.0436965717428 58.7594 0.2306 158 +160 3 -59.943988502218 -689.1911148772903 59.0013 0.2305 159 +161 3 -59.97412195211004 -690.6820258509416 59.3158 0.2304 160 +162 3 -59.95450518676737 -692.055451511068 59.7388 0.2304 161 +163 3 -60.40898201382019 -694.0505631884786 60.2322 0.2303 162 +164 3 -60.852544851349755 -695.0071275936848 60.6738 0.2302 163 +165 3 -61.153649422352196 -696.173037667853 61.1257 0.2302 164 +166 3 -61.5147772126349 -697.2484467351071 61.6406 0.2301 165 +167 3 -61.91114580981602 -698.3842290805633 62.1368 0.23 166 +168 3 -62.269373941622646 -699.5456510312384 62.5971 0.2299 167 +169 3 -62.690518748019564 -700.565335039914 62.9306 0.2299 168 +170 3 -62.88914994041484 -701.9956196526987 63.1509 0.2298 169 +171 3 -62.71599492528233 -703.4113837668791 63.3245 0.2297 170 +172 3 -62.68990359805142 -704.8900328912615 63.5342 0.2296 171 +173 3 -62.909518760671396 -706.2875384847878 63.7837 0.2296 172 +174 3 -62.81544053241584 -707.6683157469149 64.0802 0.2295 173 +175 3 -62.40645560329063 -709.3517773041044 64.4036 0.2294 174 +176 3 -62.283734660541455 -710.8921117410632 64.738 0.2294 175 +177 3 -62.29934398141465 -712.3472359704913 65.0082 0.2293 176 +178 3 -61.92465111874051 -714.0158035504725 65.1549 0.2292 177 +179 3 -61.51316906779648 -715.723284624522 65.1865 0.2291 178 +180 3 -61.60237389493843 -717.1320103264868 65.1722 0.2291 179 +181 3 -61.63152026671652 -718.3156421618975 65.1392 0.229 180 +182 3 -61.29683831799282 -719.667838792621 65.1022 0.2289 181 +183 3 -61.47723833522784 -720.7334698115268 65.0661 0.2289 182 +184 3 -30.52209815440219 -580.2176435821361 21.3187 0.2367 72 +185 3 -30.851630513365848 -581.3243046582363 21.1997 0.2366 184 +186 3 -31.03827303622762 -582.7828712915967 21.0678 0.2365 185 +187 3 -31.357429784478107 -584.366758245914 20.9618 0.2364 186 +188 3 -32.03393008697867 -585.4210761746339 20.8947 0.2363 187 +189 3 -32.82719555675505 -586.683076618199 20.8653 0.2361 188 +190 3 -33.71199508212159 -587.0493364020185 20.8693 0.236 189 +191 3 -34.534673701463255 -588.5145297020783 20.9023 0.2359 190 +192 3 -34.77195701947606 -590.2650347784452 20.9605 0.2358 191 +193 3 -34.6447795193628 -591.4147596718561 21.0353 0.2357 192 +194 3 -35.074456520215904 -592.968919931146 21.1823 0.2356 193 +195 3 -35.842404992920045 -593.427990914972 21.3978 0.2355 194 +196 3 -36.13554588217826 -594.714696308729 21.6126 0.2354 195 +197 3 -36.337561360973915 -596.3659517426722 21.784 0.2353 196 +198 3 -36.938899953568495 -598.5102541134097 21.8958 0.2352 197 +199 3 -37.487116042412524 -599.424011872453 21.9655 0.2351 198 +200 3 -37.958031295356385 -600.3619565266212 21.9752 0.235 199 +201 3 -38.47625339260203 -601.237403181267 21.9264 0.2349 200 +202 3 -38.76101195770272 -602.3978175327982 21.8228 0.2348 201 +203 3 -39.36052084843459 -603.3511599632267 21.5233 0.2347 202 +204 3 -40.22442710705578 -605.3675389612143 21.1464 0.2346 203 +205 3 -41.11920660218078 -605.6928145907434 20.8274 0.2345 204 +206 3 -41.39153872500697 -607.20333822874 20.5895 0.2344 205 +207 3 -40.67408298779706 -608.4723531005458 20.3931 0.2343 206 +208 3 -40.30652521126453 -610.0992940053025 20.1938 0.2341 207 +209 3 -40.381382498253295 -611.4771374965621 19.9916 0.234 208 +210 3 -40.23411671001345 -612.8840276602742 19.7279 0.2339 209 +211 3 -40.504387074715424 -614.1964524571727 19.4724 0.2338 210 +212 3 -41.13597533215396 -614.9059823717616 19.289 0.2337 211 +213 3 -41.5010188919442 -616.3929036303045 19.0931 0.2336 212 +214 3 -41.39584767625322 -617.7673879172243 18.8692 0.2335 213 +215 3 -41.51763121870854 -619.2181834204539 18.6746 0.2334 214 +216 3 -42.002389845105725 -621.2537648019213 18.5298 0.2333 215 +217 3 -42.15790415075471 -622.7828351909393 18.405 0.2332 216 +218 3 -41.76204831994374 -623.6243681499695 18.2967 0.2331 217 +219 3 -41.29128065775396 -624.4574520694131 18.1874 0.233 218 +220 3 -41.13322820462706 -625.8656518774069 18.0484 0.2329 219 +221 3 -41.2142834564097 -627.2670165069275 17.8851 0.2328 220 +222 3 -41.072362082652035 -628.7585989873828 17.7155 0.2327 221 +223 3 -40.5529876408953 -630.4452613988213 17.5338 0.2326 222 +224 3 -39.93214851503068 -631.2855749850349 17.2819 0.2325 223 +225 3 -39.125084620517335 -631.6036806450396 16.9573 0.2324 224 +226 3 -38.343335314029765 -633.1542703616768 16.64 0.2322 225 +227 3 -38.09075644275881 -634.743355073801 16.3814 0.2321 226 +228 3 -38.05820768336863 -636.1751880646559 16.1897 0.232 227 +229 3 -37.968142131266255 -637.6882236061668 16.0321 0.2319 228 +230 3 -37.71644181236415 -639.2958901787272 15.8693 0.2318 229 +231 3 -37.3469246002863 -640.9526371342513 15.6848 0.2317 230 +232 3 -36.692276319384874 -641.5801642582169 15.4954 0.2316 231 +233 3 -36.13046782405697 -642.0919060870851 15.2482 0.2315 232 +234 3 -35.829284582265274 -643.7205492755536 14.9523 0.2314 233 +235 3 -35.62663492414118 -645.2946042633604 14.6894 0.2313 234 +236 3 -35.72984332375782 -646.6338684188931 14.4324 0.2312 235 +237 3 -36.07608278603083 -647.7380525860273 14.1543 0.2311 236 +238 3 -36.4967782005872 -649.1771338244782 13.929 0.231 237 +239 3 -36.48294662935465 -650.5061847920283 13.7962 0.2309 238 +240 3 -36.3842852116355 -651.7179231464652 13.7416 0.2308 239 +241 3 -36.68294261758537 -653.6590206084225 13.7516 0.2307 240 +242 3 -37.27723923656426 -655.7387102696971 13.8088 0.2306 241 +243 3 -37.301022063532436 -657.0611179495827 13.9442 0.2305 242 +244 3 -37.235319257425324 -658.5576500153938 14.208 0.2304 243 +245 3 -37.312276640205 -659.9408335232134 14.5739 0.2303 244 +246 3 -37.191388500901695 -661.4519568101055 14.9697 0.2302 245 +247 3 -37.11998638607094 -662.7187952758065 15.3424 0.2301 246 +248 3 -37.56876390440006 -663.8945839770373 15.7716 0.2299 247 +249 3 -38.39393964556045 -664.2096128053518 16.2665 0.2298 248 +250 3 -38.812728682920785 -665.203983474494 16.7717 0.2297 249 +251 3 -38.99990889205601 -666.480955028893 17.1718 0.2296 250 +252 3 -38.907214075405705 -667.9953783182614 17.5819 0.2295 251 +253 3 -39.09007838742249 -669.2829731564713 17.9547 0.2294 252 +254 3 -39.339670411911705 -670.5111872510613 18.2044 0.2293 253 +255 3 -39.46251460623122 -671.8683257229525 18.3581 0.2292 254 +256 3 -39.51888745386062 -673.2887050563736 18.4477 0.2291 255 +257 3 -39.74411363077132 -674.5763372749118 18.4956 0.229 256 +258 3 -39.790771391940815 -676.0204193881674 18.5102 0.2289 257 +259 3 -1.6738742874174142 -485.3436554785929 28.7893 0.4865 1 +260 3 -1.6894862962829766 -484.048725498512 29.3121 0.2737 259 +261 3 -2.174189751915395 -483.14507496325865 29.6554 0.2705 260 +262 3 -3.264133949951803 -482.4507161725715 29.8836 0.2679 261 +263 3 -4.405227898268877 -483.39692654082336 30.0378 0.2653 262 +264 3 -5.376627604359033 -481.97749350371697 30.2394 0.2626 263 +265 3 -5.966200954348245 -480.3627256895215 30.4612 0.26 264 +266 3 -6.318882021970631 -478.78634579103715 30.6113 0.2574 265 +267 3 -6.782299280723244 -478.66523751177397 30.5964 0.2471 266 +268 3 -7.439985471300052 -478.0021402210186 30.4682 0.2469 267 +269 3 -8.178551810834186 -476.467654825821 30.228 0.2467 268 +270 3 -9.07032953254572 -476.8467062348789 29.8651 0.2466 269 +271 3 -9.934217152569524 -475.5289658687317 29.4599 0.2465 270 +272 3 -10.632916339981989 -473.9890988218884 29.0814 0.2464 271 +273 3 -11.201147031385462 -472.46882220636047 28.7134 0.2463 272 +274 3 -11.44058587777931 -471.04047701822316 28.355 0.2462 273 +275 3 -11.72132214308323 -469.901932485129 28.0003 0.2461 274 +276 3 -12.188443737157066 -469.5416437258152 27.5896 0.246 275 +277 3 -12.670788322169807 -468.4632629134361 27.103 0.2459 276 +278 3 -13.259735691452711 -466.96039650365503 26.5962 0.2457 277 +279 3 -13.627560067793805 -465.58087120049845 26.1802 0.2456 278 +280 3 -13.59140144785401 -464.30563764041756 25.8582 0.2455 279 +281 3 -13.37298759734388 -463.1128743042755 25.5805 0.2454 280 +282 3 -13.612102298923592 -461.8071704855472 25.3313 0.2453 281 +283 3 -14.090531114428751 -461.3831275732214 25.1448 0.2452 282 +284 3 -14.1897740667176 -460.2251651334626 24.9572 0.2451 283 +285 3 -14.122129233740363 -458.76677788430425 24.7553 0.245 284 +286 3 -14.399563398606986 -457.94256935511527 24.5546 0.2449 285 +287 3 -14.661569140143882 -456.6265459641943 24.3563 0.2447 286 +288 3 -14.654161760442813 -455.3111674838409 24.1995 0.2446 287 +289 3 -14.803621449536033 -453.8955995631543 24.074 0.2445 288 +290 3 -15.107031419218206 -452.40722493526715 23.9443 0.2444 289 +291 3 -15.556958873012022 -450.87235994748056 23.8213 0.2443 290 +292 3 -15.89658751765355 -449.38372336793304 23.7449 0.2442 291 +293 3 -16.042704359596264 -447.96868849536327 23.7063 0.2441 292 +294 3 -16.145822334679455 -446.57766410631814 23.6973 0.244 293 +295 3 -16.563801871959193 -445.2336647213196 23.7169 0.2439 294 +296 3 -16.952912746953558 -444.02679192291595 23.7785 0.2437 295 +297 3 -16.746208654532253 -442.7699640943232 23.9016 0.2436 296 +298 3 -16.719150759445597 -441.4773066242702 24.0248 0.2435 297 +299 3 -16.92095159065478 -440.2236815496573 24.1426 0.2434 298 +300 3 -17.30677577843113 -439.2396514919797 24.2505 0.2433 299 +301 3 -17.380446060402104 -438.0116992312318 24.3304 0.2432 300 +302 3 -17.05844271202484 -436.46402035111527 24.3642 0.2431 301 +303 3 -16.9223670968121 -435.1387499242435 24.3921 0.2429 302 +304 3 -17.37835185515413 -434.2242830182938 24.5158 0.2428 303 +305 3 -17.84217745726057 -433.47952231085696 24.7036 0.2427 304 +306 3 -18.239631626209267 -432.10276383908786 24.8845 0.2426 305 +307 3 -18.334823564678274 -430.7265675554356 25.0553 0.2425 306 +308 3 -18.39624950387013 -429.37122696540126 25.1953 0.2424 307 +309 3 -18.621930862196983 -427.9237156366705 25.3039 0.2423 308 +310 3 -18.673771448611603 -426.5726090766466 25.3884 0.2422 309 +311 3 -18.573382930554736 -425.33467779011454 25.479 0.2421 310 +312 3 -18.57452997722074 -424.0216135077049 25.617 0.242 311 +313 3 -18.575539465224125 -422.6967073115439 25.7781 0.2418 312 +314 3 -18.652911282706807 -421.3379911088843 25.9442 0.2417 313 +315 3 -18.777862054929496 -419.9505211730365 26.1156 0.2416 314 +316 3 -18.58342012755311 -418.8010041578549 26.3082 0.2415 315 +317 3 -18.74970975793562 -417.41749145694246 26.5688 0.2414 316 +318 3 -19.30020862278563 -415.92062159166926 26.8248 0.2413 317 +319 3 -19.241826382844685 -414.67087610533576 27.1006 0.2412 318 +320 3 -19.075882023059958 -413.5743294631276 27.3706 0.2411 319 +321 3 -19.553955251787066 -412.26285710597136 27.5728 0.2409 320 +322 3 -19.515132131215776 -410.92119761834766 27.7547 0.2408 321 +323 3 -19.27667143182888 -409.7126975505617 27.9549 0.2407 322 +324 3 -19.373951846989275 -408.3697051240381 28.1467 0.2406 323 +325 3 -19.790286788788553 -407.2308217059048 28.3562 0.2405 324 +326 3 -19.845152280705676 -405.9768178463548 28.5421 0.2404 325 +327 3 -19.52381876133101 -404.5744096233511 28.707 0.2403 326 +328 3 -19.413577598151694 -403.3478112868096 28.8196 0.2402 327 +329 3 -19.221723496073455 -402.2015288788084 28.9002 0.2401 328 +330 3 -18.889294580216717 -401.1879395155512 29.0184 0.2399 329 +331 3 -18.913590056595403 -399.9436855636661 29.1998 0.2398 330 +332 3 -19.399642380286036 -398.42317020478856 29.3768 0.2397 331 +333 3 -19.487195397350373 -397.14965753253045 29.5156 0.2396 332 +334 3 -18.97630928463272 -396.3578939177996 29.622 0.2395 333 +335 3 -18.67416767875006 -395.3674767578489 29.6993 0.2394 334 +336 3 -18.820281419109666 -393.9809407425455 29.7315 0.2393 335 +337 3 -19.038965249957453 -392.5482587501132 29.6696 0.2391 336 +338 3 -19.151795209917438 -391.1775002179251 29.5112 0.239 337 +339 3 -19.183641313267902 -389.8561169910335 29.3524 0.2389 338 +340 3 -19.13577913840549 -388.59044066454396 29.3154 0.2388 339 +341 3 -18.906630988821053 -387.47948281460503 29.3726 0.2387 340 +342 3 -18.667321462519194 -386.3543491350095 29.405 0.2386 341 +343 3 -18.88529101822775 -384.9543039697256 29.4647 0.2385 342 +344 3 -19.38270603074559 -383.43781160380246 29.5481 0.2384 343 +345 3 -19.716183565776376 -381.96486549123136 29.6086 0.2382 344 +346 3 -19.77230412068926 -380.63370911092863 29.6414 0.2381 345 +347 3 -19.607403691487598 -379.4653682832468 29.6618 0.238 346 +348 3 -19.591976470109838 -378.1799149599059 29.6635 0.2379 347 +349 3 -20.02938608561312 -376.71919183375985 29.6587 0.2378 348 +350 3 -20.60257268298745 -376.216092856387 29.7018 0.2377 349 +351 3 -20.615826513770024 -374.8988843783447 29.8262 0.2376 350 +352 3 -20.52270281553745 -373.36465223628096 29.9048 0.2375 351 +353 3 -21.15659987501248 -373.0455119740618 29.878 0.2373 352 +354 3 -21.572669933513065 -371.58028464923365 29.7811 0.2372 353 +355 3 -21.148631671806253 -370.67099808667683 29.7052 0.2371 354 +356 3 -20.83380243977386 -369.03528425197896 29.6596 0.237 355 +357 3 -20.59850869120824 -367.26998000648473 29.587 0.2369 356 +358 3 -20.48199219536515 -365.6837131572864 29.5081 0.2368 357 +359 3 -20.555624139669497 -364.4751701170356 29.3633 0.2367 358 +360 3 -20.40983343799691 -362.94523667389564 29.246 0.2366 359 +361 3 -20.01716947791055 -361.9604487518003 29.2337 0.2365 360 +362 3 -19.538812816276675 -361.1306013588795 29.1889 0.2363 361 +363 3 -18.794756489789762 -360.61405864555576 29.0629 0.2362 362 +364 3 -18.35251238641657 -359.7488682058422 28.9663 0.2361 363 +365 3 -18.77548616733378 -358.36617376116413 28.8742 0.236 364 +366 3 -19.410046852645223 -356.92272175478763 28.7851 0.2359 365 +367 3 -19.668057740294728 -355.5053433559002 28.7692 0.2358 366 +368 3 -19.694598459366254 -354.1998990417241 28.8338 0.2357 367 +369 3 -20.089810487205206 -352.78604007432165 28.9554 0.2356 368 +370 3 -21.006781959561174 -352.37478702098304 29.1085 0.2354 369 +371 3 -21.96455391126694 -351.99213125068763 29.2821 0.2353 370 +372 3 -22.541327409937857 -350.5414063609255 29.4655 0.2352 371 +373 3 -22.609871305542157 -349.20900855285913 29.6355 0.2351 372 +374 3 -22.559652669106598 -347.92043009597535 29.7609 0.235 373 +375 3 -22.84033656859777 -346.7863446164074 29.8399 0.2349 374 +376 3 -23.299849375168847 -346.41978158786895 29.9118 0.2348 375 +377 3 -23.561782235492096 -345.4105951799655 30.0104 0.2347 376 +378 3 -23.541228627747707 -344.1058215254018 30.1143 0.2345 377 +379 3 -23.34415743582337 -342.4034260941067 30.1916 0.2344 378 +380 3 -23.167315192271282 -340.67511062224986 30.2834 0.2343 379 +381 3 -23.125959713797677 -339.20388758496205 30.4651 0.2342 380 +382 3 -22.89720789770444 -337.413040304935 30.7062 0.2341 381 +383 3 -22.36516432747947 -336.5984298213848 30.9072 0.234 382 +384 3 -21.944826908747736 -335.67918141249464 31.1206 0.2339 383 +385 3 -21.560758814278152 -334.2979362608156 31.3656 0.2338 384 +386 3 -20.83758413543685 -332.4171896519074 31.5787 0.2337 385 +387 3 -20.050828463632307 -331.96242261490045 31.7447 0.2335 386 +388 3 -19.844699702614513 -330.8269058984079 31.864 0.2334 387 +389 3 -20.25965364185506 -329.42379740652984 31.9018 0.2333 388 +390 3 -20.571444550621564 -327.97614835019317 31.8766 0.2332 389 +391 3 -21.113042612379616 -326.44515113497744 31.8665 0.2331 390 +392 3 -21.874196770905634 -326.6422434806128 31.8097 0.233 391 +393 3 -22.41530400157327 -325.15188747490134 31.6686 0.2329 392 +394 3 -22.72290874690399 -323.6663948108397 31.4121 0.2328 393 +395 3 -23.09893265537061 -322.18905341885613 31.1251 0.2326 394 +396 3 -23.573853653959084 -321.57583444395124 30.8622 0.2325 395 +397 3 -23.497830290944016 -320.05287662834996 30.6194 0.2324 396 +398 3 -23.522229474974843 -318.7113141592289 30.3797 0.2323 397 +399 3 -23.928317847206962 -318.1757500733333 30.1154 0.2322 398 +400 3 -24.02342149124309 -316.954601377927 29.8752 0.2321 399 +401 3 -24.007905975432514 -315.5522064408354 29.54 0.232 400 +402 3 -24.233261472435274 -314.38496359785825 29.0772 0.2319 401 +403 3 -24.36894654373235 -312.99006474331173 28.698 0.2318 402 +404 3 -24.4196765215165 -311.6698919604604 28.4091 0.2316 403 +405 3 -24.29682922561382 -310.4548601099405 28.0958 0.2315 404 +406 3 -24.56375873862111 -308.99351591682984 27.7629 0.2314 405 +407 3 -24.71410008166628 -307.5926921502665 27.4562 0.2313 406 +408 3 -24.50415546467341 -306.45829880646386 27.1495 0.2312 407 +409 3 -24.638186730437027 -305.07298473821555 26.7578 0.2311 408 +410 3 -25.114041748790136 -303.5528908177679 26.4139 0.231 409 +411 3 -25.775773442557025 -302.01164157095786 26.1846 0.2309 410 +412 3 -26.509936283076442 -300.4825534614119 26.046 0.2308 411 +413 3 -27.199290786185884 -299.6690901930625 25.9794 0.2306 412 +414 3 -27.76850614665686 -299.32833001197906 25.9774 0.2305 413 +415 3 -28.250330867661894 -297.82584850981993 26.0494 0.2304 414 +416 3 -28.775903274212617 -296.2901284696722 26.1629 0.2303 415 +417 3 -29.34988323110599 -295.219064703317 26.2581 0.2302 416 +418 3 -30.245130432067633 -295.05837891083803 26.3316 0.2301 417 +419 3 -31.21438008560061 -293.9702902003666 26.3624 0.23 418 +420 3 -31.626513450744802 -292.53750678840686 26.4067 0.2299 419 +421 3 -31.660136890145203 -291.2065251949154 26.5374 0.2297 420 +422 3 -31.705252752055472 -289.8689623636616 26.724 0.2296 421 +423 3 -31.407923290314926 -288.8507485250706 26.9464 0.2295 422 +424 3 -30.957959180558696 -287.97206621461345 27.1392 0.2294 423 +425 3 -30.330815168848055 -287.0208247307983 27.2458 0.2293 424 +426 3 -29.53754969907162 -285.3299706013024 27.346 0.2292 425 +427 3 -29.355107054040012 -284.00695336062296 27.7836 0.229 426 +428 3 -30.101625456218812 -283.8295295722727 28.6068 0.2289 427 +429 3 -6.560359601073985 -478.89618084352674 31.3804 0.2574 266 +430 3 -7.4867312251288 -478.9872730992696 31.7976 0.2534 429 +431 3 -8.387680836397182 -477.54741813569854 32.006 0.2512 430 +432 3 -9.173952070234346 -477.9366324869101 32.2613 0.2492 431 +433 3 -9.785804507620476 -476.37277689430493 32.4783 0.2471 432 +434 3 -10.138848181518737 -476.5606951679703 33.1128 0.2469 433 +435 3 -10.971604683552906 -476.65622845230376 34.3344 0.2465 434 +436 3 -10.709847897537472 -476.71891288461575 35.5841 0.2461 435 +437 3 -11.627127018188816 -475.83341944026625 36.7214 0.2457 436 +438 3 -12.612937124403647 -477.38573983558445 37.5155 0.2455 437 +439 3 -13.465709648876194 -477.6069133728332 38.1856 0.2452 438 +440 3 -14.356620229676807 -479.7898737290132 38.7178 0.245 439 +441 3 -15.232788653342892 -479.9991256969173 39.1468 0.2447 440 +442 3 -16.145342420559437 -480.0007676054876 39.5906 0.2445 441 +443 3 -17.23949841729918 -480.8176043020095 40.0898 0.2442 442 +444 3 -18.336907250246632 -480.9829456355912 40.5871 0.244 443 +445 3 -19.369414657249663 -482.3620649743624 41.0911 0.2437 444 +446 3 -20.113717760680803 -483.1129211691907 41.5694 0.2434 445 +447 3 -20.942830195197622 -483.3791700697102 42.0599 0.2432 446 +448 3 -21.781111417688262 -483.6415723583501 42.6488 0.2429 447 +449 3 -22.73622317744023 -485.6387179723207 43.2424 0.2426 448 +450 3 -23.830761177751512 -484.8139694589081 43.8284 0.2424 449 +451 3 -24.83473708914115 -486.62082349754564 44.4662 0.2421 450 +452 3 -25.92661299786746 -485.7859712617928 45.1665 0.2419 451 +453 3 -26.954913317585707 -485.51572057386875 45.8088 0.2416 452 +454 3 -27.88982215499594 -487.61255205721415 46.3574 0.2414 453 +455 3 -28.91976155956506 -487.37968975267177 46.9294 0.2411 454 +456 3 -29.343544840562945 -489.04998936918804 47.6896 0.2408 455 +457 3 -29.715921691746093 -491.0149842575913 48.4134 0.2405 456 +458 3 -30.66305194748798 -491.2394862654763 49.0353 0.2402 457 +459 3 -31.751059936200146 -492.60498705178367 49.5692 0.24 458 +460 3 -32.83055494977308 -491.64672881439094 50.0828 0.2397 459 +461 3 -33.864861711952436 -490.42568270221875 50.5554 0.2395 460 +462 3 -34.95447804806618 -491.2606625911821 51.0303 0.2392 461 +463 3 -36.07850689724934 -490.5684313865363 51.5248 0.239 462 +464 3 -37.16781000313377 -492.0284895626274 51.9714 0.2387 463 +465 3 -38.14791289863387 -492.0336333616553 52.3681 0.2385 464 +466 3 -39.10014861689361 -492.05427294077424 52.7713 0.2382 465 +467 3 -40.165452767325576 -493.57833749019056 53.1647 0.238 466 +468 3 -41.24974380730676 -493.28093316976265 53.5044 0.2377 467 +469 3 -42.222082534375794 -495.1445828186926 53.8101 0.2375 468 +470 3 -42.8151134775476 -495.8948534422294 54.171 0.2372 469 +471 3 -43.547639434621004 -496.04832872787375 54.7095 0.2369 470 +472 3 -44.66033503634226 -495.4750005880937 55.3028 0.2366 471 +473 3 -45.658555266291465 -495.7563116906505 55.8774 0.2364 472 +474 3 -46.73643411946104 -495.5261544057143 56.3545 0.2361 473 +475 3 -47.83531304861101 -495.76286820673306 56.7308 0.2359 474 +476 3 -48.948500487710895 -494.8222789512083 57.0704 0.2356 475 +477 3 -50.060721665871355 -495.0745685200195 57.3516 0.2354 476 +478 3 -51.172518785685185 -495.55293180543987 57.612 0.2351 477 +479 3 -52.29998938926297 -496.63262545034866 57.9043 0.2349 478 +480 3 -53.407324441083155 -496.42692073486063 58.2291 0.2346 479 +481 3 -54.45161448738854 -496.2970469792353 58.6152 0.2344 480 +482 3 -55.463183773061715 -497.7177249297783 59.0668 0.2341 481 +483 3 -56.52268559965441 -497.88037962763093 59.5482 0.2339 482 +484 3 -57.60715253596476 -499.31040014665086 60.0001 0.2336 483 +485 3 -58.667715014421674 -499.0010150265534 60.4072 0.2334 484 +486 3 -59.67976892801897 -499.0548464394103 60.7513 0.2331 485 +487 3 -60.65656662149858 -500.6895772794306 61.0784 0.2329 486 +488 3 -61.62391110493011 -501.08608097115666 61.4281 0.2326 487 +489 3 -62.64149935748486 -502.6751735351431 61.8097 0.2324 488 +490 3 -63.66714648191953 -502.58188061742106 62.1732 0.2321 489 +491 3 -64.69779336062132 -502.5621916407653 62.5237 0.2318 490 +492 3 -65.70120145183554 -503.9648248934395 62.876 0.2316 491 +493 3 -66.76796499666946 -504.17868442014895 63.2114 0.2313 492 +494 3 -67.88875160477114 -505.15498254332255 63.5824 0.2311 493 +495 3 -69.0015279896972 -504.3187495158489 64.0133 0.2308 494 +496 3 -70.11878385643467 -503.3434927313114 64.5308 0.2306 495 +497 3 -71.21434177958196 -504.56423846299646 65.1445 0.2303 496 +498 3 -72.31712136679393 -504.32718497809077 65.802 0.2301 497 +499 3 -73.43647632303404 -505.14021770478973 66.3762 0.2298 498 +500 3 -74.53076585955418 -505.16320428206905 66.988 0.2295 499 +501 3 -75.61572052537173 -505.7061068714961 67.3996 0.2293 500 +502 3 -76.59305900670789 -505.65777391455276 67.8706 0.2291 501 +503 3 -10.496408166026907 -475.12213784210013 32.8031 0.2469 433 +504 3 -11.379460980975676 -473.66488036795306 33.0084 0.2466 503 +505 3 -12.307977241654223 -474.10200575681176 33.1682 0.2464 504 +506 3 -13.276789814982761 -472.8222899376242 33.308 0.2462 505 +507 3 -13.940914922916315 -472.28720501572667 33.4765 0.246 506 +508 3 -14.459892338645325 -471.7353375356995 33.6694 0.2458 507 +509 3 -15.189237524393025 -470.2035839411542 33.8486 0.2457 508 +510 3 -16.103095104276942 -468.7707372738813 34.0208 0.2455 509 +511 3 -17.1083398940241 -468.2590978211412 34.2818 0.2453 510 +512 3 -18.047537395427703 -468.00864594338225 34.6948 0.2451 511 +513 3 -18.872151016999105 -466.6485372171429 35.1809 0.2449 512 +514 3 -19.74109414277452 -467.02760196649655 35.9716 0.2446 513 +515 3 -20.662383228758863 -465.7419803928826 36.6691 0.2444 514 +516 3 -21.72183619386294 -464.6695474218186 37.2392 0.2442 515 +517 3 -22.80801249209193 -465.3918175322566 37.6832 0.244 516 +518 3 -23.68739659856604 -463.94218517419506 38.1077 0.2438 517 +519 3 -24.45121525772355 -463.3475937423017 38.551 0.2436 518 +520 3 -25.55029952456802 -463.29007764432384 38.9138 0.2434 519 +521 3 -26.644284123612938 -462.30787262846684 39.2498 0.2432 520 +522 3 -26.915756789592294 -461.11432370825764 39.7085 0.243 521 +523 3 -26.052067174013466 -460.7570670984213 40.4026 0.2428 522 +524 3 -25.36235286443757 -460.25311026755855 41.0334 0.2426 523 +525 3 -25.01673017281778 -459.20451302200564 41.4666 0.2424 524 +526 3 -24.739861715711072 -457.7156794831851 41.7718 0.2422 525 +527 3 -24.2819105913152 -455.68152603489773 41.9966 0.242 526 +528 3 -23.879845786993474 -454.42232201332286 42.2428 0.2418 527 +529 3 -23.982860054424588 -453.1048242378628 42.6479 0.2416 528 +530 3 -24.86074783158822 -453.428027558053 43.1508 0.2414 529 +531 3 -25.762075261545572 -452.3926078815485 43.9048 0.2411 530 +532 3 -25.932953592021256 -450.99791048815644 44.5536 0.2409 531 +533 3 -26.228293763260602 -449.53445925998426 45.0825 0.2407 532 +534 3 -26.64098263694396 -448.1049099109092 45.5342 0.2405 533 +535 3 -27.151975447079916 -446.91822559231036 46.0911 0.2404 534 +536 3 -27.85979277316334 -446.27706894833307 46.767 0.2401 535 +537 3 -28.805393955840145 -445.6529544122689 47.4779 0.2399 536 +538 3 -29.759373668554872 -444.88916186069554 48.0362 0.2397 537 +539 3 -30.62565539528187 -444.8453795967137 48.5988 0.2395 538 +540 3 -31.168457178196213 -443.33135832741704 49.1148 0.2393 539 +541 3 -31.456141706749623 -441.8670762794358 49.4203 0.2391 540 +542 3 -31.268496692554585 -440.7868758340326 49.6048 0.239 541 +543 3 -30.687022849341492 -440.1331861085251 49.7325 0.2388 542 +544 3 -30.545694215662582 -438.93081157795876 49.8705 0.2386 543 +545 3 -30.471093294456026 -437.65617444891797 50.104 0.2384 544 +546 3 -30.43552472660237 -436.3398765719468 50.4431 0.2382 545 +547 3 -30.750828962915186 -434.9565480119055 50.9698 0.2379 546 +548 3 -31.25615529136458 -433.451030486214 51.5886 0.2377 547 +549 3 -31.763857620162735 -432.0891158187394 52.15 0.2376 548 +550 3 -32.14179100740842 -431.54955804389397 52.6579 0.2374 549 +551 3 -32.552517343963395 -430.915118056212 53.132 0.2372 550 +552 3 -33.00631061049851 -429.41768030209283 53.7079 0.237 551 +553 3 -33.4854030518401 -427.9300173817384 54.3864 0.2367 552 +554 3 -33.72698274073812 -426.51093063613587 54.959 0.2365 553 +555 3 -33.931175269603955 -425.0895043347465 55.4084 0.2364 554 +556 3 -34.40498255797886 -423.5804746871009 55.7696 0.2362 555 +557 3 -34.9845766307461 -422.03958730875144 56.1162 0.236 556 +558 3 -35.576916803945785 -421.8528169610993 56.4802 0.2358 557 +559 3 -36.17116404687803 -420.9280741884183 56.8198 0.2356 558 +560 3 -36.76603967956314 -419.39549729128134 57.1687 0.2354 559 +561 3 -37.59367338854404 -419.2797736799895 57.633 0.2352 560 +562 3 -38.6589509093982 -418.7840777147652 58.168 0.235 561 +563 3 -39.54724443117699 -417.3864832816125 58.6572 0.2348 562 +564 3 -40.611679328282484 -417.0022455353981 59.1394 0.2346 563 +565 3 -41.58834025660354 -416.96519063110986 59.9085 0.2344 564 +566 3 -42.10895055401728 -415.48831253307253 60.6066 0.2342 565 +567 3 -43.01411235475196 -415.78237524963833 61.278 0.234 566 +568 3 -44.06504233545295 -414.9642287467401 62.0763 0.2338 567 +569 3 -44.97069868438648 -413.7781582122706 63.0882 0.2336 568 +570 3 -45.61936254195329 -412.61570131379654 64.0105 0.2333 569 +571 3 -46.36062861820246 -412.5883722551733 64.7116 0.2332 570 +572 3 -47.05526758174203 -411.3340729806046 65.2848 0.233 571 +573 3 -47.290722187059835 -409.982679317814 65.7586 0.2328 572 +574 3 -46.89083105227928 -409.07742757248815 66.2402 0.2326 573 +575 3 -46.34558509407855 -408.0284867074203 66.8976 0.2323 574 +576 3 -45.88104069537093 -406.126659277484 67.6441 0.2321 575 +577 3 -45.386986932989025 -404.8420577360206 68.523 0.2319 576 +578 3 -44.883708915237584 -404.09024057546964 69.3767 0.2317 577 +579 3 -44.87049921169728 -402.8595726535526 70.0322 0.2315 578 +580 3 -45.045870028157246 -401.46210377360313 70.4757 0.2313 579 +581 3 -44.93002025973371 -400.2565956038683 70.7577 0.2311 580 +582 3 -44.683230987075156 -399.1574512686975 70.943 0.2309 581 +583 3 -44.61139999066212 -397.91013714229587 71.1158 0.2307 582 +584 3 -44.41134394741186 -396.7719131876345 71.3686 0.2306 583 +585 3 -43.92140656883522 -395.9450162888027 71.654 0.2304 584 +586 3 -43.286205070317905 -394.9822832051895 71.9132 0.2302 585 +587 3 -42.56398223350702 -392.88507607838505 72.142 0.23 586 +588 3 -41.729632193743214 -392.5854866582708 72.3834 0.2298 587 +589 3 -40.982450355684726 -390.81433853493223 72.7124 0.2296 588 +590 3 -40.50080321271305 -389.36938022188815 72.9686 0.2294 589 +591 3 -39.80914177922794 -388.819658081493 73.1598 0.2292 590 +592 3 -39.18557646504916 -388.1686824258244 73.3986 0.229 591 +593 3 -0.07321482160881976 -492.9810397846159 20.2958 0.5042 1 +594 3 0.4642213092226728 -494.31119598477403 18.9909 0.2482 593 +595 3 0.5202987260609306 -495.51471857715154 17.7524 0.2403 594 +596 3 -0.2079333530204317 -494.68430585457446 15.7058 0.2345 595 +597 3 3.08908762002796 -488.58024816332744 29.8015 0.6022 1 +598 3 4.149665209930515 -487.308355042893 30.844 0.5362 597 +599 3 5.19844134395463 -488.3656944216033 31.7638 0.5208 598 +600 3 6.119983001601467 -487.76072200226906 32.5987 0.5056 599 +601 3 6.901389032947136 -489.2363897336104 33.3046 0.4905 600 +602 3 7.613037628224875 -490.8083461890616 33.9251 0.4753 601 +603 3 8.420729912490991 -492.3404787461132 34.4882 0.46 602 +604 3 9.416559829856691 -491.7501383451147 35.03 0.4445 603 +605 3 10.508798534815519 -492.4077434851282 35.6821 0.4279 604 +606 3 11.623229027048733 -491.44182964393883 36.2614 0.4124 605 +607 3 12.738397109631453 -492.4217264855645 36.7002 0.3972 606 +608 3 13.845001869545765 -492.82448077459946 37.037 0.382 607 +609 3 14.984764772070491 -492.3354990297896 37.2982 0.3668 608 +610 3 16.124880852326648 -491.77328783749783 37.508 0.3657 609 +611 3 17.546991172508918 -491.6126903509155 37.4548 0.3433 610 +612 3 18.623913685013704 -491.96641176570193 37.6869 0.3379 611 +613 3 19.72995062475272 -490.92035113615873 38.0038 0.333 612 +614 3 20.43291505998078 -492.4797917944947 38.4412 0.328 613 +615 3 20.777223108194985 -493.91641614143197 39.0029 0.323 614 +616 3 21.476718756709523 -493.73624668069243 39.4685 0.3183 615 +617 3 22.332330861811048 -495.2401609695876 39.858 0.3136 616 +618 3 23.19707892784934 -496.65241218387416 40.1876 0.3089 617 +619 3 23.9232535694622 -496.578205296987 38.269 0.2368 618 +620 3 24.927455020195485 -494.6682553185632 38.078 0.2368 619 +621 3 25.868902688495016 -494.55288612788064 37.9873 0.2368 620 +622 3 26.706504871929997 -492.27396724175685 37.9562 0.2368 621 +623 3 27.749143521748373 -492.4162295810199 37.8686 0.2368 622 +624 3 28.867066417679002 -493.043502353883 37.518 0.2368 623 +625 3 29.94519814428474 -491.6659727003397 36.7732 0.2368 624 +626 3 30.967570200600797 -491.81749225421805 36.0954 0.2368 625 +627 3 32.01200159968843 -490.15223197386996 35.551 0.2368 626 +628 3 33.10540567615893 -490.5221942372196 35.0098 0.2368 627 +629 3 34.116201212392994 -489.7879259852255 34.4327 0.2368 628 +630 3 35.12335548091922 -491.07376924544224 34.0421 0.2368 629 +631 3 36.14502225936482 -492.4427187911284 33.7448 0.2368 630 +632 3 37.19675521808583 -491.8410408856063 33.5566 0.2368 631 +633 3 38.294418428195065 -492.7748592170021 33.509 0.2368 632 +634 3 39.38906155089472 -492.2133421989013 33.4939 0.2368 633 +635 3 40.451332681048726 -493.38935585051746 33.4216 0.2368 634 +636 3 41.57414140154601 -494.106686668227 33.3416 0.2368 635 +637 3 42.676569208077645 -493.7653801267649 33.262 0.2368 636 +638 3 43.61078787906301 -494.56658235199177 33.1635 0.2368 637 +639 3 44.7142634222754 -495.04174210377244 33.3124 0.2367 638 +640 3 45.785460689015224 -496.0532143986883 33.4331 0.2366 639 +641 3 46.913953606790656 -495.87945049270064 33.6053 0.2366 640 +642 3 48.05372882095146 -495.5674184688061 33.8246 0.2365 641 +643 3 49.15295063448039 -494.73110500453623 34.0749 0.2365 642 +644 3 50.18293078576271 -494.5219653722209 34.3644 0.2364 643 +645 3 51.288316713075105 -495.1046474267522 34.676 0.2364 644 +646 3 52.38031895212731 -494.7305936282552 34.9888 0.2363 645 +647 3 53.37335463517885 -495.6223851613657 35.2344 0.2363 646 +648 3 54.31242619701953 -495.6299852512033 35.362 0.2362 647 +649 3 55.330849349310476 -496.61209606121804 35.3856 0.2362 648 +650 3 56.35893763129509 -497.87187242075714 35.322 0.2361 649 +651 3 57.420205577579154 -497.66700617966495 35.0759 0.236 650 +652 3 58.52990640769987 -498.0552360535424 34.6472 0.236 651 +653 3 59.55873188927112 -497.58625199592586 34.2658 0.2359 652 +654 3 60.44703703014945 -498.9922015988488 33.9766 0.2359 653 +655 3 61.31311924356328 -499.2505100858689 33.7711 0.2358 654 +656 3 62.308205758176186 -499.8945581919865 33.6417 0.2358 655 +657 3 63.369506939945325 -501.1854450397425 33.5796 0.2357 656 +658 3 64.45582218190998 -501.0558365239054 33.5563 0.2357 657 +659 3 65.39363317012526 -501.86334568069293 33.5443 0.2356 658 +660 3 66.22840575936752 -502.68442433312424 33.5068 0.2356 659 +661 3 67.20488189505807 -502.8619565974698 33.4527 0.2355 660 +662 3 68.2557136610515 -504.15547559763115 33.4222 0.2355 661 +663 3 69.364227899745 -504.3727668709028 33.4331 0.2354 662 +664 3 70.50086218911494 -504.0222727840417 33.5409 0.2353 663 +665 3 71.52985125537917 -504.1108038362935 33.745 0.2353 664 +666 3 72.61050552628686 -504.5025064293928 33.9293 0.2352 665 +667 3 73.74326339010426 -505.4401284162269 34.0654 0.2352 666 +668 3 74.83981288999995 -504.9177775703842 34.1362 0.2351 667 +669 3 75.97096690505006 -505.57286029265396 34.1541 0.2351 668 +670 3 77.1074451209551 -504.22858862197927 34.2297 0.235 669 +671 3 78.14045986754527 -505.57490941511605 34.3496 0.235 670 +672 3 79.09213686957276 -507.07411161975347 34.41 0.2349 671 +673 3 79.90491169190928 -507.17155803889966 34.4238 0.2349 672 +674 3 80.84389495931705 -508.09625712660454 34.4448 0.2348 673 +675 3 81.97861295121638 -507.3544022995628 34.4722 0.2347 674 +676 3 83.05838246658897 -508.2869391979813 34.5472 0.2347 675 +677 3 83.92303982914785 -509.86118342667396 34.655 0.2346 676 +678 3 84.7396311999961 -510.69781831819455 34.7679 0.2346 677 +679 3 85.80483583963658 -510.61606649530074 34.8835 0.2345 678 +680 3 86.90945923386846 -510.3071826398047 34.9952 0.2345 679 +681 3 87.76712147799475 -510.9905762650883 35.1235 0.2344 680 +682 3 88.57309527927848 -511.9039720765555 35.2904 0.2344 681 +683 3 89.65129928355049 -511.70810445467606 35.532 0.2343 682 +684 3 90.54942832072257 -513.1335156165683 35.7798 0.2343 683 +685 3 91.4389306658394 -514.4718740593197 36.0234 0.2342 684 +686 3 92.46130691901621 -513.8429844592863 36.2746 0.2342 685 +687 3 93.22343343497357 -515.188033458986 36.5019 0.2341 686 +688 3 94.01886114514829 -515.2885046607344 36.7178 0.234 687 +689 3 95.04022229358208 -516.099636950232 36.9074 0.234 688 +690 3 95.93034551722354 -517.5830671532045 37.0583 0.2339 689 +691 3 96.61586634209222 -518.8206956743276 37.1907 0.2339 690 +692 3 97.38146543888274 -519.1223458599613 37.3411 0.2338 691 +693 3 98.33389436117945 -520.2833322959327 37.48 0.2338 692 +694 3 99.22736112450804 -520.063786539829 37.6149 0.2337 693 +695 3 99.97389493990615 -521.5466381303094 37.8683 0.2337 694 +696 3 100.63447458579284 -522.9472415149583 38.1646 0.2336 695 +697 3 101.35094703900855 -524.5799966928 38.4611 0.2336 696 +698 3 102.11240682754638 -524.44495394145 38.8161 0.2335 697 +699 3 102.89346648216709 -525.7139919553455 39.2241 0.2334 698 +700 3 103.93235983716676 -525.451887394107 39.6396 0.2334 699 +701 3 105.00882415051892 -526.2314051427886 39.998 0.2333 700 +702 3 105.75945893650302 -527.4573047122375 40.222 0.2333 701 +703 3 106.45411572230839 -529.0574141574332 40.4135 0.2332 702 +704 3 107.09976939505535 -529.2208606698395 40.5017 0.2332 703 +705 3 107.87334999585588 -530.2995333071257 40.5104 0.2331 704 +706 3 108.91902013939904 -531.669948353774 40.493 0.2331 705 +707 3 109.98944015237569 -531.9813285387244 40.4874 0.233 706 +708 3 110.98943261619324 -532.3627660045734 40.5065 0.233 707 +709 3 112.02005325608016 -532.5386628723119 40.5028 0.2329 708 +710 3 112.92835839065226 -533.2724306111585 40.458 0.2329 709 +711 3 113.97131407679777 -534.5543605049654 40.3105 0.2328 710 +712 3 114.91745294574801 -535.2255852478073 40.1209 0.2327 711 +713 3 115.43157436903869 -536.0950928585607 39.8275 0.2327 712 +714 3 116.13533216378583 -537.240785500346 39.5153 0.2326 713 +715 3 117.21969037925166 -538.3941463840343 39.2165 0.2326 714 +716 3 118.23466766927652 -537.9682176127657 39.0085 0.2325 715 +717 3 118.98837801006596 -539.2912727807972 38.8822 0.2325 716 +718 3 119.63194251358496 -540.5623726270294 38.8203 0.2324 717 +719 3 120.4910148878835 -540.3654762662919 38.8111 0.2324 718 +720 3 121.57535597362022 -541.5944618657248 38.8354 0.2323 719 +721 3 122.52177995718142 -543.1055046421468 38.9018 0.2323 720 +722 3 123.32434413857098 -542.8126737569489 39.0046 0.2322 721 +723 3 124.10763362266528 -544.2494445495867 39.0793 0.2322 722 +724 3 125.03726359355736 -544.4424173615275 39.1269 0.2321 723 +725 3 125.85233260906465 -545.2242346174307 39.144 0.232 724 +726 3 126.4476576335903 -546.8942062568353 39.1308 0.232 725 +727 3 127.26389031607735 -548.4765869854325 39.0886 0.2319 726 +728 3 128.21267076121174 -548.365916068948 39.0205 0.2319 727 +729 3 129.00521973675913 -549.5007059473668 38.9127 0.2318 728 +730 3 129.7310016381942 -551.1533810708838 38.7562 0.2318 729 +731 3 130.5279219782559 -552.2185518995548 38.5792 0.2317 730 +732 3 131.4055842160759 -552.2465295750023 38.3849 0.2317 731 +733 3 132.39327686971845 -553.3381562843299 38.1262 0.2316 732 +734 3 133.0956006035575 -553.2147278812976 37.8053 0.2316 733 +735 3 133.5900307647494 -554.8104653947879 37.5105 0.2315 734 +736 3 134.3558088594522 -556.4302385138357 37.3425 0.2314 735 +737 3 135.40849635333882 -557.3610898608042 37.2291 0.2314 736 +738 3 136.52580558019926 -556.2919850333637 37.0339 0.2313 737 +739 3 137.57922917839488 -556.2669748568786 36.7494 0.2313 738 +740 3 138.690953416995 -556.1758545113677 36.377 0.2312 739 +741 3 139.79430293165512 -556.2222043995747 35.994 0.2312 740 +742 3 140.91734881059574 -556.1208477290272 35.5622 0.2311 741 +743 3 142.04471609728444 -556.1294994891981 35.1627 0.2311 742 +744 3 143.18123675872755 -556.5553008746152 34.8768 0.231 743 +745 3 144.29258448670078 -555.7056687977341 34.6433 0.231 744 +746 3 145.42402461067215 -556.2311982843642 34.3969 0.2309 745 +747 3 146.50958723983092 -555.5763166492085 34.2073 0.2309 746 +748 3 147.49559085185643 -556.8551185091577 34.111 0.2308 747 +749 3 148.59409978729738 -557.5041453395299 34.1309 0.2307 748 +750 3 149.73715076211334 -556.8411831013619 34.2107 0.2307 749 +751 3 150.83087488750465 -557.0783505125288 34.3291 0.2306 750 +752 3 151.48226861568844 -558.6766892868233 34.5162 0.2306 751 +753 3 152.01673530841327 -559.6278584072711 34.6707 0.2305 752 +754 3 153.13240825023234 -559.853884744701 34.813 0.2305 753 +755 3 154.1207700403409 -559.7341716388107 34.9434 0.2304 754 +756 3 155.00497490316985 -560.7503016856449 35.0311 0.2304 755 +757 3 156.01089462410124 -561.3636024539028 35.0378 0.2303 756 +758 3 157.09988969092734 -561.2428537388224 34.9765 0.2302 757 +759 3 158.15760526748375 -561.2195401371825 34.9474 0.2302 758 +760 3 159.06842734673893 -562.2053251309491 34.9037 0.2301 759 +761 3 159.74641916102115 -563.5709205874052 34.823 0.2301 760 +762 3 160.47238006036855 -564.0237819126805 34.7427 0.23 761 +763 3 161.48083454824874 -564.3753838410898 34.6662 0.23 762 +764 3 162.6181811121594 -564.0147168186481 34.5836 0.2299 763 +765 3 163.75818356448877 -564.2634747246009 34.4862 0.2299 764 +766 3 164.8951758496833 -564.9487217534294 34.3543 0.2298 765 +767 3 165.98322908374297 -564.7428881307404 34.1214 0.2298 766 +768 3 166.92073754352953 -565.2639723968928 33.8618 0.2297 767 +769 3 167.9835716934508 -565.4096879465817 33.6297 0.2297 768 +770 3 169.1164178517011 -565.7295007372381 33.4158 0.2296 769 +771 3 170.21777028568584 -566.2775423707225 33.1884 0.2295 770 +772 3 171.31450188507682 -566.6645707337116 32.9386 0.2295 771 +773 3 172.44240134740932 -567.0626677447568 32.6763 0.2294 772 +774 3 173.53219149026435 -566.3084280010575 32.3607 0.2294 773 +775 3 174.49721544074293 -565.4641809418861 32.02 0.2293 774 +776 3 175.45288470963266 -564.6587459000228 31.7234 0.2293 775 +777 3 176.5353422536314 -564.5413057801633 31.4493 0.2292 776 +778 3 177.6683331680207 -564.4440101350465 31.2749 0.2292 777 +779 3 178.6987979472271 -563.7658804023451 31.1564 0.2291 778 +780 3 179.5631888337724 -562.3321254558289 31.0321 0.2291 779 +781 3 180.34138697762683 -561.8429089692479 30.8932 0.229 780 +782 3 181.07220878163753 -561.1575451634319 30.7597 0.229 781 +783 3 181.9020608247875 -559.5431477666214 30.508 0.2289 782 +784 3 182.50543552826073 -558.1426450465877 30.2893 0.2289 783 +785 3 43.61171438759952 -494.70877013957465 31.6593 0.2368 638 +786 3 43.116555029779505 -495.2753552781849 29.2944 0.2364 785 +787 3 44.09891106996353 -493.79191196560265 28.3746 0.2362 786 +788 3 45.12810205858756 -494.76238359263516 27.6228 0.236 787 +789 3 45.920369021107135 -496.18706426949325 26.9253 0.2358 788 +790 3 46.666798436316384 -497.3922749369906 26.2497 0.2356 789 +791 3 47.70809551652041 -496.7542493759771 25.4225 0.2353 790 +792 3 47.793682882895176 -497.5786011448751 24.3898 0.2351 791 +793 3 47.20956987254449 -498.5186224846035 23.5294 0.2349 792 +794 3 47.345518128315334 -499.58648999445154 22.6863 0.2347 793 +795 3 48.206683388950395 -500.77831057326677 21.6309 0.2344 794 +796 3 48.566884558879636 -501.7095215040091 20.2709 0.2342 795 +797 3 49.624466684644936 -500.99484181813347 19.2666 0.234 796 +798 3 50.58804466532037 -501.69968006504337 18.0869 0.2337 797 +799 3 51.4303452588606 -502.96539712974925 16.9849 0.2335 798 +800 3 52.10602025729841 -503.2581016041479 15.9736 0.2333 799 +801 3 52.392573253372504 -504.02701357555156 15.0419 0.2331 800 +802 3 52.55519658432688 -505.41586204745465 14.1767 0.2329 801 +803 3 52.86073577741362 -506.82831034750353 13.4571 0.2327 802 +804 3 53.43831735628619 -508.3448383417235 12.8955 0.2325 803 +805 3 54.124683906486595 -508.5427648428776 12.4755 0.2323 804 +806 3 54.61812388798137 -509.7740865579675 12.1648 0.2321 805 +807 3 55.000026103083954 -511.3805362775964 11.9226 0.2319 806 +808 3 55.84470539010822 -512.5670308104354 11.6178 0.2317 807 +809 3 56.977307180460755 -512.5252561878742 11.2795 0.2315 808 +810 3 57.464361604721645 -512.8649764828257 10.8637 0.2312 809 +811 3 58.143375040664935 -514.2582706614553 10.4725 0.231 810 +812 3 58.79922532621276 -515.2539269861936 10.102 0.2308 811 +813 3 59.69157597028129 -515.5603500780976 9.7274 0.2306 812 +814 3 60.77516134162903 -516.1920827715592 9.2956 0.2304 813 +815 3 61.84526100391119 -515.9420441518612 8.9075 0.2302 814 +816 3 62.872949158284946 -517.353460802427 8.6032 0.23 815 +817 3 63.8346406736179 -517.9934054031067 8.3656 0.2298 816 +818 3 64.7706366806532 -518.2589576030185 8.1845 0.2296 817 +819 3 65.84235181080217 -518.9510725548224 8.0487 0.2294 818 +820 3 66.90623771628634 -518.910923321292 7.9156 0.2292 819 +821 3 68.01697147341585 -519.7261686781173 7.2918 0.229 820 +822 3 23.76479987061908 -497.2716765683102 40.404 0.3089 618 +823 3 24.862218712830536 -496.3745461514199 40.9116 0.2749 822 +824 3 25.98644638279032 -496.7948378915586 41.3686 0.2574 823 +825 3 26.74906693753104 -495.0901587026047 41.9401 0.2574 824 +826 3 27.323067125736678 -496.64684306128515 42.5382 0.2574 825 +827 3 27.643847824564702 -498.2226670135931 42.7106 0.2574 826 +828 3 27.961828873145205 -499.7915637977334 42.8663 0.2574 827 +829 3 28.46156131703294 -501.4062078291722 43.1861 0.2574 828 +830 3 28.416237010702414 -502.7407726474798 43.596 0.2574 829 +831 3 28.7601815524624 -504.315893543792 43.9446 0.2574 830 +832 3 28.81348624469763 -505.1668758377105 44.5105 0.2574 831 +833 3 28.780261826780986 -506.45007006621034 45.4588 0.2572 832 +834 3 28.27599913996197 -507.20813591095487 46.1339 0.2569 833 +835 3 27.2952524414898 -507.06830352774733 46.7606 0.2567 834 +836 3 26.959464572726745 -508.11076755618564 47.5154 0.2565 835 +837 3 26.663201273479963 -509.26765026175065 48.3123 0.2563 836 +838 3 25.954553132704174 -511.22207312941106 49.0507 0.2561 837 +839 3 25.12597838446076 -511.94216188259566 49.7893 0.2559 838 +840 3 24.39138726590636 -512.9284990842733 50.5627 0.2557 839 +841 3 24.015643950588725 -514.8546207742668 51.2604 0.2555 840 +842 3 23.867038877985916 -516.4030180038718 51.9372 0.2553 841 +843 3 23.70292870672016 -517.9083589603543 52.4905 0.2552 842 +844 3 23.596211797650277 -519.1976095540208 52.9516 0.255 843 +845 3 23.91485647206711 -520.214411346494 53.4321 0.2548 844 +846 3 24.29528698113165 -520.8693179382077 53.8437 0.2546 845 +847 3 24.393303903342066 -521.9400100242652 54.2055 0.2544 846 +848 3 23.4662797579925 -523.7411003565932 54.6314 0.2542 847 +849 3 22.44434747501597 -523.5317348993751 55.0413 0.2541 848 +850 3 21.939524177476105 -524.5752560638729 55.4764 0.2539 849 +851 3 21.81185922680171 -525.8638846954918 55.9443 0.2537 850 +852 3 21.69757496947877 -527.1725653282613 56.3427 0.2535 851 +853 3 21.454963342739564 -528.3406788656387 56.6829 0.2533 852 +854 3 20.877872483140305 -529.7120070874976 56.9545 0.2531 853 +855 3 20.282462153947915 -531.4456434909558 57.1586 0.2529 854 +856 3 20.01668668427675 -532.599748771773 57.29 0.2528 855 +857 3 20.01649175858723 -534.0031741836829 57.3658 0.2526 856 +858 3 20.096760132963 -535.4623063418447 57.4143 0.2524 857 +859 3 19.914074818858513 -536.700720651698 57.454 0.2522 858 +860 3 19.514686134267816 -537.7079084535366 57.4848 0.252 859 +861 3 19.327776319060884 -539.0044444472455 57.4893 0.2518 860 +862 3 19.257417028685953 -540.3988716309409 57.4683 0.2516 861 +863 3 19.09950551475068 -541.7807747465315 57.4154 0.2515 862 +864 3 18.884079617149638 -543.486017780343 57.3185 0.2513 863 +865 3 18.66928210930144 -545.2650168111445 57.1802 0.2511 864 +866 3 18.421236057137232 -547.00698920133 57.0074 0.2509 865 +867 3 18.031647651856286 -548.3113018520878 56.7904 0.2507 866 +868 3 17.551866139367394 -549.224139451625 56.5748 0.2505 867 +869 3 17.180368249001038 -550.3083444279048 56.4292 0.2503 868 +870 3 17.02077010249524 -551.7000030243474 56.3508 0.2502 869 +871 3 17.135292205655375 -553.0790131147644 56.3184 0.25 870 +872 3 17.485437813792316 -554.630315837494 56.3259 0.2498 871 +873 3 18.08355086946588 -556.277344601475 56.3623 0.2496 872 +874 3 19.03816207351655 -555.8142471931031 56.3926 0.2494 873 +875 3 20.106134921440614 -556.8877105894526 56.3982 0.2492 874 +876 3 21.110751321434975 -557.0034504577875 56.3774 0.2491 875 +877 3 21.942268665423 -558.4470461966326 56.3192 0.2489 876 +878 3 22.411255197443005 -559.612097198536 56.222 0.2487 877 +879 3 22.429993410416806 -560.9928370066925 56.1084 0.2485 878 +880 3 22.20204967452528 -562.4094014449367 55.998 0.2483 879 +881 3 21.948486413132766 -563.8323113597271 55.8922 0.2481 880 +882 3 21.783095152840808 -565.2525745208295 55.7729 0.2479 881 +883 3 21.804639219228292 -566.6558525137793 55.6438 0.2477 882 +884 3 21.886473104704635 -568.0413460312463 55.5285 0.2476 883 +885 3 21.77146665256631 -569.467117220114 55.4347 0.2474 884 +886 3 21.51006254740946 -570.7995256473916 55.349 0.2472 885 +887 3 21.341240145533984 -572.0805895685663 55.2574 0.247 886 +888 3 21.40444342077585 -573.5585307220141 55.1737 0.2468 887 +889 3 21.432761475897234 -575.0026573717244 55.1065 0.2466 888 +890 3 21.293343013534056 -576.3189193317563 55.0292 0.2465 889 +891 3 21.068563126880775 -577.5513950066253 54.9248 0.2463 890 +892 3 20.60735675723066 -578.4921604607547 54.8338 0.2461 891 +893 3 20.023993666550727 -580.0255516577438 54.7865 0.2459 892 +894 3 19.91400748408049 -581.4409220148408 54.7753 0.2457 893 +895 3 20.49394483198964 -582.1826189361873 54.7694 0.2455 894 +896 3 21.280665457667297 -583.832691994972 54.7114 0.2453 895 +897 3 21.4270701073561 -585.3101394368439 54.5992 0.2451 896 +898 3 21.383308903079666 -586.7133540044113 54.4891 0.2449 897 +899 3 21.63723594987234 -588.0122529732821 54.3931 0.2447 898 +900 3 21.49358678324048 -589.480892114152 54.3054 0.2445 899 +901 3 21.4162714046362 -590.919362675467 54.2206 0.2443 900 +902 3 21.67879431704564 -592.1653487753742 54.1058 0.2442 901 +903 3 22.01869335561541 -593.3241438582523 53.996 0.244 902 +904 3 22.027628880232985 -594.7244363350599 53.9092 0.2438 903 +905 3 22.08241838935341 -596.1124981072136 53.8084 0.2436 904 +906 3 22.358393159818018 -597.6844126490262 53.7306 0.2434 905 +907 3 22.505617508808104 -599.2168649702272 53.7076 0.2432 906 +908 3 22.817899248664865 -600.4392238080047 53.7471 0.243 907 +909 3 22.838955585545197 -601.830683396651 53.8975 0.2428 908 +910 3 22.896277452567915 -603.1941663502221 54.145 0.2427 909 +911 3 23.22758062552093 -604.407042223354 54.3936 0.2425 910 +912 3 23.620666531538447 -605.4828244560445 54.63 0.2423 911 +913 3 24.141551017000047 -606.5581581859909 54.8738 0.2421 912 +914 3 24.462692813235765 -607.9834598324272 55.1821 0.2419 913 +915 3 24.725127431212286 -609.2237079342772 55.4828 0.2417 914 +916 3 25.06524380536104 -610.4713163863814 55.8373 0.2416 915 +917 3 25.7997735380063 -611.0791982011194 56.425 0.2414 916 +918 3 26.609685340708445 -612.2098595711034 57.0545 0.2412 917 +919 3 26.99532983803583 -613.8338150952675 57.6064 0.241 918 +920 3 27.445242571147027 -615.2672079876613 58.2232 0.2408 919 +921 3 28.098988966784212 -616.2215930400887 58.9207 0.2406 920 +922 3 28.844267719186583 -617.0529318862153 59.6434 0.2404 921 +923 3 29.469195504000965 -617.801402319131 60.368 0.2402 922 +924 3 29.678680412973076 -619.0012164059079 61.1792 0.24 923 +925 3 29.521205979242172 -620.4067244181706 61.9562 0.2398 924 +926 3 29.371663785291652 -621.8163767015797 62.61 0.2396 925 +927 3 29.49273022997069 -623.1326481903689 63.2047 0.2395 926 +928 3 30.020464686963034 -624.4693511534562 63.7879 0.2393 927 +929 3 30.644638142461638 -625.4096595846939 64.3471 0.2391 928 +930 3 31.161203629221703 -626.1373632528787 64.8276 0.2389 929 +931 3 31.80587263290123 -627.3290029103609 65.3092 0.2387 930 +932 3 32.667653953967914 -628.06579981509 65.9296 0.2385 931 +933 3 33.557148787856505 -629.0410209739772 66.5862 0.2383 932 +934 3 34.44495458012808 -630.0299518379971 67.1933 0.2381 933 +935 3 35.2788276931527 -631.4543736598089 67.7513 0.238 934 +936 3 35.919974851769325 -631.9940396256171 68.2514 0.2378 935 +937 3 36.595154609471756 -632.6387172767011 68.8064 0.2376 936 +938 3 37.567053350416884 -633.6403348924757 69.55 0.2374 937 +939 3 38.55108211367782 -633.989570145936 70.2117 0.2372 938 +940 3 39.367047503819684 -635.0389817335207 70.7868 0.237 939 +941 3 40.365423807233796 -636.3180353699564 71.3205 0.2368 940 +942 3 39.82041330865144 -636.7823231478255 72.1179 0.2366 941 +943 3 39.45269293659353 -637.8288053955793 72.5838 0.2363 942 +944 3 40.00794167718324 -639.4317942731857 73.0075 0.2361 943 +945 3 40.759151794570826 -640.4343749323235 73.5272 0.236 944 +946 3 41.2693895828544 -640.6672043860146 74.0328 0.2358 945 +947 3 41.7394015306551 -642.2737209047468 74.6278 0.2356 946 +948 3 42.297741239269484 -643.9563792795866 75.2321 0.2354 947 +949 3 42.7350625603399 -645.0416862344705 75.7014 0.2352 948 +950 3 43.030855225002824 -646.042190837125 76.0402 0.2351 949 +951 3 43.45659652166709 -647.3591864839567 76.2308 0.2349 950 +952 3 43.864029967837794 -648.6890781513437 76.3661 0.2347 951 +953 3 44.28175142282535 -650.1759752629346 76.5237 0.2345 952 +954 3 44.835916587103426 -650.8058165614208 76.7617 0.2344 953 +955 3 45.22753078708284 -651.9217749433492 77.1134 0.2342 954 +956 3 45.35185247701618 -653.3130207018901 77.5356 0.234 955 +957 3 44.85927421479206 -654.6158849453172 78.1211 0.2338 956 +958 3 44.669361725993326 -656.1513461935033 78.6895 0.2337 957 +959 3 45.135545506182844 -657.1406395246535 79.347 0.2335 958 +960 3 45.52677088389916 -658.374376380493 80.4619 0.2333 959 +961 3 45.680157647847786 -659.6830549163931 81.6346 0.233 960 +962 3 46.00643093263174 -661.1947733577305 82.7492 0.2329 961 +963 3 46.153284281624465 -662.6813378122592 83.5817 0.2327 962 +964 3 46.25545902688994 -664.1824716774098 84.2856 0.2325 963 +965 3 46.593970859734874 -665.8168668472797 84.8243 0.2323 964 +966 3 47.07329845892119 -667.5182379090743 85.1987 0.2322 965 +967 3 47.717518763296624 -667.8370377496251 85.5201 0.232 966 +968 3 48.00613661907807 -668.9215168959661 85.827 0.2318 967 +969 3 47.907834168666184 -670.3313544448046 86.0121 0.2316 968 +970 3 47.952462301069154 -671.7831640124083 86.1112 0.2314 969 +971 3 47.584433889952926 -673.3061218008434 86.1504 0.2313 970 +972 3 47.209317247878154 -675.1517695953264 86.1381 0.2311 971 +973 3 46.975045813510086 -676.926084466651 86.018 0.2309 972 +974 3 47.019406653568005 -678.2339330751162 85.8724 0.2307 973 +975 3 47.1656086883605 -679.3812376505304 85.7354 0.2306 974 +976 3 47.60591796233989 -679.9627085811156 85.6061 0.2304 975 +977 3 47.98796083768817 -681.4756210828715 85.4493 0.2302 976 +978 3 48.095400220519416 -682.9880923825604 85.2006 0.23 977 +979 3 48.10412081860456 -684.4737059192572 84.9993 0.2298 978 +980 3 47.92727857505248 -685.8006974941301 84.8484 0.2297 979 +981 3 47.763400460048324 -687.1717525600199 84.6737 0.2295 980 +982 3 47.551138411685564 -688.514765605844 84.5516 0.2293 981 +983 3 47.87909873748807 -690.092755031301 84.5614 0.2291 982 +984 3 48.47758761125194 -691.7352013585452 84.698 0.229 983 +985 3 41.22086302859994 -635.47709757422 72.3064 0.2366 941 +986 3 42.30760503973144 -636.0854622083923 72.8062 0.2362 985 +987 3 43.364257857150776 -635.1232719641528 73.0556 0.236 986 +988 3 44.33811213855412 -634.5147077046396 73.3379 0.2357 987 +989 3 45.28139330283605 -633.2022787811208 73.7856 0.2355 988 +990 3 46.3075956340362 -632.9178224123857 74.5688 0.2352 989 +991 3 47.201699683418994 -634.2184658735683 75.3564 0.2349 990 +992 3 47.92136742783682 -635.802336905857 76.1146 0.2347 991 +993 3 48.904313609096334 -635.4371992380003 77.1476 0.2344 992 +994 3 49.951231925639405 -635.4438303229123 78.1071 0.2342 993 +995 3 50.90144673345546 -635.0393463470043 79.0754 0.2339 994 +996 3 51.422964710851616 -636.1312953522047 80.218 0.2337 995 +997 3 52.102667798661756 -637.6662944825739 81.2812 0.2334 996 +998 3 52.795907937376846 -639.2471068920255 82.2954 0.2332 997 +999 3 53.57624059677413 -639.8365980678641 83.4868 0.2329 998 +1000 3 54.525553927773956 -639.8582291292739 84.5522 0.2327 999 +1001 3 55.41538041770497 -640.7639143371969 85.4997 0.2325 1000 +1002 3 56.24309010948263 -640.7126009450379 86.3652 0.2322 1001 +1003 3 56.97205809206675 -642.2921295701609 87.2637 0.232 1002 +1004 3 57.53550567224541 -643.7362165467925 88.2675 0.2318 1003 +1005 3 58.09320157788771 -644.8796886587917 89.2875 0.2315 1004 +1006 3 58.65152587328282 -645.6553172603767 90.3028 0.2313 1005 +1007 3 59.19688844917651 -646.5044720033259 91.4396 0.2311 1006 +1008 3 59.55048401547283 -647.8923984367059 92.9802 0.2308 1007 +1009 3 59.78366014261279 -649.1876488595956 94.7142 0.2305 1008 +1010 3 60.427925603346445 -649.9384414612323 96.0411 0.2302 1009 +1011 3 61.260079540852054 -650.0109289979325 97.0589 0.23 1010 +1012 3 61.936936721071966 -651.6449106447396 97.8673 0.2298 1011 +1013 3 62.817386297503305 -652.6395440249348 98.5424 0.2295 1012 +1014 3 63.591198054387135 -651.922013262897 99.3118 0.2293 1013 +1015 3 64.30856769856898 -650.6992041375934 100.9646 0.229 1014 +1016 3 29.04663585407674 -504.7423425124759 44.3302 0.2572 831 +1017 3 29.916815936493503 -504.4935471450136 44.602 0.2566 1016 +1018 3 30.730243458103434 -505.8826317085559 44.7874 0.2562 1017 +1019 3 31.238789103186857 -506.81157064055617 44.9064 0.2559 1018 +1020 3 31.610929376646407 -507.4747063021988 45.0052 0.2555 1019 +1021 3 32.45256255023061 -508.41347044832224 45.1248 0.2551 1020 +1022 3 33.58496241822346 -507.7681620053571 45.2413 0.2548 1021 +1023 3 34.45696809463146 -508.7292940932973 45.3348 0.2544 1022 +1024 3 34.92760912472157 -510.2835008198194 45.3488 0.254 1023 +1025 3 35.410761789936025 -511.9004524295466 45.2861 0.2537 1024 +1026 3 36.180100067368315 -513.1559070492026 45.1752 0.2533 1025 +1027 3 37.16646477680153 -513.1480095030665 44.9982 0.253 1026 +1028 3 38.09537496192477 -514.1098733877607 44.7804 0.2526 1027 +1029 3 38.901375795527336 -514.1828415280481 44.5729 0.2522 1028 +1030 3 39.574381883688574 -515.6573663634624 44.3864 0.2519 1029 +1031 3 39.969644560830375 -517.1050088056946 44.1543 0.2515 1030 +1032 3 40.07820006292165 -518.5483609755871 43.857 0.2511 1031 +1033 3 40.090263508157335 -519.9415137866793 43.5736 0.2508 1032 +1034 3 39.99036271960776 -521.2648975843749 43.3415 0.2504 1033 +1035 3 39.667645788627816 -522.505899396336 43.1598 0.2501 1034 +1036 3 39.38004303244677 -523.7751482524544 43.0248 0.2497 1035 +1037 3 39.59117692885936 -525.1474694015951 42.9318 0.2494 1036 +1038 3 40.05398021676821 -526.5825827149151 42.8056 0.249 1037 +1039 3 40.792675597448344 -528.1694454701462 42.5569 0.2486 1038 +1040 3 41.27070738692578 -529.0591146567918 42.5074 0.2482 1039 +1041 3 41.45089895974061 -530.1708994254565 42.5379 0.2478 1040 +1042 3 41.36253744888395 -531.6553417186286 42.5342 0.2475 1041 +1043 3 41.39242411668906 -532.9860957178755 42.5407 0.2471 1042 +1044 3 42.09839122550886 -534.1309423337382 42.5701 0.2471 1043 +1045 3 42.989229416826205 -534.9202870050839 42.5499 0.2471 1044 +1046 3 43.97390508464231 -535.0775524950011 42.534 0.2471 1045 +1047 3 44.86341223016709 -536.3500671457573 42.5228 0.2471 1046 +1048 3 45.495978243849606 -537.766819855077 42.5079 0.2471 1047 +1049 3 46.20158425526178 -538.8094845447622 42.4872 0.2471 1048 +1050 3 47.072789753459226 -539.031777835424 42.4578 0.2471 1049 +1051 3 48.06837561667882 -539.8874665110656 42.4175 0.2471 1050 +1052 3 48.65378742650458 -540.6037314959185 42.2901 0.2471 1051 +1053 3 49.321631892215585 -542.270314480009 42.1658 0.2469 1052 +1054 3 50.38955168179037 -543.0699039025902 42.0039 0.2467 1053 +1055 3 51.50928484748233 -542.9703582908827 41.8242 0.2466 1054 +1056 3 52.51100779216663 -543.4823285265677 41.58 0.2465 1055 +1057 3 53.3648394596352 -544.0285287092092 41.174 0.2464 1056 +1058 3 54.37492552113804 -544.8842366104145 40.7425 0.2462 1057 +1059 3 55.481518661952876 -545.6957456531143 40.3292 0.2461 1058 +1060 3 56.515951363695216 -545.707075505646 39.8014 0.246 1059 +1061 3 57.314187336330114 -546.6153370847977 39.3184 0.2459 1060 +1062 3 57.80669639964335 -547.8560945016555 38.9494 0.2457 1061 +1063 3 58.59446846713217 -548.0043171298655 38.6697 0.2456 1062 +1064 3 59.68738690368326 -549.0283324662151 38.4675 0.2455 1063 +1065 3 60.80635783806834 -548.167031732131 38.3314 0.2454 1064 +1066 3 61.77578648951359 -549.2755017819675 38.2466 0.2452 1065 +1067 3 62.54049842172253 -550.823092321891 38.192 0.2451 1066 +1068 3 63.41815755795944 -550.9357546004608 38.0971 0.245 1067 +1069 3 64.42718366013467 -551.8103196172879 37.8969 0.2449 1068 +1070 3 65.35071419469227 -552.4505951080587 37.6538 0.2448 1069 +1071 3 66.0726155627033 -553.2146356758958 37.3887 0.2446 1070 +1072 3 66.7088300535482 -554.5191880867184 37.1017 0.2445 1071 +1073 3 67.5669122481497 -556.0357575410517 36.7665 0.2444 1072 +1074 3 68.64271052661898 -555.3002801157315 36.3885 0.2443 1073 +1075 3 69.5257363092489 -556.6608373266512 36.0598 0.2441 1074 +1076 3 70.28394085253251 -557.4280836088171 35.7622 0.244 1075 +1077 3 71.2295543468455 -558.18835023411 35.448 0.2439 1076 +1078 3 72.27316444877435 -558.9642923665199 35.175 0.2438 1077 +1079 3 73.33457684942374 -559.2445298124172 34.9877 0.2437 1078 +1080 3 74.33714311039334 -559.5659004797606 34.834 0.2435 1079 +1081 3 75.42044577617659 -559.4152778794337 34.7446 0.2434 1080 +1082 3 76.55223227687294 -559.287007426102 34.7707 0.2433 1081 +1083 3 77.66016018058866 -560.2242916523818 34.804 0.2432 1082 +1084 3 78.56154066889529 -560.542285062015 34.7712 0.243 1083 +1085 3 79.5614561436278 -560.9305840205693 34.69 0.2429 1084 +1086 3 80.68048424423355 -560.5287074783705 34.6237 0.2428 1085 +1087 3 81.72824286446813 -561.3297828674982 34.5909 0.2427 1086 +1088 3 82.8122430841094 -562.6015142464805 34.6262 0.2425 1087 +1089 3 83.82126298311846 -562.5789348115791 34.7544 0.2424 1088 +1090 3 84.52464467568663 -563.5549141177872 34.9286 0.2423 1089 +1091 3 85.30133365832955 -564.5525918381022 35.1422 0.2422 1090 +1092 3 86.3588802462377 -564.5537940129807 35.3427 0.242 1091 +1093 3 87.49017561407001 -564.3624793080223 35.4295 0.2419 1092 +1094 3 88.41624470969609 -565.0309530618915 35.4298 0.2418 1093 +1095 3 89.29728572328676 -566.4433976415169 35.3948 0.2417 1094 +1096 3 90.44069710297381 -566.4642633184617 35.341 0.2415 1095 +1097 3 91.57190006850183 -566.3168951922397 35.2834 0.2414 1096 +1098 3 92.57941302538923 -566.3085596321637 35.2304 0.2413 1097 +1099 3 93.43209333751415 -567.4193593969783 35.1826 0.2412 1098 +1100 3 94.28490028173859 -568.577293732519 35.0986 0.241 1099 +1101 3 94.97919597013625 -570.1790298250796 34.9969 0.2409 1100 +1102 3 95.58703573136933 -570.8127079031497 34.9079 0.2408 1101 +1103 3 96.19910309528788 -572.3663483827366 34.8348 0.2407 1102 +1104 3 96.9067623473079 -573.0875470705763 34.7763 0.2405 1103 +1105 3 97.67232000484867 -573.5629558382141 34.7304 0.2404 1104 +1106 3 97.98195775947495 -575.1533536623901 34.6948 0.2403 1105 +1107 3 97.69106452195604 -576.3316717819522 34.6632 0.2402 1106 +1108 3 97.63660115310572 -577.7090029027911 34.6147 0.2401 1107 +1109 3 98.05218107305268 -579.3783505188204 34.5005 0.2399 1108 +1110 3 98.59106467741287 -580.4263060294227 34.4142 0.2398 1109 +1111 3 98.8759933093188 -581.7234268161258 34.393 0.2397 1110 +1112 3 98.86568937272472 -583.1510739729017 34.3706 0.2396 1111 +1113 3 98.81653138815334 -584.5305052053051 34.279 0.2394 1112 +1114 3 99.11343466144677 -586.1450372062342 34.0581 0.2393 1113 +1115 3 99.33100788366409 -587.7232383106962 33.9226 0.2392 1114 +1116 3 99.34578888788059 -589.172350792153 33.8425 0.2391 1115 +1117 3 99.31387259130895 -590.5866135780326 33.7862 0.2389 1116 +1118 3 99.1695036389083 -591.8843311971116 33.6916 0.2388 1117 +1119 3 98.66567052106552 -592.7721812676803 33.5698 0.2387 1118 +1120 3 98.18731075784854 -593.9935917066772 33.4586 0.2386 1119 +1121 3 98.20680330013818 -595.3385465086488 33.3805 0.2384 1120 +1122 3 98.73926781000591 -596.7772930118501 33.3609 0.2383 1121 +1123 3 99.43084904100594 -597.9202127611019 33.3917 0.2382 1122 +1124 3 99.87960731719036 -598.6083351782652 33.4348 0.2381 1123 +1125 3 99.73313757646208 -600.0140190391236 33.4603 0.2379 1124 +1126 3 99.3897039676027 -601.8389493170147 33.455 0.2378 1125 +1127 3 99.32549578683853 -603.2496579032091 33.4132 0.2377 1126 +1128 3 99.75465350440355 -603.9446650149691 33.3326 0.2376 1127 +1129 3 100.61190779593903 -604.9215063805403 33.1775 0.2374 1128 +1130 3 101.63420296413749 -605.3910414425364 32.9778 0.2373 1129 +1131 3 102.59273063023224 -606.8475613483918 32.7687 0.2372 1130 +1132 3 102.89688571917715 -607.9009593443934 32.4148 0.2371 1131 +1133 3 102.53874278022035 -609.4285315301884 32.023 0.2369 1132 +1134 3 102.7461960649701 -610.6458538193806 31.6907 0.2368 1133 +1135 3 103.13258427880207 -611.7617141782592 31.2998 0.2366 1134 +1136 3 103.04617058439118 -613.1627831441165 31.0968 0.2363 1135 +1137 3 103.00605785727713 -614.5574304748421 30.8557 0.2361 1136 +1138 3 103.46092890540564 -616.0514293345897 30.6289 0.2359 1137 +1139 3 103.62200454752521 -617.3570586150388 30.4214 0.2357 1138 +1140 3 103.15862381579734 -618.5691264793411 30.2882 0.2356 1139 +1141 3 102.65870715999873 -619.8869746664429 30.1952 0.2354 1140 +1142 3 102.57845929588123 -621.3181696823797 30.0297 0.2352 1141 +1143 3 102.63635718684402 -622.637329519765 29.7203 0.235 1142 +1144 3 102.4066744525693 -624.1669184282572 29.3905 0.2348 1143 +1145 3 101.96783856633209 -625.7799442820915 29.09 0.2346 1144 +1146 3 101.02719208253157 -625.9984467700557 28.7745 0.2344 1145 +1147 3 100.39140294097456 -626.960840114552 28.4222 0.2342 1146 +1148 3 100.28730978582287 -628.3723700043445 28.0837 0.234 1147 +1149 3 100.58376917790531 -629.6585213140784 27.7143 0.2339 1148 +1150 3 101.23863479438572 -631.3235054904841 27.2294 0.2337 1149 +1151 3 102.20151531019239 -631.8364357523635 26.5782 0.2335 1150 +1152 3 103.22551013281915 -632.2577573312601 25.8896 0.2333 1151 +1153 3 104.33269601885524 -631.8181813799763 25.3241 0.2331 1152 +1154 3 105.41926865057546 -632.7620487396753 24.821 0.2329 1153 +1155 3 106.50835891951532 -633.3433066021643 24.326 0.2327 1154 +1156 3 107.62088852749706 -632.9853787082322 23.8381 0.2325 1155 +1157 3 108.29176810307395 -633.703670688171 23.4048 0.2324 1156 +1158 3 108.63740409549746 -635.1110286666312 23.0029 0.2322 1157 +1159 3 109.42855493875696 -635.6388292267925 22.7032 0.232 1158 +1160 3 110.24773964553293 -636.9043694042839 22.4678 0.2318 1159 +1161 3 110.94804027266616 -638.3082815213018 22.2212 0.2316 1160 +1162 3 111.5984616434186 -639.6125083078116 21.9364 0.2314 1161 +1163 3 112.23588054795643 -640.756201211687 21.6476 0.2312 1162 +1164 3 113.04846475328111 -641.461687571846 21.3788 0.231 1163 +1165 3 113.89379505273196 -642.8053480988889 21.1327 0.2309 1164 +1166 3 114.65863361704052 -642.6550572940566 20.9262 0.2307 1165 +1167 3 115.34571995300979 -644.3294737402406 20.7623 0.2305 1166 +1168 3 115.65121839938334 -645.6949827676624 20.6769 0.2303 1167 +1169 3 115.56971375576013 -647.1044911022 20.7098 0.2301 1168 +1170 3 115.44117025271692 -648.5137039162579 20.8716 0.2299 1169 +1171 3 115.72800526181888 -649.6253709398136 21.2591 0.2297 1170 +1172 3 115.93844029631144 -650.5653229067713 21.6486 0.2295 1171 +1173 3 116.1286987482446 -651.6667554479162 22.1431 0.2293 1172 +1174 3 116.12524857730082 -653.0053305220313 22.6044 0.2292 1173 +1175 3 116.56469602019263 -654.3347567007202 23.5584 0.229 1174 +1176 3 103.646200865684 -610.1258596235307 30.3719 0.2362 1134 +1177 3 104.66988315061803 -609.6110898274156 29.5795 0.2351 1176 +1178 3 105.68579446040754 -610.0647065473811 29.0875 0.2344 1177 +1179 3 106.59688452454448 -611.5964130853782 28.5432 0.2337 1178 +1180 3 106.95291905212862 -612.771860202226 27.8145 0.233 1179 +1181 3 107.16788903582854 -613.9835514583178 26.9002 0.2322 1180 +1182 3 108.0383144804533 -614.3916853041874 25.8542 0.2315 1181 +1183 3 108.9436398658811 -614.7584432430453 24.884 0.2308 1182 +1184 3 109.66263167282635 -615.805420997206 24.0045 0.2301 1183 +1185 3 109.80494527220372 -616.8377881762224 22.4367 0.2295 1184 +1186 3 49.11948929473275 -538.950801698682 40.8265 0.2467 1051 +1187 3 50.11593309395292 -538.9548153659423 40.0296 0.2461 1186 +1188 3 51.21554813938998 -538.8679130440012 39.5276 0.2457 1187 +1189 3 52.31575672925925 -538.4607402357383 39.0146 0.2454 1188 +1190 3 53.37716912990869 -538.6551457628457 38.472 0.245 1189 +1191 3 54.461444153123296 -539.0357096383608 37.8549 0.2446 1190 +1192 3 55.55990343357173 -539.6001675137045 37.1157 0.2442 1191 +1193 3 56.65474637135823 -539.0606371417682 36.3079 0.2438 1192 +1194 3 57.71336353140518 -539.3600895762953 35.476 0.2435 1193 +1195 3 58.53624015519184 -539.5931081150529 34.4893 0.2431 1194 +1196 3 58.782102505723316 -540.471929373154 33.3654 0.2426 1195 +1197 3 59.254710482586844 -541.9005159577433 32.1919 0.2422 1196 +1198 3 60.1827465249864 -542.8621484676744 31.269 0.2419 1197 +1199 3 60.50382364377315 -543.6998295197493 30.3906 0.2415 1198 +1200 3 60.883715774027614 -544.5638185135467 29.5977 0.2411 1199 +1201 3 61.09779859314601 -545.8908139241767 28.8585 0.2407 1200 +1202 3 60.83731378707113 -547.2114087649971 28.1392 0.2403 1201 +1203 3 60.70653324509976 -548.3987346954542 27.2472 0.2399 1202 +1204 3 61.23881565547219 -549.6398955243081 26.6805 0.2395 1203 +1205 3 61.65796126877818 -551.2478376967769 26.1939 0.2391 1204 +1206 3 61.690903260076446 -552.6610584684354 25.8129 0.2388 1205 +1207 3 61.40601806287613 -553.8186861044007 25.5862 0.2384 1206 +1208 3 61.145547977483915 -554.998433748803 25.496 0.238 1207 +1209 3 61.066410721996874 -556.3873309389905 25.4948 0.2376 1208 +1210 3 61.05053721036171 -557.8115907911299 25.493 0.2372 1209 +1211 3 61.1655087053624 -559.2926996219041 25.4733 0.2369 1210 +1212 3 61.33496287751975 -560.8317645178635 25.4142 0.2365 1211 +1213 3 61.22610443340916 -562.141416346613 25.2902 0.2361 1212 +1214 3 60.825641068808196 -563.2927791407621 25.0858 0.2357 1213 +1215 3 60.5112112718501 -564.6947095568596 24.7933 0.2354 1214 +1216 3 60.52295436639128 -566.0593599323121 24.3822 0.235 1215 +1217 3 60.97584884924524 -567.304311522392 23.9279 0.2346 1216 +1218 3 61.61607601624334 -568.9687876424622 23.5437 0.2342 1217 +1219 3 62.206850678342406 -570.4841752158719 23.1983 0.2338 1218 +1220 3 62.88375850786507 -570.730133621 22.7765 0.2334 1219 +1221 3 63.6279413723196 -571.7901036174653 22.2748 0.233 1220 +1222 3 64.3901914187934 -573.3783042282107 21.7153 0.2327 1221 +1223 3 65.31259662403781 -573.5999793062658 21.1081 0.2323 1222 +1224 3 66.11370892225356 -574.2971840973036 20.3202 0.2318 1223 +1225 3 67.14004410069761 -575.458614308053 19.5128 0.2314 1224 +1226 3 68.24381356583295 -574.4033619240369 18.9252 0.2311 1225 +1227 3 69.29034816229462 -574.7283397683346 18.4673 0.2307 1226 +1228 3 70.4064934204017 -574.5153643596167 18.0972 0.2303 1227 +1229 3 71.30235188138703 -575.2885097202574 17.6695 0.2299 1228 +1230 3 72.41433559933058 -576.3161254739514 17.3246 0.2295 1229 +1231 3 73.53902807435013 -575.0094610373609 16.8274 0.2292 1230 +1232 3 41.33886734452164 -533.9143042843832 41.7738 0.2398 1043 +1233 3 41.364224165301145 -535.1838915445802 40.9259 0.2368 1232 +1234 3 41.588736346018656 -536.2260457751935 40.5244 0.2368 1233 +1235 3 41.8624812870097 -537.802500615524 40.1635 0.2368 1234 +1236 3 42.257261745273844 -539.4071178385193 39.6234 0.2368 1235 +1237 3 42.59176400354868 -540.7676331421658 39.1073 0.2368 1236 +1238 3 42.7684330387641 -541.9903810399704 38.67 0.2368 1237 +1239 3 43.14873381414593 -542.5865243648493 38.2914 0.2368 1238 +1240 3 43.56435207175946 -543.645835490846 37.8347 0.2368 1239 +1241 3 43.97124783165669 -545.2670513823773 37.4058 0.2368 1240 +1242 3 44.16301942887769 -546.7990311673232 36.9608 0.2368 1241 +1243 3 44.12236591390708 -548.1518420608331 36.3364 0.2368 1242 +1244 3 44.18110953020171 -549.5923461076136 35.7851 0.2368 1243 +1245 3 44.65214689378308 -550.8385121054141 35.2814 0.2368 1244 +1246 3 45.30625818094766 -552.1818640823142 34.8076 0.2368 1245 +1247 3 46.10460027028128 -552.9650340139864 34.4459 0.2368 1246 +1248 3 47.001407471713904 -553.2699064778235 34.1796 0.2368 1247 +1249 3 47.702251295750145 -554.6731408900833 33.9839 0.2368 1248 +1250 3 48.281048907415226 -555.2321580801814 33.817 0.2368 1249 +1251 3 48.77427775649726 -556.8349855930713 33.5784 0.2368 1250 +1252 3 49.28514152548716 -558.4938097724436 33.2886 0.2368 1251 +1253 3 49.796005294477055 -559.8541433369934 32.9963 0.2368 1252 +1254 3 50.14561631792362 -561.1313122315734 32.695 0.2368 1253 +1255 3 50.29957090204759 -562.5236402709241 32.4366 0.2368 1254 +1256 3 50.553263483532206 -564.0324631793385 32.2123 0.2368 1255 +1257 3 51.412446774937436 -564.5897463797623 31.866 0.2368 1256 +1258 3 51.890660663910154 -565.7654273495788 31.5288 0.2368 1257 +1259 3 52.08269955347631 -567.0809176947597 31.1609 0.2368 1258 +1260 3 52.103176764833414 -568.4619976151149 30.819 0.2368 1259 +1261 3 52.06978876222368 -569.8558341120462 30.511 0.2368 1260 +1262 3 52.23562900076569 -571.2453241412832 30.1347 0.2368 1261 +1263 3 52.65419618108503 -572.2482854304519 29.6682 0.2368 1262 +1264 3 52.92758553529795 -573.3357528119648 29.2513 0.2368 1263 +1265 3 53.21068136375815 -574.8016295264297 28.8834 0.2368 1264 +1266 3 53.590624143315424 -576.4447851304449 28.5743 0.2368 1265 +1267 3 54.02393588981576 -578.0970008527613 28.2957 0.2368 1266 +1268 3 54.34601480739919 -579.7156567941392 28.0364 0.2368 1267 +1269 3 54.6951349997555 -581.0316738914819 27.7582 0.2368 1268 +1270 3 55.14265362616341 -582.1385460775149 27.4482 0.2368 1269 +1271 3 55.66126994448478 -582.9587015362653 27.1584 0.2368 1270 +1272 3 56.237479730851746 -584.2362022525779 26.9145 0.2368 1271 +1273 3 56.88657005581173 -585.307314069411 26.6841 0.2368 1272 +1274 3 57.60224604792525 -585.7379490732892 26.4553 0.2368 1273 +1275 3 58.28285851454275 -587.1380247797817 26.2467 0.2368 1274 +1276 3 58.63825644860932 -588.7561943161555 26.056 0.2368 1275 +1277 3 59.16706937973161 -590.0107239304589 25.7818 0.2368 1276 +1278 3 59.84595377452884 -590.6101270752373 25.4761 0.2368 1277 +1279 3 60.42265129040296 -591.6400916359167 25.1504 0.2368 1278 +1280 3 60.996686714692174 -593.32918496939 24.8583 0.2368 1279 +1281 3 61.573833622406916 -594.9189542961443 24.6168 0.2368 1280 +1282 3 62.119223923156014 -595.4488585201765 24.3631 0.2368 1281 +1283 3 62.65680930876085 -596.277136659333 24.1458 0.2368 1282 +1284 3 63.369949841388916 -597.924281471648 23.9241 0.2368 1283 +1285 3 64.1153347104899 -598.9905341669775 23.7171 0.2368 1284 +1286 3 64.92685275332077 -599.909241658452 23.5347 0.2368 1285 +1287 3 65.52191048550122 -600.7960760192223 23.3695 0.2368 1286 +1288 3 65.99963423592031 -602.4758892434974 23.2174 0.2368 1287 +1289 3 66.75214016301683 -603.8895741544172 23.0505 0.2368 1288 +1290 3 67.54130795374701 -603.653376376032 22.8175 0.2368 1289 +1291 3 68.01430785445679 -605.3208768418008 22.4479 0.2368 1290 +1292 3 68.40663563703885 -606.9772053678939 22.0713 0.2368 1291 +1293 3 68.54642167892187 -608.3989315571615 21.7249 0.2368 1292 +1294 3 68.38873060214867 -609.8146367310566 21.4005 0.2368 1293 +1295 3 68.32313900977927 -611.1962102947579 21.0311 0.2368 1294 +1296 3 68.98508493754206 -612.0936896122938 20.5899 0.2368 1295 +1297 3 69.25388118201671 -613.7487169336147 19.9469 0.2367 1296 +1298 3 69.50200349592369 -615.3404246392766 19.3426 0.2361 1297 +1299 3 69.84537132120693 -616.539494575433 18.7354 0.2358 1298 +1300 3 70.35582403602295 -617.3669267486363 18.2045 0.2355 1299 +1301 3 70.87100611117783 -619.0225739977609 17.7157 0.2352 1300 +1302 3 71.38111726736183 -620.5138916542024 17.219 0.2349 1301 +1303 3 71.76466166889831 -621.220045678278 16.7239 0.2346 1302 +1304 3 71.93130688605889 -622.2635821183871 16.2401 0.2343 1303 +1305 3 72.385701510028 -623.2774482961529 15.768 0.2339 1304 +1306 3 73.36805595235454 -624.3748609680428 15.3418 0.2336 1305 +1307 3 74.35192353996892 -624.087624105956 14.9426 0.2333 1306 +1308 3 75.2900049221125 -625.6225226809022 14.5515 0.233 1307 +1309 3 75.83500399155197 -627.2022837727045 14.1523 0.2327 1308 +1310 3 75.95416716061811 -628.7295093262012 13.7579 0.2324 1309 +1311 3 76.29298772505793 -629.9864725555868 13.312 0.2321 1310 +1312 3 76.87212930440155 -630.6127238120114 12.799 0.2318 1311 +1313 3 77.54984693063585 -631.5202558763522 12.2107 0.2314 1312 +1314 3 78.45144785610454 -632.3666079674849 11.5396 0.2311 1313 +1315 3 79.4438404287206 -632.283139944363 10.8438 0.2308 1314 +1316 3 80.43779851243725 -633.694902389028 10.1658 0.2305 1315 +1317 3 81.45660878816642 -634.4533956564978 9.5332 0.2302 1316 +1318 3 82.50062572972335 -633.5630794885333 9.0498 0.2298 1317 +1319 3 83.20194147928461 -634.3138442291837 8.8299 0.2294 1318 +1320 3 83.44648888977942 -635.6483212547196 9.5357 0.2291 1319 +1321 3 69.55048805817896 -612.2115589316301 20.2667 0.2368 1296 +1322 3 70.4423806149119 -611.1019948799536 19.1982 0.2354 1321 +1323 3 71.27481876685012 -610.6761945753005 18.6003 0.2345 1322 +1324 3 72.15544374788028 -609.2073676908082 18.0432 0.2337 1323 +1325 3 73.22085160596438 -608.820964444323 17.3868 0.2329 1324 +1326 3 74.27827666395454 -608.4564758305194 16.6316 0.232 1325 +1327 3 75.33060857106314 -609.1530021846224 16.0402 0.2312 1326 +1328 3 76.39571900290014 -609.5203390565015 15.5642 0.2304 1327 +1329 3 77.44328312301383 -608.6695112809724 14.5838 0.2296 1328 +1330 3 49.88636904920977 -564.9687697221673 32.571 0.2368 1256 +1331 3 48.82420171569724 -564.9590658080858 32.7141 0.2368 1330 +1332 3 47.76050642722495 -564.260072256934 32.8056 0.2368 1331 +1333 3 46.78358020715726 -563.6039984969412 32.8992 0.2368 1332 +1334 3 45.77806502348179 -563.5287703866311 32.9678 0.2368 1333 +1335 3 44.72545041080887 -562.9179343042222 33.0123 0.2368 1334 +1336 3 43.61444145934314 -562.3895753180543 33.0341 0.2368 1335 +1337 3 42.514907800658065 -562.4237397298123 33.0358 0.2368 1336 +1338 3 41.46389393516924 -561.9296222305572 33.0187 0.2368 1337 +1339 3 40.3983682522977 -561.8875961129522 32.9784 0.2368 1338 +1340 3 39.30568456514336 -560.8821495361377 32.9249 0.2368 1339 +1341 3 38.18305484255833 -560.3184268186642 32.8941 0.2368 1340 +1342 3 37.05571599094666 -560.9213166200935 32.8751 0.2368 1341 +1343 3 35.9252608378165 -560.4739308134808 32.837 0.2368 1342 +1344 3 34.78702510872579 -560.7605534275021 32.7729 0.2368 1343 +1345 3 33.71726440092979 -560.7357526194304 32.6712 0.2368 1344 +1346 3 33.022282352204996 -561.6050095138421 32.5153 0.2368 1345 +1347 3 32.97570057383227 -562.9414693705006 32.265 0.2368 1346 +1348 3 32.69197114162064 -564.1597206042213 31.7727 0.2368 1347 +1349 3 31.692215534472737 -564.3302717709067 31.1752 0.2368 1348 +1350 3 30.833252076682257 -563.8426103606018 30.2795 0.2364 1349 +1351 3 29.795431986956544 -563.887732720521 29.6825 0.2359 1350 +1352 3 28.73859356571767 -563.6084504841571 29.2586 0.2356 1351 +1353 3 27.664701664444408 -563.2307292385908 28.9873 0.2352 1352 +1354 3 26.57558126160267 -562.0719192879025 28.8456 0.2349 1353 +1355 3 25.453632987119775 -562.335745260882 28.8044 0.2345 1354 +1356 3 24.326508760266908 -562.5109050984541 28.8389 0.2342 1355 +1357 3 23.25899019358065 -563.7913071420958 28.9218 0.2338 1356 +1358 3 22.24641021280952 -564.1641691862405 29.0511 0.2335 1357 +1359 3 21.19440595483927 -564.4132977703919 29.2527 0.2331 1358 +1360 3 20.086492470032532 -564.9918268312281 29.4958 0.2328 1359 +1361 3 18.982407152837027 -564.8942876849877 29.8001 0.2324 1360 +1362 3 17.865623300613812 -566.0594486857786 30.2184 0.232 1361 +1363 3 16.73674156057539 -565.6079055811733 30.6606 0.2317 1362 +1364 3 15.627426149361053 -565.4324289100587 31.073 0.2313 1363 +1365 3 14.645666346744406 -566.6450634528065 31.4535 0.231 1364 +1366 3 13.877758620753347 -567.0661210069964 31.9063 0.2306 1365 +1367 3 13.548965870422851 -568.4716430908944 32.6676 0.2302 1366 +1368 3 13.016560510253658 -570.6943674736181 33.29 0.2298 1367 +1369 3 12.302122357274737 -571.5189579485977 33.9262 0.2295 1368 +1370 3 11.52367984552258 -572.0293625253985 34.7768 0.2291 1369 +1371 3 31.279795545849403 -564.9311264335206 30.9313 0.2368 1349 +1372 3 30.255689593331617 -565.6979992248903 30.1568 0.2355 1371 +1373 3 29.138745873523906 -565.8479371214938 29.6139 0.2345 1372 +1374 3 28.01207924227632 -566.3070880467524 29.1365 0.2337 1373 +1375 3 26.889193544672075 -565.572351452749 28.6653 0.2329 1374 +1376 3 25.81504916072563 -565.8790277968923 27.9836 0.232 1375 +1377 3 24.803629644383697 -565.8188531701032 27.4238 0.2312 1376 +1378 3 23.775075249277357 -565.4188470126026 26.7622 0.2304 1377 +1379 3 22.757193891131234 -565.4075377783572 25.802 0.2296 1378 +1380 3 27.25790951713125 -495.0823714251657 42.8005 0.2574 825 +1381 3 28.328978346272322 -495.56667292248994 43.0363 0.2567 1380 +1382 3 29.467372557874477 -495.4995249966322 42.9853 0.2562 1381 +1383 3 30.54260361971562 -494.78246483038953 42.8744 0.2558 1382 +1384 3 31.501478177093297 -493.67145442800097 42.7678 0.2553 1383 +1385 3 32.624241350469475 -493.6044163136313 42.8179 0.2548 1384 +1386 3 33.73135366275542 -492.92402985569686 42.978 0.2544 1385 +1387 3 34.79123159152706 -492.8547079783199 43.1267 0.254 1386 +1388 3 35.834046830211264 -493.0947797239753 43.1866 0.2535 1387 +1389 3 36.97329186932672 -492.01920662767566 43.1508 0.2531 1388 +1390 3 38.11325428516456 -492.53620817304414 43.1068 0.2527 1389 +1391 3 39.25012573297779 -491.2929468806245 43.0749 0.2523 1390 +1392 3 40.39048758388993 -491.9183914326754 43.1057 0.2518 1391 +1393 3 41.51905717699864 -492.3713674812065 43.2989 0.2514 1392 +1394 3 42.59192867568361 -491.0066008844113 43.5196 0.251 1393 +1395 3 43.6365161482361 -490.74075068232133 43.6649 0.2505 1394 +1396 3 44.73073280354265 -490.4478961159673 43.7251 0.2501 1395 +1397 3 45.78375436251805 -491.47612992463957 43.6587 0.2497 1396 +1398 3 46.91182871489141 -491.55678469311687 43.3972 0.2492 1397 +1399 3 48.03857923092677 -491.2426290821655 43.0592 0.2488 1398 +1400 3 49.11716034937301 -490.5345217981936 42.7745 0.2484 1399 +1401 3 50.03468063537165 -489.7779511065901 42.5348 0.2479 1400 +1402 3 50.957415602169895 -489.614510508515 42.3004 0.2475 1401 +1403 3 52.03728122497721 -489.75679075375473 42.0941 0.2471 1402 +1404 3 53.09750703419941 -489.5587493161254 41.918 0.2466 1403 +1405 3 54.139834330592066 -489.99245073813177 41.7508 0.2462 1404 +1406 3 55.24793372099198 -489.9870860071444 41.6094 0.2458 1405 +1407 3 56.27864907126231 -490.22450156517533 41.4498 0.2453 1406 +1408 3 57.22847526959964 -489.53937618695704 41.2454 0.2449 1407 +1409 3 58.27262465565944 -488.3690189957729 41.0382 0.2445 1408 +1410 3 59.38772938654019 -487.8648934439697 40.8724 0.2441 1409 +1411 3 60.525858998932236 -487.6523991810079 40.7523 0.2436 1410 +1412 3 61.66319935967671 -486.84554800957903 40.6731 0.2432 1411 +1413 3 62.778052211431564 -487.17599986873546 40.6305 0.2428 1412 +1414 3 63.78742690371476 -487.25758453171886 40.6333 0.2424 1413 +1415 3 64.86353892697126 -485.8658910540567 40.6543 0.2419 1414 +1416 3 65.93805502113659 -485.90673632960375 40.6476 0.2415 1415 +1417 3 67.02152015865026 -484.2517725616853 40.607 0.2411 1416 +1418 3 68.15554810791974 -484.9365719736953 40.5625 0.2407 1417 +1419 3 69.29890953084055 -485.71093494237664 40.5112 0.2402 1418 +1420 3 70.41654972120674 -484.2279247288695 40.4317 0.2398 1419 +1421 3 71.55460335080207 -484.6412682394574 40.2937 0.2394 1420 +1422 3 72.69303038944128 -483.89146173032117 40.031 0.2389 1421 +1423 3 73.68727048618574 -485.25726551524787 39.7342 0.2385 1422 +1424 3 74.81660471964786 -485.459625179226 39.3952 0.2381 1423 +1425 3 75.90783781971227 -484.4567263330011 39.0404 0.2376 1424 +1426 3 76.97709848636492 -483.76901933278475 38.64 0.2372 1425 +1427 3 78.10113243772973 -483.4182223939331 38.2399 0.2368 1426 +1428 3 78.18025416818061 -484.3714326966405 37.9201 0.2368 1427 +1429 3 78.791356685896 -485.8758666324657 37.1818 0.2368 1428 +1430 3 79.82797236192884 -486.9555751905348 36.5812 0.2368 1429 +1431 3 80.83124299544798 -486.45712874056943 36.0223 0.2368 1430 +1432 3 80.51846039811616 -486.6602084953669 35.2565 0.2368 1431 +1433 3 80.13583628482925 -488.48066904211146 35.3416 0.2359 1432 +1434 3 79.72952674809278 -490.46627940941596 35.7692 0.235 1433 +1435 3 79.38079016400098 -491.636728606406 36.2037 0.2343 1434 +1436 3 78.92742394557867 -492.53058305215603 36.881 0.2336 1435 +1437 3 79.09395452852414 -493.936059672439 37.7387 0.2328 1436 +1438 3 79.58815194091777 -495.5059668403044 38.5311 0.2322 1437 +1439 3 79.9736027196503 -495.98961387019614 39.3436 0.2315 1438 +1440 3 79.99590111535356 -497.22109767899616 40.014 0.2308 1439 +1441 3 79.53662135421172 -499.2699252308731 40.4712 0.2301 1440 +1442 3 78.67726235643401 -499.6031067587975 40.9469 0.2295 1441 +1443 3 81.62265624165538 -487.0376248986285 35.4844 0.2368 1431 +1444 3 82.73329449489744 -485.6928297698699 35.2262 0.2366 1443 +1445 3 83.81770396321342 -486.25437085804117 35.0361 0.2365 1444 +1446 3 84.9275078084496 -487.37132561011776 34.9555 0.2364 1445 +1447 3 86.03713816640311 -486.4418151257135 34.9308 0.2363 1446 +1448 3 87.1756380862559 -486.56774079993124 34.946 0.2363 1447 +1449 3 88.31045429286273 -486.0296992454355 34.9863 0.2362 1448 +1450 3 89.41362550214717 -485.855942498415 35.0504 0.2361 1449 +1451 3 90.30774427221266 -486.58519021986365 35.1464 0.236 1450 +1452 3 91.24502439284605 -487.83757355483004 35.3548 0.2359 1451 +1453 3 92.38228535545893 -487.8817991543239 35.6404 0.2358 1452 +1454 3 93.50596302750907 -487.29642128095264 35.8378 0.2357 1453 +1455 3 94.60451331321052 -486.3442377788289 35.9579 0.2357 1454 +1456 3 95.7293022864277 -486.3437314231055 36.0514 0.2356 1455 +1457 3 96.8418613357748 -487.423709671116 36.1561 0.2355 1456 +1458 3 97.96479909741817 -486.6928655274535 36.2401 0.2354 1457 +1459 3 99.09711988103116 -487.492477587633 36.2855 0.2353 1458 +1460 3 100.21111609286936 -486.6397205528185 36.2852 0.2352 1459 +1461 3 101.33792035979066 -487.6379706837281 36.3079 0.2351 1460 +1462 3 102.47767775168572 -488.33591948986077 36.3784 0.2351 1461 +1463 3 103.61164002919607 -487.41342550255615 36.3866 0.235 1462 +1464 3 104.6495631340373 -488.10493514553116 36.3474 0.2349 1463 +1465 3 105.75940531694022 -487.89132512282936 36.2891 0.2348 1464 +1466 3 106.83851120647641 -489.05559333034154 36.2037 0.2347 1465 +1467 3 107.77366389722641 -489.9934056242985 36.0497 0.2346 1466 +1468 3 108.88181393692918 -489.6024726003329 35.8081 0.2345 1467 +1469 3 110.02375120153155 -490.4436410046951 35.6504 0.2345 1468 +1470 3 111.16229186809753 -490.1684710842252 35.4648 0.2344 1469 +1471 3 112.27882284688457 -490.27632034278776 35.2794 0.2343 1470 +1472 3 113.19780681313519 -490.5562300254225 35.1025 0.2342 1471 +1473 3 114.25513606546431 -491.0140877331496 34.9286 0.2341 1472 +1474 3 115.3488272571443 -491.4524398098714 34.7197 0.234 1473 +1475 3 116.48054808608148 -490.92833940827023 34.4196 0.2339 1474 +1476 3 117.55985348893086 -491.52321260971434 34.0626 0.2338 1475 +1477 3 118.65427987959883 -492.0499266969405 33.5129 0.2338 1476 +1478 3 119.75503466127998 -490.82815890114784 33.0078 0.2337 1477 +1479 3 120.81012678569175 -490.87429659269844 32.4587 0.2336 1478 +1480 3 121.9039018621595 -489.4160435719196 31.985 0.2335 1479 +1481 3 123.02450367763066 -490.4239798131192 31.5818 0.2334 1480 +1482 3 124.15937363512343 -491.33473825395976 31.2922 0.2333 1481 +1483 3 125.25898086755865 -490.4060915165603 31.1214 0.2332 1482 +1484 3 126.28835875608604 -491.67328811196154 31.0397 0.2332 1483 +1485 3 127.33336768283934 -491.0717530387469 31.0271 0.2331 1484 +1486 3 128.38990116660295 -492.39954599864126 31.064 0.233 1485 +1487 3 129.41304275266978 -493.71302839088787 31.1419 0.2329 1486 +1488 3 130.45297524982263 -493.10375503955237 31.2628 0.2328 1487 +1489 3 131.4664048510126 -494.4844386513358 31.4465 0.2327 1488 +1490 3 132.42984087535845 -495.82674643000485 31.6999 0.2326 1489 +1491 3 132.98587066383112 -496.0211319862175 32.0412 0.2326 1490 +1492 3 133.4800533555421 -496.87163361380124 32.4624 0.2325 1491 +1493 3 134.46016324771236 -497.9561221346612 32.844 0.2324 1492 +1494 3 135.20378750204463 -497.70116768662643 33.1646 0.2323 1493 +1495 3 135.32097651488274 -499.12885037251135 33.427 0.2322 1494 +1496 3 135.3951813815441 -500.57392259280925 33.7344 0.2321 1495 +1497 3 136.1910697889072 -502.00046343987714 34.1368 0.232 1496 +1498 3 137.1944819879929 -502.2533762605881 34.4663 0.2319 1497 +1499 3 138.1865650355101 -500.4810738988264 34.7323 0.2318 1498 +1500 3 139.2998140384977 -500.88370300896776 34.9521 0.2318 1499 +1501 3 140.3995510046156 -501.8537705411162 35.1677 0.2317 1500 +1502 3 141.4653463888789 -501.2928854411191 35.4385 0.2316 1501 +1503 3 142.32928396566894 -502.84664151117283 35.6521 0.2315 1502 +1504 3 143.17331914794744 -502.8018818192853 35.8268 0.2314 1503 +1505 3 143.9900542806244 -503.95029016899906 36.0004 0.2313 1504 +1506 3 144.64074294372207 -505.53145954135715 36.143 0.2313 1505 +1507 3 145.74930303131035 -506.0860471086144 36.2208 0.2312 1506 +1508 3 146.88572508728296 -505.16861577541414 36.2426 0.2311 1507 +1509 3 147.97364107643182 -505.58456616806086 36.1928 0.231 1508 +1510 3 149.10681068695965 -505.37730782661464 36.1007 0.2309 1509 +1511 3 150.23744483800212 -506.3061714268132 36.0105 0.2308 1510 +1512 3 151.3573531955086 -505.48356068881816 35.9344 0.2307 1511 +1513 3 152.46990223559172 -505.2828316166395 35.8756 0.2306 1512 +1514 3 153.61313530990304 -506.02865892065216 35.8282 0.2306 1513 +1515 3 154.7415751693291 -505.0168105613886 35.7882 0.2305 1514 +1516 3 155.74270347430354 -504.82666615507577 35.7428 0.2304 1515 +1517 3 156.72676598760748 -503.17757095921576 35.6846 0.2303 1516 +1518 3 157.7880273279844 -503.0918008303876 35.6073 0.2302 1517 +1519 3 158.73879374925252 -502.88646268279194 35.4446 0.2301 1518 +1520 3 159.48009417909196 -502.02180165122024 35.2822 0.2301 1519 +1521 3 160.49299381802103 -500.66160473109096 35.0927 0.23 1520 +1522 3 161.52871161569365 -500.7223334295682 34.8855 0.2299 1521 +1523 3 162.61524410424803 -501.00219274869613 34.6746 0.2298 1522 +1524 3 163.72996761308315 -500.13234121118194 34.3633 0.2297 1523 +1525 3 164.8074808702107 -499.9060286884471 34.1564 0.2296 1524 +1526 3 165.9364207707801 -499.15956364691556 34.0113 0.2295 1525 +1527 3 166.93025291493382 -500.5031866098651 33.976 0.2294 1526 +1528 3 167.86714460406714 -501.59491101127355 34.0021 0.2293 1527 +1529 3 168.97290363864974 -501.1957074235044 34.0463 0.2292 1528 +1530 3 170.11503531438362 -500.9762133776547 34.0379 0.2291 1529 +1531 3 171.21737792806553 -501.197867671689 34.0178 0.2291 1530 +1532 3 172.348676006718 -501.796183893462 34.0693 0.229 1531 +1533 3 173.42973231684584 -500.842600722114 34.2157 0.2289 1532 +1534 3 79.02407563102123 -484.513042067414 38.8923 0.2364 1427 +1535 3 80.15317470663862 -484.34102628107235 39.0855 0.236 1534 +1536 3 81.12431142906127 -483.24610385053415 39.3159 0.2358 1535 +1537 3 81.62271563210854 -482.39273313467163 39.7872 0.2355 1536 +1538 3 82.32802023319722 -480.556201276795 40.3962 0.2352 1537 +1539 3 83.09686508053605 -479.384314226223 40.9108 0.2349 1538 +1540 3 83.87079556752835 -479.013858403305 41.4554 0.2347 1539 +1541 3 84.38662596711723 -478.1747876649522 41.8984 0.2344 1540 +1542 3 84.99032653191456 -477.48368914099353 42.2769 0.2341 1541 +1543 3 85.81496458680161 -475.4423073074063 42.5219 0.2339 1542 +1544 3 86.79130978685757 -475.21149246649003 42.6737 0.2336 1543 +1545 3 87.43220308287047 -474.0126947850032 42.8792 0.2333 1544 +1546 3 87.40927870646084 -472.79915849380893 43.1586 0.2331 1545 +1547 3 87.41206214998513 -471.55263656279857 43.4787 0.2328 1546 +1548 3 87.91796633070143 -469.5553828484729 43.8206 0.2325 1547 +1549 3 88.66590319061228 -468.87513898849943 44.0891 0.2323 1548 +1550 3 89.51531504566853 -468.00571486815863 44.3114 0.232 1549 +1551 3 90.36108083260889 -466.5239467354278 44.5875 0.2317 1550 +1552 3 90.72581945492395 -465.5031110266228 44.8179 0.2314 1551 +1553 3 90.48896602478167 -464.14644031212384 44.9428 0.2312 1552 +1554 3 90.49308602472806 -462.85854928950755 45.0131 0.2309 1553 +1555 3 91.07882270671027 -461.9898891596533 45.1133 0.2306 1554 +1556 3 91.15239580308969 -460.72234829874077 45.1872 0.2304 1555 +1557 3 91.33529845277309 -459.53069653407306 45.2164 0.2301 1556 +1558 3 92.13292977643421 -459.17537717054086 45.2264 0.2298 1557 +1559 3 92.65018192529504 -458.2962249513139 45.2206 0.2296 1558 +1560 3 92.92886605611834 -456.56939651323233 45.1898 0.2293 1559 +1561 3 92.66118152125867 -455.74473348077026 44.8731 0.2291 1560 +1562 3 26.135323531025513 -497.70150792709 41.6668 0.2574 824 +1563 3 26.432587901726535 -498.4901433421521 41.8314 0.2574 1562 +1564 3 26.770706502663355 -499.5409483939693 41.9294 0.2574 1563 +1565 3 26.761501555600084 -500.90035808173684 42.1134 0.2574 1564 +1566 3 26.524691560163486 -502.2914239898814 42.3486 0.2574 1565 +1567 3 26.447161255026828 -503.8035702284384 42.5684 0.2574 1566 +1568 3 26.360224595025144 -505.33442212938894 42.7644 0.2574 1567 +1569 3 26.11850624133743 -507.08280636571607 42.9587 0.2574 1568 +1570 3 25.95288602636691 -508.6875614247765 43.1953 0.2574 1569 +1571 3 26.05721392577265 -509.87777915886716 43.4566 0.2574 1570 +1572 3 26.211562434341413 -510.9876695254964 43.7046 0.2574 1571 +1573 3 26.16637878825653 -512.417145443954 43.9253 0.2574 1572 +1574 3 25.951038083505253 -514.0994476225128 44.072 0.2574 1573 +1575 3 25.976897354474644 -515.4002778988671 44.2016 0.2574 1574 +1576 3 26.339075480441384 -516.0947179095373 44.3887 0.2574 1575 +1577 3 26.426682248391657 -517.2412582131549 44.5626 0.2574 1576 +1578 3 26.02055170956745 -519.1323979540298 44.6894 0.2574 1577 +1579 3 25.432277159053253 -520.7446214617553 44.7776 0.2574 1578 +1580 3 25.413221283377474 -522.0511157110428 44.8316 0.2574 1579 +1581 3 25.70233918030234 -523.4046668771383 44.8843 0.2574 1580 +1582 3 25.873667595155244 -524.5161668505201 44.9193 0.2574 1581 +1583 3 26.16158107838711 -525.4382220569505 44.8529 0.2574 1582 +1584 3 26.853506277065613 -526.33793765907 44.7084 0.2574 1583 +1585 3 27.865513436447152 -527.6301870283016 44.562 0.2574 1584 +1586 3 28.878904699970533 -528.7068635476362 44.4858 0.2574 1585 +1587 3 29.607494863865742 -528.9988241353499 44.4102 0.2574 1586 +1588 3 29.704108551606677 -530.3962958384751 44.3134 0.2574 1587 +1589 3 29.448274021490857 -531.7037948833467 44.1767 0.2574 1588 +1590 3 29.208429910498673 -533.3458147809442 43.8925 0.2574 1589 +1591 3 28.937081764203402 -535.0341428140545 43.4913 0.2574 1590 +1592 3 28.920990224452655 -536.4028055922337 43.122 0.2574 1591 +1593 3 28.46367089316635 -537.5958383270103 42.7787 0.2574 1592 +1594 3 28.11390889329393 -538.6382507485425 42.2881 0.2571 1593 +1595 3 28.320151561184545 -540.1459086030073 41.8765 0.257 1594 +1596 3 28.740320181224643 -541.4199499946736 41.5671 0.2569 1595 +1597 3 29.231674787611084 -542.051386739631 41.3305 0.2567 1596 +1598 3 29.671984061590585 -543.314527509379 41.0934 0.2566 1597 +1599 3 29.946263587271954 -544.6813948400419 40.8666 0.2564 1598 +1600 3 29.89327502604287 -546.0741847885251 40.6896 0.2563 1599 +1601 3 30.12791024581105 -547.432222519838 40.4886 0.2561 1600 +1602 3 30.459034420851804 -548.9532807900096 40.3382 0.256 1601 +1603 3 30.79363117672571 -549.8906381180987 40.2461 0.2559 1602 +1604 3 31.31821409611594 -550.8665122794373 40.2094 0.2557 1603 +1605 3 31.720706356998424 -552.1626878775495 40.2144 0.2556 1604 +1606 3 32.13130365240737 -553.454868436917 40.2525 0.2554 1605 +1607 3 32.211304734437974 -554.9194453241623 40.3749 0.2553 1606 +1608 3 31.219436613453247 -555.571964427023 40.5034 0.2551 1607 +1609 3 30.677466131819028 -557.0176682823646 40.6563 0.255 1608 +1610 3 30.407807027140755 -558.6238973879613 40.7506 0.2549 1609 +1611 3 30.997467979026283 -559.2171503037534 40.78 0.2547 1610 +1612 3 32.029869056546325 -559.9253334390003 40.7428 0.2546 1611 +1613 3 33.084536909827094 -559.8591707098087 40.6064 0.2544 1612 +1614 3 34.05838447350632 -560.6614169477107 40.3575 0.2543 1613 +1615 3 34.9510962149826 -562.1232413076127 40.0926 0.2541 1614 +1616 3 35.50925382410154 -563.3033524085573 39.8731 0.254 1615 +1617 3 35.56947534960043 -564.6245349482203 39.7312 0.2538 1616 +1618 3 35.51738247046936 -566.0481723272655 39.6427 0.2537 1617 +1619 3 35.673117492226396 -567.2715216841372 39.538 0.2536 1618 +1620 3 35.933498869595134 -568.408959349355 39.403 0.2534 1619 +1621 3 36.207822936109345 -570.0059198079242 39.2787 0.2533 1620 +1622 3 36.311031614671926 -571.5051134363382 39.1714 0.2531 1621 +1623 3 36.1679584719802 -572.8152783572708 38.9908 0.253 1622 +1624 3 36.214854078986846 -574.2493234567346 38.7307 0.2528 1623 +1625 3 36.61587463383123 -575.6457543169209 38.4885 0.2527 1624 +1626 3 37.09176558080452 -576.5545525825719 38.2318 0.2526 1625 +1627 3 37.54672802494893 -577.3219392946361 37.9266 0.2524 1626 +1628 3 37.79409531700353 -578.6587700151616 37.6015 0.2523 1627 +1629 3 37.719543660026645 -580.0232797880453 37.27 0.2521 1628 +1630 3 37.485001831730266 -581.4320247412589 36.8883 0.252 1629 +1631 3 37.341120608836775 -582.8975845694392 36.44 0.2518 1630 +1632 3 37.55801238295199 -584.0671751134254 36.0273 0.2517 1631 +1633 3 37.99560409795066 -585.7223197513438 35.7062 0.2515 1632 +1634 3 38.408020168659235 -587.1824404816299 35.425 0.2514 1633 +1635 3 38.75567175656053 -588.3501002834411 35.1523 0.2513 1634 +1636 3 39.051422981973715 -589.591231172689 34.8883 0.2511 1635 +1637 3 39.29781791659691 -591.1703653014382 34.6055 0.251 1636 +1638 3 39.827279752873025 -592.7015462471776 34.2121 0.2508 1637 +1639 3 40.80498391924051 -593.1014627835245 33.7414 0.2507 1638 +1640 3 41.784353510241054 -593.9532626242899 33.334 0.2505 1639 +1641 3 42.696213316913045 -593.9970113130835 33.0898 0.2504 1640 +1642 3 43.46141297862921 -595.6253564733997 33.0268 0.2502 1641 +1643 3 43.82483075437246 -596.7362135082149 33.0551 0.2501 1642 +1644 3 44.06613833283229 -598.0219895301507 33.1212 0.25 1643 +1645 3 44.46778727742947 -599.4071133299581 33.2256 0.2498 1644 +1646 3 44.9923701968197 -600.5928056913874 33.3418 0.2497 1645 +1647 3 45.411028773155095 -601.738424159344 33.455 0.2495 1646 +1648 3 45.71462084233266 -602.9079537792734 33.5546 0.2494 1647 +1649 3 45.66123525507574 -604.3151036401905 33.6482 0.2492 1648 +1650 3 45.45524853937677 -605.8283194948027 33.7397 0.2491 1649 +1651 3 45.61405601435604 -607.0955220089228 33.8341 0.249 1650 +1652 3 46.115877627471704 -608.0545580473163 33.934 0.2488 1651 +1653 3 46.3639647052951 -609.6039872541485 34.062 0.2487 1652 +1654 3 46.46503495040007 -610.9508223343782 34.3073 0.2485 1653 +1655 3 46.72720227603149 -612.1850585142025 34.6503 0.2484 1654 +1656 3 47.07297962123725 -613.4827914217707 34.9188 0.2482 1655 +1657 3 47.2935705218176 -615.0833611867686 35.0602 0.2481 1656 +1658 3 47.3673845656173 -616.5831340307889 35.0375 0.248 1657 +1659 3 47.27456959897964 -617.9569518201703 34.8827 0.2478 1658 +1660 3 47.490844602441534 -619.5483252382513 34.6466 0.2477 1659 +1661 3 48.19636231942079 -621.2386347661512 34.3952 0.2475 1660 +1662 3 48.93689119608338 -621.7685508558776 34.1611 0.2474 1661 +1663 3 48.85917879145127 -623.2131994679182 33.8923 0.2472 1662 +1664 3 48.67525072598725 -624.7284908330184 33.6067 0.2471 1663 +1665 3 49.52061626152165 -625.3328506193782 33.7669 0.247 1664 +1666 3 49.98216138485163 -626.6733903087932 34.4781 0.2461 1665 +1667 3 50.062952724818146 -628.1575538031481 34.8869 0.2456 1666 +1668 3 49.85385142411056 -629.4178352385405 35.2106 0.2451 1667 +1669 3 49.85685799278938 -630.831460614905 35.4808 0.2447 1668 +1670 3 50.07798898868968 -632.3001966316695 35.6908 0.2442 1669 +1671 3 50.0748092116742 -633.6882029697572 35.7832 0.2437 1670 +1672 3 49.98319865872947 -635.1794548922795 35.7904 0.2433 1671 +1673 3 50.065605466562864 -636.4770077446872 35.7549 0.2429 1672 +1674 3 50.205171071283885 -637.7880704365305 35.6894 0.2424 1673 +1675 3 49.99882807627028 -639.3190390385334 35.572 0.2419 1674 +1676 3 49.48094753765659 -640.4376688659225 35.4278 0.2415 1675 +1677 3 49.035436883681314 -641.664440528182 35.2618 0.241 1676 +1678 3 48.5852937760128 -642.9993528373215 35.0916 0.2406 1677 +1679 3 48.391062981049124 -644.5210642551197 34.9549 0.2401 1678 +1680 3 48.59473495337072 -645.7444269030111 34.8592 0.2397 1679 +1681 3 48.697985071183155 -647.1403383815743 34.799 0.2392 1680 +1682 3 48.64152703070389 -648.5650559416438 34.7631 0.2388 1681 +1683 3 48.590853491798185 -649.9898557585178 34.743 0.2384 1682 +1684 3 48.59405688065508 -651.4178973804711 34.727 0.2379 1683 +1685 3 48.83786088839702 -652.8109395298118 34.706 0.2374 1684 +1686 3 49.26315589480381 -654.3919366753884 34.6786 0.237 1685 +1687 3 49.89798387246044 -655.1721409822089 34.6441 0.2366 1686 +1688 3 50.60199154573493 -655.7756617579242 34.589 0.2361 1687 +1689 3 50.96210481199425 -657.2724627355637 34.4859 0.2356 1688 +1690 3 51.173129898573066 -658.8814135675748 34.3748 0.2352 1689 +1691 3 51.398844083936964 -660.5059042270132 34.2933 0.2347 1690 +1692 3 51.50103354988515 -662.0489670095787 34.2552 0.2343 1691 +1693 3 51.719629086299996 -663.6591063175229 34.1984 0.2338 1692 +1694 3 52.35208657423743 -665.3499526699344 34.0533 0.2334 1693 +1695 3 53.24274817668889 -664.9985245202408 33.8363 0.2329 1694 +1696 3 54.13159100384075 -666.4023233089617 33.593 0.2325 1695 +1697 3 55.06384713769761 -666.2865717564715 33.3256 0.232 1696 +1698 3 55.939009844652404 -667.4323831249176 33.0697 0.2316 1697 +1699 3 56.80050335797295 -668.9444905585567 32.8325 0.2311 1698 +1700 3 57.62480894048599 -670.0906592962754 32.6578 0.2306 1699 +1701 3 58.37896867311605 -670.2732520840239 32.587 0.2302 1700 +1702 3 58.52333721192619 -671.8192068452914 32.6474 0.2297 1701 +1703 3 58.25804947176219 -673.0262626474878 33.094 0.2292 1702 +1704 3 49.02878873529991 -624.9752301605834 33.4303 0.2411 1664 +1705 3 49.922831522568586 -625.7592081242793 33.0702 0.2368 1704 +1706 3 50.794738984269095 -626.2607428584531 32.6178 0.2368 1705 +1707 3 51.7685711347291 -626.6374636883717 32.0566 0.2368 1706 +1708 3 52.7048744882861 -628.1415104862211 31.4563 0.2368 1707 +1709 3 53.10208428933702 -629.7258086122054 30.8518 0.2368 1708 +1710 3 53.48251169681842 -631.0576589247892 30.3349 0.2368 1709 +1711 3 54.05577496952607 -631.5402622047648 29.8729 0.2368 1710 +1712 3 54.61880570081259 -632.5892083627834 29.449 0.2368 1711 +1713 3 55.079558157160136 -634.2727862420511 29.0091 0.2368 1712 +1714 3 55.23603348008687 -635.7429801123661 28.362 0.2368 1713 +1715 3 55.00161849667452 -635.8794621429231 27.4872 0.2368 1714 +1716 3 54.391211331412286 -636.3506505501489 26.1086 0.2367 1715 +1717 3 53.91614445857961 -637.7388240074354 25.6664 0.2364 1716 +1718 3 53.599394128668564 -639.5916170490842 25.3546 0.2363 1717 +1719 3 53.21951770826436 -641.2782835022559 24.8951 0.2361 1718 +1720 3 53.03063063524635 -642.7666613931492 24.3008 0.236 1719 +1721 3 52.894319862188894 -644.0732903435979 23.6793 0.2358 1720 +1722 3 52.995788849831655 -645.5086309896154 23.137 0.2357 1721 +1723 3 53.00645726436258 -646.8526877570698 22.6352 0.2355 1722 +1724 3 52.53723036049922 -647.9145752721837 22.206 0.2354 1723 +1725 3 51.81700529690037 -648.4626264254697 21.8399 0.2352 1724 +1726 3 50.85018377905958 -648.5640153914458 21.4866 0.2351 1725 +1727 3 49.9676548298799 -650.0514885594041 21.1046 0.2349 1726 +1728 3 49.33534678667256 -651.5052084426137 20.7426 0.2348 1727 +1729 3 48.72760071868507 -652.4653160794812 20.3853 0.2346 1728 +1730 3 47.983497537015026 -653.8875104666397 20.0519 0.2345 1729 +1731 3 47.076097881020516 -655.094795620055 19.7467 0.2343 1730 +1732 3 46.03545700441412 -654.8419356754129 19.4043 0.2342 1731 +1733 3 44.93583375521227 -654.9514569053156 19.0078 0.234 1732 +1734 3 43.82792537258719 -655.8757185412036 18.4293 0.2338 1733 +1735 3 42.7178552412942 -655.8141386318806 17.8004 0.2337 1734 +1736 3 41.61335437129036 -655.8359978244498 17.3069 0.2335 1735 +1737 3 40.57100415045037 -655.461234990603 16.8505 0.2334 1736 +1738 3 39.52054758131499 -656.3389775796796 16.4831 0.2332 1737 +1739 3 38.7288859603058 -656.87413868419 16.2868 0.2331 1738 +1740 3 37.72272507402715 -657.167520786461 16.2302 0.2329 1739 +1741 3 36.79197336713534 -658.9261389111628 16.3257 0.2328 1740 +1742 3 36.119212937813096 -659.5736261552254 16.5521 0.2326 1741 +1743 3 35.48985140826508 -660.5847720715312 16.7734 0.2325 1742 +1744 3 34.75259958319893 -662.9144069261087 16.9924 0.2323 1743 +1745 3 33.78061954449101 -662.988305136641 17.2838 0.2322 1744 +1746 3 32.80412678848663 -663.3817884962086 17.5189 0.232 1745 +1747 3 32.15801130044598 -664.2034841998149 17.6854 0.2319 1746 +1748 3 31.468756995521957 -666.0183830755186 17.7998 0.2317 1747 +1749 3 30.344160024389808 -665.7241498681993 17.804 0.2316 1748 +1750 3 29.244801658486587 -667.2422653861686 17.6847 0.2314 1749 +1751 3 28.212823733992344 -667.3098610956142 17.4479 0.2313 1750 +1752 3 27.29726598512211 -669.3449814438677 17.143 0.2311 1751 +1753 3 26.394455029220893 -669.6871812227675 16.8385 0.2309 1752 +1754 3 25.331011708863755 -669.2750562185752 16.5534 0.2308 1753 +1755 3 24.201397178883724 -669.7148778040904 16.264 0.2306 1754 +1756 3 23.245961966854175 -670.1915395910112 15.9227 0.2305 1755 +1757 3 22.800747732837692 -671.2980970452375 15.4957 0.2303 1756 +1758 3 22.814271265011925 -672.7352106462687 15.0253 0.2302 1757 +1759 3 22.9527542877316 -673.9866881420992 13.8252 0.2299 1758 +1760 3 23.01713494434749 -675.3227172054094 12.7413 0.2297 1759 +1761 3 23.569852635096893 -676.5088762629108 11.3779 0.2295 1760 +1762 3 24.333550456873027 -677.1140815133873 10.389 0.2294 1761 +1763 3 24.88315294708844 -677.8782986452568 9.5659 0.2292 1762 +1764 3 24.97503968353697 -679.3709900926673 8.8981 0.2291 1763 +1765 3 24.91347507955549 -680.6825833438503 7.8529 0.2289 1764 +1766 3 55.7844543920675 -635.3965571164736 27.9877 0.2368 1714 +1767 3 56.39673598998196 -636.0900090283968 27.7148 0.2365 1766 +1768 3 56.79512728027842 -637.7347278856763 27.5641 0.2364 1767 +1769 3 56.96747800932886 -639.3166025502928 27.4461 0.2362 1768 +1770 3 57.47113242589031 -640.9806073126219 27.3802 0.2361 1769 +1771 3 58.25098525777149 -642.0533740421163 27.3366 0.2359 1770 +1772 3 58.660686871082476 -643.0573239664723 27.2341 0.2358 1771 +1773 3 58.91461391787509 -644.134903666413 27.1525 0.2356 1772 +1774 3 59.14599458492568 -645.4687202733741 27.1058 0.2355 1773 +1775 3 59.597126452412375 -647.168731366486 27.0952 0.2354 1774 +1776 3 59.91118862990225 -648.8224190292876 27.1143 0.2352 1775 +1777 3 59.90974785127004 -650.2866673962869 27.1858 0.2351 1776 +1778 3 60.179662215603315 -651.7261821056686 27.3224 0.2349 1777 +1779 3 60.326801371743585 -652.7994376081706 27.4458 0.2348 1778 +1780 3 60.442709988092034 -653.9150664617069 27.5531 0.2346 1779 +1781 3 60.272771466956584 -655.5603190677163 27.6742 0.2345 1780 +1782 3 60.02433149034769 -657.3782463873988 27.8484 0.2343 1781 +1783 3 59.863041200641675 -658.9168994032397 27.9645 0.2342 1782 +1784 3 59.678831122149774 -660.1676340438094 27.9896 0.234 1783 +1785 3 60.33326206747225 -660.477586776604 27.9698 0.2339 1784 +1786 3 61.155158822599425 -661.3564942488381 27.9195 0.2337 1785 +1787 3 61.90735601810102 -662.9443625162644 27.8353 0.2336 1786 +1788 3 62.739898777869676 -664.2511035917108 27.7245 0.2334 1787 +1789 3 63.31632589981555 -665.0869846211567 27.5971 0.2333 1788 +1790 3 63.47285669013817 -666.2064896488179 27.3921 0.2331 1789 +1791 3 63.389929604706516 -667.675538626974 27.0404 0.233 1790 +1792 3 63.572617606803504 -668.7684753127585 26.6977 0.2328 1791 +1793 3 63.96556285257539 -670.4161455266194 26.4077 0.2327 1792 +1794 3 64.4020353467309 -672.1163663287273 26.1516 0.2325 1793 +1795 3 64.45792625442873 -673.5799308531596 25.8945 0.2324 1794 +1796 3 64.51273627895002 -674.9835065642449 25.6257 0.2322 1795 +1797 3 65.03656658553435 -675.3795055291521 25.3381 0.2321 1796 +1798 3 65.48492783569097 -676.2393795717035 25.0263 0.2319 1797 +1799 3 65.80869889647457 -677.8606601255439 24.6569 0.2318 1798 +1800 3 66.29131387541557 -679.4753456158261 24.2282 0.2316 1799 +1801 3 66.82859604005512 -680.9658977750004 23.8456 0.2315 1800 +1802 3 67.52377579145119 -682.6753769155828 23.505 0.2313 1801 +1803 3 68.47784379859877 -682.3121984385956 23.2133 0.2312 1802 +1804 3 69.30352117361747 -683.8421826784164 22.975 0.231 1803 +1805 3 69.96138636210648 -684.4407928900253 22.8043 0.2309 1804 +1806 3 70.87069598861036 -685.0465808127658 22.698 0.2307 1805 +1807 3 71.98676285487417 -684.8458094512546 22.6911 0.2306 1806 +1808 3 72.97753347236863 -685.4843940955749 22.7407 0.2304 1807 +1809 3 73.93352326993141 -687.0287692286255 22.7535 0.2303 1808 +1810 3 75.03421207807979 -687.2299717552185 22.7615 0.2301 1809 +1811 3 76.17506576637061 -686.9701321047487 22.7989 0.23 1810 +1812 3 77.29586739692851 -686.0843445475504 22.9073 0.2298 1811 +1813 3 78.43785702734371 -686.4382609872677 23.0317 0.2297 1812 +1814 3 79.5139756565074 -687.5354877350148 23.1595 0.2295 1813 +1815 3 80.65410955902935 -686.7299104327582 23.3285 0.2294 1814 +1816 3 81.71037575044785 -687.7130860910374 23.5171 0.2292 1815 +1817 3 82.42693649809637 -688.095530512969 23.708 0.2291 1816 +1818 3 82.64860758931658 -689.0549041433344 24.1195 0.2289 1817 +1819 3 29.978225671719354 -536.4011549501259 43.4277 0.2467 1592 +1820 3 31.071576086293163 -536.4323252393888 43.6601 0.2462 1819 +1821 3 32.175734373691604 -536.6516837995354 43.8281 0.2458 1820 +1822 3 33.29197543745972 -535.8560836438926 44.1731 0.2454 1821 +1823 3 34.32739681517355 -535.6359707522395 44.6043 0.245 1822 +1824 3 35.35436927967178 -536.6239684997217 45.0145 0.2447 1823 +1825 3 36.34122102607556 -536.7049993601646 45.4846 0.2443 1824 +1826 3 37.434208235968875 -537.035270649273 45.9592 0.2439 1825 +1827 3 38.535990842477176 -535.8425253517551 46.4335 0.2436 1826 +1828 3 39.230385438119 -537.1919719704006 46.9608 0.2432 1827 +1829 3 39.83980812427043 -538.3930169770085 47.5096 0.2428 1828 +1830 3 40.96176321744489 -538.9343292628641 48.0421 0.2424 1829 +1831 3 42.05573240327058 -538.8130262805912 48.5901 0.242 1830 +1832 3 43.01101033474061 -539.2050335685221 49.1439 0.2417 1831 +1833 3 43.97437617100801 -539.6096952625672 49.7454 0.2413 1832 +1834 3 44.98663831109862 -540.5048727021396 50.2835 0.2409 1833 +1835 3 46.073913900632064 -540.7882895946366 50.7786 0.2405 1834 +1836 3 47.06324415308487 -539.3290921004942 51.1221 0.2402 1835 +1837 3 47.978569845693485 -538.8040232600266 51.3377 0.2398 1836 +1838 3 48.996197128451506 -537.6848618743488 51.4587 0.2395 1837 +1839 3 50.12606183873253 -538.1112699431077 51.5024 0.2391 1838 +1840 3 51.2438050442143 -537.9814591590733 51.4548 0.2387 1839 +1841 3 52.22961035002123 -536.7002994239753 51.3699 0.2384 1840 +1842 3 52.99813484666544 -535.9408784848009 51.4102 0.238 1841 +1843 3 53.798049058149516 -534.0760037238322 51.6127 0.2376 1842 +1844 3 54.850141610552626 -534.3126521930099 51.8322 0.2373 1843 +1845 3 55.90303914157436 -534.2096345675711 52.0257 0.2369 1844 +1846 3 56.85607372998277 -532.8026568539963 52.1968 0.2365 1845 +1847 3 57.56891113577749 -531.8485318432215 52.3639 0.2362 1846 +1848 3 58.074039370792576 -530.6912205235024 52.5101 0.2358 1847 +1849 3 58.81048690977671 -528.995301868475 52.6039 0.2355 1848 +1850 3 59.70941663971735 -528.3115347181235 52.673 0.2351 1849 +1851 3 60.48004433373572 -527.4406876095841 52.7209 0.2347 1850 +1852 3 61.17014025612016 -525.4226269367101 52.7335 0.2344 1851 +1853 3 61.89311811478339 -524.6319248459154 52.7464 0.234 1852 +1854 3 62.40319683983596 -523.7769188313156 52.817 0.2336 1853 +1855 3 62.911183294077404 -522.9102360488403 52.9617 0.2333 1854 +1856 3 63.62810384819238 -521.88717376621 53.2182 0.2329 1855 +1857 3 64.47765946507735 -520.0136421957666 53.6698 0.2325 1856 +1858 3 65.48782551628094 -520.261243917825 54.3007 0.2321 1857 +1859 3 66.57283734831923 -519.0973909568088 55.0883 0.2318 1858 +1860 3 67.59414124154296 -519.249215929661 56.1042 0.2313 1859 +1861 3 68.66269002441791 -519.7088663602542 56.9663 0.231 1860 +1862 3 69.76119485198745 -518.7400243291257 57.6428 0.2306 1861 +1863 3 70.8207001829043 -519.7318946236586 58.1997 0.2302 1862 +1864 3 71.9357949935104 -518.9425527304834 58.737 0.2299 1863 +1865 3 73.05540693105814 -519.2659381404363 59.0766 0.2295 1864 +1866 3 74.03082121293258 -518.924634413041 59.4569 0.2292 1865 +1867 2 16.125220924918068 -490.4688022870004 38.0766 0.1144 610 +1868 2 15.755345717015665 -489.8561001668357 38.472 0.1144 1867 +1869 2 15.206092012571752 -488.7076663902323 38.8354 0.1144 1868 +1870 2 14.841827818960175 -487.13299734093266 39.1776 0.1144 1869 +1871 2 14.923996780956372 -485.8313317325655 39.5072 0.1144 1870 +1872 2 15.39036546559326 -484.94635691228063 40.0131 0.1144 1871 +1873 2 15.409440862359716 -483.9183175474408 38.1422 0.1144 1872 +1874 2 15.368872261292946 -482.51216800370895 37.8454 0.1144 1873 +1875 2 15.521274059543092 -481.36324321373843 37.7216 0.1144 1874 +1876 2 16.018837355351604 -479.40006080691313 37.518 0.1144 1875 +1877 2 16.928323078990946 -478.29767010286304 37.2669 0.1144 1876 +1878 2 17.331643544713124 -479.4714913148132 36.619 0.1144 1877 +1879 2 17.693193280927005 -481.03879416962553 36.4011 0.1144 1878 +1880 2 17.565668990498253 -482.3095493214112 36.3334 0.1144 1879 +1881 2 17.420636412261107 -483.58409982251464 36.2639 0.1144 1880 +1882 2 17.32176103949211 -484.8988503963375 36.1796 0.1144 1881 +1883 2 17.272961743281893 -486.2539896467814 36.0212 0.1144 1882 +1884 2 17.27851849212878 -487.64570966960304 35.8453 0.1144 1883 +1885 2 17.153138838323816 -488.94825596707955 35.6765 0.1144 1884 +1886 2 17.039028068283564 -490.25780407731924 35.4236 0.1144 1885 +1887 2 16.731866192732866 -491.409742703785 35.1322 0.1144 1886 +1888 2 16.18417376201619 -492.56209469520763 34.8939 0.1144 1887 +1889 2 15.63734418636048 -494.74691523234134 34.7035 0.1144 1888 +1890 2 14.77910200037935 -495.22223006557635 34.5318 0.1144 1889 +1891 2 13.97604176192289 -496.5224845593399 34.3367 0.1144 1890 +1892 2 13.066194940875913 -497.8265565891342 34.0987 0.1144 1891 +1893 2 14.062127482594216 -497.44274616079986 33.8993 0.1144 1892 +1894 2 15.189956472759533 -497.85006712903083 33.7789 0.1144 1893 +1895 2 16.333815527777208 -496.83717530449536 33.7002 0.1144 1894 +1896 2 17.46713400231542 -497.6011735913275 33.6507 0.1144 1895 +1897 2 18.481931601891425 -498.899894425578 33.6129 0.1144 1896 +1898 2 19.157384855105136 -499.3375640772112 33.6098 0.1144 1897 +1899 2 19.606557287046517 -500.0732875738845 33.6616 0.1144 1898 +1900 2 20.044237296478098 -501.67959958372757 33.7868 0.1144 1899 +1901 2 20.604985832478334 -503.2810927980659 34.0441 0.1144 1900 +1902 2 21.515267816413573 -502.8984828699959 34.4663 0.1144 1901 +1903 2 22.590669068855032 -504.0051647037107 34.8916 0.1144 1902 +1904 2 23.693839585602856 -505.02110411911275 35.3125 0.1144 1903 +1905 2 24.80550805503356 -503.97829077487376 35.8593 0.1144 1904 +1906 2 25.893148849846153 -504.7180136777971 36.5263 0.1144 1905 +1907 2 26.987136550474155 -504.0040048931972 37.0796 0.1144 1906 +1908 2 28.10082433249107 -504.7410866542816 37.508 0.1144 1907 +1909 2 29.171685835317174 -505.40042148511844 37.8865 0.1144 1908 +1910 2 30.262738641385422 -504.947758021507 38.3373 0.1144 1909 +1911 2 31.3784615399708 -504.98713846660337 38.691 0.1144 1910 +1912 2 32.40061294634053 -505.3219595907792 38.9231 0.1144 1911 +1913 2 33.353852357885444 -505.73199929104896 39.1199 0.1144 1912 +1914 2 34.22460846424238 -506.36938596888444 39.3126 0.1144 1913 +1915 2 35.10485301673093 -507.7804996782703 39.2888 0.1144 1914 +1916 2 35.902837110239886 -509.3694762073574 39.0813 0.1144 1915 +1917 2 36.509290358284645 -509.98816447515486 38.869 0.1144 1916 +1918 2 37.05525668297382 -510.873219043942 38.635 0.1144 1917 +1919 2 37.53174319266281 -512.3588571036425 38.4238 0.1144 1918 +1920 2 38.25912343223558 -513.2331163191818 38.2676 0.1144 1919 +1921 2 39.186038945729976 -513.585293260736 38.1788 0.1144 1920 +1922 2 40.21924741091507 -514.6320896626962 38.129 0.1144 1921 +1923 2 41.33925097053532 -515.3644798699811 38.0948 0.1144 1922 +1924 2 42.46308200523019 -515.1303944113524 38.0696 0.1144 1923 +1925 2 43.552514241249995 -515.0709256323111 38.0405 0.1144 1924 +1926 2 44.604153394908536 -515.6476985759723 37.9988 0.1144 1925 +1927 2 45.67791625503567 -516.6254889316116 37.9403 0.1144 1926 +1928 2 46.766463735520475 -516.6650180477334 37.8633 0.1144 1927 +1929 2 47.857097283650106 -517.0420995540558 37.7678 0.1144 1928 +1930 2 48.86216307548497 -516.9651617667836 37.5906 0.1144 1929 +1931 2 49.813836975929355 -518.2297904331591 37.324 0.1144 1930 +1932 2 49.66934268751292 -518.814049395831 37.0546 0.1144 1931 +1933 2 49.22953444384442 -519.7765101456894 36.8892 0.1144 1932 +1934 2 48.448712546071675 -521.216308271624 36.8262 0.1144 1933 +1935 2 47.55553759225057 -522.0938070968273 36.7483 0.1144 1934 +1936 2 46.56613376604753 -523.2178283266235 36.6433 0.1144 1935 +1937 2 45.582338545088774 -524.0914293865153 36.5061 0.1144 1936 +1938 2 44.92160512296677 -524.9679919991775 36.2432 0.1144 1937 +1939 2 43.95472884795177 -524.881905802092 37.5432 0.1144 1938 +1940 2 42.97322402604408 -526.4709749014032 38.2936 0.1144 1939 +1941 2 42.18336817616188 -527.1286141626896 39.1994 0.1144 1940 +1942 2 41.44334504122895 -528.1225634593047 39.9521 0.1144 1941 +1943 2 40.771606926104354 -529.8024220652698 40.0131 0.1144 1942 +1944 2 40.1315518441951 -530.4625567230365 39.5716 0.1144 1943 +1945 2 40.32397385543799 -530.1097476475061 37.3831 0.1144 1944 +1946 2 40.71948031975789 -529.3882522369836 35.952 0.1144 1945 +1947 2 41.19316378098528 -528.0032869357547 35.2929 0.1144 1946 +1948 2 41.73639173466172 -526.0952146623586 34.7365 0.1144 1947 +1949 2 42.30168764332244 -525.336525125544 34.1062 0.1144 1948 +1950 2 42.863811090532145 -524.37970721041 33.4384 0.1144 1949 +1951 2 43.43931523109325 -522.4166116280267 32.779 0.1144 1950 +1952 2 44.03704368419218 -521.0371134412203 32.1712 0.1144 1951 +1953 2 44.64140856736244 -520.3190194469123 31.6114 0.1144 1952 +1954 2 45.178848917882334 -519.2704506527105 31.103 0.1144 1953 +1955 2 45.530664158362654 -518.1004937314526 30.6793 0.1144 1954 +1956 2 45.833907162822726 -516.9919773232563 30.3106 0.1144 1955 +1957 2 46.18363013249192 -515.9052671871083 29.9373 0.1144 1956 +1958 2 46.74045370605225 -514.193221714736 29.4465 0.1144 1957 +1959 2 47.353558216668006 -512.4841148894374 28.8268 0.1144 1958 +1960 2 47.962917343475894 -511.7211557659769 28.1005 0.1144 1959 +1961 2 48.565249217350605 -510.5476787008499 27.2894 0.1144 1960 +1962 2 49.13242547717677 -508.5734011714591 26.3981 0.1144 1961 +1963 2 49.6544199905492 -507.81326760232986 25.4374 0.1144 1962 +1964 2 50.165316005856475 -507.0435211059228 24.4409 0.1144 1963 +1965 2 50.675424172274376 -506.12683658873345 23.4231 0.1144 1964 +1966 2 51.21435474363473 -505.3033218932768 22.3872 0.1144 1965 +1967 2 51.85809153819139 -504.19810716673095 21.3341 0.1144 1966 +1968 2 52.51930138447275 -502.3578120386542 20.2825 0.1144 1967 +1969 2 53.1813959862892 -501.6719385075752 19.2427 0.1144 1968 +1970 2 53.8558786927135 -500.6435100583817 18.2474 0.1144 1969 +1971 2 54.559720797817135 -498.8226252332424 17.3477 0.1144 1970 +1972 2 55.27011103855937 -498.34124763149975 16.5117 0.1144 1971 +1973 2 55.98478124779981 -497.802193490238 15.7294 0.1144 1972 +1974 2 56.70274193837814 -497.1908363381986 14.9908 0.1144 1973 +1975 2 57.464377433288455 -495.4126248653377 14.3125 0.1144 1974 +1976 2 58.2396413751197 -494.4099277130822 13.679 0.1144 1975 +1977 2 59.01824816410161 -493.6915236304503 13.0774 0.1144 1976 +1978 2 59.833268039174285 -491.6786041949036 12.4982 0.1144 1977 +1979 2 60.86700037527105 -491.95341775422054 11.9553 0.1144 1978 +1980 2 61.905858405197904 -490.16852415203545 11.4373 0.1144 1979 +1981 2 62.72461815344901 -489.81736224840495 10.9475 0.1144 1980 +1982 2 63.52363599029845 -489.42892354196624 10.4934 0.1144 1981 +1983 2 64.3240700657902 -488.57974920031836 10.0836 0.1144 1982 +1984 2 65.43213041400874 -487.5326970144417 9.8689 0.1144 1983 +1985 2 66.56145433643321 -487.1451594900625 9.8211 0.1144 1984 +1986 2 67.68435675531873 -486.6986647305227 10.0965 0.1144 1985 +1987 2 39.97612163611821 -530.7723237363083 39.5024 0.1144 1944 +1988 2 39.50935971957324 -531.918792559683 39.4397 0.1144 1987 +1989 2 39.04486597016839 -533.1187242068329 39.6642 0.1144 1988 +1990 2 38.586032499284 -534.0571427117746 40.1523 0.1144 1989 +1991 2 38.1336916966423 -535.5784172598198 40.8279 0.1144 1990 +1992 2 37.500746053629115 -537.2961387203687 41.5691 0.1144 1991 +1993 2 36.73117831893836 -538.0925834480915 42.287 0.1144 1992 +1994 2 35.94018273281208 -539.4104563687042 42.9666 0.1144 1993 +1995 2 35.14521590978245 -540.3374534493474 43.6184 0.1144 1994 +1996 2 34.35033427960259 -540.703058328566 44.2492 0.1144 1995 +1997 2 33.63309337479312 -541.7080603716191 44.8652 0.1144 1996 +1998 2 33.044856469409 -542.8134984457487 45.4692 0.1144 1997 +1999 2 32.5122721113275 -544.6478702383547 46.0639 0.1144 1998 +2000 2 31.986591475662674 -545.8123908680475 46.6525 0.1144 1999 +2001 2 31.52641293083972 -547.0618572288963 47.238 0.1144 2000 +2002 2 31.148310744902354 -548.2378442988232 47.8229 0.1144 2001 +2003 2 30.798857476624853 -549.9340317372757 48.4078 0.1144 2002 +2004 2 30.451939667832793 -551.6061796113368 48.9941 0.1144 2003 +2005 2 30.078068186164046 -552.7595363162734 49.5754 0.1144 2004 +2006 2 29.677871421371687 -554.0574007481403 50.1508 0.1144 2005 +2007 2 29.274852365972997 -555.3735092312714 50.7256 0.1144 2006 +2008 2 28.77801057244315 -556.8410886997041 51.3111 0.1144 2007 +2009 2 28.15674555990516 -558.3626220139716 51.9184 0.1144 2008 +2010 2 27.48923435492944 -558.9605464192919 52.5535 0.1144 2009 +2011 2 26.820199078102906 -559.5445161968919 53.2221 0.1144 2010 +2012 2 26.15290831028925 -560.628290889058 53.9302 0.1144 2011 +2013 2 25.48802326827836 -562.1111580541275 54.6809 0.1144 2012 +2014 2 25.27393282611491 -563.5191387644928 55.5708 0.1144 2013 +2015 2 25.498917323120367 -564.550251256408 56.6017 0.1144 2014 +2016 2 25.76862186310285 -565.5037879899081 57.8038 0.1144 2015 +2017 2 25.89603792441745 -566.5581301677176 59.4905 0.1144 2016 +2018 2 25.54593775158473 -567.996239519135 60.5629 0.1144 2017 +2019 2 25.158690394657654 -569.5960534548274 61.4527 0.1144 2018 +2020 2 24.76378188441504 -570.8574213112746 62.1886 0.1144 2019 +2021 2 24.33082430481383 -571.9686105242221 62.7939 0.1144 2020 +2022 2 23.724682085593585 -573.3300415491165 63.3021 0.1144 2021 +2023 2 23.115858236012688 -575.1150253226843 63.7476 0.1144 2022 +2024 2 22.505521241143953 -576.0675203747485 64.1735 0.1144 2023 +2025 2 21.895313979957823 -577.3026144805756 64.5772 0.1144 2024 +2026 2 21.284136770386873 -578.4258801853439 64.9496 0.1144 2025 +2027 2 20.68703739957747 -579.1769703564569 65.2506 0.1144 2026 +2028 2 20.110701561830595 -580.5546517912317 65.627 0.1144 2027 +2029 2 45.665343999536006 -525.8165446709692 35.7266 0.1144 1938 +2030 2 46.646006298662385 -526.0800548241073 35.3128 0.1144 2029 +2031 2 47.640108836744375 -526.5765285605133 34.8351 0.1144 2030 +2032 2 48.44501647553432 -527.2413983702888 34.2471 0.1144 2031 +2033 2 48.942290135269886 -528.0716609185735 33.7212 0.1144 2032 +2034 2 49.05449101294056 -529.5302740200646 33.3113 0.1144 2033 +2035 2 48.65156266102126 -530.7113135324909 32.998 0.1144 2034 +2036 2 48.58311215688884 -532.1164227811825 32.7113 0.1144 2035 +2037 2 48.923316825470444 -533.4144436017053 32.4528 0.1144 2036 +2038 2 48.83846864216014 -534.7286548757405 32.2162 0.1144 2037 +2039 2 48.57603912122261 -536.0782716045416 31.9141 0.1144 2038 +2040 2 48.1371648973188 -537.8704539458926 31.5921 0.1144 2039 +2041 2 47.518540768428196 -539.1084269736766 31.2665 0.1144 2040 +2042 2 47.21898457879716 -540.2241552772022 30.7896 0.1144 2041 +2043 2 47.33608219561934 -541.615556137979 29.9832 0.1144 2042 +2044 2 47.81197245005602 -543.1754673373398 29.3804 0.1144 2043 +2045 2 48.06326171478433 -544.1829499129635 28.8761 0.1144 2044 +2046 2 48.26874936082251 -545.2599345771662 28.3254 0.1144 2045 +2047 2 48.610108095567924 -545.9985994997842 26.9321 0.1144 2046 +2048 2 48.497568441389745 -545.1768666225855 25.6335 0.1144 2047 +2049 2 49.48492864548602 -545.407739074351 24.8178 0.1144 2048 +2050 2 50.57780493827267 -545.3948381230725 24.1178 0.1144 2049 +2051 2 51.682981041234264 -544.5281774749633 23.5766 0.1144 2050 +2052 2 52.50675915952223 -545.008949871725 23.2242 0.1144 2051 +2053 2 52.11309029905607 -546.2464435066557 23.2341 0.1144 2052 +2054 2 51.494736564093785 -547.5086148260727 23.3661 0.1144 2053 +2055 2 50.80304230357165 -549.3104261442068 23.5344 0.1144 2054 +2056 2 49.955499180581384 -549.9791249265085 23.7114 0.1144 2055 +2057 2 49.76269013488957 -551.3044680220895 23.9434 0.1144 2056 +2058 2 49.79649567378536 -552.7024934393154 24.1355 0.1144 2057 +2059 2 49.926123440534184 -554.0806841998486 24.3346 0.1144 2058 +2060 2 49.48541641318459 -555.3927936393447 24.5407 0.1144 2059 +2061 2 48.80303470246494 -556.0365647842412 24.7092 0.1144 2060 +2062 2 48.25557673705643 -556.8529456228108 24.8781 0.1144 2061 +2063 2 47.74932928119823 -558.5798687804383 25.12 0.1144 2062 +2064 2 47.24883660145954 -559.9888234547786 25.2684 0.1144 2063 +2065 2 46.725885143875026 -561.0664522150878 25.3301 0.1144 2064 +2066 2 46.07606881285934 -562.5115256900722 25.3103 0.1144 2065 +2067 2 45.438781246697104 -564.2825076701458 25.2176 0.1144 2066 +2068 2 45.00697773325965 -564.845253165637 26.0314 0.1144 2067 +2069 2 44.14431353346146 -565.6988334403464 26.269 0.1144 2068 +2070 2 43.09320805917237 -565.5966248566031 26.2441 0.1144 2069 +2071 2 41.98538286879843 -567.1124935121899 26.398 0.1144 2070 +2072 2 42.021328740783 -567.0899239072942 27.4054 0.1144 2071 +2073 2 42.700548407763634 -565.7187801314479 29.1886 0.1144 2072 +2074 2 42.51701848643264 -565.3011590435102 30.3366 0.1144 2073 +2075 2 41.63084667683023 -564.9112062267154 31.3334 0.1144 2074 +2076 2 40.66380702990653 -564.3150944363975 32.2731 0.1144 2075 +2077 2 39.712811866744225 -563.8080122727847 33.6549 0.1144 2076 +2078 2 41.12047752220078 -566.9940570811414 26.125 0.1144 2071 +2079 2 40.182193010602944 -568.3293268169374 25.6769 0.1144 2078 +2080 2 39.22713120761722 -568.4780200894779 25.0301 0.1144 2079 +2081 2 38.2299398977728 -568.7489907983858 24.1299 0.1144 2080 +2082 2 37.82664054585621 -569.6595843780082 22.9975 0.1144 2081 +2083 2 44.65370290842074 -564.1062598686751 24.8721 0.1144 2067 +2084 2 43.55095104606423 -564.1937998707006 24.4608 0.1144 2083 +2085 2 42.45314036899588 -564.934822455166 23.9634 0.1144 2084 +2086 2 41.35840834831606 -565.2440484918235 23.4154 0.1144 2085 +2087 2 40.25693378086611 -565.9487182874662 22.8672 0.1144 2086 +2088 2 39.13923062956094 -565.5613938440416 22.3615 0.1144 2087 +2089 2 38.02152196762615 -565.4039457207841 21.9057 0.1144 2088 +2090 2 37.02098029940299 -566.8078020431327 21.5268 0.1144 2089 +2091 2 36.15583128942221 -567.5533296925906 21.2365 0.1144 2090 +2092 2 35.28908394130381 -568.8755491032234 21.0108 0.1144 2091 +2093 2 34.42032479182721 -569.3410108664916 20.8325 0.1144 2092 +2094 2 33.98752158686598 -570.1581020948522 20.6728 0.1144 2093 +2095 2 34.100618839171176 -571.6533972837267 20.5094 0.1144 2094 +2096 2 33.789595560524226 -572.8113515068313 20.3637 0.1144 2095 +2097 2 32.828349820890736 -573.5038577822447 20.3035 0.1144 2096 +2098 2 31.778989548151067 -574.5943596850204 20.3139 0.1144 2097 +2099 2 30.722666984015888 -575.134333512622 20.3572 0.1144 2098 +2100 2 29.620687965777506 -576.0417402567058 20.3221 0.1144 2099 +2101 2 28.500241921997624 -576.6010251278983 20.1838 0.1144 2100 +2102 2 27.37235236225481 -576.4426296199533 20.0299 0.1144 2101 +2103 2 26.35567130993021 -575.185865880871 19.9713 0.1144 2102 +2104 2 25.36249117251334 -574.936920338163 20.0053 0.1144 2103 +2105 2 24.548038235122718 -574.0687522151392 20.159 0.1144 2104 +2106 2 24.703047681535296 -572.7949615377538 20.4597 0.1144 2105 +2107 2 24.868451253463444 -571.5836012247264 21.3147 0.1144 2106 +2108 2 50.37219921822814 -519.232540967015 37.0835 0.1144 1931 +2109 2 51.430089081278126 -520.0170960486514 36.8354 0.1144 2108 +2110 2 52.497974238316694 -518.9393839221343 36.5879 0.1144 2109 +2111 2 53.498444120603764 -519.5195870822041 36.5005 0.1144 2110 +2112 2 54.27549730223753 -519.858290732747 36.4622 0.1144 2111 +2113 2 55.01749788493821 -521.5001865411734 36.4507 0.1144 2112 +2114 2 55.75464247520044 -522.9806469018458 36.4468 0.1144 2113 +2115 2 56.46836213335178 -524.2463340152016 36.442 0.1144 2114 +2116 2 57.161274410144195 -524.3511705080307 36.435 0.1144 2115 +2117 2 57.80363760155334 -525.8271226219453 36.4252 0.1144 2116 +2118 2 58.36443919590292 -527.1176927901004 36.4118 0.1144 2117 +2119 2 58.852142223543936 -527.6802078712489 36.3924 0.1144 2118 +2120 2 59.27396464911752 -528.8611999442294 36.3661 0.1144 2119 +2121 2 59.61572931817013 -530.4704305017059 36.3314 0.1144 2120 +2122 2 60.11300607948885 -532.0938947191921 36.2782 0.1144 2121 +2123 2 60.85602897638712 -532.2143207922558 36.1967 0.1144 2122 +2124 2 61.62029461833859 -533.2781631916139 36.0942 0.1144 2123 +2125 2 62.38492135769782 -534.9144818756682 35.9778 0.1144 2124 +2126 2 63.1493245583119 -536.2672844764816 35.8557 0.1144 2125 +2127 2 63.913590200263435 -536.3082049663493 35.735 0.1144 2126 +2128 2 64.6782169396226 -537.7333044653892 35.6227 0.1144 2127 +2129 2 65.44217384997927 -538.8372486254165 35.5312 0.1144 2128 +2130 2 66.25040141147232 -539.2554901101574 35.4721 0.1144 2129 +2131 2 67.18893528703954 -540.398743329662 35.4449 0.1144 2130 +2132 2 68.21453496472188 -541.6716152580238 35.4444 0.1144 2131 +2133 2 69.23945388683865 -541.1231775959615 35.464 0.1144 2132 +2134 2 70.28539993493966 -542.3729350688157 35.5113 0.1144 2133 +2135 2 71.35689462792658 -542.2611247233685 35.593 0.1144 2134 +2136 2 72.43292255361098 -543.0161227718362 35.6947 0.1144 2135 +2137 2 73.5079805309105 -543.8963805706076 35.7994 0.1144 2136 +2138 2 74.61365127106023 -543.3866134958425 35.8462 0.1144 2137 +2139 2 75.67065707111178 -543.7399021265967 35.7972 0.1144 2138 +2140 2 76.61213435875524 -544.0725054133984 35.6891 0.1144 2139 +2141 2 77.51793996246201 -545.6352084575542 35.5494 0.1144 2140 +2142 2 78.4238831248314 -547.1280204460918 35.3979 0.1144 2141 +2143 2 79.33071104273579 -546.7736361190348 35.2531 0.1144 2142 +2144 2 80.1506483623176 -548.2562918008264 35.1456 0.1144 2143 +2145 2 80.81243242189728 -548.8092153902952 35.1014 0.1144 2144 +2146 2 81.40953788405596 -549.5547721599469 35.1134 0.1144 2145 +2147 2 82.0057062248669 -551.1599628581218 35.166 0.1144 2146 +2148 2 82.6047711225709 -552.838256050579 35.2447 0.1144 2147 +2149 2 83.2256133500186 -554.5092706760055 35.3318 0.1144 2148 +2150 2 83.85920167789865 -555.1145192333568 35.415 0.1144 2149 +2151 2 84.49309873737369 -555.9132717786487 35.4906 0.1144 2150 +2152 2 85.1282002105416 -557.4416449091748 35.5594 0.1144 2151 +2153 2 85.76281085261925 -557.9176625150759 35.6247 0.1144 2152 +2154 2 86.39728393603437 -558.9366555097176 35.6885 0.1144 2153 +2155 2 87.0318093852622 -560.2702811823553 35.754 0.1144 2154 +2156 2 87.66628246867737 -560.7804940850756 35.8221 0.1144 2155 +2157 2 88.30089311075497 -561.9339684428047 35.8932 0.1144 2156 +2158 2 89.00565580588184 -563.2533658078783 35.971 0.1144 2157 +2159 2 89.81811097006054 -564.8820768575554 36.0581 0.1144 2158 +2160 2 90.67007769958278 -565.3172690997378 36.1542 0.1144 2159 +2161 2 91.5227580117077 -566.3146123274871 36.258 0.1144 2160 +2162 2 92.37387281273197 -566.7574683363921 36.3684 0.1144 2161 +2163 2 93.2264155661944 -567.7367708261788 36.4837 0.1144 2162 +2164 2 94.07846748856647 -568.6982811529033 36.6041 0.1144 2163 +2165 2 94.92963465540348 -570.3063658901822 36.7298 0.1144 2164 +2166 2 95.78124028751813 -570.661732306721 36.8626 0.1144 2165 +2167 2 96.63329220989019 -571.8610393426159 37.0042 0.1144 2166 +2168 2 97.48570522966995 -571.9180622265907 37.1582 0.1144 2167 +2169 2 98.34279214239271 -573.2758543529313 37.3369 0.1144 2168 +2170 2 99.20347826804814 -574.1110415412958 37.5449 0.1144 2169 +2171 2 100.06270361422858 -575.3683413743955 37.7784 0.1144 2170 +2172 2 100.92130057065609 -575.3511348619004 38.0344 0.1144 2171 +2173 2 101.70703721980287 -576.8390513079313 38.3197 0.1144 2172 +2174 2 102.24733947185194 -577.6127200157025 38.638 0.1144 2173 +2175 2 102.66403551105887 -578.9439204473649 38.9858 0.1144 2174 +2176 2 103.08104028186072 -580.6073919139595 39.3574 0.1144 2175 +2177 2 103.49746902872252 -582.0626520879546 39.7463 0.1144 2176 +2178 2 103.91492008978183 -583.1935892574161 40.147 0.1144 2177 +2179 2 104.33077281270347 -584.5983162129356 40.5546 0.1144 2178 +2180 2 104.74665836266217 -585.9689166330397 40.9668 0.1144 2179 +2181 2 105.16251108558387 -586.9490948038399 41.3834 0.1144 2180 +2182 2 105.5783114426928 -587.9393117445551 41.8062 0.1144 2181 +2183 2 105.99461045587191 -589.0571457419967 42.2372 0.1144 2182 +2184 2 106.41022871348551 -590.7039550410666 42.6798 0.1144 2183 +2185 2 106.84073460657216 -592.3543652348449 43.1393 0.1144 2184 +2186 2 107.30067657367145 -594.0125709310704 43.6234 0.1144 2185 +2187 2 107.77132001280813 -595.0691566900443 44.1406 0.1144 2186 +2188 2 108.2402158413488 -596.2192417549956 44.6978 0.1144 2187 +2189 2 108.70920547495194 -597.2039938902321 45.302 0.1144 2188 +2190 2 109.16656202579962 -598.4046466349585 45.9808 0.1144 2189 +2191 2 109.57784656402893 -599.39267252825 46.8448 0.1144 2190 +2192 2 109.95536751202759 -600.5877877692369 47.8979 0.1144 2191 +2193 2 110.32681092416576 -601.7756359960141 49.0552 0.1144 2192 +2194 2 110.69327412081238 -602.7226417740992 50.2684 0.1144 2193 +2195 2 111.0594176593012 -603.9777692423819 51.4982 0.1144 2194 +2196 2 111.42747919408556 -605.4844756443265 52.7083 0.1144 2195 +2197 2 111.7982613894338 -607.005502340111 53.8698 0.1144 2196 +2198 2 112.4977409321925 -607.8249222291502 54.8355 0.1144 2197 +2199 2 113.33802082807335 -608.8407408909962 55.6007 0.1144 2198 +2200 2 114.19967861862366 -609.5443616480646 56.2344 0.1144 2199 +2201 2 115.06654798839037 -610.9265523930877 56.7714 0.1144 2200 +2202 2 115.93806152564612 -610.5663166582141 57.2404 0.1144 2201 +2203 2 116.82537717936401 -612.082879430335 57.6744 0.1144 2202 +2204 2 117.73839144296262 -611.776432779229 58.1056 0.1144 2203 +2205 2 118.65613196531709 -613.1137418091125 58.5337 0.1144 2204 +2206 2 119.57475724320659 -614.6729119778083 58.9504 0.1144 2205 +2207 2 120.53804950572375 -614.8051793305183 59.3379 0.1144 2206 +2208 2 121.63352363307257 -615.2421325119025 59.6285 0.1144 2207 +2209 2 122.74875949468722 -614.7773257132685 59.8408 0.1144 2208 +2210 2 123.86613689134265 -615.4451413660959 59.9981 0.1144 2209 +2211 2 124.97324410144695 -616.4024839314404 60.1266 0.1144 2210 +2212 2 125.5136199272462 -617.3211173724762 60.2804 0.1144 2211 +2213 2 125.98039445205839 -618.2251404617851 60.4685 0.1144 2212 +2214 2 126.44711661105788 -619.526414120006 60.6886 0.1144 2213 +2215 2 126.53945033030048 -621.0345062325702 60.9224 0.1144 2214 +2216 2 126.33685882756482 -622.3026156130742 61.1332 0.1144 2215 +2217 2 126.11871537098301 -623.5580065909002 61.3259 0.1144 2216 +2218 2 125.9001256241437 -624.8927420423399 61.4989 0.1144 2217 +2219 2 125.68261055731469 -626.4035891818486 61.6585 0.1144 2218 +2220 2 125.46561914861307 -627.9320179908715 61.8103 0.1144 2219 +2221 2 125.24716696043637 -629.463670053554 61.9587 0.1144 2220 +2222 2 125.02857721359703 -630.9928172614882 62.1057 0.1144 2221 +2223 2 124.81012502542029 -632.543845851487 62.2516 0.1144 2222 +2224 2 124.59313361671867 -633.9633447283413 62.3946 0.1144 2223 +2225 2 124.375257452482 -635.3554458362228 62.5346 0.1144 2224 +2226 2 124.1567200714555 -636.7647869904697 62.6702 0.1144 2225 +2227 2 123.93821551746598 -638.1406237131438 62.7987 0.1144 2226 +2228 2 123.72025416037954 -639.5478967448894 62.9191 0.1144 2227 +2229 2 123.50237799614287 -640.8267207755512 63.03 0.1144 2228 +2230 2 123.35640829655804 -642.1635327348573 63.1156 0.1144 2229 +2231 2 123.24866976582707 -643.5355457927177 63.1733 0.1144 2230 +2232 2 123.1422208416389 -644.9112531281846 63.208 0.1144 2231 +2233 2 123.03511070066082 -646.2893508418426 63.2265 0.1144 2232 +2234 2 122.66979433789577 -647.3837146409815 63.2344 0.1144 2233 +2235 2 121.84761816874394 -647.758597016867 63.2358 0.1144 2234 +2236 2 121.02632675512714 -649.4243161217961 63.2358 0.1144 2235 +2237 2 120.2051729001729 -650.6112708374566 63.2358 0.1144 2236 +2238 2 12.65622241907873 -497.6679087941923 33.4471 0.1144 1892 +2239 2 11.699390791271153 -497.57336928457954 32.4786 0.1144 2238 +2240 2 10.889767003956818 -498.54281177814426 32.0449 0.1144 2239 +2241 2 10.466791803160698 -500.5253389659544 31.7503 0.1144 2240 +2242 2 10.17014378952234 -501.92142827188513 31.4121 0.1144 2241 +2243 2 9.870725851090413 -503.05378108223306 31.0545 0.1144 2242 +2244 2 9.658193408799363 -504.31394664346317 30.7115 0.1144 2243 +2245 2 9.627125939142687 -505.68510754525516 30.403 0.1144 2244 +2246 2 9.676610063984109 -507.0970925465528 30.1398 0.1144 2245 +2247 2 9.860323481861741 -508.5444383085486 29.9079 0.1144 2246 +2248 2 9.929405063739482 -509.95287059311084 29.6394 0.1144 2247 +2249 2 9.637918672551342 -511.161398917116 29.2972 0.1144 2248 +2250 2 9.323488875593306 -512.3773247881946 28.896 0.1144 2249 +2251 2 9.189678325937763 -513.7071035281135 28.4903 0.1144 2250 +2252 2 8.901626177916109 -515.264499406237 28.1347 0.1144 2251 +2253 2 8.83331702656593 -516.7358532686487 27.83 0.1144 2252 +2254 2 8.57164252748079 -518.4018978034942 27.5626 0.1144 2253 +2255 2 8.245006725410263 -520.2011503250428 27.2696 0.1144 2254 +2256 2 7.920776649142474 -521.2847256545024 26.9011 0.1144 2255 +2257 2 7.599261030272366 -522.3681382635025 26.4559 0.1144 2256 +2258 2 7.279437554602469 -523.4480246704182 25.9476 0.1144 2257 +2259 2 6.346322869219637 -523.479758800456 25.231 0.1144 2258 +2260 2 5.764547805639795 -524.4080603522676 24.5066 0.1144 2259 +2261 2 5.755345267623005 -525.7686908681712 23.9445 0.1144 2260 +2262 2 5.925862500691052 -527.0938021822337 23.4286 0.1144 2261 +2263 2 5.698928767360933 -528.4995517232602 22.8711 0.1144 2262 +2264 2 4.984208601354242 -530.418762542281 22.2505 0.1144 2263 +2265 2 4.605458113810402 -530.7677820345745 21.0406 0.1144 2264 +2266 2 4.148736736601446 -531.7820131194443 20.4067 0.1144 2265 +2267 2 4.490794031493147 -533.0945350205247 19.747 0.1144 2266 +2268 2 4.334524703991773 -534.412754023796 19.2322 0.1144 2267 +2269 2 4.367343164773544 -535.7952125805186 18.8622 0.1144 2268 +2270 2 4.554975453741852 -537.2736574024808 18.5144 0.1144 2269 +2271 2 4.511466821127973 -538.6049423862414 18.129 0.1144 2270 +2272 2 4.271043584612578 -539.8875863141078 17.7752 0.1144 2271 +2273 2 4.624611426053557 -540.9771519209444 17.2782 0.1144 2272 +2274 2 5.637179888692502 -540.9128375471273 16.7721 0.1144 2273 +2275 2 6.578968316977358 -541.7229686341811 16.3563 0.1144 2274 +2276 2 7.529296450946562 -543.1748564296773 15.797 0.1144 2275 +2277 2 7.61943798584567 -544.5817824687953 15.1013 0.1144 2276 +2278 2 7.452613357182219 -545.8281952344967 14.6033 0.1144 2277 +2279 2 7.243141056477338 -546.964137123028 14.1457 0.1144 2278 +2280 2 6.311883797812616 -547.1200363940761 13.6041 0.1144 2279 +2281 2 5.725902747932523 -548.2251806701737 13.1155 0.1144 2280 +2282 2 5.687300064523285 -549.6174571550646 12.7314 0.1144 2281 +2283 2 5.248010992325884 -551.2891822059754 12.231 0.1144 2282 +2284 2 5.521340078735033 -552.0789878119996 11.6593 0.1144 2283 +2285 2 6.0556733206687134 -553.1785940482494 11.271 0.1144 2284 +2286 2 6.679949098746299 -554.5319160902975 10.9113 0.1144 2285 +2287 2 7.143054915083884 -556.1778401766556 10.507 0.1144 2286 +2288 2 7.112075047323465 -557.5176202012535 10.1296 0.1144 2287 +2289 2 7.28584752564581 -559.0301459274554 9.7615 0.1144 2288 +2290 2 7.566228896708253 -560.6066598664811 9.4305 0.1144 2289 +2291 2 7.677278419035282 -562.0928017437619 9.1381 0.1144 2290 +2292 2 7.462516147270616 -563.2990386600882 8.7309 0.1144 2291 +2293 2 7.592501909844003 -564.792550723884 8.3383 0.1144 2292 +2294 2 8.50614456319559 -565.17777892644 7.9483 0.1144 2293 +2295 2 9.513950838458623 -565.7328394774328 7.2918 0.1144 2294 +2296 2 5.755326864637583 -523.333097257211 26.504 0.1144 2259 +2297 2 4.980161830050449 -525.1471531393853 27.1401 0.1144 2296 +2298 2 4.7230205636626685 -526.2906290700304 27.4317 0.1144 2297 +2299 2 4.678586428800598 -527.6533210647011 27.6989 0.1144 2298 +2300 2 4.560598226919417 -528.9500662125263 27.9206 0.1144 2299 +2301 2 4.385321494467924 -530.2478354450774 28.091 0.1144 2300 +2302 2 4.209055274855988 -531.6053629221466 28.2352 0.1144 2301 +2303 2 4.023349873341928 -532.9575721278587 28.3727 0.1144 2302 +2304 2 4.095724345603978 -534.3346521285371 28.4934 0.1144 2303 +2305 2 4.679363229024842 -535.7218647884814 28.5936 0.1144 2304 +2306 2 5.369778383998588 -536.5263787218915 28.67 0.1144 2305 +2307 2 5.7369360329201555 -537.3741824803689 28.7204 0.1144 2306 +2308 2 5.830923557696256 -538.7853843192377 28.7809 0.1144 2307 +2309 2 5.705540802308203 -540.1725553288528 28.95 0.1144 2308 +2310 2 5.426533911743876 -541.8576972567952 29.2916 0.1144 2309 +2311 2 5.120699980402556 -543.5615010335789 29.7508 0.1144 2310 +2312 2 4.395653467912219 -544.434260149719 30.1196 0.1144 2311 +2313 2 3.3397710855645997 -545.4662378026961 30.2098 0.1144 2312 +2314 2 2.253265629329068 -545.8225655608567 30.0773 0.1144 2313 +2315 2 1.3033096973091354 -546.7348130057082 29.8903 0.1144 2314 +2316 2 0.4832164942191035 -548.1104388492602 29.5677 0.1144 2315 +2317 2 -0.32221423395666093 -548.6774370980497 29.1698 0.1144 2316 +2318 2 -1.270753927334372 -548.9123197159782 28.8408 0.1144 2317 +2319 2 -2.3445478266843836 -550.4847472870417 28.6628 0.1144 2318 +2320 2 -3.421196843677791 -550.4510096181732 28.6068 0.1144 2319 +2321 2 17.08297293172147 -478.0994070600108 37.1546 0.1144 1877 +2322 2 17.709708298304708 -477.4426332132421 36.783 0.1144 2321 +2323 2 18.370400281177023 -476.84582914366956 36.5565 0.1144 2322 +2324 2 18.670265202402913 -475.81048573659945 36.3594 0.1144 2323 +2325 2 18.473679051993336 -474.3747601213769 36.2751 0.1144 2324 +2326 2 18.042505738950595 -472.8334725732423 36.4087 0.1144 2325 +2327 2 17.823298942511983 -471.3962450138731 36.6436 0.1144 2326 +2328 2 17.68315180322125 -469.98748340521706 36.9818 0.1144 2327 +2329 2 17.61065069885963 -468.6464164342413 37.5738 0.1144 2328 +2330 2 17.835713291077354 -467.5780597325743 38.4314 0.1144 2329 +2331 2 18.408785679805202 -466.95741876483714 39.4612 0.1144 2330 +2332 2 19.5017574764793 -466.1963173281691 40.2576 0.1144 2331 +2333 2 20.017197935699922 -466.972563782166 40.7652 0.1144 2332 +2334 2 20.635413307646118 -468.44455962870455 41.1673 0.1144 2333 +2335 2 21.234657203262433 -469.0402254133988 41.3893 0.1144 2334 +2336 2 21.79741823315732 -469.66800471313525 41.4893 0.1144 2335 +2337 2 22.282139511055437 -471.144640883585 41.5178 0.1144 2336 +2338 2 22.743335848613956 -472.6945509508565 41.5243 0.1144 2337 +2339 2 23.250283848096316 -474.2529441672287 41.5307 0.1144 2338 +2340 2 23.77839171413243 -475.81416694265033 41.54 0.1144 2339 +2341 2 24.358969763430572 -476.5198697054038 41.5537 0.1144 2340 +2342 2 24.919325067522735 -476.9796516722922 41.5722 0.1144 2341 +2343 2 25.460702692118677 -478.56018724634424 41.5954 0.1144 2342 +2344 2 25.986851122609472 -480.17894792092426 41.6231 0.1144 2343 +2345 2 26.34595369377082 -480.7984997282926 41.6856 0.1144 2344 +2346 2 26.65012178688852 -481.5308441080175 41.7785 0.1144 2345 +2347 2 26.924137121807817 -482.8380398402221 41.86 0.1144 2346 +2348 2 27.047971774770485 -484.3026442146529 41.8648 0.1144 2347 +2349 2 27.300824141552834 -485.8252947439285 41.8768 0.1144 2348 +2350 2 27.889694835502446 -487.44627981224625 41.9384 0.1144 2349 +2351 2 28.59182826608146 -489.0645933392562 41.9978 0.1144 2350 +2352 2 29.704551592658127 -488.63844745540837 42.0515 0.1144 2351 +2353 2 30.75511938067381 -488.2873982624034 42.1044 0.1144 2352 +2354 2 31.856833604602812 -487.57549903270353 42.1579 0.1144 2353 +2355 2 32.07800405627502 -486.82888728381926 41.995 0.1144 2354 +2356 2 32.324751889683824 -485.6392980086697 41.799 0.1144 2355 +2357 2 32.55287772507069 -484.43514003570573 41.5834 0.1144 2356 +2358 2 32.663604208710694 -483.1457569436092 41.305 0.1144 2357 +2359 2 32.39868408801497 -481.63960246008094 41.0402 0.1144 2358 +2360 2 31.860164682645397 -480.2380458875406 40.8038 0.1144 2359 +2361 2 31.232721953746488 -480.3021321622076 40.5863 0.1144 2360 +2362 2 30.631209890989947 -478.825634659815 40.3603 0.1144 2361 +2363 2 30.062967580486898 -477.23829424170384 40.0546 0.1144 2362 +2364 2 29.18805234301307 -477.82479178719666 39.615 0.1144 2363 +2365 2 28.100548100574702 -476.6933257137687 39.2104 0.1144 2364 +2366 2 27.13948566753116 -475.3264998230809 38.8564 0.1144 2365 +2367 2 26.364844414866354 -474.8849192756209 38.5532 0.1144 2366 +2368 2 25.75607063386864 -474.21394024853777 38.3253 0.1144 2367 +2369 2 25.29037078906671 -472.6748395535145 38.1741 0.1144 2368 +2370 2 25.04629638739646 -471.2388627910242 38.0724 0.1144 2369 +2371 2 24.906239951585075 -469.8507994394529 37.9893 0.1144 2370 +2372 2 24.8654454974229 -468.51423983739903 37.9056 0.1144 2371 +2373 2 24.681911077457514 -467.4465864996396 37.8056 0.1144 2372 +2374 2 24.413019027321837 -466.6202249700199 37.6748 0.1144 2373 +2375 2 24.11005534789712 -465.8500936152701 37.5029 0.1144 2374 +2376 2 23.607872637373763 -464.4184737347776 37.1986 0.1144 2375 +2377 2 23.16262527968918 -462.8919567589043 36.8021 0.1144 2376 +2378 2 23.22425966330129 -461.6364015731701 36.3353 0.1144 2377 +2379 2 23.191135572507637 -460.3166521033139 35.7246 0.1144 2378 +2380 2 22.810438463634597 -458.83656559629463 35.0549 0.1144 2379 +2381 2 22.54855866166067 -457.40095978080114 34.4047 0.1144 2380 +2382 2 22.95170194011236 -456.49174807284044 33.7588 0.1144 2381 +2383 2 22.749954167252504 -455.0741670267856 33.1635 0.1144 2382 +2384 2 22.533820516572803 -453.6598244327663 32.5248 0.1144 2383 +2385 2 21.990888999975873 -452.3253918238594 31.9589 0.1144 2384 +2386 2 21.47797509196121 -451.29474584020767 31.5328 0.1144 2385 +2387 2 21.203924520958395 -450.4015728686528 31.1144 0.1144 2386 +2388 2 21.2034527192284 -449.09968553165146 30.767 0.1144 2387 +2389 2 20.911620364905843 -448.20510438206935 30.5343 0.1144 2388 +2390 2 20.57657731877447 -446.81887348103976 30.3895 0.1144 2389 +2391 2 20.394373944601597 -445.4039538514072 30.2991 0.1144 2390 +2392 2 20.214364471282153 -444.09729944190866 30.2408 0.1144 2391 +2393 2 19.858158457013886 -442.85296554034613 30.2061 0.1144 2392 +2394 2 19.63804977531114 -441.5401601410594 30.1717 0.1144 2393 +2395 2 19.7508263979758 -440.31160220836466 30.1249 0.1144 2394 +2396 2 19.864540141988222 -439.009493004295 30.0658 0.1144 2395 +2397 2 19.977531691185426 -437.70277949687346 29.9818 0.1144 2396 +2398 2 19.89379073597644 -436.413166271759 29.8189 0.1144 2397 +2399 2 19.51398930920142 -435.2131540129534 29.6038 0.1144 2398 +2400 2 18.75663118378614 -434.95845745855786 29.4479 0.1144 2399 +2401 2 18.36082771878785 -433.4452000256738 29.3432 0.1144 2400 +2402 2 17.787781781659127 -431.90884680220177 29.2838 0.1144 2401 +2403 2 16.988329083695106 -430.69072608283795 29.2656 0.1144 2402 +2404 2 16.040303660413155 -430.1544091584648 29.2849 0.1144 2403 +2405 2 15.21032339244869 -429.6925040160634 29.3468 0.1144 2404 +2406 2 14.898893581089872 -428.52835697115853 29.4353 0.1144 2405 +2407 2 14.745117994878154 -427.28109387186515 29.4949 0.1144 2406 +2408 2 14.637537951801253 -426.02190002766696 29.5456 0.1144 2407 +2409 2 14.605115824510705 -424.73514132339074 29.6111 0.1144 2408 +2410 2 14.682922034205284 -423.4122820473774 29.6554 0.1144 2409 +2411 2 14.838330915692211 -422.0989640891074 29.6806 0.1144 2410 +2412 2 14.803911015189687 -420.82510869463204 29.6926 0.1144 2411 +2413 2 14.489711279037259 -419.5698727338405 29.6974 0.1144 2412 +2414 2 14.090167940860592 -418.30145165715174 29.692 0.1144 2413 +2415 2 13.723673917775397 -417.3006827049358 29.6772 0.1144 2414 +2416 2 13.464623586199114 -416.1737118036726 29.6565 0.1144 2415 +2417 2 13.220813375291002 -414.72251482712096 29.6285 0.1144 2416 +2418 2 13.0138892592982 -413.28883496327916 29.5918 0.1144 2417 +2419 2 12.903773756735916 -411.90862493739496 29.5338 0.1144 2418 +2420 2 12.75018027001958 -410.5044738761146 29.4395 0.1144 2419 +2421 2 12.42538379345535 -409.02773257257206 29.3314 0.1144 2420 +2422 2 11.95447547102005 -407.7536675606593 29.2443 0.1144 2421 +2423 2 11.41963736984993 -406.9889763289591 29.174 0.1144 2422 +2424 2 10.880219180799337 -405.56743390358633 29.1175 0.1144 2423 +2425 2 10.352557605020632 -404.61937238663916 29.071 0.1144 2424 +2426 2 9.818571432348506 -403.84212126191727 29.0293 0.1144 2425 +2427 2 9.388872926926972 -402.94193433210427 28.9722 0.1144 2426 +2428 2 9.366612868890325 -401.6664978698226 28.8705 0.1144 2427 +2429 2 9.523493456415348 -400.32385431532197 28.7504 0.1144 2428 +2430 2 9.41548115122712 -399.13582349339555 28.6476 0.1144 2429 +2431 2 9.126363254302262 -397.7224595193254 28.5608 0.1144 2430 +2432 2 8.926789150983574 -396.3237168559756 28.4864 0.1144 2431 +2433 2 8.84113019947906 -394.9851327808054 28.4029 0.1144 2432 +2434 2 8.737788685650699 -393.65829253619086 28.2918 0.1144 2433 +2435 2 8.78574225652914 -392.40213077353206 28.1772 0.1144 2434 +2436 2 8.882032905583031 -391.19859048605144 28.0784 0.1144 2435 +2437 2 8.549719037532007 -389.9234359938548 27.9951 0.1144 2436 +2438 2 7.996041602761139 -388.8366519642851 27.922 0.1144 2437 +2439 2 7.53083258904946 -387.3599706968833 27.8503 0.1144 2438 +2440 2 7.026293416952996 -385.82115639159804 27.7695 0.1144 2439 +2441 2 6.4307011000821745 -385.15218949902646 27.6615 0.1144 2440 +2442 2 6.238944223543896 -384.14783251190795 27.4887 0.1144 2441 +2443 2 6.061200508318187 -382.96586509073194 27.2432 0.1144 2442 +2444 2 6.190428561046659 -381.6772639779018 26.9026 0.1144 2443 +2445 2 6.8236682149722085 -379.811304559194 26.6077 0.1144 2444 +2446 2 7.584530865764393 -379.352822679313 26.3275 0.1144 2445 +2447 2 8.23555471205615 -378.5220152644547 26.091 0.1144 2446 +2448 2 8.263332392911636 -377.27301549273045 25.9245 0.1144 2447 +2449 2 8.569113958440234 -376.095800824926 25.8157 0.1144 2448 +2450 2 8.39365243850083 -374.8208253865052 25.7457 0.1144 2449 +2451 2 7.733213452859765 -373.61282639325947 25.6875 0.1144 2450 +2452 2 6.959365559714051 -372.11930099625846 25.6315 0.1144 2451 +2453 2 6.563565196298818 -371.0404548907237 25.5686 0.1144 2452 +2454 2 6.7252634385956185 -369.5059403676801 25.4775 0.1144 2453 +2455 2 7.249869394250204 -368.73223802541344 25.2872 0.1144 2454 +2456 2 6.969094098743014 -367.2859075371724 25.0428 0.1144 2455 +2457 2 6.473638521770482 -366.3106630619264 24.876 0.1144 2456 +2458 2 5.941303053048806 -365.934744751224 24.7576 0.1144 2457 +2459 2 5.327044889859813 -364.44513310483995 24.6239 0.1144 2458 +2460 2 4.953879200619639 -363.04391581536413 24.371 0.1144 2459 +2461 2 4.780233354396842 -361.711690502039 24.0503 0.1144 2460 +2462 2 4.374988298449978 -361.02512752039576 23.784 0.1144 2461 +2463 2 3.937631741296059 -360.59278075726553 23.5345 0.1144 2462 +2464 2 3.9570692297803873 -359.2632633518427 23.2407 0.1144 2463 +2465 2 4.147771283978422 -357.64963075945417 23.0065 0.1144 2464 +2466 2 4.090951867145577 -356.47599594780854 22.8107 0.1144 2465 +2467 2 3.879888442900125 -355.5671318399664 22.6803 0.1144 2466 +2468 2 3.8500017750950164 -354.30741741453625 22.6038 0.1144 2467 +2469 2 3.956900091123714 -352.8097575477022 22.6022 0.1144 2468 +2470 2 4.121172130572596 -351.202529821818 22.6284 0.1144 2469 +2471 2 4.0801572392483365 -349.96628184137614 22.6144 0.1144 2470 +2472 2 4.007908706549259 -348.74157051053527 22.6055 0.1144 2471 +2473 2 3.9060803380087776 -347.57481032931895 22.5849 0.1144 2472 +2474 2 3.618348954272186 -346.5093941826236 22.4881 0.1144 2473 +2475 2 3.1036515070414907 -344.97109678573304 22.3854 0.1144 2474 +2476 2 2.6745673632266787 -343.4455675480831 22.3392 0.1144 2475 +2477 2 2.466973418231319 -342.00495153947816 22.3195 0.1144 2476 +2478 2 2.5509283284901443 -340.75665009375064 22.2873 0.1144 2477 +2479 2 2.4874163216534484 -339.40395469650025 22.2265 0.1144 2478 +2480 2 2.0781117343703173 -337.89098689189615 22.1945 0.1144 2479 +2481 2 1.5202066969138315 -336.34242261834225 22.2008 0.1144 2480 +2482 2 1.1639592433957873 -334.8469163041895 22.2114 0.1144 2481 +2483 2 1.6339004223983764 -334.0416628990394 22.2117 0.1144 2482 +2484 2 2.020471149316336 -333.07884031711313 22.1446 0.1144 2483 +2485 2 1.4911181228740702 -331.56672918558723 22.0735 0.1144 2484 +2486 2 0.6212108434320811 -331.17299324685183 22.0143 0.1144 2485 +2487 2 -0.039371904037729166 -330.5126263691738 21.9672 0.1144 2486 +2488 2 -0.47219592103091657 -328.98971511813625 21.9725 0.1144 2487 +2489 2 -0.9352665012849286 -327.45695154580875 21.9922 0.1144 2488 +2490 2 -1.5470251336086278 -325.91307318544443 21.9685 0.1144 2489 +2491 2 -2.105506195005198 -324.3723497601184 21.9486 0.1144 2490 +2492 2 -1.9492289655127308 -323.4213108108016 21.9313 0.1144 2491 +2493 2 -1.7959616190665386 -322.2266328582066 21.9172 0.1144 2492 +2494 2 -1.8958305520616534 -320.84938346063734 21.907 0.1144 2493 +2495 2 -1.7866375511318537 -321.09292896174037 22.0968 0.1144 2494 +2496 2 -1.2725462617431305 -322.5085612348225 23.1794 0.1144 2495 +2497 2 -0.3335962298203512 -323.7919533327134 23.7511 0.1144 2496 +2498 2 0.7789908461557431 -322.97801914651046 24.2962 0.1144 2497 +2499 2 1.8575258139335276 -323.70807240207995 24.9749 0.1144 2498 +2500 2 1.6775005018261453 -324.2932998610024 26.4169 0.1144 2499 +2501 2 1.3033808581400166 -325.1215937425064 27.3603 0.1144 2500 +2502 2 0.4610599271774447 -326.5599204277323 28.3276 0.1144 2501 +2503 2 -0.6385383969784044 -326.5332485872269 29.078 0.1144 2502 +2504 2 -1.7536455192206901 -325.7864645443769 29.6918 0.1144 2503 +2505 2 -2.827514105283626 -326.34111271667103 30.6006 0.1144 2504 +2506 2 -3.553494726527866 -326.5811363874319 31.3698 0.1144 2505 +2507 2 -3.160065545368454 -328.03750843257257 32.0634 0.1144 2506 +2508 2 -2.5181633648994293 -328.3508496816594 32.655 0.1144 2507 +2509 2 -1.6941021502841238 -329.0013685027854 33.1794 0.1144 2508 +2510 2 -0.614454164829418 -330.0397588775362 33.6935 0.1144 2509 +2511 2 0.4758518231512028 -330.4520455231716 34.2289 0.1144 2510 +2512 2 1.4272929747973464 -330.3806486949288 34.634 0.1144 2511 +2513 2 2.3334042085160362 -331.80489315805426 34.8788 0.1144 2512 +2514 2 3.3391367277703594 -333.12590258057025 35.0134 0.1144 2513 +2515 2 4.434176183961263 -332.30761477183756 35.0507 0.1144 2514 +2516 2 5.567019933165042 -333.15682559615345 35.0078 0.1144 2515 +2517 2 6.6978330821197645 -332.4314333544673 34.8793 0.1144 2516 +2518 2 7.72153527890746 -333.53883988066724 34.6486 0.1144 2517 +2519 2 8.559418659038627 -335.00650924989833 34.3689 0.1144 2518 +2520 2 9.292109793519877 -335.2649399317475 34.1166 0.1144 2519 +2521 2 10.036248809678199 -336.18912592455 33.9251 0.1144 2520 +2522 2 10.774639252883112 -337.6348748610276 33.7971 0.1144 2521 +2523 2 11.487868079944121 -337.4621575285245 33.7277 0.1144 2522 +2524 2 12.11690914698076 -338.85319613453856 33.7056 0.1144 2523 +2525 2 12.473280131015251 -340.3320177141917 33.7126 0.1144 2524 +2526 2 12.700612193292507 -341.7759159259573 33.7338 0.1144 2525 +2527 2 12.986119950721644 -343.2471566212605 33.7655 0.1144 2526 +2528 2 13.376130301933756 -344.7381921969737 33.8103 0.1144 2527 +2529 2 13.892299455202625 -346.2583292459598 33.8733 0.1144 2528 +2530 2 14.527579926282861 -346.7844339089845 33.9598 0.1144 2529 +2531 2 15.186236065244437 -347.4190715102226 34.0724 0.1144 2530 +2532 2 15.943289253184432 -348.929815072384 34.2502 0.1144 2531 +2533 2 16.830299276890436 -348.57459865081864 34.522 0.1144 2532 +2534 2 17.75227050351358 -349.84089871464965 34.8704 0.1144 2533 +2535 2 18.69263408094345 -351.1913313230838 35.2531 0.1144 2534 +2536 2 19.689988762696572 -351.6951139609806 35.5989 0.1144 2535 +2537 2 20.722298444200547 -351.83289664190033 35.8708 0.1144 2536 +2538 2 21.8256479588607 -351.69750950163734 36.1679 0.1144 2537 +2539 2 22.77572542079855 -351.0543624151138 36.4188 0.1144 2538 +2540 2 23.68405909655769 -350.9051307305363 36.6948 0.1144 2539 +2541 2 24.612401976063587 -350.66754689297835 37.051 0.1144 2540 +2542 2 25.572713003395883 -348.88076635460203 37.4536 0.1144 2541 +2543 2 26.540327880755676 -348.8481673983849 37.8834 0.1144 2542 +2544 2 27.49871229957966 -346.9605981240443 38.3328 0.1144 2543 +2545 2 28.391943413333244 -346.782525789538 38.843 0.1144 2544 +2546 2 29.4397854386034 -347.12695124338205 39.5018 0.1144 2545 +2547 2 30.56293332637116 -346.01887394822836 40.0254 0.1144 2546 +2548 2 31.67995743862072 -346.5687160593081 40.4438 0.1144 2547 +2549 2 32.808621843080225 -345.4390982417139 40.8887 0.1144 2548 +2550 2 33.917974899424614 -345.94485978165045 41.2605 0.1144 2549 +2551 2 34.94331329226436 -345.9910880995314 41.5999 0.1144 2550 +2552 2 35.66366808954585 -343.70024499992877 42.0686 0.1144 2551 +2553 2 -2.3541101190998006 -319.6472683537946 21.9118 0.1144 2494 +2554 2 -2.917447172934807 -319.4533164813295 21.9265 0.1144 2553 +2555 2 -3.4257785840223676 -318.46910248436956 21.9473 0.1144 2554 +2556 2 -3.8022518843295288 -316.96566285224617 21.9751 0.1144 2555 +2557 2 -4.075330097901066 -315.4993034845997 22.0119 0.1144 2556 +2558 2 -4.3718394467497745 -314.09356097778056 22.0689 0.1144 2557 +2559 2 -4.787601466191987 -313.34392268857897 22.1604 0.1144 2558 +2560 2 -5.323855806004374 -312.92816619162625 22.2709 0.1144 2559 +2561 2 -5.784608262351952 -311.4505190756873 22.3685 0.1144 2560 +2562 2 -6.118893185047838 -309.96714039282625 22.4515 0.1144 2561 +2563 2 -6.751893869888264 -308.4671721009236 22.5245 0.1144 2562 +2564 2 -7.392406435585883 -306.98513579166405 22.5919 0.1144 2563 +2565 2 -7.501986660921247 -305.63922677733575 22.6605 0.1144 2564 +2566 2 -7.732006840813966 -304.357142891692 22.7587 0.1144 2565 +2567 2 -7.815893558450199 -303.1539035749445 22.9114 0.1144 2566 +2568 2 -7.9755696832086755 -301.9365655149547 23.0838 0.1144 2567 +2569 2 -8.538639444698518 -301.61961919183216 23.2872 0.1144 2568 +2570 2 -8.950030099626488 -300.65462675976613 23.4962 0.1144 2569 +2571 2 -9.281024540984589 -299.16846646261075 23.7242 0.1144 2570 +2572 2 -9.828721346540533 -297.657373287977 23.9332 0.1144 2571 +2573 2 -10.241589218136241 -296.35881765748644 24.1065 0.1144 2572 +2574 2 -10.454967664705052 -295.30496801896163 24.3039 0.1144 2573 +2575 2 -10.675919662693104 -294.2605169011237 24.478 0.1144 2574 +2576 2 -10.766795704043702 -292.9994942542516 24.6124 0.1144 2575 +2577 2 -10.838021922545238 -291.7222142507333 24.7181 0.1144 2576 +2578 2 -10.95926875020973 -290.5138805815164 24.81 0.1144 2577 +2579 2 -10.618731005706863 -288.80755695984544 24.8911 0.1144 2578 +2580 2 -10.252392328744193 -287.27625684949385 24.9717 0.1144 2579 +2581 2 -10.692157713284061 -286.3798808618865 25.1512 0.1144 2580 +2582 2 -10.904874943062993 -285.30316285280014 25.3634 0.1144 2581 +2583 2 -11.005190166315614 -284.0615362385305 25.5328 0.1144 2582 +2584 2 -11.091733873355153 -282.7972229332244 25.658 0.1144 2583 +2585 2 -11.065175326875263 -281.3951819983037 25.7425 0.1144 2584 +2586 2 -10.822616758485367 -279.78102072199897 25.79 0.1144 2585 +2587 2 -11.046732605711668 -278.69458790899444 25.8049 0.1144 2586 +2588 2 -10.965944646274224 -277.2475641037731 25.8075 0.1144 2587 +2589 2 -10.633121805972806 -275.5887312962587 25.8097 0.1144 2588 +2590 2 -10.569484138519073 -274.3586312634706 25.8128 0.1144 2589 +2591 2 -10.264552092441974 -273.3178808412436 25.8171 0.1144 2590 +2592 2 -10.023644228002496 -272.21544393737196 25.823 0.1144 2591 +2593 2 -10.260594470094091 -270.7766106743989 25.8312 0.1144 2592 +2594 2 -10.0376710038706 -269.70925327809636 25.8542 0.1144 2593 +2595 2 -9.778356067941672 -268.62866084237515 25.8774 0.1144 2594 +2596 2 -9.667323954289898 -267.4184808578004 25.9049 0.1144 2595 +2597 2 -9.891169407587867 -266.0003987916341 25.9442 0.1144 2596 +2598 2 -10.355356107101926 -264.50020079561256 26.0149 0.1144 2597 +2599 2 -10.873123598508457 -262.9678059501489 26.112 0.1144 2598 +2600 2 -11.206386207006787 -261.7653397286263 26.1936 0.1144 2599 +2601 2 -11.39459762149832 -260.6090653036249 26.2498 0.1144 2600 +2602 2 -11.577462212461057 -259.43844286774004 26.2817 0.1144 2601 +2603 2 -11.72264193305601 -258.2500538769581 26.2893 0.1144 2602 +2604 2 -11.896197075799364 -257.215604267417 26.2739 0.1144 2603 +2605 2 -12.006312578361701 -255.97200446821 26.2403 0.1144 2604 +2606 2 -11.931009001115513 -254.49270708099283 26.1951 0.1144 2605 +2607 2 -11.878737124072146 -253.00091514604532 26.1269 0.1144 2606 +2608 2 -11.774556367024203 -251.50777931081313 26.0147 0.1144 2607 +2609 2 -11.763230116232492 -250.1438505785183 25.8738 0.1144 2608 +2610 2 -11.92351239883294 -248.93549401943744 25.7321 0.1144 2609 +2611 2 -12.113683248869776 -247.911755960814 25.5978 0.1144 2610 +2612 2 -12.302969343371544 -246.79115008042254 25.4755 0.1144 2611 +2613 2 -12.49220307206059 -245.57991826752436 25.3711 0.1144 2612 +2614 2 -12.683087504700055 -244.37879761438188 25.2896 0.1144 2613 +2615 2 -12.872949623141906 -243.05581570594856 25.2314 0.1144 2614 +2616 2 -13.0628117415838 -241.6547939066752 25.1948 0.1144 2615 +2617 2 -13.221710612579074 -240.26662269469406 25.1899 0.1144 2616 +2618 2 -13.234479815437496 -238.96988090217062 25.2617 0.1144 2617 +2619 2 -13.084555316141788 -237.81583146395093 25.4449 0.1144 2618 +2620 2 -12.818239751150685 -236.532390837924 25.6571 0.1144 2619 +2621 2 -12.39398656291138 -234.7131806752148 25.7811 0.1144 2620 +2622 2 -12.028276275701572 -233.12173398327795 25.8468 0.1144 2621 +2623 2 -11.82140480446759 -231.8363613519102 25.8997 0.1144 2622 +2624 2 -11.712729152388931 -230.62868526044448 25.8978 0.1144 2623 +2625 2 -11.65412957686901 -229.38383028666505 25.8138 0.1144 2624 +2626 2 -11.47381475248379 -228.23820813093633 25.6864 0.1144 2625 +2627 2 -11.202343075671976 -227.17650557861953 25.5406 0.1144 2626 +2628 2 -11.069070212289901 -225.9682597771759 25.384 0.1144 2627 +2629 2 -11.4193948183391 -224.50413527660558 25.2513 0.1144 2628 +2630 2 -11.978236977143368 -223.00109905088706 25.1312 0.1144 2629 +2631 2 -12.41787642212023 -221.70585430163965 24.9495 0.1144 2630 +2632 2 -12.62938923820623 -220.502255446152 24.688 0.1144 2631 +2633 2 -12.493707547438262 -219.10255313694103 24.3824 0.1144 2632 +2634 2 -12.234620873651238 -217.87448622378753 24.0584 0.1144 2633 +2635 2 -12.313681732751022 -216.54607328350758 23.7236 0.1144 2634 +2636 2 -12.659459077956726 -215.3026891308299 23.445 0.1144 2635 +2637 2 -13.016910945167695 -214.40053846935086 23.249 0.1144 2636 +2638 2 -13.343752050127051 -213.67103385996262 23.1279 0.1144 2637 +2639 2 -13.376174177417639 -212.34823449392252 23.0349 0.1144 2638 +2640 2 -13.330899827853358 -210.888261898363 23.0116 0.1144 2639 +2641 2 -13.46244559089773 -209.71626455345773 23.0575 0.1144 2640 +2642 2 -13.647184424556059 -208.589289403715 23.131 0.1144 2641 +2643 2 -13.87962884505393 -207.35085475531164 23.2082 0.1144 2642 +2644 2 -14.332144124145884 -205.8671948948438 23.2611 0.1144 2643 +2645 2 -14.854191584050682 -204.36928032915327 23.2725 0.1144 2644 +2646 2 -15.199789931344128 -202.9101093902239 23.2153 0.1144 2645 +2647 2 -15.403103907841157 -201.52328560269146 23.0948 0.1144 2646 +2648 2 -15.635239596744142 -200.10997532875479 22.9719 0.1144 2647 +2649 2 -16.006727170930276 -198.64397373835135 22.8244 0.1144 2648 +2650 2 -16.50097833420979 -197.2559913453258 22.5947 0.1144 2649 +2651 2 -16.925641849280666 -196.61939993687903 22.2984 0.1144 2650 +2652 2 -17.248657888211852 -195.8926574368894 21.9718 0.1144 2651 +2653 2 -17.62410577273839 -194.68732301210997 21.6337 0.1144 2652 +2654 2 -17.84027465950163 -193.3401274827674 21.2777 0.1144 2653 +2655 2 -17.36963151699601 -192.26405347382013 20.8882 0.1144 2654 +2656 2 -16.778090102128047 -190.06595474925984 20.5276 0.1144 2655 +2657 2 -16.523947715212344 -188.88905941035128 20.2074 0.1144 2656 +2658 2 -16.220255318911725 -187.87647919662277 19.9592 0.1144 2657 +2659 2 -15.703003170050891 -187.09524242440762 19.7959 0.1144 2658 +2660 2 -15.21957558944618 -186.2755560655795 19.6809 0.1144 2659 +2661 2 -14.961279866131747 -185.21400867416014 19.5334 0.1144 2660 +2662 2 -15.043636717198865 -183.91021084896283 19.3395 0.1144 2661 +2663 2 -15.44051486220745 -182.44416045744575 19.1546 0.1144 2662 +2664 2 -15.89297777548667 -180.9589515113513 18.9909 0.1144 2663 +2665 2 -16.353873993662972 -179.47637210991286 18.8551 0.1144 2664 +2666 2 -16.84607191633468 -177.98522867609324 18.7663 0.1144 2665 +2667 2 -17.365319725992023 -176.8252648151794 18.7361 0.1144 2666 +2668 2 -17.888519233777004 -176.62688229782697 18.7584 0.1144 2667 +2669 2 -18.293722850474126 -175.4329844874172 18.8291 0.1144 2668 +2670 2 -18.433690991852572 -174.07858673185976 18.9447 0.1144 2669 +2671 2 -18.421375253900422 -172.81106660728733 19.0888 0.1144 2670 +2672 2 -18.602500153943325 -171.4508282400928 19.3399 0.1144 2671 +2673 2 -19.1432486962498 -169.983292101267 19.8206 0.1144 2672 +2674 2 -19.455298379845033 -168.56814992339932 20.1256 0.1144 2673 +2675 2 -19.531594824780825 -167.2698646206239 19.6319 0.1144 2674 +2676 2 -9.205505358276099 -271.16129428490433 25.9259 0.1144 2593 +2677 2 -8.089641106908616 -270.8863596214441 26.1243 0.1144 2676 +2678 2 -6.97163532050034 -271.93333231763035 26.2118 0.1144 2677 +2679 2 -5.853681899904842 -272.2437975136355 26.3128 0.1144 2678 +2680 2 -4.735315016088961 -272.10576064376016 26.4241 0.1144 2679 +2681 2 -3.617852426583738 -271.85527836490496 26.54 0.1144 2680 +2682 2 -2.499899005988212 -272.27480271068276 26.6548 0.1144 2681 +2683 2 -1.3818932195800073 -273.3263322115291 26.7636 0.1144 2682 +2684 2 -0.2635787015767903 -272.7858248624693 26.8648 0.1144 2683 +2685 2 0.855576031128578 -273.49095279071713 26.9567 0.1144 2684 +2686 2 1.9981595077495626 -274.31550869649936 27.0205 0.1144 2685 +2687 2 3.1419771235174636 -273.314434573801 27.0614 0.1144 2686 +2688 2 4.285709546435527 -274.0120520796452 27.085 0.1144 2687 +2689 2 5.428995679096218 -273.5404014018679 27.096 0.1144 2688 +2690 2 6.573356491767115 -273.75002460367654 27.0992 0.1144 2689 +2691 2 7.717088914685277 -274.24684088091936 27.0987 0.1144 2690 +2692 2 8.860821337603397 -274.0760799589585 27.0978 0.1144 2691 +2693 2 10.004192663113855 -273.46209191670033 27.0965 0.1144 2692 +2694 2 11.148553475784752 -273.7930901492096 27.0947 0.1144 2693 +2695 2 12.292285898702872 -274.4511637491551 27.0923 0.1144 2694 +2696 2 13.43565722421333 -273.69313077339353 27.0888 0.1144 2695 +2697 2 14.579389647131407 -274.33196000012526 27.084 0.1144 2696 +2698 2 15.723122070049541 -273.44840780818254 27.0774 0.1144 2697 +2699 2 16.866460568522882 -274.05075704325753 27.068 0.1144 2698 +2700 2 18.01076901538113 -274.8651642961625 27.0546 0.1144 2699 +2701 2 19.154501438299192 -273.7658456941907 27.036 0.1144 2700 +2702 2 20.298233861217312 -274.14213234182375 27.0108 0.1144 2701 +2703 2 21.441657552540534 -273.4846201896307 26.9776 0.1144 2702 +2704 2 22.528163008776005 -273.83630351218414 26.9219 0.1144 2703 +2705 2 23.58773771658234 -273.5105170998231 26.8452 0.1144 2704 +2706 2 24.646322937228163 -272.4083093060059 26.7515 0.1144 2705 +2707 2 25.704384499746638 -271.90774095907744 26.6445 0.1144 2706 +2708 2 26.762032599044716 -271.5231937225022 26.5268 0.1144 2707 +2709 2 27.82000896871338 -271.22177862959336 26.4009 0.1144 2708 +2710 2 28.87801816541912 -270.8198286849813 26.269 0.1144 2709 +2711 2 29.935090240777114 -270.3111520004418 26.1306 0.1144 2710 +2712 2 30.993642634385836 -269.17098332643644 25.9854 0.1144 2711 +2713 2 32.06565609610287 -269.06109880967796 25.796 0.1144 2712 +2714 2 32.93436287976664 -268.82280151488186 25.6022 0.1144 2713 +2715 2 33.80035210444966 -267.77754308533434 25.4064 0.1144 2714 +2716 2 34.66683216022291 -266.44967278967135 25.2065 0.1144 2715 +2717 2 35.53336458180894 -266.21232941148907 25.01 0.1144 2716 +2718 2 36.3993538064919 -264.441285922529 24.8226 0.1144 2717 +2719 2 37.22077495379136 -263.75485150330627 24.6469 0.1144 2718 +2720 2 37.89763635369961 -263.18576914818954 24.4745 0.1144 2719 +2721 2 38.572050588555314 -262.6310879402425 24.1195 0.1144 2720 +2722 2 -2.5160647500064144 -324.2726329008424 22.6628 0.1144 2491 +2723 2 -3.094923623785597 -324.1897088128527 23.2539 0.1144 2722 +2724 2 -3.195814178441765 -322.8376843590632 23.3587 0.1144 2723 +2725 2 -2.972726434988651 -321.3608094412839 23.4063 0.1144 2724 +2726 2 -3.0127159105321795 -320.0755434034137 23.431 0.1144 2725 +2727 2 -3.019785804666938 -318.72231536586855 23.4333 0.1144 2726 +2728 2 -2.7422506201407657 -316.89453051356566 23.4068 0.1144 2727 +2729 2 -2.4034940058075023 -315.09320926221574 23.3233 0.1144 2728 +2730 2 -2.3714894148030368 -313.7923635557702 23.2305 0.1144 2729 +2731 2 -2.646706061832205 -312.6302702593689 23.1627 0.1144 2730 +2732 2 -2.7620386542405697 -311.4944652152358 23.1224 0.1144 2731 +2733 2 -2.532708405160733 -309.9087643131439 23.1089 0.1144 2732 +2734 2 -2.180720369934363 -308.83590626332284 23.1195 0.1144 2733 +2735 2 -1.6066143616611015 -308.11492805568685 23.1573 0.1144 2734 +2736 2 -0.9863011911534727 -307.4479940192661 23.2539 0.1144 2735 +2737 2 -0.6107023302010788 -306.48044502231494 23.351 0.1144 2736 +2738 2 -0.6256099665170893 -305.16961102130483 23.4249 0.1144 2737 +2739 2 -0.8849690296883068 -303.7172302951393 23.4743 0.1144 2738 +2740 2 -1.2491425198204809 -302.2235789243663 23.5007 0.1144 2739 +2741 2 -1.7116370761344228 -300.7016189398769 23.5045 0.1144 2740 +2742 2 -2.146996552613004 -299.179365401956 23.4877 0.1144 2741 +2743 2 -2.098916349635033 -297.9197100935822 23.4606 0.1144 2742 +2744 2 -1.7090965806290228 -296.96542470644965 23.4274 0.1144 2743 +2745 2 -1.375782909237273 -295.9495000054554 23.3719 0.1144 2744 +2746 2 -1.3709109890216524 -294.6520695680483 23.2629 0.1144 2745 +2747 2 -1.752240281767243 -293.1673630582557 23.1669 0.1144 2746 +2748 2 -2.4751256263092074 -291.6533567396653 23.0939 0.1144 2747 +2749 2 -3.2670109760202024 -291.00097329467417 23.0427 0.1144 2748 +2750 2 -4.327098036606088 -291.73612054257904 22.9975 0.1144 2749 +2751 2 32.939352813456665 -488.62335116103606 42.2786 0.1144 2354 +2752 2 33.975675171113814 -488.0112900183558 42.3366 0.1144 2751 +2753 2 34.93661166459444 -489.3803577611384 42.4264 0.1144 2752 +2754 2 35.851010032334955 -490.897893384611 42.4684 0.1144 2753 +2755 2 36.93098457165038 -490.37821121999906 42.3822 0.1144 2754 +2756 2 38.061685086988476 -490.8050749952846 42.0728 0.1144 2755 +2757 2 39.162686343840235 -489.82854290401593 41.4537 0.1144 2756 +2758 2 40.19575855842478 -490.92288595108374 40.6202 0.1144 2757 +2759 2 41.19291161959185 -492.0439607787096 39.5002 0.1144 2758 +2760 2 40.49343868274032 -491.4586609756019 38.3278 0.1144 2759 +2761 2 39.486954645957766 -491.0851968119086 37.3724 0.1144 2760 +2762 2 38.66626148819189 -492.18593359195535 36.7038 0.1144 2761 +2763 2 38.29032686332575 -494.0265016719351 35.8243 0.1144 2762 +2764 2 38.248542508412456 -495.3818890020201 34.946 0.1144 2763 +2765 2 38.250969951568074 -496.6813012928777 34.1592 0.1144 2764 +2766 2 37.700318003019326 -497.5942500599498 33.4225 0.1144 2765 +2767 2 37.727263259346856 -498.84918623566875 32.4892 0.1144 2766 +2768 2 38.08088385736349 -500.33301633456665 31.7052 0.1144 2767 +2769 2 38.444028830131955 -501.16533919094155 31.2886 0.1144 2768 +2770 2 38.75118418362213 -501.9484018118987 30.9599 0.1144 2769 +2771 2 38.945635002157175 -503.1436492418262 30.716 0.1144 2770 +2772 2 39.199997412644336 -504.6973045042804 30.5256 0.1144 2771 +2773 2 39.547607561295834 -506.2187391077312 30.3486 0.1144 2772 +2774 2 39.81257763875781 -507.68548436718027 30.1272 0.1144 2773 +2775 2 39.88468240962822 -509.08964281383817 29.7713 0.1144 2774 +2776 2 39.777158112893176 -510.40794698875413 29.2379 0.1144 2775 +2777 2 39.291664980044516 -511.4162403431687 28.7073 0.1144 2776 +2778 2 38.52082235949372 -512.4527006613234 28.348 0.1144 2777 +2779 2 37.81699015697974 -514.2441785255387 28.1529 0.1144 2778 +2780 2 37.25991091017377 -515.26716031694 28.1338 0.1144 2779 +2781 2 36.737268184184174 -516.2407495786829 28.2836 0.1144 2780 +2782 2 36.122257296372425 -518.2349686999221 28.5295 0.1144 2781 +2783 2 35.47039323537846 -519.2915249794363 28.763 0.1144 2782 +2784 2 34.82641377174896 -519.962407726525 28.9369 0.1144 2783 +2785 2 34.17486936891305 -520.8151083234317 29.0494 0.1144 2784 +2786 2 34.201033577357606 -522.1467075151625 29.1133 0.1144 2785 +2787 2 34.742813738610934 -523.601323380525 29.1267 0.1144 2786 +2788 2 35.31555404572778 -525.2447169566249 29.1169 0.1144 2787 +2789 2 35.88837954569444 -526.782262585119 29.0968 0.1144 2788 +2790 2 36.227256270066675 -527.6122020958783 29.0699 0.1144 2789 +2791 2 36.24996331089734 -528.9583389639607 29.0321 0.1144 2790 +2792 2 36.255702159239675 -530.3229502812817 28.973 0.1144 2791 +2793 2 36.26152620043172 -531.6872463190837 28.8789 0.1144 2792 +2794 2 36.385360853394396 -532.8891268142503 28.791 0.1144 2793 +2795 2 36.59437413861511 -534.1858826122987 28.7165 0.1144 2794 +2796 2 36.72961973834629 -535.5001271487166 30.497 0.1144 2795 +2797 2 36.88628877986795 -537.0190941925293 30.7961 0.1144 2796 +2798 2 37.04353694691289 -538.4399224364813 30.924 0.1144 2797 +2799 2 37.20185979396803 -539.8417439597305 31.0682 0.1144 2798 +2800 2 37.24871465426159 -541.2431599411449 31.1998 0.1144 2799 +2801 2 37.187527253443555 -542.6411261876344 31.2956 0.1144 2800 +2802 2 37.126968242378325 -544.0417706469826 31.3592 0.1144 2801 +2803 2 37.066409231313095 -545.4441935820072 31.3936 0.1144 2802 +2804 2 37.00590258606059 -546.8499916270695 31.4112 0.1144 2803 +2805 2 37.189021543964024 -533.0780762530006 28.0557 0.1144 2795 +2806 2 37.69785510861046 -531.962783116152 27.3216 0.1144 2805 +2807 2 38.234734848409495 -530.1300130817218 26.36 0.1144 2806 +2808 2 38.95646795511456 -529.1674725706356 25.2701 0.1144 2807 +2809 2 39.8330580280808 -528.6805610071682 24.221 0.1144 2808 +2810 2 40.733366759981635 -528.6086815803073 23.2109 0.1144 2809 +2811 2 41.63696597322026 -527.1217921892758 22.2401 0.1144 2810 +2812 2 42.33704956654814 -528.2608189616822 21.3112 0.1144 2811 +2813 2 43.21486066837849 -528.5720935743533 20.4178 0.1144 2812 +2814 2 44.23698434989282 -528.8487634866 19.5898 0.1144 2813 +2815 2 45.275670680351226 -529.6252020105202 18.7783 0.1144 2814 +2816 2 46.34832013203851 -529.8895600621184 17.8699 0.1144 2815 +2817 2 47.228253052155345 -528.4774278302311 16.9246 0.1144 2816 +2818 2 48.09044493566554 -528.1373785703236 15.9293 0.1144 2817 +2819 2 48.95229285149729 -526.5109306542171 14.904 0.1144 2818 +2820 2 50.02260635701234 -527.3271628280539 13.9182 0.1144 2819 +2821 2 51.09720362514537 -527.8021253864453 12.9666 0.1144 2820 +2822 2 52.176039422527 -526.9858410123537 12.0495 0.1144 2821 +2823 2 53.26345636484269 -527.3057486147108 11.1864 0.1144 2822 +2824 2 54.36110446350632 -526.6254863990689 10.3911 0.1144 2823 +2825 2 55.46183121855837 -527.3700285909244 9.6422 0.1144 2824 +2826 2 56.56647684470106 -527.3108167671168 8.9192 0.1144 2825 +2827 2 57.67403954313774 -526.7398233538722 8.2449 0.1144 2826 +2828 2 58.7812428606767 -526.1226694858237 7.628 0.1144 2827 +2829 2 59.89453941138409 -526.12798019232 7.0648 0.1144 2828 +2830 2 61.01033859453976 -525.1819001086271 6.5402 0.1144 2829 +2831 2 62.081764111443434 -525.3793354363867 5.6092 0.1144 2830 +2832 2 37.711839654110186 -498.78387205480806 31.234 0.1144 2767 +2833 2 37.75163142698244 -498.1082661633397 29.5123 0.1144 2832 +2834 2 38.66943321145096 -498.18374893159614 28.7342 0.1144 2833 +2835 2 39.57424553387755 -498.99483892608464 28.2153 0.1144 2834 +2836 2 40.418012731274345 -500.38379771662346 27.7838 0.1144 2835 +2837 2 41.103747790138854 -501.9813500352661 27.3325 0.1144 2836 +2838 2 41.849567330397676 -502.2729192442849 26.8614 0.1144 2837 +2839 2 42.72116916208633 -503.2470449012531 26.4498 0.1144 2838 +2840 2 43.48248518879545 -504.10499998856966 26.0716 0.1144 2839 +2841 2 44.024620244290304 -504.39494550652745 25.6962 0.1144 2840 +2842 2 44.31408210889366 -505.949234123678 25.3064 0.1144 2841 +2843 2 44.593925793682644 -507.5041903015365 24.8336 0.1144 2842 +2844 2 45.174546590292486 -508.816920612986 23.8126 0.1144 2843 +2845 2 46.22147691669811 -509.69436310693936 22.8038 0.1144 2844 +2846 2 47.236652322984895 -508.4695195090902 21.5651 0.1144 2845 +2847 2 48.01780328463224 -509.1887635143107 20.2329 0.1144 2846 +2848 2 47.681525087358736 -508.2040206875754 18.6731 0.1144 2847 +2849 2 48.77025766224766 -508.04655630058573 18.0603 0.1144 2848 +2850 2 49.90637408820845 -507.8926955010019 17.9156 0.1144 2849 +2851 2 51.031382504277474 -508.6146170145616 17.8437 0.1144 2850 +2852 2 52.12264134057688 -508.5156488993768 17.845 0.1144 2851 +2853 2 52.98309781901727 -509.32836698728084 18.0399 0.1144 2852 +2854 2 53.90515734007322 -509.870351446202 18.2295 0.1144 2853 +2855 2 54.36541896533044 -510.6424275661165 18.2042 0.1144 2854 +2856 2 54.48159487402411 -512.1322263652548 18.1378 0.1144 2855 +2857 2 54.51049205466878 -513.5640464923575 18.0702 0.1144 2856 +2858 2 54.93137735889459 -515.1961332091274 17.9919 0.1144 2857 +2859 2 55.236534939172785 -516.8164375259895 17.9057 0.1144 2858 +2860 2 55.52457815608733 -518.385329898902 17.8392 0.1144 2859 +2861 2 55.71546258872674 -519.82410813802 17.7978 0.1144 2860 +2862 2 55.80326307527203 -521.2450010084343 17.7231 0.1144 2861 +2863 2 55.9162751347274 -522.6611876381761 17.6085 0.1144 2862 +2864 2 56.2300285806223 -524.0867679803637 17.5188 0.1144 2863 +2865 2 56.44808402171727 -525.496146561346 17.3883 0.1144 2864 +2866 2 41.53697000206293 -492.18456883967787 38.8354 0.1144 2759 +2867 2 42.35334984973549 -491.7055975583973 37.3444 0.1144 2866 +2868 2 42.886935581044966 -493.1573009756397 36.1418 0.1144 2867 +2869 2 43.396667817555574 -494.61613188642644 35.2881 0.1144 2868 +2870 2 44.015015332230966 -494.605951995122 34.715 0.1144 2869 +2871 2 44.66057760896199 -495.9024331478845 34.3064 0.1144 2870 +2872 2 45.55600690941893 -497.28199861838766 34.0612 0.1144 2871 +2873 2 46.65512951393012 -498.11815350874605 33.7977 0.1144 2872 +2874 2 47.68426393988061 -496.58258244731746 33.4432 0.1144 2873 +2875 2 48.41010311935338 -496.04623166706335 33.0543 0.1144 2874 +2876 2 49.08714110812741 -494.14410711948403 32.6427 0.1144 2875 +2877 2 49.27147661162429 -493.91838023281036 32.3439 0.1144 2876 +2878 2 50.224502090947034 -494.9327300520199 31.136 0.1144 2877 +2879 2 51.31002496770287 -495.7132893919269 30.5586 0.1144 2878 +2880 2 52.43046280771809 -494.7126607287216 30.2501 0.1144 2879 +2881 2 53.55769795167752 -495.3466896793614 29.9191 0.1144 2880 +2882 2 54.45105449043611 -494.7925138069746 29.6008 0.1144 2881 +2883 2 54.868326553583124 -496.3104792470077 29.3003 0.1144 2882 +2884 2 55.23994075986879 -497.91740596106615 28.9985 0.1144 2883 +2885 2 55.72973536578432 -499.5340501682371 28.6247 0.1144 2884 +2886 2 56.377389220789745 -500.97671067913717 28.096 0.1144 2885 +2887 2 56.985480861148716 -502.09239454553114 27.4091 0.1144 2886 +2888 2 57.79418173323994 -501.83987875120147 26.6221 0.1144 2887 +2889 2 58.89539311621618 -502.1262638305591 25.8985 0.1144 2888 +2890 2 60.00502136689683 -501.32231754432246 25.2477 0.1144 2889 +2891 2 61.06703202339713 -501.7146652316789 24.6662 0.1144 2890 +2892 2 61.659165473829106 -501.96222047285204 24.185 0.1144 2891 +2893 2 61.97985787822422 -503.457138692636 23.7799 0.1144 2892 +2894 2 62.50460817642717 -505.0623558432162 23.3138 0.1144 2893 +2895 2 63.473930711173765 -506.3171179652571 22.8309 0.1144 2894 +2896 2 64.49809391890153 -506.03767986931734 22.4798 0.1144 2895 +2897 2 65.42220668056538 -507.2213680710078 22.2554 0.1144 2896 +2898 2 66.2337247233962 -507.83852060262143 22.1316 0.1144 2897 +2899 2 66.56916720460192 -508.567144817787 22.0937 0.1144 2898 +2900 2 66.66658587096148 -510.01298327776885 22.1307 0.1144 2899 +2901 2 67.22422051448967 -511.45137236453076 22.2727 0.1144 2900 +2902 2 68.15025127244903 -512.9642034172583 22.4305 0.1144 2901 +2903 2 69.3121507966258 -511.91238611378844 21.1919 0.1144 2902 +2904 2 70.14857559868665 -510.8106863985978 20.3463 0.1144 2903 +2905 2 71.10364971330856 -510.49090674720014 19.7211 0.1144 2904 +2906 2 72.1600653722846 -509.5015099761935 18.8565 0.1144 2905 +2907 2 73.19707017235417 -510.3731531943571 17.9864 0.1144 2906 +2908 2 74.26630800354869 -511.07130500030934 17.3334 0.1144 2907 +2909 2 75.35158551809651 -510.6630841774541 16.8435 0.1144 2908 +2910 2 76.43042101370452 -510.9379703685098 16.5049 0.1144 2909 +2911 2 77.49932788139333 -511.1371210734958 16.2938 0.1144 2910 +2912 2 78.55661638700926 -512.4702145375117 16.1714 0.1144 2911 +2913 2 79.61012978336333 -512.8107096267286 16.0876 0.1144 2912 +2914 2 80.70125106100019 -512.975501305541 15.9999 0.1144 2913 +2915 2 81.83817967503417 -512.2513061808202 15.8585 0.1144 2914 +2916 2 82.97604920453554 -512.790941348914 15.7049 0.1144 2915 +2917 2 84.11148628966711 -513.8094734211384 15.5565 0.1144 2916 +2918 2 85.15541433324388 -513.2415842144354 15.4094 0.1144 2917 +2919 2 86.12654743952541 -514.538536846374 15.2029 0.1144 2918 +2920 2 87.0037219478382 -514.3964278674518 14.9283 0.1144 2919 +2921 2 88.10928416224279 -515.137056433651 14.6749 0.1144 2920 +2922 2 89.247969283174 -514.0934035693068 14.4606 0.1144 2921 +2923 2 90.3860574563163 -514.662161639933 14.209 0.1144 2922 +2924 2 91.45056323403688 -515.8835370561773 13.9625 0.1144 2923 +2925 2 92.50010229190445 -515.4505462424153 13.7053 0.1144 2924 +2926 2 93.61071421734242 -515.8472248613036 13.5037 0.1144 2925 +2927 2 94.47416716620828 -516.1453118033728 13.3442 0.1144 2926 +2928 2 95.43559379824265 -517.3573370378236 12.901 0.1144 2927 +2929 2 67.12193623204806 -512.6896728888273 22.6219 0.1144 2902 +2930 2 66.486398969617 -513.5044797249899 22.8148 0.1144 2929 +2931 2 66.4173347964144 -514.9519071974311 23.0262 0.1144 2930 +2932 2 66.10236490413641 -516.7574211196846 23.2259 0.1144 2931 +2933 2 65.78018496689332 -518.4307582528602 23.4292 0.1144 2932 +2934 2 65.85273912960427 -519.6691288193182 23.6611 0.1144 2933 +2935 2 66.11713318312617 -520.6049919620267 23.9721 0.1144 2934 +2936 2 66.12862950072305 -521.8485390221098 24.4282 0.1144 2935 +2937 2 65.4529602028716 -523.7666232836375 25.0243 0.1144 2936 +2938 2 64.88572778311301 -524.4387939558565 25.7802 0.1144 2937 +2939 2 64.62943465110354 -525.5549557304494 26.6196 0.1144 2938 +2940 2 64.39755422185563 -526.7165665685236 27.3505 0.1144 2939 +2941 2 64.15681373622883 -527.9465369298273 28.0084 0.1144 2940 +2942 2 63.91419900790659 -529.5621147392284 28.6558 0.1144 2941 +2943 2 63.66998594144661 -531.1754991702057 29.3034 0.1144 2942 +2944 2 63.38833816723479 -532.9425093529059 29.9564 0.1144 2943 +2945 2 63.04596451770308 -534.2692373714668 30.6323 0.1144 2944 +2946 2 62.68002458327822 -535.4778299046386 31.3384 0.1144 2945 +2947 2 62.47549726198119 -536.6649214069639 32.0793 0.1144 2946 +2948 2 62.56747160032603 -538.084220137436 32.8255 0.1144 2947 +2949 2 62.761416867088165 -539.5047613765364 33.5692 0.1144 2948 +2950 2 62.95478610991022 -540.8444368506628 34.314 0.1144 2949 +2951 2 63.14801779406973 -542.1876657893868 35.0571 0.1144 2950 +2952 2 63.34138703689173 -543.0963901121688 35.7977 0.1144 2951 +2953 2 63.44850296744541 -544.2238717927416 36.5218 0.1144 2952 +2954 2 63.44803695529108 -545.5409896702321 37.2151 0.1144 2953 +2955 2 63.27982822248584 -547.069937649059 37.91 0.1144 2954 +2956 2 62.91717876939876 -548.799390322619 38.6207 0.1144 2955 +2957 2 62.49727602182483 -550.0525987103921 39.3478 0.1144 2956 +2958 2 62.07831039559878 -551.0555487330372 40.091 0.1144 2957 +2959 2 61.65979105963008 -552.004595978944 40.8486 0.1144 2958 +2960 2 61.350023536515465 -553.081124774207 41.615 0.1144 2959 +2961 2 61.2186594593759 -554.3412239246212 42.3657 0.1144 2960 +2962 2 61.17417467521103 -555.6755670991873 43.1567 0.1144 2961 +2963 2 61.286055202187114 -557.1229420464372 43.9947 0.1144 2962 +2964 2 61.789374547371395 -558.7094254778898 44.7566 0.1144 2963 +2965 2 62.38909145181226 -560.2330422911302 45.4628 0.1144 2964 +2966 2 62.97999205347429 -560.7997441551764 46.149 0.1144 2965 +2967 2 63.41542992179606 -561.4530467521897 46.9946 0.1144 2966 +2968 2 63.787249844561074 -562.9995792985725 47.7943 0.1144 2967 +2969 2 64.15151334563615 -564.5891993714282 48.4674 0.1144 2968 +2970 2 64.51803950322177 -566.199961182569 49.0515 0.1144 2969 +2971 2 64.69515482869467 -567.4037339011503 49.5337 0.1144 2970 +2972 2 64.21604314520837 -568.6509408715928 49.761 0.1144 2971 +2973 2 63.72802686451047 -569.5711661546114 49.8134 0.1144 2972 +2974 2 63.23929700120988 -570.486367891497 49.7566 0.1144 2973 +2975 2 62.75065233075911 -572.2338602389095 49.6373 0.1144 2974 +2976 2 62.0530766620179 -574.0510719296359 49.5261 0.1144 2975 +2977 2 61.34613607766154 -574.7121183055824 49.4418 0.1144 2976 +2978 2 60.63990907590776 -575.3620026227296 49.3928 0.1144 2977 +2979 2 59.93296849155134 -576.7259437397443 49.3688 0.1144 2978 +2980 2 59.226656296947766 -578.4888089703676 49.3609 0.1144 2979 +2981 2 58.51971571259136 -579.16993265164 49.3606 0.1144 2980 +2982 2 49.54029689865165 -493.224635243338 32.3579 0.1144 2876 +2983 2 50.10300188043105 -492.4619200302101 31.8732 0.1144 2982 +2984 2 50.36427694444189 -491.32055410606654 31.4664 0.1144 2983 +2985 2 50.46315541879392 -489.9970005618716 31.1814 0.1144 2984 +2986 2 50.655370618279846 -488.7483228558789 30.9907 0.1144 2985 +2987 2 51.16869838542043 -487.8527074211001 30.87 0.1144 2986 +2988 2 51.67792759102154 -486.982980721809 30.8017 0.1144 2987 +2989 2 51.63950431911516 -485.6159723840665 30.7614 0.1144 2988 +2990 2 51.29354487441402 -484.04158811031044 30.7238 0.1144 2989 +2991 2 50.897474117070495 -482.4680790984886 30.6762 0.1144 2990 +2992 2 50.52883855894461 -480.8893624650263 30.6138 0.1144 2991 +2993 2 50.35305978989384 -479.3859961375299 30.4951 0.1144 2992 +2994 2 50.20187202898029 -477.8901966408824 30.3416 0.1144 2993 +2995 2 50.37033643503116 -476.7095861587998 30.1874 0.1144 2994 +2996 2 50.58639072238502 -475.55188301804424 30.0118 0.1144 2995 +2997 2 50.83091182790335 -474.43031704435697 29.7573 0.1144 2996 +2998 2 51.129251984741806 -473.3606413590761 29.5389 0.1144 2997 +2999 2 51.583496062996396 -472.46719498069444 29.3838 0.1144 2998 +3000 2 52.125381351780796 -471.42134216132274 29.2796 0.1144 2999 +3001 2 52.91601755700937 -469.32568813661095 29.2172 0.1144 3000 +3002 2 53.833611416758245 -469.1894550171096 29.192 0.1144 3001 +3003 2 54.76151041505315 -467.40859677743117 29.1939 0.1144 3002 +3004 2 55.09435107762039 -466.26678904785956 29.2043 0.1144 3003 +3005 2 55.6881076012793 -465.4326280807519 29.2188 0.1144 3004 +3006 2 56.664687959179986 -465.46214732038294 29.2393 0.1144 3005 +3007 2 57.46681417787181 -464.5962342448101 29.2676 0.1144 3006 +3008 2 57.86884615515655 -462.6981378424384 29.3084 0.1144 3007 +3009 2 58.110330043536095 -461.0635627077387 29.367 0.1144 3008 +3010 2 58.28294158281949 -459.8736446835052 29.4448 0.1144 3009 +3011 2 58.51966328382317 -458.7467166996039 29.5428 0.1144 3010 +3012 2 58.96169825538215 -457.84229920622914 29.6856 0.1144 3011 +3013 2 59.47560755709249 -456.81388955367163 30.007 0.1144 3012 +3014 2 59.935554045653745 -455.0061750188311 30.322 0.1144 3013 +3015 2 60.25408171161482 -453.50515107716535 30.5715 0.1144 3014 +3016 2 60.224377143305055 -452.18780258117795 30.7642 0.1144 3015 +3017 2 59.80153240353382 -451.4767459325222 30.9042 0.1144 3016 +3018 2 59.34750397915405 -450.69842175618163 31.0022 0.1144 3017 +3019 2 59.005824502951214 -449.19294261736025 31.0702 0.1144 3018 +3020 2 58.7221909882176 -447.7071575120227 31.1623 0.1144 3019 +3021 2 58.57972882660343 -446.2978654376358 31.3267 0.1144 3020 +3022 2 58.594580024041115 -444.9874427306815 31.4874 0.1144 3021 +3023 2 58.613479826252025 -443.6802776986159 31.6436 0.1144 3022 +3024 2 58.69712600491588 -442.4328131213398 31.8472 0.1144 3023 +3025 2 59.217001907695014 -441.6337659726137 32.146 0.1144 3024 +3026 2 59.67872573230631 -440.4208712671062 32.3764 0.1144 3025 +3027 2 60.09719441897209 -438.78120195748926 32.5833 0.1144 3026 +3028 2 60.57015740189413 -437.51470526338704 32.776 0.1144 3027 +3029 2 60.904184655888486 -436.23351854019097 32.9042 0.1144 3028 +3030 2 61.196067380567904 -434.94706693191614 32.9728 0.1144 3029 +3031 2 61.49672255972976 -433.8985088912355 32.9946 0.1144 3030 +3032 2 61.10384578552648 -432.5840410419231 32.9868 0.1144 3031 +3033 2 60.281408935079355 -431.7663515807625 32.9546 0.1144 3032 +3034 2 59.649962142239936 -431.2619917555644 32.891 0.1144 3033 +3035 2 59.18154784004032 -429.895832407146 32.7953 0.1144 3034 +3036 2 58.99201158292255 -428.4818477311388 32.6973 0.1144 3035 +3037 2 59.079650898963884 -427.23495256889566 32.6234 0.1144 3036 +3038 2 59.25636340883335 -426.05762930970445 32.5696 0.1144 3037 +3039 2 59.56307899412657 -425.01918035517804 32.5335 0.1144 3038 +3040 2 60.075962880056224 -423.52277525571805 32.5122 0.1144 3039 +3041 2 60.526470186715535 -422.2174722342101 32.4996 0.1144 3040 +3042 2 60.81406984131343 -420.91798324749277 32.4859 0.1144 3041 +3043 2 61.2247859786478 -419.5404470606893 32.466 0.1144 3042 +3044 2 61.92892140212713 -418.47358865383717 32.4391 0.1144 3043 +3045 2 62.712245932348225 -417.2683367913742 32.4047 0.1144 3044 +3046 2 63.283904775569006 -415.8694368746608 32.3509 0.1144 3045 +3047 2 63.67095461978142 -414.84814142358465 32.263 0.1144 3046 +3048 2 63.955572524636516 -413.78148203005065 32.1544 0.1144 3047 +3049 2 64.14791435622197 -412.6257867479231 32.0536 0.1144 3048 +3050 2 64.46011742528958 -411.5982837339907 31.9673 0.1144 3049 +3051 2 64.96283683291877 -410.7546153466676 31.8934 0.1144 3050 +3052 2 65.31073010072527 -409.3744950224458 31.8298 0.1144 3051 +3053 2 65.4304104458066 -408.0392817959978 31.7568 0.1144 3052 +3054 2 65.64646783474359 -406.69469630398356 31.6512 0.1144 3053 +3055 2 66.13444577777483 -405.3347606115544 31.5311 0.1144 3054 +3056 2 66.80934774213777 -404.12566829534387 31.4084 0.1144 3055 +3057 2 67.56792819764368 -403.04424631124675 31.2791 0.1144 3056 +3058 2 68.27683131912843 -401.6754705908697 31.1699 0.1144 3057 +3059 2 68.87188295995966 -400.530608631037 31.1072 0.1144 3058 +3060 2 69.28531355469173 -399.6106968270853 31.0918 0.1144 3059 +3061 2 69.3582582613183 -398.3787274742384 31.1139 0.1144 3060 +3062 2 69.55658382370173 -397.2560030544185 31.2054 0.1144 3061 +3063 2 70.09771719221685 -396.4990043039935 31.3863 0.1144 3062 +3064 2 70.4901638167243 -395.36981175299337 31.5708 0.1144 3063 +3065 2 70.62686782168987 -394.06848225306805 31.7122 0.1144 3064 +3066 2 70.3139255575797 -392.9054422607128 31.7814 0.1144 3065 +3067 2 69.7560205201232 -391.4072203832779 31.8002 0.1144 3066 +3068 2 69.34306125251155 -389.9106906731172 31.8352 0.1144 3067 +3069 2 69.47696629976619 -388.75111556134226 31.8629 0.1144 3068 +3070 2 70.25335797995709 -388.40990444352036 31.8797 0.1144 3069 +3071 2 71.06212062872036 -387.50594743556235 31.8895 0.1144 3070 +3072 2 70.90183014235512 -386.3595619141793 31.8909 0.1144 3071 +3073 2 70.335332340865 -385.2174904051547 31.8772 0.1144 3072 +3074 2 70.28523144537026 -383.94143671492594 31.8444 0.1144 3073 +3075 2 71.00751044211351 -383.030547296168 31.7923 0.1144 3074 +3076 2 71.79502113577048 -381.4237805543328 31.6968 0.1144 3075 +3077 2 72.43191477748792 -380.49027946811384 31.5904 0.1144 3076 +3078 2 72.70320745638745 -379.2728984834398 31.4986 0.1144 3077 +3079 2 72.64075920299803 -377.9821818588334 31.4289 0.1144 3078 +3080 2 73.1000413731864 -376.8830549772887 31.3818 0.1144 3079 +3081 2 73.83073344351442 -375.0617000701501 31.3418 0.1144 3080 +3082 2 74.67167847409996 -374.57005770619145 31.2872 0.1144 3081 +3083 2 75.08448378066224 -373.6617788866165 31.2418 0.1144 3082 +3084 2 75.02190579359015 -372.3265506637216 31.2402 0.1144 3083 +3085 2 74.95406696307207 -370.987479687983 31.3261 0.1144 3084 +3086 2 75.01939126309624 -369.7491152315142 31.5017 0.1144 3085 +3087 2 75.32664694370948 -368.7194531994031 31.673 0.1144 3086 +3088 2 75.70483362995995 -367.7388211246672 31.7878 0.1144 3087 +3089 2 75.91228112513411 -366.5471417537951 31.8906 0.1144 3088 +3090 2 76.11950818314622 -365.3764841251843 32.0085 0.1144 3089 +3091 2 76.58948631474226 -364.10507407004695 32.1163 0.1144 3090 +3092 2 76.93448302565574 -362.3812976784063 32.228 0.1144 3091 +3093 2 76.86522244586563 -361.23453083088083 32.375 0.1144 3092 +3094 2 76.46438399051667 -360.69302224061653 32.573 0.1144 3093 +3095 2 75.8348582955559 -359.36425568368736 32.7908 0.1144 3094 +3096 2 74.98164950721068 -357.9813824931084 33.1694 0.1144 3095 +3097 2 74.1131793902598 -356.5954164066585 33.6885 0.1144 3096 +3098 2 73.45554625803237 -356.4466763067758 34.095 0.1144 3097 +3099 2 73.27145122734618 -355.57445232786347 34.3616 0.1144 3098 +3100 2 73.38765899159431 -354.12080976319265 34.5629 0.1144 3099 +3101 2 73.5682411083247 -352.55679092825625 34.736 0.1144 3100 +3102 2 73.92339609437245 -350.71889250516887 34.8566 0.1144 3101 +3103 2 74.24931831384038 -349.4695803372629 34.9577 0.1144 3102 +3104 2 74.64073952256715 -348.53784199573704 35.1182 0.1144 3103 +3105 2 75.5317456072551 -348.57063579460197 35.4225 0.1144 3104 +3106 2 76.58082287265671 -348.7907474166466 35.5396 0.1144 3105 +3107 2 75.71159532480698 -347.6707091358651 34.7959 0.1144 3106 +3108 2 75.59257030082989 -347.81004809047397 33.5888 0.1144 3107 +3109 2 75.22976098015825 -348.63750420504294 33.0546 0.1144 3108 +3110 2 75.05020117762535 -349.78965330244756 33.038 0.1144 3109 +3111 2 74.94879034537097 -351.00180669941307 33.0025 0.1144 3110 +3112 2 75.05351527080454 -352.35254751235226 32.9389 0.1144 3111 +3113 2 75.41345805666809 -353.8190310052628 32.9042 0.1144 3112 +3114 2 75.94730667067768 -355.2979226934307 32.9395 0.1144 3113 +3115 2 76.65541221295507 -356.2692170103868 33.0294 0.1144 3114 +3116 2 77.68495748029517 -356.15780800369134 33.1288 0.1144 3115 +3117 2 78.67156776472066 -355.6146280042812 33.2248 0.1144 3116 +3118 2 79.77718785556755 -355.3561524227786 33.395 0.1144 3117 +3119 2 80.34791325974325 -356.86096711950006 33.6549 0.1144 3118 +3120 2 76.69539534617371 -347.36140089547365 34.2336 0.1144 3107 +3121 2 77.58314448678254 -345.83393685710615 34.0371 0.1144 3120 +3122 2 78.08305873353457 -345.0365812833627 34.0105 0.1144 3121 +3123 2 78.47671218078148 -344.0471609251367 34.0631 0.1144 3122 +3124 2 78.91197006202339 -342.06650040960676 34.1426 0.1144 3123 +3125 2 79.2817813198192 -340.3367023968509 34.1919 0.1144 3124 +3126 2 79.55160229268057 -339.2721369381515 34.2104 0.1144 3125 +3127 2 79.62726696733446 -338.0403613206606 34.2143 0.1144 3126 +3128 2 79.47313028371511 -336.65914464268553 34.214 0.1144 3127 +3129 2 79.17791915362181 -335.323840590163 34.2135 0.1144 3128 +3130 2 78.95584793479068 -334.4296457735058 34.2124 0.1144 3129 +3131 2 78.78064208809693 -333.4428684711509 34.2112 0.1144 3130 +3132 2 78.74973310609417 -332.20066584390787 34.2096 0.1144 3131 +3133 2 78.75572114556988 -330.86977535262287 34.207 0.1144 3132 +3134 2 78.58367914811436 -329.89474328666716 34.2034 0.1144 3133 +3135 2 78.55852184064804 -328.6665259704868 34.1986 0.1144 3134 +3136 2 78.70096659358704 -327.1179580735303 34.1916 0.1144 3135 +3137 2 78.71425227992407 -325.79935714947146 34.1824 0.1144 3136 +3138 2 78.92865586332755 -324.1773870155583 34.169 0.1144 3137 +3139 2 79.52504165153431 -322.8977702300289 34.1494 0.1144 3138 +3140 2 80.28412076311037 -322.45968883869847 34.1228 0.1144 3139 +3141 2 81.1086205667983 -322.13697493884155 34.0886 0.1144 3140 +3142 2 82.06815634096591 -320.9726064004855 34.0432 0.1144 3141 +3143 2 82.9984641666467 -320.0970303002814 33.9528 0.1144 3142 +3144 2 83.785613762896 -319.4134956274974 33.8363 0.1144 3143 +3145 2 84.25376219262935 -317.5532733907667 33.7333 0.1144 3144 +3146 2 84.54666723150628 -316.0977880673895 33.6445 0.1144 3145 +3147 2 85.08544103686519 -315.17529081101657 33.5653 0.1144 3146 +3148 2 85.41528212742372 -314.1776748048797 33.4919 0.1144 3147 +3149 2 85.43748333753544 -312.95385009388247 33.4219 0.1144 3148 +3150 2 85.47326613938495 -311.699520050642 33.3483 0.1144 3149 +3151 2 85.46927490163864 -310.4186455193515 33.1436 0.1144 3150 +3152 2 85.49298925703818 -309.1599677134386 32.935 0.1144 3151 +3153 2 85.41561743955549 -307.83405499516965 32.7729 0.1144 3152 +3154 2 85.45202863115786 -306.58340225934865 32.6542 0.1144 3153 +3155 2 85.62196715229334 -305.43741159720776 32.5752 0.1144 3154 +3156 2 86.10998343299127 -304.61806781553975 32.5321 0.1144 3155 +3157 2 86.62268521942553 -303.83019609477145 32.5203 0.1144 3156 +3158 2 86.5869240510822 -303.03292545250764 32.5142 0.1144 3157 +3159 2 86.61170526151216 -301.779560610682 32.5038 0.1144 3158 +3160 2 86.88938110628396 -300.49044535873793 32.4912 0.1144 3159 +3161 2 87.48117819439756 -298.6026520546787 32.4741 0.1144 3160 +3162 2 88.2887887952807 -297.8399405369624 32.4528 0.1144 3161 +3163 2 89.19703417660689 -296.8299449837651 32.424 0.1144 3162 +3164 2 90.05575858146557 -295.9745310753185 32.3672 0.1144 3163 +3165 2 90.65250305803356 -295.23334074801943 32.2871 0.1144 3164 +3166 2 91.05528695558755 -294.0594870625258 32.2218 0.1144 3165 +3167 2 91.5892930629409 -293.2439484743143 32.1961 0.1144 3166 +3168 2 92.51791423836619 -292.240024975683 32.23 0.1144 3167 +3169 2 93.50953969027805 -291.6303258798983 32.2938 0.1144 3168 +3170 2 94.05460665056648 -290.76126971181856 32.3347 0.1144 3169 +3171 2 94.31525573387094 -289.22194839424805 32.3322 0.1144 3170 +3172 2 94.35256260757131 -287.9056356600598 32.3459 0.1144 3171 +3173 2 93.97506458402009 -287.14402216840807 32.4117 0.1144 3172 +3174 2 93.43275293965945 -285.723579052986 32.1636 0.1144 3173 +3175 2 93.56215758125373 -284.60239383396197 31.4104 0.1144 3174 +3176 2 93.52013199483153 -283.3455882853373 30.7994 0.1144 3175 +3177 2 93.42516970357755 -282.0613479203976 30.3204 0.1144 3176 +3178 2 93.74213806160414 -281.07732427414965 29.9382 0.1144 3177 +3179 2 93.74004568982572 -279.9272520301259 29.7237 0.1144 3178 +3180 2 93.26820024604264 -278.455143625903 29.6383 0.1144 3179 +3181 2 93.07304746400447 -277.157029795462 29.5154 0.1144 3180 +3182 2 93.13779574008859 -275.9293168021347 29.2272 0.1144 3181 +3183 2 92.99632065658844 -274.676854502996 28.8576 0.1144 3182 +3184 2 93.00965940127477 -273.4210237021469 28.4413 0.1144 3183 +3185 2 93.24977390619523 -272.30910260963367 28.0213 0.1144 3184 +3186 2 93.58880091445675 -271.3414294016195 27.6674 0.1144 3185 +3187 2 93.6361291971654 -270.1330617341987 27.3885 0.1144 3186 +3188 2 93.5836187817482 -268.8419918364882 27.1513 0.1144 3187 +3189 2 93.7108343405821 -267.6850146916002 26.8519 0.1144 3188 +3190 2 94.30931781553335 -266.1233225620264 26.6464 0.1144 3189 +3191 2 94.5970643335431 -264.816674018256 26.4185 0.1144 3190 +3192 2 95.00323321003395 -263.93291182902027 26.05 0.1144 3191 +3193 2 95.0833513404688 -262.7430373442551 25.8791 0.1144 3192 +3194 2 95.04384649284935 -261.46885767937493 25.7025 0.1144 3193 +3195 2 95.05370413918602 -260.24245357300265 25.493 0.1144 3194 +3196 2 95.22658607239774 -259.13264430908157 25.2193 0.1144 3195 +3197 2 95.0546323693751 -257.79175225742347 24.9157 0.1144 3196 +3198 2 95.06703950334328 -256.56353596444757 24.5109 0.1144 3197 +3199 2 95.3072806403633 -255.48548150322188 24.1427 0.1144 3198 +3200 2 95.54200146657186 -254.35770084185924 23.8316 0.1144 3199 +3201 2 95.79418441794225 -253.02581783764936 23.587 0.1144 3200 +3202 2 96.42222411175088 -252.0800163911972 23.3705 0.1144 3201 +3203 2 97.4027264423253 -251.295580613038 23.1629 0.1144 3202 +3204 2 97.7742698798128 -250.26025493193146 22.9972 0.1144 3203 +3205 2 97.41571050555451 -249.06006946850664 22.9298 0.1144 3204 +3206 2 97.03375282305608 -248.14480346405202 22.9191 0.1144 3205 +3207 2 96.89094359218036 -246.99689553144674 22.9363 0.1144 3206 +3208 2 97.21251226939977 -245.58911013776316 22.9676 0.1144 3207 +3209 2 97.84801939792895 -244.54599585882818 23.0004 0.1144 3208 +3210 2 98.30944069411147 -243.73936154043489 23.0234 0.1144 3209 +3211 2 98.28759169024876 -242.5495790168431 23.0591 0.1144 3210 +3212 2 98.50509855331303 -241.5420438216545 23.1059 0.1144 3211 +3213 2 99.20945131237126 -239.51319540743089 23.0966 0.1144 3212 +3214 2 99.79826044757577 -238.5618360910006 23.0165 0.1144 3213 +3215 2 100.32304470860603 -237.79951942169646 22.8724 0.1144 3214 +3216 2 100.86119012421209 -237.06702169104676 22.6757 0.1144 3215 +3217 2 101.43378298719749 -236.37118738532538 22.4335 0.1144 3216 +3218 2 101.97611766782249 -234.97319731086097 22.1608 0.1144 3217 +3219 2 101.93609054714878 -233.81236238593425 21.8981 0.1144 3218 +3220 2 101.63276577031641 -232.9117316482148 21.674 0.1144 3219 +3221 2 101.6286838290907 -231.66897801364894 21.44 0.1144 3220 +3222 2 101.70367867474201 -230.36759614833966 21.1827 0.1144 3221 +3223 2 101.66462321896307 -229.14632221442406 20.8997 0.1144 3222 +3224 2 101.56894355098682 -227.95477558125464 20.5875 0.1144 3223 +3225 2 101.46395443479115 -226.77712677089244 20.2521 0.1144 3224 +3226 2 101.17706636733992 -225.42344564209657 19.9754 0.1144 3225 +3227 2 100.7966741959421 -224.01687109130114 19.7839 0.1144 3226 +3228 2 100.47263274123026 -222.61527083631964 19.6148 0.1144 3227 +3229 2 100.23911364072207 -221.25654147087081 19.4035 0.1144 3228 +3230 2 99.96394935950569 -219.84203163226096 19.155 0.1144 3229 +3231 2 99.58578391599836 -218.44059782567678 18.8936 0.1144 3230 +3232 2 99.18013090746074 -217.0224621349588 18.623 0.1144 3231 +3233 2 98.77359314338804 -216.07243433426834 18.3529 0.1144 3232 +3234 2 98.32656224648738 -215.732171864205 18.1543 0.1144 3233 +3235 2 97.86566602831107 -214.581819220125 18.034 0.1144 3234 +3236 2 97.15293895890339 -213.16324311787218 17.8987 0.1144 3235 +3237 2 96.34863026850097 -212.29764385663316 17.7141 0.1144 3236 +3238 2 95.53349347396167 -211.3226503992078 17.4818 0.1144 3237 +3239 2 94.71992219052296 -210.8046197238247 17.21 0.1144 3238 +3240 2 93.90653300657968 -209.41155440198375 16.909 0.1144 3239 +3241 2 93.0941661368339 -208.42941678288756 16.5972 0.1144 3240 +3242 2 92.28028612180032 -207.58279967134249 16.2957 0.1144 3241 +3243 2 91.58928401632353 -207.0521328746469 16.0221 0.1144 3242 +3244 2 91.3670892669759 -205.7119638213324 15.8117 0.1144 3243 +3245 2 91.21130187940614 -204.48987698236016 15.659 0.1144 3244 +3246 2 90.61264493429296 -203.56531962073922 15.5007 0.1144 3245 +3247 2 90.09255690993346 -202.68130151732194 15.3592 0.1144 3246 +3248 2 89.74886563237257 -201.81351539828486 15.2576 0.1144 3247 +3249 2 89.42763554170403 -200.56060252619807 15.1861 0.1144 3248 +3250 2 89.47353828102112 -199.36792408731745 15.1248 0.1144 3249 +3251 2 89.80066181259886 -198.0224052582874 15.073 0.1144 3250 +3252 2 90.03840582780012 -196.5310349432744 15.0497 0.1144 3251 +3253 2 90.16926986379634 -195.10873151549043 15.0592 0.1144 3252 +3254 2 90.16603364790244 -193.82763312885686 15.0173 0.1144 3253 +3255 2 90.01394779584436 -192.73090490464227 14.5838 0.1144 3254 +3256 2 87.25017640136514 -303.4213508753807 32.9031 0.1144 3157 +3257 2 88.23078174705512 -302.5769133529943 33.4488 0.1144 3256 +3258 2 89.07528765290667 -301.70379539821147 33.686 0.1144 3257 +3259 2 89.6757329724498 -300.1240560298703 33.9654 0.1144 3258 +3260 2 89.93789520104212 -299.07368225371664 34.2107 0.1144 3259 +3261 2 89.65528710208916 -297.6687107505558 34.4576 0.1144 3260 +3262 2 89.34457087333296 -296.58125062631285 34.6959 0.1144 3261 +3263 2 89.05767970429855 -295.6799895184179 34.9275 0.1144 3262 +3264 2 89.07488736330936 -294.3832578862052 35.1812 0.1144 3263 +3265 2 89.45084732166939 -292.73312679010616 35.3752 0.1144 3264 +3266 2 89.99042920723 -291.9363467260401 35.8985 0.1144 3265 +3267 2 19.40107064968206 -465.64872785544475 42.0325 0.1144 2332 +3268 2 19.575210747472617 -464.14661119706057 41.148 0.1144 3267 +3269 2 19.044423056575035 -464.48393911626613 40.74 0.1144 3268 +3270 2 18.110005564813054 -463.58123160363857 40.0907 0.1144 3269 +3271 2 17.043992543197227 -462.76592953844255 39.3915 0.1144 3270 +3272 2 16.00831818537292 -463.4977187617239 38.6638 0.1144 3271 +3273 2 15.349372712112086 -464.80439288714484 37.9243 0.1144 3272 +3274 2 14.832377953006766 -465.65293651106333 37.1053 0.1144 3273 +3275 2 13.73535583504945 -466.5750807578933 36.463 0.1144 3274 +3276 2 12.774007080300386 -466.7253254740704 35.8711 0.1144 3275 +3277 2 11.649649676657997 -466.155833426124 35.4225 0.1144 3276 +3278 2 10.51825299253499 -466.95425557419213 35.0302 0.1144 3277 +3279 2 9.386406224034875 -466.46668484130123 34.6382 0.1144 3278 +3280 2 8.251643075777324 -467.48451434305724 34.2885 0.1144 3279 +3281 2 7.117097263098797 -466.68641744646936 33.9368 0.1144 3280 +3282 2 5.986766048933004 -465.97453716494135 33.5423 0.1144 3281 +3283 2 4.877489277159019 -466.9155993391862 32.9588 0.1144 3282 +3284 2 3.969418998658024 -465.9996512890744 31.6722 0.1144 3283 +3285 2 3.0144769377759584 -466.93173344903454 30.3993 0.1144 3284 +3286 2 2.10259590548145 -465.77180354216915 29.2914 0.1144 3285 +3287 2 1.3355361062270177 -466.2258636801369 27.9441 0.1144 3286 +3288 2 0.36574846464702837 -465.4378532415468 26.6489 0.1144 3287 +3289 2 -0.13295876426631636 -465.44097124332166 24.462 0.1144 3288 +3290 2 -0.6029115623684378 -466.21510380585846 23.6309 0.1144 3289 +3291 2 -1.3040546232936032 -466.85905904780304 23.2106 0.1144 3290 +3292 2 -2.395903499701112 -467.86559760954054 22.8032 0.1144 3291 +3293 2 -3.50997259275296 -467.68314179082 22.4028 0.1144 3292 +3294 2 -4.609579825188223 -467.7187149781573 21.9739 0.1144 3293 +3295 2 -5.694857339736067 -466.5943131088314 21.4708 0.1144 3294 +3296 2 -6.582557015309032 -465.7082575943801 20.8991 0.1144 3295 +3297 2 -6.69004224703508 -464.75435984434307 20.1764 0.1144 3296 +3298 2 -7.456960995280946 -465.0491814444889 18.917 0.1144 3297 +3299 2 -8.411239128553001 -463.9758626442817 17.9589 0.1144 3298 +3300 2 -8.698294876590598 -463.5958003733261 17.0652 0.1144 3299 +3301 2 -7.857018491736439 -462.7439288509836 15.9632 0.1144 3300 +3302 2 -6.802093053600784 -462.19052424679717 15.2845 0.1144 3301 +3303 2 -5.688138985527028 -461.7365948558844 14.8769 0.1144 3302 +3304 2 -4.6043393801834025 -462.8375944771037 14.6055 0.1144 3303 +3305 2 -3.752425709010505 -463.7963661061631 14.424 0.1144 3304 +3306 2 -3.1877083451533856 -463.9305923459698 14.2923 0.1144 3305 +3307 2 -2.759070491596046 -465.42069769778516 14.17 0.1144 3306 +3308 2 -2.3253093532551397 -466.9598385257565 14.022 0.1144 3307 +3309 2 -1.8442951214982406 -468.2081047102354 13.7885 0.1144 3308 +3310 2 -1.3794416945646866 -468.5363890649534 13.3894 0.1144 3309 +3311 2 -0.9293000067750992 -469.5850797391228 12.8422 0.1144 3310 +3312 2 -0.6644182237459821 -471.05470316668925 12.4247 0.1144 3311 +3313 2 -0.3398038466771087 -472.55582355360497 12.1157 0.1144 3312 +3314 2 0.06660418371285814 -474.08237091639637 11.7793 0.1144 3313 +3315 2 0.9291004519489867 -465.98832852812825 25.0973 0.1144 3288 +3316 2 1.5546346963791144 -466.4630858984762 23.9586 0.1144 3315 +3317 2 1.7797605461667576 -467.28336310403563 23.1788 0.1144 3316 +3318 2 1.9491616599748367 -468.25239613787267 22.6008 0.1144 3317 +3319 2 2.1194615574639677 -469.5132153362305 22.1509 0.1144 3318 +3320 2 2.2918615507440485 -470.9422689654906 21.7932 0.1144 3319 +3321 2 2.4457637690552954 -472.3666930297042 21.5438 0.1144 3320 +3322 2 2.5887167617597173 -473.78827878262217 21.3757 0.1144 3321 +3323 2 2.2930380039695546 -474.8259052148129 21.2496 0.1144 3322 +3324 2 1.7380479263915785 -476.32950479609946 21.148 0.1144 3323 +3325 2 1.1528520322658542 -478.3010652035179 21.0502 0.1144 3324 +3326 2 0.5661758198893869 -479.0510228732871 20.9416 0.1144 3325 +3327 2 -0.019957195584046517 -479.8066768580953 20.8126 0.1144 3326 +3328 2 -0.5021803624959031 -480.6949289173073 20.5799 0.1144 3327 +3329 2 -0.8494976063623192 -481.7376761348056 20.1748 0.1144 3328 +3330 2 -1.4554248990501306 -483.18473998054225 19.763 0.1144 3329 +3331 2 -2.2266255154254293 -484.9207248236403 19.4577 0.1144 3330 +3332 2 -3.0083845345459452 -485.3431574469833 19.234 0.1144 3331 +3333 2 -3.7470057430712704 -487.4525841361556 19.0805 0.1144 3332 +3334 2 -3.9703279518325196 -489.08415030887204 18.9921 0.1144 3333 +3335 2 -4.166770754003993 -490.3039728899086 18.9415 0.1144 3334 +3336 2 -4.362722725085168 -491.5256997740483 18.894 0.1144 3335 +3337 2 -4.510205569957927 -492.79237782123 18.8167 0.1144 3336 +3338 2 -4.619457245976704 -494.0926822354629 18.7008 0.1144 3337 +3339 2 -4.725597438569959 -495.39583120551094 18.5608 0.1144 3338 +3340 2 -4.832313655103287 -496.69783507320903 18.4117 0.1144 3339 +3341 2 -4.694398754332649 -498.1852583894518 18.2795 0.1144 3340 +3342 2 -4.188026778790423 -499.8091666918764 18.2061 0.1144 3341 +3343 2 -4.3605007594112575 -501.0555890171332 18.1844 0.1144 3342 +3344 2 -4.53716090346799 -502.2996376364285 18.2099 0.1144 3343 +3345 2 -4.950495994312643 -503.48783971609276 18.4038 0.1144 3344 +3346 2 -5.47377021163813 -504.3245353450198 18.5815 0.1144 3345 +3347 2 -6.1896653499724765 -504.86398579669856 18.765 0.1144 3346 +3348 2 -6.346076722792643 -506.03373066258877 19.0043 0.1144 3347 +3349 2 -6.220188829222129 -507.51007100130835 19.3021 0.1144 3348 +3350 2 -5.398210989116584 -508.89437468379685 19.6627 0.1144 3349 +3351 2 -4.275108950243602 -509.92264460463343 19.9727 0.1144 3350 +3352 2 -3.171797080713536 -509.06312097508265 20.264 0.1144 3351 +3353 2 -2.134540703291763 -510.37080789827803 20.535 0.1144 3352 +3354 2 -1.0796610250616503 -509.65992034173473 20.8204 0.1144 3353 +3355 2 -0.013069179696234556 -510.8957035506581 21.138 0.1144 3354 +3356 2 1.0539689559266492 -511.8871972007353 21.4787 0.1144 3355 +3357 2 1.7582815666763691 -512.1775057421798 21.9311 0.1144 3356 +3358 2 2.276773946033382 -513.2118719016103 22.9975 0.1144 3357 +3359 2 -4.450963360369104 -502.6983504175631 18.1033 0.1144 3344 +3360 2 -4.107145450708703 -504.27825684353064 17.9494 0.1144 3359 +3361 2 -3.8868546695105683 -505.71376004669133 17.9494 0.1144 3360 +3362 2 -3.7656078418460694 -506.85988433855556 17.9494 0.1144 3361 +3363 2 -3.6599872343144835 -508.03369152767704 17.9494 0.1144 3362 +3364 2 -3.1321620738428066 -508.2732411872746 17.9494 0.1144 3363 +3365 2 -2.591013403925311 -509.863896696299 17.9494 0.1144 3364 +3366 2 -3.2802660100245298 -510.7664661674562 17.9494 0.1144 3365 +3367 2 -3.971116954261415 -513.1211058220242 17.9494 0.1144 3366 +3368 2 -4.594861266352483 -513.8242644676467 17.9494 0.1144 3367 +3369 2 -5.198638506483099 -514.5567802403882 17.9494 0.1144 3368 +3370 2 -5.802244573681346 -515.2913424783184 17.9494 0.1144 3369 +3371 2 19.74684980552969 -464.59465948942614 41.9398 0.1144 3268 +3372 2 19.841314056238765 -465.7121963922781 43.0623 0.1144 3371 +3373 2 18.99178136380129 -467.39022802124657 43.7746 0.1144 3372 +3374 2 18.064681235654955 -467.80920905617796 44.21 0.1144 3373 +3375 2 17.179611316360216 -468.0097810212226 44.5158 0.1144 3374 +3376 2 16.348874517675238 -468.55837883283436 44.742 0.1144 3375 +3377 2 15.843604929877962 -470.5588862516919 45.0156 0.1144 3376 +3378 2 16.627844148729796 -470.4386687054632 45.3558 0.1144 3377 +3379 2 17.601997342420855 -471.72895336909653 45.6761 0.1144 3378 +3380 2 18.508249236385105 -473.1870276941129 45.7943 0.1144 3379 +3381 2 19.21635477866253 -473.7845226995996 45.995 0.1144 3380 +3382 2 14.627365801222348 -482.8992779816533 38.5241 0.1144 1874 +3383 2 13.843770877073013 -484.7256122635297 38.8651 0.1144 3382 +3384 2 13.046550607585765 -485.7545144917482 39.0468 0.1144 3383 +3385 2 12.228731774802188 -486.108844361668 39.2456 0.1144 3384 +3386 2 11.393626713185926 -486.49640420375465 39.41 0.1144 3385 +3387 2 10.515425280224342 -488.4175297980283 39.468 0.1144 3386 +3388 2 9.565840649975321 -488.5475521369917 39.3448 0.1144 3387 +3389 2 8.899068863676078 -487.83438532348947 38.9486 0.1144 3388 +3390 2 8.423175507656309 -487.4805974260576 38.4182 0.1144 3389 +3391 2 7.950716394803086 -485.9080938480789 37.7689 0.1144 3390 +3392 2 7.469570712853648 -484.3449444667902 37.044 0.1144 3391 +3393 2 6.798145549012259 -482.80862007479004 36.2454 0.1144 3392 +3394 2 6.065075903305508 -481.3038186667382 35.4091 0.1144 3393 +3395 2 5.333158305478967 -481.53226485724144 34.5652 0.1144 3394 +3396 2 4.475434106702075 -480.3544097284344 33.7526 0.1144 3395 +3397 2 3.520843826500299 -480.2988745497782 33.0047 0.1144 3396 +3398 2 2.6075714806094576 -479.5942767655193 32.2932 0.1144 3397 +3399 2 2.188267100703544 -478.0701161658052 31.6865 0.1144 3398 +3400 2 1.8544260592185613 -477.00828899066227 31.1517 0.1144 3399 +3401 2 1.6315122166386784 -476.1457150402607 30.6351 0.1144 3400 +3402 2 1.5492491706340186 -474.9947817955605 30.1109 0.1144 3401 +3403 2 1.4877879953586612 -473.8006634347535 29.5924 0.1144 3402 +3404 2 2.270995796069884 -472.0961513527167 29.148 0.1144 3403 +3405 2 3.2907639213319984 -472.1205597688838 28.8795 0.1144 3404 +3406 2 4.311684094474272 -470.5197496165158 28.6068 0.1144 3405 +3407 2 15.87465708552589 -484.9891615761605 40.6778 0.1144 1872 +3408 2 16.09603265013019 -484.41108101834146 41.2628 0.1144 3407 +3409 2 17.10921740367018 -483.88146442954456 41.7992 0.1144 3408 +3410 2 18.139556243313603 -484.0720294111407 42.322 0.1144 3409 +3411 2 19.197850554630286 -483.333838601974 42.8039 0.1144 3410 +3412 2 20.20285698398225 -482.4494845722388 43.1469 0.1144 3411 +3413 2 20.466615651081067 -482.6919102210305 43.1466 0.1345 3412 +3414 2 21.565315191555865 -481.3838056755597 43.3474 0.2039 3413 +3415 2 22.54256296941262 -481.432867533765 43.657 0.2288 3414 +3416 2 23.485794176928252 -481.34493194188246 43.8614 0.2288 3415 +3417 2 24.53592729378604 -480.20312651519 44.1101 0.2288 3416 +3418 2 25.58762351269793 -479.8735803997856 44.4858 0.2288 3417 +3419 2 26.233278303550154 -478.70730981292877 45.113 0.2288 3418 +3420 2 26.453076258202017 -477.01796327584196 45.7052 0.2288 3419 +3421 2 26.541220433479708 -475.57313754292306 46.144 0.2288 3420 +3422 2 26.549832226873757 -474.26154309273096 46.4573 0.2288 3421 +3423 2 26.6340513278946 -472.8100399780049 46.6603 0.2288 3422 +3424 2 26.671975664784796 -471.4391018568361 46.7678 0.2288 3423 +3425 2 26.779714195515716 -469.9422118274166 46.8126 0.2288 3424 +3426 2 26.921006900574497 -468.6705859631808 46.839 0.2288 3425 +3427 2 27.17506099305731 -467.5159794912765 46.8695 0.2288 3426 +3428 2 27.412228984318407 -466.3532614719106 46.909 0.2288 3427 +3429 2 27.598380676089874 -465.1744504416789 46.982 0.2288 3428 +3430 2 27.6946682235607 -463.91905546468854 47.0744 0.1595 3429 +3431 2 27.967835145155753 -462.82908473525487 47.1808 0.1192 3430 +3432 2 28.44605114654396 -461.9679700581147 47.297 0.1144 3431 +3433 2 28.972433745711893 -461.16562650215184 47.4216 0.1144 3432 +3434 2 29.444501046535915 -459.9589952681839 47.5681 0.1144 3433 +3435 2 29.589495287106395 -458.4320065001452 47.7977 0.1144 3434 +3436 2 29.2997137643451 -457.60552820706386 48.1242 0.1144 3435 +3437 2 28.878916754552144 -456.10091244398063 48.4448 0.1144 3436 +3438 2 28.563344533357565 -454.60841730125964 48.7225 0.1144 3437 +3439 2 28.45461554398355 -453.21712630818524 48.9616 0.1144 3438 +3440 2 28.879982442436386 -452.30687165106144 49.175 0.1144 3439 +3441 2 29.39135318307813 -451.32171265236883 49.3898 0.1144 3440 +3442 2 29.446304281435676 -449.9500974737917 49.6728 0.1144 3441 +3443 2 29.700713960696568 -448.35857007264883 50.0416 0.1144 3442 +3444 2 29.801064141086737 -446.9454823692032 50.4398 0.1144 3443 +3445 2 29.82468779300691 -445.6304864204378 50.8628 0.1144 3444 +3446 2 30.0114740776974 -444.04138747924696 51.3013 0.1144 3445 +3447 2 30.35584239885801 -442.6640088879085 51.7723 0.1144 3446 +3448 2 30.580900984171663 -442.449337889725 51.9744 0.1144 3447 +3449 2 31.232066183245607 -441.85644425311557 52.4499 0.1144 3448 +3450 2 31.507157304302396 -440.4094963379922 52.747 0.1144 3449 +3451 2 31.97218873998066 -438.6218770625052 53.0057 0.1144 3450 +3452 2 32.55654441940411 -437.2906952380161 53.2596 0.1144 3451 +3453 2 33.12476901945834 -436.5559838759693 53.501 0.1144 3452 +3454 2 33.39005675962229 -435.31488137151416 53.772 0.1144 3453 +3455 2 33.26817913315846 -434.10093180419045 54.1276 0.1144 3454 +3456 2 33.18546359373022 -432.7372977755496 54.488 0.1144 3455 +3457 2 33.694387861855986 -431.31874205327046 54.8542 0.1144 3456 +3458 2 34.069863192291976 -429.77483196475305 55.2726 0.1144 3457 +3459 2 34.420071482421854 -428.79829503766774 55.8054 0.1144 3458 +3460 2 34.12392082193432 -427.36044061624625 56.2604 0.1144 3459 +3461 2 33.61136490974427 -426.5641081049096 56.6068 0.1144 3460 +3462 2 33.317085390369186 -425.5517863667919 56.9643 0.1144 3461 +3463 2 32.68844134936043 -424.0291937627519 57.2547 0.1144 3462 +3464 2 32.190271314990184 -422.9414456070247 57.5193 0.1144 3463 +3465 2 31.75321969531145 -422.257275540333 57.7108 0.1144 3464 +3466 2 31.60773124312165 -421.0584301150912 57.869 0.1144 3465 +3467 2 31.052722762558236 -419.9728003753408 58.0068 0.1144 3466 +3468 2 30.60526458193277 -420.1732099100896 58.2823 0.1144 3467 +3469 2 29.74576423137282 -421.5432611315303 58.97 0.1144 3468 +3470 2 28.869290177694907 -422.4074246515196 59.4121 0.1144 3469 +3471 2 28.049472879162746 -422.72841696300316 59.7512 0.1144 3470 +3472 2 27.318149317498715 -423.4027999802532 60.0127 0.1144 3471 +3473 2 26.611078999459686 -424.8519320304482 60.1787 0.1144 3472 +3474 2 25.90565156039118 -426.24124561413703 60.2487 0.1144 3473 +3475 2 25.200990069737962 -427.1218861333185 60.2224 0.1144 3474 +3476 2 24.495647823519214 -428.53527939243725 60.1166 0.1144 3475 +3477 2 23.790357943113207 -429.79800125490505 59.9528 0.1144 3476 +3478 2 23.131587058119578 -430.3994724595586 59.689 0.1144 3477 +3479 2 22.53105344414358 -431.07614621951006 59.2735 0.1144 3478 +3480 2 21.95074877853989 -432.1680536074739 58.7364 0.1144 3479 +3481 2 21.55999119564948 -433.37885118509246 58.1784 0.1144 3480 +3482 2 21.379444315002623 -434.8193639601703 57.6691 0.1144 3481 +3483 2 21.232093612859053 -436.2485391371829 57.2166 0.1144 3482 +3484 2 21.09031558733954 -437.680907198516 56.8249 0.1144 3483 +3485 2 20.992374234335283 -439.0882014414223 56.495 0.1144 3484 +3486 2 20.902902114848168 -440.4949839506887 56.2089 0.1144 3485 +3487 2 20.814091212150956 -441.8940257529132 55.9468 0.1144 3486 +3488 2 20.72519511660402 -443.14390554788554 55.6984 0.1144 3487 +3489 2 20.636927410809832 -444.3944595766769 55.4616 0.1144 3488 +3490 2 20.547094193915072 -445.6434405045698 55.2373 0.1144 3489 +3491 2 20.45838019786342 -446.8965179689684 55.027 0.1144 3490 +3492 2 20.369175370721518 -448.1785927925391 54.833 0.1144 3491 +3493 2 20.23077922255583 -449.4729101001436 54.6734 0.1144 3492 +3494 2 20.035273541732124 -450.7361655256119 54.5639 0.1144 3493 +3495 2 19.827773680745246 -451.9913582970678 54.4981 0.1144 3494 +3496 2 19.61987989531367 -453.20301740542004 54.4664 0.1144 3495 +3497 2 19.412071302731924 -454.7750756238462 54.4603 0.1144 3496 +3498 2 19.203601493360217 -456.35792229290746 54.4726 0.1144 3497 +3499 2 18.99570770792865 -457.957198147261 54.4961 0.1144 3498 +3500 2 18.788207846941813 -459.4139126590781 54.5308 0.1144 3499 +3501 2 18.579738037570106 -460.5753639263809 54.5818 0.1144 3500 +3502 2 18.41194105147531 -461.7695279975564 54.6518 0.1144 3501 +3503 2 18.441593253972407 -463.1154397930165 54.7431 0.1144 3502 +3504 2 18.509346891640725 -464.48967415908163 54.8542 0.1144 3503 +3505 2 18.683081032296403 -465.92208166575324 55.0813 0.1144 3504 +3506 2 18.883228057972115 -467.2907151108249 55.438 0.1144 3505 +3507 2 18.83496885708184 -468.6495489326737 55.7301 0.1144 3506 +3508 2 18.85482078026918 -469.976046013844 55.9658 0.1144 3507 +3509 2 18.53794381825861 -471.03809899192765 56.1526 0.1144 3508 +3510 2 18.249224942817442 -472.1188342141785 56.296 0.1144 3509 +3511 2 18.03753891839477 -473.2760360126521 56.4007 0.1144 3510 +3512 2 17.85125749294064 -474.45467395440505 56.5953 0.1144 3511 +3513 2 17.68840169213411 -475.65388302269537 56.8145 0.1144 3512 +3514 2 17.55410651455444 -476.880201195296 56.9892 0.1144 3513 +3515 2 17.588573270240182 -478.25064313438116 57.1234 0.1144 3514 +3516 2 17.428041103969647 -479.5038867345646 57.2194 0.1144 3515 +3517 2 16.79020134363566 -479.0371442281138 58.4984 0.1144 3516 +3518 2 16.043992164782118 -480.01422651374554 59.6691 0.1144 3517 +3519 2 15.406419484008973 -481.79714263870574 60.3761 0.1144 3518 +3520 2 15.51634668961661 -482.46829085792996 61.7053 0.1144 3519 +3521 2 16.486536370416815 -480.6302971689114 62.7122 0.1144 3520 +3522 2 17.449695696700836 -480.7903112135739 63.7655 0.1144 3521 +3523 2 18.40987327324199 -480.96570893832165 64.8354 0.1144 3522 +3524 2 19.060810612915063 -480.6052983724096 66.1668 0.1144 3523 +3525 2 18.681388686533055 -482.13559835511427 67.2493 0.1144 3524 +3526 2 18.277834353907426 -483.0640457605626 68.0814 0.1144 3525 +3527 2 17.868349964358526 -483.7907338839874 69.2418 0.1144 3526 +3528 2 17.957009593998848 -482.6213562408381 70.4864 0.1144 3527 +3529 2 17.89208373988138 -481.4432423612539 71.9186 0.1144 3528 +3530 2 17.166892281295393 -480.24949626755125 73.4586 0.1144 3529 +3531 2 16.363006654929425 -479.12553001910396 75.0036 0.1144 3530 +3532 2 15.939780693112567 -479.1170617416233 76.9432 0.1144 3531 +3533 2 15.103494444024502 -479.87375062877686 78.3031 0.1144 3532 +3534 2 14.929336523968187 -480.98958671959224 79.3503 0.1144 3533 +3535 2 14.785404651771893 -482.17729593230376 80.2729 0.1144 3534 +3536 2 14.638091594758379 -483.3805358606457 81.0947 0.1144 3535 +3537 2 14.490505734770036 -484.59336912627197 81.8356 0.1144 3536 +3538 2 14.341985855017063 -485.879490586326 82.5216 0.1144 3537 +3539 2 14.193072050819403 -487.47894566068146 83.1832 0.1144 3538 +3540 2 14.04379714921405 -489.08906331524884 83.8275 0.1144 3539 +3541 2 13.893819591569038 -490.7065516681414 84.4516 0.1144 3540 +3542 2 14.157388435160023 -491.4737262945361 85.1004 0.1144 3541 +3543 2 15.048628470598151 -492.48595040266594 85.6024 0.1144 3542 +3544 2 15.94405466947207 -493.01770305319087 86.0572 0.1144 3543 +3545 2 16.841570037574016 -493.5637859966877 86.4676 0.1144 3544 +3546 2 17.739405063833797 -494.9523655966143 86.8384 0.1144 3545 +3547 2 18.63941445217138 -496.4668548224804 87.1732 0.1144 3546 +3548 2 19.540904158759766 -495.9481050880532 87.481 0.1144 3547 +3549 2 20.42759383177127 -497.4257123754892 88.0636 0.1144 3548 +3550 2 17.209809352954906 -480.6966422092687 57.2782 0.1144 3516 +3551 2 16.839422071219012 -481.7502058766194 57.3359 0.1144 3550 +3552 2 16.445192600032048 -482.7690370946634 57.4067 0.1144 3551 +3553 2 16.1577041643144 -484.3442955442114 57.4616 0.1144 3552 +3554 2 15.756623336523548 -486.38954658539063 57.4361 0.1144 3553 +3555 2 15.332585074816688 -487.7958647921907 57.3804 0.1144 3554 +3556 2 14.999186210575129 -488.87349952730983 57.3289 0.1144 3555 +3557 2 14.854814849127939 -490.1421377113782 57.2824 0.1144 3556 +3558 2 14.609720821252616 -491.31511435733853 57.2471 0.1144 3557 +3559 2 14.35522043851234 -492.479143178769 57.2292 0.1144 3558 +3560 2 14.074033675240702 -494.2926180431679 57.2286 0.1144 3559 +3561 2 13.731228456134183 -496.273131516401 57.2348 0.1144 3560 +3562 2 13.389936382315504 -497.80950258591446 57.2432 0.1144 3561 +3563 2 13.078185806671573 -498.92604102657737 57.2552 0.1144 3562 +3564 2 13.1449499571794 -500.3652240228285 57.272 0.1144 3563 +3565 2 13.375754600289874 -501.89177740365835 57.2958 0.1144 3564 +3566 2 13.667407956700169 -503.0474160102913 57.328 0.1144 3565 +3567 2 13.96765717872719 -503.787443744401 57.3726 0.1144 3566 +3568 2 14.188215252270489 -504.71562610435524 57.4381 0.1144 3567 +3569 2 14.260155053374655 -505.9716596082286 57.5333 0.1144 3568 +3570 2 14.886699300366136 -507.2161930702042 57.7223 0.1144 3569 +3571 2 15.522018109113077 -508.71730681297646 57.993 0.1144 3570 +3572 2 16.10552795138788 -508.9402820243505 58.427 0.1144 3571 +3573 2 16.644678155556733 -510.28649731888197 58.9898 0.1144 3572 +3574 2 16.433628724651648 -511.3862010895525 59.8408 0.1144 3573 +3575 2 17.225004325728936 -511.78989388189194 60.5637 0.1144 3574 +3576 2 18.367097663796216 -512.6204472830588 60.5144 0.1144 3575 +3577 2 19.509176281180824 -511.451536090599 60.4794 0.1144 3576 +3578 2 20.64608096447903 -512.1555877366326 60.4206 0.1144 3577 +3579 2 21.780184594771608 -511.53069349316445 60.3896 0.1144 3578 +3580 2 22.92076858167074 -512.177665203548 60.3994 0.1144 3579 +3581 2 24.061924798390248 -512.4527620614887 60.4758 0.1144 3580 +3582 2 25.200225204929822 -511.91598674548345 60.6603 0.1144 3581 +3583 2 26.324223618437426 -511.6263743455808 60.9028 0.1144 3582 +3584 2 27.42059412042081 -512.1135497086694 61.0649 0.1144 3583 +3585 2 28.16832754910383 -513.5048500616455 61.0621 0.1144 3584 +3586 2 28.01757714734069 -514.6960366283256 60.8723 0.1144 3585 +3587 2 27.50536309041364 -515.5541556433709 60.608 0.1144 3586 +3588 2 27.027455820620347 -516.4717425007651 60.3512 0.1144 3587 +3589 2 26.619597902512396 -517.688808200239 60.1432 0.1144 3588 +3590 2 26.364466028436233 -519.0262421745138 59.9897 0.1144 3589 +3591 2 26.307610961929242 -520.5039189475272 59.8825 0.1144 3590 +3592 2 26.289287183658402 -521.9145237725912 59.7993 0.1144 3591 +3593 2 26.27751464260925 -523.3114575223492 59.7114 0.1144 3592 +3594 2 26.35425807033908 -524.5665477175286 59.5795 0.1144 3593 +3595 2 26.510439382353525 -525.989601927922 59.3782 0.1144 3594 +3596 2 26.53822285278465 -527.3863617107456 59.1452 0.1144 3595 +3597 2 26.59527742746227 -528.7838452940506 58.9039 0.1144 3596 +3598 2 26.881804397505817 -530.1845694962004 58.6611 0.1144 3597 +3599 2 27.00033917681911 -531.5926706319608 58.4623 0.1144 3598 +3600 2 27.05570470987961 -533.0386598289548 58.3108 0.1144 3599 +3601 2 27.228192997592608 -534.5555331236735 58.1879 0.1144 3600 +3602 2 27.582874940010058 -536.1578715489899 58.074 0.1144 3601 +3603 2 28.055795063803405 -537.7954102132758 57.9547 0.1144 3602 +3604 2 28.38677857859852 -539.3836409338331 57.7889 0.1144 3603 +3605 2 28.63027695632869 -540.8234265251375 57.5361 0.1144 3604 +3606 2 28.93471785242111 -541.7657121570068 57.2118 0.1144 3605 +3607 2 29.131701028858572 -542.8729400536583 56.875 0.1144 3606 +3608 2 29.293675454659184 -544.0725283892143 56.597 0.1144 3607 +3609 2 29.543810262460756 -545.477784538035 56.4032 0.1144 3608 +3610 2 29.794159996794818 -546.8563257321448 56.289 0.1144 3609 +3611 2 29.880180045707 -548.2532414481523 56.2705 0.1144 3610 +3612 2 29.604069712035756 -549.6025606620684 56.315 0.1144 3611 +3613 2 29.339501757640612 -550.9852244646318 56.3604 0.1144 3612 +3614 2 29.203332337365453 -552.3618603686992 56.3777 0.1144 3613 +3615 2 29.234635243812892 -553.79084383492 56.3539 0.1144 3614 +3616 2 29.363560354522022 -555.1880810523866 56.2652 0.1144 3615 +3617 2 29.50913399956171 -556.5912584470974 56.1151 0.1144 3616 +3618 2 29.645089464787084 -558.0076728841747 55.9432 0.1144 3617 +3619 2 30.010164147646847 -559.2721567671906 55.769 0.1144 3618 +3620 2 30.421196806750235 -560.495395217871 55.5302 0.1144 3619 +3621 2 30.50586868014076 -561.768136972269 55.167 0.1144 3620 +3622 2 30.513117572187795 -563.1378823518787 54.8512 0.1144 3621 +3623 2 30.531456350087293 -564.5139160831536 54.6059 0.1144 3622 +3624 2 30.5494012035421 -565.8777261463769 54.4163 0.1144 3623 +3625 2 30.454050777418985 -567.3481363163723 54.2724 0.1144 3624 +3626 2 30.298589530119337 -568.8652259924947 54.1677 0.1144 3625 +3627 2 30.18782470881272 -570.3517951341602 54.0173 0.1144 3626 +3628 2 30.279852798043507 -571.6398121894994 53.8636 0.1144 3627 +3629 2 30.374107615164753 -572.9396088912728 53.7211 0.1144 3628 +3630 2 30.343756829693795 -574.366298160374 53.5346 0.1144 3629 +3631 2 30.14071903670062 -575.8888115210057 53.3537 0.1144 3630 +3632 2 30.111699297022113 -577.2909084045064 53.1334 0.1144 3631 +3633 2 30.514009458409205 -578.2536546257219 52.9614 0.1144 3632 +3634 2 30.507754126588345 -579.661052039315 52.834 0.1144 3633 +3635 2 30.20651741285675 -581.2431784800057 52.7447 0.1144 3634 +3636 2 30.07248952762224 -582.7301578713793 52.6868 0.1144 3635 +3637 2 29.90728036682566 -584.2399086357914 52.6442 0.1144 3636 +3638 2 30.316226958284155 -585.2358129828283 52.6089 0.1144 3637 +3639 2 30.80442081701549 -586.5624227613243 52.5664 0.1144 3638 +3640 2 30.469731547020324 -587.2148729316148 52.4437 0.1144 3639 +3641 2 29.98051085262942 -588.8225990629642 52.316 0.1144 3640 +3642 2 29.570065109223414 -590.1925656459672 52.1867 0.1144 3641 +3643 2 29.38346092402826 -591.6547298266494 52.0654 0.1144 3642 +3644 2 29.504404530727463 -592.9745996066841 51.9501 0.1144 3643 +3645 2 29.888842205315438 -594.244270878168 51.8109 0.1144 3644 +3646 2 29.933454924499188 -595.4931380306448 51.6138 0.1144 3645 +3647 2 29.641304907474726 -596.9931586058074 51.3918 0.1144 3646 +3648 2 29.593979726349076 -598.4000099250253 51.1823 0.1144 3647 +3649 2 29.692644245651316 -599.7339464875232 51.0006 0.1144 3648 +3650 2 29.810779589890306 -601.059300497529 50.8491 0.1144 3649 +3651 2 29.92949095806942 -602.3905558164811 50.7262 0.1144 3650 +3652 2 30.048254692061253 -603.7313913070303 50.6257 0.1144 3651 +3653 2 30.166966060240252 -605.108323623893 50.5366 0.1144 3652 +3654 2 30.463654407001254 -606.7304635281635 50.4549 0.1144 3653 +3655 2 30.89002409341832 -607.8946253357648 50.3773 0.1144 3654 +3656 2 31.342178275102665 -608.7598749130813 50.2984 0.1144 3655 +3657 2 31.814599742825774 -609.8183558355374 50.2082 0.1144 3656 +3658 2 32.429742661549774 -611.3328083249604 50.0811 0.1144 3657 +3659 2 33.123462326007356 -612.0712757255917 49.9097 0.1144 3658 +3660 2 33.571338948239855 -613.4340355691254 49.6919 0.1144 3659 +3661 2 33.85386185434295 -615.0438752821735 49.4413 0.1144 3660 +3662 2 34.113038818018765 -616.6421126340742 49.173 0.1144 3661 +3663 2 34.37252451328954 -617.9926173147625 48.902 0.1144 3662 +3664 2 34.63161628411558 -619.272437493864 48.6427 0.1144 3663 +3665 2 34.83568528246499 -620.5845653531985 48.4042 0.1144 3664 +3666 2 35.051566361482145 -622.172087206934 48.2056 0.1144 3665 +3667 2 35.40210589406382 -623.8334377465835 48.0878 0.1144 3666 +3668 2 35.81907232719902 -625.02447768928 48.0522 0.1144 3667 +3669 2 36.29987473400651 -625.4436421447928 48.0488 0.1144 3668 +3670 2 36.81176391877709 -626.764064161498 48.0525 0.1144 3669 +3671 2 37.2406690646796 -628.4492932997887 48.048 0.1144 3670 +3672 2 36.78640957320578 -629.3516505785358 48.0102 0.1144 3671 +3673 2 36.17914882567893 -630.5018890082533 47.9427 0.1144 3672 +3674 2 35.47100382762963 -632.6619571319318 47.9405 0.1144 3673 +3675 2 34.59132758704681 -633.0920280724354 48.0474 0.1144 3674 +3676 2 34.12534602584804 -634.33632955847 47.5916 0.1144 3675 +3677 2 34.484827800771406 -635.5778573302024 47.2629 0.1144 3676 +3678 2 34.21409573259282 -636.8671413493997 47.0632 0.1144 3677 +3679 2 33.75797741164273 -638.2369880597734 46.8986 0.1144 3678 +3680 2 33.96756602826697 -639.5752772875323 46.8266 0.1144 3679 +3681 2 34.27432194668278 -640.9207882616488 46.8605 0.1144 3680 +3682 2 34.580992672248826 -642.5255225893569 46.9336 0.1144 3681 +3683 2 34.91826244627073 -644.1902308025319 46.9123 0.1144 3682 +3684 2 35.27634270323449 -645.5620499550253 46.7698 0.1144 3683 +3685 2 35.63583919884062 -646.2665755119613 46.5438 0.1144 3684 +3686 2 36.0455408121515 -647.076437562117 46.3221 0.1144 3685 +3687 2 36.54446896995723 -648.7645026841935 46.2162 0.1144 3686 +3688 2 37.08393952482058 -650.3673328238028 46.2039 0.1144 3687 +3689 2 37.64335770756492 -650.9283641407453 46.2664 0.1144 3688 +3690 2 38.19992859764581 -652.3061862074157 46.5559 0.1144 3689 +3691 2 31.693493894929688 -586.4524392587309 53.9804 0.1144 3639 +3692 2 32.81228583140251 -586.2718781255179 54.4354 0.1144 3691 +3693 2 33.5641886132508 -586.2544893867067 54.6353 0.1144 3692 +3694 2 33.37695224418316 -587.6734537900318 54.871 0.1144 3693 +3695 2 33.96107164765668 -588.6721510458729 55.1869 0.1144 3694 +3696 2 35.01210774505629 -589.6052247588555 55.5475 0.1144 3695 +3697 2 35.78108733412742 -590.4316087777845 55.9328 0.1144 3696 +3698 2 36.382905026895784 -591.7625328982558 56.3156 0.1144 3697 +3699 2 37.2213514267943 -591.771381197817 56.7129 0.1144 3698 +3700 2 38.32351704316246 -592.3593919316197 57.1004 0.1144 3699 +3701 2 39.454467437028 -592.4263272724247 57.5033 0.1144 3700 +3702 2 40.58255340850089 -592.2281064346488 57.9608 0.1144 3701 +3703 2 41.70845409133308 -592.7580474921672 58.462 0.1144 3702 +3704 2 42.831111148010535 -591.8493271994289 58.9988 0.1144 3703 +3705 2 43.95118037938988 -592.1477390845547 59.5661 0.1144 3704 +3706 2 45.06925734818692 -592.2435134904767 60.1586 0.1144 3705 +3707 2 46.185225608980254 -591.5564738144092 60.772 0.1144 3706 +3708 2 47.30017155557597 -591.4553733966864 61.4079 0.1144 3707 +3709 2 48.3965529721443 -591.8262104534782 62.1068 0.1144 3708 +3710 2 49.30101022235083 -591.2807422912883 62.8978 0.1144 3709 +3711 2 50.07749329855773 -590.2659826590184 63.7627 0.1144 3710 +3712 2 50.84867409206871 -589.0039643361517 64.6797 0.1144 3711 +3713 2 51.616649597091765 -587.8566966942855 65.6256 0.1144 3712 +3714 2 52.3844875434522 -586.639649608739 66.575 0.1144 3713 +3715 2 53.15473121561548 -585.8037515657671 67.5016 0.1144 3714 +3716 2 53.93027717047466 -585.4462829215015 68.3782 0.1144 3715 +3717 2 54.711348946774734 -584.6516418770875 69.1863 0.1144 3716 +3718 2 55.50007636576079 -583.2323913439649 69.9079 0.1144 3717 +3719 2 55.565830234761215 -581.9099064481619 70.4679 0.1144 3718 +3720 2 55.068682514588616 -581.0271769001283 70.6474 0.1144 3719 +3721 2 54.56164932225643 -579.9589466309687 70.6115 0.1144 3720 +3722 2 54.054883422269455 -578.4091573518436 70.427 0.1144 3721 +3723 2 53.551805029648136 -576.7403107401672 70.1557 0.1144 3722 +3724 2 53.04802398098712 -575.0676493060643 69.851 0.1144 3723 +3725 2 52.54468922258355 -574.1344155038028 69.5545 0.1144 3724 +3726 2 52.04763600001003 -573.0514525618838 68.9926 0.1144 3725 +3727 2 15.94067657363147 -511.65839105339325 60.1538 0.1144 3574 +3728 2 14.832023781965258 -512.0087900994578 60.8306 0.1144 3727 +3729 2 13.722133341121083 -512.4268853103413 61.453 0.1144 3728 +3730 2 12.620452352677054 -512.0834314565329 62.0192 0.1144 3729 +3731 2 11.522713852307712 -511.1387133817631 62.5254 0.1144 3730 +3732 2 10.60901654274936 -511.811962627435 63.2447 0.1144 3731 +3733 2 10.01569979243003 -513.0956654421417 64.5302 0.1144 3732 +3734 2 10.068869547833522 -512.8250898691949 64.9936 0.1144 3733 +3735 2 10.36522424309624 -511.6363302692893 65.8224 0.1144 3734 +3736 2 10.727768272021274 -509.7672289981865 66.3146 0.1144 3735 +3737 2 10.87174019839416 -508.1681051821506 66.5977 0.1144 3736 +3738 2 11.380793507666102 -506.78477318304107 66.7304 0.1144 3737 +3739 2 12.287066431589214 -506.57968175959195 66.9214 0.1144 3738 +3740 2 12.997334024308252 -508.1420256050657 67.3028 0.1144 3739 +3741 2 13.01593088449981 -509.49350882896965 67.9762 0.1144 3740 +3742 2 12.695298636091593 -510.5141429153885 68.8615 0.1144 3741 +3743 2 12.320412351453523 -511.36295800978314 70.1582 0.1144 3742 +3744 2 12.24402068157636 -512.4798332439389 71.5602 0.1144 3743 +3745 2 12.622784380934567 -513.9627652705902 72.5614 0.1144 3744 +3746 2 13.142137898842623 -515.535508558655 73.3452 0.1144 3745 +3747 2 12.848649626571039 -516.464182635035 74.0309 0.1144 3746 +3748 2 12.169363986057643 -517.0308334555785 74.8462 0.1144 3747 +3749 2 12.738453317976376 -517.9519244286741 74.8798 0.1144 3748 +3750 2 13.6909377076689 -518.6036419966141 75.0476 0.1144 3749 +3751 2 14.667502830328967 -518.831826838849 75.1304 0.1144 3750 +3752 2 15.643938219306367 -519.6392674179087 75.2674 0.1144 3751 +3753 2 16.618414172738408 -520.069164485623 75.4617 0.1144 3752 +3754 2 17.589547279020003 -521.1423122381175 75.7154 0.1144 3753 +3755 2 18.33358397259928 -522.7387990399047 76.0897 0.1144 3754 +3756 2 18.74551472284722 -523.7751439054075 76.5806 0.1144 3755 +3757 2 19.15507808495904 -524.2315267396348 77.1803 0.1144 3756 +3758 2 19.562857907854717 -525.4124989224439 77.8733 0.1144 3757 +3759 2 19.997538345277636 -526.9895087656672 78.605 0.1144 3758 +3760 2 20.441478274153702 -528.4995981865998 79.389 0.1144 3759 +3761 2 21.378155640301838 -527.7218062088086 80.9332 0.1144 3760 +3762 2 22.121708309504278 -528.5608029268823 82.551 0.1144 3761 +3763 2 22.6623106986206 -529.6087238465727 84.1422 0.1144 3762 +3764 2 22.698402120248126 -530.5738443671959 85.9258 0.1144 3763 +3765 2 22.009369560547984 -531.1808044383049 87.5188 0.1144 3764 +3766 2 21.19535488762871 -531.2369160242155 88.9935 0.1144 3765 +3767 2 20.376613955953644 -532.8667218514113 90.4408 0.1144 3766 +3768 2 19.56853064801965 -532.9351725513934 91.8845 0.1144 3767 +3769 2 18.935974129043124 -534.1064034082071 93.4144 0.1144 3768 +3770 2 18.37891059723001 -535.9205287409678 94.9934 0.1144 3769 +3771 2 17.82166496592161 -536.4403257857601 96.5804 0.1144 3770 +3772 2 17.18394613195826 -536.9117870822038 98.1658 0.1144 3771 +3773 2 16.249833364887223 -537.0015180130247 99.5646 0.1144 3772 +3774 2 15.273161912744163 -537.9743485390434 100.8753 0.1144 3773 +3775 2 14.2782240493573 -537.690682823391 102.102 0.1144 3774 +3776 2 13.26792725818273 -539.2191015436372 103.2419 0.1144 3775 +3777 2 12.517013750710621 -539.6908177946768 104.2306 0.1144 3776 +3778 2 12.062446220178446 -540.5927724958716 104.9132 0.1144 3777 +3779 2 11.604315405333718 -541.7189928804568 105.4522 0.1144 3778 +3780 2 11.142767477051642 -542.967717810005 105.8809 0.1144 3779 +3781 2 10.678400359746314 -544.1543685352776 106.2334 0.1144 3780 +3782 2 10.213776876658905 -545.980891130181 106.5428 0.1144 3781 +3783 2 9.748078713561178 -547.3164965153436 106.8388 0.1144 3782 +3784 2 9.284031254413797 -548.6112323419932 107.1342 0.1144 3783 +3785 2 8.819898602416636 -549.8139521843764 107.4276 0.1144 3784 +3786 2 8.354285632168676 -551.5445046163297 107.718 0.1144 3785 +3787 2 7.888639834883676 -553.0992045235253 108.0106 0.1144 3786 +3788 2 7.424592375736339 -554.0299854529339 108.2976 0.1144 3787 +3789 2 6.957957091290787 -554.9591759676032 108.5728 0.1144 3788 +3790 2 6.493463341885995 -555.9160576558976 108.8318 0.1144 3789 +3791 2 6.0274564471933445 -557.1966562858156 109.0726 0.1144 3790 +3792 2 5.566217250506188 -558.4948070962771 109.5335 0.1144 3791 +3793 2 12.120605045797703 -517.9596654896167 75.8596 0.1144 3748 +3794 2 11.76485621354415 -519.0884650571179 76.4929 0.1144 3793 +3795 2 11.197336678576104 -520.1055756393536 77.0342 0.1144 3794 +3796 2 11.222296473327734 -521.4441970239806 77.4948 0.1144 3795 +3797 2 10.893286387418318 -522.604400827718 78.0895 0.1144 3796 +3798 2 10.439435541071855 -524.5078932340057 78.7013 0.1144 3797 +3799 2 9.988446015534944 -525.9986913407483 79.1101 0.1144 3798 +3800 2 9.357163388108235 -526.9776468372811 79.4752 0.1144 3799 +3801 2 8.638410030547524 -528.3396742500742 79.8697 0.1144 3800 +3802 2 7.9124825566418355 -529.7964874160918 80.3264 0.1144 3801 +3803 2 7.219389471295251 -530.3180698479226 81.0995 0.1144 3802 +3804 2 6.581390323128943 -530.8544851391688 82.224 0.1144 3803 +3805 2 6.097121426837477 -531.8651447277106 83.3994 0.1144 3804 +3806 2 5.79737082607498 -533.0732829635178 84.4472 0.1144 3805 +3807 2 5.555102474477666 -534.6277735714389 85.3866 0.1144 3806 +3808 2 5.209029698480711 -536.3356166593586 86.2442 0.1144 3807 +3809 2 4.673622357256377 -537.5845801957823 87.0114 0.1144 3808 +3810 2 4.072820758398652 -538.5218351036343 87.7103 0.1144 3809 +3811 2 3.5523541109967276 -540.0314094092384 88.3957 0.1144 3810 +3812 2 3.1692936100420432 -541.7876592921971 89.1024 0.1144 3811 +3813 2 2.8411823078136855 -543.2029921735052 89.8316 0.1144 3812 +3814 2 2.5134649300301177 -544.2518957239316 90.5778 0.1144 3813 +3815 2 2.160615756252678 -545.2694663813164 91.3363 0.1144 3814 +3816 2 1.6280659417181518 -546.258651665004 92.1141 0.1144 3815 +3817 2 0.8461508491327763 -547.9798284328216 92.8984 0.1144 3816 +3818 2 -0.0018539773342283183 -548.6879351714111 93.6606 0.1144 3817 +3819 2 -0.8008341690536191 -549.0213096506 94.3634 0.1144 3818 +3820 2 -1.534258519045089 -550.0805500583177 94.9704 0.1144 3819 +3821 2 -2.246326182304756 -552.130268593711 95.4957 0.1144 3820 +3822 2 -2.8317157950254455 -552.8558307116939 95.9756 0.1144 3821 +3823 2 -3.1083669165531873 -553.9791257191148 96.4393 0.1144 3822 +3824 2 -3.2151745291025726 -555.3466938380506 96.8968 0.1144 3823 +3825 2 -3.3829362791137427 -556.8085738963989 97.3526 0.1144 3824 +3826 2 -3.689613526740299 -558.5681059586575 97.8146 0.1144 3825 +3827 2 -4.112627065203089 -560.5120304702481 98.2898 0.1144 3826 +3828 2 -4.572535216097787 -561.6415221791842 98.7815 0.1144 3827 +3829 2 -4.9980873156290535 -562.5986118135255 99.3283 0.1144 3828 +3830 2 -5.361403496135715 -563.6247732110223 99.9709 0.1144 3829 +3831 2 -5.701147881119514 -564.6679384916846 100.6964 0.1144 3830 +3832 2 -5.955881012657986 -565.8049187837804 101.4423 0.1144 3831 +3833 2 -6.116248901698832 -567.039117945908 102.1639 0.1144 3832 +3834 2 -6.208993396169337 -568.3337091934088 102.8622 0.1144 3833 +3835 2 -5.824310643461992 -569.8064630454115 103.581 0.1144 3834 +3836 2 -4.987021109536645 -571.3361051376767 104.2821 0.1144 3835 +3837 2 -4.584755802734154 -572.8140697232413 105.0017 0.1144 3836 +3838 2 -4.7907024642565545 -573.9890818568254 105.6821 0.1144 3837 +3839 2 -5.130752479252173 -575.0415217671208 106.3297 0.1144 3838 +3840 2 -5.41270898505892 -576.1705687780296 106.9768 0.1144 3839 +3841 2 -5.592589138286257 -577.3946777431455 107.6074 0.1144 3840 +3842 2 -5.682921703787816 -578.7117916772693 108.206 0.1144 3841 +3843 2 -5.745132111340002 -580.060647124558 108.7761 0.1144 3842 +3844 2 -5.806052912349472 -581.4091090087578 109.3252 0.1144 3843 +3845 2 -5.867420003616417 -582.7598088329606 109.8569 0.1144 3844 +3846 2 -5.947811629562629 -584.0959650819229 110.3738 0.1144 3845 +3847 2 -6.099084304379971 -585.3706435534484 110.8811 0.1144 3846 +3848 2 -6.277935940243587 -586.6202346349511 111.3767 0.1144 3847 +3849 2 -6.4602601569404285 -587.8690329543527 111.8552 0.1144 3848 +3850 2 -6.62681749325872 -589.1458210142987 112.308 0.1144 3849 +3851 2 -6.605852552394381 -590.5612754597665 112.6796 0.1144 3850 +3852 2 -6.5054435240792685 -592.0520733925077 112.9699 0.1144 3851 +3853 2 -6.397160824962768 -593.5552379545544 113.2062 0.1144 3852 +3854 2 -6.28882576003349 -595.0638491282946 113.4148 0.1144 3853 +3855 2 -5.932796334630993 -596.6728433431944 113.671 0.1144 3854 +3856 2 -5.3379761693416725 -598.3315985120546 114.0233 0.1144 3855 +3857 2 -4.686888071169761 -599.9958788885915 114.459 0.1144 3856 +3858 2 -4.03562097508555 -600.6665246100605 114.9389 0.1144 3857 +3859 2 -3.556924867235118 -601.4368287539821 115.3846 0.1144 3858 +3860 2 -3.534843807110825 -602.8150544304696 115.691 0.1144 3859 +3861 2 -3.589970801797527 -604.265430624302 115.8665 0.1144 3860 +3862 2 -3.6454065280791923 -605.7171416555049 115.9486 0.1144 3861 +3863 2 -3.700213864607953 -607.1669711064051 115.981 0.1144 3862 +3864 2 -3.7582374161877468 -608.6266419253373 116.004 0.1144 3863 +3865 2 -3.927238815975471 -610.1549805504676 116.1068 0.1144 3864 +3866 2 -4.2368509581617815 -612.0169148526479 116.3638 0.1144 3865 +3867 2 -4.562370640972297 -613.5906772426333 116.741 0.1144 3866 +3868 2 -4.885451770942964 -614.9419168113297 117.1876 0.1144 3867 +3869 2 -5.210792455841215 -616.0496993451736 117.6546 0.1144 3868 +3870 2 -5.534449609751917 -617.1526331218959 118.0967 0.1144 3869 +3871 2 -5.860278024157388 -618.2688955520968 118.4708 0.1144 3870 +3872 2 -6.11029491818217 -618.3054069484048 119.7249 0.1144 3871 +3873 2 -6.907678470588756 -618.559030060163 121.0236 0.1144 3872 +3874 2 -7.8015386666317355 -620.5123238702447 121.6572 0.1144 3873 +3875 2 -8.700701145370623 -620.8343181608032 122.2665 0.1144 3874 +3876 2 -9.596212045363991 -622.6037763953183 122.9284 0.1144 3875 +3877 2 -10.511952586266183 -623.1887911449054 123.5844 0.1144 3876 +3878 2 -11.50997861786825 -623.9971630504389 124.1397 0.1144 3877 +3879 2 -12.523904365114511 -624.4885405669395 124.5989 0.1144 3878 +3880 2 -13.54300576295715 -624.8660640891077 124.9872 0.1144 3879 +3881 2 -14.563620306087657 -625.6098526347336 125.3286 0.1144 3880 +3882 2 -15.585618260823338 -626.6677108995419 125.6478 0.1144 3881 +3883 2 -16.60761621555902 -627.0427258729976 125.9684 0.1144 3882 +3884 2 -17.628315951539292 -628.0124174833106 126.3125 0.1144 3883 +3885 2 -18.647279790719438 -628.3016330045359 126.6916 0.1144 3884 +3886 2 -19.693978664410587 -628.6795721168195 127.1211 0.1144 3885 +3887 2 -20.793437636382798 -629.6006104130344 127.6288 0.1144 3886 +3888 2 -21.870158226527842 -629.5719243508358 128.2305 0.1144 3887 +3889 2 -22.55819511358625 -631.2221103317406 129.0677 0.1144 3888 +3890 2 -23.19542451921751 -632.3704217988067 130.0253 0.1144 3889 +3891 2 -24.083362560328375 -633.1975652818902 130.8616 0.1144 3890 +3892 2 -25.032002859775062 -634.601361063159 131.5916 0.1144 3891 +3893 2 -25.986521465857763 -634.5811047417088 132.2406 0.1144 3892 +3894 2 -26.90238284414118 -634.5548568787156 133.247 0.1144 3893 +3895 2 -4.658978863738923 -618.5247220200181 118.5884 0.1144 3871 +3896 2 -3.5725148467531582 -617.0659959928881 118.4235 0.1144 3895 +3897 2 -2.4901072595205562 -616.9054364203353 118.0987 0.1144 3896 +3898 2 -1.4073293648272767 -615.7226807171902 117.6098 0.1144 3897 +3899 2 -0.3186392354764891 -616.3350481144507 116.8972 0.1144 3898 +3900 2 0.7546282949260785 -615.1729752459601 115.957 0.1144 3899 +3901 2 1.8094151800889406 -615.6921817083653 114.8832 0.1144 3900 +3902 2 2.854977809882186 -615.5949136388001 113.7553 0.1144 3901 +3903 2 3.9020090441305015 -615.0428168257736 112.6322 0.1144 3902 +3904 2 4.96150815990304 -614.906168488196 111.5904 0.1144 3903 +3905 2 6.038167487934018 -614.2114867906816 110.8136 0.1144 3904 +3906 2 7.119329914760478 -614.6459395621412 110.3452 0.1144 3905 +3907 2 8.211769837564361 -614.2012818393034 110.0999 0.1144 3906 +3908 2 9.307458802456253 -613.1751688961463 110.0406 0.1144 3907 +3909 2 10.404084888695976 -612.9390632945967 110.1338 0.1144 3908 +3910 2 11.497238394102432 -612.1388959599853 110.3514 0.1144 3909 +3911 2 12.585844638665513 -612.0144595218792 110.672 0.1144 3910 +3912 2 13.66995598819772 -610.8805285640035 111.0914 0.1144 3911 +3913 2 14.762743986551563 -610.7782602901548 111.7668 0.1144 3912 +3914 2 15.698838510067993 -611.5898462935695 113.2561 0.1144 3913 +3915 2 16.50071915376754 -611.4654323338959 115.1161 0.1144 3914 +3916 2 16.924677212989337 -612.6341771422874 116.7905 0.1144 3915 +3917 2 16.87335066105846 -613.8996243681966 117.9172 0.1144 3916 +3918 2 16.763722474412717 -615.1778240310638 118.7978 0.1144 3917 +3919 2 16.647373357382413 -616.477948401326 119.4738 0.1144 3918 +3920 2 16.530316073682776 -617.7878673860671 119.9867 0.1144 3919 +3921 2 16.412239577368794 -619.186941225874 120.3941 0.1144 3920 +3922 2 16.294515566249686 -620.6722700932935 120.755 0.1144 3921 +3923 2 16.175684048083262 -622.1638143576631 121.1092 0.1144 3922 +3924 2 16.058536060904295 -623.6567096489591 121.4685 0.1144 3923 +3925 2 15.939704542737822 -625.1436378964719 121.8358 0.1144 3924 +3926 2 15.871971415327778 -626.6060481545567 122.2124 0.1144 3925 +3927 2 15.845484033551521 -628.0275140440115 122.6028 0.1144 3926 +3928 2 15.831660660941054 -629.4330248581251 123.0149 0.1144 3927 +3929 2 15.817346457240284 -630.8405469548875 123.4624 0.1144 3928 +3930 2 15.803158885639093 -632.2435558900163 123.9599 0.1144 3929 +3931 2 15.789459043545065 -633.6376889537504 124.5199 0.1144 3930 +3932 2 15.775403614673017 -635.0097756451828 125.179 0.1144 3931 +3933 2 15.901055657862209 -636.2340183387375 126.0132 0.1144 3932 +3934 2 16.481652523736336 -637.143131395585 127.3331 0.1144 3933 +3935 2 17.179294462641252 -638.083789163226 128.9571 0.1144 3934 +3936 2 17.79332907510704 -638.2533597739466 130.8485 0.1144 3935 +3937 2 18.235491578943886 -638.3332070810568 133.247 0.1144 3936 +3938 2 9.899252282713496 -513.0450512494069 64.8707 0.1144 3733 +3939 2 9.010012216749558 -513.0745812655362 66.0618 0.1144 3938 +3940 2 7.890773688245634 -514.1088662147263 65.9498 0.1144 3939 +3941 2 6.771226428146859 -513.5515649086221 65.8832 0.1144 3940 +3942 2 5.652020726679987 -513.8743006820864 65.8143 0.1144 3941 +3943 2 4.53247346658126 -514.5071926393044 65.7544 0.1144 3942 +3944 2 3.4122978167295663 -515.4632066065967 65.7143 0.1144 3943 +3945 2 2.29300692241298 -515.463084457196 65.7051 0.1144 3944 +3946 2 1.1639910390468078 -516.5431534251655 65.7488 0.1144 3945 +3947 2 0.027379674124244247 -515.9804979473358 65.8865 0.1144 3946 +3948 2 -1.0947506998539929 -514.9478206674412 66.1352 0.1144 3947 +3949 2 -2.2121626400563823 -515.8876703956116 66.4698 0.1144 3948 +3950 2 -3.3391157709880446 -515.3772685848162 66.8503 0.1144 3949 +3951 2 -4.4717404857879774 -516.1744038810933 67.2459 0.1144 3950 +3952 2 -5.602798996950741 -515.3786109827557 67.6505 0.1144 3951 +3953 2 -6.733281484173319 -515.5369967155657 68.07 0.1144 3952 +3954 2 -7.86175217003791 -515.8601817424418 68.5157 0.1144 3953 +3955 2 -8.987111372476978 -516.7389678790175 69.0024 0.1144 3954 +3956 2 -10.070116612013184 -516.1460975033743 69.6007 0.1144 3955 +3957 2 -11.079147123833504 -515.0986885105007 70.471 0.1144 3956 +3958 2 -12.101369712591946 -515.49263091492 71.5302 0.1144 3957 +3959 2 -13.137022543020109 -514.8803082598898 72.6331 0.1144 3958 +3960 2 -14.182375046688932 -515.6368626747371 73.7262 0.1144 3959 +3961 2 -15.24937103854737 -515.2662796803722 74.6981 0.1144 3960 +3962 2 -16.33121971388404 -514.7067707921299 75.5574 0.1144 3961 +3963 2 -17.423984787790367 -515.9842425222691 76.3342 0.1144 3962 +3964 2 -18.503667304814012 -515.441125595393 77.0638 0.1144 3963 +3965 2 -19.47929071850257 -517.0652427805826 77.7862 0.1144 3964 +3966 2 -20.486968165403976 -517.1352194927302 78.5498 0.1144 3965 +3967 2 -21.558413505171952 -516.6001344739054 79.3741 0.1144 3966 +3968 2 -22.634727149014566 -518.0278614093122 80.2435 0.1144 3967 +3969 2 -23.16609758157635 -518.528682321406 81.2638 0.1144 3968 +3970 2 -23.444094469579262 -519.5989744607359 82.1696 0.1144 3969 +3971 2 -23.721909258086793 -520.7691766093225 83.0558 0.1144 3970 +3972 2 -24.001204364845123 -522.4148991839077 83.9376 0.1144 3971 +3973 2 -24.279380250760283 -524.2708506217414 84.8098 0.1144 3972 +3974 2 -24.558311158527886 -525.9763346421119 85.6671 0.1144 3973 +3975 2 -24.83911630899097 -527.058046585638 86.5038 0.1144 3974 +3976 2 -25.120048091553638 -528.1442549653452 87.3088 0.1144 3975 +3977 2 -25.803122869474993 -528.6846516136006 88.032 0.1144 3976 +3978 2 -26.607264683644612 -529.0285595914802 88.6469 0.1144 3977 +3979 2 -27.420139922093494 -530.6744396999833 89.1859 0.1144 3978 +3980 2 -28.23519813483282 -531.7788946441102 89.6594 0.1144 3979 +3981 2 -29.22661445493053 -532.5321155694511 90.0343 0.1144 3980 +3982 2 -30.297296870855014 -533.4474831882131 90.2986 0.1144 3981 +3983 2 -31.370514746265012 -534.1805123449595 90.5022 0.1144 3982 +3984 2 -32.444308645614974 -534.4409487554019 90.6744 0.1144 3983 +3985 2 -33.518102544965046 -534.5193656816707 90.8404 0.1144 3984 +3986 2 -34.5950219558867 -535.5005975942182 91.0619 0.1144 3985 +3987 2 -35.6705610567862 -535.8835265820592 91.3847 0.1144 3986 +3988 2 -36.742894869197706 -537.2756218096243 91.7913 0.1144 3987 +3989 2 -37.81064859372868 -537.2429334992327 92.2592 0.1144 3988 +3990 2 -38.87589968581131 -536.8778434682451 92.7685 0.1144 3989 +3991 2 -39.9391389765358 -538.1640894399544 93.3036 0.1144 3990 +3992 2 -41.00149351172536 -538.2397369614051 93.8493 0.1144 3991 +3993 2 -42.063580754569735 -539.5552638363312 94.3986 0.1144 3992 +3994 2 -43.12032668451494 -539.6203517992951 94.9536 0.1144 3993 +3995 2 -43.919521110230164 -539.9786072173133 95.5298 0.1144 3994 +3996 2 -44.71769322174778 -541.2752902380053 96.1271 0.1144 3995 +3997 2 -45.51550423585782 -542.4497002789697 96.7271 0.1144 3996 +3998 2 -46.31376154022533 -543.3785079710889 97.3126 0.1144 3997 +3999 2 -47.114254184695895 -544.9674164369983 97.8704 0.1144 3998 +4000 2 -47.914832022016355 -545.8577967185677 98.406 0.1144 3999 +4001 2 -48.68133892258434 -546.2902280719402 99.3706 0.1144 4000 +4002 2 14.213773090088765 -506.94286371212735 56.9876 0.1144 3569 +4003 2 14.308339047851467 -508.26661933205116 56.6418 0.1144 4002 +4004 2 14.466967524918445 -509.755870903561 56.39 0.1144 4003 +4005 2 14.317959915658252 -510.99304110949856 55.9572 0.1144 4004 +4006 2 14.082125379236139 -512.5112757368963 55.4683 0.1144 4005 +4007 2 13.971131603251026 -514.0771934740924 55.0416 0.1144 4006 +4008 2 14.153278817491477 -515.0647184531574 54.6073 0.1144 4007 +4009 2 14.080892312539225 -516.482076225956 54.0772 0.1144 4008 +4010 2 13.17808886786619 -518.2760331574001 53.5646 0.1144 4009 +4011 2 12.19456644988222 -518.2373221134254 53.3568 0.1144 4010 +4012 2 11.328483420136752 -518.8255067680066 53.3406 0.1144 4011 +4013 2 10.57511454384733 -520.230730290225 53.3369 0.1144 4012 +4014 2 9.820042597794782 -521.5964226768762 53.3288 0.1144 4013 +4015 2 9.066045331752552 -522.4353292928623 53.2874 0.1144 4014 +4016 2 9.159414387050498 -523.6934102730224 52.934 0.1144 4015 +4017 2 9.264891232753307 -525.1053255865304 52.5168 0.1144 4016 +4018 2 9.37054707636847 -526.5106681511825 52.0355 0.1144 4017 +4019 2 9.47535960369829 -527.9122837307833 51.5133 0.1144 4018 +4020 2 9.42424218358171 -529.2820355684518 51.0591 0.1144 4019 +4021 2 9.20444492146634 -530.6143914047893 50.7198 0.1144 4020 +4022 2 8.906146203877583 -531.8694357623494 50.3916 0.1144 4021 +4023 2 8.381452646326723 -533.8004092689996 50.022 0.1144 4022 +4024 2 7.558289399060868 -534.5868398553051 49.6782 0.1144 4023 +4025 2 6.610149140757521 -534.6235256651624 49.2492 0.1144 4024 +4026 2 6.938537353832073 -533.7595179619236 48.9493 0.1144 4025 +4027 2 7.618742293427431 -533.1695451560656 48.6016 0.1144 4026 +4028 2 8.56826596333602 -532.3005278645913 48.3008 0.1144 4027 +4029 2 9.689673751736047 -531.8679080941498 47.997 0.1144 4028 +4030 2 10.700749992935986 -531.9512906443582 47.7383 0.1144 4029 +4031 2 10.98816935353783 -531.1185726087957 47.8164 0.1144 4030 +4032 2 11.606344090587818 -530.1356163984068 47.9335 0.1144 4031 +4033 2 12.280978762605603 -529.3014216733608 48.0404 0.1144 4032 +4034 2 12.876115596286613 -528.5558096221143 48.2073 0.1144 4033 +4035 2 13.44464892793576 -527.4353895735959 48.4145 0.1144 4034 +4036 2 13.971789650539147 -525.2024801436162 48.61 0.1144 4035 +4037 2 14.368695241457182 -523.8471747353626 48.7749 0.1144 4036 +4038 2 14.582919826948338 -522.6403167859166 48.9342 0.1144 4037 +4039 2 14.544707687454705 -521.2241957242583 49.0633 0.1144 4038 +4040 2 14.358946539598856 -519.7038294034526 49.1296 0.1144 4039 +4041 2 14.184763007102674 -518.1889353681356 49.1478 0.1144 4040 +4042 2 14.031924542238723 -516.9963223022623 49.1305 0.1144 4041 +4043 2 13.98186439345717 -515.8051858468248 49.0669 0.1144 4042 +4044 2 14.260653948442473 -514.1206859442718 48.9177 0.1144 4043 +4045 2 14.698811488160633 -513.1647516608723 48.7337 0.1144 4044 +4046 2 14.971308580753023 -512.021932168099 48.594 0.1144 4045 +4047 2 15.259272434341762 -510.8921383770672 48.524 0.1144 4046 +4048 2 15.852414596393869 -509.2577663607863 48.5108 0.1144 4047 +4049 2 16.637155365257243 -507.95850704917746 48.5136 0.1144 4048 +4050 2 17.398505745556697 -507.2434150364436 48.5044 0.1144 4049 +4051 2 18.226707084756285 -506.8815455574739 48.4487 0.1144 4050 +4052 2 19.202746654800418 -505.51056101590626 48.3428 0.1144 4051 +4053 2 20.27578863388114 -505.18329115427133 48.2196 0.1144 4052 +4054 2 21.28093882506183 -503.80373603866866 48.0043 0.1144 4053 +4055 2 21.261937427614328 -502.66074277666894 47.6753 0.1144 4054 +4056 2 20.66706179492919 -502.48633238948435 47.3889 0.1144 4055 +4057 2 21.21590386447955 -500.3896432863406 47.2374 0.1144 4056 +4058 2 22.129936848962366 -499.6948510706969 47.117 0.1144 4057 +4059 2 10.734835437586748 -533.0071961463962 47.4068 0.1144 4030 +4060 2 10.555857169623595 -534.6050385850467 47.1674 0.1144 4059 +4061 2 10.107309298509598 -536.446917223731 46.9216 0.1144 4060 +4062 2 9.41369083852568 -537.3361050695619 46.6704 0.1144 4061 +4063 2 8.612407936119087 -538.5072948242299 46.3744 0.1144 4062 +4064 2 7.835813641031939 -539.9371868070994 45.9976 0.1144 4063 +4065 2 7.03438697679657 -540.3061922787347 45.5423 0.1144 4064 +4066 2 6.212284381394976 -540.8264921915737 45.0422 0.1144 4065 +4067 2 5.338527194161292 -542.0850391876534 44.431 0.1144 4066 +4068 2 4.635429006368465 -541.8706269664133 43.6215 0.1144 4067 +4069 2 3.917732316595579 -540.687409877808 42.7067 0.1144 4068 +4070 2 2.836449354161413 -541.5325030903589 41.9202 0.1144 4069 +4071 2 1.7651600878582805 -541.0733000188884 41.2079 0.1144 4070 +4072 2 0.7467982986487982 -542.5479503929693 40.5093 0.1144 4071 +4073 2 -0.21512578750379063 -542.862769995415 39.8793 0.1144 4072 +4074 2 -1.1322880776778277 -543.0512941769623 39.321 0.1144 4073 +4075 2 -1.9973080465126039 -544.9806736939264 38.8105 0.1144 4074 +4076 2 -2.876279222009348 -545.4721614352478 38.2841 0.1144 4075 +4077 2 -3.9132513901411414 -546.9602029834215 37.8983 0.1144 4076 +4078 2 -4.894993370491996 -547.3046431486555 37.6146 0.1144 4077 +4079 2 -5.750198339334407 -547.5817647213487 37.4018 0.1144 4078 +4080 2 -6.461242995859976 -548.1627370520091 37.2218 0.1144 4079 +4081 2 -7.1756664281561235 -550.5120672900264 37.0087 0.1144 4080 +4082 2 -7.8914318328078 -551.3382763477025 36.7606 0.1144 4081 +4083 2 -8.526942062920114 -552.0703758818141 36.5156 0.1144 4082 +4084 2 -9.285756983734117 -554.5394538486701 36.2869 0.1144 4083 +4085 2 -10.105303888338039 -554.9456896407609 36.0609 0.1144 4084 +4086 2 -10.911316151083504 -555.596086201975 35.8246 0.1144 4085 +4087 2 -11.805337522772977 -556.4689752572207 35.5379 0.1144 4086 +4088 2 -12.779153466509719 -557.5942675431654 35.1417 0.1144 4087 +4089 2 -12.933902617247341 -557.5421230779583 35.0154 0.1144 4088 +4090 2 -13.705198737510049 -557.8440039573286 34.102 0.1144 4089 +4091 2 -13.058675420673687 -559.0027091282681 33.1218 0.1144 4090 +4092 2 -12.527773498302068 -559.1302169225231 31.8906 0.1144 4091 +4093 2 -11.75288667064493 -558.0774839604745 29.953 0.1144 4092 +4094 2 -11.343052400046904 -558.1334365877603 27.8699 0.1144 4093 +4095 2 -11.784056339085609 -557.6174661221139 25.7201 0.1144 4094 +4096 2 -12.345457999927962 -559.2804328074438 24.465 0.1144 4095 +4097 2 -12.978063469382352 -560.0568943983079 23.3558 0.1144 4096 +4098 2 -13.569402961890667 -560.6755001644851 22.3465 0.1144 4097 +4099 2 -13.486976331192984 -562.0462255465025 21.3863 0.1144 4098 +4100 2 -14.172654738394765 -563.2560234307739 20.1769 0.1144 4099 +4101 2 -14.948427825312383 -562.9007632301915 19.21 0.1144 4100 +4102 2 -14.74400312836801 -562.0640084743319 18.1882 0.1144 4101 +4103 2 -15.451397993962296 -561.6518173309465 17.2654 0.1144 4102 +4104 2 -16.47679254673441 -561.9153432784689 16.7176 0.1144 4103 +4105 2 -17.607439311186674 -562.7705578768774 16.3484 0.1144 4104 +4106 2 -18.719327525242832 -561.8476728230851 15.7058 0.1144 4105 +4107 2 -13.114201637650375 -559.2701020077176 32.9333 0.1144 4091 +4108 2 -13.354043339596078 -560.4433712724659 32.4405 0.1144 4107 +4109 2 -13.598297152769184 -561.6369976227907 32.2955 0.1144 4108 +4110 2 -13.843305987794626 -563.102492296822 32.3302 0.1144 4109 +4111 2 -14.097497638940045 -564.9193521227826 32.4503 0.1144 4110 +4112 2 -14.355737894858649 -566.7824137749305 32.5788 0.1144 4111 +4113 2 -14.61491527212507 -568.372988955506 32.6721 0.1144 4112 +4114 2 -14.658191848477315 -569.7803285142815 32.7225 0.1144 4113 +4115 2 -14.427208207454594 -571.0379033274628 32.7421 0.1144 4114 +4116 2 -14.119567533503737 -571.7649513789688 32.7457 0.1144 4115 +4117 2 -13.811246103987308 -572.6457727260564 32.7449 0.1144 4116 +4118 2 -13.503605430036444 -574.1310018375759 32.744 0.1144 4117 +4119 2 -13.196849511620634 -575.7364578683744 32.7429 0.1144 4118 +4120 2 -12.888528082104195 -577.3406041242358 32.7412 0.1144 4119 +4121 2 -12.580887408153288 -578.9517420984135 32.7387 0.1144 4120 +4122 2 -12.272565978636901 -580.0621450609442 32.7356 0.1144 4121 +4123 2 -11.965895253070869 -581.16872931455 32.7312 0.1144 4122 +4124 2 -11.658254579120065 -582.6327186583721 32.7239 0.1144 4123 +4125 2 -11.476809328382604 -584.1641446820591 32.7155 0.1144 4124 +4126 2 -11.453217532016886 -585.5794489845692 32.7054 0.1144 4125 +4127 2 -11.477634543456155 -587.0219265565984 32.6875 0.1144 4126 +4128 2 -11.501081606510489 -588.4631304147169 32.653 0.1144 4127 +4129 2 -11.526094180665517 -589.9054493940354 32.594 0.1144 4128 +4130 2 -11.758048183663675 -591.1238085548663 32.473 0.1144 4129 +4131 2 -12.25084067988356 -592.4797892365292 32.2605 0.1144 4130 +4132 2 -12.811533167768374 -593.9087675384138 31.9654 0.1144 4131 +4133 2 -13.369957488512853 -594.7097721022166 31.6061 0.1144 4132 +4134 2 -13.927574421592276 -595.5512023889473 31.201 0.1144 4133 +4135 2 -14.479544411760692 -597.6841113727071 30.7647 0.1144 4134 +4136 2 -15.023439092856648 -599.2544311485103 30.3097 0.1144 4135 +4137 2 -15.562571586576695 -600.0795883661224 29.8413 0.1144 4136 +4138 2 -16.102908493989723 -600.9250786260524 29.3569 0.1144 4137 +4139 2 -16.640742768954304 -602.5001603897239 28.8512 0.1144 4138 +4140 2 -17.177789195029447 -603.7782407710221 28.3189 0.1144 4139 +4141 2 -17.714422157884236 -605.3022848221082 27.7554 0.1144 4140 +4142 2 -17.959495670358642 -606.6354809075417 27.1037 0.1144 4141 +4143 2 -18.0168562886386 -607.9745081063107 26.3639 0.1144 4142 +4144 2 -17.583751264905956 -609.1100604006513 25.4893 0.1144 4143 +4145 2 -16.934960775239553 -610.1266112085173 24.5288 0.1144 4144 +4146 2 -16.279751883617323 -610.7073293557821 23.5472 0.1144 4145 +4147 2 -15.62276255436197 -612.0972994233615 22.588 0.1144 4146 +4148 2 -14.923194024633787 -613.6608966212095 21.7162 0.1144 4147 +4149 2 -13.94164456092588 -613.008440713199 21.1972 0.1144 4148 +4150 2 -12.945893727939982 -614.469350093028 20.9109 0.1144 4149 +4151 2 -11.944785144862465 -615.0708107518221 20.8115 0.1144 4150 +4152 2 -10.94310053784477 -615.3862106396136 20.8492 0.1144 4151 +4153 2 -9.849085804897967 -616.5456379614634 20.9886 0.1144 4152 +4154 2 -8.7105526495601 -615.3881795249004 21.1878 0.1144 4153 +4155 2 -7.572019494222339 -615.9238390824764 21.4059 0.1144 4154 +4156 2 -6.434062362824648 -615.1969515388688 21.6418 0.1144 4155 +4157 2 -5.297884976523427 -616.1883350587705 21.8848 0.1144 4156 +4158 2 -4.190742530335541 -616.4573382162746 22.1268 0.1144 4157 +4159 2 -3.082001746010093 -616.4495117047005 22.3589 0.1144 4158 +4160 2 -1.9733461545343616 -616.295988191094 22.5765 0.1144 4159 +4161 2 -0.8740969179237013 -616.6989723578288 22.9975 0.1144 4160 +4162 2 -13.205323041209002 -558.0384494294372 35.6482 0.1144 4088 +4163 2 -13.850324819036047 -559.0340229530835 35.6737 0.1144 4162 +4164 2 -14.497947249198301 -561.2929385645587 35.6787 0.1144 4163 +4165 2 -15.294015470805341 -561.8915426483474 35.6661 0.1144 4164 +4166 2 -16.211970427961873 -562.2706042232381 35.6208 0.1144 4165 +4167 2 -17.132962602257116 -563.4870898795474 35.548 0.1144 4166 +4168 2 -18.05332638679956 -564.4085367462945 35.4528 0.1144 4167 +4169 2 -18.974266195282034 -564.8876388124984 35.3433 0.1144 4168 +4170 2 -19.80709998817493 -566.6724323361046 35.1926 0.1144 4169 +4171 2 -20.532977505314314 -567.516541015625 35.0356 0.1144 4170 +4172 2 -21.260866823811792 -568.0540574495429 34.921 0.1144 4171 +4173 2 -21.986829533800943 -569.3114893814464 34.7768 0.1144 4172 +4174 2 6.56660748544294 -534.7208282455945 48.9829 0.1144 4025 +4175 2 6.04298009038585 -535.8338514754428 48.704 0.1144 4174 +4176 2 5.462813675981321 -537.3549418700951 48.6567 0.1144 4175 +4177 2 5.201588568736671 -539.0508905718011 48.5974 0.1144 4176 +4178 2 5.091399771370126 -540.5786528309724 48.5164 0.1144 4177 +4179 2 5.121680363620031 -541.9285077265886 48.4058 0.1144 4178 +4180 2 5.215849987891509 -543.1987128141449 48.2566 0.1144 4179 +4181 2 5.526566216647705 -544.1549542643033 48.0197 0.1144 4180 +4182 2 5.912078571245996 -545.2964327990665 47.6806 0.1144 4181 +4183 2 6.278034908057769 -546.6198075287255 47.2598 0.1144 4182 +4184 2 6.64127368588872 -548.0739621388288 46.7858 0.1144 4183 +4185 2 7.004906388164411 -549.6690520311256 46.2829 0.1144 4184 +4186 2 8.215154307842603 -549.9004434309606 46.1045 0.1144 4185 +4187 2 9.328191077432896 -549.0135811071086 46.1462 0.1144 4186 +4188 2 10.441771043926273 -548.3245322755561 46.1902 0.1144 4187 +4189 2 11.555436203269474 -547.8591308098889 46.2266 0.1144 4188 +4190 2 12.543453516284146 -547.6669628957895 46.2056 0.1144 4189 +4191 2 13.53246031645937 -546.6720289962531 46.1353 0.1144 4190 +4192 2 14.519816412684143 -545.6582730605626 46.0256 0.1144 4191 +4193 2 15.506811411501271 -544.9638206257888 45.8881 0.1144 4192 +4194 2 16.493282752191107 -544.2350127706545 45.7318 0.1144 4193 +4195 2 17.480724041265702 -543.6877496842095 45.57 0.1144 4194 +4196 2 18.467719040082784 -543.4290568848915 45.4149 0.1144 4195 +4197 2 19.454138014959835 -541.685241375075 45.269 0.1144 4196 +4198 2 20.44220769378729 -541.4131817516212 45.1343 0.1144 4197 +4199 2 21.42564491892144 -540.2548019209823 44.8731 0.1144 4198 +4200 2 7.010382957353851 -550.1881413095434 45.8223 0.1144 4185 +4201 2 7.024265177889209 -551.5948651615943 45.3967 0.1144 4200 +4202 2 7.038775788177471 -553.0033387071064 44.9848 0.1144 4201 +4203 2 7.052211718455357 -554.4126023515655 44.5819 0.1144 4202 +4204 2 7.066361231335925 -555.8489538864402 44.1846 0.1144 4203 +4205 2 7.080425551366716 -557.2434541287283 43.7898 0.1144 4204 +4206 2 7.094575064247284 -558.655944677906 43.3972 0.1144 4205 +4207 2 7.1092677740308865 -560.0706714485572 43.0189 0.1144 4206 +4208 2 7.1239933108515885 -561.4862692020334 42.6594 0.1144 4207 +4209 2 7.137302609029948 -562.9035943422247 42.3242 0.1144 4208 +4210 2 7.148737664512822 -564.3257782061601 42.0202 0.1144 4209 +4211 2 7.12288177407256 -565.7175599874998 41.7973 0.1144 4210 +4212 2 7.087407703817991 -567.1056557042838 41.6506 0.1144 4211 +4213 2 7.051624901968452 -568.4973655341388 41.5624 0.1144 4212 +4214 2 7.014224223205666 -569.8876351705717 41.5162 0.1144 4213 +4215 2 6.978441421356123 -571.2807863992382 41.4963 0.1144 4214 +4216 2 6.942606253693906 -572.6737634126415 41.4884 0.1144 4215 +4217 2 6.907399475784501 -574.0694884532402 41.4809 0.1144 4216 +4218 2 6.871616673935005 -575.4683630931187 41.47 0.1144 4217 +4219 2 6.835781506272745 -576.8597830987374 41.4551 0.1144 4218 +4220 2 6.799946338610528 -578.2554994643069 41.4347 0.1144 4219 +4221 2 6.764163536760986 -579.6518437626651 41.4053 0.1144 4220 +4222 2 6.728328369098772 -581.0490352749941 41.3638 0.1144 4221 +4223 2 6.692545567249294 -582.4463294626319 41.3059 0.1144 4222 +4224 2 6.656710399587027 -583.8444928279525 41.2283 0.1144 4223 +4225 2 6.605769568336154 -585.2280075856519 41.1253 0.1144 4224 +4226 2 6.343789439239185 -586.4154382976375 40.9483 0.1144 4225 +4227 2 6.033102617042548 -587.6932110677119 40.7064 0.1144 4226 +4228 2 5.72197732956834 -589.1992561469851 40.4228 0.1144 4227 +4229 2 5.41110840787637 -590.703398632217 40.1195 0.1144 4228 +4230 2 5.099269537799529 -592.0478837345279 39.8174 0.1144 4229 +4231 2 4.795932728276988 -593.6148933696311 39.536 0.1144 4230 +4232 2 4.649427751465126 -595.0740584367073 39.3103 0.1144 4231 +4233 2 5.1177482486022825 -596.0586345567729 39.228 0.1144 4232 +4234 2 5.7618035832115595 -597.139714311094 39.2202 0.1144 4233 +4235 2 6.508968889945557 -598.3280183187761 39.2451 0.1144 4234 +4236 2 7.256271755342148 -599.989853954108 39.2902 0.1144 4235 +4237 2 8.003075964668447 -600.8191173776604 39.3453 0.1144 4236 +4238 2 8.74935651586739 -602.0331094128068 39.4022 0.1144 4237 +4239 2 9.495584701253605 -602.5749608005963 39.4626 0.1144 4238 +4240 2 10.2412368626998 -603.5527956857866 39.5436 0.1144 4239 +4241 2 10.987465048086023 -604.5783127496412 39.6553 0.1144 4240 +4242 2 11.733117209532175 -605.7256504755865 39.8012 0.1144 4241 +4243 2 12.456278458631992 -607.2294265034266 40.0056 0.1144 4242 +4244 2 13.03511440796374 -607.4168587446113 40.397 0.1144 4243 +4245 2 13.547761023633178 -608.5860363233396 40.8951 0.1144 4244 +4246 2 14.087575546175081 -610.2442330143936 41.3672 0.1144 4245 +4247 2 14.626006657111688 -611.3668863094805 41.8328 0.1144 4246 +4248 2 15.138783006463797 -612.6795535869841 42.2904 0.1144 4247 +4249 2 15.600918874416514 -614.3474782293001 42.7434 0.1144 4248 +4250 2 16.205179938117766 -615.1984448087553 43.1953 0.1144 4249 +4251 2 17.145259093473328 -616.2254349439127 43.668 0.1144 4250 +4252 2 18.17226890132794 -616.0496594242586 44.128 0.1144 4251 +4253 2 19.197856959910702 -616.7728880495094 44.5248 0.1144 4252 +4254 2 20.229323325129442 -617.4225995451432 44.8456 0.1144 4253 +4255 2 21.263953539586392 -618.3838045036389 45.103 0.1144 4254 +4256 2 22.300182092181064 -618.8231843043365 45.318 0.1144 4255 +4257 2 23.335303137728356 -618.9839304053941 45.512 0.1144 4256 +4258 2 24.36592377761528 -619.327311193673 45.7092 0.1144 4257 +4259 2 25.317726719205666 -619.8365230631862 45.9494 0.1144 4258 +4260 2 26.097361522971376 -620.6574914605765 46.2815 0.1144 4259 +4261 2 26.89706989418098 -622.2656517086078 46.6816 0.1144 4260 +4262 2 27.88818758093701 -622.8972596832679 47.0806 0.1144 4261 +4263 2 28.961682456182498 -622.9912848153119 47.4362 0.1144 4262 +4264 2 30.0367756695656 -623.3663423293891 47.726 0.1144 4263 +4265 2 31.115608756127017 -623.1500032361307 47.9217 0.1144 4264 +4266 2 32.196583377729155 -623.8584073032462 48.001 0.1144 4265 +4267 2 33.27973787203865 -623.8182848566476 47.9388 0.1144 4266 +4268 2 34.37280007041846 -624.6280951976954 47.5667 0.1144 4267 +4269 2 35.45175739771798 -625.280409072562 46.7466 0.1144 4268 +4270 2 36.475973965568706 -624.4132168515422 45.6324 0.1144 4269 +4271 2 37.202364735665974 -625.618421111489 44.3699 0.1144 4270 +4272 2 37.84520844712778 -626.5584583913899 43.048 0.1144 4271 +4273 2 38.48965049672732 -627.2278398559954 41.7295 0.1144 4272 +4274 2 39.14065781169449 -628.5287521278592 40.4746 0.1144 4273 +4275 2 40.17920478996932 -629.0405966463928 39.4503 0.1144 4274 +4276 2 41.28486352025649 -628.4228449996258 38.7587 0.1144 4275 +4277 2 42.40610703142683 -628.4192622108552 38.2427 0.1144 4276 +4278 2 43.515014803802075 -627.9370095119696 37.5813 0.1144 4277 +4279 2 8.880477387933663 -522.6398463000478 53.5052 0.1144 4015 +4280 2 7.891276176626911 -523.9727040214689 53.5038 0.1144 4279 +4281 2 6.862374499474615 -523.8036915631384 53.3313 0.1144 4280 +4282 2 5.809268150390405 -523.9397174582194 53.1821 0.1144 4281 +4283 2 4.706084718459142 -525.1435119804265 53.0326 0.1144 4282 +4284 2 3.5765968205785974 -525.2037024739866 52.9099 0.1144 4283 +4285 2 2.535865453277129 -524.9511673658511 52.8237 0.1144 4284 +4286 2 1.6434234131925454 -523.9277167138887 52.7755 0.1144 4285 +4287 2 1.326791232670308 -523.1088149123971 52.7624 0.1144 4286 +4288 2 0.37086239544795774 -522.6984530845234 52.7845 0.1144 4287 +4289 2 -0.4378553045988909 -521.1530381809542 52.6935 0.1144 4288 +4290 2 -0.7152530314299064 -521.033623952528 52.7089 0.1144 4289 +4291 2 -1.8183896081781121 -522.1494772294494 52.8674 0.1144 4290 +4292 2 -2.9165404588052084 -522.1767342344865 53.1532 0.1144 4291 +4293 2 -4.009206927241099 -523.7907256620229 53.543 0.1144 4292 +4294 2 -5.0989440117468074 -523.3261337268076 54.0081 0.1144 4293 +4295 2 -6.184527759853781 -522.867586390489 54.5216 0.1144 4294 +4296 2 -7.269717583516018 -524.4811930514279 55.0388 0.1144 4295 +4297 2 -8.35632364582058 -524.0250157438164 55.5436 0.1144 4296 +4298 2 -9.442844515275272 -525.6408188880035 56.0316 0.1144 4297 +4299 2 -10.567407949148873 -524.8209873607916 56.4718 0.1144 4298 +4300 2 -11.696987243045255 -524.5592830851099 56.8613 0.1144 4299 +4301 2 -12.828848732228087 -524.9746003071077 57.2135 0.1144 4300 +4302 2 -13.96168016979574 -524.991718707514 57.5386 0.1144 4301 +4303 2 -15.095139997116142 -525.1260951249283 57.846 0.1144 4302 +4304 2 -16.22953694578436 -524.2901197326861 58.1451 0.1144 4303 +4305 2 -17.362996773104808 -525.0756559969308 58.4438 0.1144 4304 +4306 2 -18.497393721773026 -524.3134016086518 58.7443 0.1144 4305 +4307 2 -19.63139674599651 -525.1393138835928 59.047 0.1144 4306 +4308 2 -20.765250497761706 -524.4631829100382 59.3538 0.1144 4307 +4309 2 -21.89862513223238 -523.8564365372507 59.67 0.1144 4308 +4310 2 -23.033993745795293 -524.6638120487165 59.9956 0.1144 4309 +4311 2 -24.167895755501803 -525.0457585159272 60.3154 0.1144 4310 +4312 2 -25.299606273401363 -525.2290853607084 60.6494 0.1144 4311 +4313 2 -26.42935425417253 -524.4910211486449 61.0226 0.1144 4312 +4314 2 -27.445180583896573 -525.5991342385809 61.6258 0.1144 4313 +4315 2 -28.42289006523002 -526.1993352913427 62.4344 0.1144 4314 +4316 2 -29.38278252716026 -527.29670691534 63.3889 0.1144 4315 +4317 2 -30.329096498935822 -528.0143851335885 64.4414 0.1144 4316 +4318 2 -31.26791428716198 -528.7203384598861 65.5483 0.1144 4317 +4319 2 -32.20228954617016 -529.3637789216933 66.6772 0.1144 4318 +4320 2 -33.13763475356321 -529.7124034796476 67.7958 0.1144 4319 +4321 2 -34.07650490760209 -529.6284253729254 68.8999 0.1144 4320 +4322 2 -35.017334497186404 -531.4250283969322 69.9868 0.1144 4321 +4323 2 -35.96208295786128 -531.4046623246253 71.0503 0.1144 4322 +4324 2 -36.90919028915582 -533.1433818920332 72.06 0.1144 4323 +4325 2 -37.856282899767706 -533.2999713013788 72.9596 0.1144 4324 +4326 2 -38.810819328116196 -533.2271768283882 73.7988 0.1144 4325 +4327 2 -39.77065803916045 -534.446883945161 74.5881 0.1144 4326 +4328 2 -40.73405452388779 -535.1637809494981 75.346 0.1144 4327 +4329 2 -41.6973658157652 -536.3220230948307 76.0934 0.1144 4328 +4330 2 -42.66067710764272 -537.1024040307364 76.8519 0.1144 4329 +4331 2 -43.20217017080731 -537.712325866138 77.8369 0.1144 4330 +4332 2 -43.80173211988858 -538.3849864573862 78.6338 0.1144 4331 +4333 2 -44.378453678315346 -539.2502354478488 79.7577 0.1144 4332 +4334 2 -44.93532210646034 -541.0203993429095 81.0729 0.1144 4333 +4335 2 -45.47895980624872 -541.9575218858088 82.4933 0.1144 4334 +4336 2 -46.016316662743705 -542.9114554907989 83.9636 0.1144 4335 +4337 2 -46.55309749529863 -544.2370864367765 85.4311 0.1144 4336 +4338 2 -47.297286970803036 -545.3654015681744 86.564 0.1144 4337 +4339 2 -48.099266734531035 -546.208985390249 87.4922 0.1144 4338 +4340 2 -48.90969860204707 -546.5049834846645 88.2997 0.1144 4339 +4341 2 -49.680699705109205 -547.5588569728676 89.108 0.1144 4340 +4342 2 -50.444741618358954 -548.7004212828077 89.9038 0.1144 4341 +4343 2 -51.21168008850174 -549.6323267270893 90.6786 0.1144 4342 +4344 2 -51.9800019702497 -551.5438383906621 91.4248 0.1144 4343 +4345 2 -52.766000211155394 -552.0804248939054 91.9293 0.1144 4344 +4346 2 -53.56019729165003 -553.0201509164634 92.2695 0.1144 4345 +4347 2 -54.357023636692475 -553.4206456501613 92.468 0.1144 4346 +4348 2 -55.31830702145607 -555.4591929575364 92.566 0.1144 4347 +4349 2 -56.40155723243735 -555.2954651769887 92.5952 0.1144 4348 +4350 2 -57.484755077605904 -556.1937570847189 92.5952 0.1144 4349 +4351 2 -58.56800528858709 -556.3751208904541 92.5952 0.1144 4350 +4352 2 -59.64616745086833 -556.492912154065 92.5952 0.1144 4351 +4353 2 -60.67461973618013 -558.0100835222082 92.5952 0.1144 4352 +4354 2 -61.70370041124468 -558.4438632556731 92.5952 0.1144 4353 +4355 2 -42.15278456457377 -537.5022503131753 77.1134 0.1144 4330 +4356 2 -41.20720120416271 -537.3301958698714 77.9926 0.1144 4355 +4357 2 -40.22061915915057 -538.3211379603645 78.3765 0.1144 4356 +4358 2 -39.23555025942635 -538.0756317381572 78.804 0.1144 4357 +4359 2 -38.25333647734544 -539.3315574823304 79.2627 0.1144 4358 +4360 2 -37.310555868764936 -540.7030858886792 80.1741 0.1144 4359 +4361 2 -0.6053078974464388 -520.1801859539867 51.0773 0.1144 4289 +4362 2 -0.7397354967013001 -518.7344588527893 51.123 0.1144 4361 +4363 2 -1.3057510793138256 -517.328391464977 51.2926 0.1144 4362 +4364 2 -2.021999993784327 -517.5477565117242 51.6298 0.1144 4363 +4365 2 -2.7329521361886364 -515.9314418004212 52.096 0.1144 4364 +4366 2 -3.449151093892951 -515.0870164325262 52.64 0.1144 4365 +4367 2 -4.245836276109892 -514.8419488669764 53.1714 0.1144 4366 +4368 2 -5.078596371457519 -513.2871969439827 53.657 0.1144 4367 +4369 2 -5.914341318131084 -511.7286194450308 54.0764 0.1144 4368 +4370 2 -6.743772594474272 -511.1581616797844 54.437 0.1144 4369 +4371 2 -7.345307581678198 -510.6793175135703 54.7509 0.1144 4370 +4372 2 -7.145518830773093 -509.4257724040231 54.9741 0.1144 4371 +4373 2 -6.94399418306776 -507.7235728383487 55.1561 0.1144 4372 +4374 2 -6.775747805132417 -506.0280841942903 55.3266 0.1144 4373 +4375 2 -6.944660496896615 -505.03911716607536 55.5212 0.1144 4374 +4376 2 -7.670357205481883 -503.9262492444704 55.7494 0.1144 4375 +4377 2 -8.394358669283971 -502.4539437061497 56.0526 0.1144 4376 +4378 2 -9.1581742268584 -502.7572120588227 56.4782 0.1144 4377 +4379 2 -10.118645915279195 -501.41533728032385 57.1357 0.1144 4378 +4380 2 -11.132086129280392 -500.3057525216514 58.0034 0.1144 4379 +4381 2 -11.872943169639269 -500.09504469617224 59.2091 0.1144 4380 +4382 2 -11.427749060260705 -498.8164079868225 61.1696 0.1144 4381 +4383 2 -10.715392476292351 -498.7263116326186 63.1554 0.1144 4382 +4384 2 -10.06229788658567 -498.72002790424654 65.2408 0.1144 4383 +4385 2 -9.863747388405773 -498.0900042328953 67.3904 0.1144 4384 +4386 2 -9.830904885071355 -497.22470305717997 69.5512 0.1144 4385 +4387 2 -9.4421483897604 -497.3506591535961 72.0087 0.1144 4386 +4388 2 -8.819762972112274 -497.5639169910364 74.0838 0.1144 4387 +4389 2 -8.21561252374407 -497.230003541423 76.127 0.1144 4388 +4390 2 -8.161419158059015 -496.2775779135447 78.0847 0.1144 4389 +4391 2 -8.128619100262666 -495.24277068900363 79.8941 0.1144 4390 +4392 2 -7.981334069878139 -494.2560382515877 81.5066 0.1144 4391 +4393 2 -7.539344254677393 -493.5093697120745 82.8834 0.1144 4392 +4394 2 -7.148278934502361 -492.8346596039955 84.6908 0.1144 4393 +4395 2 17.272177705632885 -483.9794017873689 57.6892 0.1144 3552 +4396 2 18.245273349042826 -485.4121670406198 57.6758 0.1144 4395 +4397 2 19.217878161362467 -485.7306126493893 57.6568 0.1144 4396 +4398 2 20.190397780832335 -486.2682065380307 57.6092 0.1144 4397 +4399 2 21.163002593151965 -486.698944017994 57.5184 0.1144 4398 +4400 2 22.134946188681756 -487.20898783489196 57.3703 0.1144 4399 +4401 2 23.156698159977125 -488.4925775008498 57.1147 0.1144 4400 +4402 2 24.257722341276285 -488.62441548472754 56.6398 0.1144 4401 +4403 2 25.366542511755227 -488.08758363046366 55.9661 0.1144 4402 +4404 2 26.46070641048607 -487.4887750109991 55.1622 0.1144 4403 +4405 2 27.5431105943619 -487.50941102518414 54.2732 0.1144 4404 +4406 2 28.622350928999488 -488.23961193246726 53.356 0.1144 4405 +4407 2 29.70358834431249 -487.48865261483076 52.4737 0.1144 4406 +4408 2 30.601792671744636 -488.2570409812091 51.6309 0.1144 4407 +4409 2 31.259643139550974 -489.45417824371725 50.9718 0.1144 4408 +4410 2 31.886245245299808 -489.3886823005604 49.9215 0.1144 4409 +4411 2 31.10747613541679 -419.6799025811901 58.0686 0.1144 3467 +4412 2 31.31898316192715 -418.5015289632157 58.3094 0.1144 4411 +4413 2 31.44614325336518 -417.1189513386209 58.5746 0.1144 4412 +4414 2 31.51397018583776 -415.7783322544268 58.8666 0.1144 4413 +4415 2 31.762010727372346 -414.37911455921835 59.1091 0.1144 4414 +4416 2 32.441730346507086 -412.7540661490393 59.2883 0.1144 4415 +4417 2 32.71383420719134 -411.4453695169479 59.4115 0.1144 4416 +4418 2 32.175044407893566 -410.5477591955719 59.486 0.1144 4417 +4419 2 31.795804284375954 -409.73607687604135 59.5274 0.1144 4418 +4420 2 31.73157559335347 -408.4705584946952 59.558 0.1144 4419 +4421 2 31.600167388971574 -407.2380042709662 59.5935 0.1144 4420 +4422 2 31.429994123582077 -406.03337596712834 59.6565 0.1144 4421 +4423 2 31.690375914541377 -404.62655458638903 59.7671 0.1144 4422 +4424 2 31.834471371430755 -403.2820433579971 59.8514 0.1144 4423 +4425 2 31.910444777679498 -401.96228382643625 59.9113 0.1144 4424 +4426 2 32.07672861848644 -400.4605895740834 59.9474 0.1144 4425 +4427 2 32.19222280013188 -399.07608858748523 59.9603 0.1144 4426 +4428 2 32.16314662157497 -397.8084182203298 59.9511 0.1144 4427 +4429 2 32.26238068270512 -396.4440823255276 59.9253 0.1144 4428 +4430 2 31.87623683677086 -395.6458776286661 59.8931 0.1144 4429 +4431 2 31.430589351475394 -394.5366871102689 59.8388 0.1144 4430 +4432 2 31.209688002790177 -393.3471712647865 59.7321 0.1144 4431 +4433 2 31.55864192246091 -392.0612064995227 59.6473 0.1144 4432 +4434 2 31.70318677119084 -390.76444522030124 59.5879 0.1144 4433 +4435 2 31.603180279533174 -389.4853757397375 59.5546 0.1144 4434 +4436 2 31.473370413288954 -388.2104640918739 59.547 0.1144 4435 +4437 2 31.540530618342032 -386.93148860252177 59.5664 0.1144 4436 +4438 2 32.07833206626959 -385.5871779767238 59.61 0.1144 4437 +4439 2 32.5858468967597 -383.94637349951694 59.6722 0.1144 4438 +4440 2 32.43505616187397 -382.8402028073276 59.7682 0.1144 4439 +4441 2 32.267385528932735 -381.76827427100625 59.908 0.1144 4440 +4442 2 32.33921652534576 -380.38837252921553 60.0667 0.1144 4441 +4443 2 32.506567221183076 -378.88469948319187 60.2249 0.1144 4442 +4444 2 32.68973716321168 -377.4822294261588 60.3924 0.1144 4443 +4445 2 32.86096529088991 -376.32031182820947 60.5937 0.1144 4444 +4446 2 33.02818935462766 -375.1600565371851 60.8734 0.1144 4445 +4447 2 33.33842747752035 -374.05043482964373 61.2475 0.1144 4446 +4448 2 33.85006861209036 -373.02927850142277 61.6372 0.1144 4447 +4449 2 34.0524574999298 -371.9523130850066 62.0029 0.1144 4448 +4450 2 33.954457299000595 -370.6253307614248 62.3739 0.1144 4449 +4451 2 33.98236402100216 -369.38708005995 62.7455 0.1144 4450 +4452 2 34.15127471731045 -368.26069247647627 63.1532 0.1144 4451 +4453 2 34.373877832839476 -367.1755638780799 63.6471 0.1144 4452 +4454 2 34.532288695381524 -366.0475995555607 64.183 0.1144 4453 +4455 2 34.42547839483968 -364.74191372110704 64.7066 0.1144 4454 +4456 2 34.13231258567811 -363.3359289731542 65.2448 0.1144 4455 +4457 2 33.93550599810644 -361.97490962567605 65.7712 0.1144 4456 +4458 2 33.86985865939522 -360.68118406733754 66.2763 0.1144 4457 +4459 2 33.78825993176355 -359.3896268257867 66.892 0.1144 4458 +4460 2 33.97701796363557 -358.3352590722247 67.7188 0.1144 4459 +4461 2 34.34862437974709 -357.42796195013915 68.3945 0.1144 4460 +4462 2 34.22804256299219 -356.11793349494013 68.9245 0.1144 4461 +4463 2 33.87857530137429 -354.6923806750323 69.4134 0.1144 4462 +4464 2 33.351542807885 -353.25624649176586 69.9468 0.1144 4463 +4465 2 33.23078130068121 -351.9203991720609 70.3268 0.1144 4464 +4466 2 32.84869698608327 -350.46108899080116 70.5947 0.1144 4465 +4467 2 32.93594237767985 -349.2324678050474 70.805 0.1144 4466 +4468 2 32.924377588514375 -347.92263251435827 71.0506 0.1144 4467 +4469 2 32.92385893160119 -346.61936032692006 71.2303 0.1144 4468 +4470 2 33.066718722790476 -347.34894601780854 71.8976 0.1144 4469 +4471 2 33.078687356675346 -348.48992798102216 73.225 0.1144 4470 +4472 2 32.41574392794405 -349.1295713574525 73.8676 0.1144 4471 +4473 2 32.00849967890627 -351.07585195122823 74.3632 0.1144 4472 +4474 2 31.68253060425525 -352.72572128075564 74.8306 0.1144 4473 +4475 2 30.846820077333632 -352.9873198874419 75.3267 0.1144 4474 +4476 2 30.293251056490938 -354.2716002897143 75.8542 0.1144 4475 +4477 2 30.07170859282612 -355.9064309019356 76.4302 0.1144 4476 +4478 2 29.97839117599859 -357.32737108961595 77.0826 0.1144 4477 +4479 2 29.753473038146197 -358.80286513326666 77.6686 0.1144 4478 +4480 2 29.46421337484862 -359.85722718250196 78.1746 0.1144 4479 +4481 2 28.96830629362001 -360.75720951994157 78.6111 0.1144 4480 +4482 2 28.089388176472653 -360.9793113148871 78.871 0.1144 4481 +4483 2 27.047637205793784 -360.1503277238546 79.0658 0.1144 4482 +4484 2 26.504441498434716 -359.6816240506537 79.1176 0.1144 4483 +4485 2 26.26708871968571 -358.2967126092449 79.1426 0.1144 4484 +4486 2 25.983276207039793 -356.91043952113034 79.1599 0.1144 4485 +4487 2 25.500387732587434 -355.4662155615039 79.1854 0.1144 4486 +4488 2 24.720226861647873 -355.55127420241627 79.2249 0.1144 4487 +4489 2 23.728521531852202 -354.58756474314987 79.2809 0.1144 4488 +4490 2 22.63624889887177 -353.4939977505042 79.357 0.1144 4489 +4491 2 21.533727287277614 -353.8645215799539 79.455 0.1144 4490 +4492 2 20.411332722537274 -353.2972249566111 79.6096 0.1144 4491 +4493 2 19.30339691683041 -354.09976691194095 79.8479 0.1144 4492 +4494 2 18.58030724088225 -352.74952609504453 80.1875 0.1144 4493 +4495 2 18.154260314206198 -351.2929368550012 80.5031 0.1144 4494 +4496 2 17.58793599999869 -349.791493339037 80.7702 0.1144 4495 +4497 2 16.59892530473642 -349.3002770741789 81.004 0.1144 4496 +4498 2 15.499661347443059 -349.358866997266 81.2148 0.1144 4497 +4499 2 14.405734908929098 -349.5249651031402 81.4475 0.1144 4498 +4500 2 13.401080171268148 -348.84674675795725 81.7681 0.1144 4499 +4501 2 12.460407862243336 -347.4611599434181 82.1495 0.1144 4500 +4502 2 11.493951750487888 -346.53610610931594 82.5017 0.1144 4501 +4503 2 10.536937229681058 -346.64091885360693 82.8344 0.1144 4502 +4504 2 9.608867259259945 -345.4114272305573 83.2079 0.1144 4503 +4505 2 8.667264032053538 -345.79662128652024 83.7021 0.1144 4504 +4506 2 7.705443475574512 -344.4306191730003 84.1638 0.1144 4505 +4507 2 6.705412674090326 -343.14404965076415 84.4119 0.1144 4506 +4508 2 5.544870736294548 -343.4583412743218 84.8585 0.1144 4507 +4509 2 4.548706440088267 -342.11793402350844 85.1248 0.1144 4508 +4510 2 3.4373011551313155 -343.0005387390281 85.3782 0.1144 4509 +4511 2 2.3099191477599916 -342.0298015830215 85.6302 0.1144 4510 +4512 2 1.272718237734047 -340.763267785036 85.9631 0.1144 4511 +4513 2 0.3407324978053836 -341.31435159612005 86.3688 0.1144 4512 +4514 2 -0.5811473328017343 -339.9121180301322 86.8165 0.1144 4513 +4515 2 -1.546977463850837 -338.5619246800092 87.2161 0.1144 4514 +4516 2 -2.2964985396213606 -337.63741881801616 87.656 0.1144 4515 +4517 2 -3.0248183095883547 -337.497760060325 88.1191 0.1144 4516 +4518 2 -3.753223272405144 -335.98655032586703 88.5872 0.1144 4517 +4519 2 -4.47958360682685 -335.4990527635026 89.0515 0.1144 4518 +4520 2 -5.181667080639549 -334.9138484252306 89.4975 0.1144 4519 +4521 2 -5.814089332493381 -333.38338976729517 89.8898 0.1144 4520 +4522 2 -6.456851958976799 -331.8526138541523 90.2334 0.1144 4521 +4523 2 -7.212339635816193 -330.3814021162159 90.5514 0.1144 4522 +4524 2 -8.055795692571515 -330.53798682075626 90.8592 0.1144 4523 +4525 2 -8.903840449420088 -329.35509744071555 91.1627 0.1144 4524 +4526 2 -9.751524108860913 -328.61047746582057 91.4659 0.1144 4525 +4527 2 -10.598631744361732 -328.2683237549891 91.7692 0.1144 4526 +4528 2 -11.447252525150368 -326.89157212829514 92.0662 0.1144 4527 +4529 2 -12.299216153089581 -325.42325622152714 92.349 0.1144 4528 +4530 2 -13.172377985249206 -324.97790530152946 92.6005 0.1144 4529 +4531 2 -14.044156405803662 -324.41154504642356 92.82 0.1144 4530 +4532 2 -14.882004549851246 -323.2495439500404 93.0037 0.1144 4531 +4533 2 -15.684621097053508 -323.2048391973962 93.151 0.1144 4532 +4534 2 -16.485014017948437 -321.691593105719 93.2658 0.1144 4533 +4535 2 -17.23386836629947 -320.34312842998486 93.3408 0.1144 4534 +4536 2 -17.752211881646062 -318.8737317741371 93.3346 0.1144 4535 +4537 2 -18.21778199276541 -317.6071758102455 93.2784 0.1144 4536 +4538 2 -18.42532357194797 -316.5870792601107 93.2554 0.1144 4537 +4539 2 -18.37153854961676 -315.1242554062622 93.1949 0.1144 4538 +4540 2 -18.2524342284755 -313.57392725159775 93.084 0.1144 4539 +4541 2 -18.250766904211282 -312.1905072303935 92.932 0.1144 4540 +4542 2 -18.820789652347365 -311.84008760179495 92.7408 0.1144 4541 +4543 2 -19.421097301410974 -310.75570221110166 92.5134 0.1144 4542 +4544 2 -19.870266631769297 -309.23176375989067 92.2508 0.1144 4543 +4545 2 -20.216981098322826 -307.7660690437202 91.9677 0.1144 4544 +4546 2 -20.572161696810426 -306.4419747784404 91.66 0.1144 4545 +4547 2 -20.928227050833094 -305.1081227879226 91.3385 0.1144 4546 +4548 2 -21.30171549981432 -303.6199034846735 91.0266 0.1144 4547 +4549 2 -21.777967544195192 -302.2159034031272 90.7771 0.1144 4548 +4550 2 -22.373953785510786 -301.8823660026464 90.6293 0.1144 4549 +4551 2 -22.92211401105338 -300.5807772104111 90.529 0.1144 4550 +4552 2 -23.42945593498043 -299.04103200312426 90.4322 0.1144 4551 +4553 2 -23.936850224720224 -298.0262406168961 90.3193 0.1144 4552 +4554 2 -24.483623937074555 -297.710434793842 90.1463 0.1144 4553 +4555 2 -25.151145643044536 -296.3976869135464 89.801 0.1144 4554 +4556 2 -25.629033670693197 -294.91286776390456 89.3584 0.1144 4555 +4557 2 -25.78775595282268 -293.517789822857 88.9333 0.1144 4556 +4558 2 -25.946117137544505 -292.1177371729366 88.5315 0.1144 4557 +4559 2 -26.079842773296292 -290.7295801672035 88.1689 0.1144 4558 +4560 2 -25.96210404149454 -289.55745057546585 87.88 0.1144 4559 +4561 2 -25.41830075641453 -288.78946310923106 87.6988 0.1144 4560 +4562 2 -24.875478346282378 -288.01894646147065 87.5902 0.1144 4561 +4563 2 -24.357779907164115 -286.14223077250125 87.5286 0.1144 4562 +4564 2 -24.01145215045816 -284.43393423516164 87.5008 0.1144 4563 +4565 2 -23.923005446751688 -283.0991943947765 87.4952 0.1144 4564 +4566 2 -23.83464393589506 -281.7786897035675 87.4885 0.1144 4565 +4567 2 -23.745568842435773 -280.53480880751823 87.4614 0.1144 4566 +4568 2 -23.65712213872932 -279.29001360838316 87.402 0.1144 4567 +4569 2 -23.576334179291862 -278.0405055494212 87.297 0.1144 4568 +4570 2 -23.610891638456977 -276.7208471277828 87.101 0.1144 4569 +4571 2 -23.868511703244877 -275.2770382808397 86.749 0.1144 4570 +4572 2 -24.138067379217006 -273.91773025071376 86.2658 0.1144 4571 +4573 2 -24.310544047830376 -272.6623151040861 85.6876 0.1144 4572 +4574 2 -24.26458514858085 -271.3557612110378 85.0559 0.1144 4573 +4575 2 -24.094866372070854 -270.09965993740843 84.3881 0.1144 4574 +4576 2 -23.923438322631483 -268.97984488812966 83.613 0.1144 4575 +4577 2 -23.760305326890105 -267.8893930943287 82.614 0.1144 4576 +4578 2 -23.696910328509304 -266.7457361840888 81.4747 0.1144 4577 +4579 2 -23.868511137888973 -265.4581838961527 80.311 0.1144 4578 +4580 2 -24.14838936622496 -264.0498569612659 79.4371 0.1144 4579 +4581 2 -24.464175821415466 -262.7720762333257 78.8343 0.1144 4580 +4582 2 -24.880962564101793 -261.78642026924126 78.353 0.1144 4581 +4583 2 -25.277250657024197 -261.0615840247027 77.917 0.1144 4582 +4584 2 -25.37498046402517 -259.8214171143759 77.5676 0.1144 4583 +4585 2 -25.349879595437343 -258.44219360050124 77.2859 0.1144 4584 +4586 2 -25.32465209474985 -257.0599394621322 77.0554 0.1144 4585 +4587 2 -25.401395522479717 -255.76075923079367 76.9236 0.1144 4586 +4588 2 -25.520159256471544 -254.51215299899076 76.8821 0.1144 4587 +4589 2 -25.461868412546607 -253.10479090709134 76.9264 0.1144 4588 +4590 2 -25.60059070098238 -251.88059991978827 76.9493 0.1144 4589 +4591 2 -25.78439241329295 -250.69525707250386 76.8578 0.1144 4590 +4592 2 -25.803222022282682 -249.3614506788537 76.7133 0.1144 4591 +4593 2 -25.66304233490088 -247.91001626194134 76.354 0.1144 4592 +4594 2 -25.45678763432015 -246.42322403755986 75.754 0.1144 4593 +4595 2 -25.053053611245645 -244.79059714294965 75.0201 0.1144 4594 +4596 2 -24.19871488313595 -244.29540469653415 74.2367 0.1144 4595 +4597 2 -23.311135530386323 -243.10718514118406 73.4745 0.1144 4596 +4598 2 -22.469199627567164 -242.87746565247772 72.7964 0.1144 4597 +4599 2 -21.723334114618496 -241.61708093514574 72.203 0.1144 4598 +4600 2 -21.190444126525108 -240.83761560364843 71.7346 0.1144 4599 +4601 2 -20.711202709356215 -239.66679804004747 71.3924 0.1144 4600 +4602 2 -20.23989043038462 -238.14252257374153 71.2191 0.1144 4601 +4603 2 -19.910986461173792 -237.13814223157436 71.1948 0.1144 4602 +4604 2 -19.77530477040581 -235.95729058887926 71.2681 0.1144 4603 +4605 2 -19.84956510446301 -234.62216618061177 71.3812 0.1144 4604 +4606 2 -19.994116435305088 -233.24539667802281 71.5274 0.1144 4605 +4607 2 -20.087081645883657 -231.90048568218725 71.7212 0.1144 4606 +4608 2 -20.101319453197064 -230.60692920531105 71.9555 0.1144 4607 +4609 2 -20.141185398224223 -229.29363138201944 72.184 0.1144 4608 +4610 2 -20.18264968138898 -227.9852812804176 72.3789 0.1144 4609 +4611 2 -20.298287903809225 -226.6158374654673 72.557 0.1144 4610 +4612 2 -20.595819566855425 -225.1696992708559 72.7278 0.1144 4611 +4613 2 -20.878248667896102 -223.9008125777473 72.9056 0.1144 4612 +4614 2 -21.257797523008662 -222.84290863483488 73.1284 0.1144 4613 +4615 2 -21.539368587081384 -221.72614918386017 73.5106 0.1144 4614 +4616 2 -21.578693744251964 -220.42341976440593 74.027 0.1144 4615 +4617 2 -21.674858040152344 -219.11338667340345 74.5405 0.1144 4616 +4618 2 -21.76728246287435 -217.780442141174 75.0943 0.1144 4617 +4619 2 -21.94537014577857 -216.41710638031634 75.7515 0.1144 4618 +4620 2 -22.07350769168694 -215.12387523493038 76.6657 0.1144 4619 +4621 2 -21.403706389433836 -214.3635243873366 77.6199 0.1144 4620 +4622 2 -20.35048501537156 -214.64657268022435 78.4714 0.1144 4621 +4623 2 -19.345424023944716 -214.76602208472812 79.4181 0.1144 4622 +4624 2 -18.364500949391072 -215.66893793689573 80.4118 0.1144 4623 +4625 2 -17.626215806553148 -214.74561336637203 81.2566 0.1144 4624 +4626 2 -17.479259028854273 -213.5914504590727 81.6654 0.1144 4625 +4627 2 -17.6511596735276 -212.2384053223929 81.947 0.1144 4626 +4628 2 -18.24603220462957 -211.1219976467185 82.1416 0.1144 4627 +4629 2 -19.080449207093793 -210.09332125424942 82.2475 0.1144 4628 +4630 2 -19.789729721698762 -209.21801019160347 82.3239 0.1144 4629 +4631 2 -19.97754100857935 -208.0913283886911 82.4617 0.1144 4630 +4632 2 -20.24299571396547 -207.00516657189382 82.6554 0.1144 4631 +4633 2 -20.653058424684048 -205.53054138767334 82.9111 0.1144 4632 +4634 2 -21.01424706349026 -204.07121723848175 83.1751 0.1144 4633 +4635 2 -21.415928835124546 -202.59954026746888 83.3977 0.1144 4634 +4636 2 -21.89561202108891 -201.49384203283472 83.5674 0.1144 4635 +4637 2 -22.352983292619214 -200.33180315412517 83.7085 0.1144 4636 +4638 2 -22.724024576547905 -198.85580341265444 83.8432 0.1144 4637 +4639 2 -23.022047070684422 -197.402305105069 83.9569 0.1144 4638 +4640 2 -23.25930604437096 -196.30449196951318 84.0434 0.1144 4639 +4641 2 -23.41669177007836 -195.1332545433761 84.1089 0.1144 4640 +4642 2 -23.48698086723219 -193.8340573571523 84.1582 0.1144 4641 +4643 2 -23.491154204473844 -192.4694810321343 84.1952 0.1144 4642 +4644 2 -23.530297954685636 -191.14412786378296 84.2262 0.1144 4643 +4645 2 -23.54022296646376 -189.8790267793617 84.2624 0.1144 4644 +4646 2 -23.5889520694528 -188.56642169054936 84.3119 0.1144 4645 +4647 2 -23.70766343763188 -187.34333100480853 84.3839 0.1144 4646 +4648 2 -23.817778940194188 -186.10747501480193 84.485 0.1144 4647 +4649 2 -23.899251728262897 -184.84009927392555 84.6185 0.1144 4648 +4650 2 -24.057307282972886 -183.68023658514053 84.7832 0.1144 4649 +4651 2 -24.127719910643137 -182.41379113395098 85.0864 0.1144 4650 +4652 2 -23.88885056612881 -180.8080018588428 85.7074 0.1144 4651 +4653 2 -23.989923220280332 -179.59124843311542 86.1851 0.1144 4652 +4654 2 -24.1332670358464 -178.42269044958147 86.5444 0.1144 4653 +4655 2 -24.278625754353612 -177.2501101217954 86.8059 0.1144 4654 +4656 2 -24.424199399393274 -176.08127455002418 86.9809 0.1144 4655 +4657 2 -24.569379119988227 -174.76520380594872 87.0828 0.1144 4656 +4658 2 -24.714558840583123 -173.39847981316063 87.148 0.1144 4657 +4659 2 -24.859686195365327 -172.0316963823975 87.2304 0.1144 4658 +4660 2 -25.0065166199107 -170.65826901671483 87.339 0.1144 4659 +4661 2 -25.226446303701167 -169.25383616644638 87.4938 0.1144 4660 +4662 2 -25.691834315325053 -167.7768556425239 87.7509 0.1144 4661 +4663 2 -26.181717215673473 -166.331921177124 88.0855 0.1144 4662 +4664 2 -26.67204640627925 -165.09617061919744 88.466 0.1144 4663 +4665 2 -27.1621083045399 -163.73992357362454 88.8628 0.1144 4664 +4666 2 -27.64165083025864 -162.71024036842272 89.2158 0.1144 4665 +4667 2 -28.1052615058326 -162.14537722967768 89.4681 0.1144 4666 +4668 2 -28.56806479374147 -160.88691625743255 89.6305 0.1144 4667 +4669 2 -29.032157688193024 -159.59816155983646 89.7266 0.1144 4668 +4670 2 -29.496165389794825 -158.18658260413727 89.7781 0.1144 4669 +4671 2 -29.819983305761554 -156.7285796775015 89.8064 0.1144 4670 +4672 2 -30.108026522676113 -155.2843131581799 89.8313 0.1144 4671 +4673 2 -30.395184984055646 -153.83893889176807 89.8654 0.1144 4672 +4674 2 -30.683365759632736 -152.36374940116977 89.9116 0.1144 4673 +4675 2 -30.97047185519949 -150.9198158710087 89.9721 0.1144 4674 +4676 2 -31.188133371849716 -149.73079327121332 90.0726 0.1144 4675 +4677 2 -31.385386942215447 -148.6730382434262 90.2135 0.1144 4676 +4678 2 -31.58010505309572 -147.61336468865747 90.3865 0.1144 4677 +4679 2 -31.774247140035868 -146.55744431558648 90.5825 0.1144 4678 +4680 2 -31.969359175360864 -145.50767732270967 90.7931 0.1144 4679 +4681 2 -32.16509960043871 -144.18504453533646 91.0118 0.1144 4680 +4682 2 -32.36012644291394 -142.79761437722414 91.2316 0.1144 4681 +4683 2 -32.55372533295109 -141.4275583816575 91.4511 0.1144 4682 +4684 2 -32.74938056517912 -140.0761386826817 91.67 0.1144 4683 +4685 2 -32.9435226521193 -138.72091813289745 91.8884 0.1144 4684 +4686 2 -33.13863468744427 -137.36135303181794 92.1054 0.1144 4685 +4687 2 -33.332776774384484 -135.99833680635604 92.3213 0.1144 4686 +4688 2 -33.52788880970948 -134.62161606493072 92.5347 0.1144 4687 +4689 2 -33.72291565218474 -133.2252309887597 92.7455 0.1144 4688 +4690 2 -33.918656077262554 -131.82672534807236 92.9522 0.1144 4689 +4691 2 -34.1127981642027 -130.42893958042075 93.1529 0.1144 4690 +4692 2 -34.308538589280545 -129.03032677576232 93.3467 0.1144 4691 +4693 2 -34.50325670016082 -127.63170364880453 93.5326 0.1144 4692 +4694 2 -34.72420869814887 -126.22120151497818 93.6911 0.1144 4693 +4695 2 -34.94636510982981 -124.80700115172846 93.8283 0.1144 4694 +4696 2 -35.16794549757067 -123.39503192614528 93.9509 0.1144 4695 +4697 2 -35.39103903059939 -121.9831562696459 94.0643 0.1144 4696 +4698 2 -35.61418492944088 -120.86209060373746 94.1744 0.1144 4697 +4699 2 -35.835712951369004 -119.89948277946479 94.2866 0.1144 4698 +4700 2 -35.936656564374445 -118.66549935523066 94.4126 0.1144 4699 +4701 2 -35.966937156624326 -117.2809659995901 94.5557 0.1144 4700 +4702 2 -35.99272285384342 -116.02048038265747 94.7125 0.1144 4701 +4703 2 -36.01738933021946 -114.82338288900655 94.8794 0.1144 4702 +4704 2 -36.0425466376857 -113.62678626763481 95.0536 0.1144 4703 +4705 2 -36.068641066499765 -112.43146180505249 95.2314 0.1144 4704 +4706 2 -36.10916822831682 -111.26345051833286 95.4117 0.1144 4705 +4707 2 -36.190012626632694 -110.16444122611178 95.5998 0.1144 4706 +4708 2 -36.27193170495883 -109.06691318732094 95.7886 0.1144 4707 +4709 2 -36.3543416143753 -107.96029146038765 95.9706 0.1144 4708 +4710 2 -36.455679151825464 -106.89527435138609 96.1346 0.1144 4709 +4711 2 -36.69191581131446 -106.06026658364968 96.2298 0.1144 4710 +4712 2 -36.93225344138942 -105.22960453918992 96.2727 0.1144 4711 +4713 2 -37.171601584303914 -104.26909542963098 96.2814 0.1144 4712 +4714 2 -37.42962960168258 -103.04681130550765 96.2844 0.1144 4713 +4715 2 -37.768858811249785 -101.8056022054238 96.3402 0.1144 4714 +4716 2 -38.108578851907325 -100.57546869944959 96.4404 0.1144 4715 +4717 2 -38.44874518282225 -99.34107223164995 96.5745 0.1144 4716 +4718 2 -38.77532209701951 -98.1107074310183 96.7162 0.1144 4717 +4719 2 -39.03878213077675 -96.89787687399179 96.8234 0.1144 4718 +4720 2 -39.30384050267159 -95.68781377856101 96.8786 0.1144 4719 +4721 2 -39.56636341508106 -94.48193175361182 96.8772 0.1144 4720 +4722 2 -39.831421786975895 -93.27676986321465 96.8316 0.1144 4721 +4723 2 -40.54740741600527 -93.52784629489359 96.2713 0.1144 4722 +4724 2 -41.32969199971974 -93.09201999811812 95.6418 0.1144 4723 +4725 2 -41.63563123142811 -92.5049563204849 95.4391 0.1144 4724 +4726 2 -42.27679000914429 -91.27785658771145 95.4142 0.1144 4725 +4727 2 -43.06608753355715 -91.37406792919741 95.5721 0.1144 4726 +4728 2 -43.966058584228094 -90.24671218950937 95.7202 0.1144 4727 +4729 2 -44.87191655374764 -89.13649736050748 95.8362 0.1144 4728 +4730 2 -45.96650731063458 -88.8335725741714 95.9064 0.1144 4729 +4731 2 -45.84141477203909 -87.52241912114944 96.8058 0.1144 4730 +4732 2 -45.71760642405293 -86.37025389204842 97.8874 0.1144 4731 +4733 2 -45.58629540526263 -85.3443420552999 98.4074 0.1144 4732 +4734 2 -45.45582460117457 -84.34879751507697 98.985 0.1144 4733 +4735 2 -45.30931962436277 -83.33567688254993 99.6195 0.1144 4734 +4736 2 -44.74888280972357 -82.64081910349397 100.2268 0.1144 4735 +4737 2 -44.18769097323201 -81.94547412489464 100.8143 0.1144 4736 +4738 2 -43.624624894044956 -81.08081138024701 101.3737 0.1144 4737 +4739 2 -43.200947037209204 -79.44792097263223 101.941 0.1144 4738 +4740 2 -43.044856707620085 -78.27318582161564 102.5408 0.1144 4739 +4741 2 -42.891086910984 -77.26022402297107 103.1573 0.1144 4740 +4742 2 -42.73695601694021 -76.24469335603509 103.7761 0.1144 4741 +4743 2 -42.582877488709244 -75.22679250480266 104.3753 0.1144 4742 +4744 2 -42.428300304408 -74.20715157853314 104.9633 0.1144 4743 +4745 2 -42.28160091646467 -73.23938650462381 106.013 0.1144 4744 +4746 2 -47.00893753315347 -89.15060289219312 95.9272 0.1144 4730 +4747 2 -48.12300282010753 -88.87087406416777 95.8163 0.1144 4746 +4748 2 -49.123089088987555 -88.2615267201899 95.6682 0.1144 4747 +4749 2 -50.12218587070703 -88.0924488004678 95.4993 0.1144 4748 +4750 2 -51.12172894268403 -87.08152498230919 95.3075 0.1144 4749 +4751 2 -52.12024970046336 -86.08507742481054 95.0888 0.1144 4750 +4752 2 -52.82765868319302 -86.29585120698886 96.7338 0.1144 4751 +4753 2 -53.65003836741944 -85.49359724628155 97.9264 0.1144 4752 +4754 2 -54.525311600717814 -84.49683437697104 98.8212 0.1144 4753 +4755 2 -55.46883181793149 -83.61811445009158 99.8553 0.1144 4754 +4756 2 -56.464300548900226 -84.43782844912059 100.9873 0.1144 4755 +4757 2 -57.48559352753904 -83.85414701170517 102.0743 0.1144 4756 +4758 2 -58.38633331445671 -82.87071402084568 102.9585 0.1144 4757 +4759 2 -59.254805840454026 -82.43635739602651 103.7084 0.1144 4758 +4760 2 -60.11356707411122 -81.9093044652625 104.3498 0.1144 4759 +4761 2 -60.901392199949356 -80.77340128561498 104.8863 0.1144 4760 +4762 2 -61.666054175392134 -79.63087220748059 105.3298 0.1144 4761 +4763 2 -62.43668275190376 -78.74543499314525 105.6832 0.1144 4762 +4764 2 -63.222868792891106 -78.44360955899737 105.9069 0.1144 4763 +4765 2 -63.738406454824016 -77.22990745716086 105.9822 0.1144 4764 +4766 2 -64.05037946308592 -76.0233349875848 105.9178 0.1144 4765 +4767 2 -64.55238317569695 -74.81623795441823 105.7577 0.1144 4766 +4768 2 -65.1101061136581 -73.61606484184243 105.5438 0.1144 4767 +4769 2 -65.6697032943147 -72.41321768973833 105.3128 0.1144 4768 +4770 2 -66.22836335362354 -71.71908482460753 105.0969 0.1144 4769 +4771 2 -66.71736460001999 -71.01508407067477 104.9202 0.1144 4770 +4772 2 -66.29206817373428 -69.60187135552333 104.8186 0.1144 4771 +4773 2 -65.71742207014105 -68.45808911828367 104.8211 0.1144 4772 +4774 2 -65.1403343121249 -67.71428296833852 104.9096 0.1144 4773 +4775 2 -64.70742979087302 -66.83517342922549 105.1333 0.1144 4774 +4776 2 -64.56854522066358 -65.78517370009358 105.5939 0.1144 4775 +4777 2 -64.45674336447672 -64.73746570652939 106.2622 0.1144 4776 +4778 2 -64.3581280745984 -63.80586198906486 107.6956 0.1144 4777 +4779 2 -53.014639379015094 -87.41913608803281 94.6823 0.1144 4751 +4780 2 -53.98719544166306 -87.53565625968017 94.3438 0.1144 4779 +4781 2 -54.93952186340225 -87.69592951178679 93.9621 0.1144 4780 +4782 2 -55.80485056383189 -88.93355510827065 93.5441 0.1144 4781 +4783 2 -56.5723996014618 -89.67827506472769 93.116 0.1144 4782 +4784 2 -57.25751289930827 -90.2366957962586 92.759 0.1144 4783 +4785 2 -57.876263660298406 -90.86504029633922 92.4622 0.1144 4784 +4786 2 -58.54012259399204 -91.89906445226461 92.0385 0.1144 4785 +4787 2 -59.282234205616334 -93.17576815282644 91.4091 0.1144 4786 +4788 2 -60.30859291205506 -93.02537936278675 90.9048 0.1144 4787 +4789 2 -61.44129050806863 -92.56336146094826 90.6125 0.1144 4788 +4790 2 -62.571437923914075 -93.39912114942459 90.277 0.1144 4789 +4791 2 -63.696999048712826 -92.9682435925757 89.8817 0.1144 4790 +4792 2 -64.82219907610394 -92.89618420105683 89.4555 0.1144 4791 +4793 2 -65.94517237560453 -93.40514838975852 89.0005 0.1144 4792 +4794 2 -67.06516392536223 -92.96647393082006 88.5167 0.1144 4793 +4795 2 -68.18657171376216 -93.22945053039392 88.048 0.1144 4794 +4796 2 -69.31612838498489 -93.42624355480697 87.7643 0.1144 4795 +4797 2 -70.44881297682568 -93.02462618275128 87.6473 0.1144 4796 +4798 2 -71.58246751705133 -93.69152580051248 87.6618 0.1144 4797 +4799 2 -72.71612205727695 -93.5136239332233 87.771 0.1144 4798 +4800 2 -73.84754986961212 -94.41851516158528 87.9421 0.1144 4799 +4801 2 -74.97866895035234 -94.01142363591555 88.1446 0.1144 4800 +4802 2 -76.10973566527976 -93.59639500028061 88.3532 0.1144 4801 +4803 2 -77.24085474602003 -94.51182519992743 88.5629 0.1144 4802 +4804 2 -78.37889606397917 -94.02604256412829 88.7734 0.1144 4803 +4805 2 -79.51899983259919 -93.84713373658516 88.9862 0.1144 4804 +4806 2 -80.6585275772792 -94.311494162546 89.203 0.1144 4805 +4807 2 -81.79818505564174 -93.78875589490345 89.4264 0.1144 4806 +4808 2 -82.93677567897393 -94.00983441055034 89.6591 0.1144 4807 +4809 2 -84.07585713339641 -94.06776400549661 89.9027 0.1144 4808 +4810 2 -85.21118089237478 -93.59201785264463 90.1824 0.1144 4809 +4811 2 -86.34454211422474 -94.25717876403269 90.4935 0.1144 4810 +4812 2 -87.47718975347208 -93.97130413712962 90.8267 0.1144 4811 +4813 2 -88.60832424743151 -93.50589092876572 91.1809 0.1144 4812 +4814 2 -89.73906481694631 -94.35551798211658 91.539 0.1144 4813 +4815 2 -90.87077533484586 -93.88565927739876 91.8896 0.1144 4814 +4816 2 -92.0025382185581 -93.42112143933304 92.2194 0.1144 4815 +4817 2 -93.13683656175589 -94.26825991324048 92.5282 0.1144 4816 +4818 2 -94.25166408001682 -93.80764640345004 93.1118 0.1144 4817 +4819 2 -41.6742082795698 -93.20817423120363 93.4178 0.1144 4724 +4820 2 -42.42756384991284 -93.95455248945443 92.0237 0.1144 4819 +4821 2 -43.11362658074327 -95.27846818234092 91.2419 0.1144 4820 +4822 2 -43.73636158280955 -95.82338119858164 90.3202 0.1144 4821 +4823 2 -44.45523647028824 -96.2098380473397 89.2623 0.1144 4822 +4824 2 -45.062817266735834 -96.53571353557233 87.5028 0.1144 4823 +4825 2 -39.9658754122612 -92.21210772331543 97.4408 0.1144 4722 +4826 2 -40.112653470993834 -91.04383883948034 97.3532 0.1144 4825 +4827 2 -40.25939870268931 -89.87775642013912 97.288 0.1144 4826 +4828 2 -40.33988200359755 -88.73838812705786 97.2698 0.1144 4827 +4829 2 -40.30801807283869 -87.64978423241706 97.356 0.1144 4828 +4830 2 -40.34061919804155 -86.53289369018425 97.55 0.1144 4829 +4831 2 -40.637613174814305 -85.34310802940715 97.8141 0.1144 4830 +4832 2 -41.04900693132542 -84.53858714510099 98.1075 0.1144 4831 +4833 2 -41.47037996505847 -83.9284894831476 98.3979 0.1144 4832 +4834 2 -41.89340370274192 -82.89521674252553 98.6558 0.1144 4833 +4835 2 -42.316557174108 -81.66917770405222 98.8627 0.1144 4834 +4836 2 -42.65418804553752 -80.45892830173769 98.936 0.1144 4835 +4837 2 -42.93622322213352 -79.2584335239861 98.8551 0.1144 4836 +4838 2 -43.209119336209625 -78.10827065180355 98.6544 0.1144 4837 +4839 2 -43.481662965090806 -77.23842428397776 98.378 0.1144 4838 +4840 2 -43.75821065791243 -76.36516299642848 98.0916 0.1144 4839 +4841 2 -44.041000856360796 -75.49637851592654 97.853 0.1144 4840 +4842 2 -44.326902538234606 -74.33971587421136 97.6875 0.1144 4841 +4843 2 -44.612547854326294 -73.12925912694192 97.5948 0.1144 4842 +4844 2 -44.89863163569555 -71.92091967983244 97.5652 0.1144 4843 +4845 2 -45.1838306615297 -70.7152885233783 97.5836 0.1144 4844 +4846 2 -45.00497592408294 -69.69906605479139 97.7094 0.1144 4845 +4847 2 -44.55901897985029 -68.84498345712721 97.9493 0.1144 4846 +4848 2 -44.07718973738321 -67.30975106497333 98.2694 0.1144 4847 +4849 2 -43.83815301405619 -66.06966128398848 98.5376 0.1144 4848 +4850 2 -43.78663615886518 -64.97252750237409 98.6863 0.1144 4849 +4851 2 -43.75908812522479 -63.85919172965941 98.7249 0.1144 4850 +4852 2 -43.44333038405733 -62.89625267430756 98.8299 0.1144 4851 +4853 2 -43.02757925637232 -62.00064732334166 99.0497 0.1144 4852 +4854 2 -42.62607265372489 -60.57070769920032 99.843 0.1144 4853 +4855 2 6.044276312569828 -343.87623173164764 83.8776 0.1144 4507 +4856 2 4.972300495982907 -344.44718259228597 83.9502 0.1144 4855 +4857 2 3.8580062543503217 -345.52171866743646 84.1299 0.1144 4856 +4858 2 2.7315757872357835 -345.2922873506587 84.3251 0.1144 4857 +4859 2 1.6098753729967115 -344.7322856751124 84.5454 0.1144 4858 +4860 2 0.553681850007564 -346.3279206997605 84.7935 0.1144 4859 +4861 2 -0.5568427753076861 -345.6498564240196 85.2247 0.1144 4860 +4862 2 -1.3199409561597903 -344.19659529881613 85.8306 0.1144 4861 +4863 2 -2.1561705307574357 -343.1800764642711 86.3324 0.1144 4862 +4864 2 -3.1842026528096667 -343.42165767871114 86.781 0.1144 4863 +4865 2 -4.241284435657931 -342.9991867487621 87.5028 0.1144 4864 +4866 2 27.838440767007356 -361.8592872317109 79.0877 0.1144 4482 +4867 2 27.709588532369168 -363.0536588029161 79.035 0.1144 4866 +4868 2 27.606165898756757 -364.27149489037515 79.0132 0.1144 4867 +4869 2 27.504179042562235 -365.4879467664841 78.9846 0.1144 4868 +4870 2 27.423082351529885 -366.7231160163696 78.9443 0.1144 4869 +4871 2 27.434520508595824 -368.02039031568665 78.8774 0.1144 4870 +4872 2 27.451081950445342 -369.3321961545332 78.7909 0.1144 4871 +4873 2 27.466077881194288 -370.6366051350695 78.6906 0.1144 4872 +4874 2 27.337173280743386 -372.0452805878477 78.5837 0.1144 4873 +4875 2 26.865734369672182 -373.8962808326968 78.4904 0.1144 4874 +4876 2 26.436443089499107 -375.17670173888075 78.4115 0.1144 4875 +4877 2 26.136634328205552 -376.362998064862 78.344 0.1144 4876 +4878 2 25.680069716998062 -377.42092408426697 78.2474 0.1144 4877 +4879 2 25.225695905060824 -378.84113513253345 77.9671 0.1144 4878 +4880 2 33.04898330292356 -345.80195929316017 71.3857 0.1144 4469 +4881 2 33.70040417524309 -345.1999041741426 71.5876 0.1144 4880 +4882 2 34.01781572194409 -344.1644842761988 71.759 0.1144 4881 +4883 2 33.973060957441476 -342.8342524795579 71.9068 0.1144 4882 +4884 2 33.67601151327287 -341.391904925033 72.0426 0.1144 4883 +4885 2 33.63864820069408 -340.06853285824775 72.1888 0.1144 4884 +4886 2 33.43805178317783 -338.65110707982257 72.359 0.1144 4885 +4887 2 33.42416646105937 -337.3466902050396 72.6062 0.1144 4886 +4888 2 33.52126208873188 -336.1418973013647 72.9778 0.1144 4887 +4889 2 33.26436732034239 -334.70830707014505 73.393 0.1144 4888 +4890 2 33.03731416950985 -333.3093219208104 73.9603 0.1144 4889 +4891 2 32.92243407052516 -331.95014364245003 74.398 0.1144 4890 +4892 2 32.81855556295992 -330.60633435994737 74.6995 0.1144 4891 +4893 2 32.8653954236248 -329.34272013136 74.881 0.1144 4892 +4894 2 32.92297268494711 -328.08555345460417 74.9546 0.1144 4893 +4895 2 33.05757659412173 -326.89022552800225 74.9302 0.1144 4894 +4896 2 33.173155968616996 -325.6810861799471 74.8577 0.1144 4895 +4897 2 33.12304345402272 -324.353735636957 74.8056 0.1144 4896 +4898 2 32.86102229926656 -322.91592454461 74.7816 0.1144 4897 +4899 2 32.460404281079605 -321.4246780541836 74.797 0.1144 4898 +4900 2 32.05145768962109 -320.18309631680495 74.8689 0.1144 4899 +4901 2 31.659573095713384 -319.54535798143553 74.9675 0.1144 4900 +4902 2 31.654786781938157 -318.2851429342238 75.0534 0.1144 4901 +4903 2 31.882245889905576 -316.63707639212424 75.1178 0.1144 4902 +4904 2 31.66424040557687 -315.6806220471163 75.1545 0.1144 4903 +4905 2 31.23693359781204 -314.858912925788 75.1848 0.1144 4904 +4906 2 30.949830603828275 -313.46244792637543 75.2111 0.1144 4905 +4907 2 30.80117830240018 -312.1597595571026 75.2195 0.1144 4906 +4908 2 30.798157013038725 -310.8565127133985 75.1229 0.1144 4907 +4909 2 31.075207569640767 -309.69039622649916 74.7953 0.1144 4908 +4910 2 31.093631261444067 -308.4409581756449 74.1989 0.1144 4909 +4911 2 30.97790784617402 -307.08590726448756 73.787 0.1144 4910 +4912 2 31.42724515889237 -307.3620975050677 71.64 0.1144 4911 +4913 2 32.239551068297665 -307.5116343506276 70.5438 0.1144 4912 +4914 2 33.269275333550006 -308.7500428264972 70.1943 0.1144 4913 +4915 2 34.2343480337002 -309.7773851251817 69.9149 0.1144 4914 +4916 2 34.883027304486276 -310.37395875353417 69.6679 0.1144 4915 +4917 2 35.16131950632077 -311.2464277503393 69.4677 0.1144 4916 +4918 2 36.06117282119348 -312.43655727926193 69.265 0.1144 4917 +4919 2 37.19669029876678 -311.39007622889756 69.085 0.1144 4918 +4920 2 38.33634777712936 -311.98833134399393 68.8584 0.1144 4919 +4921 2 38.898053257341715 -313.35876257909547 68.2576 0.1144 4920 +4922 2 39.49898619457504 -314.8626925877235 67.8748 0.1144 4921 +4923 2 40.104599227917554 -315.6211125544549 67.6917 0.1144 4922 +4924 2 40.72272389638447 -315.97351402753515 67.4607 0.1144 4923 +4925 2 41.418262336141716 -317.47405497062294 67.1602 0.1144 4924 +4926 2 42.19989801470249 -318.1306005323477 66.7696 0.1144 4925 +4927 2 42.97448861806441 -318.70053046824916 66.2673 0.1144 4926 +4928 2 43.15376219985924 -319.93897874805214 65.6617 0.1144 4927 +4929 2 43.37251069617779 -320.8755514436061 65.0877 0.1144 4928 +4930 2 44.38241465818532 -322.0197819922211 64.5733 0.1144 4929 +4931 2 45.33733079971116 -322.67936503871556 63.9414 0.1144 4930 +4932 2 46.2165235966368 -322.76225151262975 63.17 0.1144 4931 +4933 2 47.1486582005758 -323.94145895738615 62.3098 0.1144 4932 +4934 2 48.14077077844762 -323.1308869174136 61.1817 0.1144 4933 +4935 2 48.939247525666865 -322.89718716883016 59.7881 0.1144 4934 +4936 2 49.79414415367724 -322.99780235974634 58.3125 0.1144 4935 +4937 2 50.58455019713274 -323.3655090943865 56.6255 0.1144 4936 +4938 2 50.77939635999145 -321.954864537676 55.162 0.1144 4937 +4939 2 51.33653968069902 -321.2341235246503 53.3884 0.1144 4938 +4940 2 52.271689873413216 -321.7638595009244 51.872 0.1144 4939 +4941 2 53.19318178707821 -320.3285096258302 50.4546 0.1144 4940 +4942 2 54.04529107647723 -320.49201978258304 48.8877 0.1144 4941 +4943 2 54.90006557102249 -320.93796440539785 47.1111 0.1144 4942 +4944 2 55.5810763894148 -321.92298775427844 45.4154 0.1144 4943 +4945 2 56.28615222578165 -321.69810701858177 44.2386 0.1144 4944 +4946 2 57.18628144521216 -322.99309925491804 43.4526 0.1144 4945 +4947 2 57.840209940344806 -323.6950742913981 42.7795 0.1144 4946 +4948 2 58.630350088506326 -323.9965306923747 42.3184 0.1144 4947 +4949 2 59.668884453371305 -325.2097773886882 41.9482 0.1144 4948 +4950 2 60.733120529700166 -326.3809485587778 41.743 0.1144 4949 +4951 2 61.55622169852028 -325.9600182273064 41.5414 0.1144 4950 +4952 2 62.42301749453674 -327.3978924324474 41.3501 0.1144 4951 +4953 2 63.18968886229108 -327.9783030550941 41.1874 0.1144 4952 +4954 2 63.723898573708325 -328.6499286480539 41.0228 0.1144 4953 +4955 2 64.16625247608289 -330.0385775262023 40.7518 0.1144 4954 +4956 2 64.6031275068958 -331.4634606408944 40.3575 0.1144 4955 +4957 2 65.34694617235961 -332.92080723939074 39.8653 0.1144 4956 +4958 2 65.62245372871791 -334.3131420383661 39.1924 0.1144 4957 +4959 2 65.30513798767802 -335.1891472604798 38.0842 0.1144 4958 +4960 2 64.54010109432318 -335.3151883930018 36.6064 0.1144 4959 +4961 2 63.63205793713031 -335.1683545613446 35.1389 0.1144 4960 +4962 2 63.451346589297096 -334.83390174642017 33.6031 0.1144 4961 +4963 2 62.8528040536366 -335.37221271105994 31.8718 0.1144 4962 +4964 2 61.86781494280686 -334.55103938334344 30.5015 0.1144 4963 +4965 2 60.91704402290433 -335.7637499120001 29.3541 0.1144 4964 +4966 2 60.02139177012872 -336.06529002947076 28.5362 0.1144 4965 +4967 2 59.17641865017084 -336.29156705153224 27.8781 0.1144 4966 +4968 2 58.45806162610131 -336.7611257848769 27.3708 0.1144 4967 +4969 2 57.914613235262806 -338.71435773878477 26.957 0.1144 4968 +4970 2 57.53932000432223 -340.3632764492423 26.6069 0.1144 4969 +4971 2 57.33881456923142 -341.4916314744152 26.2867 0.1144 4970 +4972 2 57.2500974715967 -342.71317513023513 25.9403 0.1144 4971 +4973 2 57.18694994269675 -343.9381010924122 25.4069 0.1144 4972 +4974 2 56.7316241877617 -343.5983820349553 24.4015 0.1144 4973 +4975 2 55.791675559592825 -345.0737225730466 23.5919 0.1144 4974 +4976 2 55.67446461147481 -346.4323599795638 22.4367 0.1144 4975 +4977 2 50.876556150554926 -321.95265308672225 55.2796 0.1144 4938 +4978 2 51.325622465797636 -322.91235284210103 55.9348 0.1144 4977 +4979 2 51.52884504627873 -324.25042941324915 56.2811 0.1144 4978 +4980 2 51.55770629830324 -325.55150881138826 56.5222 0.1144 4979 +4981 2 51.36272117402377 -326.7375786123907 56.6955 0.1144 4980 +4982 2 51.08087319396216 -327.93080316829867 56.7862 0.1144 4981 +4983 2 50.791708028263635 -329.6749218145609 56.8025 0.1144 4982 +4984 2 50.53720764552333 -331.3864466509821 56.7829 0.1144 4983 +4985 2 50.30890281222417 -332.8396731276271 56.7647 0.1144 4984 +4986 2 50.012886289921724 -333.892160470694 56.7308 0.1144 4985 +4987 2 49.618080794794686 -334.837192923428 56.6499 0.1144 4986 +4988 2 49.192262095454794 -335.74674192406763 56.5183 0.1144 4987 +4989 2 48.76390793662945 -336.6584201690782 56.3466 0.1144 4988 +4990 2 48.336970016446436 -337.62828409768696 56.147 0.1144 4989 +4991 2 47.90999926922634 -338.7598759972581 55.9381 0.1144 4990 +4992 2 47.482582231748786 -340.7354015245736 55.7371 0.1144 4991 +4993 2 47.05462199736822 -342.2146098481458 55.5534 0.1144 4992 +4994 2 46.8859785934051 -343.3771017742159 55.4394 0.1144 4993 +4995 2 46.962722021134915 -344.7316597899417 55.4288 0.1144 4994 +4996 2 47.131206244907446 -346.1416672362502 55.4736 0.1144 4995 +4997 2 47.40775703931215 -347.30765726843237 55.4504 0.1144 4996 +4998 2 47.714821689322896 -348.0096408963346 55.3535 0.1144 4997 +4999 2 47.9015199585265 -348.96184500624554 55.2726 0.1144 4998 +5000 2 47.74098469067296 -350.54778614472764 55.37 0.1144 4999 +5001 2 47.53522933869898 -352.19162817329357 55.6399 0.1144 5000 +5002 2 47.33035564067694 -353.82637944858794 56.047 0.1144 5001 +5003 2 47.12695915932264 -354.96437230866036 56.5505 0.1144 5002 +5004 2 46.68616073595702 -355.8395477441609 57.1082 0.1144 5003 +5005 2 46.61499646696348 -357.06167516894874 57.5548 0.1144 5004 +5006 2 46.54596512079797 -358.2917075662051 57.9004 0.1144 5005 +5007 2 46.47569963548553 -359.52874046121974 58.163 0.1144 5006 +5008 2 46.40609536696302 -360.76574592074064 58.3624 0.1144 5007 +5009 2 46.812454133123424 -362.2541240592863 58.5371 0.1144 5008 +5010 2 47.23213192207323 -363.66081573159266 58.896 0.1144 5009 +5011 2 38.78855142384954 -311.98742315176287 68.6941 0.1144 4920 +5012 2 39.76284889392729 -311.8617061644791 68.5726 0.1144 5011 +5013 2 40.820858090633045 -310.3135559079077 68.4922 0.1144 5012 +5014 2 41.908118568720944 -310.1880699798262 68.4491 0.1144 5013 +5015 2 43.04253123238204 -309.63378231149267 68.4331 0.1144 5014 +5016 2 43.761684025017125 -308.8632755678837 68.4337 0.1144 5015 +5017 2 44.17662466345389 -307.94266223661754 68.4345 0.1144 5016 +5018 2 44.49216747808895 -306.91862656131485 68.4354 0.1144 5017 +5019 2 44.79233733679016 -305.87833225725467 68.4365 0.1144 5018 +5020 2 45.03640905046792 -304.26433354375433 68.439 0.1144 5019 +5021 2 45.07722994425116 -302.85646526156563 68.4435 0.1144 5020 +5022 2 44.53064624536145 -302.7052623187301 68.4471 0.1144 5021 +5023 2 43.83047225032781 -301.20195186140734 68.4474 0.1144 5022 +5024 2 43.223654803292334 -299.8497815487943 68.4412 0.1144 5023 +5025 2 42.41386173069861 -298.6211071641115 68.5076 0.1144 5024 +5026 2 41.44145012241596 -300.1650485884294 69.4534 0.1144 5025 +5027 2 40.40843957268655 -299.80143410197445 69.9104 0.1144 5026 +5028 2 39.37732679364731 -300.6048221612319 70.2069 0.1144 5027 +5029 2 38.67043797669898 -299.169853211439 70.6182 0.1144 5028 +5030 2 38.757907220792454 -298.09034183467145 71.1096 0.1144 5029 +5031 2 39.562053835370065 -297.8957152807672 72.0188 0.1144 5030 +5032 2 40.12611930430725 -295.8565868102057 72.5455 0.1144 5031 +5033 2 40.75089213376211 -294.80108005331084 72.9464 0.1144 5032 +5034 2 40.77942724551651 -293.55157945681407 73.2113 0.1144 5033 +5035 2 40.24365512458172 -292.1170619875108 73.3446 0.1144 5034 +5036 2 40.4551652526752 -290.9459317869197 73.3849 0.1144 5035 +5037 2 40.958821781652134 -290.1379568539407 73.3527 0.1144 5036 +5038 2 41.873304157975525 -289.0979565039928 73.313 0.1144 5037 +5039 2 42.49014474765001 -287.9250464196793 73.1965 0.1144 5038 +5040 2 43.12677109702233 -287.0131701591309 73.0954 0.1144 5039 +5041 2 43.510389799651364 -285.8594248176879 73.0178 0.1144 5040 +5042 2 43.982542293325125 -285.01771704211836 72.919 0.1144 5041 +5043 2 39.55158993022394 -297.9280278872905 73.3916 0.1144 5031 +5044 2 38.90475706546108 -298.5578605135279 73.6333 0.1144 5043 +5045 2 38.39085086533388 -299.35085340320677 73.7386 0.1144 5044 +5046 2 38.179611131168635 -300.4700230235659 73.8357 0.1144 5045 +5047 2 38.06777162985172 -301.6762927394507 73.9108 0.1144 5046 +5048 2 38.08339595035348 -302.97786774790274 73.9348 0.1144 5047 +5049 2 38.13332946703551 -304.30390441234135 73.9119 0.1144 5048 +5050 2 38.35392036761585 -305.7226426142527 74.0407 0.1144 5049 +5051 2 42.409424202694886 -297.34440386905993 68.4494 0.1144 5025 +5052 2 42.33053923992432 -296.0192156735464 68.3046 0.1144 5051 +5053 2 42.358748490354664 -294.75457368883747 68.1864 0.1144 5052 +5054 2 42.359613245046724 -293.477408570598 68.1027 0.1144 5053 +5055 2 42.277564433037924 -292.1469447099885 68.0532 0.1144 5054 +5056 2 41.77110726464589 -291.4422927261424 68.0509 0.1144 5055 +5057 2 41.177920673577816 -290.5921967161552 68.0918 0.1144 5056 +5058 2 40.67016528643036 -289.0888659376458 68.222 0.1144 5057 +5059 2 40.65423223433369 -287.79325613458934 68.3609 0.1144 5058 +5060 2 40.708645646417764 -286.546486367143 68.4902 0.1144 5059 +5061 2 40.530543242830916 -285.16104908237554 68.6182 0.1144 5060 +5062 2 40.36817179100248 -283.7781935252808 68.7529 0.1144 5061 +5063 2 40.310218432643794 -282.45351772599344 68.9018 0.1144 5062 +5064 2 39.952681372583 -281.2927916405199 69.106 0.1144 5063 +5065 2 39.51291529550659 -280.9094402391134 69.3795 0.1144 5064 +5066 2 39.064177534723086 -279.8934623541507 69.988 0.1144 5065 +5067 2 38.81832338795638 -278.4992618170364 70.4721 0.1144 5066 +5068 2 38.7633689090698 -277.19934030320064 70.9402 0.1144 5067 +5069 2 38.82214817503852 -276.0103247456108 71.456 0.1144 5068 +5070 2 39.26844088318502 -274.9233404669602 72.0712 0.1144 5069 +5071 2 40.27270260172219 -273.6291340571889 72.6009 0.1144 5070 +5072 2 41.38880672235314 -273.68104519087046 73.0688 0.1144 5071 +5073 2 42.50135445437425 -273.5410695939081 73.6406 0.1144 5072 +5074 2 43.60362648921463 -273.63420109683346 74.3725 0.1144 5073 +5075 2 44.702360573236376 -273.3891778438928 75.0803 0.1144 5074 +5076 2 45.17867430530008 -271.703849942741 75.9808 0.1144 5075 +5077 2 44.950458180024356 -270.63599458179635 76.5461 0.1144 5076 +5078 2 44.780786672288045 -269.6569533166795 77.0137 0.1144 5077 +5079 2 44.670004442306265 -268.5542401014753 77.3951 0.1144 5078 +5080 2 44.52603223698736 -267.50937795309505 77.7126 0.1144 5079 +5081 2 44.333814349508884 -266.58171669247247 78.0352 0.1144 5080 +5082 2 44.53895223829301 -264.8832900182384 78.3504 0.1144 5081 +5083 2 44.56418284056355 -263.4941827128296 78.6246 0.1144 5082 +5084 2 44.59579520594821 -262.3115300913637 78.939 0.1144 5083 +5085 2 45.70617367807324 -261.9865950096785 79.2414 0.1144 5084 +5086 2 46.7772147823589 -261.30070908371005 79.4618 0.1144 5085 +5087 2 47.895214353622876 -261.1618590289623 79.616 0.1144 5086 +5088 2 48.89140999082561 -261.04641618100175 79.7384 0.1144 5087 +5089 2 49.646250573153154 -260.1660558705496 79.8756 0.1144 5088 +5090 2 50.219381122411974 -258.71011874597434 79.954 0.1144 5089 +5091 2 50.3643260987528 -257.5715116654057 79.9702 0.1144 5090 +5092 2 50.26985394605259 -256.2632527892272 79.9495 0.1144 5091 +5093 2 50.51557636368072 -255.1934875761674 79.9414 0.1144 5092 +5094 2 50.81093166919328 -253.86258205444238 79.9557 0.1144 5093 +5095 2 51.19490906018348 -252.50114515111267 80.0078 0.1144 5094 +5096 2 51.92797472181384 -250.99711459196584 80.1284 0.1144 5095 +5097 2 52.85159065002742 -250.80428419844162 80.3177 0.1144 5096 +5098 2 53.77502758032868 -250.53960029265824 80.5451 0.1144 5097 +5099 2 54.739116818506005 -249.4599844761285 80.7825 0.1144 5098 +5100 2 55.76557133060574 -248.94088420631698 81.0121 0.1144 5099 +5101 2 56.85011735129589 -248.63644957245748 81.195 0.1144 5100 +5102 2 57.946255708028374 -247.79282724045976 81.3302 0.1144 5101 +5103 2 58.96767522977747 -247.94985400751955 81.4335 0.1144 5102 +5104 2 59.90880634150216 -247.5508991350261 81.5228 0.1144 5103 +5105 2 60.918632834672394 -246.09421389514108 81.6175 0.1144 5104 +5106 2 61.790647921939694 -245.7414966065561 81.7284 0.1144 5105 +5107 2 62.58137242160113 -244.4815570040741 81.8994 0.1144 5106 +5108 2 63.5698952863888 -243.90998754984116 82.1764 0.1144 5107 +5109 2 64.67118706180678 -244.23203180094146 82.5037 0.1144 5108 +5110 2 65.79657709068432 -244.01582629542486 82.8344 0.1144 5109 +5111 2 66.92162384441995 -244.0815460384668 83.2048 0.1144 5110 +5112 2 68.04694470919237 -243.74856869936775 83.6735 0.1144 5111 +5113 2 69.16403729301047 -243.56615409669678 84.2299 0.1144 5112 +5114 2 70.27548293391763 -244.11119900809769 84.8453 0.1144 5113 +5115 2 71.38277523842609 -243.68705080358268 85.4997 0.1144 5114 +5116 2 72.49267008891532 -243.2866102250078 86.161 0.1144 5115 +5117 2 73.60429101062634 -243.40521364143217 86.7787 0.1144 5116 +5118 2 74.71215834476457 -244.03369830430324 87.3253 0.1144 5117 +5119 2 75.82016703168513 -244.07157362355457 87.8116 0.1144 5118 +5120 2 76.93219149634186 -244.39697777255225 88.2552 0.1144 5119 +5121 2 78.04430115384835 -244.20877765156956 88.6855 0.1144 5120 +5122 2 79.15426927631415 -244.46212551863852 89.1526 0.1144 5121 +5123 2 80.27440628672554 -245.28657246016013 89.6448 0.1144 5122 +5124 2 81.39265573651684 -244.43007258591842 90.0928 0.1144 5123 +5125 2 82.52044428174268 -244.68113604307098 90.4599 0.1144 5124 +5126 2 83.64625797820392 -244.21577222293064 90.7402 0.1144 5125 +5127 2 84.7361624415224 -243.78247262316557 90.9432 0.1144 5126 +5128 2 85.71179164992921 -243.80310529122602 91.0958 0.1144 5127 +5129 2 86.52105605634584 -242.83701694577422 91.2257 0.1144 5128 +5130 2 87.17024709919178 -241.75358870553623 91.3811 0.1144 5129 +5131 2 87.73530785000773 -240.33854766769633 91.6342 0.1144 5130 +5132 2 88.3472924472438 -239.25598797285227 91.943 0.1144 5131 +5133 2 88.98738586681972 -238.08943597394335 92.2536 0.1144 5132 +5134 2 89.44582231167628 -237.2725458787158 92.5893 0.1144 5133 +5135 2 89.75557511410824 -236.29639405999785 92.9611 0.1144 5134 +5136 2 89.93687701660748 -235.20401706768888 93.4198 0.1144 5135 +5137 2 90.01518257490883 -234.05362004156024 93.9966 0.1144 5136 +5138 2 90.06692597573186 -232.88619635936954 94.6806 0.1144 5137 +5139 2 90.12232715846648 -231.7012345675913 95.4313 0.1144 5138 +5140 2 90.26264509704744 -230.39495545298035 96.1139 0.1144 5139 +5141 2 90.75919598124807 -229.00080881012565 96.9545 0.1144 5140 +5142 2 91.04518978648021 -228.12364181848034 98.0857 0.1144 5141 +5143 2 90.8512944764843 -226.82912569505982 98.9624 0.1144 5142 +5144 2 90.62732067457682 -225.61286671412756 99.8035 0.1144 5143 +5145 2 90.27531864601013 -224.7235544481106 100.5528 0.1144 5144 +5146 2 89.95102461963576 -223.74972058446397 101.19 0.1144 5145 +5147 2 89.76909474097425 -222.42276060612681 101.6571 0.1144 5146 +5148 2 89.66316850343082 -221.13149750490385 101.9701 0.1144 5147 +5149 2 89.6580611464245 -219.86959545172937 102.1594 0.1144 5148 +5150 2 89.8807518638498 -218.80589475511096 102.2132 0.1144 5149 +5151 2 90.03504462607665 -217.58063865080229 102.181 0.1144 5150 +5152 2 89.99710528955778 -216.34929491008353 102.1261 0.1144 5151 +5153 2 90.16125069690712 -214.96634594828566 102.0569 0.1144 5152 +5154 2 90.51252514953083 -213.44287187329584 101.9847 0.1144 5153 +5155 2 90.86602633004507 -212.29205873265113 101.9396 0.1144 5154 +5156 2 91.24433964839517 -210.97505966079365 101.9539 0.1144 5155 +5157 2 91.66199784581276 -209.83080540148654 102.065 0.1144 5156 +5158 2 91.99376003424999 -208.47146083217052 102.3313 0.1144 5157 +5159 2 92.3473296863328 -207.03142183942487 102.8471 0.1144 5158 +5160 2 93.23430088064185 -206.28846230572208 103.6367 0.1144 5159 +5161 2 94.1309556247507 -206.12484466590092 104.664 0.1144 5160 +5162 2 94.66015128678684 -205.57285742943057 105.9058 0.1144 5161 +5163 2 95.0332448221557 -204.40702931353036 107.0101 0.1144 5162 +5164 2 95.43104748024491 -202.91479674320667 107.8426 0.1144 5163 +5165 2 95.85656124210954 -201.92517848267966 108.5059 0.1144 5164 +5166 2 96.32458063069684 -200.69693380170912 109.0807 0.1144 5165 +5167 2 96.83359560230211 -199.7483712731352 109.6197 0.1144 5166 +5168 2 97.36635895829586 -199.03761241353283 110.1626 0.1144 5167 +5169 2 97.90103248560531 -198.17537499662166 110.7411 0.1144 5168 +5170 2 98.67042973990024 -196.18977421045264 111.4464 0.1144 5169 +5171 2 99.72613833319157 -196.76327612260246 112.2173 0.1144 5170 +5172 2 100.77255628913264 -197.76274280539175 113.0307 0.1144 5171 +5173 2 101.61745701960724 -197.63862054915137 113.8449 0.1144 5172 +5174 2 102.33293860058923 -198.57924666645334 114.6258 0.1144 5173 +5175 2 103.18203169766585 -199.84790776674953 115.4054 0.1144 5174 +5176 2 104.23997972124681 -200.16516362584952 116.1838 0.1144 5175 +5177 2 105.34037551279309 -199.81526117255873 116.9244 0.1144 5176 +5178 2 105.95683518219562 -199.26650652221065 117.6563 0.1144 5177 +5179 2 106.24204624071999 -198.2867379605454 118.1804 0.1144 5178 +5180 2 106.52675554159103 -197.18677983073457 118.6349 0.1144 5179 +5181 2 106.8117290332242 -195.94857448954565 119.0378 0.1144 5180 +5182 2 107.0624019408898 -194.7099648473095 119.4113 0.1144 5181 +5183 2 106.87053453800777 -193.66757377020247 119.8168 0.1144 5182 +5184 2 105.79632168249279 -193.6096549546549 120.2975 0.1144 5183 +5185 2 104.81925359508487 -193.65679012107896 120.706 0.1144 5184 +5186 2 103.83938275584639 -194.7387585195335 121.1025 0.1144 5185 +5187 2 102.8067757490627 -195.1846171097503 121.399 0.1144 5186 +5188 2 101.82367328155394 -195.08822114350056 121.6152 0.1144 5187 +5189 2 100.96940233247624 -197.1469873480882 121.9756 0.1144 5188 +5190 2 100.11953798399638 -197.38448579900108 122.4703 0.1144 5189 +5191 2 99.25489962797018 -197.53684255013928 123.2711 0.1144 5190 +5192 2 98.39555124300371 -198.08871036741357 124.3701 0.1144 5191 +5193 2 97.88614566132118 -199.12218873940694 124.9998 0.1144 5192 +5194 2 96.78614349244596 -198.75379792022383 125.4912 0.1144 5193 +5195 2 95.67109112737786 -198.9419566773616 125.76 0.1144 5194 +5196 2 94.55278972022177 -199.6082104737396 125.8785 0.1144 5195 +5197 2 93.43319009431025 -199.13285708092405 125.8925 0.1144 5196 +5198 2 92.3130144444586 -199.32078764106797 125.8704 0.1144 5197 +5199 2 91.19283879460696 -199.99337681702445 125.8734 0.1144 5198 +5200 2 90.07631231445428 -200.6096688397039 125.9527 0.1144 5199 +5201 2 88.96242912699556 -200.8841177048186 126.1252 0.1144 5200 +5202 2 87.85223344690253 -200.48967437080384 126.3716 0.1144 5201 +5203 2 86.74190803312682 -201.352343487503 126.6706 0.1144 5202 +5204 2 85.63466127573957 -201.5660853984627 127.0021 0.1144 5203 +5205 2 84.52838446673712 -201.57743816969224 127.3488 0.1144 5204 +5206 2 83.42113770934986 -202.0719867486725 127.6929 0.1144 5205 +5207 2 82.31334775505961 -202.06627753357805 128.0272 0.1144 5206 +5208 2 81.20516387632455 -202.04494449806413 128.345 0.1144 5207 +5209 2 80.09532929363918 -203.14789185532146 128.6407 0.1144 5208 +5210 2 78.9862082935564 -202.96443781345238 128.9086 0.1144 5209 +5211 2 77.87378588557281 -202.49859047664077 129.1438 0.1144 5210 +5212 2 76.74262536558285 -203.56083061636963 129.299 0.1144 5211 +5213 2 75.59944604215742 -203.0573781419236 129.3446 0.1144 5212 +5214 2 74.45698891354738 -203.0895900277301 129.3099 0.1144 5213 +5215 2 73.31362749062656 -203.47639352168966 129.2281 0.1144 5214 +5216 2 72.17111799620375 -202.77452727480488 129.1346 0.1144 5215 +5217 2 71.02874606044344 -203.2036509662454 129.0671 0.1144 5216 +5218 2 69.88538463752268 -203.2539851029968 129.0626 0.1144 5217 +5219 2 68.74292750891259 -203.19847974752042 129.1486 0.1144 5218 +5220 2 68.60403422552304 -203.2049582497471 128.7423 0.1144 5219 +5221 2 67.86052960147751 -203.6414055643586 126.9817 0.1144 5220 +5222 2 67.01608936738506 -204.39297205285536 125.6998 0.1144 5221 +5223 2 66.18162400086949 -205.1203487299626 124.7935 0.1144 5222 +5224 2 66.20068316808513 -205.7046818035853 123.3669 0.1144 5223 +5225 2 66.37517383946135 -205.2778889539449 121.2938 0.1144 5224 +5226 2 66.06219734555597 -204.55322162845727 119.803 0.1144 5225 +5227 2 65.8025477638186 -204.10375545340747 117.7921 0.1144 5226 +5228 2 67.96966315093513 -201.78787595102813 129.7856 0.1144 5219 +5229 2 67.137314802298 -201.43656232753838 130.5178 0.1144 5228 +5230 2 66.20190202865732 -200.63279350067097 131.5748 0.1144 5229 +5231 2 65.23155136730992 -201.28012999889347 132.9404 0.1144 5230 +5232 2 64.2262830495681 -201.02536858922514 134.2289 0.1144 5231 +5233 2 63.26445468008728 -200.61713186388653 135.5808 0.1144 5232 +5234 2 62.5499776977114 -200.17862223431734 137.4243 0.1144 5233 +5235 2 98.39968985871982 -198.04199556019609 124.9562 0.1144 5192 +5236 2 98.49019430166844 -197.10811062538232 126.6404 0.1144 5235 +5237 2 98.67875551336236 -195.869545708204 127.1911 0.1144 5236 +5238 2 99.19420430014276 -195.18872401338967 127.6192 0.1144 5237 +5239 2 100.15717231687834 -195.291067671851 128.2568 0.1144 5238 +5240 2 101.21704174011161 -195.39681339056864 129.1758 0.1144 5239 +5241 2 102.18565510190062 -195.1595961025244 130.319 0.1144 5240 +5242 2 103.11401969875936 -196.20612492937624 131.5322 0.1144 5241 +5243 2 103.90046651517395 -196.84294294365475 132.6623 0.1144 5242 +5244 2 103.61917914583324 -198.00898758871972 133.4962 0.1144 5243 +5245 2 103.22683342916852 -198.97612260560464 135.1806 0.1144 5244 +5246 2 40.38919162368555 -280.2624933371678 69.3591 0.1144 5065 +5247 2 41.523215163309956 -280.5999114298551 69.0259 0.1144 5246 +5248 2 42.65884455230014 -280.365643064455 68.8142 0.1144 5247 +5249 2 43.630248567067966 -279.8548292298979 68.6969 0.1144 5248 +5250 2 44.58746931891213 -279.58560618107 68.6526 0.1144 5249 +5251 2 45.69186026611952 -278.3487267620937 68.7786 0.1144 5250 +5252 2 46.77980699271757 -278.40693798242745 69.5534 0.1144 5251 +5253 2 46.04771496171057 -301.3315553507356 67.6558 0.1144 5021 +5254 2 46.533410709455545 -300.502365907381 67.4358 0.1144 5253 +5255 2 47.00236101622447 -299.2416527058413 67.2064 0.1144 5254 +5256 2 47.82407037971793 -297.8899499574886 67.006 0.1144 5255 +5257 2 48.95506041931208 -298.11620749321634 66.848 0.1144 5256 +5258 2 50.095861049253536 -298.8038636172018 66.7932 0.1144 5257 +5259 2 51.23505372255627 -297.97510928891876 66.8136 0.1144 5258 +5260 2 52.371836875936594 -297.64282299477446 66.8623 0.1144 5259 +5261 2 53.48167215115864 -297.35072042366005 66.9455 0.1144 5260 +5262 2 54.49493288749533 -297.23265591473097 67.062 0.1144 5261 +5263 2 55.510635278254995 -296.6355071816674 67.1989 0.1144 5262 +5264 2 56.545956049899836 -295.84109971519337 67.3453 0.1144 5263 +5265 2 57.61604841373817 -295.1432035499225 67.5004 0.1144 5264 +5266 2 58.692251140474056 -294.529326833117 67.6584 0.1144 5265 +5267 2 59.76908225696281 -294.8498957307042 67.8096 0.1144 5266 +5268 2 60.843366987403144 -294.1606456808427 67.9465 0.1144 5267 +5269 2 61.90486279308815 -293.49745828874813 68.0607 0.1144 5268 +5270 2 62.87657002882127 -292.68919168624404 68.1369 0.1144 5269 +5271 2 63.508931130377974 -291.4819117596445 68.1576 0.1144 5270 +5272 2 63.70386078726156 -290.28746242030843 68.1265 0.1144 5271 +5273 2 63.84732785439809 -289.00500314561094 68.0436 0.1144 5272 +5274 2 64.0002012763996 -287.7361973672102 67.9048 0.1144 5273 +5275 2 64.20061841705757 -286.46127759248293 67.6976 0.1144 5274 +5276 2 64.5020809838846 -285.43991865783323 67.4022 0.1144 5275 +5277 2 64.99915724272253 -284.6633683843078 66.978 0.1144 5276 +5278 2 65.82330826063891 -283.98620569737034 66.3664 0.1144 5277 +5279 2 66.8193142871181 -283.123313715972 65.5696 0.1144 5278 +5280 2 67.63501199415188 -283.73124758020816 64.7408 0.1144 5279 +5281 2 68.0363203567423 -284.43740493508545 64.052 0.1144 5280 +5282 2 68.25468383689562 -285.43048288443947 63.4628 0.1144 5281 +5283 2 68.18400660487272 -286.7551244313957 62.9087 0.1144 5282 +5284 2 67.37252018198434 -287.6086795084979 62.3759 0.1144 5283 +5285 2 66.2811086875549 -287.26416236019736 61.9623 0.1144 5284 +5286 2 65.20027541873495 -287.3342924019068 61.5997 0.1144 5285 +5287 2 64.09469607460122 -286.38434001582 61.2391 0.1144 5286 +5288 2 62.975192556124384 -286.12364752764654 60.8644 0.1144 5287 +5289 2 61.906967829074354 -286.1093353753124 60.4212 0.1144 5288 +5290 2 60.88878525056149 -285.42761763843595 59.8951 0.1144 5289 +5291 2 59.84366820651097 -285.6325295884272 59.29 0.1144 5290 +5292 2 59.1617108559116 -285.9620166817545 58.5586 0.1144 5291 +5293 2 58.63139466497036 -286.69757351263775 57.9376 0.1144 5292 +5294 2 58.11766436117238 -287.47099083190454 57.5551 0.1144 5293 +5295 2 58.02346288134642 -288.67276212310094 57.2855 0.1144 5294 +5296 2 57.92084763539907 -289.9211623384601 57.1245 0.1144 5295 +5297 2 57.568911965985436 -291.8469728914006 57.2132 0.1144 5296 +5298 2 31.05124447664675 -305.9797837298784 73.5003 0.1144 4911 +5299 2 31.04568772779986 -304.6779766349241 73.3538 0.1144 5298 +5300 2 30.534603521647902 -303.4062033381397 73.2332 0.1144 5299 +5301 2 30.404223834629825 -302.10696251923156 73.5669 0.1144 5300 +5302 2 30.211068825803622 -300.80675347924296 74.0905 0.1144 5301 +5303 2 29.980046847114224 -299.3985444005082 74.5251 0.1144 5302 +5304 2 29.89434955794306 -298.06729294368995 74.8684 0.1144 5303 +5305 2 29.90750861218052 -296.7939254876123 75.1332 0.1144 5304 +5306 2 29.614648433030794 -295.6519074071183 75.3136 0.1144 5305 +5307 2 29.18049337024516 -294.9769014071698 75.4393 0.1144 5306 +5308 2 28.722546074774698 -293.84633671638323 75.6224 0.1144 5307 +5309 2 28.502928224162275 -292.4319687942147 75.8038 0.1144 5308 +5310 2 28.2234808728645 -290.9785942981362 75.9293 0.1144 5309 +5311 2 28.171855212982337 -289.652002724007 75.9993 0.1144 5310 +5312 2 28.325357024736675 -288.47619688789007 76.0178 0.1144 5311 +5313 2 28.081103625154157 -287.0502486155458 75.9814 0.1144 5312 +5314 2 27.70975360963054 -285.57551994160866 75.7826 0.1144 5313 +5315 2 27.493787337763564 -284.21331074110606 75.6036 0.1144 5314 +5316 2 27.738126343786476 -283.0647305391107 75.4785 0.1144 5315 +5317 2 27.635669585493133 -281.7054976580963 75.4051 0.1144 5316 +5318 2 27.316398930369928 -280.3938779792981 75.3791 0.1144 5317 +5319 2 27.013253151449803 -279.1806119198289 75.4538 0.1144 5318 +5320 2 26.702663554793148 -277.8951833514838 75.5692 0.1144 5319 +5321 2 25.969348937641342 -277.45167395811416 75.4636 0.1144 5320 +5322 2 24.861440856789898 -277.47709971771354 75.3404 0.1144 5321 +5323 2 23.811074991133935 -278.27136501831245 75.2604 0.1144 5322 +5324 2 22.87444497760619 -279.1753159846319 75.2153 0.1144 5323 +5325 2 21.81558284611414 -278.7661129489848 75.1246 0.1144 5324 +5326 2 20.875425298915374 -277.85302775644533 75.0072 0.1144 5325 +5327 2 19.857049001807567 -278.1373080964372 74.9196 0.1144 5326 +5328 2 18.731108975020376 -277.96814582621056 74.9692 0.1144 5327 +5329 2 18.081095131290056 -279.67031444456546 75.075 0.1144 5328 +5330 2 17.520128052616286 -279.5214733124334 75.903 0.1144 5329 +5331 2 16.54746686757987 -279.1537336947316 77.1949 0.1144 5330 +5332 2 15.483587177239997 -279.32967188497975 78.0704 0.1144 5331 +5333 2 14.375843373618139 -279.3816397106193 78.6033 0.1144 5332 +5334 2 13.265352285561548 -279.2020287178745 79.1109 0.1144 5333 +5335 2 12.146793097887013 -279.53840031979627 79.613 0.1144 5334 +5336 2 11.029609810589463 -278.8925429799052 80.1458 0.1144 5335 +5337 2 9.91286119444986 -279.1815706904897 80.7265 0.1144 5336 +5338 2 8.880103819930198 -279.06246802688537 81.2759 0.1144 5337 +5339 2 7.919529116393818 -278.64404116670687 81.7225 0.1144 5338 +5340 2 6.9280941805264575 -277.76748188354986 82.0904 0.1144 5339 +5341 2 5.8686757589693315 -277.1316240676983 82.4029 0.1144 5340 +5342 2 4.758296582329606 -276.8311362319634 82.724 0.1144 5341 +5343 2 3.6329188650882003 -276.674587235821 83.174 0.1144 5342 +5344 2 2.515132521531754 -277.63986709271273 83.7581 0.1144 5343 +5345 2 2.059655013787605 -276.5892833305058 84.3371 0.1144 5344 +5346 2 2.1045330298606757 -275.3684874892281 84.7616 0.1144 5345 +5347 2 2.0329159884974928 -274.03149311530365 85.0592 0.1144 5346 +5348 2 1.9272539417161454 -272.66763482213116 85.2524 0.1144 5347 +5349 2 1.8206110199870267 -271.3020230000978 85.3656 0.1144 5348 +5350 2 1.7145964880106987 -269.93614299402134 85.4392 0.1144 5349 +5351 2 1.6080387591313894 -268.56544071401487 85.5123 0.1144 5350 +5352 2 1.465446863834586 -267.17851660423815 85.612 0.1144 5351 +5353 2 1.211125892597181 -265.74046783517275 85.7598 0.1144 5352 +5354 2 0.913318324993071 -264.2886667637363 85.9648 0.1144 5353 +5355 2 0.6099083553108926 -262.809969178989 86.2282 0.1144 5354 +5356 2 0.30742689476377905 -261.3583073366049 86.5491 0.1144 5355 +5357 2 0.006064655059802249 -259.9136749611589 86.9254 0.1144 5356 +5358 2 -0.3045601776804432 -258.5970118030432 87.4196 0.1144 5357 +5359 2 -0.6191446282244755 -257.5065364485987 88.1989 0.1144 5358 +5360 2 -0.7310251552005838 -256.39912849290204 89.0596 0.1144 5359 +5361 2 -0.6238119991069482 -254.9872249439607 89.8013 0.1144 5360 +5362 2 -0.2945698569358939 -253.66438118032403 90.678 0.1144 5361 +5363 2 0.5227452175958263 -253.455175197983 91.7039 0.1144 5362 +5364 2 1.3662558415687016 -253.27359415906068 92.6117 0.1144 5363 +5365 2 2.194252156825499 -252.2675137525875 93.4438 0.1144 5364 +5366 2 3.036869507746843 -250.91188906970285 94.2589 0.1144 5365 +5367 2 3.920224359393984 -250.4592920419944 95.1012 0.1144 5366 +5368 2 4.829469823006988 -249.63340758704663 95.954 0.1144 5367 +5369 2 5.677043079899178 -248.9648660806086 96.8005 0.1144 5368 +5370 2 5.948434364269147 -247.80337354509965 97.6676 0.1144 5369 +5371 2 5.452147782647515 -246.87141091632998 98.4116 0.1144 5370 +5372 2 4.813629888578802 -245.70864334466205 98.9366 0.1144 5371 +5373 2 4.022285326724358 -244.65128416134243 99.0864 0.1144 5372 +5374 2 3.131318094261019 -243.92313482189678 98.7078 0.1144 5373 +5375 2 2.2198669327164 -243.08817325316573 98.119 0.1144 5374 +5376 2 1.2537664077390502 -243.15061636731502 97.6839 0.1144 5375 +5377 2 0.2780477029473616 -241.81567295195794 97.414 0.1144 5376 +5378 2 -0.7026152887155916 -240.5687460945 97.3353 0.1144 5377 +5379 2 -1.6907604357818116 -240.8516565601626 97.4753 0.1144 5378 +5380 2 -2.6964898534530306 -239.78057087377465 97.8622 0.1144 5379 +5381 2 -3.6920110392238428 -238.52934039526275 98.4264 0.1144 5380 +5382 2 -4.679424088885057 -238.46190119932152 99.1063 0.1144 5381 +5383 2 -5.658238171346383 -237.95347523669972 99.8757 0.1144 5382 +5384 2 -6.654449008984059 -237.88036915335425 100.7507 0.1144 5383 +5385 2 -7.683139956464629 -237.6813200833795 101.7803 0.1144 5384 +5386 2 -8.629054280381439 -236.533952557307 102.9302 0.1144 5385 +5387 2 -9.557548610922822 -236.00065019326132 104.1384 0.1144 5386 +5388 2 -10.483953772236333 -236.0298409135418 105.3615 0.1144 5387 +5389 2 -11.460094445786751 -235.26908873971166 106.7438 0.1144 5388 +5390 2 -12.385547374306768 -235.3295911999735 108.3222 0.1144 5389 +5391 2 -13.099859374938404 -235.85688513897205 110.5003 0.1144 5390 +5392 2 17.667740821128405 -280.1995859554471 75.0184 0.1144 5329 +5393 2 17.100720634767086 -280.92854990972944 74.8101 0.1144 5392 +5394 2 16.274572536175327 -281.23284963557916 74.4856 0.1144 5393 +5395 2 15.536432853991045 -282.57973060418544 74.0267 0.1144 5394 +5396 2 14.925238514690946 -284.2403413780855 73.4387 0.1144 5395 +5397 2 14.322744772633058 -284.8781648166355 72.7944 0.1144 5396 +5398 2 13.722340199803142 -285.7392390302969 72.1462 0.1144 5397 +5399 2 13.18547277164025 -287.5443002183682 71.5616 0.1144 5398 +5400 2 12.710637955069203 -288.77791675288 71.0682 0.1144 5399 +5401 2 12.235230216141176 -289.8391077787321 70.6513 0.1144 5400 +5402 2 11.757501944260127 -290.67291838451933 70.303 0.1144 5401 +5403 2 11.279018650526737 -291.5134338199878 70.0157 0.1144 5402 +5404 2 10.798661114097769 -292.35092217526335 69.7852 0.1144 5403 +5405 2 10.081211379247733 -293.6815611052701 68.4426 0.1144 5404 +5406 2 9.195881678836002 -294.3472402241006 67.4512 0.1144 5405 +5407 2 8.27358138319569 -295.4023117710876 66.7285 0.1144 5406 +5408 2 7.4858731768241 -296.21111044305815 66.0509 0.1144 5407 +5409 2 6.763147889823415 -296.7731023097523 65.4685 0.1144 5408 +5410 2 5.98360708107694 -297.4816602436017 64.9684 0.1144 5409 +5411 2 4.997480732038952 -298.58463458749526 64.5436 0.1144 5410 +5412 2 4.083555864853366 -298.93588721838523 64.15 0.1144 5411 +5413 2 3.256562040929765 -300.3380233962394 64.0469 0.1144 5412 +5414 2 2.380754714671383 -301.3961664143416 63.9422 0.1144 5413 +5415 2 1.276028696086854 -300.8668542574397 63.4712 0.1144 5414 +5416 2 0.23848560619661896 -301.1281519326783 62.8309 0.1144 5415 +5417 2 -0.7061796622270435 -302.4930658681111 62.2278 0.1144 5416 +5418 2 -1.6266464618850023 -302.5755356557536 61.6504 0.1144 5417 +5419 2 -2.5493814286832617 -302.67772276412126 61.1108 0.1144 5418 +5420 2 -3.453578897772786 -304.6375832448752 60.6245 0.1144 5419 +5421 2 -4.265740553619025 -305.0455863610203 60.1664 0.1144 5420 +5422 2 -4.984582205612696 -306.44125931727467 59.6963 0.1144 5421 +5423 2 -5.618629247203344 -308.0956596088664 59.2256 0.1144 5422 +5424 2 -5.771753240268794 -309.18591757602564 58.8328 0.1144 5423 +5425 2 -5.5283400553884405 -310.63171274779415 58.5586 0.1144 5424 +5426 2 -5.4584096465957685 -311.9700186546406 58.333 0.1144 5425 +5427 2 -5.559608653900867 -313.1696157951411 58.1031 0.1144 5426 +5428 2 -5.661683804528238 -314.39524440415073 57.7912 0.1144 5427 +5429 2 -6.104723676466996 -315.2225625246686 57.395 0.1144 5428 +5430 2 -6.829179444334493 -315.70665783451363 56.9878 0.1144 5429 +5431 2 -7.36942564826807 -316.46484375205154 56.6314 0.1144 5430 +5432 2 -7.687198292376742 -317.6878113268724 56.3746 0.1144 5431 +5433 2 -7.971187807478984 -319.5703612396375 56.1957 0.1144 5432 +5434 2 -8.336143072836414 -321.4501227679565 56.0283 0.1144 5433 +5435 2 -8.748101961530317 -322.4063544421785 55.8289 0.1144 5434 +5436 2 -9.161317629729915 -323.3350577303828 55.587 0.1144 5435 +5437 2 -9.657797633315482 -324.4753294650828 55.2969 0.1144 5436 +5438 2 -10.227408746558005 -326.62242865322656 54.9646 0.1144 5437 +5439 2 -10.810648306721454 -327.49201057547646 54.607 0.1144 5438 +5440 2 -11.404457196193086 -328.2300055673134 54.238 0.1144 5439 +5441 2 -12.211672156121551 -328.5354104796889 53.8594 0.1144 5440 +5442 2 -13.275887219612265 -329.55220944076956 53.4926 0.1144 5441 +5443 2 -14.405423375434047 -329.32320347088586 53.1286 0.1144 5442 +5444 2 -15.492211537233963 -330.6843811331669 52.733 0.1144 5443 +5445 2 -16.376629449791835 -330.82788043220916 52.3426 0.1144 5444 +5446 2 -17.038027190286897 -331.52497370777667 51.994 0.1144 5445 +5447 2 -17.636330974789253 -332.24746081024307 51.6799 0.1144 5446 +5448 2 -18.187978205216695 -334.0334009258104 51.3775 0.1144 5447 +5449 2 -18.451576903763623 -335.8301571434918 51.0398 0.1144 5448 +5450 2 -18.425573870965543 -337.15615528912355 50.65 0.1144 5449 +5451 2 -18.491529662325682 -338.49337363151443 50.26 0.1144 5450 +5452 2 -18.777580935552216 -339.55621561096564 49.8585 0.1144 5451 +5453 2 -19.41443693213965 -340.16293628492195 49.4295 0.1144 5452 +5454 2 -20.125437740368888 -340.7296250884647 48.9121 0.1144 5453 +5455 2 -20.345947277024898 -341.70071663952376 47.8176 0.1144 5454 +5456 2 -20.863585839102292 -342.48775264525904 46.655 0.1144 5455 +5457 2 -21.608042606951834 -344.58246582744357 45.8248 0.1144 5456 +5458 2 -22.638567653962106 -344.1834745646097 44.9277 0.1144 5457 +5459 2 -23.652880927387613 -345.2215663464251 43.9443 0.1144 5458 +5460 2 -24.25580752996148 -343.8715006187953 42.975 0.1144 5459 +5461 2 -24.512475060182375 -342.4717175632046 42.0535 0.1144 5460 +5462 2 -24.37614887390572 -341.35465350354195 41.1678 0.1144 5461 +5463 2 -24.041257379777257 -340.38601534881 40.3421 0.1144 5462 +5464 2 -23.717770706262286 -339.3899374509001 39.6077 0.1144 5463 +5465 2 -23.462552946799697 -337.8579506527024 38.9752 0.1144 5464 +5466 2 -23.730207347757464 -336.9534223924592 38.3648 0.1144 5465 +5467 2 -24.630726697513055 -335.62264617331823 37.798 0.1144 5466 +5468 2 -25.696008012486907 -334.4671801194534 37.247 0.1144 5467 +5469 2 -26.793429565518444 -335.42988116687593 36.6806 0.1144 5468 +5470 2 -27.859394932740287 -335.3561788306023 36.1178 0.1144 5469 +5471 2 -28.90048589372386 -336.954456523747 35.5558 0.1144 5470 +5472 2 -29.76582621325312 -337.24519647522584 35.0045 0.1144 5471 +5473 2 -30.472012468293727 -337.75279480272013 34.4809 0.1144 5472 +5474 2 -31.15031033815651 -338.3112097071718 33.9766 0.1144 5473 +5475 2 -31.71162880674759 -340.15894735349127 33.474 0.1144 5474 +5476 2 -32.141780532935115 -341.83977263351943 32.972 0.1144 5475 +5477 2 -32.544691755125214 -342.81603414151584 32.475 0.1144 5476 +5478 2 -32.947388050782905 -343.77175315187577 31.9897 0.1144 5477 +5479 2 -33.7072431080602 -345.64350646250233 31.5286 0.1144 5478 +5480 2 -34.78175308804869 -345.13102507646533 31.227 0.1144 5479 +5481 2 -35.9125319952301 -344.4402966782784 30.9663 0.1144 5480 +5482 2 -36.93772972782419 -345.8053056146673 30.6975 0.1144 5481 +5483 2 -37.72849256515225 -346.6329744237134 30.5088 0.1144 5482 +5484 2 -38.50491027137366 -347.61878538138575 30.3783 0.1144 5483 +5485 2 -39.09812910875911 -349.73015165013464 30.2781 0.1144 5484 +5486 2 -39.55255218492596 -350.60593849155634 30.1972 0.1144 5485 +5487 2 -39.70163336793639 -351.78142362794136 30.14 0.1144 5486 +5488 2 -39.841903758797585 -352.9647193896561 30.0964 0.1144 5487 +5489 2 -40.29841600419237 -353.8316139104552 30.0199 0.1144 5488 +5490 2 -40.94293005251224 -354.4423534471022 29.7284 0.1144 5489 +5491 2 10.397023984263726 -292.6767848031531 69.5492 0.1144 5404 +5492 2 9.350200076330452 -292.7179233220185 69.2532 0.1144 5491 +5493 2 8.38970987310725 -292.00808397431706 69.2611 0.1144 5492 +5494 2 7.441505451913031 -291.4634035583395 69.4968 0.1144 5493 +5495 2 6.500386852630726 -290.2815524085077 69.9026 0.1144 5494 +5496 2 5.5692998963831855 -289.20356247373314 70.408 0.1144 5495 +5497 2 4.65619492930513 -289.265071111755 70.929 0.1144 5496 +5498 2 3.7442060814870928 -287.87462030501644 71.4241 0.1144 5497 +5499 2 2.907706112961151 -287.7848432514918 71.8561 0.1144 5498 +5500 2 2.1089177333700917 -286.8847053490997 72.2344 0.1144 5499 +5501 2 1.309423596156293 -285.4061415105935 72.5749 0.1144 5500 +5502 2 0.5121976260827807 -283.9314409983137 72.893 0.1144 5501 +5503 2 -0.15109647720161945 -283.1111461654518 73.222 0.1144 5502 +5504 2 -0.7527351720577258 -282.8354765888039 73.5613 0.1144 5503 +5505 2 -1.3349170701231543 -281.31480483403186 73.8917 0.1144 5504 +5506 2 -1.9025309908733163 -279.79571700194896 74.1958 0.1144 5505 +5507 2 -2.455491741458502 -278.28305201952605 74.4624 0.1144 5506 +5508 2 -2.6790315647446903 -276.85389791480867 74.6052 0.1144 5507 +5509 2 -2.815615419722846 -275.4880036675424 74.6329 0.1144 5508 +5510 2 -2.7895805313703335 -274.20595188800144 74.6021 0.1144 5509 +5511 2 -2.731609345603289 -272.9486492089491 74.5405 0.1144 5510 +5512 2 -2.6735857940235093 -271.69067922791703 74.4652 0.1144 5511 +5513 2 -2.615614608256422 -270.43430238162335 74.3901 0.1144 5512 +5514 2 -2.557591056676671 -269.18167021400933 74.328 0.1144 5513 +5515 2 -2.4996198709095836 -267.92543392584264 74.275 0.1144 5514 +5516 2 -2.441648685142539 -266.6697240228283 74.2269 0.1144 5515 +5517 2 -2.3842535233155786 -265.41418559443656 74.1832 0.1144 5516 +5518 2 -2.3338035231549696 -264.15475667057143 74.1454 0.1144 5517 +5519 2 -2.4250765905333935 -262.7767408465097 74.1202 0.1144 5518 +5520 2 -2.5907494502626633 -261.3781549373203 74.1098 0.1144 5519 +5521 2 -2.716276246425423 -260.007075434478 74.1135 0.1144 5520 +5522 2 -3.263808082215249 -258.4947896686586 74.1322 0.1144 5521 +5523 2 -3.9558739411393162 -257.7332778832235 74.1642 0.1144 5522 +5524 2 -4.015734369230543 -256.46396462329676 74.2244 0.1144 5523 +5525 2 -3.880105044275325 -254.96153890058878 74.31 0.1144 5524 +5526 2 -3.595126042012595 -253.55099705267384 74.4386 0.1144 5525 +5527 2 -3.31430037614858 -252.36740270124892 74.5707 0.1144 5526 +5528 2 -3.0639009639943424 -251.28249359332165 74.6376 0.1144 5527 +5529 2 -2.861706487286426 -250.14909916498573 74.6556 0.1144 5528 +5530 2 -2.690745651953364 -248.98841271237143 74.6992 0.1144 5529 +5531 2 -2.525536491156757 -247.8215113735431 74.7746 0.1144 5530 +5532 2 -2.3618733026850833 -246.65566807999892 74.8588 0.1144 5531 +5533 2 -2.1965789490386953 -245.49157548946317 74.9316 0.1144 5532 +5534 2 -2.044909940730122 -244.30982806940844 74.9414 0.1144 5533 +5535 2 -1.9591776944213564 -243.08603978377414 74.7914 0.1144 5534 +5536 2 -2.0892869875112012 -241.73838392868296 74.4257 0.1144 5535 +5537 2 -2.5041526323189203 -240.2866230917255 73.8774 0.1144 5536 +5538 2 -3.0863198097016493 -238.822752241743 73.1909 0.1144 5537 +5539 2 -3.8538598272351265 -237.44512939059666 72.3831 0.1144 5538 +5540 2 -4.840895673732817 -237.6609282079433 71.5789 0.1144 5539 +5541 2 -5.683451247982134 -236.97069895090522 70.5956 0.1144 5540 +5542 2 -5.378811419296156 -236.14238186174268 69.1023 0.1144 5541 +5543 2 -5.095337660330173 -235.00608586191018 67.587 0.1144 5542 +5544 2 -4.895753933367814 -233.6437320225541 66.6523 0.1144 5543 +5545 2 -4.8869655511080765 -232.33708606367105 66.1727 0.1144 5544 +5546 2 -5.2095266875691095 -231.24813903599158 65.9988 0.1144 5545 +5547 2 -5.673534389170911 -230.03678639704492 65.9876 0.1144 5546 +5548 2 -6.137542090772641 -228.56967129063912 66.057 0.1144 5547 +5549 2 -6.602572106572055 -227.69153505927756 66.1399 0.1144 5548 +5550 2 -7.066665001023608 -226.8149179168651 66.1878 0.1144 5549 +5551 2 -7.471745087204226 -225.76753100255684 66.2004 0.1144 5550 +5552 2 -7.740276039932297 -224.51131652024728 66.1948 0.1144 5551 +5553 2 -7.933695932057148 -223.1134262845823 66.192 0.1144 5552 +5554 2 -8.123558050499 -221.71282518554182 66.2192 0.1144 5553 +5555 2 -8.158876734682664 -220.404814877137 66.3485 0.1144 5554 +5556 2 -8.002836361859806 -219.2513898490413 66.6747 0.1144 5555 +5557 2 -7.728902799312863 -218.06455365316668 67.2902 0.1144 5556 +5558 2 -7.437903445095344 -216.7035281956066 68.0924 0.1144 5557 +5559 2 -7.49469582960937 -215.54984186095405 68.885 0.1144 5558 +5560 2 -8.345553258563172 -214.78032349137146 69.5433 0.1144 5559 +5561 2 -9.442267035688488 -213.72715812188994 69.9712 0.1144 5560 +5562 2 -10.572651308203532 -214.00347730555308 70.1873 0.1144 5561 +5563 2 -11.714626217936015 -214.02476627445853 70.1761 0.1144 5562 +5564 2 -12.852306438487517 -213.69432670514715 69.9936 0.1144 5563 +5565 2 -13.608425215899928 -214.11626798763342 69.6769 0.1144 5564 +5566 2 -13.60082411760392 -212.80846837053653 69.3605 0.1144 5565 +5567 2 -13.444028722928664 -211.33153352369288 69.069 0.1144 5566 +5568 2 -13.282471140877504 -209.6909829672726 68.7884 0.1144 5567 +5569 2 -13.156642095232016 -208.08381520449427 68.4905 0.1144 5568 +5570 2 -13.058072352474838 -206.57019458592208 68.1506 0.1144 5569 +5571 2 -12.966552503009538 -205.22411154418177 67.7606 0.1144 5570 +5572 2 -12.873285042948254 -203.89434263737547 67.3204 0.1144 5571 +5573 2 -12.825510469982163 -202.63542838250476 66.8209 0.1144 5572 +5574 2 -12.993436776168963 -201.3226135548241 66.1867 0.1144 5573 +5575 2 -13.239240966169419 -200.1414300186908 65.4413 0.1144 5574 +5576 2 -13.515112721518477 -199.2381091896448 64.6926 0.1144 5575 +5577 2 -13.813619151042516 -198.53804397902377 63.9876 0.1144 5576 +5578 2 -14.114843139547446 -197.61860340661843 63.3251 0.1144 5577 +5579 2 -14.418114858030478 -196.2320113552936 62.7082 0.1144 5578 +5580 2 -14.724817718096958 -194.81117571019354 62.1393 0.1144 5579 +5581 2 -15.030680363461315 -193.39412848084922 61.6118 0.1144 5580 +5582 2 -15.33778024955565 -191.9712840491073 61.1162 0.1144 5581 +5583 2 -15.645114600958095 -190.5450032227572 60.653 0.1144 5582 +5584 2 -15.952663878892963 -189.0854075809431 60.2263 0.1144 5583 +5585 2 -16.06950651500607 -187.7444594416009 59.9032 0.1144 5584 +5586 2 -16.113558623469046 -186.43849382123227 59.6845 0.1144 5585 +5587 2 -16.148877307652697 -185.13686757256608 59.5493 0.1144 5586 +5588 2 -16.182897773080924 -183.83452772879252 59.4742 0.1144 5587 +5589 2 -16.216970604321872 -182.5345340893233 59.4387 0.1144 5588 +5590 2 -16.252556580850694 -181.23108403897487 59.4224 0.1144 5589 +5591 2 -16.286577046278964 -179.92734093330893 59.4082 0.1144 5590 +5592 2 -16.320649877519912 -178.62717312870234 59.3883 0.1144 5591 +5593 2 -16.356321046898515 -177.32452765320426 59.3608 0.1144 5592 +5594 2 -16.39025631947696 -176.02316628220967 59.3239 0.1144 5593 +5595 2 -16.46883255065258 -174.69400920837714 59.2729 0.1144 5594 +5596 2 -16.779548779408785 -173.25784994343675 59.1917 0.1144 5595 +5597 2 -17.13931256736005 -171.7968497356794 59.0817 0.1144 5596 +5598 2 -17.499980649622017 -170.4249387242685 58.9484 0.1144 5597 +5599 2 -17.86107548336578 -169.81859709680373 58.7964 0.1144 5598 +5600 2 -18.22213749007244 -169.2066918561988 58.6295 0.1144 5599 +5601 2 -18.58217718258159 -167.85952263584016 58.4511 0.1144 5600 +5602 2 -18.943633113732986 -166.40378045596444 58.2641 0.1144 5601 +5603 2 -19.15888580299736 -165.00704237148133 58.0552 0.1144 5602 +5604 2 -19.306779980989987 -163.652892182905 57.8231 0.1144 5603 +5605 2 -19.447591438653703 -162.2914626532501 57.5708 0.1144 5604 +5606 2 -19.587198482624572 -160.9356669217349 57.3009 0.1144 5605 +5607 2 -19.72689071944518 -159.58004176378137 57.017 0.1144 5606 +5608 2 -19.86748725057646 -158.22455979446653 56.7216 0.1144 5607 +5609 2 -19.985173202974877 -156.88399136198578 56.4071 0.1144 5608 +5610 2 -20.077774214562695 -155.56812570344678 56.0666 0.1144 5609 +5611 2 -20.165219114329815 -154.25970367649543 55.7082 0.1144 5610 +5612 2 -20.252120817193955 -152.9151095914932 55.3426 0.1144 5611 +5613 2 -20.339959641405812 -151.60638712468045 54.9816 0.1144 5612 +5614 2 -20.428065757962884 -150.29351861869054 54.6412 0.1144 5613 +5615 2 -20.515149560322328 -148.97964338246663 54.336 0.1144 5614 +5616 2 -20.60343777637476 -147.6639034025567 54.0803 0.1144 5615 +5617 2 -20.69194091895966 -146.34264090480417 53.8807 0.1144 5616 +5618 2 -20.933747153489634 -144.98677798094033 53.8261 0.1144 5617 +5619 2 -21.322159166564106 -143.61236548232463 53.9694 0.1144 5618 +5620 2 -21.721614210307877 -142.14256601122153 54.2632 0.1144 5619 +5621 2 -22.118712792478505 -141.43648400294632 54.6392 0.1144 5620 +5622 2 -22.150770720778354 -140.0853101344048 54.924 0.1144 5621 +5623 2 -22.16100446415136 -138.6844436719613 55.1099 0.1144 5622 +5624 2 -22.171951790126997 -137.2865626415709 55.1894 0.1144 5623 +5625 2 -22.182452825845203 -135.88271014287682 55.1748 0.1144 5624 +5626 2 -22.353137952283973 -136.34902497628647 55.1908 0.1144 5625 +5627 2 -23.27051688550044 -137.39432608943164 55.2507 0.1144 5626 +5628 2 -24.15811916269743 -137.59886411205886 55.1393 0.1144 5627 +5629 2 -24.969384443909092 -138.10594113038553 54.9898 0.1144 5628 +5630 2 -25.625223234152458 -139.61312807227517 54.7078 0.1144 5629 +5631 2 -25.60974295442537 -138.2036498868845 54.1293 0.1144 5630 +5632 2 -25.554257271377494 -136.71060542096757 53.6486 0.1144 5631 +5633 2 -25.702277388933112 -135.61253222871653 53.0328 0.1144 5632 +5634 2 -26.138417913294575 -134.86360502544855 52.1735 0.1144 5633 +5635 2 -26.140219375743882 -133.659661260741 51.2999 0.1144 5634 +5636 2 -25.816420869050944 -131.97560430411409 50.531 0.1144 5635 +5637 2 -25.495880709195262 -130.03388522683716 49.94 0.1144 5636 +5638 2 -25.29025439836731 -128.8702514278886 49.5093 0.1144 5637 +5639 2 -25.457746033396248 -127.49269431750105 49.2022 0.1144 5638 +5640 2 -25.62198862633717 -126.11925879933794 48.979 0.1144 5639 +5641 2 -26.055479370749836 -125.61689222090305 48.7738 0.1144 5640 +5642 2 -26.77453654768054 -124.99791270617447 48.5041 0.1144 5641 +5643 2 -27.720370479155605 -123.66254745494048 48.1384 0.1144 5642 +5644 2 -28.76845696131278 -122.61587902426731 47.7179 0.1144 5643 +5645 2 -29.871441572467504 -123.9302409073136 47.1834 0.1144 5644 +5646 2 -30.958244454950076 -123.52943252031919 46.5816 0.1144 5645 +5647 2 -32.04603820966635 -123.01414059327674 45.9161 0.1144 5646 +5648 2 -33.14662120288969 -124.14680278970265 45.162 0.1144 5647 +5649 2 -34.244973674102866 -123.53943430200815 44.4262 0.1144 5648 +5650 2 -35.34390216925611 -122.8694207391904 43.7822 0.1144 5649 +5651 2 -36.460929081315086 -123.86749753575411 43.2631 0.1144 5650 +5652 2 -37.57516486064307 -122.93684799088076 42.8425 0.1144 5651 +5653 2 -38.62540588201374 -121.74524382111323 42.539 0.1144 5652 +5654 2 -39.63349417030466 -122.38040575269245 42.2943 0.1144 5653 +5655 2 -40.689798006853124 -121.23890916697054 42.0188 0.1144 5654 +5656 2 -41.6425356607448 -121.7507449955971 41.729 0.1144 5655 +5657 2 -42.52607620520075 -120.33413391855866 41.5058 0.1144 5656 +5658 2 -43.45492102033856 -119.04934567667854 41.3064 0.1144 5657 +5659 2 -44.57900462669596 -119.63508345020915 41.0155 0.1144 5658 +5660 2 -45.695397354283884 -118.97268992116891 40.6748 0.1144 5659 +5661 2 -46.68160529771558 -117.75513631984892 40.3676 0.1144 5660 +5662 2 -47.52349894495336 -116.89185169703906 40.1467 0.1144 5661 +5663 2 -48.388602597769705 -116.7785137095524 39.9918 0.1144 5662 +5664 2 -49.304117084770226 -115.57050947926139 39.9031 0.1144 5663 +5665 2 -50.24737481004668 -114.39017604225468 39.8723 0.1144 5664 +5666 2 -51.19054734247338 -114.40797656061858 39.877 0.1144 5665 +5667 2 -52.13518847935504 -113.63566135016917 39.8992 0.1144 5666 +5668 2 -53.091900471733155 -112.4748407210449 39.9283 0.1144 5667 +5669 2 -54.07024293044317 -111.51194239744251 39.9647 0.1144 5668 +5670 2 -55.05995358860997 -111.78470941426775 40.0151 0.1144 5669 +5671 2 -56.055272159484446 -110.67067869443858 40.124 0.1144 5670 +5672 2 -57.00266609143051 -109.52433171052189 40.2626 0.1144 5671 +5673 2 -57.9245466145742 -109.63797508743296 40.3371 0.1144 5672 +5674 2 -58.7073836052448 -108.65619894219746 40.4583 0.1144 5673 +5675 2 -59.17009549713768 -107.39507702017517 40.8052 0.1144 5674 +5676 2 -60.182757764839124 -106.38392068787405 41.3157 0.1144 5675 +5677 2 -61.27597944004057 -106.9931645870838 42.098 0.1144 5676 +5678 2 -62.342839181298444 -106.82716035539987 42.9904 0.1144 5677 +5679 2 -63.390658974657796 -106.49651137447448 43.9208 0.1144 5678 +5680 2 -64.26088991916173 -106.94988798257292 45.1688 0.1144 5679 +5681 2 -63.52094276702553 -105.80990948640382 45.8102 0.1144 5680 +5682 2 -62.968803699219436 -105.29394744600575 46.4036 0.1144 5681 +5683 2 -63.39592189057103 -104.17447209876394 47.4334 0.1144 5682 +5684 2 -63.87080244421992 -103.17352990723867 49.1047 0.1144 5683 +5685 2 -64.45478701182923 -102.73741460729848 50.1222 0.1144 5684 +5686 2 -65.32443451015416 -102.38890727412016 51.1557 0.1144 5685 +5687 2 -66.27207111117308 -101.37319365006745 52.0304 0.1144 5686 +5688 2 -67.16521031435268 -100.42682237954209 53.2868 0.1144 5687 +5689 2 -21.643277886587086 -134.90915402503077 55.0382 0.1144 5625 +5690 2 -21.731962436130743 -133.601327822242 54.8509 0.1144 5689 +5691 2 -21.988551574508378 -132.18192275141888 54.6286 0.1144 5690 +5692 2 -22.22135709241391 -130.7694258928887 54.3578 0.1144 5691 +5693 2 -22.466814905689418 -129.84336686718882 54.0932 0.1144 5692 +5694 2 -22.618181664515248 -128.72073667810926 53.8345 0.1144 5693 +5695 2 -22.7188548835924 -127.50251798206043 53.4545 0.1144 5694 +5696 2 -22.8063381210262 -126.27041455946326 52.9494 0.1144 5695 +5697 2 -23.073752261957637 -125.43147018543897 52.437 0.1144 5696 +5698 2 -23.46491707009646 -124.29619509377024 51.9753 0.1144 5697 +5699 2 -23.816305429593 -122.8560511951757 51.6062 0.1144 5698 +5700 2 -23.893258894457972 -122.41435903715791 51.4382 0.1144 5699 +5701 2 -24.092562603848393 -121.03920160507037 51.032 0.1144 5700 +5702 2 -24.24437565293165 -119.68154174527965 50.7466 0.1144 5701 +5703 2 -24.466625869675156 -118.28655007227086 50.5257 0.1144 5702 +5704 2 -24.719924526714976 -116.87526380070706 50.344 0.1144 5703 +5705 2 -24.789943229940476 -115.73544401681097 50.1824 0.1144 5704 +5706 2 -24.613588715895617 -114.75384679016918 50.0192 0.1144 5705 +5707 2 -24.29987560312327 -113.8765768550571 49.7896 0.1144 5706 +5708 2 -24.033077819254544 -112.96073401387717 49.4715 0.1144 5707 +5709 2 -24.001560957757277 -111.88375922730539 49.145 0.1144 5708 +5710 2 -24.186657787240108 -110.68950534762499 48.8653 0.1144 5709 +5711 2 -24.285895228899335 -109.53479134541021 48.6315 0.1144 5710 +5712 2 -24.374811834704644 -108.38358469411241 48.3818 0.1144 5711 +5713 2 -24.628992145696373 -107.16864587762211 48.1104 0.1144 5712 +5714 2 -24.94741948453435 -105.93153225491133 47.868 0.1144 5713 +5715 2 -25.15407630818197 -104.73245151127776 47.6596 0.1144 5714 +5716 2 -25.14483612503514 -103.63591209147087 47.4729 0.1144 5715 +5717 2 -24.997085987817172 -102.61737581727635 47.2889 0.1144 5716 +5718 2 -24.903118973299314 -101.56407003354079 47.075 0.1144 5717 +5719 2 -24.751937694497997 -100.55612280827894 46.8238 0.1144 5718 +5720 2 -24.23797843602148 -99.18499744714808 46.5139 0.1144 5719 +5721 2 -23.547920851303672 -97.9525528570354 46.1524 0.1144 5720 +5722 2 -23.373830710279407 -96.99068444958212 45.7783 0.1144 5721 +5723 2 -23.137508444350004 -96.04083615266055 45.3844 0.1144 5722 +5724 2 -22.775667071464625 -95.19239406471722 44.8577 0.1144 5723 +5725 2 -21.963238123273186 -94.84819876776278 44.3422 0.1144 5724 +5726 2 -20.881805995055032 -93.73732582806552 43.9491 0.1144 5725 +5727 2 -19.79609630738514 -93.96366457997097 43.5554 0.1144 5726 +5728 2 -20.35203190003233 -93.1708478639487 45.2869 0.1144 5727 +5729 2 -21.312559748385524 -92.62124644514925 45.8091 0.1144 5728 +5730 2 -22.36997660261096 -92.54527795429185 46.3086 0.1144 5729 +5731 2 -23.49873240308648 -91.99547671967582 46.7589 0.1144 5730 +5732 2 -24.630050695366236 -91.966038780755 47.108 0.1144 5731 +5733 2 -25.76596078932235 -92.01299894141717 47.3628 0.1144 5732 +5734 2 -26.89978171405042 -91.38191128440893 47.6778 0.1144 5733 +5735 2 -19.463003978476337 -93.92646219925443 43.3734 0.1144 5727 +5736 2 -18.452315654218495 -93.89116098038585 42.9696 0.1144 5735 +5737 2 -17.45128935807128 -92.72789046613732 42.7778 0.1144 5736 +5738 2 -16.840899304853195 -92.12594732300532 42.5505 0.1144 5737 +5739 2 -16.592764958256055 -91.17296232684842 42.2859 0.1144 5738 +5740 2 -16.510290366248086 -90.11258534891319 41.9642 0.1144 5739 +5741 2 -16.41430534720604 -89.06625504018554 41.5391 0.1144 5740 +5742 2 -16.38737408421889 -87.993840296945 41.0446 0.1144 5741 +5743 2 -16.8536314381586 -86.82328129794998 40.572 0.1144 5742 +5744 2 -17.256954703690155 -85.64629945265176 40.1243 0.1144 5743 +5745 2 -17.216659877080787 -84.60587810051342 39.825 0.1144 5744 +5746 2 -17.217539631401536 -83.49825120865472 39.6631 0.1144 5745 +5747 2 -17.336250999580557 -82.34058382727285 39.6186 0.1144 5746 +5748 2 -17.539256244482686 -81.15778771649927 39.6813 0.1144 5747 +5749 2 -17.808148294618434 -79.96058073151453 39.8042 0.1144 5748 +5750 2 -18.078062658951666 -78.76898703808396 39.9487 0.1144 5749 +5751 2 -18.201630019569166 -77.61663771648178 40.1008 0.1144 5750 +5752 2 -18.110592388981473 -76.55347231140352 40.2578 0.1144 5751 +5753 2 -17.862022678689925 -75.57359832104038 40.4628 0.1144 5752 +5754 2 -17.579851938887373 -74.61936202134619 40.8268 0.1144 5753 +5755 2 -16.67024847944981 -74.40515071200802 41.2471 0.1144 5754 +5756 2 -16.017802191349602 -72.76836363806538 41.5764 0.1144 5755 +5757 2 -16.201374948981652 -71.77280699459338 41.8141 0.1144 5756 +5758 2 -16.727341279977082 -71.24231071008136 41.965 0.1144 5757 +5759 2 -16.72487818714731 -70.0058368214274 42.0437 0.1144 5758 +5760 2 -16.792631824815686 -68.83369962890843 42.0664 0.1144 5759 +5761 2 -16.207650857222376 -67.43771895468079 42.0686 0.1144 5760 +5762 2 -15.821314595612563 -66.53655472943534 42.0686 0.1144 5761 +5763 2 -15.513303893146997 -65.57949883771536 42.0686 0.1144 5762 +5764 2 -23.89449253673189 -121.32912433391625 52.7629 0.1144 5699 +5765 2 -23.960360312605147 -120.04447871257548 53.3238 0.1144 5764 +5766 2 -24.025346434526497 -118.7524281308289 53.8642 0.1144 5765 +5767 2 -24.158619576854605 -117.42183033454998 54.3942 0.1144 5766 +5768 2 -24.32713903671069 -116.1687273944808 54.8915 0.1144 5767 +5769 2 -24.500068198747755 -114.99062243542147 55.3969 0.1144 5768 +5770 2 -24.658158989541334 -113.82257975486442 55.9322 0.1144 5769 +5771 2 -24.69363574778842 -112.74874049530648 56.7664 0.1144 5770 +5772 2 -24.701213194294695 -111.71921069103959 57.8248 0.1144 5771 +5773 2 -24.70623976809631 -110.74780032420972 59.124 0.1144 5772 +5774 2 -24.712178431525388 -109.9755629102585 61.1397 0.1144 5773 +5775 2 27.200335660435442 -276.6797197246252 75.7546 0.1144 5320 +5776 2 27.250648101933507 -275.3940614649316 75.8349 0.1144 5775 +5777 2 26.86910388265551 -274.224439459032 75.9122 0.1144 5776 +5778 2 26.964763040373498 -272.9077315658686 75.9923 0.1144 5777 +5779 2 26.668395044307033 -271.740100632637 74.1773 0.1144 5778 +5780 2 26.91627721000455 -270.8248908131233 72.571 0.1144 5779 +5781 2 27.25571135452526 -271.2246983410809 71.5963 0.1144 5780 +5782 2 27.360567321703414 -272.3468675603467 70.399 0.1144 5781 +5783 2 27.9499347652566 -272.04162373349124 69.4837 0.1144 5782 +5784 2 28.59151461155328 -271.31336631296847 68.7652 0.1144 5783 +5785 2 29.13955490503548 -270.8065685331772 67.6172 0.1144 5784 +5786 2 29.265500959136915 -271.8853305391087 67.0163 0.1144 5785 +5787 2 30.1118809068778 -272.83817516122167 66.575 0.1144 5786 +5788 2 31.189771367168802 -271.79155733891855 66.2693 0.1144 5787 +5789 2 32.22683423877996 -271.8057086395876 66.0279 0.1144 5788 +5790 2 33.287484319133185 -271.8150318216935 65.7171 0.1144 5789 +5791 2 34.303510162170426 -270.68867849656635 65.2957 0.1144 5790 +5792 2 35.124499739895086 -270.03551570701757 64.9172 0.1144 5791 +5793 2 35.857688932041896 -269.3561204872198 64.6156 0.1144 5792 +5794 2 36.5788894546552 -267.3727124891463 64.3633 0.1144 5793 +5795 2 37.285075017159215 -266.6529627555418 64.1525 0.1144 5794 +5796 2 37.969598262919575 -266.095105607155 63.9596 0.1144 5795 +5797 2 38.56567531953145 -265.420760952606 63.7199 0.1144 5796 +5798 2 39.04086813192704 -264.36378562838524 63.3738 0.1144 5797 +5799 2 39.381496579909296 -262.6000630698449 62.9364 0.1144 5798 +5800 2 39.57041578742782 -260.9370699561289 62.4571 0.1144 5799 +5801 2 39.7989003111759 -259.63036652602193 61.9522 0.1144 5800 +5802 2 40.24530423820265 -258.6865028298121 61.4286 0.1144 5801 +5803 2 40.97695125214422 -257.94307783833517 60.916 0.1144 5802 +5804 2 41.865632003471205 -256.93056029977095 60.431 0.1144 5803 +5805 2 42.78297018997445 -256.32106868524573 59.9642 0.1144 5804 +5806 2 43.6356044632479 -255.8515341445309 59.5014 0.1144 5805 +5807 2 44.26157929734913 -254.75781449939024 59.0316 0.1144 5806 +5808 2 44.61045654168659 -252.83847305378345 58.5589 0.1144 5807 +5809 2 44.827754272936644 -251.33749943968934 58.0832 0.1144 5808 +5810 2 45.008480151495775 -250.19991956073767 57.6072 0.1144 5809 +5811 2 45.05055541573823 -248.98277134273894 57.1276 0.1144 5810 +5812 2 44.95674447982789 -247.66880553768095 56.658 0.1144 5811 +5813 2 44.88717516844292 -246.36687434642687 56.2248 0.1144 5812 +5814 2 44.86986180632411 -245.09006166152108 55.8446 0.1144 5813 +5815 2 44.86221898983236 -243.8218505658732 55.5089 0.1144 5814 +5816 2 44.85180624854705 -242.54960949338243 55.2065 0.1144 5815 +5817 2 44.803526537398525 -241.24663542145055 54.9139 0.1144 5816 +5818 2 44.7336868320853 -239.9636980105497 54.6322 0.1144 5817 +5819 2 44.69689954344666 -238.6730803367071 54.385 0.1144 5818 +5820 2 44.70943020793126 -237.4151583136615 54.133 0.1144 5819 +5821 2 44.787142612563315 -236.20847092369362 53.8504 0.1144 5820 +5822 2 45.06178124019644 -235.17154721614412 53.5875 0.1144 5821 +5823 2 45.54993818114005 -234.29039277544786 53.3817 0.1144 5822 +5824 2 46.11454954011543 -232.82205229128323 53.2216 0.1144 5823 +5825 2 46.89030051891733 -232.28620741689105 53.072 0.1144 5824 +5826 2 47.84025645093725 -231.30657193993298 52.9189 0.1144 5825 +5827 2 48.77261200659632 -231.10154719957274 52.768 0.1144 5826 +5828 2 49.624256100172644 -230.00287026085886 52.6229 0.1144 5827 +5829 2 50.37909668250015 -229.10817363410231 52.4762 0.1144 5828 +5830 2 51.19165157025455 -227.63041764480255 52.3194 0.1144 5829 +5831 2 52.11207082219279 -227.24469222087316 52.1147 0.1144 5830 +5832 2 53.06621601923166 -227.20175469501194 51.837 0.1144 5831 +5833 2 54.020501876516164 -226.03664944210408 51.494 0.1144 5832 +5834 2 54.87585060718726 -225.06167736382014 51.1134 0.1144 5833 +5835 2 54.88350545636921 -223.90276169853024 50.5232 0.1144 5834 +5836 2 54.567716592132214 -222.50497500080596 49.8809 0.1144 5835 +5837 2 54.812303067635966 -221.53265159552996 49.1845 0.1144 5836 +5838 2 55.70326670678588 -221.4087455971906 48.482 0.1144 5837 +5839 2 56.64696271936131 -220.06383457172 47.7425 0.1144 5838 +5840 2 57.58643112925114 -219.5596380601665 46.9605 0.1144 5839 +5841 2 58.3579322734567 -219.2740906347512 46.0656 0.1144 5840 +5842 2 58.81208054605018 -218.56521572828305 44.9672 0.1144 5841 +5843 2 59.44761339883624 -217.6106658597563 43.6069 0.1144 5842 +5844 2 59.63438907071546 -216.1164554217488 42.3847 0.1144 5843 +5845 2 60.562948984026704 -215.58038160543657 41.27 0.1144 5844 +5846 2 61.55364041617389 -215.08869063058893 40.4065 0.1144 5845 +5847 2 61.58311443709029 -214.68752530902447 40.1142 0.1144 5846 +5848 2 61.69969561038225 -213.4826142048637 39.2703 0.1144 5847 +5849 2 61.88545717182866 -212.41296202314072 38.6324 0.1144 5848 +5850 2 62.12975784018492 -211.3767629738756 38.2133 0.1144 5849 +5851 2 62.38661468449831 -210.34451085647953 37.977 0.1144 5850 +5852 2 62.643832626219435 -208.92087001928076 37.8759 0.1144 5851 +5853 2 62.98120582894741 -207.36031052140376 37.8809 0.1144 5852 +5854 2 63.54818767764202 -206.55452629367232 37.9898 0.1144 5853 +5855 2 64.32963796516765 -205.7814770743854 38.1671 0.1144 5854 +5856 2 65.24234300544106 -205.3258839690449 38.348 0.1144 5855 +5857 2 66.21436138181559 -203.8962498794971 38.5025 0.1144 5856 +5858 2 67.08784748258444 -203.2648069053294 38.633 0.1144 5857 +5859 2 67.78650093291901 -202.0926018063156 38.7024 0.1144 5858 +5860 2 68.49339225304577 -201.10326095311552 38.6672 0.1144 5859 +5861 2 69.40921729426121 -200.72226932376736 38.5428 0.1144 5860 +5862 2 70.39340954124775 -200.32988022462183 38.3645 0.1144 5861 +5863 2 71.25499216533285 -198.80085918936882 38.1321 0.1144 5862 +5864 2 72.01082533640395 -197.85208957975328 37.844 0.1144 5863 +5865 2 72.44227046325388 -197.04248500285155 37.4629 0.1144 5864 +5866 2 72.35216416443835 -195.78963956548705 36.9821 0.1144 5865 +5867 2 72.05432446233381 -194.43264462657396 36.3941 0.1144 5866 +5868 2 71.36638350473143 -193.37439384731147 35.7249 0.1144 5867 +5869 2 70.41797205899587 -193.69699655578256 34.8743 0.1144 5868 +5870 2 70.3707068490431 -192.92976163375175 33.3385 0.1144 5869 +5871 2 70.22670110646555 -191.91188146081555 32.0001 0.1144 5870 +5872 2 70.06080270739263 -190.70830194711772 30.7829 0.1144 5871 +5873 2 69.61432490998459 -189.35543345530226 29.8519 0.1144 5872 +5874 2 69.03767804341324 -188.32343987021653 29.0895 0.1144 5873 +5875 2 68.18813796354262 -187.17232238701973 28.4939 0.1144 5874 +5876 2 67.24203984130547 -186.81622669717126 28.0353 0.1144 5875 +5877 2 66.24249436028202 -185.90350415006483 27.6594 0.1144 5876 +5878 2 65.82523460877113 -184.7400756569217 27.1899 0.1144 5877 +5879 2 66.19585394676866 -183.64404983999202 26.6894 0.1144 5878 +5880 2 66.29686844553183 -182.50184768153426 26.1789 0.1144 5879 +5881 2 66.27996303600378 -181.27874819730937 25.6616 0.1144 5880 +5882 2 66.28474735432317 -180.0737046123486 25.1129 0.1144 5881 +5883 2 66.5545799462841 -179.0861883631788 24.478 0.1144 5882 +5884 2 67.04212631974058 -177.88555960862624 23.7274 0.1144 5883 +5885 2 67.55372740013404 -176.3084109256031 22.8544 0.1144 5884 +5886 2 68.40361057716798 -176.23466448889727 21.6339 0.1144 5885 +5887 2 69.26752172518651 -176.4200976197304 19.9266 0.1144 5886 +5888 2 69.67828971377557 -176.84114165020603 17.3384 0.1144 5887 +5889 2 70.07842461290663 -176.44762356903658 15.0456 0.1144 5888 +5890 2 70.26284761733241 -175.0897256103703 13.6092 0.1144 5889 +5891 2 70.44680340765193 -173.60595985094307 12.3879 0.1144 5890 +5892 2 70.64068472430748 -172.19865686048837 11.469 0.1144 5891 +5893 2 70.83874058529929 -170.99129766601968 10.7827 0.1144 5892 +5894 2 71.04053872851595 -169.87990671628077 10.2734 0.1144 5893 +5895 2 71.44145458654059 -168.99571218615424 9.8433 0.1144 5894 +5896 2 72.13944130945565 -168.49716640752985 9.4154 0.1144 5895 +5897 2 72.84571826797568 -168.01381140567395 8.9937 0.1144 5896 +5898 2 73.65462157698462 -166.08370501863217 8.6493 0.1144 5897 +5899 2 74.5330934038745 -165.66942764084308 8.3636 0.1144 5898 +5900 2 75.43153609684452 -165.45677598883051 7.8529 0.1144 5899 +5901 2 61.814472392477754 -215.0555015471984 39.7712 0.1144 5846 +5902 2 62.89014774397782 -215.01175824973498 39.2862 0.1144 5901 +5903 2 63.9927934896357 -214.8911525962829 39.1555 0.1144 5902 +5904 2 65.07336758088591 -214.39588481099383 39.1558 0.1144 5903 +5905 2 66.14996423206654 -214.01470000303394 39.2633 0.1144 5904 +5906 2 67.2889190543895 -213.55612090848712 39.4355 0.1144 5905 +5907 2 68.39485467783786 -213.54654849142247 39.6071 0.1144 5906 +5908 2 69.53530482318293 -214.18770447811772 39.676 0.1144 5907 +5909 2 70.67593396644024 -214.09495660409104 39.6393 0.1144 5908 +5910 2 71.81664830254735 -213.412287379261 39.5139 0.1144 5909 +5911 2 72.95455988682389 -213.57476389666675 39.3347 0.1144 5910 +5912 2 73.99946670378255 -213.7676060744915 39.13 0.1144 5911 +5913 2 75.03447943636901 -212.667749037347 38.703 0.1144 5912 +5914 2 27.20628327779926 -272.18246914965846 76.1062 0.1144 5778 +5915 2 27.41516483388142 -270.95321313774633 76.3496 0.1144 5914 +5916 2 27.115277401798664 -269.7257836239875 76.6654 0.1144 5915 +5917 2 26.691944932520286 -268.61389114463276 76.9488 0.1144 5916 +5918 2 26.447958825282925 -267.28663652344034 77.1624 0.1144 5917 +5919 2 26.324785389110133 -265.9332433193387 77.3158 0.1144 5918 +5920 2 26.295709210553213 -264.63982783077824 77.4155 0.1144 5919 +5921 2 26.374846466040253 -263.42017173942395 77.4721 0.1144 5920 +5922 2 26.386225082644728 -262.15353926501075 77.5088 0.1144 5921 +5923 2 26.276685604022504 -260.8055836743024 77.5477 0.1144 5922 +5924 2 26.278660967345033 -259.5160321979176 77.597 0.1144 5923 +5925 2 26.429883685396135 -258.3658731718555 77.6924 0.1144 5924 +5926 2 26.339418698219447 -257.0554688563366 77.8277 0.1144 5925 +5927 2 26.027806787365222 -255.61713585246275 77.9604 0.1144 5926 +5928 2 25.822800667668034 -254.2287218468516 78.0822 0.1144 5927 +5929 2 25.623587661757014 -252.8371834838024 78.2116 0.1144 5928 +5930 2 25.577088388241535 -251.5515100364251 78.3703 0.1144 5929 +5931 2 25.65275306289537 -250.32916710647464 78.5352 0.1144 5930 +5932 2 25.809057626480325 -249.1803413256966 78.7514 0.1144 5931 +5933 2 26.13226228696746 -248.18398286659908 78.9228 0.1144 5932 +5934 2 26.251945733631857 -246.98218112925724 79.0426 0.1144 5933 +5935 2 26.389713492044677 -245.61692330373478 79.1291 0.1144 5934 +5936 2 26.64322438762447 -244.19349478439386 79.1874 0.1144 5935 +5937 2 26.68008497106733 -242.88924283707416 79.2492 0.1144 5936 +5938 2 26.556250318104702 -241.6505829338584 79.3299 0.1144 5937 +5939 2 26.350348516309495 -240.4754146514482 79.4094 0.1144 5938 +5940 2 26.231637148130474 -239.26037104182035 79.4637 0.1144 5939 +5941 2 26.279499322992876 -237.92143407097456 79.49 0.1144 5940 +5942 2 26.08143836496204 -236.75337543640202 79.4917 0.1144 5941 +5943 2 25.800340309713846 -235.43225049175578 79.4251 0.1144 5942 +5944 2 25.756916591003716 -234.1389460059306 79.3296 0.1144 5943 +5945 2 25.896249860517187 -232.97337696312283 79.2509 0.1144 5944 +5946 2 25.804797795226477 -231.65115284072215 79.1958 0.1144 5945 +5947 2 25.914677860998125 -230.3859312453932 79.1655 0.1144 5946 +5948 2 25.9612504293178 -229.0262782633048 79.161 0.1144 5947 +5949 2 25.952347731737248 -227.71395051660622 79.1801 0.1144 5948 +5950 2 25.739363209613202 -226.57135229662845 79.2126 0.1144 5949 +5951 2 25.544430172200464 -225.19050702074975 79.2515 0.1144 5950 +5952 2 25.16693455769574 -223.7118414118981 79.3251 0.1144 5951 +5953 2 24.689296000126475 -222.33625297246755 79.4973 0.1144 5952 +5954 2 25.178032066593246 -221.4463135820779 79.5735 0.1144 5953 +5955 2 25.570058527841084 -221.60991707126442 79.2798 0.1144 5954 +5956 2 26.61015690008111 -220.83338053696957 79.0723 0.1144 5955 +5957 2 27.655871104704858 -220.5320628117634 79.1126 0.1144 5956 +5958 2 28.53090317779865 -219.95810195249584 79.0174 0.1144 5957 +5959 2 29.490230228599998 -218.60597384443514 78.7402 0.1144 5958 +5960 2 30.45947678054985 -219.3124663979674 78.4745 0.1144 5959 +5961 2 31.596802420611652 -220.14474845008237 78.2583 0.1144 5960 +5962 2 32.68661548791411 -219.29686344340786 78.129 0.1144 5961 +5963 2 33.78573869597257 -219.02007019005546 78.0534 0.1144 5962 +5964 2 34.85619215721859 -218.88850574496774 77.9635 0.1144 5963 +5965 2 35.92730683525447 -217.70169172065903 77.8422 0.1144 5964 +5966 2 37.02848087487419 -218.11385385306977 77.6891 0.1144 5965 +5967 2 38.1371134529132 -218.12323240490122 77.5054 0.1144 5966 +5968 2 38.65475952621877 -216.4680430295411 77.1509 0.1144 5967 +5969 2 39.35033742174791 -215.38549151376296 76.7673 0.1144 5968 +5970 2 40.03768054906804 -214.47578159907982 76.2986 0.1144 5969 +5971 2 40.78300596669682 -213.66303360999703 75.8167 0.1144 5970 +5972 2 41.78552999491265 -213.24416005577774 75.3141 0.1144 5971 +5973 2 42.84484972200997 -213.00760394919445 74.8171 0.1144 5972 +5974 2 43.905949886740345 -211.6311853220671 74.3425 0.1144 5973 +5975 2 44.820371693486194 -211.4081992161874 73.9301 0.1144 5974 +5976 2 45.44804107983407 -210.1946910628097 73.6268 0.1144 5975 +5977 2 46.07374792905358 -209.3841086437896 73.3978 0.1144 5976 +5978 2 46.74686945578347 -208.34463666033884 73.2035 0.1144 5977 +5979 2 47.43856371630561 -207.18460676314044 73.0206 0.1144 5978 +5980 2 48.1067409561642 -206.54534864507087 72.8451 0.1144 5979 +5981 2 48.76328201168424 -205.2934400553404 72.6802 0.1144 5980 +5982 2 49.418748387194 -204.70811609701434 72.5396 0.1144 5981 +5983 2 50.070653887437615 -203.05361936164232 72.443 0.1144 5982 +5984 2 50.366935008950165 -201.61464722396465 72.49 0.1144 5983 +5985 2 50.101518641230655 -200.51340800923901 72.8095 0.1144 5984 +5986 2 50.50662036091748 -199.48187133913132 73.414 0.1144 5985 +5987 2 51.473747508770046 -199.42326748704033 73.8867 0.1144 5986 +5988 2 52.416799718373426 -199.3631896380754 74.251 0.1144 5987 +5989 2 53.39498082345824 -197.90109981048874 74.5186 0.1144 5988 +5990 2 54.4828672822525 -197.87786551349976 74.695 0.1144 5989 +5991 2 55.60839896568589 -197.95155827079947 74.8168 0.1144 5990 +5992 2 56.750354052554044 -197.3643749571875 74.9232 0.1144 5991 +5993 2 57.8835205614988 -198.28052718916575 75.0677 0.1144 5992 +5994 2 58.99555733779171 -198.69464544526647 75.2718 0.1144 5993 +5995 2 59.93013090301852 -198.76468001605878 75.5336 0.1144 5994 +5996 2 60.54584674409951 -200.14391900378808 75.8212 0.1144 5995 +5997 2 60.702121861176494 -201.36735763005368 76.0995 0.1144 5996 +5998 2 61.08438517368674 -202.4615666846734 76.4431 0.1144 5997 +5999 2 61.57836594303804 -203.6954260618005 76.8558 0.1144 5998 +6000 2 62.38823258938196 -204.93679482884068 77.3651 0.1144 5999 +6001 2 63.318834917705345 -205.27737797619778 77.7857 0.1144 6000 +6002 2 64.25736879327255 -206.2787605652856 78.1511 0.1144 6001 +6003 2 65.2073529595633 -207.14504393758892 78.4812 0.1144 6002 +6004 2 66.12805670488014 -206.90783663607635 78.7875 0.1144 6003 +6005 2 65.61790850197073 -208.36096357923304 79.5819 0.1144 6004 +6006 2 65.28742001512666 -207.87849402650093 80.4258 0.1144 6005 +6007 2 65.3685290177952 -206.76716060805114 81.2137 0.1144 6006 +6008 2 65.51432892952087 -205.64266507508964 82.0333 0.1144 6007 +6009 2 65.66085413764495 -204.31723853260326 82.8752 0.1144 6008 +6010 2 66.6427275505034 -202.98234804375477 83.7878 0.1144 6009 +6011 2 67.71615014808249 -203.00724985196223 84.6714 0.1144 6010 +6012 2 68.80288494975943 -203.07026314030304 85.5081 0.1144 6011 +6013 2 69.81148389200496 -203.62156492852296 86.2982 0.1144 6012 +6014 2 70.763359714809 -204.4970116782965 87.0615 0.1144 6013 +6015 2 71.7161726589608 -204.40347655089136 87.8237 0.1144 6014 +6016 2 72.50923198668917 -205.75883158385923 88.1748 0.1144 6015 +6017 2 73.20503771879167 -207.18311984626501 88.4584 0.1144 6016 +6018 2 73.95286975294513 -208.48649566842283 88.7687 0.1144 6017 +6019 2 74.80326786978375 -208.7989034429736 89.0736 0.1144 6018 +6020 2 75.52005687957421 -209.57103234781312 89.4824 0.1144 6019 +6021 2 76.17586030993895 -210.9973840853901 89.9909 0.1144 6020 +6022 2 76.88569323150006 -212.33265221180153 90.487 0.1144 6021 +6023 2 77.62519359079889 -212.3441675316149 90.9437 0.1144 6022 +6024 2 78.2658530199083 -213.41045898969114 91.4656 0.1144 6023 +6025 2 78.85651235525566 -214.75090577621074 92.5509 0.1144 6024 +6026 2 72.3995640704682 -203.83677125988854 88.9787 0.1144 6015 +6027 2 73.17550946040164 -203.50630351793902 89.7854 0.1144 6026 +6028 2 73.37789563742093 -202.82060887661612 91.1666 0.1144 6027 +6029 2 72.84670250394645 -203.0770463027755 92.7814 0.1144 6028 +6030 2 72.68453465618191 -203.91694165843674 94.5311 0.1144 6029 +6031 2 72.49984946159255 -204.722624995939 96.3099 0.1144 6030 +6032 2 72.7575306995052 -205.34812070735634 98.7311 0.1144 6031 +6033 2 72.45499768433432 -204.86717563854432 101.1338 0.1144 6032 +6034 2 72.12733827712499 -203.91112024683673 103.024 0.1144 6033 +6035 2 72.19424489852031 -203.2975955029239 105.2299 0.1144 6034 +6036 2 71.81838707278254 -202.5933078441962 107.3957 0.1144 6035 +6037 2 71.28980348710168 -201.98593453331603 109.275 0.1144 6036 +6038 2 70.6971197369865 -201.925613824398 111.043 0.1144 6037 +6039 2 69.75598032052969 -201.34219698779464 112.4416 0.1144 6038 +6040 2 68.69729438714049 -201.19337553979452 113.4958 0.1144 6039 +6041 2 67.61121159220036 -201.17781480144072 114.3708 0.1144 6040 +6042 2 66.57369172853114 -200.91166889918654 115.5484 0.1144 6041 +6043 2 38.66526396529369 -217.44205106369083 77.9027 0.1144 5967 +6044 2 39.74683434471093 -217.2461422109538 78.3348 0.1144 6043 +6045 2 40.86519432084597 -216.92775668883758 78.4767 0.1144 6044 +6046 2 42.00510437087105 -216.8967662395372 78.5333 0.1144 6045 +6047 2 43.1473267500844 -217.23639535668747 78.6198 0.1144 6046 +6048 2 44.21670593406114 -216.58893937624703 79.0023 0.1144 6047 +6049 2 45.19276791399473 -217.71365929151952 79.5992 0.1144 6048 +6050 2 46.24166557793676 -218.11745836956115 80.2553 0.1144 6049 +6051 2 47.34252578377992 -217.67671349229772 80.8559 0.1144 6050 +6052 2 48.40461061757773 -217.89080833126053 81.4568 0.1144 6051 +6053 2 49.47706836895364 -217.5343862401814 82.159 0.1144 6052 +6054 2 50.581335075422956 -216.92145076721587 82.8537 0.1144 6053 +6055 2 51.69203359646882 -217.1728006048021 83.4655 0.1144 6054 +6056 2 52.747640571695925 -218.22201819459474 84.0358 0.1144 6055 +6057 2 53.56770693242386 -218.89214561432073 84.5368 0.1144 6056 +6058 2 54.52819334152733 -219.03101284300908 84.8901 0.1144 6057 +6059 2 55.60996132264853 -220.14929967668152 85.1094 0.1144 6058 +6060 2 56.69739268387319 -219.84432851872566 85.2505 0.1144 6059 +6061 2 57.793237118682725 -220.49830620853137 85.2894 0.1144 6060 +6062 2 58.890060114089806 -221.58480495077552 85.2782 0.1144 6061 +6063 2 59.95758046859025 -221.2261892807868 85.4938 0.1144 6062 +6064 2 60.99032723029862 -222.03764373927038 86.0471 0.1144 6063 +6065 2 62.03244780392359 -222.28446175922159 86.7846 0.1144 6064 +6066 2 63.11297264292227 -222.46481418629295 87.5711 0.1144 6065 +6067 2 64.16385327040425 -222.42445601663917 88.342 0.1144 6066 +6068 2 65.18480598649501 -221.77341051453232 89.0487 0.1144 6067 +6069 2 66.2483272902474 -221.5830301949263 89.6717 0.1144 6068 +6070 2 67.35761226578613 -221.0169307656801 90.2056 0.1144 6069 +6071 2 68.47252708416977 -221.01014337077044 90.6209 0.1144 6070 +6072 2 69.60451520545212 -221.81777079854942 90.8975 0.1144 6071 +6073 2 70.73077829375391 -221.5406412787546 91.0832 0.1144 6072 +6074 2 71.84604799440093 -220.8543321600369 91.2318 0.1144 6073 +6075 2 72.9610058618699 -220.62862217680492 91.3405 0.1144 6074 +6076 2 74.02045152853019 -220.8847032565835 91.5183 0.1144 6075 +6077 2 75.00919172889681 -219.8814442109349 91.859 0.1144 6076 +6078 2 76.07432068751423 -219.91810139329348 92.3586 0.1144 6077 +6079 2 77.1133451909329 -220.94203996783313 92.9214 0.1144 6078 +6080 2 78.00105717814199 -220.58922455392837 93.4458 0.1144 6079 +6081 2 78.85323814166011 -221.92141236121 93.9109 0.1144 6080 +6082 2 79.66711505511066 -223.3516536602947 94.2948 0.1144 6081 +6083 2 80.24872092923594 -224.79995461731275 94.5605 0.1144 6082 +6084 2 80.60309414005846 -225.83823500230875 94.7279 0.1144 6083 +6085 2 80.75219273174405 -226.85187433706437 94.8259 0.1144 6084 +6086 2 80.9808558398138 -227.70427360155526 94.9298 0.1144 6085 +6087 2 81.08932063842575 -228.801843002157 95.0121 0.1144 6086 +6088 2 81.1090459295135 -230.07325793096103 95.0494 0.1144 6087 +6089 2 81.11544599464567 -231.36136712136692 95.0432 0.1144 6088 +6090 2 81.12118484298793 -232.64416144685026 94.9911 0.1144 6089 +6091 2 81.12700888418001 -233.94208891991616 94.89 0.1144 6090 +6092 2 80.74837280608892 -235.89022981686279 94.6943 0.1144 6091 +6093 2 80.20920197470225 -236.90344863262794 94.4124 0.1144 6092 +6094 2 79.72399395646445 -237.70169505628536 94.0607 0.1144 6093 +6095 2 79.51671143105655 -238.77597134243308 93.6258 0.1144 6094 +6096 2 79.33848818494577 -239.88269729684976 93.1496 0.1144 6095 +6097 2 79.33784076583258 -241.1171388810125 92.7044 0.1144 6096 +6098 2 79.86523194768301 -242.55209848302331 92.3902 0.1144 6097 +6099 2 80.48688156279584 -244.01521994793217 92.1824 0.1144 6098 +6100 2 81.10487959916316 -244.7259204667797 92.0618 0.1144 6099 +6101 2 81.72345365947055 -245.09101909769453 92.006 0.1144 6100 +6102 2 82.34100540558043 -246.55368933739373 91.9901 0.1144 6101 +6103 2 82.96184763302809 -247.93651473287628 91.9901 0.1144 6102 +6104 2 83.58331825022856 -248.5615203298301 91.9901 0.1144 6103 +6105 2 25.010804711315686 -220.75951165633887 79.6278 0.1144 5954 +6106 2 24.55873572248123 -219.42760312485058 79.655 0.1144 6105 +6107 2 23.994323988635898 -218.53635881469268 79.6648 0.1144 6106 +6108 2 23.505469605651285 -217.1962500472323 79.6606 0.1144 6107 +6109 2 23.521971507039282 -215.9328382496965 79.6519 0.1144 6108 +6110 2 23.624895484581586 -214.7340335137394 79.6527 0.1144 6109 +6111 2 23.64170611756451 -213.47157787600543 79.6538 0.1144 6110 +6112 2 23.589237141397064 -212.1606139590872 79.6555 0.1144 6111 +6113 2 23.464289470757492 -210.8225094560703 79.6578 0.1144 6112 +6114 2 23.127554281425958 -209.38802193093255 79.6611 0.1144 6113 +6115 2 23.044389350157118 -208.06754572349854 79.6656 0.1144 6114 +6116 2 23.103926047024743 -206.8293954457327 79.6718 0.1144 6115 +6117 2 22.992782719635287 -205.50057815604646 79.6802 0.1144 6116 +6118 2 22.639473262260083 -204.20932655478612 79.693 0.1144 6117 +6119 2 22.288751630183043 -203.30230412840402 79.7107 0.1144 6118 +6120 2 21.89023060620393 -202.50415978683063 79.7345 0.1144 6119 +6121 2 21.49259433775987 -201.38254682367022 79.763 0.1144 6120 +6122 2 21.118389204592958 -200.12508579814062 79.8098 0.1144 6121 +6123 2 20.846388772614787 -198.71331857545763 79.8986 0.1144 6122 +6124 2 20.701967175455295 -197.35398762322126 79.9901 0.1144 6123 +6125 2 20.332270965465227 -195.91854714278074 80.0607 0.1144 6124 +6126 2 19.75271523036463 -194.42980974213833 80.094 0.1144 6125 +6127 2 19.35829897109123 -193.00668463074376 80.0733 0.1144 6126 +6128 2 19.407941583586677 -191.77452629392303 80.0685 0.1144 6127 +6129 2 19.422361211449527 -190.55790690041408 80.1102 0.1144 6128 +6130 2 18.98040123351967 -189.26570055656595 80.248 0.1144 6129 +6131 2 18.576936615205824 -188.62356320576157 80.4488 0.1144 6130 +6132 2 18.40205042667003 -187.50981576208625 80.6263 0.1144 6131 +6133 2 18.15387815599682 -186.23749658509655 80.801 0.1144 6132 +6134 2 17.732055730423227 -185.06521278778993 80.9416 0.1144 6133 +6135 2 17.34421974128888 -183.82580384802202 81.0172 0.1144 6134 +6136 2 16.98864211677342 -182.38376676549467 81.0827 0.1144 6135 +6137 2 16.5732411947388 -181.59771919162603 81.1306 0.1144 6136 +6138 2 16.38159933120042 -180.53517598714453 81.1437 0.1144 6137 +6139 2 16.453609325525804 -179.11022200011786 81.1042 0.1144 6138 +6140 2 16.470240960596385 -177.74593155637288 81.0407 0.1144 6139 +6141 2 16.36106257938188 -176.54247944792402 80.9998 0.1144 6140 +6142 2 16.240785700102165 -175.34582089206285 80.9998 0.1144 6141 +6143 2 16.28669154100237 -173.94736025708707 81.0306 0.1144 6142 +6144 2 16.62201150312258 -172.23444515738763 81.0522 0.1144 6143 +6145 2 17.07104400216066 -171.29952875517654 81.0642 0.1144 6144 +6146 2 17.260636140264893 -170.055111046393 81.0743 0.1144 6145 +6147 2 17.05210817550487 -168.78218489816942 81.0972 0.1144 6146 +6148 2 16.890850433889966 -167.50716484395062 81.2151 0.1144 6147 +6149 2 16.72901976991801 -166.2072658580234 81.6175 0.1144 6148 +6150 2 16.605056075809316 -164.90892211412424 82.15 0.1144 6149 +6151 2 16.93507685681675 -163.77716802582088 82.5801 0.1144 6150 +6152 2 16.884532080111043 -162.5030254602621 82.9296 0.1144 6151 +6153 2 16.916087279275004 -161.2263067407825 83.1883 0.1144 6152 +6154 2 16.622436149652728 -159.94432221080456 83.4988 0.1144 6153 +6155 2 16.43088188801076 -158.64586030936485 83.7264 0.1144 6154 +6156 2 16.358633355311596 -157.3461641614606 83.8838 0.1144 6155 +6157 2 16.24744317273901 -156.02030537493505 83.9944 0.1144 6156 +6158 2 16.424529180641613 -155.55726568414696 84.028 0.1144 6157 +6159 2 16.87262455833192 -154.49747657809962 84.0784 0.1144 6158 +6160 2 16.882996966494687 -153.32193678108064 84.0868 0.1144 6159 +6161 2 16.692735412978436 -151.98174174035861 84.0703 0.1144 6160 +6162 2 16.74015129758341 -150.72586510656382 84.0434 0.1144 6161 +6163 2 16.80954063957347 -149.49415709065948 84.0092 0.1144 6162 +6164 2 16.780229995708467 -148.22838819938318 83.967 0.1144 6163 +6165 2 17.02245079958601 -147.1510841919352 83.8695 0.1144 6164 +6166 2 17.32506541429325 -145.32633104408023 83.75 0.1144 6165 +6167 2 17.530999764179512 -143.62402623206444 83.6506 0.1144 6166 +6168 2 17.66110877832338 -142.32943508103682 83.566 0.1144 6167 +6169 2 17.510012413425812 -140.99530990358474 83.4935 0.1144 6168 +6170 2 17.27782435871012 -139.97438576868788 83.4299 0.1144 6169 +6171 2 17.065338492656224 -138.98411279719963 83.3652 0.1144 6170 +6172 2 16.724364774076122 -138.27115937390124 83.263 0.1144 6171 +6173 2 16.370437853511078 -137.06440642084252 83.1312 0.1144 6172 +6174 2 16.51115591970293 -135.97169875584248 82.9968 0.1144 6173 +6175 2 16.90658980458278 -134.04866374608218 82.8442 0.1144 6174 +6176 2 17.130881961728875 -132.27755296076407 82.7187 0.1144 6175 +6177 2 17.20756895058028 -131.0726361388929 82.6423 0.1144 6176 +6178 2 17.368283216346157 -129.94098212634267 82.6098 0.1144 6177 +6179 2 17.5768053915306 -128.846380646845 82.6134 0.1144 6178 +6180 2 17.415677383598307 -127.51147796433352 82.6568 0.1144 6179 +6181 2 17.186523444438222 -126.12702799733876 82.7543 0.1144 6180 +6182 2 16.916033056164878 -124.72231371595555 82.8775 0.1144 6181 +6183 2 16.51372289477777 -123.8829455792569 82.9976 0.1144 6182 +6184 2 15.951898986230617 -123.60947527350056 83.0606 0.1144 6183 +6185 2 15.368063282631738 -122.15498423536192 83.1393 0.1144 6184 +6186 2 14.898987763642253 -120.72689854927269 83.3549 0.1144 6185 +6187 2 14.536233613735362 -119.41193622721781 83.6189 0.1144 6186 +6188 2 14.262221380399211 -118.59327745661197 83.9289 0.1144 6187 +6189 2 13.804277186511825 -118.22290385578238 84.2346 0.1144 6188 +6190 2 13.475382840944718 -116.90592194712931 84.5883 0.1144 6189 +6191 2 13.191528889049039 -115.66945805037568 84.9184 0.1144 6190 +6192 2 12.65549257735222 -114.39383127858171 85.2726 0.1144 6191 +6193 2 12.061691624677394 -113.11938841630207 85.5994 0.1144 6192 +6194 2 11.65283642923481 -111.87424228924652 86.0188 0.1144 6193 +6195 2 11.981320536959743 -111.6594956819599 86.5774 0.1144 6194 +6196 2 12.901302708693578 -111.5818970550119 87.061 0.1144 6195 +6197 2 13.782756285326371 -110.49980191264827 87.2245 0.1144 6196 +6198 2 14.548657028052332 -109.46096702352432 87.3303 0.1144 6197 +6199 2 15.241373602772029 -108.97403651622317 87.4056 0.1144 6198 +6200 2 15.861601580429891 -106.93726794645139 87.4516 0.1144 6199 +6201 2 16.549426234091015 -106.4058134929529 87.4712 0.1144 6200 +6202 2 17.26897295117081 -105.94474313648601 87.4667 0.1144 6201 +6203 2 17.916510188483272 -105.39051823650365 87.4527 0.1144 6202 +6204 2 18.4057832486869 -104.22009824650367 87.4297 0.1144 6203 +6205 2 18.641206730935124 -102.6551788110851 87.3933 0.1144 6204 +6206 2 18.636011079495887 -101.43602643815908 87.3729 0.1144 6205 +6207 2 18.948787070920503 -100.3284562046336 87.3424 0.1144 6206 +6208 2 19.88155127170691 -100.21106647821341 87.2029 0.1144 6207 +6209 2 20.858836694693764 -100.15466290490129 86.9814 0.1144 6208 +6210 2 21.835546093740504 -98.71807526321209 86.7177 0.1144 6209 +6211 2 21.679511236689905 -97.55043689825656 86.5889 0.1144 6210 +6212 2 21.788060256669013 -96.46097523861991 86.6023 0.1144 6211 +6213 2 21.95296068587072 -95.4642842641922 86.688 0.1144 6212 +6214 2 21.97837028605352 -94.39063092988421 86.8512 0.1144 6213 +6215 2 21.86201537944754 -93.25304478659761 87.0778 0.1144 6214 +6216 2 21.719511778583666 -92.10843984880674 87.3905 0.1144 6215 +6217 2 21.778652141960094 -91.06426778275338 87.7568 0.1144 6216 +6218 2 22.080244442469763 -90.16098662878818 88.0379 0.1144 6217 +6219 2 22.49069018587582 -89.33740077036377 88.202 0.1144 6218 +6220 2 22.87177342901944 -88.48408112160868 88.275 0.1144 6219 +6221 2 23.127117128045 -87.53356479552035 88.3002 0.1144 6220 +6222 2 23.299015084725795 -86.52357924016579 88.3075 0.1144 6221 +6223 2 23.453847942272574 -85.4273029387176 88.3168 0.1144 6222 +6224 2 23.60805241006659 -83.87731700025601 88.3392 0.1144 6223 +6225 2 23.774827081963792 -82.47220379266174 88.3663 0.1144 6224 +6226 2 23.980185407909943 -81.3654080461477 88.3758 0.1144 6225 +6227 2 24.218951737308743 -80.39984581475031 88.3512 0.1144 6226 +6228 2 24.46610210737495 -79.44254604363994 88.2938 0.1144 6227 +6229 2 24.71435998448851 -78.47786307386866 88.2109 0.1144 6228 +6230 2 24.961647913217234 -77.50997137652625 88.1096 0.1144 6229 +6231 2 25.193692619694758 -76.53244412498098 87.9928 0.1144 6230 +6232 2 25.402790818819284 -75.5355998909696 87.8615 0.1144 6231 +6233 2 25.60137515603148 -74.53152707727199 87.7223 0.1144 6232 +6234 2 25.800044686093457 -73.36715839045262 87.584 0.1144 6233 +6235 2 25.997115878017752 -71.96517502352208 87.4549 0.1144 6234 +6236 2 26.22608192810685 -70.549927815946 87.3502 0.1144 6235 +6237 2 26.517388628846135 -69.60395200365855 87.2883 0.1144 6236 +6238 2 26.927834372252192 -68.74245704121404 87.2836 0.1144 6237 +6239 2 27.534737123954386 -68.04674610061873 87.3488 0.1144 6238 +6240 2 28.13165439526847 -67.33724283166256 87.4824 0.1144 6239 +6241 2 28.524012725343 -66.26256956806144 87.6616 0.1144 6240 +6242 2 29.095313572739173 -64.82434655851698 87.85 0.1144 6241 +6243 2 29.886886899315442 -64.32917271836139 88.0124 0.1144 6242 +6244 2 30.717887888762533 -63.87847287427741 88.1426 0.1144 6243 +6245 2 31.401347381075567 -63.184506435713494 88.226 0.1144 6244 +6246 2 31.51297334093323 -61.923174306475865 88.2193 0.1144 6245 +6247 2 31.409631827104903 -60.80555724480746 88.1269 0.1144 6246 +6248 2 32.26699034085047 -60.15893669219804 88.0855 0.1144 6247 +6249 2 33.403776595813895 -60.43035848931058 88.1289 0.1144 6248 +6250 2 34.5436859533024 -60.52338682393459 88.198 0.1144 6249 +6251 2 35.6872770234383 -60.290581906109 88.1521 0.1144 6250 +6252 2 36.829085246894664 -60.08999179139914 87.9939 0.1144 6251 +6253 2 37.96791172060813 -60.26539894987317 87.7489 0.1144 6252 +6254 2 39.104649025093636 -60.66664157632961 87.4395 0.1144 6253 +6255 2 40.24416204909093 -60.154298385334094 87.2536 0.1144 6254 +6256 2 40.61335632344915 -60.134345197874424 87.1847 0.1144 6255 +6257 2 41.669009058581736 -60.08902511078216 87.0856 0.1144 6256 +6258 2 42.727144887387 -59.99718642569704 87.0537 0.1144 6257 +6259 2 43.7837347438674 -59.15537595202292 87.0492 0.1144 6258 +6260 2 44.840324600347714 -59.09422389939595 87.0537 0.1144 6259 +6261 2 45.89846042915303 -58.963174297443906 87.0514 0.1144 6260 +6262 2 46.95505028563338 -58.16612193580507 87.0461 0.1144 6261 +6263 2 48.01172533496356 -58.10927151402954 87.0411 0.1144 6262 +6264 2 49.06977597091901 -57.92407156089091 87.0363 0.1144 6263 +6265 2 50.12645102024922 -57.185086674071876 87.0316 0.1144 6264 +6266 2 51.18397799807727 -57.12122228660387 87.0274 0.1144 6265 +6267 2 52.241176705534826 -56.90171283398036 87.0237 0.1144 6266 +6268 2 53.29776656201517 -56.20328316413988 87.0209 0.1144 6267 +6269 2 54.35537873269311 -56.13398865864816 87.0195 0.1144 6268 +6270 2 55.41191622336075 -55.870052189642706 87.0195 0.1144 6269 +6271 2 56.470104417978746 -55.22057225608956 87.022 0.1144 6270 +6272 2 57.52669427445909 -55.15171875429831 87.0276 0.1144 6271 +6273 2 58.583231765126726 -54.83960931200949 87.0377 0.1144 6272 +6274 2 59.64141995974475 -54.2746344030756 87.054 0.1144 6273 +6275 2 60.698009816225095 -53.60308601503055 87.0794 0.1144 6274 +6276 2 61.754547306892704 -53.37729542323706 87.1175 0.1144 6275 +6277 2 62.81273550151073 -53.29318729365921 87.1721 0.1144 6276 +6278 2 63.8693253579911 -52.588024324915 87.246 0.1144 6277 +6279 2 64.90566844383349 -52.35320449613397 87.3617 0.1144 6278 +6280 2 65.91312203823793 -52.1587469279005 87.5384 0.1144 6279 +6281 2 66.91255820001228 -51.400493135847206 87.7685 0.1144 6280 +6282 2 67.91008729205402 -51.02443606984235 88.037 0.1144 6281 +6283 2 68.90662689693525 -50.80581215426171 88.3294 0.1144 6282 +6284 2 69.90316650181651 -50.16677487058054 88.6315 0.1144 6283 +6285 2 70.90028213063786 -49.67780948458214 88.9291 0.1144 6284 +6286 2 71.89775885686686 -49.454468657768444 89.2114 0.1144 6285 +6287 2 72.89688628704624 -48.92985420448613 89.4723 0.1144 6286 +6288 2 73.89538532747281 -48.336937284274555 89.7086 0.1144 6287 +6289 2 74.99247621877231 -48.41187528322438 89.8988 0.1144 6288 +6290 2 76.1161511800023 -48.55489655878798 89.9996 0.1144 6289 +6291 2 77.2384721709924 -48.7592602550227 90.0304 0.1144 6290 +6292 2 78.36230630727039 -49.30079218527396 90.0127 0.1144 6291 +6293 2 79.4845749324478 -49.42819065507664 89.964 0.1144 6292 +6294 2 80.607471947378 -49.71249104551236 89.9018 0.1144 6293 +6295 2 81.73010166996303 -50.2603085554523 89.8425 0.1144 6294 +6296 2 82.853935806241 -50.292558052569554 89.7985 0.1144 6295 +6297 2 83.97620443141838 -50.66650757992208 89.7778 0.1144 6296 +6298 2 85.10012376054615 -50.526103656797886 89.7879 0.1144 6297 +6299 2 86.22173116893364 -51.06770854645054 89.8349 0.1144 6298 +6300 2 87.35706964859469 -51.368250003089635 89.9606 0.1144 6299 +6301 2 88.03723625052342 -50.21868327647734 90.2124 0.1144 6300 +6302 2 88.68802873309008 -49.36563980506947 90.5702 0.1144 6301 +6303 2 89.3372666311192 -48.686158911976655 91.005 0.1144 6302 +6304 2 89.98244809939513 -48.00201993142736 91.4914 0.1144 6303 +6305 2 90.62888634717672 -47.1508109169406 92.006 0.1144 6304 +6306 2 91.29536903478868 -46.01890744329715 92.5352 0.1144 6305 +6307 2 92.41783478191775 -46.30341283986428 93.042 0.1144 6306 +6308 2 93.54367930481752 -46.59279922033161 93.5379 0.1144 6307 +6309 2 94.66949100068021 -46.254393056219364 94.0251 0.1144 6308 +6310 2 95.79635783777749 -46.54125561881228 94.5064 0.1144 6309 +6311 2 96.92319184783776 -46.745783912679066 94.9841 0.1144 6310 +6312 2 98.04966476049037 -46.4871932429201 95.4593 0.1144 6311 +6313 2 99.17649877055058 -46.785358967987676 95.9344 0.1144 6312 +6314 2 100.30328041479817 -46.84047168217771 96.4093 0.1144 6313 +6315 2 101.43069044879843 -46.738399607704736 96.8839 0.1144 6314 +6316 2 102.55752445885875 -47.018340054438646 97.358 0.1144 6315 +6317 2 103.68501968570891 -46.95246366291219 97.8306 0.1144 6316 +6318 2 104.81185369576917 -46.96538522419687 98.3027 0.1144 6317 +6319 2 105.9392637297695 -47.271863165911014 98.7728 0.1144 6318 +6320 2 107.0666737637699 -47.03914006326518 99.2412 0.1144 6319 +6321 2 108.1934554080174 -47.215264492602174 99.706 0.1144 6320 +6322 2 109.32188775621532 -46.85420073771712 100.1666 0.1144 6321 +6323 2 110.45032010441324 -47.16004518688299 100.6205 0.1144 6322 +6324 2 111.57866725976132 -47.433121352982695 101.0668 0.1144 6323 +6325 2 112.70924114299996 -47.10054833109474 101.5014 0.1144 6324 +6326 2 113.83300370612625 -47.52642082410107 101.9124 0.1144 6325 +6327 2 114.95810041662816 -47.99324027064711 102.3036 0.1144 6326 +6328 2 116.08368795822028 -47.79244561346887 102.669 0.1144 6327 +6329 2 117.17507583566581 -48.41408153484921 102.9924 0.1144 6328 +6330 2 118.12768685745792 -49.29824155116378 103.2494 0.1144 6329 +6331 2 119.08225731479533 -49.4790099401709 103.4536 0.1144 6330 +6332 2 120.03312072599144 -50.369700186666385 103.7694 0.1144 6331 +6333 2 41.11470172518975 -60.33462390489303 88.2 0.1144 6255 +6334 2 42.04471762954623 -60.52707184278648 89.7842 0.1144 6333 +6335 2 43.09245703046375 -60.412596255574044 90.8404 0.1144 6334 +6336 2 44.15393030246429 -60.32762095490058 91.8826 0.1144 6335 +6337 2 45.22556254213566 -60.6726731787019 92.8586 0.1144 6336 +6338 2 46.32157465753153 -60.651651892197116 93.6586 0.1144 6337 +6339 2 47.43251033702066 -60.606912731438975 94.3286 0.1144 6338 +6340 2 48.302682819219996 -61.15675194243352 92.9306 0.1144 6339 +6341 2 48.838662657232675 -62.14962165925371 91.8627 0.1144 6340 +6342 2 49.175382433344936 -63.25473643396292 90.9572 0.1144 6341 +6343 2 49.49820095956153 -64.29724473122121 90.015 0.1144 6342 +6344 2 50.01617037332775 -64.81273194136743 89.0814 0.1144 6343 +6345 2 50.917900339942406 -65.47254050628769 88.2437 0.1144 6344 +6346 2 51.87382476751972 -66.35034593751936 87.5146 0.1144 6345 +6347 2 52.83772759752398 -67.2417096298713 86.8538 0.1144 6346 +6348 2 52.95397948901439 -68.33166371557706 86.2428 0.1144 6347 +6349 2 52.80168449999948 -69.3437598626632 85.7371 0.1144 6348 +6350 2 52.641815959565406 -70.34194650819066 85.2715 0.1144 6349 +6351 2 52.48207715281396 -71.3501534123364 84.8375 0.1144 6350 +6352 2 52.32202961446754 -72.35748638217356 84.4348 0.1144 6351 +6353 2 52.548771624658656 -73.50708664622185 84.0543 0.1144 6352 +6354 2 53.183420604402954 -74.66584971402114 83.6965 0.1144 6353 +6355 2 53.8028287709426 -75.34481737907227 83.0155 0.1144 6354 +6356 2 46.47555276965019 -61.015948909970064 94.8676 0.1144 6339 +6357 2 45.463983483977046 -61.68993376713346 95.3299 0.1144 6356 +6358 2 44.44020509160828 -61.80646292804226 95.6245 0.1144 6357 +6359 2 43.40653812549701 -62.13372747387862 95.7466 0.1144 6358 +6360 2 42.371305648285045 -62.86456399567406 95.7457 0.1144 6359 +6361 2 41.33661636797618 -62.959247240737305 95.6572 0.1144 6360 +6362 2 40.30391935024966 -63.25650561767556 95.5142 0.1144 6361 +6363 2 39.270561115733244 -64.0256083666884 95.3534 0.1144 6362 +6364 2 38.236894149621946 -64.11607933830355 95.2078 0.1144 6363 +6365 2 37.42526658673566 -63.290985714281796 95.1446 0.1144 6364 +6366 2 36.48574563305445 -63.19470616473142 95.1734 0.1144 6365 +6367 2 35.547161800721085 -62.23555544912723 95.2739 0.1144 6366 +6368 2 34.60870770207026 -61.966500456168475 95.4268 0.1144 6367 +6369 2 33.672350597627315 -61.17336317005729 95.6318 0.1144 6368 +6370 2 32.7364843242747 -60.223290937984146 95.8894 0.1144 6369 +6371 2 31.793455553676694 -59.28881694548379 96.2094 0.1144 6370 +6372 2 30.722437977385738 -59.47262593418527 96.6792 0.1144 6371 +6373 2 29.611410901880618 -59.074741806036094 97.3134 0.1144 6372 +6374 2 28.512287995595813 -58.75390750355706 98.0916 0.1144 6373 +6375 2 27.430048088949604 -59.18824001633574 98.9918 0.1144 6374 +6376 2 26.363271841716625 -58.8416847880045 100.0017 0.1144 6375 +6377 2 25.379822908493594 -58.44528830650481 101.4014 0.1144 6376 +6378 2 25.426198053087973 -57.88953601293929 103.6174 0.1144 6377 +6379 2 25.407671771737796 -57.178051498768184 105.5992 0.1144 6378 +6380 2 25.025100118395557 -56.4696817465016 107.4959 0.1144 6379 +6381 2 24.554100098170636 -56.044659782020084 109.2342 0.1144 6380 +6382 2 23.510664584509044 -55.61254230587417 110.0896 0.1144 6381 +6383 2 22.410872150995317 -54.99192413648503 110.5003 0.1144 6382 +6384 2 37.89665542922373 -64.28772771026395 94.6865 0.1144 6364 +6385 2 37.05713214791007 -65.12344116318205 94.274 0.1144 6384 +6386 2 36.21012360961009 -66.02062477781443 94.0971 0.1144 6385 +6387 2 35.3630822442731 -66.67822968905485 93.8834 0.1144 6386 +6388 2 34.517010827320945 -67.78276639041212 93.6502 0.1144 6387 +6389 2 33.67187653171655 -68.19648909026486 93.4108 0.1144 6388 +6390 2 32.82517672501152 -68.60587911614937 93.179 0.1144 6389 +6391 2 31.97910530805936 -69.8006142666236 92.9636 0.1144 6390 +6392 2 31.138697271210702 -70.37016157950686 92.5509 0.1144 6391 +6393 2 21.905833296405774 -98.7189578853383 85.7503 0.1144 6210 +6394 2 22.805167261828757 -98.6615844415293 84.6306 0.1144 6393 +6395 2 23.559484878565485 -98.24987949276621 84.1148 0.1144 6394 +6396 2 24.123703005632763 -97.60575420517895 83.5537 0.1144 6395 +6397 2 24.821742786897147 -95.78833699242588 82.9276 0.1144 6396 +6398 2 25.825124852080933 -95.84360929354742 82.2335 0.1144 6397 +6399 2 26.91158445942162 -96.18082118821746 81.5318 0.1144 6398 +6400 2 27.998708385135302 -95.19971238628517 80.827 0.1144 6399 +6401 2 29.098703042782375 -95.64790683048257 80.1111 0.1144 6400 +6402 2 30.205949498396024 -96.24128610123009 79.4562 0.1144 6401 +6403 2 31.279338860490043 -95.19557505649485 78.8301 0.1144 6402 +6404 2 32.233193148199746 -95.11530395921636 78.2286 0.1144 6403 +6405 2 33.07615377426299 -94.82194035423979 77.8078 0.1144 6404 +6406 2 33.76121160471368 -93.98433954628511 77.5373 0.1144 6405 +6407 2 34.43010622129458 -92.46811075527435 76.9474 0.1144 6406 +6408 2 35.07816132201617 -91.96209202121237 75.9825 0.1144 6407 +6409 2 35.65340236709292 -92.0586890347562 75.3278 0.1144 6408 +6410 2 36.692417163021275 -92.21473857023355 74.5111 0.1144 6409 +6411 2 37.738429486428714 -91.14144197731484 73.7498 0.1144 6410 +6412 2 38.79254684436265 -90.96462860024788 73.0503 0.1144 6411 +6413 2 39.73254132142637 -89.95767787537466 72.3985 0.1144 6412 +6414 2 40.17824328495007 -89.21823792389604 71.778 0.1144 6413 +6415 2 40.45476467279519 -88.31686957971993 71.1802 0.1144 6414 +6416 2 41.16853609835459 -87.84543501707813 70.5874 0.1144 6415 +6417 2 42.17636620338595 -86.80152621710776 70.0389 0.1144 6416 +6418 2 43.25468754071517 -86.84851648215691 69.5094 0.1144 6417 +6419 2 44.36027508861366 -87.49192889507785 68.966 0.1144 6418 +6420 2 45.48148336370045 -86.74951226216065 68.4608 0.1144 6419 +6421 2 46.55556237766143 -86.90953997469428 68.0193 0.1144 6420 +6422 2 47.62223521901592 -87.04233164168132 67.5931 0.1144 6421 +6423 2 48.6562372565044 -85.91739058544492 67.0127 0.1144 6422 +6424 2 49.677583897039824 -85.97232886644501 66.3146 0.1144 6423 +6425 2 49.87458300125451 -86.0426705379853 65.6785 0.1144 6424 +6426 2 50.9131515069254 -86.19111814211544 64.8586 0.1144 6425 +6427 2 51.94159558847247 -85.1477192571831 64.1077 0.1144 6426 +6428 2 52.937806638894415 -85.14819686942985 63.3562 0.1144 6427 +6429 2 53.91947332898522 -85.10670724738263 62.6371 0.1144 6428 +6430 2 54.972659076200955 -84.08027107215068 61.9696 0.1144 6429 +6431 2 56.054288717133744 -84.29901515559327 61.3514 0.1144 6430 +6432 2 57.13916740015458 -84.5281893736076 60.769 0.1144 6431 +6433 2 58.22435481477032 -83.58908881774227 60.202 0.1144 6432 +6434 2 59.294568015989995 -83.76707546326736 59.6456 0.1144 6433 +6435 2 60.16069859345518 -83.47278991322389 59.0957 0.1144 6434 +6436 2 61.080784472841145 -82.27124846907161 58.3898 0.1144 6435 +6437 2 62.17367858789362 -82.54964830072372 57.6428 0.1144 6436 +6438 2 63.25955976224765 -81.71285986239316 56.917 0.1144 6437 +6439 2 64.36099158238585 -82.14020458729483 56.2218 0.1144 6438 +6440 2 65.47314398720408 -82.68026901980154 55.6175 0.1144 6439 +6441 2 66.59171378768994 -81.93762405640237 55.1113 0.1144 6440 +6442 2 67.70147548916174 -82.23317015491645 54.6431 0.1144 6441 +6443 2 68.5590328236839 -82.14389842281308 54.0389 0.1144 6442 +6444 2 69.05100121095754 -80.91955019017708 53.0471 0.1144 6443 +6445 2 70.0687302127472 -80.90653600714757 52.0895 0.1144 6444 +6446 2 71.09725096962751 -80.9565411224186 51.4178 0.1144 6445 +6447 2 70.99624488741344 -81.0200373992151 50.8936 0.1144 6446 +6448 2 70.51950800232407 -80.70123419547626 50.0559 0.1144 6447 +6449 2 70.88769248690522 -79.91269870146613 49.5603 0.1144 6448 +6450 2 71.7238729210683 -79.55028552684088 49.2167 0.1144 6449 +6451 2 72.65065580010321 -78.23614238997949 48.993 0.1144 6450 +6452 2 73.57882209074333 -77.995022057433 48.8452 0.1144 6451 +6453 2 74.50801069558105 -77.75162242385179 48.7648 0.1144 6452 +6454 2 75.43719930041874 -76.62270645089329 48.7304 0.1144 6453 +6455 2 76.36727266079146 -76.20702437566369 48.7138 0.1144 6454 +6456 2 77.29703728956918 -75.9593833904832 48.7001 0.1144 6455 +6457 2 78.22716301575468 -75.29425319012364 48.6864 0.1144 6456 +6458 2 79.1562664277426 -74.42453868244372 48.6727 0.1144 6457 +6459 2 80.08647734677783 -74.16741082336294 48.6592 0.1144 6458 +6460 2 81.01615678270585 -73.91211276088033 48.6461 0.1144 6459 +6461 2 81.94628250889133 -72.64644727608427 48.6329 0.1144 6460 +6462 2 82.87541874791623 -72.38433602949924 48.62 0.1144 6461 +6463 2 83.80554447410171 -72.11962983977887 48.6072 0.1144 6462 +6464 2 84.7347330789394 -70.95693606116386 48.5948 0.1144 6463 +6465 2 85.66543482906488 -70.60594267765984 48.5831 0.1144 6464 +6466 2 86.59582784759559 -69.4487966576441 48.5719 0.1144 6465 +6467 2 87.60258188754347 -69.28184493119578 48.5626 0.1144 6466 +6468 2 88.6722248595413 -69.3043797936018 48.5551 0.1144 6467 +6469 2 89.74254858710461 -68.44120053546077 48.5489 0.1144 6468 +6470 2 90.81219155910247 -68.41327852804369 48.5433 0.1144 6469 +6471 2 91.88254811370285 -68.43936160306853 48.5374 0.1144 6470 +6472 2 92.95287184126627 -67.5311857523664 48.5296 0.1144 6471 +6473 2 94.022514813264 -67.54960330214969 48.5195 0.1144 6472 +6474 2 95.09278617501468 -67.56933152709335 48.505 0.1144 6473 +6475 2 96.16248151282517 -66.67276033880079 48.4845 0.1144 6474 +6476 2 97.23217685063574 -66.68646990137614 48.4562 0.1144 6475 +6477 2 98.30244821238631 -66.70395834879453 48.4168 0.1144 6476 +6478 2 99.372719574137 -65.81035974161598 48.3608 0.1144 6477 +6479 2 100.44241491194748 -65.8272739055126 48.2818 0.1144 6478 +6480 2 101.51174915235035 -65.835295800178 48.174 0.1144 6479 +6481 2 102.58042217596335 -64.95539557995289 48.0323 0.1144 6480 +6482 2 103.62670689389759 -64.91490964396131 47.8097 0.1144 6481 +6483 2 104.65030628835405 -64.82168776018152 47.4799 0.1144 6482 +6484 2 105.72525054873748 -64.20415576937614 47.0361 0.1144 6483 +6485 2 106.81750776849864 -64.83024949403229 46.5352 0.1144 6484 +6486 2 107.9239533533651 -65.41257975722651 46.051 0.1144 6485 +6487 2 109.05067683708165 -64.97000339889769 45.5955 0.1144 6486 +6488 2 110.16999855783678 -65.13867348479828 45.1665 0.1144 6487 +6489 2 111.13683238731372 -64.24684434381668 44.737 0.1144 6488 +6490 2 111.82778634666616 -63.70461000074255 44.2529 0.1144 6489 +6491 2 112.38398153047359 -62.98184001649845 43.6856 0.1144 6490 +6492 2 112.99059027126361 -62.31007597174898 42.9853 0.1144 6491 +6493 2 113.66716145437925 -60.949967745146274 42.1327 0.1144 6492 +6494 2 114.36133301385584 -60.418145085124465 41.179 0.1144 6493 +6495 2 115.05248138433973 -59.853541728281 40.1831 0.1144 6494 +6496 2 115.79795125633382 -59.39922945067513 39.2266 0.1144 6495 +6497 2 116.80474774181982 -58.58648423691282 38.4177 0.1144 6496 +6498 2 117.88798733998982 -58.71939732514829 37.7541 0.1144 6497 +6499 2 118.98317185409334 -58.87879152941331 37.1952 0.1144 6498 +6500 2 120.08450196717797 -58.22432757852908 36.7088 0.1144 6499 +6501 2 121.18872863715569 -58.384330546541904 36.2642 0.1144 6500 +6502 2 122.29353133107352 -58.52400724203493 35.8322 0.1144 6501 +6503 2 123.28896953737731 -57.60647727213652 35.3662 0.1144 6502 +6504 2 124.21664879104685 -57.31421141079696 34.8628 0.1144 6503 +6505 2 125.13069649621235 -57.00799307975206 34.3305 0.1144 6504 +6506 2 126.04264720716989 -56.07569337792887 33.7576 0.1144 6505 +6507 2 126.95183891989703 -55.630057828235884 33.1604 0.1144 6506 +6508 2 127.86254377791192 -55.3660209552133 32.5606 0.1144 6507 +6509 2 128.77355736752182 -54.651356826562974 31.9774 0.1144 6508 +6510 2 129.68724397527956 -53.990801216500785 31.4222 0.1144 6509 +6511 2 129.27971342736402 -53.49720500297689 29.7284 0.1144 6510 +6512 2 71.61165940716026 -81.09304869355631 50.8326 0.1144 6446 +6513 2 72.64907997282236 -80.26316830138165 49.737 0.1144 6512 +6514 2 73.74916292490232 -80.64183127492026 49.0728 0.1144 6513 +6515 2 74.86354515919419 -81.18377841534871 48.4901 0.1144 6514 +6516 2 75.97347903988668 -80.50542235142642 47.8503 0.1144 6515 +6517 2 77.05712117471413 -80.73156498207082 47.2304 0.1144 6516 +6518 2 78.1332626393359 -80.90999026580882 46.6357 0.1144 6517 +6519 2 79.20962454111987 -79.97414235080852 46.0664 0.1144 6518 +6520 2 80.27652702968942 -80.11168849547839 45.4969 0.1144 6519 +6521 2 81.33451330194777 -80.22023772540224 44.9081 0.1144 6520 +6522 2 82.38942953003027 -79.23090996209868 44.2957 0.1144 6521 +6523 2 83.44095837012952 -79.32822179221797 43.6624 0.1144 6522 +6524 2 84.49297804131899 -79.42643664638604 43.0181 0.1144 6523 +6525 2 85.54285617746771 -78.44370659410593 42.3732 0.1144 6524 +6526 2 86.625379091452 -78.5866231742444 41.725 0.1144 6525 +6527 2 87.66669969965068 -77.67540805363637 41.0472 0.1144 6526 +6528 2 88.60383285590484 -77.50009250975299 40.4205 0.1144 6527 +6529 2 89.43735119848296 -77.1394525367844 39.8952 0.1144 6528 +6530 2 89.987758779134 -75.89673910611882 39.45 0.1144 6529 +6531 2 90.92163669013391 -75.20572050554408 39.0846 0.1144 6530 +6532 2 91.98883249707922 -75.26687459479693 38.848 0.1144 6531 +6533 2 93.06222937040141 -74.889745831245 38.7164 0.1144 6532 +6534 2 94.1365633650714 -74.37124421125756 38.682 0.1144 6533 +6535 2 95.06093741672046 -74.11401505982633 39.6357 0.1144 6534 +6536 2 96.00650457040831 -73.7726640427014 40.3242 0.1144 6535 +6537 2 96.95906063936252 -72.78976092810355 40.9704 0.1144 6536 +6538 2 97.91500409630021 -72.61908464296896 41.575 0.1144 6537 +6539 2 98.8753650803987 -72.45562049886748 42.1159 0.1144 6538 +6540 2 99.84204283641077 -71.30007282443088 42.5737 0.1144 6539 +6541 2 100.810104004028 -71.12911475129765 42.9755 0.1144 6540 +6542 2 101.78012460719054 -70.95150395493442 43.353 0.1144 6541 +6543 2 102.75179591430353 -69.83079752183892 43.7072 0.1144 6542 +6544 2 103.7987121235737 -69.82077393767739 44.0073 0.1144 6543 +6545 2 104.89525060791709 -69.94139225309054 44.2316 0.1144 6544 +6546 2 105.99834574541552 -69.15009093210145 44.3982 0.1144 6545 +6547 2 107.10237800426165 -69.2803896042055 44.5236 0.1144 6546 +6548 2 108.20792340839571 -69.438449821012 44.6242 0.1144 6547 +6549 2 109.31204086009168 -68.62466216819858 44.7154 0.1144 6548 +6550 2 110.41763863003845 -68.65393472935986 44.8132 0.1144 6549 +6551 2 111.52161852307194 -67.97288059388364 44.928 0.1144 6550 +6552 2 112.62565078191807 -68.12586663187926 45.0654 0.1144 6551 +6553 2 113.72874591941653 -67.92331003677857 45.2306 0.1144 6552 +6554 2 114.82635908377014 -67.45998116893301 45.4446 0.1144 6553 +6555 2 115.90774125522213 -67.50854388758559 45.7579 0.1144 6554 +6556 2 116.98261362870213 -67.16628799349719 46.1496 0.1144 6555 +6557 2 118.05401342134891 -66.7308253878208 46.5937 0.1144 6556 +6558 2 119.12390006870788 -66.81525579915257 47.0677 0.1144 6557 +6559 2 120.19334042580945 -66.36996536555547 47.5527 0.1144 6558 +6560 2 121.261576369218 -66.03804320976862 48.0318 0.1144 6559 +6561 2 122.37556808242184 -66.23080952660119 48.356 0.1144 6560 +6562 2 123.5095614881443 -65.96718866213916 48.6959 0.1144 6561 +6563 2 124.64240043694008 -66.07617958916562 49.072 0.1144 6562 +6564 2 125.7173251762328 -66.14186398016062 49.439 0.1144 6563 +6565 2 126.74778995543923 -65.35404919539464 49.7916 0.1144 6564 +6566 2 127.88127270720713 -65.60797524018213 50.1357 0.1144 6565 +6567 2 128.99427873934823 -66.24077302229146 50.4776 0.1144 6566 +6568 2 130.10586853284707 -66.02891026528526 50.8096 0.1144 6567 +6569 2 131.23092690568234 -66.5108177206957 51.1818 0.1144 6568 +6570 2 132.35746828990352 -66.96128245799036 51.6516 0.1144 6569 +6571 2 133.47951167751083 -66.52397899238981 52.1856 0.1144 6570 +6572 2 134.5991493393154 -66.96623161354204 52.7526 0.1144 6571 +6573 2 135.71722149001937 -66.52879012858612 53.3257 0.1144 6572 +6574 2 136.82677616694974 -66.91603348375398 53.993 0.1144 6573 +6575 2 137.84120817048375 -67.2830965195094 55.2863 0.1144 6574 +6576 2 94.61151910801306 -74.25414627943071 36.717 0.1144 6534 +6577 2 95.37460887745868 -74.06052736529318 35.1176 0.1144 6576 +6578 2 96.25587835399756 -73.29082544848173 34.2082 0.1144 6577 +6579 2 97.2406883779257 -72.80779091891843 33.3463 0.1144 6578 +6580 2 98.24039904149973 -72.83798120727957 32.361 0.1144 6579 +6581 2 99.27018447987683 -72.69592008187514 31.2889 0.1144 6580 +6582 2 100.30122498124967 -72.27304203172312 30.161 0.1144 6581 +6583 2 101.30129372963754 -72.87966828239048 28.9447 0.1144 6582 +6584 2 101.60752378168579 -72.80944530773546 27.9983 0.1144 6583 +6585 2 102.51846138849888 -72.16224382735483 27.1702 0.1144 6584 +6586 2 103.5089700286141 -71.55828209134144 26.3944 0.1144 6585 +6587 2 104.5457433759693 -71.59978567082803 25.6501 0.1144 6586 +6588 2 105.18381230376613 -71.01523755194168 24.8702 0.1144 6587 +6589 2 105.73271053324893 -69.66712143067203 24.0662 0.1144 6588 +6590 2 106.27854103290619 -68.70993471114329 23.2282 0.1144 6589 +6591 2 106.82285056229571 -68.02829869289555 22.3671 0.1144 6590 +6592 2 107.36881079563565 -67.35777870121659 21.5111 0.1144 6591 +6593 2 107.91865707302921 -66.68032376049405 20.684 0.1144 6592 +6594 2 108.51598919263682 -65.51026161994889 19.9182 0.1144 6593 +6595 2 109.13167911950427 -64.48743166919526 19.1841 0.1144 6594 +6596 2 109.70565098444979 -63.914083684408155 17.9494 0.1144 6595 +6597 2 101.3216631254711 -73.7448439016032 26.896 0.1144 6583 +6598 2 100.87265865306202 -74.37590243799916 25.8177 0.1144 6597 +6599 2 99.9416926231851 -74.06220780056627 24.885 0.1144 6598 +6600 2 99.05174019369116 -74.18790933071818 23.8498 0.1144 6599 +6601 2 98.28597751220761 -73.15071127742407 22.9608 0.1144 6600 +6602 2 97.56163277326368 -72.08294779497966 22.2341 0.1144 6601 +6603 2 96.49581106119629 -71.62876962198595 21.5592 0.1144 6602 +6604 2 95.73391068298724 -73.05236047404155 20.7539 0.1144 6603 +6605 2 49.68106028397082 -86.39986460797203 66.5731 0.1144 6424 +6606 2 49.64882363670472 -87.44445213085994 67.1801 0.1144 6605 +6607 2 49.58794358240843 -88.45358788321799 67.9846 0.1144 6606 +6608 2 50.33709876036329 -89.43990854253819 68.9478 0.1144 6607 +6609 2 51.362219515850484 -89.72799877990651 70.1142 0.1144 6608 +6610 2 34.151877299857745 -90.89067145535186 74.415 0.1144 6408 +6611 2 33.26114040714606 -91.11850226251806 73.645 0.1144 6610 +6612 2 32.34354054503723 -90.05192273909532 73.1648 0.1144 6611 +6613 2 31.431907283997248 -88.99988345835202 72.5914 0.1144 6612 +6614 2 30.567496698382683 -88.24682426328025 71.9188 0.1144 6613 +6615 2 29.954202688860306 -88.03478716896666 71.111 0.1144 6614 +6616 2 29.53414087805541 -86.8945097090766 70.135 0.1144 6615 +6617 2 28.779652289192512 -86.07862745807088 68.8542 0.1144 6616 +6618 2 28.06107823131771 -86.30559021605595 67.5335 0.1144 6617 +6619 2 27.050363176514708 -86.54343197595425 66.4065 0.1144 6618 +6620 2 25.996117380982014 -86.4301211749809 65.4668 0.1144 6619 +6621 2 24.926669423663014 -85.82214761885227 64.5282 0.1144 6620 +6622 2 23.83511696721436 -85.89484418001021 63.6964 0.1144 6621 +6623 2 22.74455879833414 -86.22247516012195 63.014 0.1144 6622 +6624 2 21.63960033272508 -85.60068411012782 62.4319 0.1144 6623 +6625 2 20.812451251668307 -84.54219414958568 61.9447 0.1144 6624 +6626 2 19.9823173192855 -84.59832836068233 61.5297 0.1144 6625 +6627 2 19.1515549971499 -83.4834537941431 61.1593 0.1144 6626 +6628 2 18.278172727828235 -82.40437034125648 60.7989 0.1144 6627 +6629 2 17.35228573169755 -81.38940906193135 60.4198 0.1144 6628 +6630 2 16.429380485309764 -81.46676164848958 60.0138 0.1144 6629 +6631 2 15.507285728170217 -80.43898550805078 59.5742 0.1144 6630 +6632 2 16.119869273793768 -79.71348249865441 59.5661 0.1144 6631 +6633 2 16.601168731978476 -78.87334052118584 58.119 0.1144 6632 +6634 2 17.02757886847772 -77.31383233672517 57.2524 0.1144 6633 +6635 2 17.543973986658926 -76.58843158634174 56.1478 0.1144 6634 +6636 2 18.301486279072435 -76.21414918493032 55.0108 0.1144 6635 +6637 2 19.14724145320153 -75.9527531608148 53.9473 0.1144 6636 +6638 2 19.96788775578429 -74.76358730039296 53.107 0.1144 6637 +6639 2 20.833894802733 -74.24377114518828 52.5395 0.1144 6638 +6640 2 21.85719777723068 -74.24168108883225 52.1326 0.1144 6639 +6641 2 22.98195151436431 -73.94735409887379 51.8126 0.1144 6640 +6642 2 24.117742487448993 -73.98652435008916 51.5239 0.1144 6641 +6643 2 25.198112247292983 -74.15023101312494 51.2439 0.1144 6642 +6644 2 26.061977759201056 -73.3067848530986 50.9779 0.1144 6643 +6645 2 26.555314144860603 -72.05537735600974 50.7086 0.1144 6644 +6646 2 26.95876546237065 -71.20129215461913 50.4347 0.1144 6645 +6647 2 27.502750846946014 -70.45027128301568 50.1847 0.1144 6646 +6648 2 27.77530099788774 -69.52108233798592 49.9472 0.1144 6647 +6649 2 27.77272910036686 -68.43504627005885 49.6588 0.1144 6648 +6650 2 27.707528051913073 -67.32373666961058 49.1789 0.1144 6649 +6651 2 27.274810151618567 -66.18912092118326 48.5719 0.1144 6650 +6652 2 26.690939211936097 -65.04813486313951 48.1032 0.1144 6651 +6653 2 26.454485216868193 -63.90366179551911 47.8022 0.1144 6652 +6654 2 26.85561600142526 -63.03248645602659 47.7291 0.1144 6653 +6655 2 27.623743472041753 -62.494224995026975 47.6983 0.1144 6654 +6656 2 28.37881611063085 -61.53215976575826 47.6221 0.1144 6655 +6657 2 28.610860817108403 -60.146097923123925 47.6196 0.1144 6656 +6658 2 28.949171141184195 -59.183956131973346 47.6067 0.1144 6657 +6659 2 29.131979985805145 -58.16520785911506 47.6888 0.1144 6658 +6660 2 29.768721661929163 -57.5552905218252 48.3361 0.1144 6659 +6661 2 30.668386590857892 -57.24626413933023 49.0986 0.1144 6660 +6662 2 31.56108922839107 -56.13434247910797 49.833 0.1144 6661 +6663 2 32.275977465747104 -55.57670680719176 50.6464 0.1144 6662 +6664 2 32.89792151734085 -54.92677576100371 51.5586 0.1144 6663 +6665 2 33.40720447382782 -54.14850306856085 52.3382 0.1144 6664 +6666 2 34.10092835797374 -53.12647842159782 53.0051 0.1144 6665 +6667 2 35.01916602069474 -52.51579123351047 53.6724 0.1144 6666 +6668 2 35.9572886641094 -51.82355567504423 54.325 0.1144 6667 +6669 2 36.89852279094967 -51.23739347413676 54.9455 0.1144 6668 +6670 2 37.90131721309379 -51.07140429001157 55.51 0.1144 6669 +6671 2 39.029966896870604 -51.04865956538051 55.9544 0.1144 6670 +6672 2 40.16388362725979 -50.97986761700312 56.3142 0.1144 6671 +6673 2 41.30184896242221 -51.30133685391273 56.5992 0.1144 6672 +6674 2 42.431314237628925 -50.97060641138798 56.835 0.1144 6673 +6675 2 43.336034672309296 -50.410871767293855 57.0657 0.1144 6674 +6676 2 44.29776744891342 -50.11005588944433 57.2911 0.1144 6675 +6677 2 45.26965988572496 -49.592803069745145 57.7744 0.1144 6676 +6678 2 15.204511038236717 -79.89744302343735 59.2166 0.1144 6631 +6679 2 14.557488674567225 -78.75201094903828 58.5738 0.1144 6678 +6680 2 13.913269062728347 -77.61813486409345 57.8953 0.1144 6679 +6681 2 12.916806345964716 -77.9123912669375 57.1724 0.1144 6680 +6682 2 11.852436126308191 -77.26367151112382 56.4068 0.1144 6681 +6683 2 11.059074660914007 -77.26714765130326 55.4403 0.1144 6682 +6684 2 10.340188278130796 -76.2186760228201 54.3656 0.1144 6683 +6685 2 9.399149769516669 -75.32681251437033 53.4061 0.1144 6684 +6686 2 8.371504060681076 -74.78998118819194 52.4983 0.1144 6685 +6687 2 7.334380832276736 -74.87096374650089 51.6477 0.1144 6686 +6688 2 6.226253415247754 -74.41329464989282 50.9488 0.1144 6687 +6689 2 5.109817940348108 -74.12612220800888 50.3622 0.1144 6688 +6690 2 3.987897390720633 -74.39995257500055 49.8557 0.1144 6689 +6691 2 2.859220674624993 -73.89786526055731 49.3984 0.1144 6690 +6692 2 1.7743512016572254 -74.18608031272721 48.9773 0.1144 6691 +6693 2 0.6892699037400973 -74.66643470086413 48.5794 0.1144 6692 +6694 2 -0.4220042504829564 -74.43242498195836 48.1961 0.1144 6693 +6695 2 -1.550947252635467 -74.7116802912905 47.8335 0.1144 6694 +6696 2 -1.2119012378412606 -74.68720161979647 46.7572 0.1144 6695 +6697 2 -0.3443288925762431 -75.07953177228634 45.5339 0.1144 6696 +6698 2 0.7224976131965661 -75.23615398677562 44.9106 0.1144 6697 +6699 2 1.7830067315304916 -75.00045547744874 44.1801 0.1144 6698 +6700 2 2.0540076847692035 -75.15383145932826 42.973 0.1144 6699 +6701 2 0.9924056733962345 -75.4129855306429 42.1165 0.1144 6700 +6702 2 -0.09870219161987848 -74.80827635999844 41.3725 0.1144 6701 +6703 2 -1.1385422864684074 -74.08764008673619 40.6314 0.1144 6702 +6704 2 -1.7503313544676757 -73.93648453168367 39.9294 0.1144 6703 +6705 2 -1.7539826314394986 -73.6278548502451 38.729 0.1144 6704 +6706 2 -2.3527365003190255 -74.50917427783787 38.0694 0.1144 6705 +6707 2 -2.246337041166697 -74.73479967944441 37.6463 0.1144 6706 +6708 2 -1.6191565914206194 -74.93647271496518 35.7003 0.1144 6707 +6709 2 -1.2271791816180553 -73.44422769640435 34.6828 0.1144 6708 +6710 2 -0.828682763790539 -72.6487003705059 33.5476 0.1144 6709 +6711 2 -0.05525742012324031 -72.26483514432229 32.5296 0.1144 6710 +6712 2 0.9049937301681155 -72.19343385720975 31.5708 0.1144 6711 +6713 2 1.8004741944859575 -71.19663603218719 30.693 0.1144 6712 +6714 2 1.9095688027296092 -70.25007198475976 29.8096 0.1144 6713 +6715 2 1.180395192655368 -70.70392619548839 28.4236 0.1144 6714 +6716 2 1.032027793053885 -70.57791873626945 25.802 0.1144 6715 +6717 2 -2.9035792438582178 -73.95837139000876 37.4503 0.1144 6706 +6718 2 -3.923258861903065 -73.16563164124761 36.6405 0.1144 6717 +6719 2 -5.007278211872091 -73.33914889708869 36.0052 0.1144 6718 +6720 2 -6.126249146257123 -72.99750812371084 35.4707 0.1144 6719 +6721 2 -7.159047462589342 -72.97584144546414 34.9597 0.1144 6720 +6722 2 -8.141562287058349 -73.91828379337866 34.4008 0.1144 6721 +6723 2 -9.192821425765885 -74.03457367832728 33.7324 0.1144 6722 +6724 2 -10.277866493289139 -73.63204233548207 32.8927 0.1144 6723 +6725 2 -11.346918418890539 -74.19179439553751 31.9729 0.1144 6724 +6726 2 -11.961921102937566 -74.94854378935106 30.9938 0.1144 6725 +6727 2 -11.720088842377095 -76.0744882618402 30.1092 0.1144 6726 +6728 2 -11.816623557555147 -76.77696724474694 28.0456 0.1144 6727 +6729 2 -2.142030859113845 -74.80634018282882 47.5149 0.1144 6695 +6730 2 -3.2718921660381284 -74.23344825393892 47.1934 0.1144 6729 +6731 2 -4.4054050517078736 -73.71788572052887 46.9216 0.1144 6730 +6732 2 -5.528648443363096 -74.06083665413428 46.6374 0.1144 6731 +6733 2 -5.2852525661905645 -74.04112732939198 45.7055 0.1144 6732 +6734 2 -4.496739381200342 -72.68719742945257 45.5193 0.1144 6733 +6735 2 -4.129066556862142 -71.71508279613103 45.5521 0.1144 6734 +6736 2 -4.143401270821187 -70.60735113691392 45.598 0.1144 6735 +6737 2 -4.27076087042974 -69.46228850086376 45.6604 0.1144 6736 +6738 2 -4.414066348329186 -68.31580068496268 45.7492 0.1144 6737 +6739 2 -4.62950113708888 -67.15189880997897 45.8867 0.1144 6738 +6740 2 -4.899861791679626 -65.98232249221444 46.0785 0.1144 6739 +6741 2 -4.98658449663148 -64.85596311188485 46.3411 0.1144 6740 +6742 2 -4.364799620085705 -64.15526368990209 46.5542 0.1144 6741 +6743 2 -4.0593236845689376 -63.22174373812109 47.117 0.1144 6742 +6744 2 -6.554169024687525 -73.51712742772362 46.4744 0.1144 6732 +6745 2 -7.69683769415829 -73.16248350233195 46.4341 0.1144 6744 +6746 2 -8.83737613393626 -73.6567523787415 46.445 0.1144 6745 +6747 2 -9.977823177698184 -73.28309867033722 46.4618 0.1144 6746 +6748 2 -11.121502542266938 -73.26094614102014 46.4738 0.1144 6747 +6749 2 -12.264644220562332 -73.39204231466991 46.4674 0.1144 6748 +6750 2 -13.402990475996774 -73.99162555699095 46.4372 0.1144 6749 +6751 2 -14.530716060283567 -73.7911930303978 46.3781 0.1144 6750 +6752 2 -15.660131378724031 -73.49796430547997 46.3016 0.1144 6751 +6753 2 -16.79901532043195 -74.17138967231563 46.2367 0.1144 6752 +6754 2 -17.940000050467347 -73.7685268322162 46.1997 0.1144 6753 +6755 2 -19.074594813623804 -73.45488855883535 46.2375 0.1144 6754 +6756 2 -20.202981614700576 -74.2035638537363 46.3285 0.1144 6755 +6757 2 -21.342494638697843 -73.81655378540425 46.2834 0.1144 6756 +6758 2 -22.462227804389812 -73.28771287198941 46.2969 0.1144 6757 +6759 2 -23.60405385011191 -73.66614284305135 46.3686 0.1144 6758 +6760 2 -24.672941800257348 -73.61983895097536 46.4257 0.1144 6759 +6761 2 -25.747360987777085 -73.89568469966763 46.4607 0.1144 6760 +6762 2 -26.886336325500963 -74.2228216286226 46.4825 0.1144 6761 +6763 2 -28.029877438870585 -73.78236824971987 46.501 0.1144 6762 +6764 2 -29.08200432203637 -73.39219476975788 46.5797 0.1144 6763 +6765 2 -29.528826299907223 -73.71292195105539 46.9983 0.1144 6764 +6766 2 -30.653796378309522 -73.12822922097486 47.2839 0.1144 6765 +6767 2 -31.79513779610747 -72.60584671944822 47.3995 0.1144 6766 +6768 2 -32.918795236845455 -73.36096899479583 47.5152 0.1144 6767 +6769 2 -34.004096279387966 -73.26429848469222 47.619 0.1144 6768 +6770 2 -35.09809861170933 -73.15078088092105 47.7098 0.1144 6769 +6771 2 -36.196326137669786 -74.04022272851371 47.7924 0.1144 6770 +6772 2 -37.289967372583476 -73.92095004847995 47.8702 0.1144 6771 +6773 2 -38.42715917109115 -73.72390611674633 47.9489 0.1144 6772 +6774 2 -39.54861971606684 -73.94005010688102 48.0726 0.1144 6773 +6775 2 -40.49565806123488 -72.94096130508609 48.2656 0.1144 6774 +6776 2 -41.35216895001753 -71.87000183097113 48.4683 0.1144 6775 +6777 2 -42.19103940826267 -71.54552420634516 48.6542 0.1144 6776 +6778 2 -43.08076699094954 -70.72862865347199 48.9059 0.1144 6777 +6779 2 -43.764904404212956 -69.63392380105194 48.9978 0.1144 6778 +6780 2 -44.69030677241949 -69.53732040406224 48.7995 0.1144 6779 +6781 2 -29.218912534613025 -73.22805242712326 46.5405 0.1144 6764 +6782 2 -29.31717692630434 -72.12194433493774 46.3674 0.1144 6781 +6783 2 -28.517762755963673 -70.98794960255977 46.221 0.1144 6782 +6784 2 -27.706988305842316 -70.52141339976903 46.2764 0.1144 6783 +6785 2 -26.982931973049148 -69.96902118514447 46.72 0.1144 6784 +6786 2 -26.180848501668947 -69.11817376462423 47.8926 0.1144 6785 +6787 2 -25.361377171413892 -68.3636632954456 49.0356 0.1144 6786 +6788 2 -24.559784531124023 -68.0305939612454 50.2186 0.1144 6787 +6789 2 -24.2861603156974 -67.24245955710883 51.3341 0.1144 6788 +6790 2 -24.397503156400063 -66.1529993274671 52.2721 0.1144 6789 +6791 2 -24.277815601864177 -65.24780071820464 53.5396 0.1144 6790 +6792 2 -23.61300723518667 -64.52803207711132 54.3449 0.1144 6791 +6793 2 -22.875807775933225 -63.18035530476846 54.7305 0.1144 6792 +6794 2 -22.31430410626362 -62.44790882377454 55.0161 0.1144 6793 +6795 2 -22.317833640533223 -61.390418020569896 55.2574 0.1144 6794 +6796 2 -21.31617826209657 -61.334675537454416 55.3106 0.1144 6795 +6797 2 -20.522325965612083 -62.09489996012844 55.5229 0.1144 6796 +6798 2 -19.53470498608857 -61.24970448046003 55.6074 0.1144 6797 +6799 2 -18.6179020768123 -60.898864243724724 55.6354 0.1144 6798 +6800 2 -17.54317105611446 -60.851305213356156 55.5702 0.1144 6799 +6801 2 -16.42117282486535 -60.647511960691936 55.4252 0.1144 6800 +6802 2 -15.36348557671161 -61.410321783517084 54.9696 0.1144 6801 +6803 2 11.387423264065887 -111.65753584017597 86.2428 0.1144 6194 +6804 2 10.313905464373079 -112.15158613770322 86.849 0.1144 6803 +6805 2 9.291625016857267 -111.2829563140527 87.3328 0.1144 6804 +6806 2 8.185671961906053 -110.65111526356115 87.731 0.1144 6805 +6807 2 7.056671100996226 -111.30266491623507 88.0474 0.1144 6806 +6808 2 6.068309310887685 -110.38958772951838 88.3604 0.1144 6807 +6809 2 5.331881404811185 -109.14352832811738 88.5136 0.1144 6808 +6810 2 4.40590301266451 -107.99390680882175 88.5634 0.1144 6809 +6811 2 3.536965681607313 -108.3037111236974 88.5629 0.1144 6810 +6812 2 2.9089469287682164 -107.03403005480952 88.5819 0.1144 6811 +6813 2 2.637073128889682 -105.81513726637263 88.5396 0.1144 6812 +6814 2 2.2818566017818966 -104.57662353628758 88.4122 0.1144 6813 +6815 2 1.6188266892595493 -103.3320188673901 88.1706 0.1144 6814 +6816 2 0.9512526174768254 -102.10034441949003 87.8284 0.1144 6815 +6817 2 0.6318529212075532 -101.02363239578007 87.3099 0.1144 6816 +6818 2 0.37606876144849366 -100.22178527890706 86.7975 0.1144 6817 +6819 2 -0.26391603825032917 -100.07289191615189 85.6702 0.1144 6818 +6820 2 -0.8326888255722622 -98.97305327681802 84.3811 0.1144 6819 +6821 2 -1.3975588475593952 -97.79667302265925 83.4464 0.1144 6820 +6822 2 -1.6894590927309707 -98.39089321600798 81.5861 0.1144 6821 +6823 2 -2.24129012147867 -98.89177583399605 80.1942 0.1144 6822 +6824 2 -2.3318201996948744 -99.85472318657975 79.1588 0.1144 6823 +6825 2 -2.9924745374370616 -101.30866157266374 78.4076 0.1144 6824 +6826 2 -3.9398498536133957 -101.70465090160374 77.4004 0.1144 6825 +6827 2 -4.953251942732294 -101.65027850145582 76.9479 0.1144 6826 +6828 2 -5.92492945301143 -102.24302411236062 76.4918 0.1144 6827 +6829 2 -6.87908937073297 -103.17530541946813 75.9265 0.1144 6828 +6830 2 -7.781057702885505 -103.32593269524006 75.3026 0.1144 6829 +6831 2 -8.563906815235555 -103.64953938173855 74.5408 0.1144 6830 +6832 2 -8.809968098360542 -104.71606006564922 73.5804 0.1144 6831 +6833 2 -8.914073565148328 -106.03358904143477 72.6032 0.1144 6832 +6834 2 -9.745031114747093 -107.12558784905978 71.5963 0.1144 6833 +6835 2 -9.586774928618667 -106.52763906948013 70.9492 0.1144 6834 +6836 2 -9.553406748873272 -105.52106337160433 70.065 0.1144 6835 +6837 2 -9.787039477308241 -104.39436154236685 69.4422 0.1144 6836 +6838 2 -10.30053251084604 -103.14276417251321 69.0973 0.1144 6837 +6839 2 -9.970908755866446 -102.27584830605927 68.9203 0.1144 6838 +6840 2 -9.851804434725238 -101.23900458367946 68.8363 0.1144 6839 +6841 2 -9.783043482487983 -100.17979942907974 68.8103 0.1144 6840 +6842 2 -9.802768773575764 -99.0615578907836 68.8153 0.1144 6841 +6843 2 -9.960645330373467 -97.8816172225842 68.8052 0.1144 6842 +6844 2 -10.426121636430253 -96.6375383016516 68.7296 0.1144 6843 +6845 2 -10.972270060614818 -95.39392999877866 68.6277 0.1144 6844 +6846 2 -11.61071438093333 -94.73175208679314 68.5454 0.1144 6845 +6847 2 -11.223270807375485 -93.97544080819696 68.4379 0.1144 6846 +6848 2 -10.418515324135655 -93.5917528683129 68.2156 0.1144 6847 +6849 2 -9.61135411509315 -92.14810318194036 68.1218 0.1144 6848 +6850 2 -8.80458683049531 -91.52824063663704 67.998 0.1144 6849 +6851 2 -7.998362742800509 -91.1333796231651 67.8308 0.1144 6850 +6852 2 -7.193607259560736 -90.73664746823526 67.6108 0.1144 6851 +6853 2 -6.33367533942598 -89.18549164854404 67.1989 0.1144 6852 +6854 2 -6.101570666918263 -88.68100465336339 69.6931 0.1144 6853 +6855 2 -5.830568506584996 -88.08854469465071 71.6363 0.1144 6854 +6856 2 -5.23830250554019 -87.64829306798302 73.0853 0.1144 6855 +6857 2 -4.491979698759849 -87.3935517745587 74.5556 0.1144 6856 +6858 2 -3.440198588771807 -86.61569931319339 75.5521 0.1144 6857 +6859 2 -2.334039817341278 -87.04048254171326 76.2513 0.1144 6858 +6860 2 -1.2038270315102864 -87.53404959664431 76.6718 0.1144 6859 +6861 2 -0.06402889290205849 -86.81907677298967 76.8667 0.1144 6860 +6862 2 1.0795091188845163 -87.31547847672577 76.9028 0.1144 6861 +6863 2 1.380194431948297 -86.48895798698543 76.6819 0.1144 6862 +6864 2 1.5174775624370227 -85.46605391112246 76.2706 0.1144 6863 +6865 2 1.6432484475516276 -84.55378010297498 75.1626 0.1144 6864 +6866 2 -5.764224004778725 -88.99997691880506 66.4703 0.1144 6853 +6867 2 -4.90922165083262 -88.72254307923016 65.7734 0.1144 6866 +6868 2 -4.08929513401867 -88.40508993832711 64.9852 0.1144 6867 +6869 2 -3.3909350020597913 -86.70041302703451 64.1973 0.1144 6868 +6870 2 -2.7530919273583265 -86.1295351343759 63.4292 0.1144 6869 +6871 2 -1.951423304271799 -85.81975739111552 62.5761 0.1144 6870 +6872 2 -0.978372302662109 -85.82250734625643 61.5731 0.1144 6871 +6873 2 -0.044396478728174316 -84.68626999010166 60.4498 0.1144 6872 +6874 2 0.6102306883676363 -84.22765923397375 59.3407 0.1144 6873 +6875 2 0.683418454830047 -83.38146501990194 57.9331 0.1144 6874 +6876 2 -0.08708689293879956 -82.50930148333653 56.467 0.1144 6875 +6877 2 -0.8839667880609738 -82.06370711363132 55.0082 0.1144 6876 +6878 2 -1.709790227280564 -82.04906050048886 53.2868 0.1144 6877 +6879 2 -12.29320580166501 -94.66999933965731 68.4846 0.1144 6846 +6880 2 -13.12900070510483 -93.49911120906728 68.4438 0.1144 6879 +6881 2 -13.945609205682246 -92.32210943944482 68.425 0.1144 6880 +6882 2 -14.74172215807883 -91.19166881771702 68.4124 0.1144 6881 +6883 2 -15.519488922315134 -91.23233871453229 68.3642 0.1144 6882 +6884 2 -16.091600839679217 -89.99131676965511 68.3659 0.1144 6883 +6885 2 -16.74077945907203 -88.76315612023794 68.4309 0.1144 6884 +6886 2 -17.593140113039055 -87.62994585943191 68.5653 0.1144 6885 +6887 2 -18.539652391033172 -87.18546686397853 68.7702 0.1144 6886 +6888 2 -18.98602407174255 -86.67294036912911 69.4383 0.1144 6887 +6889 2 -19.520126973924533 -85.51221234871272 70.3209 0.1144 6888 +6890 2 -20.275423341215514 -84.42704757348865 71.0646 0.1144 6889 +6891 2 -21.0742852945568 -83.31336939558705 71.7007 0.1144 6890 +6892 2 -21.84380016085484 -82.2967691520399 72.2036 0.1144 6891 +6893 2 -22.49591367480744 -82.09832902311513 72.492 0.1144 6892 +6894 2 -23.07881225705853 -80.91562763092995 72.5528 0.1144 6893 +6895 2 -23.654843045513246 -79.69800940081669 72.457 0.1144 6894 +6896 2 -24.20433431684836 -78.48686410839662 72.3024 0.1144 6895 +6897 2 -24.7166697918764 -77.27844865415078 72.1655 0.1144 6896 +6898 2 -25.213638514136704 -76.07312211252135 72.0742 0.1144 6897 +6899 2 -25.70833906925688 -75.27223214185521 72.0325 0.1144 6898 +6900 2 -26.236446935293003 -74.71046407582438 72.028 0.1144 6899 +6901 2 -26.710827838561528 -73.49663751736739 71.9866 0.1144 6900 +6902 2 -27.108858031450296 -72.28864993152698 71.8732 0.1144 6901 +6903 2 -27.484309017559895 -71.08670645094679 71.7147 0.1144 6902 +6904 2 -27.741347547778105 -69.89573729966631 71.682 0.1144 6903 +6905 2 -27.90871255070755 -68.73638819924636 71.8698 0.1144 6904 +6906 2 -28.064091985686503 -67.58201141395644 72.2509 0.1144 6905 +6907 2 -28.216750760101547 -66.43835042099681 72.7731 0.1144 6906 +6908 2 -28.40686545020594 -65.29899377181842 73.3692 0.1144 6907 +6909 2 -28.92739124730639 -64.14257968617424 73.9102 0.1144 6908 +6910 2 -29.379674470136734 -62.97192217549444 74.3921 0.1144 6909 +6911 2 -29.589712478601513 -61.86433541635218 74.8812 0.1144 6910 +6912 2 -29.685118651066375 -60.75870201982899 75.3469 0.1144 6911 +6913 2 -29.554163219054203 -59.65357875969167 75.6874 0.1144 6912 +6914 2 -29.686417148767816 -58.5146749265872 75.8901 0.1144 6913 +6915 2 -30.14966672693413 -57.66622582193632 76.022 0.1144 6914 +6916 2 -30.772253463394662 -56.9965018012988 76.0998 0.1144 6915 +6917 2 -31.567067504499192 -55.949562426443975 76.279 0.1144 6916 +6918 2 -32.48181224896473 -55.00125595033478 76.7712 0.1144 6917 +6919 2 -33.318631875648606 -54.0046515607773 77.1593 0.1144 6918 +6920 2 -34.132329791186834 -53.706400288032164 77.4799 0.1144 6919 +6921 2 -34.947645583638376 -52.6739416458588 77.7871 0.1144 6920 +6922 2 -35.76076747523655 -51.644568857513725 78.1222 0.1144 6921 +6923 2 -36.64335617766207 -50.70676378041459 78.6842 0.1144 6922 +6924 2 -37.555444234497855 -50.87995017378653 80.0845 0.1144 6923 +6925 2 -38.04057717011719 -50.27353855412119 82.32 0.1144 6924 +6926 2 -38.301755913909034 -49.972265545147735 84.9318 0.1144 6925 +6927 2 -38.97549050616175 -50.13330336308123 86.9772 0.1144 6926 +6928 2 -39.8783363963729 -50.23835471646191 88.3859 0.1144 6927 +6929 2 -40.805305482774656 -51.165035517433196 89.4715 0.1144 6928 +6930 2 -41.7737024143056 -51.348123132535605 90.3199 0.1144 6929 +6931 2 -42.773024948153164 -51.50598498843542 91.0498 0.1144 6930 +6932 2 -43.81091372223182 -52.298620720697514 91.6868 0.1144 6931 +6933 2 -44.91592313891729 -52.08638705586962 92.3149 0.1144 6932 +6934 2 -45.90038898238262 -52.04333451610286 93.0989 0.1144 6933 +6935 2 -46.82804100292708 -51.15719884502322 93.8392 0.1144 6934 +6936 2 -47.751239567690476 -50.291118407260655 94.6014 0.1144 6935 +6937 2 -48.60037541207882 -49.71910549273487 95.9165 0.1144 6936 +6938 2 -19.353449426599894 -87.62946685945072 68.1895 0.1144 6887 +6939 2 -20.471243281384517 -87.25807370876998 68.2559 0.1144 6938 +6940 2 -21.59101719378964 -86.88940630013997 68.2758 0.1144 6939 +6941 2 -22.67376915144169 -86.90889743919979 68.2755 0.1144 6940 +6942 2 -23.754476480698656 -86.04612576965827 68.2525 0.1144 6941 +6943 2 -24.867714569101423 -85.62001980895313 68.1982 0.1144 6942 +6944 2 -25.97948095146606 -85.7446684084837 68.0991 0.1144 6943 +6945 2 -27.052579493220264 -84.90990225935484 67.9728 0.1144 6944 +6946 2 -28.142404961148145 -84.2703948823607 67.8384 0.1144 6945 +6947 2 -29.26035768920707 -84.57011959335132 67.5727 0.1144 6946 +6948 2 -30.350420315578248 -83.85244563942506 66.9763 0.1144 6947 +6949 2 -31.397698013019067 -83.70700508182543 66.103 0.1144 6948 +6950 2 -31.786816209285007 -85.09195714835325 64.6122 0.1144 6949 +6951 2 -31.77625871186069 -86.03425050145195 63.1856 0.1144 6950 +6952 2 -32.46687940533522 -86.09051378394895 61.1397 0.1144 6951 +6953 2 -9.811803983577704 -107.24134962261833 70.7286 0.1144 6834 +6954 2 -10.09271214915637 -108.06402254098815 69.6892 0.1144 6953 +6955 2 -10.756769288101225 -109.1657613718997 68.6456 0.1144 6954 +6956 2 -10.316383729551376 -109.41663162618158 66.9166 0.1144 6955 +6957 2 -10.030565932465379 -110.5043011189859 65.6174 0.1144 6956 +6958 2 -9.883186516298764 -111.59720600591648 64.566 0.1144 6957 +6959 2 -9.937486300456015 -112.5877532237618 63.5793 0.1144 6958 +6960 2 -10.096290785669169 -113.28387751894725 61.983 0.1144 6959 +6961 2 -10.412049516004231 -112.5570324515508 60.6889 0.1144 6960 +6962 2 -10.709028079557754 -111.93689464991458 59.8167 0.1144 6961 +6963 2 -10.613392538823746 -110.58200466519057 59.1338 0.1144 6962 +6964 2 -10.319047235872631 -109.17773333125307 58.567 0.1144 6963 +6965 2 -10.613723088738908 -108.25751633303497 58.0754 0.1144 6964 +6966 2 -11.115189115076532 -107.97715106400302 57.6988 0.1144 6965 +6967 2 -11.373916686911798 -107.01837728450079 57.4129 0.1144 6966 +6968 2 -11.433509822657868 -105.87984790479605 57.2186 0.1144 6967 +6969 2 -11.124637289104669 -104.41467187924333 57.1668 0.1144 6968 +6970 2 -10.468222173147637 -103.06241955085228 57.2496 0.1144 6969 +6971 2 -10.232963660665547 -102.12517100434236 57.3378 0.1144 6970 +6972 2 -10.23722219075708 -101.01927840171714 57.4204 0.1144 6971 +6973 2 -10.322037825976281 -99.88630265597706 57.5033 0.1144 6972 +6974 2 -10.352717853300476 -98.77932865010689 57.5453 0.1144 6973 +6975 2 -9.990388750907897 -97.93143182876354 57.4991 0.1144 6974 +6976 2 -9.50647344079593 -96.35358225987342 57.3846 0.1144 6975 +6977 2 -9.1564417395318 -94.96902116020462 57.1494 0.1144 6976 +6978 2 -9.251042933378102 -93.86511883807381 56.7848 0.1144 6977 +6979 2 -9.494850042703177 -92.78878795285762 56.4878 0.1144 6978 +6980 2 -9.59275643856995 -91.70631704837713 56.2713 0.1144 6979 +6981 2 -9.85745922368676 -90.8821154202248 56.0689 0.1144 6980 +6982 2 -10.044515488714893 -89.9303245589518 55.7628 0.1144 6981 +6983 2 -10.017634182493993 -88.66990155001851 55.4372 0.1144 6982 +6984 2 -9.538610100904037 -87.37823543064127 55.1174 0.1144 6983 +6985 2 -8.962582994752069 -86.70721848829764 54.712 0.1144 6984 +6986 2 -8.703264264703535 -85.77988310625376 54.1512 0.1144 6985 +6987 2 -7.915650555930995 -85.37635672662049 53.6161 0.1144 6986 +6988 2 -6.963626662620612 -84.24571721460833 53.1054 0.1144 6987 +6989 2 -6.0084444307014735 -83.95181411579708 52.5526 0.1144 6988 +6990 2 -5.904690353831057 -83.70034726760824 49.6415 0.1144 6989 +6991 2 -5.670502715261591 -83.17889026916446 47.4093 0.1144 6990 +6992 2 -4.935747621251181 -82.97073309069798 45.7901 0.1144 6991 +6993 2 -4.100297478993866 -82.44639357614582 44.2366 0.1144 6992 +6994 2 -3.0831431160711134 -82.55896958246385 43.0332 0.1144 6993 +6995 2 -2.042027833588861 -83.00520338864474 42.0524 0.1144 6994 +6996 2 -1.0084950108052055 -82.66825778304111 41.256 0.1144 6995 +6997 2 -0.018699953292639293 -81.95227678697229 40.4905 0.1144 6996 +6998 2 0.7641614706935798 -81.60133123349972 39.6329 0.1144 6997 +6999 2 1.5354682037675786 -81.18110906420048 38.9295 0.1144 6998 +7000 2 2.5588834981300863 -80.141006808269 38.3354 0.1144 6999 +7001 2 3.6722478278693984 -80.55468029189258 37.7681 0.1144 7000 +7002 2 4.727588114298612 -80.74811786370273 37.0115 0.1144 7001 +7003 2 5.20608612871473 -79.52872411028994 36.4403 0.1144 7002 +7004 2 5.939011130099431 -78.36446137807229 36.0811 0.1144 7003 +7005 2 6.192848982280964 -78.14500142961069 34.7556 0.1144 7004 +7006 2 6.63504351965085 -77.69409135828913 32.7709 0.1144 7005 +7007 2 7.249988735703482 -77.23659675583853 31.3964 0.1144 7006 +7008 2 8.143704175607496 -76.91122538110346 30.2607 0.1144 7007 +7009 2 9.064068753653942 -76.899914838188 28.9696 0.1144 7008 +7010 2 10.075281547228144 -77.67883844425486 28.0246 0.1144 7009 +7011 2 11.110456959186678 -78.47038490396638 27.2242 0.1144 7010 +7012 2 11.96297519548682 -77.13119806502071 26.5147 0.1144 7011 +7013 2 12.184244856176804 -76.18010486087239 25.802 0.1144 7012 +7014 2 6.304599372833337 -78.52579076768588 35.9786 0.1144 7004 +7015 2 7.438599988010367 -79.11078243423233 35.8212 0.1144 7014 +7016 2 8.535664853279343 -78.6680530299931 35.8481 0.1144 7015 +7017 2 9.653716790356043 -78.58060737432243 36.0203 0.1144 7016 +7018 2 10.63545104669447 -79.44251605063948 36.2628 0.1144 7017 +7019 2 11.707764734468014 -79.29089851732388 36.6201 0.1144 7018 +7020 2 12.725891365832808 -78.79697153137946 37.1552 0.1144 7019 +7021 2 13.763674023212815 -77.94933073854514 37.564 0.1144 7020 +7022 2 14.807914112751973 -77.72819466661501 37.8694 0.1144 7021 +7023 2 15.855764341786852 -77.73873913096492 38.0909 0.1144 7022 +7024 2 16.959796600633013 -76.98916227019929 38.2466 0.1144 7023 +7025 2 18.06913183471164 -77.04993994332648 38.3505 0.1144 7024 +7026 2 19.179095458543117 -77.24898140417739 38.4322 0.1144 7025 +7027 2 20.260204134483672 -76.28622006111989 38.5678 0.1144 7026 +7028 2 21.323034087544244 -76.32168404808404 38.7565 0.1144 7027 +7029 2 22.391880598439883 -76.38990091805947 38.9486 0.1144 7028 +7030 2 23.457389772814565 -75.38557887949084 39.1922 0.1144 7029 +7031 2 24.569363481494207 -75.62383413954497 39.499 0.1144 7030 +7032 2 25.652399458479607 -75.73425038149345 39.8247 0.1144 7031 +7033 2 26.686116381357152 -74.67079031426724 40.1475 0.1144 7032 +7034 2 27.783371549886283 -74.82536482668867 40.4519 0.1144 7033 +7035 2 28.887007475241205 -75.01367233283457 40.7341 0.1144 7034 +7036 2 30.00295552240729 -74.21380791629804 40.9982 0.1144 7035 +7037 2 31.130141011374207 -74.50057486414882 41.1774 0.1144 7036 +7038 2 32.2595563298147 -74.70357007320801 41.2812 0.1144 7037 +7039 2 33.15873893319147 -73.14071482874526 41.3204 0.1144 7038 +7040 2 34.03142005534173 -72.78405318891794 41.2863 0.1144 7039 +7041 2 34.97857013394801 -72.54968153821781 41.1925 0.1144 7040 +7042 2 36.017595542687616 -71.52239672052902 41.0533 0.1144 7041 +7043 2 37.124483611713686 -71.70191067474596 40.906 0.1144 7042 +7044 2 38.259792650009416 -71.05317186968365 40.7831 0.1144 7043 +7045 2 39.39192453312046 -71.58327672442107 40.6456 0.1144 7044 +7046 2 40.472663996877884 -72.28172657625193 40.4281 0.1144 7045 +7047 2 41.568099786560055 -72.06474813028593 40.1232 0.1144 7046 +7048 2 42.690661730113106 -72.65965692618208 39.7603 0.1144 7047 +7049 2 43.80554131241314 -73.14452030597444 39.3974 0.1144 7048 +7050 2 44.91311602071235 -72.98344449624551 39.0715 0.1144 7049 +7051 2 46.02346306285159 -73.64883639466376 38.733 0.1144 7050 +7052 2 47.11317550639998 -73.67596866223599 38.2707 0.1144 7051 +7053 2 47.65178262548275 -72.21995707364107 37.8736 0.1144 7052 +7054 2 48.05577403831276 -71.3675989322131 37.5578 0.1144 7053 +7055 2 48.454192774518674 -70.50719888680248 37.2848 0.1144 7054 +7056 2 49.446735116466016 -70.43292199254617 36.9796 0.1144 7055 +7057 2 50.566619856988495 -69.75380254511451 36.6562 0.1144 7056 +7058 2 51.68765423634463 -69.99267366908587 36.3062 0.1144 7057 +7059 2 52.80771866731601 -70.26132561734332 35.9162 0.1144 7058 +7060 2 53.9268459769396 -69.58101817740072 35.4976 0.1144 7059 +7061 2 54.98754911564211 -69.61995558358196 35.0521 0.1144 7060 +7062 2 55.98966208968409 -69.51170515075265 34.5951 0.1144 7061 +7063 2 56.987638164519865 -68.44331314905475 34.1418 0.1144 7062 +7064 2 57.98757367490097 -68.32362364772588 33.7042 0.1144 7063 +7065 2 58.98718952712417 -68.19553928637582 33.2934 0.1144 7064 +7066 2 59.67399496817083 -67.0880364561194 32.9748 0.1144 7065 +7067 2 60.16191744380629 -65.86782472403114 32.7625 0.1144 7066 +7068 2 60.65278884214757 -65.06423560188865 32.6334 0.1144 7067 +7069 2 61.142370633946086 -64.12486458594566 32.5654 0.1144 7068 +7070 2 61.63261364253455 -62.61822642529244 32.5332 0.1144 7069 +7071 2 32.50416902130564 -75.0128624459131 41.7886 0.1144 7038 +7072 2 32.49498871519967 -76.09848076175804 43.0564 0.1144 7071 +7073 2 31.60026387628156 -75.8868671515661 43.9186 0.1144 7072 +7074 2 30.814141204681135 -74.95719603672556 45.1385 0.1144 7073 +7075 2 29.81079458836527 -74.11376679831389 45.8452 0.1144 7074 +7076 2 28.771055809807393 -74.29802280336604 46.2636 0.1144 7075 +7077 2 27.75681882095222 -73.38626252480978 46.578 0.1144 7076 +7078 2 26.789028561821254 -72.4263290006613 46.8126 0.1144 7077 +7079 2 25.825325245130188 -72.15859226571615 47.0033 0.1144 7078 +7080 2 24.906608571224695 -71.4434094947474 47.238 0.1144 7079 +7081 2 24.039289809617486 -70.41091914850102 47.7002 0.1144 7080 +7082 2 23.180114420203353 -69.38162063383484 48.172 0.1144 7081 +7083 2 22.1427290016355 -69.51151141408083 48.4655 0.1144 7082 +7084 2 21.027851828381927 -68.87233216028464 48.7749 0.1144 7083 +7085 2 20.015439226423467 -68.96395011285469 49.1159 0.1144 7084 +7086 2 19.19925258278795 -70.10428885892067 49.9215 0.1144 7085 +7087 2 -5.737843404267551 -83.19918456950344 52.071 0.1144 6989 +7088 2 -5.226921362929687 -82.4566334698572 51.6426 0.1144 7087 +7089 2 -4.277024283977312 -81.9069926491797 51.2733 0.1144 7088 +7090 2 -3.219899150269981 -81.2620106649151 50.9144 0.1144 7089 +7091 2 -2.4088005553344374 -80.89584727907078 50.3068 0.1144 7090 +7092 2 -3.3169995732079087 -79.88017166018265 50.3342 0.1144 7091 +7093 2 -4.194385906470046 -79.10647164174065 50.5814 0.1144 7092 +7094 2 -4.935041415232149 -78.75930790315692 50.729 0.1144 7093 +7095 2 -5.488630555570182 -77.55633303706314 50.8388 0.1144 7094 +7096 2 -6.251946764537763 -76.46479748137821 50.9135 0.1144 7095 +7097 2 -7.200548211759866 -75.45835188696327 50.9972 0.1144 7096 +7098 2 -8.154992036997754 -75.45636699440718 50.9586 0.1144 7097 +7099 2 -9.205647214125378 -74.64381967756337 50.808 0.1144 7098 +7100 2 -10.331243965770625 -74.0099422855407 50.7805 0.1144 7099 +7101 2 -11.468857822026422 -74.47232195273702 50.9074 0.1144 7100 +7102 2 -12.584454781048805 -73.78719273288078 51.1134 0.1144 7101 +7103 2 -13.511185093464746 -73.80065001779099 51.3089 0.1144 7102 +7104 2 -14.307477043773645 -72.68106890993555 51.4903 0.1144 7103 +7105 2 -15.432404676637873 -72.23425073510667 51.6426 0.1144 7104 +7106 2 -16.519571349663238 -72.8681613030248 51.7359 0.1144 7105 +7107 2 -17.626588459835403 -72.99169302251528 51.7961 0.1144 7106 +7108 2 -18.767000267513765 -72.60143106218264 51.8762 0.1144 7107 +7109 2 -19.904763680316506 -73.11175680498442 52.1651 0.1144 7108 +7110 2 -2.3341854280032237 -81.01981485010026 50.2244 0.1144 7091 +7111 2 -1.6124285143574753 -82.14571175792122 49.5127 0.1144 7110 +7112 2 -0.7241380941617308 -82.24290854897336 48.946 0.1144 7111 +7113 2 0.32459529255069697 -82.88953165716264 48.503 0.1144 7112 +7114 2 1.4352807917387906 -83.60856876932436 48.1569 0.1144 7113 +7115 2 2.5594051448093467 -83.29435556028977 47.8766 0.1144 7114 +7116 2 3.6867114711575653 -83.50531454184198 47.6403 0.1144 7115 +7117 2 4.784272269698505 -83.69901414077061 47.4222 0.1144 7116 +7118 2 5.880353158436577 -82.82769981728397 47.0123 0.1144 7117 +7119 2 6.930768377311551 -83.51862475974929 46.1686 0.1144 7118 +7120 2 7.875687419349617 -84.44960306642487 45.3043 0.1144 7119 +7121 2 8.722943918860807 -85.21183086662649 44.3526 0.1144 7120 +7122 2 9.680225027498153 -84.88805680348082 43.251 0.1144 7121 +7123 2 10.718621052174683 -85.13307095154352 42.1879 0.1144 7122 +7124 2 11.761481837980057 -85.3285119870081 41.286 0.1144 7123 +7125 2 12.81851047348971 -84.36837316286683 40.53 0.1144 7124 +7126 2 13.917027914469088 -84.27267557932157 39.8373 0.1144 7125 +7127 2 15.03811024999294 -84.07173489843481 39.293 0.1144 7126 +7128 2 15.003030618741064 -84.00370121512408 37.3223 0.1144 7127 +7129 2 14.848064824961142 -84.02574997671908 34.5898 0.1144 7128 +7130 2 14.94937804091262 -84.77934341308753 32.844 0.1144 7129 +7131 2 15.109756821710732 -85.79786372179166 31.7075 0.1144 7130 +7132 2 15.22091997196452 -86.85320780206752 30.6379 0.1144 7131 +7133 2 15.308925482452537 -87.92088191666832 29.6932 0.1144 7132 +7134 2 15.764251717139814 -89.03898593145841 28.6832 0.1144 7133 +7135 2 14.93853068948843 -88.90635321686977 27.5497 0.1144 7134 +7136 2 14.221671699261208 -90.05793084054278 26.5402 0.1144 7135 +7137 2 14.748362918207107 -90.32605926091533 25.5721 0.1144 7136 +7138 2 14.668466532996263 -91.49013231339545 24.6888 0.1144 7137 +7139 2 13.836521212746902 -92.54060461617583 23.8888 0.1144 7138 +7140 2 12.757581405939504 -92.60380051066997 23.05 0.1144 7139 +7141 2 12.207398973869289 -93.72000143914912 22.2378 0.1144 7140 +7142 2 12.425533499344084 -94.83959027875191 21.5144 0.1144 7141 +7143 2 12.687553961563651 -95.63746540621777 20.8843 0.1144 7142 +7144 2 13.247479004142917 -95.86128061880785 20.2564 0.1144 7143 +7145 2 14.17671194900717 -96.95954928349637 19.9906 0.1144 7144 +7146 2 15.137830541983192 -96.90656346539065 19.8838 0.1144 7145 +7147 2 16.05530446452906 -97.80368632221092 19.8718 0.1144 7146 +7148 2 16.842727746246396 -98.99555126018805 19.9268 0.1144 7147 +7149 2 17.94183493753829 -99.65662122325163 20.0255 0.1144 7148 +7150 2 19.071352969320685 -99.1189240994365 20.2112 0.1144 7149 +7151 2 20.201952878589793 -99.60578647285249 20.5339 0.1144 7150 +7152 2 21.333773621059464 -99.88509383614263 20.8149 0.1144 7151 +7153 2 22.467950825102207 -99.61636094033598 21.0279 0.1144 7152 +7154 2 23.55079658781679 -100.52634158926433 21.1778 0.1144 7153 +7155 2 24.692233811275827 -100.41915857119542 21.2695 0.1144 7154 +7156 2 25.725633485041982 -99.73514917006663 21.3147 0.1144 7155 +7157 2 15.448166567588657 -83.69256164695841 39.3078 0.1144 7127 +7158 2 16.094155423529656 -83.08964551098548 39.7393 0.1144 7157 +7159 2 16.720648121040085 -82.51889397670267 40.8442 0.1144 7158 +7160 2 17.373830614416676 -81.04428894213693 42.3783 0.1144 7159 +7161 2 18.070996643720207 -80.70794781299689 43.862 0.1144 7160 +7162 2 18.875882565157326 -80.70739412395928 45.4796 0.1144 7161 +7163 2 19.80150287249006 -81.17647119494198 47.1128 0.1144 7162 +7164 2 20.73360284389284 -80.43775875569834 48.7189 0.1144 7163 +7165 2 21.449370746580342 -80.46493677845835 50.615 0.1144 7164 +7166 2 21.247021012739168 -79.96665982055922 52.9004 0.1144 7165 +7167 2 20.756054926842125 -79.1593016686921 54.8814 0.1144 7166 +7168 2 20.710981510469935 -78.19444306331478 56.285 0.1144 7167 +7169 2 20.637793855824526 -77.18909282169132 57.5352 0.1144 7168 +7170 2 20.648792244693595 -76.1988982720966 58.7034 0.1144 7169 +7171 2 20.787832888367916 -75.24909664523243 59.7621 0.1144 7170 +7172 2 21.02814180441993 -74.33959333381037 60.7079 0.1144 7171 +7173 2 21.289613688608767 -73.43368236685097 61.5891 0.1144 7172 +7174 2 21.524388265703323 -72.50914630756854 62.4389 0.1144 7173 +7175 2 21.74588688107181 -71.56754946835039 63.2705 0.1144 7174 +7176 2 21.964712478292398 -70.62058614051627 64.0945 0.1144 7175 +7177 2 22.33725360670516 -69.61083541071203 64.9029 0.1144 7176 +7178 2 22.814999700851956 -68.05674967298118 65.6916 0.1144 7177 +7179 2 23.30561611848421 -67.30018538933993 66.4793 0.1144 7178 +7180 2 23.64492583231015 -66.44916126078675 67.4139 0.1144 7179 +7181 2 23.86220374069586 -65.54012024082412 68.511 0.1144 7180 +7182 2 24.039519999360834 -64.62773399216026 69.6856 0.1144 7181 +7183 2 23.809773314979452 -63.541570702749596 70.7073 0.1144 7182 +7184 2 23.34734653769752 -62.42601056607172 71.5582 0.1144 7183 +7185 2 22.892000071697964 -61.332193152301315 72.5287 0.1144 7184 +7186 2 22.290468186077135 -60.26826707462137 73.4908 0.1144 7185 +7187 2 21.69779945841819 -59.77813784771418 74.4582 0.1144 7186 +7188 2 21.354895745658126 -58.93616719142047 75.4298 0.1144 7187 +7189 2 21.114623485568615 -57.84532048848907 76.4218 0.1144 7188 +7190 2 20.875291448409996 -56.76283820090871 77.4514 0.1144 7189 +7191 2 20.437065548940268 -55.683988460097126 78.5212 0.1144 7190 +7192 2 19.335591283263938 -55.234607353948014 77.7857 0.1144 7191 +7193 2 18.239377245508393 -55.39434439457221 77.0036 0.1144 7192 +7194 2 17.138943507058343 -55.61031195986743 76.6228 0.1144 7193 +7195 2 16.04190808315471 -55.508738462612286 76.1732 0.1144 7194 +7196 2 14.951095626102102 -55.99856653067569 75.6582 0.1144 7195 +7197 2 13.922567659767225 -56.09189622335446 74.6018 0.1144 7196 +7198 2 20.564906183159536 -55.50274308420496 79.8291 0.1144 7191 +7199 2 20.97923285075254 -54.92516356380844 81.7085 0.1144 7198 +7200 2 21.36270238759755 -54.04322165160493 83.7399 0.1144 7199 +7201 2 21.728407963388662 -53.14738767320882 85.8544 0.1144 7200 +7202 2 22.08596155477389 -52.643856424766554 88.0079 0.1144 7201 +7203 2 22.23080732209698 -52.010367893864746 90.1415 0.1144 7202 +7204 2 22.071835268114427 -51.20152199240688 92.1085 0.1144 7203 +7205 2 21.82606842147038 -50.33840998718283 93.9742 0.1144 7204 +7206 2 21.575213526126362 -49.45992095971015 95.7891 0.1144 7205 +7207 2 21.319322947895017 -48.56555971041478 97.5517 0.1144 7206 +7208 2 20.609825488473945 -48.445580532679784 99.1992 0.1144 7207 +7209 2 19.633023598133605 -48.074469840203456 100.5542 0.1144 7208 +7210 2 18.616134118509564 -47.63492338706167 101.7825 0.1144 7209 +7211 2 17.58468217219982 -47.510892058046 102.9389 0.1144 7210 +7212 2 16.544314702115457 -47.39236564938182 104.0466 0.1144 7211 +7213 2 15.500868575642613 -46.9449070185593 105.1277 0.1144 7212 +7214 2 14.454801796834602 -46.68706932811513 106.2029 0.1144 7213 +7215 2 13.406118065114754 -46.74771636321151 107.2954 0.1144 7214 +7216 2 12.392589645669915 -46.648050153745835 108.4098 0.1144 7215 +7217 2 11.39446741764391 -46.73785510615961 109.5419 0.1144 7216 +7218 2 10.397813794072931 -47.32437340497101 110.6885 0.1144 7217 +7219 2 9.403610437137559 -47.491816668606766 111.846 0.1144 7218 +7220 2 8.411399342784563 -48.00842132380435 113.0125 0.1144 7219 +7221 2 7.42009254274231 -48.014726436648516 114.1865 0.1144 7220 +7222 2 6.430521639500228 -48.028860088895925 115.3681 0.1144 7221 +7223 2 5.443348637081016 -48.702562363767356 116.5601 0.1144 7222 +7224 2 4.458187436019898 -48.71436536792511 117.766 0.1144 7223 +7225 2 3.475922791851815 -48.71355361743836 118.9905 0.1144 7224 +7226 2 2.4987814324673536 -49.40268631954286 120.2365 0.1144 7225 +7227 2 1.52818610144854 -49.12724756088872 121.6396 0.1144 7226 +7228 2 0.7191593680331891 -48.409793703234264 123.1152 0.1144 7227 +7229 2 -0.036610623607657544 -47.636887750507384 124.6344 0.1144 7228 +7230 2 -0.7823544828434592 -47.480186296716965 126.1982 0.1144 7229 +7231 2 -1.553564895698429 -46.73365023357904 127.8054 0.1144 7230 +7232 2 -2.4302040201099544 -46.18807856792572 129.4241 0.1144 7231 +7233 2 -3.321757498561709 -45.67404514768995 131.0616 0.1144 7232 +7234 2 -4.207429568794424 -45.8097259099239 132.7208 0.1144 7233 +7235 2 -5.085175602412903 -45.314893902817566 134.4064 0.1144 7234 +7236 2 -5.920463557028484 -44.80412869659006 136.1909 0.1144 7235 +7237 2 -6.484967290437027 -44.23426455328147 138.341 0.1144 7236 +7238 2 -6.930973375104344 -43.84146298790076 140.6625 0.1144 7237 +7239 2 -7.360674893119722 -43.64225738996409 143.0187 0.1144 7238 +7240 2 -7.782532465787568 -43.17578367652686 145.3942 0.1144 7239 +7241 2 -8.20033050711919 -42.63655641860459 147.777 0.1144 7240 +7242 2 -8.622135713974302 -42.095290082842155 150.1531 0.1144 7241 +7243 2 -9.050056794356607 -41.552197479891554 152.5149 0.1144 7242 +7244 2 -9.538911780888554 -41.008908042015435 154.8016 0.1144 7243 +7245 2 -10.258117117314924 -40.55172812754311 156.8165 0.1144 7244 +7246 2 -11.060673005950406 -40.540383280948234 158.6665 0.1144 7245 +7247 2 -11.891249422492933 -40.014371730264855 160.4249 0.1144 7246 +7248 2 -12.75440455434881 -39.45742502775528 162.0732 0.1144 7247 +7249 2 -13.58498097089128 -38.99267408114753 163.791 0.1144 7248 +7250 2 -14.24495816406639 -39.06718951519425 165.9941 0.1144 7249 +7251 2 -11.792894736590995 -109.59720494616863 70.2268 0.1144 6955 +7252 2 -12.754200744028338 -109.43774431464131 71.3406 0.1144 7251 +7253 2 -13.318442801831395 -109.97586241088884 71.9984 0.1144 7252 +7254 2 -13.545055491930384 -110.95442925856537 71.9071 0.1144 7253 +7255 2 -13.825269897770681 -112.61775716133906 71.4347 0.1144 7254 +7256 2 -14.191121537762768 -114.19654191332046 70.8103 0.1144 7255 +7257 2 -14.687169971773471 -114.86077572328733 70.0902 0.1144 7256 +7258 2 -15.491773489419785 -115.08160631542604 69.3302 0.1144 7257 +7259 2 -16.41515156665352 -115.12376576551603 68.5849 0.1144 7258 +7260 2 -17.342975274688342 -116.77628925191415 67.856 0.1144 7259 +7261 2 -18.27187366273344 -116.80379325976959 67.1345 0.1144 7260 +7262 2 -19.21900081689236 -116.78971092431367 66.3972 0.1144 7261 +7263 2 -20.217350993308514 -118.22876575670459 65.6065 0.1144 7262 +7264 2 -21.208744388958777 -118.33556951029708 64.8449 0.1144 7263 +7265 2 -22.09092937045996 -118.49716084317916 64.2527 0.1144 7264 +7266 2 -22.950593998249502 -119.30044410700341 63.8523 0.1144 7265 +7267 2 -23.818548861643976 -120.82554868942435 63.9254 0.1144 7266 +7268 2 -24.606026018042243 -120.9959496013063 65.163 0.1144 7267 +7269 2 -25.35788385631666 -121.15694462023616 66.7078 0.1144 7268 +7270 2 -26.189382886308593 -122.24001247316346 67.8874 0.1144 7269 +7271 2 -27.049700527123264 -123.25397585752539 68.8943 0.1144 7270 +7272 2 -27.892370936393988 -123.42760857709057 69.8228 0.1144 7271 +7273 2 -28.690966413721668 -123.7298571875168 70.8058 0.1144 7272 +7274 2 -29.51653097714521 -125.45985108995839 71.9202 0.1144 7273 +7275 2 -30.406732083214592 -125.73779469176482 73.071 0.1144 7274 +7276 2 -31.44552203233586 -125.27129418311226 74.0914 0.1144 7275 +7277 2 -32.53859925317197 -125.62535639147126 74.9146 0.1144 7276 +7278 2 -33.64579575201931 -125.58142083552244 75.6137 0.1144 7277 +7279 2 -34.76441040708973 -124.81588108837269 76.1958 0.1144 7278 +7280 2 -35.89071663346624 -125.5241429682397 76.6797 0.1144 7279 +7281 2 -37.0226893415293 -125.10665597116284 77.0896 0.1144 7280 +7282 2 -38.15719750907779 -124.29696589059651 77.4432 0.1144 7281 +7283 2 -39.29447560141983 -125.38575263023209 77.7434 0.1144 7282 +7284 2 -40.43180124148162 -124.53178241536202 77.9607 0.1144 7283 +7285 2 -41.55754175495561 -125.44106032727143 78.0055 0.1144 7284 +7286 2 -42.666285640864174 -124.36617537412042 77.8607 0.1144 7285 +7287 2 -43.78080722733968 -123.35753050966917 77.6026 0.1144 7286 +7288 2 -44.8813248505775 -124.63999839256782 77.3427 0.1144 7287 +7289 2 -45.81315503159928 -124.6915456628314 77.2002 0.1144 7288 +7290 2 -46.560066475729556 -125.21746378835095 77.2153 0.1144 7289 +7291 2 -47.28973623186005 -126.74669333480668 77.3682 0.1144 7290 +7292 2 -48.10822248459972 -127.85231749886334 77.6182 0.1144 7291 +7293 2 -49.12744541236023 -127.61148435402535 77.91 0.1144 7292 +7294 2 -50.2631932296852 -127.39647452727183 78.192 0.1144 7293 +7295 2 -51.39946131946587 -127.88269745333803 78.451 0.1144 7294 +7296 2 -52.536751723444084 -127.03409671855813 78.6974 0.1144 7295 +7297 2 -53.66205786753383 -127.29317425829231 78.9673 0.1144 7296 +7298 2 -54.73885444047558 -127.86502335119465 79.3061 0.1144 7297 +7299 2 -55.76958961361028 -127.70073170601844 79.7126 0.1144 7298 +7300 2 -56.85166313575398 -128.33602694111804 80.1256 0.1144 7299 +7301 2 -57.9779871843962 -128.30365469041953 80.4748 0.1144 7300 +7302 2 -59.099987824691866 -127.30332299605946 80.7472 0.1144 7301 +7303 2 -60.22346327260868 -127.71437688185352 80.953 0.1144 7302 +7304 2 -61.34594923336495 -127.19928885864064 81.1079 0.1144 7303 +7305 2 -62.47165140917231 -126.2601489467889 81.2358 0.1144 7304 +7306 2 -63.59609680547396 -126.89875736902691 81.3627 0.1144 7305 +7307 2 -64.72014827733085 -126.07353838867289 81.5066 0.1144 7306 +7308 2 -65.84370891809748 -125.12878826062754 81.676 0.1144 7307 +7309 2 -66.97238363359463 -126.03729300017503 81.9022 0.1144 7308 +7310 2 -68.10499773558328 -125.18138494185172 82.2108 0.1144 7309 +7311 2 -69.23502642132033 -124.28839142801091 82.5916 0.1144 7310 +7312 2 -70.36233754807651 -125.29870549059372 83.0242 0.1144 7311 +7313 2 -71.46927357327029 -124.85011399617561 83.4742 0.1144 7312 +7314 2 -72.52154581612226 -126.34402206342126 83.9068 0.1144 7313 +7315 2 -73.56074781372764 -126.15294743209647 84.3206 0.1144 7314 +7316 2 -74.65376786834308 -125.7326559489913 84.7725 0.1144 7315 +7317 2 -75.77870781284348 -126.6493630229246 85.2729 0.1144 7316 +7318 2 -76.90417072293465 -125.8595215010433 85.7752 0.1144 7317 +7319 2 -78.0305553411544 -125.74703021303966 86.2565 0.1144 7318 +7320 2 -79.15764502446018 -126.32962108019602 86.6933 0.1144 7319 +7321 2 -80.28024422238038 -125.76008106067243 86.8588 0.1144 7320 +7322 2 -81.376741267474 -126.36806493007312 86.6233 0.1144 7321 +7323 2 -82.33415612867617 -126.92667931230129 85.2592 0.1144 7322 +7324 2 -2.5395198757685193 -101.25675066782031 77.6087 0.1144 6825 +7325 2 -1.8199373242005095 -102.3240040487464 76.8662 0.1144 7324 +7326 2 -1.0179108290843715 -103.5188150397307 76.5111 0.1144 7325 +7327 2 -0.13027241562556924 -104.67962864060338 76.1978 0.1144 7326 +7328 2 0.9036794523123888 -104.22499561707964 75.8792 0.1144 7327 +7329 2 2.017354620919548 -105.01459103247295 75.544 0.1144 7328 +7330 2 3.1185632930755673 -105.86649545392808 75.1467 0.1144 7329 +7331 2 4.096102489676838 -105.63036802635594 74.5825 0.1144 7330 +7332 2 4.962563214316162 -106.56288554918842 73.8251 0.1144 7331 +7333 2 5.850312846655328 -107.6725669605796 73.0414 0.1144 7332 +7334 2 6.7764024576822806 -108.76948400236256 72.3355 0.1144 7333 +7335 2 7.7200089687302125 -108.35419575613368 71.7066 0.1144 7334 +7336 2 8.668592593686554 -109.45053679646873 71.1446 0.1144 7335 +7337 2 9.622266676389359 -110.56098653578428 70.6378 0.1144 7336 +7338 2 10.68657563393191 -110.38230412873375 70.1252 0.1144 7337 +7339 2 11.805508230650304 -110.66414582121328 69.5724 0.1144 7338 +7340 2 12.92428165232073 -111.29384435509509 68.9732 0.1144 7339 +7341 2 14.037270572417668 -110.51741178499567 68.3374 0.1144 7340 +7342 2 15.150292319551681 -110.99827312127076 67.6822 0.1144 7341 +7343 2 16.261139704607984 -110.08478031687265 67.0197 0.1144 7342 +7344 2 17.37098218928446 -110.64329719305331 66.365 0.1144 7343 +7345 2 18.464706616449433 -111.05510734787939 65.7325 0.1144 7344 +7346 2 19.54753756949202 -109.86562515259642 65.1367 0.1144 7345 +7347 2 20.63031856576842 -110.18625874743704 64.6016 0.1144 7346 +7348 2 21.72835578846872 -110.59496684794986 64.027 0.1144 7347 +7349 2 22.801208156825965 -109.4297262334904 63.3063 0.1144 7348 +7350 2 23.78765416402183 -109.51136349403511 62.545 0.1144 7349 +7351 2 24.74231963351633 -109.51589217452123 61.7924 0.1144 7350 +7352 2 25.699605755346028 -108.01604806380404 61.0644 0.1144 7351 +7353 2 26.67427973605072 -108.03592892532107 60.4551 0.1144 7352 +7354 2 27.690701912579186 -108.1073178890057 60.1798 0.1144 7353 +7355 2 28.773121811447936 -106.93046602409224 60.1384 0.1144 7354 +7356 2 29.915062177633416 -107.54513550135576 60.0762 0.1144 7355 +7357 2 31.055196080155383 -108.223756232888 59.8973 0.1144 7356 +7358 2 32.18180214182544 -107.44696884408913 59.5087 0.1144 7357 +7359 2 33.263855841104885 -107.86541000780426 58.9632 0.1144 7358 +7360 2 34.30891562994529 -108.0587807940509 58.3906 0.1144 7359 +7361 2 35.34714837170242 -106.73506857300059 57.8385 0.1144 7360 +7362 2 36.38943754321278 -106.89443816478929 57.3336 0.1144 7361 +7363 2 37.43595741899176 -107.06233531845068 56.8904 0.1144 7362 +7364 2 38.49857003647335 -105.7790867058347 56.5816 0.1144 7363 +7365 2 39.571605812387986 -105.88674331001478 56.406 0.1144 7364 +7366 2 40.6460695407406 -104.73771801590036 56.3122 0.1144 7365 +7367 2 41.64046761058114 -104.74520724939096 56.1344 0.1144 7366 +7368 2 42.362402639645865 -104.33685948825635 55.5736 0.1144 7367 +7369 2 42.577762652703456 -104.4478737512339 55.288 0.1144 7368 +7370 2 43.68556971903794 -103.58536881175155 54.6669 0.1144 7369 +7371 2 44.80446467062623 -104.2754545385377 54.1677 0.1144 7370 +7372 2 45.91621563977159 -104.99542506553331 53.6799 0.1144 7371 +7373 2 47.03924920707601 -104.26804971281554 53.1899 0.1144 7372 +7374 2 48.16165948680927 -104.82158229691603 52.6772 0.1144 7373 +7375 2 49.23535688796167 -104.84551441708189 52.0744 0.1144 7374 +7376 2 50.15084175561827 -103.59299032183667 51.3629 0.1144 7375 +7377 2 51.00241055893443 -103.38763132980644 50.5568 0.1144 7376 +7378 2 52.05024066333135 -103.86443700293434 49.6115 0.1144 7377 +7379 2 53.118857616001236 -103.16959955788313 48.7133 0.1144 7378 +7380 2 54.18864064469739 -103.91015725483653 47.8324 0.1144 7379 +7381 2 55.25993681868138 -104.65911422579264 46.97 0.1144 7380 +7382 2 56.34320935056272 -103.93933897757772 46.1426 0.1144 7381 +7383 2 57.445264049824175 -104.48306155289121 45.4062 0.1144 7382 +7384 2 58.432826868816676 -104.56289108378954 44.641 0.1144 7383 +7385 2 59.149997301459024 -103.17258388026073 43.8021 0.1144 7384 +7386 2 59.84666529021777 -102.31448126574878 42.9293 0.1144 7385 +7387 2 60.6007279262455 -101.9626353638827 42.0812 0.1144 7386 +7388 2 61.55017561335734 -101.91484968826275 41.3694 0.1144 7387 +7389 2 62.50536404844263 -100.48705872855277 40.7389 0.1144 7388 +7390 2 63.467059179916674 -100.43374213434144 40.1842 0.1144 7389 +7391 2 64.43267318248141 -99.0125643052088 39.6903 0.1144 7390 +7392 2 65.40121656897625 -98.95327175189546 39.2342 0.1144 7391 +7393 2 66.36915110449397 -98.89292567482427 38.7951 0.1144 7392 +7394 2 67.36364057035047 -97.65901258002805 38.3443 0.1144 7393 +7395 2 68.36460149651222 -97.55100732446188 37.8935 0.1144 7394 +7396 2 69.36592352008165 -97.55690687054533 37.4539 0.1144 7395 +7397 2 70.36915261338365 -96.59634982999222 37.0359 0.1144 7396 +7398 2 71.37246689953548 -96.23535738266816 36.6397 0.1144 7397 +7399 2 72.35075481385553 -96.2362498465043 35.8985 0.1144 7398 +7400 2 42.47317886726779 -104.1985358701976 54.3511 0.1144 7368 +7401 2 42.94584412216906 -102.90605542063076 52.8937 0.1144 7400 +7402 2 43.97150566551275 -102.61309428028818 52.369 0.1144 7401 +7403 2 45.09919050308645 -103.05094084747917 52.2458 0.1144 7402 +7404 2 46.17900716343772 -102.45671250261728 52.4989 0.1144 7403 +7405 2 47.12593960469141 -102.05076528298612 53.8479 0.1144 7404 +7406 2 0.5384865767297242 -99.76312563223803 87.4026 0.1144 6818 +7407 2 0.9456777674181751 -98.81724026576943 87.7478 0.1144 7406 +7408 2 1.1418118379946804 -97.83617807896991 87.9194 0.1144 7407 +7409 2 1.4104838645589837 -96.90930467997639 88.2031 0.1144 7408 +7410 2 1.756681887582289 -96.04679782662966 88.6119 0.1144 7409 +7411 2 2.1063555930218456 -95.1866013405547 89.0901 0.1144 7410 +7412 2 2.345230448165779 -94.25388111196368 89.5348 0.1144 7411 +7413 2 2.2626415408370235 -93.11523626563469 89.7571 0.1144 7412 +7414 2 2.062224121233072 -91.92873234821698 89.8103 0.1144 7413 +7415 2 1.8087433646978184 -90.72775166267823 89.8559 0.1144 7414 +7416 2 1.5488082775865735 -89.5285853484535 89.9195 0.1144 7415 +7417 2 1.3287934009462958 -88.34419472758157 90.0057 0.1144 7416 +7418 2 1.2434017417869256 -87.20626483687298 90.1029 0.1144 7417 +7419 2 1.2751359388631727 -86.1161477419544 90.1914 0.1144 7418 +7420 2 1.2115715662137347 -85.02755658799131 90.2653 0.1144 7419 +7421 2 0.9667390411079566 -83.83785365668837 90.3288 0.1144 7420 +7422 2 0.6917013919911597 -82.6440567755044 90.3594 0.1144 7421 +7423 2 0.4171100331317348 -81.45119094991053 90.3286 0.1144 7422 +7424 2 -0.15455620950018556 -80.40953070173518 89.8853 0.1144 7423 +7425 2 -1.131565923592774 -80.18756809132339 88.858 0.1144 7424 +7426 2 -2.0305803318252913 -79.83083044056342 87.6215 0.1144 7425 +7427 2 -2.707127774161904 -78.8588750829643 86.2154 0.1144 7426 +7428 2 -3.3474712622218874 -77.84923959566997 84.8445 0.1144 7427 +7429 2 -4.298595164756648 -77.15500204400944 84.1103 0.1144 7428 +7430 2 -5.275065789817575 -77.0182565441191 83.7309 0.1144 7429 +7431 2 -5.719039468736696 -76.92225947994154 83.5677 0.1144 7430 +7432 2 -6.7045395352946855 -76.72137722480868 84.8683 0.1144 7431 +7433 2 -7.780643354786463 -77.17888405477807 85.5361 0.1144 7432 +7434 2 -8.784927305234419 -77.61049801548964 86.2926 0.1144 7433 +7435 2 -9.789963868488258 -77.60869045753415 86.9929 0.1144 7434 +7436 2 -10.9043673284026 -77.93717209119347 87.4224 0.1144 7435 +7437 2 -12.03972632346455 -78.01240717649074 87.6232 0.1144 7436 +7438 2 -13.182905646889935 -78.66208253114762 87.6954 0.1144 7437 +7439 2 -14.325955929169282 -78.20323158607323 87.7002 0.1144 7438 +7440 2 -15.469890966983712 -77.73756111375971 87.6725 0.1144 7439 +7441 2 -16.613790076177935 -78.37827391169161 87.6305 0.1144 7440 +7442 2 -17.754866202229266 -77.94317006107572 87.5532 0.1144 7441 +7443 2 -18.894249492543963 -77.57779012550735 87.4118 0.1144 7442 +7444 2 -20.03277543842725 -78.23590186847302 87.2323 0.1144 7443 +7445 2 -21.166573740481596 -77.88823567217658 87.0862 0.1144 7444 +7446 2 -22.294514251300882 -77.95994522650109 87.0307 0.1144 7445 +7447 2 -23.422366467687283 -78.38924932797288 87.0556 0.1144 7446 +7448 2 -24.54870553878581 -78.09440897241382 87.1402 0.1144 7447 +7449 2 -25.674992244071575 -78.49521077285608 87.2637 0.1144 7448 +7450 2 -26.797987775483023 -78.62405538173427 87.3869 0.1144 7449 +7451 2 -27.892924820105634 -78.46812553869661 87.4065 0.1144 7450 +7452 2 -28.954007162570264 -79.31607193450212 87.2421 0.1144 7451 +7453 2 -30.052428407125632 -79.33534101593769 87.1814 0.1144 7452 +7454 2 -31.178371144732978 -79.0162987856675 87.4269 0.1144 7453 +7455 2 -32.292683901167806 -79.81925164736471 87.8973 0.1144 7454 +7456 2 -33.35115721039682 -79.73749826827918 88.3008 0.1144 7455 +7457 2 -34.401901587278275 -79.70992586612773 88.6119 0.1144 7456 +7458 2 -35.455903618460496 -80.79667413121412 88.811 0.1144 7457 +7459 2 -36.51249347494084 -80.76246108196216 88.8748 0.1144 7458 +7460 2 -37.58824680983622 -80.66825824464482 88.825 0.1144 7459 +7461 2 -38.69134194733462 -81.60740170406726 88.6833 0.1144 7460 +7462 2 -39.80344469716027 -81.36438472007355 88.4635 0.1144 7461 +7463 2 -40.910299939149326 -81.14221631966116 88.1905 0.1144 7462 +7464 2 -41.968400531871 -82.224877372026 87.955 0.1144 7463 +7465 2 -43.02044002592481 -82.35824727467288 87.764 0.1144 7464 +7466 2 -44.10226848763418 -83.21506276972907 87.4924 0.1144 7465 +7467 2 -45.12469840270762 -82.9695832177232 86.3808 0.1144 7466 +7468 2 -5.579896413494026 -76.57257517110433 83.6256 0.1144 7430 +7469 2 -6.3593553209305185 -75.43985529910717 83.757 0.1144 7468 +7470 2 -7.134839889880567 -74.31877994727327 84.0468 0.1144 7469 +7471 2 -7.907212975405059 -73.6748798479078 84.427 0.1144 7470 +7472 2 -8.614152441656216 -73.08698090484965 84.868 0.1144 7471 +7473 2 -9.309514292547732 -71.94747020526947 85.3678 0.1144 7472 +7474 2 -10.003180898655984 -70.82243305886875 85.9244 0.1144 7473 +7475 2 -10.692426876020306 -69.70097384695312 86.527 0.1144 7474 +7476 2 -11.38088190291208 -68.94151136164143 87.1648 0.1144 7475 +7477 2 -11.765784293570619 -68.77436436064146 87.0302 0.1144 7476 +7478 2 -12.406314681533928 -67.73795702650037 87.0825 0.1144 7477 +7479 2 -13.027518006389272 -66.56894217468762 87.1987 0.1144 7478 +7480 2 -13.647029188044428 -65.83666309530344 87.2864 0.1144 7479 +7481 2 -14.266049538609394 -65.14815778657469 87.3751 0.1144 7480 +7482 2 -14.884932330511703 -63.98446600676415 87.4516 0.1144 7481 +7483 2 -15.505465826364428 -62.81247011359911 87.502 0.1144 7482 +7484 2 -16.12301757247431 -61.6492413077409 87.5204 0.1144 7483 +7485 2 -16.766764175488618 -60.50819675945441 87.5115 0.1144 7484 +7486 2 -17.55476899177566 -60.18403259565454 87.3513 0.1144 7485 +7487 2 -18.407933931824743 -59.240201568123865 87.0089 0.1144 7486 +7488 2 -19.307587733384167 -58.26630987121859 86.5903 0.1144 7487 +7489 2 -20.302406955651918 -57.40246555561568 86.224 0.1144 7488 +7490 2 -21.32162656904501 -57.35980837363855 85.9298 0.1144 7489 +7491 2 -22.34249688638846 -56.52513742773519 85.7072 0.1144 7490 +7492 2 -23.36644586012042 -55.68254710105111 85.5588 0.1144 7491 +7493 2 -24.39034246803959 -55.63169336243326 85.4627 0.1144 7492 +7494 2 -25.413930344363877 -54.78702429785376 85.3919 0.1144 7493 +7495 2 -26.43881643944357 -53.958734800199466 85.3269 0.1144 7494 +7496 2 -27.361898274697126 -53.404724275599754 85.2718 0.1144 7495 +7497 2 -28.240098198790577 -52.75342444587733 85.2247 0.1144 7496 +7498 2 -29.112954400938378 -51.77061324535911 85.181 0.1144 7497 +7499 2 -29.98518221333339 -50.776870054595506 85.1301 0.1144 7498 +7500 2 -30.87731862340607 -50.174131235450886 85.0788 0.1144 7499 +7501 2 -31.785797245260852 -49.540075807197255 85.0214 0.1144 7500 +7502 2 -32.69627674191074 -48.5830765992458 84.912 0.1144 7501 +7503 2 -33.60618021462051 -47.63861755071258 84.7442 0.1144 7502 +7504 2 -34.39405219564176 -47.065194539990976 84.3256 0.1144 7503 +7505 2 -35.09630304826723 -46.2232676516348 83.6004 0.1144 7504 +7506 2 -35.76397361824755 -45.221901230807724 82.5899 0.1144 7505 +7507 2 -36.3131417390787 -44.4058078842831 80.7719 0.1144 7506 +7508 2 -11.598534013845608 -69.08682198130148 87.7484 0.1144 7476 +7509 2 -12.540052349975895 -68.72694030229721 89.1047 0.1144 7508 +7510 2 -13.047111870112133 -67.87747083125467 90.2927 0.1144 7509 +7511 2 -12.992956540320165 -66.83324557371444 91.0431 0.1144 7510 +7512 2 -12.8831640764449 -65.78911475281956 91.5463 0.1144 7511 +7513 2 -12.835659897407055 -64.70609005072731 91.8722 0.1144 7512 +7514 2 -12.981453979608688 -63.55706746407495 92.0525 0.1144 7513 +7515 2 -13.257120018478389 -62.37596897323579 92.1413 0.1144 7514 +7516 2 -13.532157667595243 -61.196838790884165 92.2015 0.1144 7515 +7517 2 -13.807686147802372 -60.131848459868735 92.2645 0.1144 7516 +7518 2 -14.082362699511577 -59.179283838331195 92.332 0.1144 7517 +7519 2 -14.358337469976163 -58.23540588348471 92.4017 0.1144 7518 +7520 2 -14.63386595018332 -57.28411277970139 92.472 0.1144 7519 +7521 2 -14.89545174124504 -56.12271994243305 92.5417 0.1144 7520 +7522 2 -15.123668559057307 -54.947971854608845 92.6117 0.1144 7521 +7523 2 -15.331797088743002 -53.77678231990133 92.6814 0.1144 7522 +7524 2 -15.54023435002361 -52.6261242359931 92.7489 0.1144 7523 +7525 2 -15.749247635244359 -51.45534988894431 92.8133 0.1144 7524 +7526 2 -15.957290972080273 -50.28543236408231 92.8724 0.1144 7525 +7527 2 -16.166304257300965 -49.1171557861992 92.9242 0.1144 7526 +7528 2 -16.156972678138175 -48.01642417292115 92.9662 0.1144 7527 +7529 2 -15.602954265454912 -47.235280511916656 92.9863 0.1144 7528 +7530 2 -14.83286735929309 -45.971622461742214 92.9824 0.1144 7529 +7531 2 -14.063855133141573 -45.375513633468245 92.9564 0.1144 7530 +7532 2 -13.29434425091992 -44.33432160062933 92.9062 0.1144 7531 +7533 2 -12.526845170056305 -43.52602538589127 92.8276 0.1144 7532 +7534 2 -11.757780578092053 -42.92045198691097 92.7136 0.1144 7533 +7535 2 -10.989705473288296 -42.297890345037466 92.5574 0.1144 7534 +7536 2 -10.222515124019566 -41.17025923462049 92.351 0.1144 7535 +7537 2 -9.485221859703671 -40.45812001362886 92.0251 0.1144 7536 +7538 2 -8.777834292553194 -39.784957038913966 91.5368 0.1144 7537 +7539 2 -8.082470631019817 -39.11315627558657 90.9182 0.1144 7538 +7540 2 -7.392089594024441 -38.05476119411279 90.2079 0.1144 7539 +7541 2 -6.706297257122259 -37.247979119963624 89.4384 0.1144 7540 +7542 2 -5.857301558421597 -36.82226965954995 88.5682 0.1144 7541 +7543 2 -4.808063419147146 -37.104109884621494 87.7374 0.1144 7542 +7544 2 -3.7258125089267367 -37.03109800837177 86.9336 0.1144 7543 +7545 2 -2.6422196263508795 -37.47306613705237 86.1406 0.1144 7544 +7546 2 -1.5576567953901588 -37.91483840534236 85.3625 0.1144 7545 +7547 2 -0.4696542106333368 -37.84072934174883 84.6045 0.1144 7546 +7548 2 0.6205751020139587 -38.28301332366954 83.8712 0.1144 7547 +7549 2 1.716680312250702 -38.75549272276705 83.2146 0.1144 7548 +7550 2 2.815702310692842 -38.70091070686855 82.642 0.1144 7549 +7551 2 3.9185524767461857 -39.20509065833347 82.1288 0.1144 7550 +7552 2 5.024205394630172 -39.698447478874556 81.6536 0.1144 7551 +7553 2 6.131817748059433 -39.66382560262522 81.1964 0.1144 7552 +7554 2 7.218418708182327 -39.76544879739638 80.6411 0.1144 7553 +7555 2 8.331240942003149 -40.048330739731455 80.0954 0.1144 7554 +7556 2 9.425945326816901 -40.08417268677818 79.5841 0.1144 7555 +7557 2 10.49417246291344 -40.49797740001813 79.0056 0.1144 7556 +7558 2 11.549254063503241 -40.751591423547225 78.3479 0.1144 7557 +7559 2 12.529225704474356 -41.490146226095455 77.5698 0.1144 7558 +7560 2 13.465995863689784 -42.279516664273 76.6937 0.1144 7559 +7561 2 14.486556443150022 -42.31645169201474 75.7907 0.1144 7560 +7562 2 15.533464537644818 -42.87047382483798 74.8815 0.1144 7561 +7563 2 16.61125778951657 -43.19703032048458 73.9642 0.1144 7562 +7564 2 17.672382985967175 -42.73243755112212 73.0218 0.1144 7563 +7565 2 18.7341817108439 -42.90230762472374 72.0236 0.1144 7564 +7566 2 18.838601308039273 -43.752538233594436 70.721 0.1144 7565 +7567 2 18.5051014292807 -44.568126092295444 69.335 0.1144 7566 +7568 2 18.030514383964146 -45.21562708777526 67.7888 0.1144 7567 +7569 2 17.591906055354258 -45.83053134314046 65.627 0.1144 7568 +7570 2 15.25169683838753 -156.79984082847065 85.3196 0.1144 6157 +7571 2 14.147066234701128 -156.14414929811045 85.7338 0.1144 7570 +7572 2 13.042599908244341 -155.11012312181842 86.1017 0.1144 7571 +7573 2 11.969927833883261 -155.5842317662189 86.6841 0.1144 7572 +7574 2 11.930260603522726 -155.6402756134853 87.0873 0.1144 7573 +7575 2 11.671553737045087 -156.01499065621945 89.5448 0.1144 7574 +7576 2 11.288415163705778 -156.58321385642523 91.6667 0.1144 7575 +7577 2 10.61352071057101 -157.12978269383103 92.8332 0.1144 7576 +7578 2 9.90146435265919 -157.4993899687504 93.954 0.1144 7577 +7579 2 9.10277747931545 -159.37467430963216 94.9407 0.1144 7578 +7580 2 8.177310232853756 -159.64544100444377 95.6542 0.1144 7579 +7581 2 7.205280237379654 -159.61784559565476 96.1162 0.1144 7580 +7582 2 6.236102950502399 -160.49108773752582 96.4544 0.1144 7581 +7583 2 5.47995493936638 -161.87384320643994 96.6624 0.1144 7582 +7584 2 4.961189645217658 -162.648378436413 96.6224 0.1144 7583 +7585 2 4.486052300217921 -163.59734465131285 96.4012 0.1144 7584 +7586 2 4.012063901515219 -164.6911620907391 96.0616 0.1144 7585 +7587 2 3.7593432638713864 -165.73018368989008 95.6838 0.1144 7586 +7588 2 3.7137461545661523 -166.9603703166123 95.3277 0.1144 7587 +7589 2 3.6871321406904087 -168.20946278173818 95.0116 0.1144 7588 +7590 2 3.3248054473443176 -169.9008314704722 94.6814 0.1144 7589 +7591 2 2.7391570597949624 -171.25839055303135 94.3085 0.1144 7590 +7592 2 2.1802833472098797 -171.96781134109506 93.891 0.1144 7591 +7593 2 2.1230548716590647 -173.13124188933318 93.4522 0.1144 7592 +7594 2 2.331348371110991 -174.50109254580676 93.0191 0.1144 7593 +7595 2 2.6181481441293357 -175.90229593058942 92.57 0.1144 7594 +7596 2 3.104635138977855 -177.34337228445622 92.0237 0.1144 7595 +7597 2 3.683291397860728 -177.99101542209232 91.383 0.1144 7596 +7598 2 4.267685303134002 -178.86479085395837 90.6892 0.1144 7597 +7599 2 4.89788013456068 -180.14713515374805 90.0208 0.1144 7598 +7600 2 5.608647075886495 -181.23155725649053 89.4589 0.1144 7599 +7601 2 6.343782273837192 -182.67901669833503 89.01 0.1144 7600 +7602 2 6.877178394423126 -183.68802862584505 88.6906 0.1144 7601 +7603 2 6.872576175599178 -185.08415003929935 88.5256 0.1144 7602 +7604 2 6.765413668808378 -186.57888089175628 88.48 0.1144 7603 +7605 2 6.657760330927289 -187.7676039510558 88.5035 0.1144 7604 +7606 2 6.5481475575008545 -188.95651422429196 88.5564 0.1144 7605 +7607 2 6.439524271234873 -190.18136101160172 88.6116 0.1144 7606 +7608 2 6.26446246531583 -191.3168170976952 88.6231 0.1144 7607 +7609 2 5.974092885924335 -192.34542499901949 88.5422 0.1144 7608 +7610 2 5.665867256926319 -193.55548019743645 88.3814 0.1144 7609 +7611 2 5.356470041272402 -194.87125753060928 88.1636 0.1144 7610 +7612 2 5.04899943412677 -196.0322288947085 87.9124 0.1144 7611 +7613 2 4.710421817705807 -197.01781855703103 87.6509 0.1144 7612 +7614 2 4.296630125566125 -198.43765213693433 87.4062 0.1144 7613 +7615 2 3.874964762624998 -200.0283456787396 87.1903 0.1144 7614 +7616 2 3.450168377482669 -200.9156351091264 87.0061 0.1144 7615 +7617 2 3.0897634745518303 -201.87291313731873 86.8678 0.1144 7616 +7618 2 3.011381240917146 -203.07458510160487 86.8221 0.1144 7617 +7619 2 2.9672589392330764 -204.38454724369353 86.8546 0.1144 7618 +7620 2 3.0869597945726923 -205.66103539651112 86.9296 0.1144 7619 +7621 2 3.2873772141766295 -207.0499306335771 87.0232 0.1144 7620 +7622 2 3.4974128135949343 -208.45146728068127 87.1226 0.1144 7621 +7623 2 3.7064784646283755 -209.84095746948955 87.2169 0.1144 7622 +7624 2 3.916481237009563 -211.23868846605149 87.2981 0.1144 7623 +7625 2 4.1254945222303405 -212.63303912849182 87.3678 0.1144 7624 +7626 2 4.335582487461309 -214.02825247338015 87.4275 0.1144 7625 +7627 2 4.544201848237321 -215.1995253703526 87.4759 0.1144 7626 +7628 2 4.754237447655612 -216.33621659976916 87.507 0.1144 7627 +7629 2 4.964816243976912 -217.46865972679214 87.5143 0.1144 7628 +7630 2 5.173881895010354 -218.61284604681651 87.4894 0.1144 7629 +7631 2 5.383917494428644 -219.97528207732393 87.4264 0.1144 7630 +7632 2 5.528160093675851 -221.34691661446124 87.3068 0.1144 7631 +7633 2 5.232575833484759 -222.48852346737223 87.043 0.1144 7632 +7634 2 4.900813645047563 -224.02612681679807 86.6617 0.1144 7633 +7635 2 4.568654430582498 -225.35032851242403 86.2028 0.1144 7634 +7636 2 4.237197872157097 -226.35117378712783 85.7016 0.1144 7635 +7637 2 3.905793679544459 -227.32503827311854 85.1906 0.1144 7636 +7638 2 3.5654739631571175 -228.58036793677934 84.7028 0.1144 7637 +7639 2 3.0581158986684613 -230.02283782590087 84.3338 0.1144 7638 +7640 2 2.5454110106511223 -230.81343222017534 84.0549 0.1144 7639 +7641 2 2.0350297571698235 -231.99678871315584 83.8474 0.1144 7640 +7642 2 1.5226367023305158 -233.8637482802963 83.6965 0.1144 7641 +7643 2 1.009306526143419 -235.11769301009164 83.5884 0.1144 7642 +7644 2 0.4970510299666273 -235.91671449024068 83.5111 0.1144 7643 +7645 2 -0.01565075646763603 -236.72009768836477 83.4599 0.1144 7644 +7646 2 -0.5446211809337314 -237.4978871112615 83.4397 0.1144 7645 +7647 2 -1.182845868443735 -238.77570196336848 83.4963 0.1144 7646 +7648 2 -1.822360162496409 -240.61185358969277 83.6088 0.1144 7647 +7649 2 -2.4608521423516265 -241.28397220398938 83.7575 0.1144 7648 +7650 2 -3.0942763048189903 -241.90316997036103 84.1372 0.1144 7649 +7651 2 11.842322961055999 -155.13714821906447 86.9478 0.1144 7573 +7652 2 11.440600442708586 -153.81278070900458 87.5776 0.1144 7651 +7653 2 11.036295609692587 -152.48288655441152 88.1051 0.1144 7652 +7654 2 10.631138848178665 -151.13911728148702 88.6256 0.1144 7653 +7655 2 10.17979274669608 -149.69925485029194 89.1467 0.1144 7654 +7656 2 9.677125408248571 -148.2524427497811 89.6624 0.1144 7655 +7657 2 9.567871044237336 -146.97390524031286 90.1216 0.1144 7656 +7658 2 9.873076585825771 -145.9818728601396 90.4322 0.1144 7657 +7659 2 10.262843989019075 -145.064082878739 90.6307 0.1144 7658 +7660 2 10.658277873898982 -144.0878876869862 90.7558 0.1144 7659 +7661 2 10.942895778754064 -142.96145690247002 90.8768 0.1144 7660 +7662 2 11.151632880470913 -141.81727689768633 91.0414 0.1144 7661 +7663 2 11.372364162350891 -140.74228203765762 91.2604 0.1144 7662 +7664 2 11.608959231255 -139.4162847333598 91.5253 0.1144 7663 +7665 2 11.846215516949002 -137.64808696593275 91.8204 0.1144 7664 +7666 2 12.084047826583173 -135.88476774526544 92.1298 0.1144 7665 +7667 2 12.15632821483672 -134.67555449989993 92.4381 0.1144 7666 +7668 2 11.881649254081026 -133.55737266573246 92.7293 0.1144 7667 +7669 2 11.45774076086255 -133.04375623902672 93.0017 0.1144 7668 +7670 2 11.03471702317907 -132.1260632866152 93.27 0.1144 7669 +7671 2 10.671568948827542 -130.70909587498767 93.5547 0.1144 7670 +7672 2 10.339957044279572 -129.3199772257057 93.8647 0.1144 7671 +7673 2 10.011999820060169 -127.9465619828547 94.1987 0.1144 7672 +7674 2 9.682477084740185 -126.56468619288044 94.5549 0.1144 7673 +7675 2 9.392298535951142 -125.17038211220638 94.9346 0.1144 7674 +7676 2 9.16809198524544 -123.79967973547332 95.3414 0.1144 7675 +7677 2 8.97391156063864 -122.44587012941143 95.7678 0.1144 7676 +7678 2 8.782318961329963 -121.09234007242239 96.2041 0.1144 7677 +7679 2 8.59152592470653 -119.73996439444983 96.6417 0.1144 7678 +7680 2 8.472991145393195 -118.42612855290949 97.0662 0.1144 7679 +7681 2 8.400075885274589 -117.1361361064031 97.4655 0.1144 7680 +7682 2 8.333582128694957 -115.9747831848992 97.8331 0.1144 7681 +7683 2 8.268058320500245 -114.85120896692882 98.1635 0.1144 7682 +7684 2 8.201691196020164 -113.72408319367744 98.4553 0.1144 7683 +7685 2 8.164327883441416 -112.61141072665863 98.6597 0.1144 7684 +7686 2 8.150930290830132 -111.50913454340251 98.7526 0.1144 7685 +7687 2 8.144530225697935 -110.40909995941915 98.7532 0.1144 7686 +7688 2 8.138215353415575 -109.30855351203905 98.6922 0.1144 7687 +7689 2 7.992589342563178 -108.14500938198243 98.6807 0.1144 7688 +7690 2 7.965290500056227 -107.03374168622928 98.6975 0.1144 7689 +7691 2 8.009327608890459 -105.96050527324998 98.7305 0.1144 7690 +7692 2 8.202297830228787 -104.9845760211584 98.7798 0.1144 7691 +7693 2 8.310973482307446 -103.94799362193308 98.8434 0.1144 7692 +7694 2 8.282599959790161 -102.83400625402581 98.9192 0.1144 7693 +7695 2 8.062585083149912 -101.64120131944293 99.0038 0.1144 7694 +7696 2 7.6915437992211935 -100.42242450280145 99.1074 0.1144 7695 +7697 2 7.41209644792346 -99.21527726372373 99.2435 0.1144 7696 +7698 2 7.081997688663336 -98.00150205056084 99.5431 0.1144 7697 +7699 2 6.567482340927967 -97.34702679582695 99.8953 0.1144 7698 +7700 2 6.108025001752765 -96.88638081338392 100.2039 0.1144 7699 +7701 2 6.650630076305987 -95.03958489743638 100.4769 0.1144 7700 +7702 2 7.30578772022082 -94.29935320566409 100.7118 0.1144 7701 +7703 2 7.284869119981664 -94.36319910382025 101.3754 0.1144 7702 +7704 2 7.47543931610349 -94.9411390035126 103.616 0.1144 7703 +7705 2 8.122522249350482 -96.03511027565305 104.6539 0.1144 7704 +7706 2 8.9262785327968 -97.17466206609282 105.3083 0.1144 7705 +7707 2 9.827608371800636 -97.33664281907203 106.1908 0.1144 7706 +7708 2 10.752912827073231 -97.8133206648343 107.2534 0.1144 7707 +7709 2 11.74732781385859 -98.6786591496628 108.2785 0.1144 7708 +7710 2 12.798066485011134 -99.23589374215979 109.1748 0.1144 7709 +7711 2 13.867861825343425 -98.87498911017107 109.9781 0.1144 7710 +7712 2 14.94794827607572 -99.09466760361633 110.6907 0.1144 7711 +7713 2 16.046156985460186 -98.76166000958808 111.2994 0.1144 7712 +7714 2 17.09411333119371 -98.91295341846222 111.7785 0.1144 7713 +7715 2 17.920675585542455 -98.40694872281821 112.1882 0.1144 7714 +7716 2 18.52672951032983 -96.65460526881022 112.5429 0.1144 7715 +7717 2 19.07526525733175 -95.97767241652737 112.8632 0.1144 7716 +7718 2 19.65057567929796 -95.32404723231312 113.1432 0.1144 7717 +7719 2 20.6470016562524 -95.37047965474619 113.3955 0.1144 7718 +7720 2 21.353567020923123 -95.5985014482464 113.6117 0.1144 7719 +7721 2 21.666688975482145 -96.37074947589193 113.8318 0.1144 7720 +7722 2 21.927740181853466 -97.55651899371378 114.0955 0.1144 7721 +7723 2 22.185627538986523 -98.74232399644933 114.4156 0.1144 7722 +7724 2 22.267799881511763 -99.86165383364339 114.7726 0.1144 7723 +7725 2 22.346687253328838 -100.97281012008703 115.2869 0.1144 7724 +7726 2 22.43148816786541 -102.05582713855662 116.0124 0.1144 7725 +7727 2 22.51499327269306 -103.13661401842728 116.8661 0.1144 7726 +7728 2 22.59778169333501 -104.20892503490248 117.7826 0.1144 7727 +7729 2 22.679674431878937 -105.2770623823392 118.7133 0.1144 7728 +7730 2 22.75595236201238 -106.31981900429241 119.7568 0.1144 7729 +7731 2 22.80587145978535 -107.12453089017883 121.7185 0.1144 7730 +7732 2 7.03424899171938 -93.16037555110337 100.9162 0.1144 7702 +7733 2 7.123274820949035 -92.11585789821373 101.1595 0.1144 7732 +7734 2 7.546913647581562 -91.3102763974715 101.5168 0.1144 7733 +7735 2 7.982445024334879 -90.51335072789018 101.9712 0.1144 7734 +7736 2 8.48132784780367 -90.72518843184487 102.5352 0.1144 7735 +7737 2 9.488220529713658 -90.02651360670421 103.7529 0.1144 7736 +7738 2 10.514412549876312 -89.95987654058082 104.6576 0.1144 7737 +7739 2 11.575709534784721 -90.13885876382743 105.2856 0.1144 7738 +7740 2 12.620243948987849 -89.33913494300928 106.0091 0.1144 7739 +7741 2 13.460696840421093 -88.83017743912356 106.8404 0.1144 7740 +7742 2 14.120202924402804 -88.04058580094865 107.7672 0.1144 7741 +7743 2 14.77262628805559 -86.58947690185968 108.74 0.1144 7742 +7744 2 15.182741067955874 -85.84836491866623 109.6878 0.1144 7743 +7745 2 15.400591206162034 -84.97370785373694 110.6003 0.1144 7744 +7746 2 15.581244203507566 -84.03854743536047 111.5514 0.1144 7745 +7747 2 15.749682583527942 -83.10203863398974 112.5606 0.1144 7746 +7748 2 16.061733687002032 -82.28332871079651 113.645 0.1144 7747 +7749 2 16.487941208605008 -81.55450415520929 114.8034 0.1144 7748 +7750 2 16.912010296750367 -80.2781575051157 115.9976 0.1144 7749 +7751 2 17.311840169416882 -78.97280630767189 117.1786 0.1144 7750 +7752 2 17.6273607521411 -78.14593916880429 118.2586 0.1144 7751 +7753 2 17.90728183960576 -77.27823844788227 119.2632 0.1144 7752 +7754 2 18.18928899471527 -76.40101866676405 120.2356 0.1144 7753 +7755 2 18.02761380066096 -75.892684872484 121.9232 0.1144 7754 +7756 2 17.10245899092456 -75.52992314146685 123.5654 0.1144 7755 +7757 2 16.219409680299947 -76.2393241466275 125.3445 0.1144 7756 +7758 2 15.27349505460947 -75.70760848317467 126.8632 0.1144 7757 +7759 2 14.278405136639861 -75.04990056061807 128.0888 0.1144 7758 +7760 2 13.255110276917662 -75.01324255372838 129.1391 0.1144 7759 +7761 2 12.435814351261342 -74.38494879566632 129.9264 0.1144 7760 +7762 2 11.99894242203149 -73.20787347506997 130.3652 0.1144 7761 +7763 2 11.637486490880065 -72.0226201237677 130.562 0.1144 7762 +7764 2 11.114948199884964 -71.33062535679059 130.6189 0.1144 7763 +7765 2 10.00876239613558 -71.34381007947385 130.6654 0.1144 7764 +7766 2 8.86693124823185 -70.95101790092916 130.7376 0.1144 7765 +7767 2 7.726070048712899 -71.29912178866664 130.8574 0.1144 7766 +7768 2 6.586019338442156 -71.16561463228221 131.0282 0.1144 7767 +7769 2 5.447352039776632 -70.77817825942256 131.2366 0.1144 7768 +7770 2 4.30863237529843 -71.37890353499411 131.4681 0.1144 7769 +7771 2 3.1709873908305326 -70.98796740014474 131.7112 0.1144 7770 +7772 2 2.0332048476999773 -70.60350595306488 131.9646 0.1144 7771 +7773 2 0.9027644152525056 -71.02367013211502 132.2642 0.1144 7772 +7774 2 -0.21651866606231351 -70.39846731571959 132.6052 0.1144 7773 +7775 2 -1.3353554571196469 -69.77818449407907 132.9661 0.1144 7774 +7776 2 -2.4524477391641426 -70.12805727188399 133.327 0.1144 7775 +7777 2 -3.4628541513615403 -69.2296256175715 133.63 0.1144 7776 +7778 2 -4.2990515914587775 -68.16033628961048 133.8403 0.1144 7777 +7779 2 -5.136408904416044 -67.49727655435846 134.0587 0.1144 7778 +7780 2 7.493122131160021 -89.8014993425243 102.3039 0.1144 7735 +7781 2 6.704186396691426 -88.65891663234368 102.8045 0.1144 7780 +7782 2 5.914313540875071 -88.16527723990758 103.2984 0.1144 7781 +7783 2 5.124355492208906 -87.59860497758328 103.789 0.1144 7782 +7784 2 4.33327822269959 -86.45571201488407 104.2642 0.1144 7783 +7785 2 3.815252649000996 -85.27564376311784 104.8065 0.1144 7784 +7786 2 3.4464911513121024 -84.13069412808989 105.4099 0.1144 7785 +7787 2 2.9653478784092613 -82.94326848681678 105.9489 0.1144 7786 +7788 2 2.2874888993926845 -82.28398369680012 106.3168 0.1144 7787 +7789 2 1.5708757859314062 -81.74031495638704 106.5277 0.1144 7788 +7790 2 0.8505227992917526 -80.56486847645269 106.6047 0.1144 7789 +7791 2 0.35720875735992763 -79.35905432883335 106.5994 0.1144 7790 +7792 2 0.02158968728846844 -78.1593138401662 106.5588 0.1144 7791 +7793 2 -0.29059824750584085 -76.97040671807223 106.5067 0.1144 7792 +7794 2 -0.6831112311663503 -75.7742079611861 106.4106 0.1144 7793 +7795 2 -1.4880335906389632 -75.29909921556113 106.0464 0.1144 7794 +7796 2 -1.2807239439229363 -74.63134743179316 105.7148 0.1144 7795 +7797 2 -0.7697111991057 -73.62002852848735 105.4623 0.1144 7796 +7798 2 -0.25478268478099153 -72.83765638769448 105.4178 0.1144 7797 +7799 2 0.6223587888530062 -72.51414033733042 105.315 0.1144 7798 +7800 2 1.6552292938622202 -71.80201471171922 105.11 0.1144 7799 +7801 2 2.7610981502738525 -71.64760644182562 104.8569 0.1144 7800 +7802 2 3.8957551818326976 -72.02893439142167 104.6013 0.1144 7801 +7803 2 5.0288179831253785 -71.65023631167325 104.2924 0.1144 7802 +7804 2 6.060665961152637 -72.38171038093621 103.7593 0.1144 7803 +7805 2 7.154630044796676 -73.09635947219965 103.3477 0.1144 7804 +7806 2 8.263588164701105 -72.9532109296138 103.0492 0.1144 7805 +7807 2 9.395591699202697 -73.36401290140597 102.8426 0.1144 7806 +7808 2 10.528223925230748 -73.68044719453263 102.7141 0.1144 7807 +7809 2 11.658531824186156 -72.94293558850663 102.6556 0.1144 7808 +7810 2 12.743116182542963 -73.03077005167589 102.6474 0.1144 7809 +7811 2 13.828414123502455 -72.10896992257756 102.6474 0.1144 7810 +7812 2 14.913050847672025 -72.19129358649265 102.6474 0.1144 7811 +7813 2 -2.3282230848141126 -74.9763883001365 105.8781 0.1144 7795 +7814 2 -3.3474043605405654 -74.05729364480358 105.77 0.1144 7813 +7815 2 -3.4110419161772825 -73.27063001155669 105.2072 0.1144 7814 +7816 2 -3.5535301038219416 -72.17697053386622 104.2986 0.1144 7815 +7817 2 -3.9166480442715397 -71.08184139554622 103.2304 0.1144 7816 +7818 2 -4.398404293708012 -69.97414994043639 102.2333 0.1144 7817 +7819 2 -4.888271780837158 -69.09989217825058 101.3295 0.1144 7818 +7820 2 -5.38335394876583 -68.55538748614075 100.5256 0.1144 7819 +7821 2 -5.917237106322432 -67.53451466338242 99.825 0.1144 7820 +7822 2 -6.6534737028504765 -66.45932571142687 99.1995 0.1144 7821 +7823 2 -7.593155832178212 -65.5235464761016 98.6905 0.1144 7822 +7824 2 -8.639439644791565 -65.28981686900373 98.3433 0.1144 7823 +7825 2 -9.747926158629639 -65.09478805648669 97.9188 0.1144 7824 +7826 2 -10.85809620345512 -64.56766584203474 97.3384 0.1144 7825 +7827 2 -11.915445971185221 -64.42143299582578 96.7338 0.1144 7826 +7828 2 -12.96765124619418 -63.98393201478185 96.1428 0.1144 7827 +7829 2 -13.374502755054095 -63.50122886314148 93.996 0.1144 7828 +7830 2 -14.205649099044791 -63.40260076523217 93.1664 0.1144 7829 +7831 2 -15.065127709424274 -62.37150820579504 92.8043 0.1144 7830 +7832 2 -15.91700304293056 -61.330528701638954 92.447 0.1144 7831 +7833 2 -16.770476714574528 -60.30594544971671 92.0889 0.1144 7832 +7834 2 -17.619940119111845 -60.104138526160476 91.593 0.1144 7833 +7835 2 -18.3895032433513 -59.20542485330939 90.3073 0.1144 7834 +7836 2 -13.006979208316835 -64.84798485869779 95.9918 0.1144 7828 +7837 2 -13.108839432411827 -65.90982528841145 96.206 0.1144 7836 +7838 2 -13.219744913964064 -66.96515343124831 96.549 0.1144 7837 +7839 2 -13.331854809209318 -68.27340503325419 96.9136 0.1144 7838 +7840 2 -13.58996843302836 -69.75831823909046 97.144 0.1144 7839 +7841 2 -13.956563475773208 -70.87522303791489 97.1594 0.1144 7840 +7842 2 -14.336709597569069 -71.77784009599195 96.9996 0.1144 7841 +7843 2 -14.405109452398648 -72.86348663894353 96.8859 0.1144 7842 +7844 2 -14.851328374010535 -72.71096637411742 96.4625 0.1144 7843 +7845 2 -15.941843103042459 -72.34468258050595 95.7118 0.1144 7844 +7846 2 -17.077399610818986 -72.94436549599251 95.4089 0.1144 7845 +7847 2 -18.21228118741132 -72.41024166569836 95.1667 0.1144 7846 +7848 2 -19.342069613121993 -71.91949570720223 95.0468 0.1144 7847 +7849 2 -20.47145860375835 -72.17267751349375 95.053 0.1144 7848 +7850 2 -21.598888158849377 -71.54727560028594 95.1784 0.1144 7849 +7851 2 -22.719596783555744 -71.19044401572647 95.4229 0.1144 7850 +7852 2 -23.811868723999623 -71.18155156046033 95.8135 0.1144 7851 +7853 2 -24.872793395141827 -70.400027847996 96.3514 0.1144 7852 +7854 2 -25.923559791149813 -69.80483557973055 96.9671 0.1144 7853 +7855 2 -26.972727849020032 -69.82927496268796 97.6032 0.1144 7854 +7856 2 -27.986679723264245 -68.97587356008184 98.1691 0.1144 7855 +7857 2 -28.83137783884257 -67.94860269687265 98.5326 0.1144 7856 +7858 2 -29.566871725154442 -67.3202810592729 98.6563 0.1144 7857 +7859 2 -30.292474628677184 -66.61834710114134 98.5944 0.1144 7858 +7860 2 -31.016840291470004 -65.48708765998633 98.4124 0.1144 7859 +7861 2 -31.80974485379548 -64.3925960856335 98.191 0.1144 7860 +7862 2 -32.71042717271877 -63.483766144080654 98.0109 0.1144 7861 +7863 2 -33.65404599540287 -63.30172579027055 97.9101 0.1144 7862 +7864 2 -34.60037927548467 -62.32796592033883 97.8866 0.1144 7863 +7865 2 -35.54773486976404 -61.3703063500278 97.9325 0.1144 7864 +7866 2 -36.41849097612095 -60.82709744072676 98.0434 0.1144 7865 +7867 2 -37.21478292642982 -60.11131632001162 98.219 0.1144 7866 +7868 2 -37.99014086328023 -59.02528073251244 98.4598 0.1144 7867 +7869 2 -38.762334950892466 -57.935677723087046 98.7669 0.1144 7868 +7870 2 -39.32196667509615 -56.81675495558515 99.3331 0.1144 7869 +7871 2 -39.68001749069458 -55.86908534605922 100.2635 0.1144 7870 +7872 2 -39.99213936296681 -55.0544934640558 101.3838 0.1144 7871 +7873 2 -40.159169294519046 -54.05276945257622 102.305 0.1144 7872 +7874 2 -40.243033087707886 -52.886998443615724 103.0336 0.1144 7873 +7875 2 -40.328553788013295 -51.76471061824794 103.6087 0.1144 7874 +7876 2 -40.41393072648995 -50.65593303192696 104.3302 0.1144 7875 +7877 2 -13.40931346305453 -73.54020897112207 96.8257 0.1144 7843 +7878 2 -12.342274634895091 -73.45551153586582 96.8246 0.1144 7877 +7879 2 -11.276387854615876 -73.99961694797919 96.8856 0.1144 7878 +7880 2 -10.209925050396464 -74.08988396408462 96.9903 0.1144 7879 +7881 2 -10.288753361504263 -74.28495025481581 97.4512 0.1144 7880 +7882 2 -10.564325707128404 -74.96025799561787 99.2785 0.1144 7881 +7883 2 -10.83562118583734 -75.93930006270905 101.1013 0.1144 7882 +7884 2 -11.14551023886986 -77.30793217006706 102.4626 0.1144 7883 +7885 2 -11.694298948297217 -77.93558878935511 104.0922 0.1144 7884 +7886 2 -12.675697049958984 -77.78861375313275 105.2803 0.1144 7885 +7887 2 -13.735104467941909 -77.90420832312748 106.2048 0.1144 7886 +7888 2 -14.81639463983052 -77.22843118098724 106.9404 0.1144 7887 +7889 2 -15.775582036674592 -77.409678252527 107.3722 0.1144 7888 +7890 2 -16.645493234031306 -78.7138159959463 107.4906 0.1144 7889 +7891 2 -17.508230315043136 -79.07256452362881 107.434 0.1144 7890 +7892 2 -18.418650058447184 -79.35750245857525 107.5281 0.1144 7891 +7893 2 -19.301505561487488 -80.5601124878367 108.2567 0.1144 7892 +7894 2 -9.441046263058013 -74.14244264861009 97.1404 0.1144 7880 +7895 2 -8.335058978311565 -74.43828350493192 97.3048 0.1144 7894 +7896 2 -7.22289626245572 -74.07869487398699 97.3837 0.1144 7895 +7897 2 -6.140144304803613 -74.87570451969495 97.4137 0.1144 7896 +7898 2 -5.027688270572099 -75.49865874711561 97.5078 0.1144 7897 +7899 2 -3.976591000047705 -74.5651264083643 97.8606 0.1144 7898 +7900 2 -2.998047412482066 -74.44996427036361 98.4774 0.1144 7899 +7901 2 -1.901969625327041 -74.68610895311318 98.9901 0.1144 7900 +7902 2 -0.7788703862634918 -73.97140515214193 99.3852 0.1144 7901 +7903 2 0.34890584732619345 -74.28678915265286 99.6702 0.1144 7902 +7904 2 1.4725656971105536 -74.36806113186924 99.8438 0.1144 7903 +7905 2 2.420705955413922 -73.30802278258678 99.9432 0.1144 7904 +7906 2 3.3241336819684477 -72.99551519058485 100.0028 0.1144 7905 +7907 2 4.249709045727258 -72.71698752073385 100.0502 0.1144 7906 +7908 2 5.289668474231576 -71.67477018582848 100.0633 0.1144 7907 +7909 2 6.350662522263292 -71.68261029939069 100.0378 0.1144 7908 +7910 2 7.385139977622828 -71.6227478046952 99.9412 0.1144 7909 +7911 2 8.38381801596168 -70.49656770089696 99.7494 0.1144 7910 +7912 2 9.374514550290485 -70.33846366828507 99.503 0.1144 7911 +7913 2 10.365572182026995 -70.18409659035848 99.2569 0.1144 7912 +7914 2 11.35587169032803 -69.05476019563972 99.0643 0.1144 7913 +7915 2 12.132865420489537 -68.54801715412421 99.0508 0.1144 7914 +7916 2 12.654700758813988 -67.46462149150126 99.2746 0.1144 7915 +7917 2 12.843534773482702 -66.11325841266002 99.7716 0.1144 7916 +7918 2 13.931625954446076 -66.13758155533814 101.4546 0.1144 7917 +7919 2 14.95786282919326 -66.34692104935183 102.6077 0.1144 7918 +7920 2 15.987610622440286 -65.95711405673642 103.7313 0.1144 7919 +7921 2 17.02190567653082 -65.83046939802843 104.8286 0.1144 7920 +7922 2 18.064553927165235 -66.1227106258807 105.954 0.1144 7921 +7923 2 19.081584067034925 -66.23586030432891 107.1568 0.1144 7922 +7924 2 20.1481002313773 -66.2717843279054 108.1016 0.1144 7923 +7925 2 21.236534385708865 -66.81235247620509 108.8998 0.1144 7924 +7926 2 22.337356644648338 -66.93115487855277 109.58 0.1144 7925 +7927 2 23.446608082928435 -67.03212861376629 110.0803 0.1144 7926 +7928 2 24.54524365046899 -67.7361960361368 110.3295 0.1144 7927 +7929 2 25.61402388605825 -68.11908558404171 110.4356 0.1144 7928 +7930 2 26.62871336833703 -68.47839060758311 110.5633 0.1144 7929 +7931 2 27.769117664787217 -68.97316523975306 110.6515 0.1144 7930 +7932 2 28.8928158522383 -68.74293438328894 110.6773 0.1144 7931 +7933 2 30.016781332034526 -68.46744007926101 110.6692 0.1144 7932 +7934 2 31.13945720528801 -68.69275472593414 110.6434 0.1144 7933 +7935 2 32.26182434694661 -68.20894082825262 110.5003 0.1144 7934 +7936 2 12.51935106066773 -66.16624906000169 99.0416 0.1144 7917 +7937 2 11.702626239028376 -65.49007068728666 100.263 0.1144 7936 +7938 2 10.817717003649875 -64.7136156200562 100.8602 0.1144 7937 +7939 2 9.936547641449778 -64.4297588788442 101.523 0.1144 7938 +7940 2 9.059043886141126 -63.4527964870785 102.2507 0.1144 7939 +7941 2 8.187548171151121 -62.48973126602616 103.0072 0.1144 7940 +7942 2 7.376885756241677 -61.69883251161655 103.7481 0.1144 7941 +7943 2 6.652846647309616 -61.26157625160913 104.4364 0.1144 7942 +7944 2 5.912641222924606 -60.1937227085613 105.0652 0.1144 7943 +7945 2 5.159559964424602 -59.1307099772148 105.6457 0.1144 7944 +7946 2 4.405635389639286 -58.06489864411566 106.1956 0.1144 7945 +7947 2 3.65077369350621 -57.43217802661417 106.7312 0.1144 7946 +7948 2 3.054170681537414 -56.684695829053254 107.3106 0.1144 7947 +7949 2 2.5274085819764025 -55.555153078989676 107.9523 0.1144 7948 +7950 2 2.0025644787109798 -54.42680472387255 108.6243 0.1144 7949 +7951 2 1.3712207009870951 -53.36271008512244 109.3 0.1144 7950 +7952 2 0.40001471349197004 -52.53151607445557 109.9386 0.1144 7951 +7953 2 -0.5733328090439329 -52.41879303294229 110.553 0.1144 7952 +7954 2 -1.4953467829787428 -51.62619243788244 111.622 0.1144 7953 +7955 2 -3.390988461393192 -74.00047148416922 107.0297 0.1144 7814 +7956 2 -4.0115475925134945 -73.18804669653248 108.3096 0.1144 7955 +7957 2 -4.835045094824807 -72.66030715849742 108.7559 0.1144 7956 +7958 2 -5.663040593749997 -72.04526819253398 109.1202 0.1144 7957 +7959 2 -6.489575313200049 -70.9614666555379 109.5021 0.1144 7958 +7960 2 -7.332711711797458 -69.89873553279317 109.8451 0.1144 7959 +7961 2 -8.260519805806808 -69.41641774314682 109.9832 0.1144 7960 +7962 2 -9.213219122031774 -68.88434272329029 109.8913 0.1144 7961 +7963 2 -10.04305052598582 -67.80961480324068 109.7723 0.1144 7962 +7964 2 -10.692047045883328 -66.6528536133857 109.821 0.1144 7963 +7965 2 -11.329595684103793 -65.4978602819501 110.0268 0.1144 7964 +7966 2 -11.964820687788205 -65.06894072479746 110.3623 0.1144 7965 +7967 2 -12.598050327307135 -64.12045472762048 110.7932 0.1144 7966 +7968 2 -13.227487727834955 -62.97545813894897 111.2706 0.1144 7967 +7969 2 -13.833517610069663 -62.20580928634644 112.1831 0.1144 7968 +7970 2 30.65078924919987 -443.28022016061516 52.1797 0.1144 3447 +7971 2 30.732410901278925 -444.54178607837355 52.8724 0.1144 7970 +7972 2 30.24166234091753 -445.57236295365004 53.2683 0.1144 7971 +7973 2 29.678114735389435 -447.33663468415614 53.5293 0.1144 7972 +7974 2 29.195530471069986 -448.8966460646148 53.748 0.1144 7973 +7975 2 28.767622602502144 -449.81542434425626 53.9302 0.1144 7974 +7976 2 28.428598695823755 -450.83408312326236 54.1064 0.1144 7975 +7977 2 28.23291091550466 -451.995867089998 54.2696 0.1144 7976 +7978 2 28.166385303370582 -453.26841858995806 54.406 0.1144 7977 +7979 2 28.066443075571154 -454.5151278164854 54.549 0.1144 7978 +7980 2 27.953975184501406 -455.7524677007724 54.7039 0.1144 7979 +7981 2 27.91440014366082 -457.0495523627711 54.8411 0.1144 7980 +7982 2 27.919648160912843 -458.37871054862273 54.9531 0.1144 7981 +7983 2 27.996573688138007 -459.75480945473635 55.0404 0.1144 7982 +7984 2 28.131592032015615 -461.16881081486235 55.1102 0.1144 7983 +7985 2 28.283408182681974 -462.5942488882263 55.1729 0.1144 7984 +7986 2 28.416252164481826 -464.0067870637491 55.3112 0.1144 7985 +7987 2 28.53041317023426 -465.4037912381989 55.606 0.1144 7986 +7988 2 28.822912251976394 -466.882019295997 55.9857 0.1144 7987 +7989 2 29.24540140496944 -468.40847677578165 56.3385 0.1144 7988 +7990 2 29.75020476782802 -468.75954056863236 56.6398 0.1144 7989 +7991 2 30.242857592969912 -469.5622429316578 56.9164 0.1144 7990 +7992 2 30.719376929696004 -471.07752020343014 57.1813 0.1144 7991 +7993 2 31.186545378952946 -472.62291428460543 57.4118 0.1144 7992 +7994 2 31.495663269571512 -473.43111700097757 57.6484 0.1144 7993 +7995 2 31.719062432612088 -474.2954703368563 57.9816 0.1144 7994 +7996 2 31.85501479625432 -475.3280603469978 58.3041 0.1144 7995 +7997 2 31.998540711315737 -476.4444273396095 58.6292 0.1144 7996 +7998 2 32.306633186153675 -477.92998080202045 59.0016 0.1144 7997 +7999 2 32.758878071317355 -479.5225861733264 59.3701 0.1144 7998 +8000 2 33.2771332922311 -480.81439424099653 59.6518 0.1144 7999 +8001 2 33.3759737078625 -481.9672778685277 59.8472 0.1144 8000 +8002 2 33.36362514287322 -483.3495921515208 59.9774 0.1144 8001 +8003 2 33.30725229524383 -484.81510536210754 60.0575 0.1144 8002 +8004 2 33.359145247471176 -486.07848350838225 60.1062 0.1144 8003 +8005 2 33.488017992367624 -487.1957856681156 60.1482 0.1144 8004 +8006 2 33.43605484691916 -488.64719233135486 60.1992 0.1144 8005 +8007 2 33.454266992719134 -489.9807571201229 60.2596 0.1144 8006 +8008 2 33.605454753632635 -491.060180266901 60.3506 0.1144 8007 +8009 2 33.54235718149887 -492.53211698531084 60.569 0.1144 8008 +8010 2 32.99191436476437 -494.54983981624304 60.7894 0.1144 8009 +8011 2 32.16037017841428 -494.97644035832377 60.9025 0.1144 8010 +8012 2 31.50846467817057 -496.46458689785356 60.9081 0.1144 8011 +8013 2 31.297319441604454 -498.1734486616011 60.5489 0.1144 8012 +8014 2 31.04589151208647 -499.91954711198235 60.1362 0.1144 8013 +8015 2 30.738277143112143 -501.07199490653477 59.645 0.1144 8014 +8016 2 30.47552416989698 -502.1990808202194 58.9467 0.1144 8015 +8017 2 30.172788717808483 -503.28437719183233 57.8813 0.1144 8016 +8018 2 29.553954764567035 -504.4835769630061 56.7372 0.1144 8017 +8019 2 28.926490402161953 -506.4076509837549 55.8186 0.1144 8018 +8020 2 28.355627327506753 -507.13289850601393 55.1029 0.1144 8019 +8021 2 27.783824722457304 -507.88092341501044 54.5434 0.1144 8020 +8022 2 27.312911878560016 -508.77781331665744 54.1722 0.1144 8021 +8023 2 27.300471917554734 -510.14614049288247 54.0602 0.1144 8022 +8024 2 27.762461614632304 -511.75305572757617 54.0854 0.1144 8023 +8025 2 28.541526597624102 -513.3608644333344 54.0688 0.1144 8024 +8026 2 29.376384379716146 -513.893388119391 53.9994 0.1144 8025 +8027 2 30.21209409030613 -514.5415419364964 53.9098 0.1144 8026 +8028 2 31.034707529619027 -515.6738792744818 53.8605 0.1144 8027 +8029 2 31.811578611757344 -515.871829637474 53.9773 0.1144 8028 +8030 2 32.47949975280169 -517.2293059738187 54.3421 0.1144 8029 +8031 2 32.58088554819319 -518.498911694551 54.9889 0.1144 8030 +8032 2 31.97663257643972 -519.3909641322482 55.8547 0.1144 8031 +8033 2 31.480386629714317 -520.375622110023 56.9089 0.1144 8032 +8034 2 31.16993937500749 -522.0229454210202 58.1 0.1144 8033 +8035 2 31.291029436670524 -523.1072233907795 58.9963 0.1144 8034 +8036 2 31.898583390756087 -524.0964069196426 59.6378 0.1144 8035 +8037 2 32.39148878756049 -525.4323706537762 60.109 0.1144 8036 +8038 2 32.12225204240397 -526.5977197372683 60.4766 0.1144 8037 +8039 2 31.531119272663368 -527.6313466157058 60.7818 0.1144 8038 +8040 2 30.90800024874202 -529.4437023279374 61.0742 0.1144 8039 +8041 2 30.03084956505498 -530.2507897155563 61.5818 0.1144 8040 +8042 2 29.05042011569417 -531.2904449914754 62.312 0.1144 8041 +8043 2 28.774865894109446 -532.3400255963517 63.9542 0.1144 8042 +8044 2 28.313018130533738 -533.3567457993962 64.8757 0.1144 8043 +8045 2 27.819913801135797 -534.2313168883394 65.2646 0.1144 8044 +8046 2 27.32440374593507 -535.1105376844833 65.6379 0.1144 8045 +8047 2 26.831214223687304 -536.0524330919534 66.0576 0.1144 8046 +8048 2 26.338470991696997 -537.2512965232962 66.5095 0.1144 8047 +8049 2 25.846121684151438 -538.9769905920929 66.9813 0.1144 8048 +8050 2 25.3536871837561 -540.7054922687154 67.4598 0.1144 8049 +8051 2 24.89663415050472 -541.6283355019623 67.9358 0.1144 8050 +8052 2 24.541569867936445 -542.8479382941532 68.3973 0.1144 8051 +8053 2 24.092757113523763 -544.2217817735549 69.0119 0.1144 8052 +8054 2 23.815477602243227 -545.9799459202919 69.643 0.1144 8053 +8055 2 23.864691333156404 -547.2848269817483 70.0857 0.1144 8054 +8056 2 23.92473075915991 -548.5702432303375 70.4102 0.1144 8055 +8057 2 23.982449652210413 -549.8269315277817 70.649 0.1144 8056 +8058 2 23.981369970985895 -551.2089761553393 70.842 0.1144 8057 +8059 2 23.278077863791854 -553.0977867201624 71.1024 0.1144 8058 +8060 2 22.55919787413157 -553.6577146666403 71.4426 0.1144 8059 +8061 2 22.801881654742083 -555.0003654003447 71.855 0.1144 8060 +8062 2 23.081777705343846 -556.5858457885878 72.3744 0.1144 8061 +8063 2 23.356892029794018 -557.8503520781052 72.9254 0.1144 8062 +8064 2 23.61393296905874 -558.913818623984 73.3972 0.1144 8063 +8065 2 23.559290602296173 -560.3403478925952 73.8186 0.1144 8064 +8066 2 23.19348891907031 -562.0155121248824 74.2286 0.1144 8065 +8067 2 22.777828494864693 -563.0634372571012 74.6365 0.1144 8066 +8068 2 22.36114575646154 -564.2093563593999 75.0518 0.1144 8067 +8069 2 22.04020616153156 -565.6020359055611 75.4886 0.1144 8068 +8070 2 21.78009407196396 -567.0205218287447 75.9508 0.1144 8069 +8071 2 21.527770460347902 -568.3141369471764 76.4299 0.1144 8070 +8072 2 21.277406284277227 -569.4964538380781 76.9188 0.1144 8071 +8073 2 21.02544377006886 -570.6775795787408 77.4161 0.1144 8072 +8074 2 20.776016715345953 -571.8607813316987 77.9212 0.1144 8073 +8075 2 20.524500491395113 -573.1627283236849 78.4336 0.1144 8074 +8076 2 20.48469339429288 -574.5711553047576 78.9692 0.1144 8075 +8077 2 20.56032001022609 -575.8793653767634 79.5256 0.1144 8076 +8078 2 20.649941681117486 -577.3553061367328 80.0974 0.1144 8077 +8079 2 20.735547574272694 -578.8195567737444 80.6803 0.1144 8078 +8080 2 20.72118651538877 -580.2152776231126 81.2647 0.1144 8079 +8081 2 20.68890842887293 -581.5963582581564 81.8485 0.1144 8080 +8082 2 20.656492783694542 -582.9779140813305 82.4281 0.1144 8081 +8083 2 20.623735579884194 -584.3619579556777 83.0026 0.1144 8082 +8084 2 20.59203351730844 -585.7464282733563 83.5716 0.1144 8083 +8085 2 20.559276313498092 -587.1358166184729 84.135 0.1144 8084 +8086 2 20.527127960664924 -588.5230274170174 84.6902 0.1144 8085 +8087 2 20.49566036339728 -589.9094614180707 85.2342 0.1144 8086 +8088 2 20.36019600820825 -591.2096941755183 85.7668 0.1144 8087 +8089 2 20.03979650859822 -592.7055995366708 86.2753 0.1144 8088 +8090 2 19.693777483487214 -594.2559630736091 86.749 0.1144 8089 +8091 2 19.676158770302553 -595.5954072209363 87.1825 0.1144 8090 +8092 2 20.519432727562464 -596.4195256865067 87.5283 0.1144 8091 +8093 2 21.3536700395778 -597.953316741854 88.0636 0.1144 8092 +8094 2 22.207081401306425 -554.3309420773711 71.0475 0.1144 8060 +8095 2 21.581012762142713 -555.40190190408 70.4833 0.1144 8094 +8096 2 20.94478894942777 -556.0780802070533 70.2176 0.1144 8095 +8097 2 20.310215840663297 -557.6960328253829 69.9373 0.1144 8096 +8098 2 19.675951463493668 -558.8469195997429 69.6301 0.1144 8097 +8099 2 19.040802330789052 -559.7225747198361 69.3132 0.1144 8098 +8100 2 18.406537953619484 -561.7069370588005 69.0099 0.1144 8099 +8101 2 17.770942530657404 -562.9987289493324 68.7355 0.1144 8100 +8102 2 17.13537993473237 -563.6913894348284 68.493 0.1144 8101 +8103 2 16.498401100165108 -564.9821227032232 68.2836 0.1144 8102 +8104 2 15.743560517837533 -565.662733572413 68.1545 0.1144 8103 +8105 2 14.729811359457042 -566.8134142620939 68.4317 0.1144 8104 +8106 2 28.52260095758243 -532.1198574475496 62.5853 0.1144 8042 +8107 2 27.60169948676652 -532.2426899237927 62.8978 0.1144 8106 +8108 2 26.67745516880012 -532.5303763443706 63.0204 0.1144 8107 +8109 2 25.75130378110117 -534.0331183712227 62.9955 0.1144 8108 +8110 2 24.826122341787 -534.7146552534975 62.8538 0.1144 8109 +8111 2 23.902815145168365 -536.1021801984949 62.6475 0.1144 8110 +8112 2 22.97901711745942 -537.0317186422656 62.4336 0.1144 8111 +8113 2 22.05482516530574 -537.6244614023107 62.2331 0.1144 8112 +8114 2 21.130666040189162 -537.8264986529676 62.0511 0.1144 8113 +8115 2 20.20482338408514 -539.4833744256498 61.8946 0.1144 8114 +8116 2 19.280270334523763 -539.6984436017432 61.7722 0.1144 8115 +8117 2 18.530858666991687 -541.769604427406 61.7078 0.1144 8116 +8118 2 18.02024294820226 -543.0361018172832 61.7268 0.1144 8117 +8119 2 17.574341471365436 -543.9956779177915 61.8204 0.1144 8118 +8120 2 17.193437226134016 -545.0898620686457 62.0374 0.1144 8119 +8121 2 16.928149485970067 -546.440180571101 62.4666 0.1144 8120 +8122 2 16.724876535132168 -547.7870786279803 63.0888 0.1144 8121 +8123 2 16.6065265433068 -549.1595491692988 63.6734 0.1144 8122 +8124 2 16.811532663003987 -550.5299829437703 63.8081 0.1144 8123 +8125 2 16.748455606271193 -551.8690910455332 63.5964 0.1144 8124 +8126 2 16.2449780752065 -553.0580462156437 63.429 0.1144 8125 +8127 2 15.685801834192675 -554.068887992994 63.3494 0.1144 8126 +8128 2 15.12733917578153 -555.8879209483949 63.3744 0.1144 8127 +8129 2 14.986786079355861 -557.2765298228668 63.5256 0.1144 8128 +8130 2 15.353188706425106 -558.1798880975674 63.7694 0.1144 8129 +8131 2 15.51016578700513 -559.3559273053874 64.0713 0.1144 8130 +8132 2 15.336525730357971 -560.8994699166714 64.4003 0.1144 8131 +8133 2 14.753988133697582 -562.3697428084819 64.6545 0.1144 8132 +8134 2 13.80905006229909 -562.422837768116 64.8348 0.1144 8133 +8135 2 12.799763664448864 -564.3800479988438 65.002 0.1144 8134 +8136 2 12.029714403417113 -564.8020630864148 65.2445 0.1144 8135 +8137 2 11.36973910473057 -565.8112005431916 65.5628 0.1144 8136 +8138 2 10.772510000238494 -567.0080490286032 65.8832 0.1144 8137 +8139 2 10.493503109674219 -568.1770550176018 66.0162 0.1144 8138 +8140 2 10.278162404922945 -569.7561416267703 65.9518 0.1144 8139 +8141 2 10.0637588215195 -571.334518228222 65.7443 0.1144 8140 +8142 2 9.876455081867817 -572.8803113561515 65.6048 0.1144 8141 +8143 2 9.696663915609893 -574.42254625276 65.588 0.1144 8142 +8144 2 9.516839922314922 -575.757526611508 65.697 0.1144 8143 +8145 2 9.336704095842002 -577.2202254402459 65.926 0.1144 8144 +8146 2 8.95909343353149 -578.6806465005585 66.1567 0.1144 8145 +8147 2 8.570348344535773 -579.9773792725014 66.383 0.1144 8146 +8148 2 8.182179279480156 -581.3872351957041 66.605 0.1144 8147 +8149 2 7.793434190484447 -583.0087390192975 66.8408 0.1144 8148 +8150 2 7.900964880342411 -583.585311832585 67.2896 0.1144 8149 +8151 2 8.115535428968023 -584.7339798738868 68.1201 0.1144 8150 +8152 2 8.308763319007824 -585.889477521343 69.0894 0.1144 8151 +8153 2 8.370388771512818 -587.2316372169588 69.9308 0.1144 8152 +8154 2 8.277212014930964 -588.6267671290243 70.4858 0.1144 8153 +8155 2 8.145992392156671 -590.1214541737803 70.7834 0.1144 8154 +8156 2 8.013923942467528 -591.6122758311492 70.8716 0.1144 8155 +8157 2 7.880970737243331 -593.1020063667705 70.8145 0.1144 8156 +8158 2 7.748902287554188 -594.5951112810598 70.6863 0.1144 8157 +8159 2 7.616886203677765 -596.0289330205538 70.5558 0.1144 8158 +8160 2 7.483880632640783 -597.4817940922612 70.4715 0.1144 8159 +8161 2 7.35181218295164 -598.8760524325019 70.4572 0.1144 8160 +8162 2 7.21885897772745 -600.1933990377707 70.5289 0.1144 8161 +8163 2 7.191892478656733 -601.5978712567667 70.7552 0.1144 8162 +8164 2 7.406516085631679 -603.0755489715482 71.2662 0.1144 8163 +8165 2 7.767598607739259 -604.1472800074399 72.0916 0.1144 8164 +8166 2 8.136920716148971 -605.2873144264986 73.1226 0.1144 8165 +8167 2 8.501868358461294 -606.7738265279653 74.2599 0.1144 8166 +8168 2 8.409225180281382 -607.9699701444604 75.5756 0.1144 8167 +8169 2 7.704850491085978 -608.7017060932316 76.8877 0.1144 8168 +8170 2 7.084955885980378 -609.8248345189883 77.9562 0.1144 8169 +8171 2 6.924408999027214 -611.0807637619794 78.6349 0.1144 8170 +8172 2 6.76221992564011 -612.3618936242749 79.0628 0.1144 8171 +8173 2 6.599278931983761 -613.6558562059151 79.287 0.1144 8172 +8174 2 6.434017405374462 -614.9518331916516 79.3587 0.1144 8173 +8175 2 6.270406582715502 -616.2539724247649 79.3388 0.1144 8174 +8176 2 6.105688253009177 -617.5450515852691 79.2834 0.1144 8175 +8177 2 5.942077430350224 -618.8412080226074 79.231 0.1144 8176 +8178 2 5.776868269553582 -620.203709164995 79.1829 0.1144 8177 +8179 2 5.613172254044805 -621.7426299475567 79.0891 0.1144 8178 +8180 2 7.728209703025321 -583.2385788372588 65.6202 0.1144 8149 +8181 2 7.247640341647056 -584.2751419674081 65.5402 0.1144 8180 +8182 2 6.767679831245914 -585.2015389536948 65.506 0.1144 8181 +8183 2 6.287110469867596 -586.1289873222015 65.4654 0.1144 8182 +8184 2 5.806573935526387 -587.4863938668859 65.42 0.1144 8183 +8185 2 5.3259522083353374 -588.9988043685773 65.3724 0.1144 8184 +8186 2 4.845468039806839 -590.4174585941503 65.3232 0.1144 8185 +8187 2 4.3648463126158035 -591.9505450399066 65.2747 0.1144 8186 +8188 2 3.885875289375214 -593.0865223492051 65.2285 0.1144 8187 +8189 2 3.405338755033938 -594.6301177593504 65.1848 0.1144 8188 +8190 2 2.924717027842945 -596.1127154530868 65.1445 0.1144 8189 +8191 2 2.4442328593144538 -597.6918137306985 65.0661 0.1144 8190 +8192 2 31.10916138723594 -496.8530995318688 61.6896 0.1144 8012 +8193 2 30.15325747505954 -495.6184916703509 62.0693 0.1144 8192 +8194 2 29.139664289176466 -496.15604869247625 62.3087 0.1144 8193 +8195 2 28.04229099408616 -495.3512208016601 63.0524 0.1144 8194 +8196 2 26.98733262223922 -494.51862256148655 64.1161 0.1144 8195 +8197 2 25.94723485354654 -495.42609124172475 65.1997 0.1144 8196 +8198 2 24.909768350000284 -494.46863025857544 66.1371 0.1144 8197 +8199 2 23.86239614298233 -495.32415828986865 66.9637 0.1144 8198 +8200 2 22.80145095643919 -494.18844470130443 67.6738 0.1144 8199 +8201 2 21.696633843612325 -493.35891250957167 68.2872 0.1144 8200 +8202 2 20.576203514825348 -494.4227117191961 68.8416 0.1144 8201 +8203 2 19.45668738293869 -493.8264442605589 69.4014 0.1144 8202 +8204 2 18.34904870170528 -495.0521159816683 70.0073 0.1144 8203 +8205 2 17.245456216198583 -494.4683654007648 70.6401 0.1144 8204 +8206 2 16.141254879714815 -494.3480900797881 71.2687 0.1144 8205 +8207 2 15.02817256300331 -495.13107602944183 71.8575 0.1144 8206 +8208 2 15.492411029925506 -494.63031316872434 72.3232 0.1144 8207 +8209 2 16.25023646357902 -492.41087176165325 72.5578 0.1144 8208 +8210 2 17.011010819938292 -491.7233407020936 72.6695 0.1144 8209 +8211 2 17.772093907892526 -491.17005123726267 72.6956 0.1144 8210 +8212 2 18.533890578449387 -490.703493550192 72.6692 0.1144 8211 +8213 2 19.294036545055864 -488.8515447405479 72.6208 0.1144 8212 +8214 2 20.055748022762952 -487.714806413557 72.5771 0.1144 8213 +8215 2 20.816916303566963 -487.1228644857608 72.539 0.1144 8214 +8216 2 21.577690659926233 -484.7918124254107 72.5077 0.1144 8215 +8217 2 22.220912000120318 -484.1186516759641 72.492 0.1144 8216 +8218 2 22.63959251173546 -483.1095880169707 72.5052 0.1144 8217 +8219 2 23.056098661272898 -482.1049266031855 72.5348 0.1144 8218 +8220 2 23.472604810810285 -481.12410416767324 72.5704 0.1144 8219 +8221 2 23.93125859124576 -480.19810220156313 72.5791 0.1144 8220 +8222 2 24.432145195429193 -478.20690277277623 72.5343 0.1144 8221 +8223 2 24.932061851227765 -476.471525660602 72.4472 0.1144 8222 +8224 2 25.432469338116682 -475.62009423616246 72.3304 0.1144 8223 +8225 2 25.933014383668052 -474.780964998818 72.1991 0.1144 8224 +8226 2 26.43256994205898 -472.92106622059396 72.065 0.1144 8225 +8227 2 26.930656895994947 -471.1833419782754 71.797 0.1144 8226 +8228 2 19.103585124697766 -482.30025967635174 43.5988 0.1144 3412 +8229 2 18.034640611878906 -481.8511874324428 44.0191 0.1144 8228 +8230 2 17.282134684782335 -480.270914085811 44.31 0.1144 8229 +8231 2 16.50557233423893 -478.6802119050343 44.5074 0.1144 8230 +8232 2 15.910693599970822 -478.300829102566 44.6348 0.1144 8231 +8233 2 15.424321618122253 -477.49716146549474 44.6981 0.1144 8232 +8234 2 15.307123395231033 -476.0873643054481 44.683 0.1144 8233 +8235 2 15.50268144186746 -474.9147154798262 44.5721 0.1144 8234 +8236 2 14.861324849663028 -473.6582771105677 42.8655 0.1144 8235 +8237 2 13.95903296426547 -473.67258277264864 41.9034 0.1144 8236 +8238 2 12.898169957978379 -474.0486687439715 41.3969 0.1144 8237 +8239 2 11.852678599563149 -473.8314918606126 40.9993 0.1144 8238 +8240 2 10.80558029079759 -474.580932545987 40.6706 0.1144 8239 +8241 2 9.755552598101847 -475.3282509897455 40.402 0.1144 8240 +8242 2 8.694235790329111 -476.35546244675265 40.1884 0.1144 8241 +8243 2 7.595776208107054 -476.5658209186511 39.9988 0.1144 8242 +8244 2 6.465414558265757 -475.93163398889254 39.7914 0.1144 8243 +8245 2 5.342365577742113 -476.6392776718902 39.4974 0.1144 8244 +8246 2 4.308596501836105 -475.7127233972145 39.0457 0.1144 8245 +8247 2 3.2679181928839744 -476.36294247205564 38.5459 0.1144 8246 +8248 2 2.151127131206266 -475.5348922286539 38.0929 0.1144 8247 +8249 2 1.0506044057867596 -476.99258401458303 37.6639 0.1144 8248 +8250 2 -0.07233055604717542 -476.3144202085943 37.2406 0.1144 8249 +8251 2 -1.107147972181206 -475.14439142663934 36.6517 0.1144 8250 +8252 2 -1.9916992117351504 -475.68012737790417 36.1012 0.1144 8251 +8253 2 -3.0000048356049787 -474.3826019657086 35.5872 0.1144 8252 +8254 2 -4.093988742113284 -475.32451147049585 34.9759 0.1144 8253 +8255 2 -5.209974825172365 -474.46368425394303 34.407 0.1144 8254 +8256 2 -6.188609909721444 -473.17820387583 33.6549 0.1144 8255 +8257 2 14.942028196970302 -474.65263124506697 44.4884 0.1144 8235 +8258 2 13.816855201898079 -475.5806075873419 44.4248 0.1144 8257 +8259 2 12.685789179507202 -475.42941490273773 44.3856 0.1144 8258 +8260 2 11.555886131559447 -474.8660883834803 44.3705 0.1144 8259 +8261 2 10.428075354422809 -476.20953996184244 44.3783 0.1144 8260 +8262 2 9.284534241053155 -475.45871594718756 44.4044 0.1144 8261 +8263 2 8.14807484172404 -476.4326116786957 44.4366 0.1144 8262 +8264 2 7.140919880661262 -475.0815956806391 44.4746 0.1144 8263 +8265 2 6.152722367782362 -473.76494670065915 44.5917 0.1144 8264 +8266 2 5.889191861857987 -472.5817897828995 44.6922 0.1144 8265 +8267 2 5.736353396994094 -471.54448307290306 44.7695 0.1144 8266 +8268 2 5.908912570464753 -469.9430657459768 44.8258 0.1144 8267 +8269 2 6.30470755275228 -468.80751693958143 44.8624 0.1144 8268 +8270 2 6.5671339721067215 -467.6776843247568 44.8823 0.1144 8269 +8271 2 6.431487238476369 -466.3062036302212 44.8876 0.1144 8270 +8272 2 6.4400107374374524 -464.99819102042017 44.8935 0.1144 8271 +8273 2 6.2140053232857095 -464.20608625268346 44.8734 0.1144 8272 +8274 2 5.68589745724954 -463.3340743691416 44.8454 0.1144 8273 +8275 2 5.326579959555703 -462.6431907525417 44.8339 0.1144 8274 +8276 2 4.870900831225526 -461.4481472316171 44.8179 0.1144 8275 +8277 2 4.569268197593276 -460.07349949551235 44.795 0.1144 8276 +8278 2 4.2449594505362835 -458.6438619840937 44.7656 0.1144 8277 +8279 2 4.010682226592603 -457.1944358294053 44.7297 0.1144 8278 +8280 2 3.7270487118590463 -456.22427899497706 44.6639 0.1144 8279 +8281 2 3.3779254179195917 -455.4666689055076 44.5458 0.1144 8280 +8282 2 3.291329345067334 -454.26378720481125 44.4508 0.1144 8281 +8283 2 3.1984579395512576 -453.06619888994925 44.3766 0.1144 8282 +8284 2 3.0985890065561374 -451.6927185873259 44.3218 0.1144 8283 +8285 2 2.393482734513693 -450.54027267186547 45.3936 0.1144 8284 +8286 2 1.6031252507732425 -450.00935024190505 45.9211 0.1144 8285 +8287 2 0.8325326028817734 -449.5180912045277 46.3534 0.1144 8286 +8288 2 0.3414952456066924 -448.0019202167133 46.814 0.1144 8287 +8289 2 -0.012392644755102822 -446.5112208918608 47.2553 0.1144 8288 +8290 2 -0.5210265842714428 -444.9840470531205 47.6722 0.1144 8289 +8291 2 -0.6313594224126966 -443.60791801495907 47.9898 0.1144 8290 +8292 2 -0.6080913572706059 -442.30834577122306 48.2252 0.1144 8291 +8293 2 -0.8880264380755918 -440.8348889012866 48.4327 0.1144 8292 +8294 2 -1.2546056540106072 -439.4421360117733 48.624 0.1144 8293 +8295 2 -1.4375640500358564 -438.24646394128524 48.7754 0.1144 8294 +8296 2 -1.607018222193215 -437.25234756902694 48.911 0.1144 8295 +8297 2 -1.7799973409965126 -436.2606387747154 49.042 0.1144 8296 +8298 2 -1.9536376765896577 -435.21706431972603 49.1641 0.1144 8297 +8299 2 -2.2010580269935964 -434.13747425163666 49.252 0.1144 8298 +8300 2 -2.4609931141048165 -432.67116180098395 49.31 0.1144 8299 +8301 2 -2.7179464514732885 -431.2056164431786 49.348 0.1144 8300 +8302 2 -2.889051327581047 -429.78365288502994 49.3704 0.1144 8301 +8303 2 -3.0399303568995784 -428.3716710244239 49.3839 0.1144 8302 +8304 2 -3.123544680008976 -427.00008730753046 49.3942 0.1144 8303 +8305 2 -3.169377226104995 -425.66531128695397 49.4077 0.1144 8304 +8306 2 -3.059136062925724 -424.42436000117607 49.4259 0.1144 8305 +8307 2 -2.6284254425272735 -423.51572607905155 49.4519 0.1144 8306 +8308 2 -2.11135539316183 -422.46936662752523 49.4894 0.1144 8307 +8309 2 -1.7626164000235356 -420.7508005104597 49.5421 0.1144 8308 +8310 2 -2.0010852980325744 -419.83947272338287 49.6121 0.1144 8309 +8311 2 -2.582727100778012 -418.7179650931353 49.6964 0.1144 8310 +8312 2 -3.0613879725448285 -417.19118034606777 49.8632 0.1144 8311 +8313 2 -3.516308977439536 -416.08973484476775 50.0987 0.1144 8312 +8314 2 -3.96988800997881 -415.6033921897524 50.3712 0.1144 8313 +8315 2 -3.642974604525442 -413.9793127086685 50.5985 0.1144 8314 +8316 2 -3.591187355406227 -412.5841286806163 50.6486 0.1144 8315 +8317 2 -3.7878649018317816 -411.6342071191546 50.6178 0.1144 8316 +8318 2 -4.122514023518473 -410.77706623794927 50.5702 0.1144 8317 +8319 2 -4.281539526613326 -409.5529552119949 50.5226 0.1144 8318 +8320 2 -4.013046497961305 -408.15656225938574 50.493 0.1144 8319 +8321 2 -3.6843246282458963 -406.30652401288717 50.4804 0.1144 8320 +8322 2 -3.5723030274335876 -404.8877020539953 50.4767 0.1144 8321 +8323 2 -3.577104754428092 -403.60142591463847 50.4745 0.1144 8322 +8324 2 -3.629573730595535 -402.3292031528016 50.4714 0.1144 8323 +8325 2 -3.6544223064668806 -401.03464945920433 50.4666 0.1144 8324 +8326 2 -3.9966747050267344 -400.3117766133771 50.4605 0.1144 8325 +8327 2 -4.842489632401648 -399.48952195166714 50.4515 0.1144 8326 +8328 2 -5.850090883721975 -398.1684257153181 50.4386 0.1144 8327 +8329 2 -6.748645695750557 -397.104049184674 50.4207 0.1144 8328 +8330 2 -7.068891809888225 -396.15500988159397 50.3958 0.1144 8329 +8331 2 -7.048032572131994 -394.8257276893147 50.3667 0.1144 8330 +8332 2 -7.357685047440917 -393.979833752735 50.3079 0.1144 8331 +8333 2 -7.766185348641997 -392.82665399715523 50.2242 0.1144 8332 +8334 2 -8.100919663178438 -391.4539721459984 50.1418 0.1144 8333 +8335 2 -8.485806729607035 -389.9610705458429 50.0822 0.1144 8334 +8336 2 -9.192710959774566 -389.56914461615656 50.0497 0.1144 8335 +8337 2 -9.933328130870041 -388.83191483842967 50.0458 0.1144 8336 +8338 2 -10.659920521553293 -387.34557543272837 50.0724 0.1144 8337 +8339 2 -11.514954193668292 -385.8619867752803 50.1267 0.1144 8338 +8340 2 -12.396805696507155 -385.6095822947656 50.2034 0.1144 8339 +8341 2 -13.273707401845176 -384.88123179529083 50.3042 0.1144 8340 +8342 2 -14.016504445647993 -383.90452642226387 50.4823 0.1144 8341 +8343 2 -14.594852665472544 -383.2948244182288 50.7629 0.1144 8342 +8344 2 -15.380589314619325 -382.32480769810616 51.023 0.1144 8343 +8345 2 -16.32545088866304 -380.9403024795026 51.2688 0.1144 8344 +8346 2 -17.19508777417679 -379.89544092716295 51.5441 0.1144 8345 +8347 2 -17.96737566685145 -379.513870629042 51.8266 0.1144 8346 +8348 2 -18.40829309927149 -378.2996603526888 52.1021 0.1144 8347 +8349 2 -18.15499643768762 -377.0900811882541 52.4972 0.1144 8348 +8350 2 -17.506692559423147 -375.81791593206844 53.0174 0.1144 8349 +8351 2 -16.84349725156596 -374.3390283824668 53.66 0.1144 8350 +8352 2 -16.21484319615056 -373.7431943241927 54.3575 0.1144 8351 +8353 2 -15.546165915148578 -373.2123731356266 55.0645 0.1144 8352 +8354 2 -14.716207755299983 -372.61020384543906 55.697 0.1144 8353 +8355 2 -13.738963079026249 -371.0915856761662 56.2033 0.1144 8354 +8356 2 -12.792206232328112 -370.75655753749896 56.6213 0.1144 8355 +8357 2 -12.021219849948622 -368.8285044088583 56.9792 0.1144 8356 +8358 2 -11.522237213914742 -367.94337338260846 57.3054 0.1144 8357 +8359 2 -11.09530480436127 -367.05481389302565 57.6517 0.1144 8358 +8360 2 -10.968039288761211 -365.8933444598556 58.0832 0.1144 8359 +8361 2 -11.272873416761826 -364.4730645466471 58.5564 0.1144 8360 +8362 2 -11.876168326197877 -362.9742276099249 59.0299 0.1144 8361 +8363 2 -12.481325764533679 -362.4174235708534 59.5199 0.1144 8362 +8364 2 -13.119397368344941 -361.76944096536744 60.044 0.1144 8363 +8365 2 -13.93715001481145 -360.6424217075628 60.7566 0.1144 8364 +8366 2 -14.197733817119762 -361.4169363549576 61.7529 0.1144 8365 +8367 2 -13.583199465284324 -362.5116554880873 62.6147 0.1144 8366 +8368 2 -12.843978709966834 -363.7406200619134 63.476 0.1144 8367 +8369 2 -12.983346097458586 -362.96350960688494 64.1962 0.1144 8368 +8370 2 -13.174665201255884 -361.64836198061573 64.7702 0.1144 8369 +8371 2 -13.316322384251428 -360.3259403741629 65.2604 0.1144 8370 +8372 2 -13.037694004912595 -359.2971417864012 66.0181 0.1144 8371 +8373 2 -12.630833777729933 -357.87983693893364 67.1112 0.1144 8372 +8374 2 -12.15073462536673 -356.2614316104441 68.9926 0.1144 8373 +8375 2 -4.3568719696478375 -415.77243920583135 50.8522 0.1144 8314 +8376 2 -5.445381716013198 -415.26424489949727 51.2764 0.1144 8375 +8377 2 -6.520380029056202 -415.1527051783221 51.3934 0.1144 8376 +8378 2 -7.586462125787911 -416.6054727854555 51.5348 0.1144 8377 +8379 2 -8.40187282372224 -417.05353004553115 51.8232 0.1144 8378 +8380 2 -8.559960926523303 -418.43299128335883 52.1203 0.1144 8379 +8381 2 -8.63531686958224 -419.7808894773269 52.3432 0.1144 8380 +8382 2 -8.295280272349888 -420.87184082489875 52.5193 0.1144 8381 +8383 2 -7.936230067001265 -422.3314091609534 52.6324 0.1144 8382 +8384 2 -7.318232030633954 -423.5923203652272 52.6184 0.1144 8383 +8385 2 -6.65903269476938 -423.83804976150736 52.5476 0.1144 8384 +8386 2 -5.999301875797514 -425.018827506901 52.453 0.1144 8385 +8387 2 -5.368747663473055 -426.56082906264743 52.3292 0.1144 8386 +8388 2 -4.805540343320708 -428.10058658129867 52.1371 0.1144 8387 +8389 2 -4.252053525561639 -429.6159834996869 51.6043 0.1144 8388 +8390 2 3.1555848222980725 -451.1299048706117 44.284 0.1144 8284 +8391 2 3.2749978750341793 -449.6994795124679 44.2543 0.1144 8390 +8392 2 3.387774497698894 -448.2300580335988 44.231 0.1144 8391 +8393 2 3.5843548585329152 -446.6798945277949 44.2036 0.1144 8392 +8394 2 3.6645144282174957 -445.2641474214386 44.1722 0.1144 8393 +8395 2 4.30719567309159 -444.15093578524636 44.0586 0.1144 8394 +8396 2 3.8971776041732475 -443.8663378779313 43.8144 0.1144 8395 +8397 2 2.7703412027514567 -444.28866470878165 43.8931 0.1144 8396 +8398 2 1.7177265900785343 -443.626766560586 43.9662 0.1144 8397 +8399 2 0.8213985059403761 -443.54136867255846 44.0516 0.1144 8398 +8400 2 -0.2795014346206841 -442.4525966394865 44.1647 0.1144 8399 +8401 2 -1.366665503500247 -441.52209584050274 44.3069 0.1144 8400 +8402 2 -2.338015945360759 -441.868654789102 44.6541 0.1144 8401 +8403 2 -2.9325304806381993 -440.3485738391365 44.9593 0.1144 8402 +8404 2 -3.656543462572378 -440.99525921551077 45.2785 0.1144 8403 +8405 2 -4.778246676620897 -441.003508133318 45.7097 0.1144 8404 +8406 2 -5.8270300200994924 -439.7959566834369 46.0972 0.1144 8405 +8407 2 -6.850526500407797 -439.3977077141232 46.4008 0.1144 8406 +8408 2 -7.676383565875355 -438.9642805742714 46.634 0.1144 8407 +8409 2 -8.292909896204602 -437.51691087766187 46.8717 0.1144 8408 +8410 2 -8.481746598865842 -436.2470802524397 47.0624 0.1144 8409 +8411 2 -8.818387983134837 -435.31979640399175 47.2083 0.1144 8410 +8412 2 -9.713957943837531 -435.0072469182232 47.3382 0.1144 8411 +8413 2 -10.639181314131772 -433.5786151393048 47.5003 0.1144 8412 +8414 2 -11.287858175871342 -432.03918534349793 47.7016 0.1144 8413 +8415 2 -12.275788396405078 -431.9388764811183 47.8926 0.1144 8414 +8416 2 -12.631941955871374 -431.7261952804419 48.025 0.1144 8415 +8417 2 -13.19211205888498 -430.29752169495674 48.2835 0.1144 8416 +8418 2 -13.663869208235178 -429.0971948288188 48.5957 0.1144 8417 +8419 2 -14.113132343655952 -428.22050355517786 48.9751 0.1144 8418 +8420 2 -14.561223892420864 -427.40779981996235 49.383 0.1144 8419 +8421 2 -15.149683532196592 -426.17410743792186 49.824 0.1144 8420 +8422 2 -16.003101043908114 -424.74628286885087 50.2995 0.1144 8421 +8423 2 -16.826060859946004 -423.5984429497679 50.8528 0.1144 8422 +8424 2 -17.653392040498193 -423.20927911926736 51.3094 0.1144 8423 +8425 2 -18.24483343001675 -422.24504963572485 51.7056 0.1144 8424 +8426 2 -18.66411729452188 -420.7395316440846 52.0117 0.1144 8425 +8427 2 -19.118324716813937 -419.21982816027355 52.2441 0.1144 8426 +8428 2 -19.843081202468376 -418.5345663386052 52.4294 0.1144 8427 +8429 2 -20.761797876373826 -418.2284662454979 52.5893 0.1144 8428 +8430 2 -21.695216984673927 -416.81610007367425 52.775 0.1144 8429 +8431 2 -22.758157251293852 -416.7089646090309 53.074 0.1144 8430 +8432 2 -23.504244083897888 -416.0686396888015 53.5226 0.1144 8431 +8433 2 -23.91077874638745 -414.57095962506776 53.9305 0.1144 8432 +8434 2 -24.35081762643866 -413.0683953457589 54.3432 0.1144 8433 +8435 2 -24.93366625192353 -411.8586915740145 54.8008 0.1144 8434 +8436 2 -25.53370350705889 -411.7843841846214 55.2594 0.1144 8435 +8437 2 -26.17926578378985 -410.45438026030155 55.6433 0.1144 8436 +8438 2 -26.94691261055859 -408.98445332780545 55.9863 0.1144 8437 +8439 2 -27.67145416968054 -408.48353007985486 56.3592 0.1144 8438 +8440 2 -28.252290993807385 -407.25043567984306 56.81 0.1144 8439 +8441 2 -28.739364939158975 -406.3046070643999 57.3656 0.1144 8440 +8442 2 -29.299846182814083 -404.87147246238027 57.9527 0.1144 8441 +8443 2 -29.830166056058033 -403.3780283983474 58.5354 0.1144 8442 +8444 2 -30.147876018173676 -401.95125605792936 59.1948 0.1144 8443 +8445 2 -30.453415211260417 -401.2164457917548 59.873 0.1144 8444 +8446 2 -31.07915107627654 -400.9811287060287 60.494 0.1144 8445 +8447 2 -31.62916221161936 -399.4856023132686 61.08 0.1144 8446 +8448 2 -32.10967950381594 -398.0158654937927 61.796 0.1144 8447 +8449 2 -32.678538584972216 -397.67270686267193 62.4218 0.1144 8448 +8450 2 -33.33340179240605 -396.95942256596936 62.9434 0.1144 8449 +8451 2 -34.19861976568581 -395.565694816919 63.4133 0.1144 8450 +8452 2 -35.24406026201386 -394.34805416950695 63.8588 0.1144 8451 +8453 2 -36.32293409528846 -395.1249417285978 64.2323 0.1144 8452 +8454 2 -37.38925554672561 -393.9450564338914 64.4896 0.1144 8453 +8455 2 -38.34448962989948 -394.4951674373509 64.7198 0.1144 8454 +8456 2 -39.26338220013412 -393.11459195712064 64.9936 0.1144 8455 +8457 2 -40.28393526836621 -391.844213393362 65.347 0.1144 8456 +8458 2 -41.319934173745715 -392.1418109608145 65.8392 0.1144 8457 +8459 2 -42.26830287216961 -391.20366624775045 66.3396 0.1144 8458 +8460 2 -43.211816270691685 -391.08602593521914 66.7374 0.1144 8459 +8461 2 -44.1535663613099 -390.3766502106216 67.0211 0.1144 8460 +8462 2 -44.85529114676145 -388.89792947330017 67.2008 0.1144 8461 +8463 2 -45.35524161876469 -387.37836114613594 67.2974 0.1144 8462 +8464 2 -45.95105437279756 -386.0044950334029 67.3291 0.1144 8463 +8465 2 -46.799222660162556 -386.1056022134803 67.3238 0.1144 8464 +8466 2 -47.79943556114213 -385.0025274241885 67.3624 0.1144 8465 +8467 2 -48.65085840122475 -385.1329107067766 67.4411 0.1144 8466 +8468 2 -49.29112149684296 -383.97891011894535 67.5408 0.1144 8467 +8469 2 -49.76568139802369 -382.4687079627067 67.6676 0.1144 8468 +8470 2 -50.163135566972436 -380.9729255884272 67.8261 0.1144 8469 +8471 2 -50.76808118035889 -379.467898799919 68.0739 0.1144 8470 +8472 2 -51.45029749574367 -378.5066746871603 68.4527 0.1144 8471 +8473 2 -52.05132423803946 -378.0710607742098 68.878 0.1144 8472 +8474 2 -52.54316347235006 -376.84272369483733 69.3123 0.1144 8473 +8475 2 -53.047432250518305 -375.38149119476407 69.725 0.1144 8474 +8476 2 -53.224544474408084 -374.00440299238977 70.1204 0.1144 8475 +8477 2 -53.420417042215036 -372.9156499296536 70.6 0.1144 8476 +8478 2 -53.77620890072634 -372.1837195228538 71.146 0.1144 8477 +8479 2 -53.912960134517235 -371.0871295279045 71.7861 0.1144 8478 +8480 2 -54.25623725632111 -370.05087380745033 72.3506 0.1144 8479 +8481 2 -54.720908583759325 -368.7441192785799 72.798 0.1144 8480 +8482 2 -54.703378165007535 -367.4595931921397 73.2281 0.1144 8481 +8483 2 -54.69512746902123 -366.15949536049095 73.5658 0.1144 8482 +8484 2 -54.77970863893234 -364.8398590788415 73.8651 0.1144 8483 +8485 2 -55.03937643369848 -363.46016778646083 74.0877 0.1144 8484 +8486 2 -54.85388888232137 -363.64327020980636 73.9362 0.1144 8485 +8487 2 -53.79398962695981 -363.6227927710886 73.5661 0.1144 8486 +8488 2 -52.74432161693546 -363.3683115487033 73.5358 0.1144 8487 +8489 2 -51.87052368298855 -362.06910667017763 73.5232 0.1144 8488 +8490 2 -51.299713666682706 -360.6127534152208 73.5171 0.1144 8489 +8491 2 -51.48059109724476 -359.33436328147195 73.5182 0.1144 8490 +8492 2 -51.60815331174961 -358.016972043627 73.5274 0.1144 8491 +8493 2 -51.4372776692664 -356.85799130943695 73.5437 0.1144 8492 +8494 2 -51.18282965233882 -355.7751184397612 73.5647 0.1144 8493 +8495 2 -50.77269264052771 -354.8592907531832 73.6005 0.1144 8494 +8496 2 -50.3993205074658 -353.9022697024586 73.675 0.1144 8495 +8497 2 -50.437567883043016 -352.61696070800235 73.7419 0.1144 8496 +8498 2 -50.657764859178684 -351.1971803204323 73.7727 0.1144 8497 +8499 2 -50.92924473461253 -349.750897829401 73.7685 0.1144 8498 +8500 2 -51.37449519388018 -348.2035026882152 73.7248 0.1144 8499 +8501 2 -51.14415083436754 -347.1865299196628 73.591 0.1144 8500 +8502 2 -50.59762999030673 -346.40864447647147 73.3768 0.1144 8501 +8503 2 -50.169540022243524 -345.4701109620851 73.1914 0.1144 8502 +8504 2 -49.81007224066043 -344.4314873276244 73.0509 0.1144 8503 +8505 2 -49.571517736211035 -343.28394834695285 72.8918 0.1144 8504 +8506 2 -49.370078281355475 -341.58648873038817 72.69 0.1144 8505 +8507 2 -49.16797760971012 -339.7900268669113 72.4366 0.1144 8506 +8508 2 -49.00053861943988 -338.0704328758056 72.1059 0.1144 8507 +8509 2 -49.11527495659591 -336.9061104558689 71.6232 0.1144 8508 +8510 2 -49.36153164002002 -336.0128045974823 70.9881 0.1144 8509 +8511 2 -49.61530020430133 -335.15450351250325 70.1865 0.1144 8510 +8512 2 -50.302776356843836 -334.1283918619423 69.0659 0.1144 8511 +8513 2 -51.191661931307436 -332.8910020257716 67.9826 0.1144 8512 +8514 2 -52.0107788590514 -331.4698690418814 67.1216 0.1144 8513 +8515 2 -52.65240754400904 -330.78633226175583 66.3939 0.1144 8514 +8516 2 -53.142110753908554 -330.261643232393 65.8073 0.1144 8515 +8517 2 -53.85879744112006 -328.9002041739873 65.3176 0.1144 8516 +8518 2 -54.79932839736267 -328.5824803511376 64.9491 0.1144 8517 +8519 2 -55.296473015952216 -327.7869400450018 64.6792 0.1144 8518 +8520 2 -55.564874234997596 -326.28990922175046 64.4874 0.1144 8519 +8521 2 -55.83376628513334 -324.7922692452879 64.3359 0.1144 8520 +8522 2 -56.10274352811882 -323.2936198305269 64.1998 0.1144 8521 +8523 2 -56.3725726996023 -321.7964531922652 64.0564 0.1144 8522 +8524 2 -56.66145613121901 -320.3216888185018 63.8795 0.1144 8523 +8525 2 -57.09071927294613 -318.92736129874254 63.6188 0.1144 8524 +8526 2 -57.674593314211656 -317.459806488871 63.2402 0.1144 8525 +8527 2 -58.26634343532517 -316.74578231444536 62.7385 0.1144 8526 +8528 2 -58.72592671406335 -316.11494385298084 62.1289 0.1144 8527 +8529 2 -58.93813839206932 -314.69232141092607 61.4494 0.1144 8528 +8530 2 -58.872405446917696 -313.4498019397122 60.7653 0.1144 8529 +8531 2 -58.59334549800404 -311.95844895351155 60.0992 0.1144 8530 +8532 2 -58.31334842774267 -310.12316563866216 59.442 0.1144 8531 +8533 2 -57.9414740267494 -308.7851789556652 58.7919 0.1144 8532 +8534 2 -57.31192428923599 -308.0316832612257 58.2078 0.1144 8533 +8535 2 -56.950796498953224 -306.8487963143589 57.7279 0.1144 8534 +8536 2 -56.678426038460394 -305.7545244020334 57.3443 0.1144 8535 +8537 2 -56.33432811122806 -304.73409217074567 57.05 0.1144 8536 +8538 2 -55.96032758841331 -303.745117968062 56.7874 0.1144 8537 +8539 2 -55.95724361705882 -302.56308765352753 56.4172 0.1144 8538 +8540 2 -56.66413002496065 -301.05562907983557 55.7836 0.1144 8539 +8541 2 -57.4395639446079 -299.7725209017271 55.0771 0.1144 8540 +8542 2 -58.34892903850758 -298.58264742758934 54.5482 0.1144 8541 +8543 2 -59.310926183852416 -298.74492559401256 54.2142 0.1144 8542 +8544 2 -60.280995536686646 -297.34670594782426 54.0562 0.1144 8543 +8545 2 -61.25409118009662 -297.92661939873176 54.0518 0.1144 8544 +8546 2 -62.22473655687094 -296.52614872984526 54.1612 0.1144 8545 +8547 2 -63.19569066524021 -295.12832832860823 54.3312 0.1144 8546 +8548 2 -64.17921428517609 -294.91169222811817 54.5236 0.1144 8547 +8549 2 -65.26475668302265 -294.5740306578855 54.7604 0.1144 8548 +8550 2 -66.3847071842935 -295.1967352659599 55.0365 0.1144 8549 +8551 2 -67.46870430235171 -294.33627036398195 55.2871 0.1144 8550 +8552 2 -68.52916216783558 -293.0834103747846 55.487 0.1144 8551 +8553 2 -69.6225454094465 -293.48947229978484 55.6996 0.1144 8552 +8554 2 -70.73783673845702 -292.82182816875155 55.8729 0.1144 8553 +8555 2 -71.8569031767295 -293.2627691565537 55.9924 0.1144 8554 +8556 2 -72.97748276028979 -292.663888404886 56.0725 0.1144 8555 +8557 2 -74.04394246292605 -291.42800093212287 56.1322 0.1144 8556 +8558 2 -75.06059138075015 -291.44728855481765 56.18 0.1144 8557 +8559 2 -76.0630310096202 -290.70685005665814 56.2234 0.1144 8558 +8560 2 -77.00704375674906 -290.46075155728397 56.2755 0.1144 8559 +8561 2 -77.80231339286034 -289.2305506220312 56.3416 0.1144 8560 +8562 2 -78.54992498985177 -287.7271272830247 56.4516 0.1144 8561 +8563 2 -79.29268059440489 -286.6486931810576 56.6048 0.1144 8562 +8564 2 -80.14660365788937 -285.8279929983867 56.8316 0.1144 8563 +8565 2 -81.23753803562283 -285.64012509703076 57.2734 0.1144 8564 +8566 2 -82.17729304616418 -285.35372957652686 58.0138 0.1144 8565 +8567 2 -83.09836509834327 -285.24473516516974 59.4569 0.1144 8566 +8568 2 -55.611098836262855 -362.0941476934555 74.2577 0.1144 8485 +8569 2 -56.60778919964295 -360.7999368417748 74.4957 0.1144 8568 +8570 2 -57.73520403405129 -361.61875861504444 74.744 0.1144 8569 +8571 2 -58.603997603279794 -360.33389250266293 74.9818 0.1144 8570 +8572 2 -59.23339976772404 -359.94462705454544 75.1839 0.1144 8571 +8573 2 -59.90920860771591 -359.12580485434285 75.4004 0.1144 8572 +8574 2 -60.32653613825874 -357.70938297284977 75.5684 0.1144 8573 +8575 2 -60.6361362477549 -356.2740160195523 75.6843 0.1144 8574 +8576 2 -60.58738931735746 -355.01799248236676 75.7686 0.1144 8575 +8577 2 -60.561354429004936 -353.7431565776246 75.8377 0.1144 8576 +8578 2 -60.63070640481098 -352.4070144678369 75.9041 0.1144 8577 +8579 2 -60.69854523532911 -351.07183954654556 75.976 0.1144 8578 +8580 2 -60.778058587852485 -349.721454864863 76.0704 0.1144 8579 +8581 2 -61.01272973624085 -348.2320058028474 76.2292 0.1144 8580 +8582 2 -61.24977378339495 -346.7445000687306 76.4406 0.1144 8581 +8583 2 -60.95582951337563 -346.73829226103027 76.5559 0.1144 8582 +8584 2 -59.99659626763673 -346.72091813621176 76.9241 0.1144 8583 +8585 2 -58.938751348160636 -345.02797208774456 77.1926 0.1144 8584 +8586 2 -57.90626677661577 -346.1520589223899 77.3576 0.1144 8585 +8587 2 -57.18458343672022 -345.8840931206905 77.3654 0.1144 8586 +8588 2 -56.54191151371616 -347.2958878868971 77.2436 0.1144 8587 +8589 2 -55.93621328752379 -348.85848430437915 77.0669 0.1144 8588 +8590 2 -55.638011795474995 -350.35123199287835 77.0507 0.1144 8589 +8591 2 -55.37259232617244 -351.78910332456695 77.1985 0.1144 8590 +8592 2 -55.10855937005824 -353.2114585355967 77.4836 0.1144 8591 +8593 2 -54.81321609723585 -354.61737419341733 77.8562 0.1144 8592 +8594 2 -53.833038426033596 -354.39433284600267 78.1544 0.1144 8593 +8595 2 -52.855630679624845 -355.37022213762236 78.5282 0.1144 8594 +8596 2 -61.68085159255032 -345.3858500743375 76.8306 0.1144 8582 +8597 2 -62.026091251482605 -343.87058577486386 77.1523 0.1144 8596 +8598 2 -62.190780134681 -342.428818555163 77.5169 0.1144 8597 +8599 2 -62.382064002394685 -340.9787975586693 77.8898 0.1144 8598 +8600 2 -62.78302598826015 -340.2896495026571 78.2275 0.1144 8599 +8601 2 -63.458837237298496 -339.89256122543304 78.5019 0.1144 8600 +8602 2 -64.27690341576792 -338.36370128892787 78.7217 0.1144 8601 +8603 2 -65.07916747777523 -338.3609967811078 78.9373 0.1144 8602 +8604 2 -65.5913999376877 -337.30032043914383 79.1742 0.1144 8603 +8605 2 -65.80803603855726 -335.8298262840595 79.4128 0.1144 8604 +8606 2 -66.1555438646298 -334.3203227426269 79.686 0.1144 8605 +8607 2 -66.74649752464119 -332.75973312028697 80.0338 0.1144 8606 +8608 2 -67.40925704323523 -331.2032930669724 80.463 0.1144 8607 +8609 2 -68.06136435402166 -329.9737636842084 80.9698 0.1144 8608 +8610 2 -68.64389021976558 -329.91509291295193 81.5262 0.1144 8609 +8611 2 -69.10606442538497 -328.5774772975517 82.0929 0.1144 8610 +8612 2 -69.59136103468663 -327.0375363377024 82.5986 0.1144 8611 +8613 2 -70.1477912645219 -325.6514265817182 83.008 0.1144 8612 +8614 2 -70.67883402511784 -325.3269256595089 83.356 0.1144 8613 +8615 2 -71.11877910010651 -324.1590460997443 83.6914 0.1144 8614 +8616 2 -71.27388503957413 -322.77697985871407 84.0846 0.1144 8615 +8617 2 -71.64406828653483 -321.3970979710711 84.4603 0.1144 8616 +8618 2 -72.21199093887998 -319.90634227981803 84.7806 0.1144 8617 +8619 2 -72.79546244348809 -318.3402492272576 85.064 0.1144 8618 +8620 2 -73.38307635793205 -316.7768789342039 85.3695 0.1144 8619 +8621 2 -73.97523443163632 -316.1121278707595 85.7604 0.1144 8620 +8622 2 -74.56939338013568 -315.39660607775664 86.2212 0.1144 8621 +8623 2 -75.1598124554567 -314.08256278624447 86.7166 0.1144 8622 +8624 2 -75.75664752368712 -312.7162448493117 87.0262 0.1144 8623 +8625 2 -76.35571242139113 -312.4581964023224 87.0702 0.1144 8624 +8626 2 -76.95401919565964 -311.08628884564183 86.8787 0.1144 8625 +8627 2 -76.9454155170411 -310.59400257271 85.4605 0.1144 8626 +8628 2 -76.23960706871124 -309.9968877893353 83.5103 0.1144 8627 +8629 2 -75.26959907895848 -309.26317239894576 82.357 0.1144 8628 +8630 2 -74.21752185078533 -309.0940533466748 81.3159 0.1144 8629 +8631 2 -73.22623857873772 -309.3518661608464 80.3004 0.1144 8630 +8632 2 -72.59980075021853 -310.8486934060108 79.4671 0.1144 8631 +8633 2 -72.0599454809635 -312.32318048301306 78.7198 0.1144 8632 +8634 2 -71.58597632440552 -313.64139096828757 78.0254 0.1144 8633 +8635 2 -71.14017756605315 -314.98347385178687 76.8454 0.1144 8634 +8636 2 -77.21635650424959 -310.46228355361546 86.7322 0.1144 8626 +8637 2 -77.88085812281003 -308.89936955866096 86.6281 0.1144 8636 +8638 2 -78.75384095705738 -307.73339155001565 86.6942 0.1144 8637 +8639 2 -79.67122658517039 -307.52499216565207 86.9445 0.1144 8638 +8640 2 -80.2670359358465 -306.00721651643534 86.9056 0.1144 8639 +8641 2 -80.7921948791768 -304.4290555365058 86.8501 0.1144 8640 +8642 2 -81.40462334050312 -303.3753003156322 86.8146 0.1144 8641 +8643 2 -82.07892213679017 -303.2722961491933 86.77 0.1144 8642 +8644 2 -82.73567120601913 -301.69531192164425 86.7017 0.1144 8643 +8645 2 -83.39242027524806 -300.11752397228054 86.569 0.1144 8644 +8646 2 -84.15931208016445 -298.5737406912565 86.4147 0.1144 8645 +8647 2 -85.04191860485575 -298.2845579130801 86.3206 0.1144 8646 +8648 2 -85.94901381510526 -297.60236090620435 86.3024 0.1144 8647 +8649 2 -86.80842126078106 -296.3673214014629 86.3458 0.1144 8648 +8650 2 -86.96583811470062 -295.37970112627687 86.5015 0.1144 8649 +8651 2 -86.11101475866676 -294.65226218850347 86.917 0.1144 8650 +8652 2 -85.20561528493081 -293.8047166844137 87.519 0.1144 8651 +8653 2 -84.57262820266776 -291.9553014259137 88.2165 0.1144 8652 +8654 2 -84.33860933996229 -290.85336570690583 88.8348 0.1144 8653 +8655 2 -84.32037626517084 -289.53591643863996 89.1078 0.1144 8654 +8656 2 -84.48350273885166 -288.09026703725215 88.9571 0.1144 8655 +8657 2 -84.72308224549118 -286.6075760792032 88.7421 0.1144 8656 +8658 2 -84.9737930772329 -285.1743593428909 88.5497 0.1144 8657 +8659 2 -85.22513229872742 -284.1083420050939 88.4055 0.1144 8658 +8660 2 -85.47602522996448 -283.2007902661458 88.3319 0.1144 8659 +8661 2 -85.7269705270143 -282.2883613009161 88.3254 0.1144 8660 +8662 2 -85.9788857724489 -281.15341956133244 88.3448 0.1144 8661 +8663 2 -86.22986389653573 -279.661484657706 88.3582 0.1144 8662 +8664 2 -86.62741187054695 -278.123573118331 88.3456 0.1144 8663 +8665 2 -87.26103853609368 -276.5628994498738 88.2885 0.1144 8664 +8666 2 -88.00962008146996 -276.210696416558 88.1913 0.1144 8665 +8667 2 -88.77255467762902 -275.1142721696843 88.072 0.1144 8666 +8668 2 -89.61588410228481 -273.94482405157436 87.9752 0.1144 8667 +8669 2 -90.53878693962605 -272.499474096595 87.9354 0.1144 8668 +8670 2 -91.48436519785552 -272.3910306353963 87.9575 0.1144 8669 +8671 2 -92.43061328508757 -271.60934677893704 88.0331 0.1144 8670 +8672 2 -93.27968035613367 -270.9474436246105 88.1527 0.1144 8671 +8673 2 -93.99397293664195 -270.11798936674626 88.3033 0.1144 8672 +8674 2 -94.65009361611808 -268.98539874759433 88.4682 0.1144 8673 +8675 2 -95.30002725736334 -267.4163694279747 88.6365 0.1144 8674 +8676 2 -95.95026963020354 -265.84953201986957 88.8056 0.1144 8675 +8677 2 -96.40731814199285 -264.5063670579167 88.9588 0.1144 8676 +8678 2 -96.40654649982665 -263.11502879624624 89.0641 0.1144 8677 +8679 2 -96.2011881738805 -261.83630313656477 89.129 0.1144 8678 +8680 2 -96.04831475187899 -260.62321127967704 89.2346 0.1144 8679 +8681 2 -96.00829031919783 -259.322140313518 89.4776 0.1144 8680 +8682 2 -95.99165558254408 -258.0103251318153 89.8722 0.1144 8681 +8683 2 -95.78032996299252 -256.8795525783988 90.3854 0.1144 8682 +8684 2 -95.49249515054984 -255.8246654810966 90.9857 0.1144 8683 +8685 2 -95.20300653257365 -254.78090929716433 91.6398 0.1144 8684 +8686 2 -94.91236586671728 -253.612908867903 92.3177 0.1144 8685 +8687 2 -94.67180437900281 -252.18520454994848 93.0101 0.1144 8686 +8688 2 -94.45738607491668 -250.75016554459683 93.7138 0.1144 8687 +8689 2 -94.24663027613903 -249.46012423818422 94.4261 0.1144 8688 +8690 2 -94.05717028076397 -247.94376260103513 95.1457 0.1144 8689 +8691 2 -94.44898330151995 -246.99158210624887 95.8681 0.1144 8690 +8692 2 -95.04188477797707 -246.03493820400308 96.5815 0.1144 8691 +8693 2 -95.64356111796322 -244.8221974327746 97.2919 0.1144 8692 +8694 2 -96.24528982376212 -243.30591544406786 97.9983 0.1144 8693 +8695 2 -96.92896553354885 -241.8144702097025 98.7857 0.1144 8694 +8696 2 -97.66996362491625 -241.12433708231623 99.6646 0.1144 8695 +8697 2 -98.3800515271864 -240.48329664490555 100.5348 0.1144 8696 +8698 2 -98.99722986425245 -239.36116027894633 101.2799 0.1144 8697 +8699 2 -100.08000715539845 -239.30811182950623 101.7626 0.1144 8698 +8700 2 -101.19372987172528 -238.2194502773629 102.0326 0.1144 8699 +8701 2 -102.31141599997564 -238.07754521734233 102.1446 0.1144 8700 +8702 2 -103.42981571082858 -238.0384360686071 102.1591 0.1144 8701 +8703 2 -104.55218285248714 -237.65128738300098 102.188 0.1144 8702 +8704 2 -105.63378235951802 -239.12407144199557 102.2935 0.1144 8703 +8705 2 -106.7009422378431 -238.82352158507462 102.482 0.1144 8704 +8706 2 -107.39950188311519 -239.36838843752872 102.7768 0.1144 8705 +8707 2 -108.09151890337833 -241.2741041388786 103.1344 0.1144 8706 +8708 2 -108.78308963338401 -242.4784100907944 103.5255 0.1144 8707 +8709 2 -109.45167621090661 -243.01194338540563 104.3302 0.1144 8708 +8710 2 -79.9080081403873 -306.2197495898299 87.5344 0.1144 8639 +8711 2 -80.14062845721435 -304.74793701625117 87.9578 0.1144 8710 +8712 2 -80.4694345083486 -303.2384030904656 88.4162 0.1144 8711 +8713 2 -80.79435451542929 -301.73007572867476 88.8549 0.1144 8712 +8714 2 -81.06146302634886 -300.2397982660986 89.2321 0.1144 8713 +8715 2 -81.31075451786516 -298.75587818619664 89.556 0.1144 8714 +8716 2 -81.54395396021545 -297.6970292998799 89.8444 0.1144 8715 +8717 2 -81.72066985061397 -296.6231850904959 90.1239 0.1144 8716 +8718 2 -81.85622828981148 -295.45740399748945 90.4126 0.1144 8717 +8719 2 -82.10324068762455 -294.5502036081986 90.7189 0.1144 8718 +8720 2 -82.70065108725849 -293.3730929138923 91.0204 0.1144 8719 +8721 2 -83.45052774980712 -291.8277313046958 91.3128 0.1144 8720 +8722 2 -84.20196992345635 -290.2780241511421 91.6031 0.1144 8721 +8723 2 -84.91732625741193 -288.8168574530901 91.8999 0.1144 8722 +8724 2 -85.57474205406041 -288.9228125292233 92.2172 0.1144 8723 +8725 2 -86.06814679947165 -287.60347080631897 92.5786 0.1144 8724 +8726 2 -86.42412385906138 -286.08683166884754 92.9914 0.1144 8725 +8727 2 -86.72446068298474 -284.5918305204797 93.4503 0.1144 8726 +8728 2 -86.91244004121458 -283.15584582614053 93.9655 0.1144 8727 +8729 2 -86.96427993509258 -281.8079092057922 94.5232 0.1144 8728 +8730 2 -87.01246825022511 -280.4562761256536 95.044 0.1144 8729 +8731 2 -87.08773687033379 -279.07989779313044 95.4873 0.1144 8730 +8732 2 -87.17910064119155 -277.69006762144903 95.8633 0.1144 8731 +8733 2 -87.53899347028889 -276.5395356799743 96.2374 0.1144 8732 +8734 2 -88.39124800755722 -276.10640792928683 96.6297 0.1144 8733 +8735 2 -89.30609507460166 -275.28158928275633 97.008 0.1144 8734 +8736 2 -90.1988982120939 -273.8078474982244 97.3053 0.1144 8735 +8737 2 -91.04916969683293 -272.90926157209606 97.5358 0.1144 8736 +8738 2 -91.79129691163314 -272.154864371804 97.713 0.1144 8737 +8739 2 -92.48652972137859 -271.1952733124402 97.8544 0.1144 8738 +8740 2 -93.25253987234305 -270.3910887445714 97.9927 0.1144 8739 +8741 2 -94.07919881484608 -269.75480561320506 98.1599 0.1144 8740 +8742 2 -94.91085992066287 -268.6074767453985 98.3693 0.1144 8741 +8743 2 -95.74184027091398 -267.09451340938904 98.6196 0.1144 8742 +8744 2 -96.57229696303779 -266.1752912618469 98.9086 0.1144 8743 +8745 2 -97.41877620878569 -265.7129571488469 99.2494 0.1144 8744 +8746 2 -98.29549822367483 -264.6095018121172 99.661 0.1144 8745 +8747 2 -99.1703022422684 -264.4176866759468 100.1456 0.1144 8746 +8748 2 -100.03129330539917 -262.94431845025116 100.7121 0.1144 8747 +8749 2 -100.92880798096444 -262.08281183066674 101.3174 0.1144 8748 +8750 2 -101.88140118049087 -261.2365622915039 101.906 0.1144 8749 +8751 2 -102.79695331262141 -260.6995514666495 102.4531 0.1144 8750 +8752 2 -103.6489521766442 -259.2093970702649 102.9356 0.1144 8751 +8753 2 -104.29473799212029 -259.20559381277803 103.3306 0.1144 8752 +8754 2 -104.57053066308951 -258.1476841249799 103.5616 0.1144 8753 +8755 2 -104.91711849754344 -256.6129329582757 103.7344 0.1144 8754 +8756 2 -105.36263624915631 -255.05113412220146 103.9366 0.1144 8755 +8757 2 -105.81483187009032 -253.4883198243587 104.1737 0.1144 8756 +8758 2 -106.3360360137099 -251.9195473595197 104.4344 0.1144 8757 +8759 2 -107.11775998670352 -250.37806261867513 104.6755 0.1144 8758 +8760 2 -108.07465097699392 -250.95498562842153 104.862 0.1144 8759 +8761 2 -109.06159171036722 -249.5619477983339 105.0577 0.1144 8760 +8762 2 -110.07974757031297 -249.3425846519143 105.32 0.1144 8761 +8763 2 -111.09504831261542 -248.8067830645166 105.6448 0.1144 8762 +8764 2 -112.10820751987714 -247.54808723794218 106.0293 0.1144 8763 +8765 2 -113.11861634112103 -246.84895814236307 106.4664 0.1144 8764 +8766 2 -114.12059495905098 -246.5033096264932 106.9424 0.1144 8765 +8767 2 -115.04763331052524 -245.91178471988917 107.4592 0.1144 8766 +8768 2 -115.83786416216616 -245.07112622080137 108.0173 0.1144 8767 +8769 2 -116.58564313797031 -243.53422525048535 108.5986 0.1144 8768 +8770 2 -117.37021060950777 -242.41627584912726 109.167 0.1144 8769 +8771 2 -118.17579728735336 -241.41801442004748 109.6875 0.1144 8770 +8772 2 -118.88795384345056 -240.86639190588448 110.1153 0.1144 8771 +8773 2 -119.46995364202054 -239.36547843587428 110.425 0.1144 8772 +8774 2 -119.8378279751279 -237.8230766525711 110.6633 0.1144 8773 +8775 2 -119.97155671246274 -236.3817187831006 110.8604 0.1144 8774 +8776 2 -120.08465396476792 -234.95176002624714 111.0416 0.1144 8775 +8777 2 -120.19606768608568 -233.52354139361248 111.223 0.1144 8776 +8778 2 -120.30845135578822 -232.10197052569225 111.4145 0.1144 8777 +8779 2 -120.42253809525394 -230.6775792752511 111.6195 0.1144 8778 +8780 2 -120.54610545587144 -229.24381842437353 111.8331 0.1144 8779 +8781 2 -120.67934336211597 -227.8054658244461 112.0566 0.1144 8780 +8782 2 -120.81155895416293 -226.3673363781241 112.2943 0.1144 8781 +8783 2 -120.94416847065467 -224.97302156908762 112.551 0.1144 8782 +8784 2 -121.0777151084941 -223.66285588450938 112.8299 0.1144 8783 +8785 2 -121.26387569142432 -222.41776698030333 113.1455 0.1144 8784 +8786 2 -121.75144046786617 -221.5639736204036 113.5652 0.1144 8785 +8787 2 -122.46323282497265 -220.26663526124747 114.0703 0.1144 8786 +8788 2 -123.17016918964073 -219.39502303154507 114.588 0.1144 8787 +8789 2 -123.87671162986403 -217.84017581636357 115.0834 0.1144 8788 +8790 2 -124.60048413898755 -216.79811573885 115.5722 0.1144 8789 +8791 2 -125.37868557438179 -216.77670842498395 116.1003 0.1144 8790 +8792 2 -126.18828492838048 -215.26577678180868 116.6553 0.1144 8791 +8793 2 -126.9683191672205 -214.51593456605212 117.1318 0.1144 8792 +8794 2 -127.7244766730625 -213.34817579054868 117.4925 0.1144 8793 +8795 2 -128.49630966326703 -212.52307253513217 117.7607 0.1144 8794 +8796 2 -129.33295339362172 -211.11334860318843 117.9637 0.1144 8795 +8797 2 -130.22785662690487 -210.5630885556622 118.1281 0.1144 8796 +8798 2 -131.1337474234615 -210.14478325755005 118.2784 0.1144 8797 +8799 2 -132.04365089617124 -208.66166172843535 118.4403 0.1144 8798 +8800 2 -132.97408825472846 -207.19961363663037 118.6329 0.1144 8799 +8801 2 -133.92464603591276 -207.59966246732893 118.862 0.1144 8800 +8802 2 -134.87801207955732 -206.33607741904848 119.114 0.1144 8801 +8803 2 -135.8265252323465 -205.32868778063414 119.3662 0.1144 8802 +8804 2 -136.7674264960498 -204.71018034345474 119.6009 0.1144 8803 +8805 2 -137.70649805789046 -204.0027457431957 119.819 0.1144 8804 +8806 2 -138.64463249838334 -202.80195836177901 120.0282 0.1144 8805 +8807 2 -139.58472637442156 -203.10987347054586 120.2356 0.1144 8806 +8808 2 -140.53266350327064 -201.66700010356016 120.4728 0.1144 8807 +8809 2 -141.4983645931737 -200.8710546305912 120.7993 0.1144 8808 +8810 2 -142.47140717823427 -200.76978304208444 121.2103 0.1144 8809 +8811 2 -143.36870451822068 -199.40692136891755 121.5866 0.1144 8810 +8812 2 -144.0608970092443 -197.84116081745833 121.7588 0.1144 8811 +8813 2 -144.63047346712293 -196.53678775313455 121.6877 0.1144 8812 +8814 2 -145.18406260746096 -195.36296258867637 121.4234 0.1144 8813 +8815 2 -145.554871835128 -194.3490427644753 121.0252 0.1144 8814 +8816 2 -145.60982321243154 -192.9813136892529 120.5814 0.1144 8815 +8817 2 -145.86765751121527 -191.90938461999662 120.1768 0.1144 8816 +8818 2 -146.49148389745233 -190.78550880036425 119.9066 0.1144 8817 +8819 2 -147.1910818685459 -189.69150181232533 119.7619 0.1144 8818 +8820 2 -147.97142553151738 -189.2463423695495 119.7487 0.1144 8819 +8821 2 -148.8708619974979 -188.1762925136781 119.8915 0.1144 8820 +8822 2 -149.82365201720233 -186.74482865187966 120.1752 0.1144 8821 +8823 2 -150.7794621243163 -185.92335779884235 120.559 0.1144 8822 +8824 2 -151.77597038820105 -185.9829670807867 121.0073 0.1144 8823 +8825 2 -152.85995209304 -185.6111799321367 121.49 0.1144 8824 +8826 2 -153.97800442087964 -185.89537534791646 121.977 0.1144 8825 +8827 2 -155.05045605807865 -184.73087708272237 122.4779 0.1144 8826 +8828 2 -156.0354750010367 -183.84338409651633 122.9827 0.1144 8827 +8829 2 -156.9611330424888 -183.9490829966748 123.475 0.1144 8828 +8830 2 -157.85767536062278 -182.74843377370703 123.9456 0.1144 8829 +8831 2 -158.75078102654376 -182.93845940253146 124.4009 0.1144 8830 +8832 2 -159.64539983775256 -181.55527292228155 124.845 0.1144 8831 +8833 2 -160.53944262502128 -180.0866781817087 125.2832 0.1144 8832 +8834 2 -161.43317668069503 -179.0212872490651 125.7217 0.1144 8833 +8835 2 -162.32815658931153 -179.15526136508808 126.1697 0.1144 8834 +8836 2 -163.21966391709483 -177.82033241364462 126.6345 0.1144 8835 +8837 2 -164.11250229067056 -178.1293511128645 127.1217 0.1144 8836 +8838 2 -165.0021768150081 -176.76768022392048 127.6346 0.1144 8837 +8839 2 -165.7892438174108 -175.25611331272495 128.2182 0.1144 8838 +8840 2 -166.1657899989316 -173.77886211495291 128.9098 0.1144 8839 +8841 2 -166.47355902149192 -172.30744437631293 129.6823 0.1144 8840 +8842 2 -166.77837601976333 -170.95937522820398 130.5007 0.1144 8841 +8843 2 -167.43016849048487 -170.84448920685543 131.2802 0.1144 8842 +8844 2 -168.12007809368563 -169.81714290243255 132.0206 0.1144 8843 +8845 2 -168.81267242883007 -168.33635446871813 132.7161 0.1144 8844 +8846 2 -169.58846503683841 -167.21735373242126 133.3016 0.1144 8845 +8847 2 -170.38301178559783 -165.79377895943662 133.8064 0.1144 8846 +8848 2 -171.18041365200054 -165.73406292677646 134.26 0.1144 8847 +8849 2 -171.9684153667045 -164.20596831015993 134.6951 0.1144 8848 +8850 2 -172.72101199728036 -163.6463627499827 135.154 0.1144 8849 +8851 2 -173.47168201934807 -163.1294577584663 135.6398 0.1144 8850 +8852 2 -174.21960165539787 -161.59211392014453 136.1542 0.1144 8851 +8853 2 -174.9674689256349 -160.37837596278013 136.6904 0.1144 8852 +8854 2 -175.7131618337942 -158.89706194486592 137.2414 0.1144 8853 +8855 2 -176.45933385924803 -158.83914165848586 137.8009 0.1144 8854 +8856 2 -177.20439837765448 -157.82642638382345 138.3651 0.1144 8855 +8857 2 -177.94954808891075 -156.4825651577333 138.9343 0.1144 8856 +8858 2 -178.69475016597974 -156.41205580194983 139.5108 0.1144 8857 +8859 2 -179.4386102706933 -154.91959547410607 140.0958 0.1144 8858 +8860 2 -180.02011072065653 -153.39332998741384 140.7115 0.1144 8859 +8861 2 -180.58121725248137 -152.0722108374617 141.3499 0.1144 8860 +8862 2 -181.14018224926548 -150.5915727882135 142.0048 0.1144 8861 +8863 2 -181.69945597764448 -149.74712458284316 142.6695 0.1144 8862 +8864 2 -182.25677027047817 -149.24885009476318 143.3373 0.1144 8863 +8865 2 -182.81502168465965 -147.9097312312987 144.0037 0.1144 8864 +8866 2 -183.37434777885144 -146.40507723574206 144.6634 0.1144 8865 +8867 2 -183.93380360672583 -145.79149553654952 145.3147 0.1144 8866 +8868 2 -184.60884270418262 -145.07095670143616 145.9391 0.1144 8867 +8869 2 -185.3288722385447 -143.5419481731474 146.5349 0.1144 8868 +8870 2 -186.05104330794742 -142.10093159477438 147.1112 0.1144 8869 +8871 2 -186.77481271548783 -140.68474257766184 147.6728 0.1144 8870 +8872 2 -187.4985492959912 -140.4535007495559 148.2244 0.1144 8871 +8873 2 -188.22294709328446 -139.4969928903547 148.7704 0.1144 8872 +8874 2 -188.9467165008249 -138.05572820307077 149.3145 0.1144 8873 +8875 2 -189.67111429811814 -138.07431837081825 149.8568 0.1144 8874 +8876 2 -190.39600292650167 -136.7928569706382 150.3978 0.1144 8875 +8877 2 -191.12040072379492 -135.2700530975501 150.9374 0.1144 8876 +8878 2 -191.90750365481773 -133.86576288277095 151.473 0.1144 8877 +8879 2 -192.77527731889518 -133.2628200824392 151.9974 0.1144 8878 +8880 2 -193.64838609270552 -132.85004487299008 152.5188 0.1144 8879 +8881 2 -194.52135730785332 -131.48091526526548 153.0418 0.1144 8880 +8882 2 -195.39389005772352 -130.00404907579923 153.5713 0.1144 8881 +8883 2 -196.43050573375632 -130.44996040167723 154.1529 0.1144 8882 +8884 2 -197.52946916321952 -129.71443562022338 154.7633 0.1144 8883 +8885 2 -198.62629966985472 -130.5850830275557 155.3989 0.1144 8884 +8886 2 -199.72258697958682 -129.67870073044273 156.0465 0.1144 8885 +8887 2 -200.80767008300316 -128.59551211246327 156.693 0.1144 8886 +8888 2 -201.69342263466697 -128.88146976035247 157.2696 0.1144 8887 +8889 2 -202.58354344926192 -127.61862622201478 157.7996 0.1144 8888 +8890 2 -203.4758057988976 -127.30756984206431 158.293 0.1144 8889 +8891 2 -204.36864417247335 -126.67157830558594 158.7695 0.1144 8890 +8892 2 -205.2626869597421 -125.29169248293744 159.229 0.1144 8891 +8893 2 -206.3537928241597 -124.1663946012022 159.698 0.1144 8892 +8894 2 -207.46469806797327 -125.05131254085558 160.1572 0.1144 8893 +8895 2 -208.57560331178684 -124.67086039575528 160.6111 0.1144 8894 +8896 2 -209.64677285367134 -125.00167870255328 161.4771 0.1144 8895 +8897 2 -13.091773911184973 -431.596240951039 47.1425 0.1144 8415 +8898 2 -13.928725680597976 -430.7317363359961 46.9613 0.1144 8897 +8899 2 -14.582886924528797 -430.3346420309837 46.8978 0.1144 8898 +8900 2 -15.204803831986734 -429.010993086545 46.8798 0.1144 8899 +8901 2 -15.89147670473557 -427.4720841943114 46.9115 0.1144 8900 +8902 2 -16.686255509756585 -426.138987256868 47.0142 0.1144 8901 +8903 2 -17.55158270131804 -425.7536479486708 47.2018 0.1144 8902 +8904 2 -18.400917064709294 -424.9782568970196 47.4446 0.1144 8903 +8905 2 -19.22999034522785 -423.49550076514413 47.7142 0.1144 8904 +8906 2 -20.05749811464586 -423.5519205163023 48.0004 0.1144 8905 +8907 2 -20.886028198261407 -422.46629840387453 48.2933 0.1144 8906 +8908 2 -21.713588333492094 -421.0639614036717 48.5856 0.1144 8907 +8909 2 -22.541724492662876 -420.36377727816176 48.8737 0.1144 8908 +8910 2 -23.3926658064045 -419.9860201007559 49.1602 0.1144 8909 +8911 2 -24.369574204206458 -418.6635173082788 49.443 0.1144 8910 +8912 2 -25.456197485229474 -419.31425424251444 49.719 0.1144 8911 +8913 2 -26.56146879030485 -418.3604023073174 49.9895 0.1144 8912 +8914 2 -27.65512483489054 -418.11857429306275 50.2575 0.1144 8913 +8915 2 -28.611857342669573 -417.8087829799059 50.5224 0.1144 8914 +8916 2 -29.318038685485266 -416.33594177970906 50.7794 0.1144 8915 +8917 2 -29.936524451359762 -414.8327833636174 51.0322 0.1144 8916 +8918 2 -30.64707715868972 -415.0424306139703 51.2901 0.1144 8917 +8919 2 -31.385018210054106 -413.7111380351865 51.5592 0.1144 8918 +8920 2 -31.77421978852798 -412.2596789111224 51.8543 0.1144 8919 +8921 2 -31.681351763541002 -411.04954416956866 52.194 0.1144 8920 +8922 2 -31.652995649698884 -409.78451141990854 52.5546 0.1144 8921 +8923 2 -32.20513359939969 -408.7473302186914 52.9197 0.1144 8922 +8924 2 -32.781166796900884 -408.70871750881264 53.2941 0.1144 8923 +8925 2 -32.57156545504991 -407.02176781358355 53.6564 0.1144 8924 +8926 2 -31.913816884253862 -405.13502336697485 53.8236 0.1144 8925 +8927 2 -31.294440835093994 -404.46814408587124 53.8101 0.1144 8926 +8928 2 -31.013380703921882 -403.40490069452164 53.7009 0.1144 8927 +8929 2 -30.783838629892685 -401.92105195027926 53.5332 0.1144 8928 +8930 2 -30.36434762902933 -399.84153466337 53.3627 0.1144 8929 +8931 2 -30.25794014409086 -398.28831656239356 53.2148 0.1144 8930 +8932 2 -30.43996141876839 -397.3006011542849 53.06 0.1144 8931 +8933 2 -30.758656049951497 -396.6072297791098 52.9147 0.1144 8932 +8934 2 -31.11775862111285 -395.78137983634787 52.7974 0.1144 8933 +8935 2 -31.481932111245104 -394.2898921418857 52.7136 0.1144 8934 +8936 2 -31.845135652992475 -392.7979557636938 52.6576 0.1144 8935 +8937 2 -31.63901920361082 -391.66435119177805 52.6834 0.1144 8936 +8938 2 -31.143779542338358 -390.839916815077 52.7993 0.1144 8937 +8939 2 -30.64208244890675 -388.73305612635863 52.9729 0.1144 8938 +8940 2 -29.921060924205733 -387.60142535404117 53.2868 0.1144 8939 +8941 2 -3.213558969040136 -439.9514718986067 44.893 0.1144 8403 +8942 2 -3.9379574588700024 -439.8809112642473 44.7574 0.1144 8941 +8943 2 -4.571545786750061 -438.71760518606703 44.6986 0.1144 8942 +8944 2 -5.491642770677663 -437.29878493964213 44.6351 0.1144 8943 +8945 2 -6.469197380498173 -436.1091953237184 44.5354 0.1144 8944 +8946 2 -7.372191620161754 -436.3593767299694 44.3766 0.1144 8945 +8947 2 -8.139403083236061 -434.9137226166262 44.1893 0.1144 8946 +8948 2 -8.681183244489338 -433.82774955881115 43.979 0.1144 8947 +8949 2 -8.951276606734917 -433.03566719046984 43.7973 0.1144 8948 +8950 2 -9.195480742087828 -431.98079159580124 43.6416 0.1144 8949 +8951 2 -9.16811170635972 -430.6279222371662 43.5047 0.1144 8950 +8952 2 -9.041706636774077 -429.2081200469963 43.1894 0.1144 8951 +8953 2 -8.613837105872843 -427.427474777761 42.9528 0.1144 8952 +8954 2 -7.949493544255141 -426.4595281942087 42.7148 0.1144 8953 +8955 2 -7.503266206094125 -425.58475417442867 42.373 0.1144 8954 +8956 2 -8.071044404073906 -424.0952723812958 41.9518 0.1144 8955 +8957 2 -8.83847320272713 -423.3375166017757 41.4943 0.1144 8956 +8958 2 -9.243142234733888 -422.61251098656817 41.0455 0.1144 8957 +8959 2 -9.875870116599522 -421.5272102194213 40.577 0.1144 8958 +8960 2 -10.765994032777602 -420.10407695811557 40.1486 0.1144 8959 +8961 2 -11.290129969373808 -418.5968185098243 39.6922 0.1144 8960 +8962 2 -11.432809466566866 -417.2133247297793 39.2241 0.1144 8961 +8963 2 -11.360619781792678 -415.9783168345434 38.7198 0.1144 8962 +8964 2 -11.124242048467512 -414.885519767639 38.2175 0.1144 8963 +8965 2 -11.067243220131825 -413.636571082858 37.7546 0.1144 8964 +8966 2 -11.179717593313757 -412.2700387240416 37.3537 0.1144 8965 +8967 2 -11.115457046736871 -411.0214099600519 36.988 0.1144 8966 +8968 2 -10.880339194500419 -409.9192430017275 36.5814 0.1144 8967 +8969 2 -10.722917819118901 -408.76029666303225 36.0394 0.1144 8968 +8970 2 -10.687029593107333 -407.505480995201 35.4749 0.1144 8969 +8971 2 -10.632477929824127 -406.2661260284042 34.9247 0.1144 8970 +8972 2 -10.71483167930818 -404.9412573024011 34.279 0.1144 8971 +8973 2 -10.644598328496215 -403.71555897417477 33.7061 0.1144 8972 +8974 2 -10.628515685046835 -402.5371218134422 33.0862 0.1144 8973 +8975 2 -11.138841075226708 -401.0563659226237 32.3834 0.1144 8974 +8976 2 -11.70585263225458 -399.7231712615117 31.5608 0.1144 8975 +8977 2 -12.350556872017563 -399.29149850308323 30.8305 0.1144 8976 +8978 2 -12.8456007022796 -398.33199878734155 30.135 0.1144 8977 +8979 2 -13.221929548221464 -397.1422661045821 29.4403 0.1144 8978 +8980 2 -13.710733974439847 -395.786257962062 28.854 0.1144 8979 +8981 2 -14.495736117135138 -395.5448950637492 28.3178 0.1144 8980 +8982 2 -15.516505828409585 -394.93956049773703 27.7894 0.1144 8981 +8983 2 -16.424432043308286 -393.56393323084137 27.41 0.1144 8982 +8984 2 -17.00531813166474 -392.30983371594317 27.1627 0.1144 8983 +8985 2 -17.130847336874083 -391.14629426112236 27.005 0.1144 8984 +8986 2 -16.869172837788888 -389.6309445480707 26.9109 0.1144 8985 +8987 2 -16.952640297486504 -388.3588816664521 26.8583 0.1144 8986 +8988 2 -17.23569778828001 -387.394027949801 26.8272 0.1144 8987 +8989 2 -17.37922680492453 -386.25223155135353 26.7908 0.1144 8988 +8990 2 -17.357739177415482 -384.9615572611807 26.745 0.1144 8989 +8991 2 -17.57748676171056 -383.9365049959566 26.6522 0.1144 8990 +8992 2 -17.94215890791299 -382.7024185088704 26.5269 0.1144 8991 +8993 2 -18.49841324141906 -381.54259864369936 26.4051 0.1144 8992 +8994 2 -18.895867410367757 -380.14455786602923 26.2976 0.1144 8993 +8995 2 -18.958624395352118 -378.8085612770443 26.173 0.1144 8994 +8996 2 -19.01564063236299 -377.473001261318 26.0341 0.1144 8995 +8997 2 -19.337231820439207 -376.0050781829163 25.9195 0.1144 8996 +8998 2 -19.646831929935374 -374.54043313439115 25.8323 0.1144 8997 +8999 2 -19.516146891851438 -373.3465933212209 25.7592 0.1144 8998 +9000 2 -19.132889286630096 -372.3942267618894 25.6956 0.1144 8999 +9001 2 -18.692902045049266 -371.4542485085838 25.6363 0.1144 9000 +9002 2 -18.736017032164447 -370.1434580030245 25.5727 0.1144 9001 +9003 2 -19.334814637523287 -368.6627504609384 25.4982 0.1144 9002 +9004 2 -19.835211399783965 -367.146826841389 25.3134 0.1144 9003 +9005 2 -20.184643425318335 -365.6787715422032 25.0974 0.1144 9004 +9006 2 -20.3946814337831 -364.33102230692737 24.9239 0.1144 9005 +9007 2 -19.77075502219664 -363.6329653465837 24.7923 0.1144 9006 +9008 2 -19.450135085424584 -362.6270612354617 24.6979 0.1144 9007 +9009 2 -19.86442539882877 -361.14264504203936 24.6359 0.1144 9008 +9010 2 -20.65411925673282 -360.1219229456308 24.5995 0.1144 9009 +9011 2 -20.795770929098744 -359.0611644870049 24.5661 0.1144 9010 +9012 2 -20.520826671453825 -357.27032684336126 24.5202 0.1144 9011 +9013 2 -20.132836604310448 -356.30723977856803 24.4535 0.1144 9012 +9014 2 -19.399159682656425 -355.8278718448737 24.3631 0.1144 9013 +9015 2 -18.556831240465712 -355.4748581819444 24.246 0.1144 9014 +9016 2 -17.80154126629766 -354.20212054825214 24.0768 0.1144 9015 +9017 2 -17.299212681530065 -352.3939715629305 23.7578 0.1144 9016 +9018 2 -16.85904574950046 -351.53064949251143 23.3317 0.1144 9017 +9019 2 -16.408091460047103 -350.6948913779516 22.9732 0.1144 9018 +9020 2 -16.29148666977114 -349.4887046093891 22.7186 0.1144 9019 +9021 2 -16.272534501747515 -348.17185153284083 22.5441 0.1144 9020 +9022 2 -16.17009825371248 -346.9259122175064 22.429 0.1144 9021 +9023 2 -16.077767914998923 -345.6819228898497 22.3505 0.1144 9022 +9024 2 -15.968104492269681 -344.48394863496765 22.3336 0.1144 9023 +9025 2 -15.519518283489049 -343.5826266520736 22.4425 0.1144 9024 +9026 2 -15.196313623001963 -342.5426703669865 22.6006 0.1144 9025 +9027 2 -15.281473225899653 -341.1829917281998 22.6582 0.1144 9026 +9028 2 -15.497175307004554 -339.7241925591652 22.6323 0.1144 9027 +9029 2 -15.2415995517174 -338.63621851827816 22.5973 0.1144 9028 +9030 2 -15.506825302424957 -337.1926799355554 22.5856 0.1144 9029 +9031 2 -16.08134294559177 -335.63645745916324 22.506 0.1144 9030 +9032 2 -16.57742691231713 -334.10668507082477 22.4065 0.1144 9031 +9033 2 -16.699789859241683 -332.72783294987653 22.2618 0.1144 9032 +9034 2 -16.899631254905557 -331.3228445786922 22.1279 0.1144 9033 +9035 2 -16.791401893084313 -330.063956757872 22.0796 0.1144 9034 +9036 2 -17.096113183105018 -328.64232002419453 22.0292 0.1144 9035 +9037 2 -17.249973962166493 -327.26339877567256 21.9733 0.1144 9036 +9038 2 -17.02701595239604 -326.06659966285207 21.7961 0.1144 9037 +9039 2 -16.983786231226915 -324.76358267138187 21.5748 0.1144 9038 +9040 2 -17.030734896582928 -323.4208857094018 21.3408 0.1144 9039 +9041 2 -17.007775563035743 -322.10986554462755 21.1301 0.1144 9040 +9042 2 -16.795064122832414 -320.8927221793905 21.0207 0.1144 9041 +9043 2 -16.8463286853069 -319.5519932032115 20.9825 0.1144 9042 +9044 2 -16.727276729978477 -318.2847795542637 20.96 0.1144 9043 +9045 2 -16.576274449089368 -317.0925886020531 20.8802 0.1144 9044 +9046 2 -16.831388779845817 -315.64074527637945 20.754 0.1144 9045 +9047 2 -17.41130561235409 -314.3291837071868 20.657 0.1144 9046 +9048 2 -17.863101105677217 -312.87851861493317 20.5216 0.1144 9047 +9049 2 -17.88232394657509 -311.6155323736159 20.4971 0.1144 9048 +9050 2 -17.500215287650825 -310.6050978177099 20.614 0.1144 9049 +9051 2 -17.21403428074165 -309.4074486543768 20.8531 0.1144 9050 +9052 2 -17.27905633128313 -308.0827231032521 20.9931 0.1144 9051 +9053 2 -17.523312832448717 -306.73782316235406 21.0191 0.1144 9052 +9054 2 -17.80347376634917 -305.3619827278512 20.9147 0.1144 9053 +9055 2 -18.196474479516915 -303.8678162631547 20.7368 0.1144 9054 +9056 2 -18.358034749560552 -302.4947761323927 20.5902 0.1144 9055 +9057 2 -18.288612580533417 -301.2400260588358 20.4474 0.1144 9056 +9058 2 -19.023256947393783 -300.7533863297815 20.3454 0.1144 9057 +9059 2 -19.91370121426639 -299.8283958285078 20.2931 0.1144 9058 +9060 2 -21.043219246048743 -299.25675405975096 20.269 0.1144 9059 +9061 2 -22.155038686762715 -298.8841099385056 20.2596 0.1144 9060 +9062 2 -23.263115845251782 -298.5950114644806 20.2576 0.1144 9061 +9063 2 -24.40249061804994 -299.56814746142777 20.2781 0.1144 9062 +9064 2 -25.44181855521832 -299.6743255104658 20.3125 0.1144 9063 +9065 2 -26.577126900977397 -299.0346555540548 20.3604 0.1144 9064 +9066 2 -27.65489513881394 -300.45961954155814 20.4257 0.1144 9065 +9067 2 -28.290040264614504 -300.3020423861512 19.6659 0.1144 9066 +9068 2 -29.369242261585427 -300.3634269061738 18.8639 0.1144 9067 +9069 2 -30.495263781798954 -300.6663167198921 18.4422 0.1144 9068 +9070 2 -31.620162979586212 -299.7893531055833 17.9865 0.1144 9069 +9071 2 -32.74439685271214 -300.13597526756666 17.5693 0.1144 9070 +9072 2 -33.83541642329542 -300.09846863862475 17.188 0.1144 9071 +9073 2 -34.58420230007785 -299.34669725681977 16.8163 0.1144 9072 +9074 2 -35.03675591683647 -298.7666889410746 16.4993 0.1144 9073 +9075 2 -35.228433708994956 -297.4406446170714 16.1848 0.1144 9074 +9076 2 -35.31195973767147 -296.10311359326414 15.8936 0.1144 9075 +9077 2 -35.23174470059099 -294.77687874441716 15.6796 0.1144 9076 +9078 2 -34.86100183207702 -293.0318341087723 15.5925 0.1144 9077 +9079 2 -34.33805037449253 -291.38106736606693 15.6022 0.1144 9078 +9080 2 -34.06630830375249 -290.30940261899235 15.6531 0.1144 9079 +9081 2 -34.07635994763016 -288.9946663993414 15.723 0.1144 9080 +9082 2 -34.20371954723874 -287.5994847506299 15.7941 0.1144 9081 +9083 2 -34.57488746326693 -286.103994634326 15.8953 0.1144 9082 +9084 2 -35.145847332750755 -285.5530135066609 15.9981 0.1144 9083 +9085 2 -35.552385096823414 -284.68184811954626 16.0744 0.1144 9084 +9086 2 -35.74148909182983 -283.3840243535341 16.1219 0.1144 9085 +9087 2 -36.05751070486501 -282.1102643256368 16.1412 0.1144 9086 +9088 2 -36.6322073459441 -280.5773342548925 16.1318 0.1144 9087 +9089 2 -37.12962235846193 -279.05278434528384 16.0913 0.1144 9088 +9090 2 -37.680626775084875 -277.5185522661174 16.0226 0.1144 9089 +9091 2 -38.53307503094821 -276.8234954863482 15.9241 0.1144 9090 +9092 2 -39.337383721350655 -276.4956939240046 15.7904 0.1144 9091 +9093 2 -39.43380058891354 -275.2132935565701 15.614 0.1144 9092 +9094 2 -39.611193819542784 -273.9717447319483 15.215 0.1144 9093 +9095 2 -40.16606395991774 -273.1637615316586 14.5204 0.1144 9094 +9096 2 -40.591790535899314 -272.2128525475806 13.9533 0.1144 9095 +9097 2 -41.146928057608804 -271.4893324584626 13.4441 0.1144 9096 +9098 2 -41.75881573107854 -269.9660883268834 12.9581 0.1144 9097 +9099 2 -42.33885299252016 -268.69485215866797 12.4947 0.1144 9098 +9100 2 -42.71603135791349 -267.54443967083574 12.0277 0.1144 9099 +9101 2 -42.8647712612379 -266.25422731374346 11.5746 0.1144 9100 +9102 2 -42.76161522743406 -264.968225553419 11.0981 0.1144 9101 +9103 2 -42.49204992781825 -263.6070155175159 10.5181 0.1144 9102 +9104 2 -42.045370096233626 -262.41903116948805 9.9444 0.1144 9103 +9105 2 -41.59080566728459 -261.5672228496878 9.3336 0.1144 9104 +9106 2 -41.57375918392037 -260.32161091784815 8.5933 0.1144 9105 +9107 2 -41.32865043536239 -259.0825180660891 7.9644 0.1144 9106 +9108 2 -40.56920643225897 -257.63543717525175 7.4957 0.1144 9107 +9109 2 -40.560450184499665 -256.3871874626195 6.7309 0.1144 9108 +9110 2 -27.945795284013705 -301.2075193697618 20.5587 0.1144 9066 +9111 2 -28.721703028817046 -301.5094014938889 20.7226 0.1144 9110 +9112 2 -29.833979674373374 -302.5213386677515 20.939 0.1144 9111 +9113 2 -30.96246818250367 -302.055991135638 21.2055 0.1144 9112 +9114 2 -32.087385504330335 -301.465631331668 21.472 0.1144 9113 +9115 2 -33.21711366223717 -302.438859278011 21.6685 0.1144 9114 +9116 2 -34.34867221454328 -302.1786275522542 21.8027 0.1144 9115 +9117 2 -35.44803058044641 -303.30009601900525 21.8851 0.1144 9116 +9118 2 -36.541851505809014 -302.94375723953027 21.9408 0.1144 9117 +9119 2 -37.67700788597465 -302.7567501217293 21.998 0.1144 9118 +9120 2 -38.81895987125975 -303.32317682674795 22.0404 0.1144 9119 +9121 2 -39.954900400891354 -303.85162983234886 22.0427 0.1144 9120 +9122 2 -41.01912297561024 -303.89943164857823 21.999 0.1144 9121 +9123 2 -42.016905331851035 -304.215474658531 21.8754 0.1144 9122 +9124 2 -43.09055277623725 -304.87462149701406 21.638 0.1144 9123 +9125 2 -44.210508379689784 -304.49341174744666 21.3267 0.1144 9124 +9126 2 -45.23212450883262 -304.98317143217906 20.9965 0.1144 9125 +9127 2 -45.945068221282654 -303.70429540550776 20.676 0.1144 9126 +9128 2 -45.64271368946608 -302.83812090280884 20.3399 0.1144 9127 +9129 2 -46.015993006633096 -301.4332312156083 19.986 0.1144 9128 +9130 2 -46.543830478740986 -299.8900371995778 19.731 0.1144 9129 +9131 2 -46.80880055620296 -298.41925741075124 19.5169 0.1144 9130 +9132 2 -47.34451720974187 -296.88569011096894 19.3175 0.1144 9131 +9133 2 -48.256509159143015 -296.2577590040106 19.0597 0.1144 9132 +9134 2 -49.327950793780644 -296.2319531951349 18.813 0.1144 9133 +9135 2 -50.17511969139546 -295.0472163073922 18.5636 0.1144 9134 +9136 2 -50.29512617674686 -293.8271922883104 18.2279 0.1144 9135 +9137 2 -50.494247786641935 -292.7182348733483 17.7757 0.1144 9136 +9138 2 -50.59861402371435 -291.48001266461733 17.2775 0.1144 9137 +9139 2 -50.70426986732946 -290.23890727844537 16.8455 0.1144 9138 +9140 2 -50.9780148083205 -289.23853905818186 16.4938 0.1144 9139 +9141 2 -51.42945471486556 -288.0133761837773 16.2257 0.1144 9140 +9142 2 -52.251657100004564 -286.7958391147289 16.0084 0.1144 9141 +9143 2 -52.90247000384027 -285.4856751896823 15.7943 0.1144 9142 +9144 2 -52.9771855244562 -284.20998235430926 15.6131 0.1144 9143 +9145 2 -53.80681631411254 -283.055601881884 15.4243 0.1144 9144 +9146 2 -54.8623658213452 -283.33604803438794 15.2201 0.1144 9145 +9147 2 -55.85759609778678 -282.4795793778109 15.0231 0.1144 9146 +9148 2 -56.84288302562656 -282.2243083035614 14.8153 0.1144 9147 +9149 2 -57.912453519151796 -281.23848554960557 14.5958 0.1144 9148 +9150 2 -58.960520178444675 -280.35782878589 14.38 0.1144 9149 +9151 2 -59.70552853691871 -280.1967770939906 14.1416 0.1144 9150 +9152 2 -60.149756681988826 -278.7491008091735 13.894 0.1144 9151 +9153 2 -60.49647114854237 -277.2413634005691 13.6384 0.1144 9152 +9154 2 -60.39631978892876 -276.09524941525837 13.3207 0.1144 9153 +9155 2 -59.554516028838734 -275.238532306724 12.9874 0.1144 9154 +9156 2 -58.6907887681298 -274.2970678572669 12.6799 0.1144 9155 +9157 2 -58.256182893624725 -273.1706220120405 12.3821 0.1144 9156 +9158 2 -58.404203011180336 -271.8925162437778 12.103 0.1144 9157 +9159 2 -59.08289368738256 -270.5830098113547 11.8591 0.1144 9158 +9160 2 -60.09351984420537 -270.60654928488657 11.6589 0.1144 9159 +9161 2 -61.15841713732416 -269.36502808218387 11.4815 0.1144 9160 +9162 2 -61.565641451680584 -268.5882467442151 11.2893 0.1144 9161 +9163 2 -61.837876348966894 -267.7511308111431 11.0705 0.1144 9162 +9164 2 -61.69564893160684 -266.07584257540674 10.7254 0.1144 9163 +9165 2 -61.3280144449353 -264.3153900001727 10.2739 0.1144 9164 +9166 2 -60.96212446727665 -263.3077920982283 9.7619 0.1144 9165 +9167 2 -60.887796349044855 -262.05354425482585 9.3121 0.1144 9166 +9168 2 -60.91843493711928 -260.71887909980245 8.9433 0.1144 9167 +9169 2 -60.950710200998046 -259.3936261513087 8.4137 0.1144 9168 +9170 2 4.752975726684877 -443.37708722677905 43.9928 0.1144 8395 +9171 2 5.466823135040997 -441.9676218725744 43.9298 0.1144 9170 +9172 2 6.387363508449216 -441.0516262774538 43.8962 0.1144 9171 +9173 2 7.4112326042973535 -440.6537948354843 43.892 0.1144 9172 +9174 2 8.469602898410702 -440.65307401079883 43.9149 0.1144 9173 +9175 2 9.587058580235082 -440.0118903010598 43.9835 0.1144 9174 +9176 2 10.727306110683825 -439.5507320056573 44.0922 0.1144 9175 +9177 2 11.859183013085879 -439.5495786261191 44.2112 0.1144 9176 +9178 2 12.953949666302028 -440.4313059291348 44.3492 0.1144 9177 +9179 2 13.860906625352463 -441.38216331308746 44.4592 0.1144 9178 +9180 2 14.949741221046683 -441.25935819170263 44.4704 0.1144 9179 +9181 2 15.756344920951491 -440.35985908472946 44.4828 0.1144 9180 +9182 2 16.684150114183968 -439.11556270210497 44.457 0.1144 9181 +9183 2 17.46002772508546 -438.22753404456626 44.2338 0.1144 9182 +9184 2 17.77369348009471 -439.0381507699951 44.1339 0.1144 9183 +9185 2 18.37547283519646 -440.58337015941026 43.9631 0.1144 9184 +9186 2 19.03551238576322 -441.7729258869514 43.8276 0.1144 9185 +9187 2 19.839286491475313 -442.0783357413629 43.7214 0.1144 9186 +9188 2 20.682830842663513 -443.1376717015729 43.6405 0.1144 9187 +9189 2 21.364790792266078 -443.7057709110787 43.5697 0.1144 9188 +9190 2 21.545275683456605 -444.7120470166221 43.4669 0.1144 9189 +9191 2 20.932746504244307 -446.4990256106931 43.3731 0.1144 9190 +9192 2 20.277982784774178 -447.35002258199813 43.3098 0.1144 9191 +9193 2 19.7831042209094 -448.48263712795 43.2712 0.1144 9192 +9194 2 19.371988648500732 -449.9580257268097 43.2561 0.1144 9193 +9195 2 19.115131804187364 -451.57408790434584 43.2634 0.1144 9194 +9196 2 19.196014540169877 -452.762678100834 43.2894 0.1144 9195 +9197 2 19.536988258749968 -453.5466917588244 43.3289 0.1144 9196 +9198 2 19.985138376493804 -454.7496677170509 43.3852 0.1144 9197 +9199 2 20.61960835832583 -456.09465860355846 43.4647 0.1144 9198 +9200 2 21.42850574882148 -456.3535254937726 43.5716 0.1144 9199 +9201 2 22.143553351182188 -457.2596675445758 43.713 0.1144 9200 +9202 2 22.654778217579732 -458.71822536517357 43.941 0.1144 9201 +9203 2 23.29223545978422 -460.25274066216855 44.3142 0.1144 9202 +9204 2 24.18721226681759 -461.4318005600546 44.718 0.1144 9203 +9205 2 24.876152614170156 -461.42209098106184 45.1503 0.1144 9204 +9206 2 25.640238565672778 -462.7505551831884 45.5927 0.1144 9205 +9207 2 26.436833044410392 -463.383615697372 46.0233 0.1144 9206 +9208 2 27.236952469793877 -463.8145274849581 46.4218 0.1144 9207 +9209 2 28.066780772164893 -465.28522877734605 46.7191 0.1144 9208 +9210 2 29.137238430271598 -466.4749305247513 46.9266 0.1144 9209 +9211 2 30.26146890004079 -465.5908240780795 47.0576 0.1144 9210 +9212 2 31.293599583632524 -466.7506874513833 47.1358 0.1144 9211 +9213 2 32.209166436445784 -466.36425963132467 47.1797 0.1144 9212 +9214 2 33.03965905718974 -467.83176585631406 47.2063 0.1144 9213 +9215 2 33.689592698434964 -468.29432403443116 47.2405 0.1144 9214 +9216 2 34.22255655690958 -469.1075152802493 47.3295 0.1144 9215 +9217 2 34.59670932426371 -470.61075238016576 47.395 0.1144 9216 +9218 2 34.64329689221206 -471.95176446815947 47.4292 0.1144 9217 +9219 2 34.78651717726175 -473.3513662447008 47.4314 0.1144 9218 +9220 2 35.09104636778703 -474.81290881888674 47.3502 0.1144 9219 +9221 2 35.38113421309671 -476.29002986464513 47.234 0.1144 9220 +9222 2 35.60940339672178 -477.75997480941885 47.1192 0.1144 9221 +9223 2 35.454697171274454 -479.0065162206048 47.0187 0.1144 9222 +9224 2 35.119465503587165 -480.0764260560035 46.8569 0.1144 9223 +9225 2 34.850220554665874 -481.22131161440484 46.7342 0.1144 9224 +9226 2 34.51311464428305 -482.30868687243407 46.6516 0.1144 9225 +9227 2 34.64943120691607 -483.7784559713334 46.5982 0.1144 9226 +9228 2 34.914489578810894 -485.30909288073514 46.5623 0.1144 9227 +9229 2 35.08292143677077 -486.80431034806423 46.4856 0.1144 9228 +9230 2 35.30066814627076 -488.33009187803 46.5259 0.1144 9229 +9231 2 35.450434370696726 -488.73713436282117 46.5744 0.1144 9230 +9232 2 36.04949926840074 -490.3660329012748 46.6312 0.1144 9231 +9233 2 36.45938298120706 -491.4942629616589 46.7006 0.1144 9232 +9234 2 36.706803331610935 -492.3833254151806 46.7874 0.1144 9233 +9235 2 37.56412740277697 -492.99685768084447 46.9876 0.1144 9234 +9236 2 38.44806497326073 -493.8756459973821 47.185 0.1144 9235 +9237 2 39.44176807626834 -493.9236633955184 47.4348 0.1144 9236 +9238 2 40.549646023217925 -494.6690892507469 47.7837 0.1144 9237 +9239 2 41.650364876278886 -494.6360565153936 48.2944 0.1144 9238 +9240 2 42.72296157139046 -493.8394863490738 49.0874 0.1144 9239 +9241 2 43.70422372422531 -493.2076164911283 50.1642 0.1144 9240 +9242 2 44.317267665263614 -491.48467836792213 51.3422 0.1144 9241 +9243 2 44.28974638499601 -490.21851929194463 52.5952 0.1144 9242 +9244 2 44.72180998132414 -489.4925006989888 54.0904 0.1144 9243 +9245 2 45.3530998182054 -488.96332623594844 55.4366 0.1144 9244 +9246 2 46.08432275611527 -488.5909707754069 56.6364 0.1144 9245 +9247 2 47.01977648925342 -487.8365990693767 57.8099 0.1144 9246 +9248 2 47.964658791482414 -487.01814895067923 59.026 0.1144 9247 +9249 2 48.10173149407312 -486.3309773657127 60.893 0.1144 9248 +9250 2 47.56386549249171 -485.2607168438453 62.8835 0.1144 9249 +9251 2 46.99326400959536 -485.2590491419627 64.6509 0.1144 9250 +9252 2 46.869660596562696 -485.92445258264434 65.7376 0.1144 9251 +9253 2 46.74439967286615 -487.26651957901163 66.4936 0.1144 9252 +9254 2 46.88729409659168 -488.32520099007223 66.2368 0.1144 9253 +9255 2 47.208224067877985 -489.0205916839872 66.0696 0.1144 9254 +9256 2 47.66086597906949 -490.05323657326903 65.8899 0.1144 9255 +9257 2 48.25070662140387 -491.6509504354376 65.6821 0.1144 9256 +9258 2 48.98263963244969 -492.2573646991319 65.4371 0.1144 9257 +9259 2 49.733899706603516 -492.93090756728157 65.1515 0.1144 9258 +9260 2 50.169792761484096 -494.3786226672449 64.3496 0.1144 9259 +9261 2 49.5434143844371 -494.86336431447256 63.0823 0.1144 9260 +9262 2 48.87624714713993 -496.4894430484926 62.3104 0.1144 9261 +9263 2 48.422525341939526 -498.2093392590207 61.6748 0.1144 9262 +9264 2 48.33981559208683 -499.4932858358462 61.147 0.1144 9263 +9265 2 48.533992915110545 -500.84763661073714 60.7029 0.1144 9264 +9266 2 49.03977104444695 -501.1664151278176 60.1485 0.1144 9265 +9267 2 49.75743060364783 -500.8150401394104 59.1592 0.1144 9266 +9268 2 50.24283854364666 -499.97422314939394 58.3579 0.1144 9267 +9269 2 50.81561830653547 -499.29699398282 57.4636 0.1144 9268 +9270 2 50.30335149303272 -499.88773599997023 55.9224 0.1144 9269 +9271 2 50.808546388974506 -501.1411895214322 54.7828 0.1144 9270 +9272 2 51.63923783049506 -502.5484053691762 53.9414 0.1144 9271 +9273 2 52.676108487236874 -501.837916449413 53.2991 0.1144 9272 +9274 2 53.77557505942657 -502.4538923806399 52.8324 0.1144 9273 +9275 2 54.88368986304569 -502.13000029995686 52.5095 0.1144 9274 +9276 2 55.99390786403885 -503.2037315510112 52.2743 0.1144 9275 +9277 2 57.12492432042646 -503.2696424704443 52.0386 0.1144 9276 +9278 2 58.25637916508039 -502.86600058136275 51.7292 0.1144 9277 +9279 2 59.382516313819295 -502.0092273552085 51.338 0.1144 9278 +9280 2 60.49272740713159 -502.22056102483475 50.8665 0.1144 9279 +9281 2 61.50858897293922 -500.54029517215724 50.2684 0.1144 9280 +9282 2 62.21157614265803 -499.83513413382593 49.6877 0.1144 9281 +9283 2 62.846557896549925 -499.19552121596064 49.0176 0.1144 9282 +9284 2 62.644911931711036 -499.18236116146926 48.7738 0.1144 9283 +9285 2 61.535756689854935 -498.5339419997744 48.4411 0.1144 9284 +9286 2 60.396293622623894 -499.6813576712497 48.3627 0.1144 9285 +9287 2 59.32084901932342 -499.97008577865887 48.4159 0.1144 9286 +9288 2 58.33443004444642 -501.24801201302404 48.5349 0.1144 9287 +9289 2 57.30191512621526 -501.8738775752237 48.6534 0.1144 9288 +9290 2 56.1724998077748 -502.51685233721304 48.7343 0.1144 9289 +9291 2 55.050006034016675 -502.0685456759503 48.7866 0.1144 9290 +9292 2 53.9357976777705 -502.6104614752405 48.82 0.1144 9291 +9293 2 52.81477871163358 -502.92482068114293 48.8396 0.1144 9292 +9294 2 51.68576041922093 -504.12079884907115 48.8561 0.1144 9293 +9295 2 50.55393627339453 -503.765730016774 48.8779 0.1144 9294 +9296 2 49.419887808724184 -503.19305272996525 48.9076 0.1144 9295 +9297 2 48.28127115936152 -504.29611763010604 48.9569 0.1144 9296 +9298 2 47.13838205272867 -503.7708655871205 49.0221 0.1144 9297 +9299 2 45.99501072721826 -504.58997416721434 49.0994 0.1144 9298 +9300 2 44.86770470264363 -503.71878493466824 49.1851 0.1144 9299 +9301 2 43.731961987500284 -503.4795217262235 49.3419 0.1144 9300 +9302 2 42.613620135404624 -503.93712734484484 49.9215 0.1144 9301 +9303 2 63.22401468165762 -499.1643196231154 47.6459 0.1144 9283 +9304 2 64.0910892881515 -499.08841461463993 46.2185 0.1144 9303 +9305 2 65.18250588476255 -498.44563847867664 45.7358 0.1144 9304 +9306 2 66.2524405772785 -499.03878714631855 45.4798 0.1144 9305 +9307 2 67.3259330434774 -498.9726025872242 45.3015 0.1144 9306 +9308 2 68.44188799832438 -500.0609545926915 45.2035 0.1144 9307 +9309 2 68.97403656714272 -501.40813738820464 45.2334 0.1144 9308 +9310 2 68.39351766754315 -502.24587658188506 45.4342 0.1144 9309 +9311 2 47.142058480137294 -484.5955142307968 65.2543 0.1144 9251 +9312 2 47.53921223307273 -482.85416256588724 66.3292 0.1144 9311 +9313 2 47.91474062185799 -481.853520083649 67.0292 0.1144 9312 +9314 2 47.96114340231848 -480.563946486233 67.5738 0.1144 9313 +9315 2 47.619249692119816 -479.0201105402802 67.9694 0.1144 9314 +9316 2 47.56402861342458 -477.64867145671303 68.2606 0.1144 9315 +9317 2 47.82115275008322 -476.53879328688856 68.4827 0.1144 9316 +9318 2 47.8900902911862 -475.2712053594679 68.6846 0.1144 9317 +9319 2 47.7818075920697 -473.86949763863737 68.8862 0.1144 9318 +9320 2 47.65912498698724 -472.459285509038 69.0757 0.1144 9319 +9321 2 47.52633337100016 -471.210391640371 69.2616 0.1144 9320 +9322 2 47.31361614122119 -470.3252665600038 69.4896 0.1144 9321 +9323 2 47.21179087426379 -469.2256364096164 69.7407 0.1144 9322 +9324 2 47.19416567896697 -467.9571430894027 70.014 0.1144 9323 +9325 2 47.16491050249781 -466.7182513974061 70.3301 0.1144 9324 +9326 2 47.03278320488368 -465.6806326919261 70.6941 0.1144 9325 +9327 2 46.790577535279354 -464.6258782150685 71.1024 0.1144 9326 +9328 2 46.37848181526522 -463.1309381465009 71.7094 0.1144 9327 +9329 2 46.15673715029474 -461.71575888122663 72.3828 0.1144 9328 +9330 2 46.063560807303446 -460.36208114019263 73.0355 0.1144 9329 +9331 2 45.94824293557768 -459.00618575310415 73.7624 0.1144 9330 +9332 2 45.97210174534257 -457.74194516928253 74.485 0.1144 9331 +9333 2 46.09192344320609 -456.5452292446528 75.1556 0.1144 9332 +9334 2 46.01005742322926 -455.1947141405178 75.731 0.1144 9333 +9335 2 45.85690781772386 -453.7937932019236 76.2328 0.1144 9334 +9336 2 45.75896308419047 -452.43197712366083 76.7122 0.1144 9335 +9337 2 45.69148294203349 -451.124335572446 77.1848 0.1144 9336 +9338 2 46.14845619836844 -450.2201762654946 77.6558 0.1144 9337 +9339 2 46.92367018343345 -449.82768618030775 78.0982 0.1144 9338 +9340 2 47.489233384439316 -447.87244173489256 78.7052 0.1144 9339 +9341 2 47.949229829766885 -446.3075853814936 79.2728 0.1144 9340 +9342 2 48.41595651022833 -445.4536363673799 79.7527 0.1144 9341 +9343 2 48.8848216241475 -444.59505588923673 80.1651 0.1144 9342 +9344 2 49.3557313664617 -443.1356064941626 80.521 0.1144 9343 +9345 2 49.82623625776818 -441.461978428694 80.829 0.1144 9344 +9346 2 50.2976337295896 -440.5698610334597 81.0956 0.1144 9345 +9347 2 50.697617976896105 -439.34395148027136 81.3492 0.1144 9346 +9348 2 50.76116183928722 -438.0358355778702 81.5954 0.1144 9347 +9349 2 50.81333991126817 -436.72971434033235 81.8367 0.1144 9348 +9350 2 51.031089443405314 -435.4532466610691 82.0848 0.1144 9349 +9351 2 51.44268723469152 -434.5193597017454 82.3469 0.1144 9350 +9352 2 51.47076985302226 -433.2271290421203 82.6146 0.1144 9351 +9353 2 51.333037051746956 -431.82714878569084 82.8822 0.1144 9352 +9354 2 51.245324859634685 -430.45882254562406 83.1468 0.1144 9353 +9355 2 51.19526471085313 -429.1125601201564 83.4092 0.1144 9354 +9356 2 51.14484346466388 -427.76830625461747 83.6741 0.1144 9355 +9357 2 51.62520100109285 -426.9187254080359 84.1593 0.1144 9356 +9358 2 52.103951587171494 -426.0724581745775 84.4816 0.1144 9357 +9359 2 52.11934357246561 -424.7912087040286 84.8764 0.1144 9358 +9360 2 51.72118433843073 -423.30386989883726 85.3647 0.1144 9359 +9361 2 51.455241903537456 -421.8551113618332 85.9295 0.1144 9360 +9362 2 51.77141690204498 -420.8524933038859 86.5407 0.1144 9361 +9363 2 52.116951299231914 -419.8779520078293 87.1646 0.1144 9362 +9364 2 52.46092018531817 -418.62203865450414 87.7836 0.1144 9363 +9365 2 52.64610262124142 -417.02895446067356 88.3537 0.1144 9364 +9366 2 52.56749115398223 -415.8996805558701 88.8362 0.1144 9365 +9367 2 52.483392202948735 -414.7752122509215 89.2531 0.1144 9366 +9368 2 52.39902595956998 -413.6483488320245 89.6204 0.1144 9367 +9369 2 52.23282393108378 -412.30954159271226 89.9696 0.1144 9368 +9370 2 51.99079725939177 -410.87035392056293 90.3235 0.1144 9369 +9371 2 51.874709645130956 -409.494675975665 90.6592 0.1144 9370 +9372 2 51.96632329965883 -408.26232636028413 90.9471 0.1144 9371 +9373 2 52.05780722050394 -407.0275457317718 91.198 0.1144 9372 +9374 2 52.14954750713129 -405.7914632450355 91.4211 0.1144 9373 +9375 2 52.24031784537381 -404.555990772699 91.6255 0.1144 9374 +9376 2 52.33219569066371 -403.33089023127246 91.8229 0.1144 9375 +9377 2 52.42398834310377 -402.02151574004336 92.0282 0.1144 9376 +9378 2 52.51475868134631 -400.5846056115039 92.2505 0.1144 9377 +9379 2 52.36022475891478 -400.4808975417538 92.1371 0.1144 9378 +9380 2 51.73582234873764 -398.9731956972302 92.4851 0.1144 9379 +9381 2 51.105665162440985 -397.6506582345928 92.708 0.1144 9380 +9382 2 50.47586907355196 -397.1232443760202 92.9376 0.1144 9381 +9383 2 49.82285987750136 -395.67433194471676 93.1997 0.1144 9382 +9384 2 49.08914642882252 -394.8251746033278 93.4702 0.1144 9383 +9385 2 48.33963086368156 -393.324258329954 93.7577 0.1144 9384 +9386 2 47.59174646371534 -392.84776462908826 94.0727 0.1144 9385 +9387 2 46.98377766133625 -392.24822651967776 94.5367 0.1144 9386 +9388 2 46.50178866310158 -390.7742832301171 95.2165 0.1144 9387 +9389 2 46.042619540120356 -389.42403704581807 96.0596 0.1144 9388 +9390 2 45.56486735462438 -388.8562167669775 96.9856 0.1144 9389 +9391 2 44.60984240326472 -387.9837038234751 97.8597 0.1144 9390 +9392 2 43.61081168406726 -387.3604490937463 98.6605 0.1144 9391 +9393 2 42.58969800511435 -386.74756451958586 99.3518 0.1144 9392 +9394 2 41.61091405655489 -386.9358922991544 100.4038 0.1144 9393 +9395 2 52.73916175559899 -399.1695758930897 92.4885 0.1144 9378 +9396 2 53.01732532987798 -397.40723980135124 92.7984 0.1144 9395 +9397 2 53.29570383068944 -395.95490607022106 93.142 0.1144 9396 +9398 2 53.996061043323735 -395.4479171998694 93.5332 0.1144 9397 +9399 2 54.817264855044286 -394.75375689150167 93.9537 0.1144 9398 +9400 2 55.647208294210266 -394.1433249204199 94.3928 0.1144 9399 +9401 2 56.47621461202842 -392.6216833425204 94.8343 0.1144 9400 +9402 2 57.06529724274432 -391.9406802630714 95.2893 0.1144 9401 +9403 2 56.74839466829378 -390.50557541532584 95.7337 0.1144 9402 +9404 2 56.3888074692083 -389.04102614101157 96.15 0.1144 9403 +9405 2 56.04254239449537 -388.20005766289484 96.5166 0.1144 9404 +9406 2 56.13535736113293 -386.8120453952372 96.7005 0.1144 9405 +9407 2 56.26616903131642 -385.4584526471358 96.7232 0.1144 9406 +9408 2 56.350120839992144 -384.0755950582194 96.579 0.1144 9407 +9409 2 56.43585308630091 -382.68818836273294 96.3449 0.1144 9408 +9410 2 56.55788989295537 -381.44165257414 96.1607 0.1144 9409 +9411 2 56.81898836810039 -380.36992388641886 96.4368 0.1144 9410 +9412 2 56.82373434875308 -379.1125768397253 96.8789 0.1144 9411 +9413 2 56.65334615683102 -377.7202418641284 97.2216 0.1144 9412 +9414 2 56.59179668712275 -376.3955769194954 97.5842 0.1144 9413 +9415 2 56.70577531443388 -375.20663639098655 98.0484 0.1144 9414 +9416 2 56.89487662144779 -374.08508928584445 98.6042 0.1144 9415 +9417 2 57.08081718080649 -372.96852078969306 99.2166 0.1144 9416 +9418 2 57.266663935102706 -371.8564797579079 99.8729 0.1144 9417 +9419 2 57.44578596489461 -370.73310316144614 100.4864 0.1144 9418 +9420 2 57.62259297236312 -369.5994193212804 101.0008 0.1144 9419 +9421 2 57.79840739108808 -368.1907371974712 101.4177 0.1144 9420 +9422 2 57.97476190513294 -366.60592605165107 101.7576 0.1144 9421 +9423 2 58.15142515077278 -365.011247060388 102.0443 0.1144 9422 +9424 2 58.3284494938202 -363.41483161800045 102.2997 0.1144 9423 +9425 2 58.34775724862193 -362.0987882111173 102.5592 0.1144 9424 +9426 2 57.636788384936445 -362.34825720205504 102.7942 0.1144 9425 +9427 2 57.69970727290964 -361.24448700988245 103.0641 0.1144 9426 +9428 2 57.85391484228666 -359.7019903778944 103.32 0.1144 9427 +9429 2 57.815614408360176 -358.4902207619479 103.5577 0.1144 9428 +9430 2 57.77125356830225 -357.2853334256796 103.7954 0.1144 9429 +9431 2 57.72529439010677 -356.08326850098024 104.0418 0.1144 9430 +9432 2 57.67933521191126 -354.83026598641464 104.3036 0.1144 9431 +9433 2 57.63461327444568 -353.52316316500645 104.5842 0.1144 9432 +9434 2 57.61711781283152 -352.23347971802264 104.9177 0.1144 9433 +9435 2 57.67327332488195 -351.0026929053677 105.3676 0.1144 9434 +9436 2 57.75330385342049 -349.6336564357054 105.9092 0.1144 9435 +9437 2 57.83356884726718 -348.2025550875119 106.4809 0.1144 9436 +9438 2 57.89203938164101 -346.80852601125974 107.0174 0.1144 9437 +9439 2 57.76886904705136 -345.74321434269734 107.3293 0.1144 9438 +9440 2 57.5492480948558 -344.55665822601935 107.3713 0.1144 9439 +9441 2 57.37132779076433 -343.1582688435998 107.2294 0.1144 9440 +9442 2 57.346746507238116 -341.8464174993673 107.0628 0.1144 9441 +9443 2 57.35843385543748 -340.5605468391337 106.9264 0.1144 9442 +9444 2 57.37012120363686 -339.2728037343948 106.8463 0.1144 9443 +9445 2 57.369420447228364 -337.97664586192724 106.8418 0.1144 9444 +9446 2 57.304830658798274 -336.6398616882079 106.9169 0.1144 9445 +9447 2 57.16540261273976 -335.26133630899915 107.0588 0.1144 9446 +9448 2 57.01211785761831 -333.8732458559933 107.2422 0.1144 9447 +9449 2 56.861145023237256 -332.4896726757497 107.4542 0.1144 9448 +9450 2 56.7075515365209 -331.1145443879732 107.6866 0.1144 9449 +9451 2 56.55516246349753 -329.72986670759644 107.9308 0.1144 9450 +9452 2 56.54341936895631 -328.4660308593685 108.1746 0.1144 9451 +9453 2 57.0181627895114 -327.62486451110556 108.4084 0.1144 9452 +9454 2 57.50083844984684 -326.80866823786636 108.6683 0.1144 9453 +9455 2 57.6481891519904 -325.4017521104446 108.9726 0.1144 9454 +9456 2 57.48750743431561 -324.2741974684521 109.2146 0.1144 9455 +9457 2 57.102929099481955 -322.7967751936793 109.3448 0.1144 9456 +9458 2 56.71785993355801 -321.31649542779724 109.3862 0.1144 9457 +9459 2 56.28370487077237 -319.83454215135714 109.3537 0.1144 9458 +9460 2 55.750741012297865 -319.4899876815603 109.261 0.1144 9459 +9461 2 55.47055405236693 -318.61421847992955 109.1577 0.1144 9460 +9462 2 55.65215848329492 -317.13543760148764 109.093 0.1144 9461 +9463 2 55.61310612909911 -315.891714335179 109.0494 0.1144 9462 +9464 2 55.23771061038532 -314.67727549224026 109.0404 0.1144 9463 +9465 2 55.22900953339085 -313.6198244236052 109.2442 0.1144 9464 +9466 2 55.94843031090766 -312.01816860937777 109.7631 0.1144 9465 +9467 2 56.335497977385884 -310.66319296760156 110.3544 0.1144 9466 +9468 2 56.31944208730933 -309.41066631201585 110.9346 0.1144 9467 +9469 2 56.01535987957804 -308.22801431333875 111.4375 0.1144 9468 +9470 2 55.62628113908407 -307.55635122538064 111.8415 0.1144 9469 +9471 2 55.226740902490505 -306.62414617500565 112.1434 0.1144 9470 +9472 2 54.88741788786082 -305.15859013990377 112.3612 0.1144 9471 +9473 2 55.055141300205364 -304.0292299789721 112.4712 0.1144 9472 +9474 2 55.198790466837266 -302.8495614553585 112.5606 0.1144 9473 +9475 2 55.02728305407209 -301.46047587418036 112.6336 0.1144 9474 +9476 2 54.76569726301039 -300.0621636572337 112.6824 0.1144 9475 +9477 2 54.566302157603985 -298.7627152985307 112.7129 0.1144 9476 +9478 2 54.42362506945745 -297.462233466623 112.7333 0.1144 9477 +9479 2 54.32566320619488 -296.16588950179033 112.7524 0.1144 9478 +9480 2 54.28651945598305 -294.9288825924442 112.7689 0.1144 9479 +9481 2 54.532638899639004 -293.68943099539047 112.7655 0.1144 9480 +9482 2 54.877585653786234 -292.48382675644797 112.7484 0.1144 9481 +9483 2 55.15725927177002 -291.42650070162813 112.7888 0.1144 9482 +9484 2 55.37425068047164 -289.8943300437451 112.9075 0.1144 9483 +9485 2 55.52462147002478 -288.42045724912896 113.0856 0.1144 9484 +9486 2 55.64795649543465 -286.97201093714295 113.3048 0.1144 9485 +9487 2 55.759040974899186 -285.53557488927504 113.5467 0.1144 9486 +9488 2 55.86602448377776 -284.15407744482553 113.7903 0.1144 9487 +9489 2 55.98583456254166 -282.97172526610615 114.0132 0.1144 9488 +9490 2 56.23592524310101 -281.90078243510146 114.1762 0.1144 9489 +9491 2 56.51141269764898 -280.8553826490714 114.2789 0.1144 9490 +9492 2 56.7684485398747 -279.7874935089664 114.3173 0.1144 9491 +9493 2 57.02143577732707 -278.68953703827196 114.31 0.1144 9492 +9494 2 57.185622623926136 -277.09757202241735 114.331 0.1144 9493 +9495 2 57.27723317687085 -275.62880175365336 114.4058 0.1144 9494 +9496 2 57.253012990752325 -274.3583540698628 114.5113 0.1144 9495 +9497 2 57.205221009111 -273.1289334203578 114.6348 0.1144 9496 +9498 2 57.15591588218186 -271.907172508163 114.7667 0.1144 9497 +9499 2 57.24400148848062 -270.42811404960315 114.8801 0.1144 9498 +9500 2 57.399462735780276 -268.8303215128262 114.9632 0.1144 9499 +9501 2 57.56409587263677 -267.217092146235 115.0229 0.1144 9500 +9502 2 57.728282719235835 -265.9534820418788 115.0708 0.1144 9501 +9503 2 57.89456656004276 -264.80972507248936 115.113 0.1144 9502 +9504 2 57.963275146467325 -263.58953941161536 115.169 0.1144 9503 +9505 2 57.94734209437057 -262.31137544198594 115.2533 0.1144 9504 +9506 2 57.91585708842777 -261.0273434720431 115.3639 0.1144 9505 +9507 2 57.91832018125753 -259.7622678196661 115.467 0.1144 9506 +9508 2 57.96805659881548 -258.5115165859066 115.5291 0.1144 9507 +9509 2 57.98962941917439 -257.26020336584753 115.6534 0.1144 9508 +9510 2 58.61422325071689 -256.6404554617861 115.8601 0.1144 9509 +9511 2 58.87385001982382 -255.58277895110183 116.0662 0.1144 9510 +9512 2 58.94821647572226 -254.3790281371576 116.2672 0.1144 9511 +9513 2 59.02249773877091 -253.17047007231758 116.5212 0.1144 9512 +9514 2 59.042654320487486 -251.92252302814137 116.7538 0.1144 9513 +9515 2 59.061821415043596 -250.67488516544677 116.9582 0.1144 9514 +9516 2 59.07983646171947 -249.42450582447128 117.143 0.1144 9515 +9517 2 59.09779914258257 -248.17048425384365 117.3194 0.1144 9516 +9518 2 59.146237341385145 -246.9432005574031 117.5149 0.1144 9517 +9519 2 59.19775419657607 -245.7196978693765 117.7204 0.1144 9518 +9520 2 59.25029336596471 -244.4957839242874 117.9346 0.1144 9519 +9521 2 59.26376115179707 -243.25189484211361 118.1194 0.1144 9520 +9522 2 59.2497875352457 -241.9807907852702 118.258 0.1144 9521 +9523 2 59.234739238684 -240.72497414880075 118.3563 0.1144 9522 +9524 2 59.222278767420505 -239.45594493879952 118.421 0.1144 9523 +9525 2 59.104589713439026 -238.11818808434964 118.4845 0.1144 9524 +9526 2 58.956160950756 -236.76805487982705 118.5545 0.1144 9525 +9527 2 58.80844577067566 -235.42497049301238 118.6296 0.1144 9526 +9528 2 58.80017146284797 -234.160731669395 118.6662 0.1144 9527 +9529 2 58.79790519533884 -232.89977273656027 118.6668 0.1144 9528 +9530 2 58.79819392609086 -231.64008259958777 118.6357 0.1144 9529 +9531 2 58.796864779929535 -230.37997433356247 118.5786 0.1144 9530 +9532 2 58.79679241327386 -229.11896491070357 118.5027 0.1144 9531 +9533 2 58.79452614576478 -227.8600335017233 118.4162 0.1144 9532 +9534 2 58.79445377910916 -226.60376460384413 118.3252 0.1144 9533 +9535 2 58.84672565615254 -225.3896057319142 118.2381 0.1144 9534 +9536 2 58.90634754586995 -224.1757390308034 118.1443 0.1144 9535 +9537 2 58.76273333637566 -222.80462197400436 118.0304 0.1144 9536 +9538 2 58.36277653497858 -221.3572908886544 117.8839 0.1144 9537 +9539 2 59.0334198574331 -221.66819297682716 117.602 0.1144 9538 +9540 2 60.0791190396006 -220.43271376910155 116.5861 0.1144 9539 +9541 2 60.9592039253108 -220.11220993925946 116.0832 0.1144 9540 +9542 2 61.67145058648272 -218.9301657393953 115.6025 0.1144 9541 +9543 2 62.21307710043847 -218.07632914989713 115.1461 0.1144 9542 +9544 2 61.92814846853251 -216.69257011338834 114.8174 0.1144 9543 +9545 2 61.642822810598744 -215.36874144344276 114.5995 0.1144 9544 +9546 2 61.35678357006235 -214.2442068744316 114.4268 0.1144 9545 +9547 2 57.52553725959311 -219.71480265837147 117.644 0.1144 9538 +9548 2 57.33241238466887 -218.47369837461324 117.2746 0.1144 9547 +9549 2 57.791262985282415 -217.66804552525684 116.6623 0.1144 9548 +9550 2 58.29439413962204 -216.9241346723669 115.9656 0.1144 9549 +9551 2 58.69789851548144 -216.06706772840616 115.2836 0.1144 9550 +9552 2 59.04677886140199 -214.9671484694963 114.6516 0.1144 9551 +9553 2 59.325568416387284 -213.62967105586642 114.0919 0.1144 9552 +9554 2 59.50846865702424 -212.00294670864088 113.615 0.1144 9553 +9555 2 59.65403892153479 -210.5058293580974 113.2068 0.1144 9554 +9556 2 59.7753207063369 -209.12059190070812 112.8523 0.1144 9555 +9557 2 59.86288575609137 -207.75431982947742 112.5485 0.1144 9556 +9558 2 59.95766325985741 -206.53844712316788 112.2363 0.1144 9557 +9559 2 60.02766455440775 -205.35806034857194 111.904 0.1144 9558 +9560 2 59.98076825486446 -204.08279382260667 111.6973 0.1144 9559 +9561 2 59.843162085688746 -202.75087056136198 111.6475 0.1144 9560 +9562 2 59.637706574151025 -201.55606191165572 111.708 0.1144 9561 +9563 2 59.39755104357138 -200.52228659264733 111.8337 0.1144 9562 +9564 2 59.01070454159749 -199.86312424345363 111.9611 0.1144 9563 +9565 2 58.39025934017768 -198.96437702957297 112.0042 0.1144 9564 +9566 2 57.66567875085245 -197.52771778800593 111.9311 0.1144 9565 +9567 2 57.00135923178739 -196.070809264925 111.7959 0.1144 9566 +9568 2 56.58991310946358 -194.63617239533195 111.7088 0.1144 9567 +9569 2 56.45003877314757 -193.30877485381774 111.687 0.1144 9568 +9570 2 56.54183142558766 -192.13063667000063 111.6424 0.1144 9569 +9571 2 56.62774266980864 -190.9507269650611 111.5881 0.1144 9570 +9572 2 56.54822931728532 -189.6550017722202 111.587 0.1144 9571 +9573 2 56.40202728249284 -188.32345088122014 111.6382 0.1144 9572 +9574 2 56.213730675151524 -186.9856842857365 111.706 0.1144 9573 +9575 2 55.91507979126216 -186.06181804206898 111.7542 0.1144 9574 +9576 2 55.67019490034369 -185.0696793926184 111.7416 0.1144 9575 +9577 2 55.523416841611095 -183.96393799783954 111.6578 0.1144 9576 +9578 2 55.439408594056985 -182.74744331913462 111.5268 0.1144 9577 +9579 2 55.37633195091473 -181.5207328730589 111.3728 0.1144 9578 +9580 2 55.313307673585214 -180.28150834972325 111.2157 0.1144 9579 +9581 2 55.2512205176035 -179.0106693626071 111.0701 0.1144 9580 +9582 2 55.18756785052115 -177.7356759775333 110.9444 0.1144 9581 +9583 2 55.126503008736975 -176.46695183931564 110.8377 0.1144 9582 +9584 2 55.048502801501456 -175.20643097484805 110.8128 0.1144 9583 +9585 2 55.136012383860134 -173.99469163463948 110.8159 0.1144 9584 +9586 2 55.30064552071664 -172.46447528039766 110.81 0.1144 9585 +9587 2 55.46684416867376 -170.9404566013502 110.7999 0.1144 9586 +9588 2 55.52013835991471 -169.58206072824913 110.808 0.1144 9587 +9589 2 55.50767788865119 -168.27613807076796 110.843 0.1144 9588 +9590 2 55.460332197267334 -167.01447874558733 110.9164 0.1144 9589 +9591 2 55.33453810875939 -165.87330604366258 111.0693 0.1144 9590 +9592 2 55.17901801353477 -164.78475238853383 111.298 0.1144 9591 +9593 2 55.19627803835827 -163.44109026853633 111.5548 0.1144 9592 +9594 2 55.324375251144076 -161.92678008504092 111.806 0.1144 9593 +9595 2 55.46922883146887 -160.55447086115845 112.0434 0.1144 9594 +9596 2 55.612877998100785 -159.42512332097652 112.2629 0.1144 9595 +9597 2 55.75911499003084 -158.2974816771857 112.4617 0.1144 9596 +9598 2 55.903701278010516 -157.16878001568944 112.6443 0.1144 9597 +9599 2 56.047796734899876 -156.03830660134128 112.8165 0.1144 9598 +9600 2 56.192383022879525 -154.91020986674653 112.9806 0.1144 9599 +9601 2 56.39421640217975 -153.82862587190712 113.1315 0.1144 9600 +9602 2 56.79592561972342 -152.90507610842454 113.2538 0.1144 9601 +9603 2 57.258947663090126 -151.83714838646512 113.349 0.1144 9602 +9604 2 57.345434931251276 -150.61932330766956 113.4286 0.1144 9603 +9605 2 57.25919995580665 -149.35720339743133 113.5131 0.1144 9604 +9606 2 57.15674319751331 -148.08561488374775 113.6187 0.1144 9605 +9607 2 57.1429516804573 -146.83917662519875 113.7388 0.1144 9606 +9608 2 57.418524327855096 -145.80763872102264 113.8561 0.1144 9607 +9609 2 57.776702502895475 -143.9428813756409 113.9625 0.1144 9608 +9610 2 58.134571946340884 -142.3474895931146 114.0591 0.1144 9609 +9611 2 58.49434845951886 -141.36014727554166 114.1476 0.1144 9610 +9612 2 58.85150432036167 -140.32748372292426 114.2313 0.1144 9611 +9613 2 59.209734861214756 -139.36205305319646 114.3178 0.1144 9612 +9614 2 59.567998229104916 -138.43562380062824 114.4136 0.1144 9613 +9615 2 59.92573011388777 -137.51307510791054 114.5228 0.1144 9614 +9616 2 60.28404584759066 -136.50715216737595 114.6499 0.1144 9615 +9617 2 60.648681454790164 -134.60043826941168 114.8118 0.1144 9616 +9618 2 61.01622454544572 -133.07307879273756 115.0131 0.1144 9617 +9619 2 61.360504572173454 -132.09641067893483 115.253 0.1144 9618 +9620 2 61.112778591757746 -130.77354361265657 115.5686 0.1144 9619 +9621 2 60.79002984517173 -129.40093347316295 115.9362 0.1144 9620 +9622 2 60.580085641769415 -128.27047563707066 116.3613 0.1144 9621 +9623 2 60.32090316746401 -127.43404404003947 116.8163 0.1144 9622 +9624 2 59.97660062987947 -126.79251418913076 117.2808 0.1144 9623 +9625 2 59.61278582810843 -125.6949281282651 117.752 0.1144 9624 +9626 2 59.243668743641535 -124.31793262198038 118.2429 0.1144 9625 +9627 2 58.852234234110995 -122.95048391755353 118.8757 0.1144 9626 +9628 2 58.45759753767558 -121.59264476938617 119.5883 0.1144 9627 +9629 2 58.06296084124011 -120.23433964002146 120.3065 0.1144 9628 +9630 2 57.800058725068624 -118.9204598672772 120.8396 0.1144 9629 +9631 2 57.82639683438646 -117.72767183045619 120.8105 0.1144 9630 +9632 2 58.142659434790346 -116.78688661218469 120.4269 0.1144 9631 +9633 2 58.65406610405225 -116.12022351944555 120.1138 0.1144 9632 +9634 2 58.82129016779001 -115.14396481400046 119.9461 0.1144 9633 +9635 2 58.88336232414312 -114.09058949521834 119.9579 0.1144 9634 +9636 2 58.94008765696745 -113.0351022584734 120.1603 0.1144 9635 +9637 2 58.996154874585045 -111.98486097102464 120.5014 0.1144 9636 +9638 2 59.05212828714011 -110.93687693226866 120.9104 0.1144 9637 +9639 2 59.10774060228752 -109.69272954003318 121.3439 0.1144 9638 +9640 2 58.925193260436146 -108.73013726565247 121.8386 0.1144 9639 +9641 2 58.72754335657922 -107.56524081970322 122.3684 0.1144 9640 +9642 2 58.529447162464834 -106.40343512926911 122.9147 0.1144 9641 +9643 2 58.33237328254802 -105.2430333787632 123.4582 0.1144 9642 +9644 2 58.12763755677909 -104.07539362473372 123.9084 0.1144 9643 +9645 2 57.922943270259935 -102.90334621874023 124.2884 0.1144 9644 +9646 2 57.717182128710334 -101.73194595850292 124.6101 0.1144 9645 +9647 2 57.51209081616335 -100.57265734749845 124.894 0.1144 9646 +9648 2 57.30601001645584 -99.40149557932835 125.1578 0.1144 9647 +9649 2 56.82080100905051 -98.17409718772512 125.4294 0.1144 9648 +9650 2 56.22659520536803 -96.95658723183863 125.7203 0.1144 9649 +9651 2 55.57761480320448 -96.50385186944361 126.0353 0.1144 9650 +9652 2 54.636675201834464 -96.47694290343419 126.4136 0.1144 9651 +9653 2 54.34548294535364 -95.88901516889266 126.5734 0.1144 9652 +9654 2 53.73835986830633 -94.6742519188828 126.8803 0.1144 9653 +9655 2 53.13154552285391 -93.46402808492431 127.146 0.1144 9654 +9656 2 52.52352676370856 -92.2570194342853 127.3821 0.1144 9655 +9657 2 51.87012364321325 -91.64658568142139 127.6324 0.1144 9656 +9658 2 51.16197666168608 -91.13414616170526 127.9225 0.1144 9657 +9659 2 50.44982561621845 -89.95121718472352 128.1941 0.1144 9658 +9660 2 49.74172007394105 -88.76898953960543 128.417 0.1144 9659 +9661 2 49.03602025746639 -87.59127117846597 128.606 0.1144 9660 +9662 2 48.34070225487113 -87.00152964603542 128.7882 0.1144 9661 +9663 2 47.65620374420007 -86.42752183847374 128.9806 0.1144 9662 +9664 2 46.9716200406792 -85.28540881046611 129.1884 0.1144 9663 +9665 2 46.28774991976093 -84.11041792463298 129.4196 0.1144 9664 +9666 2 45.59755520194926 -82.94695248527832 129.6784 0.1144 9665 +9667 2 44.89261350891013 -82.02947810573629 129.9687 0.1144 9666 +9668 2 44.18010136603482 -81.75914932027996 130.2871 0.1144 9667 +9669 2 43.42527490598536 -80.62307412706967 130.6071 0.1144 9668 +9670 2 42.61812512608569 -79.51203116230096 130.9104 0.1144 9669 +9671 2 41.79559998120564 -78.41366589112334 131.1979 0.1144 9670 +9672 2 41.00398502542288 -78.1375271758987 131.4804 0.1144 9671 +9673 2 40.464487751992465 -77.2293359202817 131.7994 0.1144 9672 +9674 2 40.1326116566824 -76.05308607449874 132.1704 0.1144 9673 +9675 2 39.802333899510046 -74.88037212019775 132.5671 0.1144 9674 +9676 2 39.466624125959186 -73.71097552374816 132.9686 0.1144 9675 +9677 2 38.9592797929856 -72.54453697670918 133.2506 0.1144 9676 +9678 2 38.34133412243102 -71.38837988830709 133.3615 0.1144 9677 +9679 2 37.72080062657827 -70.35768734081327 133.3352 0.1144 9678 +9680 2 37.415963396994584 -69.50729986802952 133.3895 0.1144 9679 +9681 2 37.27457591539073 -68.45537616593121 133.6048 0.1144 9680 +9682 2 37.135459702510246 -67.402504570206 133.903 0.1144 9681 +9683 2 37.32439432324804 -66.11563046394659 133.518 0.1144 9682 +9684 2 37.383241368248775 -64.9582170375429 132.5811 0.1144 9683 +9685 2 36.962835589765376 -64.33008520046165 131.5728 0.1144 9684 +9686 2 36.330428751130825 -63.678990464134095 130.697 0.1144 9685 +9687 2 35.84804341940492 -62.56364953519914 129.8928 0.1144 9686 +9688 2 35.49381156136465 -61.43334664797231 129.2343 0.1144 9687 +9689 2 35.06722453936865 -60.285574926284966 128.8272 0.1144 9688 +9690 2 34.593058562632564 -59.6059445525009 128.6569 0.1144 9689 +9691 2 34.05978907414618 -58.79442745012044 128.457 0.1144 9690 +9692 2 33.18438139574636 -58.28893152940672 128.0644 0.1144 9691 +9693 2 32.09770445282675 -58.14318840067909 127.4342 0.1144 9692 +9694 2 31.056430297070193 -58.1625892339691 126.8134 0.1144 9693 +9695 2 30.129570943508213 -57.332547014298605 126.3363 0.1144 9694 +9696 2 29.217308600178825 -56.37503739602164 125.9899 0.1144 9695 +9697 2 28.734693621237795 -55.239908358101644 125.7424 0.1144 9696 +9698 2 28.59053931642353 -54.10992238713065 125.5542 0.1144 9697 +9699 2 27.92047974192161 -53.12921982256559 125.258 0.1144 9698 +9700 2 27.14659661269232 -52.7529310130171 124.8318 0.1144 9699 +9701 2 26.345231334366105 -51.725514383902386 124.4116 0.1144 9700 +9702 2 25.528405498209764 -50.7130107771672 124.0543 0.1144 9701 +9703 2 24.708468178627925 -49.70535039516922 123.7508 0.1144 9702 +9704 2 24.178735948423622 -48.8921564138302 124.2368 0.1144 9703 +9705 2 23.623366370452544 -48.17040501380729 124.4116 0.1144 9704 +9706 2 23.068357889889143 -47.041382651391956 124.5272 0.1144 9705 +9707 2 22.51334940932577 -45.9139689296796 124.6386 0.1144 9706 +9708 2 21.870944778666853 -44.81429897023561 124.6857 0.1144 9707 +9709 2 21.08008484473649 -43.801528903314804 124.5829 0.1144 9708 +9710 2 20.218773430911313 -43.335886727634474 124.3136 0.1144 9709 +9711 2 19.24911513225095 -42.607884749745644 124.0397 0.1144 9710 +9712 2 18.18639220120994 -41.92467297086973 123.8924 0.1144 9711 +9713 2 17.09896083998524 -41.57225232408752 123.8807 0.1144 9712 +9714 2 16.128853149484343 -41.02949311145759 123.8908 0.1144 9713 +9715 2 15.351356779176228 -40.02146604463742 123.8104 0.1144 9714 +9716 2 14.629311649336444 -38.97228053765195 123.625 0.1144 9715 +9717 2 14.243846149921268 -37.85474943550681 123.3204 0.1144 9716 +9718 2 13.95816249616297 -36.724641371786454 122.9351 0.1144 9717 +9719 2 13.99716461464655 -35.63648250236157 122.6546 0.1144 9718 +9720 2 14.352446232793824 -34.67475231736662 122.5924 0.1144 9719 +9721 2 14.723461904282544 -33.71702272547455 122.7215 0.1144 9720 +9722 2 15.08231601679546 -32.77787287413673 123.4013 0.1144 9721 +9723 2 23.54742869772454 -49.93035929579392 123.2395 0.1144 9703 +9724 2 22.418410707085542 -49.478951200751325 122.8808 0.1144 9723 +9725 2 21.291043420396903 -49.02866416275836 122.5028 0.1144 9724 +9726 2 20.164219330611303 -49.26514347244607 122.094 0.1144 9725 +9727 2 19.0393023105583 -48.81322847090907 121.6765 0.1144 9726 +9728 2 17.912478220772698 -48.46909843975677 121.2686 0.1144 9727 +9729 2 16.77908376343771 -48.6954227362259 120.8964 0.1144 9728 +9730 2 15.648486955751679 -48.4594119903447 120.5691 0.1144 9729 +9731 2 14.510312488775071 -48.335884675364305 120.3723 0.1144 9730 +9732 2 13.374196062814235 -48.5186797804653 120.2466 0.1144 9731 +9733 2 12.308780693502001 -48.586359986823815 120.057 0.1144 9732 +9734 2 11.249605420770024 -49.057773827877725 119.7974 0.1144 9733 +9735 2 10.19404028753371 -49.441219693049774 119.4749 0.1144 9734 +9736 2 9.139806200089879 -50.13615992879241 119.0991 0.1144 9735 +9737 2 8.087137623746656 -50.30626396201001 118.6833 0.1144 9736 +9738 2 7.0370045068889056 -50.39078023956845 118.2591 0.1144 9737 +9739 2 5.984335930545683 -51.117594246341916 117.8492 0.1144 9738 +9740 2 4.93166735420246 -51.25796617741592 117.4572 0.1144 9739 +9741 2 3.877976463661696 -51.3348298593511 117.0856 0.1144 9740 +9742 2 2.8759908142558572 -52.20321652414163 116.797 0.1144 9741 +9743 2 1.7616965726232934 -52.14563305997175 116.5592 0.1144 9742 +9744 2 0.6349573739138066 -51.97188700936802 116.354 0.1144 9743 +9745 2 -0.4921014829535011 -52.51374150027895 116.1661 0.1144 9744 +9746 2 -1.6198215566107592 -52.334353321005516 115.9838 0.1144 9745 +9747 2 -2.743751800323423 -52.16667552271655 115.7775 0.1144 9746 +9748 2 -3.8606728974574196 -52.763524469138254 115.519 0.1144 9747 +9749 2 -4.976624046206609 -52.62540497398748 115.2276 0.1144 9748 +9750 2 -6.032996567108029 -52.71874352117448 114.94 0.1144 9749 +9751 2 -7.0762964337163226 -53.52629471511969 114.6687 0.1144 9750 +9752 2 -8.122046566960222 -53.63596548537695 114.4212 0.1144 9751 +9753 2 -9.167220676264066 -53.89326412647012 114.2039 0.1144 9752 +9754 2 -9.435039869009415 -54.33430427288987 114.0807 0.1144 9753 +9755 2 -10.309234136447571 -55.06432870916823 113.9799 0.1144 9754 +9756 2 -11.1838746941431 -55.501667199416936 113.9348 0.1144 9755 +9757 2 -12.059124102815844 -55.92364868783685 113.9208 0.1144 9756 +9758 2 -12.948920280866275 -57.11894736891596 113.93 0.1144 9757 +9759 2 -13.883182906257929 -57.44130665848095 113.9555 0.1144 9758 +9760 2 -14.843440875240844 -58.53651889558392 113.9922 0.1144 9759 +9761 2 -15.803252553966303 -58.81264419455252 114.042 0.1144 9760 +9762 2 -16.76408654688936 -59.08785542974829 114.1076 0.1144 9761 +9763 2 -17.88141908896023 -59.42669079945998 114.2305 0.1144 9762 +9764 2 -18.924914870425653 -58.609653408976534 114.3962 0.1144 9763 +9765 2 -20.009267575261873 -57.90202110759014 114.606 0.1144 9764 +9766 2 -21.0795992938057 -57.95660791751204 114.828 0.1144 9765 +9767 2 -22.13742789474159 -57.18640128446154 115.04 0.1144 9766 +9768 2 -23.209342538203742 -56.49403516557579 115.2262 0.1144 9767 +9769 2 -24.32351084027337 -57.1237921809782 115.3429 0.1144 9768 +9770 2 -25.3626238509093 -57.23968217659074 115.407 0.1144 9769 +9771 2 -26.370799640129093 -57.42859799806002 115.4843 0.1144 9770 +9772 2 -27.368399896874536 -58.44734961973425 115.5921 0.1144 9771 +9773 2 -28.3650302052352 -58.65430482305441 115.7223 0.1144 9772 +9774 2 -29.36103212384296 -58.86363262386708 115.8646 0.1144 9773 +9775 2 -30.356458018510693 -59.8083753210932 116.0037 0.1144 9774 +9776 2 -31.344475331525416 -60.12474613525619 116.1056 0.1144 9775 +9777 2 -32.31311183054618 -60.37721990772607 116.1247 0.1144 9776 +9778 2 -33.2723803123686 -61.21567261537625 116.0589 0.1144 9777 +9779 2 -34.232191991094055 -61.7676155046193 115.9315 0.1144 9778 +9780 2 -35.19012942712405 -62.03750145448731 115.7635 0.1144 9779 +9781 2 -36.148427960561634 -62.62586460827601 115.5759 0.1144 9780 +9782 2 -37.10631303077889 -63.441211328092336 115.3886 0.1144 9781 +9783 2 -38.064611564216506 -63.70356700223788 115.2172 0.1144 9782 +9784 2 -39.024423242941936 -64.03108250053637 115.0691 0.1144 9783 +9785 2 -39.99764603300946 -65.08877025247078 114.956 0.1144 9784 +9786 2 -41.02012861566925 -65.20415631478933 114.912 0.1144 9785 +9787 2 -42.08201834579896 -65.25404109991413 114.9459 0.1144 9786 +9788 2 -43.184091861636404 -65.99827273449887 115.059 0.1144 9787 +9789 2 -44.30642036385467 -65.90685179158034 115.1654 0.1144 9788 +9790 2 -45.384231136218574 -65.6474619304498 115.0346 0.1144 9789 +9791 2 -46.429674734129804 -64.83581240413548 114.641 0.1144 9790 +9792 2 -47.486086687975444 -64.4066462586589 113.983 0.1144 9791 +9793 2 -48.54798711990574 -64.5785104533872 113.0158 0.1144 9792 +9794 2 -49.58358960280472 -64.3497208896911 111.8944 0.1144 9793 +9795 2 -50.59734597063982 -64.51564120183416 110.929 0.1144 9794 +9796 2 -51.608801628386146 -65.26925304687036 110.1204 0.1144 9795 +9797 2 -52.62836783128853 -65.30759388947682 109.4212 0.1144 9796 +9798 2 -53.65634780031236 -65.50147809530775 108.8102 0.1144 9797 +9799 2 -54.69240066936217 -66.30170157046405 108.2001 0.1144 9798 +9800 2 -55.72411540938266 -66.23801572189036 107.3027 0.1144 9799 +9801 2 -56.73268002086557 -66.35768937842369 106.4977 0.1144 9800 +9802 2 -57.72570939978354 -67.34534738638817 105.8991 0.1144 9801 +9803 2 -58.72546591225239 -67.48667459874451 105.4469 0.1144 9802 +9804 2 -59.2692754004985 -68.24608650611873 105.0476 0.1144 9803 +9805 2 -59.41610313705131 -69.25899060045217 104.3302 0.1144 9804 +9806 2 -9.690895122167888 -54.26101229859125 113.472 0.1144 9753 +9807 2 -10.736179846804731 -53.89422971802685 112.3629 0.1144 9806 +9808 2 -11.84552709074589 -53.48920250680472 111.7424 0.1144 9807 +9809 2 -12.9662401250973 -53.788710620048164 111.214 0.1144 9808 +9810 2 -14.096847243820946 -53.356860365356205 110.8243 0.1144 9809 +9811 2 -15.234804375218658 -53.674848717494896 110.5832 0.1144 9810 +9812 2 -16.375296966101757 -53.23826691259733 110.462 0.1144 9811 +9813 2 -17.516993970677817 -52.83314664603432 110.43 0.1144 9812 +9814 2 -18.659137265511333 -53.11441042555132 110.4328 0.1144 9813 +9815 2 -19.801143001682306 -52.70893652001965 110.416 0.1144 9814 +9816 2 -20.941635592565433 -52.45432940818876 110.3312 0.1144 9815 +9817 2 -22.076742015964868 -52.72134278281557 110.0686 0.1144 9816 +9818 2 -23.179905625031864 -52.574485361538166 109.5433 0.1144 9817 +9819 2 -24.259946137880007 -52.80206816327004 108.815 0.1144 9818 +9820 2 -25.3263972340105 -53.054496756334565 107.9618 0.1144 9819 +9821 2 -26.38376163343392 -52.95568299424949 107.0465 0.1144 9820 +9822 2 -27.435412695987594 -53.29164845938646 106.1178 0.1144 9821 +9823 2 -28.425742338190503 -53.721214202215954 105.3315 0.1144 9822 +9824 2 -29.424218454169704 -53.87622447705159 104.6545 0.1144 9823 +9825 2 -30.541381918602923 -53.97535017618566 104.0642 0.1144 9824 +9826 2 -31.663337704313903 -53.88222415806744 103.5423 0.1144 9825 +9827 2 -32.74609237278614 -53.46953918496803 102.6474 0.1144 9826 +9828 2 37.1078396039878 -67.11816746607117 135.3061 0.1144 9682 +9829 2 37.038659505628885 -66.45212363628039 137.3128 0.1144 9828 +9830 2 36.87915858466303 -65.47564307117125 138.1492 0.1144 9829 +9831 2 36.62127432911305 -64.54260611916189 138.5807 0.1144 9830 +9832 2 36.36263505171067 -63.39415722869236 139.0446 0.1144 9831 +9833 2 36.104709356910945 -62.24841855851153 139.5276 0.1144 9832 +9834 2 35.843749546555614 -61.10759823432894 140.021 0.1144 9833 +9835 2 35.46385982534761 -59.973897126289266 140.5158 0.1144 9834 +9836 2 34.85290927322566 -58.98325178702501 141.0116 0.1144 9835 +9837 2 34.191985659660475 -58.57080058777029 141.5313 0.1144 9836 +9838 2 33.38029782897033 -57.56498935846314 142.1025 0.1144 9837 +9839 2 32.422002911673815 -56.70163076332948 142.7409 0.1144 9838 +9840 2 31.467894157813134 -55.90705631494103 143.425 0.1144 9839 +9841 2 30.535386144830255 -55.73614741960618 144.1247 0.1144 9840 +9842 2 29.637833131598285 -54.81071488796771 144.8065 0.1144 9841 +9843 2 28.736810639116214 -53.89940636429095 145.4844 0.1144 9842 +9844 2 27.790584168269618 -53.29290703981445 146.2006 0.1144 9843 +9845 2 26.81208974396614 -53.01724893034608 146.9779 0.1144 9844 +9846 2 25.847209045900996 -52.20620728969389 147.756 0.1144 9845 +9847 2 24.89569121892154 -51.37161785973192 148.4921 0.1144 9846 +9848 2 23.953521177828094 -51.193971534766526 149.2341 0.1144 9847 +9849 2 23.19067046645688 -50.31233532516684 150.0898 0.1144 9848 +9850 2 22.876183928846785 -49.347819731161614 151.5461 0.1144 9849 +9851 2 22.669602786222242 -48.44092418447115 153.2698 0.1144 9850 +9852 2 22.288089393382734 -47.399712741332436 154.4757 0.1144 9851 +9853 2 21.77779103552166 -46.38455445098118 155.6971 0.1144 9852 +9854 2 21.586266907781607 -45.33651107951264 156.7916 0.1144 9853 +9855 2 21.43880229876521 -44.28377311075765 157.8562 0.1144 9854 +9856 2 21.006810985246062 -43.26637503815912 159.0658 0.1144 9855 +9857 2 20.84420547655745 -42.22387820762179 160.1933 0.1144 9856 +9858 2 20.38286638345855 -41.43342003723485 161.4239 0.1144 9857 +9859 2 20.24678056902519 -40.50639062263538 162.7601 0.1144 9858 +9860 2 19.8706198064107 -40.05904844548689 164.9091 0.1144 9859 +9861 2 53.62980514259826 -96.36319502592515 127.7699 0.1144 9652 +9862 2 52.592636154288414 -96.24434977385258 128.3419 0.1144 9861 +9863 2 51.511650316327746 -97.35483658715621 128.6866 0.1144 9862 +9864 2 50.39127614747315 -96.81405434354949 128.812 0.1144 9863 +9865 2 49.25513709883856 -96.23505991320513 128.6538 0.1144 9864 +9866 2 48.12338824327233 -97.0146744665764 128.4492 0.1144 9865 +9867 2 46.993115580400456 -96.60222714883824 128.2554 0.1144 9866 +9868 2 45.86258655174646 -96.63631317466351 128.0812 0.1144 9867 +9869 2 44.73432328118619 -97.12824370081589 127.9368 0.1144 9868 +9870 2 43.630649018164576 -96.8509989657051 127.7819 0.1144 9869 +9871 2 42.536919488817944 -97.33608356342172 127.5775 0.1144 9870 +9872 2 41.44572541895678 -97.71172189762927 127.2989 0.1144 9871 +9873 2 40.3575654646512 -97.47105799927894 126.947 0.1144 9872 +9874 2 39.272249701426006 -98.15275041651697 126.5295 0.1144 9873 +9875 2 38.180734588333735 -98.28704244663703 126.0442 0.1144 9874 +9876 2 37.19457460106972 -98.6114212881673 125.3619 0.1144 9875 +9877 2 36.25993977372886 -97.80071816790482 124.5152 0.1144 9876 +9878 2 35.33555461753821 -96.80401390085134 123.5875 0.1144 9877 +9879 2 34.39219557597113 -95.9608896734574 122.6537 0.1144 9878 +9880 2 33.27683857520145 -96.59093943403514 122.0425 0.1144 9879 +9881 2 32.146317750312136 -96.07936449515502 121.6404 0.1144 9880 +9882 2 31.02273078174136 -96.08072398191494 121.2674 0.1144 9881 +9883 2 29.90155574213958 -96.59599930323851 120.8827 0.1144 9882 +9884 2 28.781094285140426 -96.1941199644243 120.4784 0.1144 9883 +9885 2 27.66316828762669 -96.51741544713437 120.0497 0.1144 9884 +9886 2 26.551397193843343 -96.7455558277334 119.5799 0.1144 9885 +9887 2 25.501157960286918 -96.57403781565489 119.0566 0.1144 9886 +9888 2 24.59318228035235 -97.33383155890783 118.7309 0.1144 9887 +9889 2 23.83681452459092 -98.5426960760917 118.627 0.1144 9888 +9890 2 23.36577504859406 -99.29021125989154 118.7052 0.1144 9889 +9891 2 23.19120097218223 -100.27770330566457 118.9594 0.1144 9890 +9892 2 23.049601944575045 -101.26354194975943 119.3937 0.1144 9891 +9893 2 22.64807992870837 -101.9713475450013 120.2944 0.1144 9892 +9894 2 21.72246752336673 -102.15768720231193 121.571 0.1144 9893 +9895 2 20.89578014578663 -101.90460706041895 122.4146 0.1144 9894 +9896 2 20.319456731492835 -100.74815976770627 123.4013 0.1144 9895 +9897 2 56.905720374749535 -96.94606728684545 126.2069 0.1144 9650 +9898 2 57.85397906138769 -96.93249172370048 127.1309 0.1144 9897 +9899 2 58.83652981447693 -95.70658571006483 127.6999 0.1144 9898 +9900 2 59.82233512028381 -95.56574061225412 128.2019 0.1144 9899 +9901 2 60.782246712541706 -95.48186968042852 128.7138 0.1144 9900 +9902 2 61.70947657437071 -94.60635728304457 129.1825 0.1144 9901 +9903 2 62.633685656253505 -93.8564477067546 129.6028 0.1144 9902 +9904 2 63.55980180786895 -93.02787363103499 129.9768 0.1144 9903 +9905 2 64.48694027368194 -92.23878048356762 130.3198 0.1144 9904 +9906 2 65.40263016528132 -92.03886602977691 130.6508 0.1144 9905 +9907 2 66.19513510257573 -91.65198253151686 131.0014 0.1144 9906 +9908 2 66.68850982590197 -90.12361933549893 131.3886 0.1144 9907 +9909 2 67.12011922998153 -88.90762345302292 131.8022 0.1144 9908 +9910 2 67.55178099987384 -88.11966078045506 132.2272 0.1144 9909 +9911 2 67.97657187438656 -87.32406307728675 132.6469 0.1144 9910 +9912 2 68.35096942322909 -86.48037006122972 133.0126 0.1144 9911 +9913 2 68.6269914624674 -85.56912048374255 133.2598 0.1144 9912 +9914 2 69.01730206256374 -84.63302340358783 133.4446 0.1144 9913 +9915 2 69.95630635993038 -83.45519398675947 133.7076 0.1144 9914 +9916 2 71.0205672723159 -83.55796624702072 134.0914 0.1144 9915 +9917 2 72.08488675368037 -83.67297499159679 134.5781 0.1144 9916 +9918 2 73.1424236340981 -82.65412562747073 135.1451 0.1144 9917 +9919 2 74.19582671689281 -82.76989937936854 135.7591 0.1144 9918 +9920 2 75.24983865066469 -82.87186530920425 136.3748 0.1144 9919 +9921 2 76.3073427040454 -81.86636927694094 136.9525 0.1144 9920 +9922 2 77.3682224316137 -81.97929010966682 137.4758 0.1144 9921 +9923 2 78.43306246952238 -82.03447230586717 137.9084 0.1144 9922 +9924 2 79.49928832808286 -81.0553611860468 138.1828 0.1144 9923 +9925 2 80.58012971167824 -81.16753939183916 138.2788 0.1144 9924 +9926 2 81.70575209859103 -81.24879538094447 138.2343 0.1144 9925 +9927 2 82.84607320279005 -80.79029369217935 138.089 0.1144 9926 +9928 2 83.97258886275432 -81.10833233527494 137.8812 0.1144 9927 +9929 2 85.08372166419517 -80.85269737485548 137.6586 0.1144 9928 +9930 2 86.19600341193313 -80.47117627819694 137.471 0.1144 9929 +9931 2 87.29896099076899 -79.7191440574338 137.373 0.1144 9930 +9932 2 88.34110880949711 -79.58520464181632 137.5102 0.1144 9931 +9933 2 89.26852077082143 -79.37526753955657 137.9778 0.1144 9932 +9934 2 90.07774753210794 -78.5796411587856 138.5625 0.1144 9933 +9935 2 90.76321951831568 -77.3866722459917 139.1219 0.1144 9934 +9936 2 91.41183212817498 -76.78835381165848 139.6335 0.1144 9935 +9937 2 92.05251559983711 -76.18062889764488 140.0921 0.1144 9936 +9938 2 92.6532313133084 -75.52142108131405 140.532 0.1144 9937 +9939 2 93.19396214516613 -74.1152065616155 141.0016 0.1144 9938 +9940 2 93.76544199047456 -73.10887450984538 141.4252 0.1144 9939 +9941 2 94.44654502121449 -72.52352882882072 141.6229 0.1144 9940 +9942 2 95.14755493312217 -71.95134265808416 141.4423 0.1144 9941 +9943 2 95.49921510642588 -71.15701286774662 140.5376 0.1144 9942 +9944 2 95.40830793686317 -70.22499904100545 139.1757 0.1144 9943 +9945 2 95.7598829173171 -69.11809191890215 138.0644 0.1144 9944 +9946 2 96.23656284897004 -67.76850398349787 137.1241 0.1144 9945 +9947 2 96.78207369046945 -67.0865438621193 136.3102 0.1144 9946 +9948 2 97.4040030213805 -66.44595957793442 135.6334 0.1144 9947 +9949 2 98.00552681505354 -65.79078724137038 135.0177 0.1144 9948 +9950 2 98.40288008130219 -64.97494957284462 134.2533 0.1144 9949 +9951 2 98.62398787380906 -63.70651455062492 133.3724 0.1144 9950 +9952 2 98.79722918791853 -62.421227444204895 132.5607 0.1144 9951 +9953 2 98.98174799800535 -61.281442790077776 131.8153 0.1144 9952 +9954 2 99.23349317663477 -60.34979621468728 131.1654 0.1144 9953 +9955 2 99.58740851290597 -59.46953288096526 130.6474 0.1144 9954 +9956 2 100.0478043933079 -58.657196275487465 130.2622 0.1144 9955 +9957 2 100.58639920075447 -57.90125159181685 129.9791 0.1144 9956 +9958 2 101.28893077546658 -56.99882332169752 129.7372 0.1144 9957 +9959 2 102.20284022943287 -56.193761905808564 129.4846 0.1144 9958 +9960 2 103.15698542647175 -55.91291901202378 129.2026 0.1144 9959 +9961 2 104.10922355377804 -55.639056610858695 128.879 0.1144 9960 +9962 2 105.12097252990006 -54.803997038645804 128.4741 0.1144 9961 +9963 2 106.21570455057986 -54.910880676100646 127.9695 0.1144 9962 +9964 2 107.3216356753939 -54.91644146101922 127.4213 0.1144 9963 +9965 2 108.42449675603217 -54.51035637521561 126.8551 0.1144 9964 +9966 2 109.53247050864272 -54.34317852101563 126.2498 0.1144 9965 +9967 2 110.6415121225721 -54.47200258154641 125.592 0.1144 9966 +9968 2 111.74765958865481 -54.904711883144024 124.8993 0.1144 9967 +9969 2 112.8133149162197 -54.52398352043808 124.1514 0.1144 9968 +9970 2 113.8405545840738 -54.27845352574619 123.398 0.1144 9969 +9971 2 114.87937807045373 -54.20263496783826 122.7106 0.1144 9970 +9972 2 115.93157673955545 -53.74799440269698 122.0979 0.1144 9971 +9973 2 116.99138178711351 -53.451292573863256 121.557 0.1144 9972 +9974 2 117.4028341297242 -52.82171625846317 121.1095 0.1144 9973 +9975 2 117.21640625444888 -51.715801052535205 120.8446 0.1144 9974 +9976 2 117.1076772650749 -50.61760134339821 120.675 0.1144 9975 +9977 2 117.34528913754696 -49.668764744255405 120.5103 0.1144 9976 +9978 2 117.72441294514525 -48.79609683965605 120.3182 0.1144 9977 +9979 2 118.35573150119205 -47.91646207319708 120.0478 0.1144 9978 +9980 2 119.17997253005129 -46.95216247442889 119.6888 0.1144 9979 +9981 2 120.22807022856702 -46.932301979632854 119.2702 0.1144 9980 +9982 2 121.27579451803896 -46.82555020695105 118.8555 0.1144 9981 +9983 2 122.24955809596301 -45.94893079586986 118.4809 0.1144 9982 +9984 2 123.31002917840391 -45.864560458409684 118.2188 0.1144 9983 +9985 2 124.43899411069364 -46.276196969514814 118.1737 0.1144 9984 +9986 2 125.57344170866466 -46.0941473174934 118.3241 0.1144 9985 +9987 2 126.60339863372587 -46.29264076863619 119.4749 0.1144 9986 +9988 2 51.63672404923495 -428.57936943278736 82.8719 0.1144 9356 +9989 2 52.586143496933396 -429.06327945621763 82.1747 0.1144 9988 +9990 2 53.709391990770264 -428.76996175191573 81.8558 0.1144 9989 +9991 2 54.843366881690415 -428.6064148326943 81.6273 0.1144 9990 +9992 2 55.97918077922247 -428.3202685666297 81.4663 0.1144 9991 +9993 2 57.12029524294051 -428.88751666861003 81.3669 0.1144 9992 +9994 2 58.26454993891279 -427.8393878480647 81.3235 0.1144 9993 +9995 2 59.40667851306366 -428.56816413322775 81.319 0.1144 9994 +9996 2 60.55024665875212 -428.186576605145 81.3252 0.1144 9995 +9997 2 61.675972451543444 -428.33375751984556 81.3344 0.1144 9996 +9998 2 62.74680282615745 -428.17206895687525 81.347 0.1144 9997 +9999 2 63.7789366113322 -429.034175253953 81.3644 0.1144 9998 +10000 2 64.82095827771305 -430.3011134100417 81.3896 0.1144 9999 +10001 2 65.85755102929839 -430.10144846364346 81.4237 0.1144 10000 +10002 2 66.87464623737995 -430.87641056328994 81.4696 0.1144 10001 +10003 2 67.9300512902474 -430.53051362244145 81.5371 0.1144 10002 +10004 2 68.9634852057869 -430.67603712483935 81.6469 0.1144 10003 +10005 2 69.82447777778584 -430.4251346772005 81.7936 0.1144 10004 +10006 2 70.63182108632375 -429.18764687183614 81.9563 0.1144 10005 +10007 2 71.47852089302879 -427.8406144672837 82.1313 0.1144 10006 +10008 2 72.38996605221338 -427.2533452959915 82.313 0.1144 10007 +10009 2 73.4352202521854 -426.088858199552 82.4065 0.1144 10008 +10010 2 74.57445778007273 -426.92266403731503 82.3211 0.1144 10009 +10011 2 75.70307702817406 -427.3493570227377 82.0826 0.1144 10010 +10012 2 76.8187999267594 -426.9724486216836 81.732 0.1144 10011 +10013 2 77.9275315010318 -426.96321735695915 81.3005 0.1144 10012 +10014 2 79.03122498337046 -427.10095508105326 80.8167 0.1144 10013 +10015 2 80.13434244176895 -428.1353297748966 80.3076 0.1144 10014 +10016 2 81.18604595912468 -428.0957276957211 79.7698 0.1144 10015 +10017 2 82.18232216674781 -428.6541031684007 79.1977 0.1144 10016 +10018 2 83.16341913703215 -428.7414963333163 78.5929 0.1144 10017 +10019 2 84.1417133554858 -429.3171695836545 77.9579 0.1144 10018 +10020 2 85.11838969702613 -430.61996134691924 77.2974 0.1144 10019 +10021 2 86.14755776120266 -431.0591839185082 76.5778 0.1144 10020 +10022 2 87.19957402903542 -430.49527660534216 75.728 0.1144 10021 +10023 2 88.26238895963965 -430.0309148283357 74.7874 0.1144 10022 +10024 2 89.31818244400716 -430.0673945504716 73.8508 0.1144 10023 +10025 2 90.42487649266468 -429.92326174981713 73.1643 0.1144 10024 +10026 2 91.5051042071899 -429.5556325268005 72.8073 0.1144 10025 +10027 2 92.59134237108022 -429.627807317198 72.919 0.1144 10026 +10028 2 36.98082687029495 -493.0969268473847 46.5562 0.1144 9234 +10029 2 37.223837518517904 -494.571680985513 46.5559 0.1144 10028 +10030 2 37.45009490078489 -496.0844970992374 46.5559 0.1144 10029 +10031 2 37.49080416209725 -497.5120542781217 46.5559 0.1144 10030 +10032 2 37.529947912309076 -498.93164496695334 46.5559 0.1144 10031 +10033 2 37.66550945308971 -500.38790404217957 46.5559 0.1144 10032 +10034 2 35.20095006076377 -488.92270943354134 46.4234 0.1144 9230 +10035 2 35.11066745202841 -490.2272363875936 46.2801 0.1144 10034 +10036 2 34.66752628148407 -491.0207126057293 46.205 0.1144 10035 +10037 2 33.61917080244988 -491.0254823392791 46.0124 0.1144 10036 +10038 2 32.516578718688606 -491.3049110143726 45.6481 0.1144 10037 +10039 2 31.41129920984851 -491.4968392679151 45.0934 0.1144 10038 +10040 2 30.29967077690934 -491.6018722706381 44.5004 0.1144 10039 +10041 2 29.17275157399932 -492.66300571899944 44.0297 0.1144 10040 +10042 2 28.03610187141009 -491.9325197575773 43.7032 0.1144 10041 +10043 2 26.89522836025496 -491.1424404789774 43.5159 0.1144 10042 +10044 2 25.752518251534465 -492.2644865510826 43.475 0.1144 10043 +10045 2 24.634262302510223 -491.3977736952134 43.5758 0.1144 10044 +10046 2 23.493103676744127 -492.317790115467 43.6526 0.1144 10045 +10047 2 22.429465643481887 -492.1002558429015 43.6971 0.1144 10046 +10048 2 21.29243742966719 -491.84942615867885 43.7181 0.1144 10047 +10049 2 20.158422093807577 -492.2371465712868 43.7189 0.1144 10048 +10050 2 19.0162322575426 -492.8197637777355 43.7049 0.1144 10049 +10051 2 17.888506673255787 -492.8827482235133 43.6576 0.1144 10050 +10052 2 16.768063731058994 -492.45270732636845 43.5952 0.1144 10051 +10053 2 15.62962607960859 -493.4789925643504 43.5677 0.1144 10052 +10054 2 14.485550381548599 -492.8231587718099 43.587 0.1144 10053 +10055 2 13.343944772988538 -493.9561209797261 43.6528 0.1144 10054 +10056 2 12.201146369835014 -493.0654472963372 43.7612 0.1144 10055 +10057 2 11.075870359647269 -492.7249502538673 44.0471 0.1144 10056 +10058 2 10.463014525606864 -493.6338810745597 43.5506 0.1144 10057 +10059 2 9.40015745123818 -492.79081191897296 42.7781 0.1144 10058 +10060 2 8.287434124661516 -493.71518449748976 42.35 0.1144 10059 +10061 2 7.151618528304479 -492.78545154640847 42.0692 0.1144 10060 +10062 2 6.012956331820655 -491.96995222144625 41.8107 0.1144 10061 +10063 2 4.874784966427095 -493.0245377364212 41.5722 0.1144 10062 +10064 2 3.7561922414938578 -493.1235271540555 41.3661 0.1144 10063 +10065 2 2.64748539716807 -493.96331421459183 41.1919 0.1144 10064 +10066 2 1.5256443226833674 -494.59955360325785 40.9998 0.1144 10065 +10067 2 0.38933038400791653 -494.631416766957 40.7414 0.1144 10066 +10068 2 -0.7464581800302712 -493.8219866315332 40.42 0.1144 10067 +10069 2 -1.8810392287924358 -494.9260614601049 40.0596 0.1144 10068 +10070 2 -3.012981802953581 -494.30498584089275 39.7029 0.1144 10069 +10071 2 -4.144962714781444 -495.6131743419472 39.3604 0.1144 10070 +10072 2 -5.278955427967295 -494.8644024347701 39.034 0.1144 10071 +10073 2 -6.412587043745501 -494.2506037862944 38.7212 0.1144 10072 +10074 2 -7.537812795393483 -495.1957629629239 38.3961 0.1144 10073 +10075 2 -8.61931279163288 -494.7237787143857 38.0484 0.1144 10074 +10076 2 -9.688433893317521 -494.7806664466869 37.6737 0.1144 10075 +10077 2 -10.75587146401471 -493.5453484622623 37.2786 0.1144 10076 +10078 2 -11.784563707579194 -493.8987957038227 36.832 0.1144 10077 +10079 2 -12.59476282629705 -495.51057364070954 36.4316 0.1144 10078 +10080 2 -13.60330892297756 -495.6085569249502 35.9976 0.1144 10079 +10081 2 -14.095168091969434 -497.68728008690255 35.5401 0.1144 10080 +10082 2 -14.271343608102029 -499.35666252770113 35.1411 0.1144 10081 +10083 2 -14.445920786096954 -500.62159722033056 34.7284 0.1144 10082 +10084 2 -14.157495743589536 -500.71572846213576 35.4872 0.1144 10083 +10085 2 -13.184292675418929 -500.40091862229565 35.3825 0.1144 10084 +10086 2 -12.17276704237839 -501.5345101785963 35.1736 0.1144 10085 +10087 2 -11.102476763084404 -501.1510631726305 35.0252 0.1144 10086 +10088 2 -10.025779008397453 -502.2952909894015 34.914 0.1144 10087 +10089 2 -8.948582597640318 -503.12337407115615 34.8382 0.1144 10088 +10090 2 -7.87086252875582 -502.78304734664243 34.7939 0.1144 10089 +10091 2 -6.797485478297881 -502.3017815962113 34.7768 0.1144 10090 +10092 2 -5.893344169140768 -500.9646674623744 34.7768 0.1144 10091 +10093 2 -15.37116008416848 -500.5879670364231 33.8982 0.1144 10083 +10094 2 -16.164774322031363 -500.81777271828105 32.9795 0.1144 10093 +10095 2 -16.60495907632683 -501.8190150855146 32.1118 0.1144 10094 +10096 2 -17.015470189718297 -503.6038822767538 31.1226 0.1144 10095 +10097 2 -17.468848719776766 -505.4577027170961 30.0754 0.1144 10096 +10098 2 -17.876981139684418 -506.246013043468 28.768 0.1144 10097 +10099 2 -17.11129353567666 -505.9673262844535 27.6996 0.1144 10098 +10100 2 -16.94715234801567 -506.4860189597892 26.4702 0.1144 10099 +10101 2 -17.509960344910652 -508.3610601213584 25.674 0.1144 10100 +10102 2 -18.387204141123608 -508.5303246172765 25.0377 0.1144 10101 +10103 2 -19.19070936177564 -510.03841862226784 24.3893 0.1144 10102 +10104 2 -19.301513527037248 -511.4322189826856 23.0924 0.1144 10103 +10105 2 -18.674926834507687 -511.39453566866456 21.9691 0.1144 10104 +10106 2 -18.09423005510112 -512.7255012755311 20.8167 0.1144 10105 +10107 2 -19.113000489437965 -513.5578075682057 20.0088 0.1144 10106 +10108 2 -20.14968484982374 -514.1973713708358 19.3565 0.1144 10107 +10109 2 -21.197764726073693 -513.94818631769 18.8673 0.1144 10108 +10110 2 -22.252842129802797 -514.9713886627203 18.4861 0.1144 10109 +10111 2 -23.31018770067212 -515.4438500475397 18.1618 0.1144 10110 +10112 2 -24.365931831820642 -516.8680933538452 17.8645 0.1144 10111 +10113 2 -25.093818741271644 -517.7651168494272 17.5223 0.1144 10112 +10114 2 -25.807988909368785 -518.3016091647315 17.1582 0.1144 10113 +10115 2 -26.549107239712843 -518.7964096583083 16.8158 0.1144 10114 +10116 2 -27.365766199636326 -520.223167232209 16.5731 0.1144 10115 +10117 2 -28.18389376401488 -521.5854999460684 16.4103 0.1144 10116 +10118 2 -29.00188376973088 -522.0837245108113 16.2666 0.1144 10117 +10119 2 10.731179189756329 -493.89767907519126 44.48 0.1144 10057 +10120 2 11.032274137115172 -494.6796540027016 44.8428 0.1144 10119 +10121 2 11.428438699521113 -495.99068249798785 45.108 0.1144 10120 +10122 2 11.73942222062246 -497.50882427687515 45.2911 0.1144 10121 +10123 2 11.758571487770201 -498.91279924037184 45.3989 0.1144 10122 +10124 2 11.698012476704976 -500.27620484696735 45.4398 0.1144 10123 +10125 2 11.301247847806252 -501.0348502096449 45.4437 0.1144 10124 +10126 2 10.935355461101057 -502.49308560391114 45.4482 0.1144 10125 +10127 2 11.105875795752246 -503.5913630933361 45.4546 0.1144 10126 +10128 2 11.207841722955228 -505.06867493260944 45.4619 0.1144 10127 +10129 2 11.07038269613736 -506.3739428773852 45.4675 0.1144 10128 +10130 2 10.855670381138939 -508.0860838047958 45.4863 0.1144 10129 +10131 2 10.904132191782827 -509.38986358422517 45.5319 0.1144 10130 +10132 2 11.171458730817939 -510.5867652897726 45.5529 0.1144 10131 +10133 2 11.729234034591816 -512.0282601187499 45.5325 0.1144 10132 +10134 2 12.35537854473532 -513.5558168452435 45.4244 0.1144 10133 +10135 2 12.888075110864712 -515.1888859387251 45.2217 0.1144 10134 +10136 2 13.231625728179948 -516.8018969028494 44.9215 0.1144 10135 +10137 2 13.376356056934345 -518.2521379556879 44.6538 0.1144 10136 +10138 2 13.489814406647184 -519.4568344625865 44.4438 0.1144 10137 +10139 2 13.600238640804434 -520.6070296778715 44.2873 0.1144 10138 +10140 2 13.706253172780764 -521.7664101385587 44.179 0.1144 10139 +10141 2 13.800422797052196 -522.9511511264201 44.0535 0.1144 10140 +10142 2 13.971527673159954 -523.9812416390347 43.9373 0.1144 10141 +10143 2 14.299755291307621 -525.196794138574 43.8402 0.1144 10142 +10144 2 14.298675610083103 -526.5986722389201 43.7595 0.1144 10143 +10145 2 14.06395788545762 -527.8251038919009 43.6923 0.1144 10144 +10146 2 14.026033548567378 -529.2717887682762 43.6332 0.1144 10145 +10147 2 14.261333086708603 -530.7164827030227 43.5789 0.1144 10146 +10148 2 14.331622183862414 -532.1712054862952 43.5193 0.1144 10147 +10149 2 14.496581460988965 -533.6827505519434 43.4031 0.1144 10148 +10150 2 14.670582893989803 -535.2042321270038 43.255 0.1144 10149 +10151 2 14.856652773440576 -536.7367985199872 43.0626 0.1144 10150 +10152 2 15.299817165063413 -538.1575095201024 42.9192 0.1144 10151 +10153 2 15.853937776530604 -538.1416720895436 42.8257 0.1144 10152 +10154 2 16.499414860411733 -539.6060124069285 42.7736 0.1144 10153 +10155 2 16.85312375286128 -540.9571751873931 42.8123 0.1144 10154 +10156 2 16.858228008284524 -542.347492022813 42.8691 0.1144 10155 +10157 2 16.55208844693137 -543.6806804432185 42.9013 0.1144 10156 +10158 2 16.07716602846407 -544.6784038320004 42.8974 0.1144 10157 +10159 2 15.576312251317683 -546.150113177111 42.859 0.1144 10158 +10160 2 15.123706867151029 -547.542567109545 42.4903 0.1144 10159 +10161 2 15.416026950980743 -548.5233276774707 42.2626 0.1144 10160 +10162 2 15.698456052021418 -549.542443468367 42.1025 0.1144 10161 +10163 2 15.696533054511614 -550.9319442281277 41.9706 0.1144 10162 +10164 2 15.50199732207267 -552.5303181647189 41.8622 0.1144 10163 +10165 2 15.54578213819052 -553.8711965407339 41.767 0.1144 10164 +10166 2 15.831107796124273 -555.0026691247981 41.6139 0.1144 10165 +10167 2 15.982559747799849 -556.5325365586565 41.4232 0.1144 10166 +10168 2 16.24321702972646 -558.1189372992649 41.2188 0.1144 10167 +10169 2 16.53107814714566 -559.5739270052813 40.9872 0.1144 10168 +10170 2 16.777919372026375 -560.9014533325912 40.6871 0.1144 10169 +10171 2 16.794519151542506 -562.291365436666 40.3337 0.1144 10170 +10172 2 16.771289424067085 -563.6868572221695 39.872 0.1144 10171 +10173 2 16.755054122487667 -565.0712790207897 39.3089 0.1144 10172 +10174 2 16.83197895717633 -566.4311354458495 38.738 0.1144 10173 +10175 2 16.952417704639064 -567.7774378952221 38.1934 0.1144 10174 +10176 2 17.080749661678972 -569.1175512001126 37.6804 0.1144 10175 +10177 2 17.208772887123956 -570.5964010645193 37.1977 0.1144 10176 +10178 2 17.335327508113934 -572.0903983744261 36.745 0.1144 10177 +10179 2 17.46468488093447 -573.5863069297658 36.311 0.1144 10178 +10180 2 17.592529108467158 -575.0811551877171 35.884 0.1144 10179 +10181 2 17.720373335999895 -576.5786479652521 35.4595 0.1144 10180 +10182 2 17.849730708820427 -578.071000846603 35.0384 0.1144 10181 +10183 2 18.06622614944438 -579.2535325489354 34.6192 0.1144 10182 +10184 2 18.34621049447906 -580.198253514762 34.2034 0.1144 10183 +10185 2 18.635760653515213 -581.1056777315266 33.7946 0.1144 10184 +10186 2 18.89636246804601 -582.3585212762588 33.4057 0.1144 10185 +10187 2 18.994053937380343 -583.7401035140441 33.0683 0.1144 10186 +10188 2 19.056628822869303 -585.2019622359988 32.7648 0.1144 10187 +10189 2 19.12139760921167 -586.6702508291974 32.4831 0.1144 10188 +10190 2 19.1861992225911 -588.1420960497817 32.2162 0.1144 10189 +10191 2 19.271014857810403 -589.6268090708231 31.9558 0.1144 10190 +10192 2 19.430977482252977 -591.1594687135198 31.7008 0.1144 10191 +10193 2 19.60729944820677 -592.6501478436949 31.4462 0.1144 10192 +10194 2 19.66885201949818 -594.0006954563024 31.1744 0.1144 10193 +10195 2 19.605754447364472 -595.3885897759958 30.8736 0.1144 10194 +10196 2 19.726912980596055 -596.6744643602344 30.5539 0.1144 10195 +10197 2 20.629154607453685 -597.5750391333943 30.2817 0.1144 10196 +10198 2 20.318520151069833 -598.7183688361617 30.0275 0.1144 10197 +10199 2 20.007524597278284 -600.0474632481885 29.7917 0.1144 10198 +10200 2 19.695985846583653 -601.5730279661868 29.5772 0.1144 10199 +10201 2 19.387798555252335 -603.0878751856397 29.1676 0.1144 10200 +10202 2 14.757906140044067 -538.393372882052 41.9608 0.1144 10152 +10203 2 13.73857640304826 -538.6968958396708 40.9604 0.1144 10202 +10204 2 12.619459706235965 -539.3042650037162 40.4267 0.1144 10203 +10205 2 11.502806895757358 -538.6918950839621 39.8801 0.1144 10204 +10206 2 10.467829399254452 -539.4315414261687 39.3596 0.1144 10205 +10207 2 9.505467540360893 -540.4594579868514 38.8696 0.1144 10206 +10208 2 8.49354266790964 -541.367185694188 38.3583 0.1144 10207 +10209 2 7.461820416661038 -541.9308962772324 37.8636 0.1144 10208 +10210 2 6.402195059551849 -541.6720397384597 37.4458 0.1144 10209 +10211 2 5.309770851740868 -542.2202228415401 37.1431 0.1144 10210 +10212 2 4.375162050430493 -541.5300198474342 36.9135 0.1144 10211 +10213 2 4.306153047992714 -540.4333285874544 36.3927 0.1144 10212 +10214 2 5.312625779427506 -540.2274692769822 35.9148 0.1144 10213 +10215 2 6.2046030144522675 -540.5507063887668 35.5502 0.1144 10214 +10216 2 6.223058521861576 -541.8626629425316 35.247 0.1144 10215 +10217 2 5.2924525773971 -542.9985901620512 35.0126 0.1144 10216 +10218 2 4.17605754743699 -543.2992105210011 34.7245 0.1144 10217 +10219 2 3.8517220470071862 -544.6049522923709 34.2157 0.1144 10218 +10220 2 11.95102662268118 -500.9916549913256 46.0482 0.1144 10124 +10221 2 12.177882562572712 -502.0298535881324 47.964 0.1144 10220 +10222 2 11.856809427862347 -502.6136441456364 49.8501 0.1144 10221 +10223 2 11.680054383465517 -502.9857617269454 51.8358 0.1144 10222 +10224 2 12.541510464440385 -503.37785452267406 53.3926 0.1144 10223 +10225 2 13.122911918170214 -504.36942800036775 55.5307 0.1144 10224 +10226 2 17.405248136239692 -436.70656694404863 44.1078 0.1144 9183 +10227 2 17.11751675250315 -435.3777746085674 44.2344 0.1144 10226 +10228 2 16.710168499182274 -434.22150458356805 44.326 0.1144 10227 +10229 2 16.39254854800942 -432.89280600669883 44.4147 0.1144 10228 +10230 2 16.205850278805784 -431.6647346683395 44.5046 0.1144 10229 +10231 2 16.05006289123603 -430.5140715212531 44.599 0.1144 10230 +10232 2 15.864301743380175 -429.3900852992057 44.7126 0.1144 10231 +10233 2 15.65965672109063 -428.27476825954545 44.9294 0.1144 10232 +10234 2 15.776082513454323 -426.8823072064839 45.1802 0.1144 10233 +10235 2 15.955694681799951 -425.4410834943285 45.4255 0.1144 10234 +10236 2 16.09114190725978 -424.0375106393668 45.6551 0.1144 10235 +10237 2 16.368409799440794 -422.68517818749115 45.8354 0.1144 10236 +10238 2 16.455164359947137 -421.4445714791566 45.9592 0.1144 10237 +10239 2 16.244949762616567 -420.06728571585876 46.0855 0.1144 10238 +10240 2 15.753051959327042 -419.22807912313954 46.1712 0.1144 10239 +10241 2 15.28250473429937 -418.13190067227106 46.1653 0.1144 10240 +10242 2 15.277215277797644 -416.82577229086 46.1314 0.1144 10241 +10243 2 15.279102346687328 -415.5092302503449 46.1 0.1144 10242 +10244 2 14.93634819047422 -414.4572718306814 46.0743 0.1144 10243 +10245 2 14.711689146344913 -413.3121185652389 46.0555 0.1144 10244 +10246 2 14.361904635615602 -411.9900531690027 46.0566 0.1144 10245 +10247 2 13.723512681109845 -411.07340484614105 46.0799 0.1144 10246 +10248 2 13.280794579744505 -409.89467787247025 46.1132 0.1144 10247 +10249 2 13.438077703926972 -408.6982478856567 46.1518 0.1144 10248 +10250 2 13.559717484553616 -407.3375178943386 46.1927 0.1144 10249 +10251 2 13.20019435936971 -406.743861741945 46.3187 0.1144 10250 +10252 2 12.43271560395025 -405.23922894137445 46.4892 0.1144 10251 +10253 2 11.806656286656544 -404.1854351935045 46.5508 0.1144 10252 +10254 2 11.44483925809747 -403.2456104717255 46.5354 0.1144 10253 +10255 2 11.576784177270156 -401.8578394567213 46.4817 0.1144 10254 +10256 2 12.019703904364178 -400.2712510536699 46.3985 0.1144 10255 +10257 2 11.835773150907631 -399.1618855320186 46.2308 0.1144 10256 +10258 2 11.52225417032081 -398.1881214164991 46.0793 0.1144 10257 +10259 2 11.582273086066039 -396.83702962890465 45.911 0.1144 10258 +10260 2 11.957657020485996 -395.2426923009993 45.7856 0.1144 10259 +10261 2 12.440367916904961 -394.21764572295285 45.712 0.1144 10260 +10262 2 12.605268346106676 -393.0454255018205 45.6868 0.1144 10261 +10263 2 12.480496571796245 -391.6641230406459 45.7598 0.1144 10262 +10264 2 12.272996431863419 -390.2385922873104 45.8704 0.1144 10263 +10265 2 12.281158833416832 -388.94403758466353 45.9847 0.1144 10264 +10266 2 12.173578790339931 -387.57176057942036 46.0916 0.1144 10265 +10267 2 12.115049408041187 -386.2103661734471 46.1919 0.1144 10266 +10268 2 12.153963232091876 -384.940687989593 46.2924 0.1144 10267 +10269 2 12.252477507453172 -383.71617565252984 46.478 0.1144 10268 +10270 2 11.934411266022899 -382.4109299238853 46.6547 0.1144 10269 +10271 2 11.87298532683107 -381.1755673396927 46.8308 0.1144 10270 +10272 2 11.789156166178508 -380.6682368311172 46.6833 0.1144 10271 +10273 2 11.660732813122607 -379.5333549515205 46.5021 0.1144 10272 +10274 2 11.636460261191338 -378.25457183629135 46.4937 0.1144 10273 +10275 2 11.695996958059041 -376.8660658834116 46.4352 0.1144 10274 +10276 2 11.768582976324424 -375.45595408128065 46.3187 0.1144 10275 +10277 2 11.793234453071754 -374.10756611626 46.1538 0.1144 10276 +10278 2 11.724907893046364 -372.8962821512155 45.9463 0.1144 10277 +10279 2 11.523374354182359 -371.8974761814935 45.7257 0.1144 10278 +10280 2 11.359440492836391 -370.84557949551146 45.5213 0.1144 10279 +10281 2 11.559872354177045 -369.30525530735383 45.3443 0.1144 10280 +10282 2 12.001854959923264 -367.6679534629241 45.1623 0.1144 10281 +10283 2 11.798265487316286 -366.577138315191 45.0097 0.1144 10282 +10284 2 11.412265403210782 -365.9554788758524 44.9019 0.1144 10283 +10285 2 11.314444200193854 -364.80866059654454 44.816 0.1144 10284 +10286 2 11.047911713214397 -363.8231470556481 44.7432 0.1144 10285 +10287 2 10.860640521653757 -362.44562844030037 44.6734 0.1144 10286 +10288 2 10.77449073905894 -361.11687693002125 44.5945 0.1144 10287 +10289 2 10.772458936857966 -359.84597994129217 44.4688 0.1144 10288 +10290 2 10.884513364707288 -358.6581606158059 44.2915 0.1144 10289 +10291 2 11.019299373377272 -357.49009140762377 44.0804 0.1144 10290 +10292 2 11.409337170498851 -355.6567125834439 43.8152 0.1144 10291 +10293 2 11.875972454944318 -353.9206369998728 43.5588 0.1144 10292 +10294 2 12.073890064736993 -352.8001109267634 43.318 0.1144 10293 +10295 2 12.164169571889254 -351.58009754982754 43.1348 0.1144 10294 +10296 2 12.228468456132823 -350.3392893292201 43.034 0.1144 10295 +10297 2 12.408835646330807 -349.17831726257697 43.0576 0.1144 10296 +10298 2 12.121853773817058 -347.7187671038734 43.1483 0.1144 10297 +10299 2 11.63125418928297 -346.27229122725146 43.2589 0.1144 10298 +10300 2 11.322806127666986 -345.54950640966206 43.3773 0.1144 10299 +10301 2 11.363191657755792 -344.1189828242781 43.4932 0.1144 10300 +10302 2 10.972420774061682 -343.58747710473426 43.7567 0.1144 10301 +10303 2 10.417051196090604 -342.30531578364094 43.9653 0.1144 10302 +10304 2 10.290319986234891 -340.91903084078365 44.1333 0.1144 10303 +10305 2 9.711689060845892 -339.36023238472507 43.7307 0.1144 10304 +10306 2 8.921405150855634 -339.49962760272234 43.5042 0.1144 10305 +10307 2 8.447611890626817 -338.2219120864866 43.2642 0.1144 10306 +10308 2 8.021691596050296 -336.69867114756755 42.9856 0.1144 10307 +10309 2 7.438666381699569 -335.1624277560054 42.7994 0.1144 10308 +10310 2 6.743348379104383 -333.74860775688865 42.6868 0.1144 10309 +10311 2 6.3193875200731355 -332.2412169235514 42.6605 0.1144 10310 +10312 2 5.8450918096544555 -331.68898553974685 42.665 0.1144 10311 +10313 2 5.317921064966086 -330.9823175521057 42.6325 0.1144 10312 +10314 2 4.985859768577569 -329.4882549432054 42.5306 0.1144 10313 +10315 2 4.838274322179828 -328.08119859481917 42.3676 0.1144 10314 +10316 2 4.622445608975383 -326.6402333827092 42.1394 0.1144 10315 +10317 2 4.523602091760857 -325.2655900117738 41.8452 0.1144 10316 +10318 2 4.1046793246634365 -323.8255236323506 41.5909 0.1144 10317 +10319 2 4.179674170314719 -322.49989485371316 41.3812 0.1144 10318 +10320 2 4.406862884353835 -321.37929959393625 41.1236 0.1144 10319 +10321 2 4.570969741252178 -321.24948129072527 40.8355 0.1144 10320 +10322 2 4.642202180040634 -320.436116665272 39.2364 0.1144 10321 +10323 2 3.9336339399762466 -319.4717627789406 37.9375 0.1144 10322 +10324 2 3.0184480964242795 -320.2792301626071 36.8166 0.1144 10323 +10325 2 1.9406322218787295 -319.21935063258206 36.1388 0.1144 10324 +10326 2 0.8990876721938577 -318.0842125870838 35.4021 0.1144 10325 +10327 2 0.2534086659530459 -318.0982659774939 34.7399 0.1144 10326 +10328 2 -0.5461176057612249 -317.1200554588938 34.2437 0.1144 10327 +10329 2 -1.4154512703096032 -315.67705644097197 33.8307 0.1144 10328 +10330 2 -2.2010441576276634 -314.20115545370163 33.3463 0.1144 10329 +10331 2 -3.0459219636548625 -314.2201053003543 32.9014 0.1144 10330 +10332 2 -3.771259983878963 -313.18926320056545 32.4559 0.1144 10331 +10333 2 -4.142553839470153 -311.75779138116116 31.845 0.1144 10332 +10334 2 -4.457767372303621 -310.3757760565172 31.3009 0.1144 10333 +10335 2 -4.50728763854957 -310.0841925812646 31.1842 0.1144 10334 +10336 2 -4.652147008450029 -308.7824342688596 30.6645 0.1144 10335 +10337 2 -4.796195196565648 -307.7731950956821 30.1902 0.1144 10336 +10338 2 -5.365988990023226 -307.55537628861117 29.734 0.1144 10337 +10339 2 -5.793095876026882 -306.24349906400494 29.2555 0.1144 10338 +10340 2 -5.9673146446067165 -304.8494411319828 28.7938 0.1144 10339 +10341 2 -6.032429807674092 -303.54560636463845 28.2993 0.1144 10340 +10342 2 -5.93937968319176 -302.34194824918495 27.8094 0.1144 10341 +10343 2 -6.26349401911726 -300.9200841511233 27.3232 0.1144 10342 +10344 2 -6.801078712185472 -299.4114469833743 26.7952 0.1144 10343 +10345 2 -7.132061534444034 -297.96807541191055 26.2197 0.1144 10344 +10346 2 -7.359831369462256 -296.55441424915233 25.6617 0.1144 10345 +10347 2 -7.453762734305968 -295.2268306943779 25.0689 0.1144 10346 +10348 2 -8.019958309141018 -294.2255754255862 24.3251 0.1144 10347 +10349 2 -8.728254154678524 -294.086186223464 23.5431 0.1144 10348 +10350 2 -8.881077206323255 -292.9997987204625 22.7979 0.1144 10349 +10351 2 -8.108066018412941 -291.21701880719024 22.0622 0.1144 10350 +10352 2 -7.276289775801189 -290.70359290155943 21.6129 0.1144 10351 +10353 2 -7.366632931286318 -289.1503563613994 21.3415 0.1144 10352 +10354 2 -7.710183548601606 -287.67839182869506 21.2809 0.1144 10353 +10355 2 -8.35623665642288 -286.51564282720926 21.3593 0.1144 10354 +10356 2 -9.251445519717876 -286.67234520187947 21.5862 0.1144 10355 +10357 2 -10.215760096432575 -285.32450889155444 21.971 0.1144 10356 +10358 2 -11.17909069661637 -285.45093630377187 22.4142 0.1144 10357 +10359 2 -11.866336509407247 -284.65118118178697 22.9072 0.1144 10358 +10360 2 -12.052171231013332 -283.2697358936323 23.4393 0.1144 10359 +10361 2 -12.496486977979728 -281.78608997337324 23.8935 0.1144 10360 +10362 2 -13.078977607640056 -280.2715836249881 24.2342 0.1144 10361 +10363 2 -13.674696556610428 -278.7489469205996 24.4612 0.1144 10362 +10364 2 -14.273185430374326 -278.0203805242478 24.6028 0.1144 10363 +10365 2 -14.871621938325475 -277.4036512722031 24.6786 0.1144 10364 +10366 2 -15.493092555526019 -276.11021733617116 24.7123 0.1144 10365 +10367 2 -16.238835420451537 -275.1375792069023 24.7322 0.1144 10366 +10368 2 -17.110702135438814 -274.51319530205143 24.7538 0.1144 10367 +10369 2 -17.989839180880068 -273.2917035527964 24.784 0.1144 10368 +10370 2 -18.932826512228246 -272.2965185247611 24.8242 0.1144 10369 +10371 2 -19.921332756702128 -272.055231938449 24.8795 0.1144 10370 +10372 2 -20.868997082576428 -270.8626256793664 24.9651 0.1144 10371 +10373 2 -21.797296007676024 -270.1009981568519 25.0899 0.1144 10372 +10374 2 -22.755156946351264 -268.9726315983277 25.2382 0.1144 10373 +10375 2 -23.740672828869563 -268.65870123694265 25.3893 0.1144 10374 +10376 2 -24.71198803464648 -267.8754044675678 25.5533 0.1144 10375 +10377 2 -25.671232384926967 -267.8578544938882 25.7451 0.1144 10376 +10378 2 -26.495002690213056 -266.4065988675917 26.0031 0.1144 10377 +10379 2 -27.152994510801634 -264.8759208192594 26.3141 0.1144 10378 +10380 2 -27.978630446570563 -263.9535121674826 26.5764 0.1144 10379 +10381 2 -28.904917570312136 -263.95343063290477 26.7744 0.1144 10380 +10382 2 -29.82422119472068 -262.53685061062777 26.9183 0.1144 10381 +10383 2 -30.73666012691585 -262.2431075271033 27.0178 0.1144 10382 +10384 2 -31.606352479825432 -261.59528388280114 27.099 0.1144 10383 +10385 2 -32.41280270526855 -260.10883659908234 27.1943 0.1144 10384 +10386 2 -33.18237062991592 -258.60451029966487 27.2983 0.1144 10385 +10387 2 -33.78406169058478 -257.6279802323179 27.3899 0.1144 10386 +10388 2 -33.953462804392814 -256.45750094183046 27.4633 0.1144 10387 +10389 2 -33.765794865750365 -254.92771297743826 27.5197 0.1144 10388 +10390 2 -33.67026234013194 -253.49022976301302 27.5647 0.1144 10389 +10391 2 -33.791294241263984 -252.2385534258363 27.6072 0.1144 10390 +10392 2 -33.922702445645854 -250.9905664398521 27.6592 0.1144 10391 +10393 2 -34.20455552274642 -249.8964449143458 27.7274 0.1144 10392 +10394 2 -34.54623499894922 -249.05939228599107 27.8105 0.1144 10393 +10395 2 -34.609978369511 -247.75049824898718 27.9455 0.1144 10394 +10396 2 -34.05114230205601 -245.97633976640952 28.2453 0.1144 10395 +10397 2 -33.58272657997743 -244.7548948881065 28.5116 0.1144 10396 +10398 2 -33.638665035394936 -243.4237408069892 28.6868 0.1144 10397 +10399 2 -33.5692428663678 -242.17124564577153 28.784 0.1144 10398 +10400 2 -33.376848668969615 -241.02359869280244 28.8114 0.1144 10399 +10401 2 -32.96172593103745 -240.10659553532417 28.67 0.1144 10400 +10402 2 -32.476606207232535 -239.2709195329548 28.4612 0.1144 10401 +10403 2 -31.986757123088836 -238.28305144679427 28.2943 0.1144 10402 +10404 2 -31.450399656344004 -236.6845090912454 28.1649 0.1144 10403 +10405 2 -30.857671650048843 -235.19039153484994 28.0832 0.1144 10404 +10406 2 -30.252061606472438 -234.51387021142858 28.037 0.1144 10405 +10407 2 -29.547262557156728 -233.75664248842395 28.0193 0.1144 10406 +10408 2 -28.81113536886707 -232.17321217693913 28.009 0.1144 10407 +10409 2 -28.1154667698585 -231.0253620657419 27.9942 0.1144 10408 +10410 2 -27.66483593268272 -230.1416368136714 27.9742 0.1144 10409 +10411 2 -27.165709534820067 -229.34558477153553 27.9446 0.1144 10410 +10412 2 -26.147917974832453 -228.88113546546535 27.9026 0.1144 10411 +10413 2 -25.11531476216848 -227.68339765857337 27.8464 0.1144 10412 +10414 2 -24.237113329206792 -226.94890497170127 27.7755 0.1144 10413 +10415 2 -23.270676525757736 -226.61348207833333 27.6467 0.1144 10414 +10416 2 -23.03422892381269 -226.1593934843605 27.3085 0.1144 10415 +10417 2 -22.459155660289753 -224.9949120595196 27.1017 0.1144 10416 +10418 2 -21.46662873156164 -224.61706740019338 26.9461 0.1144 10417 +10419 2 -20.413652116160108 -223.94248567959556 26.814 0.1144 10418 +10420 2 -19.454113240409384 -223.56137759573994 26.6704 0.1144 10419 +10421 2 -19.03429878726844 -222.01500975708086 26.5592 0.1144 10420 +10422 2 -19.313960372562065 -220.94974835194063 26.4997 0.1144 10421 +10423 2 -19.732886241242625 -220.0325234066275 26.4392 0.1144 10422 +10424 2 -19.878553691344734 -218.78285863817248 26.2788 0.1144 10423 +10425 2 -19.786486448115653 -218.32440706101227 25.0433 0.1144 10424 +10426 2 -19.553088765708452 -217.0388964544785 23.7541 0.1144 10425 +10427 2 -19.18313925671349 -215.54213681485209 23.2667 0.1144 10426 +10428 2 -18.669984976855616 -214.75651145940947 22.9296 0.1144 10427 +10429 2 -18.209195172009004 -213.51071727588533 22.5961 0.1144 10428 +10430 2 -17.905408970645908 -212.1109316605082 22.276 0.1144 10429 +10431 2 -17.72558187576786 -210.932679572032 21.9883 0.1144 10430 +10432 2 -17.55003785097115 -209.79033254855366 21.7505 0.1144 10431 +10433 2 -17.355863215939948 -208.66262160860168 21.5337 0.1144 10432 +10434 2 -17.130272840038472 -207.55808555353437 21.2631 0.1144 10433 +10435 2 -17.190890699028614 -206.25800975019644 20.9636 0.1144 10434 +10436 2 -17.526867764924646 -204.81464005836983 20.7003 0.1144 10435 +10437 2 -17.675428670336785 -203.45578273849773 20.4234 0.1144 10436 +10438 2 -17.388437174179373 -202.43754278761037 20.152 0.1144 10437 +10439 2 -16.9040724722269 -200.9886187881383 19.8835 0.1144 10438 +10440 2 -16.39876213771653 -198.99460448644186 19.5913 0.1144 10439 +10441 2 -15.959708915900393 -198.0502240244315 19.2946 0.1144 10440 +10442 2 -15.589809363671705 -197.09486127420774 19.0188 0.1144 10441 +10443 2 -15.242729686696421 -196.12073438813985 18.7672 0.1144 10442 +10444 2 -14.91011867134435 -195.12757402608307 18.5339 0.1144 10443 +10445 2 -14.653261827030931 -194.05886467402348 18.3543 0.1144 10444 +10446 2 -14.251018024796892 -193.07681765395006 18.1857 0.1144 10445 +10447 2 -13.913823819981204 -191.22468185223386 17.9059 0.1144 10446 +10448 2 -13.798279681569497 -189.72644326894448 17.4355 0.1144 10447 +10449 2 -13.829444336817758 -188.41378727857045 16.84 0.1144 10448 +10450 2 -13.783934829408793 -186.94979398013112 16.215 0.1144 10449 +10451 2 -13.991472614471732 -186.0248437655092 15.5348 0.1144 10450 +10452 2 -14.087190620114626 -184.83693451600635 15.037 0.1144 10451 +10453 2 -13.91912324009158 -183.10335790481707 14.6901 0.1144 10452 +10454 2 -13.28910049375365 -182.11260052501552 14.4674 0.1144 10453 +10455 2 -12.395329284680102 -181.92692596468802 14.023 0.1144 10454 +10456 2 -19.387584291080245 -218.08905981934524 26.4132 0.1144 10424 +10457 2 -18.452445806454904 -217.74101038973578 26.8428 0.1144 10456 +10458 2 -17.40306631439823 -217.6768172136457 27.5041 0.1144 10457 +10459 2 -16.469453801254943 -218.6731352197292 28.2783 0.1144 10458 +10460 2 -15.581971461260949 -218.3786208156148 29.0746 0.1144 10459 +10461 2 -14.583063988491304 -219.5010926291841 29.832 0.1144 10460 +10462 2 -13.497210840766314 -220.22721070604518 30.6071 0.1144 10461 +10463 2 -12.668414560083193 -219.28947379942795 32.163 0.1144 10462 +10464 2 -11.806120868552 -220.15578448179917 33.3228 0.1144 10463 +10465 2 -10.84603490081119 -221.10511247966156 34.3759 0.1144 10464 +10466 2 -9.80558324416532 -220.6280297602763 35.4995 0.1144 10465 +10467 2 -8.951666875577388 -220.03239127918948 36.5826 0.1144 10466 +10468 2 -8.01656633785575 -220.3923174852365 37.9439 0.1144 10467 +10469 2 -7.167132765446709 -220.6538307934481 39.5889 0.1144 10468 +10470 2 -6.238898908558937 -220.4312288809468 41.0404 0.1144 10469 +10471 2 -5.346623945513429 -221.09025771810136 42.4007 0.1144 10470 +10472 2 -4.549779286474802 -221.19437162844906 43.8234 0.1144 10471 +10473 2 -3.9370479949461696 -221.98696057815346 45.5305 0.1144 10472 +10474 2 -3.330896973556534 -223.1777273557223 47.182 0.1144 10473 +10475 2 -2.739280693997074 -224.47761291862676 48.5601 0.1144 10474 +10476 2 -1.9487137766687823 -225.20587945965622 49.8929 0.1144 10475 +10477 2 -1.2505033250518238 -225.48192569351355 51.1087 0.1144 10476 +10478 2 -0.9451956736687634 -225.11700343900057 53.8406 0.1144 10477 +10479 2 -0.06463367126255548 -225.08119578082486 54.9548 0.1144 10478 +10480 2 0.7306418833620398 -224.7459262988309 55.559 0.1144 10479 +10481 2 1.5643046803054403 -223.5262338659202 56.3486 0.1144 10480 +10482 2 2.49756892223526 -222.59994926551278 57.134 0.1144 10481 +10483 2 3.2240443934519334 -221.89386216920352 58.2938 0.1144 10482 +10484 2 3.196538526403586 -220.78456658224695 59.8052 0.1144 10483 +10485 2 3.576311629918564 -219.72275851702727 61.3348 0.1144 10484 +10486 2 4.36127184163378 -219.6214615315835 62.7992 0.1144 10485 +10487 2 5.190285368906515 -218.47030263755977 64.0298 0.1144 10486 +10488 2 6.045303136071865 -218.2658617342608 64.9986 0.1144 10487 +10489 2 7.000293756668853 -217.74974547691542 66.0579 0.1144 10488 +10490 2 8.042376596174421 -217.57916101737942 67.0566 0.1144 10489 +10491 2 9.112743461812485 -216.79817473306926 67.8622 0.1144 10490 +10492 2 9.586785611401055 -216.0245645960878 68.5782 0.1144 10491 +10493 2 9.953574372740803 -215.10194634924972 69.1986 0.1144 10492 +10494 2 10.850380389906562 -214.85260640467396 69.7844 0.1144 10493 +10495 2 11.89427100113761 -213.3285673985675 70.3018 0.1144 10494 +10496 2 12.938564149026078 -213.56062992429202 70.7773 0.1144 10495 +10497 2 13.979687244510146 -212.9016316739105 71.2121 0.1144 10496 +10498 2 14.878978764395072 -211.7405719680889 71.6531 0.1144 10497 +10499 2 15.554239417119177 -211.19484725969883 72.119 0.1144 10498 +10500 2 16.230128459596045 -210.652226505849 72.602 0.1144 10499 +10501 2 16.902938845684517 -209.4785171469361 73.1041 0.1144 10500 +10502 2 17.576240062863263 -207.8206416260205 73.6098 0.1144 10501 +10503 2 18.239470606804105 -207.0996403481278 74.0984 0.1144 10502 +10504 2 18.88603548668523 -205.84416429377438 74.5494 0.1144 10503 +10505 2 19.5345598021117 -204.0427082111551 74.9672 0.1144 10504 +10506 2 20.16727649044641 -203.4598530131818 75.7235 0.1144 10505 +10507 2 -1.2131897564549803 -225.70795968467218 51.7006 0.1144 10477 +10508 2 -1.0658716024024102 -226.83362381901298 51.7549 0.1144 10507 +10509 2 -1.4780697568124737 -228.16407844705157 51.3517 0.1144 10508 +10510 2 -2.532495846341334 -229.0455690521096 50.6766 0.1144 10509 +10511 2 -3.605091848916331 -228.59083301927876 49.9402 0.1144 10510 +10512 2 -4.712025465063618 -228.73670180045835 49.3209 0.1144 10511 +10513 2 -5.838181128604774 -229.15086207509904 48.853 0.1144 10512 +10514 2 -6.972133095077538 -229.67802816452638 48.5092 0.1144 10513 +10515 2 -8.110456426064559 -229.61156812125023 48.2594 0.1144 10514 +10516 2 -9.250975042978183 -228.81989356077347 48.0673 0.1144 10515 +10517 2 -10.392131259697692 -229.4082621795223 47.8948 0.1144 10516 +10518 2 -11.53208616430733 -229.0388898956448 47.7114 0.1144 10517 +10519 2 -12.671773776571868 -229.2345075658555 47.5037 0.1144 10518 +10520 2 -13.810737808947863 -229.306739155307 47.2609 0.1144 10519 +10521 2 -14.924653539354978 -228.73933959796054 46.9574 0.1144 10520 +10522 2 -16.03139274437069 -229.5930505070138 46.5545 0.1144 10521 +10523 2 -17.13875762831914 -229.15546787950228 46.039 0.1144 10522 +10524 2 -18.233591054278918 -229.08544823600954 45.4661 0.1144 10523 +10525 2 -19.34910171946693 -228.82197949149975 44.9226 0.1144 10524 +10526 2 -20.474044765550445 -228.3342840136118 44.4416 0.1144 10525 +10527 2 -21.604772313207462 -228.4340161021688 44.0238 0.1144 10526 +10528 2 -22.73857851725289 -228.4892486772876 43.6738 0.1144 10527 +10529 2 -23.876306001435466 -227.75682241417934 43.4003 0.1144 10528 +10530 2 -25.014846668001454 -227.96216288017354 43.2337 0.1144 10529 +10531 2 -26.103632603013338 -228.84177634522428 43.1609 0.1144 10530 +10532 2 -26.912642028720896 -229.76925215543378 43.1334 0.1144 10531 +10533 2 -27.442009479214846 -230.5426931854419 43.164 0.1144 10532 +10534 2 -27.90819537181983 -231.40295517693943 43.2477 0.1144 10533 +10535 2 -28.29043066284362 -232.36166964311127 43.3538 0.1144 10534 +10536 2 -28.554604692794072 -233.7570302678999 43.475 0.1144 10535 +10537 2 -28.820291868032328 -235.24952955493512 43.6327 0.1144 10536 +10538 2 -29.086011870307686 -236.80450260179646 43.8396 0.1144 10537 +10539 2 -29.508628382742643 -238.37908331450433 44.1022 0.1144 10538 +10540 2 -30.38355233853919 -238.53649101634159 44.4114 0.1144 10539 +10541 2 -31.469587887533237 -239.2479370502415 44.7521 0.1144 10540 +10542 2 -32.47202121226971 -239.92581039355596 45.1976 0.1144 10541 +10543 2 -33.003148584995756 -240.63653150533156 45.7383 0.1144 10542 +10544 2 -33.42839195293213 -241.5214658257847 46.3056 0.1144 10543 +10545 2 -34.22188706992367 -242.30095974279078 46.8076 0.1144 10544 +10546 2 -35.11795927317452 -243.95392419053147 47.2136 0.1144 10545 +10547 2 -36.02161595440751 -244.34092677969122 47.5336 0.1144 10546 +10548 2 -36.84905917017163 -246.1661564056812 47.7632 0.1144 10547 +10549 2 -37.257005382712435 -247.28368483837744 47.8864 0.1144 10548 +10550 2 -37.554587416115425 -248.3327941874856 47.9175 0.1144 10549 +10551 2 -37.847407262142625 -249.38664977811743 47.882 0.1144 10550 +10552 2 -38.493880746007754 -250.00053773303057 47.7904 0.1144 10551 +10553 2 -39.44820804254196 -250.94425019541393 47.6213 0.1144 10552 +10554 2 -40.42723246391209 -251.95415831843485 47.3362 0.1144 10553 +10555 2 -41.40505557317242 -252.72696129677928 46.9675 0.1144 10554 +10556 2 -42.11444401511792 -253.5849656784348 46.5727 0.1144 10555 +10557 2 -42.687039979686425 -254.58184525649665 46.1905 0.1144 10556 +10558 2 -43.38622801471136 -255.61526359006837 45.8315 0.1144 10557 +10559 2 -44.3691775103383 -256.1171744355577 45.5118 0.1144 10558 +10560 2 -45.42955719676326 -256.4808234042598 45.2494 0.1144 10559 +10561 2 -46.507361363219914 -257.7523033655572 45.0766 0.1144 10560 +10562 2 -47.587359430530014 -257.7799987685504 44.9686 0.1144 10561 +10563 2 -48.657322060685715 -257.4837661664041 44.9081 0.1144 10562 +10564 2 -49.496528092887935 -259.02154236474496 44.8731 0.1144 10563 +10565 2 -32.64238527264976 -237.13445840987447 28.0622 0.1144 10403 +10566 2 -33.529304592876414 -235.69728926130335 27.9604 0.1144 10565 +10567 2 -34.35089571799176 -234.42645655529037 27.9231 0.1144 10566 +10568 2 -34.99254532679828 -234.0461151660922 27.8809 0.1144 10567 +10569 2 -35.39102180994452 -233.05111621519808 27.8013 0.1144 10568 +10570 2 -35.38045058100519 -231.69365529533098 27.6781 0.1144 10569 +10571 2 -35.090133367426446 -230.15745247627018 27.5682 0.1144 10570 +10572 2 -34.54445583965095 -228.2989152863314 27.4705 0.1144 10571 +10573 2 -34.15806721222833 -227.13807405897973 27.3631 0.1144 10572 +10574 2 -33.78394005731407 -226.17296070892468 27.2654 0.1144 10573 +10575 2 -33.47686647619625 -225.13649048799954 27.2153 0.1144 10574 +10576 2 -33.37554083679164 -223.91447507390365 27.2159 0.1144 10575 +10577 2 -33.03144601114242 -222.91783489381083 27.2809 0.1144 10576 +10578 2 -32.67263944634921 -221.93680877027663 27.3939 0.1144 10577 +10579 2 -32.313256857615954 -220.51554876578638 27.5354 0.1144 10578 +10580 2 -31.997138019040776 -218.7022423076905 27.6746 0.1144 10579 +10581 2 -31.99120234537787 -217.26457009493436 27.7645 0.1144 10580 +10582 2 -31.998539531857773 -215.92079460280888 27.8081 0.1144 10581 +10583 2 -31.521081653905043 -214.56634356484813 27.7907 0.1144 10582 +10584 2 -30.880087041601513 -213.93913561175853 27.7236 0.1144 10583 +10585 2 -30.24075174546111 -213.14425800942834 27.4848 0.1144 10584 +10586 2 -7.807420741840701 -289.8775313630649 19.5378 0.1144 10352 +10587 2 -8.159597571458974 -289.56499659577344 17.6438 0.1144 10586 +10588 2 -7.4912717693636495 -288.9515723524898 16.6748 0.1144 10587 +10589 2 -7.803717093913463 -287.55908501012027 15.9958 0.1144 10588 +10590 2 -7.618841193323007 -287.44109152608075 14.1513 0.1144 10589 +10591 2 -7.11528318082722 -287.1158432250927 12.2167 0.1144 10590 +10592 2 -6.949564360386262 -286.16244254084984 11.0035 0.1144 10591 +10593 2 -7.240202913827119 -284.8460554609095 9.8481 0.1144 10592 +10594 2 -6.924500231607539 -283.9265691218395 8.76 0.1144 10593 +10595 2 -6.715700453040313 -282.9893005182403 7.2918 0.1144 10594 +10596 2 -7.958897512452239 -287.2865314208841 15.8642 0.1144 10589 +10597 2 -8.570027062486503 -286.57558503121663 15.4412 0.1144 10596 +10598 2 -8.931615136367085 -285.7617449707403 15.4238 0.1144 10597 +10599 2 -8.470506981424535 -284.02220033916615 15.7678 0.1144 10598 +10600 2 -7.481308179164273 -283.6828564651214 16.242 0.1144 10599 +10601 2 -6.398832812899741 -284.11084381095844 16.7805 0.1144 10600 +10602 2 -5.312534789653526 -283.20379807290914 17.3585 0.1144 10601 +10603 2 -4.2546337102450025 -282.95455997102636 17.9341 0.1144 10602 +10604 2 -3.2472037328245023 -281.4599515507958 18.4859 0.1144 10603 +10605 2 -2.193045628177444 -281.47691982347425 19.008 0.1144 10604 +10606 2 -1.0820257621268041 -282.0822613058169 19.5087 0.1144 10605 +10607 2 0.031002803698783055 -280.94037181797654 20.014 0.1144 10606 +10608 2 0.11867156110545807 -279.69683608794026 20.3136 0.1144 10607 +10609 2 -0.1920032284010631 -278.69671829476124 20.3953 0.1144 10608 +10610 2 -0.3204789472696916 -277.58833591390925 20.2948 0.1144 10609 +10611 2 -0.01451186691087969 -276.03557116226807 19.9746 0.1144 10610 +10612 2 -1.0777950179097644 -277.02945032817456 19.1678 0.1144 10611 +10613 2 -2.161282476323592 -276.10007464053865 18.4395 0.1144 10612 +10614 2 -3.158514935622236 -275.08284063796947 17.8594 0.1144 10613 +10615 2 -3.8428197276983553 -274.76443595726164 17.6054 0.1144 10614 +10616 2 -4.434493173478543 -273.8935545499997 17.6037 0.1144 10615 +10617 2 -4.9792550844747865 -272.38074221705983 17.8413 0.1144 10616 +10618 2 -5.455594730751969 -271.2638958755434 18.3767 0.1144 10617 +10619 2 -5.4578815136620165 -270.00013195543806 19.0827 0.1144 10618 +10620 2 -5.162605292529278 -268.6861974242992 19.7806 0.1144 10619 +10621 2 -5.228199572891157 -267.4260009583293 20.5173 0.1144 10620 +10622 2 -5.65201907914016 -266.36345599794885 21.1889 0.1144 10621 +10623 2 -5.979438617086089 -265.59566565838736 21.6938 0.1144 10622 +10624 2 -6.127065502733572 -264.41292583307245 22.0058 0.1144 10623 +10625 2 -6.271346439647417 -263.2277268252464 22.2146 0.1144 10624 +10626 2 -6.0160027406219 -261.66316296332985 22.2962 0.1144 10625 +10627 2 -5.985469855655509 -260.2954482462423 22.2163 0.1144 10626 +10628 2 -6.227135429939892 -259.2185388643322 22.0608 0.1144 10627 +10629 2 -6.767978469845488 -258.32072648491067 21.8521 0.1144 10628 +10630 2 -7.438449098521303 -256.81966941514884 21.5269 0.1144 10629 +10631 2 -8.225769365123071 -255.38840047764967 21.0406 0.1144 10630 +10632 2 -9.189278963219166 -254.73577638164625 20.5597 0.1144 10631 +10633 2 -10.130127168573168 -254.63051588400583 20.1183 0.1144 10632 +10634 2 -11.125110668070477 -253.37318678047717 19.5063 0.1144 10633 +10635 2 -12.097089499683804 -253.49103236086944 19.1797 0.1144 10634 +10636 2 -12.97849161068217 -252.5391651893529 18.9936 0.1144 10635 +10637 2 -13.343868821970744 -251.0819053632825 18.8511 0.1144 10636 +10638 2 -13.293415720227031 -249.8340008651536 18.6741 0.1144 10637 +10639 2 -13.054467291332841 -248.73739559291755 18.5305 0.1144 10638 +10640 2 -12.555305657386683 -247.78851360534009 18.3968 0.1144 10639 +10641 2 -12.208493272756598 -246.28227685089496 18.2576 0.1144 10640 +10642 2 -12.572663661305725 -245.26775079553335 18.1093 0.1144 10641 +10643 2 -13.158191508104778 -243.9558709733625 17.9102 0.1144 10642 +10644 2 -13.746072714893842 -242.4471065593553 17.6614 0.1144 10643 +10645 2 -14.333771822187543 -240.94157555806368 17.3722 0.1144 10644 +10646 2 -14.639863422230391 -239.49150502944715 17.0452 0.1144 10645 +10647 2 -14.861303149725629 -238.10256053122882 16.7068 0.1144 10646 +10648 2 -15.0838175572312 -236.73094938887107 16.369 0.1144 10647 +10649 2 -15.301070428754016 -235.5929872900793 15.7058 0.1144 10648 +10650 2 -3.6267080266619587 -311.03489010926114 31.5949 0.1144 10334 +10651 2 -2.641257514129194 -310.54158641852774 31.9136 0.1144 10650 +10652 2 -1.8111619194130526 -311.8399727612234 32.0894 0.1144 10651 +10653 2 -0.8430437983593606 -313.06331934521074 32.3005 0.1144 10652 +10654 2 0.03661362564749027 -312.9138376711279 32.5044 0.1144 10653 +10655 2 0.8841981878874918 -310.91912597443013 32.6654 0.1144 10654 +10656 2 1.9753546126186166 -311.3548827050769 32.8188 0.1144 10655 +10657 2 2.69491605038111 -310.88177152803416 33.094 0.1144 10656 +10658 2 4.0733150722552836 -319.14279746087914 37.3223 0.1144 10323 +10659 2 4.908541663789364 -318.96100744536824 36.7419 0.1144 10658 +10660 2 5.683085127315266 -317.590431424325 36.5994 0.1144 10659 +10661 2 6.229788070871422 -316.1067813058973 36.4728 0.1144 10660 +10662 2 6.8394576457840515 -315.2927895203088 36.3378 0.1144 10661 +10663 2 7.131946528305491 -314.214367613541 35.3377 0.1144 10662 +10664 2 3.9580440385919786 -320.29332901227605 40.8391 0.1144 10320 +10665 2 3.5112280682237014 -319.9101636600607 40.6146 0.1144 10664 +10666 2 3.1834498419166124 -318.9450176588335 40.3808 0.1144 10665 +10667 2 2.9364788833532884 -317.4943391067373 40.129 0.1144 10666 +10668 2 2.6542647088450195 -316.0274548613787 39.8902 0.1144 10667 +10669 2 2.3108078965922942 -314.5380660087607 39.6738 0.1144 10668 +10670 2 1.924355319063082 -313.03360441107816 39.5147 0.1144 10669 +10671 2 1.5193275986952273 -311.5534549649767 39.4198 0.1144 10670 +10672 2 1.0361194660849549 -310.024776801 39.38 0.1144 10671 +10673 2 0.7461199152081832 -308.5665969008836 39.3784 0.1144 10672 +10674 2 0.6274085470290771 -307.2289381081015 39.4013 0.1144 10673 +10675 2 0.48886525650560486 -305.97291461111973 39.4778 0.1144 10674 +10676 2 0.13506806962317341 -305.36606512600713 39.5797 0.1144 10675 +10677 2 -0.36871608062091354 -304.71065587936135 39.6617 0.1144 10676 +10678 2 -0.5672647681589496 -303.2935163465495 39.7202 0.1144 10677 +10679 2 -0.845774998108979 -301.8303829690728 39.7538 0.1144 10678 +10680 2 -1.372102426512086 -300.29720136771175 39.762 0.1144 10679 +10681 2 -1.8697323655623421 -298.77079973826153 39.7477 0.1144 10680 +10682 2 -2.3948584818556355 -297.23943756425416 39.7191 0.1144 10681 +10683 2 -3.1781479659498615 -296.67243930533823 39.6819 0.1144 10682 +10684 2 -3.9047731836702155 -296.1681409641848 39.6116 0.1144 10683 +10685 2 -4.5211205160871515 -294.6387789100095 39.5032 0.1144 10684 +10686 2 -5.121122535138937 -293.7629463393043 39.4271 0.1144 10685 +10687 2 -5.759023658554355 -293.5224678048106 39.3176 0.1144 10686 +10688 2 -6.476447261263871 -292.00787045465313 39.2031 0.1144 10687 +10689 2 -6.940272863370311 -290.4904381387404 39.0958 0.1144 10688 +10690 2 -7.33420208567307 -288.99415396494356 38.9486 0.1144 10689 +10691 2 -7.884715671205683 -287.4829665083948 38.7876 0.1144 10690 +10692 2 -8.293970994259169 -286.27503379585767 38.6322 0.1144 10691 +10693 2 -8.686930268177136 -285.51510398870096 38.4238 0.1144 10692 +10694 2 -9.010034601541236 -284.60406969700045 38.3166 0.1144 10693 +10695 2 -9.10326710446492 -283.36222257411265 38.2029 0.1144 10694 +10696 2 -9.439065172448679 -282.10126905173945 37.9366 0.1144 10695 +10697 2 -9.727915777028386 -280.6436138657572 37.7177 0.1144 10696 +10698 2 -9.947660259740346 -279.2268929814467 37.4769 0.1144 10697 +10699 2 -9.822536279180994 -278.05258862843897 37.2868 0.1144 10698 +10700 2 -10.320130289611086 -276.5390575375721 37.1462 0.1144 10699 +10701 2 -10.562427355231407 -275.12282250877746 37.0653 0.1144 10700 +10702 2 -10.871718733132667 -273.90510523686726 37.0563 0.1144 10701 +10703 2 -11.191926509603647 -272.9376489704831 37.049 0.1144 10702 +10704 2 -11.5886664034131 -272.1877896863631 36.9477 0.1144 10703 +10705 2 -12.448200481188408 -271.20782922217376 36.7923 0.1144 10704 +10706 2 -13.324743498165276 -269.7826904225348 36.6864 0.1144 10705 +10707 2 -14.00357862873281 -268.26456062440343 36.6576 0.1144 10706 +10708 2 -14.462729645359602 -267.31165716816247 36.6643 0.1144 10707 +10709 2 -14.584604862776956 -266.08090527229024 36.6652 0.1144 10708 +10710 2 -14.805644462661292 -265.0269040023944 36.6131 0.1144 10709 +10711 2 -15.322122347525024 -264.2672095530672 36.472 0.1144 10710 +10712 2 -15.731644270387108 -262.9398431961258 36.2138 0.1144 10711 +10713 2 -16.041514081274983 -261.4918238311175 35.9131 0.1144 10712 +10714 2 -16.670628722061792 -260.53561043351664 35.6678 0.1144 10713 +10715 2 -17.21003459947626 -259.7528333169692 35.4886 0.1144 10714 +10716 2 -17.439634828893773 -258.31195288037156 35.3738 0.1144 10715 +10717 2 -17.817221146877927 -256.83020824355253 35.3125 0.1144 10716 +10718 2 -18.18691735686801 -255.40175734447826 35.2862 0.1144 10717 +10719 2 -18.365019760454857 -254.16226368812727 35.233 0.1144 10718 +10720 2 -18.529041916233737 -252.90272998452548 35.1865 0.1144 10719 +10721 2 -18.601023156587686 -251.60290889289058 35.1918 0.1144 10720 +10722 2 -18.757692198109368 -250.358224906884 35.2106 0.1144 10721 +10723 2 -19.135496544209033 -249.12808400037625 35.222 0.1144 10722 +10724 2 -19.506537828137724 -247.64854166483303 35.24 0.1144 10723 +10725 2 -19.869774196922137 -246.17511546343172 35.2372 0.1144 10724 +10726 2 -20.417664028536464 -245.2068118280538 35.1842 0.1144 10725 +10727 2 -20.87453044083044 -244.2512738150302 35.0941 0.1144 10726 +10728 2 -21.124665248632013 -242.8136805939409 34.9709 0.1144 10727 +10729 2 -21.237410015742256 -241.44454701845223 34.7757 0.1144 10728 +10730 2 -21.318124680375504 -240.09557208657634 34.5064 0.1144 10729 +10731 2 -21.576584959865528 -238.65871960322437 34.237 0.1144 10730 +10732 2 -21.52782330878543 -237.45075609748073 33.9368 0.1144 10731 +10733 2 -21.206310791498467 -236.43539157149888 33.6176 0.1144 10732 +10734 2 -21.176805731359266 -235.1745674535925 33.3987 0.1144 10733 +10735 2 -21.088485659752337 -233.82930156811824 33.229 0.1144 10734 +10736 2 -21.27967572240361 -232.53985007397193 33.0722 0.1144 10735 +10737 2 -21.322077126916184 -231.21944297524476 32.9428 0.1144 10736 +10738 2 -21.046374745835763 -229.82386292860014 32.8017 0.1144 10737 +10739 2 -20.844489000722774 -228.38547271320743 32.632 0.1144 10738 +10740 2 -20.705569194429742 -226.9745874977536 32.4626 0.1144 10739 +10741 2 -21.036329170479718 -225.863631047178 32.303 0.1144 10740 +10742 2 -21.727461009639143 -224.8324302936969 32.1174 0.1144 10741 +10743 2 -21.798416834212404 -223.4965108363103 31.8844 0.1144 10742 +10744 2 -21.870844364823824 -222.15720987841217 31.5991 0.1144 10743 +10745 2 -21.653734137024443 -221.51294775345212 31.2794 0.1144 10744 +10746 2 -21.594685169664004 -220.24968770990995 31.0299 0.1144 10745 +10747 2 -21.610221195732862 -218.915184753341 30.7266 0.1144 10746 +10748 2 -21.57532004783532 -217.55956440269114 30.4214 0.1144 10747 +10749 2 -21.68240074230542 -216.2957230812744 30.1378 0.1144 10748 +10750 2 -22.09677624855935 -214.87809385556778 29.8561 0.1144 10749 +10751 2 -22.63161124814637 -213.56419712149662 29.5943 0.1144 10750 +10752 2 -23.17049175092353 -212.87433877134544 29.3308 0.1144 10751 +10753 2 -23.00140956793112 -211.54025932074373 29.1348 0.1144 10752 +10754 2 -22.73058679627306 -210.01934149806732 29.0035 0.1144 10753 +10755 2 -22.801630915279247 -208.7508201856524 28.8302 0.1144 10754 +10756 2 -22.778541848049414 -207.37429153960463 28.5709 0.1144 10755 +10757 2 -22.771837124388043 -206.01135681367214 28.2738 0.1144 10756 +10758 2 -22.86346818759101 -204.74987681950148 27.9662 0.1144 10757 +10759 2 -23.218995855340196 -203.83418296201575 27.6536 0.1144 10758 +10760 2 -23.887184288729685 -202.86016881151107 27.3466 0.1144 10759 +10761 2 -24.289353097334597 -201.43360086712448 26.9967 0.1144 10760 +10762 2 -23.872881491344174 -200.570961031587 26.7558 0.1144 10761 +10763 2 -23.88333257029609 -199.299795576485 26.5835 0.1144 10762 +10764 2 -24.328583029563816 -197.8192453096245 26.4174 0.1144 10763 +10765 2 -24.90635832703134 -196.31962730355343 26.2056 0.1144 10764 +10766 2 -25.335751202441045 -195.11705108844507 25.9491 0.1144 10765 +10767 2 -25.684243005044507 -193.9266710717103 25.5951 0.1144 10766 +10768 2 -25.604389065371734 -192.60045334635305 25.2629 0.1144 10767 +10769 2 -25.700068733348004 -191.298404588412 24.9397 0.1144 10768 +10770 2 -25.846796746325026 -190.7267458444346 24.5761 0.1144 10769 +10771 2 -26.249412537723998 -189.29717427188316 24.198 0.1144 10770 +10772 2 -26.611719704836815 -188.05676098585548 23.7813 0.1144 10771 +10773 2 -26.71897698817267 -186.82345102315787 23.4203 0.1144 10772 +10774 2 -26.959978244084056 -185.7917675489838 23.0579 0.1144 10773 +10775 2 -27.296622037399644 -184.92538808992822 22.6783 0.1144 10774 +10776 2 -27.28024607557454 -183.56826257521453 22.2391 0.1144 10775 +10777 2 -26.874027242317467 -181.79759866577356 21.7793 0.1144 10776 +10778 2 -26.116272280831126 -180.99006522946348 21.352 0.1144 10777 +10779 2 -25.7509158815745 -179.9163581354153 20.9401 0.1144 10778 +10780 2 -25.78382263678914 -178.61468480305 20.5553 0.1144 10779 +10781 2 -25.684368138496964 -177.31941762500105 20.2455 0.1144 10780 +10782 2 -25.65356796118543 -176.06987124721275 19.9601 0.1144 10781 +10783 2 -25.686563010833027 -174.7760644743836 19.6709 0.1144 10782 +10784 2 -25.45099576675605 -173.70612753563245 19.4106 0.1144 10783 +10785 2 -25.029278038002175 -172.81154636003103 19.208 0.1144 10784 +10786 2 -25.315540124747116 -171.40033496433637 19.1003 0.1144 10785 +10787 2 -25.252966210740766 -170.17313929504806 18.9575 0.1144 10786 +10788 2 -25.39850702874334 -168.80811156721902 18.7967 0.1144 10787 +10789 2 -25.71555095597607 -167.36559899373992 18.6258 0.1144 10788 +10790 2 -25.89467567376053 -165.9839748377475 18.4797 0.1144 10789 +10791 2 -26.121379346284925 -164.58415519035634 18.3272 0.1144 10790 +10792 2 -26.276847075696793 -163.2169982840323 18.13 0.1144 10791 +10793 2 -26.212942115897945 -161.9871139455795 17.9499 0.1144 10792 +10794 2 -25.951717008653333 -160.92881590649566 17.8428 0.1144 10793 +10795 2 -26.093371782602375 -159.56524891673646 17.8233 0.1144 10794 +10796 2 -26.330545563439088 -158.15550997857665 17.9008 0.1144 10795 +10797 2 -26.70430130476545 -156.77136057017464 18.0316 0.1144 10796 +10798 2 -27.242876177530817 -155.49222176252945 18.191 0.1144 10797 +10799 2 -27.65239569134637 -154.0578663305564 18.4057 0.1144 10798 +10800 2 -27.700610032509374 -152.79877053654798 18.6292 0.1144 10799 +10801 2 -27.270121849871543 -151.96799598623562 18.9128 0.1144 10800 +10802 2 -27.766949219349698 -150.58490059783588 19.1923 0.1144 10801 +10803 2 -28.51197299104298 -150.58115788641294 19.378 0.1144 10802 +10804 2 -29.042116275421222 -149.33744657702405 19.5987 0.1144 10803 +10805 2 -29.424558585843712 -148.00101658842678 19.8269 0.1144 10804 +10806 2 -29.897159051479193 -146.60190993788345 19.9873 0.1144 10805 +10807 2 -30.311228927721345 -145.1165050265422 20.0672 0.1144 10806 +10808 2 -31.050520155205916 -143.74646526958438 20.1371 0.1144 10807 +10809 2 -32.10678634662433 -144.20895445025488 20.2358 0.1144 10808 +10810 2 -32.8098675113623 -142.97094831553326 20.3196 0.1144 10809 +10811 2 -32.75948729083228 -141.76338320204266 20.4187 0.1144 10810 +10812 2 -32.699506712753646 -140.51322854548468 20.567 0.1144 10811 +10813 2 -32.66795151358973 -139.24161908686781 20.7211 0.1144 10812 +10814 2 -32.61915221737955 -137.98324569884574 20.8738 0.1144 10813 +10815 2 -32.99828381515198 -136.625609843356 21.0495 0.1144 10814 +10816 2 -33.437262043339004 -135.22035815465944 21.2094 0.1144 10815 +10817 2 -33.88492132999252 -133.74305505051578 21.282 0.1144 10816 +10818 2 -34.07035971810737 -132.3578537280632 21.3666 0.1144 10817 +10819 2 -33.81269479359226 -131.31031198270117 21.7079 0.1144 10818 +10820 2 -33.903518469130134 -129.97145176050722 21.9732 0.1144 10819 +10821 2 -33.87524675463381 -129.91258156464588 20.8512 0.1144 10820 +10822 2 -33.804304532637914 -129.1929821340733 19.09 0.1144 10821 +10823 2 -34.07931514943593 -127.85490278481272 18.175 0.1144 10822 +10824 2 -34.434700771866375 -126.47164607533986 17.2117 0.1144 10823 +10825 2 -34.58096406877294 -125.18688196492448 16.2086 0.1144 10824 +10826 2 -34.34773787304988 -124.17161962122094 15.3262 0.1144 10825 +10827 2 -33.81105185184575 -123.44319697743165 14.6116 0.1144 10826 +10828 2 -33.78570661536011 -122.26456985324636 13.8962 0.1144 10827 +10829 2 -34.24565099150598 -120.83316336372157 13.2849 0.1144 10828 +10830 2 -34.52473655285952 -119.42165608395776 12.7622 0.1144 10829 +10831 2 -35.014710156687244 -117.9452589423399 12.3139 0.1144 10830 +10832 2 -35.8528108723974 -116.98723966709856 11.8552 0.1144 10831 +10833 2 -35.99739674678648 -116.03475546232626 11.4011 0.1144 10832 +10834 2 -35.551296040725006 -114.7134315791814 11.0194 0.1144 10833 +10835 2 -34.87799482354626 -114.23716071054267 10.5339 0.1144 10834 +10836 2 -34.46073606120301 -113.46371372293461 10.1145 0.1144 10835 +10837 2 -34.109141257884744 -112.63936453995801 9.5357 0.1144 10836 +10838 2 -34.47256165038036 -128.6320330344414 22.2676 0.1144 10820 +10839 2 -35.055192940286304 -127.12848413846078 22.4443 0.1144 10838 +10840 2 -35.57585698858588 -126.44231731053682 22.5348 0.1144 10839 +10841 2 -35.948805342247155 -125.85006173300879 22.5911 0.1144 10840 +10842 2 -36.03178817402059 -124.58764312741188 22.6521 0.1144 10841 +10843 2 -36.2182715166918 -123.33464522634794 22.7345 0.1144 10842 +10844 2 -36.33324301169253 -121.97983709368577 22.8637 0.1144 10843 +10845 2 -36.60840729290888 -120.54770397682508 23.062 0.1144 10844 +10846 2 -36.920689032765736 -119.10094711901816 23.2905 0.1144 10845 +10847 2 -37.181825431986866 -117.67536184970594 23.5453 0.1144 10846 +10848 2 -37.72061764033113 -116.28253257326824 23.9371 0.1144 10847 +10849 2 -38.25277652018707 -115.00856988626829 24.3731 0.1144 10848 +10850 2 -38.49016453501966 -113.81476891845043 24.896 0.1144 10849 +10851 2 -38.91500704800285 -112.56145624028213 25.2968 0.1144 10850 +10852 2 -39.398702910120306 -111.7936002148297 25.599 0.1144 10851 +10853 2 -40.22610036597894 -112.41971835534399 26.647 0.1144 10852 +10854 2 -41.26396070498059 -112.47289859879909 27.3836 0.1144 10853 +10855 2 -42.28214280374118 -113.57177462229636 28.0006 0.1144 10854 +10856 2 -43.28864195196938 -112.85596044362434 28.8232 0.1144 10855 +10857 2 -44.28370995177994 -111.82408186927128 29.5624 0.1144 10856 +10858 2 -45.35645800893775 -112.52042807624058 30.2061 0.1144 10857 +10859 2 -46.376798843772505 -111.55315104886108 30.9851 0.1144 10858 +10860 2 -47.41901012087682 -110.62287303338624 31.7568 0.1144 10859 +10861 2 -48.49094699624983 -111.33612624717499 32.5318 0.1144 10860 +10862 2 -49.58194194356075 -110.6654060011727 33.3508 0.1144 10861 +10863 2 -50.67474946300521 -110.01989721301163 34.1799 0.1144 10862 +10864 2 -50.737815001605824 -110.06468843870019 35.98 0.1144 10863 +10865 2 -50.970530330589966 -110.25358128307083 38.7164 0.1144 10864 +10866 2 -51.27140634965497 -111.15578612742824 41.116 0.1144 10865 +10867 2 -51.29988819027571 -111.47535652408072 43.7226 0.1144 10866 +10868 2 -51.93686611952208 -111.66687748648933 45.864 0.1144 10867 +10869 2 -52.85840397107113 -111.01124825447134 47.4684 0.1144 10868 +10870 2 -53.8493237543496 -110.30708649491068 48.8149 0.1144 10869 +10871 2 -54.033361228052115 -109.65241491368452 50.5742 0.1144 10870 +10872 2 -53.91170362515969 -108.66386318419178 51.2296 0.1144 10871 +10873 2 -53.77625639969986 -107.64413048552876 51.3433 0.1144 10872 +10874 2 -53.570266582417744 -106.67479575278507 51.091 0.1144 10873 +10875 2 -53.173093006618004 -105.88223554161227 50.542 0.1144 10874 +10876 2 -52.75381864879701 -105.11696019438186 49.8204 0.1144 10875 +10877 2 -52.58622427759849 -104.15454185745564 49.0963 0.1144 10876 +10878 2 -52.39974844101283 -103.21123554732851 48.2437 0.1144 10877 +10879 2 -51.87369129472107 -102.29513912091228 47.304 0.1144 10878 +10880 2 -51.04258418857532 -100.88387000239368 46.6578 0.1144 10879 +10881 2 -50.19000228111467 -100.61709824144275 46.1751 0.1144 10880 +10882 2 -49.33920701445322 -100.32961395885125 45.8315 0.1144 10881 +10883 2 -48.917665182028486 -99.38042035396758 45.995 0.1144 10882 +10884 2 -51.34436745866839 -110.19834074385656 34.9751 0.1144 10863 +10885 2 -52.27176760008689 -109.56437401259902 35.31 0.1144 10884 +10886 2 -53.244195823540764 -108.44902679998239 35.5519 0.1144 10885 +10887 2 -54.314650380064435 -107.76025154768602 35.7566 0.1144 10886 +10888 2 -55.445598364883395 -108.35181873902984 35.95 0.1144 10887 +10889 2 -56.58386863752111 -107.78487470794408 36.1362 0.1144 10888 +10890 2 -57.64521566818503 -107.37892829248966 36.3457 0.1144 10889 +10891 2 -58.652598891389786 -107.35719343117643 36.6369 0.1144 10890 +10892 2 -59.75688621993426 -106.4881619775667 36.696 0.1144 10891 +10893 2 -60.86412006213811 -105.93709374903838 36.5842 0.1144 10892 +10894 2 -61.883968065283966 -106.04610927027251 36.4272 0.1144 10893 +10895 2 -62.748176036002334 -104.85371438945612 36.2404 0.1144 10894 +10896 2 -63.48340262996905 -103.61501529466537 36.0231 0.1144 10895 +10897 2 -63.85221408442412 -102.38028405169955 35.7854 0.1144 10896 +10898 2 -64.02046074130544 -101.20669963542414 35.4413 0.1144 10897 +10899 2 -64.8384868832833 -101.48936557927135 34.8085 0.1144 10898 +10900 2 -65.96022974306045 -101.05120886038698 34.333 0.1144 10899 +10901 2 -67.07038847056003 -100.66116606117455 33.8814 0.1144 10900 +10902 2 -68.19409627651214 -101.55572022387487 33.4373 0.1144 10901 +10903 2 -69.26522576421995 -100.75510061898916 33.026 0.1144 10902 +10904 2 -70.23207820946664 -99.69771666576611 32.6388 0.1144 10903 +10905 2 -71.3176613540263 -100.13797189684212 32.2899 0.1144 10904 +10906 2 -72.44996982600314 -99.55478368823901 31.976 0.1144 10905 +10907 2 -73.5821900035471 -100.2680347183646 31.6828 0.1144 10906 +10908 2 -74.69487568499375 -99.48995972975598 31.4163 0.1144 10907 +10909 2 -75.65495344896982 -98.46006895144733 31.1724 0.1144 10908 +10910 2 -76.47974676099008 -98.34452280642935 30.9285 0.1144 10909 +10911 2 -77.36889831973683 -97.50081897282952 30.6634 0.1144 10910 +10912 2 -78.30066362250345 -96.38897144576637 30.3444 0.1144 10911 +10913 2 -79.2484569895238 -95.31618327679489 29.9404 0.1144 10912 +10914 2 -80.19887651950899 -95.59230024502811 29.4694 0.1144 10913 +10915 2 -81.14720688026622 -94.52311913694372 28.9629 0.1144 10914 +10916 2 -82.09370753916073 -93.46520480385591 28.4704 0.1144 10915 +10917 2 -83.05579538798501 -93.2986300842694 28.0403 0.1144 10916 +10918 2 -84.04322074928234 -92.69354634166247 27.6951 0.1144 10917 +10919 2 -85.04454976952191 -91.67705538290524 27.4387 0.1144 10918 +10920 2 -86.0508199750497 -90.9774897916691 27.2642 0.1144 10919 +10921 2 -87.10663367304453 -91.02953023128958 27.2176 0.1144 10920 +10922 2 -87.97780903734004 -89.98126727331083 27.3305 0.1144 10921 +10923 2 -88.59143881077614 -88.7559756752473 27.5465 0.1144 10922 +10924 2 -89.15576225018854 -87.5316330706637 27.8149 0.1144 10923 +10925 2 -89.72154646907606 -87.06867193917272 28.1014 0.1144 10924 +10926 2 -90.2873830537763 -86.29600648629557 28.3632 0.1144 10925 +10927 2 -90.86386013248844 -85.06518412888126 28.5267 0.1144 10926 +10928 2 -91.40849541138516 -83.84114052036811 28.5216 0.1144 10927 +10929 2 -91.7295489131879 -82.63735417710896 28.2904 0.1144 10928 +10930 2 -91.7201290395922 -81.5474154373356 27.8085 0.1144 10929 +10931 2 -91.22224470055258 -80.805810605318 27.2042 0.1144 10930 +10932 2 -90.56297136536907 -80.20577113527604 26.5662 0.1144 10931 +10933 2 -89.56124751536385 -79.18532812822303 25.8575 0.1144 10932 +10934 2 -88.46420557454225 -79.52385366933152 25.1341 0.1144 10933 +10935 2 -87.92468425855915 -78.88665671889272 24.3036 0.1144 10934 +10936 2 -87.64513658013831 -77.93817130734453 23.6847 0.1144 10935 +10937 2 -87.47212491324399 -76.90460902290639 23.2925 0.1144 10936 +10938 2 -87.29848795817989 -75.71881332565113 22.9975 0.1144 10937 +10939 2 -39.27810417127792 -111.2653337771915 25.7425 0.1144 10852 +10940 2 -39.38406564490491 -110.23669890573133 25.9387 0.1144 10939 +10941 2 -39.77595023881253 -109.72559207028917 26.0343 0.1144 10940 +10942 2 -40.13260254333832 -108.97462910113566 26.2135 0.1144 10941 +10943 2 -40.61509709334591 -107.70181396934825 26.3967 0.1144 10942 +10944 2 -41.09731573879576 -106.43210719446874 26.4974 0.1144 10943 +10945 2 -41.402112221666215 -105.19854472156527 26.5305 0.1144 10944 +10946 2 -40.90273566118759 -104.47778032587892 26.5507 0.1144 10945 +10947 2 -41.10252469103874 -103.27948432141872 26.5664 0.1144 10946 +10948 2 -40.420482449363206 -103.23710028093133 26.4025 0.1144 10947 +10949 2 -39.5258370975659 -101.72832430561886 25.4035 0.1144 10948 +10950 2 -38.85241024259783 -101.46609555463378 24.4014 0.1144 10949 +10951 2 -39.05380783263493 -100.70556781891513 22.8952 0.1144 10950 +10952 2 -38.57385724250844 -100.09419259657162 21.6385 0.1144 10951 +10953 2 -37.94179186837394 -99.61441380117974 20.504 0.1144 10952 +10954 2 -37.09358952919233 -98.78593618280931 19.4676 0.1144 10953 +10955 2 -36.20568672416512 -97.91051054978956 18.5453 0.1144 10954 +10956 2 -35.27419981828524 -97.82724975539737 17.7507 0.1144 10955 +10957 2 -34.157168496581164 -98.17203769562089 17.1541 0.1144 10956 +10958 2 -33.11332633839075 -97.95643357756612 16.7278 0.1144 10957 +10959 2 -32.56228668568423 -99.18983878042404 16.2666 0.1144 10958 +10960 2 -41.0573413467275 -102.49095353435244 26.6066 0.1144 10947 +10961 2 -40.9408248508844 -101.44963848031122 26.7066 0.1144 10960 +10962 2 -41.13775496897253 -100.29386652257217 26.8462 0.1144 10961 +10963 2 -41.74460765209159 -99.05583262677979 26.9989 0.1144 10962 +10964 2 -42.30287068537264 -98.58342344226703 27.1023 0.1144 10963 +10965 2 -42.3209274502443 -97.4111319900342 27.1741 0.1144 10964 +10966 2 -42.18227493629638 -95.9732349772173 27.2527 0.1144 10965 +10967 2 -42.31675869548366 -94.94347989665702 27.3039 0.1144 10966 +10968 2 -42.596291239631185 -94.1425432226652 27.3823 0.1144 10967 +10969 2 -42.76767202029686 -93.15869349327399 27.5061 0.1144 10968 +10970 2 -42.64914062151264 -91.760906158868 27.6924 0.1144 10969 +10971 2 -42.941639703254666 -90.97610620840602 27.8854 0.1144 10970 +10972 2 -43.422836034506915 -89.94830446941315 28.0428 0.1144 10971 +10973 2 -43.859940019998376 -88.70263509985665 28.2397 0.1144 10972 +10974 2 -44.634008350306146 -87.52355364942916 28.3945 0.1144 10973 +10975 2 -45.108207154079196 -86.29180847444518 28.4962 0.1144 10974 +10976 2 -45.217170608761336 -85.1340727725869 28.5564 0.1144 10975 +10977 2 -44.750450131466025 -84.35946637764975 28.6726 0.1144 10976 +10978 2 -45.21751336934523 -84.03949662900862 29.5403 0.1144 10977 +10979 2 -46.153127674582635 -83.73368805500016 31.1234 0.1144 10978 +10980 2 -47.20577302470481 -84.27672111106988 32.0989 0.1144 10979 +10981 2 -48.2752620305106 -83.99066962264651 32.9535 0.1144 10980 +10982 2 -48.94695909714849 -84.26475370375047 34.389 0.1144 10981 +10983 2 -49.933662281315506 -84.64124288730397 35.5205 0.1144 10982 +10984 2 -50.980487183559035 -84.03996979621351 36.5823 0.1144 10983 +10985 2 -51.78852905224329 -84.20727572659933 37.9789 0.1144 10984 +10986 2 -52.72521802551293 -84.70486036702839 39.3526 0.1144 10985 +10987 2 -53.30711261270527 -84.95176625569405 41.6861 0.1144 10986 +10988 2 -53.160939504720105 -84.89115040441837 44.345 0.1144 10987 +10989 2 -52.35286881019586 -83.79150498558167 46.1387 0.1144 10988 +10990 2 -51.55381914061965 -83.63140736373688 47.6568 0.1144 10989 +10991 2 -50.81335412507431 -83.31159815114138 49.0028 0.1144 10990 +10992 2 -50.381109121787375 -82.63900979129033 50.3782 0.1144 10991 +10993 2 -50.28842760594088 -81.71638232257204 51.7796 0.1144 10992 +10994 2 -50.20609946889677 -80.71632536980904 52.8374 0.1144 10993 +10995 2 -49.65395219732595 -79.14514687051442 53.6312 0.1144 10994 +10996 2 -48.85350029956845 -78.51165250069697 54.3802 0.1144 10995 +10997 2 -48.05732596126275 -78.09467110087971 55.0598 0.1144 10996 +10998 2 -47.47077879003234 -77.39810998253049 55.5853 0.1144 10997 +10999 2 -46.88148433436716 -76.20131535884735 56.0213 0.1144 10998 +11000 2 -46.291467683886594 -74.93503418200596 56.4082 0.1144 10999 +11001 2 -45.70006762180083 -74.22698179832577 56.7563 0.1144 11000 +11002 2 -45.14781963748666 -73.96584450362012 57.2863 0.1144 11001 +11003 2 -44.20412672649431 -73.7902373620278 57.8024 0.1144 11002 +11004 2 -43.152355128333 -73.31799144917635 58.0717 0.1144 11003 +11005 2 -42.04491906199581 -73.40182731747251 58.0734 0.1144 11004 +11006 2 -41.2051808541498 -72.2661372670624 58.0588 0.1144 11005 +11007 2 -40.205744692375475 -72.12719298971047 58.1507 0.1144 11006 +11008 2 -39.195829904772324 -72.01404472953396 58.3453 0.1144 11007 +11009 2 -38.61742130532704 -70.64624989966168 59.176 0.1144 11008 +11010 2 -38.008779555241574 -69.80759338897576 59.4882 0.1144 11009 +11011 2 -37.60875937931493 -68.93905978718729 59.6982 0.1144 11010 +11012 2 -37.07946791161774 -68.20002780479099 59.9432 0.1144 11011 +11013 2 -36.17300227538797 -67.76860622038858 60.1807 0.1144 11012 +11014 2 -35.177670185782716 -66.77885856501729 60.3974 0.1144 11013 +11015 2 -34.10792619926792 -66.93939546844764 60.7054 0.1144 11014 +11016 2 -33.01657846498841 -66.98212426807018 61.1461 0.1144 11015 +11017 2 -32.27736030867413 -65.66063689035155 61.5415 0.1144 11016 +11018 2 -31.787155637752363 -64.84465087729482 61.8498 0.1144 11017 +11019 2 -31.35425111650048 -63.97813785380794 62.0763 0.1144 11018 +11020 2 -30.93057395220123 -63.0932080056905 62.2294 0.1144 11019 +11021 2 -30.509751905545357 -62.198169520768495 62.3188 0.1144 11020 +11022 2 -30.071415367915023 -60.988272631814866 62.3731 0.1144 11021 +11023 2 -29.615479146460302 -59.60086850529624 62.4235 0.1144 11022 +11024 2 -29.199910118270623 -58.70646630182172 62.4887 0.1144 11023 +11025 2 -28.915377406265378 -57.72053854319598 62.5778 0.1144 11024 +11026 2 -28.67754819821431 -56.70334373103604 62.6993 0.1144 11025 +11027 2 -28.37719624001778 -55.71996719785367 62.8841 0.1144 11026 +11028 2 -28.041206448894968 -54.762845497967106 63.1462 0.1144 11027 +11029 2 -27.710287576743042 -53.80090143814233 63.4684 0.1144 11028 +11030 2 -27.493171944988376 -52.42123825721188 63.8968 0.1144 11029 +11031 2 -27.402839379486863 -51.17124424142495 64.4826 0.1144 11030 +11032 2 -27.47084248723459 -50.06533722345759 65.21 0.1144 11031 +11033 2 -28.112241524977122 -49.5646795096397 66.08 0.1144 11032 +11034 2 -28.782194982780396 -48.5174257991026 66.9808 0.1144 11033 +11035 2 -29.72467306293217 -47.704420581712974 67.8247 0.1144 11034 +11036 2 -30.773514566941742 -47.11605307975462 68.5756 0.1144 11035 +11037 2 -31.84091890215396 -47.14166241024031 69.3241 0.1144 11036 +11038 2 -32.67205933277401 -46.92344889330524 71.2362 0.1144 11037 +11039 2 -38.25661367578209 -71.16771935250762 58.5203 0.1144 11008 +11040 2 -37.16360083062122 -71.28320168092584 58.6256 0.1144 11039 +11041 2 -36.07990122779938 -71.35293346565778 58.7773 0.1144 11040 +11042 2 -34.98434061151693 -70.52570925485377 59.1231 0.1144 11041 +11043 2 -33.890078498078566 -70.75334988376073 59.7694 0.1144 11042 +11044 2 -32.82165324572006 -70.97216056998734 60.6488 0.1144 11043 +11045 2 -31.773368647300998 -70.23370088468307 61.6725 0.1144 11044 +11046 2 -30.75252475872901 -70.47521728313032 62.8648 0.1144 11045 +11047 2 -29.744107312431595 -70.71787800272361 64.129 0.1144 11046 +11048 2 -28.687146757727533 -70.07319326046283 65.1854 0.1144 11047 +11049 2 -28.269722516202734 -70.29928005419396 65.4598 0.1144 11048 +11050 2 -27.30535898901013 -71.1254568706145 65.5096 0.1144 11049 +11051 2 -26.50577414831693 -72.22529043710708 65.135 0.1144 11050 +11052 2 -25.75104149332992 -72.54423031389554 64.8682 0.1144 11051 +11053 2 -25.00668514159267 -73.46974525351898 64.4336 0.1144 11052 +11054 2 -24.272537021755966 -74.58629167335644 63.8291 0.1144 11053 +11055 2 -23.64160499074262 -75.69686629562 62.9126 0.1144 11054 +11056 2 -23.02408096948821 -76.78904735317752 61.8184 0.1144 11055 +11057 2 -22.287018878940557 -77.04340564944025 60.8572 0.1144 11056 +11058 2 -21.520988905111835 -77.84798960893438 59.978 0.1144 11057 +11059 2 -20.77197097206775 -78.93985086676655 59.1377 0.1144 11058 +11060 2 -20.124114502166037 -80.06166212104839 58.2294 0.1144 11059 +11061 2 -19.515138798808607 -81.1930510967194 57.2863 0.1144 11060 +11062 2 -18.90660938570869 -81.65729629969722 56.3478 0.1144 11061 +11063 2 -18.295671145222855 -82.32765704329978 55.4364 0.1144 11062 +11064 2 -17.305276345818783 -83.2551285727 54.8262 0.1144 11063 +11065 2 -16.28107169884123 -84.19082356099466 54.432 0.1144 11064 +11066 2 -15.248130526001319 -83.95161764549499 54.2542 0.1144 11065 +11067 2 -14.209760438365947 -84.88542453823729 54.2536 0.1144 11066 +11068 2 -13.14387675966978 -85.73164334479442 54.4659 0.1144 11067 +11069 2 -12.084458338112654 -85.80173850247195 54.8232 0.1144 11068 +11070 2 -11.083455871733747 -86.36110738724494 55.3697 0.1144 11069 +11071 2 -10.175804851171392 -86.59087478848092 56.6524 0.1144 11070 +11072 2 -28.51729674380934 -69.91263913223496 65.7524 0.1144 11048 +11073 2 -27.87802340231957 -69.29495128810936 66.4684 0.1144 11072 +11074 2 -27.177010388828762 -68.70052900422517 66.8769 0.1144 11073 +11075 2 -26.457899035443432 -67.8316223796216 67.1138 0.1144 11074 +11076 2 -25.736519514917887 -66.57833192392903 67.2316 0.1144 11075 +11077 2 -25.01362684910444 -65.98491668012058 67.2843 0.1144 11076 +11078 2 -24.290648990441213 -65.39098337410448 67.3081 0.1144 11077 +11079 2 -23.566819203280005 -64.61657571775389 67.3145 0.1144 11078 +11080 2 -22.843841344616777 -63.2877362543843 67.3168 0.1144 11079 +11081 2 -22.120896312990595 -62.686937588981195 67.3198 0.1144 11080 +11082 2 -21.396981332979635 -62.08138763346691 67.3238 0.1144 11081 +11083 2 -20.67466469110633 -61.385624897000966 67.3294 0.1144 11082 +11084 2 -19.9516868324431 -60.007174352577074 67.3369 0.1144 11083 +11085 2 -19.223849879758347 -59.3988755613888 67.3467 0.1144 11084 +11086 2 -18.47657733822041 -58.803018879391246 67.3646 0.1144 11085 +11087 2 -17.72587365509912 -58.155693855014505 67.3879 0.1144 11086 +11088 2 -16.975222337790484 -56.82152245452053 67.4131 0.1144 11087 +11089 2 -16.223633899134143 -56.228851701744006 67.4363 0.1144 11088 +11090 2 -15.47293021601277 -55.63754569047687 67.4526 0.1144 11089 +11091 2 -14.722364091553942 -54.915401405337754 67.4562 0.1144 11090 +11092 2 -13.971660408432598 -53.670054757916276 67.4391 0.1144 11091 +11093 2 -13.221009091124017 -53.07443668449882 67.3938 0.1144 11092 +11094 2 -12.470305408002645 -51.7581507296414 67.3126 0.1144 11093 +11095 2 -11.720676404891606 -51.153827211803886 67.1894 0.1144 11094 +11096 2 -10.716463335058734 -50.96393198921078 66.9463 0.1144 11095 +11097 2 -9.597603317780283 -50.653991874523 66.5714 0.1144 11096 +11098 2 -8.481857192973905 -50.62930132956412 66.0946 0.1144 11097 +11099 2 -7.369721207663247 -50.817668820818945 65.5525 0.1144 11098 +11100 2 -6.261057803185764 -50.37484413640636 64.9788 0.1144 11099 +11101 2 -5.152937595611348 -50.49607191347034 64.3972 0.1144 11100 +11102 2 -4.040966580066879 -50.70404016011546 63.8425 0.1144 11101 +11103 2 -2.931177455513307 -50.53598932785723 63.3906 0.1144 11102 +11104 2 -1.8154131176781902 -51.08196553074965 63.0204 0.1144 11103 +11105 2 -0.6951046205827822 -51.618025147292805 62.7236 0.1144 11104 +11106 2 0.4169167424908835 -51.4419594561309 62.2616 0.1144 11105 +11107 2 -46.20687116691792 -73.05640900536922 57.2132 0.1144 11001 +11108 2 -46.106705086621645 -72.10495269020575 58.0115 0.1144 11107 +11109 2 -46.05269110961186 -71.01977023907479 58.4399 0.1144 11108 +11110 2 -45.98152614808174 -69.96525877767641 59.1556 0.1144 11109 +11111 2 -45.76029172347532 -69.00324345999567 59.9525 0.1144 11110 +11112 2 -45.1902041860734 -68.35113477591189 60.7813 0.1144 11111 +11113 2 -44.21326033940355 -67.88416639757448 61.7151 0.1144 11112 +11114 2 -43.19903436610073 -67.69705244814186 62.8253 0.1144 11113 +11115 2 -42.39204253646943 -66.98706371094976 63.7644 0.1144 11114 +11116 2 -41.764322500818736 -65.77864751367959 64.5056 0.1144 11115 +11117 2 -41.37729558105363 -64.938614033229 65.2856 0.1144 11116 +11118 2 -41.30949467461156 -63.91708201875932 66.2161 0.1144 11117 +11119 2 -41.341754525271085 -62.8647762293856 67.2465 0.1144 11118 +11120 2 -41.40199587363426 -61.80475557019717 68.2786 0.1144 11119 +11121 2 -41.478547299279086 -60.73566751792262 69.2737 0.1144 11120 +11122 2 -41.5608863280805 -59.65640035961131 70.2248 0.1144 11121 +11123 2 -41.68310722968624 -58.56063483063505 71.118 0.1144 11122 +11124 2 -41.97643731607738 -57.44188574929846 71.9754 0.1144 11123 +11125 2 -42.37931118976849 -56.31552142714763 72.7964 0.1144 11124 +11126 2 -42.616246711177354 -55.17638019143041 73.4082 0.1144 11125 +11127 2 -42.56886916423906 -54.08666849280904 73.7218 0.1144 11126 +11128 2 -42.30225037828262 -53.097066162763696 74.0944 0.1144 11127 +11129 2 -42.03119795940947 -52.19447933175346 75.1626 0.1144 11128 +11130 2 -47.3161298146525 -73.14611474106073 57.8609 0.1144 11107 +11131 2 -48.39874352110547 -72.50311518719592 58.1823 0.1144 11130 +11132 2 -49.521728137932 -71.85470725424643 58.3906 0.1144 11131 +11133 2 -50.64804467534604 -72.21739213047327 58.5211 0.1144 11132 +11134 2 -51.76778094262109 -71.5581999231382 58.6519 0.1144 11133 +11135 2 -52.8850669432605 -70.89337648517528 58.896 0.1144 11134 +11136 2 -43.91479296466737 -84.3120977468896 28.6241 0.1144 10977 +11137 2 -43.06667071615388 -83.09608764018614 28.5566 0.1144 11136 +11138 2 -42.74250120946358 -81.97479681920456 28.5317 0.1144 11137 +11139 2 -42.93574761430568 -80.79693055825763 28.5746 0.1144 11138 +11140 2 -42.90048536900048 -79.70419365862534 28.658 0.1144 11139 +11141 2 -42.80651835448265 -78.63630392678535 28.7608 0.1144 11140 +11142 2 -42.73610359671193 -77.5573239696444 28.8935 0.1144 11141 +11143 2 -42.36919130485569 -76.67323668418267 29.0797 0.1144 11142 +11144 2 -42.01068967753778 -75.66248920853528 29.3241 0.1144 11143 +11145 2 -42.10266781000229 -74.55848588588617 29.5725 0.1144 11144 +11146 2 -42.00694087325235 -73.28901910376177 29.7965 0.1144 11145 +11147 2 -41.37909489803863 -71.95878179221879 29.9583 0.1144 11146 +11148 2 -40.86869341324507 -71.19007123232576 30.0521 0.1144 11147 +11149 2 -41.21520115703089 -70.10322776391574 30.0454 0.1144 11148 +11150 2 -42.19971454821598 -69.8425525089809 29.9737 0.1144 11149 +11151 2 -43.166352759466776 -69.24170692840062 29.8998 0.1144 11150 +11152 2 -43.94536227506268 -68.29778191999738 29.8416 0.1144 11151 +11153 2 -44.85312421273176 -68.07277204819343 29.8435 0.1144 11152 +11154 2 -45.893853170986745 -67.21193964437357 29.8701 0.1144 11153 +11155 2 -46.97256272703174 -66.43635441789743 29.8396 0.1144 11154 +11156 2 -48.10686897222055 -66.84026792727543 29.7746 0.1144 11155 +11157 2 -49.208271362971544 -66.14277388114954 29.7021 0.1144 11156 +11158 2 -50.30723279183621 -65.41431623205682 29.6114 0.1144 11157 +11159 2 -51.44515738028548 -65.92948023617572 29.4764 0.1144 11158 +11160 2 -52.58782915133936 -65.46036488692067 29.3633 0.1144 11159 +11161 2 -53.72962506315953 -65.30504722830227 29.2874 0.1144 11160 +11162 2 -54.87393351001775 -65.5522630888507 29.2407 0.1144 11161 +11163 2 -56.01701902838066 -65.18245743572113 29.2194 0.1144 11162 +11164 2 -57.15505965380329 -65.3895383456921 29.2233 0.1144 11163 +11165 2 -58.22604769973961 -65.77629881274963 29.2387 0.1144 11164 +11166 2 -59.15135887273638 -66.08272556426371 29.2116 0.1144 11165 +11167 2 -60.21008475362784 -66.5894945049027 29.3023 0.1144 11166 +11168 2 -61.32576240686569 -66.85403621197322 29.4613 0.1144 11167 +11169 2 -62.21849107042938 -67.21768153237771 29.601 0.1144 11168 +11170 2 -63.111580831400715 -67.82021629619035 29.7265 0.1144 11169 +11171 2 -64.00373347102429 -68.89383627166787 29.8421 0.1144 11170 +11172 2 -64.89690842484548 -69.26039805186062 29.9482 0.1144 11171 +11173 2 -65.78994582000408 -69.61000419556784 30.0367 0.1144 11172 +11174 2 -66.25069076512347 -68.54420397776062 30.3103 0.1144 11173 +11175 2 -66.68685762926712 -67.85798809180099 30.5222 0.1144 11174 +11176 2 -67.0537979426098 -66.84967376592583 30.6978 0.1144 11175 +11177 2 -67.33261690415475 -65.6544612855999 30.8358 0.1144 11176 +11178 2 -67.45382780319912 -64.49412250188034 30.9448 0.1144 11177 +11179 2 -67.42468143142109 -63.37327835537938 31.0456 0.1144 11178 +11180 2 -67.46235347559474 -62.23233596099273 31.1517 0.1144 11179 +11181 2 -67.71520274079406 -61.04530144763253 31.2449 0.1144 11180 +11182 2 -68.17199798838429 -59.85201210760729 31.3138 0.1144 11181 +11183 2 -68.83991361879902 -58.70508457540883 31.3634 0.1144 11182 +11184 2 -69.69205934623356 -57.67744656491042 31.3956 0.1144 11183 +11185 2 -70.60053796808833 -57.46011513955974 31.3986 0.1144 11184 +11186 2 -71.44960814071757 -56.44291158884502 31.3813 0.1144 11185 +11187 2 -72.27454211298341 -55.40340247436844 31.3922 0.1144 11186 +11188 2 -73.15313596152161 -54.40031115027393 31.4779 0.1144 11187 +11189 2 -74.18638306614702 -54.63591675309582 31.7106 0.1144 11188 +11190 2 -74.92899402637804 -55.21763631697583 32.0365 0.1144 11189 +11191 2 -75.67403432939587 -56.467976386018215 32.361 0.1144 11190 +11192 2 -76.21744679161422 -57.4130465457712 32.6855 0.1144 11191 +11193 2 -76.32786454365927 -58.50158850511732 32.9546 0.1144 11192 +11194 2 -76.67512632012988 -59.47583530125986 33.1601 0.1144 11193 +11195 2 -77.45956456056457 -60.01963060100249 33.315 0.1144 11194 +11196 2 -78.49466489504728 -60.72354510153556 33.4636 0.1144 11195 +11197 2 -79.5607500933621 -61.02340160923273 33.689 0.1144 11196 +11198 2 -80.6879503030117 -60.76733752243166 33.9618 0.1144 11197 +11199 2 -81.7110887874954 -60.59110274405185 34.1029 0.1144 11198 +11200 2 -81.11055177016274 -58.90089416902923 34.1737 0.1144 11199 +11201 2 -80.80896257123614 -57.901993280135095 34.1499 0.1144 11200 +11202 2 -80.42953003204293 -56.95552530488898 34.1144 0.1144 11201 +11203 2 -79.90537416076542 -56.13030821214823 34.06 0.1144 11202 +11204 2 -79.6830828784145 -55.09233907803016 34.0267 0.1144 11203 +11205 2 -79.43276865911002 -54.0531017718706 34.0052 0.1144 11204 +11206 2 -78.96199957704142 -52.94502658684317 33.9522 0.1144 11205 +11207 2 -79.01305500770172 -51.83382508213966 33.094 0.1144 11206 +11208 2 -81.86297082270524 -60.713353226943106 34.2026 0.1144 11199 +11209 2 -82.98916382960284 -60.118851627503695 34.2342 0.1144 11208 +11210 2 -84.11639656451588 -59.59855712910732 34.2552 0.1144 11209 +11211 2 -85.21771436596428 -60.35474729594788 34.3291 0.1144 11210 +11212 2 -86.21768821401209 -60.54807709477252 34.571 0.1144 11211 +11213 2 -87.05664337337676 -60.82696549324949 35.8103 0.1144 11212 +11214 2 -88.12326565441768 -61.082477478326524 36.5907 0.1144 11213 +11215 2 -89.24049889848145 -60.83172645238819 37.1487 0.1144 11214 +11216 2 -90.35110632528502 -60.66467120054069 37.5754 0.1144 11215 +11217 2 -91.46714576846705 -61.35202072050203 37.8742 0.1144 11216 +11218 2 -92.58830849643265 -61.181562754954356 38.0554 0.1144 11217 +11219 2 -93.71062327227851 -61.01089685288002 38.1783 0.1144 11218 +11220 2 -94.83280831444165 -61.700726163679064 38.3076 0.1144 11219 +11221 2 -95.95490816375508 -61.53010980315629 38.4412 0.1144 11220 +11222 2 -97.0760708917207 -61.59621028503718 38.5798 0.1144 11221 +11223 2 -98.19937515472706 -62.05281591832355 38.7251 0.1144 11222 +11224 2 -99.32053788269269 -61.85770701270847 38.8802 0.1144 11223 +11225 2 -100.4416482448456 -62.24023899159761 39.0496 0.1144 11224 +11226 2 -101.5622349488711 -62.407493033778515 39.2386 0.1144 11225 +11227 2 -102.68201426523153 -63.121933710187285 39.4503 0.1144 11226 +11228 2 -103.80223987184935 -62.94700146925326 39.685 0.1144 11227 +11229 2 -104.86333934404318 -62.98106941243098 40.014 0.1144 11228 +11230 2 -105.54351203732111 -62.239798252679506 40.6137 0.1144 11229 +11231 2 -106.19183021069951 -61.43142483980559 41.0808 0.1144 11230 +11232 2 -106.86866687551851 -60.29770257643941 41.4865 0.1144 11231 +11233 2 -107.26053605620694 -59.157697171764326 41.9028 0.1144 11232 +11234 2 -107.24487677856759 -58.04444176421618 42.4186 0.1144 11233 +11235 2 -107.37961000783424 -56.91283074906847 43.0041 0.1144 11234 +11236 2 -108.05873776424092 -55.86870720200458 43.5434 0.1144 11235 +11237 2 -108.92227831500313 -55.28914565308372 43.9874 0.1144 11236 +11238 2 -109.74858167072817 -54.61743719862264 44.3044 0.1144 11237 +11239 2 -110.56335736785975 -53.571462395664746 44.4816 0.1144 11238 +11240 2 -111.49169463062609 -52.63968236289977 44.5329 0.1144 11239 +11241 2 -112.58035332999113 -52.77712590178967 44.4662 0.1144 11240 +11242 2 -113.71467429586258 -52.30638098402788 44.3215 0.1144 11241 +11243 2 -114.83320304786166 -51.76775528990984 44.1501 0.1144 11242 +11244 2 -115.925886735016 -51.837943985320834 44.0082 0.1144 11243 +11245 2 -117.02693112994237 -51.21869286576264 43.9172 0.1144 11244 +11246 2 -118.13714672188914 -50.61355182391537 43.8682 0.1144 11245 +11247 2 -119.25470621803986 -50.78669204369848 43.8253 0.1144 11246 +11248 2 -120.38032009941432 -50.256301617428534 43.7402 0.1144 11247 +11249 2 -121.47584177448282 -49.795174476203904 43.5991 0.1144 11248 +11250 2 -122.50254354327913 -49.57232147450308 43.4157 0.1144 11249 +11251 2 -123.50797043252165 -48.762062433647394 43.2034 0.1144 11250 +11252 2 -124.51400617274129 -47.948752649794976 42.9758 0.1144 11251 +11253 2 -125.53817558363527 -47.8624678820703 42.7543 0.1144 11252 +11254 2 -126.59030246680106 -47.13773644562948 42.5541 0.1144 11253 +11255 2 -127.6448765150193 -46.43757331444689 42.3601 0.1144 11254 +11256 2 -128.69447104028274 -46.375022150909494 42.1602 0.1144 11255 +11257 2 -129.74138393518552 -45.64459421244803 41.956 0.1144 11256 +11258 2 -130.80895975708188 -44.98780977167614 41.7662 0.1144 11257 +11259 2 -131.90577965090574 -45.025498372875475 41.6122 0.1144 11258 +11260 2 -133.0174169921243 -44.67512043456828 41.491 0.1144 11259 +11261 2 -134.13724155383227 -44.612306424672916 41.3907 0.1144 11260 +11262 2 -135.2595625448224 -44.126480825101766 41.302 0.1144 11261 +11263 2 -136.38258619185217 -44.00237609094957 41.216 0.1144 11262 +11264 2 -137.50557701184488 -43.77550316354446 41.1242 0.1144 11263 +11265 2 -138.6282919272797 -43.31041296722814 41.022 0.1144 11264 +11266 2 -139.75034562592464 -43.355240493834415 40.9094 0.1144 11265 +11267 2 -140.86171567479803 -42.92047234009586 40.7756 0.1144 11266 +11268 2 -141.9500286899747 -42.32810822030657 40.6039 0.1144 11267 +11269 2 -143.04551753800618 -42.35077871503141 40.4118 0.1144 11268 +11270 2 -144.07315332656714 -41.640138370048405 40.2206 0.1144 11269 +11271 2 -145.0280325154995 -41.38546078955729 40.0221 0.1144 11270 +11272 2 -146.08161638402066 -40.74383518246311 39.7692 0.1144 11271 +11273 2 -147.16023454404973 -40.14026465230837 39.5139 0.1144 11272 +11274 2 -148.28342076948417 -40.472378605106506 39.2059 0.1144 11273 +11275 2 -149.1225976740728 -41.00057573349231 38.7598 0.1144 11274 +11276 2 -149.86573159989456 -41.66798261871061 38.1872 0.1144 11275 +11277 2 -150.8241793881055 -42.01100473012274 37.0205 0.1144 11276 +11278 2 -104.18548727270748 -63.66213481553104 38.388 0.1144 11229 +11279 2 -103.42651709476029 -64.62750075576314 37.2999 0.1144 11278 +11280 2 -103.01325529871984 -65.8175486680443 36.8141 0.1144 11279 +11281 2 -102.735103757131 -67.00831262782917 36.346 0.1144 11280 +11282 2 -102.43204937422684 -68.20713784764311 35.9251 0.1144 11281 +11283 2 -102.0916626061498 -69.05622969670374 35.5928 0.1144 11282 +11284 2 -101.58984099303413 -69.63838155436463 35.3542 0.1144 11283 +11285 2 -100.91050720639639 -70.80191274364621 35.1915 0.1144 11284 +11286 2 -100.15532515956886 -71.75851142417288 35.065 0.1144 11285 +11287 2 -99.37257577079448 -72.04173795377355 34.9465 0.1144 11286 +11288 2 -98.52525870170592 -72.92903034622368 34.7206 0.1144 11287 +11289 2 -98.23689061263487 -72.12768988112724 34.2966 0.1144 11288 +11290 2 -97.83200523421677 -71.28139192639044 34.0631 0.1144 11289 +11291 2 -97.14742962264371 -70.61321647961157 33.9688 0.1144 11290 +11292 2 -96.41871921977177 -69.16531075862702 33.094 0.1144 11291 +11293 2 -66.84419973031218 -70.6729625959565 29.9477 0.1144 11173 +11294 2 -67.87680294297623 -70.74152330935242 30.1784 0.1144 11293 +11295 2 -68.9352646331056 -70.74014653963707 30.3173 0.1144 11294 +11296 2 -70.04768773362578 -71.52845843460207 30.4763 0.1144 11295 +11297 2 -71.18689512761118 -71.14343542746313 30.6575 0.1144 11296 +11298 2 -72.32516850183201 -70.83965134267473 30.8829 0.1144 11297 +11299 2 -73.45892915875628 -71.4093408336217 31.1651 0.1144 11298 +11300 2 -74.58688198121169 -71.67199688139351 31.5017 0.1144 11299 +11301 2 -75.71073934371074 -71.80143033962206 31.8825 0.1144 11300 +11302 2 -76.83308356092188 -71.51643076638341 32.2935 0.1144 11301 +11303 2 -77.95350668025438 -72.07696168532594 32.7194 0.1144 11302 +11304 2 -79.06318008729328 -72.00309634769978 33.1531 0.1144 11303 +11305 2 -80.15777075519092 -71.83512088462078 33.5919 0.1144 11304 +11306 2 -81.24522254282725 -72.7406711550316 34.0225 0.1144 11305 +11307 2 -82.34168435183732 -72.58213830896358 34.3974 0.1144 11306 +11308 2 -83.43180374168819 -72.47457875468177 34.659 0.1144 11307 +11309 2 -84.50399620131743 -73.4611047061596 34.8166 0.1144 11308 +11310 2 -85.60548308040354 -73.16668538352796 34.918 0.1144 11309 +11311 2 -86.57203809940309 -72.31164425354987 34.9933 0.1144 11310 +11312 2 -87.07287194186821 -71.4048948017881 35.0521 0.1144 11311 +11313 2 -87.31516900748848 -70.47653680424463 35.1305 0.1144 11312 +11314 2 -87.68998850226221 -69.72904667198267 35.3217 0.1144 11313 +11315 2 -88.1931935269831 -68.54529543420009 35.6563 0.1144 11314 +11316 2 -88.77559035158095 -67.35762342783744 35.9038 0.1144 11315 +11317 2 -89.45267958806241 -66.24323529137084 35.3377 0.1144 11316 +11318 2 -26.983438546923153 -191.14945477995087 24.5742 0.1144 10769 +11319 2 -28.109305692496676 -191.12125051518439 24.4199 0.1144 11318 +11320 2 -29.216985824957973 -190.0133305265078 24.2526 0.1144 11319 +11321 2 -28.80051732055061 -189.13804157389967 23.8267 0.1144 11320 +11322 2 -28.654409369766654 -187.9856270497089 23.4966 0.1144 11321 +11323 2 -28.92026351022703 -186.58063256319176 23.1655 0.1144 11322 +11324 2 -29.469123290226193 -185.07656331965546 22.8208 0.1144 11323 +11325 2 -30.084624204774755 -184.01802308473964 22.4349 0.1144 11324 +11326 2 -30.74292165537517 -183.44258427765743 22.0098 0.1144 11325 +11327 2 -31.503173928636997 -182.52485812459398 21.6051 0.1144 11326 +11328 2 -32.35095139314032 -181.10378231563976 21.2697 0.1144 11327 +11329 2 -33.20981564191307 -179.9074002978158 21.0305 0.1144 11328 +11330 2 -34.095497721409714 -180.1584713057416 20.8641 0.1144 11329 +11331 2 -35.10295451836467 -178.89619858422347 20.7196 0.1144 11330 +11332 2 -36.22076658617796 -177.89216758339512 20.5493 0.1144 11331 +11333 2 -37.3451260970932 -178.82667377822497 20.3342 0.1144 11332 +11334 2 -38.466045854212396 -178.00408126434218 20.0285 0.1144 11333 +11335 2 -39.591599467782956 -178.97831193900947 19.5918 0.1144 11334 +11336 2 -40.71068913227644 -178.35445780571848 19.1163 0.1144 11335 +11337 2 -41.820850268822525 -178.34707585102205 18.7048 0.1144 11336 +11338 2 -42.93198066121687 -179.24260288408232 18.3739 0.1144 11337 +11339 2 -44.046274902849476 -179.129011166621 18.1194 0.1144 11338 +11340 2 -45.16409719271107 -179.35455923483192 17.947 0.1144 11339 +11341 2 -46.28096523149571 -179.646905099308 17.8766 0.1144 11340 +11342 2 -47.331582976277645 -179.82986359416066 17.905 0.1144 11341 +11343 2 -48.318363048562375 -180.4850395547953 17.9786 0.1144 11342 +11344 2 -49.38133125282204 -181.50908184796384 18.0349 0.1144 11343 +11345 2 -50.5067332025728 -180.97570299767585 18.0413 0.1144 11344 +11346 2 -51.6443627738215 -181.17409605269793 17.9948 0.1144 11345 +11347 2 -52.78484305306844 -181.43737552651675 17.9087 0.1144 11346 +11348 2 -53.914937108790966 -180.46545752898936 17.8006 0.1144 11347 +11349 2 -55.04690230562589 -181.23769192243685 17.6715 0.1144 11348 +11350 2 -56.185791047741745 -180.55004048956204 17.5116 0.1144 11349 +11351 2 -57.32308455330305 -179.69216542042142 17.3165 0.1144 11350 +11352 2 -58.44535248594387 -180.58854433210578 17.0859 0.1144 11351 +11353 2 -59.55129362002185 -179.6878101094564 16.8242 0.1144 11352 +11354 2 -60.65161822917945 -178.933026581788 16.5388 0.1144 11353 +11355 2 -61.77822739243258 -179.4303099747447 16.2529 0.1144 11354 +11356 2 -62.91642478385663 -178.87872698804128 15.9792 0.1144 11355 +11357 2 -64.03315837753998 -178.1862390054942 15.6762 0.1144 11356 +11358 2 -65.1553732518314 -179.01273750249192 15.3443 0.1144 11357 +11359 2 -66.28688425641782 -178.3916028060312 15.0151 0.1144 11358 +11360 2 -67.42060726821201 -177.71222192854165 14.6814 0.1144 11359 +11361 2 -68.5554087541362 -178.81515675178562 14.3369 0.1144 11360 +11362 2 -69.68751971339842 -178.6837966803267 13.975 0.1144 11361 +11363 2 -70.71942315882148 -178.73748223726795 13.5886 0.1144 11362 +11364 2 -71.50652608984436 -177.26332100535393 13.2119 0.1144 11363 +11365 2 -72.33893911593037 -175.78934103104905 12.874 0.1144 11364 +11366 2 -73.03812913443306 -174.95994763693147 12.5685 0.1144 11365 +11367 2 -72.8352025603202 -173.37192005063218 12.257 0.1144 11366 +11368 2 -72.61064000924587 -172.0849373609758 11.7869 0.1144 11367 +11369 2 -72.98880235117014 -170.89128377436606 11.4035 0.1144 11368 +11370 2 -73.38219698878261 -170.1359778038049 11.0723 0.1144 11369 +11371 2 -73.73991304675563 -169.21904044909704 10.7853 0.1144 11370 +11372 2 -74.02782652998752 -167.89594113357043 10.5619 0.1144 11371 +11373 2 -74.31471769902186 -166.56901658590095 10.3967 0.1144 11372 +11374 2 -74.6857066171378 -165.10745508784723 10.2426 0.1144 11373 +11375 2 -75.07287277726962 -163.59863282106838 10.073 0.1144 11374 +11376 2 -74.68260602546955 -162.66995909061237 9.5357 0.1144 11375 +11377 2 -29.638801253861388 -189.72312602463074 24.6404 0.1144 11320 +11378 2 -30.704178978043544 -190.9110157957969 25.0866 0.1144 11377 +11379 2 -31.706023967203762 -191.27124286280042 25.2524 0.1144 11378 +11380 2 -32.556551941519984 -191.64265349140078 25.5386 0.1144 11379 +11381 2 -32.89838480319521 -193.11779684763337 25.9656 0.1144 11380 +11382 2 -32.55945241632783 -193.36926763708715 26.2387 0.1144 11381 +11383 2 -31.69031316291094 -194.56275628621262 26.8328 0.1144 11382 +11384 2 -30.69529132574695 -195.48495655065705 27.5148 0.1144 11383 +11385 2 -29.750501324854895 -195.60340017531118 28.3231 0.1144 11384 +11386 2 -29.398183746001706 -196.40962946966164 29.2331 0.1144 11385 +11387 2 -28.89023295341248 -197.6760477427471 30.2896 0.1144 11386 +11388 2 -28.063617148984008 -198.94325119580247 31.4986 0.1144 11387 +11389 2 -27.242406642367015 -199.8045823692675 32.8294 0.1144 11388 +11390 2 -26.223214452055714 -199.16298853914813 33.9982 0.1144 11389 +11391 2 -25.170667707404007 -199.1062239742546 34.9073 0.1144 11390 +11392 2 -24.091831608248768 -199.32723439094764 35.6479 0.1144 11391 +11393 2 -22.998917670332077 -198.63288817670883 36.2779 0.1144 11392 +11394 2 -21.900324939092528 -198.75043486190611 36.9435 0.1144 11393 +11395 2 -21.122279275389545 -199.54170122688117 38.1402 0.1144 11394 +11396 2 -20.759620629370133 -200.81023135695858 39.1891 0.1144 11395 +11397 2 -19.802793008466622 -200.88497153015842 40.1652 0.1144 11396 +11398 2 -18.78390095522255 -201.62313673486983 41.0659 0.1144 11397 +11399 2 -17.796450260431243 -202.2920374235478 41.86 0.1144 11398 +11400 2 -16.767766824178807 -202.64290208024187 42.6034 0.1144 11399 +11401 2 -15.959634766573146 -202.80188711030075 43.507 0.1144 11400 +11402 2 -15.723031907494843 -204.09530970305076 44.4811 0.1144 11401 +11403 2 -15.537212599108074 -205.39030709368964 45.4922 0.1144 11402 +11404 2 -14.836235324280679 -206.7055772495989 46.426 0.1144 11403 +11405 2 -14.122972267424444 -208.01044568775967 47.6176 0.1144 11404 +11406 2 -14.746475011427208 -208.4025413285165 48.68 0.1144 11405 +11407 2 -15.478310925870701 -208.77366939968067 49.6966 0.1144 11406 +11408 2 -15.893094496532427 -209.45788851803627 51.1532 0.1144 11407 +11409 2 -16.219621666747784 -209.34075147649486 53.3649 0.1144 11408 +11410 2 -15.848030273092576 -208.40186272499415 54.9371 0.1144 11409 +11411 2 -15.168619598337187 -208.86810246827946 56.6292 0.1144 11410 +11412 2 -14.72957810743759 -210.12878423597857 58.0698 0.1144 11411 +11413 2 -14.242311449779322 -211.4614026869084 59.3608 0.1144 11412 +11414 2 -13.944410485560752 -212.78476986230868 60.515 0.1144 11413 +11415 2 -13.754129109180212 -214.08346898389598 61.5852 0.1144 11414 +11416 2 -13.071984366947149 -214.47339117538007 62.5716 0.1144 11415 +11417 2 -12.31235807439164 -214.99445315179975 63.2064 0.1144 11416 +11418 2 -11.564220410226312 -216.45826961174328 63.6345 0.1144 11417 +11419 2 -10.630401866851841 -217.23550006418225 63.973 0.1144 11418 +11420 2 -9.663011735331793 -217.38421388414824 64.3552 0.1144 11419 +11421 2 -8.761895437787217 -218.5909010264613 65.0661 0.1144 11420 +11422 2 -33.525947167523526 -194.12965769531547 25.1161 0.1144 11381 +11423 2 -34.57743395284754 -193.62194524810167 24.1423 0.1144 11422 +11424 2 -35.37225860676338 -192.30572538119148 23.6133 0.1144 11423 +11425 2 -35.84009378343984 -190.89399953043207 23.2123 0.1144 11424 +11426 2 -36.30756786270858 -190.21405298704377 22.8147 0.1144 11425 +11427 2 -36.840302766504635 -189.72741095256075 22.4353 0.1144 11426 +11428 2 -37.744450770558274 -188.36016667332646 21.84 0.1144 11427 +11429 2 -22.495449300907936 -221.78395874323883 31.4779 0.1144 10744 +11430 2 -23.58554206118103 -221.32350759805854 31.3491 0.1144 11429 +11431 2 -24.716709790625487 -221.2758942665003 31.2964 0.1144 11430 +11432 2 -25.859005051052492 -221.23511562120495 31.2542 0.1144 11431 +11433 2 -26.96929662579589 -221.5351347882583 31.1951 0.1144 11432 +11434 2 -28.004053472352425 -220.27863841579426 31.0447 0.1144 11433 +11435 2 -29.108009446628245 -220.08116464437023 30.9532 0.1144 11434 +11436 2 -30.23318554328361 -220.83366450489936 30.8538 0.1144 11435 +11437 2 -30.975468831548696 -219.26008025530996 30.4637 0.1144 11436 +11438 2 -31.98913800022845 -218.77826140555374 29.9748 0.1144 11437 +11439 2 -33.03198276926729 -219.02730228762866 29.318 0.1144 11438 +11440 2 -33.928765347427614 -217.7241688729991 28.3864 0.1144 11439 +11441 2 -34.89879294726035 -216.6348507599269 27.5094 0.1144 11440 +11442 2 -35.948041397572425 -217.48691095685777 26.6495 0.1144 11441 +11443 2 -36.91502387827538 -216.60786802021693 25.5596 0.1144 11442 +11444 2 -37.76144937313738 -216.826783370151 24.8412 0.1144 11443 +11445 2 -37.91204569689155 -215.67607124476623 24.1052 0.1144 11444 +11446 2 -38.01225790502865 -214.39822250293403 23.3382 0.1144 11445 +11447 2 -37.04856500034255 -212.58681301414538 22.4069 0.1144 11446 +11448 2 -36.29448764363218 -212.15033409211006 21.743 0.1144 11447 +11449 2 -35.885011156074356 -210.872804886002 21.1375 0.1144 11448 +11450 2 -35.51189469625808 -208.96944664039955 20.5285 0.1144 11449 +11451 2 -35.00351872721693 -207.75251878779807 19.6437 0.1144 11450 +11452 2 -34.31156227653125 -207.3310577882197 18.7267 0.1144 11451 +11453 2 -33.89174782339032 -206.46260638073232 18.1373 0.1144 11452 +11454 2 -33.565199623216074 -205.4762574566218 17.5729 0.1144 11453 +11455 2 -32.93390468415318 -204.58178732359278 16.8791 0.1144 11454 +11456 2 -31.922719420335113 -203.2009522862235 16.2261 0.1144 11455 +11457 2 -30.80708451440904 -203.86789318889137 15.6958 0.1144 11456 +11458 2 -29.69293913678679 -203.33684368481266 15.1581 0.1144 11457 +11459 2 -28.629467789800643 -202.91493221400896 14.5722 0.1144 11458 +11460 2 -27.637552121096178 -203.00934423480413 14.0411 0.1144 11459 +11461 2 -26.915399756452473 -201.97199028289907 13.4914 0.1144 11460 +11462 2 -26.20337043085945 -200.2795191866279 12.8708 0.1144 11461 +11463 2 -26.056088502058103 -199.23202515456273 11.2182 0.1144 11462 +11464 2 -38.48869676032366 -213.3793303046356 22.4912 0.1144 11446 +11465 2 -39.17166430344112 -211.91555517223168 21.8103 0.1144 11464 +11466 2 -39.870278298003726 -210.42269772462606 21.425 0.1144 11465 +11467 2 -40.4347167504161 -209.0500773591158 20.9618 0.1144 11466 +11468 2 -40.57939091923808 -207.80983568731506 20.4691 0.1144 11467 +11469 2 -40.32372686951804 -206.54938835352124 20.0568 0.1144 11468 +11470 2 -40.63783140355666 -205.8089009800899 19.7394 0.1144 11469 +11471 2 -41.58485192645891 -206.22459104678364 19.7239 0.1144 11470 +11472 2 -41.54247854343279 -205.11831456389055 19.9154 0.1144 11471 +11473 2 -41.06519966339229 -203.25609602006074 20.1616 0.1144 11472 +11474 2 -40.52678695544108 -201.59051232590062 20.392 0.1144 11473 +11475 2 -39.76797203462705 -201.15492514330978 20.57 0.1144 11474 +11476 2 -39.01334637883198 -200.70780437280018 20.679 0.1144 11475 +11477 2 -39.17803526203038 -199.33327948659058 20.7539 0.1144 11476 +11478 2 -30.890498537600863 -220.39707603778493 32.2767 0.1144 11436 +11479 2 -31.99047266216199 -220.2572081189901 32.9162 0.1144 11478 +11480 2 -33.062278495790395 -220.19339588556528 33.1834 0.1144 11479 +11481 2 -34.11947870697348 -218.976589871135 33.4572 0.1144 11480 +11482 2 -35.24320362496972 -218.7659813412596 33.7798 0.1144 11481 +11483 2 -36.33702765191539 -219.52381555326645 34.1004 0.1144 11482 +11484 2 -37.41453780745981 -220.53484763456186 34.5072 0.1144 11483 +11485 2 -38.50601497364836 -220.26823970165321 35.3377 0.1144 11484 +11486 2 11.44090617480336 -340.19000424949377 44.2814 0.1144 10304 +11487 2 12.415512376476073 -339.8386055076741 44.3299 0.1144 11486 +11488 2 13.389096263951231 -339.79854460493414 44.401 0.1144 11487 +11489 2 14.367850291393083 -338.929850109671 44.5701 0.1144 11488 +11490 2 15.408042468695541 -338.15772718726856 44.8658 0.1144 11489 +11491 2 16.49357315845321 -337.2890636252831 45.2194 0.1144 11490 +11492 2 17.55922058402703 -336.9302495102623 45.6257 0.1144 11491 +11493 2 18.535675002364755 -337.00201491598114 45.9883 0.1144 11492 +11494 2 19.45506642947587 -336.237895567224 46.3369 0.1144 11493 +11495 2 20.505699587477018 -335.2672944677351 46.6819 0.1144 11494 +11496 2 21.58766940196862 -334.5817068318307 46.9848 0.1144 11495 +11497 2 22.506879422120882 -333.62835443333995 47.2528 0.1144 11496 +11498 2 23.175021425895906 -333.05862708624716 47.525 0.1144 11497 +11499 2 23.499428091029493 -332.0569746057849 47.784 0.1144 11498 +11500 2 23.355505842476788 -330.6955485792244 47.9755 0.1144 11499 +11501 2 22.932928395050794 -329.18800992931403 48.0981 0.1144 11500 +11502 2 22.447184802955107 -327.66159832935153 48.1729 0.1144 11501 +11503 2 22.03338221905814 -326.1546283124119 48.2101 0.1144 11502 +11504 2 21.891636741629753 -324.77143934566914 48.2188 0.1144 11503 +11505 2 21.971978410809747 -323.5270139308777 48.2132 0.1144 11504 +11506 2 21.92058721623571 -322.19272071080127 48.204 0.1144 11505 +11507 2 21.760698858079884 -320.7884337590778 48.1953 0.1144 11506 +11508 2 21.71202212090359 -319.46786554791134 48.1698 0.1144 11507 +11509 2 21.71644464927867 -318.15152652806574 48.1242 0.1144 11508 +11510 2 21.81999701657378 -316.9246085613336 48.0931 0.1144 11509 +11511 2 22.15496449349905 -315.91748165259605 48.1043 0.1144 11510 +11512 2 22.258117425719817 -314.7064836422726 48.1816 0.1144 11511 +11513 2 22.01096746924417 -313.27358725785086 48.347 0.1144 11512 +11514 2 21.787694938303147 -311.8773733079359 48.5666 0.1144 11513 +11515 2 21.426955691337476 -310.708061766388 48.8863 0.1144 11514 +11516 2 21.09926575946328 -310.06688718375284 49.2786 0.1144 11515 +11517 2 21.34317319591139 -308.3191690172822 49.6863 0.1144 11516 +11518 2 21.728716098002188 -306.942251707903 50.1315 0.1144 11517 +11519 2 21.9060053243483 -305.80870724991183 50.6573 0.1144 11518 +11520 2 22.25202745104241 -304.836891208384 51.1795 0.1144 11519 +11521 2 22.621980061620434 -303.901842285196 51.8006 0.1144 11520 +11522 2 22.64053348710634 -302.659654613861 52.4854 0.1144 11521 +11523 2 22.290763697059717 -301.2159108493777 53.1437 0.1144 11522 +11524 2 22.242660574777034 -299.9074351130109 53.6637 0.1144 11523 +11525 2 22.273642851583986 -298.64246230490767 54.0246 0.1144 11524 +11526 2 22.06743231819378 -297.21605082028464 54.2595 0.1144 11525 +11527 2 21.97981393114398 -295.8631061905762 54.39 0.1144 11526 +11528 2 21.906360984751913 -294.5206624628083 54.453 0.1144 11527 +11529 2 21.87741143829453 -293.2032407019956 54.486 0.1144 11528 +11530 2 22.020845678394025 -292.01719493096584 54.5168 0.1144 11529 +11531 2 22.447995423526365 -291.11376375376335 54.56 0.1144 11530 +11532 2 23.067371472686247 -290.45161883472593 54.621 0.1144 11531 +11533 2 23.753278130051854 -289.6829355799919 54.7075 0.1144 11532 +11534 2 24.25003093661215 -287.5452595444555 54.8237 0.1144 11533 +11535 2 25.09984222674268 -286.8757137491959 54.9716 0.1144 11534 +11536 2 25.515022521658565 -286.5200740966733 53.9596 0.1144 11535 +11537 2 25.691483152402085 -285.2062864910378 53.496 0.1144 11536 +11538 2 25.603194936349666 -283.98208626257514 53.237 0.1144 11537 +11539 2 25.561818947617752 -282.7036988173778 52.8797 0.1144 11538 +11540 2 25.491673612292686 -281.44718390599496 52.4454 0.1144 11539 +11541 2 25.336967107899397 -280.0755880916463 52.0209 0.1144 11540 +11542 2 25.40465948859638 -278.875887339539 51.613 0.1144 11541 +11543 2 25.582183180250624 -277.48380662248337 51.0908 0.1144 11542 +11544 2 25.33366453285241 -276.37172843499826 50.4795 0.1144 11543 +11545 2 25.19634037670454 -275.06430735757755 49.8358 0.1144 11544 +11546 2 25.183175532891482 -273.81156918165624 49.0571 0.1144 11545 +11547 2 25.75375079980057 -272.3778416951135 48.2283 0.1144 11546 +11548 2 26.64600714707632 -271.78681672568865 47.5269 0.1144 11547 +11549 2 27.314502328582904 -270.6562047454125 46.8902 0.1144 11548 +11550 2 28.168966996255577 -270.4138062877438 46.3243 0.1144 11549 +11551 2 29.219062467983264 -269.45394799679787 45.8265 0.1144 11550 +11552 2 30.24346994264144 -269.18352722378745 45.3522 0.1144 11551 +11553 2 30.73858366435094 -267.700816423456 44.9422 0.1144 11552 +11554 2 31.472440276453852 -266.47178415354654 44.5141 0.1144 11553 +11555 2 32.55227406653431 -266.83845854272545 44.1062 0.1144 11554 +11556 2 33.47313479063699 -266.20583718623965 43.633 0.1144 11555 +11557 2 34.021221838334995 -264.7555466495124 43.083 0.1144 11556 +11558 2 34.72229883673808 -263.65768879617656 42.4074 0.1144 11557 +11559 2 35.38567073346111 -263.1233408573601 41.69 0.1144 11558 +11560 2 35.9087635438278 -261.879359469 41.0903 0.1144 11559 +11561 2 36.62219479582842 -260.1830122748721 40.6949 0.1144 11560 +11562 2 37.67892290350785 -260.32485566069016 40.3572 0.1144 11561 +11563 2 38.70631522949199 -260.52503539036417 40.0456 0.1144 11562 +11564 2 39.62031297789123 -258.7570762116833 39.7141 0.1144 11563 +11565 2 40.56783646554133 -258.4812466916407 39.3364 0.1144 11564 +11566 2 41.6313837953242 -257.60757318583376 38.9228 0.1144 11565 +11567 2 42.69253322428423 -257.5172266706171 38.4768 0.1144 11566 +11568 2 43.765655986569726 -257.63861445338455 37.8577 0.1144 11567 +11569 2 44.78353725572647 -256.3042426593345 36.8553 0.1144 11568 +11570 2 45.819554888692736 -256.4028924448306 36.1785 0.1144 11569 +11571 2 46.820260834145486 -255.4088904043773 35.4637 0.1144 11570 +11572 2 47.82626975483063 -255.11782310368756 34.746 0.1144 11571 +11573 2 48.86251944405849 -255.132283022911 34.0466 0.1144 11572 +11574 2 49.799438366316835 -254.3086662370264 33.3194 0.1144 11573 +11575 2 50.639461688773864 -253.64107051632396 32.5508 0.1144 11574 +11576 2 51.4125105218142 -252.41487540680032 31.7562 0.1144 11575 +11577 2 52.015291787529534 -250.9625869812383 30.9548 0.1144 11576 +11578 2 52.48282103756314 -250.17606829300473 30.1644 0.1144 11577 +11579 2 52.99483558117697 -249.46283798595113 29.3642 0.1144 11578 +11580 2 53.76441562750384 -248.98313239623008 28.4945 0.1144 11579 +11581 2 54.743831972720116 -248.0500250717484 27.6159 0.1144 11580 +11582 2 55.74173275729581 -247.60792095915832 26.8501 0.1144 11581 +11583 2 56.7027228236837 -247.23200837334048 26.1706 0.1144 11582 +11584 2 57.66571376486668 -245.7924608446108 25.5384 0.1144 11583 +11585 2 58.63632511265203 -245.83827565514366 24.9227 0.1144 11584 +11586 2 59.44258243583184 -245.59833672233037 24.2976 0.1144 11585 +11587 2 59.636426107357295 -244.57346499926803 23.6392 0.1144 11586 +11588 2 59.787546816581155 -243.30636729833597 22.9995 0.1144 11587 +11589 2 60.533363065300236 -241.32287466651184 22.4425 0.1144 11588 +11590 2 61.431408732242446 -241.17480440819998 21.9847 0.1144 11589 +11591 2 62.36782451177433 -240.0884522604812 21.5627 0.1144 11590 +11592 2 63.386083285868295 -239.74868580975644 21.1036 0.1144 11591 +11593 2 64.48083071976741 -239.9182050595016 20.6009 0.1144 11592 +11594 2 65.56265616888297 -239.90556522992992 20.176 0.1144 11593 +11595 2 66.66142008503294 -240.2915062209612 19.8305 0.1144 11594 +11596 2 67.79295881447476 -239.90235658982306 19.4987 0.1144 11595 +11597 2 68.92683789973385 -239.80434396351652 19.1299 0.1144 11596 +11598 2 70.04209939661612 -240.39756208168694 18.6643 0.1144 11597 +11599 2 71.15311105890201 -240.08090541777284 18.0742 0.1144 11598 +11600 2 72.20516026044606 -240.15330271625965 17.4121 0.1144 11599 +11601 2 73.25088856452022 -240.38243013679136 16.7456 0.1144 11600 +11602 2 74.34811230306357 -241.29158549652973 16.1314 0.1144 11601 +11603 2 75.46854573343364 -241.1297006075651 15.5771 0.1144 11602 +11604 2 76.52248168440879 -240.5566348561897 14.9828 0.1144 11603 +11605 2 77.38363584050224 -240.37386100110564 14.3691 0.1144 11604 +11606 2 78.01536545072297 -238.39182112628026 13.8006 0.1144 11605 +11607 2 78.3666515224463 -237.00083406387114 13.2731 0.1144 11606 +11608 2 78.29427705018419 -235.7326105028905 12.7847 0.1144 11607 +11609 2 78.2499193117094 -234.46586846386688 12.3901 0.1144 11608 +11610 2 78.36754641618293 -233.31065668152317 12.1243 0.1144 11609 +11611 2 78.50522898174599 -232.1631685692455 11.9688 0.1144 11610 +11612 2 78.26093414291371 -230.7980186491824 11.8519 0.1144 11611 +11613 2 78.25297166826405 -229.55104203374418 11.826 0.1144 11612 +11614 2 78.40535425917523 -228.41691024654244 11.8796 0.1144 11613 +11615 2 78.69817410520236 -227.40678246196836 11.9539 0.1144 11614 +11616 2 79.7395221364828 -228.12318818397972 12.2464 0.1144 11615 +11617 2 80.8523361665389 -228.156183708023 12.7485 0.1144 11616 +11618 2 81.86057431315037 -228.00789041852624 14.023 0.1144 11617 +11619 2 24.96413842785894 -286.45161085665444 55.0861 0.1144 11535 +11620 2 24.050048489939726 -286.2179017631275 55.4772 0.1144 11619 +11621 2 22.990930685202116 -286.9082729844272 55.9488 0.1144 11620 +11622 2 21.921760722028864 -286.57950664477204 56.3872 0.1144 11621 +11623 2 21.77451004523465 -285.59819725999097 57.0419 0.1144 11622 +11624 2 21.804194103286136 -284.339922585484 57.4244 0.1144 11623 +11625 2 21.832673747644748 -283.07436743532463 57.7858 0.1144 11624 +11626 2 21.971649021333604 -281.89715147269203 58.121 0.1144 11625 +11627 2 22.462767889155714 -281.1630712877837 58.4175 0.1144 11626 +11628 2 23.405153371339622 -281.1134001909399 58.6813 0.1144 11627 +11629 2 24.48302841841131 -279.58214047201216 58.956 0.1144 11628 +11630 2 25.552684815007908 -280.4167926225028 59.3432 0.1144 11629 +11631 2 26.408252970845837 -279.4784755608555 59.7761 0.1144 11630 +11632 2 26.781692882939694 -278.5894976955651 60.1546 0.1144 11631 +11633 2 26.942762735483612 -277.3126679619193 60.5399 0.1144 11632 +11634 2 27.070427686158013 -276.043389954981 60.9857 0.1144 11633 +11635 2 27.38268071199184 -274.75497870792015 61.4281 0.1144 11634 +11636 2 27.946713637980636 -274.0130101268363 61.8187 0.1144 11635 +11637 2 28.32571150601602 -273.0919677683717 62.2009 0.1144 11636 +11638 2 28.271870737342923 -271.7996445333187 62.5918 0.1144 11637 +11639 2 28.15699063835818 -270.45013283155225 63.0356 0.1144 11638 +11640 2 28.50493386293094 -269.4260057923904 63.3956 0.1144 11639 +11641 2 29.001507671578963 -267.7406431603558 63.6544 0.1144 11640 +11642 2 29.501606426872968 -266.62420018123936 63.8352 0.1144 11641 +11643 2 29.932134947776035 -265.5369863083788 63.9517 0.1144 11642 +11644 2 30.176080029354225 -264.1833594865194 64.0234 0.1144 11643 +11645 2 30.286268826720743 -262.8473255459579 64.0718 0.1144 11644 +11646 2 30.34112852906226 -261.5322669879121 64.1242 0.1144 11645 +11647 2 30.49560028920142 -260.01761171982594 64.195 0.1144 11646 +11648 2 30.698370789849434 -258.52920098281487 64.2891 0.1144 11647 +11649 2 30.854408061089217 -257.07678125391675 64.4479 0.1144 11648 +11650 2 30.913189736104457 -255.71002031261241 64.65 0.1144 11649 +11651 2 31.121353915464297 -254.5500053841974 64.9177 0.1144 11650 +11652 2 31.284744300961194 -253.40927876966964 65.2484 0.1144 11651 +11653 2 31.385849503203772 -252.2179484036165 65.5956 0.1144 11652 +11654 2 31.47273379739275 -251.01187216842925 65.884 0.1144 11653 +11655 2 31.427350643137316 -249.7140144632317 66.1139 0.1144 11654 +11656 2 31.31340146233414 -248.3693010679363 66.2984 0.1144 11655 +11657 2 31.137886884045457 -246.99354117460285 66.4334 0.1144 11656 +11658 2 30.815719672029118 -245.5590100132559 66.5098 0.1144 11657 +11659 2 30.64430606432643 -244.24984989943337 66.5277 0.1144 11658 +11660 2 30.572366263222236 -242.98745418565795 66.5008 0.1144 11659 +11661 2 30.51579631646885 -241.7044238098635 66.4404 0.1144 11660 +11662 2 30.459854759468215 -240.38053652453766 66.3558 0.1144 11661 +11663 2 30.478754561679082 -239.05799473364038 66.2614 0.1144 11662 +11664 2 30.767164705525303 -237.9770373496762 66.176 0.1144 11663 +11665 2 31.142857371540188 -237.03297085111217 66.1058 0.1144 11664 +11666 2 31.5621662729082 -236.1411038839576 66.0167 0.1144 11665 +11667 2 31.884475251297303 -235.14298052667885 65.91 0.1144 11666 +11668 2 31.76295562065799 -233.8082818855334 65.8249 0.1144 11667 +11669 2 31.68754323872065 -232.48578472129105 65.7695 0.1144 11668 +11670 2 32.079901568795194 -231.57414205805264 65.7364 0.1144 11669 +11671 2 32.25776612654482 -230.38912774622503 65.7437 0.1144 11670 +11672 2 32.20837580676583 -229.11047968049436 65.7952 0.1144 11671 +11673 2 32.100795763688936 -227.81178411863084 65.8454 0.1144 11672 +11674 2 31.95663835729158 -226.45731605181402 65.8462 0.1144 11673 +11675 2 31.78242199775829 -225.0870083731352 65.812 0.1144 11674 +11676 2 31.518961964001093 -223.64572006626148 65.7807 0.1144 11675 +11677 2 31.2458837504296 -222.23201788515215 65.7597 0.1144 11676 +11678 2 30.97231470576773 -220.82198068442432 65.7549 0.1144 11677 +11679 2 30.645024208967826 -219.3876244920993 65.7742 0.1144 11678 +11680 2 30.280798353022902 -217.93877326448813 65.8204 0.1144 11679 +11681 2 29.911140480699444 -216.49776815486092 65.8882 0.1144 11680 +11682 2 29.381701568870824 -215.6252476292351 66.0162 0.1144 11681 +11683 2 29.00326883301834 -215.00624312523166 66.1898 0.1144 11682 +11684 2 29.035400056122327 -213.64523822016633 66.3642 0.1144 11683 +11685 2 29.103491179357007 -212.16090914013847 66.5518 0.1144 11684 +11686 2 29.210389495385755 -210.59931635762777 66.7965 0.1144 11685 +11687 2 29.320484487689782 -209.13926279968763 67.0832 0.1144 11686 +11688 2 29.304554537176216 -207.85095183496895 67.4016 0.1144 11687 +11689 2 28.86135180788672 -207.32208787531619 67.7533 0.1144 11688 +11690 2 28.40657146323764 -206.47175778922374 68.122 0.1144 11689 +11691 2 27.95179111858853 -205.019007566711 68.4866 0.1144 11690 +11692 2 27.588392171399377 -203.8284220562109 69.0654 0.1144 11691 +11693 2 27.151109187995658 -202.60638231083436 69.2933 0.1144 11692 +11694 2 26.78403914097038 -201.46040683236362 69.3661 0.1144 11693 +11695 2 26.568519159360832 -200.23781605166545 69.414 0.1144 11694 +11696 2 26.44209668110004 -198.90175513991562 69.4462 0.1144 11695 +11697 2 26.326943086603933 -197.5579369150047 69.473 0.1144 11696 +11698 2 26.21878701958697 -196.21619077968302 69.5106 0.1144 11697 +11699 2 26.164358607874192 -194.91231050604222 69.5904 0.1144 11698 +11700 2 26.169985549942183 -193.65445299399852 69.7393 0.1144 11699 +11701 2 26.066327479539055 -192.32612208302024 69.977 0.1144 11700 +11702 2 25.69738939298442 -190.8916802414622 70.3329 0.1144 11701 +11703 2 25.233792745556528 -189.87741566853833 70.7762 0.1144 11702 +11704 2 24.808718868848388 -189.15937327056292 71.246 0.1144 11703 +11705 2 24.40989531644054 -187.7948093987786 71.6808 0.1144 11704 +11706 2 24.340631635067396 -186.500430926268 71.8124 0.1144 11705 +11707 2 24.50357262872373 -185.37223438020905 71.6086 0.1144 11706 +11708 2 24.716410701026618 -184.21314769661808 71.444 0.1144 11707 +11709 2 24.947879383564043 -182.60567736934996 71.4017 0.1144 11708 +11710 2 25.033253634048194 -181.17483475004303 71.4498 0.1144 11709 +11711 2 24.827225200153478 -180.11402022763372 71.5436 0.1144 11710 +11712 2 24.499573605945898 -179.23610949028534 71.6542 0.1144 11711 +11713 2 24.169832842510417 -177.81209354307015 71.7514 0.1144 11712 +11714 2 23.844140683848167 -176.39176603293714 71.8127 0.1144 11713 +11715 2 23.522419762089314 -174.972590163201 71.8463 0.1144 11714 +11716 2 23.219136424506658 -173.5597656732499 71.8704 0.1144 11715 +11717 2 23.002679321549394 -172.22257828916946 71.9015 0.1144 11716 +11718 2 22.898263127710763 -170.9374541398835 71.9471 0.1144 11717 +11719 2 22.83149897720287 -169.63807476836794 72.0037 0.1144 11718 +11720 2 22.764682460882327 -168.35355396393962 72.0642 0.1144 11719 +11721 2 22.672472272156114 -167.03986300704193 72.1185 0.1144 11720 +11722 2 22.49789481521519 -165.75038253530687 72.1543 0.1144 11721 +11723 2 22.24945215061375 -164.46251331988017 72.1619 0.1144 11722 +11724 2 21.988003918214616 -163.17009158391326 72.1378 0.1144 11723 +11725 2 21.774443372150415 -161.82862903435273 72.0726 0.1144 11724 +11726 2 21.622180931226566 -160.47620487812355 71.9597 0.1144 11725 +11727 2 21.49134875078481 -159.1358114313558 71.8102 0.1144 11726 +11728 2 21.40020541708904 -157.81935421967975 71.6467 0.1144 11727 +11729 2 21.44953929798963 -156.5969200835037 71.4986 0.1144 11728 +11730 2 21.6408588153775 -155.46915163191488 71.388 0.1144 11729 +11731 2 21.874915323213088 -154.27247917931837 71.318 0.1144 11730 +11732 2 22.10798234388821 -153.08961143129483 71.2816 0.1144 11731 +11733 2 22.34104936456326 -151.91774023949452 71.2701 0.1144 11732 +11734 2 22.5255503523844 -150.80818051625857 71.2746 0.1144 11733 +11735 2 22.535727656878976 -149.5743334733291 71.2894 0.1144 11734 +11736 2 22.37134440369246 -148.2297081228643 71.311 0.1144 11735 +11737 2 22.158230147885718 -146.85956138400644 71.3367 0.1144 11736 +11738 2 21.839356518790296 -145.48060050260628 71.3745 0.1144 11737 +11739 2 21.236243708849628 -144.20413649117785 71.4454 0.1144 11738 +11740 2 20.433764720309853 -143.61608177728704 71.552 0.1144 11739 +11741 2 19.934138393120804 -143.0430358423447 71.6313 0.1144 11740 +11742 2 19.849014026306605 -141.74783193350228 71.6204 0.1144 11741 +11743 2 19.37488059251899 -140.45714315751718 71.5064 0.1144 11742 +11744 2 18.446058701828576 -139.24785604798691 71.3118 0.1144 11743 +11745 2 17.39580055072878 -138.06363462286328 71.0598 0.1144 11744 +11746 2 16.285415170922846 -138.7445173362998 70.7644 0.1144 11745 +11747 2 15.834907283543913 -137.53627224577912 70.5757 0.1144 11746 +11748 2 15.70153964361677 -136.21940078481958 70.572 0.1144 11747 +11749 2 15.58536373492305 -134.90574772134738 70.7036 0.1144 11748 +11750 2 15.46838043856431 -133.58294963778013 70.9377 0.1144 11749 +11751 2 15.357383282050051 -132.27587514244456 71.2449 0.1144 11750 +11752 2 15.447304793377668 -131.06807020574743 71.6038 0.1144 11751 +11753 2 15.588454429144349 -129.90038187349927 71.9804 0.1144 11752 +11754 2 15.73282027996197 -128.7415289998732 72.3643 0.1144 11753 +11755 2 15.877676961869867 -127.60944375919561 72.7518 0.1144 11754 +11756 2 16.02204281268746 -126.48171311221358 73.1402 0.1144 11755 +11757 2 16.549412489969455 -124.55004173652358 73.519 0.1144 11756 +11758 2 17.37694710174955 -123.67377670265952 73.8693 0.1144 11757 +11759 2 18.239017455341866 -123.42912933230473 74.2011 0.1144 11758 +11760 2 18.615785493903616 -122.49856118002702 74.5679 0.1144 11759 +11761 2 18.8237706753512 -121.41836367477421 74.9636 0.1144 11760 +11762 2 19.020803529608855 -120.33672875661102 75.3808 0.1144 11761 +11763 2 19.21640060644856 -118.6957950943377 75.8111 0.1144 11762 +11764 2 19.218825361611636 -117.29584357410717 76.2082 0.1144 11763 +11765 2 19.12875980950929 -116.17231156201893 76.5607 0.1144 11764 +11766 2 19.03049231623484 -115.11651409693702 76.8776 0.1144 11765 +11767 2 18.931648799020337 -114.05823769780507 77.1758 0.1144 11766 +11768 2 18.833742403153593 -112.99629383365033 77.4707 0.1144 11767 +11769 2 18.736497224076743 -111.92971292399803 77.7734 0.1144 11768 +11770 2 18.26790702554794 -110.90931286780244 78.1676 0.1144 11769 +11771 2 17.678786168982327 -109.65702344981909 78.6478 0.1144 11770 +11772 2 17.088188095749047 -108.41909926428173 79.1823 0.1144 11771 +11773 2 16.55898124018202 -107.18106102411873 79.6984 0.1144 11772 +11774 2 16.173375080521225 -105.95598791957735 80.1069 0.1144 11773 +11775 2 15.786434773484842 -104.73145779945344 80.4269 0.1144 11774 +11776 2 15.413120007449947 -105.16940412815266 80.6669 0.1144 11775 +11777 2 14.297447065630848 -105.14252882904361 81.0723 0.1144 11776 +11778 2 13.190192708026132 -105.54579186869668 81.4654 0.1144 11777 +11779 2 12.231430576623325 -104.6785072754006 81.7289 0.1144 11778 +11780 2 11.27468575720809 -103.56258509155718 81.755 0.1144 11779 +11781 2 10.277496045221199 -102.82785757225464 81.5643 0.1144 11780 +11782 2 9.32400336947714 -102.83196337315329 81.2596 0.1144 11781 +11783 2 8.37682436406351 -101.72574162149765 80.9354 0.1144 11782 +11784 2 7.421766177218899 -100.64471859920323 80.6378 0.1144 11783 +11785 2 6.468761230982011 -100.70630351859803 80.3891 0.1144 11784 +11786 2 5.540101208474738 -99.82312916610366 80.1923 0.1144 11785 +11787 2 4.635541457710644 -98.68406483927238 80.0316 0.1144 11786 +11788 2 3.742650025785508 -97.54704595031502 79.8885 0.1144 11787 +11789 2 2.8923785410464404 -97.74402843021747 79.7555 0.1144 11788 +11790 2 2.200042288194112 -96.51361489627317 79.6342 0.1144 11789 +11791 2 1.5781777465489029 -95.2772746313042 79.5298 0.1144 11790 +11792 2 0.9563460319407397 -94.04554700380068 79.441 0.1144 11791 +11793 2 0.27199128309834464 -92.85097235259948 79.3722 0.1144 11792 +11794 2 -0.7145493226639985 -93.12029115216399 79.3498 0.1144 11793 +11795 2 -1.812394632268564 -92.27920626765861 79.3727 0.1144 11794 +11796 2 -2.919716768905232 -91.46685130729236 79.4167 0.1144 11795 +11797 2 -4.013549402356716 -91.90010626050518 79.4441 0.1144 11796 +11798 2 -5.046851672604305 -90.92988368585777 79.3834 0.1144 11797 +11799 2 -5.981640164363569 -89.86513029229157 79.2042 0.1144 11798 +11800 2 -6.781186667390102 -89.26951894713666 78.9018 0.1144 11799 +11801 2 -7.518678326913971 -88.77106387504024 78.5406 0.1144 11800 +11802 2 -8.20317373600193 -87.57417033815472 78.2057 0.1144 11801 +11803 2 -8.857781270190173 -86.37271068244837 77.9878 0.1144 11802 +11804 2 -9.522591620345565 -85.18010849563645 78.0094 0.1144 11803 +11805 2 -10.191946129761334 -84.22509536884641 78.2723 0.1144 11804 +11806 2 -10.814298400913799 -83.9694822431692 78.512 0.1144 11805 +11807 2 -11.344853432002424 -82.7770835650769 78.3835 0.1144 11806 +11808 2 -11.909176871414871 -81.56994358025719 78.0878 0.1144 11807 +11809 2 -12.1874433370144 -81.00925567327135 76.7903 0.1144 11808 +11810 2 -12.777139524983482 -80.6125064576585 76.0956 0.1144 11809 +11811 2 -13.476957933239078 -79.79207954583386 75.7686 0.1144 11810 +11812 2 -14.348865394939565 -78.72256493545753 75.3122 0.1144 11811 +11813 2 -15.249213258011054 -77.87934951769172 74.7642 0.1144 11812 +11814 2 -15.436061598319554 -77.93794028454856 73.5672 0.1144 11813 +11815 2 -16.386278815182095 -78.27681215842821 72.7692 0.1144 11814 +11816 2 -17.321953778986312 -77.28500631554526 72.1291 0.1144 11815 +11817 2 -18.03988252502083 -76.183500512641 71.5198 0.1144 11816 +11818 2 -18.783827822584158 -75.06584404328004 71.136 0.1144 11817 +11819 2 -19.616373683935905 -74.75024392618882 70.9727 0.1144 11818 +11820 2 -20.451953660843316 -73.90409346116232 70.8126 0.1144 11819 +11821 2 -21.297457447576846 -72.81300352897803 70.6586 0.1144 11820 +11822 2 -22.147103644146142 -71.72636582092707 70.5709 0.1144 11821 +11823 2 -22.781572933441566 -70.94027874412852 70.5552 0.1144 11822 +11824 2 -23.182499683223455 -70.20760750659495 70.5684 0.1144 11823 +11825 2 -23.521282602533176 -69.16692797193714 70.5914 0.1144 11824 +11826 2 -23.62774893539654 -68.028754642347 70.6154 0.1144 11825 +11827 2 -23.258105056413456 -66.7539469529361 70.6292 0.1144 11826 +11828 2 -22.671972040939977 -65.46679485352416 70.6266 0.1144 11827 +11829 2 -22.094523185516152 -64.72176175578107 70.6163 0.1144 11828 +11830 2 -21.391371738567756 -64.10846468251725 70.576 0.1144 11829 +11831 2 -20.54427800741803 -63.618679085326235 70.52 0.1144 11830 +11832 2 -19.692816013337023 -62.35131016768461 70.4894 0.1144 11831 +11833 2 -18.821030573284844 -61.93351674796055 70.5029 0.1144 11832 +11834 2 -17.933067198680163 -61.54649894246348 70.565 0.1144 11833 +11835 2 -17.213109427426417 -60.479915033815224 70.7 0.1144 11834 +11836 2 -16.708606480581153 -59.286253371528765 70.9442 0.1144 11835 +11837 2 -16.28429782494601 -58.40266700181311 71.2802 0.1144 11836 +11838 2 -15.867306354947914 -57.5168637976344 71.6652 0.1144 11837 +11839 2 -15.426960425005973 -56.65006758136051 72.1081 0.1144 11838 +11840 2 -14.966297252258926 -55.789784388492926 72.5491 0.1144 11839 +11841 2 -14.501888695703911 -54.53975519182225 72.7784 0.1144 11840 +11842 2 -14.034104464961274 -53.287579524385244 72.7577 0.1144 11841 +11843 2 -13.183755488557296 -52.852299786744474 72.7115 0.1144 11842 +11844 2 -12.191581737560739 -51.87717474844282 72.7364 0.1144 11843 +11845 2 -11.191966577874183 -51.65678940041836 72.7779 0.1144 11844 +11846 2 -10.243485453475444 -51.3227510263789 72.8213 0.1144 11845 +11847 2 -9.599996820936212 -50.07753005793267 72.7871 0.1144 11846 +11848 2 -8.970189001130706 -49.16885956118401 72.676 0.1144 11847 +11849 2 -7.837697435348247 -49.35505249226354 72.5656 0.1144 11848 +11850 2 -6.705594378077166 -49.27360232114963 72.3582 0.1144 11849 +11851 2 -12.27442935023501 -81.58712183926946 77.8571 0.1144 11808 +11852 2 -13.39153185432778 -82.37513744483816 77.7784 0.1144 11851 +11853 2 -14.507462771764693 -82.11903316446944 77.8484 0.1144 11852 +11854 2 -15.618595573205539 -82.26464315048432 78.0724 0.1144 11853 +11855 2 -16.700909355375586 -82.87807992756403 78.3751 0.1144 11854 +11856 2 -17.71154392874749 -82.9257137831707 78.7097 0.1144 11855 +11857 2 -18.62474590858119 -83.33747660537826 79.3092 0.1144 11856 +11858 2 -19.552725690080905 -84.40542087449425 80.204 0.1144 11857 +11859 2 -20.596341195964982 -83.93473603435598 81.03 0.1144 11858 +11860 2 -21.619989641866766 -83.08027774265933 81.7578 0.1144 11859 +11861 2 -22.70567169367058 -83.59098241937126 82.294 0.1144 11860 +11862 2 -23.805224470705298 -83.32321493638422 82.5255 0.1144 11861 +11863 2 -24.885307730865208 -83.20652753067289 82.4631 0.1144 11862 +11864 2 -25.999327168924452 -83.98038475284422 82.1246 0.1144 11863 +11865 2 -27.114482247334394 -83.37949044105437 81.5646 0.1144 11864 +11866 2 -28.21449711860876 -82.89766315275095 80.8808 0.1144 11865 +11867 2 -29.312114089060202 -83.28708404723345 80.1634 0.1144 11866 +11868 2 -30.41110664613703 -82.6588464122242 79.473 0.1144 11867 +11869 2 -31.531622167773804 -82.4321039678961 78.9141 0.1144 11868 +11870 2 -32.63878373231125 -83.06194835812461 78.6246 0.1144 11869 +11871 2 -33.77740448954535 -82.50309775282156 78.552 0.1144 11870 +11872 2 -34.91656672717255 -82.48229046331475 78.6341 0.1144 11871 +11873 2 -36.053821895067216 -82.45946631552637 78.8166 0.1144 11872 +11874 2 -37.190533866058786 -81.86344309683852 79.0496 0.1144 11873 +11875 2 -38.32613833000303 -82.13813821777909 79.2876 0.1144 11874 +11876 2 -39.44044017185308 -81.68429542947453 79.4906 0.1144 11875 +11877 2 -40.53903740172697 -80.90043890157536 79.6522 0.1144 11876 +11878 2 -41.6508568424409 -81.11657383859702 79.7647 0.1144 11877 +11879 2 -42.789404718461384 -80.68426454734396 79.8073 0.1144 11878 +11880 2 -43.929679973765545 -81.24278355208762 79.767 0.1144 11879 +11881 2 -45.07093068808415 -80.66525599523648 79.6267 0.1144 11880 +11882 2 -46.2083477241619 -80.1050429946998 79.4192 0.1144 11881 +11883 2 -47.33377950604091 -80.54278327912442 79.2392 0.1144 11882 +11884 2 -48.458585999750255 -79.86486235114917 79.0922 0.1144 11883 +11885 2 -49.58308376186463 -79.32718798559434 78.9768 0.1144 11884 +11886 2 -50.70922130136641 -79.6153236753733 78.8836 0.1144 11885 +11887 2 -51.83559330617635 -78.92734974932199 78.797 0.1144 11886 +11888 2 -52.96821971980114 -78.69092901265402 78.6974 0.1144 11887 +11889 2 -54.10680113308028 -78.99575104990686 78.5641 0.1144 11888 +11890 2 -55.243992931588 -78.6115820395048 78.3866 0.1144 11889 +11891 2 -56.38134459768028 -78.8617695318713 78.0752 0.1144 11890 +11892 2 -57.50507291903321 -78.87205240596437 77.6521 0.1144 11891 +11893 2 -58.546289819579755 -78.85022067958619 77.2355 0.1144 11892 +11894 2 -58.92426646869518 -78.96895153001903 77.532 0.1144 11893 +11895 2 -59.812462592098086 -80.37267899246925 76.9997 0.1144 11894 +11896 2 -60.71705639467885 -80.64689996158697 76.6816 0.1144 11895 +11897 2 -61.441688058875556 -81.19164370370207 76.4439 0.1144 11896 +11898 2 -62.083919911909035 -81.83547179932276 76.3056 0.1144 11897 +11899 2 -62.72491452421255 -83.6322820338681 76.2843 0.1144 11898 +11900 2 -58.826099967110096 -77.4811882485166 76.1765 0.1144 11893 +11901 2 -59.11119287624567 -76.32835283533984 75.4018 0.1144 11900 +11902 2 -59.521058766786226 -75.51483215531049 74.6925 0.1144 11901 +11903 2 -60.017794740248405 -75.01890555037001 73.9556 0.1144 11902 +11904 2 -60.566463210699126 -73.89057364951336 73.1354 0.1144 11903 +11905 2 -61.18336805225384 -72.75003119379289 72.273 0.1144 11904 +11906 2 -61.8449046423526 -71.65256788873089 71.3266 0.1144 11905 +11907 2 -62.58182778916449 -70.65246850627754 70.1683 0.1144 11906 +11908 2 -63.62480700330468 -71.41690977902991 69.2793 0.1144 11907 +11909 2 -64.68195306086079 -71.35905174373758 68.6666 0.1144 11908 +11910 2 -65.74991861034111 -71.29273125309923 68.2158 0.1144 11909 +11911 2 -66.74989245838891 -72.43535951176989 67.9025 0.1144 11910 +11912 2 -67.64186610010022 -72.77721801265906 67.6743 0.1144 11911 +11913 2 -68.77011875784922 -72.3781089498108 67.4159 0.1144 11912 +11914 2 -69.5264410554788 -73.26190678624073 67.216 0.1144 11913 +11915 2 -70.61227978429487 -73.37572533947466 67.1857 0.1144 11914 +11916 2 -71.67467506619754 -73.34272219426416 67.2305 0.1144 11915 +11917 2 -72.60947537786257 -74.35188464382291 67.31 0.1144 11916 +11918 2 -73.4774240380909 -75.0126499082244 67.4078 0.1144 11917 +11919 2 -74.28120957294587 -75.98197235386202 67.5206 0.1144 11918 +11920 2 -74.93503617106813 -77.18487393324432 67.6536 0.1144 11919 +11921 2 -75.46787620239526 -77.96293395837463 67.8034 0.1144 11920 +11922 2 -75.91236144058989 -78.81783042831559 67.9613 0.1144 11921 +11923 2 -76.30939366360744 -79.70177116756838 68.1388 0.1144 11922 +11924 2 -76.65897597303105 -80.6072478528204 68.332 0.1144 11923 +11925 2 -76.93735137225937 -81.78050680401029 68.5269 0.1144 11924 +11926 2 -77.36464798080357 -83.43062313000395 68.7336 0.1144 11925 +11927 2 -78.17908942288966 -83.94645593596813 68.9346 0.1144 11926 +11928 2 -79.20126637553764 -83.97383213237616 69.1127 0.1144 11927 +11929 2 -80.20676053439685 -84.6498815233722 69.2941 0.1144 11928 +11930 2 -81.01562860732214 -85.6321526811992 69.494 0.1144 11929 +11931 2 -81.50173540924101 -86.40489443505336 69.694 0.1144 11930 +11932 2 -81.70896246725307 -87.40430263984696 69.904 0.1144 11931 +11933 2 -81.78957142877827 -88.48057977442889 70.147 0.1144 11932 +11934 2 -82.03436292822484 -89.44586252949198 70.4231 0.1144 11933 +11935 2 -82.76539076246665 -89.94149922191507 70.756 0.1144 11934 +11936 2 -83.76487998259027 -91.18482124592741 71.1469 0.1144 11935 +11937 2 -84.79142589070605 -91.1574440817312 71.5817 0.1144 11936 +11938 2 -85.86814337926799 -90.93757079127535 72.0871 0.1144 11937 +11939 2 -86.9807934338681 -91.77956602675282 72.6664 0.1144 11938 +11940 2 -88.09550973324876 -91.26869782732527 73.2855 0.1144 11939 +11941 2 -89.14159252882335 -91.28888013927731 73.8178 0.1144 11940 +11942 2 -89.87336617486446 -92.89587846075631 74.1289 0.1144 11941 +11943 2 -90.53204876542523 -93.48867216484844 74.2311 0.1144 11942 +11944 2 -91.31741792404145 -93.91486829707384 74.263 0.1144 11943 +11945 2 -92.29287054358252 -94.35396403215401 74.419 0.1144 11944 +11946 2 -93.24882561961972 -95.39904638037147 75.1626 0.1144 11945 +11947 2 -68.96444895178735 -72.17043563099327 64.3378 0.1144 11913 +11948 2 -69.48277225350675 -71.81964007890407 62.991 0.1144 11947 +11949 2 -69.70729504703549 -71.00746524858164 61.6812 0.1144 11948 +11950 2 -70.13985687386511 -70.05183103331345 60.5102 0.1144 11949 +11951 2 -70.48971256698313 -69.05965257601854 58.9753 0.1144 11950 +11952 2 -69.96448123416945 -68.89352267495693 57.6752 0.1144 11951 +11953 2 -68.90148349955517 -68.60942262097578 56.9355 0.1144 11952 +11954 2 -67.87866605830251 -69.44874266976836 56.4385 0.1144 11953 +11955 2 -66.84076008319037 -70.28299563639683 56.0854 0.1144 11954 +11956 2 -65.73095793677909 -69.79323897291586 55.8177 0.1144 11955 +11957 2 -64.60519419708409 -70.06630931161733 55.5318 0.1144 11956 +11958 2 -63.50879325942515 -70.60140167991496 55.0721 0.1144 11957 +11959 2 -62.537229276105435 -70.52470823847682 54.5317 0.1144 11958 +11960 2 -61.4919448532422 -71.28188761648703 54.0134 0.1144 11959 +11961 2 -60.393821336707504 -71.63661610372668 53.4573 0.1144 11960 +11962 2 -59.340943628550136 -70.72220334410105 52.7335 0.1144 11961 +11963 2 -58.36975625682466 -70.57345389079488 52.1455 0.1144 11962 +11964 2 -57.613300206630356 -70.03768712361654 51.751 0.1144 11963 +11965 2 -56.716293983614875 -69.02300571781605 51.5007 0.1144 11964 +11966 2 -55.76338912888909 -68.48350802826242 51.3884 0.1144 11965 +11967 2 -54.896154051263395 -68.07428019199779 51.4139 0.1144 11966 +11968 2 -54.194912775630684 -67.45943344586965 51.5284 0.1144 11967 +11969 2 -53.60699932252419 -65.89415319211837 51.6533 0.1144 11968 +11970 2 -52.849027717995455 -65.21662365931094 51.7591 0.1144 11969 +11971 2 -51.894703523044285 -64.96077567644991 51.8344 0.1144 11970 +11972 2 -50.924914976143384 -64.41318256028691 51.8756 0.1144 11971 +11973 2 -50.06021535800309 -63.39335701260557 51.7658 0.1144 11972 +11974 2 -49.279778174622066 -62.91613262205425 51.0432 0.1144 11973 +11975 2 15.539862646448569 -104.4576546086177 80.9357 0.1144 11775 +11976 2 15.093369435821302 -104.03366144873874 81.3501 0.1144 11975 +11977 2 14.621523992038249 -103.04604202845931 81.501 0.1144 11976 +11978 2 14.163576696567759 -101.79802371083555 81.6668 0.1144 11977 +11979 2 13.786657106003162 -100.58018415000241 81.8894 0.1144 11978 +11980 2 13.520173883253335 -99.38243205989842 82.1576 0.1144 11979 +11981 2 13.333296616137432 -98.25808469858482 82.4149 0.1144 11980 +11982 2 13.139782918950061 -97.33226602915663 82.6613 0.1144 11981 +11983 2 12.803984850966316 -96.64623452978832 82.934 0.1144 11982 +11984 2 12.585122022206264 -95.75232281973778 83.1846 0.1144 11983 +11985 2 12.479013685167473 -94.67369694983381 83.4358 0.1144 11984 +11986 2 12.230529581316262 -93.62412557352835 83.6881 0.1144 11985 +11987 2 11.763989521812164 -92.39457941462986 83.9404 0.1144 11986 +11988 2 11.28849249928362 -91.1632269416633 84.1887 0.1144 11987 +11989 2 10.886940461331989 -89.94220350616591 84.4827 0.1144 11988 +11990 2 10.498977840098036 -88.73043145041281 84.8128 0.1144 11989 +11991 2 10.007262136303922 -87.51342025779762 85.0676 0.1144 11990 +11992 2 9.442232939268763 -86.30297570031765 85.2706 0.1144 11991 +11993 2 8.6699505572237 -86.31090986196452 85.4375 0.1144 11992 +11994 2 7.398401028081025 -85.31788351264352 85.2723 0.1144 11993 +11995 2 6.2947273686066865 -84.57072348520327 85.2748 0.1144 11994 +11996 2 5.1741892242961 -84.97851373440356 85.2813 0.1144 11995 +11997 2 4.044885426509552 -84.33137386214716 85.29 0.1144 11996 +11998 2 2.9171854774902215 -83.63953048593572 85.3014 0.1144 11997 +11999 2 1.7754884729141907 -84.22695499783721 85.3185 0.1144 11998 +12000 2 0.637607324313251 -83.60269654668474 85.3448 0.1144 11999 +12001 2 -0.4936004416227888 -82.93155727893534 85.3787 0.1144 12000 +12002 2 -1.6338787985100964 -83.49321511337314 85.4185 0.1144 12001 +12003 2 -2.7735427937905683 -82.88689564184598 85.4686 0.1144 12002 +12004 2 -3.526892037172388 -81.73176373720784 85.5935 0.1144 12003 +12005 2 -4.451357284031161 -81.63581164153875 85.82 0.1144 12004 +12006 2 8.729302142002155 -85.65243578574973 85.5719 0.1144 11993 +12007 2 8.807502276141406 -84.18042446238594 85.7254 0.1144 12006 +12008 2 8.765015678779093 -83.01892033085123 85.9396 0.1144 12007 +12009 2 8.648352040578231 -81.94560874914903 86.2445 0.1144 12008 +12010 2 8.557710464535774 -80.83559034960422 86.5612 0.1144 12009 +12011 2 8.496466624839314 -79.68594461880532 86.8174 0.1144 12010 +12012 2 8.278626110276804 -78.74029789973257 87.0464 0.1144 12011 +12013 2 7.793417102871473 -77.86180828591505 87.3085 0.1144 12012 +12014 2 7.245003613129768 -76.66819830592996 87.5714 0.1144 12013 +12015 2 6.94270735366112 -75.49124887138413 87.4742 0.1144 12014 +12016 2 6.782326163816464 -74.44328169077629 86.7241 0.1144 12015 +12017 2 5.724294947984248 -73.6512778345728 86.5578 0.1144 12016 +12018 2 4.6130286067630095 -73.90279640345985 86.9739 0.1144 12017 +12019 2 3.5355868337978507 -73.41735512067108 87.7834 0.1144 12018 +12020 2 2.577409652299508 -72.55504851245296 88.7001 0.1144 12019 +12021 2 2.0300222708750937 -71.40529755767264 89.3822 0.1144 12020 +12022 2 1.5921249258645673 -70.53071095382863 89.84 0.1144 12021 +12023 2 1.2553897365330329 -69.72251967219711 90.104 0.1144 12022 +12024 2 0.9583043637442472 -68.81968085221496 90.2258 0.1144 12023 +12025 2 0.27643511762110506 -67.68423871903046 90.216 0.1144 12024 +12026 2 -0.6961696946985683 -66.7354353405198 90.1919 0.1144 12025 +12027 2 -1.389710361243857 -65.600566916037 90.2107 0.1144 12026 +12028 2 -2.261852980789058 -65.146155906408 90.2773 0.1144 12027 +12029 2 -3.3222896206503947 -64.42781664940642 90.7323 0.1144 12028 +12030 2 -4.011012632423956 -63.29967701994687 91.0123 0.1144 12029 +12031 2 -4.782363403750907 -62.215662407110194 91.336 0.1144 12030 +12032 2 -5.579139981983872 -61.542599497380166 91.7118 0.1144 12031 +12033 2 -6.445795117754699 -60.98984576566597 92.0242 0.1144 12032 +12034 2 -7.44212438372719 -60.122303724953 92.3975 0.1144 12033 +12035 2 -8.34547902826182 -59.16353701431165 92.8598 0.1144 12034 +12036 2 -9.291130860241452 -58.97430984597841 93.312 0.1144 12035 +12037 2 -10.196269043992231 -58.08286309160786 93.6961 0.1144 12036 +12038 2 -10.89715120569511 -56.98604108345952 94.0254 0.1144 12037 +12039 2 -11.718022545041634 -55.951142258277805 94.3919 0.1144 12038 +12040 2 -12.799289792482881 -56.09786519226802 94.8508 0.1144 12039 +12041 2 -13.923166676072611 -55.65043596944384 95.3285 0.1144 12040 +12042 2 -14.886641038085145 -55.52519278874712 95.706 0.1144 12041 +12043 2 -14.898809096293888 -55.20155638572186 95.8768 0.1144 12042 +12044 2 -14.98098694944872 -54.07344785416139 96.3852 0.1144 12043 +12045 2 -15.159662275392606 -52.91216078834773 96.6916 0.1144 12044 +12046 2 -15.362526860049087 -51.77237592387704 96.9912 0.1144 12045 +12047 2 -15.679482492848905 -50.59976396659729 97.2342 0.1144 12046 +12048 2 -16.15916567881331 -49.43454500277461 97.3582 0.1144 12047 +12049 2 -16.701480424756994 -48.27676499147806 97.3666 0.1144 12048 +12050 2 -17.047171884576358 -47.13255778559469 97.3305 0.1144 12049 +12051 2 -16.55956014113437 -46.385288453575185 97.4137 0.1144 12050 +12052 2 -15.654390314613522 -45.971471167333554 97.6738 0.1144 12051 +12053 2 -14.727824771157543 -44.960420515883264 98.0851 0.1144 12052 +12054 2 -13.807052341487747 -44.59818565067663 98.607 0.1144 12053 +12055 2 -12.88119186311792 -43.62068440533776 99.1816 0.1144 12054 +12056 2 -11.922748875315023 -43.324993920124705 99.7282 0.1144 12055 +12057 2 -10.93534523137049 -43.06497778216629 100.207 0.1144 12056 +12058 2 -9.937818548375247 -42.22764779963976 100.6415 0.1144 12057 +12059 2 -9.153777546752764 -42.520780033386075 101.6137 0.1144 12058 +12060 2 -9.878457557880068 -42.73865055246708 102.9286 0.1144 12059 +12061 2 -10.858189240598534 -42.78012966174473 104.1169 0.1144 12060 +12062 2 -11.6289512679013 -41.91083260375938 105.2643 0.1144 12061 +12063 2 -11.054144290435175 -41.33424643257381 106.1144 0.1144 12062 +12064 2 -10.139790955257837 -40.36617799024214 106.561 0.1144 12063 +12065 2 -9.056989443580562 -40.30961150378292 106.6934 0.1144 12064 +12066 2 -7.992264329682541 -40.850798198947324 106.013 0.1144 12065 +12067 2 -15.899479894652387 -54.7223235129784 96.1425 0.1144 12042 +12068 2 -16.929970800856665 -53.9054946770055 96.3645 0.1144 12067 +12069 2 -17.962104586031472 -53.700687597879615 96.4636 0.1144 12068 +12070 2 -18.996250172564316 -53.0305651952923 96.5698 0.1144 12069 +12071 2 -20.023307528138673 -52.242625159464616 96.6675 0.1144 12070 +12072 2 -21.01244216236543 -51.542226033885576 96.7067 0.1144 12071 +12073 2 -22.00356905917448 -51.213331009679514 96.6977 0.1144 12072 +12074 2 -22.99403473919361 -50.3467033133098 96.651 0.1144 12073 +12075 2 -23.981997786764424 -49.480488681994395 96.4774 0.1144 12074 +12076 2 -2.745634035756325 -64.28342549601432 89.2718 0.1144 12028 +12077 2 -3.3184126805398364 -63.123429860990385 88.9834 0.1144 12076 +12078 2 -4.076220890332252 -62.02444387552188 88.7141 0.1144 12077 +12079 2 -4.853270970382852 -60.94636248383943 88.4103 0.1144 12078 +12080 2 -5.626220079847457 -60.191883221768215 88.0849 0.1144 12079 +12081 2 -6.37971549410446 -59.620658159999564 87.7498 0.1144 12080 +12082 2 -7.131284299853263 -58.530525300991954 87.4163 0.1144 12081 +12083 2 -7.8834814953548005 -57.44906527438664 87.0864 0.1144 12082 +12084 2 -8.635050301103604 -56.37463756065713 86.7577 0.1144 12083 +12085 2 -9.398651624682145 -55.86672732915471 86.4408 0.1144 12084 +12086 2 -10.197082008448632 -55.02260899430332 86.1655 0.1144 12085 +12087 2 -11.026549213411897 -53.99944836322555 85.9102 0.1144 12086 +12088 2 -12.020125684320021 -53.16724920192406 85.6072 0.1144 12087 +12089 2 -12.956876020671046 -52.83890278805437 85.1329 0.1144 12088 +12090 2 -13.268607566954671 -52.87640697218582 84.9402 0.1144 12089 +12091 2 -14.376051535282954 -52.41982118619644 84.3004 0.1144 12090 +12092 2 -15.504799131993707 -52.7002253638293 83.9174 0.1144 12091 +12093 2 -16.632865973138877 -52.235807409732175 83.5341 0.1144 12092 +12094 2 -17.76098518009681 -51.93796129728922 83.1435 0.1144 12093 +12095 2 -18.88701831940986 -52.046169358368374 82.7305 0.1144 12094 +12096 2 -20.00134549475385 -51.547882553326005 82.2483 0.1144 12095 +12097 2 -21.03148660889832 -50.99688108390584 81.6301 0.1144 12096 +12098 2 -21.852125199446647 -50.570110707506586 80.8889 0.1144 12097 +12099 2 -22.51546134552811 -50.04633303861046 79.4545 0.1144 12098 +12100 2 -23.159411681544015 -50.71179439644758 78.6509 0.1144 12099 +12101 2 -23.804161580245164 -51.37836900318165 77.8476 0.1144 12100 +12102 2 -24.475247688632976 -52.56537211071161 77.0958 0.1144 12101 +12103 2 -25.161078363201824 -53.37173748732477 76.405 0.1144 12102 +12104 2 -25.84926239776067 -54.005566156544816 75.7484 0.1144 12103 +12105 2 -26.494796759679474 -54.600439223933655 74.6018 0.1144 12104 +12106 2 -12.71252730715787 -52.2763201064145 83.8597 0.1144 12089 +12107 2 -12.25625562356305 -51.48582589415694 81.8888 0.1144 12106 +12108 2 -11.693990415123153 -50.86154590051627 80.5921 0.1144 12107 +12109 2 -11.024507462966 -50.252718879195236 79.6295 0.1144 12108 +12110 2 -10.289558348587036 -49.67439398113101 78.8376 0.1144 12109 +12111 2 -9.461882384024705 -48.522678620026454 78.1659 0.1144 12110 +12112 2 -8.563615587383879 -48.14045707176849 77.5835 0.1144 12111 +12113 2 -8.099647212616361 -47.30386472380573 76.9782 0.1144 12112 +12114 2 -7.702902797344876 -46.41986097762513 76.2056 0.1144 12113 +12115 2 -7.434534009430962 -45.61942021631642 74.6018 0.1144 12114 +12116 2 28.397542435331218 -204.88528877170268 68.7618 0.1144 11691 +12117 2 29.255911253411853 -202.95883461119158 68.9489 0.1144 12116 +12118 2 30.10849246833591 -202.51169806716362 69.0788 0.1144 12117 +12119 2 30.850459625594837 -202.0501513389897 69.1863 0.1144 12118 +12120 2 31.43342879183008 -201.36355237512186 69.3031 0.1144 12119 +12121 2 32.00120400004376 -199.62322872440745 69.4134 0.1144 12120 +12122 2 32.599419490113235 -198.11369649139513 69.5083 0.1144 12121 +12123 2 33.308716536042795 -197.6009090711857 69.5901 0.1144 12122 +12124 2 34.20060188332117 -197.04921381491528 69.664 0.1144 12123 +12125 2 35.152120224858635 -195.6977171728077 69.7337 0.1144 12124 +12126 2 36.105909835119434 -195.43166369813966 69.8048 0.1144 12125 +12127 2 37.10338345976537 -195.4058396582444 69.9028 0.1144 12126 +12128 2 38.19849950230031 -194.40789103472667 70.0823 0.1144 12127 +12129 2 39.31471484181148 -194.2498033282694 70.3206 0.1144 12128 +12130 2 40.40835917830833 -194.2459023408409 70.5051 0.1144 12129 +12131 2 41.48754675637022 -193.51658613885172 70.5916 0.1144 12130 +12132 2 42.561519653632544 -193.37135175807717 70.5872 0.1144 12131 +12133 2 43.60370581002729 -191.93868846556472 70.5009 0.1144 12132 +12134 2 44.57786572144258 -191.66546743808783 70.3461 0.1144 12133 +12135 2 45.513473420772755 -191.23106313069792 70.1448 0.1144 12134 +12136 2 46.35210101998835 -190.22816642723143 69.9152 0.1144 12135 +12137 2 46.94274295863863 -189.0428473516731 69.6592 0.1144 12136 +12138 2 47.50201679883466 -188.28478174654907 69.3776 0.1144 12137 +12139 2 48.43677877283302 -187.6484512658937 69.0385 0.1144 12138 +12140 2 49.466273603654585 -187.18268519815103 68.6739 0.1144 12139 +12141 2 50.49441784990802 -186.1321389758429 68.2906 0.1144 12140 +12142 2 51.524127607262045 -186.30058130398402 67.9064 0.1144 12141 +12143 2 52.56293257883962 -186.01495440149634 67.5427 0.1144 12142 +12144 2 53.64383012236742 -184.99825495536854 67.23 0.1144 12143 +12145 2 54.76851297888595 -185.46716877584225 66.9939 0.1144 12144 +12146 2 55.90477316667548 -184.8258107981997 66.8441 0.1144 12145 +12147 2 57.04680182729386 -185.09540415139622 66.8108 0.1144 12146 +12148 2 58.1870387449314 -185.78901238154873 66.8968 0.1144 12147 +12149 2 59.32326918958201 -185.08204032045344 67.0547 0.1144 12148 +12150 2 60.454658362476835 -185.5700530689739 67.2062 0.1144 12149 +12151 2 61.5321456825631 -186.41262019547673 67.1947 0.1144 12150 +12152 2 62.50759399342655 -186.61541830449943 66.8377 0.1144 12151 +12153 2 63.411978060645836 -186.74832268915395 66.3132 0.1144 12152 +12154 2 64.19396913602793 -185.87445900341265 65.8647 0.1144 12153 +12155 2 64.94422101826221 -185.44996675592012 65.494 0.1144 12154 +12156 2 65.69733663035255 -183.49249100831292 65.2002 0.1144 12155 +12157 2 66.45178328823533 -182.77121224026916 64.9905 0.1144 12156 +12158 2 67.20858330610818 -181.81320506166665 64.8438 0.1144 12157 +12159 2 67.94168420382206 -180.58040450764202 64.7284 0.1144 12158 +12160 2 68.577012334439 -179.8901520530573 64.6428 0.1144 12159 +12161 2 69.16034259808184 -178.80153920400411 64.5887 0.1144 12160 +12162 2 69.73564991846497 -178.08715169234543 64.5602 0.1144 12161 +12163 2 70.31144806993838 -176.73642387151995 64.5509 0.1144 12162 +12164 2 70.88675539032148 -175.03895598320955 64.5534 0.1144 12163 +12165 2 71.63456561813287 -174.46295377070075 64.5747 0.1144 12164 +12166 2 72.53148354671548 -174.29251942803538 64.6167 0.1144 12165 +12167 2 73.33993746388386 -173.4000223889537 64.6576 0.1144 12166 +12168 2 73.79939932452105 -171.6405241914119 64.6596 0.1144 12167 +12169 2 74.11802079554454 -170.4360264346988 64.6103 0.1144 12168 +12170 2 74.42415725531461 -169.38924009222006 64.5106 0.1144 12169 +12171 2 74.73078454617497 -168.39583043505553 64.3622 0.1144 12170 +12172 2 75.03638952283772 -167.41902041140312 64.1729 0.1144 12171 +12173 2 75.36872463363197 -166.4345519139202 63.9027 0.1144 12172 +12174 2 75.71773402069857 -165.3098829841634 63.5482 0.1144 12173 +12175 2 76.06918506218807 -164.03407420574922 63.1383 0.1144 12174 +12176 2 76.42024217923284 -162.3002598722789 62.697 0.1144 12175 +12177 2 76.68450450361618 -160.8662898918802 62.3445 0.1144 12176 +12178 2 76.89185819372778 -159.79889101029477 62.1102 0.1144 12177 +12179 2 77.08892938565214 -158.7225216151393 61.9615 0.1144 12178 +12180 2 77.28448743228857 -157.645060619755 61.8444 0.1144 12179 +12181 2 77.94830872085214 -157.1440161495572 61.3063 0.1144 12180 +12182 2 78.59928741078565 -156.59987598475655 60.2067 0.1144 12181 +12183 2 79.00730209489501 -155.3760430410523 59.1738 0.1144 12182 +12184 2 79.64154354761722 -153.63924493094504 58.3156 0.1144 12183 +12185 2 80.40308833904814 -153.19736440375513 57.5677 0.1144 12184 +12186 2 81.17319306747574 -152.6304333889633 56.9349 0.1144 12185 +12187 2 81.98049562930049 -152.2832387847841 56.4096 0.1144 12186 +12188 2 82.88602724576559 -150.63481046934098 55.9524 0.1144 12187 +12189 2 83.88261680741304 -150.5396380240661 55.5254 0.1144 12188 +12190 2 84.9064865957978 -150.59321547714043 55.1093 0.1144 12189 +12191 2 85.87179186676757 -148.94791614392776 54.7008 0.1144 12190 +12192 2 86.62758429112552 -148.43192511680041 54.3144 0.1144 12191 +12193 2 87.20271571517945 -147.76954330993226 53.9619 0.1144 12192 +12194 2 87.75405421401196 -147.07563355949924 53.6326 0.1144 12193 +12195 2 88.47503499199982 -146.17472531739128 53.312 0.1144 12194 +12196 2 89.4420738454195 -144.8579620407858 53.0032 0.1144 12195 +12197 2 90.4633136767197 -144.33023533060592 52.7136 0.1144 12196 +12198 2 91.4800445848431 -143.31527040872828 52.439 0.1144 12197 +12199 2 92.5083733396384 -143.4629156759158 52.1674 0.1144 12198 +12200 2 93.54266628645607 -143.14426465399802 51.8484 0.1144 12199 +12201 2 94.08942949781604 -141.46879084200097 51.3503 0.1144 12200 +12202 2 93.99892927455576 -140.25034418705366 50.6982 0.1144 12201 +12203 2 94.35150874694153 -139.29812413428175 50.0993 0.1144 12202 +12204 2 95.00195416024664 -138.71490022520481 49.6384 0.1144 12203 +12205 2 95.71887471436163 -138.23313128783013 49.2551 0.1144 12204 +12206 2 96.40411464430768 -137.3685166980263 48.9353 0.1144 12205 +12207 2 96.92890200692108 -135.32129427603104 48.6786 0.1144 12206 +12208 2 97.39156295288011 -134.43337415487673 48.4613 0.1144 12207 +12209 2 97.84143876820349 -133.60296230180447 48.2608 0.1144 12208 +12210 2 98.27844426004135 -132.77510672040398 48.0757 0.1144 12209 +12211 2 98.83307324021172 -132.05822025262702 47.8946 0.1144 12210 +12212 2 99.6870385592776 -130.8340716466308 47.6832 0.1144 12211 +12213 2 100.62866832707246 -130.0074997917246 47.4312 0.1144 12212 +12214 2 101.56904441694473 -129.8377170108399 47.1226 0.1144 12213 +12215 2 102.50684050649878 -129.61518812239294 46.7597 0.1144 12214 +12216 2 103.37729249171201 -127.8998988104984 46.3414 0.1144 12215 +12217 2 103.90925156162376 -127.21112882884742 45.8405 0.1144 12216 +12218 2 104.26699196392315 -126.28667287989802 45.3121 0.1144 12217 +12219 2 104.58739146353314 -125.33029133245887 44.7871 0.1144 12218 +12220 2 104.90410345577757 -124.40852637335851 44.2848 0.1144 12219 +12221 2 105.38494631266718 -123.65201843608104 43.8631 0.1144 12220 +12222 2 106.0822687172093 -121.42196201394904 43.5728 0.1144 12221 +12223 2 106.81220576568496 -120.95763728354457 43.3908 0.1144 12222 +12224 2 107.54347385995311 -120.51055565096435 43.2771 0.1144 12223 +12225 2 108.27474195422128 -120.06334215742196 43.1964 0.1144 12224 +12226 2 109.00592485563968 -118.14156548635519 43.1189 0.1144 12225 +12227 2 109.78755414107748 -117.49479083132712 42.952 0.1144 12226 +12228 2 110.59440972010825 -117.17704549160459 42.6661 0.1144 12227 +12229 2 111.4022383491069 -116.8660850177636 42.2957 0.1144 12228 +12230 2 112.20722278702516 -115.00234850620306 41.8785 0.1144 12229 +12231 2 112.83413715152071 -114.47437659044127 41.4896 0.1144 12230 +12232 2 113.17614590952509 -113.6494137469459 41.1967 0.1144 12231 +12233 2 113.50972687326194 -112.3343525675111 40.99 0.1144 12232 +12234 2 113.84113347492116 -110.66166886366868 40.85 0.1144 12233 +12235 2 114.23014275467895 -109.67457937898263 40.7473 0.1144 12234 +12236 2 114.85000963492908 -109.12072437154004 40.6395 0.1144 12235 +12237 2 115.47709989575387 -108.56463296257289 40.5166 0.1144 12236 +12238 2 115.99595038275233 -107.89200281265995 40.3542 0.1144 12237 +12239 2 116.44676331942348 -106.63434884784034 40.1811 0.1144 12238 +12240 2 117.0394061328688 -105.11528386952625 40.0714 0.1144 12239 +12241 2 117.63204894631416 -104.50965457408532 40.007 0.1144 12240 +12242 2 117.94389031442678 -104.20367026156195 40.1915 0.1144 12241 +12243 2 118.54472955841457 -103.61976601442568 39.9294 0.1144 12242 +12244 2 119.1701691152889 -103.04905928581236 39.7715 0.1144 12243 +12245 2 119.9170422217525 -101.26233494023175 39.6606 0.1144 12244 +12246 2 120.82872184624527 -101.09843953335213 39.6634 0.1144 12245 +12247 2 121.69685019692245 -100.85917911407965 39.7832 0.1144 12246 +12248 2 121.94658088105865 -100.05906432119161 40.0095 0.1144 12247 +12249 2 121.80163321672528 -98.9433948634021 40.476 0.1144 12248 +12250 2 121.7617289340315 -97.86639543220014 40.8892 0.1144 12249 +12251 2 121.75741803812733 -96.79505949320573 40.9542 0.1144 12250 +12252 2 121.85375795141091 -95.77665677093961 40.8554 0.1144 12251 +12253 2 121.39999992095935 -94.58072113359368 40.7431 0.1144 12252 +12254 2 120.50977058061916 -93.49768022470217 40.6454 0.1144 12253 +12255 2 119.8116997829596 -92.32925974025572 40.5471 0.1144 12254 +12256 2 119.55884741617724 -91.16965319937798 40.4578 0.1144 12255 +12257 2 119.4539849320811 -90.06263143241992 40.3326 0.1144 12256 +12258 2 119.51133865465832 -89.03247783457851 40.112 0.1144 12257 +12259 2 119.59720063464968 -88.02005476022795 39.8269 0.1144 12258 +12260 2 119.80327564478156 -87.0778430071122 39.5399 0.1144 12259 +12261 2 120.19536668251092 -86.27042888428208 39.2997 0.1144 12260 +12262 2 120.72847400618318 -85.61905322273178 39.0942 0.1144 12261 +12263 2 121.36202169916703 -84.61656222295785 38.9152 0.1144 12262 +12264 2 121.9908923976248 -83.26071276712715 38.7503 0.1144 12263 +12265 2 122.56348526061021 -82.60243599567947 38.547 0.1144 12264 +12266 2 122.95027091406061 -81.76863953341048 38.3272 0.1144 12265 +12267 2 123.21225104315761 -80.84020552278263 38.1836 0.1144 12266 +12268 2 123.55354621855938 -79.97113194007262 38.0786 0.1144 12267 +12269 2 124.14841886147832 -79.04317862518603 37.9823 0.1144 12268 +12270 2 124.8653886798229 -77.74144883423587 37.8868 0.1144 12269 +12271 2 125.35158928680428 -76.98701949133768 37.8132 0.1144 12270 +12272 2 125.53925412386363 -76.01230838141383 37.7731 0.1144 12271 +12273 2 125.65679293390426 -75.0000501693099 37.7602 0.1144 12272 +12274 2 125.80213424373625 -74.00064812537576 37.7804 0.1144 12273 +12275 2 125.95443164179761 -73.00523682417453 37.835 0.1144 12274 +12276 2 126.26307142655264 -72.12396388406849 37.9316 0.1144 12275 +12277 2 127.05554182030016 -71.14029572594092 38.0943 0.1144 12276 +12278 2 128.09728168643744 -70.72392763958551 38.3096 0.1144 12277 +12279 2 129.12708214727087 -70.68210391699851 38.5622 0.1144 12278 +12280 2 130.15152175642947 -70.03733521409103 38.859 0.1144 12279 +12281 2 131.20919008703981 -69.68806651909054 39.2171 0.1144 12280 +12282 2 132.29137723711042 -69.7690264307407 39.5875 0.1144 12281 +12283 2 133.37877906798045 -69.25724360846827 39.9319 0.1144 12282 +12284 2 134.46774640995113 -69.04929846996552 40.2363 0.1144 12283 +12285 2 135.55906711191184 -68.24082324531877 40.4818 0.1144 12284 +12286 2 136.65069344388442 -68.32635593104725 40.6358 0.1144 12285 +12287 2 137.7396077275058 -68.41997775199373 40.6588 0.1144 12286 +12288 2 138.8188507729635 -67.55334557935501 40.5118 0.1144 12287 +12289 2 139.88453653620402 -67.59308931425836 40.178 0.1144 12288 +12290 2 140.8168137000198 -67.38347086439032 39.7426 0.1144 12289 +12291 2 141.59961216306706 -66.31103908156517 39.2986 0.1144 12290 +12292 2 142.4008043619942 -65.57803384396917 38.859 0.1144 12291 +12293 2 143.2147074252703 -65.14577020570066 38.4661 0.1144 12292 +12294 2 144.0058672886262 -64.6770758207019 38.157 0.1144 12293 +12295 2 144.79160064623312 -63.38414443443442 37.9215 0.1144 12294 +12296 2 145.5793786322353 -62.85407548630518 37.7362 0.1144 12295 +12297 2 146.42665446288038 -62.44029733669049 37.5838 0.1144 12296 +12298 2 147.34178634219785 -61.96878231086774 37.4578 0.1144 12297 +12299 2 148.27920341738218 -61.01696219187029 37.3484 0.1144 12298 +12300 2 149.22649184188384 -60.75255950452121 37.2095 0.1144 12299 +12301 2 150.21259037137017 -60.55784378189424 37.1269 0.1144 12300 +12302 2 151.22791995092638 -59.610377341598 37.2058 0.1144 12301 +12303 2 152.25152485601245 -59.49555420353734 37.4368 0.1144 12302 +12304 2 153.2860522681382 -59.40958089228591 37.7815 0.1144 12303 +12305 2 154.25221576546838 -58.402258751690354 38.1142 0.1144 12304 +12306 2 155.1913311870191 -58.11903309112528 38.3729 0.1144 12305 +12307 2 156.2536857222086 -57.360537780351656 38.7296 0.1144 12306 +12308 2 157.3481856866268 -57.47474168464446 39.207 0.1144 12307 +12309 2 158.43703009592144 -57.585309865058385 39.7698 0.1144 12308 +12310 2 159.52103962601888 -56.93038685663333 40.3872 0.1144 12309 +12311 2 160.60331247208342 -57.03692064872035 41.0264 0.1144 12310 +12312 2 161.69447500528446 -57.16124843440542 41.5996 0.1144 12311 +12313 2 162.81114353075597 -56.62931532343019 41.9846 0.1144 12312 +12314 2 163.93539732144245 -56.780505473110104 42.2229 0.1144 12313 +12315 2 165.06760048163838 -56.87223494561014 42.3304 0.1144 12314 +12316 2 166.20167448117317 -56.736313614669335 42.2181 0.1144 12315 +12317 2 167.29917421897065 -57.20826379058942 41.5078 0.1144 12316 +12318 2 118.71137757538463 -105.0297745745987 39.8563 0.1144 12241 +12319 2 119.85205977699133 -104.47882339899316 39.6987 0.1144 12318 +12320 2 120.99180485725016 -104.70016927059244 39.4982 0.1144 12319 +12321 2 122.12261900051513 -105.17896373080062 39.2532 0.1144 12320 +12322 2 123.2267926121435 -104.10028543052981 38.967 0.1144 12321 +12323 2 124.31085090332645 -104.33959353214532 38.6618 0.1144 12322 +12324 2 125.39481538944695 -104.58933297596236 38.36 0.1144 12323 +12325 2 126.48105114429076 -103.43208858476956 38.0666 0.1144 12324 +12326 2 127.56796765470014 -103.67966921855988 37.781 0.1144 12325 +12327 2 128.6548317992968 -103.93276918603874 37.5052 0.1144 12326 +12328 2 129.74334664784382 -102.78058586501926 37.2394 0.1144 12327 +12329 2 130.83021079244048 -103.03008563435924 36.9852 0.1144 12328 +12330 2 131.92068817811594 -103.27991544519392 36.7382 0.1144 12329 +12331 2 133.00086283429178 -102.11373310605143 36.4946 0.1144 12330 +12332 2 134.020634061137 -102.1670741519269 36.2804 0.1144 12331 +12333 2 134.97432986633532 -102.07450201279231 36.1267 0.1144 12332 +12334 2 135.9122580986185 -100.58636069769474 36.0304 0.1144 12333 +12335 2 136.85076235484178 -100.45376403069585 35.9803 0.1144 12334 +12336 2 137.788723414162 -98.97796848112908 35.9663 0.1144 12335 +12337 2 138.7317780328118 -98.84502345553416 35.9786 0.1144 12336 +12338 2 139.6690778753421 -98.70522352415124 36.0086 0.1144 12337 +12339 2 140.58881327013177 -97.74730838549438 36.0517 0.1144 12338 +12340 2 141.50507298250506 -97.02746942664551 36.1127 0.1144 12339 +12341 2 142.420225187831 -96.84025119636729 36.2001 0.1144 12340 +12342 2 143.33488656206663 -96.57979124341568 36.3219 0.1144 12341 +12343 2 144.33250464107786 -95.36151469544421 36.4868 0.1144 12342 +12344 2 145.44408132372965 -95.67546982541033 36.701 0.1144 12343 +12345 2 146.5121529899086 -95.82036390658507 37.0955 0.1144 12344 +12346 2 147.56377632760686 -94.80095948439491 37.7157 0.1144 12345 +12347 2 148.67202047414577 -95.2742537978274 38.3228 0.1144 12346 +12348 2 149.75919435662553 -95.4695665837405 38.9791 0.1144 12347 +12349 2 150.79361124240762 -94.49043031277108 39.7149 0.1144 12348 +12350 2 151.84818109376525 -94.68880792834848 40.4239 0.1144 12349 +12351 2 152.85372520939057 -94.67710669330623 40.7817 0.1144 12350 +12352 2 153.9057647034444 -93.52372627509078 40.9542 0.1144 12351 +12353 2 154.97037509413798 -93.64284053828574 41.1093 0.1144 12352 +12354 2 156.03467675323668 -93.71054970878198 41.251 0.1144 12353 +12355 2 157.0580964572443 -92.52461584584383 41.3372 0.1144 12354 +12356 2 158.07735972326998 -92.23839059806927 41.4 0.1144 12355 +12357 2 159.09695125966633 -91.28823498286573 41.4812 0.1144 12356 +12358 2 160.11621452569204 -91.28307703278368 41.5663 0.1144 12357 +12359 2 160.67438597300037 -90.9328608224314 41.683 0.1144 12358 +12360 2 161.5012007990117 -89.76252841282881 41.8978 0.1144 12359 +12361 2 162.35730455153524 -89.09173218386654 42.2517 0.1144 12360 +12362 2 163.3203307288017 -88.99775584283861 42.7672 0.1144 12361 +12363 2 164.22920579025777 -88.70456852544223 43.5336 0.1144 12362 +12364 2 165.05323938612764 -87.39542289125067 44.3761 0.1144 12363 +12365 2 165.54965201912916 -86.7222597161309 45.1592 0.1144 12364 +12366 2 166.06382851848844 -86.10991796491669 45.799 0.1144 12365 +12367 2 166.76237945685162 -85.6239127976942 45.8934 0.1144 12366 +12368 2 167.57187160458096 -84.41873984519829 44.8291 0.1144 12367 +12369 2 168.39263013233233 -84.00984634125507 43.6489 0.1144 12368 +12370 2 169.29468666422156 -83.82961894241494 42.8641 0.1144 12369 +12371 2 170.23224509218818 -83.48261380611544 42.3886 0.1144 12370 +12372 2 171.19708074000516 -82.40512227173497 42.1957 0.1144 12371 +12373 2 172.2027625089893 -82.33930044517142 42.2237 0.1144 12372 +12374 2 173.23183457184115 -82.32108954926917 42.3746 0.1144 12373 +12375 2 174.26373281411526 -81.21981335455786 42.5603 0.1144 12374 +12376 2 175.2909392464843 -81.19446838653631 42.7291 0.1144 12375 +12377 2 176.29950034793615 -81.12853815957097 42.8949 0.1144 12376 +12378 2 177.30272013648892 -79.96849282325145 43.0819 0.1144 12377 +12379 2 178.17517841243063 -79.68144520993467 43.2622 0.1144 12378 +12380 2 178.7687645503899 -79.04543526639203 43.2911 0.1144 12379 +12381 2 179.70356777424564 -78.57191228696453 43.0786 0.1144 12380 +12382 2 180.4577088021166 -77.37364829751519 42.8809 0.1144 12381 +12383 2 181.007649073965 -76.6879986152014 42.707 0.1144 12382 +12384 2 181.5179451345965 -75.63794258013118 42.4883 0.1144 12383 +12385 2 182.0080615110854 -74.2140345816084 42.2601 0.1144 12384 +12386 2 182.50225853215176 -73.47255627101949 42.0221 0.1144 12385 +12387 2 183.0470434794124 -72.77243686817621 41.7883 0.1144 12386 +12388 2 183.67102304404443 -72.14384639426447 41.6304 0.1144 12387 +12389 2 184.3701313968491 -71.36987892737056 41.5727 0.1144 12388 +12390 2 185.18736327912967 -70.22947641912324 41.5906 0.1144 12389 +12391 2 186.04563519056467 -69.86594406254525 41.6503 0.1144 12390 +12392 2 186.90382190914994 -69.49858094203445 41.722 0.1144 12391 +12393 2 187.7616029894947 -68.47978738783766 41.7696 0.1144 12392 +12394 2 188.61846727450018 -67.83959282380049 41.7606 0.1144 12393 +12395 2 189.43084006275922 -67.40793651623787 41.6609 0.1144 12394 +12396 2 190.19252260224505 -66.9109842790835 41.4464 0.1144 12395 +12397 2 190.79108506688 -65.63595462781612 41.0413 0.1144 12396 +12398 2 191.2692806475635 -64.63148790104093 40.427 0.1144 12397 +12399 2 191.80610181838364 -63.971697853325104 39.5657 0.1144 12398 +12400 2 192.5174270851789 -63.59816252792893 38.1738 0.1144 12399 +12401 2 193.31601634165537 -63.4094979925857 36.6206 0.1144 12400 +12402 2 194.14664352558873 -63.228582693944524 35.1834 0.1144 12401 +12403 2 194.95427304972213 -62.435839258993276 33.9752 0.1144 12402 +12404 2 195.74529256658417 -61.723830317473244 32.8894 0.1144 12403 +12405 2 196.51147661271494 -61.312436270052196 31.852 0.1144 12404 +12406 2 197.26769870074537 -60.87149581543667 30.9058 0.1144 12405 +12407 2 198.11067163844473 -60.52832108429101 30.0852 0.1144 12406 +12408 2 199.06689090524404 -60.345725450034855 29.3821 0.1144 12407 +12409 2 200.06499661906628 -60.22470961358028 28.7602 0.1144 12408 +12410 2 201.05846057444592 -59.2740225220119 28.189 0.1144 12409 +12411 2 201.99923359564983 -59.03140682462425 27.6504 0.1144 12410 +12412 2 202.91704460158525 -58.744976597233894 27.1071 0.1144 12411 +12413 2 203.9340838448337 -58.91200179391375 26.4523 0.1144 12412 +12414 2 205.0207030179853 -58.84974340083161 25.6913 0.1144 12413 +12415 2 206.109135473492 -58.968997581059675 24.9114 0.1144 12414 +12416 2 207.1310524379455 -58.96974598675507 24.1255 0.1144 12415 +12417 2 208.0292018125399 -58.70435616473341 23.3207 0.1144 12416 +12418 2 208.49187867486233 -58.01172271215961 22.3275 0.1144 12417 +12419 2 209.3990586929056 -57.5075811550139 21.2625 0.1144 12418 +12420 2 210.4028974540807 -57.32438169654555 20.19 0.1144 12419 +12421 2 211.45299092520986 -57.422541770411414 19.3 0.1144 12420 +12422 2 212.56966735267247 -57.796617532788154 18.6913 0.1144 12421 +12423 2 213.70175738808587 -57.811897671862624 18.288 0.1144 12422 +12424 2 214.8162172093031 -57.95365526238685 17.9494 0.1144 12423 +12425 2 159.83580121008583 -91.67207528674118 41.2658 0.1144 12358 +12426 2 159.32693310189245 -92.37368433331264 41.2143 0.1144 12425 +12427 2 158.81640567753593 -93.07184528214721 41.2619 0.1144 12426 +12428 2 158.4437916679095 -94.46992825490429 41.225 0.1144 12427 +12429 2 158.4010496762475 -95.68052695694888 41.034 0.1144 12428 +12430 2 158.90323238677092 -96.06816003684477 40.9632 0.1144 12429 +12431 2 159.39735691795096 -97.25380265455681 40.8456 0.1144 12430 +12432 2 159.8707507431054 -98.42267052346843 40.3858 0.1144 12431 +12433 2 11.423441983881617 -381.15380326882774 47.1624 0.1144 10271 +12434 2 10.903004481214062 -379.9891400732375 47.5546 0.1144 12433 +12435 2 10.514413470227275 -378.6037826586933 47.8419 0.1144 12434 +12436 2 10.055138230547449 -377.36590391402734 48.1586 0.1144 12435 +12437 2 9.459774868355147 -377.0657235901454 48.5313 0.1144 12436 +12438 2 9.260309983318187 -376.1182664504353 48.9135 0.1144 12437 +12439 2 9.266025219819127 -374.8161581321136 49.2554 0.1144 12438 +12440 2 8.917225378157312 -373.447461022438 49.5547 0.1144 12439 +12441 2 8.377140461687212 -372.0335109893174 49.8744 0.1144 12440 +12442 2 8.144388002130981 -370.7428009152964 50.2076 0.1144 12441 +12443 2 7.769480905461016 -369.43853133148446 50.5862 0.1144 12442 +12444 2 7.106903486362313 -367.9469767142879 50.9188 0.1144 12443 +12445 2 6.235301654673627 -367.6085843330692 51.2201 0.1144 12444 +12446 2 5.670416912003816 -366.7122950564334 51.6622 0.1144 12445 +12447 2 5.610160150421336 -365.42218366357656 52.1332 0.1144 12446 +12448 2 5.468414672992957 -364.07205643423384 52.5067 0.1144 12447 +12449 2 5.198503410242772 -362.65841296607465 52.8464 0.1144 12448 +12450 2 4.9501076008244524 -361.28871242248255 53.1832 0.1144 12449 +12451 2 5.254329165882069 -360.2444156274852 53.4447 0.1144 12450 +12452 2 5.7002861101147815 -359.3855522825109 53.6567 0.1144 12451 +12453 2 5.669788182285949 -358.1098203096367 53.9694 0.1144 12452 +12454 2 5.237680849478551 -356.646751681847 54.2892 0.1144 12453 +12455 2 4.87613111326467 -355.2156495400782 54.5664 0.1144 12454 +12456 2 4.371721674850789 -354.30986345061723 54.8397 0.1144 12455 +12457 2 3.7774744319185416 -354.1246768493012 55.1947 0.1144 12456 +12458 2 3.2200218878857356 -352.6495166903543 55.5472 0.1144 12457 +12459 2 2.8703201609597215 -351.2221568226194 55.9115 0.1144 12458 +12460 2 2.6207760977808974 -349.85407115776223 56.4133 0.1144 12459 +12461 2 2.180164295372684 -348.34210930657105 56.7955 0.1144 12460 +12462 2 2.197710127343697 -347.11661573345515 57.136 0.1144 12461 +12463 2 2.6421570278716473 -346.22984993693973 57.5162 0.1144 12462 +12464 2 2.9059675513679295 -345.15579917373145 57.9788 0.1144 12463 +12465 2 2.6004461805469674 -343.77613592646526 58.4895 0.1144 12464 +12466 2 2.0537224249588846 -342.25436040189817 58.9646 0.1144 12465 +12467 2 2.102590192737644 -341.0663645581179 59.4507 0.1144 12466 +12468 2 2.1545156930560196 -339.8280312900343 59.9614 0.1144 12467 +12469 2 1.7008107209538252 -338.33491117746945 60.3865 0.1144 12468 +12470 2 1.114316027353027 -336.84559609535273 60.7261 0.1144 12469 +12471 2 0.5188120049151195 -336.845520668885 61.0487 0.1144 12470 +12472 2 0.06942223739478948 -335.69474481670557 61.4188 0.1144 12471 +12473 2 -0.1551782377556279 -334.2582308845772 61.7901 0.1144 12472 +12474 2 -0.3549313389865887 -332.8284311439655 62.109 0.1144 12473 +12475 2 -0.6830706627013754 -331.34297228772294 62.3837 0.1144 12474 +12476 2 -1.1687259603641778 -329.82204950902593 62.6321 0.1144 12475 +12477 2 -1.6319231727177481 -328.2954477082092 62.8653 0.1144 12476 +12478 2 -2.17263647894071 -326.7872844695377 63.1599 0.1144 12477 +12479 2 -2.4712343044807312 -325.842372000404 63.6185 0.1144 12478 +12480 2 -2.6756058312589204 -324.91474946061663 64.1248 0.1144 12479 +12481 2 -2.9170948166774977 -324.0434702397715 64.6699 0.1144 12480 +12482 2 -3.450005616802784 -322.90117300456194 65.1678 0.1144 12481 +12483 2 -4.210301738360805 -321.4740104484587 65.7866 0.1144 12482 +12484 2 -4.8037908578576065 -321.12392112614776 66.1982 0.1144 12483 +12485 2 -5.398666490542723 -320.32615207295316 66.5428 0.1144 12484 +12486 2 -5.99595095061369 -318.7898598685053 66.7383 0.1144 12485 +12487 2 -6.595015848317701 -317.2482935131827 66.8136 0.1144 12486 +12488 2 -7.342966914353276 -316.3017378217581 66.7097 0.1144 12487 +12489 2 -8.117120437510799 -316.00189706414926 66.488 0.1144 12488 +12490 2 -8.731326234887042 -315.2079763625457 66.2494 0.1144 12489 +12491 2 -9.30985655420698 -313.6752087226783 66.0108 0.1144 12490 +12492 2 -9.745615465759862 -312.1982536903133 65.756 0.1144 12491 +12493 2 -9.980377317627642 -311.09063520004526 65.506 0.1144 12492 +12494 2 -10.510482956875734 -310.6860994855502 65.2484 0.1144 12493 +12495 2 -11.208033197991078 -309.6167618997986 64.9132 0.1144 12494 +12496 2 -11.754128563826335 -308.1660754856734 64.6332 0.1144 12495 +12497 2 -12.02226249052655 -306.70920241370874 64.3821 0.1144 12496 +12498 2 -12.310302605858027 -305.249024323444 64.1178 0.1144 12497 +12499 2 -12.496818775566204 -303.83419675560725 63.8957 0.1144 12498 +12500 2 -12.533823399783849 -302.5250483132015 63.7098 0.1144 12499 +12501 2 -12.39675760487409 -301.3557284529379 63.5373 0.1144 12500 +12502 2 -12.743562774906962 -299.87690839252787 63.2814 0.1144 12501 +12503 2 -13.212640702943013 -298.3798710868378 62.9087 0.1144 12502 +12504 2 -13.355446832235629 -297.011782551166 62.627 0.1144 12503 +12505 2 -13.40559768449657 -295.7051123520293 62.41 0.1144 12504 +12506 2 -13.694448289076263 -294.7719182047965 62.2499 0.1144 12505 +12507 2 -14.047129356698633 -293.93064595087367 62.1292 0.1144 12506 +12508 2 -14.22910067460991 -292.9048429313126 62.0172 0.1144 12507 +12509 2 -14.055281620050437 -291.24801315948844 61.9136 0.1144 12508 +12510 2 -13.78862449642736 -289.5716302012874 61.8374 0.1144 12509 +12511 2 -13.678562331160379 -288.0828881637994 61.7873 0.1144 12510 +12512 2 -13.70844899896548 -286.7572044807069 61.7635 0.1144 12511 +12513 2 -13.82109996101326 -285.5375165482109 61.7492 0.1144 12512 +12514 2 -13.827590729624802 -284.1873909342909 61.7408 0.1144 12513 +12515 2 -13.58578718308732 -282.8131144176924 61.7957 0.1144 12514 +12516 2 -13.37004945230828 -281.68947116698257 61.9153 0.1144 12515 +12517 2 -13.513216679008565 -280.3255652693487 62.0298 0.1144 12516 +12518 2 -13.883896865529593 -278.9743896161736 62.1348 0.1144 12517 +12519 2 -14.278945308675489 -278.1527292068401 62.2182 0.1144 12518 +12520 2 -14.700406636841436 -277.3951310653031 62.2378 0.1144 12519 +12521 2 -15.098351636880452 -276.20873061037867 62.1874 0.1144 12520 +12522 2 -15.572026782526194 -274.7898828826604 62.088 0.1144 12521 +12523 2 -16.18578628964498 -273.5986803390994 61.9833 0.1144 12522 +12524 2 -17.097812782593067 -273.2345201961072 61.9007 0.1144 12523 +12525 2 -18.138991132688602 -272.322310645491 61.8554 0.1144 12524 +12526 2 -19.227122048369893 -271.44643854442154 61.8481 0.1144 12525 +12527 2 -20.252043379533134 -271.4751093024289 61.8965 0.1144 12526 +12528 2 -21.110819333872968 -270.13033733099957 61.9676 0.1144 12527 +12529 2 -21.805476119678303 -269.1535028392004 62.0298 0.1144 12528 +12530 2 -22.521281845474462 -267.64636695210453 62.1382 0.1144 12529 +12531 2 -23.183280831586572 -266.9895047206794 62.2913 0.1144 12530 +12532 2 -23.8137053102284 -265.8650536752866 62.4548 0.1144 12531 +12533 2 -24.618862827545726 -264.6937339624824 62.6184 0.1144 12532 +12534 2 -25.556239144603126 -264.9204234514231 62.8513 0.1144 12533 +12535 2 -26.268739668378828 -263.44058668371423 63.2912 0.1144 12534 +12536 2 -26.864637615261458 -261.9151344125544 63.6202 0.1144 12535 +12537 2 -27.29813146125717 -260.40698412024705 63.8019 0.1144 12536 +12538 2 -27.86348031645025 -259.17573636404285 63.8613 0.1144 12537 +12539 2 -28.460585778608888 -258.558077218305 63.8722 0.1144 12538 +12540 2 -28.75161074526639 -257.5144603988117 63.9498 0.1144 12539 +12541 2 -29.4581121370029 -255.96470648308343 64.1245 0.1144 12540 +12542 2 -30.0403823295012 -254.4389203468573 64.2608 0.1144 12541 +12543 2 -30.652810790827417 -253.4281337018678 64.409 0.1144 12542 +12544 2 -31.405724670514772 -253.04368324275129 64.5411 0.1144 12543 +12545 2 -32.15831889204419 -251.84009963309268 64.6556 0.1144 12544 +12546 2 -32.737607334799605 -250.31052675238737 64.7833 0.1144 12545 +12547 2 -33.23667305126783 -248.79020716427777 64.9247 0.1144 12546 +12548 2 -33.73497281932069 -247.27510536450302 65.0756 0.1144 12547 +12549 2 -34.234975657136616 -246.40829464445864 65.2305 0.1144 12548 +12550 2 -34.75537241309107 -245.80314085775797 65.3836 0.1144 12549 +12551 2 -35.46284956561567 -244.65950717353604 65.5354 0.1144 12550 +12552 2 -36.26987271341579 -243.73316926286148 65.672 0.1144 12551 +12553 2 -36.85597658415493 -243.28695952453518 65.7446 0.1144 12552 +12554 2 -37.31463746222802 -242.07840717831567 65.742 0.1144 12553 +12555 2 -37.77864516382979 -240.56777674342618 65.6824 0.1144 12554 +12556 2 -38.27178020784933 -239.0501552478297 65.5816 0.1144 12555 +12557 2 -38.79931204994537 -237.52975420752895 65.4553 0.1144 12556 +12558 2 -39.336057220848076 -236.02225303409227 65.3187 0.1144 12557 +12559 2 -39.88171481394231 -235.13404992180364 65.1762 0.1144 12558 +12560 2 -40.49124671837549 -234.82264971725232 65.0647 0.1144 12559 +12561 2 -41.173383256843806 -233.39255827393686 65.0261 0.1144 12560 +12562 2 -41.8843329902016 -232.3012262690568 65.0292 0.1144 12561 +12563 2 -42.7369250078936 -231.3952742359577 65.0619 0.1144 12562 +12564 2 -43.722355697562136 -230.8025750687438 65.1176 0.1144 12563 +12565 2 -44.68814818348113 -229.64954003068362 65.1384 0.1144 12564 +12566 2 -45.49461892432518 -228.9334674055225 65.0952 0.1144 12565 +12567 2 -45.65765330945342 -227.71190604237285 65.0124 0.1144 12566 +12568 2 -45.16520408837542 -226.26553878500965 64.8995 0.1144 12567 +12569 2 -44.71602233456399 -225.45861601173146 64.7335 0.1144 12568 +12570 2 -45.13922817174284 -224.00953682946636 64.589 0.1144 12569 +12571 2 -45.62403464249074 -223.03581403435828 64.4728 0.1144 12570 +12572 2 -46.10776643322839 -221.82347697048152 64.372 0.1144 12571 +12573 2 -46.59248771112652 -220.29854683942932 64.2779 0.1144 12572 +12574 2 -47.09053111339718 -219.36034967488325 64.1729 0.1144 12573 +12575 2 -47.626785453209564 -218.69847460273823 64.02 0.1144 12574 +12576 2 -48.17471121344403 -217.66109966110247 63.8061 0.1144 12575 +12577 2 -48.60111923752781 -216.16159088874494 63.5793 0.1144 12576 +12578 2 -48.888010406562145 -214.70024898249602 63.3791 0.1144 12577 +12579 2 -49.17396445424873 -213.23664930681548 63.2066 0.1144 12578 +12580 2 -49.471496117295004 -211.76654312201313 63.0664 0.1144 12579 +12581 2 -49.83509358348708 -210.27440815490422 62.9793 0.1144 12580 +12582 2 -50.273349616858724 -208.79081861482905 62.9527 0.1144 12581 +12583 2 -50.75851718501431 -208.0233850122632 62.9283 0.1144 12582 +12584 2 -51.30916050422961 -207.22603194410652 62.8527 0.1144 12583 +12585 2 -51.86220954924771 -206.12197320288513 62.729 0.1144 12584 +12586 2 -52.413660256128125 -204.59134205762282 62.5626 0.1144 12585 +12587 2 -52.96644200880101 -203.0677428015689 62.3596 0.1144 12586 +12588 2 -53.569337483162755 -201.95275489549854 62.1258 0.1144 12587 +12589 2 -54.250396240037716 -201.62421207194103 61.8708 0.1144 12588 +12590 2 -54.87908172029627 -200.44697760352477 61.6042 0.1144 12589 +12591 2 -55.40028586391581 -198.93402970830954 61.3306 0.1144 12590 +12592 2 -55.90143764802889 -197.4184095432387 61.0498 0.1144 12591 +12593 2 -56.40192821535207 -195.90178019364023 60.76 0.1144 12592 +12594 2 -56.90272751427018 -194.5545344685762 60.4587 0.1144 12593 +12595 2 -57.4032509086305 -193.78077405725108 60.144 0.1144 12594 +12596 2 -57.94855291494663 -193.2834642117611 59.8046 0.1144 12595 +12597 2 -58.65754252022255 -191.80685185004813 59.4124 0.1144 12596 +12598 2 -59.44358169779801 -190.8104272992449 58.9666 0.1144 12597 +12599 2 -60.15613217833996 -189.44470611427403 58.4982 0.1144 12598 +12600 2 -60.859331771412755 -188.44878573593024 58.011 0.1144 12599 +12601 2 -61.400297649298196 -187.79039461913874 57.5053 0.1144 12600 +12602 2 -61.73016745387976 -186.3348681150855 56.9834 0.1144 12601 +12603 2 -62.027073136219684 -184.89033284300442 56.4561 0.1144 12602 +12604 2 -62.18395641173724 -183.5242016646037 55.9272 0.1144 12603 +12605 2 -62.18023894844832 -182.2481125957248 55.4014 0.1144 12604 +12606 2 -62.169576323493004 -180.97422451064313 54.892 0.1144 12605 +12607 2 -62.1733909723735 -179.68997548916713 54.4118 0.1144 12606 +12608 2 -62.43032648747614 -178.28776032553066 53.9966 0.1144 12607 +12609 2 -63.08354991752259 -177.0793801270542 53.692 0.1144 12608 +12610 2 -63.89169228616589 -175.80871351140763 53.4965 0.1144 12609 +12611 2 -64.6892738430175 -175.10826911610388 53.3842 0.1144 12610 +12612 2 -65.38107551117953 -174.63985573499946 53.3324 0.1144 12611 +12613 2 -65.84426962194996 -173.21496251843712 53.3196 0.1144 12612 +12614 2 -66.17753533203144 -171.72237206603734 53.3268 0.1144 12613 +12615 2 -66.51124733237032 -170.22996647844565 53.3428 0.1144 12614 +12616 2 -66.84562054949909 -168.73807898852743 53.3646 0.1144 12615 +12617 2 -67.16930090680326 -167.25213472689757 53.396 0.1144 12616 +12618 2 -67.43984366088942 -165.78501795027174 53.4411 0.1144 12617 +12619 2 -67.62551961589548 -164.35973018164708 53.5024 0.1144 12618 +12620 2 -67.78695394637614 -162.94579863116604 53.5816 0.1144 12619 +12621 2 -68.06413002895063 -161.61503044013716 53.6976 0.1144 12620 +12622 2 -68.65035983925272 -161.382604880188 53.9003 0.1144 12621 +12623 2 -69.385404333724 -160.41562031094946 54.1797 0.1144 12622 +12624 2 -69.96682810835398 -158.89386897901335 54.4132 0.1144 12623 +12625 2 -70.45996315237349 -158.09348770153454 54.5504 0.1144 12624 +12626 2 -70.98931687135234 -157.52847533056934 54.6216 0.1144 12625 +12627 2 -71.84531299830894 -156.40253530129246 54.7901 0.1144 12626 +12628 2 -72.95742054854261 -155.70202429777166 55.1177 0.1144 12627 +12629 2 -74.08098429089229 -156.13012100050605 55.1824 0.1144 12628 +12630 2 -75.03101499861442 -155.3771688437189 55.0186 0.1144 12629 +12631 2 -75.36832551934948 -153.9018909671011 54.9564 0.1144 12630 +12632 2 -75.50668671037756 -152.50568841120628 55.0637 0.1144 12631 +12633 2 -76.08135942072094 -151.0645622056626 55.3115 0.1144 12632 +12634 2 -76.517193622534 -149.71925450852103 55.5234 0.1144 12633 +12635 2 -76.55865790569877 -148.3737840211108 55.5492 0.1144 12634 +12636 2 -76.59939999404826 -147.02537581386883 55.5979 0.1144 12635 +12637 2 -76.65223006762336 -145.67531626791427 55.7318 0.1144 12636 +12638 2 -76.70545406564315 -144.3260467584385 55.9549 0.1144 12637 +12639 2 -77.19190272282498 -143.1273777235704 56.2481 0.1144 12638 +12640 2 -77.9315851816192 -143.20460931119155 56.5995 0.1144 12639 +12641 2 -78.70034812764796 -141.70805859334158 56.9934 0.1144 12640 +12642 2 -79.46955736393419 -140.2140748070914 57.4112 0.1144 12641 +12643 2 -80.21591148888338 -138.77771035879994 57.9538 0.1144 12642 +12644 2 -80.91339395096676 -138.38569499843103 58.7941 0.1144 12643 +12645 2 -80.86003529506127 -138.04634612882694 59.631 0.1144 12644 +12646 2 -80.5767706679095 -136.24113076065146 60.7485 0.1144 12645 +12647 2 -80.3315527010698 -135.16319774197314 61.8153 0.1144 12646 +12648 2 -80.1342870980139 -134.0364921272121 62.6766 0.1144 12647 +12649 2 -79.9489280732249 -132.91630715296677 63.3898 0.1144 12648 +12650 2 -79.80281702085782 -131.75300379167004 64.0072 0.1144 12649 +12651 2 -79.77521592886812 -130.4877656848588 64.5714 0.1144 12650 +12652 2 -79.80487054041163 -129.17787587000052 65.1036 0.1144 12651 +12653 2 -79.8406707509363 -127.86449438718137 65.6452 0.1144 12652 +12654 2 -79.87722598331338 -126.55454686598213 66.2236 0.1144 12653 +12655 2 -79.90799361253382 -125.25592884740412 66.8758 0.1144 12654 +12656 2 -80.00441288914325 -123.95974546405301 67.7634 0.1144 12655 +12657 2 -80.54071307785041 -122.58508047773988 68.8125 0.1144 12656 +12658 2 -81.35510305430202 -121.68850322436955 69.7942 0.1144 12657 +12659 2 -82.18064849937596 -122.71886935150775 71.0898 0.1144 12658 +12660 2 -82.08717552364155 -122.95929007792232 72.1966 0.1144 12659 +12661 2 -81.86791986571441 -123.52374365870907 74.8017 0.1144 12660 +12662 2 -81.60885321559796 -123.40370798816897 77.4281 0.1144 12661 +12663 2 -81.1449658368195 -122.19075537565851 79.5514 0.1144 12662 +12664 2 -80.6404786049671 -121.61893121563911 81.1664 0.1144 12663 +12665 2 -80.68312467915106 -120.53350277730972 82.7548 0.1144 12664 +12666 2 -81.63025402957207 -120.55608201136454 84.1103 0.1144 12665 +12667 2 -82.4552666777698 -120.11346140003155 85.213 0.1144 12666 +12668 2 -83.32239343729204 -118.76979195084327 86.1288 0.1144 12667 +12669 2 -84.12948094878931 -117.35584595343975 86.9912 0.1144 12668 +12670 2 -84.7491940528042 -116.34130985526356 87.8763 0.1144 12669 +12671 2 -85.56079048747831 -116.47970216320033 88.6558 0.1144 12670 +12672 2 -86.38409116961164 -115.27982887825841 89.4149 0.1144 12671 +12673 2 -86.6924386251585 -114.09083438090599 90.2166 0.1144 12672 +12674 2 -86.9060720524364 -112.9287967460737 91.0493 0.1144 12673 +12675 2 -87.24777445308656 -111.74297696447115 91.9876 0.1144 12674 +12676 2 -87.64248713231878 -110.56305629096474 93.0213 0.1144 12675 +12677 2 -88.03523417283945 -109.39961551791977 94.1256 0.1144 12676 +12678 2 -88.04840743320163 -109.30403174459651 94.6915 0.1144 12677 +12679 2 -87.44926063418758 -108.98972003356124 96.1853 0.1144 12678 +12680 2 -86.74768800428619 -108.72353126214605 97.5472 0.1144 12679 +12681 2 -86.68650811469628 -107.77260386758637 98.8319 0.1144 12680 +12682 2 -86.81739776313246 -106.70432173051974 100.0392 0.1144 12681 +12683 2 -87.08086600065438 -105.57985632668245 101.1903 0.1144 12682 +12684 2 -87.52198845701717 -104.4081046307105 102.2605 0.1144 12683 +12685 2 -87.966991446804 -103.2301446185257 103.2763 0.1144 12684 +12686 2 -88.22710583360121 -102.30106543671548 104.8281 0.1144 12685 +12687 2 -88.48196279228712 -101.247155193245 106.2555 0.1144 12686 +12688 2 -88.4336932803593 -100.3382894782856 107.6452 0.1144 12687 +12689 2 -88.09404849515616 -99.58272553570373 108.9068 0.1144 12688 +12690 2 -87.80373879280558 -98.78272472109273 110.1422 0.1144 12689 +12691 2 -87.87477570235723 -97.79819016640668 111.4688 0.1144 12690 +12692 2 -88.29894358592976 -96.73632777015534 112.9285 0.1144 12691 +12693 2 -88.94388018372806 -96.04113041368751 114.6169 0.1144 12692 +12694 2 -89.84526407539141 -96.36497540012137 116.0726 0.1144 12693 +12695 2 -90.68389457538387 -95.39054944560019 117.3348 0.1144 12694 +12696 2 -91.44678672600485 -94.3252326935163 118.4952 0.1144 12695 +12697 2 -92.19640119838994 -93.32163818278337 119.5832 0.1144 12696 +12698 2 -92.7514202917646 -93.16149027543337 120.6976 0.1144 12697 +12699 2 -93.04229090146707 -92.29984985204014 121.8339 0.1144 12698 +12700 2 -93.24147377347617 -91.19341753859528 122.9536 0.1144 12699 +12701 2 -93.4314847559284 -90.09237030762156 124.0761 0.1144 12700 +12702 2 -93.64947413450132 -88.98836049497032 125.2222 0.1144 12701 +12703 2 -94.27051107485411 -87.992015972788 126.5331 0.1144 12702 +12704 2 -94.99096737838298 -87.03861556246986 128.0434 0.1144 12703 +12705 2 -95.19545083426304 -86.11609144140513 129.7789 0.1144 12704 +12706 2 -95.26500983461041 -85.15209149498041 131.2956 0.1144 12705 +12707 2 -95.28038909467783 -84.1257946750736 132.4212 0.1144 12706 +12708 2 -95.29224410063588 -83.07340075538416 133.3984 0.1144 12707 +12709 2 -95.31663097303057 -82.00106927395466 134.2788 0.1144 12708 +12710 2 -95.38356180981452 -80.91077740848984 135.1442 0.1144 12709 +12711 2 -95.93521133747157 -79.77741781810872 136.0892 0.1144 12710 +12712 2 -96.5023135979788 -79.3749855008202 137.0673 0.1144 12711 +12713 2 -97.06829663764289 -78.62395835685562 138.0582 0.1144 12712 +12714 2 -97.62590114726919 -77.5098065673655 139.1158 0.1144 12713 +12715 2 -98.11121347156372 -76.54371512830906 140.7896 0.1144 12714 +12716 2 -87.26597863411942 -104.02479945101013 103.8237 0.1144 12685 +12717 2 -86.58771201626382 -105.15943641721195 104.7766 0.1144 12716 +12718 2 -86.42692148875524 -106.29267932588196 105.4206 0.1144 12717 +12719 2 -86.4763498672548 -107.35404606361564 106.006 0.1144 12718 +12720 2 -86.45965938425927 -108.45612631451903 106.5333 0.1144 12719 +12721 2 -86.10983412681679 -109.68568677445852 106.9827 0.1144 12720 +12722 2 -85.59683192436928 -110.89637749694306 107.319 0.1144 12721 +12723 2 -85.06123880134683 -111.08849865184966 107.548 0.1144 12722 +12724 2 -84.52534555894216 -111.97064870999164 107.6771 0.1144 12723 +12725 2 -84.09216044454134 -113.24162914024718 107.595 0.1144 12724 +12726 2 -83.76705833796528 -114.48046672072661 107.2198 0.1144 12725 +12727 2 -83.47648345568501 -115.6939161849381 106.5795 0.1144 12726 +12728 2 -83.02259707662395 -116.9444361135848 105.7636 0.1144 12727 +12729 2 -83.19220394171711 -118.04491836160105 104.8603 0.1144 12728 +12730 2 -83.86944185225227 -118.56737830464856 104.0592 0.1144 12729 +12731 2 -84.54845709883739 -119.23383394722016 103.3012 0.1144 12730 +12732 2 -85.18507042635198 -121.49242588225151 102.0866 0.1144 12731 +12733 2 -88.42537416874491 -109.25846289609193 93.5158 0.1144 12677 +12734 2 -89.08720717880249 -109.11717761993627 92.3213 0.1144 12733 +12735 2 -89.78152269006445 -107.92069727014456 91.4816 0.1144 12734 +12736 2 -90.49420221175247 -106.69783007083993 90.8219 0.1144 12735 +12737 2 -91.22430172681587 -105.48597424198942 90.1802 0.1144 12736 +12738 2 -92.00624303538847 -105.12776794178042 89.7058 0.1144 12737 +12739 2 -92.81362728059634 -104.53070967828641 89.425 0.1144 12738 +12740 2 -93.62665846871504 -103.3132363035585 89.3183 0.1144 12739 +12741 2 -94.43934809820179 -102.10293541803487 89.3402 0.1144 12740 +12742 2 -95.25300767607335 -101.46455545386576 89.4387 0.1144 12741 +12743 2 -96.07490753278364 -101.11518109141463 89.5698 0.1144 12742 +12744 2 -96.94882748837881 -99.9442102311752 89.7148 0.1144 12743 +12745 2 -97.81776481943598 -98.76636648968089 89.8234 0.1144 12744 +12746 2 -98.66149127011953 -98.24181583488829 89.8652 0.1144 12745 +12747 2 -99.49728617355935 -97.78792548325488 89.8456 0.1144 12746 +12748 2 -100.33205876280155 -96.60460746774943 89.7831 0.1144 12747 +12749 2 -101.16683135204381 -96.78045965003113 89.6983 0.1144 12748 +12750 2 -102.00262625548363 -95.59394945817054 89.6274 0.1144 12749 +12751 2 -102.83802723447874 -94.41470917046297 89.5868 0.1144 12750 +12752 2 -103.67279982372096 -93.24538657529952 89.5812 0.1144 12751 +12753 2 -104.4920704158833 -93.37633977967879 89.6333 0.1144 12752 +12754 2 -105.57027713097553 -92.81449632218704 89.801 0.1144 12753 +12755 2 -106.581995671422 -92.60012009065673 90.8681 0.1144 12754 +12756 2 -82.82086945122968 -121.69473918416972 71.629 0.1144 12659 +12757 2 -83.76630394763043 -120.32779020000487 71.4762 0.1144 12756 +12758 2 -84.83248094470227 -120.1370981728005 71.1418 0.1144 12757 +12759 2 -85.96180766693625 -120.16752385236903 70.8341 0.1144 12758 +12760 2 -87.08290642196764 -119.19585575027105 70.5261 0.1144 12759 +12761 2 -88.10198709162505 -118.93807075705908 70.091 0.1144 12760 +12762 2 -88.85487152994698 -118.44761082550647 69.3874 0.1144 12761 +12763 2 -89.16373884950161 -117.05817882213117 68.357 0.1144 12762 +12764 2 -89.37495423934054 -115.90616718454362 67.2151 0.1144 12763 +12765 2 -89.72864771857076 -114.71157068433983 66.2978 0.1144 12764 +12766 2 -90.20390958325464 -113.45727268981024 65.6914 0.1144 12765 +12767 2 -90.70609229377796 -112.18372366510356 65.3635 0.1144 12766 +12768 2 -91.21539365325036 -110.90652639251688 65.3187 0.1144 12767 +12769 2 -91.73828994007002 -110.51147636521864 65.6177 0.1144 12768 +12770 2 -92.25066616181124 -109.92773522167629 66.2049 0.1144 12769 +12771 2 -92.66360760715712 -108.70299509965265 66.9312 0.1144 12770 +12772 2 -92.93217310343216 -107.51207759679623 67.6735 0.1144 12771 +12773 2 -93.0870877333513 -106.39736278488328 68.5952 0.1144 12772 +12774 2 -93.03863681446467 -105.46324372070364 69.9924 0.1144 12773 +12775 2 -92.66178319229017 -104.9475014445155 71.2754 0.1144 12774 +12776 2 -91.53870377609095 -104.01934728061575 71.6234 0.1144 12775 +12777 2 -90.40183743045938 -104.61538453530603 71.358 0.1144 12776 +12778 2 -89.27467006553191 -105.29306027895483 70.9276 0.1144 12777 +12779 2 -88.14782815348055 -104.58007924022505 70.6342 0.1144 12778 +12780 2 -87.01683841566003 -105.35043830108414 70.5331 0.1144 12779 +12781 2 -85.88571894415685 -106.13154219378734 70.6507 0.1144 12780 +12782 2 -84.75891536977214 -105.42061512811588 70.9223 0.1144 12781 +12783 2 -83.63621276597347 -106.19192380899723 71.2715 0.1144 12782 +12784 2 -82.55724753668288 -107.0259705011194 71.5873 0.1144 12783 +12785 2 -81.50307051449238 -106.63383881569787 71.8368 0.1144 12784 +12786 2 -80.44716542048164 -107.63605049713586 72.035 0.1144 12785 +12787 2 -79.3919629825105 -108.65236609818785 72.1991 0.1144 12786 +12788 2 -78.33524739925156 -108.14116799103002 72.3486 0.1144 12787 +12789 2 -77.27973622968544 -109.15445784806589 72.5063 0.1144 12788 +12790 2 -76.22422506011944 -110.17405749091617 72.6956 0.1144 12789 +12791 2 -75.10880238759063 -109.07869466303104 72.8966 0.1144 12790 +12792 2 -74.00423244247104 -109.42345473110606 73.127 0.1144 12791 +12793 2 -72.87478699012863 -109.98495142443171 73.5134 0.1144 12792 +12794 2 -71.76623241316996 -109.17360082570833 74.1482 0.1144 12793 +12795 2 -70.6809628006132 -109.4682532349267 74.9834 0.1144 12794 +12796 2 -69.6153984783013 -109.06567166083892 75.9685 0.1144 12795 +12797 2 -68.56844522744828 -109.75567221990579 77.0661 0.1144 12796 +12798 2 -69.43924408111688 -108.69978785939297 78.7346 0.1144 12797 +12799 2 -70.21366760743973 -107.76424608554792 80.3466 0.1144 12798 +12800 2 -70.97471905262385 -108.35284117598965 82.0106 0.1144 12799 +12801 2 -71.46257124604885 -107.45518667580973 83.7869 0.1144 12800 +12802 2 -71.14614707923553 -106.83791002827408 85.3742 0.1144 12801 +12803 2 -71.04346435602987 -106.09361158879534 87.0531 0.1144 12802 +12804 2 -71.94096902233123 -105.4430939382058 88.4551 0.1144 12803 +12805 2 -72.77852414977677 -105.35187380031762 89.7333 0.1144 12804 +12806 2 -72.51545902963191 -103.91492829002578 90.8684 0.1144 12805 +12807 2 -72.11902506246525 -102.95337757116312 91.9492 0.1144 12806 +12808 2 -71.57229198500723 -102.36096786945383 93.0143 0.1144 12807 +12809 2 -72.05157494239323 -102.1130943881378 94.9312 0.1144 12808 +12810 2 -72.97034518920603 -103.13370125956335 96.0299 0.1144 12809 +12811 2 -74.01127357178488 -103.1918004249533 96.845 0.1144 12810 +12812 2 -74.94615106819863 -102.2496372937589 97.5344 0.1144 12811 +12813 2 -75.55241300669488 -101.03910845762564 98.1098 0.1144 12812 +12814 2 -76.02420539212864 -100.2236196198732 98.6815 0.1144 12813 +12815 2 -76.56481568323603 -99.99378725479703 99.4207 0.1144 12814 +12816 2 -77.16720870740795 -98.76530916970886 100.06 0.1144 12815 +12817 2 -77.77936367322286 -97.52587826209782 100.5309 0.1144 12816 +12818 2 -78.39606900146437 -96.27853890843548 100.8742 0.1144 12817 +12819 2 -79.01419366993119 -95.03769369096078 101.1142 0.1144 12818 +12820 2 -79.71642090557265 -94.5783785656417 101.3197 0.1144 12819 +12821 2 -80.47039853870731 -93.9361212943095 101.5406 0.1144 12820 +12822 2 -81.10411349868693 -92.69295548826807 101.6977 0.1144 12821 +12823 2 -81.96570081707004 -91.55299647756259 101.8189 0.1144 12822 +12824 2 -83.04666071798954 -91.38286615640088 102.0116 0.1144 12823 +12825 2 -84.15117700121252 -91.18186867865069 102.2795 0.1144 12824 +12826 2 -85.26502875868542 -90.43914475558176 102.6312 0.1144 12825 +12827 2 -86.38118632842864 -90.57566568831312 103.0632 0.1144 12826 +12828 2 -87.49328436683561 -90.30469958936669 103.5591 0.1144 12827 +12829 2 -88.60400681861725 -89.61039654210839 104.0785 0.1144 12828 +12830 2 -89.71610485702418 -89.93300119614725 104.5867 0.1144 12829 +12831 2 -90.79769245515989 -89.3549148488851 105.0692 0.1144 12830 +12832 2 -91.69979342177197 -88.27209866261546 105.5166 0.1144 12831 +12833 2 -92.77003374429974 -88.0086115257891 105.8291 0.1144 12832 +12834 2 -93.88821852862027 -87.89020312642018 105.999 0.1144 12833 +12835 2 -93.94266356064682 -87.83580632554307 106.6685 0.1144 12834 +12836 2 -94.78865468612456 -87.0109786380118 108.2066 0.1144 12835 +12837 2 -95.75722530060187 -86.18131115727209 109.0001 0.1144 12836 +12838 2 -96.72057572365006 -86.34738020006834 109.8628 0.1144 12837 +12839 2 -97.67756562118463 -85.41760066044293 110.7646 0.1144 12838 +12840 2 -98.62407138226075 -84.49179960586423 111.7323 0.1144 12839 +12841 2 -99.46101725028129 -84.5041000673792 113.3048 0.1144 12840 +12842 2 -95.0386069027005 -87.12656207560994 105.9103 0.1144 12834 +12843 2 -95.93086684328969 -86.44820870631497 105.7171 0.1144 12842 +12844 2 -96.90488109324498 -86.27569681413699 105.4449 0.1144 12843 +12845 2 -97.97329603456585 -86.13724764093405 105.1414 0.1144 12844 +12846 2 -99.09464125278984 -85.84983690402751 104.6755 0.1144 12845 +12847 2 -100.17587866810277 -86.34786247390706 103.8579 0.1144 12846 +12848 2 -101.20681987146858 -86.90239297794362 103.1484 0.1144 12847 +12849 2 -102.28129080927572 -87.20545021757847 102.6228 0.1144 12848 +12850 2 -103.4020569019765 -86.5990928876112 102.1686 0.1144 12849 +12851 2 -104.5275091992564 -86.79443647544387 101.8133 0.1144 12850 +12852 2 -105.66311366320068 -86.55148157876935 101.5686 0.1144 12851 +12853 2 -106.80245179715708 -85.95306283366078 101.4034 0.1144 12852 +12854 2 -107.94325001805205 -86.56834745130205 101.2788 0.1144 12853 +12855 2 -109.0752333389264 -86.16969282208134 101.2057 0.1144 12854 +12856 2 -110.17908659986027 -85.9565521180998 101.2035 0.1144 12855 +12857 2 -111.26866210027153 -87.01663880168465 101.2463 0.1144 12856 +12858 2 -112.39003396005137 -86.63026760747411 101.1998 0.1144 12857 +12859 2 -113.47490042042531 -85.86476447396672 100.8759 0.1144 12858 +12860 2 -114.59261629181465 -86.54815759354491 100.4475 0.1144 12859 +12861 2 -115.70539808069594 -86.25536995352898 100.0835 0.1144 12860 +12862 2 -116.81894040205918 -85.9695087008578 99.7704 0.1144 12861 +12863 2 -117.93609286291822 -86.90351584160628 99.5168 0.1144 12862 +12864 2 -119.0541300793123 -86.61393737902854 99.3322 0.1144 12863 +12865 2 -120.17426428991419 -86.61754738545113 99.2006 0.1144 12864 +12866 2 -121.2938670174088 -87.26753770558373 99.0844 0.1144 12865 +12867 2 -122.41386366934817 -86.97714071191 98.9696 0.1144 12866 +12868 2 -123.5341799794454 -87.3055743999012 98.8548 0.1144 12867 +12869 2 -124.65417663138477 -87.62731841810614 98.7403 0.1144 12868 +12870 2 -125.77386455172922 -87.34519505158441 98.6255 0.1144 12869 +12871 2 -126.89391356948133 -87.97596013533567 98.5107 0.1144 12870 +12872 2 -128.01391022142064 -87.99283120738441 98.3959 0.1144 12871 +12873 2 -129.13417416570516 -87.70760964129789 98.2814 0.1144 12872 +12874 2 -130.25422318345727 -88.64582678798678 98.1669 0.1144 12873 +12875 2 -131.37391110380173 -88.35807992159599 98.0521 0.1144 12874 +12876 2 -132.4945361454939 -89.30696029403686 97.9376 0.1144 12875 +12877 2 -133.6145327974333 -89.01411430635048 97.823 0.1144 12876 +12878 2 -134.73422071777767 -88.81981449268028 97.7088 0.1144 12877 +12879 2 -135.85426973552973 -89.67525323645124 97.5946 0.1144 12878 +12880 2 -136.9739576558742 -89.38508494383954 97.4809 0.1144 12879 +12881 2 -138.09453033175367 -89.49644698142015 97.3675 0.1144 12880 +12882 2 -139.21457934950578 -90.04697608387802 97.2544 0.1144 12881 +12883 2 -140.33426726985016 -89.75223025258788 97.1418 0.1144 12882 +12884 2 -141.45426392178956 -90.17565706256943 97.0306 0.1144 12883 +12885 2 -142.573951842134 -90.4152181660407 96.9206 0.1144 12884 +12886 2 -143.69457688382613 -91.38193491332524 96.8125 0.1144 12885 +12887 2 -144.81462590157827 -91.08086879485458 96.707 0.1144 12886 +12888 2 -145.93525094327043 -90.77817881941854 96.605 0.1144 12887 +12889 2 -147.05488649780216 -91.74843193365255 96.5087 0.1144 12888 +12890 2 -148.17493551555424 -91.44429906642227 96.42 0.1144 12889 +12891 2 -149.29556055724646 -91.14080000195139 96.341 0.1144 12890 +12892 2 -150.4162707917884 -92.11295329760434 96.2746 0.1144 12891 +12893 2 -151.53202822194262 -92.22670126675216 96.2242 0.1144 12892 +12894 2 -152.54158191213807 -93.16325959409961 96.22 0.1144 12893 +12895 2 -153.53972536578655 -93.22900724220196 96.2536 0.1144 12894 +12896 2 -154.5379540122848 -93.41217657687922 96.3124 0.1144 12895 +12897 2 -155.5361498317461 -94.67126721337964 96.3819 0.1144 12896 +12898 2 -156.53437847824438 -94.99511056680619 96.448 0.1144 12897 +12899 2 -157.5325219318929 -96.12228492396339 96.4956 0.1144 12898 +12900 2 -158.53075057839118 -96.17295968027672 96.5124 0.1144 12899 +12901 2 -159.52889403203963 -96.22751296657466 96.4919 0.1144 12900 +12902 2 -160.55640919600367 -97.55920984761757 96.3634 0.1144 12901 +12903 2 -161.58829882606506 -97.74640614620505 96.1293 0.1144 12902 +12904 2 -162.61737709208316 -98.84589823493951 95.8157 0.1144 12903 +12905 2 -163.64446309551886 -98.79674941879632 95.4467 0.1144 12904 +12906 2 -164.6705596117941 -98.8132929681885 95.0454 0.1144 12905 +12907 2 -165.69469669252396 -100.08301918220491 94.6322 0.1144 12906 +12908 2 -166.7202171848591 -100.35174060050088 94.2276 0.1144 12907 +12909 2 -167.74537657978652 -101.39170646558462 93.8384 0.1144 12908 +12910 2 -168.77246258322225 -101.32651244769563 93.469 0.1144 12909 +12911 2 -169.80051853504276 -101.38016614099568 93.1232 0.1144 12910 +12912 2 -170.8607192235554 -102.54612207600903 92.8404 0.1144 12911 +12913 2 -171.9367429523791 -102.34936804935994 92.6274 0.1144 12912 +12914 2 -173.01490821624338 -102.35200365032698 92.4692 0.1144 12913 +12915 2 -174.0925826490174 -103.39881761550437 92.3504 0.1144 12914 +12916 2 -175.17110901028946 -103.86600677130089 92.258 0.1144 12915 +12917 2 -176.2502965883513 -104.45479055367555 92.1799 0.1144 12916 +12918 2 -177.32953653222592 -104.24471567155149 92.1043 0.1144 12917 +12919 2 -178.40872411028784 -104.83672395027472 92.0284 0.1144 12918 +12920 2 -179.4873356644096 -105.30151394450785 91.9512 0.1144 12919 +12921 2 -180.56652324247148 -106.38172910211696 91.8719 0.1144 12920 +12922 2 -181.6457108205334 -106.3633666020789 91.7902 0.1144 12921 +12923 2 -182.72392845021045 -106.14386706439213 91.705 0.1144 12922 +12924 2 -183.80248763851944 -107.35666204117227 91.6143 0.1144 12923 +12925 2 -184.88172758239412 -107.20673082467543 91.5166 0.1144 12924 +12926 2 -185.95989284625847 -108.50850423539235 91.4105 0.1144 12925 +12927 2 -187.02922708666134 -108.30489058760607 91.2909 0.1144 12926 +12928 2 -188.03387482765214 -108.27794054222367 91.1445 0.1144 12927 +12929 2 -189.03430047658694 -109.80082180458552 90.9731 0.1144 12928 +12930 2 -190.03533497649894 -109.77361823964124 90.7774 0.1144 12929 +12931 2 -191.03383401692548 -111.31390845666809 90.5598 0.1144 12930 +12932 2 -192.032333057352 -111.27923902062791 90.3106 0.1144 12931 +12933 2 -193.0304381733339 -111.24408739319152 90.0421 0.1144 12932 +12934 2 -193.63395663863582 -112.61957498297551 89.7042 0.1144 12933 +12935 2 -194.07225483859955 -114.19895845262918 89.329 0.1144 12934 +12936 2 -194.5085412372052 -114.96767128238984 88.9246 0.1144 12935 +12937 2 -194.92987735315054 -115.70329871457581 88.0785 0.1144 12936 +12938 2 -68.25954656689719 -109.86492981117247 76.0735 0.1144 12797 +12939 2 -67.4331286779244 -109.67184077035435 74.1994 0.1144 12938 +12940 2 -66.44106885662836 -108.98877876343232 72.9739 0.1144 12939 +12941 2 -65.39927623391534 -109.42969975202253 71.8794 0.1144 12940 +12942 2 -64.3702742524676 -109.68302469343494 70.7109 0.1144 12941 +12943 2 -63.33770347607772 -108.75706149918155 69.5738 0.1144 12942 +12944 2 -62.30251204735262 -109.17297059674416 68.4536 0.1144 12943 +12945 2 -61.27843583797379 -109.67082799724467 67.2269 0.1144 12944 +12946 2 -60.25893119895912 -108.65634786718924 65.9672 0.1144 12945 +12947 2 -59.236582368864006 -109.16766715821181 64.7195 0.1144 12946 +12948 2 -58.18069718670688 -109.66703189275152 63.6703 0.1144 12947 +12949 2 -57.10436572059858 -108.63124868795295 62.7598 0.1144 12948 +12950 2 -56.82957813996576 -108.2130359685015 61.9867 0.1144 12949 +12951 2 -56.525924081331866 -107.33906618588726 61.4048 0.1144 12950 +12952 2 -56.088959336207125 -106.58460322454452 61.0481 0.1144 12951 +12953 2 -55.43286457094452 -106.034645404137 61.087 0.1144 12952 +12954 2 -54.75573277710801 -104.8497153874074 61.4261 0.1144 12953 +12955 2 -54.0522609794651 -103.58725824485329 62.0138 0.1144 12954 +12956 2 -53.3180285492719 -103.1803252673871 62.7592 0.1144 12955 +12957 2 -52.54008848770955 -102.82555757540187 63.4315 0.1144 12956 +12958 2 -51.74142864668465 -101.89571478074745 63.9719 0.1144 12957 +12959 2 -50.93523979507343 -100.71334377835274 64.3952 0.1144 12958 +12960 2 -50.125399364716756 -100.36472326112661 64.7242 0.1144 12959 +12961 2 -49.31359949881471 -100.01037226560194 64.9821 0.1144 12960 +12962 2 -48.500553779970005 -98.6548565014162 65.1991 0.1144 12961 +12963 2 -47.68773159987046 -97.9053827178011 65.408 0.1144 12962 +12964 2 -46.832165533620426 -97.60340072506762 65.5892 0.1144 12963 +12965 2 -45.944563256423365 -97.35552982443991 65.7395 0.1144 12964 +12966 2 -45.05120620310687 -95.761132672201 65.8871 0.1144 12965 +12967 2 -44.16462624010741 -95.50537556577963 66.0806 0.1144 12966 +12968 2 -43.361151845893886 -95.14098042167298 66.5384 0.1144 12967 +12969 2 -42.609856725613184 -94.25478867324945 67.3081 0.1144 12968 +12970 2 -41.891123190916744 -92.98702148528415 68.2637 0.1144 12969 +12971 2 -41.24060930604304 -92.49528355622999 69.2902 0.1144 12970 +12972 2 -41.033187836899444 -91.50931512863497 70.196 0.1144 12971 +12973 2 -40.985448500016886 -90.2443817665379 70.8949 0.1144 12972 +12974 2 -40.9375709119352 -89.00877143362796 71.797 0.1144 12973 +12975 2 -56.52892546398233 -108.99944164961819 62.2107 0.1144 12949 +12976 2 -55.42148459723717 -109.71454317436356 62.5411 0.1144 12975 +12977 2 -54.28971381153379 -109.28658520827315 62.8463 0.1144 12976 +12978 2 -53.15540756634495 -109.64341284280134 63.1266 0.1144 12977 +12979 2 -52.02269965929378 -110.37950168558258 63.4192 0.1144 12978 +12980 2 -50.88389170038268 -109.42604088489009 63.6289 0.1144 12979 +12981 2 -49.77263226684232 -109.80006572182067 63.686 0.1144 12980 +12982 2 -48.6665522780179 -110.14538396222343 63.6054 0.1144 12981 +12983 2 -47.56742906995947 -108.92062930313531 63.5337 0.1144 12982 +12984 2 -46.47655224920972 -109.19839185591913 63.5975 0.1144 12983 +12985 2 -45.38875408484837 -109.47546742753705 63.7857 0.1144 12984 +12986 2 -44.33494235692632 -108.21522589641731 64.5053 0.1144 12985 +12987 2 -81.03513112996933 -138.34055968895348 58.8235 0.1144 12644 +12988 2 -81.60510151229265 -137.35413992063653 58.6659 0.1144 12987 +12989 2 -82.1757002843688 -135.81994580410048 58.5578 0.1144 12988 +12990 2 -82.74786456754558 -134.38549354707845 58.4545 0.1144 12989 +12991 2 -83.31895417071203 -132.86953790720506 58.3408 0.1144 12990 +12992 2 -83.89018133254105 -131.31614920432006 58.2246 0.1144 12991 +12993 2 -84.46140849437009 -130.82680210637048 58.1118 0.1144 12992 +12994 2 -85.03352041173409 -130.05740843207906 58.0084 0.1144 12993 +12995 2 -85.5230976820706 -128.52643029965583 57.9208 0.1144 12994 +12996 2 -85.95788113460908 -127.02954136327847 57.8584 0.1144 12995 +12997 2 -86.46781088383436 -125.53695299188543 57.8416 0.1144 12996 +12998 2 -86.99489643567291 -123.99344091707992 57.8542 0.1144 12997 +12999 2 -87.41029735770753 -122.46481830240675 57.8438 0.1144 12998 +13000 2 -87.06953065852615 -121.48966188295273 57.6366 0.1144 12999 +13001 2 -86.62312432245285 -120.59667261446471 57.2499 0.1144 13000 +13002 2 -86.53457080951122 -119.41906287928552 56.9388 0.1144 13001 +13003 2 -86.59246870047402 -118.06870991774032 56.6149 0.1144 13002 +13004 2 -86.7343962773978 -116.69496448216964 56.2654 0.1144 13003 +13005 2 -86.94973415951196 -115.48414719267667 56.037 0.1144 13004 +13006 2 -87.17795097732427 -114.26609136453946 55.93 0.1144 13005 +13007 2 -87.40616779513658 -113.04984430010545 55.8978 0.1144 13006 +13008 2 -87.53566892978584 -111.87597909636031 55.9056 0.1144 13007 +13009 2 -87.33543388862326 -110.9011641941918 55.9647 0.1144 13008 +13010 2 -86.11577001326407 -111.67596748926864 55.8575 0.1144 13009 +13011 2 -84.97529283560021 -110.98508139083377 55.6492 0.1144 13010 +13012 2 -83.83820915438974 -111.39327477249739 55.3554 0.1144 13011 +13013 2 -82.70434478981332 -112.00835460652084 54.994 0.1144 13012 +13014 2 -81.6710977741772 -110.62510443940548 54.5672 0.1144 13013 +13015 2 -80.95189433223932 -110.21184875727526 54.0882 0.1144 13014 +13016 2 -80.56340491648919 -109.41438601229929 53.536 0.1144 13015 +13017 2 -80.25962112417263 -108.54024124449913 52.9357 0.1144 13016 +13018 2 -80.12028716212254 -107.53625028232555 52.3516 0.1144 13017 +13019 2 -80.45376710619988 -106.30491648320614 51.8893 0.1144 13018 +13020 2 -80.94150847150752 -105.04256789970383 51.5278 0.1144 13019 +13021 2 -81.73650771369054 -103.83026027760441 51.2134 0.1144 13020 +13022 2 -82.56931776580439 -103.68209335114177 50.9345 0.1144 13021 +13023 2 -83.40400206061375 -102.88054056693404 50.6752 0.1144 13022 +13024 2 -84.22589881574093 -101.6771785052194 50.3835 0.1144 13023 +13025 2 -84.89480393331611 -100.43915805489503 50.0178 0.1144 13024 +13026 2 -85.3525806474234 -100.1596519484563 49.8618 0.1144 13025 +13027 2 -86.45749326413764 -100.73977192528223 49.6171 0.1144 13026 +13028 2 -87.49973226609741 -99.74847582849164 49.4788 0.1144 13027 +13029 2 -88.47879691962274 -98.6737119551061 49.4001 0.1144 13028 +13030 2 -89.33467941865251 -98.70853477704378 49.3702 0.1144 13029 +13031 2 -90.10985835759072 -97.66716608910471 49.3587 0.1144 13030 +13032 2 -90.88566568628173 -96.45468121246793 49.331 0.1144 13031 +13033 2 -91.72743270142 -95.28313904191177 49.3511 0.1144 13032 +13034 2 -92.56745520754535 -95.00805107301294 49.4253 0.1144 13033 +13035 2 -93.27106585479203 -94.21709934757627 49.5197 0.1144 13034 +13036 2 -93.73987408143643 -92.97417128077376 49.6255 0.1144 13035 +13037 2 -93.97357217985686 -91.77429950999596 49.845 0.1144 13036 +13038 2 -94.16298490645818 -90.58641627103535 50.0909 0.1144 13037 +13039 2 -94.55758395776355 -89.3573757724832 50.286 0.1144 13038 +13040 2 -95.3450096485274 -88.20288980226265 50.4409 0.1144 13039 +13041 2 -96.24854708509395 -88.19752418351666 50.5618 0.1144 13040 +13042 2 -97.28073013449841 -87.38424654689814 50.6601 0.1144 13041 +13043 2 -98.03902607379801 -86.2071034665065 50.7424 0.1144 13042 +13044 2 -98.75875067068485 -85.01752868006531 50.8603 0.1144 13043 +13045 2 -99.56471006503762 -84.87829655202921 51.0306 0.1144 13044 +13046 2 -100.43105957079668 -83.94708771041319 51.235 0.1144 13045 +13047 2 -101.23661411414177 -83.20490183136731 51.4478 0.1144 13046 +13048 2 -101.84659230883244 -82.75149133855122 51.6354 0.1144 13047 +13049 2 -102.35923651545541 -81.51873215530983 51.8045 0.1144 13048 +13050 2 -102.68568369597 -80.29886747787396 52.0019 0.1144 13049 +13051 2 -102.97448193473691 -79.08695147009796 52.2222 0.1144 13050 +13052 2 -102.99848719432299 -77.95157267273085 52.4014 0.1144 13051 +13053 2 -102.91359826429955 -76.86077533470316 52.5274 0.1144 13052 +13054 2 -102.79771015820936 -75.78314978371132 52.6078 0.1144 13053 +13055 2 -102.78089952522645 -74.65765742997877 52.6453 0.1144 13054 +13056 2 -102.62138967315349 -73.59920826525361 52.645 0.1144 13055 +13057 2 -102.47439765937104 -72.53041582178852 52.621 0.1144 13056 +13058 2 -102.55132318659624 -71.36622655611313 52.5868 0.1144 13057 +13059 2 -102.70421401727292 -70.18047190316165 52.5157 0.1144 13058 +13060 2 -102.86667066195115 -68.99369613101976 52.4082 0.1144 13059 +13061 2 -102.97416551217825 -67.82072442381401 52.3183 0.1144 13060 +13062 2 -103.06387306845609 -66.65292741256306 52.2508 0.1144 13061 +13063 2 -103.24869709496417 -65.4622354297822 52.204 0.1144 13062 +13064 2 -103.48297431890782 -64.2635469763564 52.1766 0.1144 13063 +13065 2 -103.91642672565379 -63.057389224476005 52.166 0.1144 13064 +13066 2 -104.62662143715917 -61.92351279029855 52.1651 0.1144 13065 +13067 2 -105.63102050157451 -61.64827608821194 52.1651 0.1144 13066 +13068 2 -106.54577996672269 -60.90613632355141 52.1651 0.1144 13067 +13069 2 -85.10808267913683 -100.15077751717561 49.3511 0.1144 13025 +13070 2 -85.76117606174894 -99.65947715944407 48.1698 0.1144 13069 +13071 2 -86.48026847476324 -99.24224710535997 47.6073 0.1144 13070 +13072 2 -87.33516389567906 -98.08375218799385 47.1859 0.1144 13071 +13073 2 -87.98629033151762 -96.86337104821612 46.7292 0.1144 13072 +13074 2 -87.79285530511957 -95.92638836292917 46.1874 0.1144 13073 +13075 2 -87.51188587742683 -94.99867046812746 45.747 0.1144 13074 +13076 2 -87.41198508887719 -93.94056409667786 45.4507 0.1144 13075 +13077 2 -87.58767866507819 -92.75460228543254 45.2088 0.1144 13076 +13078 2 -87.50212851826487 -91.6815075099542 45.1167 0.1144 13077 +13079 2 -86.99455001661418 -90.92344150357384 45.213 0.1144 13078 +13080 2 -86.56854921777891 -89.9256659781319 45.453 0.1144 13079 +13081 2 -86.17896081249792 -88.26149395026079 45.7744 0.1144 13080 +13082 2 -85.71540108285772 -87.18326750028152 46.1664 0.1144 13081 +13083 2 -85.17339805827513 -86.52324958726888 47.117 0.1144 13082 +13084 2 -87.88267750821902 -109.6720073793441 56.4334 0.1144 13009 +13085 2 -88.28333696565572 -108.5880673686628 56.5278 0.1144 13084 +13086 2 -88.56189956141847 -107.84967329794362 56.588 0.1144 13085 +13087 2 -88.82789505466111 -107.08124589419526 56.6829 0.1144 13086 +13088 2 -89.05650579691816 -106.24063048371163 56.8523 0.1144 13087 +13089 2 -89.26530415560643 -105.04204303109417 57.0119 0.1144 13088 +13090 2 -89.47316539294691 -103.83328226928597 56.9237 0.1144 13089 +13091 2 -89.67259263285382 -102.65018155287835 56.3926 0.1144 13090 +13092 2 -90.14741061632672 -101.4299286286558 55.6982 0.1144 13091 +13093 2 -90.79965006984223 -100.21278334827196 55.0572 0.1144 13092 +13094 2 -91.18207525053562 -98.99878269098032 54.4779 0.1144 13093 +13095 2 -91.18669728708126 -97.90369397691524 54.0445 0.1144 13094 +13096 2 -91.44636198026429 -96.69957230079565 53.7541 0.1144 13095 +13097 2 -91.95165617421316 -95.45861100787883 53.536 0.1144 13096 +13098 2 -92.62064958622123 -95.24431343765819 53.305 0.1144 13097 +13099 2 -93.35556744859304 -94.34457784806641 53.0788 0.1144 13098 +13100 2 -94.17960573876091 -93.17114457060276 52.8917 0.1144 13099 +13101 2 -95.22874777060068 -92.23905837772182 52.7414 0.1144 13100 +13102 2 -95.5284062480049 -91.19225186373593 52.6201 0.1144 13101 +13103 2 -95.5567274047095 -90.02071549324548 52.5392 0.1144 13102 +13104 2 -95.64426059890953 -88.93197605155083 52.4087 0.1144 13103 +13105 2 -96.20488009376369 -88.62111366396849 52.1651 0.1144 13104 +13106 2 -86.51393853097758 -120.64667979303718 56.6328 0.1144 13001 +13107 2 -85.45161202241711 -121.17005578475997 55.7519 0.1144 13106 +13108 2 -84.33561332594823 -119.82398151426152 55.3515 0.1144 13107 +13109 2 -83.25074385298045 -120.2158981321804 54.9214 0.1144 13108 +13110 2 -82.20739092802285 -120.44027734321105 54.4771 0.1144 13109 +13111 2 -81.18325384729293 -118.67700005731149 54.0436 0.1144 13110 +13112 2 -80.22495772290182 -118.65278506851742 53.6556 0.1144 13111 +13113 2 -79.22823601852518 -118.72990669919113 53.3226 0.1144 13112 +13114 2 -78.17948700580922 -117.08178740890915 53.0286 0.1144 13113 +13115 2 -77.12856363101545 -117.26236120207156 52.7629 0.1144 13114 +13116 2 -76.07607474512113 -117.5001104258306 52.5168 0.1144 13115 +13117 2 -75.01721913054702 -116.02710890093067 52.2824 0.1144 13116 +13118 2 -74.05045497973326 -117.15934433880305 51.9445 0.1144 13117 +13119 2 -73.1307820541523 -118.46441890188851 51.0432 0.1144 13118 +13120 2 -28.38110253715982 -256.703192620574 62.9773 0.1144 12540 +13121 2 -27.69263849017169 -255.3662356160769 61.668 0.1144 13120 +13122 2 -26.85533203415889 -255.16616281936683 60.8199 0.1144 13121 +13123 2 -25.93262068434467 -255.13467358228849 60.027 0.1144 13122 +13124 2 -24.983530300520783 -253.72423097812157 59.1968 0.1144 13123 +13125 2 -23.972080437492693 -253.572204473508 58.2439 0.1144 13124 +13126 2 -23.233150799146046 -252.51223559792027 56.9246 0.1144 13125 +13127 2 -23.01041033773889 -252.2072101423181 54.7845 0.1144 13126 +13128 2 -22.238242466113846 -251.9088594721295 53.8328 0.1144 13127 +13129 2 -21.7389771245155 -250.69772716387877 53.3383 0.1144 13128 +13130 2 -22.0003185476794 -249.59966329757486 52.449 0.1144 13129 +13131 2 -22.636518619615316 -248.67771910434266 50.9617 0.1144 13130 +13132 2 -22.771465502158136 -249.5852304927402 49.677 0.1144 13131 +13133 2 -22.09086914129648 -250.93229881749147 48.7236 0.1144 13132 +13134 2 -21.388078193351078 -251.65096047118965 47.9503 0.1144 13133 +13135 2 -20.81789357703191 -253.15221097015677 47.416 0.1144 13134 +13136 2 -20.263549414841492 -254.25009013603557 47.0716 0.1144 13135 +13137 2 -19.520840665471596 -254.99854565191242 46.7208 0.1144 13136 +13138 2 -18.491154737885935 -255.88259104526458 46.3523 0.1144 13137 +13139 2 -17.45618055575042 -256.7319968904099 45.9603 0.1144 13138 +13140 2 -16.388079359216846 -256.71182711897643 45.5487 0.1144 13139 +13141 2 -15.327249588414716 -256.6875066414828 45.1248 0.1144 13140 +13142 2 -14.299201840358975 -255.37019513035438 44.3122 0.1144 13141 +13143 2 -23.704431435347544 -252.52391843989375 56.287 0.1144 13126 +13144 2 -24.428379840800247 -251.2412009030038 55.7606 0.1144 13143 +13145 2 -25.00097948767153 -250.12016014608173 55.5307 0.1144 13144 +13146 2 -25.58155753696967 -249.606723091098 55.5601 0.1144 13145 +13147 2 -26.0956789602603 -248.617232722016 55.8522 0.1144 13146 +13148 2 -26.1911227778553 -247.31863224396977 56.6387 0.1144 13147 +13149 2 -26.017955037496037 -246.2071558418756 57.6279 0.1144 13148 +13150 2 -25.939252453166887 -244.82432233504323 58.2263 0.1144 13149 +13151 2 -25.944850641263557 -243.48673603423958 58.4892 0.1144 13150 +13152 2 -25.609474519210934 -241.98660104383967 58.5796 0.1144 13151 +13153 2 -24.860459877706646 -240.38157606956418 58.5698 0.1144 13152 +13154 2 -23.864944996069426 -240.00918373034358 58.5178 0.1144 13153 +13155 2 -22.757390199623842 -239.8876401503164 58.4926 0.1144 13154 +13156 2 -21.630114007177568 -239.55813557973843 58.5208 0.1144 13155 +13157 2 -20.491409063382008 -239.60016829403904 58.6174 0.1144 13156 +13158 2 -19.349739783661363 -239.95091680166757 58.7121 0.1144 13157 +13159 2 -18.25655034963468 -239.45548586060622 58.7924 0.1144 13158 +13160 2 -17.362564515802404 -239.15553973177538 59.1321 0.1144 13159 +13161 2 -16.754904445018212 -240.0939420629502 59.3737 0.1144 13160 +13162 2 -15.877779893471654 -241.30564803692153 59.4908 0.1144 13161 +13163 2 -14.873562928551678 -240.89101434298078 59.5851 0.1144 13162 +13164 2 -13.85451921148777 -242.18029569678657 59.6635 0.1144 13163 +13165 2 -12.827409490100678 -243.45764212609993 59.7307 0.1144 13164 +13166 2 -11.813081105229557 -243.18348550577355 59.8349 0.1144 13165 +13167 2 -10.85045246854881 -244.18752190617755 60.0135 0.1144 13166 +13168 2 -9.87624380746189 -244.97210824028747 60.2174 0.1144 13167 +13169 2 -8.841613593004922 -244.873294287663 60.4128 0.1144 13168 +13170 2 -7.726281925729168 -245.773979965237 60.5377 0.1144 13169 +13171 2 -6.694324516635788 -245.57892835806513 60.6057 0.1144 13170 +13172 2 -5.643092410247121 -244.3096384030345 60.5374 0.1144 13171 +13173 2 -4.532576379459556 -244.1427876580113 60.2182 0.1144 13172 +13174 2 -3.4246858191002048 -243.45385907149648 59.6966 0.1144 13173 +13175 2 -2.3302056775462603 -243.99027169924423 59.0366 0.1144 13174 +13176 2 -1.2424885981633338 -243.7996640250571 58.2985 0.1144 13175 +13177 2 -0.15950087911929245 -243.14667848830155 57.5274 0.1144 13176 +13178 2 0.9260746652229699 -243.68735294164208 56.7736 0.1144 13177 +13179 2 2.017264325439058 -243.3782296125811 56.0703 0.1144 13178 +13180 2 3.111433326351573 -242.8664900209502 55.4322 0.1144 13179 +13181 2 4.053244679083846 -243.37962026454454 54.924 0.1144 13180 +13182 2 4.5360034198535715 -244.57641656842682 54.6627 0.1144 13181 +13183 2 4.938528507773114 -246.05166212287156 54.5485 0.1144 13182 +13184 2 5.2471586688844525 -247.45379234760043 54.5664 0.1144 13183 +13185 2 5.746326394179945 -248.26796787352828 54.558 0.1144 13184 +13186 2 6.665775378274674 -248.50887035567075 53.9174 0.1144 13185 +13187 2 7.394316893465657 -249.11807027283805 53.0074 0.1144 13186 +13188 2 8.116248697152301 -249.95983182983838 52.0318 0.1144 13187 +13189 2 8.911016699405351 -249.15456403601178 51.0983 0.1144 13188 +13190 2 9.175165395861882 -247.53370928729407 50.1421 0.1144 13189 +13191 2 9.003241826741174 -246.52768929857712 49.0857 0.1144 13190 +13192 2 9.330105275428295 -245.12192212051002 48.0872 0.1144 13191 +13193 2 9.579981509207414 -244.71949550306934 46.3529 0.1144 13192 +13194 2 9.77365668381492 -245.72679962772753 44.8879 0.1144 13193 +13195 2 10.605687090804068 -247.05381679508764 43.9396 0.1144 13194 +13196 2 11.607159464424413 -248.22276303129263 43.1864 0.1144 13195 +13197 2 12.585850708905895 -248.1108180620721 42.5762 0.1144 13196 +13198 2 13.34792416651392 -249.04829862175376 41.9602 0.1144 13197 +13199 2 13.269041891735867 -250.21778183743675 41.3126 0.1144 13198 +13200 2 13.79552197826905 -251.63902793167256 40.6445 0.1144 13199 +13201 2 14.789434816638163 -251.5789443486649 39.2641 0.1144 13200 +13202 2 -6.7121144594500635 -316.2396214399298 68.3337 0.1144 12487 +13203 2 -7.375878469975952 -314.77611355302986 68.8201 0.1144 13202 +13204 2 -8.203171312861471 -314.63592688009146 69.1634 0.1144 13203 +13205 2 -8.699290515670413 -313.72844884533697 69.4966 0.1144 13204 +13206 2 -9.160886288303224 -312.2453330202431 69.8874 0.1144 13205 +13207 2 -9.662619606985999 -310.7342719027155 70.3035 0.1144 13206 +13208 2 -10.417302305206768 -310.4758027229146 70.7638 0.1144 13207 +13209 2 -11.21323246557138 -309.6685816615421 71.2678 0.1144 13208 +13210 2 -11.846715369289427 -308.2138221402056 71.7959 0.1144 13209 +13211 2 -12.346885585918109 -306.72184282078615 72.4052 0.1144 13210 +13212 2 -12.675688535469298 -305.2646488714387 72.9529 0.1144 13211 +13213 2 -12.90077674012688 -303.8483759856338 73.4012 0.1144 13212 +13214 2 -12.895998624973757 -302.5560958404846 73.7307 0.1144 13213 +13215 2 -12.816018053201425 -301.31309576619833 73.9505 0.1144 13214 +13216 2 -12.891736065150603 -299.95684410148203 74.088 0.1144 13215 +13217 2 -13.296005662083012 -298.4535459627851 74.1891 0.1144 13216 +13218 2 -13.699146828119261 -297.70238138691775 74.2913 0.1144 13217 +13219 2 -13.39403268254678 -295.97302546232874 74.366 0.1144 13218 +13220 2 -13.26306563143497 -294.806781107993 74.3719 0.1144 13219 +13221 2 -13.549733261724214 -293.53230097898927 74.3618 0.1144 13220 +13222 2 -13.856221887794845 -292.62006184308393 74.4047 0.1144 13221 +13223 2 -13.873306295235153 -291.2979712068341 74.5195 0.1144 13222 +13224 2 -13.947551908609654 -290.07043864639775 74.6208 0.1144 13223 +13225 2 -14.141947259748946 -288.9794802191866 74.65 0.1144 13224 +13226 2 -14.37239321449826 -288.0108216848151 74.5721 0.1144 13225 +13227 2 -14.830701607376355 -286.8060352534113 74.4313 0.1144 13226 +13228 2 -15.023712854373827 -285.5021085198404 74.333 0.1144 13227 +13229 2 -15.1388633472868 -284.1355636977788 74.3453 0.1144 13228 +13230 2 -15.28595013761435 -282.7437596313563 74.4142 0.1144 13229 +13231 2 -15.444901374422358 -281.3411101154755 74.4965 0.1144 13230 +13232 2 -15.651379200157635 -279.9155464115153 74.5833 0.1144 13231 +13233 2 -15.614824246726599 -278.65749121295795 74.655 0.1144 13232 +13234 2 -15.544197664006504 -277.414852166488 74.7222 0.1144 13233 +13235 2 -15.666698169593616 -276.0432000246789 74.8023 0.1144 13234 +13236 2 -15.896428132693757 -274.63172148415305 74.8552 0.1144 13235 +13237 2 -15.995538942253475 -273.2730256554353 74.8756 0.1144 13236 +13238 2 -16.034649865428207 -271.94408703521077 74.8689 0.1144 13237 +13239 2 -15.807190757460774 -270.84657336570814 74.9535 0.1144 13238 +13240 2 -15.673341870138586 -269.65467369079823 75.1117 0.1144 13239 +13241 2 -15.534763622477541 -268.4678190295047 75.3234 0.1144 13240 +13242 2 -15.72555976068405 -267.0668208407589 75.5353 0.1144 13241 +13243 2 -16.088581202936098 -265.5884443282524 75.7117 0.1144 13242 +13244 2 -16.26289136753185 -264.22221645449275 75.8988 0.1144 13243 +13245 2 -16.628809366676933 -263.2832813157184 76.0578 0.1144 13244 +13246 2 -17.037755958135463 -262.4056660497415 76.1734 0.1144 13245 +13247 2 -17.417393107680866 -260.92622114256255 76.2538 0.1144 13246 +13248 2 -17.36841171197534 -259.6564053587918 76.3157 0.1144 13247 +13249 2 -17.75232883001908 -258.16056050067215 76.3652 0.1144 13248 +13250 2 -17.67184960217655 -256.9174932655428 76.4086 0.1144 13249 +13251 2 -18.1589766058775 -255.42036997665014 76.4604 0.1144 13250 +13252 2 -18.053911093294502 -254.18109943193997 76.531 0.1144 13251 +13253 2 -18.050425686267204 -252.87931903409185 76.6256 0.1144 13252 +13254 2 -17.8601165622036 -251.42465816556103 76.634 0.1144 13253 +13255 2 -17.64887682803844 -250.29291752630695 76.7931 0.1144 13254 +13256 2 -17.157429405757043 -249.0683408630718 76.9507 0.1144 13255 +13257 2 -16.871160796951557 -247.53291834972356 77.1131 0.1144 13256 +13258 2 -16.746803457344143 -246.1053504314429 77.2878 0.1144 13257 +13259 2 -16.814374995517085 -244.79830008810114 77.5074 0.1144 13258 +13260 2 -17.053634843998708 -243.66788227055235 77.7932 0.1144 13259 +13261 2 -16.834835183819322 -243.04459426058565 78.0363 0.1144 13260 +13262 2 -16.610434500928136 -241.97719749414443 78.5708 0.1144 13261 +13263 2 -16.93704595867237 -240.60037363751525 79.0885 0.1144 13262 +13264 2 -17.41085324704723 -239.72619061696292 79.5847 0.1144 13263 +13265 2 -17.783263914435054 -238.64409046647523 80.0058 0.1144 13264 +13266 2 -18.43920490346231 -237.1638361730043 80.3426 0.1144 13265 +13267 2 -19.34428761981721 -236.66715281510892 80.6854 0.1144 13266 +13268 2 -19.888869840364606 -235.20464788415515 81.0247 0.1144 13267 +13269 2 -19.79084019292739 -234.00432066790603 81.289 0.1144 13268 +13270 2 -19.64812814764329 -232.8285719743791 81.541 0.1144 13269 +13271 2 -19.65096733750937 -231.54099132364024 81.7981 0.1144 13270 +13272 2 -19.715322660631372 -230.21830721490653 82.0372 0.1144 13271 +13273 2 -20.207038364425514 -228.72271018951122 82.2114 0.1144 13272 +13274 2 -20.608987428404944 -227.24171787368311 82.3273 0.1144 13273 +13275 2 -20.964171128475655 -226.11451187516764 82.4015 0.1144 13274 +13276 2 -21.217651885010866 -224.94541298666056 82.4401 0.1144 13275 +13277 2 -21.472102589930955 -223.75935693962782 82.4547 0.1144 13276 +13278 2 -21.91780244103917 -222.280780916771 82.4578 0.1144 13277 +13279 2 -22.502214168578163 -221.11367699516842 82.4592 0.1144 13278 +13280 2 -23.055891603349096 -220.2943410400933 82.4611 0.1144 13279 +13281 2 -23.52737594972446 -218.8013505620185 82.4639 0.1144 13280 +13282 2 -23.93342598428994 -217.31785953474235 82.4678 0.1144 13281 +13283 2 -24.391555379255735 -215.96376686019184 82.4732 0.1144 13282 +13284 2 -24.83083372682495 -214.91243729825965 82.4802 0.1144 13283 +13285 2 -25.206552005279747 -213.6749008506078 82.4902 0.1144 13284 +13286 2 -25.44185154342098 -212.24389246562183 82.5054 0.1144 13285 +13287 2 -25.663038006717073 -210.81631649837152 82.5261 0.1144 13286 +13288 2 -25.393164668043013 -209.75012659950698 82.5538 0.1144 13287 +13289 2 -24.90015173466101 -208.54271826345067 82.5871 0.1144 13288 +13290 2 -24.433081086521014 -207.2955268904836 82.6414 0.1144 13289 +13291 2 -24.100652170664333 -206.2965966031192 82.7579 0.1144 13290 +13292 2 -24.09876510177463 -205.0155918435376 82.8517 0.1144 13291 +13293 2 -24.38529517340136 -203.5769577145814 82.9226 0.1144 13292 +13294 2 -24.223249861842987 -202.4185951464121 82.9724 0.1144 13293 +13295 2 -23.938814056483253 -201.38329786742287 83.0024 0.1144 13294 +13296 2 -23.49352143062353 -200.2433999179181 83.0155 0.1144 13295 +13297 2 -17.258382188867188 -242.47377996825037 76.4837 0.1144 13260 +13298 2 -17.055958064944193 -241.03901177050636 75.9072 0.1144 13297 +13299 2 -17.168738068137998 -239.8028590964072 75.4034 0.1144 13298 +13300 2 -17.122561833309533 -238.40766679439344 74.9081 0.1144 13299 +13301 2 -17.200024354271605 -237.13144524674476 74.4876 0.1144 13300 +13302 2 -17.41295891962949 -235.96285640738728 73.9906 0.1144 13301 +13303 2 -16.701682206842335 -235.05705388341786 73.5305 0.1144 13302 +13304 2 -15.813400890589634 -234.24636081797453 72.919 0.1144 13303 +13305 2 -18.22582243976838 -252.2504425561803 76.7071 0.1144 13253 +13306 2 -18.52504624601474 -251.09498321202665 76.9157 0.1144 13305 +13307 2 -18.852824472321842 -249.97021377939012 77.1826 0.1144 13306 +13308 2 -19.26110674540743 -248.64750211033635 77.5099 0.1144 13307 +13309 2 -19.68715367208347 -247.16520280006705 77.8786 0.1144 13308 +13310 2 -20.114007986424696 -245.81970278109242 78.2698 0.1144 13309 +13311 2 -20.532396168831795 -244.89588041056737 78.6649 0.1144 13310 +13312 2 -20.899195821928828 -243.80367884950257 79.0322 0.1144 13311 +13313 2 -21.219761594224366 -242.3397227615215 79.3618 0.1144 13312 +13314 2 -21.529901799040474 -240.8746881510077 79.6673 0.1144 13313 +13315 2 -21.850597305018724 -239.52321492729067 79.9688 0.1144 13314 +13316 2 -22.244438232888598 -238.50495540071574 80.3009 0.1144 13315 +13317 2 -22.738780099647528 -237.35676932963972 80.7089 0.1144 13316 +13318 2 -23.155960766778605 -235.89091672680416 81.2162 0.1144 13317 +13319 2 -23.4255547804174 -234.48356526853476 81.8082 0.1144 13318 +13320 2 -23.594561969780713 -233.118934097077 82.3665 0.1144 13319 +13321 2 -23.722532829412927 -231.7696332749516 82.864 0.1144 13320 +13322 2 -24.015825270674043 -230.64800168043723 83.4243 0.1144 13321 +13323 2 -25.022742682530648 -230.25253087248586 84.201 0.1144 13322 +13324 2 -25.7874392015204 -229.56984694958032 84.9358 0.1144 13323 +13325 2 -26.408806803605344 -229.0293799965673 85.6086 0.1144 13324 +13326 2 -27.159476133136394 -227.82961338504174 86.2523 0.1144 13325 +13327 2 -28.058503953989586 -226.43023301258705 86.8353 0.1144 13326 +13328 2 -28.976282814010688 -225.72095540860843 87.358 0.1144 13327 +13329 2 -29.862179127503154 -225.42558833146984 87.8284 0.1144 13328 +13330 2 -30.721569443449738 -224.14689067256256 88.2734 0.1144 13329 +13331 2 -31.58194924655683 -223.05523825565476 88.704 0.1144 13330 +13332 2 -32.44700294260693 -223.10134436875578 89.1201 0.1144 13331 +13333 2 -33.35012932499963 -221.8156333563477 89.5084 0.1144 13332 +13334 2 -34.295742819312636 -220.4460022989005 89.8484 0.1144 13333 +13335 2 -35.12762126070828 -219.52514465538525 90.1505 0.1144 13334 +13336 2 -35.71411595430905 -219.21426811801825 90.4428 0.1144 13335 +13337 2 -36.10747466330133 -217.94651728244574 90.8323 0.1144 13336 +13338 2 -36.37817928557058 -216.52117437478734 91.3651 0.1144 13337 +13339 2 -36.69927112504001 -215.0852500337281 91.9444 0.1144 13338 +13340 2 -37.053773377008554 -213.80177505521465 92.5168 0.1144 13339 +13341 2 -37.40757297293747 -212.83722286172008 93.0574 0.1144 13340 +13342 2 -37.76439024722944 -212.19918973262213 93.5329 0.1144 13341 +13343 2 -38.12575788394794 -211.18325560735906 93.8865 0.1144 13342 +13344 2 -38.4967991678766 -209.70244598439018 94.0276 0.1144 13343 +13345 2 -38.8738484921239 -208.21464889041243 93.9403 0.1144 13344 +13346 2 -39.249563668995606 -206.73731711432197 93.6821 0.1144 13345 +13347 2 -39.71815386752441 -205.24969421722665 93.3229 0.1144 13346 +13348 2 -40.46503405964749 -203.79805863110238 92.9552 0.1144 13347 +13349 2 -41.43487445780316 -204.25267460596916 92.6503 0.1144 13348 +13350 2 -42.47729245767523 -203.14847999548994 92.3983 0.1144 13349 +13351 2 -43.5802302256249 -202.88165490968626 92.1264 0.1144 13350 +13352 2 -44.58590557865848 -202.66515665698694 91.709 0.1144 13351 +13353 2 -45.00578528996803 -201.5877404737472 91.175 0.1144 13352 +13354 2 -45.14775120455846 -200.2345318041866 90.6637 0.1144 13353 +13355 2 -45.23968789777325 -198.90135144690993 90.1992 0.1144 13354 +13356 2 -45.25926942703232 -197.60935967377065 89.7907 0.1144 13355 +13357 2 -45.247940074657535 -196.33416278059252 89.4482 0.1144 13356 +13358 2 -45.24400527578969 -195.04989405678532 89.175 0.1144 13357 +13359 2 -45.39991929545897 -193.66726904302118 88.9907 0.1144 13358 +13360 2 -45.63615595494791 -192.2392920427528 88.8866 0.1144 13359 +13361 2 -45.98630156308488 -190.74657556877432 88.8516 0.1144 13360 +13362 2 -46.464962434851685 -189.3196434765975 88.8787 0.1144 13361 +13363 2 -46.98620250709136 -188.19545178452773 88.9532 0.1144 13362 +13364 2 -47.51075259944453 -186.81229024155982 89.0574 0.1144 13363 +13365 2 -47.80409499747189 -185.35938059937627 89.1635 0.1144 13364 +13366 2 -47.963930989814926 -184.11014040890836 89.2592 0.1144 13365 +13367 2 -48.11418162938068 -182.91460657469298 89.3474 0.1144 13366 +13368 2 -48.551685049946414 -182.21112681071293 89.4566 0.1144 13367 +13369 2 -49.119963289069645 -181.23903686515342 89.5947 0.1144 13368 +13370 2 -49.6801888594791 -179.9555754662148 89.7383 0.1144 13369 +13371 2 -50.230341347604096 -178.4326867759341 89.8794 0.1144 13370 +13372 2 -50.780408642879294 -176.9071977903221 90.0183 0.1144 13371 +13373 2 -51.329899914214366 -175.38207178433152 90.1572 0.1144 13372 +13374 2 -51.879030088141846 -174.72481997701385 90.2969 0.1144 13373 +13375 2 -52.4286065523267 -173.8960048062097 90.4425 0.1144 13374 +13376 2 -53.01377330171813 -172.7251953374128 90.6153 0.1144 13375 +13377 2 -53.657646536831976 -171.22162989397162 90.837 0.1144 13376 +13378 2 -54.320676449354366 -169.70342731246612 91.105 0.1144 13377 +13379 2 -55.102218322852636 -169.09534997485525 91.3822 0.1144 13378 +13380 2 -55.970077872316395 -168.7117835172396 91.6454 0.1144 13379 +13381 2 -56.61091940092119 -167.20985277060066 91.9271 0.1144 13380 +13382 2 -57.12904488815229 -165.69970131236997 92.2396 0.1144 13381 +13383 2 -57.57180132718425 -164.20294040731818 92.5994 0.1144 13382 +13384 2 -57.9912118237889 -162.74135942644213 93.0006 0.1144 13383 +13385 2 -58.40643615695774 -161.53606279345172 93.4307 0.1144 13384 +13386 2 -58.84206533482798 -161.06878015547693 93.8689 0.1144 13385 +13387 2 -59.376844867019116 -160.16552213347143 94.2757 0.1144 13386 +13388 2 -59.97434976425214 -158.65354944549642 94.6386 0.1144 13387 +13389 2 -60.654565204841845 -157.3538456636824 94.948 0.1144 13388 +13390 2 -61.3600829218211 -155.9647013105908 95.2227 0.1144 13389 +13391 2 -62.06596173620804 -154.9378086622609 95.489 0.1144 13390 +13392 2 -62.692772973771056 -154.5427283780104 95.8272 0.1144 13391 +13393 2 -63.198998085901465 -153.02641772967002 96.3194 0.1144 13392 +13394 2 -63.66918903161448 -151.54993953855038 96.9489 0.1144 13393 +13395 2 -64.22138003966462 -150.2523645869142 97.631 0.1144 13394 +13396 2 -64.83891396350872 -148.86250946392704 98.3161 0.1144 13395 +13397 2 -65.46817167358768 -147.74820504290227 98.9934 0.1144 13396 +13398 2 -66.09858143154685 -147.636006808436 99.6526 0.1144 13397 +13399 2 -66.728991189506 -146.32700913140533 100.2971 0.1144 13398 +13400 2 -67.47472243533197 -144.85301254828195 100.931 0.1144 13399 +13401 2 -68.23573213949268 -143.38525323741348 101.5753 0.1144 13400 +13402 2 -68.97642529338486 -142.49925629789846 102.2473 0.1144 13401 +13403 2 -69.78093659868357 -142.33198774386696 102.965 0.1144 13402 +13404 2 -70.54304770142166 -141.00076543986336 103.8377 0.1144 13403 +13405 2 -71.0611813924175 -140.2099473041786 104.9462 0.1144 13404 +13406 2 -71.52631272450749 -139.90887829614283 106.1976 0.1144 13405 +13407 2 -72.68559028258015 -139.14747603734534 106.1259 0.1144 13406 +13408 2 -73.79776771911862 -138.0641470095347 105.9738 0.1144 13407 +13409 2 -74.88595410219574 -138.6748103354783 105.9629 0.1144 13408 +13410 2 -75.97133222281268 -137.66362524945364 106.0713 0.1144 13409 +13411 2 -77.03846175445149 -136.4930001257926 106.2625 0.1144 13410 +13412 2 -77.90658859626045 -136.39370630888104 106.4504 0.1144 13411 +13413 2 -78.94517912105782 -135.65651094630488 106.6439 0.1144 13412 +13414 2 -80.06010935266073 -134.58777841119576 106.8256 0.1144 13413 +13415 2 -81.17579460611599 -134.93367954837956 106.9844 0.1144 13414 +13416 2 -82.29286327117647 -134.4226842578115 107.1291 0.1144 13415 +13417 2 -83.40984674338716 -133.48374792592958 107.2672 0.1144 13416 +13418 2 -84.52655431103997 -133.91483776411596 107.4038 0.1144 13417 +13419 2 -85.64411380719076 -133.1802007687918 107.5312 0.1144 13418 +13420 2 -86.76175849619132 -132.2216486293902 107.6429 0.1144 13419 +13421 2 -87.87940318519192 -132.96429510707517 107.7339 0.1144 13420 +13422 2 -88.99696268134268 -132.03453333526411 107.7986 0.1144 13421 +13423 2 -90.12871054259871 -131.0336865033239 107.8148 0.1144 13422 +13424 2 -91.27269794622583 -132.1606920621148 107.7773 0.1144 13423 +13425 2 -92.41001637683307 -131.52135113893132 107.6382 0.1144 13424 +13426 2 -93.5457364693027 -130.95346848553362 107.4276 0.1144 13425 +13427 2 -94.68082817201946 -132.10775604819372 107.1717 0.1144 13426 +13428 2 -95.7936048587191 -131.43167907315805 106.5739 0.1144 13427 +13429 2 -70.53808858205075 -138.83440283356515 108.0374 0.1144 13406 +13430 2 -69.5402264369154 -139.01762035037683 109.3422 0.1144 13429 +13431 2 -69.12391740932972 -137.22814860533023 110.6325 0.1144 13430 +13432 2 -68.96071112392671 -135.74016734350712 111.8902 0.1144 13431 +13433 2 -68.81899436052133 -134.63919567956603 112.9834 0.1144 13432 +13434 2 -68.68406940811565 -133.4905623004006 113.8099 0.1144 13433 +13435 2 -68.59391273894332 -132.28962338466397 114.5122 0.1144 13434 +13436 2 -68.644586556795 -130.98745817991377 115.2231 0.1144 13435 +13437 2 -68.73931369020426 -129.68950000467328 116.1504 0.1144 13436 +13438 2 -68.73444928121675 -128.53472266030602 117.4589 0.1144 13437 +13439 2 -68.79635504792473 -127.40610531739648 118.9818 0.1144 13438 +13440 2 -69.3128684706457 -126.23009908259971 120.6131 0.1144 13439 +13441 2 -70.20732020481547 -126.98770792935291 121.9814 0.1144 13440 +13442 2 -71.19046320625301 -125.93658741736292 123.0928 0.1144 13441 +13443 2 -72.20496337958186 -126.68829880503662 124.0383 0.1144 13442 +13444 2 -73.24355831402436 -125.63536519324666 124.8792 0.1144 13443 +13445 2 -74.12779602157536 -124.42891566585502 125.7214 0.1144 13444 +13446 2 -74.50776172558004 -123.01328005697852 126.6252 0.1144 13445 +13447 2 -74.71265862699549 -121.64747024605452 127.514 0.1144 13446 +13448 2 -74.91613618818555 -120.57584276176907 128.4399 0.1144 13447 +13449 2 -75.11880326012741 -119.63814378210786 129.3858 0.1144 13448 +13450 2 -75.32201352897228 -118.70350984079099 130.3288 0.1144 13449 +13451 2 -75.51937831821833 -117.75530494698968 131.2486 0.1144 13450 +13452 2 -75.50767796584621 -116.43793957080821 132.1446 0.1144 13451 +13453 2 -75.23110041806866 -114.81131790244336 133.0003 0.1144 13452 +13454 2 -74.91519822253589 -113.60140906581928 133.7168 0.1144 13453 +13455 2 -74.6294111400714 -112.71507362603116 134.2457 0.1144 13454 +13456 2 -74.35236368505242 -111.80834938598021 134.6307 0.1144 13455 +13457 2 -74.14272779965451 -110.84739186436528 135.0177 0.1144 13456 +13458 2 -74.01774447934073 -109.83070555988309 135.5446 0.1144 13457 +13459 2 -73.94522893324243 -108.7946043113897 136.2396 0.1144 13458 +13460 2 -74.21311849204494 -107.63773025712979 137.0656 0.1144 13459 +13461 2 -74.78747936921025 -106.44858144556211 138.0445 0.1144 13460 +13462 2 -75.49232314931551 -105.34373192017733 139.2779 0.1144 13461 +13463 2 -75.83949451893774 -104.765012941841 140.4634 0.1144 13462 +13464 2 -76.5832529165977 -104.65721157635966 141.7965 0.1144 13463 +13465 2 -77.30134593986183 -103.50299987585221 142.8154 0.1144 13464 +13466 2 -77.80912184241018 -102.28622680210137 143.624 0.1144 13465 +13467 2 -78.16197269789178 -101.08749453205529 144.4324 0.1144 13466 +13468 2 -78.54132163124322 -99.8906185251294 145.2354 0.1144 13467 +13469 2 -79.00727335517105 -98.69285848720469 146.0827 0.1144 13468 +13470 2 -79.4742888325462 -98.17983998818666 146.9628 0.1144 13469 +13471 2 -79.93751989591017 -97.69110619078648 147.8873 0.1144 13470 +13472 2 -80.39914169457349 -96.50286735920564 148.8404 0.1144 13471 +13473 2 -80.86120978349425 -95.3179377153203 149.7958 0.1144 13472 +13474 2 -81.32171236131445 -94.14051367765704 150.7621 0.1144 13473 +13475 2 -81.78244940444276 -92.96696383363148 151.7155 0.1144 13474 +13476 2 -82.2475023446895 -91.79082757540627 152.6372 0.1144 13475 +13477 2 -82.7151462118175 -90.65212433100318 153.5117 0.1144 13476 +13478 2 -83.2107099060872 -90.29831349951878 154.4085 0.1144 13477 +13479 2 -83.68249749111294 -89.6610384840797 155.9345 0.1144 13478 +13480 2 13.856364894644674 -406.62114190105416 45.521 0.1144 10250 +13481 2 14.014717188207793 -405.2739830681571 45.8766 0.1144 13480 +13482 2 14.370809295603312 -404.13463724879466 46.0118 0.1144 13481 +13483 2 15.292647887766915 -402.918607612204 46.2274 0.1144 13482 +13484 2 16.379432947983705 -402.5266489925525 46.6189 0.1144 13483 +13485 2 17.504913680340692 -402.2670842504196 47.0548 0.1144 13484 +13486 2 18.609228644751266 -402.7764413738236 47.5107 0.1144 13485 +13487 2 19.691560249187113 -402.37224063440647 48.0278 0.1144 13486 +13488 2 20.779029859089196 -401.57840306364005 48.5464 0.1144 13487 +13489 2 21.910896450453617 -401.26948786557114 48.9401 0.1144 13488 +13490 2 23.0090404823892 -401.15603929651445 49.1347 0.1144 13489 +13491 2 23.94157503596052 -401.01454251864703 49.1596 0.1144 13490 +13492 2 24.883640167449826 -400.0847041629715 49.0893 0.1144 13491 +13493 2 25.825396567344267 -398.9635717196903 48.9336 0.1144 13492 +13494 2 26.770319918060064 -398.14520021949556 48.7113 0.1144 13493 +13495 2 27.71975219195264 -396.9143050618629 48.4355 0.1144 13494 +13496 2 28.686788636325794 -396.9447046347548 48.0245 0.1144 13495 +13497 2 29.727277938101746 -397.11709743081474 47.1593 0.1144 13496 +13498 2 30.793187944602 -396.509293313488 46.2543 0.1144 13497 +13499 2 31.848974521288703 -396.3305443395643 45.4765 0.1144 13498 +13500 2 32.82141626347329 -395.07832029986133 44.8423 0.1144 13499 +13501 2 33.85801232942612 -394.76440300747294 44.3355 0.1144 13500 +13502 2 34.9791675461636 -395.3190158248617 44.0028 0.1144 13501 +13503 2 35.95931267441749 -395.3459022685363 43.792 0.1144 13502 +13504 2 36.72348692035297 -396.61677611377644 43.587 0.1144 13503 +13505 2 37.59731547993216 -396.6340992060419 43.3779 0.1144 13504 +13506 2 38.69693642676178 -397.10417099825895 43.1332 0.1144 13505 +13507 2 39.83008341461585 -397.2580237128978 42.8033 0.1144 13506 +13508 2 40.88718562387574 -396.52851493207453 42.2106 0.1144 13507 +13509 2 41.71230299172089 -397.2591733232738 41.585 0.1144 13508 +13510 2 42.51772469980028 -397.48552915674236 41.2636 0.1144 13509 +13511 2 43.46168749016289 -398.17876094926226 41.0374 0.1144 13510 +13512 2 44.424316126843664 -398.950059667155 40.8937 0.1144 13511 +13513 2 45.3465163081453 -400.1927684680357 40.8103 0.1144 13512 +13514 2 46.3740490815907 -400.26636472908285 40.7324 0.1144 13513 +13515 2 47.49834522311903 -400.30643965395626 40.6207 0.1144 13514 +13516 2 48.592673097305834 -400.09041678013875 40.5065 0.1144 13515 +13517 2 49.59614055100303 -400.89740036179717 40.4135 0.1144 13516 +13518 2 50.560240893721954 -401.8637452183906 40.336 0.1144 13517 +13519 2 51.56726612110212 -402.17599002390574 40.2657 0.1144 13518 +13520 2 52.59731383863205 -402.95736393699354 40.1988 0.1144 13519 +13521 2 53.691631100007584 -402.65944423147147 40.1226 0.1144 13520 +13522 2 54.829356175143694 -403.02988547525683 40.017 0.1144 13521 +13523 2 55.95575140617464 -402.77951326458094 39.846 0.1144 13522 +13524 2 57.05643771628719 -402.61790507055906 39.6318 0.1144 13523 +13525 2 58.18350447514568 -401.91082829172746 39.4036 0.1144 13524 +13526 2 59.31394111347346 -402.3866317038119 39.0368 0.1144 13525 +13527 2 60.41661228161454 -402.6245832757432 38.5442 0.1144 13526 +13528 2 61.48920837317886 -402.6462028614858 38.1436 0.1144 13527 +13529 2 62.56198415519205 -403.01107935976324 37.8431 0.1144 13528 +13530 2 63.67389119780234 -402.96723266248614 37.6205 0.1144 13529 +13531 2 64.8153790705642 -403.74616391615314 37.4584 0.1144 13530 +13532 2 65.89648774650472 -403.20839443537244 37.3425 0.1144 13531 +13533 2 66.9628785748314 -402.42592066342166 37.2378 0.1144 13532 +13534 2 67.89866527207383 -401.4334798594266 37.1087 0.1144 13533 +13535 2 68.12090969924168 -399.9956112081555 36.9499 0.1144 13534 +13536 2 68.40952125088957 -399.7732744907361 36.8379 0.1144 13535 +13537 2 69.51636386178387 -400.4934689430545 36.3947 0.1144 13536 +13538 2 70.56077894233124 -401.3771150086646 35.9629 0.1144 13537 +13539 2 71.55448204533886 -401.38385327092465 35.5692 0.1144 13538 +13540 2 72.58785478775364 -401.98700966018924 35.2131 0.1144 13539 +13541 2 73.69743959858599 -401.2766300902596 34.9236 0.1144 13540 +13542 2 74.81766830678697 -401.81352883117665 34.7172 0.1144 13541 +13543 2 75.9346386681506 -401.90773219749514 34.5626 0.1144 13542 +13544 2 77.0471025153839 -400.886838178351 34.4114 0.1144 13543 +13545 2 78.15728416733091 -400.6729991877839 34.2185 0.1144 13544 +13546 2 79.26125555482596 -400.32513575517476 33.9979 0.1144 13545 +13547 2 80.38257715606592 -401.2812610779631 33.7196 0.1144 13546 +13548 2 81.46519077352957 -400.7896962664627 33.3749 0.1144 13547 +13549 2 81.87037667977785 -399.29417798473423 32.9426 0.1144 13548 +13550 2 81.64513720206337 -398.3859505272806 32.4386 0.1144 13549 +13551 2 82.76917326070101 -398.7150575308384 32.0835 0.1144 13550 +13552 2 83.8942326278465 -397.6042587280557 31.7705 0.1144 13551 +13553 2 84.9229169694199 -397.6033366262607 31.4569 0.1144 13552 +13554 2 85.97257746821607 -398.2728969639599 31.1268 0.1144 13553 +13555 2 86.79661575838395 -398.52108485951203 30.9042 0.1144 13554 +13556 2 87.56832211648896 -399.31823368698565 30.7168 0.1144 13555 +13557 2 88.30279058702016 -400.64977888301945 30.5231 0.1144 13556 +13558 2 89.23610978178783 -400.25664042099766 30.3489 0.1144 13557 +13559 2 90.35213831038499 -401.0648039995346 30.2131 0.1144 13558 +13560 2 91.49393422220517 -401.218219610236 30.0905 0.1144 13559 +13561 2 92.62057862154191 -400.9757151456069 29.9426 0.1144 13560 +13562 2 93.67479708298212 -401.63708244466375 29.7674 0.1144 13561 +13563 2 94.62255211233582 -401.65207973006744 29.5926 0.1144 13562 +13564 2 95.51366310662785 -402.9863327914415 29.3978 0.1144 13563 +13565 2 96.52196632145123 -403.55325329325734 29.1858 0.1144 13564 +13566 2 97.62648570625733 -403.5460290132342 28.9918 0.1144 13565 +13567 2 98.68291307332227 -404.52629481481154 28.7935 0.1144 13566 +13568 2 99.61548886533711 -404.2030023197696 28.5295 0.1144 13567 +13569 2 100.58799376412432 -405.5164350454442 28.2251 0.1144 13568 +13570 2 101.68124557322764 -405.6028757504437 27.9564 0.1144 13569 +13571 2 102.81133682914074 -405.14966414239666 27.6881 0.1144 13570 +13572 2 103.9291180705155 -405.65789228665125 27.4275 0.1144 13571 +13573 2 104.96720614512299 -405.33700921170316 27.1945 0.1144 13572 +13574 2 105.89291414334141 -406.7394589088227 26.9387 0.1144 13573 +13575 2 106.890305777688 -406.97524082651285 26.5947 0.1144 13574 +13576 2 108.01330169986237 -406.9608624347784 26.2409 0.1144 13575 +13577 2 109.13444430319004 -407.3914675456461 25.9338 0.1144 13576 +13578 2 110.20311911461714 -407.17031417486646 25.6745 0.1144 13577 +13579 2 111.10081037904826 -408.5790335327847 25.4899 0.1144 13578 +13580 2 111.74628746292944 -410.09661182918757 25.3865 0.1144 13579 +13581 2 112.32098720559165 -411.0184465136236 25.3158 0.1144 13580 +13582 2 113.03799424349762 -411.4235299748666 25.3083 0.1144 13581 +13583 2 113.82502360077025 -412.65059510183056 25.3998 0.1144 13582 +13584 2 114.62813097906282 -412.9776722596468 25.5207 0.1144 13583 +13585 2 115.53420077353178 -413.704991666001 25.6234 0.1144 13584 +13586 2 116.48418563235906 -415.09991636225675 25.7011 0.1144 13585 +13587 2 117.48119634643363 -415.701048290841 25.7552 0.1144 13586 +13588 2 118.49138542305211 -415.83243895214366 25.781 0.1144 13587 +13589 2 119.48758874946164 -416.3548403171865 25.7843 0.1144 13588 +13590 2 120.50366164334561 -417.59932420528446 25.7784 0.1144 13589 +13591 2 121.57163449126972 -417.8373302403964 25.769 0.1144 13590 +13592 2 122.68345083040063 -417.97419591516643 25.7559 0.1144 13591 +13593 2 123.77960399680504 -418.05982965505484 25.7373 0.1144 13592 +13594 2 124.88946400197365 -418.26627407821417 25.7115 0.1144 13593 +13595 2 126.0018594666277 -419.3766465215575 25.6758 0.1144 13594 +13596 2 127.11986525303598 -419.2391474837856 25.6252 0.1144 13595 +13597 2 128.20724114686482 -419.48458784239665 25.5528 0.1144 13596 +13598 2 129.21502139609737 -419.6028922008891 25.453 0.1144 13597 +13599 2 130.16705949553247 -420.45618324123046 25.3208 0.1144 13598 +13600 2 130.92833718457499 -421.979732892244 25.1391 0.1144 13599 +13601 2 131.66418906671137 -422.94529215229716 24.811 0.1144 13600 +13602 2 132.5583584860797 -423.16524016179415 24.3825 0.1144 13601 +13603 2 133.55046014936656 -424.333933286311 23.9314 0.1144 13602 +13604 2 134.5325856370146 -424.86887212708655 23.4265 0.1144 13603 +13605 2 135.6378644533181 -424.66507050275465 22.9155 0.1144 13604 +13606 2 136.76073443592952 -425.18798637938363 22.4788 0.1144 13605 +13607 2 137.8552331042639 -424.7750686447763 22.1183 0.1144 13606 +13608 2 138.97816365645275 -425.5925277880534 21.6523 0.1144 13607 +13609 2 140.10511368580129 -425.1234144944796 21.2167 0.1144 13608 +13610 2 141.23840512802073 -424.97986158187507 20.8452 0.1144 13609 +13611 2 142.36944822596422 -425.21593558961 20.4939 0.1144 13610 +13612 2 143.42602245644096 -425.7167654252482 20.1718 0.1144 13611 +13613 2 144.4298283671871 -426.19778407663415 19.8093 0.1144 13612 +13614 2 145.43694429804665 -426.3960705339332 19.5031 0.1144 13613 +13615 2 146.4284206731638 -426.8346651107755 19.0711 0.1144 13614 +13616 2 68.18713969062793 -399.18983494974754 37.3391 0.1144 13535 +13617 2 68.31412078415366 -397.81507016081616 37.532 0.1144 13616 +13618 2 68.23626123716375 -396.61323070171363 37.5085 0.1144 13617 +13619 2 68.17577241931966 -395.3927302336672 37.5015 0.1144 13618 +13620 2 68.55271945579372 -393.8453755757711 37.6474 0.1144 13619 +13621 2 68.56307334915405 -392.5702782851361 37.9226 0.1144 13620 +13622 2 67.46452646680937 -393.2595453949766 38.3664 0.1144 13621 +13623 2 66.38659666256339 -393.4844186498405 39.2641 0.1144 13622 +13624 2 7.24246400172032 -466.07538878184585 44.9028 0.1144 8272 +13625 2 8.132332244652845 -467.5470370396309 44.9148 0.1144 13624 +13626 2 9.02277651152534 -467.62517370309814 44.9313 0.1144 13625 +13627 2 9.878841110050555 -468.60750321233 44.9546 0.1144 13626 +13628 2 10.625069295436775 -469.6094794372515 44.9868 0.1144 13627 +13629 2 11.417976959345342 -469.76024854058005 45.0316 0.1144 13628 +13630 2 12.10754328740423 -471.19248408511083 45.0996 0.1144 13629 +13631 2 12.58972910581696 -472.7393477154359 45.1942 0.1144 13630 +13632 2 13.150530700166534 -474.3006888754089 45.3107 0.1144 13631 +13633 2 13.736273473497986 -475.6148466282578 45.4689 0.1144 13632 +13634 2 14.432821223280037 -475.3851377945733 45.7822 0.1144 13633 +13635 2 15.445486095127322 -475.79920052308523 46.4822 0.1144 13634 +13636 2 16.379601573018515 -473.85948377083787 47.1246 0.1144 13635 +13637 2 17.432080538638193 -474.2070998154493 47.705 0.1144 13636 +13638 2 18.5341955057035 -475.16682748139806 48.2135 0.1144 13637 +13639 2 19.638608773810915 -474.31108720003306 48.652 0.1144 13638 +13640 2 20.726835903601273 -475.41763064280036 48.9731 0.1144 13639 +13641 2 21.67360385484096 -474.8713322845912 49.1831 0.1144 13640 +13642 2 22.624790025778125 -476.2557697245921 49.3192 0.1144 13641 +13643 2 23.715282522899148 -477.06104475648465 49.4147 0.1144 13642 +13644 2 24.85353807485422 -475.80388011103423 49.4771 0.1144 13643 +13645 2 25.990142230322235 -476.44864919975845 49.5256 0.1144 13644 +13646 2 27.11398107801886 -475.0455685990785 49.6098 0.1144 13645 +13647 2 28.150415559877295 -475.23349114639734 49.7277 0.1144 13646 +13648 2 29.063247232250212 -475.0924827553735 49.8406 0.1144 13647 +13649 2 29.951210606854897 -473.0729999535299 49.9394 0.1144 13648 +13650 2 30.81234934972905 -472.658900265336 50.0301 0.1144 13649 +13651 2 31.644863484464 -471.3199203172412 50.1214 0.1144 13650 +13652 2 32.735474019156946 -470.9227467184129 50.2205 0.1144 13651 +13653 2 33.86627313996559 -470.3234010736004 50.335 0.1144 13652 +13654 2 35.00446742980655 -470.7805478141251 50.4748 0.1144 13653 +13655 2 36.14216237104072 -471.4744834721123 50.759 0.1144 13654 +13656 2 37.20976421896755 -470.6905746244911 51.233 0.1144 13655 +13657 2 37.19577187482952 -470.33276356194284 51.4097 0.1144 13656 +13658 2 37.266274927033116 -469.05755989207074 51.7698 0.1144 13657 +13659 2 37.51921290025585 -467.9239114945566 51.9658 0.1144 13658 +13660 2 37.81742332341176 -466.8536026534001 52.0825 0.1144 13659 +13661 2 37.997429416202124 -465.67125885679417 52.1284 0.1144 13660 +13662 2 38.207464736674396 -464.5142365036443 52.1268 0.1144 13661 +13663 2 38.415934546046095 -463.3563871254272 52.1108 0.1144 13662 +13664 2 38.26978246801974 -461.9553032352469 52.0887 0.1144 13663 +13665 2 38.01786722258517 -460.4800974006557 52.0607 0.1144 13664 +13666 2 38.03908204711947 -459.18029518670585 52.0257 0.1144 13665 +13667 2 38.47680732472616 -458.2868264916484 51.945 0.1144 13666 +13668 2 38.791363753783834 -456.61443740995986 51.8465 0.1144 13667 +13669 2 38.898708360070025 -455.17078268816886 51.7658 0.1144 13668 +13670 2 38.975789273366125 -453.7655208529939 51.7096 0.1144 13669 +13671 2 39.097343861142996 -452.3153799674806 51.6768 0.1144 13670 +13672 2 39.32630991123207 -450.8092111029832 51.6676 0.1144 13671 +13673 2 39.72611205904313 -449.87184292217637 51.6813 0.1144 13672 +13674 2 40.15642565341376 -448.8704217015623 51.7098 0.1144 13673 +13675 2 40.011569385096394 -447.6015968669808 51.7485 0.1144 13674 +13676 2 39.494284112567584 -446.088630061418 51.7992 0.1144 13675 +13677 2 38.53559216924319 -446.2298779874785 51.9198 0.1144 13676 +13678 2 38.758619343118816 -444.831291545373 52.0458 0.1144 13677 +13679 2 39.2125961290282 -443.11397066552473 52.1492 0.1144 13678 +13680 2 39.64345292030191 -441.98831146406195 52.2399 0.1144 13679 +13681 2 39.941610977645034 -440.9667395072561 52.3194 0.1144 13680 +13682 2 40.209342781278416 -439.77137487030524 52.3891 0.1144 13681 +13683 2 39.961977898270355 -438.45352074406946 52.5353 0.1144 13682 +13684 2 39.641047926984044 -436.9851766395892 52.7187 0.1144 13683 +13685 2 39.55646365548982 -435.62859810515437 52.8041 0.1144 13684 +13686 2 39.80391214433973 -434.6726310006743 52.8864 0.1144 13685 +13687 2 39.890666704846005 -433.4400868607405 52.9609 0.1144 13686 +13688 2 39.703574511197644 -432.03340141007993 53.0368 0.1144 13687 +13689 2 39.26932874493267 -430.63601505916154 53.1233 0.1144 13688 +13690 2 38.43597549591577 -430.3064983401403 53.3075 0.1144 13689 +13691 2 37.73803133035569 -428.782776941872 53.6029 0.1144 13690 +13692 2 37.29795721422096 -427.72202496331846 53.8602 0.1144 13691 +13693 2 37.45606003770461 -426.3988381806594 54.0453 0.1144 13692 +13694 2 38.18795652172568 -425.6662578593605 54.1559 0.1144 13693 +13695 2 38.990314796679144 -424.70094143571436 54.1943 0.1144 13694 +13696 2 39.9761232040691 -424.2647683003974 54.1626 0.1144 13695 +13697 2 40.841875270308805 -423.3427626266383 54.0736 0.1144 13696 +13698 2 41.94364005455136 -423.6202197368439 53.9431 0.1144 13697 +13699 2 42.98685162672673 -422.05353542558834 53.7242 0.1144 13698 +13700 2 44.06262278388787 -422.0664794630037 53.4204 0.1144 13699 +13701 2 45.16853849548262 -421.8117699270515 53.125 0.1144 13700 +13702 2 46.18866290005943 -421.14043610172536 52.8223 0.1144 13701 +13703 2 46.814887612688 -420.5898624525611 52.4695 0.1144 13702 +13704 2 47.19633264577592 -419.4839901671643 51.9985 0.1144 13703 +13705 2 47.801414213131956 -417.3592241256448 51.4324 0.1144 13704 +13706 2 48.62299384294275 -416.782443970159 50.8654 0.1144 13705 +13707 2 49.65843063387585 -416.36046549609233 50.318 0.1144 13706 +13708 2 50.6508135166866 -415.93260194909163 49.7882 0.1144 13707 +13709 2 51.32335730296643 -414.7701432640447 49.3363 0.1144 13708 +13710 2 51.87924616422558 -414.02980072802865 48.9516 0.1144 13709 +13711 2 52.353543294523156 -413.1802099548971 48.6604 0.1144 13710 +13712 2 52.73800531343751 -411.31010176939844 48.4635 0.1144 13711 +13713 2 53.18944663986145 -409.39997415693426 48.3423 0.1144 13712 +13714 2 53.86733345555034 -408.8312435635378 48.2756 0.1144 13713 +13715 2 54.61918918655191 -408.12343458300035 48.2471 0.1144 13714 +13716 2 55.2577335322198 -406.85862533756597 48.2434 0.1144 13715 +13717 2 55.703423184107386 -405.81052527483007 48.2552 0.1144 13716 +13718 2 56.47516458833923 -404.52890374244646 48.2345 0.1144 13717 +13719 2 57.49327890806786 -404.6575066361251 48.2177 0.1144 13718 +13720 2 58.586291753228736 -403.12163695616516 48.2401 0.1144 13719 +13721 2 59.64444161018008 -403.377529225817 48.4011 0.1144 13720 +13722 2 60.56070752571954 -402.43952529187953 48.7018 0.1144 13721 +13723 2 61.283112462025834 -401.13235595375727 48.9625 0.1144 13722 +13724 2 62.42043810208756 -400.94836790195984 49.177 0.1144 13723 +13725 2 63.25505814501667 -399.41306389541535 49.4589 0.1144 13724 +13726 2 64.14823620042095 -398.9253287904974 49.5379 0.1144 13725 +13727 2 65.22591063319499 -398.9928365229709 49.6222 0.1144 13726 +13728 2 66.13377509424926 -398.05655485890924 49.7283 0.1144 13727 +13729 2 66.06942046366385 -396.868413080834 49.8624 0.1144 13728 +13730 2 65.41649956204608 -395.95047290720873 50.0682 0.1144 13729 +13731 2 64.69278011127193 -394.88803347928916 50.2334 0.1144 13730 +13732 2 64.47240413722403 -393.45895172950713 50.3569 0.1144 13731 +13733 2 64.42309901029479 -392.1237126538188 50.4423 0.1144 13732 +13734 2 64.42511581286715 -390.8256550659412 50.4986 0.1144 13733 +13735 2 64.3404377363104 -389.47118158301396 50.5327 0.1144 13734 +13736 2 64.55128113698439 -388.3637068242273 50.5551 0.1144 13735 +13737 2 65.14823984754825 -387.5694080703046 50.5859 0.1144 13736 +13738 2 65.88604787369017 -386.7328771382887 50.6296 0.1144 13737 +13739 2 66.97140197458205 -385.73331626098815 50.6836 0.1144 13738 +13740 2 67.98710436534168 -385.2802409444986 50.7573 0.1144 13739 +13741 2 68.97870278493477 -383.9969313558044 50.8987 0.1144 13740 +13742 2 69.87790290880372 -383.83023795232253 51.1062 0.1144 13741 +13743 2 70.87247997655658 -383.5305912260972 51.2641 0.1144 13742 +13744 2 71.91898513165285 -382.1954213024766 51.3705 0.1144 13743 +13745 2 72.95002834384584 -381.9693122300865 51.4282 0.1144 13744 +13746 2 73.86447307503911 -380.39782935359705 51.4374 0.1144 13745 +13747 2 74.55341694954342 -379.77221312631116 51.392 0.1144 13746 +13748 2 75.05975269983452 -378.9752871384016 51.2921 0.1144 13747 +13749 2 75.31054913801655 -377.89075124640704 51.1756 0.1144 13748 +13750 2 75.44578143694395 -376.69714206496576 51.0756 0.1144 13749 +13751 2 75.74194172107514 -375.62454468101595 50.988 0.1144 13750 +13752 2 76.22091274431578 -374.5558919873474 50.9082 0.1144 13751 +13753 2 76.55267493275296 -373.11874177506496 50.832 0.1144 13752 +13754 2 76.84268651631997 -371.50485005062245 50.7377 0.1144 13753 +13755 2 77.33582918338453 -370.0508143032234 50.5904 0.1144 13754 +13756 2 77.83405369598299 -369.1961040602217 50.4078 0.1144 13755 +13757 2 78.28112675947575 -368.15203995156475 50.2505 0.1144 13756 +13758 2 78.74200726780181 -366.48733025821724 50.1435 0.1144 13757 +13759 2 79.35095774948223 -364.9248106444989 50.0858 0.1144 13758 +13760 2 80.1500108224152 -364.55816255864613 50.0758 0.1144 13759 +13761 2 80.9803505950724 -364.2476074790195 50.1077 0.1144 13760 +13762 2 81.77186845425288 -363.31073240551024 50.176 0.1144 13761 +13763 2 82.7322862908204 -362.02762469319487 50.2967 0.1144 13762 +13764 2 83.86289781918909 -361.9450306685489 50.4526 0.1144 13763 +13765 2 84.76922380146158 -360.85751087618775 50.6688 0.1144 13764 +13766 2 85.39475165276875 -360.22038133548 50.9146 0.1144 13765 +13767 2 86.08391045380549 -359.6742070657394 51.1053 0.1144 13766 +13768 2 86.84188205833414 -359.0899165850133 51.2184 0.1144 13767 +13769 2 87.7978600588188 -357.29078744945167 51.2562 0.1144 13768 +13770 2 88.90264803205395 -357.4476012638197 51.2299 0.1144 13769 +13771 2 89.94470755634912 -356.04057563614106 51.116 0.1144 13770 +13772 2 90.6314222939164 -355.48852401172417 50.8539 0.1144 13771 +13773 2 91.13351641337587 -354.6446460943015 50.5548 0.1144 13772 +13774 2 91.7843581601722 -354.03913836127407 50.3297 0.1144 13773 +13775 2 92.55128121709578 -352.3850644567553 50.1766 0.1144 13774 +13776 2 93.25879782539229 -351.25548797675305 50.0912 0.1144 13775 +13777 2 93.75648775330036 -350.4417869613879 50.069 0.1144 13776 +13778 2 93.67817069969448 -349.9104296714343 50.6962 0.1144 13777 +13779 2 93.44992344620661 -348.7072664482148 52.122 0.1144 13778 +13780 2 92.60544617053137 -348.657194547249 53.7883 0.1144 13779 +13781 2 91.88813778846352 -350.09576514386646 55.5643 0.1144 13780 +13782 2 91.2730159835451 -350.4824054253494 57.1007 0.1144 13781 +13783 2 90.52274027668516 -349.38084994130116 58.511 0.1144 13782 +13784 2 91.12970019460812 -348.9171308766752 59.8186 0.1144 13783 +13785 2 92.06026780140594 -348.96117203494913 60.73 0.1144 13784 +13786 2 92.72400148807321 -346.7997240872238 61.5104 0.1144 13785 +13787 2 93.0851761335391 -345.59597768611206 62.1328 0.1144 13786 +13788 2 93.29553180470592 -344.5013765394574 62.6833 0.1144 13787 +13789 2 93.21812234209314 -343.19863234878807 63.1719 0.1144 13788 +13790 2 92.72811591122833 -342.02326931092574 63.5575 0.1144 13789 +13791 2 92.11898103282293 -342.0433500652488 63.8224 0.1144 13790 +13792 2 91.642728988442 -340.6226359648878 64.0136 0.1144 13791 +13793 2 91.37745017938508 -339.19272860302897 64.1589 0.1144 13792 +13794 2 91.37189653212131 -337.9094146633985 64.2894 0.1144 13793 +13795 2 91.6678747167571 -336.8803363793417 64.4398 0.1144 13794 +13796 2 92.11450148999242 -335.98226802773036 64.6363 0.1144 13795 +13797 2 92.49856958446199 -334.114752137917 64.8962 0.1144 13796 +13798 2 92.70148143789223 -332.52237853046586 65.2974 0.1144 13797 +13799 2 92.95852379703581 -331.1566042101388 66.2284 0.1144 13798 +13800 2 93.76388543811765 -330.90597089140647 67.1538 0.1144 13799 +13801 2 94.67746082699514 -329.5428774402246 68.0243 0.1144 13800 +13802 2 93.85266700041691 -330.7682683563207 69.0642 0.1144 13801 +13803 2 92.86924038809397 -330.6222869207085 69.9706 0.1144 13802 +13804 2 92.74857627926612 -331.07534490837287 70.2204 0.1144 13803 +13805 2 92.64174604404296 -332.3036347355353 71.4087 0.1144 13804 +13806 2 93.33911348114825 -332.68427133352543 73.1556 0.1144 13805 +13807 2 93.38119984993233 -332.8249373240879 73.5666 0.1144 13806 +13808 2 93.77002080990783 -334.0106367943217 72.3598 0.1144 13807 +13809 2 94.59027127072966 -334.1601894600026 71.3899 0.1144 13808 +13810 2 95.08089377971118 -334.9421174228436 70.5312 0.1144 13809 +13811 2 95.18810041374425 -336.2332502489447 69.7119 0.1144 13810 +13812 2 94.81903496774774 -337.21111514794865 68.9564 0.1144 13811 +13813 2 94.95038631966061 -338.43749559527686 68.15 0.1144 13812 +13814 2 95.29762305926832 -339.83798344127393 67.3392 0.1144 13813 +13815 2 96.3103582081834 -340.93040238397595 66.6061 0.1144 13814 +13816 2 97.35328686201008 -341.93295812730196 65.9291 0.1144 13815 +13817 2 98.19853086762657 -341.54022412150994 64.9998 0.1144 13816 +13818 2 99.13105730642245 -342.18240574909674 63.3833 0.1144 13817 +13819 2 93.12441078979353 -331.3591263512544 74.349 0.1144 13806 +13820 2 92.91239042133601 -330.06186641821665 75.4211 0.1144 13819 +13821 2 92.70028175844561 -329.1777709426202 76.4537 0.1144 13820 +13822 2 92.46317644917747 -328.45346742881094 77.4939 0.1144 13821 +13823 2 92.1140480530564 -327.94054823873364 78.6758 0.1144 13822 +13824 2 91.51605411825426 -326.6313334508115 79.9428 0.1144 13823 +13825 2 90.6016253148382 -325.6190006748276 81.1272 0.1144 13824 +13826 2 89.69021970041476 -324.46174358594175 82.3091 0.1144 13825 +13827 2 88.826683257524 -324.9346953096381 83.4898 0.1144 13826 +13828 2 88.14271802348122 -323.60443664722885 84.6846 0.1144 13827 +13829 2 88.03503086939548 -322.5201168396828 85.869 0.1144 13828 +13830 2 88.63633802002614 -321.90971933305747 86.7905 0.1144 13829 +13831 2 89.11323528725808 -320.62424421298783 87.5428 0.1144 13830 +13832 2 89.29654658206894 -319.12395066624146 88.1185 0.1144 13831 +13833 2 89.20448325675454 -318.00562445086246 88.6043 0.1144 13832 +13834 2 89.11045498526525 -316.90333164390546 89.0641 0.1144 13833 +13835 2 89.35310805125427 -315.3222978828051 89.5406 0.1144 13834 +13836 2 89.70657399568493 -313.80749933847704 90.0284 0.1144 13835 +13837 2 90.03311909427606 -312.83076045818734 90.503 0.1144 13836 +13838 2 90.29991997972789 -311.79368091814496 90.9412 0.1144 13837 +13839 2 90.5323202729835 -310.71582670972003 91.3214 0.1144 13838 +13840 2 90.76761712313217 -309.53842589415393 91.6387 0.1144 13839 +13841 2 91.00269904674845 -308.35180540163043 91.9128 0.1144 13840 +13842 2 91.23875091874947 -307.16456262378773 92.1715 0.1144 13841 +13843 2 91.46024032406496 -306.072274519787 92.4468 0.1144 13842 +13844 2 91.63400701281171 -304.9363483062338 92.7727 0.1144 13843 +13845 2 91.76857258431963 -303.77270520697044 93.1661 0.1144 13844 +13846 2 92.09513860675962 -302.69240679069236 93.7182 0.1144 13845 +13847 2 93.02069825552562 -301.1376825528663 94.5062 0.1144 13846 +13848 2 94.07643487544607 -301.3792316737324 95.2851 0.1144 13847 +13849 2 94.98010456085183 -299.9182558241035 95.9916 0.1144 13848 +13850 2 95.52286811791646 -299.24085013322366 96.6395 0.1144 13849 +13851 2 96.40034705428907 -298.96656804205753 97.487 0.1144 13850 +13852 2 97.2268820755128 -300.06670030721176 98.1064 0.1144 13851 +13853 2 97.26160422549808 -298.81464298713786 98.471 0.1144 13852 +13854 2 97.41514196587259 -297.36100647742916 98.6132 0.1144 13853 +13855 2 97.79577891875874 -295.6740681034889 98.707 0.1144 13854 +13856 2 98.19307843412145 -294.3651330045255 98.7935 0.1144 13855 +13857 2 98.42165055976582 -293.2845842834009 98.884 0.1144 13856 +13858 2 98.63244400367354 -292.1894375048014 98.9923 0.1144 13857 +13859 2 99.005953695398 -291.06147423426006 99.1068 0.1144 13858 +13860 2 99.44455752537357 -289.503881880169 99.2006 0.1144 13859 +13861 2 99.71639340117605 -287.96647826659057 99.2653 0.1144 13860 +13862 2 99.80857997806086 -286.5870780752236 99.3068 0.1144 13861 +13863 2 99.85768800586598 -285.26926692509596 99.3348 0.1144 13862 +13864 2 99.95397555333682 -283.8958738465461 99.3616 0.1144 13863 +13865 2 100.13126408714636 -282.7311891183748 99.4003 0.1144 13864 +13866 2 100.3412994076186 -281.6336228275046 99.4504 0.1144 13865 +13867 2 100.54349388432654 -280.53057013404833 99.4969 0.1144 13866 +13868 2 100.71850332443286 -279.40412283479793 99.5109 0.1144 13867 +13869 2 100.87650003121793 -278.2970104038756 99.4804 0.1144 13868 +13870 2 101.05062471578918 -277.1711336233432 99.4294 0.1144 13869 +13871 2 101.2423905234346 -276.0607207154206 99.3812 0.1144 13870 +13872 2 101.43825730166596 -274.9534687134412 99.3429 0.1144 13871 +13873 2 101.63376298248966 -273.8485065814273 99.3182 0.1144 13872 +13874 2 101.84638612826011 -272.71747588088664 99.3096 0.1144 13873 +13875 2 102.14352187140571 -271.43036169461743 99.316 0.1144 13874 +13876 2 102.49858856302052 -269.8693221106916 99.3297 0.1144 13875 +13877 2 102.77259569931769 -268.378636435138 99.3415 0.1144 13876 +13878 2 102.98111787450213 -266.9336243792343 99.3569 0.1144 13877 +13879 2 103.14120375051513 -265.6700135578903 99.4081 0.1144 13878 +13880 2 103.212767454583 -264.47049084800864 99.5434 0.1144 13879 +13881 2 103.23760103082569 -263.24006854860687 99.7766 0.1144 13880 +13882 2 103.25601310352937 -262.00898155765555 100.0938 0.1144 13881 +13883 2 103.12251642245616 -260.709987824176 100.4752 0.1144 13882 +13884 2 102.66658162088032 -259.76940396142544 100.8885 0.1144 13883 +13885 2 102.15242496150613 -259.2522859554373 101.3726 0.1144 13884 +13886 2 101.82464742773561 -258.1995662046869 101.9623 0.1144 13885 +13887 2 101.67818971969754 -257.018996052585 102.5217 0.1144 13886 +13888 2 101.47176495231156 -255.65738937576612 103.0014 0.1144 13887 +13889 2 101.14763589570342 -254.26076592477455 103.5034 0.1144 13888 +13890 2 101.20946469044705 -253.14121991687642 104.1314 0.1144 13889 +13891 2 101.9684011411789 -252.59399155278982 104.6996 0.1144 13890 +13892 2 102.90107704753245 -250.92978031347542 105.1708 0.1144 13891 +13893 2 103.54229889800459 -250.36809020770028 105.6135 0.1144 13892 +13894 2 103.43947524758535 -249.15602020525125 106.0679 0.1144 13893 +13895 2 103.16475794916303 -247.79650685612683 106.6439 0.1144 13894 +13896 2 103.34161560593434 -246.7482486880736 107.3288 0.1144 13895 +13897 2 103.64879530375082 -245.81034025496712 108.1161 0.1144 13896 +13898 2 103.85127558760622 -244.7875634697989 109.0429 0.1144 13897 +13899 2 103.72626424580608 -243.59441042747596 110.1649 0.1144 13898 +13900 2 103.67414575423506 -242.47365690726366 111.3988 0.1144 13899 +13901 2 104.10360611204574 -241.57871178007161 112.6042 0.1144 13900 +13902 2 104.88148291089547 -240.48147004592437 113.9673 0.1144 13901 +13903 2 105.79532157323601 -240.24859589174264 115.5655 0.1144 13902 +13904 2 106.48579690702427 -241.21782540340797 117.4074 0.1144 13903 +13905 2 106.67670456588475 -242.17498787398443 119.3738 0.1144 13904 +13906 2 106.50903692270968 -242.95264386864494 121.273 0.1144 13905 +13907 2 106.11050757117076 -243.2812923594784 123.1093 0.1144 13906 +13908 2 105.14212665640632 -243.02249922702788 124.5154 0.1144 13907 +13909 2 104.09282725501781 -243.7581200129763 125.6072 0.1144 13908 +13910 2 103.37333148901448 -244.01569995047166 126.686 0.1144 13909 +13911 2 103.09301337552198 -244.9446958800254 127.6369 0.1144 13910 +13912 2 103.1779816688713 -246.1639538689564 128.5441 0.1144 13911 +13913 2 103.44315125964646 -247.48424177610178 129.4328 0.1144 13912 +13914 2 103.34411912087603 -248.56053613271223 130.3994 0.1144 13913 +13915 2 102.45442866876125 -249.05420329387061 131.3665 0.1144 13914 +13916 2 101.4285922353767 -249.97374075229294 132.33 0.1144 13915 +13917 2 100.40284960705462 -249.63618800866186 133.2968 0.1144 13916 +13918 2 99.37554146763199 -249.63765362352973 134.2611 0.1144 13917 +13919 2 98.34729620686154 -250.8056834198548 135.2154 0.1144 13918 +13920 2 97.32931843950712 -250.90866709153312 136.1371 0.1144 13919 +13921 2 96.31507813628457 -251.37022468826365 137.0298 0.1144 13920 +13922 2 95.30107229837013 -251.86218857784115 137.9238 0.1144 13921 +13923 2 94.21538994479265 -251.43618489733683 138.7193 0.1144 13922 +13924 2 93.10747435271304 -251.61979772382466 139.4117 0.1144 13923 +13925 2 91.99172032591558 -252.03471116665042 140.019 0.1144 13924 +13926 2 91.05168340331376 -252.55696049183507 140.9912 0.1144 13925 +13927 2 90.39101905630758 -253.3130340769913 143.0332 0.1144 13926 +13928 2 92.63716886208195 -331.17351784740146 69.554 0.1144 13803 +13929 2 91.58352382043594 -332.064461324858 68.9296 0.1144 13928 +13930 2 90.84543149601471 -330.77308374288066 68.7431 0.1144 13929 +13931 2 90.40539812659314 -329.3889256867334 68.6381 0.1144 13930 +13932 2 90.11983800335123 -327.95817278764684 68.5692 0.1144 13931 +13933 2 89.90316597386152 -326.55209953198175 68.5353 0.1144 13932 +13934 2 89.7341057261489 -325.1728613887938 68.5353 0.1144 13933 +13935 2 89.42988526721848 -324.2130345232645 68.57 0.1144 13934 +13936 2 89.17797002178386 -323.3530369389311 68.6263 0.1144 13935 +13937 2 88.92511765500149 -322.48641461965127 68.7033 0.1144 13936 +13938 2 88.5644167457024 -321.123483121927 68.8041 0.1144 13937 +13939 2 88.07728974200155 -319.6403274049171 68.9542 0.1144 13938 +13940 2 87.59346414620138 -318.43637121301714 69.1972 0.1144 13939 +13941 2 86.84108795278753 -318.5719972029724 69.5131 0.1144 13940 +13942 2 85.87659127657741 -317.2423700139145 69.8642 0.1144 13941 +13943 2 84.85354108652659 -316.03502178963805 70.173 0.1144 13942 +13944 2 83.81250339667668 -316.2796257047905 70.4001 0.1144 13943 +13945 2 82.88318215737951 -315.26611703903484 70.5488 0.1144 13944 +13946 2 81.8705459157085 -315.1155056820905 70.6303 0.1144 13945 +13947 2 80.77590279300885 -314.7540280648924 70.6656 0.1144 13946 +13948 2 79.92925845369969 -315.03826718629045 70.6754 0.1144 13947 +13949 2 93.53838375249047 -349.5332221198442 50.0984 0.1144 13777 +13950 2 93.80473214451867 -348.4623568017808 50.1626 0.1144 13949 +13951 2 93.86641037642701 -347.21443064546736 50.3098 0.1144 13950 +13952 2 94.09226503207987 -346.7004873249543 50.421 0.1144 13951 +13953 2 94.77983539756855 -344.55176086728625 50.6302 0.1144 13952 +13954 2 95.84110945802958 -344.8490402037618 50.7937 0.1144 13953 +13955 2 96.89547428544435 -345.27095452847703 50.888 0.1144 13954 +13956 2 97.81508304813434 -343.83174169063193 51.0003 0.1144 13955 +13957 2 98.77388162271534 -343.27582423572034 51.1832 0.1144 13956 +13958 2 99.87170971360146 -342.20734082752205 51.394 0.1144 13957 +13959 2 100.87592898660056 -341.94110642840144 51.6314 0.1144 13958 +13960 2 101.65399808930896 -341.5558432285977 51.8328 0.1144 13959 +13961 2 102.09403838923902 -340.6562822861866 51.9744 0.1144 13960 +13962 2 102.34127395215506 -339.5512242762007 52.0542 0.1144 13961 +13963 2 102.59261048565708 -338.2710402163376 52.0848 0.1144 13962 +13964 2 102.787179045133 -336.69219720732764 52.0783 0.1144 13963 +13965 2 102.95907700181381 -335.15108146394994 52.0478 0.1144 13964 +13966 2 103.2655776605746 -333.43498826977634 52.0075 0.1144 13965 +13967 2 103.48136224653679 -332.27247754158253 51.9347 0.1144 13966 +13968 2 103.84766637995246 -331.37010244141436 51.8263 0.1144 13967 +13969 2 104.41878753689977 -330.6538212374717 51.6816 0.1144 13968 +13970 2 105.13419494572689 -328.70224529104394 51.5231 0.1144 13969 +13971 2 105.72897688516642 -327.6062469058101 51.6393 0.1144 13970 +13972 2 106.95858471267468 -327.87378173012485 51.6684 0.1144 13971 +13973 2 108.0195528236652 -328.2358318593978 51.6211 0.1144 13972 +13974 2 109.08333881561697 -328.1387299187579 51.4716 0.1144 13973 +13975 2 110.09306618875863 -328.6026899435588 51.1988 0.1144 13974 +13976 2 110.85688174633303 -329.07370226699237 50.8696 0.1144 13975 +13977 2 111.6447013615416 -330.3605023187922 50.5182 0.1144 13976 +13978 2 112.67761991170777 -331.36579352079843 50.0914 0.1144 13977 +13979 2 113.71885222547358 -329.94363258283647 49.6605 0.1144 13978 +13980 2 114.63280922715963 -329.66627366055394 49.0974 0.1144 13979 +13981 2 115.39917167336235 -328.347486524169 48.3493 0.1144 13980 +13982 2 115.94329910325645 -326.883186745273 47.5168 0.1144 13981 +13983 2 116.02045089716773 -325.72265304114126 46.6497 0.1144 13982 +13984 2 116.7203765402272 -325.1118424525166 45.8553 0.1144 13983 +13985 2 117.11983610543302 -324.2675720849389 45.064 0.1144 13984 +13986 2 117.97465635988374 -324.06057261299424 44.4016 0.1144 13985 +13987 2 118.68994093073094 -322.6166135244811 43.6842 0.1144 13986 +13988 2 119.29841840358685 -321.2625619948318 42.9915 0.1144 13987 +13989 2 119.61673252808862 -320.21524734635346 42.1826 0.1144 13988 +13990 2 119.98878592699415 -319.27101427416125 41.4159 0.1144 13989 +13991 2 120.5769813931285 -317.956414826013 40.7683 0.1144 13990 +13992 2 120.93891726361295 -316.3024558544431 40.1598 0.1144 13991 +13993 2 120.93578406283459 -315.1013591346775 39.4604 0.1144 13992 +13994 2 120.83517552120631 -313.96373005413164 38.57 0.1144 13993 +13995 2 120.89262133233612 -312.677659478678 37.856 0.1144 13994 +13996 2 120.96517211451791 -311.34852188923986 37.3604 0.1144 13995 +13997 2 121.19183786296628 -310.2092218089351 36.8948 0.1144 13996 +13998 2 121.49231404421587 -309.21051059282706 36.4585 0.1144 13997 +13999 2 121.69990219963566 -308.11724349373526 36.1628 0.1144 13998 +14000 2 122.06259239943589 -307.18094877841133 35.8436 0.1144 13999 +14001 2 122.62894585837768 -306.3225877535329 35.4774 0.1144 14000 +14002 2 123.3805842538003 -305.7221454587082 35.1383 0.1144 14001 +14003 2 123.91749001962984 -304.17377827096686 34.865 0.1144 14002 +14004 2 124.70990425344488 -303.1057701812703 34.6567 0.1144 14003 +14005 2 125.38703604728141 -302.5619623511874 34.4229 0.1144 14004 +14006 2 126.07896477311165 -300.6158711689604 34.2364 0.1144 14005 +14007 2 126.60022408749603 -299.3998803051058 34.0861 0.1144 14006 +14008 2 127.23207963727972 -298.777954692344 33.8887 0.1144 14007 +14009 2 128.0988300869813 -298.5575525786975 33.7156 0.1144 14008 +14010 2 128.76932234916325 -297.8574446557895 33.565 0.1144 14009 +14011 2 129.22842552143936 -295.92948088766525 33.3886 0.1144 14010 +14012 2 129.81968492327948 -294.6259861674122 33.241 0.1144 14011 +14013 2 130.473999250909 -294.0394962584644 33.1226 0.1144 14012 +14014 2 130.40202111213816 -292.74878412488295 33.0408 0.1144 14013 +14015 2 130.49995936355936 -291.56472685022567 32.9666 0.1144 14014 +14016 2 131.09001435170657 -290.40255315993085 32.8994 0.1144 14015 +14017 2 131.88095618694692 -288.96584346198136 32.8238 0.1144 14016 +14018 2 132.5621006569366 -288.07803651466077 32.699 0.1144 14017 +14019 2 132.97882173300644 -287.1945241484635 32.513 0.1144 14018 +14020 2 133.36725809040723 -286.2808257771271 32.3288 0.1144 14019 +14021 2 133.4005054327713 -285.05012879104305 32.2014 0.1144 14020 +14022 2 133.4014553803132 -283.7977333597644 32.1364 0.1144 14021 +14023 2 133.35776436925792 -282.5147414781123 32.0698 0.1144 14022 +14024 2 133.15249095721558 -281.14898387075806 32.0191 0.1144 14023 +14025 2 133.1394020961992 -279.89240092577955 31.9799 0.1144 14024 +14026 2 133.07815825650272 -278.6412781454817 31.9435 0.1144 14025 +14027 2 132.71941678274902 -277.2106447859948 31.9634 0.1144 14026 +14028 2 132.4452724066837 -275.88842069337386 31.9707 0.1144 14027 +14029 2 132.67878881919933 -274.7777423388234 31.7268 0.1144 14028 +14030 2 132.68304707034483 -273.5744037947989 31.4031 0.1144 14029 +14031 2 132.40632037961092 -272.2842726813642 31.1212 0.1144 14030 +14032 2 132.4070037273442 -271.0801812825006 30.8286 0.1144 14031 +14033 2 132.76326932202238 -270.03512545564246 30.6144 0.1144 14032 +14034 2 132.9812485013746 -269.0020684098537 30.6415 0.1144 14033 +14035 2 133.2122301469414 -267.9617990832167 30.8266 0.1144 14034 +14036 2 133.76682630007468 -267.24489538855465 30.9019 0.1144 14035 +14037 2 134.3383413814667 -266.10031000352825 30.9355 0.1144 14036 +14038 2 134.60652567852375 -264.67035266194745 31.0293 0.1144 14037 +14039 2 134.69105351113956 -263.37477591082865 31.1777 0.1144 14038 +14040 2 135.09615553260002 -262.16042329041693 31.4426 0.1144 14039 +14041 2 135.76677752846462 -261.08329835743183 31.771 0.1144 14040 +14042 2 135.70959942327062 -259.8293752345834 32.1678 0.1144 14041 +14043 2 135.52067201713 -258.6153905220346 32.4887 0.1144 14042 +14044 2 135.8531892274196 -257.5337079212048 32.7662 0.1144 14043 +14045 2 135.89423907588142 -256.3346804868589 33.1173 0.1144 14044 +14046 2 135.6572090568734 -254.98083661795079 33.3892 0.1144 14045 +14047 2 135.13952985989977 -254.05504621660953 33.5972 0.1144 14046 +14048 2 134.98599933412243 -253.01486565874325 33.7588 0.1144 14047 +14049 2 135.8421414243126 -252.03444602738824 33.9128 0.1144 14048 +14050 2 136.56150093971533 -250.92993622793006 34.1183 0.1144 14049 +14051 2 136.57933698847893 -249.69069869114736 34.2843 0.1144 14050 +14052 2 136.51230313657936 -248.51530000715996 34.3871 0.1144 14051 +14053 2 136.71356049193955 -247.16853448072817 34.4336 0.1144 14052 +14054 2 136.85694236622626 -245.91195298137956 34.4067 0.1144 14053 +14055 2 136.87470484123963 -244.7603332623134 34.2642 0.1144 14054 +14056 2 136.50001197856548 -243.65296703916707 34.0668 0.1144 14055 +14057 2 136.52054266186246 -242.48672006852962 33.9111 0.1144 14056 +14058 2 137.19718672619177 -241.70599989860997 33.81 0.1144 14057 +14059 2 137.75028273820993 -241.07930713308622 33.7663 0.1144 14058 +14060 2 137.76009894529687 -239.86559727942918 33.7464 0.1144 14059 +14061 2 137.7205971992605 -238.63284537910386 33.726 0.1144 14060 +14062 2 137.9500126411901 -237.59004266150453 33.717 0.1144 14061 +14063 2 138.03730798955297 -236.4525840701424 33.7128 0.1144 14062 +14064 2 138.05135179932546 -235.2340976397207 33.7148 0.1144 14063 +14065 2 138.09445178681196 -234.0420423311893 33.7254 0.1144 14064 +14066 2 138.11063403004204 -232.83034569501018 33.7484 0.1144 14065 +14067 2 138.25865145960518 -231.5707036667723 33.7837 0.1144 14066 +14068 2 138.51782883687156 -230.19111870054826 33.8456 0.1144 14067 +14069 2 138.75312258543715 -228.8128268055624 33.9324 0.1144 14068 +14070 2 138.86963908128018 -227.61903177799928 34.015 0.1144 14069 +14071 2 138.9421399066958 -226.44791029631756 34.0774 0.1144 14070 +14072 2 139.09603564289483 -225.2940026532103 34.1166 0.1144 14071 +14073 2 138.97870837885762 -224.0610436544011 34.1149 0.1144 14072 +14074 2 138.66001374767447 -222.80400191759753 34.0827 0.1144 14073 +14075 2 138.53728970334225 -221.66821935628752 34.0701 0.1144 14074 +14076 2 138.5524496323748 -220.42214087556215 34.0978 0.1144 14075 +14077 2 138.61207152209224 -219.14467871465996 34.1639 0.1144 14076 +14078 2 138.7702503283727 -217.9221048760652 34.272 0.1144 14077 +14079 2 138.79761936410083 -216.66859120513797 34.3885 0.1144 14078 +14080 2 138.64860596526503 -215.55373392112074 34.4702 0.1144 14079 +14081 2 138.44565308617567 -214.4986893787024 34.5052 0.1144 14080 +14082 2 138.36475632204707 -213.3340916178191 34.4826 0.1144 14081 +14083 2 138.48310562133588 -212.01564468352007 34.3932 0.1144 14082 +14084 2 138.6880176570246 -210.63158302945368 34.2499 0.1144 14083 +14085 2 138.91439588181547 -209.39939193947538 34.0844 0.1144 14084 +14086 2 139.18685704578775 -208.1239345114958 33.9433 0.1144 14085 +14087 2 139.4849299102811 -206.85135972106013 33.847 0.1144 14086 +14088 2 139.64889321813507 -205.6807030680721 33.7966 0.1144 14087 +14089 2 139.62935002654262 -204.46398513892592 33.7856 0.1144 14088 +14090 2 139.7284926916568 -203.327251708341 33.8173 0.1144 14089 +14091 2 139.94636885589344 -202.17482300924172 33.8836 0.1144 14090 +14092 2 140.1872767203329 -200.78784060052033 33.971 0.1144 14091 +14093 2 140.27243294270153 -199.45596870768662 34.0631 0.1144 14092 +14094 2 140.1376818911691 -198.3597964379657 34.1457 0.1144 14093 +14095 2 139.88571427992179 -197.42085546400423 34.1762 0.1144 14094 +14096 2 139.75385978528246 -196.20241814116645 34.2073 0.1144 14095 +14097 2 139.84787916561302 -194.98867337740592 34.288 0.1144 14096 +14098 2 140.33073382386073 -193.39585218399037 34.4154 0.1144 14097 +14099 2 140.91156145505528 -192.21144412897593 34.568 0.1144 14098 +14100 2 141.30244807909168 -191.02886922952632 34.6864 0.1144 14099 +14101 2 141.69948030210924 -190.1074007503043 34.8177 0.1144 14100 +14102 2 142.15996688599054 -189.3054090752366 35.0048 0.1144 14101 +14103 2 142.65604986354822 -188.48064593811034 35.245 0.1144 14102 +14104 2 143.48376657482373 -186.6086379446895 35.5085 0.1144 14103 +14105 2 144.40328153245127 -186.37152560674258 35.7806 0.1144 14104 +14106 2 145.2817533593412 -186.17273494251356 36.0704 0.1144 14105 +14107 2 145.21816847129082 -184.99839041821434 36.4316 0.1144 14106 +14108 2 146.29526006143317 -184.58260134223116 36.7758 0.1144 14107 +14109 2 147.40376669990923 -184.06502718371843 37.1134 0.1144 14108 +14110 2 148.26592534793437 -183.5884804070359 37.485 0.1144 14109 +14111 2 149.1222440269903 -183.07189122889196 37.8717 0.1144 14110 +14112 2 149.48560104319944 -182.399650010699 38.0736 0.1144 14111 +14113 2 150.18015352294793 -181.07155373723475 38.4129 0.1144 14112 +14114 2 150.87412997875643 -180.57586132581736 38.7041 0.1144 14113 +14115 2 151.5700658701102 -179.8034289226256 38.96 0.1144 14114 +14116 2 152.26724761440664 -179.0641326214447 39.1779 0.1144 14115 +14117 2 153.0239210001799 -177.41827403583085 39.3288 0.1144 14116 +14118 2 153.84627926882712 -176.6411137510068 39.3926 0.1144 14117 +14119 2 154.6867749075721 -176.331104508809 39.3834 0.1144 14118 +14120 2 155.52847496001 -175.74461771798047 39.326 0.1144 14119 +14121 2 156.19224559927068 -173.77255123427426 39.2938 0.1144 14120 +14122 2 156.6103531885289 -172.94032969031025 39.345 0.1144 14121 +14123 2 157.03023811383696 -172.09889042362897 39.424 0.1144 14122 +14124 2 157.5107746481782 -171.3324068390545 39.4836 0.1144 14123 +14125 2 158.0031591918073 -170.57506825545306 39.5195 0.1144 14124 +14126 2 158.34333514636597 -169.66636445834087 39.5492 0.1144 14125 +14127 2 158.7703582593988 -168.14148616925112 39.6001 0.1144 14126 +14128 2 159.32748987201742 -166.39968967561256 39.6875 0.1144 14127 +14129 2 159.623832255644 -165.46327682869725 39.8138 0.1144 14128 +14130 2 159.53461001982689 -164.24342061212622 39.9627 0.1144 14129 +14131 2 159.31468033603647 -162.95042052554356 40.1215 0.1144 14130 +14132 2 159.08249228132075 -161.75901514337158 40.2816 0.1144 14131 +14133 2 158.86443684022584 -160.88668184978505 40.4275 0.1144 14132 +14134 2 158.65955735262816 -160.0291949811311 40.5684 0.1144 14133 +14135 2 158.4647540488981 -159.14377987159466 40.7198 0.1144 14134 +14136 2 158.2711106180281 -158.16159203564482 40.8859 0.1144 14135 +14137 2 158.07884277378344 -156.94951994469142 41.0642 0.1144 14136 +14138 2 157.88577536685358 -155.70243649277995 41.251 0.1144 14137 +14139 2 157.69350752260894 -154.42566042509043 41.4434 0.1144 14138 +14140 2 157.50137723702682 -153.15256386070962 41.636 0.1144 14139 +14141 2 157.3081722714344 -151.87679531552695 41.8253 0.1144 14140 +14142 2 157.37020609012077 -150.75536765756496 42.0059 0.1144 14141 +14143 2 157.75472357643093 -149.8310877214315 42.1697 0.1144 14142 +14144 2 158.23926727629572 -148.91958946290814 42.3212 0.1144 14143 +14145 2 158.73285623361778 -146.96968401114563 42.4684 0.1144 14144 +14146 2 159.2259019940368 -145.84601635931244 42.6208 0.1144 14145 +14147 2 159.71789261322124 -145.09773834297226 42.784 0.1144 14146 +14148 2 160.21896131690005 -143.899290896233 42.9682 0.1144 14147 +14149 2 160.79864000179742 -141.99696954689495 43.2247 0.1144 14148 +14150 2 161.41120062297355 -141.39782979368672 43.5501 0.1144 14149 +14151 2 162.0271071928833 -140.80739839735685 43.9074 0.1144 14150 +14152 2 162.64287620413066 -140.2189723384894 44.2618 0.1144 14151 +14153 2 163.25820675010033 -139.27465699144648 44.5866 0.1144 14152 +14154 2 163.87638148715035 -137.31248430870372 44.8608 0.1144 14153 +14155 2 164.81845823773926 -137.26800860575915 44.8356 0.1144 14154 +14156 2 165.74847754545243 -137.4168371109746 44.3638 0.1144 14155 +14157 2 166.30600618409886 -136.610152970146 44.0765 0.1144 14156 +14158 2 166.8556056845482 -134.5318412895454 43.8726 0.1144 14157 +14159 2 167.20158947357564 -133.49383350839935 43.8024 0.1144 14158 +14160 2 167.26597665225205 -132.36137283741 43.9396 0.1144 14159 +14161 2 167.4821606732886 -131.35901969734613 44.1907 0.1144 14160 +14162 2 167.7343928888886 -130.38562902092673 44.3775 0.1144 14161 +14163 2 168.02716036910294 -129.44522035256287 44.3971 0.1144 14162 +14164 2 168.47552614072163 -128.606007926821 44.3299 0.1144 14163 +14165 2 169.23572516567737 -128.19038384687929 44.3153 0.1144 14164 +14166 2 170.1100046259653 -126.37719213162984 44.4133 0.1144 14165 +14167 2 170.97020624749166 -126.15096061970782 44.6163 0.1144 14166 +14168 2 171.82523221842177 -125.87114285725832 44.905 0.1144 14167 +14169 2 172.67937343381686 -124.85110946233551 45.2432 0.1144 14168 +14170 2 173.40231605639656 -123.53957882250378 45.54 0.1144 14169 +14171 2 173.64568580657118 -122.57288894622431 45.5753 0.1144 14170 +14172 2 173.8074223865346 -121.5253826264645 45.5297 0.1144 14171 +14173 2 174.11525409108796 -120.60229554068947 45.7579 0.1144 14172 +14174 2 174.40584169859494 -119.68328315211048 46.0496 0.1144 14173 +14175 2 174.4768324803058 -118.59122308462112 46.3215 0.1144 14174 +14176 2 174.4751562648829 -117.45702227298149 46.6567 0.1144 14175 +14177 2 174.63671694851718 -116.46547626132393 47.0714 0.1144 14176 +14178 2 174.8597663543036 -115.56634045229598 47.5132 0.1144 14177 +14179 2 175.17597658889468 -114.72057932347928 47.9548 0.1144 14178 +14180 2 175.55153711218048 -113.03986390608864 48.3988 0.1144 14179 +14181 2 175.89310268151047 -111.64006799276213 48.8373 0.1144 14180 +14182 2 176.09628423633237 -110.73036301529345 49.2422 0.1144 14181 +14183 2 176.17520105465735 -109.73109688813373 49.5984 0.1144 14182 +14184 2 176.3211332038084 -108.77828606195587 49.91 0.1144 14183 +14185 2 176.59664408594796 -107.90768624484228 50.1861 0.1144 14184 +14186 2 176.88452274668688 -107.04382640398697 50.4375 0.1144 14185 +14187 2 177.07605640337437 -106.10898470804655 50.6766 0.1144 14186 +14188 2 177.19469410824973 -105.12525482575211 50.9118 0.1144 14187 +14189 2 177.30569339486442 -104.13514960626443 51.1476 0.1144 14188 +14190 2 177.41694826002862 -103.14460756151605 51.3856 0.1144 14189 +14191 2 177.52823595222975 -102.15294812262333 51.6258 0.1144 14190 +14192 2 177.63989645563447 -101.1808306831086 51.8675 0.1144 14191 +14193 2 177.75081054939938 -100.02578203634597 52.1094 0.1144 14192 +14194 2 177.86180983601417 -98.73164605130931 52.3513 0.1144 14193 +14195 2 177.9726715639664 -97.42939402086486 52.5935 0.1144 14194 +14196 2 178.0838412362807 -96.14667123720453 52.8368 0.1144 14195 +14197 2 178.1906543594596 -94.92110071926977 53.0813 0.1144 14196 +14198 2 178.27194486378315 -93.92455545673518 53.3215 0.1144 14197 +14199 2 178.32386735721462 -92.9076362936465 53.5584 0.1144 14198 +14200 2 178.38817795525404 -91.89668728491446 53.8112 0.1144 14199 +14201 2 178.47368666281767 -90.89756482862427 54.0943 0.1144 14200 +14202 2 178.56444838884744 -89.9031118969914 54.409 0.1144 14201 +14203 2 178.6832799070139 -88.92338371962052 54.7674 0.1144 14202 +14204 2 178.84791924703654 -87.97202199165677 55.1846 0.1144 14203 +14205 2 179.01864242078221 -87.02615592515966 55.6461 0.1144 14204 +14206 2 179.1654288127815 -86.13591543979366 56.1235 0.1144 14205 +14207 2 179.30246807851665 -85.1681305771356 56.6034 0.1144 14206 +14208 2 179.41194009700126 -84.18655654302695 57.0872 0.1144 14207 +14209 2 179.3757053100149 -83.1439102472477 57.605 0.1144 14208 +14210 2 179.00402373314512 -82.03900616310314 58.1613 0.1144 14209 +14211 2 178.21552007139553 -80.9991296363143 58.6569 0.1144 14210 +14212 2 177.1777266055406 -80.17570829604091 59.0204 0.1144 14211 +14213 2 176.0578241551336 -80.69911671607338 59.2651 0.1144 14212 +14214 2 174.9338142292008 -80.40228325988622 59.4222 0.1144 14213 +14215 2 173.82445866911365 -80.28314776171608 59.5288 0.1144 14214 +14216 2 172.78368805882462 -81.23909197356906 59.5885 0.1144 14215 +14217 2 171.87581238711869 -81.48603430180516 59.5826 0.1144 14216 +14218 2 171.05854846503394 -81.86855587802006 59.5384 0.1144 14217 +14219 2 170.13836067151692 -83.09178470433164 59.4737 0.1144 14218 +14220 2 169.0464757541081 -82.98407644578984 59.3922 0.1144 14219 +14221 2 167.91015019633303 -82.52804466341532 59.3261 0.1144 14220 +14222 2 166.76913163297232 -83.07682288577097 59.318 0.1144 14221 +14223 2 165.62822839636323 -82.60167829891553 59.3942 0.1144 14222 +14224 2 164.4952937366026 -82.249480735778 59.5328 0.1144 14223 +14225 2 163.38994224045598 -83.13340833054717 59.7041 0.1144 14224 +14226 2 162.63459250162822 -83.48579076691307 59.9102 0.1144 14225 +14227 2 162.0256982745764 -84.10605806298726 60.1454 0.1144 14226 +14228 2 161.04487210096144 -84.15390313119518 60.5615 0.1144 14227 +14229 2 160.28541679194592 -83.96932084024847 61.1828 0.1144 14228 +14230 2 160.2687189933858 -83.97148006844553 61.5513 0.1144 14229 +14231 2 159.86867209262093 -83.83927013758105 64.0612 0.1144 14230 +14232 2 159.00316049919184 -83.15649037078398 65.4058 0.1144 14231 +14233 2 158.48939196954413 -82.10573206786896 66.2502 0.1144 14232 +14234 2 158.1260655898169 -80.98753145542537 66.9127 0.1144 14233 +14235 2 157.6754745101867 -79.95735432262096 67.3896 0.1144 14234 +14236 2 157.20087316975616 -79.42592088265697 67.7062 0.1144 14235 +14237 2 156.7647063056125 -78.62786985577202 67.8784 0.1144 14236 +14238 2 156.36027493519316 -77.47728576936429 67.9689 0.1144 14237 +14239 2 155.9634374422015 -76.33239554113285 68.0266 0.1144 14238 +14240 2 155.71739189119015 -75.20517387765277 68.0957 0.1144 14239 +14241 2 155.6019623921362 -74.11612114466605 68.1937 0.1144 14240 +14242 2 155.51695215639296 -73.03635420087818 68.3183 0.1144 14241 +14243 2 155.33671993156122 -71.93214612770889 68.4639 0.1144 14242 +14244 2 155.0207631853674 -70.89574497217637 68.6241 0.1144 14243 +14245 2 154.65113735284817 -70.16380299646326 68.7912 0.1144 14244 +14246 2 154.27602713813775 -69.41331645776754 68.9573 0.1144 14245 +14247 2 153.90100211627708 -68.34642865444104 69.1163 0.1144 14246 +14248 2 153.52572151586708 -67.20528359395374 69.2656 0.1144 14247 +14249 2 153.39237809076425 -66.11165000408985 69.3893 0.1144 14248 +14250 2 153.44141263951533 -65.0745130489693 69.4764 0.1144 14249 +14251 2 153.5239896487985 -64.04809418339259 69.5338 0.1144 14250 +14252 2 153.6092193502212 -63.025646785177365 69.5727 0.1144 14251 +14253 2 154.22154230980993 -61.72215085738635 69.6074 0.1144 14252 +14254 2 154.80096231457483 -60.828786989644776 69.631 0.1144 14253 +14255 2 154.89999946083068 -59.819285186177865 69.641 0.1144 14254 +14256 2 154.43501398586423 -58.70704268673194 69.6598 0.1144 14255 +14257 2 154.84755591285344 -58.64780114607778 68.2744 0.1144 14256 +14258 2 155.58412518312602 -58.29923935640846 66.3628 0.1144 14257 +14259 2 156.6093072007272 -57.871492627117995 65.5029 0.1144 14258 +14260 2 157.71952449720573 -58.06515498881692 64.9925 0.1144 14259 +14261 2 158.84952245120047 -58.10283405644712 64.6271 0.1144 14260 +14262 2 159.90948848501256 -57.62395136995531 64.1998 0.1144 14261 +14263 2 160.97281838452028 -57.65385111916313 63.6132 0.1144 14262 +14264 2 162.07102969234367 -57.53829703900436 62.937 0.1144 14263 +14265 2 163.1484711692421 -57.301982069074086 62.116 0.1144 14264 +14266 2 164.09483859012985 -57.49009829034654 60.5788 0.1144 14265 +14267 2 154.18785862543328 -57.97794021865099 69.7724 0.1144 14256 +14268 2 153.810545110424 -57.0825569622015 70.019 0.1144 14267 +14269 2 153.15376390669454 -56.57418298133324 70.3231 0.1144 14268 +14270 2 152.2591013418857 -55.686100400211465 70.6104 0.1144 14269 +14271 2 151.52932157967635 -54.65573915651098 70.856 0.1144 14270 +14272 2 151.20079143309994 -53.555905204339034 71.0175 0.1144 14271 +14273 2 151.03697170282496 -52.45787638953198 71.1054 0.1144 14272 +14274 2 150.8996211121986 -51.37019303293864 71.2082 0.1144 14273 +14275 2 150.94703699680355 -50.33449658029438 71.328 0.1144 14274 +14276 2 151.3175649387851 -49.45396894950483 71.4521 0.1144 14275 +14277 2 151.10688052890933 -48.37922918271757 71.659 0.1144 14276 +14278 2 150.90150159800868 -47.28331322125462 71.8852 0.1144 14277 +14279 2 150.85944096489533 -46.2190567533686 72.109 0.1144 14278 +14280 2 151.04352770226325 -45.230806982399 72.3164 0.1144 14279 +14281 2 152.3016391881482 -45.087069642472684 72.5822 0.1144 14280 +14282 2 153.26743538490442 -44.39804959637789 72.3506 0.1144 14281 +14283 2 154.23310184797813 -43.87392392952251 72.0994 0.1144 14282 +14284 2 155.18501721554344 -43.19946339041036 71.9102 0.1144 14283 +14285 2 155.85382353769143 -42.557711138989404 71.6223 0.1144 14284 +14286 2 156.0944757288853 -41.61598304628528 71.1586 0.1144 14285 +14287 2 155.3521293673 -40.708615097102594 70.6031 0.1144 14286 +14288 2 155.3317607763843 -39.66671082028352 70.152 0.1144 14287 +14289 2 155.26255256240702 -38.60772964810541 69.7287 0.1144 14288 +14290 2 155.05876636431822 -37.56065793989736 68.9926 0.1144 14289 +14291 2 151.03837568633588 -44.98868911146322 72.8031 0.1144 14280 +14292 2 151.01764891020315 -43.99307541485947 73.7531 0.1144 14291 +14293 2 150.99649325763082 -42.94343324223786 74.1782 0.1144 14292 +14294 2 150.9095211772958 -41.88112227240213 74.6861 0.1144 14293 +14295 2 150.79138883994366 -40.8295088107574 75.3584 0.1144 14294 +14296 2 150.2930106800476 -39.80504162810992 76.1858 0.1144 14295 +14297 2 149.29305264739585 -39.214784428370265 77.1039 0.1144 14296 +14298 2 148.23292364441608 -39.72173193227114 77.9192 0.1144 14297 +14299 2 147.19872740287346 -39.54301482911397 79.0891 0.1144 14298 +14300 2 160.13148493717 -83.42767157724357 61.6258 0.1144 14229 +14301 2 159.83315760025442 -82.29139483796712 61.9632 0.1144 14300 +14302 2 159.70046289091295 -81.19481892183649 62.2042 0.1144 14301 +14303 2 159.1959120050207 -80.04218493449254 62.3574 0.1144 14302 +14304 2 158.60849820173036 -78.89865104723584 62.4932 0.1144 14303 +14305 2 157.92501029146098 -77.7824082940116 62.5892 0.1144 14304 +14306 2 157.2058500047185 -77.15091093334267 62.6598 0.1144 14305 +14307 2 156.4861988868857 -76.59787603097536 62.6923 0.1144 14306 +14308 2 155.76641021039038 -75.49265106115993 62.6738 0.1144 14307 +14309 2 155.0472499236479 -74.86103053381109 62.5923 0.1144 14308 +14310 2 154.3289736052076 -74.2860759688967 62.4375 0.1144 14309 +14311 2 154.22154932240812 -74.6951117987242 62.1261 0.1144 14310 +14312 2 153.97986620480407 -75.61312332103104 61.591 0.1144 14311 +14313 2 153.74210746892015 -76.52005489422127 60.9076 0.1144 14312 +14314 2 153.50564385020857 -77.4168290442519 60.1401 0.1144 14313 +14315 2 153.2693068635965 -78.30787399615006 59.3421 0.1144 14314 +14316 2 153.01702089711057 -79.18022376771684 58.522 0.1144 14315 +14317 2 152.70025825556337 -80.003294807289 57.6425 0.1144 14316 +14318 2 152.17644565942783 -81.30478844486765 57.0786 0.1144 14317 +14319 2 151.58295952969723 -82.41483225550738 57.0072 0.1144 14318 +14320 2 151.00987893720463 -83.08552495958945 57.0433 0.1144 14319 +14321 2 150.3582821685559 -83.67152689618129 57.0744 0.1144 14320 +14322 2 149.7871610116086 -84.3316116133922 56.9926 0.1144 14321 +14323 2 148.97231843562332 -85.55918505997374 56.7008 0.1144 14322 +14324 2 148.21941617503552 -84.5593385700393 56.551 0.1144 14323 +14325 2 147.57889809870832 -83.45106676799793 56.6524 0.1144 14324 +14326 2 146.5204329042548 -82.70030037875225 56.856 0.1144 14325 +14327 2 145.3805341595775 -83.2990690420959 57.055 0.1144 14326 +14328 2 144.23863213105875 -82.80441398199541 57.241 0.1144 14327 +14329 2 143.09606888574996 -82.31061640343039 57.3854 0.1144 14328 +14330 2 141.9531445430336 -82.92551297138286 57.4759 0.1144 14329 +14331 2 140.80865468921655 -82.43038587037775 57.528 0.1144 14330 +14332 2 139.6651543225601 -82.09759992963976 57.5621 0.1144 14331 +14333 2 138.5212576224123 -82.57208181993634 57.582 0.1144 14332 +14334 2 137.37982350053642 -82.13984861054607 57.5786 0.1144 14333 +14335 2 136.24147724510198 -82.23549331238173 57.547 0.1144 14334 +14336 2 135.10402977334866 -82.49359036053112 57.4907 0.1144 14335 +14337 2 133.96818063973302 -83.11524382732813 57.4165 0.1144 14336 +14338 2 132.83073316797976 -82.85700880450361 57.3308 0.1144 14337 +14339 2 131.6945229369564 -82.48537715756692 57.2373 0.1144 14338 +14340 2 130.558944197269 -83.24055453342119 57.1346 0.1144 14339 +14341 2 129.42444323917502 -82.87891292719387 57.0268 0.1144 14340 +14342 2 128.2905183050211 -82.51740827701603 56.9293 0.1144 14341 +14343 2 127.16475525786271 -83.33488134020219 56.8744 0.1144 14342 +14344 2 126.08913096411337 -83.19892400122315 56.9234 0.1144 14343 +14345 2 125.0976239405363 -83.29322866023912 57.1245 0.1144 14344 +14346 2 124.15363460958523 -84.59781864797543 57.4588 0.1144 14345 +14347 2 123.21824424583397 -84.77859156386943 57.871 0.1144 14346 +14348 2 122.28544170738084 -84.96149237781857 58.3055 0.1144 14347 +14349 2 121.34974261203467 -86.23022695635079 58.7146 0.1144 14348 +14350 2 120.3106220011814 -85.8331991031935 58.9966 0.1144 14349 +14351 2 119.70132284554634 -84.69740047245885 58.9302 0.1144 14350 +14352 2 118.98003583914203 -83.55083553509387 58.6726 0.1144 14351 +14353 2 118.07441543651368 -83.24508271679305 58.3719 0.1144 14352 +14354 2 117.1585429536886 -82.62091310081273 58.0745 0.1144 14353 +14355 2 116.11919740703877 -81.7341838424334 57.8642 0.1144 14354 +14356 2 115.01200500408473 -81.2972928905363 57.7917 0.1144 14355 +14357 2 113.90187460498788 -81.3655711602577 57.8385 0.1144 14356 +14358 2 112.79388574093164 -80.64553600400873 57.9642 0.1144 14357 +14359 2 111.6862056084704 -80.25164475420108 58.1398 0.1144 14358 +14360 2 110.58080456971237 -80.28182862956706 58.3456 0.1144 14359 +14361 2 109.46053130870044 -80.28673127574048 58.5749 0.1144 14360 +14362 2 108.32946489554666 -80.0801430122263 58.8269 0.1144 14361 +14363 2 107.19915660582828 -79.46376294428059 59.0979 0.1144 14362 +14364 2 106.0708405786923 -79.76286112217501 59.3846 0.1144 14363 +14365 2 104.99459531742897 -79.1300506790189 59.6504 0.1144 14364 +14366 2 103.88998522914352 -78.4254222977058 59.9525 0.1144 14365 +14367 2 102.7877511412068 -78.56350367592417 60.2792 0.1144 14366 +14368 2 101.68452756610961 -78.06084421263468 60.6228 0.1144 14367 +14369 2 100.58166508842012 -77.3409260009481 60.9756 0.1144 14368 +14370 2 99.53933538298094 -77.25559364361855 61.3141 0.1144 14369 +14371 2 98.50132398370681 -76.67993491913829 61.6386 0.1144 14370 +14372 2 97.4633125844326 -75.8235321674848 61.9447 0.1144 14371 +14373 2 96.42378803987054 -75.39235881630644 62.2381 0.1144 14372 +14374 2 97.15470435345838 -74.85602953876482 62.5797 0.1144 14373 +14375 2 98.14166411619203 -74.725016819298 62.9367 0.1144 14374 +14376 2 99.15318034351586 -74.64507252513398 63.1963 0.1144 14375 +14377 2 100.17918546377507 -73.57850788602964 63.4726 0.1144 14376 +14378 2 101.20826683137628 -73.54662374274571 63.8235 0.1144 14377 +14379 2 102.20681893015214 -73.44311003822503 64.2678 0.1144 14378 +14380 2 103.19949272229209 -72.35729863232392 64.8088 0.1144 14379 +14381 2 104.25905991887026 -72.48724886821816 65.4511 0.1144 14380 +14382 2 105.36503589826884 -72.86641806062197 66.1172 0.1144 14381 +14383 2 106.46069442748518 -72.18847029997579 66.8021 0.1144 14382 +14384 2 107.4440679814588 -72.12731015370106 67.475 0.1144 14383 +14385 2 108.33436420065266 -71.85439334835903 68.0896 0.1144 14384 +14386 2 109.20909684690076 -70.57897162560408 68.6482 0.1144 14385 +14387 2 110.1079006372785 -70.29148513122915 69.1351 0.1144 14386 +14388 2 111.0366929086249 -69.14295960367524 69.5372 0.1144 14387 +14389 2 111.97720655715975 -68.84662059357608 69.8625 0.1144 14388 +14390 2 112.92168361761804 -68.59766960729381 70.128 0.1144 14389 +14391 2 113.86326101960023 -67.8682676983049 70.3483 0.1144 14390 +14392 2 114.77997012381411 -67.15031980218228 70.5267 0.1144 14391 +14393 2 115.66513074658812 -66.76963637425163 70.6647 0.1144 14392 +14394 2 116.54056225475625 -66.43679132205133 70.7728 0.1144 14393 +14395 2 117.41640722614477 -65.1538770997223 70.8596 0.1144 14394 +14396 2 118.29282822147337 -64.79848147050842 70.931 0.1144 14395 +14397 2 119.16919685098924 -64.43753891255508 70.9929 0.1144 14396 +14398 2 120.04570303916765 -63.50146259662784 71.0494 0.1144 14397 +14399 2 120.92212403449628 -62.83655334232766 71.1032 0.1144 14398 +14400 2 121.78935911212193 -62.43776545511069 71.1539 0.1144 14399 +14401 2 122.57276883519285 -61.9338211340754 71.1987 0.1144 14400 +14402 2 123.25773837121062 -60.560247129458226 71.2348 0.1144 14401 +14403 2 123.85903251766857 -59.80621850892143 71.2639 0.1144 14402 +14404 2 124.33136711083776 -58.98954404418922 71.2908 0.1144 14403 +14405 2 124.71182196422853 -58.10562822395401 71.3199 0.1144 14404 +14406 2 125.07316398850713 -57.21235767154632 71.3558 0.1144 14405 +14407 2 125.35247650908326 -56.27642470588924 71.4031 0.1144 14406 +14408 2 125.20450875734039 -55.228611455805904 71.4669 0.1144 14407 +14409 2 125.14196980047163 -54.133591010489184 71.5722 0.1144 14408 +14410 2 125.56953370136097 -52.780052884667285 71.727 0.1144 14409 +14411 2 126.13914171302045 -51.84679569047839 71.9169 0.1144 14410 +14412 2 126.71863829842246 -51.106559521805075 72.1213 0.1144 14411 +14413 2 127.2978675914793 -50.374766078551104 72.3223 0.1144 14412 +14414 2 127.87830129822908 -49.63963798240632 72.5077 0.1144 14413 +14415 2 128.31748115214472 -48.34248645384909 72.6258 0.1144 14414 +14416 2 128.22461043916528 -47.26648144886739 72.5528 0.1144 14415 +14417 2 128.28000472619712 -46.095180905498005 72.3593 0.1144 14416 +14418 2 128.92210994713116 -45.31567562910468 72.2714 0.1144 14417 +14419 2 129.4325850056749 -44.51515943237633 72.2921 0.1144 14418 +14420 2 129.56941564273998 -43.49625608688893 72.4164 0.1144 14419 +14421 2 129.7016138261118 -42.46608962443423 72.6247 0.1144 14420 +14422 2 129.83350327788867 -41.43554180065043 72.8938 0.1144 14421 +14423 2 129.96303696062898 -40.42304450683922 73.4798 0.1144 14422 +14424 2 95.79845890837254 -75.58794769576564 62.5887 0.1144 14373 +14425 2 94.73511410449666 -74.90223362177696 63.364 0.1144 14424 +14426 2 93.65911390366773 -74.21067737306548 63.9828 0.1144 14425 +14427 2 92.564215800259 -74.5213060826985 64.4221 0.1144 14426 +14428 2 91.47404705718921 -73.8223249009368 64.9228 0.1144 14427 +14429 2 90.38704216335765 -73.1296907829852 65.4612 0.1144 14428 +14430 2 89.30003726952603 -73.43717045392079 66.0167 0.1144 14429 +14431 2 88.21396949704223 -72.74290039673585 66.5703 0.1144 14430 +14432 2 87.1269122373979 -72.05565942550734 67.1115 0.1144 14431 +14433 2 86.04057407098583 -72.34295056109809 67.636 0.1144 14432 +14434 2 84.95704106545088 -71.63212387971154 68.1386 0.1144 14433 +14435 2 83.88396034596241 -71.86162401720759 68.6036 0.1144 14434 +14436 2 82.82765340783084 -71.06576589905615 69.0144 0.1144 14435 +14437 2 81.7775773562264 -70.26319469576178 69.365 0.1144 14436 +14438 2 80.72616715724635 -70.40111067685181 69.6545 0.1144 14437 +14439 2 79.67159310902801 -69.58966243864195 69.8807 0.1144 14438 +14440 2 78.61608193946202 -68.77790585721658 70.0414 0.1144 14439 +14441 2 77.54063003771773 -68.82111298936903 70.1151 0.1144 14440 +14442 2 76.42103581576151 -68.35875170437454 70.0218 0.1144 14441 +14443 2 75.28385152848199 -67.89952911109738 69.741 0.1144 14442 +14444 2 74.15201948066448 -68.39049412077857 69.3311 0.1144 14443 +14445 2 73.02517315896807 -67.94533548129161 68.8523 0.1144 14444 +14446 2 72.02414707560519 -67.13864756888746 68.4351 0.1144 14445 +14447 2 71.11125634252295 -66.77436971281745 68.1397 0.1144 14446 +14448 2 70.21288362998968 -66.07004858757016 67.9602 0.1144 14447 +14449 2 69.22518787476409 -65.16930666811277 67.8748 0.1144 14448 +14450 2 68.11197992026328 -64.77748028384914 67.8572 0.1144 14449 +14451 2 66.96851478969029 -65.0708902191494 67.8835 0.1144 14450 +14452 2 65.82411563935273 -64.64361035746737 67.9336 0.1144 14451 +14453 2 64.68122963430298 -64.62336873369749 68.005 0.1144 14452 +14454 2 63.54207049825885 -64.60404418030546 68.1055 0.1144 14453 +14455 2 62.419402438007126 -64.0044531584913 68.248 0.1144 14454 +14456 2 61.3035381866396 -63.918495501789415 68.446 0.1144 14455 +14457 2 60.189633370817376 -63.62489675117516 68.7109 0.1144 14456 +14458 2 59.081298130036174 -63.813740696323855 69.0721 0.1144 14457 +14459 2 57.9982651656446 -63.234483455478404 69.704 0.1144 14458 +14460 2 56.94494177077698 -62.61095817464696 70.5908 0.1144 14459 +14461 2 55.913550394044734 -62.67207972428789 71.6288 0.1144 14460 +14462 2 54.895914096333 -62.26316215123202 72.7527 0.1144 14461 +14463 2 53.880471699474725 -61.670412523937 73.8931 0.1144 14462 +14464 2 52.87107498806512 -61.387797019308614 74.9759 0.1144 14463 +14465 2 52.00051398537636 -60.95787728858292 75.8184 0.1144 14464 +14466 2 51.19404014294926 -59.94386530502289 76.4859 0.1144 14465 +14467 2 50.41024310648345 -58.96577338275317 77.4063 0.1144 14466 +14468 2 154.21525126039631 -74.12376508093337 62.6878 0.1144 14310 +14469 2 153.5433802147454 -73.16378319998587 63.9453 0.1144 14468 +14470 2 152.79291340541442 -72.09201068801605 64.4098 0.1144 14469 +14471 2 152.0509159242968 -71.0239250153822 64.6489 0.1144 14470 +14472 2 151.32201702880664 -70.58901859660824 64.8642 0.1144 14471 +14473 2 150.42502772787861 -69.90181352004703 65.0577 0.1144 14472 +14474 2 149.52469557980007 -68.91279432690159 65.221 0.1144 14473 +14475 2 148.72209065169733 -67.89511567089336 65.3414 0.1144 14474 +14476 2 148.2231624938916 -66.89726810621754 65.3951 0.1144 14475 +14477 2 147.61785819214398 -66.4615980298051 65.3932 0.1144 14476 +14478 2 146.91514873762492 -65.45599415858972 65.347 0.1144 14477 +14479 2 146.19051578248704 -64.37473292696349 65.2736 0.1144 14478 +14480 2 145.42870040717108 -63.32659570362949 65.1599 0.1144 14479 +14481 2 144.61552304817712 -62.473152887804574 64.9004 0.1144 14480 +14482 2 143.88297877710767 -62.10120954452675 64.491 0.1144 14481 +14483 2 143.41809011409052 -60.99948337068482 63.9873 0.1144 14482 +14484 2 143.27154170257302 -59.932246488827175 63.3884 0.1144 14483 +14485 2 143.36878109207424 -58.94170756983097 62.6954 0.1144 14484 +14486 2 143.52954290555985 -57.97908947206832 62.018 0.1144 14485 +14487 2 143.84323249604446 -56.79871171574148 61.4723 0.1144 14486 +14488 2 144.30162750165124 -55.566600545239694 61.0308 0.1144 14487 +14489 2 144.71573713543899 -54.76238171208148 60.5018 0.1144 14488 +14490 2 144.47594640169044 -53.708248504378 59.9245 0.1144 14489 +14491 2 144.26525337960194 -52.6337382813224 59.4205 0.1144 14490 +14492 2 144.25804273052537 -51.59814797748698 58.8986 0.1144 14491 +14493 2 144.35319924866104 -50.596778618344246 58.3596 0.1144 14492 +14494 2 144.48425468890196 -49.60522255913151 57.822 0.1144 14493 +14495 2 144.62872054794826 -48.61577212009728 57.302 0.1144 14494 +14496 2 144.78611849573826 -47.630565309399245 56.7988 0.1144 14495 +14497 2 144.9501200465626 -46.64373029666948 56.3119 0.1144 14496 +14498 2 145.1155698758335 -45.65487255532366 55.8446 0.1144 14497 +14499 2 145.28107285815003 -44.662730459765356 55.3986 0.1144 14498 +14500 2 145.4390960941097 -43.6645731875608 54.9749 0.1144 14499 +14501 2 145.49846860844397 -42.550796924897696 54.5754 0.1144 14500 +14502 2 145.36432872223904 -41.498665080477586 54.2357 0.1144 14501 +14503 2 145.2848184712988 -40.38027775371685 53.9787 0.1144 14502 +14504 2 145.51375789751694 -39.17436798126063 53.7832 0.1144 14503 +14505 2 146.31588461935294 -38.51028049182485 53.599 0.1144 14504 +14506 2 147.38077711777058 -38.404192861465624 53.4652 0.1144 14505 +14507 2 148.03103260716478 -39.29200548735388 53.2868 0.1144 14506 +14508 2 148.91638236836104 -182.35448833745772 37.5547 0.1144 14111 +14509 2 148.53684823393115 -181.1091134236781 36.8264 0.1144 14508 +14510 2 148.15476702091632 -179.97846585910963 36.4333 0.1144 14509 +14511 2 147.80003271268606 -178.83859152836826 36.1424 0.1144 14510 +14512 2 147.46143189287173 -177.48919446906666 35.9744 0.1144 14511 +14513 2 147.12424731169966 -176.14463687450097 35.8798 0.1144 14512 +14514 2 146.80234739202848 -174.78874216067234 35.6899 0.1144 14513 +14515 2 146.51274486717955 -173.67423394062286 35.2696 0.1144 14514 +14516 2 146.2480951404121 -172.87020021386036 34.6164 0.1144 14515 +14517 2 145.99200604317778 -172.16225116764218 33.794 0.1144 14516 +14518 2 145.73961848145518 -171.2539140294384 32.8762 0.1144 14517 +14519 2 145.48741301922806 -170.12519866889264 31.9332 0.1144 14518 +14520 2 145.24754019421283 -168.90613476989577 31.0274 0.1144 14519 +14521 2 145.11190577221862 -167.69122423250474 30.2358 0.1144 14520 +14522 2 145.16980338423537 -166.55126939321224 29.6363 0.1144 14521 +14523 2 145.30458388227572 -165.46320213211942 29.2146 0.1144 14522 +14524 2 145.22758857542001 -164.2928441231917 28.8859 0.1144 14523 +14525 2 144.45510116943206 -162.99993759037022 28.5415 0.1144 14524 +14526 2 143.50308330130926 -161.76526014416953 28.2038 0.1144 14525 +14527 2 143.24151703133822 -160.66664587995166 27.9936 0.1144 14526 +14528 2 143.19979776746442 -159.50931335507514 27.9238 0.1144 14527 +14529 2 142.7221623114783 -158.9384296708405 27.8492 0.1144 14528 +14530 2 142.14033840923742 -158.33991050728432 27.7402 0.1144 14529 +14531 2 141.56096477363224 -157.11185921472577 27.5957 0.1144 14530 +14532 2 141.01494608313038 -155.73170965479017 27.4024 0.1144 14531 +14533 2 140.60822932114536 -154.37097040867343 27.1413 0.1144 14532 +14534 2 140.36915157215918 -153.0683890689279 26.8453 0.1144 14533 +14535 2 140.1914985604129 -151.8292636093284 26.5507 0.1144 14534 +14536 2 139.97486245954332 -150.53041505900785 26.2699 0.1144 14535 +14537 2 139.7163990784702 -149.46798438259407 26.0036 0.1144 14536 +14538 2 139.29315490362464 -149.0493148543729 25.7558 0.1144 14537 +14539 2 138.6425545349599 -148.1470907251388 25.5321 0.1144 14538 +14540 2 137.9340550682378 -146.80551480340398 25.304 0.1144 14539 +14541 2 137.2959663346973 -146.55402215299992 25.0045 0.1144 14540 +14542 2 136.73597833117907 -145.77398405172505 24.6266 0.1144 14541 +14543 2 136.50241848395774 -144.50063778711 24.2597 0.1144 14542 +14544 2 136.4302582456915 -143.28264785070468 23.9311 0.1144 14543 +14545 2 136.35686076669535 -142.067095804047 23.6329 0.1144 14544 +14546 2 136.21524192136647 -140.8112995847185 23.3522 0.1144 14545 +14547 2 135.96600279566286 -139.50580468772867 23.0714 0.1144 14546 +14548 2 135.68080687141173 -138.18787271253834 22.7868 0.1144 14547 +14549 2 135.41272531052425 -136.8749580294893 22.5076 0.1144 14548 +14550 2 135.2736942904935 -135.6259880914059 22.2842 0.1144 14549 +14551 2 135.19632247301087 -134.4018951422808 22.1343 0.1144 14550 +14552 2 135.06036700778554 -133.12685955070603 22.0651 0.1144 14551 +14553 2 134.69040350545026 -131.7869836764802 22.0702 0.1144 14552 +14554 2 134.09471738351698 -130.41237253371216 22.0888 0.1144 14553 +14555 2 133.28524707066424 -130.80351403585092 22.0818 0.1144 14554 +14556 2 132.46757481663957 -129.4849760502413 22.0201 0.1144 14555 +14557 2 131.85729099193708 -128.11673513101064 21.8891 0.1144 14556 +14558 2 131.31560463574624 -126.78313950460694 21.7048 0.1144 14557 +14559 2 130.76433602836119 -125.43481648142581 21.4843 0.1144 14558 +14560 2 130.18972458013195 -125.07443719065554 21.211 0.1144 14559 +14561 2 129.59774550433985 -124.35711575849079 20.8756 0.1144 14560 +14562 2 128.95618729154938 -122.99434416709819 20.4721 0.1144 14561 +14563 2 128.30199081153495 -121.63813859523125 19.9907 0.1144 14562 +14564 2 127.85206405027776 -120.30875436271909 19.4891 0.1144 14563 +14565 2 127.35849123351727 -118.96767370176757 18.9867 0.1144 14564 +14566 2 126.61979895442018 -118.95172672447889 18.434 0.1144 14565 +14567 2 125.61132905332072 -118.2708985665223 17.8602 0.1144 14566 +14568 2 124.66696992946687 -117.04839779647915 17.3734 0.1144 14567 +14569 2 124.3260577867526 -115.86145340935803 16.9236 0.1144 14568 +14570 2 123.61284368037427 -115.04732470583812 16.4969 0.1144 14569 +14571 2 122.68073200088261 -115.11106854803039 15.934 0.1144 14570 +14572 2 121.79817072153891 -114.35145355565122 15.5463 0.1144 14571 +14573 2 121.65382861150032 -113.8649594883638 15.3242 0.1144 14572 +14574 2 121.31989927558246 -112.6722415866347 14.9152 0.1144 14573 +14575 2 120.96899864559309 -111.46652948505752 14.7431 0.1144 14574 +14576 2 120.46989148987514 -110.23874519387701 14.6372 0.1144 14575 +14577 2 119.91452191190412 -109.81028677090384 14.5702 0.1144 14576 +14578 2 119.45207972140288 -109.26422406461002 14.5155 0.1144 14577 +14579 2 118.9135079502206 -108.04028606169294 14.4675 0.1144 14578 +14580 2 118.0995403332907 -106.87169602312021 14.4177 0.1144 14579 +14581 2 117.10831963141916 -105.82119365279938 14.3555 0.1144 14580 +14582 2 116.16707129845426 -106.13897093722547 14.2623 0.1144 14581 +14583 2 115.47843968269665 -104.96776397443014 14.11 0.1144 14582 +14584 2 115.0129219373901 -103.75488574079614 13.9115 0.1144 14583 +14585 2 114.63252976599229 -102.55791468893733 13.7154 0.1144 14584 +14586 2 114.11418384159919 -101.37440230805497 13.5514 0.1144 14585 +14587 2 113.59975678829672 -100.1754604502344 13.4137 0.1144 14586 +14588 2 113.29161745827568 -98.9979767321131 13.3036 0.1144 14587 +14589 2 113.22837274378415 -97.91568976876141 13.2112 0.1144 14588 +14590 2 113.23038954635645 -96.85843701544256 13.0765 0.1144 14589 +14591 2 113.0169172947251 -95.80282694404778 12.8843 0.1144 14590 +14592 2 112.6571120675241 -95.16641247112307 12.6985 0.1144 14591 +14593 2 112.12200977559195 -94.62639132458312 12.5568 0.1144 14592 +14594 2 111.52490431343327 -93.43641254625902 12.4654 0.1144 14593 +14595 2 110.82740333654755 -92.31124184466232 12.3831 0.1144 14594 +14596 2 109.97655582786842 -92.39329823049007 12.338 0.1144 14595 +14597 2 109.12022393699803 -91.28282136870571 12.3896 0.1144 14596 +14598 2 108.64976259735678 -90.10248386675022 12.5196 0.1144 14597 +14599 2 108.35829134044192 -88.93235956585228 12.6879 0.1144 14598 +14600 2 108.01883859212953 -87.75128394100163 12.8556 0.1144 14599 +14601 2 107.6561782472852 -86.57568081995252 13.0176 0.1144 14600 +14602 2 107.36567693875514 -85.47191513930204 13.1734 0.1144 14601 +14603 2 107.15889038142492 -84.33477955705453 13.3263 0.1144 14602 +14604 2 107.13449119739408 -83.26080055110288 13.5128 0.1144 14603 +14605 2 107.09227189237691 -82.1764657893635 13.795 0.1144 14604 +14606 2 106.69834026102765 -81.16570210231691 14.1739 0.1144 14605 +14607 2 106.23113347410401 -80.62895790684556 14.6097 0.1144 14606 +14608 2 105.82562112581203 -79.79385835028286 15.0102 0.1144 14607 +14609 2 105.43186539079193 -78.62081140009715 15.3701 0.1144 14608 +14610 2 105.05129422148181 -77.45478365268615 15.6599 0.1144 14609 +14611 2 104.68088132730603 -76.29093032230213 15.8694 0.1144 14610 +14612 2 104.32240714589747 -75.12798040810065 16.0758 0.1144 14611 +14613 2 103.98232910941542 -73.98245366183518 16.3973 0.1144 14612 +14614 2 103.64876087090519 -72.83973465431025 16.8321 0.1144 14613 +14615 2 103.18623107850775 -71.6941736583277 17.3148 0.1144 14614 +14616 2 102.61233941604726 -70.85393333527898 17.7978 0.1144 14615 +14617 2 102.02753135501703 -70.38751679533583 18.2662 0.1144 14616 +14618 2 101.49826903205414 -69.2550596396325 18.6997 0.1144 14617 +14619 2 101.31126823442182 -68.13892746934945 19.136 0.1144 14618 +14620 2 101.13882680189192 -67.02468534679006 19.5627 0.1144 14619 +14621 2 101.34318984595939 -66.11644992976919 19.863 0.1144 14620 +14622 2 101.60535207455177 -65.1601115979204 20.0833 0.1144 14621 +14623 2 101.86889771474935 -63.820062858808214 20.2391 0.1144 14622 +14624 2 102.13283727939168 -62.443818458114905 20.3496 0.1144 14623 +14625 2 102.39834235513456 -61.44952376308686 20.4316 0.1144 14624 +14626 2 102.76935802662328 -60.57175837019958 20.5441 0.1144 14625 +14627 2 103.21335243372761 -59.729352189075044 20.7076 0.1144 14626 +14628 2 103.65720928216942 -58.88168587442016 20.8811 0.1144 14627 +14629 2 104.10054247248382 -58.03880688862724 21.0563 0.1144 14628 +14630 2 104.50884668084913 -56.877170648219604 21.2131 0.1144 14629 +14631 2 104.8839109571112 -55.520568001559276 21.3394 0.1144 14630 +14632 2 105.2565249667376 -54.649580808286316 21.4423 0.1144 14631 +14633 2 105.62856295242392 -53.74079787898825 21.5365 0.1144 14632 +14634 2 106.00211408339814 -52.8444090156161 21.6373 0.1144 14633 +14635 2 106.35365582836701 -51.94059898818929 21.7672 0.1144 14634 +14636 2 106.63257442449844 -50.986632112233906 21.9758 0.1144 14635 +14637 2 106.90796807398394 -49.852046685981186 22.2458 0.1144 14636 +14638 2 107.18354382296482 -48.53435024968208 22.5565 0.1144 14637 +14639 2 107.45974796169847 -47.4185521401345 22.889 0.1144 14638 +14640 2 107.73914877670754 -46.47055454333499 23.2254 0.1144 14639 +14641 2 108.25248205447772 -45.68410575096705 23.5224 0.1144 14640 +14642 2 108.81205532151932 -44.41637159571071 23.775 0.1144 14641 +14643 2 109.37475961076217 -43.4958076249797 23.9916 0.1144 14642 +14644 2 110.15018782982304 -42.94200433201009 24.1696 0.1144 14643 +14645 2 110.94224888590657 -42.37634076814863 24.3195 0.1144 14644 +14646 2 111.73439513483987 -41.356515650694156 24.452 0.1144 14645 +14647 2 112.52546670376282 -40.70224573340753 24.5775 0.1144 14646 +14648 2 113.31355342135987 -40.090953043326145 24.7013 0.1144 14647 +14649 2 113.9716599879805 -39.39040086134959 24.8145 0.1144 14648 +14650 2 114.62869187459086 -38.33032499257282 24.9319 0.1144 14649 +14651 2 115.28617005145864 -37.44857898523667 25.0672 0.1144 14650 +14652 2 115.94226481672123 -36.736733805255405 25.2333 0.1144 14651 +14653 2 116.5983595819838 -36.05484180552618 25.4415 0.1144 14652 +14654 2 116.05236221807178 -35.69121085108713 23.0764 0.1144 14653 +14655 2 116.86310212464619 -35.19472061154511 22.6366 0.1144 14654 +14656 2 117.92362316385328 -34.584091303034015 22.2182 0.1144 14655 +14657 2 119.03583203037763 -34.690644658503864 21.799 0.1144 14656 +14658 2 120.15027072637551 -34.75223312902631 21.3981 0.1144 14657 +14659 2 121.2678732716117 -34.38610376403687 21.0332 0.1144 14658 +14660 2 121.63885060543373 -33.47608641751859 20.7285 0.1144 14659 +14661 2 121.89892125575165 -32.505982937987376 20.193 0.1144 14660 +14662 2 116.53159962833666 -35.68430924345782 25.6707 0.1144 14653 +14663 2 116.33287504446943 -34.590355654418836 26.1968 0.1144 14662 +14664 2 116.13630292220591 -33.50238138262348 26.7995 0.1144 14663 +14665 2 116.0884318561848 -32.454468742938715 27.5284 0.1144 14664 +14666 2 116.34334398563553 -31.51119074088285 28.2475 0.1144 14665 +14667 2 116.8582403654598 -30.50080381434267 28.7801 0.1144 14666 +14668 2 117.66259641362524 -29.669466460579937 29.213 0.1144 14667 +14669 2 118.4766261090009 -29.14034546713789 29.552 0.1144 14668 +14670 2 119.29457467546709 -28.55867186741271 29.8178 0.1144 14669 +14671 2 120.16047870730031 -27.67978686604463 30.0191 0.1144 14670 +14672 2 121.14912441006783 -27.354646574999787 30.1512 0.1144 14671 +14673 2 122.05161501527456 -26.869517028460546 30.2448 0.1144 14672 +14674 2 122.95561876576915 -26.184833009079135 30.3052 0.1144 14673 +14675 2 123.85967488207643 -25.583386343876516 30.3447 0.1144 14674 +14676 2 124.76318780148077 -25.09562242907963 30.3755 0.1144 14675 +14677 2 125.66719155197538 -24.533430941053716 30.4102 0.1144 14676 +14678 2 126.57053408568004 -23.824451751420224 30.459 0.1144 14677 +14679 2 127.4724689929551 -23.35748470590701 30.5256 0.1144 14678 +14680 2 128.37467197980826 -22.8623006300866 30.6144 0.1144 14679 +14681 2 129.00808361785516 -22.623689619698368 30.7406 0.1144 14680 +14682 2 130.13764269812435 -22.671399390011604 30.9397 0.1144 14681 +14683 2 131.19142429214452 -22.148888377089804 31.1928 0.1144 14682 +14684 2 132.14859809410945 -21.776876475088617 31.4958 0.1144 14683 +14685 2 133.09766065838167 -21.354836860494533 31.8352 0.1144 14684 +14686 2 134.0456485426436 -20.696188027840417 32.1978 0.1144 14685 +14687 2 134.99317763561947 -20.268025119582905 32.5699 0.1144 14686 +14688 2 135.76973049145693 -19.642058138686263 32.9812 0.1144 14687 +14689 2 136.52578169064358 -18.947357029229416 33.411 0.1144 14688 +14690 2 137.3108803606353 -18.116679482179062 33.8268 0.1144 14689 +14691 2 138.18275719670353 -17.598432754477752 34.1776 0.1144 14690 +14692 2 139.07798298208598 -17.095371973078105 34.4719 0.1144 14691 +14693 2 140.02027396667074 -16.444803760331435 34.7175 0.1144 14692 +14694 2 140.93267657321164 -15.949477815812418 34.8331 0.1144 14693 +14695 2 141.82902709006683 -15.43615970485462 34.8547 0.1144 14694 +14696 2 142.72546279977183 -14.8147271236063 34.846 0.1144 14695 +14697 2 143.62176095081426 -14.204706902206224 34.825 0.1144 14696 +14698 2 144.51877268445932 -13.682886298879028 34.8009 0.1144 14697 +14699 2 145.41520839416435 -13.152639529726766 34.7768 0.1144 14698 +14700 2 128.18098899219893 -22.485377749558733 31.3466 0.1144 14680 +14701 2 127.57058983503782 -21.98575337976114 33.4746 0.1144 14700 +14702 2 126.90209406710468 -21.429300293087643 35.3536 0.1144 14701 +14703 2 126.83546354536654 -21.34017863488172 38.1422 0.1144 14702 +14704 2 100.24334624858486 -66.54231071500246 19.9099 0.1144 14620 +14705 2 99.14323656595971 -65.9824310700278 19.7691 0.1144 14704 +14706 2 98.32568584185287 -65.82467474436228 19.697 0.1144 14705 +14707 2 97.89749738013612 -64.67290544440276 19.5637 0.1144 14706 +14708 2 97.65146354292054 -63.53051994088296 19.6377 0.1144 14707 +14709 2 97.49894542875111 -62.43523412381313 20.2078 0.1144 14708 +14710 2 97.035288300735 -61.97739182548181 20.6683 0.1144 14709 +14711 2 96.16030018204756 -61.1202374189177 21.7286 0.1144 14710 +14712 2 95.24877303770623 -60.64058937522847 22.4924 0.1144 14711 +14713 2 94.310204618592 -60.17613719590319 23.1598 0.1144 14712 +14714 2 93.38452365269245 -59.323859421361746 24.0214 0.1144 14713 +14715 2 92.4698864099988 -58.49337987289336 25.0116 0.1144 14714 +14716 2 91.49971304773877 -58.6041866178184 26.1371 0.1144 14715 +14717 2 90.508620783466 -58.276206516416444 27.4697 0.1144 14716 +14718 2 89.49055702405087 -57.88284339615968 28.7286 0.1144 14717 +14719 2 88.45780996056882 -57.95420786531231 29.8808 0.1144 14718 +14720 2 87.41535332125653 -57.70538608286776 30.9722 0.1144 14719 +14721 2 86.36428988976445 -57.21618378770524 32.011 0.1144 14720 +14722 2 85.30450085897294 -57.125393039826605 32.993 0.1144 14721 +14723 2 84.23650988700942 -56.99837885514484 33.9195 0.1144 14722 +14724 2 83.16147763396677 -57.07822532924434 34.802 0.1144 14723 +14725 2 82.09341819043465 -56.69202441946908 35.609 0.1144 14724 +14726 2 81.10444273125592 -55.89104816419317 36.258 0.1144 14725 +14727 2 80.13840077525748 -55.26416586316902 36.7786 0.1144 14726 +14728 2 79.16958579288243 -54.923021199268625 37.2193 0.1144 14727 +14729 2 78.0724298333711 -54.499845168962636 37.7594 0.1144 14728 +14730 2 76.96579874565259 -54.242304562647874 38.4152 0.1144 14729 +14731 2 75.86986982250798 -54.71641449566471 39.1681 0.1144 14730 +14732 2 74.82997907835662 -54.08001553084297 39.9462 0.1144 14731 +14733 2 73.86305065031323 -53.27078862765438 40.6935 0.1144 14732 +14734 2 72.90239996398014 -53.17536779571333 41.4109 0.1144 14733 +14735 2 71.93751857337838 -52.346679821589724 42.0851 0.1144 14734 +14736 2 70.96875975093573 -51.52357269727019 42.7227 0.1144 14735 +14737 2 69.85695983131248 -51.57047888761564 43.3434 0.1144 14736 +14738 2 68.82665932933571 -51.937898616190985 43.9228 0.1144 14737 +14739 2 67.79801263289238 -52.04417377592669 44.478 0.1144 14738 +14740 2 66.76842881510132 -52.54819499644872 45.0198 0.1144 14739 +14741 2 65.73617197916232 -52.967540576023445 45.5409 0.1144 14740 +14742 2 64.70369160447817 -53.06927612398811 46.0334 0.1144 14741 +14743 2 63.66675777401298 -53.54637718684544 46.4937 0.1144 14742 +14744 2 62.58625966555954 -53.86678331515573 46.9235 0.1144 14743 +14745 2 61.48490382821808 -53.52449225192422 47.6778 0.1144 14744 +14746 2 97.51464693914411 -62.37248461361794 20.7484 0.1144 14709 +14747 2 97.75587515427813 -61.42821823019794 21.3462 0.1144 14746 +14748 2 97.99697673731256 -60.48691263938895 21.9883 0.1144 14747 +14749 2 98.19699513543273 -59.29384407738447 22.63 0.1144 14748 +14750 2 97.85100045464807 -58.39894630176964 23.1423 0.1144 14749 +14751 2 97.44410469475085 -57.26307685896748 23.5679 0.1144 14750 +14752 2 96.9642924676404 -56.14586830311891 24.0062 0.1144 14751 +14753 2 96.08643071650727 -55.2412324880263 24.7574 0.1144 14752 +14754 2 95.32356389938016 -54.281920825224596 25.4932 0.1144 14753 +14755 2 95.03199853562916 -53.43608794897031 26.4596 0.1144 14754 +14756 2 95.87290592108462 -53.00598132291187 26.9891 0.1144 14755 +14757 2 96.72428031326928 -52.56475770115774 27.407 0.1144 14756 +14758 2 97.5786036281597 -51.814607157530496 27.7683 0.1144 14757 +14759 2 98.43229855329727 -50.978405675096106 28.1148 0.1144 14758 +14760 2 99.28665469522483 -50.53879133821301 28.476 0.1144 14759 +14761 2 100.07591059043122 -50.02071552545636 28.9019 0.1144 14760 +14762 2 100.8515708657537 -48.88268383554021 29.3804 0.1144 14761 +14763 2 101.62375856024303 -48.26715116050629 29.899 0.1144 14762 +14764 2 102.39612835422776 -47.722214774269915 30.4461 0.1144 14763 +14765 2 103.1659103229143 -47.1684694161308 31.0114 0.1144 14764 +14766 2 103.93475517025314 -46.009314377854984 31.5854 0.1144 14765 +14767 2 104.70422840734477 -45.44173503714985 32.1616 0.1144 14766 +14768 2 105.47298806183375 -44.892678171692374 32.7382 0.1144 14767 +14769 2 106.24246129892538 -44.35879787307119 33.3155 0.1144 14768 +14770 2 107.01130614626416 -43.17700269532054 33.8929 0.1144 14769 +14771 2 107.78015099360294 -42.633816877294294 34.4702 0.1144 14770 +14772 2 108.54962423069458 -41.64786803074463 35.0498 0.1144 14771 +14773 2 109.31838388518361 -40.92386679264756 35.6306 0.1144 14772 +14774 2 110.08722873252233 -40.3963482166276 36.2135 0.1144 14773 +14775 2 110.8557648482662 -39.81074056805251 36.7993 0.1144 14774 +14776 2 111.62421577116027 -38.715795980789316 37.3895 0.1144 14775 +14777 2 112.39261432824156 -38.17766333343156 37.9845 0.1144 14776 +14778 2 113.2011767711551 -37.60643379555095 38.5916 0.1144 14777 +14779 2 114.14325421428066 -37.192243737261535 39.2129 0.1144 14778 +14780 2 115.09140609168352 -36.48405021651496 39.8493 0.1144 14779 +14781 2 116.03848328907617 -36.167829928124384 40.4984 0.1144 14780 +14782 2 116.98297266117069 -35.87363964039993 41.1592 0.1144 14781 +14783 2 117.92809042301792 -35.0510803914607 41.83 0.1144 14782 +14784 2 118.87036399378496 -34.76529054579865 42.5365 0.1144 14783 +14785 2 119.8106257631938 -34.42787010409417 43.2572 0.1144 14784 +14786 2 120.75128145704744 -33.67920884804857 43.9751 0.1144 14785 +14787 2 121.69350266200172 -33.34241998087073 44.674 0.1144 14786 +14788 2 122.57033030185909 -32.98455946454006 45.7257 0.1144 14787 +14789 2 123.38974586294472 -32.7141785413816 47.4681 0.1144 14788 +14790 2 121.34334121362758 -114.09161066467185 15.1446 0.1144 14572 +14791 2 120.21098999433896 -114.17553516086085 14.7488 0.1144 14790 +14792 2 119.08161301356513 -114.55044617783817 14.5607 0.1144 14791 +14793 2 117.95428376276949 -114.07183689698532 14.3243 0.1144 14792 +14794 2 116.82825273072936 -114.68892136026723 14.0577 0.1144 14793 +14795 2 115.95397016885833 -115.33118318289058 13.7709 0.1144 14794 +14796 2 115.1312563134331 -115.5980167565857 13.4805 0.1144 14795 +14797 2 114.32078680078692 -115.85673131371398 12.901 0.1144 14796 +14798 2 123.05340326571908 -115.03821526060611 15.3671 0.1144 14571 +14799 2 123.95291212118296 -113.35949176507556 15.4782 0.1144 14798 +14800 2 124.85700106452735 -113.21038898429774 15.5274 0.1144 14799 +14801 2 125.89419607886768 -113.3414452257096 15.5478 0.1144 14800 +14802 2 126.97687026590886 -112.07687442488461 15.5417 0.1144 14801 +14803 2 128.0606965008302 -112.33451437867885 15.5175 0.1144 14802 +14804 2 129.1450987596916 -112.59719649514736 15.4833 0.1144 14803 +14805 2 130.22798787326525 -111.33885202707016 15.4475 0.1144 14804 +14806 2 131.31868259451957 -111.61791614078548 15.4382 0.1144 14805 +14807 2 132.42213572784254 -111.94497550281326 15.4799 0.1144 14806 +14808 2 133.52482291275018 -110.76469624757308 15.5613 0.1144 14807 +14809 2 134.6260493181827 -111.0845730740452 15.6706 0.1144 14808 +14810 2 135.73926818726838 -111.40196011110085 15.8142 0.1144 14809 +14811 2 136.846822983714 -110.30426255053635 15.9792 0.1144 14810 +14812 2 137.72408729532785 -109.89982052331403 16.1016 0.1144 14811 +14813 2 138.60322584963725 -108.42857322782824 16.1852 0.1144 14812 +14814 2 139.48142728259887 -108.2193582025474 16.2666 0.1144 14813 +14815 2 105.65542692601876 -327.7249973864629 52.402 0.1144 13971 +14816 2 105.38015981964352 -328.08583200809596 54.8313 0.1144 14815 +14817 2 104.79447019365068 -328.5818276067526 56.0734 0.1144 14816 +14818 2 104.13086494972484 -327.72436344239907 56.6364 0.1144 14817 +14819 2 103.49270815306377 -326.25601895086436 57.1847 0.1144 14818 +14820 2 103.10497517904491 -325.30550346433455 57.7343 0.1144 14819 +14821 2 103.19793460004789 -323.9465511322304 58.2313 0.1144 14820 +14822 2 103.3958107705908 -322.5670763206881 58.6765 0.1144 14821 +14823 2 103.26561077402157 -321.382611036504 59.1248 0.1144 14822 +14824 2 102.75853683497624 -321.02864244311667 59.5633 0.1144 14823 +14825 2 102.02843972895931 -320.12409472945694 59.9833 0.1144 14824 +14826 2 101.09324939307925 -318.89911928755697 60.4394 0.1144 14825 +14827 2 100.21497589523563 -317.5152085471168 60.886 0.1144 14826 +14828 2 99.53578587042657 -317.26767792449016 61.2136 0.1144 14827 +14829 2 98.92954754891426 -316.3440953167994 61.5017 0.1144 14828 +14830 2 98.29262730044661 -314.96482397798275 61.7674 0.1144 14829 +14831 2 97.47251098295249 -314.87664332771584 62.0144 0.1144 14830 +14832 2 96.78663216225925 -313.7085448821083 62.288 0.1144 14831 +14833 2 96.18177725235219 -312.2241660381672 62.5576 0.1144 14832 +14834 2 95.58873442311284 -311.00107803689554 62.944 0.1144 14833 +14835 2 94.99684364175374 -309.55702820733876 63.3693 0.1144 14834 +14836 2 94.53671647357594 -308.63516761816544 63.7316 0.1144 14835 +14837 2 94.64138565266767 -307.25347736052277 64.0483 0.1144 14836 +14838 2 94.8112303687407 -305.78757257241466 64.3224 0.1144 14837 +14839 2 94.98104225777661 -304.65659204837607 64.5652 0.1144 14838 +14840 2 94.97762704397036 -303.39182127011117 64.7956 0.1144 14839 +14841 2 94.95362178438431 -302.11303449606476 65.0359 0.1144 14840 +14842 2 94.64058502267508 -300.9817582544303 65.2674 0.1144 14841 +14843 2 94.24375924347925 -300.2969378625602 65.4836 0.1144 14842 +14844 2 93.99193229247746 -299.331150164803 65.7622 0.1144 14843 +14845 2 93.88925819860523 -298.01271963442525 66.2088 0.1144 14844 +14846 2 93.65401171881334 -296.6328593309129 66.6873 0.1144 14845 +14847 2 92.99575260587957 -295.2066762571234 66.9609 0.1144 14846 +14848 2 92.39432883755597 -294.76445487700926 67.0998 0.1144 14847 +14849 2 92.23208711941015 -293.70246082720007 67.1754 0.1144 14848 +14850 2 92.311309567747 -292.3298412004995 67.2277 0.1144 14849 +14851 2 92.31168659293189 -291.03735358647174 67.296 0.1144 14850 +14852 2 91.95472555681124 -290.2516826900708 67.4831 0.1144 14851 +14853 2 91.48332950486869 -288.78627289126945 67.7765 0.1144 14852 +14854 2 91.00065595694876 -287.48076636815057 68.0593 0.1144 14853 +14855 2 90.51126078610761 -286.32696028162036 68.2867 0.1144 14854 +14856 2 90.06734137263244 -284.87250857609695 68.4634 0.1144 14855 +14857 2 89.8072796534216 -283.4817968680413 68.6059 0.1144 14856 +14858 2 89.74772795692525 -282.1856452128813 68.7319 0.1144 14857 +14859 2 89.67650173842372 -280.87970318035065 68.852 0.1144 14858 +14860 2 89.54205941848625 -279.5429006177862 68.9668 0.1144 14859 +14861 2 89.27018561860766 -278.27607107044093 69.0656 0.1144 14860 +14862 2 88.69992261044526 -277.8619129443969 69.2076 0.1144 14861 +14863 2 87.72675408582164 -277.10278244712026 69.3938 0.1144 14862 +14864 2 86.9953088042831 -276.45458491864525 69.4473 0.1144 14863 +14865 2 86.36475459195859 -275.78631836027466 69.3748 0.1144 14864 +14866 2 85.78956711978915 -274.30437353613115 69.2362 0.1144 14865 +14867 2 85.36850281765105 -272.85069045749964 69.1046 0.1144 14866 +14868 2 85.06687018401885 -271.43008081941974 69.0264 0.1144 14867 +14869 2 84.81944983361493 -270.0574057252906 69.0376 0.1144 14868 +14870 2 84.64197581978095 -268.8439159597129 69.1779 0.1144 14869 +14871 2 84.52718642427556 -267.61378639290126 69.4464 0.1144 14870 +14872 2 84.42758788520867 -266.3858231581583 69.8012 0.1144 14871 +14873 2 84.39369164283349 -265.14423754259843 70.1991 0.1144 14872 +14874 2 84.5418528342253 -263.8688012405955 70.611 0.1144 14873 +14875 2 84.84371242708016 -262.63375179067555 71.0094 0.1144 14874 +14876 2 85.02185048034116 -261.5278076253363 71.3194 0.1144 14875 +14877 2 84.93120890429867 -260.2220559487564 71.4512 0.1144 14876 +14878 2 85.04533129343852 -259.08198933479656 71.4776 0.1144 14877 +14879 2 85.41357704013376 -258.14216506745737 71.4843 0.1144 14878 +14880 2 85.5002963645565 -256.9365631379062 71.4053 0.1144 14879 +14881 2 85.36460819167633 -255.60098920741626 71.2096 0.1144 14880 +14882 2 85.19648816689457 -254.25087512862126 70.9282 0.1144 14881 +14883 2 85.02863543445794 -252.90443945788326 70.5849 0.1144 14882 +14884 2 84.8610499943665 -251.5669216063527 70.1904 0.1144 14883 +14885 2 84.69364665377047 -250.25647861665692 69.7648 0.1144 14884 +14886 2 84.52726562737192 -249.0853804589683 69.3356 0.1144 14885 +14887 2 84.36030857703334 -247.936628761228 68.9153 0.1144 14886 +14888 2 84.19335152669477 -246.7795227592943 68.5101 0.1144 14887 +14889 2 83.91885156385133 -245.62205997222839 68.126 0.1144 14888 +14890 2 83.46932423766846 -244.39534879229907 67.7732 0.1144 14889 +14891 2 82.94491480556091 -243.64138735083822 67.4559 0.1144 14890 +14892 2 82.38037643961611 -242.34941532915673 67.2017 0.1144 14891 +14893 2 81.78598853643821 -240.88659196618852 67.0289 0.1144 14892 +14894 2 81.17917108940269 -240.08349047505862 66.9329 0.1144 14893 +14895 2 80.51333842504978 -239.8171949440004 66.897 0.1144 14894 +14896 2 79.61733620223572 -238.4639037858695 66.8861 0.1144 14895 +14897 2 78.59148326035427 -237.23332424801265 66.9166 0.1144 14896 +14898 2 77.51090566477994 -237.76697366086583 67.0401 0.1144 14897 +14899 2 76.42690544513869 -236.85449560235824 67.265 0.1144 14898 +14900 2 75.37700839144652 -236.58751393247482 67.5844 0.1144 14899 +14901 2 74.98751280206042 -235.36122571377544 67.8863 0.1144 14900 +14902 2 74.9478289565287 -234.1062698874316 68.1153 0.1144 14901 +14903 2 74.97983044595007 -232.8036495114135 68.2973 0.1144 14902 +14904 2 74.79174876514121 -231.6585108422969 68.3346 0.1144 14903 +14905 2 74.5433584663525 -230.56721071316224 68.2366 0.1144 14904 +14906 2 74.29361758299561 -229.4828196935867 68.0546 0.1144 14905 +14907 2 73.81166622989103 -228.1345512118651 67.9039 0.1144 14906 +14908 2 73.21411447747488 -226.67041129625517 67.8264 0.1144 14907 +14909 2 72.6043152806965 -225.21577245384987 67.8191 0.1144 14908 +14910 2 71.98386697769361 -224.4210707432539 67.8628 0.1144 14909 +14911 2 71.23915193759521 -223.74818364362983 67.944 0.1144 14910 +14912 2 70.27513988930924 -223.11017998634492 68.0702 0.1144 14911 +14913 2 69.20182642102259 -222.55796269136636 68.1708 0.1144 14912 +14914 2 68.10509723067807 -222.06228295727374 68.224 0.1144 14913 +14915 2 66.96362987331706 -221.91087709715916 68.2654 0.1144 14914 +14916 2 65.8433659290326 -222.98550602796655 68.2746 0.1144 14915 +14917 2 64.7559233514493 -223.17471636291563 68.1747 0.1144 14916 +14918 2 63.674726381075914 -223.26092144559345 67.9787 0.1144 14917 +14919 2 62.594945649344766 -223.91419791279242 67.6964 0.1144 14918 +14920 2 61.50549608849643 -224.00216769364044 67.3546 0.1144 14919 +14921 2 60.41599106025227 -224.0339199504294 66.978 0.1144 14920 +14922 2 59.32711442176104 -225.29393996253617 66.5949 0.1144 14921 +14923 2 58.512993330369426 -225.81659329296093 66.1329 0.1144 14922 +14924 2 57.8651970044765 -226.30548756882015 65.0661 0.1144 14923 +14925 2 93.20126915175518 -346.4984536790088 50.3992 0.1144 13951 +14926 2 92.49610502095545 -345.9930897134686 49.2551 0.1144 14925 +14927 2 92.46774621912081 -344.8071025034779 48.715 0.1144 14926 +14928 2 92.97627346121881 -343.09676524129105 48.1194 0.1144 14927 +14929 2 93.90875054679576 -343.120427129768 47.252 0.1144 14928 +14930 2 94.66736044366695 -341.32649875584303 46.4576 0.1144 14929 +14931 2 95.20347044093097 -340.2113421053549 45.6907 0.1144 14930 +14932 2 95.6936405683058 -339.41192498628135 44.9336 0.1144 14931 +14933 2 96.39957115010077 -338.90335043778765 44.2355 0.1144 14932 +14934 2 96.78374536126898 -338.01315392423504 43.5904 0.1144 14933 +14935 2 96.40589585881115 -336.72212157977384 42.8921 0.1144 14934 +14936 2 95.33007534843105 -335.79704581987784 42.3531 0.1144 14935 +14937 2 94.2014831326486 -336.4873676909236 42.0017 0.1144 14936 +14938 2 93.16193876522225 -335.5914706226348 41.79 0.1144 14937 +14939 2 92.40373422193862 -335.3210590340647 41.7141 0.1144 14938 +14940 2 91.90867256941084 -334.5385691246016 41.7124 0.1144 14939 +14941 2 91.35103792588266 -333.0401907391846 41.7082 0.1144 14940 +14942 2 90.62770318950007 -331.65305106191227 41.6679 0.1144 14941 +14943 2 89.82549149330552 -330.2384581658517 41.5792 0.1144 14942 +14944 2 88.86545447604263 -330.6756471282313 41.3991 0.1144 14943 +14945 2 87.78614877141956 -329.9629806137587 41.0659 0.1144 14944 +14946 2 86.68156341308067 -331.31049867547256 40.6353 0.1144 14945 +14947 2 85.55671897246766 -330.67622328714106 40.224 0.1144 14946 +14948 2 84.47893532141188 -330.39101888291333 39.888 0.1144 14947 +14949 2 83.42283560348527 -331.93044534033527 39.5371 0.1144 14948 +14950 2 82.30667773196839 -331.5911456728375 39.2118 0.1144 14949 +14951 2 81.16717291173586 -332.3695644010197 38.9866 0.1144 14950 +14952 2 80.08917433414766 -331.99533709276153 38.8368 0.1144 14951 +14953 2 78.96293106871018 -331.90420056105984 38.7394 0.1144 14952 +14954 2 77.8594370996847 -332.1263261074967 38.6814 0.1144 14953 +14955 2 76.8390130725987 -331.7413313484184 38.6072 0.1144 14954 +14956 2 75.85425221193279 -331.28830746993026 38.6005 0.1144 14955 +14957 2 75.81891370488484 -330.052486951233 38.6425 0.1144 14956 +14958 2 76.36543454894559 -329.2990017995551 38.663 0.1144 14957 +14959 2 76.68837191708752 -327.73616707911395 38.6579 0.1144 14958 +14960 2 76.67207776758318 -326.4682102826698 38.7565 0.1144 14959 +14961 2 76.57586351491659 -325.32949513162504 38.9558 0.1144 14960 +14962 2 76.7105048564369 -324.81614489985344 39.2722 0.1144 14961 +14963 2 77.21483973193295 -322.92390548386635 39.7158 0.1144 14962 +14964 2 77.84148370250017 -322.2859057220001 39.9062 0.1144 14963 +14965 2 78.91841852664109 -321.3716480255381 40.1517 0.1144 14964 +14966 2 79.19511039488198 -319.7211688115484 40.3483 0.1144 14965 +14967 2 79.53818290633366 -318.73589994976146 40.5292 0.1144 14966 +14968 2 79.98262980686161 -317.8766570919956 40.9469 0.1144 14967 +14969 2 76.32993658790363 -325.44482601016864 39.1222 0.1144 14961 +14970 2 75.1890476635293 -324.73123780143595 39.2692 0.1144 14969 +14971 2 74.06736257352017 -323.6330840237046 39.4246 0.1144 14970 +14972 2 72.97464054869918 -324.2248606259762 39.5587 0.1144 14971 +14973 2 71.83605743659513 -323.86818505929415 39.7242 0.1144 14972 +14974 2 70.69491353151176 -324.4613911765283 39.8997 0.1144 14973 +14975 2 69.5626653273388 -323.7658529957944 40.0747 0.1144 14974 +14976 2 68.50201214540246 -324.25573156225784 40.2791 0.1144 14975 +14977 2 67.51717919702693 -325.3134472748586 40.6325 0.1144 14976 +14978 2 66.41159955111955 -325.5844300523172 40.9581 0.1144 14977 +14979 2 65.33855647676114 -325.3284513823098 41.2014 0.1144 14978 +14980 2 64.26230880645136 -324.2257247519874 41.379 0.1144 14979 +14981 2 63.132608675173586 -324.3209590341311 41.5016 0.1144 14980 +14982 2 62.031346944668236 -324.04126756269176 41.5769 0.1144 14981 +14983 2 60.99475419308281 -324.08766061442725 41.6217 0.1144 14982 +14984 2 60.07911686810242 -323.3252558523309 41.6685 0.1144 14983 +14985 2 59.425977938369144 -321.81995142390224 41.734 0.1144 14984 +14986 2 58.91038480904046 -320.31561269527015 41.8236 0.1144 14985 +14987 2 58.50843574506097 -318.8333071714091 41.942 0.1144 14986 +14988 2 58.087817733180295 -317.7591026094561 42.1137 0.1144 14987 +14989 2 57.505512304598476 -317.74388053144435 42.4012 0.1144 14988 +14990 2 56.83963889353235 -316.2959924328526 42.7932 0.1144 14989 +14991 2 56.410825143645816 -314.82445192822337 43.1746 0.1144 14990 +14992 2 56.065943480538074 -313.73786770141163 43.5196 0.1144 14991 +14993 2 55.71531014289391 -312.9119138590053 43.8231 0.1144 14992 +14994 2 55.32708022931484 -312.084298171537 44.07 0.1144 14993 +14995 2 54.86422457559324 -310.6134616035502 44.2487 0.1144 14994 +14996 2 54.32890735712865 -309.35050393412257 44.3786 0.1144 14995 +14997 2 53.73345259892033 -307.87945485693433 44.4931 0.1144 14996 +14998 2 53.125166547429814 -306.3754314516665 44.6018 0.1144 14997 +14999 2 52.58209677963372 -305.4668174044349 44.6984 0.1144 14998 +15000 2 52.15376765767135 -304.8311793526263 44.7734 0.1144 14999 +15001 2 51.79957344476111 -303.4741007554308 44.8263 0.1144 15000 +15002 2 51.466883758619765 -302.1490531315923 44.8613 0.1144 15001 +15003 2 51.12903796065778 -300.8718940968197 44.8823 0.1144 15002 +15004 2 50.74200935918856 -299.5637984666128 44.8944 0.1144 15003 +15005 2 50.28886569034375 -298.9502344192248 44.9022 0.1144 15004 +15006 2 49.86963109006829 -297.9862182469288 44.9145 0.1144 15005 +15007 2 49.574058862567405 -296.53779661663117 44.9408 0.1144 15006 +15008 2 49.36851815817987 -295.1163829907422 44.9719 0.1144 15007 +15009 2 49.26316484299347 -293.7662733208605 44.9672 0.1144 15008 +15010 2 49.17991471887479 -292.4290266126696 44.898 0.1144 15009 +15011 2 48.82955177515892 -290.97942062608666 44.7916 0.1144 15010 +15012 2 48.34175494245544 -289.6103692874335 44.6628 0.1144 15011 +15013 2 47.986805707692824 -288.38062577057394 44.5001 0.1144 15012 +15014 2 47.69087238278425 -287.07222173170527 44.3114 0.1144 15013 +15015 2 47.39334071973799 -285.64024640982996 44.1146 0.1144 15014 +15016 2 47.09393481399623 -284.66096474912575 43.9286 0.1144 15015 +15017 2 46.801920360178315 -283.72865413545816 43.7674 0.1144 15016 +15018 2 46.556641544815136 -282.71830232404153 43.6262 0.1144 15017 +15019 2 46.374044246197556 -281.34289935019183 43.491 0.1144 15018 +15020 2 46.21933153863806 -279.9654304300503 43.3544 0.1144 15019 +15021 2 46.042166256398986 -278.57657996254994 43.2132 0.1144 15020 +15022 2 45.791094327249624 -277.1562172931975 43.0634 0.1144 15021 +15023 2 45.47600983556221 -275.7369471813741 42.9047 0.1144 15022 +15024 2 45.11196607911265 -274.33263633356677 42.7423 0.1144 15023 +15025 2 44.65371005204726 -273.9902454980441 42.5886 0.1144 15024 +15026 2 44.283300259454535 -273.23190925385325 42.4449 0.1144 15025 +15027 2 43.79039486265013 -271.7808538207916 42.2948 0.1144 15026 +15028 2 43.0467021367493 -270.41566058535363 42.124 0.1144 15027 +15029 2 42.282257496885464 -269.4605622759852 41.9241 0.1144 15028 +15030 2 41.49504914170056 -268.4400065347338 41.6828 0.1144 15029 +15031 2 40.672706096315935 -267.8315461788854 41.3854 0.1144 15030 +15032 2 39.83316891065128 -266.4985311865659 41.032 0.1144 15031 +15033 2 38.996486842629935 -266.7738470834447 40.633 0.1144 15032 +15034 2 38.2007356801776 -265.4356385352718 40.1862 0.1144 15033 +15035 2 37.54840793222915 -263.9741613789626 39.683 0.1144 15034 +15036 2 37.00578514722713 -262.51221855848536 39.1269 0.1144 15035 +15037 2 36.35519949924506 -261.3964172884962 38.5 0.1144 15036 +15038 2 35.42658984195195 -261.7177549508955 37.8073 0.1144 15037 +15039 2 34.373286269948665 -260.6272217774803 37.0737 0.1144 15038 +15040 2 33.289052999735546 -261.23568045570727 36.3112 0.1144 15039 +15041 2 32.20499060068116 -261.145117312499 35.6042 0.1144 15040 +15042 2 31.109626697902442 -260.2907848920375 34.9334 0.1144 15041 +15043 2 30.476738522883565 -261.70153189784315 34.1902 0.1144 15042 +15044 2 29.62644721528021 -261.3021349878601 33.7355 0.1144 15043 +15045 2 28.674731875586104 -260.51629533710866 33.427 0.1144 15044 +15046 2 27.63520733102405 -259.89419039128364 33.1486 0.1144 15045 +15047 2 26.59327706065922 -259.2908594789787 32.8983 0.1144 15046 +15048 2 25.56127300916704 -258.4012036168849 32.7359 0.1144 15047 +15049 2 24.53065236928012 -258.05369627141727 32.5332 0.1144 15048 +15050 2 74.99988569794866 -325.331857954776 39.0037 0.1144 14970 +15051 2 74.74885789604154 -326.41576222561065 38.85 0.1144 15050 +15052 2 74.64695623269688 -327.62279443945295 38.7976 0.1144 15051 +15053 2 74.5414444298564 -328.83364747688205 38.7576 0.1144 15052 +15054 2 74.4203806731699 -330.0280392260659 38.7293 0.1144 15053 +15055 2 74.2978037711955 -331.2215362870369 38.7114 0.1144 15054 +15056 2 74.88163947479438 -332.7189139992692 38.703 0.1144 15055 +15057 2 75.53175521553504 -334.11511536168507 38.703 0.1144 15056 +15058 2 76.18328719491792 -335.62449840651885 38.703 0.1144 15057 +15059 2 63.38838744727721 -400.592273281384 48.7449 0.1144 13724 +15060 2 64.43129378020379 -401.0833738020486 47.8374 0.1144 15059 +15061 2 64.77521651562158 -400.60655107357445 46.6088 0.1144 15060 +15062 2 65.32439916717871 -399.570435476413 45.7204 0.1144 15061 +15063 2 65.62705932900708 -398.437797400946 44.3122 0.1144 15062 +15064 2 39.919959011887286 -436.0698699356669 52.4964 0.1144 13685 +15065 2 40.78312955696244 -436.5299863488142 50.9779 0.1144 15064 +15066 2 41.746005964897755 -437.6514253584167 49.8859 0.1144 15065 +15067 2 42.778325566676386 -436.8156903249107 48.9964 0.1144 15066 +15068 2 42.98468976448489 -438.35237349900797 48.2171 0.1144 15067 +15069 2 43.23669261181583 -439.8007490013496 47.7534 0.1144 15068 +15070 2 43.65538952581784 -441.285982351523 47.3816 0.1144 15069 +15071 2 44.24848472086991 -442.001809565482 47.0834 0.1144 15070 +15072 2 45.01096992518837 -442.90648065820045 46.8737 0.1144 15071 +15073 2 45.887025212658045 -443.84480597997117 46.7368 0.1144 15072 +15074 2 46.91282819777318 -445.1313068773943 46.6416 0.1144 15073 +15075 2 48.0307456897486 -444.2382407442757 46.5858 0.1144 15074 +15076 2 49.14028224263963 -445.0721506295601 46.5626 0.1144 15075 +15077 2 50.12565987395878 -445.1708970190784 46.5584 0.1144 15076 +15078 2 50.95811193024803 -446.1823983817248 46.5592 0.1144 15077 +15079 2 51.68109107985253 -447.7108462034605 46.5606 0.1144 15078 +15080 2 52.190262705642226 -449.19777719192314 46.5626 0.1144 15079 +15081 2 52.53836368538403 -449.85358609145084 46.5651 0.1144 15080 +15082 2 52.749515404062365 -450.7380978615664 46.569 0.1144 15081 +15083 2 52.76709916010948 -452.004924602433 46.5741 0.1144 15082 +15084 2 52.661948454676775 -453.49342014632253 46.5819 0.1144 15083 +15085 2 52.49668692806737 -455.08655830956627 46.592 0.1144 15084 +15086 2 52.284116148109646 -456.7590448311191 46.6032 0.1144 15085 +15087 2 52.06401325598251 -458.25711004675617 46.6222 0.1144 15086 +15088 2 51.973871307492836 -459.52415124066704 46.6642 0.1144 15087 +15089 2 51.991945894630206 -460.85513123136604 46.7107 0.1144 15088 +15090 2 51.98284637172904 -462.17653027330766 46.73 0.1144 15089 +15091 2 51.9556070696836 -463.4898285261688 46.6852 0.1144 15090 +15092 2 52.105193390876394 -464.8509556543329 46.5402 0.1144 15091 +15093 2 52.43618783223448 -465.47824576161514 46.3585 0.1144 15092 +15094 2 52.7695801744154 -466.14582769106346 46.1969 0.1144 15093 +15095 2 53.043104678244454 -467.45148339623677 46.0681 0.1144 15094 +15096 2 53.290833760243245 -468.925277847578 45.9721 0.1144 15095 +15097 2 53.431912510252126 -470.3469510923202 45.9029 0.1144 15096 +15098 2 53.40997549090254 -471.6564544311459 45.8483 0.1144 15097 +15099 2 53.321346687700725 -472.9196422710594 45.7895 0.1144 15098 +15100 2 53.30962651246429 -474.24389505392816 45.7125 0.1144 15099 +15101 2 53.39679550767359 -475.62888827958665 45.5882 0.1144 15100 +15102 2 53.73112186961926 -477.13348062938405 45.4003 0.1144 15101 +15103 2 54.15855530948362 -478.1270634275365 45.1996 0.1144 15102 +15104 2 54.68585509531807 -478.28869677912974 44.9705 0.1144 15103 +15105 2 55.59033916505918 -479.48187885382015 44.5012 0.1144 15104 +15106 2 55.7411832600678 -480.64417618945464 43.9925 0.1144 15105 +15107 2 55.65277489402804 -481.95761263335294 43.6187 0.1144 15106 +15108 2 55.53580900634445 -483.25240736856887 43.3353 0.1144 15107 +15109 2 55.653673956655126 -484.717969511968 43.0909 0.1144 15108 +15110 2 56.2389283079428 -486.3032859214866 42.9052 0.1144 15109 +15111 2 56.87086593187247 -487.8840355471002 42.7888 0.1144 15110 +15112 2 57.45567158385626 -488.3851871516059 42.712 0.1144 15111 +15113 2 57.73605295491866 -489.1803259799471 42.6569 0.1144 15112 +15114 2 57.462348347050245 -490.9601667091301 42.6222 0.1144 15113 +15115 2 56.79929439197528 -492.80806681806496 42.572 0.1144 15114 +15116 2 56.552725556478784 -493.9829124421807 42.5673 0.1144 15115 +15117 2 56.478265295517836 -495.32667964015144 42.5793 0.1144 15116 +15118 2 56.43989466837012 -496.6944342027426 42.5905 0.1144 15117 +15119 2 56.67613132785907 -498.2063542370246 42.5998 0.1144 15118 +15120 2 56.99437966878478 -499.43867950316434 42.607 0.1144 15119 +15121 2 57.054559755033935 -500.6814041304916 42.6121 0.1144 15120 +15122 2 56.960361376791084 -502.18307304668076 42.6079 0.1144 15121 +15123 2 56.98267449317707 -503.4936451799066 42.5995 0.1144 15122 +15124 2 56.93703904620509 -504.9131313316604 42.5877 0.1144 15123 +15125 2 56.7966834624941 -506.4741275179196 42.5704 0.1144 15124 +15126 2 56.89922541363721 -507.6479416120481 42.546 0.1144 15125 +15127 2 57.02106780401752 -508.79858234241567 42.5144 0.1144 15126 +15128 2 57.01918073512783 -510.15212772876646 42.4757 0.1144 15127 +15129 2 56.977731451591715 -511.56844016527 42.4054 0.1144 15128 +15130 2 57.23000779443399 -512.4984081631759 42.2817 0.1144 15129 +15131 2 57.93067262055793 -513.6019533973742 42.1781 0.1144 15130 +15132 2 58.4174385268512 -515.0375584127253 42.0918 0.1144 15131 +15133 2 58.295599232911385 -516.4776115262989 42.0106 0.1144 15132 +15134 2 57.97956558718605 -517.7117656323124 41.9476 0.1144 15133 +15135 2 57.62009780560297 -518.9454387183528 41.8858 0.1144 15134 +15136 2 57.41455738016144 -520.1899972405961 41.8118 0.1144 15135 +15137 2 57.338498781062825 -521.5444286563978 41.7155 0.1144 15136 +15138 2 57.22331333101225 -522.8562206456942 41.5797 0.1144 15137 +15139 2 57.27436296695435 -524.3027209388455 41.3395 0.1144 15138 +15140 2 57.44701622443348 -525.8110992797042 41.0273 0.1144 15139 +15141 2 57.97619025296348 -527.1594980981954 40.6882 0.1144 15140 +15142 2 58.70972160214696 -527.7473614254756 40.3676 0.1144 15141 +15143 2 59.27960609908392 -528.6090460895714 40.0548 0.1144 15142 +15144 2 59.547111636031275 -530.1825176725303 39.7886 0.1144 15143 +15145 2 59.65107533644624 -531.6574825141025 39.5727 0.1144 15144 +15146 2 59.412291877318324 -532.8407308258868 39.3492 0.1144 15145 +15147 2 59.044621462026655 -533.8749073231386 39.058 0.1144 15146 +15148 2 59.01083643338909 -535.2526757458334 38.75 0.1144 15147 +15149 2 58.954325334560586 -536.6048222676325 38.4544 0.1144 15148 +15150 2 58.64055985597548 -538.1668532362183 38.2057 0.1144 15149 +15151 2 58.33745751176105 -539.8568042451064 38.0022 0.1144 15150 +15152 2 58.147871576822986 -541.4139983885044 37.8087 0.1144 15151 +15153 2 58.25473183413114 -542.6219063834866 37.6076 0.1144 15152 +15154 2 58.64857276200099 -543.4156809786082 37.4013 0.1144 15153 +15155 2 59.14376104662833 -544.8601865841567 37.175 0.1144 15154 +15156 2 59.39339340424007 -546.4014184754883 36.9729 0.1144 15155 +15157 2 59.3753783575642 -547.8084407088841 36.7718 0.1144 15156 +15158 2 59.290762230515476 -549.1535254960669 36.554 0.1144 15157 +15159 2 58.994114216877115 -550.293052071622 36.3457 0.1144 15158 +15160 2 58.55430597320861 -551.350878115644 36.1337 0.1144 15159 +15161 2 58.139362233188706 -553.0785430052606 35.8954 0.1144 15160 +15162 2 58.028136400941904 -554.5158745067047 35.6213 0.1144 15161 +15163 2 58.402902837366284 -555.3658005407198 35.2993 0.1144 15162 +15164 2 58.81113205210251 -556.7881179667046 34.9896 0.1144 15163 +15165 2 58.8365918879976 -558.1988091026766 34.7332 0.1144 15164 +15166 2 58.75375619858188 -559.5526022220837 34.5013 0.1144 15165 +15167 2 58.87554001998329 -561.0518367250404 34.2502 0.1144 15166 +15168 2 59.199184448667296 -562.6638861227001 33.9786 0.1144 15167 +15169 2 59.63445563071301 -564.0673185463309 33.728 0.1144 15168 +15170 2 59.97122915771115 -565.0524643449617 33.4869 0.1144 15169 +15171 2 60.176948860011024 -566.1010029586726 33.2503 0.1144 15170 +15172 2 60.35228133880432 -567.4235771792848 33.0498 0.1144 15171 +15173 2 60.48410300640658 -568.798946826465 32.8801 0.1144 15172 +15174 2 60.73089186547452 -570.100246095613 32.6906 0.1144 15173 +15175 2 61.34263818616209 -571.6320335997822 32.4363 0.1144 15174 +15176 2 62.36571130066032 -572.579004399967 32.2062 0.1144 15175 +15177 2 63.141885521477235 -572.440726070875 32.0326 0.1144 15176 +15178 2 63.182091640063135 -573.7762982109207 31.892 0.1144 15177 +15179 2 62.51992174798656 -575.6188182893969 31.789 0.1144 15178 +15180 2 61.84146200994068 -577.1499337520894 31.6812 0.1144 15179 +15181 2 61.407353074995875 -578.1366354926806 31.5241 0.1144 15180 +15182 2 61.14100468296766 -579.3204852175958 31.3544 0.1144 15181 +15183 2 61.058075188489525 -580.6922312979488 31.2309 0.1144 15182 +15184 2 61.217335156892446 -582.2374835914313 31.1671 0.1144 15183 +15185 2 61.568056788969514 -583.8785345566954 31.1696 0.1144 15184 +15186 2 61.989879214543095 -585.2309699003583 31.2402 0.1144 15185 +15187 2 62.52386538721525 -585.609749017992 31.337 0.1144 15186 +15188 2 63.313650641135325 -586.7404618378325 31.5319 0.1144 15187 +15189 2 64.0838821916191 -588.2528015935926 31.9505 0.1144 15188 +15190 2 64.80222268436411 -588.9255508835535 32.4612 0.1144 15189 +15191 2 65.47411506231185 -589.8635710235541 32.9616 0.1144 15190 +15192 2 66.1430585175537 -591.2203905653078 33.4718 0.1144 15191 +15193 2 66.8107975591026 -592.8741501986983 34.0012 0.1144 15192 +15194 2 67.09039067282768 -593.8938441483436 35.1389 0.1144 15193 +15195 2 67.47393948400926 -594.233497004109 36.4711 0.1144 15194 +15196 2 68.1994640133738 -595.1774102476679 37.6155 0.1144 15195 +15197 2 68.86756925451203 -596.5837759631727 38.6761 0.1144 15196 +15198 2 68.99671680298182 -597.7088838140751 39.699 0.1144 15197 +15199 2 68.86873080907633 -599.0958286931435 40.6375 0.1144 15198 +15200 2 68.8427188451712 -600.4254132272597 41.5797 0.1144 15199 +15201 2 69.26481607431813 -601.3384165649755 42.5536 0.1144 15200 +15202 2 69.91200512426377 -602.7438009703638 43.5602 0.1144 15201 +15203 2 70.57482280338877 -603.3999344654478 44.5973 0.1144 15202 +15204 2 71.52301280567403 -604.2785955039752 45.5874 0.1144 15203 +15205 2 72.59708400663322 -603.345094741197 46.531 0.1144 15204 +15206 2 73.67570246843589 -603.9507637461238 47.446 0.1144 15205 +15207 2 74.75743241366402 -602.9308898161229 48.3344 0.1144 15206 +15208 2 75.84326332947822 -603.7538389735726 49.1999 0.1144 15207 +15209 2 76.93065975639304 -604.4515295353334 50.0466 0.1144 15208 +15210 2 77.87004226321153 -603.1647029128732 51.0577 0.1144 15209 +15211 2 78.24064177834475 -601.857482438314 52.0075 0.1144 15210 +15212 2 78.29159181964872 -600.5122756021734 52.8007 0.1144 15211 +15213 2 78.26194341127132 -599.0857791724883 53.4649 0.1144 15212 +15214 2 78.22996826677483 -597.7107443528896 54.031 0.1144 15213 +15215 2 78.19787200080839 -596.303980386583 54.5079 0.1144 15214 +15216 2 78.14624944250924 -594.9345128253228 54.8761 0.1144 15215 +15217 2 78.06402163258817 -593.5892970060842 55.1177 0.1144 15216 +15218 2 77.98001338503408 -592.238168221795 55.2779 0.1144 15217 +15219 2 77.89537674772714 -590.9111212848653 55.3837 0.1144 15218 +15220 2 77.81136850017299 -589.7342642279698 55.4523 0.1144 15219 +15221 2 77.60230284913955 -588.7339490188727 55.5136 0.1144 15220 +15222 2 77.03625133790683 -587.5859112465027 55.6147 0.1144 15221 +15223 2 76.45820874809414 -585.9003810807117 55.7432 0.1144 15222 +15224 2 75.84520426282775 -584.2055380831426 55.8317 0.1144 15223 +15225 2 75.19892220032798 -582.6887655264782 55.8286 0.1144 15224 +15226 2 74.55233140623325 -582.5090877420587 55.7474 0.1144 15225 +15227 2 73.90574061213857 -581.2763052587695 55.603 0.1144 15226 +15228 2 73.26035423173684 -579.7142815835583 55.4072 0.1144 15227 +15229 2 72.61491548552232 -579.6633044220415 55.1877 0.1144 15228 +15230 2 71.97015749487336 -578.35508860102 54.9682 0.1144 15229 +15231 2 71.32516503891631 -576.7415527902849 54.7618 0.1144 15230 +15232 2 70.67977865851456 -575.7867504885104 54.5703 0.1144 15231 +15233 2 70.03795315337884 -574.4292917083476 54.2021 0.1144 15232 +15234 2 58.51880540469932 -515.323017392539 42.371 0.1144 15132 +15235 2 58.996158847657654 -515.9090193560165 43.1024 0.1144 15234 +15236 2 59.18366450452633 -516.8873837461301 43.3325 0.1144 15235 +15237 2 59.63910916754844 -518.3615249641794 43.5064 0.1144 15236 +15238 2 60.26290031770189 -520.0187191012594 43.6299 0.1144 15237 +15239 2 61.004900900402575 -520.2540078991592 43.708 0.1144 15238 +15240 2 61.68734617046587 -521.2323513668825 43.745 0.1144 15239 +15241 2 61.89186456065583 -522.7646637361626 43.7455 0.1144 15240 +15242 2 62.12261683795353 -524.3279243837379 43.7433 0.1144 15241 +15243 2 62.36656460752425 -525.8963755539261 43.7399 0.1144 15242 +15244 2 62.509784892573876 -527.412470606567 43.7354 0.1144 15243 +15245 2 62.647338695936824 -528.9187474009441 43.7293 0.1144 15244 +15246 2 63.080653544020365 -530.4069809464303 43.7203 0.1144 15245 +15247 2 63.59998654652746 -531.2724270068973 43.708 0.1144 15246 +15248 2 64.13201328365419 -531.7860616458582 43.6906 0.1144 15247 +15249 2 64.73201530270597 -533.4513093563627 43.666 0.1144 15248 +15250 2 65.46051476312185 -534.7052912425539 43.6318 0.1144 15249 +15251 2 66.2850876379801 -534.9814666199771 43.5856 0.1144 15250 +15252 2 67.13403117850973 -536.219276432256 43.5204 0.1144 15251 +15253 2 67.98469968927661 -537.8167511349902 43.4249 0.1144 15252 +15254 2 68.86801979657054 -537.802442603246 43.2894 0.1144 15253 +15255 2 69.81408578430718 -538.8038129227813 43.1122 0.1144 15254 +15256 2 70.5383234002641 -539.6193662112888 43.6778 0.1144 15255 +15257 2 71.22148776355965 -540.2756063820573 43.6159 0.1144 15256 +15258 2 71.57567887488675 -541.7052640076278 43.5495 0.1144 15257 +15259 2 71.66610862597986 -543.1173517370572 43.4664 0.1144 15258 +15260 2 71.63286128361581 -544.5167687792718 43.3398 0.1144 15259 +15261 2 71.56066918979515 -545.9176892119447 43.1768 0.1144 15260 +15262 2 71.44674051925023 -547.32121816679 42.9898 0.1144 15261 +15263 2 71.3166315051064 -548.7216772451101 42.791 0.1144 15262 +15264 2 71.18594646702243 -550.1172143388454 42.5897 0.1144 15263 +15265 2 71.05583745287859 -551.4988684937961 42.3956 0.1144 15264 +15266 2 71.20662818776431 -552.9071721839946 42.2192 0.1144 15265 +15267 2 71.73642819700063 -554.1187758935672 42.0893 0.1144 15266 +15268 2 72.27678350739903 -555.7046521221384 41.9891 0.1144 15267 +15269 2 72.81713881779737 -557.3784321176922 41.9082 0.1144 15268 +15270 2 73.35851644239331 -558.0638822285005 41.8379 0.1144 15269 +15271 2 73.89892411860444 -558.5976560204818 41.7684 0.1144 15270 +15272 2 74.4402165503506 -560.2761763217765 41.6926 0.1144 15271 +15273 2 74.97994347099613 -561.6680359509602 41.603 0.1144 15272 +15274 2 75.3445632513858 -562.3150258241322 41.4795 0.1144 15273 +15275 2 75.5782644513894 -563.2856321151002 41.3199 0.1144 15274 +15276 2 75.80888699500443 -564.6204333179109 41.1387 0.1144 15275 +15277 2 76.03937197995695 -566.2025300186057 40.9497 0.1144 15276 +15278 2 75.6561112731525 -567.3140263142338 40.6515 0.1144 15277 +15279 2 70.53126922112223 -537.9914248863695 42.8551 0.1144 15255 +15280 2 71.2776193619951 -536.4087539664081 42.2626 0.1144 15279 +15281 2 72.13147105313413 -535.7861278695717 41.4764 0.1144 15280 +15282 2 73.19751451042555 -536.3888601906251 40.887 0.1144 15281 +15283 2 74.30802342074793 -535.4218215821081 40.5378 0.1144 15282 +15284 2 75.29473140532298 -536.8194607526881 40.3836 0.1144 15283 +15285 2 76.22560412757471 -536.3514854180262 40.579 0.1144 15284 +15286 2 77.06736804112984 -537.8325949276781 40.8075 0.1144 15285 +15287 2 77.8889591662452 -539.4476037866143 40.9024 0.1144 15286 +15288 2 78.71010400110309 -540.7215021423724 40.8534 0.1144 15287 +15289 2 79.61822514169125 -539.0890679590344 40.6022 0.1144 15288 +15290 2 80.5393056104194 -538.90950556666 40.3511 0.1144 15289 +15291 2 81.50616236434374 -537.0075373006558 40.0481 0.1144 15290 +15292 2 82.56596671936518 -537.1456791158852 39.697 0.1144 15291 +15293 2 83.66706477618821 -537.6631643041956 39.2963 0.1144 15292 +15294 2 84.78638890598977 -536.4724071389161 38.8721 0.1144 15293 +15295 2 85.91563243597255 -536.6851711608415 38.4367 0.1144 15294 +15296 2 86.48222154448936 -536.3891597863707 37.4226 0.1144 15295 +15297 2 86.19137955982055 -537.4637542669311 36.5319 0.1144 15296 +15298 2 85.7826488840621 -539.1451185304974 35.8686 0.1144 15297 +15299 2 85.61765705884443 -540.6674584174077 35.8324 0.1144 15298 +15300 2 85.71128348621284 -541.9007232102006 35.8061 0.1144 15299 +15301 2 85.87976770998537 -543.0425074846293 35.7686 0.1144 15300 +15302 2 85.96733373122251 -544.2931871526919 35.7157 0.1144 15301 +15303 2 85.89296727532404 -545.7322615078497 35.6437 0.1144 15302 +15304 2 85.74539923760156 -547.252505045604 35.551 0.1144 15303 +15305 2 85.54302266139823 -548.8128604397438 35.3998 0.1144 15304 +15306 2 85.29970596957287 -550.2902716950288 35.1742 0.1144 15305 +15307 2 85.05358652591693 -551.4877982004722 34.8972 0.1144 15306 +15308 2 84.84506124914942 -552.7221538191184 34.5982 0.1144 15307 +15309 2 84.76102114604083 -554.070796543394 34.3227 0.1144 15308 +15310 2 84.7403409061969 -555.5033329505056 34.0875 0.1144 15309 +15311 2 84.71764886499489 -556.9101402125676 33.8906 0.1144 15310 +15312 2 84.6961612374858 -558.305031943277 33.7232 0.1144 15311 +15313 2 84.67396002737414 -559.7143628725493 33.5726 0.1144 15312 +15314 2 84.65247239986506 -561.1263750765193 33.4275 0.1144 15313 +15315 2 84.6304087484159 -562.5370455878652 33.2763 0.1144 15314 +15316 2 84.60892112090687 -563.9497448776388 33.1069 0.1144 15315 +15317 2 84.58779459080549 -565.3631837214303 32.9084 0.1144 15316 +15318 2 84.92122147653343 -566.8422949052685 32.7141 0.1144 15317 +15319 2 85.4947168055027 -567.4995845371969 32.5304 0.1144 15318 +15320 2 85.56988171795918 -568.7188126222181 32.1219 0.1144 15319 +15321 2 85.36847990823372 -570.2015441629228 31.4143 0.1144 15320 +15322 2 85.1730885478734 -571.6581023566894 30.5449 0.1144 15321 +15323 2 85.01142554166019 -573.1294996863719 29.9068 0.1144 15322 +15324 2 84.84857214990014 -574.6008227088535 29.3756 0.1144 15323 +15325 2 84.68473237256269 -576.0642171411672 28.9439 0.1144 15324 +15326 2 84.66493378667062 -577.4390667357203 28.5628 0.1144 15325 +15327 2 84.89399632981474 -578.5922382808337 28.1467 0.1144 15326 +15328 2 85.12830878984195 -579.7431665373454 27.6543 0.1144 15327 +15329 2 85.36151064123865 -581.0172743545796 27.0886 0.1144 15328 +15330 2 85.59154554181407 -582.2649105742413 26.445 0.1144 15329 +15331 2 85.81988519760625 -583.5019276803215 25.7533 0.1144 15330 +15332 2 86.04742297636291 -584.801757442489 25.0236 0.1144 15331 +15333 2 86.25541835703112 -586.1777655923715 23.7135 0.1144 15332 +15334 2 85.76475039406013 -536.2465341779539 36.5355 0.1144 15296 +15335 2 85.37693153465494 -534.719568569959 36.1735 0.1144 15334 +15336 2 85.08745254032239 -533.2036873903888 35.9912 0.1144 15335 +15337 2 84.67552419912099 -531.8289404806195 35.9083 0.1144 15336 +15338 2 84.25218862825952 -531.2007378282309 35.9016 0.1144 15337 +15339 2 83.85705499226376 -530.3193824675752 35.9027 0.1144 15338 +15340 2 83.4893565554857 -528.6971788212495 35.9041 0.1144 15339 +15341 2 83.25659247682987 -527.1349083344257 35.9066 0.1144 15340 +15342 2 83.15003474795054 -525.6420805519973 35.91 0.1144 15341 +15343 2 83.12011525310828 -524.2051059928243 35.9145 0.1144 15342 +15344 2 83.5086813441918 -523.1806563807821 35.9212 0.1144 15343 +15345 2 84.31375648558944 -522.346112503612 35.9299 0.1144 15344 +15346 2 85.06935208976938 -520.4197950602594 35.943 0.1144 15345 +15347 2 85.68592538709862 -519.4970204732978 35.9612 0.1144 15346 +15348 2 86.43226080728883 -518.3854325051049 35.9859 0.1144 15347 +15349 2 87.26241848045063 -516.7237408952235 36.0167 0.1144 15348 +15350 2 87.99360138186901 -516.0087507120322 36.0634 0.1144 15349 +15351 2 88.35578672243288 -514.7266980935301 36.1547 0.1144 15350 +15352 2 88.57531359061988 -513.0839618732551 36.2544 0.1144 15351 +15353 2 88.78378339999159 -511.4446759616009 36.3345 0.1144 15352 +15354 2 88.99065487122557 -509.80468381391483 36.3924 0.1144 15353 +15355 2 89.27816933297376 -508.24529017697904 36.4302 0.1144 15354 +15356 2 89.47158584456955 -506.94574959674674 36.4493 0.1144 15355 +15357 2 89.5089341575196 -505.5579613838563 36.454 0.1144 15356 +15358 2 89.44817804733037 -504.12480081674005 36.4526 0.1144 15357 +15359 2 89.33048899334887 -502.66837426413616 36.4498 0.1144 15358 +15360 2 89.25097564082547 -501.3891775562347 36.4465 0.1144 15359 +15361 2 89.29179653460875 -499.97699357909477 36.442 0.1144 15360 +15362 2 89.2895826329124 -498.64645251425134 36.4344 0.1144 15361 +15363 2 89.39509443575281 -497.1323892169792 36.4199 0.1144 15362 +15364 2 89.50844708235759 -495.72868469007074 36.4006 0.1144 15363 +15365 2 89.87295295587447 -494.6055301627756 36.409 0.1144 15364 +15366 2 90.24182709232252 -493.4996478376221 36.3888 0.1144 15365 +15367 2 90.5059487564602 -492.3367590661941 36.2692 0.1144 15366 +15368 2 90.55755080450102 -490.9791252991146 36.0718 0.1144 15367 +15369 2 90.64056859341201 -489.65544570568215 35.7221 0.1144 15368 +15370 2 90.7605193324216 -488.36670821134635 35.3486 0.1144 15369 +15371 2 91.0066942434734 -487.19789942952076 34.96 0.1144 15370 +15372 2 91.29416795850838 -486.09404824572727 34.5598 0.1144 15371 +15373 2 91.09429132676092 -484.589980721759 34.1172 0.1144 15372 +15374 2 90.89928299908811 -483.1506499629361 33.7663 0.1144 15373 +15375 2 91.34252548592315 -482.21013084478426 33.4799 0.1144 15374 +15376 2 91.52819254977051 -480.9867231637339 33.1766 0.1144 15375 +15377 2 91.49257133715813 -479.58536386856446 32.6984 0.1144 15376 +15378 2 91.43653907667809 -478.16275605406855 32.3134 0.1144 15377 +15379 2 91.61494442228425 -476.98101672536365 31.8035 0.1144 15378 +15380 2 91.7553945035944 -475.7794173333122 31.2886 0.1144 15379 +15381 2 91.74843141869484 -474.52666934031345 30.2893 0.1144 15380 +15382 2 43.42651801327621 -437.3296597783338 48.05 0.1144 15067 +15383 2 44.53989024500659 -436.92575663783595 48.587 0.1144 15382 +15384 2 45.63268825262433 -437.60098405856087 48.9457 0.1144 15383 +15385 2 46.66575226344413 -438.64954168673734 49.408 0.1144 15384 +15386 2 47.70211295876795 -438.1999692083598 49.7266 0.1144 15385 +15387 2 48.75807041859142 -439.2125146549262 49.6885 0.1144 15386 +15388 2 49.80906956339758 -439.0632204068273 49.2915 0.1144 15387 +15389 2 50.88044892963278 -439.66633440001976 48.6674 0.1144 15388 +15390 2 51.96847544512534 -440.6657065555057 48.0656 0.1144 15389 +15391 2 52.9857763696863 -440.02620035338407 47.5804 0.1144 15390 +15392 2 53.99983125904601 -441.274509929652 47.236 0.1144 15391 +15393 2 55.1042099836065 -440.99817035704507 47.0501 0.1144 15392 +15394 2 56.19408540830068 -441.591438958921 46.8734 0.1144 15393 +15395 2 57.27973633189234 -442.72566066531135 46.6838 0.1144 15394 +15396 2 58.36515279017594 -441.9828274385602 46.4537 0.1144 15395 +15397 2 59.373294136816135 -443.31541013156664 46.2367 0.1144 15396 +15398 2 60.34198007804515 -443.25836448796565 46.053 0.1144 15397 +15399 2 61.338938426307 -444.098342199105 45.9001 0.1144 15398 +15400 2 62.41719859051149 -443.7559242519561 45.7792 0.1144 15399 +15401 2 63.516732941733125 -444.4840666157421 45.6537 0.1144 15400 +15402 2 64.45932634863661 -445.8936117710423 45.4742 0.1144 15401 +15403 2 65.48478536607331 -445.67164448970505 45.29 0.1144 15402 +15404 2 66.53339040417626 -446.5094640846486 45.1013 0.1144 15403 +15405 2 67.57688618564168 -446.1404793549283 44.8806 0.1144 15404 +15406 2 68.55157947465268 -447.1909111542509 44.5222 0.1144 15405 +15407 2 69.54938354824635 -448.5302584012705 44.1902 0.1144 15406 +15408 2 70.50109578635735 -448.7174571477322 43.8259 0.1144 15407 +15409 2 71.44782539993044 -449.35521870588263 43.428 0.1144 15408 +15410 2 72.39196718820534 -449.73615909517235 43.006 0.1144 15409 +15411 2 73.33691636414541 -450.1779653431837 42.5692 0.1144 15410 +15412 2 74.27940744846985 -451.5697404180096 42.1218 0.1144 15411 +15413 2 75.22025565382391 -452.6869342303572 41.6377 0.1144 15412 +15414 2 76.15433297202703 -452.407607329501 41.1345 0.1144 15413 +15415 2 76.99849099228538 -453.84179861188153 40.558 0.1144 15414 +15416 2 77.83815411751301 -453.4661582682327 39.9552 0.1144 15415 +15417 2 78.67589924644508 -454.77936854335053 39.3224 0.1144 15416 +15418 2 79.4558886307005 -456.12954170284365 38.1422 0.1144 15417 +15419 2 37.83569139353214 -472.24128878059616 52.1668 0.1144 13656 +15420 2 38.50990189538631 -473.5278856697812 52.2046 0.1144 15419 +15421 2 38.7431537035493 -474.38291447482044 52.2214 0.1144 15420 +15422 2 38.564928048392 -475.9883966776716 52.2444 0.1144 15421 +15423 2 38.37164909545877 -477.6270546912099 52.2735 0.1144 15422 +15424 2 38.14642291854807 -478.8079082315804 52.3116 0.1144 15423 +15425 2 37.88755427287656 -479.96871335522223 52.3872 0.1144 15424 +15426 2 37.83314086079249 -481.31636836250317 52.4916 0.1144 15425 +15427 2 37.87402912001719 -482.72957668492677 52.5806 0.1144 15426 +15428 2 37.67277176465703 -483.9594917444649 52.6478 0.1144 15427 +15429 2 37.503409267461706 -485.22435580476133 52.6943 0.1144 15428 +15430 2 37.39313527724534 -486.5398412406922 52.7223 0.1144 15429 +15431 2 37.3862624822346 -487.93610332596506 52.7352 0.1144 15430 +15432 2 37.47178387507659 -489.38259285419736 52.7405 0.1144 15431 +15433 2 37.60230732392344 -490.84989212971203 52.7464 0.1144 15432 +15434 2 37.68751998517046 -492.29242409316805 52.7542 0.1144 15433 +15435 2 37.72252993775924 -493.7050756964572 52.766 0.1144 15434 +15436 2 37.659829391653304 -495.0603799627299 52.7828 0.1144 15435 +15437 2 37.46173588553148 -496.32563354193707 52.8052 0.1144 15436 +15438 2 37.37105935235144 -497.6701839541562 52.8335 0.1144 15437 +15439 2 37.68810327958411 -499.1787700009036 52.8724 0.1144 15438 +15440 2 38.19456044797622 -500.5947765154343 52.9564 0.1144 15439 +15441 2 38.63419989295306 -501.11315288973094 53.0533 0.1144 15440 +15442 2 38.93770676928086 -502.04753190716497 53.1278 0.1144 15441 +15443 2 39.15322675089037 -503.5878533025098 53.1768 0.1144 15442 +15444 2 39.55744398201006 -505.1295090086829 53.2008 0.1144 15443 +15445 2 40.11311918999293 -506.5839294602139 53.2003 0.1144 15444 +15446 2 40.335903991426704 -508.1146552690801 53.1754 0.1144 15445 +15447 2 40.57054231277803 -509.6545619976964 53.1314 0.1144 15446 +15448 2 40.98081995002909 -511.26265997642986 53.0687 0.1144 15447 +15449 2 41.55008767631276 -512.1056207147133 52.9816 0.1144 15448 +15450 2 42.16839444427501 -512.793521362605 52.8662 0.1144 15449 +15451 2 42.78531710809543 -514.3205824033164 52.6946 0.1144 15450 +15452 2 42.94536492538782 -515.7548752120437 52.4317 0.1144 15451 +15453 2 43.06630853208697 -517.1950639368773 52.0649 0.1144 15452 +15454 2 43.13436469818414 -518.4180963741 51.6404 0.1144 15453 +15455 2 43.289832427595904 -519.4568895413652 51.4077 0.1144 15454 +15456 2 43.51689719752805 -520.422768588666 51.2529 0.1144 15455 +15457 2 43.885923578515595 -521.4635570511631 51.1003 0.1144 15456 +15458 2 44.40984528111592 -523.1128102599844 50.9242 0.1144 15457 +15459 2 44.725989732130934 -524.5833793403021 50.7452 0.1144 15458 +15460 2 44.38721770457843 -525.6868803869345 50.4932 0.1144 15459 +15461 2 43.84495969928682 -526.4883728062562 50.192 0.1144 15460 +15462 2 43.61496513183397 -527.785468536356 49.9078 0.1144 15461 +15463 2 43.58826592510847 -529.1846917359555 49.663 0.1144 15462 +15464 2 43.63992441202771 -530.5187638381487 49.4371 0.1144 15463 +15465 2 43.61024035397616 -531.8987654711527 49.0983 0.1144 15464 +15466 2 43.484319912314646 -533.3869681489343 48.5803 0.1144 15465 +15467 2 43.401522560565645 -534.8462542128261 48.1149 0.1144 15466 +15468 2 43.29769979934226 -536.3236588210208 47.7333 0.1144 15467 +15469 2 43.27536575396485 -537.7070797821119 47.378 0.1144 15468 +15470 2 43.39978194149716 -538.9035935703496 47.0361 0.1144 15469 +15471 2 43.457103808519946 -540.1951019631883 46.7152 0.1144 15470 +15472 2 43.6464282406884 -541.7094159555526 46.3898 0.1144 15471 +15473 2 44.03456985983456 -543.3324057590424 46.0435 0.1144 15472 +15474 2 44.8008678185451 -544.5224424695235 45.6154 0.1144 15473 +15475 2 45.10862212042273 -545.783894093047 44.9971 0.1144 15474 +15476 2 45.471772603820774 -547.3714338717215 44.4752 0.1144 15475 +15477 2 45.701229071409585 -548.90892593786 44.0328 0.1144 15476 +15478 2 45.82047743332556 -550.1927278611765 43.6024 0.1144 15477 +15479 2 45.78254147733578 -551.5668832812592 42.9901 0.1144 15478 +15480 2 45.93689239495097 -552.7314586609878 42.4144 0.1144 15479 +15481 2 46.26311062078714 -553.6211421879503 41.9479 0.1144 15480 +15482 2 46.76112388915587 -554.4627878179517 41.0987 0.1144 15481 +15483 2 47.15940975529023 -555.8715134283512 40.5418 0.1144 15482 +15484 2 47.33968582841822 -557.3772417261162 40.0733 0.1144 15483 +15485 2 47.30795404038855 -558.7302238629994 39.6217 0.1144 15484 +15486 2 47.2080501502558 -560.0486665406678 39.1896 0.1144 15485 +15487 2 47.028925711417386 -561.299509617119 38.8534 0.1144 15486 +15488 2 46.6985500361685 -562.6181112345791 38.6042 0.1144 15487 +15489 2 46.17310145676525 -563.9417419572541 38.3743 0.1144 15488 +15490 2 45.54467704856496 -565.7748560674147 38.136 0.1144 15489 +15491 2 44.996375766871154 -566.8610839592009 37.905 0.1144 15490 +15492 2 44.68626186703151 -568.0605550969512 37.6751 0.1144 15491 +15493 2 44.61309672324294 -569.4622731355179 37.394 0.1144 15492 +15494 2 44.72285353744407 -570.8054452593739 36.967 0.1144 15493 +15495 2 44.89840335181633 -572.3209462053369 36.4633 0.1144 15494 +15496 2 45.20622543272597 -573.8954353394595 35.945 0.1144 15495 +15497 2 45.63646403346752 -574.8403811570874 35.4564 0.1144 15496 +15498 2 45.92872864990144 -575.8218455666694 35.0199 0.1144 15497 +15499 2 46.02009242075922 -577.1872391553757 34.6766 0.1144 15498 +15500 2 46.323235098096234 -578.4335597653819 34.4417 0.1144 15499 +15501 2 47.214022640110734 -579.3344778480825 34.291 0.1144 15500 +15502 2 48.31609485986427 -579.6274872447173 34.2059 0.1144 15501 +15503 2 48.872169502921516 -581.2863176060321 34.1502 0.1144 15502 +15504 2 48.40262285191092 -581.4207901092204 34.2647 0.1144 15503 +15505 2 47.52928051297081 -581.9999541102818 34.454 0.1144 15504 +15506 2 46.655086245532644 -583.0760262482383 34.5635 0.1144 15505 +15507 2 45.781435174997625 -584.2066807033319 34.6483 0.1144 15506 +15508 2 44.90773173864977 -585.6860863406916 34.7402 0.1144 15507 +15509 2 44.0347418849046 -586.4165547377356 34.832 0.1144 15508 +15510 2 43.17504202103149 -587.218923466942 34.9059 0.1144 15509 +15511 2 42.323580026950594 -587.8838361727228 34.9563 0.1144 15510 +15512 2 41.54101362016491 -590.0417296174145 34.9866 0.1144 15511 +15513 2 40.84009200269008 -590.6891120657838 35.002 0.1144 15512 +15514 2 40.15747892824547 -591.8869994043695 35.0095 0.1144 15513 +15515 2 39.47750604491168 -593.0205073085565 35.0171 0.1144 15514 +15516 2 38.79489297046706 -593.8345743078207 35.0347 0.1144 15515 +15517 2 38.11486772132051 -595.3222887550907 35.0694 0.1144 15516 +15518 2 37.433329326886096 -595.9957030176532 35.124 0.1144 15517 +15519 2 36.75236695639188 -597.4825148067039 35.1968 0.1144 15518 +15520 2 36.19532914883567 -599.342272666189 35.3346 0.1144 15519 +15521 2 36.07635076725744 -600.778713834074 35.658 0.1144 15520 +15522 2 36.29057804074111 -602.0151078901694 35.9817 0.1144 15521 +15523 2 36.647539076861754 -602.8159353335446 36.1659 0.1144 15522 +15524 2 37.01372436835208 -603.7568714872484 36.2328 0.1144 15523 +15525 2 37.38048568378244 -605.2706011929946 36.1962 0.1144 15524 +15526 2 37.746618609459986 -606.9234846805687 36.0718 0.1144 15525 +15527 2 38.11311263254512 -608.2664135600602 35.8868 0.1144 15526 +15528 2 38.480990067235545 -609.3393528341462 35.6541 0.1144 15527 +15529 2 38.84926142637066 -610.6591515902091 35.3968 0.1144 15528 +15530 2 39.31932643252073 -612.33233725755 35.161 0.1144 15529 +15531 2 39.91130860989581 -613.2903336869895 34.9913 0.1144 15530 +15532 2 40.50886036231192 -614.8329168880625 34.8776 0.1144 15531 +15533 2 41.10690294581838 -616.4007572075537 34.8099 0.1144 15532 +15534 2 41.70503072217462 -616.4621993533245 34.7766 0.1144 15533 +15535 2 42.357414630055516 -617.8013392491675 34.7561 0.1144 15534 +15536 2 43.296753484241364 -618.8812789581337 34.7584 0.1144 15535 +15537 2 44.24535493146338 -619.524969543163 34.769 0.1144 15536 +15538 2 45.18728161094741 -620.0337569625257 34.7696 0.1144 15537 +15539 2 46.08119535707008 -620.5886360768445 34.6702 0.1144 15538 +15540 2 46.96326109390478 -621.3709653347443 34.2157 0.1144 15539 +15541 2 48.949564546625226 -582.3233277250531 34.1124 0.1144 15503 +15542 2 48.86877658718779 -583.6953006220781 34.0698 0.1144 15541 +15543 2 48.82162799492797 -585.0965680439665 34.0124 0.1144 15542 +15544 2 49.07902762255385 -586.5557537197246 33.9349 0.1144 15543 +15545 2 49.417234517923475 -587.7391098716251 33.789 0.1144 15544 +15546 2 49.780831984115586 -588.9582475911906 33.6515 0.1144 15545 +15547 2 49.94685501468953 -590.4903311306537 33.4706 0.1144 15546 +15548 2 49.60818910383569 -591.6621527113014 33.0996 0.1144 15547 +15549 2 49.14890383206423 -593.1562766259256 32.8003 0.1144 15548 +15550 2 48.611119513865845 -594.443637694265 32.576 0.1144 15549 +15551 2 48.06490429981688 -595.276130306926 32.3845 0.1144 15550 +15552 2 47.82550958066525 -596.4965831302825 32.3226 0.1144 15551 +15553 2 47.65147008894378 -597.7890315661948 32.3106 0.1144 15552 +15554 2 47.545114969818094 -599.1415048133096 32.2188 0.1144 15553 +15555 2 47.637771448801736 -600.6493347556084 32.1 0.1144 15554 +15556 2 47.8138620510305 -602.2150750849228 31.9883 0.1144 15555 +15557 2 47.994499914102796 -603.7837963731978 31.8864 0.1144 15556 +15558 2 48.378333839895284 -605.2983448673014 31.792 0.1144 15557 +15559 2 49.322497860081036 -605.6544042364593 31.7878 0.1144 15558 +15560 2 49.78333861086148 -606.8412239536684 32.0208 0.1144 15559 +15561 2 50.09022116137687 -608.0448403886803 32.1202 0.1144 15560 +15562 2 50.3198628300441 -609.4533336290391 31.8819 0.1144 15561 +15563 2 50.24459448888145 -610.8160253253188 31.5227 0.1144 15562 +15564 2 50.511200549611154 -612.3455053987932 31.0962 0.1144 15563 +15565 2 51.485717249756384 -612.393468920917 30.8042 0.1144 15564 +15566 2 51.90347704241062 -613.506450140466 30.5189 0.1144 15565 +15567 2 52.30810773675077 -615.0434779953953 30.2596 0.1144 15566 +15568 2 52.71174894393032 -616.7100668792945 29.9992 0.1144 15567 +15569 2 53.11575124851756 -618.3779463282395 29.715 0.1144 15568 +15570 2 53.496322417827685 -620.0379649906998 29.4048 0.1144 15569 +15571 2 53.68194290543791 -621.3978890707604 29.0839 0.1144 15570 +15572 2 53.865080299375514 -622.6114190534064 28.7678 0.1144 15571 +15573 2 54.04722820615252 -623.8196459421338 28.4536 0.1144 15572 +15574 2 54.23094162403015 -624.8593877029658 28.138 0.1144 15573 +15575 2 54.41402665215497 -626.1389984624618 27.8179 0.1144 15574 +15576 2 54.595598534991915 -627.477280648456 27.4897 0.1144 15575 +15577 2 54.77810753917665 -628.8827530456884 27.1486 0.1144 15576 +15578 2 55.073900203839585 -630.5164406990764 26.7789 0.1144 15577 +15579 2 55.50075451818078 -631.844837508929 26.3754 0.1144 15578 +15580 2 55.92791756411688 -632.5696840773007 25.9484 0.1144 15579 +15581 2 56.35547453449774 -633.4986195438067 25.5081 0.1144 15580 +15582 2 56.651904307236265 -633.3441656186565 24.6768 0.1144 15581 +15583 2 56.43946256842466 -634.6040606607563 24.1706 0.1144 15582 +15584 2 56.21245285229781 -635.9947031318409 23.8177 0.1144 15583 +15585 2 56.723900156455954 -637.3466209454891 23.4998 0.1144 15584 +15586 2 57.57982409473554 -638.8956987622125 23.214 0.1144 15585 +15587 2 58.441763898313596 -639.8418263496787 22.9391 0.1144 15586 +15588 2 58.838577365873306 -640.6715539484773 22.5609 0.1144 15587 +15589 2 59.00914455570761 -641.8531329565074 22.1593 0.1144 15588 +15590 2 59.16394796674649 -643.1801876926852 21.7594 0.1144 15589 +15591 2 59.33156623387497 -644.746699935384 21.3676 0.1144 15590 +15592 2 59.526642340579784 -646.3293802114663 20.9931 0.1144 15591 +15593 2 59.7292396328911 -647.9217308931761 20.6387 0.1144 15592 +15594 2 59.92293232799074 -649.5095545541046 20.3049 0.1144 15593 +15595 2 59.761677274368374 -650.8087910995891 19.9917 0.1144 15594 +15596 2 59.51492944095952 -652.0388158921232 19.6889 0.1144 15595 +15597 2 59.268266800400596 -653.2698912308127 19.3863 0.1144 15596 +15598 2 59.02254128118933 -654.5012865533918 19.0781 0.1144 15597 +15599 2 58.77579344778059 -655.7357462923576 18.7646 0.1144 15598 +15600 2 58.17703957890103 -657.5172170752403 18.3432 0.1144 15599 +15601 2 57.477845340709976 -658.8162181397781 17.8328 0.1144 15600 +15602 2 56.77869254176863 -659.7877156605507 17.2854 0.1144 15601 +15603 2 56.23943341594901 -660.6416674171722 16.8912 0.1144 15602 +15604 2 55.78639375138734 -661.6315363387331 16.7059 0.1144 15603 +15605 2 55.33464369336843 -662.766349917131 16.8274 0.1144 15604 +15606 2 45.9237531635778 -554.0210216099651 41.9846 0.1144 15481 +15607 2 44.78247031475877 -553.7534650339122 42.1128 0.1144 15606 +15608 2 43.65092166504231 -553.5199073680957 42.2416 0.1144 15607 +15609 2 42.55242684673672 -554.6404968770597 42.3382 0.1144 15608 +15610 2 41.47643904653322 -554.8355948430724 42.4063 0.1144 15609 +15611 2 40.43117974437963 -556.0176297744393 42.4435 0.1144 15610 +15612 2 39.54383003884509 -556.1910167437118 42.4469 0.1144 15611 +15613 2 38.885861030887014 -557.4364211147022 42.4147 0.1144 15612 +15614 2 38.3138965576544 -558.3539320017345 42.3478 0.1144 15613 +15615 2 37.9266646139466 -559.5276968418311 42.2444 0.1144 15614 +15616 2 37.3197197184799 -560.9095981681326 42.0207 0.1144 15615 +15617 2 36.28770755221226 -561.1814351933336 41.7217 0.1144 15616 +15618 2 35.29429345890264 -562.412843921077 41.473 0.1144 15617 +15619 2 34.30082699978024 -562.3869633260105 41.2555 0.1144 15618 +15620 2 33.306338226460305 -563.0781709727603 41.076 0.1144 15619 +15621 2 32.50759009100255 -564.0532882159498 40.9422 0.1144 15620 +15622 2 32.168204394379856 -565.6762731060331 40.8859 0.1144 15621 +15623 2 31.968460184307638 -567.1062271951891 40.885 0.1144 15622 +15624 2 31.767916411550104 -568.528406522192 40.9245 0.1144 15623 +15625 2 31.563495206951742 -569.9620000509146 41.0094 0.1144 15624 +15626 2 31.348206868013246 -571.4019704045975 41.1578 0.1144 15625 +15627 2 31.126899562193174 -572.8374845244898 41.3655 0.1144 15626 +15628 2 30.905986180817784 -574.1310300376258 41.6189 0.1144 15627 +15629 2 30.685486262662877 -575.4179571869255 41.9084 0.1144 15628 +15630 2 30.46493397869513 -576.954610683136 42.2285 0.1144 15629 +15631 2 30.24411440238223 -578.4920187536657 42.5732 0.1144 15630 +15632 2 30.02436950607969 -580.0213534459929 42.94 0.1144 15631 +15633 2 29.969906137229373 -581.4377697080187 43.3586 0.1144 15632 +15634 2 30.3248930171221 -582.4345057264162 43.846 0.1144 15633 +15635 2 30.794332042565745 -583.659936219292 44.3909 0.1144 15634 +15636 2 31.263536602701326 -584.8526857701174 44.973 0.1144 15635 +15637 2 31.731589114956698 -585.9295367180923 45.5694 0.1144 15636 +15638 2 32.19964162721214 -586.8302336707545 46.1608 0.1144 15637 +15639 2 32.668537455752755 -588.1001475546435 46.7261 0.1144 15638 +15640 2 31.839271960364854 -588.3873269209818 47.1962 0.1144 15639 +15641 2 30.720129539295648 -588.5542148020148 47.5591 0.1144 15640 +15642 2 29.596979952702952 -588.5573833399915 47.8492 0.1144 15641 +15643 2 28.47292607179949 -588.6081058849868 48.0903 0.1144 15642 +15644 2 27.63836930926801 -589.7668448132099 48.2174 0.1144 15643 +15645 2 27.21049977836682 -590.7424138220914 48.3672 0.1144 15644 +15646 2 26.83824686614804 -591.8048630693839 48.5764 0.1144 15645 +15647 2 26.466781802818783 -592.8638482569838 48.8379 0.1144 15646 +15648 2 26.094740715549346 -594.07605812988 49.1431 0.1144 15647 +15649 2 25.723689115440404 -595.6089613004244 49.4819 0.1144 15648 +15650 2 25.353340171371183 -597.1251301912116 49.8467 0.1144 15649 +15651 2 24.98317332679728 -598.5115456711787 50.211 0.1144 15650 +15652 2 24.67627564200872 -600.0288282199226 50.5772 0.1144 15651 +15653 2 24.467844170303675 -601.5185188602034 50.9466 0.1144 15652 +15654 2 24.269480270253503 -602.821123911807 51.315 0.1144 15653 +15655 2 23.846555026223577 -604.1087242326704 51.6438 0.1144 15654 +15656 2 23.392128848473643 -605.6966888249866 51.9378 0.1144 15655 +15657 2 22.936817915188726 -607.1782133882482 52.2035 0.1144 15656 +15658 2 22.480432301893423 -608.6929956310871 52.4468 0.1144 15657 +15659 2 22.024046688598176 -609.7737459098183 52.6753 0.1144 15658 +15660 2 21.5677134411156 -611.2388234235653 52.8962 0.1144 15659 +15661 2 21.11195621757321 -612.8603469150548 53.1152 0.1144 15660 +15662 2 20.655209506870328 -613.9074023335812 53.3336 0.1144 15661 +15663 2 20.199452283327886 -614.8790275024335 53.5506 0.1144 15662 +15664 2 19.743695059785495 -615.986531606916 53.7692 0.1144 15663 +15665 2 19.287309446490198 -617.4496056312457 53.9851 0.1144 15664 +15666 2 18.830529908750215 -618.6355317393495 54.1937 0.1144 15665 +15667 2 18.634392736590513 -619.8930864957198 54.4124 0.1144 15666 +15668 2 19.311714721870253 -621.2598628617965 54.5997 0.1144 15667 +15669 2 19.985475831883875 -622.4457086870119 54.9696 0.1144 15668 +15670 2 5.964795251570173 -474.15227684063336 44.8717 0.1144 8265 +15671 2 5.492856991892152 -476.1893021970806 45.3855 0.1144 15670 +15672 2 5.518001987722306 -477.40624938160886 45.638 0.1144 15671 +15673 2 5.757220396954157 -478.26831385768713 45.8304 0.1144 15672 +15674 2 5.9951491996433 -479.1787954118819 46.0502 0.1144 15673 +15675 2 6.23410031652994 -480.70675648945837 46.2994 0.1144 15674 +15676 2 6.31213886143214 -482.13401044306937 46.6077 0.1144 15675 +15677 2 6.04132770887368 -483.2681276624067 47.0028 0.1144 15676 +15678 2 5.670262080618671 -485.12530751345906 47.4807 0.1144 15677 +15679 2 5.301654543979179 -487.1039139896491 48.0228 0.1144 15678 +15680 2 4.932460056836687 -488.3097523773437 48.6086 0.1144 15679 +15681 2 4.565277371052173 -489.314118424763 49.2218 0.1144 15680 +15682 2 4.1975514883646365 -490.3611439191633 49.8467 0.1144 15681 +15683 2 3.8307627270248195 -491.838684669367 50.4736 0.1144 15682 +15684 2 3.4638887728352765 -493.80589018676034 51.1011 0.1144 15683 +15685 2 3.0971000114955083 -495.38416088515436 51.7289 0.1144 15684 +15686 2 2.7293741288079714 -496.3891028662652 52.3564 0.1144 15685 +15687 2 2.36250017461838 -497.4020240144868 52.9861 0.1144 15686 +15688 2 1.9961053377234075 -498.40606677430935 53.6225 0.1144 15687 +15689 2 1.5189523972458314 -500.4437569184958 54.245 0.1144 15688 +15690 2 0.9883274747096471 -501.9493369349514 54.8559 0.1144 15689 +15691 2 0.509394096599113 -502.94083518660193 55.5108 0.1144 15690 +15692 2 1.20835236061387 -503.98372886875416 56.289 0.1144 15691 +15693 2 2.18814120955308 -503.46422653524166 57.171 0.1144 15692 +15694 2 3.0962341107278974 -504.866619089934 58.0577 0.1144 15693 +15695 2 3.9769393604047987 -504.39489452073104 58.9252 0.1144 15694 +15696 2 4.860767020070256 -505.68833653598796 59.757 0.1144 15695 +15697 2 5.750338529292234 -505.74237839746223 60.5307 0.1144 15696 +15698 2 6.6467394946439775 -506.54471797617117 61.2245 0.1144 15697 +15699 2 6.656525053271016 -506.5102467866391 61.7865 0.1144 15698 +15700 2 6.895187373243981 -505.6037664564208 62.9188 0.1144 15699 +15701 2 7.188451100482096 -504.49617160450555 63.3536 0.1144 15700 +15702 2 7.1169223535518205 -503.0715827077896 63.6787 0.1144 15701 +15703 2 6.779558774467435 -501.49190291328784 63.873 0.1144 15702 +15704 2 6.424342247359613 -499.94993474818295 63.9719 0.1144 15703 +15705 2 6.070095668636707 -498.43979558672385 64.001 0.1144 15704 +15706 2 6.044577263762727 -497.0236011977189 64.0452 0.1144 15705 +15707 2 6.170894038915518 -495.7047699569626 64.1528 0.1144 15706 +15708 2 6.301940174407121 -494.3938842172724 64.3334 0.1144 15707 +15709 2 6.150840707926426 -492.9341900969511 64.5826 0.1144 15708 +15710 2 5.6221599195332725 -492.2505246516235 64.8519 0.1144 15709 +15711 2 5.092627202642175 -491.67308512774156 65.1294 0.1144 15710 +15712 2 4.5634032173459405 -490.05347101345274 65.3937 0.1144 15711 +15713 2 4.033209283664885 -488.4915752644744 65.6342 0.1144 15712 +15714 2 3.4492445389199626 -488.3509210032045 65.8437 0.1144 15713 +15715 2 2.348955165845951 -487.69385144892703 66.0114 0.1144 15714 +15716 2 1.2483570611770267 -488.45784756662374 66.1242 0.1144 15715 +15717 2 0.24396589875274088 -487.3681660667602 66.1548 0.1144 15716 +15718 2 0.6541060121469707 -486.3615468982697 65.9501 0.1144 15717 +15719 2 1.2451449768250462 -485.5903531162882 65.5984 0.1144 15718 +15720 2 1.8316921480555115 -483.3922736413088 65.0908 0.1144 15719 +15721 2 2.4914278792523055 -482.3900154774785 64.244 0.1144 15720 +15722 2 3.3232544693932455 -482.29284489889864 62.6416 0.1144 15721 +15723 2 4.090478444909872 -480.5084780065677 60.879 0.1144 15722 +15724 2 4.582973213109085 -479.86251648734265 59.3872 0.1144 15723 +15725 2 4.8732247549287315 -479.0037082731479 57.7744 0.1144 15724 +15726 2 6.962796947310004 -507.38657555013305 61.6661 0.1144 15698 +15727 2 7.573891261260719 -509.0144738909924 61.9679 0.1144 15726 +15728 2 8.188364350982118 -510.65032701363106 62.1379 0.1144 15727 +15729 2 8.802391150446049 -511.1976028753893 62.2177 0.1144 15728 +15730 2 9.349253157233242 -512.0775121086026 62.2401 0.1144 15729 +15731 2 9.040666430827557 -513.3825824620384 62.2303 0.1144 15730 +15732 2 8.733592849709716 -515.202955830243 62.2174 0.1144 15731 +15733 2 8.425006123304092 -516.9406555500888 62.2017 0.1144 15732 +15734 2 8.118017735036025 -518.4095437822419 62.1832 0.1144 15733 +15735 2 7.809431008630341 -519.5245927277808 62.1622 0.1144 15734 +15736 2 7.502357427512559 -520.64148786133 62.1387 0.1144 15735 +15737 2 7.193770701106826 -521.7576315583927 62.1116 0.1144 15736 +15738 2 6.885759998641274 -522.8751583424431 62.0791 0.1144 15737 +15739 2 6.577120906422866 -523.991575514906 62.0399 0.1144 15738 +15740 2 6.270184883967524 -525.2711922503325 61.9948 0.1144 15739 +15741 2 6.8365098017223165 -526.0242547011985 60.8703 0.1144 15740 +15742 2 7.26458183570287 -527.3715204657564 59.9206 0.1144 15741 +15743 2 7.06408191124156 -528.5745137229961 59.5148 0.1144 15742 +15744 2 6.76390895095731 -529.6944742615823 59.2301 0.1144 15743 +15745 2 6.4629809688206326 -530.8684961148298 59.0153 0.1144 15744 +15746 2 5.746033382386802 -531.7304985864912 58.7779 0.1144 15745 +15747 2 4.656055948865424 -532.21906465319 58.5435 0.1144 15746 +15748 2 3.5590187194625713 -532.0227726773605 58.2436 0.1144 15747 +15749 2 2.4509070174264806 -531.9653840683136 57.8656 0.1144 15748 +15750 2 2.0531550086401147 -532.9624347138619 57.4904 0.1144 15749 +15751 2 1.6575030956447048 -534.3220674381596 57.1113 0.1144 15750 +15752 2 1.2626507453345148 -536.1171129028589 56.7342 0.1144 15751 +15753 2 0.8669988323391031 -537.6713475311354 56.3573 0.1144 15752 +15754 2 0.4728076988187624 -538.9405489183408 55.9714 0.1144 15753 +15755 2 0.1496937418110349 -540.1627217379705 55.5338 0.1144 15754 +15756 2 0.026223566785141372 -541.44428082386 55.0099 0.1144 15755 +15757 2 -0.09230542295259525 -542.7257567420892 54.4407 0.1144 15756 +15758 2 -0.20981209849267657 -544.0080464474637 53.858 0.1144 15757 +15759 2 -0.32860838057551334 -545.2874070606961 53.2616 0.1144 15758 +15760 2 -0.44021072344923695 -546.4943416173825 52.1651 0.1144 15759 +15761 2 5.4952827320805735 -526.606073507508 61.8612 0.1144 15740 +15762 2 4.710574790254192 -528.0359968593339 61.745 0.1144 15761 +15763 2 3.92583402139082 -528.7707397234442 61.6207 0.1144 15762 +15764 2 3.048517343964173 -530.7754113864032 61.5689 0.1144 15763 +15765 2 2.1387588173501086 -530.9390067464961 61.605 0.1144 15764 +15766 2 1.2274957576607903 -532.3947037485669 61.712 0.1144 15765 +15767 2 0.31684154894870886 -533.3216736395193 61.8666 0.1144 15766 +15768 2 -0.59496470764363 -533.4926690989533 62.0382 0.1144 15767 +15769 2 -1.5052578189480172 -534.3217888369368 62.1981 0.1144 15768 +15770 2 -2.4168819760449693 -535.889678147368 62.3199 0.1144 15769 +15771 2 -3.3094285401133163 -536.2564594059306 62.3882 0.1144 15770 +15772 2 -3.6133061374924154 -538.1637836479786 62.2905 0.1144 15771 +15773 2 -3.855109684029909 -540.0013257408239 62.0539 0.1144 15772 +15774 2 -4.095083528704649 -541.6463194713882 61.7266 0.1144 15773 +15775 2 -4.334748641784582 -542.8300769381401 61.3539 0.1144 15774 +15776 2 -4.574105023269542 -544.0128480492682 60.9756 0.1144 15775 +15777 2 -4.832348380771226 -545.1811568208385 60.6612 0.1144 15776 +15778 2 -5.1421395208698435 -546.303327282585 60.5116 0.1144 15777 +15779 2 -5.452291758376159 -547.4249379033768 60.485 0.1144 15778 +15780 2 -5.760878484781841 -548.5525453614847 60.5461 0.1144 15779 +15781 2 -6.07169193907805 -549.6742716677852 60.6612 0.1144 15780 +15782 2 -6.379397011531722 -550.7912895449847 60.9773 0.1144 15781 +15783 2 15.049775568062014 -484.88942911522264 42.2103 0.1144 3407 +15784 2 13.942438408969036 -485.1745903429266 42.7784 0.1144 15783 +15785 2 12.959869833614002 -485.9399185264203 43.1964 0.1144 15784 +15786 2 12.044006454731983 -486.0712010866539 43.5898 0.1144 15785 +15787 2 11.131610146053504 -486.35900310112976 43.9306 0.1144 15786 +15788 2 10.260494535003822 -488.50129649052263 44.1067 0.1144 15787 +15789 2 9.439073387704413 -488.9182431859474 44.0468 0.1144 15788 +15790 2 8.631280687325944 -490.728652530862 43.7898 0.1144 15789 +15791 2 7.828396345198595 -491.6460266948616 43.4101 0.1144 15790 +15792 2 7.027151780458613 -492.0139689981664 42.9719 0.1144 15791 +15793 2 6.226535605471549 -492.44549385261536 42.5306 0.1144 15792 +15794 2 5.469412827857692 -494.24900129794753 42.2223 0.1144 15793 +15795 2 4.719783824746637 -495.3908989173217 42.061 0.1144 15794 +15796 2 3.971935259268648 -496.01998369896694 42.0274 0.1144 15795 +15797 2 3.224001500940835 -498.42793439158896 42.0972 0.1144 15796 +15798 2 2.547534025477261 -499.050019770246 42.3069 0.1144 15797 +15799 2 1.9633987832158586 -499.86925243952726 42.6857 0.1144 15798 +15800 2 1.3798888291240652 -502.02993082830034 43.1598 0.1144 15799 +15801 2 0.6279831413562889 -502.9677010599326 43.596 0.1144 15800 +15802 2 -0.1295890280981178 -503.5124513036299 43.9799 0.1144 15801 +15803 2 -0.8893769988800369 -503.9747979314735 44.2837 0.1144 15802 +15804 2 -1.5551454113527452 -505.6279563833098 44.4312 0.1144 15803 +15805 2 -2.126084468804623 -507.4506660874798 44.3876 0.1144 15804 +15806 2 -2.6946701662665467 -508.2291492472675 44.186 0.1144 15805 +15807 2 -3.2615965475653255 -509.26005214362783 43.86 0.1144 15806 +15808 2 -3.737757005973564 -510.95972711064957 43.3913 0.1144 15807 +15809 2 -4.457459796518223 -511.93369973549335 42.5838 0.1144 15808 +15810 2 -5.330979132772081 -512.0359591156376 41.622 0.1144 15809 +15811 2 -6.190938085225686 -512.1809029994392 40.6826 0.1144 15810 +15812 2 -6.987597743992069 -514.1596536776667 39.919 0.1144 15811 +15813 2 -7.793839653952579 -514.9115433840706 39.277 0.1144 15812 +15814 2 -8.608589135096999 -515.9026019054783 38.7668 0.1144 15813 +15815 2 -9.962512437394281 -516.1019064934525 38.3522 0.1144 15814 +15816 2 -11.092873785461954 -515.2555048283449 38.1962 0.1144 15815 +15817 2 -12.180023133658846 -515.7118683479869 38.1004 0.1144 15816 +15818 2 -13.016739745227156 -514.4044109487896 38.0372 0.1144 15817 +15819 2 -13.787729419146451 -513.5039555707576 37.9845 0.1144 15818 +15820 2 -14.737176591700301 -513.376942516846 37.9221 0.1144 15819 +15821 2 -15.74642854697095 -511.9843051342012 37.8417 0.1144 15820 +15822 2 -16.74513140424574 -510.96731278974926 37.718 0.1144 15821 +15823 2 -17.82244723764791 -511.55182444155884 37.4965 0.1144 15822 +15824 2 -18.926673907625606 -511.6841753614581 37.2333 0.1144 15823 +15825 2 -20.04355666709299 -512.4214850143667 36.9919 0.1144 15824 +15826 2 -21.035525394146763 -512.3678949198387 36.729 0.1144 15825 +15827 2 -21.605671784616195 -513.1393193113965 36.4736 0.1144 15826 +15828 2 -22.100071231186522 -514.8771871873097 36.2496 0.1144 15827 +15829 2 -22.501110619727562 -516.9150390198399 36.0405 0.1144 15828 +15830 2 -22.326101593211845 -517.9116830449115 35.7865 0.1144 15829 +15831 2 -21.845029485012653 -518.2669712537187 35.4133 0.1144 15830 +15832 2 -22.120132225169023 -520.1049726716421 35.0224 0.1144 15831 +15833 2 -22.36715045250607 -521.9070906368631 34.5881 0.1144 15832 +15834 2 -22.31847440786631 -523.2108026272465 34.0225 0.1144 15833 +15835 2 -22.241913772168424 -524.4629594604771 33.3931 0.1144 15834 +15836 2 -22.220995686487253 -525.8036904980115 32.8065 0.1144 15835 +15837 2 -22.20265449954128 -527.1490817587666 32.2557 0.1144 15836 +15838 2 -21.737101518151157 -527.716310871092 31.7419 0.1144 15837 +15839 2 -21.455425029916377 -529.1099620634346 31.2704 0.1144 15838 +15840 2 -21.423061471604726 -530.5002994347424 30.8372 0.1144 15839 +15841 2 -21.40191443124506 -531.9046068717108 30.4284 0.1144 15840 +15842 2 -21.379562977192464 -533.3127684134718 30.0336 0.1144 15841 +15843 2 -21.35783991289267 -534.7198428993845 29.6531 0.1144 15842 +15844 2 -21.233156433015147 -536.2019771247491 29.3056 0.1144 15843 +15845 2 -20.967164041355623 -537.7659150113066 29.0086 0.1144 15844 +15846 2 -20.696494655169957 -539.3322942315078 28.7451 0.1144 15845 +15847 2 -20.426847583181903 -540.8994123462219 28.499 0.1144 15846 +15848 2 -20.15720051119378 -542.4674353569985 28.2554 0.1144 15847 +15849 2 -20.4093834625642 -543.6381787238505 27.9558 0.1144 15848 +15850 2 -20.69881902219097 -544.7711318445696 27.5988 0.1144 15849 +15851 2 -21.035525497499556 -545.84651328734 27.1915 0.1144 15850 +15852 2 -21.417276160599243 -546.8811785003536 26.7493 0.1144 15851 +15853 2 -21.80562181452065 -548.1960374851135 26.3026 0.1144 15852 +15854 2 -22.49688381293137 -550.37861594796 25.9018 0.1144 15853 +15855 2 -23.25147492517948 -550.9844734499715 25.2412 0.1144 15854 +15856 2 -8.640082859362568 -516.1553610927292 38.5669 0.1144 15814 +15857 2 -8.855166174358228 -517.8034733030195 37.7048 0.1144 15856 +15858 2 -9.082410355793183 -519.6110226530081 37.3436 0.1144 15857 +15859 2 -9.310621384029929 -521.0115571408244 37.0944 0.1144 15858 +15860 2 -9.538386122009154 -522.2048081630209 36.8001 0.1144 15859 +15861 2 -9.766470518146267 -523.3947789873456 36.4672 0.1144 15860 +15862 2 -10.036614250748658 -524.5391560967573 36.0892 0.1144 15861 +15863 2 -10.384592711404986 -525.5906967461117 35.6552 0.1144 15862 +15864 2 -10.766164376592428 -526.7229099684421 35.1688 0.1144 15863 +15865 2 -11.147479675997683 -527.9531377845916 34.6408 0.1144 15864 +15866 2 -11.527050466390017 -529.0908697958539 34.0788 0.1144 15865 +15867 2 -11.907740477625495 -530.8009645739004 33.4916 0.1144 15866 +15868 2 -12.252337753464657 -532.5737925127432 32.87 0.1144 15867 +15869 2 -12.552960798126067 -533.8263879832193 32.193 0.1144 15868 +15870 2 -13.163104388151657 -534.4161392399924 31.4278 0.1144 15869 +15871 2 -14.170300308711909 -535.6119791340576 30.7003 0.1144 15870 +15872 2 -15.248760589776865 -535.7233758751244 30.0224 0.1144 15871 +15873 2 -16.300292531459114 -535.5734497769167 29.3768 0.1144 15872 +15874 2 -17.13087667201409 -537.005403919153 28.7899 0.1144 15873 +15875 2 -17.73346111755135 -538.4104521678888 28.3032 0.1144 15874 +15876 2 -18.38376587061086 -539.0537566675117 27.8902 0.1144 15875 +15877 2 -19.39818586428229 -540.2506001950937 27.5325 0.1144 15876 +15878 2 -20.526610701252032 -539.8414502768596 27.2648 0.1144 15877 +15879 2 -21.594582856639548 -538.6921663609018 27.0266 0.1144 15878 +15880 2 -22.690317368652714 -540.0294248686972 26.7394 0.1144 15879 +15881 2 -23.82087142902698 -539.3967727630645 26.3973 0.1144 15880 +15882 2 -24.830469761022655 -539.816201137359 26.0 0.1144 15881 +15883 2 -25.939991895004642 -539.0873215154393 25.4756 0.1144 15882 +15884 2 -27.004541023584174 -538.8956442567603 24.8733 0.1144 15883 +15885 2 -28.100457635092663 -540.1572703485313 24.2362 0.1144 15884 +15886 2 -29.148867569527447 -539.5604600425197 23.5927 0.1144 15885 +15887 2 -30.11979905522297 -539.7891446865005 22.4367 0.1144 15886 +15888 2 -3.6372776954480273 -510.09932458973447 45.1665 0.1144 15807 +15889 2 -4.50660064621777 -510.45657609741494 46.8664 0.1144 15888 +15890 2 -5.5616476142713065 -509.92643512612614 47.7128 0.1144 15889 +15891 2 -6.6555510393485475 -510.121953978181 48.3451 0.1144 15890 +15892 2 -7.738561682840015 -510.9361267719188 48.9807 0.1144 15891 +15893 2 -8.718715227642967 -511.787520775398 49.6398 0.1144 15892 +15894 2 -9.661603160016647 -512.9013721962998 50.2818 0.1144 15893 +15895 2 -10.578853052087094 -513.0200067687102 50.6948 0.1144 15894 +15896 2 -11.655432289449887 -513.234042518191 51.002 0.1144 15895 +15897 2 -12.767408407175967 -514.1471832279988 51.2324 0.1144 15896 +15898 2 -13.881919984387498 -514.5294374257659 51.3828 0.1144 15897 +15899 2 -14.97333138982761 -515.2780870050965 51.3075 0.1144 15898 +15900 2 -16.046194370996083 -514.9275281611174 50.995 0.1144 15899 +15901 2 -17.110599045210343 -515.9463233847193 50.521 0.1144 15900 +15902 2 -18.198051525383235 -516.1801642649752 50.0035 0.1144 15901 +15903 2 -19.295820763201775 -517.1031342509224 49.495 0.1144 15902 +15904 2 -20.397010216040798 -517.2109668320265 49.0162 0.1144 15903 +15905 2 -21.500839859990666 -516.6769708206359 48.5887 0.1144 15904 +15906 2 -22.6064913808234 -518.2173943510784 48.2059 0.1144 15905 +15907 2 -23.714763553991244 -517.7665151910206 47.8568 0.1144 15906 +15908 2 -24.82402521431969 -519.223397960627 47.53 0.1144 15907 +15909 2 -25.9342568230329 -518.6873982870903 47.2262 0.1144 15908 +15910 2 -27.047131724440142 -518.3282210941044 46.9577 0.1144 15909 +15911 2 -28.16998418655941 -519.6168383150282 46.7743 0.1144 15910 +15912 2 -29.29503054953211 -519.9411232392074 46.6567 0.1144 15911 +15913 2 -30.42047083694954 -520.4897956158178 46.5559 0.1144 15912 diff --git a/example_data/layer_aligned_swcs/606271263.swc b/example_data/layer_aligned_swcs/606271263.swc new file mode 100644 index 0000000..754e91f --- /dev/null +++ b/example_data/layer_aligned_swcs/606271263.swc @@ -0,0 +1,16697 @@ +1 1 0.0 -185.35510042590795 21.3699 5.1592 -1 +2 2 -3.8800594125512786 -187.57358862513172 20.2895 0.3912 1 +3 2 -4.454939485570082 -188.63817720794955 20.0581 0.2172 2 +4 2 -4.506744532169887 -189.80806797479778 19.8548 0.191 3 +5 2 -4.26422613789635 -191.20002684252324 19.5796 0.1201 4 +6 2 -4.060548102727326 -192.27993165740716 19.227 0.1144 5 +7 2 -4.0177775015076875 -193.5137480034281 18.9615 0.1144 6 +8 2 -4.157061736721978 -194.34869346920806 18.7704 0.1144 7 +9 2 -4.2492154001577145 -195.62521742458983 18.6381 0.1144 8 +10 2 -4.75597670417049 -196.24260818747015 18.5531 0.1144 9 +11 2 -5.485351532090839 -197.06985601090713 18.5062 0.1144 10 +12 2 -5.81848833171766 -197.94287218285103 19.6707 0.1144 11 +13 2 -6.708580858905523 -198.5100988665418 19.9485 0.1144 12 +14 2 -7.532913177613312 -199.118459276667 20.0425 0.1144 13 +15 2 -8.620754442382221 -199.59904309489832 20.1103 0.1144 14 +16 2 -9.45752834981753 -198.46955335164915 20.1526 0.1144 15 +17 2 -10.295419225518236 -198.5941450521141 20.1697 0.1144 16 +18 2 -11.146112439539957 -198.26042467264784 20.1621 0.1144 17 +19 2 -12.001187106949963 -199.69653005838248 20.1295 0.1144 18 +20 2 -12.982785080922504 -200.47867541205972 20.0826 0.1144 19 +21 2 -14.000210451569851 -201.16135830109087 20.0164 0.1144 20 +22 2 -15.059763615575665 -201.4698863959337 19.9279 0.1144 21 +23 2 -16.147046367954445 -202.09371081458036 19.806 0.1144 22 +24 2 -17.23952309052351 -201.55649148151917 19.6389 0.1144 23 +25 2 -18.27319857666294 -201.59272772657988 19.3383 0.1144 24 +26 2 -19.185324936550327 -200.5117425354095 18.9854 0.1144 25 +27 2 -19.69546315916795 -199.66480685242828 18.6841 0.1144 26 +28 2 -19.22438032051637 -198.2958219940342 17.9956 0.1144 27 +29 2 -5.657579459723808 -197.34540485936114 18.508 0.1144 11 +30 2 -6.689561831497734 -197.90439363153226 18.5444 0.1144 29 +31 2 -7.481714900524392 -198.36203828457002 18.4314 0.1144 30 +32 2 -6.876964277938713 -199.0890567139383 18.229 0.1144 31 +33 2 -6.5846136864598215 -200.41861041206423 18.0369 0.1144 32 +34 2 -7.143747991662485 -200.67059697273191 18.1504 0.1144 33 +35 2 -7.590502655218973 -202.0897568595194 18.2951 0.1144 34 +36 2 -8.55077115279314 -202.79580111610653 18.5578 0.1144 35 +37 2 -9.541297306106717 -202.97822999981497 18.1402 0.1144 36 +38 2 -10.306455413871413 -204.64859963164955 18.0114 0.1144 37 +39 2 -11.139861144615013 -204.06829875388402 17.6231 0.1144 38 +40 2 -10.084941008290274 -205.26467116153117 17.2987 0.1144 39 +41 2 -9.397718228830255 -205.17097236108253 17.0335 0.1144 40 +42 2 -9.995350913679756 -206.79605122445872 16.8191 0.1144 41 +43 2 -10.476196057845225 -207.8774727267944 16.6478 0.1144 42 +44 2 -10.312198119460813 -209.24729084935547 16.4566 0.1144 43 +45 2 -10.317985863928786 -210.4641144153328 16.2955 0.1144 44 +46 2 -9.89032610997964 -211.24937012075736 16.1508 0.1144 45 +47 2 -9.200243994395162 -211.4764641023435 15.8843 0.1144 46 +48 2 -8.692565391652902 -213.07195419740447 15.659 0.1144 47 +49 2 -8.492014796123666 -214.51804754727354 15.4974 0.1144 48 +50 2 -8.399934143096907 -215.84468308328235 15.4608 0.1144 49 +51 2 -8.47115749168214 -217.01356503065853 15.4552 0.1144 50 +52 2 -9.145444918896805 -217.29346947970268 15.455 0.1144 51 +53 2 -8.600632747891558 -217.68312227070282 15.416 0.1144 52 +54 2 -7.6154025074607965 -217.04717374380323 14.1437 0.1144 53 +55 2 -6.583712367762653 -217.38267395817988 13.641 0.1144 54 +56 2 -5.617396781928111 -217.91037461207745 13.1113 0.1144 55 +57 2 -4.690873472043213 -218.0257338376819 12.3715 0.1144 56 +58 2 -3.9522968763004585 -218.4368809421401 11.4949 0.1144 57 +59 2 -4.199518715149754 -217.79565765930553 10.6124 0.1144 58 +60 2 -3.981358166012509 -217.62528924531807 9.672 0.1144 59 +61 2 -4.0026053919022875 -216.68387717295758 8.7697 0.1144 60 +62 2 -3.4445786883240395 -215.21447313507542 7.8898 0.1144 61 +63 2 -3.1892983364702765 -214.01450399495155 7.0531 0.1144 62 +64 2 -3.7986813429652013 -214.46120672983463 6.3346 0.1144 63 +65 2 -2.9019240968057662 -213.77449908642987 5.0613 0.1144 64 +66 2 -9.747163972312215 -218.2751183230359 15.3756 0.1144 52 +67 2 -10.68041332354922 -218.9128240860303 15.2977 0.1144 66 +68 2 -10.64677806796221 -220.04641786739074 15.2696 0.1144 67 +69 2 -10.400197048526545 -221.5130768037353 15.1855 0.1144 68 +70 2 -10.41557773725318 -222.7342953713032 15.0664 0.1144 69 +71 2 -10.706940171436365 -223.61699480584258 14.9429 0.1144 70 +72 2 -10.201860551141682 -225.0640525707373 14.8135 0.1144 71 +73 2 -9.379952110045162 -225.07516292357775 14.6634 0.1144 72 +74 2 -9.032645674079491 -226.10635700196167 14.3358 0.1144 73 +75 2 -8.959045782955712 -227.40333873829888 13.9506 0.1144 74 +76 2 -8.159625346692945 -229.12244814404843 13.3923 0.1144 75 +77 2 -7.5338808023426225 -229.5761355652284 13.1701 0.1144 76 +78 2 -6.792759647481752 -230.09289999772238 12.7012 0.1144 77 +79 2 -6.990438794996294 -230.96537291608567 12.2381 0.1144 78 +80 2 -7.508499152866509 -230.14082227380882 11.7619 0.1144 79 +81 2 -8.582783905604863 -230.0056621638959 11.3555 0.1144 80 +82 2 -9.652287286605457 -229.37382264963554 11.0077 0.1144 81 +83 2 -10.71522806087176 -229.00350953448043 10.7112 0.1144 82 +84 2 -11.810957965691864 -228.79051815212745 10.3834 0.1144 83 +85 2 -12.864261476768675 -228.8788377803944 10.0124 0.1144 84 +86 2 -13.680325559519964 -228.05809366309097 9.5901 0.1144 85 +87 2 -14.188762974448503 -227.03021790287585 9.0882 0.1144 86 +88 2 -14.866003715029743 -226.00714463546558 8.5791 0.1144 87 +89 2 -15.461798772766752 -225.02802825305395 8.1166 0.1144 88 +90 2 -15.813428685757875 -223.86996555708248 7.7476 0.1144 89 +91 2 -16.006704535857402 -222.64756310594774 7.4912 0.1144 90 +92 2 -16.250161170500164 -221.44917124785331 7.324 0.1144 91 +93 2 -17.02005951799242 -220.46985614602545 7.2216 0.1144 92 +94 2 -18.049242222366022 -220.13989604782284 7.1546 0.1144 93 +95 2 -18.7354106441019 -218.9897199230004 7.0497 0.1144 94 +96 2 -19.459535866517683 -218.12079727183 6.9387 0.1144 95 +97 2 -20.4355485108073 -217.5720741469058 6.8468 0.1144 96 +98 2 -21.5082067734703 -217.06058542908346 6.7728 0.1144 97 +99 2 -22.612973225147915 -216.66679598416675 6.7137 0.1144 98 +100 2 -23.6969482263608 -216.49620177890145 6.6668 0.1144 99 +101 2 -24.77601405475072 -215.71896635553748 6.6304 0.1144 100 +102 2 -25.888834197899754 -215.89007636622762 6.5943 0.1144 101 +103 2 -26.87520185558157 -214.81408673621064 6.4872 0.1144 102 +104 2 -27.736598341691515 -214.34635879628334 6.3877 0.1144 103 +105 2 -28.57713883056469 -213.5130098365414 6.3119 0.1144 104 +106 2 -29.450688940158187 -212.30478568492487 6.2615 0.1144 105 +107 2 -30.233079431544084 -212.045918737776 6.2339 0.1144 106 +108 2 -30.93232333841076 -210.46148443303264 6.2236 0.1144 107 +109 2 -31.893689187625284 -210.15922585355162 6.225 0.1144 108 +110 2 -33.01682683521623 -209.58875440879683 6.2261 0.1144 109 +111 2 -33.911791101835654 -209.3762024150472 6.3598 0.1144 110 +112 2 -34.67229962014103 -208.94513868897337 6.3564 0.1144 111 +113 2 -35.37387840064479 -207.709426988365 6.2308 0.1144 112 +114 2 -36.04874094503109 -206.81699472569255 5.8771 0.1144 113 +115 2 -36.380280482952216 -205.78423055677217 5.6582 0.1144 114 +116 2 -36.06381013335964 -204.4666753551998 5.444 0.1144 115 +117 2 -35.933437257093075 -203.18993208761867 5.254 0.1144 116 +118 2 -36.36030089200602 -202.19518070678845 5.0683 0.1144 117 +119 2 -37.15714257366254 -201.22081023427714 4.806 0.1144 118 +120 2 -37.90123518729792 -200.37452139353815 4.4003 0.1144 119 +121 2 -37.929089634938975 -199.37754313639576 3.9394 0.1144 120 +122 2 -36.91408657731707 -198.9238816555308 3.5357 0.1144 121 +123 2 -36.01344619069327 -198.1207933586329 3.1558 0.1144 122 +124 2 -35.02676542932255 -197.7123888796674 2.8677 0.1144 123 +125 2 -34.39611355501141 -196.777705945569 2.663 0.1144 124 +126 2 -33.779231431245314 -195.05158626996794 2.4859 0.1144 125 +127 2 -33.51920375755654 -193.69471028314308 2.2494 0.1144 126 +128 2 -33.477079390689916 -192.41231223099172 2.0541 0.1144 127 +129 2 -33.86262942666198 -191.69319028232516 1.9182 0.1144 128 +130 2 -33.52436533764989 -190.11777935738337 1.8296 0.1144 129 +131 2 -33.364950718269775 -188.89767532139166 1.7859 0.1144 130 +132 2 -33.400412322056745 -187.68312893980257 1.7834 0.1144 131 +133 2 -34.04952637119127 -187.1941457752498 1.8112 0.1144 132 +134 2 -34.65499855562813 -186.618332968098 1.8632 0.1144 133 +135 2 -34.70418954826326 -185.38736286551494 1.9624 0.1144 134 +136 2 -34.589165538839325 -184.2439319602345 2.0581 0.1144 135 +137 2 -35.05081727070841 -182.89054772314188 2.1296 0.1144 136 +138 2 -35.18002641184995 -181.7037641698143 2.178 0.1144 137 +139 2 -34.48360722299205 -181.0138173720115 2.2047 0.1144 138 +140 2 -34.01567195783589 -179.44049347547104 2.2105 0.1144 139 +141 2 -34.12400270731074 -178.32933090353745 2.1987 0.1144 140 +142 2 -34.51451985499761 -177.57733345725038 2.178 0.1144 141 +143 2 -34.74494887647361 -176.3280245018365 2.1513 0.1144 142 +144 2 -34.39036342824657 -175.08849234964686 2.1193 0.1144 143 +145 2 -33.50435366007639 -173.49349683358875 2.0531 0.1144 144 +146 2 -32.55595154498762 -173.74836849888123 1.9543 0.1144 145 +147 2 -31.563002580462197 -172.17518002452843 1.8665 0.1144 146 +148 2 -30.516379725407276 -172.60219682460672 1.8035 0.1144 147 +149 2 -29.427457159078173 -171.38281221591828 1.7645 0.1144 148 +150 2 -28.324720227187168 -171.76913722783368 1.7486 0.1144 149 +151 2 -27.205651573067396 -170.93385285515 1.7549 0.1144 150 +152 2 -26.06761194656026 -171.28822241708707 1.7791 0.1144 151 +153 2 -24.93243861174355 -171.19564245743504 1.8174 0.1144 152 +154 2 -23.836044496707167 -170.99466568258487 1.8702 0.1144 153 +155 2 -23.30806252548399 -169.6822723863258 1.9386 0.1144 154 +156 2 -22.998178967700984 -168.6654882585425 2.0227 0.1144 155 +157 2 -23.151723592104563 -167.37864782821694 2.1924 0.1144 156 +158 2 -23.322324701020445 -166.06983441629288 2.441 0.1144 157 +159 2 -22.90310352284601 -165.18333720685385 2.6566 0.1144 158 +160 2 -22.777636764555407 -164.08574522840402 2.8429 0.1144 159 +161 2 -22.694208865675662 -162.9630976959418 3.0099 0.1144 160 +162 2 -21.93153732162242 -161.84830457683807 3.167 0.1144 161 +163 2 -21.31561011303343 -160.48773120107617 3.3274 0.1144 162 +164 2 -20.60312991863751 -160.10463320073993 3.55 0.1144 163 +165 2 -19.901777169781102 -158.94356483078948 3.8399 0.1144 164 +166 2 -20.446029742952845 -158.9955441765396 4.2783 0.1144 165 +167 2 -21.110158259766308 -159.36012704788035 4.7191 0.1144 166 +168 2 -21.462185787529343 -160.28126322984872 5.1368 0.1144 167 +169 2 -22.057297858764727 -161.7657353580175 5.5474 0.1144 168 +170 2 -22.954590813768533 -162.35756480945082 5.8808 0.1144 169 +171 2 -23.964646893531146 -163.03932995760067 6.1171 0.1144 170 +172 2 -24.996629063204782 -163.44122092874892 6.2738 0.1144 171 +173 2 -25.675937785892465 -164.1573454478282 6.3838 0.1144 172 +174 2 -25.847001554538707 -165.4155690919422 6.6181 0.1144 173 +175 2 -26.15778477734126 -165.22027360499672 6.7749 0.1144 174 +176 2 -27.0705896486488 -165.55485716702498 6.8042 0.1144 175 +177 2 -27.758694496272287 -166.44967665777335 6.8138 0.1144 176 +178 2 -28.65027109611637 -167.80924132187585 6.8062 0.1144 177 +179 2 -29.25515178465978 -168.12482240224872 6.7836 0.1144 178 +180 2 -29.57647762150347 -169.1314882923573 6.7482 0.1144 179 +181 2 -30.235395549833544 -170.87106112715117 6.7281 0.1144 180 +182 2 -30.882223607179675 -171.72154615450708 6.72 0.1144 181 +183 2 -31.420557334847796 -172.31114440836387 6.7087 0.1144 182 +184 2 -31.733029309964138 -173.56642791737266 6.6931 0.1144 183 +185 2 -31.813106722377015 -174.90293984394742 6.6718 0.1144 184 +186 2 -32.176572477981004 -176.48762444736906 6.6402 0.1144 185 +187 2 -32.625722712827134 -177.80905608660993 6.5953 0.1144 186 +188 2 -32.872519160091 -178.7439800964835 6.5361 0.1144 187 +189 2 -33.433598689609276 -179.23078338363774 6.4612 0.1144 188 +190 2 -33.86253104438631 -180.67786275341913 6.3592 0.1144 189 +191 2 -33.57898634868487 -181.44365676457127 6.1103 0.1144 190 +192 2 -33.361497500987234 -182.683534289287 5.8953 0.1144 191 +193 2 -33.66257436872023 -183.95413516860452 5.7202 0.1144 192 +194 2 -33.26560603666238 -185.0693093974942 5.5252 0.1144 193 +195 2 -32.56403712098605 -186.8222871678587 5.3956 0.1144 194 +196 2 -31.80107529459945 -187.22083256611268 5.3392 0.1144 195 +197 2 -31.455046761371335 -188.07183277892864 5.3536 0.1144 196 +198 2 -31.541612665005147 -189.3728054674619 5.416 0.1144 197 +199 2 -31.944837586514023 -190.88204146531587 5.5269 0.1144 198 +200 2 -32.95014308749441 -191.31538334806905 5.7131 0.1144 199 +201 2 -33.89873549196639 -191.89647501570818 6.0039 0.1144 200 +202 2 -34.724822303935 -193.2508784199353 6.3789 0.1144 201 +203 2 -35.543601114843824 -193.6364800757189 6.8291 0.1144 202 +204 2 -36.20987521228395 -194.8762863124129 7.2644 0.1144 203 +205 2 -36.795923496739654 -196.02970713543328 7.6099 0.1144 204 +206 2 -37.20955691511221 -197.05471894484523 7.8652 0.1144 205 +207 2 -37.82151298914709 -198.04599466240816 8.0465 0.1144 206 +208 2 -38.0183143918448 -199.26393858904743 8.243 0.1144 207 +209 2 -37.62628217644588 -200.30176039010934 8.4142 0.1144 208 +210 2 -38.54783600101193 -201.28584844665872 8.5631 0.1144 209 +211 2 -39.20192518382661 -202.12786894125318 8.7048 0.1144 210 +212 2 -39.24222184492303 -200.92612611196228 9.3176 0.1144 211 +213 2 -39.25587934627653 -199.68480916009952 9.579 0.1144 212 +214 2 -40.14393788474576 -198.1321912372509 9.8398 0.1144 213 +215 2 -41.14914214332039 -198.11254706937046 10.2088 0.1144 214 +216 2 -42.15978053539182 -197.25436185497085 10.5067 0.1144 215 +217 2 -43.207449613175726 -197.08244370703488 10.763 0.1144 216 +218 2 -44.08420829000336 -196.13483170655326 10.9945 0.1144 217 +219 2 -44.88917522198422 -194.97921812199647 11.1724 0.1144 218 +220 2 -45.714102735204136 -194.89914816302758 11.3032 0.1144 219 +221 2 -46.84611437837794 -193.97169005793012 11.3968 0.1144 220 +222 2 -47.63850073070399 -194.07804249103418 11.4812 0.1144 221 +223 2 -48.26291433051678 -192.72458526841814 11.6186 0.1144 222 +224 2 -49.350193088190736 -192.94290829556246 11.8185 0.1144 223 +225 2 -50.44735963537451 -192.83579678130667 11.9511 0.1144 224 +226 2 -51.583664700375934 -193.57105782032335 12.0537 0.1144 225 +227 2 -52.533895593783626 -192.22386186836658 12.1346 0.1144 226 +228 2 -53.47683506695372 -191.99519448163562 12.1976 0.1144 227 +229 2 -54.55669020439929 -191.14167039958846 12.294 0.1144 228 +230 2 -54.55915707592669 -191.55207644566934 11.83 0.1144 229 +231 2 -54.41858332427118 -192.85941686541423 11.9113 0.1144 230 +232 2 -54.38784890846371 -194.143816631522 11.9477 0.1144 231 +233 2 -54.353152926843606 -195.43295980236758 12.0282 0.1144 232 +234 2 -54.21975867487597 -196.82541590281033 12.138 0.1144 233 +235 2 -54.82603925363444 -197.52772366833602 12.2283 0.1144 234 +236 2 -55.182206576919924 -198.8781399200374 12.2962 0.1144 235 +237 2 -54.922644819908726 -199.99448610538172 12.3721 0.1144 236 +238 2 -54.78875335275932 -191.13402393448712 12.3757 0.1144 229 +239 2 -55.88253841842045 -192.0604773603111 12.4618 0.1144 238 +240 2 -56.908855159745315 -192.11440335802502 12.5522 0.1144 239 +241 2 -57.90427381107391 -193.19857164096857 12.6565 0.1144 240 +242 2 -58.945994101186145 -193.75070685836357 12.7847 0.1144 241 +243 2 -60.055327891814485 -194.18685892244426 12.9488 0.1144 242 +244 2 -61.18870182226732 -194.21946092098042 13.1642 0.1144 243 +245 2 -61.99105615183948 -193.47140756854213 13.4655 0.1144 244 +246 2 -62.102179373577485 -192.32633858182737 14.0104 0.1144 245 +247 2 -61.87637679156344 -191.39864163982452 14.6186 0.1144 246 +248 2 -61.43468167018783 -190.54896866022747 15.3928 0.1144 247 +249 2 -60.50972317539674 -189.1458221513844 16.0879 0.1144 248 +250 2 -59.39189817201148 -189.796588297778 16.7013 0.1144 249 +251 2 -59.382468277213874 -189.6475023920495 17.1401 0.1144 250 +252 2 -59.29427262655753 -188.2648860207804 17.442 0.1144 251 +253 2 -59.206006413421036 -186.88935233712076 17.6542 0.1144 252 +254 2 -59.117034575483714 -185.5050069712957 17.8006 0.1144 253 +255 2 -59.02876836234722 -184.1233299912015 17.9253 0.1144 254 +256 2 -58.93491764635603 -182.73491081095648 18.0315 0.1144 255 +257 2 -59.05699495767348 -181.6012242162907 18.1659 0.1144 256 +258 2 -59.590550058853026 -181.0150254251318 18.306 0.1144 257 +259 2 -60.154078131434375 -179.60994303861338 18.4099 0.1144 258 +260 2 -60.162124684283526 -178.347309826458 18.4816 0.1144 259 +261 2 -60.28824774385486 -176.9609877580499 18.5269 0.1144 260 +262 2 -60.5583570642158 -175.44353253406376 18.5578 0.1144 261 +263 2 -59.390607147499296 -189.61478283068095 17.746 0.1144 250 +264 2 -59.38526949139015 -188.59956730587817 18.7441 0.1144 263 +265 2 -59.29365179541398 -187.31128522838657 19.1533 0.1144 264 +266 2 -59.153615412408605 -185.87636133417192 19.4541 0.1144 265 +267 2 -59.347630142939195 -184.8477556476484 19.6445 0.1144 266 +268 2 -59.38882468270799 -183.6173274720555 19.7357 0.1144 267 +269 2 -59.442152416018686 -182.4164969681584 19.6661 0.1144 268 +270 2 -60.11776015263018 -181.26708442503224 19.1204 0.1144 269 +271 2 -39.489146737043896 -202.4309220885541 8.9004 0.1144 211 +272 2 -40.156274394225605 -202.6770217081165 9.1662 0.1144 271 +273 2 -40.70665437423365 -203.68488984382353 9.3962 0.1144 272 +274 2 -40.980184136623556 -205.2241323057326 9.5848 0.1144 273 +275 2 -40.96889526272372 -206.4815198317842 9.7619 0.1144 274 +276 2 -40.375765994780735 -206.97632553804522 10.0139 0.1144 275 +277 2 -40.12992385577609 -208.4663099182893 10.1827 0.1144 276 +278 2 -40.40188466278185 -209.39209410693482 10.2693 0.1144 277 +279 2 -40.53541242071078 -210.73471856787617 10.2861 0.1144 278 +280 2 -41.0324567345133 -212.3763825947375 10.1957 0.1144 279 +281 2 -41.91874686367448 -211.5848397668418 10.0707 0.1144 280 +282 2 -42.5093143995049 -210.59871237751437 9.8529 0.1144 281 +283 2 -43.51641231181235 -211.15123126468347 9.5948 0.1144 282 +284 2 -44.52873413647812 -209.62374633012337 9.3373 0.1144 283 +285 2 -44.86805184545675 -210.98875114629368 7.873 0.1144 284 +286 2 -45.12794746474021 -212.43298264251177 7.4858 0.1144 285 +287 2 -44.99892711842263 -213.40889727499697 7.3018 0.1144 286 +288 2 -45.59546276676192 -214.92175057163587 7.1084 0.1144 287 +289 2 -45.90233030726833 -215.74169193297882 6.8247 0.1144 288 +290 2 -46.44728833569632 -216.2055649539858 6.61 0.1144 289 +291 2 -46.553384663965566 -217.41185469139725 6.3887 0.1144 290 +292 2 -46.59066696144179 -218.68635977889744 6.1798 0.1144 291 +293 2 -46.09431891931083 -220.07655093559967 6.0071 0.1144 292 +294 2 -45.126529125647494 -221.02169400504775 5.8428 0.1144 293 +295 2 -44.60023535203684 -221.52670127132643 5.6092 0.1144 294 +296 2 -44.29472409661315 -222.68933259526676 5.3383 0.1144 295 +297 2 -43.552705706851725 -224.47728366420517 5.1148 0.1144 296 +298 2 -42.863233674240206 -225.0000450391563 4.9156 0.1144 297 +299 2 -42.61342671247567 -225.96314195408502 4.6978 0.1144 298 +300 2 -42.37333063122753 -226.974651868259 4.4867 0.1144 299 +301 2 -42.66634018752803 -228.43712798246258 4.3095 0.1144 300 +302 2 -43.41689817370853 -230.1177555388403 4.1473 0.1144 301 +303 2 -44.04520234869406 -230.43522576583686 3.9265 0.1144 302 +304 2 -44.659902581356505 -231.25812340350313 3.5769 0.1144 303 +305 2 -45.37563921495069 -232.90877019503637 3.2747 0.1144 304 +306 2 -45.68321138388512 -233.9124593003109 3.0434 0.1144 305 +307 2 -45.66867633981508 -235.18424734062876 2.8737 0.1144 306 +308 2 -45.44712812390248 -236.6415408319857 2.746 0.1144 307 +309 2 -45.424583007005076 -237.87940815275095 2.6325 0.1144 308 +310 2 -45.555678384980794 -239.01633088623905 2.5706 0.1144 309 +311 2 -45.48697730366608 -240.3503934540871 2.5642 0.1144 310 +312 2 -45.512885421886985 -241.582014591212 2.5601 0.1144 311 +313 2 -45.61727363430021 -242.73077075390665 2.5379 0.1144 312 +314 2 -45.76134569863171 -243.82647222056235 2.495 0.1144 313 +315 2 -45.92481968622677 -244.8862857169911 2.3873 0.1144 314 +316 2 -45.99768965874287 -246.05974154097368 2.2274 0.1144 315 +317 2 -45.346579754567756 -247.54569616931713 2.0682 0.1144 316 +318 2 -44.84820861747406 -248.05763469971856 1.7776 0.1144 317 +319 2 -45.75466336376011 -248.6884496028091 1.5327 0.1144 318 +320 2 -46.56027519892991 -249.2375258876682 1.3533 0.1144 319 +321 2 -47.06038616073387 -250.95505081685923 1.2342 0.1144 320 +322 2 -47.124398812475114 -252.30982467036273 1.1628 0.1144 321 +323 2 -47.62621037986787 -253.3155488637467 1.1248 0.1144 322 +324 2 -45.02327714369386 -209.90674759510813 9.1804 0.1144 284 +325 2 -46.121998880715275 -209.6980256101071 9.0268 0.1144 324 +326 2 -47.19850303350754 -209.5923241796334 8.8715 0.1144 325 +327 2 -48.151210423698885 -208.6895761583396 8.744 0.1144 326 +328 2 -49.02936218076104 -207.95061521727825 8.5241 0.1144 327 +329 2 -49.741437893889646 -207.44012116008832 8.29 0.1144 328 +330 2 -50.68029786498927 -206.05972717884262 8.0963 0.1144 329 +331 2 -51.7102466897161 -206.17598031215022 7.9517 0.1144 330 +332 2 -52.606349553015725 -204.73479772283082 7.847 0.1144 331 +333 2 -53.29104071207593 -204.1445821184549 7.7741 0.1144 332 +334 2 -53.84404490819639 -203.2128922929292 7.73 0.1144 333 +335 2 -54.72874940716541 -201.92882949290612 7.6235 0.1144 334 +336 2 -55.83509773390148 -202.18796681807055 7.5314 0.1144 335 +337 2 -56.95830013036485 -201.5147124438018 7.4668 0.1144 336 +338 2 -57.992321148995146 -201.33946175037522 7.4298 0.1144 337 +339 2 -58.819085077342784 -200.53234970798786 7.4194 0.1144 338 +340 2 -59.65715262246566 -200.2428143803191 7.4336 0.1144 339 +341 2 -60.65892708588194 -198.80873407295664 7.4697 0.1144 340 +342 2 -61.695293045077086 -199.14167359114555 7.5704 0.1144 341 +343 2 -62.73094055378279 -197.79002930751233 7.6772 0.1144 342 +344 2 -63.86763171507231 -198.3821126076361 7.7631 0.1144 343 +345 2 -64.94270310717599 -198.32400910862117 7.8286 0.1144 344 +346 2 -66.03332953604114 -199.03968808428812 7.8759 0.1144 345 +347 2 -67.16219375130495 -199.12289534749834 7.9082 0.1144 346 +348 2 -68.09752768942982 -199.93754474824874 7.9294 0.1144 347 +349 2 -69.08968358976597 -200.37424340557948 7.9526 0.1144 348 +350 2 -69.17223024731042 -201.32934575882135 6.8208 0.1144 349 +351 2 -69.74952681974689 -202.82967698692391 6.004 0.1144 350 +352 2 -70.67197782269855 -202.56509537715596 5.6962 0.1144 351 +353 2 -71.60499376409467 -204.23160978967758 5.3019 0.1144 352 +354 2 -72.46098624193223 -204.2913602119113 4.8538 0.1144 353 +355 2 -73.05368656525641 -205.33342291161586 4.3404 0.1144 354 +356 2 -72.1793936370419 -205.47219182273614 3.7849 0.1144 355 +357 2 -71.62164567211975 -207.037874657656 3.2916 0.1144 356 +358 2 -70.70537931460954 -206.75683637886766 2.858 0.1144 357 +359 2 -69.60222898999345 -208.11980983848537 2.5577 0.1144 358 +360 2 -68.59569733991465 -207.5836190229565 2.3643 0.1144 359 +361 2 -67.92081160682596 -209.29974452893842 2.2543 0.1144 360 +362 2 -66.86102216118869 -209.39017818616338 2.2001 0.1144 361 +363 2 -65.75948520487333 -210.20755449296587 2.1614 0.1144 362 +364 2 -64.6662295362625 -209.71382070494857 2.0858 0.1144 363 +365 2 -63.636975973322684 -211.03671054345463 2.0499 0.1144 364 +366 2 -62.60139251320266 -210.80086634622984 2.052 0.1144 365 +367 2 -61.61335730346196 -212.18450060435714 2.0943 0.1144 366 +368 2 -60.68147042256034 -211.9980962631809 2.2537 0.1144 367 +369 2 -59.73774119866313 -212.68176301421738 2.5227 0.1144 368 +370 2 -58.83591922144296 -213.28834803098792 2.7393 0.1144 369 +371 2 -57.93979918514896 -213.78323839370026 2.8654 0.1144 370 +372 2 -57.07832206963111 -214.29268764592157 2.9002 0.1144 371 +373 2 -56.26770007231547 -215.28096943876847 2.8482 0.1144 372 +374 2 -55.458704268988996 -216.51939966684847 2.7029 0.1144 373 +375 2 -54.91088421570235 -216.97575280997418 2.3774 0.1144 374 +376 2 -54.27978602167767 -217.95916984968335 1.945 0.1144 375 +377 2 -53.41761690132003 -219.23152254659504 1.5587 0.1144 376 +378 2 -52.5818811749873 -219.48692025556454 1.2498 0.1144 377 +379 2 -51.68419919539 -220.85802228352338 0.9707 0.1144 378 +380 2 -50.83001370221012 -221.10678782142162 0.758 0.1144 379 +381 2 -50.0218008961452 -222.2994582045076 0.6115 0.1144 380 +382 2 -49.215288695669074 -223.3816004209717 0.4916 0.1144 381 +383 2 -48.406296445375965 -223.66725721277652 0.4172 0.1144 382 +384 2 -47.7450930234439 -225.34923233406727 0.4579 0.1144 383 +385 2 -47.137265333328045 -226.32080166044045 0.5001 0.1144 384 +386 2 -46.36619888865906 -226.6142053789241 0.6024 0.1144 385 +387 2 -45.558836385388524 -228.36405339927597 0.7618 0.1144 386 +388 2 -45.03278608854649 -229.0839583167971 1.071 0.1144 387 +389 2 -44.05196838563032 -229.39271564309962 1.3257 0.1144 388 +390 2 -43.208259893320104 -230.79270266156473 1.58 0.1144 389 +391 2 -42.868686097496294 -231.6358023895788 1.747 0.1144 390 +392 2 -42.289943769138006 -232.18045086758707 1.7757 0.1144 391 +393 2 -42.234108746088125 -233.50026180454816 1.725 0.1144 392 +394 2 -41.82263128486782 -235.12340585490256 1.6134 0.1144 393 +395 2 -41.306959688306776 -236.7175623449732 1.4733 0.1144 394 +396 2 -41.61536854007451 -237.60363844022004 1.3694 0.1144 395 +397 2 -42.08157881246631 -238.23922712718488 1.3158 0.1144 396 +398 2 -42.09146698713277 -239.39502102198816 1.3115 0.1144 397 +399 2 -41.634843360717255 -240.9756203656755 1.3449 0.1144 398 +400 2 -42.283515141358 -241.18398138552863 1.4126 0.1144 399 +401 2 -43.335121543364494 -242.23807299465543 1.5455 0.1144 400 +402 2 -44.30698057007024 -240.65873730639433 1.7344 0.1144 401 +403 2 -44.99154342985879 -240.31583965971913 1.9478 0.1144 402 +404 2 -45.74969694067158 -239.33147518539198 2.1404 0.1144 403 +405 2 -46.548954825659735 -237.90943252356385 2.2839 0.1144 404 +406 2 -47.02426794055742 -237.34497499396522 2.3055 0.1144 405 +407 2 -47.074800884515696 -236.31457869285308 2.8118 0.1144 406 +408 2 -69.57093387863159 -200.95795693529328 7.9824 0.1144 349 +409 2 -70.63144571294826 -200.4710458479746 8.0182 0.1144 408 +410 2 -71.73055348974279 -201.55699854327426 8.0929 0.1144 409 +411 2 -72.85212238404992 -200.42172430000946 8.2002 0.1144 410 +412 2 -73.40078267320321 -200.0562415627188 8.2981 0.1144 411 +413 2 -74.0603059194882 -199.16603446626198 8.3715 0.1144 412 +414 2 -74.82978673396507 -197.51259739877852 8.4173 0.1144 413 +415 2 -75.77021871529573 -197.72533407239 8.4981 0.1144 414 +416 2 -76.74859367524482 -196.2142849816135 8.5406 0.1144 415 +417 2 -77.85886250581004 -196.8149749788227 8.5333 0.1144 416 +418 2 -78.98242725515772 -196.09282397936636 8.4213 0.1144 417 +419 2 -80.09618232521382 -196.84301794381184 8.2164 0.1144 418 +420 2 -81.20479466702074 -196.0826717764836 7.9832 0.1144 419 +421 2 -82.30636893018607 -196.19395054615472 7.7596 0.1144 420 +422 2 -83.44526261462124 -196.67640571498669 7.6014 0.1144 421 +423 2 -84.58990916679346 -196.1055858674356 7.5104 0.1144 422 +424 2 -85.57150986697116 -196.11002319575812 7.4805 0.1144 423 +425 2 -86.52901195277519 -194.78572959728282 7.5046 0.1144 424 +426 2 -87.63356818331434 -194.1112324120557 7.6172 0.1144 425 +427 2 -88.65540182464457 -193.60945137634965 7.713 0.1144 426 +428 2 -89.50154674812768 -192.82440410580602 7.7875 0.1144 427 +429 2 -90.56279352468539 -192.28619393131584 7.8458 0.1144 428 +430 2 -91.70346944049007 -192.23795008601795 7.8879 0.1144 429 +431 2 -92.7598363426211 -191.97137277786743 7.8928 0.1144 430 +432 2 -93.64140688805583 -191.08354991778032 7.8812 0.1144 431 +433 2 -94.62764249133232 -190.60791115831316 7.9392 0.1144 432 +434 2 -95.72023788791684 -190.6879647984744 8.1159 0.1144 433 +435 2 -96.79491237904709 -191.08382052561603 8.3802 0.1144 434 +436 2 -97.92035766035292 -190.6873939270764 8.6603 0.1144 435 +437 2 -98.55018590357886 -190.1436897631639 8.9015 0.1144 436 +438 2 -99.30254542815615 -189.77836477743864 9.107 0.1144 437 +439 2 -100.43551312846539 -189.8590627640927 9.2797 0.1144 438 +440 2 -101.42560468879898 -189.46126090621786 9.4319 0.1144 439 +441 2 -102.19663737965138 -188.3814855915688 9.6473 0.1144 440 +442 2 -103.21989424548445 -188.6913230471627 9.8844 0.1144 441 +443 2 -104.18702326893504 -188.07822469550274 10.2877 0.1144 442 +444 2 -105.20007766223779 -188.51474262353906 10.6458 0.1144 443 +445 2 -105.72057833295594 -188.32959288280583 10.6848 0.1144 444 +446 2 -106.6688930086563 -188.97255887778852 10.7472 0.1144 445 +447 2 -107.78727716820356 -189.18096994628766 10.7717 0.1144 446 +448 2 -108.88970173416327 -189.02384038096926 10.8015 0.1144 447 +449 2 -109.86245182956083 -188.14947721306316 10.8356 0.1144 448 +450 2 -110.88672821385809 -187.76154044599528 10.9525 0.1144 449 +451 2 -111.86033186899724 -187.02171216090687 11.0428 0.1144 450 +452 2 -112.57200199575415 -186.40729136200247 11.1068 0.1144 451 +453 2 -113.70414519514678 -186.65003471695755 11.1449 0.1144 452 +454 2 -114.80814226952396 -186.00213049873977 11.1572 0.1144 453 +455 2 -115.90001947423423 -185.8342985662965 11.1427 0.1144 454 +456 2 -117.02240832005177 -186.04205829406638 11.1003 0.1144 455 +457 2 -118.04952455038983 -185.61421216247982 11.0426 0.1144 456 +458 2 -118.8833461930482 -184.8301607072692 10.9682 0.1144 457 +459 2 -119.98483251863867 -184.64298867473985 10.8477 0.1144 458 +460 2 -120.98890454884211 -184.0452205145017 10.6693 0.1144 459 +461 2 -121.8228481789779 -183.32086825288434 10.4514 0.1144 460 +462 2 -122.36436627529329 -181.89663506907473 10.1976 0.1144 461 +463 2 -122.65708282920473 -180.70531341668215 9.9965 0.1144 462 +464 2 -122.83424349000802 -179.51237410851948 9.8703 0.1144 463 +465 2 -123.09536087852838 -178.39507866739632 9.8187 0.1144 464 +466 2 -123.57242572792612 -177.48137465108908 9.8348 0.1144 465 +467 2 -123.99119836451776 -176.08046881682134 9.9075 0.1144 466 +468 2 -124.52720982862544 -174.62793264335855 10.0278 0.1144 467 +469 2 -125.23846573582905 -173.98274566868503 10.2471 0.1144 468 +470 2 -125.61593463830724 -173.07060668336274 10.5594 0.1144 469 +471 2 -125.28314994158063 -171.6678343452635 10.8798 0.1144 470 +472 2 -125.05656160354425 -170.27321484814934 11.2276 0.1144 471 +473 2 -125.48090767969005 -169.42092729495724 11.6703 0.1144 472 +474 2 -126.17512753232299 -168.30409509522977 12.1551 0.1144 473 +475 2 -127.23414760065981 -168.06225417002128 12.5717 0.1144 474 +476 2 -128.10262942615924 -168.32978376126036 12.3721 0.1144 475 +477 2 -129.21288789371064 -167.92636987077668 12.433 0.1144 476 +478 2 -130.2686620879634 -167.5015834159974 12.4571 0.1144 477 +479 2 -131.0355917919568 -166.23142455087395 12.4921 0.1144 478 +480 2 -131.72106920522577 -165.96310422921596 12.5411 0.1144 479 +481 2 -132.74834443380513 -164.68923290341127 12.6059 0.1144 480 +482 2 -132.3250373852512 -164.4286701637597 12.6865 0.1144 481 +483 2 -131.5631251515706 -163.61888367794666 12.8263 0.1144 482 +484 2 -130.83848402552417 -161.9456630556666 13.0602 0.1144 483 +485 2 -130.137503052708 -161.72849402757032 13.2928 0.1144 484 +486 2 -129.28398756984046 -160.44969104822943 13.4937 0.1144 485 +487 2 -128.4078646513222 -159.7312935602788 13.6639 0.1144 486 +488 2 -127.56006828237514 -159.0942621325081 13.8521 0.1144 487 +489 2 -126.74467776296952 -157.59347518375236 14.0821 0.1144 488 +490 2 -126.21284614648343 -156.8567667386243 14.281 0.1144 489 +491 2 -125.8421830179104 -155.77334440200258 14.4299 0.1144 490 +492 2 -125.41731358438165 -154.23504783948167 14.537 0.1144 491 +493 2 -124.86043504622492 -152.87355680928167 14.6065 0.1144 492 +494 2 -124.81835124315546 -151.64247346505763 14.6432 0.1144 493 +495 2 -124.99141247013307 -150.2137117681852 14.6603 0.1144 494 +496 2 -125.36738012696064 -149.22457206914754 14.676 0.1144 495 +497 2 -125.64631331036594 -148.19701989237842 14.6971 0.1144 496 +498 2 -126.25337488012858 -147.37236520162293 14.7246 0.1144 497 +499 2 -126.22744988499934 -146.15046334927197 14.7724 0.1144 498 +500 2 -126.51435583438214 -144.74060955224124 14.8366 0.1144 499 +501 2 -126.59355710526904 -143.43977900186994 14.9133 0.1144 500 +502 2 -126.03013569003284 -142.6044180889049 14.9988 0.1144 501 +503 2 -125.03380524398474 -141.4452738953509 15.09 0.1144 502 +504 2 -124.07775954924321 -142.4854977570357 15.7461 0.1144 503 +505 2 -127.5634350701538 -167.94105447868446 12.9957 0.1144 475 +506 2 -128.22943949949268 -166.6026543075493 13.4855 0.1144 505 +507 2 -128.9139008017454 -165.1717248606289 14.0219 0.1144 506 +508 2 -129.64779769631605 -165.0079680398936 14.4617 0.1144 507 +509 2 -130.3176689439123 -163.7383573785769 14.9403 0.1144 508 +510 2 -130.81813003983007 -162.07498552536612 15.3584 0.1144 509 +511 2 -131.52774307823648 -161.67878160079024 15.6121 0.1144 510 +512 2 -132.47553803865767 -160.80382358811877 15.7213 0.1144 511 +513 2 -133.19485494549966 -159.50832267893108 15.6841 0.1144 512 +514 2 -133.53681730053228 -158.68944742117864 15.4795 0.1144 513 +515 2 -133.90224696275138 -157.90240990120583 15.1676 0.1144 514 +516 2 -134.44310079233554 -156.48639270135328 14.9005 0.1144 515 +517 2 -134.9815554975967 -154.77048585246004 14.6922 0.1144 516 +518 2 -135.54577883196504 -153.13146950491347 14.5167 0.1144 517 +519 2 -136.26998823682197 -151.8031699784853 14.3571 0.1144 518 +520 2 -137.06853753614817 -151.54186555677757 14.2596 0.1144 519 +521 2 -137.67965166414518 -150.0791158307684 14.2092 0.1144 520 +522 2 -138.01200795314446 -148.5979141049624 14.187 0.1144 521 +523 2 -138.18902669471504 -147.22828175921416 14.1907 0.1144 522 +524 2 -138.79446532743563 -146.5658412639134 14.2241 0.1144 523 +525 2 -139.0790535761758 -145.5391738752967 14.3049 0.1144 524 +526 2 -139.34751982563918 -144.50377558887647 14.4162 0.1144 525 +527 2 -139.56425972597802 -143.03110614876135 14.5067 0.1144 526 +528 2 -139.59578720597472 -141.7316466770667 14.5808 0.1144 527 +529 2 -139.4767784420357 -140.63303047428423 14.6398 0.1144 528 +530 2 -139.17313684385815 -139.24990088578843 14.6451 0.1144 529 +531 2 -139.57653948337875 -138.2515640555237 14.6769 0.1144 530 +532 2 -140.2820452816061 -136.64824648689532 14.7698 0.1144 531 +533 2 -139.8962000152262 -136.98976404509258 14.9276 0.1144 532 +534 2 -139.05284336720104 -137.7001865871927 15.7461 0.1144 533 +535 2 -112.14158026641124 -187.2539847305756 11.6753 0.1144 451 +536 2 -112.47828566906732 -188.4910088434764 12.0056 0.1144 535 +537 2 -112.78506477381248 -189.9434219169583 12.1327 0.1144 536 +538 2 -113.28206802563147 -191.48893356980668 12.2308 0.1144 537 +539 2 -113.661584921946 -192.55131194472898 12.3019 0.1144 538 +540 2 -113.96021884461162 -193.4529226188455 12.3484 0.1144 539 +541 2 -114.09608523131124 -194.56189730935026 12.3727 0.1144 540 +542 2 -114.07438991902183 -195.85644787645487 12.3776 0.1144 541 +543 2 -113.77843074797356 -197.40711465397018 12.3796 0.1144 542 +544 2 -114.0333660655228 -198.31312015819526 12.382 0.1144 543 +545 2 -114.54331274806728 -199.63726085686645 12.3875 0.1144 544 +546 2 -114.84195673766067 -201.19500926122345 12.395 0.1144 545 +547 2 -115.26201785561565 -202.48998852443736 12.4009 0.1144 546 +548 2 -115.69092297047058 -203.46342390625327 12.4053 0.1144 547 +549 2 -116.20653152833044 -204.37621295225165 12.4082 0.1144 548 +550 2 -116.40731768554323 -205.64444021208232 12.5236 0.1144 549 +551 2 -116.09043600599784 -206.72221742893205 12.5081 0.1144 550 +552 2 -115.65470143034895 -208.14060977251103 12.3721 0.1144 551 +553 2 -105.36428526705927 -187.60245776612865 10.967 0.1144 444 +554 2 -105.54365575917521 -186.2400194247667 11.3555 0.1144 553 +555 2 -105.69402536806095 -184.85153835843698 11.7531 0.1144 554 +556 2 -105.64697139842977 -183.64534953427054 12.1014 0.1144 555 +557 2 -105.40096100327436 -182.67225115603284 12.4947 0.1144 556 +558 2 -104.93957897821156 -181.27049797985688 12.9347 0.1144 557 +559 2 -104.27732744032292 -179.45140443972355 13.3384 0.1144 558 +560 2 -103.35825105239846 -179.59963158484214 13.8449 0.1144 559 +561 2 -102.3010360189769 -178.7115368437886 14.3467 0.1144 560 +562 2 -101.71405707444578 -179.6104550827249 14.9513 0.1144 561 +563 2 -100.85087841348124 -180.22474119436134 15.6549 0.1144 562 +564 2 -100.03058985457986 -180.77781131177426 16.2726 0.1144 563 +565 2 -99.60461353322509 -182.12281639158542 16.7785 0.1144 564 +566 2 -99.73908308455658 -183.27604376358306 17.1947 0.1144 565 +567 2 -99.84786938769514 -184.3018236097506 17.6404 0.1144 566 +568 2 -99.57954200261756 -185.58115537790115 18.0386 0.1144 567 +569 2 -99.37497941265107 -186.91060448748334 18.357 0.1144 568 +570 2 -98.84311830918008 -188.07287535387718 18.6144 0.1144 569 +571 2 -98.3030747167796 -188.95075459373948 18.7825 0.1144 570 +572 2 -98.0953267482814 -190.1250057829935 18.8675 0.1144 571 +573 2 -98.093748754898 -191.40363442561673 18.8271 0.1144 572 +574 2 -97.59909471047558 -192.60379208438243 18.7434 0.1144 573 +575 2 -97.45439408297189 -193.88121490431777 18.6643 0.1144 574 +576 2 -97.45687821656426 -195.16040499486516 18.5977 0.1144 575 +577 2 -97.45936264624274 -196.43975878242244 18.5493 0.1144 576 +578 2 -97.46092591456059 -197.7216743714842 18.518 0.1144 577 +579 2 -97.46348090671911 -199.00289388444887 18.5023 0.1144 578 +580 2 -97.46589447783141 -200.2849305490147 18.4908 0.1144 579 +581 2 -97.46837861142376 -201.56783270536863 18.4792 0.1144 580 +582 2 -97.47001273830787 -202.85292255121215 18.4676 0.1144 581 +583 2 -97.47242630942013 -204.1360226676033 18.456 0.1144 582 +584 2 -97.47491044301248 -205.4212660690363 18.4445 0.1144 583 +585 2 -97.47739487269091 -206.70755872069617 18.4329 0.1144 584 +586 2 -97.47902870348888 -207.9955098089394 18.4213 0.1144 585 +587 2 -97.48151313316737 -209.28291139026425 18.4097 0.1144 586 +588 2 -97.48392670427963 -210.5715434138785 18.3981 0.1144 587 +589 2 -97.486410837872 -211.86074281800165 18.3866 0.1144 588 +590 2 -97.4872687774751 -213.1507659154331 18.375 0.1144 589 +591 2 -97.48968234858737 -214.4413909535204 18.3634 0.1144 590 +592 2 -97.4921664821797 -215.73283567232772 18.3518 0.1144 591 +593 2 -97.49465091185817 -217.02487632220402 18.3403 0.1144 592 +594 2 -97.49621418017607 -218.31926224576574 18.3287 0.1144 593 +595 2 -97.49876917233462 -219.6130268950026 18.3171 0.1144 594 +596 2 -97.50118274344689 -220.90768055034414 18.3055 0.1144 595 +597 2 -97.50366687703922 -222.20270358227077 18.2939 0.1144 596 +598 2 -97.50530100392331 -223.4998392648742 18.2823 0.1144 597 +599 2 -97.50771457503558 -224.7967991658399 18.2708 0.1144 598 +600 2 -97.5101987086279 -226.1057435562878 18.2592 0.1144 599 +601 2 -97.51268313830639 -227.4155211860529 18.2476 0.1144 600 +602 2 -97.51438782767056 -228.71759594225415 18.236 0.1144 601 +603 2 -97.51680139878283 -230.0184056093918 18.2244 0.1144 602 +604 2 -97.51921496989505 -231.3190929040381 18.2129 0.1144 603 +605 2 -97.52085235372638 -232.61843015430455 18.2013 0.1144 604 +606 2 -97.52255704309053 -233.91933807281765 18.1897 0.1144 605 +607 2 -97.52497061420283 -235.21900388320708 18.1781 0.1144 606 +608 2 -97.52752560636135 -236.51798363385598 18.1665 0.1144 607 +609 2 -97.52993917747366 -237.81700691207362 18.1549 0.1144 608 +610 2 -97.53157330435769 -239.11659907746787 18.1432 0.1144 609 +611 2 -97.53405743795011 -240.41690309430163 18.1316 0.1144 610 +612 2 -97.53647100906232 -241.7150525001286 18.1199 0.1144 611 +613 2 -97.53895514265467 -243.01263788522607 18.1082 0.1144 612 +614 2 -97.54058926953877 -244.31116989556313 18.0965 0.1144 613 +615 2 -97.54300284065104 -245.60848555996694 18.0847 0.1144 614 +616 2 -97.5455578328096 -246.9050905239602 18.0728 0.1144 615 +617 2 -97.54797140392182 -248.20174004526143 18.0608 0.1144 616 +618 2 -97.54967609328605 -249.49936875981376 18.0485 0.1144 617 +619 2 -97.55208966439827 -250.79565136168821 18.0361 0.1144 618 +620 2 -97.55450323551058 -252.0914152909695 18.0233 0.1144 619 +621 2 -97.55620792487473 -253.38809884108304 18.01 0.1144 620 +622 2 -97.55784530870602 -254.68267533640767 17.9959 0.1144 621 +623 2 -97.50688264981562 -255.98293195001168 17.9808 0.1144 622 +624 2 -97.38566926125367 -257.2797359748906 17.9651 0.1144 623 +625 2 -97.64787201606558 -258.4804193034595 17.9473 0.1144 624 +626 2 -98.0152821644879 -259.58136221487007 17.9257 0.1144 625 +627 2 -98.2353986861113 -260.8415969011879 17.8954 0.1144 626 +628 2 -98.31143035027026 -262.1624612608025 17.8533 0.1144 627 +629 2 -98.51463506537486 -263.5059493461973 17.7979 0.1144 628 +630 2 -98.829401054245 -264.86468005297974 17.7294 0.1144 629 +631 2 -99.0649175716224 -266.22366629535975 17.6364 0.1144 630 +632 2 -99.25881487759332 -267.19472212516416 17.4 0.1144 631 +633 2 -99.5314878232944 -268.36346346414194 17.1957 0.1144 632 +634 2 -99.64069116126191 -269.6112003679812 17.0347 0.1144 633 +635 2 -99.98143174705771 -270.6089980944163 16.9117 0.1144 634 +636 2 -100.10046725273244 -271.94983067093244 16.8187 0.1144 635 +637 2 -100.19346766592926 -273.29183022537194 16.7537 0.1144 636 +638 2 -100.21780327573275 -274.61044888787865 16.712 0.1144 637 +639 2 -100.5407111897352 -276.00400588156737 16.6655 0.1144 638 +640 2 -101.11619197908601 -277.28543417163854 16.5413 0.1144 639 +641 2 -101.72093004810993 -278.0966481246632 16.3086 0.1144 640 +642 2 -102.15915004255426 -177.96894151683028 14.2359 0.1144 561 +643 2 -101.91801902363912 -176.8557666850793 14.5908 0.1144 642 +644 2 -101.67604125496298 -175.7480633262108 14.7444 0.1144 643 +645 2 -101.43491023604788 -174.65427008164852 14.9149 0.1144 644 +646 2 -101.19455866136094 -173.49586843046671 15.0889 0.1144 645 +647 2 -100.95342764244585 -172.09605883974865 15.2546 0.1144 646 +648 2 -101.31079680321302 -171.09456410226107 15.3611 0.1144 647 +649 2 -101.7933952286545 -169.65944497905366 15.3338 0.1144 648 +650 2 -102.440886340747 -168.2679758234753 15.1838 0.1144 649 +651 2 -36.48798349608308 -208.2994271634689 5.8818 0.1144 113 +652 2 -37.60781072281789 -207.9120708383955 5.7767 0.1144 651 +653 2 -38.50231739081121 -207.3744230754178 5.6977 0.1144 652 +654 2 -39.283847216388864 -206.2703056682061 5.6119 0.1144 653 +655 2 -39.752766883707025 -204.73972649860852 5.5315 0.1144 654 +656 2 -40.06810399504389 -203.18008255443837 5.5064 0.1144 655 +657 2 -41.076261839111936 -202.85105962155848 5.5394 0.1144 656 +658 2 -41.597016608227825 -202.88436773919676 5.6998 0.1144 657 +659 2 -42.46641585899819 -201.17523603280932 5.944 0.1144 658 +660 2 -43.222123369896785 -200.92876158382876 6.1873 0.1144 659 +661 2 -43.42866493799551 -200.14247018078316 6.4525 0.1144 660 +662 2 -42.53053154502474 -198.46925012038636 6.6887 0.1144 661 +663 2 -41.75887438092496 -198.39065518304068 6.8815 0.1144 662 +664 2 -40.9200094482662 -197.11812216847602 7.0414 0.1144 663 +665 2 -40.24317772054858 -195.99745073235795 7.2504 0.1144 664 +666 2 -39.665257445177986 -195.55711694990885 7.4644 0.1144 665 +667 2 -39.71352056045775 -194.331514578069 7.7241 0.1144 666 +668 2 -40.529181354882596 -193.7650113119915 7.9695 0.1144 667 +669 2 -41.36612800706175 -195.27600938493617 8.3431 0.1144 668 +670 2 -42.211355322217614 -193.9120467851239 8.6321 0.1144 669 +671 2 -42.71420923066422 -192.5153036637695 8.8441 0.1144 670 +672 2 -43.30279379365756 -192.08476461362528 8.9982 0.1144 671 +673 2 -44.14565929134031 -190.9742481052753 9.11 0.1144 672 +674 2 -45.014414705321116 -190.02394378989408 9.2011 0.1144 673 +675 2 -45.82099095438292 -189.67593089338467 9.2808 0.1144 674 +676 2 -46.489168204270605 -188.07022769795842 9.3801 0.1144 675 +677 2 -47.512275697118625 -188.42136218029086 9.5122 0.1144 676 +678 2 -48.08900849396038 -187.39075472064553 9.8374 0.1144 677 +679 2 -48.860813320874065 -186.0365776866945 10.1496 0.1144 678 +680 2 -49.71898761978879 -185.95182128939535 10.3952 0.1144 679 +681 2 -50.72885308152646 -184.56295194425022 10.5811 0.1144 680 +682 2 -51.581432810658725 -184.441155647921 10.7159 0.1144 681 +683 2 -51.9508613455405 -183.2438295707699 10.8067 0.1144 682 +684 2 -52.410127276961546 -181.71249899125007 10.862 0.1144 683 +685 2 -53.193357708127905 -180.7039790897327 10.9157 0.1144 684 +686 2 -53.91505330935131 -180.23825856385463 11.05 0.1144 685 +687 2 -54.586706788317024 -178.72507798139878 11.2342 0.1144 686 +688 2 -55.13327617878832 -177.62824155926643 11.3638 0.1144 687 +689 2 -56.13983882392294 -177.42587868480922 11.4409 0.1144 688 +690 2 -56.85113203797647 -175.9007505008982 11.4265 0.1144 689 +691 2 -57.55659421755978 -175.41865263717392 11.2814 0.1144 690 +692 2 -58.20655856948868 -174.45037408453854 11.1645 0.1144 691 +693 2 -58.835454442468034 -173.05992058562464 11.0941 0.1144 692 +694 2 -59.040803286643246 -172.01046010608854 11.0896 0.1144 693 +695 2 -59.740741755010234 -171.77875039396505 11.1686 0.1144 694 +696 2 -60.84524735482448 -170.70419417967767 11.369 0.1144 695 +697 2 -61.76709446005583 -170.93422847166585 11.5931 0.1144 696 +698 2 -62.14460718327837 -169.60655566360782 11.8628 0.1144 697 +699 2 -62.37966459395875 -168.26663736918513 12.2985 0.1144 698 +700 2 -62.829030351852964 -166.72326406802716 12.7485 0.1144 699 +701 2 -63.44905222924943 -166.1184082304485 13.0938 0.1144 700 +702 2 -64.01653505766296 -165.49388885512752 13.3465 0.1144 701 +703 2 -64.62370804978895 -163.76494998704186 13.5245 0.1144 702 +704 2 -65.07642123930307 -162.30102585812065 13.6458 0.1144 703 +705 2 -65.28750281735987 -161.2809903535124 13.7438 0.1144 704 +706 2 -65.43055050913856 -160.19096592919016 13.8608 0.1144 705 +707 2 -65.38199814660335 -158.8721623624196 13.9653 0.1144 706 +708 2 -65.23303684120411 -157.44036866428252 13.9737 0.1144 707 +709 2 -64.97732257761308 -156.13530525171444 13.9135 0.1144 708 +710 2 -64.54906485258108 -155.51371157679793 13.7483 0.1144 709 +711 2 -63.81693600120583 -154.90771400700044 13.5255 0.1144 710 +712 2 -63.19756000556133 -153.20285007153328 13.3584 0.1144 711 +713 2 -62.818053176174544 -152.15532685472544 13.2617 0.1144 712 +714 2 -62.5436799209708 -151.2382253622963 13.241 0.1144 713 +715 2 -62.52017418402008 -150.02425435166265 13.285 0.1144 714 +716 2 -62.09674470631712 -149.39344049250883 13.3825 0.1144 715 +717 2 -61.70487453049474 -147.87211451104835 13.5911 0.1144 716 +718 2 -62.07816888726104 -147.18275299073014 13.9475 0.1144 717 +719 2 -62.53339262346154 -145.65745841614006 14.2505 0.1144 718 +720 2 -62.84229848218256 -144.11757021169583 14.4897 0.1144 719 +721 2 -63.097001494995425 -142.6337103633931 14.6723 0.1144 720 +722 2 -63.2070058122372 -141.292454156352 14.8063 0.1144 721 +723 2 -63.208550253904335 -140.03864444786387 14.9038 0.1144 722 +724 2 -63.266733972652574 -138.79084080561898 15.0073 0.1144 723 +725 2 -63.56108027358658 -137.88461882660926 15.1401 0.1144 724 +726 2 -63.43079838974167 -136.47165086292517 15.2968 0.1144 725 +727 2 -62.748372294341834 -135.82737592835048 15.4772 0.1144 726 +728 2 -62.19693563952042 -135.32569188395973 15.8234 0.1144 727 +729 2 -61.64549543166564 -133.7367359484577 16.9422 0.1144 728 +730 2 -41.131308436449196 -202.44085176982242 5.0613 0.1144 657 +731 2 -41.28655742157518 -201.34756539535107 4.9058 0.1144 730 +732 2 -42.05302947042763 -200.37274837368273 4.8041 0.1144 731 +733 2 -43.1650401141506 -200.68704560041382 4.7 0.1144 732 +734 2 -43.569076523532964 -199.9893724137737 4.6193 0.1144 733 +735 2 -43.64181980006831 -198.70453699101245 4.5607 0.1144 734 +736 2 -44.435432686649364 -196.9351805076319 4.5224 0.1144 735 +737 2 -45.042605678775274 -196.17538015092376 4.499 0.1144 736 +738 2 -7.353293457742804 -229.9308558986325 13.4958 0.1144 77 +739 2 -6.845662228778178 -231.1400069756658 13.3274 0.1144 738 +740 2 -6.512583936256174 -232.67064054640872 13.2716 0.1144 739 +741 2 -6.635561075988477 -233.75233089660753 13.2919 0.1144 740 +742 2 -6.592946512149059 -234.97266170821388 13.3352 0.1144 741 +743 2 -6.098184100210208 -236.43638718139795 13.375 0.1144 742 +744 2 -5.277139783969517 -236.48718314590946 13.4635 0.1144 743 +745 2 -4.504683516013184 -237.78711948593815 13.6886 0.1144 744 +746 2 -4.309205142768004 -239.13467054582534 13.9816 0.1144 745 +747 2 -3.9050467459080807 -240.2840983037944 14.2719 0.1144 746 +748 2 -3.1590095517288432 -240.54346362473223 14.5221 0.1144 747 +749 2 -2.4016690368604685 -241.98045733139088 14.7178 0.1144 748 +750 2 -1.2967537103841877 -241.5130345913514 15.1838 0.1144 749 +751 2 -8.92797176129478 -228.04598118119333 14.3983 0.1144 75 +752 2 -8.764692273399804 -229.45159986074992 14.5228 0.1144 751 +753 2 -8.854443555565318 -230.6024971561676 14.5665 0.1144 752 +754 2 -8.184565497988562 -232.13970541181405 14.6029 0.1144 753 +755 2 -7.482996582312229 -232.48125879643933 14.6332 0.1144 754 +756 2 -6.626469405514804 -233.48696388740885 14.6593 0.1144 755 +757 2 -5.581107961445735 -233.92574995653953 14.6829 0.1144 756 +758 2 -4.469229611699248 -234.35574429883275 14.7077 0.1144 757 +759 2 -3.3361230470041647 -233.8437040183041 14.7435 0.1144 758 +760 2 -2.2027661955599562 -234.42991928557007 14.793 0.1144 759 +761 2 -1.1439253533057396 -234.25155677024475 14.8573 0.1144 760 +762 2 -0.05529452086602049 -235.12093028454416 14.9363 0.1144 761 +763 2 1.0210233372478896 -234.4063951289926 15.0964 0.1144 762 +764 2 2.12580009542447 -234.75557379992227 15.3237 0.1144 763 +765 2 3.228075932170942 -234.61517921189585 15.5337 0.1144 764 +766 2 4.307209066093755 -235.4105730633895 15.7104 0.1144 765 +767 2 5.110478447332753 -235.93132418453942 15.8615 0.1144 766 +768 2 5.749918626714599 -237.24007875039212 15.9965 0.1144 767 +769 2 6.484594965513491 -238.23596407483257 16.1229 0.1144 768 +770 2 7.435605303149373 -238.6482272642644 16.2658 0.1144 769 +771 2 7.759633428852862 -239.72107540050445 16.5201 0.1144 770 +772 2 8.591829375708308 -240.47230065794366 16.821 0.1144 771 +773 2 8.976626709187947 -241.692623925335 17.2139 0.1144 772 +774 2 9.526367858229897 -242.82988305662025 17.5749 0.1144 773 +775 2 10.194782273092105 -243.69049447608754 17.8585 0.1144 774 +776 2 11.222968502118494 -244.17261713570093 18.0812 0.1144 775 +777 2 12.361913113364707 -244.15994003665645 18.2745 0.1144 776 +778 2 13.477782825506523 -244.33015881401187 18.4414 0.1144 777 +779 2 14.53991365867525 -244.80203539082376 18.5866 0.1144 778 +780 2 15.55698280517603 -245.2623707840225 18.7405 0.1144 779 +781 2 16.435296911412507 -246.1401170722337 18.8185 0.1144 780 +782 2 17.08035840231266 -246.91546797262168 18.8353 0.1144 781 +783 2 17.348746781129005 -248.1177968483238 18.8497 0.1144 782 +784 2 17.51446545895768 -249.3486477967386 18.9179 0.1144 783 +785 2 18.233643501413926 -250.47000322863437 19.0161 0.1144 784 +786 2 19.25793370777257 -250.67357519971148 19.1102 0.1144 785 +787 2 20.30245521206109 -251.5579849859871 19.2119 0.1144 786 +788 2 21.349372287639337 -251.64875605220328 19.3188 0.1144 787 +789 2 22.4635645828948 -252.23445736004663 19.427 0.1144 788 +790 2 23.542474669990643 -252.1182448008085 19.5385 0.1144 789 +791 2 24.342352502779192 -253.41559868600262 19.7676 0.1144 790 +792 2 25.2844177841657 -253.25547103971974 20.0277 0.1144 791 +793 2 26.22326087835702 -253.56324674573546 20.326 0.1144 792 +794 2 27.16379471330964 -254.75331942953318 20.5772 0.1144 793 +795 2 28.18332397787219 -254.82718216534414 20.7771 0.1144 794 +796 2 29.27208005473668 -255.65750453045143 20.9352 0.1144 795 +797 2 30.41021472488528 -255.3269524640183 21.0604 0.1144 796 +798 2 31.39580995041973 -256.1550349959155 21.1784 0.1144 797 +799 2 32.52173276210687 -255.91042639619627 21.3055 0.1144 798 +800 2 33.29249491932486 -255.97864068985683 21.6139 0.1144 799 +801 2 34.414060702270206 -255.5228222272704 21.9096 0.1144 800 +802 2 35.54700471569059 -255.57286812527042 22.1884 0.1144 801 +803 2 36.68160541996966 -255.19545596481987 22.4558 0.1144 802 +804 2 37.09174510762797 -255.29200342965424 22.8594 0.1144 803 +805 2 38.143358319615004 -255.3240750741951 23.3118 0.1144 804 +806 2 39.200515912331156 -254.7650018172053 23.7044 0.1144 805 +807 2 40.31159107444575 -254.66595500620133 24.097 0.1144 806 +808 2 41.399091060043794 -254.29719306094017 24.5075 0.1144 807 +809 2 42.28944799212831 -253.91793273063985 24.9705 0.1144 808 +810 2 43.07817132251154 -253.57988598071523 25.5004 0.1144 809 +811 2 43.77902942450713 -253.77396479428256 26.046 0.1144 810 +812 2 44.785474020354144 -252.99941788736322 26.5448 0.1144 811 +813 2 45.83702342332675 -251.75560714167153 26.9341 0.1144 812 +814 2 46.935700987002804 -252.07309599500695 27.2235 0.1144 813 +815 2 47.82736238050427 -251.61508427670617 27.672 0.1144 814 +816 2 47.30519682741742 -252.8195918853474 27.9166 0.1144 815 +817 2 46.800122509032335 -254.3038748130612 28.0697 0.1144 816 +818 2 46.480467279094455 -255.4228722460494 28.175 0.1144 817 +819 2 46.44154516766786 -256.64233575121364 28.2461 0.1144 818 +820 2 46.67847955727306 -257.89860924872 28.3212 0.1144 819 +821 2 46.87407360620165 -259.1610936664971 28.3926 0.1144 820 +822 2 47.14989878353589 -260.0553310270675 28.4626 0.1144 821 +823 2 47.54692129935195 -260.94872859949305 28.5048 0.1144 822 +824 2 48.15795805488838 -262.19201557089417 28.5166 0.1144 823 +825 2 48.988807797100606 -263.29093054712087 28.4987 0.1144 824 +826 2 49.82200653109736 -263.6558007560576 28.4528 0.1144 825 +827 2 50.74307794723413 -264.8296485630712 28.327 0.1144 826 +828 2 51.563322887491445 -265.31394502734594 28.1809 0.1144 827 +829 2 52.53284023057961 -266.1808662070868 28.0417 0.1144 828 +830 2 53.60872749041836 -266.3943529276612 27.9069 0.1144 829 +831 2 54.726322195324556 -266.8688391520529 27.7735 0.1144 830 +832 2 55.836455418451216 -266.7784656802162 27.5649 0.1144 831 +833 2 56.89932463386456 -267.3812541829025 27.3052 0.1144 832 +834 2 57.90270515741462 -267.7696059563272 27.0614 0.1144 833 +835 2 58.94881910187581 -268.4201707427469 26.8229 0.1144 834 +836 2 60.00217729489727 -268.74336441911925 26.5975 0.1144 835 +837 2 61.055464629352514 -269.3411087289315 26.3959 0.1144 836 +838 2 62.146599696684525 -269.55591882127766 26.2472 0.1144 837 +839 2 63.240878784478554 -268.7907899840313 26.2126 0.1144 838 +840 2 64.30058049464131 -270.2584373704175 26.2204 0.1144 839 +841 2 65.31447838075788 -270.3918910389412 26.2338 0.1144 840 +842 2 66.30499008728223 -271.4286609203316 26.238 0.1144 841 +843 2 67.29635209660096 -271.6650834052866 26.2183 0.1144 842 +844 2 68.1409010268781 -272.67556881046056 26.1628 0.1144 843 +845 2 68.7067472982885 -274.0074987285096 26.0665 0.1144 844 +846 2 69.2880034302804 -274.6198009124205 25.9386 0.1144 845 +847 2 69.14530020459323 -275.4096279805565 25.7345 0.1144 846 +848 2 68.92749525487463 -275.9463177305641 25.3589 0.1144 847 +849 2 69.76607132543462 -276.19868727427024 24.9918 0.1144 848 +850 2 70.7525609705939 -277.3838753609453 24.6627 0.1144 849 +851 2 71.76963367012803 -277.30230428837007 24.3246 0.1144 850 +852 2 72.79549588671775 -278.4542190537353 23.9764 0.1144 851 +853 2 73.72719934473156 -278.4415647091419 23.6802 0.1144 852 +854 2 74.22518720081288 -280.00421038159834 23.4434 0.1144 853 +855 2 74.96949329253394 -281.00047672303305 23.2333 0.1144 854 +856 2 75.6694355160346 -281.304768590934 22.9592 0.1144 855 +857 2 75.74272462485692 -282.4571775288929 22.5734 0.1144 856 +858 2 75.95783152122597 -283.9054613177954 22.2523 0.1144 857 +859 2 76.3904616438371 -285.54315416833765 21.9911 0.1144 858 +860 2 77.06781756191532 -286.23408974142046 21.7799 0.1144 859 +861 2 77.75803223009152 -286.7853853228097 21.5297 0.1144 860 +862 2 78.61790002852837 -288.48516328206387 21.3355 0.1144 861 +863 2 79.70180772420838 -287.91295237483564 21.1722 0.1144 862 +864 2 80.49742638717228 -289.8937027319315 22.2193 0.1144 863 +865 2 80.75999309815941 -290.8478897851666 22.6249 0.1144 864 +866 2 80.26750986802843 -291.62658719739767 23.1499 0.1144 865 +867 2 79.33377192310957 -291.7828068078107 23.6685 0.1144 866 +868 2 78.61225518185611 -293.41724456197875 24.2157 0.1144 867 +869 2 77.96542357147669 -293.9579275947588 24.7353 0.1144 868 +870 2 77.32669382061884 -294.6067038795461 25.1958 0.1144 869 +871 2 76.68383008784625 -296.24141839106386 25.6723 0.1144 870 +872 2 75.86258740374204 -296.615077344736 26.2221 0.1144 871 +873 2 74.98192171650489 -297.1537286209561 26.8305 0.1144 872 +874 2 74.99856403797882 -298.15549299845236 27.34 0.1144 873 +875 2 75.36725369242951 -298.9954907210655 27.7125 0.1144 874 +876 2 75.35016233118628 -300.2127825952419 27.9659 0.1144 875 +877 2 75.06935427033345 -301.60743332811467 28.1173 0.1144 876 +878 2 74.90109239710624 -302.98829340153844 28.1966 0.1144 877 +879 2 74.8977579607195 -304.2087446502154 28.2425 0.1144 878 +880 2 74.9212244410778 -305.4021404148044 28.2937 0.1144 879 +881 2 75.00938438817514 -306.52383425169353 28.3643 0.1144 880 +882 2 75.17671969125173 -307.55088155078266 28.4592 0.1144 881 +883 2 75.34412910984177 -308.88553855611895 28.583 0.1144 882 +884 2 74.89968533694739 -310.11880200536353 28.7966 0.1144 883 +885 2 74.34035704374277 -311.7552245739157 29.0895 0.1144 884 +886 2 73.7818081947663 -312.66445676196366 29.4358 0.1144 885 +887 2 73.22403553307085 -313.1627863288559 29.8094 0.1144 886 +888 2 72.66470723986625 -314.4925347814843 30.1854 0.1144 887 +889 2 72.10615839088976 -316.06599501382533 30.5416 0.1144 888 +890 2 71.67560309907068 -316.9824013490681 30.8353 0.1144 889 +891 2 71.58894620301518 -318.13641971084945 31.0083 0.1144 890 +892 2 71.54848533698775 -319.35356182680425 31.0789 0.1144 891 +893 2 71.50717772119926 -320.57103290072916 31.0755 0.1144 892 +894 2 70.96724779822479 -321.1424738037033 31.0383 0.1144 893 +895 2 70.23121588814165 -320.9666334184916 30.9943 0.1144 894 +896 2 69.54489172511164 -319.90956603511586 30.9588 0.1144 895 +897 2 68.85785868033358 -318.3129983771349 30.9299 0.1144 896 +898 2 80.8487959599982 -288.63215328084493 20.826 0.1144 863 +899 2 81.84392637395585 -287.3707293915186 20.5147 0.1144 898 +900 2 82.88658510653761 -286.5046350298401 20.1846 0.1144 899 +901 2 83.93181537954442 -286.6005474273446 19.7838 0.1144 900 +902 2 85.02242918482129 -285.83581655510227 19.3827 0.1144 901 +903 2 85.90775751326586 -285.6947863518877 18.9611 0.1144 902 +904 2 86.77184148761118 -284.4214209638991 18.5732 0.1144 903 +905 2 87.88249685613603 -284.9507468833611 18.2682 0.1144 904 +906 2 89.02087846210074 -284.3909192426576 18.0926 0.1144 905 +907 2 90.0878518438023 -284.66301820294666 18.0347 0.1144 906 +908 2 90.5623531747403 -283.4431177634423 18.2315 0.1144 907 +909 2 90.56507408815048 -283.1728350622195 18.4528 0.1144 908 +910 2 90.60878438129534 -281.9255394094689 18.6822 0.1144 909 +911 2 91.24673849957351 -280.9490373556578 18.9105 0.1144 910 +912 2 92.37147184428433 -281.72515940946914 19.1641 0.1144 911 +913 2 92.96985658785442 -280.6494609806059 19.4932 0.1144 912 +914 2 92.80083479733652 -279.6793329000126 19.8255 0.1144 913 +915 2 93.58336166647426 -278.73553930425777 20.2307 0.1144 914 +916 2 94.1963744153226 -278.4894224877759 20.7071 0.1144 915 +917 2 94.7892126631746 -277.7068508351238 21.0171 0.1144 916 +918 2 95.7667853188349 -276.86282836741 21.1439 0.1144 917 +919 2 96.83552326072505 -276.7134088016306 21.126 0.1144 918 +920 2 97.9244327052795 -276.2445491511217 21.0245 0.1144 919 +921 2 98.56106879869452 -275.8925374553746 20.8242 0.1144 920 +922 2 99.1846967125116 -274.3793796714405 20.4774 0.1144 921 +923 2 100.02917309186111 -272.9936553755437 20.1242 0.1144 922 +924 2 101.07430811912619 -272.56884798449283 19.7905 0.1144 923 +925 2 102.1878507074695 -272.4008383914955 19.4024 0.1144 924 +926 2 103.14409990243945 -272.00213726715185 18.8649 0.1144 925 +927 2 102.74633219439815 -270.7563305772716 18.395 0.1144 926 +928 2 102.56940056357422 -270.9176739530339 17.7491 0.1144 927 +929 2 101.79017769046871 -271.0639374783473 16.4034 0.1144 928 +930 2 100.8506534526379 -270.23875151518627 16.1845 0.1144 929 +931 2 99.78466310937878 -270.06555868871084 16.1106 0.1144 930 +932 2 98.65238691572289 -271.2761282260399 16.0933 0.1144 931 +933 2 97.53142440577003 -270.49313597161427 16.1537 0.1144 932 +934 2 96.45866059086627 -271.31855061629454 16.2145 0.1144 933 +935 2 95.55764174476317 -269.7404092116239 16.2997 0.1144 934 +936 2 94.64385514098385 -269.79115618208607 16.4153 0.1144 935 +937 2 93.61546905383281 -268.59992177547923 16.4538 0.1144 936 +938 2 92.62745072100043 -268.6151845861402 16.4073 0.1144 937 +939 2 91.90970682076228 -267.32066858889203 16.3271 0.1144 938 +940 2 91.19693584584665 -266.34024300197075 16.2529 0.1144 939 +941 2 90.67494491721953 -265.8265384352205 16.0853 0.1144 940 +942 2 90.46725468551288 -264.72453876701985 15.9217 0.1144 941 +943 2 90.02419819275697 -263.2706673556153 15.8434 0.1144 942 +944 2 89.36387557048864 -262.0423795723537 15.9228 0.1144 943 +945 2 88.57582370197385 -261.7290798352473 16.1149 0.1144 944 +946 2 87.62649679693233 -260.6367212182136 16.3405 0.1144 945 +947 2 86.72065275834716 -260.23339922892467 16.587 0.1144 946 +948 2 85.65936236314539 -259.56021101843686 16.8402 0.1144 947 +949 2 84.52681475251198 -259.7688531233971 17.1308 0.1144 948 +950 2 83.5876936009073 -260.003088165504 17.5556 0.1144 949 +951 2 82.50360248233949 -260.0946450714862 18.063 0.1144 950 +952 2 81.46637941036947 -260.3277687323199 18.5686 0.1144 951 +953 2 80.49286724583843 -259.5148983131091 19.091 0.1144 952 +954 2 79.47589610384021 -259.21653171324556 19.6415 0.1144 953 +955 2 78.45890107285283 -258.5007950027046 20.1638 0.1144 954 +956 2 77.45626949666155 -258.09554251982183 20.5995 0.1144 955 +957 2 76.53849813836709 -257.3535338348619 20.9967 0.1144 956 +958 2 76.07386825077268 -256.369533325741 21.5027 0.1144 957 +959 2 75.26316400294847 -257.3943984359288 22.177 0.1144 958 +960 2 74.16975540831918 -256.9150359555481 22.8234 0.1144 959 +961 2 73.03149549374585 -257.57541556666763 23.3577 0.1144 960 +962 2 71.91586975655905 -256.80790250656764 23.8578 0.1144 961 +963 2 70.85136043110926 -257.1310824496953 24.2897 0.1144 962 +964 2 69.82063897213477 -255.93122196383604 24.5999 0.1144 963 +965 2 68.78498139650138 -256.0390352396712 24.8135 0.1144 964 +966 2 67.74770088382589 -254.9253736324058 24.9774 0.1144 965 +967 2 66.71126712091144 -254.9572030399425 25.1107 0.1144 966 +968 2 65.70950953440342 -253.86990446072718 25.2541 0.1144 967 +969 2 64.96038901741478 -253.4424942292738 25.8686 0.1144 968 +970 2 103.38354654890222 -271.266380436889 17.2246 0.1144 928 +971 2 104.51669723042775 -271.096592347275 16.8069 0.1144 970 +972 2 105.57407786997089 -270.834855150872 16.414 0.1144 971 +973 2 105.69483155842947 -269.79263330630545 16.0374 0.1144 972 +974 2 106.21126367734803 -268.7045181926126 15.6836 0.1144 973 +975 2 107.1482406863704 -267.7193979463729 15.4104 0.1144 974 +976 2 107.90687329215035 -267.2465516203982 15.1899 0.1144 975 +977 2 108.77895727239535 -266.1253851132093 15.0175 0.1144 976 +978 2 108.60388944220661 -266.1061099629712 15.1838 0.1144 977 +979 2 107.55707718111151 -265.52707860723444 15.198 0.1144 978 +980 2 107.01233008762037 -264.34540849867716 15.2037 0.1144 979 +981 2 106.5813902075842 -263.5040703455042 15.2116 0.1144 980 +982 2 105.78045895692946 -262.64050325458146 15.2222 0.1144 981 +983 2 105.52816187842016 -261.36151534152424 15.2381 0.1144 982 +984 2 105.50957427611573 -260.130456081321 15.2608 0.1144 983 +985 2 105.5031474033614 -258.9032348238946 15.2909 0.1144 984 +986 2 105.36649040040137 -257.65412562917146 15.3284 0.1144 985 +987 2 105.17724312556132 -256.406117556342 15.3756 0.1144 986 +988 2 105.23797635150218 -255.2285392029264 15.5069 0.1144 987 +989 2 105.51885171788794 -254.10726141512242 15.6179 0.1144 988 +990 2 105.89114104045024 -253.02889642535484 15.7094 0.1144 989 +991 2 106.24234500715457 -252.04902705106025 15.7827 0.1144 990 +992 2 106.52718519630028 -250.83175611316142 15.8482 0.1144 991 +993 2 106.78941894616797 -249.67291346153615 15.9481 0.1144 992 +994 2 106.11530564522661 -248.6381978399694 16.0025 0.1144 993 +995 2 106.86695455822348 -247.93142720120346 16.0297 0.1144 994 +996 2 107.93455777159687 -248.08279617845966 16.0235 0.1144 995 +997 2 109.0464291092625 -248.46755596354313 15.7461 0.1144 996 +998 2 109.11734216945578 -265.6354681460736 14.8556 0.1144 977 +999 2 109.92706755659881 -265.2627495856816 14.6495 0.1144 998 +1000 2 110.84472456422448 -264.39215576682085 14.4504 0.1144 999 +1001 2 111.90848858441932 -264.1107979507025 14.3029 0.1144 1000 +1002 2 112.92825584078457 -263.3852582974034 14.2011 0.1144 1001 +1003 2 113.72342492708773 -262.46450229952785 14.142 0.1144 1002 +1004 2 114.21073062226516 -261.8738726276013 14.1233 0.1144 1003 +1005 2 114.77082503582304 -260.71123026483406 14.1382 0.1144 1004 +1006 2 115.45572081802594 -259.16978657095547 14.1708 0.1144 1005 +1007 2 115.97779438231822 -258.4030627030276 14.2122 0.1144 1006 +1008 2 116.25782980892346 -257.50328425531046 14.2596 0.1144 1007 +1009 2 116.94701225948837 -256.6446054496471 14.3622 0.1144 1008 +1010 2 117.61423140727825 -255.178730554511 14.53 0.1144 1009 +1011 2 117.73006160266607 -254.0160693109621 14.6619 0.1144 1010 +1012 2 117.71310049043699 -252.79072526683882 14.7368 0.1144 1011 +1013 2 117.6661800267671 -251.57201429099376 14.7142 0.1144 1012 +1014 2 117.69703156981402 -250.40382600234233 14.5601 0.1144 1013 +1015 2 118.13007342534448 -249.52178699937343 14.4038 0.1144 1014 +1016 2 118.40932585468819 -248.61982009024848 14.2745 0.1144 1015 +1017 2 118.52418425799053 -247.50590790525843 14.1875 0.1144 1016 +1018 2 118.7086389890607 -246.47719802900457 14.1438 0.1144 1017 +1019 2 119.15786008247306 -245.2813080170805 14.1415 0.1144 1018 +1020 2 119.97161709972244 -243.61238734081405 14.1715 0.1144 1019 +1021 2 120.83764324353655 -242.5102322443362 14.277 0.1144 1020 +1022 2 121.49261322601501 -241.68092504520672 14.3576 0.1144 1021 +1023 2 121.8139455767531 -240.58042254632056 14.4927 0.1144 1022 +1024 2 121.78005983231662 -239.38911507101716 14.6862 0.1144 1023 +1025 2 121.4428379891385 -238.21969613784395 14.8842 0.1144 1024 +1026 2 120.74471480567084 -237.2435384379145 15.1463 0.1144 1025 +1027 2 120.29236047252255 -236.34399443282183 15.478 0.1144 1026 +1028 2 119.81546803922687 -235.76908873472104 15.777 0.1144 1027 +1029 2 119.62144344386886 -234.85567282957032 16.0724 0.1144 1028 +1030 2 119.92032459843671 -233.5310584560434 16.4713 0.1144 1029 +1031 2 120.06123546931175 -232.26283040684837 16.7561 0.1144 1030 +1032 2 119.88494198821112 -231.28852036953333 16.973 0.1144 1031 +1033 2 119.38050244957233 -230.76212500231367 17.1759 0.1144 1032 +1034 2 119.70275290682417 -229.36632022689537 17.3886 0.1144 1033 +1035 2 120.61299254950075 -227.9045030053977 17.5023 0.1144 1034 +1036 2 120.99894425146442 -226.80234902528787 17.527 0.1144 1035 +1037 2 121.6271163720447 -225.9389928606468 17.4953 0.1144 1036 +1038 2 121.8912366695786 -224.9072390718755 17.0301 0.1144 1037 +1039 2 121.75320040844548 -223.84760456328672 16.6725 0.1144 1038 +1040 2 121.63524651392865 -222.68357099404676 16.4116 0.1144 1039 +1041 2 121.67323088317248 -221.48521290682578 16.1953 0.1144 1040 +1042 2 121.93143852045539 -220.31894161109688 15.9708 0.1144 1041 +1043 2 122.15396097638235 -219.12774210707653 15.7947 0.1144 1042 +1044 2 122.61855156867932 -217.9427917699512 15.6749 0.1144 1043 +1045 2 123.3601309468942 -217.08292224634874 15.5676 0.1144 1044 +1046 2 123.59655876080473 -216.00455086559757 15.3926 0.1144 1045 +1047 2 123.10421235009719 -214.8492219020162 15.2324 0.1144 1046 +1048 2 122.54718283566447 -213.87511217786403 15.0901 0.1144 1047 +1049 2 123.19984873746137 -212.89025238753658 14.9481 0.1144 1048 +1050 2 123.89854881829845 -212.10519358071693 14.8765 0.1144 1049 +1051 2 123.90831106729746 -211.75364882744321 15.7461 0.1144 1050 +1052 2 123.94318062048961 -210.55709485321185 15.6243 0.1144 1051 +1053 2 123.97713286144065 -209.36191468519678 15.5871 0.1144 1052 +1054 2 124.06861494997821 -208.17641224079216 15.4772 0.1144 1053 +1055 2 124.15115198226641 -206.9735790672667 15.3758 0.1144 1054 +1056 2 124.13263523852814 -205.7884455945358 15.2975 0.1144 1055 +1057 2 124.01612555315714 -204.63292255672076 15.241 0.1144 1056 +1058 2 123.89975728883243 -203.39765492149596 15.2046 0.1144 1057 +1059 2 123.8917039260028 -202.19142939178795 15.1862 0.1144 1058 +1060 2 123.6418092287637 -200.9376632653216 15.1838 0.1144 1059 +1061 2 123.84342129546722 -211.6702736744084 14.6556 0.1144 1050 +1062 2 123.82745636249916 -210.56874218357007 14.2946 0.1144 1061 +1063 2 124.01608464290841 -209.3848878641969 13.9593 0.1144 1062 +1064 2 124.20952825097227 -208.21236676474098 13.5897 0.1144 1063 +1065 2 124.42012013024271 -207.08579800836338 13.1159 0.1144 1064 +1066 2 124.56423275837136 -205.89478048427796 12.6745 0.1144 1065 +1067 2 124.48413736394576 -204.72567255117184 12.3281 0.1144 1066 +1068 2 124.35725173705454 -203.5801715267493 12.0166 0.1144 1067 +1069 2 124.53128059616631 -202.4183047858727 11.7009 0.1144 1068 +1070 2 124.73053155181162 -201.2714398390866 11.3645 0.1144 1069 +1071 2 124.65939128056311 -200.12721695880975 11.0653 0.1144 1070 +1072 2 124.99129517762597 -198.93942872187435 10.8403 0.1144 1071 +1073 2 125.64869803824399 -198.0751285666323 10.6222 0.1144 1072 +1074 2 125.93038058696652 -197.05532213729938 10.4587 0.1144 1073 +1075 2 125.85927031440102 -195.83230721814775 10.3681 0.1144 1074 +1076 2 125.8851683656942 -194.64044659587944 10.3356 0.1144 1075 +1077 2 126.17576497561024 -193.60088274321635 10.3793 0.1144 1076 +1078 2 126.45255097509809 -192.38969074753714 10.4753 0.1144 1077 +1079 2 126.5383575683592 -191.190721407245 10.5461 0.1144 1078 +1080 2 126.03063534697287 -190.14987102994525 10.5853 0.1144 1079 +1081 2 126.14325371817935 -189.0467533320816 10.7187 0.1144 1080 +1082 2 126.38600086415593 -187.97727374179976 10.8642 0.1144 1081 +1083 2 126.93884697793379 -186.70780781275 11.0116 0.1144 1082 +1084 2 127.77932478070682 -185.86570119691677 11.1641 0.1144 1083 +1085 2 128.05802488291306 -185.82886639467927 10.4436 0.1144 1084 +1086 2 128.9789003226003 -185.05133585289784 9.9484 0.1144 1085 +1087 2 129.76267785455343 -184.19655317935317 9.7352 0.1144 1086 +1088 2 130.4047147693202 -183.52864056011495 9.4736 0.1144 1087 +1089 2 131.01754078181858 -182.93825585767047 9.2214 0.1144 1088 +1090 2 131.63837085143635 -182.479970968299 8.9889 0.1144 1089 +1091 2 131.98883593770967 -181.168435797599 8.8281 0.1144 1090 +1092 2 132.41534548127487 -179.66843747781027 8.763 0.1144 1091 +1093 2 132.7318390195698 -178.3196244028627 8.7412 0.1144 1092 +1094 2 132.87344139709825 -177.2059767404532 8.7764 0.1144 1093 +1095 2 132.85726298604453 -175.9968710215701 8.8908 0.1144 1094 +1096 2 133.46549471575617 -176.08476514635146 9.3074 0.1144 1095 +1097 2 133.30012432917914 -174.87850620645114 9.8718 0.1144 1096 +1098 2 133.83024556923485 -174.30484111850785 10.3515 0.1144 1097 +1099 2 134.27344850667043 -173.57990920736086 10.6848 0.1144 1098 +1100 2 134.0226484395357 -173.34470900897747 12.471 0.1144 1099 +1101 2 133.88532411499756 -172.3423514064948 13.2068 0.1144 1100 +1102 2 134.20681531839156 -171.54047974218932 14.0543 0.1144 1101 +1103 2 135.11198566708958 -171.41789484864387 14.9541 0.1144 1102 +1104 2 135.969349911877 -171.9939692346629 15.7884 0.1144 1103 +1105 2 136.84320200534393 -170.5793901644246 16.4923 0.1144 1104 +1106 2 137.7161364904836 -170.35515857676106 17.0564 0.1144 1105 +1107 2 138.43425537149247 -169.42313177318837 17.4794 0.1144 1106 +1108 2 139.0300720711559 -167.91311112294449 17.7528 0.1144 1107 +1109 2 139.89343404197848 -167.83766273239362 17.9177 0.1144 1108 +1110 2 140.8279413641978 -166.77457978345922 18.018 0.1144 1109 +1111 2 141.6611844871519 -166.09449004968312 18.0819 0.1144 1110 +1112 2 142.56001264372324 -165.15077679668988 18.1278 0.1144 1111 +1113 2 143.48484589408957 -164.35480263183032 18.1715 0.1144 1112 +1114 2 144.23625438516478 -164.01470583916887 18.2793 0.1144 1113 +1115 2 144.82062279005947 -162.45781775042576 18.396 0.1144 1114 +1116 2 145.30784755974298 -161.12412650726526 18.4941 0.1144 1115 +1117 2 145.18265948359362 -159.97814948391948 18.5774 0.1144 1116 +1118 2 144.8244972586372 -159.2375492098075 18.6499 0.1144 1117 +1119 2 144.56160189206744 -158.38857577163606 18.7157 0.1144 1118 +1120 2 144.30612269197363 -157.4995987880227 18.7775 0.1144 1119 +1121 2 144.47286624054158 -156.25222208210587 18.8771 0.1144 1120 +1122 2 145.28097875757032 -154.68465220329858 19.0241 0.1144 1121 +1123 2 146.00151669465743 -154.27880945915513 19.1848 0.1144 1122 +1124 2 146.49768296755695 -153.60939613871602 19.3663 0.1144 1123 +1125 2 146.54628575871675 -152.42572245402422 19.5063 0.1144 1124 +1126 2 145.9068523893154 -150.90125674673118 19.6826 0.1144 1125 +1127 2 134.7884129881695 -172.50294715325072 10.6848 0.1144 1099 +1128 2 135.37937094363457 -171.76411246438064 10.6919 0.1144 1127 +1129 2 135.74834353354657 -171.01151489412652 10.6946 0.1144 1128 +1130 2 135.5648499207161 -169.66878996393166 10.6986 0.1144 1129 +1131 2 135.22039695075236 -168.22202146063455 10.7041 0.1144 1130 +1132 2 134.86301417002414 -167.06762043686945 10.7118 0.1144 1131 +1133 2 134.56788842486193 -166.25030656342108 10.722 0.1144 1132 +1134 2 134.31643809611373 -165.34721879442577 10.7372 0.1144 1133 +1135 2 134.1918742210849 -164.262132995258 10.7598 0.1144 1134 +1136 2 134.37154077043678 -163.0150492990847 10.7902 0.1144 1135 +1137 2 134.76329576876213 -161.5677628706897 10.8257 0.1144 1136 +1138 2 135.23671673799794 -160.15818126783483 10.8631 0.1144 1137 +1139 2 135.38898540940642 -159.13973411331776 10.9962 0.1144 1138 +1140 2 135.66898047431482 -158.19740166697494 11.1364 0.1144 1139 +1141 2 135.75477700064818 -157.08445931403392 11.2241 0.1144 1140 +1142 2 135.76374331366736 -155.9070159275782 11.1864 0.1144 1141 +1143 2 135.37493328546367 -154.4839646178162 11.1206 0.1144 1142 +1144 2 135.5877483199217 -153.49094169646133 10.6848 0.1144 1143 +1145 2 133.33343199558294 -174.16176774217013 10.8347 0.1144 1098 +1146 2 132.33285999437615 -174.6738365383024 11.2819 0.1144 1145 +1147 2 131.21783708851024 -174.79571372828235 11.5977 0.1144 1146 +1148 2 130.07994263818304 -174.1538601075977 11.7959 0.1144 1147 +1149 2 129.02113299308496 -173.99666330877523 11.9305 0.1144 1148 +1150 2 128.07989382941756 -173.13888143357167 12.0512 0.1144 1149 +1151 2 127.34924005017015 -172.31407659704738 12.1928 0.1144 1150 +1152 2 126.81002277758913 -171.58685645679367 12.3444 0.1144 1151 +1153 2 126.58441569164799 -170.30627966284612 12.4919 0.1144 1152 +1154 2 126.73338706397497 -169.2138745415238 12.6376 0.1144 1153 +1155 2 127.15182879792125 -168.02543590521793 12.7826 0.1144 1154 +1156 2 127.3396884013168 -166.8388318953251 13.017 0.1144 1155 +1157 2 127.4482410925142 -165.67648177975528 13.3505 0.1144 1156 +1158 2 127.66596174676184 -164.40756514941617 13.6398 0.1144 1157 +1159 2 127.83591741559727 -163.1463528038485 13.868 0.1144 1158 +1160 2 127.46394833534622 -162.28200309944557 14.0414 0.1144 1159 +1161 2 126.87542426790523 -161.43832145494306 14.167 0.1144 1160 +1162 2 126.47769968032158 -160.0424331566815 14.252 0.1144 1161 +1163 2 126.08873461111057 -158.68104136625504 14.3425 0.1144 1162 +1164 2 125.24752304552567 -158.4892503316814 14.491 0.1144 1163 +1165 2 124.18617796837923 -157.47805384164042 14.6266 0.1144 1164 +1166 2 123.14663038578601 -157.69216377552286 14.7568 0.1144 1165 +1167 2 122.64462096652605 -156.34206704076536 14.9054 0.1144 1166 +1168 2 122.23485132507565 -155.01272172307608 15.0661 0.1144 1167 +1169 2 121.66906930435124 -154.4706474653127 15.2335 0.1144 1168 +1170 2 121.55910910393987 -153.44587717544835 15.4064 0.1144 1169 +1171 2 121.88835589660697 -152.70790248506748 15.7752 0.1144 1170 +1172 2 122.025575406662 -153.58510741447455 16.8708 0.1144 1171 +1173 2 128.01268833926406 -186.58670481441553 11.5115 0.1144 1084 +1174 2 128.71250964168658 -185.8080916010443 11.9198 0.1144 1173 +1175 2 129.28715680305095 -184.55670100163417 12.2061 0.1144 1174 +1176 2 129.89594743030938 -183.7128845182109 12.3766 0.1144 1175 +1177 2 130.75351567351157 -183.3668440799908 12.4069 0.1144 1176 +1178 2 131.80420115372868 -183.59120480649713 12.3375 0.1144 1177 +1179 2 132.84834425505278 -182.48317818507417 12.2122 0.1144 1178 +1180 2 133.89432978721254 -182.66357071930167 12.0287 0.1144 1179 +1181 2 134.9033287504903 -181.85268839337303 11.7723 0.1144 1180 +1182 2 136.03694645379778 -182.44759100880552 11.5509 0.1144 1181 +1183 2 137.10417407948245 -181.85382044949142 11.3844 0.1144 1182 +1184 2 138.02824120949555 -181.49687748730048 11.2595 0.1144 1183 +1185 2 138.84356066823466 -180.20654149318125 11.1674 0.1144 1184 +1186 2 139.58837911055303 -179.81701425629538 11.1033 0.1144 1185 +1187 2 140.4638987560789 -178.84744525329359 11.0183 0.1144 1186 +1188 2 141.5382413346793 -178.61347291783423 10.9087 0.1144 1187 +1189 2 142.49800174848792 -177.3628451240435 10.8228 0.1144 1188 +1190 2 143.00403473718382 -176.40572873183066 10.7593 0.1144 1189 +1191 2 143.47182077494028 -175.8092388242058 10.7165 0.1144 1190 +1192 2 144.47741436770622 -175.05580292408163 10.6924 0.1144 1191 +1193 2 145.5508592697346 -175.06425514339054 10.6848 0.1144 1192 +1194 2 146.65525318857033 -174.2508285928364 10.6848 0.1144 1193 +1195 2 147.78412421381466 -174.77356636786675 10.6848 0.1144 1194 +1196 2 148.86332908964678 -173.538238587009 10.6848 0.1144 1195 +1197 2 149.88388260022072 -173.90757018804342 10.6848 0.1144 1196 +1198 2 150.77873557101827 -172.44216583284594 10.6848 0.1144 1197 +1199 2 151.47575853105508 -171.72892521084313 10.6848 0.1144 1198 +1200 2 151.7493795819528 -170.85786803875448 10.6848 0.1144 1199 +1201 2 151.96941517808227 -169.90068884828597 10.6848 0.1144 1200 +1202 2 152.02691890866095 -168.75125127819396 10.6848 0.1144 1201 +1203 2 151.55398428604434 -167.16206796775802 10.6848 0.1144 1202 +1204 2 151.26769898474873 -165.7217376958668 10.6848 0.1144 1203 +1205 2 150.8933575219104 -164.85288652879123 10.6848 0.1144 1204 +1206 2 150.6588726852528 -163.96751753899753 10.6848 0.1144 1205 +1207 2 150.910554820551 -162.6118724158071 10.6848 0.1144 1206 +1208 2 151.4836496073534 -161.36876633640938 10.6848 0.1144 1207 +1209 2 152.0234648510173 -160.87307098215433 10.6848 0.1144 1208 +1210 2 152.57878420463152 -159.98771226586643 10.6848 0.1144 1209 +1211 2 152.51000930388946 -158.89061027554385 10.6848 0.1144 1210 +1212 2 152.1688763235232 -157.61010287189654 10.6848 0.1144 1211 +1213 2 152.062900877627 -156.2922709869257 10.6848 0.1144 1212 +1214 2 152.3574318134336 -155.43613651556274 10.6848 0.1144 1213 +1215 2 152.69731528645445 -154.30125565508166 10.6848 0.1144 1214 +1216 2 153.06069004963675 -152.8635112062835 10.6848 0.1144 1215 +1217 2 121.81406690692586 -225.96224108249356 17.9956 0.1144 1037 +1218 2 122.92600299346387 -226.1207427151545 17.9956 0.1144 1217 +1219 2 123.96326988617827 -226.66644764512924 17.9956 0.1144 1218 +1220 2 124.97755105330722 -227.03637740679628 17.9956 0.1144 1219 +1221 2 125.92913854692766 -226.32097285655695 17.9956 0.1144 1220 +1222 2 126.59952519996811 -225.41150535773312 17.9956 0.1144 1221 +1223 2 127.09404159198957 -224.37516711444846 17.9956 0.1144 1222 +1224 2 127.92148141858199 -223.40222747748894 17.9956 0.1144 1223 +1225 2 128.24928183059941 -222.2398834443278 17.9956 0.1144 1224 +1226 2 128.21775435060272 -221.04157961939973 17.9956 0.1144 1225 +1227 2 128.23317865797344 -219.8401546648071 17.9956 0.1144 1226 +1228 2 128.49855998133654 -218.64582369126978 17.9956 0.1144 1227 +1229 2 119.93341095215135 -243.18614500654587 14.3551 0.1144 1020 +1230 2 119.6891985601693 -242.29671658998888 14.8983 0.1144 1229 +1231 2 119.16376140114716 -241.79838183610116 15.0945 0.1144 1230 +1232 2 118.3878765739766 -240.41605122992124 15.3099 0.1144 1231 +1233 2 117.65673351980452 -240.4252056302908 15.7739 0.1144 1232 +1234 2 117.03637268032642 -240.1879509666325 16.2391 0.1144 1233 +1235 2 117.08745246645628 -239.01940927861546 16.617 0.1144 1234 +1236 2 117.51154926573741 -237.60008778548786 16.9147 0.1144 1235 +1237 2 117.67910581024984 -236.26268154869626 17.1494 0.1144 1236 +1238 2 117.82147401204537 -234.94374927050075 17.3309 0.1144 1237 +1239 2 117.64281545652443 -233.990517001036 17.5501 0.1144 1238 +1240 2 117.38809576890361 -233.12834655713112 17.8377 0.1144 1239 +1241 2 117.49574021841477 -231.84365709758652 18.103 0.1144 1240 +1242 2 117.7393308572052 -230.43841818350614 18.3497 0.1144 1241 +1243 2 118.29790970486461 -229.00281524462412 18.5828 0.1144 1242 +1244 2 118.73915823439981 -228.27451329778924 18.9434 0.1144 1243 +1245 2 118.97397693332971 -227.42408221144893 19.3711 0.1144 1244 +1246 2 119.28561172742634 -226.53559947137316 19.7068 0.1144 1245 +1247 2 119.61904075912898 -225.31345496493486 20.0463 0.1144 1246 +1248 2 120.07075196928605 -223.7759440644625 20.3422 0.1144 1247 +1249 2 120.59441521499019 -222.2321064262704 20.6267 0.1144 1248 +1250 2 121.19267160277377 -221.2988608996729 20.8609 0.1144 1249 +1251 2 121.60304878404835 -220.33969347342605 21.0322 0.1144 1250 +1252 2 121.74792072254971 -219.15805053342416 21.142 0.1144 1251 +1253 2 121.54088518883287 -217.887337483455 21.1924 0.1144 1252 +1254 2 120.88788438968582 -216.8513362097203 21.1989 0.1144 1253 +1255 2 120.07733700607 -216.6827545439498 21.1408 0.1144 1254 +1256 2 119.5582706041113 -215.96808553634557 21.0339 0.1144 1255 +1257 2 119.347276761529 -214.6179313896975 20.9312 0.1144 1256 +1258 2 119.37882987815703 -213.41749765315188 20.8459 0.1144 1257 +1259 2 119.47840977499646 -212.29276444307538 20.7761 0.1144 1258 +1260 2 119.46548434409348 -211.04393508131395 20.7216 0.1144 1259 +1261 2 119.45099972864801 -209.79277668625917 20.6861 0.1144 1260 +1262 2 119.60483034335975 -208.77211143098674 20.597 0.1144 1261 +1263 2 119.85002398743705 -207.69339828500188 20.4807 0.1144 1262 +1264 2 119.91079402204144 -206.50887829600913 20.4216 0.1144 1263 +1265 2 119.77082028643117 -205.2698870416193 20.4381 0.1144 1264 +1266 2 119.58578110901931 -203.95600896259663 20.6306 0.1144 1265 +1267 2 119.95748729244461 -203.1354265334762 20.9754 0.1144 1266 +1268 2 120.76964555772723 -201.62980333562177 21.3895 0.1144 1267 +1269 2 120.95826071636185 -200.3077347713329 21.7521 0.1144 1268 +1270 2 120.8548123979742 -199.27220292714014 22.1192 0.1144 1269 +1271 2 121.03361532065671 -197.93357270528838 22.3993 0.1144 1270 +1272 2 121.21977036122955 -196.62915491084559 22.6107 0.1144 1271 +1273 2 121.4447861908484 -195.53937356529374 22.8253 0.1144 1272 +1274 2 121.61467100111766 -194.40913013399984 22.9902 0.1144 1273 +1275 2 121.7304470127473 -193.2534095909313 23.1184 0.1144 1274 +1276 2 122.11484308320178 -192.27281564754858 23.2135 0.1144 1275 +1277 2 122.26539732696014 -191.22520426303814 23.3706 0.1144 1276 +1278 2 122.37303822343794 -190.06719371138593 23.6191 0.1144 1277 +1279 2 102.8187774952766 -270.9830456139115 18.5578 0.1144 927 +1280 2 102.95291062767527 -272.2265021689157 18.237 0.1144 1279 +1281 2 103.41442625391934 -273.4165255015146 18.1295 0.1144 1280 +1282 2 104.32243906183358 -273.9367964611905 17.8972 0.1144 1281 +1283 2 105.38126983716002 -274.37890126126035 17.625 0.1144 1282 +1284 2 106.35316261768233 -274.9754930495495 17.3199 0.1144 1283 +1285 2 107.23805996269508 -275.64546385728727 17.0655 0.1144 1284 +1286 2 108.00831341141965 -276.81638598518487 16.8696 0.1144 1285 +1287 2 107.87787273143375 -278.02232390196707 16.6665 0.1144 1286 +1288 2 108.02590420973517 -279.16399645279296 16.5161 0.1144 1287 +1289 2 108.14792753939471 -280.3195530978491 16.4182 0.1144 1288 +1290 2 108.07918424062646 -281.5571516327176 16.3086 0.1144 1289 +1291 2 94.03591357321349 -278.59986478691593 22.737 0.1144 916 +1292 2 93.70563566803962 -279.3541817015251 23.4868 0.1144 1291 +1293 2 93.16737279893768 -280.1331972346778 23.7531 0.1144 1292 +1294 2 92.3650169047797 -281.7175684011987 24.0496 0.1144 1293 +1295 2 93.21095959653411 -280.92153852567037 23.6191 0.1144 1294 +1296 2 94.35225240529226 -281.6636474921864 23.657 0.1144 1295 +1297 2 95.4953675110306 -281.01043660259575 23.6725 0.1144 1296 +1298 2 96.6227507084851 -281.40646602455035 23.6947 0.1144 1297 +1299 2 97.70756022102745 -280.6358039759137 23.7248 0.1144 1298 +1300 2 98.54493051591582 -280.3824777288849 23.7632 0.1144 1299 +1301 2 99.21517219487663 -278.70904224651593 23.8101 0.1144 1300 +1302 2 99.76239729322234 -277.2546503013872 23.9258 0.1144 1301 +1303 2 100.32820726766734 -275.9981313365784 24.0498 0.1144 1302 +1304 2 100.79193749024218 -274.9495860182757 24.1572 0.1144 1303 +1305 2 101.3123611736564 -274.06515168207096 24.2556 0.1144 1304 +1306 2 101.83773785063784 -272.9714398335311 24.3513 0.1144 1305 +1307 2 102.04323076588854 -271.7244648506684 24.448 0.1144 1306 +1308 2 101.92524963144956 -270.5616148639237 24.5472 0.1144 1307 +1309 2 101.87110159402744 -269.36766084683194 24.6602 0.1144 1308 +1310 2 102.07050573430637 -268.33915335867937 24.9879 0.1144 1309 +1311 2 102.38464426510876 -267.1238350473852 25.293 0.1144 1310 +1312 2 102.79981969502938 -265.8412075500314 25.528 0.1144 1311 +1313 2 103.25143991276474 -264.85980756646865 25.6974 0.1144 1312 +1314 2 103.74114117923187 -263.90192449079905 25.8066 0.1144 1313 +1315 2 104.38872173697013 -262.85153286665394 25.8614 0.1144 1314 +1316 2 104.88324168202489 -261.56148348219415 25.8686 0.1144 1315 +1317 2 105.04995799067069 -260.3326612293856 25.8686 0.1144 1316 +1318 2 104.05857916095859 -260.4591293471958 25.8686 0.1144 1317 +1319 2 91.95022869406144 -281.7681308677336 24.4682 0.1144 1294 +1320 2 91.16682032497317 -281.7809010949068 24.9713 0.1144 1319 +1321 2 90.54017008208545 -283.29848689363314 25.4457 0.1144 1320 +1322 2 89.88037816407216 -284.3985101955375 25.8874 0.1144 1321 +1323 2 89.14689353931227 -284.7870171971456 26.2821 0.1144 1322 +1324 2 88.49425793228443 -286.08323784164935 26.7342 0.1144 1323 +1325 2 88.2269660782802 -287.28428263524944 27.237 0.1144 1324 +1326 2 88.88216514725289 -287.4886555405972 27.7423 0.1144 1325 +1327 2 89.36951720632352 -288.7245073088147 28.1879 0.1144 1326 +1328 2 88.56856845403264 -289.2073283806659 28.6804 0.1144 1327 +1329 2 87.43805080485744 -289.4050424932695 28.3102 0.1144 1328 +1330 2 86.29842525207206 -289.6133854917431 28.1742 0.1144 1329 +1331 2 85.17623946481136 -289.2912305301758 27.9759 0.1144 1330 +1332 2 84.1642694844306 -289.0991050583211 27.6441 0.1144 1331 +1333 2 83.18132061512145 -288.4575879272096 27.2029 0.1144 1332 +1334 2 82.14901047110796 -288.10868665643045 26.7729 0.1144 1333 +1335 2 81.24357583054307 -289.04027007319496 26.3669 0.1144 1334 +1336 2 80.45411293848602 -290.45676761284113 26.045 0.1144 1335 +1337 2 79.38182345353127 -289.8856428271458 25.7418 0.1144 1336 +1338 2 78.62778299650519 -289.79728582219235 25.5424 0.1144 1337 +1339 2 77.5986239790204 -288.2930921285552 25.4221 0.1144 1338 +1340 2 76.4557019214261 -289.31454061651846 25.3064 0.1144 1339 +1341 2 89.71064044840381 -288.9463224772542 28.7582 0.1144 1327 +1342 2 90.7413517274207 -288.24220228142315 29.2376 0.1144 1341 +1343 2 91.87863914962183 -288.6864249947257 29.582 0.1144 1342 +1344 2 92.9944888734936 -287.7388174350817 29.8494 0.1144 1343 +1345 2 93.91534062629201 -287.73217341869616 30.0798 0.1144 1344 +1346 2 94.5086908960996 -286.58606292508955 30.2347 0.1144 1345 +1347 2 94.83237499738303 -285.0966029714195 30.3226 0.1144 1346 +1348 2 95.02248805073519 -283.71095819553284 30.387 0.1144 1347 +1349 2 95.19406991355989 -282.3421397433785 30.4382 0.1144 1348 +1350 2 95.49348002350649 -281.2770649421843 30.4788 0.1144 1349 +1351 2 95.93703568857018 -280.5961175435966 30.5152 0.1144 1350 +1352 2 96.44041295439979 -279.7788083811846 30.6001 0.1144 1351 +1353 2 96.99815186227866 -278.20675227836256 30.7079 0.1144 1352 +1354 2 97.44814558993868 -276.74407320632537 30.7933 0.1144 1353 +1355 2 97.6706576828518 -275.67208079503 30.8566 0.1144 1354 +1356 2 97.57528703891045 -274.35177399400914 30.8988 0.1144 1355 +1357 2 97.57211285022078 -273.11340233567654 30.9226 0.1144 1356 +1358 2 97.70394355559426 -271.9598860805943 30.9299 0.1144 1357 +1359 2 90.78030335715368 -283.36589334376566 16.5177 0.1144 908 +1360 2 91.58716858134406 -283.57687238522453 15.3416 0.1144 1359 +1361 2 92.40531930945724 -284.5038813153963 14.9384 0.1144 1360 +1362 2 92.8789184948912 -285.0760045895701 14.5367 0.1144 1361 +1363 2 93.22582753169698 -286.09408014072784 14.1783 0.1144 1362 +1364 2 93.65033615911737 -287.59869825782135 13.8876 0.1144 1363 +1365 2 94.22670986002207 -289.01199791724906 13.6559 0.1144 1364 +1366 2 94.70285660290612 -289.6493869873417 13.3998 0.1144 1365 +1367 2 95.10452162607413 -290.36122543545673 13.0278 0.1144 1366 +1368 2 95.30504172473393 -291.67667488283683 12.6926 0.1144 1367 +1369 2 95.54037686418592 -293.1625756722419 12.4088 0.1144 1368 +1370 2 95.80073168538638 -294.675089170052 12.1624 0.1144 1369 +1371 2 95.63478801098823 -295.72607555843507 11.9433 0.1144 1370 +1372 2 95.29405423517301 -296.5506309329471 11.7429 0.1144 1371 +1373 2 95.00579525765475 -297.4577299091827 11.406 0.1144 1372 +1374 2 94.44414289549849 -298.57725152572067 10.9836 0.1144 1373 +1375 2 94.50588897550843 -297.4173588993669 10.5869 0.1144 1374 +1376 2 94.96349904289902 -296.8745925468256 10.1445 0.1144 1375 +1377 2 94.27202583552751 -298.3987063315576 9.7274 0.1144 1376 +1378 2 93.18371335217144 -298.2479573265355 9.3907 0.1144 1377 +1379 2 92.12184668432812 -298.89341427797115 9.0282 0.1144 1378 +1380 2 91.05867886853 -298.2440892443615 8.6755 0.1144 1379 +1381 2 90.03598397413457 -299.04653405168955 8.3668 0.1144 1380 +1382 2 88.94898925702638 -298.6180197744749 8.0846 0.1144 1381 +1383 2 88.22967533500471 -299.7364590782899 7.7871 0.1144 1382 +1384 2 88.61364249954546 -300.42101219979145 7.556 0.1144 1383 +1385 2 88.83440801428266 -301.65647173962395 7.3963 0.1144 1384 +1386 2 89.30002782585893 -303.14487392785395 7.2833 0.1144 1385 +1387 2 89.81990416891516 -304.5145338262451 7.2012 0.1144 1386 +1388 2 90.1741083810922 -305.4276321315681 7.142 0.1144 1387 +1389 2 90.51850716729776 -306.1893998706785 7.0154 0.1144 1388 +1390 2 91.51380383114878 -306.1529583495422 6.8345 0.1144 1389 +1391 2 92.43700733449255 -304.95045068582937 6.775 0.1144 1390 +1392 2 93.03447115627327 -303.8470517518167 6.7325 0.1144 1391 +1393 2 93.75740436856394 -303.63562654897504 6.7038 0.1144 1392 +1394 2 94.02038331065683 -302.2967843690116 6.686 0.1144 1393 +1395 2 93.69651048457597 -301.73714443352617 5.7212 0.1144 1394 +1396 2 93.0798738438358 -300.15404098140715 5.2683 0.1144 1395 +1397 2 92.26202447486816 -299.73173389230254 5.0878 0.1144 1396 +1398 2 92.37802758454451 -298.52449876578237 5.0334 0.1144 1397 +1399 2 92.58596975665668 -297.122268363847 5.0081 0.1144 1398 +1400 2 93.3048812036684 -296.1518333123209 5.0035 0.1144 1399 +1401 2 93.89007948141587 -295.7180276045701 5.0166 0.1144 1400 +1402 2 94.18142503869073 -294.41654882731183 5.0446 0.1144 1401 +1403 2 94.25589781439336 -293.16140574763546 5.0604 0.1144 1402 +1404 2 94.10064882926739 -292.0351906388424 5.0613 0.1144 1403 +1405 2 94.77786419798191 -300.4890693893298 6.6335 0.1144 1394 +1406 2 95.1907219272599 -299.5122714094653 6.5684 0.1144 1405 +1407 2 95.26521483681803 -298.34767595953866 6.4957 0.1144 1406 +1408 2 95.69509194585869 -297.7194529643674 6.4295 0.1144 1407 +1409 2 95.73881192077467 -297.3694141766779 6.4258 0.1144 1408 +1410 2 94.62123414929167 -297.1261340657155 6.4915 0.1144 1409 +1411 2 94.18435422349691 -296.69571929814293 6.6955 0.1144 1410 +1412 2 94.40527387623736 -295.3186378676758 6.9434 0.1144 1411 +1413 2 94.57763192634302 -293.9454657167261 7.1618 0.1144 1412 +1414 2 94.75076942067686 -292.5725636116593 7.3438 0.1144 1413 +1415 2 94.92397777357687 -291.2000243437597 7.4848 0.1144 1414 +1416 2 95.09633582368254 -289.88842965608444 7.5892 0.1144 1415 +1417 2 95.26947331801638 -288.75429125482333 7.664 0.1144 1416 +1418 2 95.44261081235022 -287.6474487581853 7.7302 0.1144 1417 +1419 2 95.61588972773033 -286.59648187740015 7.7981 0.1144 1418 +1420 2 95.78740102807495 -285.54161734295917 7.8682 0.1144 1419 +1421 2 95.95410045981245 -284.48183487283734 7.9353 0.1144 1420 +1422 2 96.11592101349608 -283.41701477461703 7.9967 0.1144 1421 +1423 2 96.3254896756836 -282.2649880089539 8.0772 0.1144 1422 +1424 2 96.5942214855136 -280.9232407238988 8.202 0.1144 1423 +1425 2 96.73178137173535 -279.5848254601144 8.2975 0.1144 1424 +1426 2 96.87018830380428 -278.24592872679744 8.4356 0.1144 1425 +1427 2 90.19384790395182 -306.802877703953 6.7483 0.1144 1389 +1428 2 89.39312530984975 -307.9275019952773 6.631 0.1144 1427 +1429 2 88.9762223305043 -308.6737308608332 6.584 0.1144 1428 +1430 2 89.45885756460932 -310.2588636973338 6.5225 0.1144 1429 +1431 2 90.13296760860348 -310.8642106978533 6.4463 0.1144 1430 +1432 2 90.72141380539738 -311.56468415773486 6.2758 0.1144 1431 +1433 2 91.00527629548114 -312.98571516064914 6.1018 0.1144 1432 +1434 2 91.12885831149673 -314.3432822813091 5.8809 0.1144 1433 +1435 2 91.50480909141602 -315.89949759328954 5.6941 0.1144 1434 +1436 2 91.78864108463037 -316.8400373499322 5.5367 0.1144 1435 +1437 2 92.26073882231341 -317.42456516202316 5.4005 0.1144 1436 +1438 2 92.14818825482621 -318.7335418107687 5.2594 0.1144 1437 +1439 2 92.11251832927783 -319.9350291522839 5.0641 0.1144 1438 +1440 2 92.66769830680813 -320.7888083277317 4.8672 0.1144 1439 +1441 2 93.54609028369168 -322.2693992827652 4.6805 0.1144 1440 +1442 2 94.01231947795418 -322.7737070056737 4.3601 0.1144 1441 +1443 2 93.80076191629206 -324.00356296038706 3.8405 0.1144 1442 +1444 2 94.41893799287585 -323.43388339371757 3.2315 0.1144 1443 +1445 2 94.68964732928207 -324.8009847844843 2.625 0.1144 1444 +1446 2 94.85379399687973 -326.23151425640026 2.1405 0.1144 1445 +1447 2 94.96214813715733 -327.599834878241 1.807 0.1144 1446 +1448 2 95.59812620560868 -328.7566498371937 1.5802 0.1144 1447 +1449 2 95.71760779142576 -329.73118319717776 1.4029 0.1144 1448 +1450 2 95.48865437896913 -331.15390420327617 1.2521 0.1144 1449 +1451 2 95.32177522296257 -332.4179155130897 0.5622 0.1144 1450 +1452 2 91.15574649497894 -283.6172570947443 16.4587 0.1144 1360 +1453 2 91.39875328083404 -284.74810622190233 16.8239 0.1144 1452 +1454 2 91.3727405502303 -285.9494996143467 16.9812 0.1144 1453 +1455 2 90.74863085271187 -287.02400262636195 17.0981 0.1144 1454 +1456 2 89.92353291183734 -288.4284188964654 17.1697 0.1144 1455 +1457 2 89.11792107666753 -288.62285811896885 17.1755 0.1144 1456 +1458 2 88.6873557179207 -289.82573879343505 17.1016 0.1144 1457 +1459 2 88.59590412625248 -291.1194865484158 17.0201 0.1144 1458 +1460 2 88.68491082311083 -292.226251080893 16.9518 0.1144 1459 +1461 2 88.99537231334106 -293.3544019998568 16.8708 0.1144 1460 +1462 2 48.05569431804556 -251.74237524004639 28.856 0.1144 815 +1463 2 49.11036416762117 -252.4874067871138 29.5352 0.1144 1462 +1464 2 50.23111325600327 -252.44638050055835 29.8026 0.1144 1463 +1465 2 51.30926708757336 -252.8305510046054 30.1109 0.1144 1464 +1466 2 52.285249733179995 -253.42090777404024 30.3789 0.1144 1465 +1467 2 53.34820412740736 -253.9167566926052 30.6292 0.1144 1466 +1468 2 54.39109914162056 -254.42691477003797 30.8748 0.1144 1467 +1469 2 55.402557339616976 -254.99287390520072 31.1184 0.1144 1468 +1470 2 56.268832703780824 -255.65434590202995 31.3816 0.1144 1469 +1471 2 57.154458566210764 -256.6604786883914 31.6652 0.1144 1470 +1472 2 58.231972316124875 -256.8547829487718 31.9617 0.1144 1471 +1473 2 59.113945778241074 -257.565658898685 32.3464 0.1144 1472 +1474 2 59.80943928029149 -258.26372025940236 32.8692 0.1144 1473 +1475 2 60.69583126307465 -258.8854539010851 33.3382 0.1144 1474 +1476 2 61.46930008901388 -260.0398922485308 33.8022 0.1144 1475 +1477 2 62.42475633282436 -260.13262555027023 34.3423 0.1144 1476 +1478 2 63.52116362615031 -259.44397877982806 34.9255 0.1144 1477 +1479 2 64.61621514609169 -260.73986713207194 35.5174 0.1144 1478 +1480 2 65.66338039343012 -260.52417041180877 36.1878 0.1144 1479 +1481 2 66.66443303638002 -260.78974874189674 36.9303 0.1144 1480 +1482 2 67.34454518627084 -259.5987234021669 37.6704 0.1144 1481 +1483 2 67.49435373961757 -258.28484013448207 38.3953 0.1144 1482 +1484 2 67.99551436415405 -257.18392511081646 39.1283 0.1144 1483 +1485 2 68.2095320438779 -256.23831840839534 39.9644 0.1144 1484 +1486 2 68.8721666232077 -255.94939258419396 40.8346 0.1144 1485 +1487 2 69.79694219329738 -255.0138274726183 41.7074 0.1144 1486 +1488 2 70.05383053721752 -255.24973464284034 43.3294 0.1144 1487 +1489 2 71.01199788612558 -256.5121064510065 43.4924 0.1144 1488 +1490 2 71.9687510245708 -256.5236249418094 43.5616 0.1144 1489 +1491 2 72.9269183734789 -257.923807949817 43.6442 0.1144 1490 +1492 2 73.8836715119241 -257.79628756272905 43.736 0.1144 1491 +1493 2 74.8411299790841 -259.29776441184816 43.8332 0.1144 1492 +1494 2 75.7993681865584 -259.2215513220689 43.9326 0.1144 1493 +1495 2 76.75605046643743 -260.53063214399856 44.0308 0.1144 1494 +1496 2 77.71343837111732 -260.6752614003312 44.1274 0.1144 1495 +1497 2 78.6717471410717 -261.7637314785607 44.2215 0.1144 1496 +1498 2 79.6283588584706 -262.1301680460078 44.3128 0.1144 1497 +1499 2 80.5858881841968 -262.99507645641495 44.3999 0.1144 1498 +1500 2 81.54419695415118 -263.58315758223 44.4805 0.1144 1499 +1501 2 82.50080867155012 -263.64125784598355 44.5522 0.1144 1500 +1502 2 83.45911744150446 -264.1262210875952 44.6118 0.1144 1501 +1503 2 84.41657590866447 -265.054318888742 44.6566 0.1144 1502 +1504 2 85.37318762606337 -265.3872639985629 44.6841 0.1144 1503 +1505 2 85.59715164110695 -266.63346966661663 44.6592 0.1144 1504 +1506 2 85.594660401448 -267.8624435691409 44.5852 0.1144 1505 +1507 2 85.58983763908495 -269.0909062805977 44.4755 0.1144 1506 +1508 2 85.58487345567562 -270.320625948057 44.3428 0.1144 1507 +1509 2 85.57835364075714 -271.55040235066457 44.1991 0.1144 1508 +1510 2 85.5735308783941 -272.7815772274773 44.0552 0.1144 1509 +1511 2 85.38256752224753 -273.92403676737666 43.9407 0.1144 1510 +1512 2 85.30972123662029 -275.12726889953626 43.8533 0.1144 1511 +1513 2 85.01830482077918 -276.19993396061307 43.7842 0.1144 1512 +1514 2 84.69632458203174 -277.6266822927638 43.7256 0.1144 1513 +1515 2 84.3734234780098 -278.920162702375 43.6708 0.1144 1514 +1516 2 84.2115051219239 -280.1783620481205 43.5551 0.1144 1515 +1517 2 84.21637310622181 -281.396536469866 43.4255 0.1144 1516 +1518 2 84.29965387917917 -282.5769928473101 43.3112 0.1144 1517 +1519 2 84.38456114221187 -283.754262331418 43.2132 0.1144 1518 +1520 2 84.46699516540816 -284.93206069748015 43.1309 0.1144 1519 +1521 2 84.37716295774868 -286.182348178545 43.0245 0.1144 1520 +1522 2 84.28655485889436 -287.4335553183699 42.7395 0.1144 1521 +1523 2 69.59701761779156 -254.266249101545 42.3326 0.1144 1487 +1524 2 69.33743898387208 -253.36378254187474 42.742 0.1144 1523 +1525 2 69.11991608627176 -252.28049390768916 42.9568 0.1144 1524 +1526 2 68.9331423473542 -251.09885467841457 43.0074 0.1144 1525 +1527 2 68.75195281520531 -249.8853208788707 42.9517 0.1144 1526 +1528 2 68.57161003281749 -248.45694240384904 42.84 0.1144 1527 +1529 2 68.39049135923476 -247.02992769550463 42.719 0.1144 1528 +1530 2 68.20937238956597 -245.75839408322838 42.593 0.1144 1529 +1531 2 68.02825371598324 -244.52498724773199 42.4665 0.1144 1530 +1532 2 67.84791093359541 -243.29570324917051 42.3422 0.1144 1531 +1533 2 67.66679226001271 -242.28240629377535 42.2206 0.1144 1532 +1534 2 67.48560272786378 -241.28487811748505 42.1036 0.1144 1533 +1535 2 67.30448405428112 -240.14827109702958 41.9927 0.1144 1534 +1536 2 67.12336508461229 -238.9492354772832 41.8897 0.1144 1535 +1537 2 66.97780358920005 -237.7402701746862 41.7956 0.1144 1536 +1538 2 67.67296926249603 -236.84997752300265 41.725 0.1144 1537 +1539 2 68.73991214732817 -236.4374118831101 41.6808 0.1144 1538 +1540 2 69.8076309233552 -235.8852040318588 41.6567 0.1144 1539 +1541 2 70.87542026186227 -235.64840405968846 41.6472 0.1144 1540 +1542 2 71.94144198533385 -234.9216156705874 41.6475 0.1144 1541 +1543 2 73.00838457407991 -234.85738320452072 41.6531 0.1144 1542 +1544 2 74.0761033501069 -233.95732925205488 41.6595 0.1144 1543 +1545 2 75.14311679741917 -234.06944308304543 41.6662 0.1144 1544 +1546 2 76.21083557344616 -232.9941529607306 41.6727 0.1144 1545 +1547 2 77.27777816219222 -233.2806521503367 41.6794 0.1144 1546 +1548 2 78.34549693821924 -232.03062998906705 41.6858 0.1144 1547 +1549 2 79.41236541145184 -232.4906728231242 41.6926 0.1144 1548 +1550 2 80.47937885876411 -231.0673348301225 41.699 0.1144 1549 +1551 2 81.54632144751012 -231.65574525382493 41.7052 0.1144 1550 +1552 2 82.61404022353719 -230.1869690761843 41.7116 0.1144 1551 +1553 2 83.68091224980313 -229.64244534360475 41.7178 0.1144 1552 +1554 2 84.74870158831024 -229.36446568903955 41.7236 0.1144 1553 +1555 2 85.8155736145762 -228.72189415999372 41.7292 0.1144 1554 +1556 2 86.88258350885512 -228.54252738870676 41.7343 0.1144 1555 +1557 2 87.95023497934925 -227.80052198722504 41.739 0.1144 1556 +1558 2 89.01717431114807 -227.7220122078791 41.7427 0.1144 1557 +1559 2 90.08411689989413 -226.87726923752393 41.7452 0.1144 1558 +1560 2 91.15183567592112 -226.90341215425667 41.7463 0.1144 1559 +1561 2 92.21877826466715 -225.954247459525 41.7449 0.1144 1560 +1562 2 93.2864970406942 -226.08574211005097 41.7407 0.1144 1561 +1563 2 94.35266018521203 -225.0299987477469 41.732 0.1144 1562 +1564 2 95.26535313596985 -224.98734828435957 41.7166 0.1144 1563 +1565 2 95.76721533408747 -223.78652959411312 41.6926 0.1144 1564 +1566 2 95.81901712374007 -222.5593964772693 41.6573 0.1144 1565 +1567 2 95.77942864410497 -221.41145628529847 41.61 0.1144 1566 +1568 2 95.62015759761397 -220.34666350085354 41.5318 0.1144 1567 +1569 2 95.3808003967969 -219.1246870285563 41.4176 0.1144 1568 +1570 2 95.12928957249633 -217.69625381146562 41.2773 0.1144 1569 +1571 2 94.87784605372866 -216.21764885718272 41.123 0.1144 1570 +1572 2 94.62640579190821 -214.9331099341519 40.9657 0.1144 1571 +1573 2 94.59651812586185 -213.73541871847064 40.8397 0.1144 1572 +1574 2 94.64341024450509 -212.5203463448679 40.7537 0.1144 1573 +1575 2 94.6960318400827 -211.30498217414151 40.7016 0.1144 1574 +1576 2 94.02290109844131 -210.91408261669133 40.6745 0.1144 1575 +1577 2 93.0525465743334 -209.99260100760546 40.6636 0.1144 1576 +1578 2 92.16926535638217 -209.34312280221118 40.6616 0.1144 1577 +1579 2 91.5218551697836 -208.57565027796483 40.6616 0.1144 1578 +1580 2 90.90098298959272 -207.05633939309706 40.6616 0.1144 1579 +1581 2 90.30835593529272 -206.17403681136844 40.6616 0.1144 1580 +1582 2 89.72229829770764 -205.4822447463716 40.6616 0.1144 1581 +1583 2 89.09740079920451 -204.1284359913589 40.6616 0.1144 1582 +1584 2 88.45873325407028 -203.11604567054724 40.6616 0.1144 1583 +1585 2 87.86857943960675 -202.42302872092444 40.6613 0.1144 1584 +1586 2 87.48131142295117 -201.16310238284518 40.6613 0.1144 1585 +1587 2 87.29128499996902 -199.9009243390738 40.6613 0.1144 1586 +1588 2 87.60041280041264 -198.8415517004595 40.6613 0.1144 1587 +1589 2 87.86183255796306 -197.74767819386975 40.661 0.1144 1588 +1590 2 87.97916420110184 -196.58219939976436 40.6608 0.1144 1589 +1591 2 88.08921103188321 -195.4156112114072 40.6605 0.1144 1590 +1592 2 88.05365468054089 -194.19154954559406 40.6599 0.1144 1591 +1593 2 87.59848492599828 -192.9043006837262 40.6594 0.1144 1592 +1594 2 87.1399948857721 -191.47401622880616 40.6585 0.1144 1593 +1595 2 86.68079625988392 -190.53992386032093 40.6574 0.1144 1594 +1596 2 86.22152677542951 -189.73693435332055 40.6557 0.1144 1595 +1597 2 85.97085589090948 -188.50209940277614 40.6532 0.1144 1596 +1598 2 85.72986568612265 -187.21054957573205 40.6501 0.1144 1597 +1599 2 85.1971333517292 -185.85878817945846 40.6459 0.1144 1598 +1600 2 84.6401005803493 -185.04098156144346 40.6386 0.1144 1599 +1601 2 84.16465541104638 -184.14442788893183 40.6288 0.1144 1600 +1602 2 83.75639658398796 -182.81397651934384 40.6171 0.1144 1601 +1603 2 83.41999780368202 -181.48704420070933 40.6042 0.1144 1602 +1604 2 83.23880501458586 -180.34186220225996 40.5902 0.1144 1603 +1605 2 83.12321974752271 -179.27956428507088 40.4902 0.1144 1604 +1606 2 37.13034830175794 -255.1873478081232 21.8436 0.1144 803 +1607 2 38.245381274551576 -254.9688499264039 21.6472 0.1144 1606 +1608 2 39.36126455013959 -254.6674321565652 21.5538 0.1144 1607 +1609 2 40.42246433807633 -254.2787360734187 21.4722 0.1144 1608 +1610 2 41.326181735715394 -253.39311093644454 21.4066 0.1144 1609 +1611 2 42.2290992591846 -252.8491576480635 21.3548 0.1144 1610 +1612 2 43.212387475732065 -251.91612024802708 21.3139 0.1144 1611 +1613 2 44.079585767942625 -251.48999107244288 21.2801 0.1144 1612 +1614 2 45.011727517555215 -250.13328917754245 21.2426 0.1144 1613 +1615 2 46.01204221993203 -249.0639742573627 21.1904 0.1144 1614 +1616 2 46.99284031973477 -248.9686953260932 21.1196 0.1144 1615 +1617 2 48.07195746009234 -248.04025696757708 21.0283 0.1144 1616 +1618 2 49.19354317479287 -248.1656581564634 20.8918 0.1144 1617 +1619 2 50.26223424109182 -247.5872162236189 20.665 0.1144 1618 +1620 2 51.26013995431818 -247.19667356554476 20.3701 0.1144 1619 +1621 2 52.22469130860582 -246.2645178176432 20.0944 0.1144 1620 +1622 2 53.267184232965676 -246.0669500143211 19.8336 0.1144 1621 +1623 2 54.37408470378291 -245.9808847555861 19.5002 0.1144 1622 +1624 2 55.12142624634931 -246.92316224725403 19.0481 0.1144 1623 +1625 2 55.51675526264327 -247.93903946285792 18.6789 0.1144 1624 +1626 2 56.158600878142266 -248.846829594643 18.3239 0.1144 1625 +1627 2 56.633023624634845 -250.02345370206444 17.9397 0.1144 1626 +1628 2 56.79559748772895 -251.26409001157424 17.6247 0.1144 1627 +1629 2 56.48886200162781 -252.38159573091224 17.3954 0.1144 1628 +1630 2 56.011290671755326 -253.41393426038024 17.1596 0.1144 1629 +1631 2 56.35970115631209 -254.5935637138739 16.957 0.1144 1630 +1632 2 56.26739600490227 -255.75171021829698 16.7989 0.1144 1631 +1633 2 56.64018509317863 -257.0572851191175 16.6681 0.1144 1632 +1634 2 56.7258685434923 -258.3154441504883 16.5262 0.1144 1633 +1635 2 56.89974602336163 -259.57159464528985 16.3154 0.1144 1634 +1636 2 57.19727414979403 -260.8545428309549 16.1227 0.1144 1635 +1637 2 57.5829192294076 -261.8892401338662 15.9306 0.1144 1636 +1638 2 57.75275096102304 -263.04397532876135 15.6667 0.1144 1637 +1639 2 57.957876260184854 -264.08075983257345 15.2658 0.1144 1638 +1640 2 58.35892764734648 -265.1985131619718 14.9427 0.1144 1639 +1641 2 58.66373732918908 -266.4942670131436 14.686 0.1144 1640 +1642 2 58.957307442842115 -267.79689521240493 14.4766 0.1144 1641 +1643 2 59.064052266038736 -269.07468348248807 14.2972 0.1144 1642 +1644 2 59.16508784014231 -270.3387601619037 14.0802 0.1144 1643 +1645 2 59.05491952006983 -271.5065122189103 13.8769 0.1144 1644 +1646 2 59.481003710754635 -272.5868636614782 13.641 0.1144 1645 +1647 2 60.04121179373853 -273.46747322611253 13.4399 0.1144 1646 +1648 2 60.32901492150695 -274.54215655244104 13.227 0.1144 1647 +1649 2 60.23749552611947 -275.70881239008656 12.9677 0.1144 1648 +1650 2 60.12333564155135 -276.9269888160054 12.7668 0.1144 1649 +1651 2 60.53728634260808 -278.21915060659853 12.6337 0.1144 1650 +1652 2 61.129514178845355 -279.4562419907284 12.5604 0.1144 1651 +1653 2 61.95951717129652 -279.9645775328662 12.537 0.1144 1652 +1654 2 63.04664024419123 -279.2327670806476 12.5661 0.1144 1653 +1655 2 64.0784354944586 -280.3193363902202 12.6398 0.1144 1654 +1656 2 64.44061247261311 -281.5263260344907 12.7413 0.1144 1655 +1657 2 64.32240002981055 -282.78354504740304 12.8696 0.1144 1656 +1658 2 64.39826018087157 -283.8679436759783 13.089 0.1144 1657 +1659 2 63.93888812899677 -284.6325350902373 13.4781 0.1144 1658 +1660 2 63.35291040702112 -285.0640958293239 13.8104 0.1144 1659 +1661 2 62.67527575028677 -286.170946906986 14.1128 0.1144 1660 +1662 2 61.861555541700895 -287.8703332403979 14.4035 0.1144 1661 +1663 2 61.3764186158525 -289.1037059812595 14.6527 0.1144 1662 +1664 2 61.38855779254675 -290.33065457390535 14.791 0.1144 1663 +1665 2 60.986207358907514 -291.62929736484466 14.804 0.1144 1664 +1666 2 60.387869547443586 -292.235954419312 14.8235 0.1144 1665 +1667 2 60.022007722363455 -293.1721434535095 14.8642 0.1144 1666 +1668 2 59.726508049318255 -294.44463083237395 14.7476 0.1144 1667 +1669 2 59.688415312558014 -295.64439411911303 14.5422 0.1144 1668 +1670 2 59.78053652938193 -296.82495140719436 14.3338 0.1144 1669 +1671 2 59.804653952596496 -297.9700723126062 14.0193 0.1144 1670 +1672 2 59.85068354967484 -299.1156760081846 13.6762 0.1144 1671 +1673 2 60.15299254965851 -300.41947161156435 13.3031 0.1144 1672 +1674 2 60.30004868284118 -301.73038968865296 12.9543 0.1144 1673 +1675 2 60.2296688270698 -302.9365464266844 12.6857 0.1144 1674 +1676 2 60.12124819027766 -304.1166598015899 12.4918 0.1144 1675 +1677 2 60.181820966421185 -305.40927494667005 12.3858 0.1144 1676 +1678 2 60.65800827310241 -306.87409159049486 12.2943 0.1144 1677 +1679 2 60.50421496524055 -307.99930514748155 12.2294 0.1144 1678 +1680 2 60.09554490344919 -308.8802888586845 12.1617 0.1144 1679 +1681 2 60.034629194478434 -310.01013587018474 11.9664 0.1144 1680 +1682 2 60.31689243440902 -311.4436115318565 11.829 0.1144 1681 +1683 2 60.595679886933084 -312.3528117512543 11.2473 0.1144 1682 +1684 2 61.390658411726164 -312.7867945902251 11.1523 0.1144 1683 +1685 2 62.50580306549834 -311.8898668592609 11.1123 0.1144 1684 +1686 2 63.55510189030484 -312.93663845534707 11.0593 0.1144 1685 +1687 2 64.66525199033978 -312.6882598706308 10.9939 0.1144 1686 +1688 2 65.78922726062201 -313.0916132348353 10.9179 0.1144 1687 +1689 2 66.71284341893319 -312.799167616429 10.6731 0.1144 1688 +1690 2 66.70482298309197 -312.82837250397273 10.1226 0.1144 1689 +1691 2 66.5890333515013 -314.15815088436864 9.8152 0.1144 1690 +1692 2 66.57844410144007 -315.36724298777915 9.658 0.1144 1691 +1693 2 66.49825526666388 -316.6410361833863 9.4321 0.1144 1692 +1694 2 66.24822656527706 -318.0566571237992 9.2543 0.1144 1693 +1695 2 66.13259197469375 -319.368081901216 8.9978 0.1144 1694 +1696 2 67.34500686443795 -312.3027841215125 10.4769 0.1144 1689 +1697 2 67.96590423958861 -311.8452625681027 10.3271 0.1144 1696 +1698 2 67.90937395475173 -310.58860775961045 10.2206 0.1144 1697 +1699 2 67.96843005989238 -309.3934282956703 10.1538 0.1144 1698 +1700 2 68.32699976444809 -307.98818870963004 10.1226 0.1144 1699 +1701 2 69.16343507591446 -306.54635615263953 10.1226 0.1144 1700 +1702 2 59.90961583800879 -311.3709180073567 11.7867 0.1144 1682 +1703 2 58.93210180248312 -311.6986611176146 11.8797 0.1144 1702 +1704 2 57.961838270796946 -310.65508084768413 11.9854 0.1144 1703 +1705 2 56.847405755720075 -310.8196394225085 12.0758 0.1144 1704 +1706 2 55.805424796800835 -309.8401063902355 12.1479 0.1144 1705 +1707 2 54.71625499856951 -310.60637995827904 12.1016 0.1144 1706 +1708 2 53.666369096436114 -310.5156653036763 12.0521 0.1144 1707 +1709 2 52.70093087026176 -311.3139865787512 12.0137 0.1144 1708 +1710 2 51.602235931491016 -311.0358403023624 11.9759 0.1144 1709 +1711 2 50.511978665490815 -311.8986730743846 11.9873 0.1144 1710 +1712 2 49.48947394744884 -310.6189619059455 12.0894 0.1144 1711 +1713 2 48.425496190553126 -311.3389158772912 12.2621 0.1144 1712 +1714 2 47.69264888868839 -311.6328270584543 12.4893 0.1144 1713 +1715 2 46.65538856638334 -311.8615929788733 12.7862 0.1144 1714 +1716 2 45.57750870845124 -311.26383240473734 13.1583 0.1144 1715 +1717 2 44.44997282454953 -311.88408419901714 13.5007 0.1144 1716 +1718 2 43.32545571668515 -312.8239690751457 13.7999 0.1144 1717 +1719 2 42.18502072098862 -312.155166250192 13.9741 0.1144 1718 +1720 2 42.468470316533725 -312.80126945522875 13.9904 0.1144 1719 +1721 2 43.199094097098175 -314.41915350963103 13.8858 0.1144 1720 +1722 2 43.80538303261314 -315.13116788468676 13.6757 0.1144 1721 +1723 2 44.2669707158966 -315.7876421967706 13.4182 0.1144 1722 +1724 2 44.848287343440816 -316.2243147426057 13.1387 0.1144 1723 +1725 2 45.46660465801456 -317.0158591323746 12.7609 0.1144 1724 +1726 2 46.345752392237436 -318.5516319317821 12.4279 0.1144 1725 +1727 2 47.31123810521921 -318.32076563791816 12.1254 0.1144 1726 +1728 2 48.25629897394067 -319.732102750256 11.7377 0.1144 1727 +1729 2 49.24518093344241 -319.60336347187626 11.4231 0.1144 1728 +1730 2 50.22850563001161 -320.9363256573717 11.1737 0.1144 1729 +1731 2 51.35490978372856 -320.4150875832811 10.9774 0.1144 1730 +1732 2 52.351787993996325 -321.76539029825284 10.7338 0.1144 1731 +1733 2 52.848989595868915 -322.5126242507932 10.4413 0.1144 1732 +1734 2 53.53344458632749 -323.0601023114271 10.2056 0.1144 1733 +1735 2 54.59167159047504 -324.1883942054393 9.9961 0.1144 1734 +1736 2 55.521613947347774 -324.20012850643786 9.8092 0.1144 1735 +1737 2 56.277341390001496 -325.7883715724317 9.6091 0.1144 1736 +1738 2 57.03277087604236 -326.2705120493136 9.2907 0.1144 1737 +1739 2 58.04656039464249 -326.8653997601467 8.9829 0.1144 1738 +1740 2 59.09738109714155 -327.2197922301233 8.7411 0.1144 1739 +1741 2 60.02501532211298 -327.98117846650246 8.5592 0.1144 1740 +1742 2 61.06435673478747 -328.4078197161784 8.4457 0.1144 1741 +1743 2 62.076899289191 -327.65340583398057 8.3788 0.1144 1742 +1744 2 62.828561051835656 -328.309325763716 8.302 0.1144 1743 +1745 2 63.54312027382881 -330.09051813126746 8.2219 0.1144 1744 +1746 2 64.35775752252897 -330.31326060352217 8.1173 0.1144 1745 +1747 2 65.29892512734347 -331.3070274021703 7.937 0.1144 1746 +1748 2 66.38086059835683 -331.1259468878755 7.6985 0.1144 1747 +1749 2 67.46529014334894 -331.9020342699805 7.4834 0.1144 1748 +1750 2 68.1715620619295 -332.52548128430175 7.3042 0.1144 1749 +1751 2 68.9142923882859 -333.1162061475676 7.1462 0.1144 1750 +1752 2 69.86934492114233 -334.42538732011326 7.0021 0.1144 1751 +1753 2 70.81552375450205 -334.37183912086425 6.8641 0.1144 1752 +1754 2 71.84460815828697 -335.67575764391523 6.6664 0.1144 1753 +1755 2 72.89618461812539 -335.33573988758314 6.3772 0.1144 1754 +1756 2 73.62996583701269 -337.007402646194 5.999 0.1144 1755 +1757 2 74.5220701237358 -337.0101708146731 5.6528 0.1144 1756 +1758 2 75.53665646165885 -338.20013842653873 5.3437 0.1144 1757 +1759 2 75.94068280411351 -339.2391996602744 4.499 0.1144 1758 +1760 2 41.972190078122054 -311.9134656930492 14.6213 0.1144 1719 +1761 2 41.26253667801881 -311.4792645801791 14.9028 0.1144 1760 +1762 2 40.31605273037989 -310.2494293530152 15.0777 0.1144 1761 +1763 2 39.27044692619917 -311.18131496997154 15.3219 0.1144 1762 +1764 2 38.14193194204504 -310.4324757301385 15.4991 0.1144 1763 +1765 2 37.6524547322894 -309.89638673665735 15.4585 0.1144 1764 +1766 2 36.919391465705104 -309.11610836834603 15.3638 0.1144 1765 +1767 2 35.94417819739884 -308.0642067089956 15.247 0.1144 1766 +1768 2 35.16743981048671 -307.6877686805616 15.1066 0.1144 1767 +1769 2 34.36006368725509 -306.294870595007 14.9613 0.1144 1768 +1770 2 33.50266557562133 -305.683548297579 14.8273 0.1144 1769 +1771 2 32.655636595527234 -304.86898237181504 14.6983 0.1144 1770 +1772 2 31.7121172401674 -304.04240575455333 14.43 0.1144 1771 +1773 2 30.691849095173815 -303.7871176864092 14.1188 0.1144 1772 +1774 2 29.72226394836636 -302.77099053751624 13.8231 0.1144 1773 +1775 2 28.770510975165784 -302.52164281817204 13.5393 0.1144 1774 +1776 2 27.80378210963594 -301.54107600437584 13.1044 0.1144 1775 +1777 2 27.78285648977701 -301.2247044095796 13.6035 0.1144 1776 +1778 2 27.931245019053158 -300.009732778034 14.3277 0.1144 1777 +1779 2 28.398258422561987 -299.2528473138886 14.587 0.1144 1778 +1780 2 29.02324891974417 -298.598046620758 14.8881 0.1144 1779 +1781 2 28.813986381720362 -297.3286274455604 15.2147 0.1144 1780 +1782 2 28.471085786318554 -295.9189778364617 15.4566 0.1144 1781 +1783 2 27.964982746840647 -294.40043589663276 15.7461 0.1144 1782 +1784 2 27.861288326848516 -301.95672989654764 12.6297 0.1144 1776 +1785 2 27.74301163335999 -303.2240305441102 12.195 0.1144 1784 +1786 2 27.908770874985855 -304.33886543460807 11.8461 0.1144 1785 +1787 2 28.106658735567905 -305.6238030224361 11.4273 0.1144 1786 +1788 2 28.30889631672482 -307.0363689669855 11.1138 0.1144 1787 +1789 2 28.51178879797188 -308.42083751468476 10.9152 0.1144 1788 +1790 2 28.859561757533122 -309.8771527278097 10.7931 0.1144 1789 +1791 2 28.607042939401573 -310.91768409675296 10.7222 0.1144 1790 +1792 2 28.352911547241924 -311.9597135843495 10.6877 0.1144 1791 +1793 2 28.520317412798626 -313.3347446253708 10.6848 0.1144 1792 +1794 2 53.85159800852985 -311.5160601797174 11.2473 0.1144 1708 +1795 2 54.26540658825361 -312.91466306842466 11.2679 0.1144 1794 +1796 2 54.59520169984164 -314.2609103381753 11.2649 0.1144 1795 +1797 2 55.03805152449241 -314.9206587492758 11.3747 0.1144 1796 +1798 2 55.91372628658453 -315.44948928015117 11.3188 0.1144 1797 +1799 2 56.90669080300367 -316.3438634142451 11.2483 0.1144 1798 +1800 2 57.96162831442311 -316.54201576086666 11.1745 0.1144 1799 +1801 2 59.0881101366868 -316.9536577504235 11.0996 0.1144 1800 +1802 2 60.15176915934224 -317.24997828881465 10.9457 0.1144 1801 +1803 2 61.256538867967066 -317.5819047435708 10.6848 0.1144 1802 +1804 2 61.61974390250478 -277.9820141644073 11.2492 0.1144 1651 +1805 2 61.67914121678976 -278.57930798054986 10.65 0.1144 1804 +1806 2 60.640020350796604 -278.70279660287764 10.0722 0.1144 1805 +1807 2 59.5441515815907 -278.45618313072305 9.6254 0.1144 1806 +1808 2 58.490759634752635 -277.8777644101271 9.3078 0.1144 1807 +1809 2 57.45756493594175 -277.4167694564168 9.1085 0.1144 1808 +1810 2 56.526145189851945 -278.1036071194602 8.9978 0.1144 1809 +1811 2 32.51041576494179 -255.46660016627845 20.8074 0.1144 799 +1812 2 32.70166990160809 -256.15908523440817 20.5961 0.1144 1811 +1813 2 32.886854255199864 -257.411274254666 20.4994 0.1144 1812 +1814 2 33.26041627381 -258.68032822305616 20.4292 0.1144 1813 +1815 2 33.431817256895656 -259.87899706352437 20.3843 0.1144 1814 +1816 2 33.330674918566544 -261.1615211773055 20.3614 0.1144 1815 +1817 2 33.302273426653656 -262.38740596998616 20.4 0.1144 1816 +1818 2 33.952786867816855 -263.0892955663505 20.4615 0.1144 1817 +1819 2 34.91587671342283 -263.8018960152668 20.4987 0.1144 1818 +1820 2 35.82736249346787 -264.5938551423373 20.5033 0.1144 1819 +1821 2 36.90208115794347 -264.744829519742 20.4792 0.1144 1820 +1822 2 37.9286111377828 -264.8831252453746 20.2713 0.1144 1821 +1823 2 38.14494557829137 -264.1404316725446 20.1001 0.1144 1822 +1824 2 38.2371869772016 -262.8871176651988 19.977 0.1144 1823 +1825 2 38.3812557845859 -261.6209521290563 19.9082 0.1144 1824 +1826 2 39.00629315735934 -260.55350015593496 19.8922 0.1144 1825 +1827 2 39.015229471695555 -259.3533896952987 19.9249 0.1144 1826 +1828 2 38.70795335999706 -258.07998892824054 20.0009 0.1144 1827 +1829 2 38.404888602674006 -257.08796581350487 20.203 0.1144 1828 +1830 2 38.571628598208626 -255.7459970732241 20.4167 0.1144 1829 +1831 2 38.800578753718106 -254.53511426997318 20.5881 0.1144 1830 +1832 2 39.03447864584757 -253.36873537779144 20.719 0.1144 1831 +1833 2 39.141272792564365 -252.14813859434219 20.8145 0.1144 1832 +1834 2 38.960154118981634 -250.88700361649006 20.8796 0.1144 1833 +1835 2 38.46776033449641 -249.87496796966377 20.9185 0.1144 1834 +1836 2 37.943078932813584 -248.84513056736813 20.9544 0.1144 1835 +1837 2 37.320671551055156 -247.731460935293 21.0379 0.1144 1836 +1838 2 36.55367404334249 -246.76048619170388 21.1466 0.1144 1837 +1839 2 35.814898270717904 -245.9065912808996 21.2324 0.1144 1838 +1840 2 35.00187714907922 -244.99539541844615 21.2958 0.1144 1839 +1841 2 34.08389281088552 -244.21171685424093 21.3385 0.1144 1840 +1842 2 33.64483469260581 -243.10318296857537 21.3624 0.1144 1841 +1843 2 33.40709717188359 -241.9776750843769 21.3698 0.1144 1842 +1844 2 33.33519738816216 -240.7276110770507 21.3699 0.1144 1843 +1845 2 38.656938032802884 -264.77745079135394 19.3615 0.1144 1822 +1846 2 39.78016667281557 -265.31032853531985 19.1715 0.1144 1845 +1847 2 40.89933338795279 -265.2112670703372 19.1026 0.1144 1846 +1848 2 41.92281691016107 -266.0839343595515 19.0362 0.1144 1847 +1849 2 42.83268301011128 -266.4134605900831 18.9718 0.1144 1848 +1850 2 43.76025979437729 -267.63734774853486 18.8598 0.1144 1849 +1851 2 44.743476621616466 -267.61486327249537 18.7353 0.1144 1850 +1852 2 45.83671916845264 -267.15513389470567 18.6362 0.1144 1851 +1853 2 46.98058982943004 -267.60435695676887 18.5526 0.1144 1852 +1854 2 48.09253903774268 -267.618257816554 18.4819 0.1144 1853 +1855 2 49.03216838614271 -268.4901108875804 18.4218 0.1144 1854 +1856 2 48.798742767447344 -269.69375722253545 18.3701 0.1144 1855 +1857 2 49.0136162539755 -270.6442278407736 18.2516 0.1144 1856 +1858 2 49.26830238988007 -271.5929987047106 18.1334 0.1144 1857 +1859 2 49.267437640296386 -272.8313688816339 18.0288 0.1144 1858 +1860 2 49.02143100027463 -274.25867388790755 17.9384 0.1144 1859 +1861 2 48.67836540566927 -275.65058701470844 17.8622 0.1144 1860 +1862 2 48.53591627837979 -276.8276895394545 17.8001 0.1144 1861 +1863 2 48.45094636795197 -278.02181265966055 17.6924 0.1144 1862 +1864 2 49.08791005055023 -278.82131432618615 17.4334 0.1144 1863 +1865 2 -9.02599453636401 -230.81818049872965 14.6213 0.1144 753 +1866 2 -9.399235719256534 -231.98398663059118 15.1749 0.1144 1865 +1867 2 -9.273282519126838 -232.97627633031402 15.459 0.1144 1866 +1868 2 -8.749377304725034 -234.49098914272014 15.7072 0.1144 1867 +1869 2 -8.483506282575547 -235.93173035544044 15.9687 0.1144 1868 +1870 2 -8.431062309789716 -237.20066774616853 16.2692 0.1144 1869 +1871 2 -7.959774311103949 -238.3787590365984 16.5135 0.1144 1870 +1872 2 -7.982669668995559 -239.5645108621841 16.6778 0.1144 1871 +1873 2 -8.403439668698667 -240.66891181055206 16.7783 0.1144 1872 +1874 2 -8.309020885087659 -241.97073618204968 16.8398 0.1144 1873 +1875 2 -7.792336730543671 -242.84662406259133 16.8665 0.1144 1874 +1876 2 -7.186857237939822 -243.33771471296137 16.8708 0.1144 1875 +1877 2 -6.960538013303417 -244.60365070842914 16.8708 0.1144 1876 +1878 2 -7.463949032949657 -245.88014542963714 16.8708 0.1144 1877 +1879 2 -7.650117693483544 -247.32237578533466 16.8708 0.1144 1878 +1880 2 -11.333019387098565 -204.04647892445175 16.8708 0.1144 39 +1881 2 -12.377995618222663 -205.61821391068247 16.9056 0.1144 1880 +1882 2 -13.400243422591224 -205.92888844370515 16.889 0.1144 1881 +1883 2 -14.490097419309011 -206.42204473753395 16.8876 0.1144 1882 +1884 2 -15.571630560897912 -206.74958735428854 16.9374 0.1144 1883 +1885 2 -16.668766611212316 -207.04861011066743 17.0928 0.1144 1884 +1886 2 -17.438018339194958 -207.86365795648152 17.3213 0.1144 1885 +1887 2 -17.097096078153523 -208.8577061927743 17.7418 0.1144 1886 +1888 2 -17.497156253172616 -210.00838433893549 18.1976 0.1144 1887 +1889 2 -18.54982687773062 -210.29323258151948 18.6026 0.1144 1888 +1890 2 -19.644031850011263 -210.09858837819786 18.9642 0.1144 1889 +1891 2 -20.66764766619611 -209.77105225398333 19.3301 0.1144 1890 +1892 2 -21.24356448227307 -210.54942584406223 19.7322 0.1144 1891 +1893 2 -21.95108137660275 -211.48059745024892 20.27 0.1144 1892 +1894 2 -22.751487666583586 -210.53623433884906 20.8372 0.1144 1893 +1895 2 -22.73619292698422 -210.92132059438796 21.4446 0.1144 1894 +1896 2 -22.087942800605155 -212.30824070359893 22.013 0.1144 1895 +1897 2 -22.09213105534869 -213.08086568149193 22.6936 0.1144 1896 +1898 2 -21.737940021461213 -213.7951901189927 23.4853 0.1144 1897 +1899 2 -22.72575799798261 -213.0194737150624 24.1936 0.1144 1898 +1900 2 -23.850539214657534 -213.15708116033426 24.7996 0.1144 1899 +1901 2 -24.312398826616533 -214.11212047621802 25.4274 0.1144 1900 +1902 2 -24.896912407691175 -214.63162963275613 26.0317 0.1144 1901 +1903 2 -24.905976523112585 -215.8480881134538 26.5301 0.1144 1902 +1904 2 -25.585271423738895 -217.04460227033707 26.9819 0.1144 1903 +1905 2 -26.417871410190116 -217.9889422469613 27.4943 0.1144 1904 +1906 2 -26.552485127817025 -216.85402035240668 28.8448 0.1144 1905 +1907 2 -26.773905044458008 -215.41621817572903 29.8346 0.1144 1906 +1908 2 -26.943642526704505 -214.10047104283552 30.2476 0.1144 1907 +1909 2 -27.201506732973836 -212.87412169833175 30.7432 0.1144 1908 +1910 2 -26.90484427817316 -212.0191100950624 31.3936 0.1144 1909 +1911 2 -26.375316742368568 -211.52878971757485 31.9928 0.1144 1910 +1912 2 -25.790047902141055 -210.30684203046866 32.4624 0.1144 1911 +1913 2 -24.989281191208498 -209.0369495240953 32.8549 0.1144 1912 +1914 2 -23.940842294452576 -209.52189579279872 33.2293 0.1144 1913 +1915 2 -22.846190049088815 -208.80076247592956 33.7417 0.1144 1914 +1916 2 -26.991748310910975 -217.75664195820562 27.9309 0.1144 1905 +1917 2 -27.968514282420912 -218.9938536268495 28.2579 0.1144 1916 +1918 2 -28.81068933984969 -219.31936304806356 28.5527 0.1144 1917 +1919 2 -28.558767609457963 -219.7689098035403 28.7106 0.1144 1918 +1920 2 -27.582016582923732 -220.21198969218335 28.7048 0.1144 1919 +1921 2 -26.45642237030435 -220.59990944914023 28.6532 0.1144 1920 +1922 2 -25.713478420276846 -221.23066608597748 28.5905 0.1144 1921 +1923 2 -25.92474413501982 -222.57020709646048 28.5303 0.1144 1922 +1924 2 -25.86012610880885 -223.78922299551095 28.4572 0.1144 1923 +1925 2 -25.810898307510246 -224.9877937505351 28.3766 0.1144 1924 +1926 2 -26.104649799088683 -226.23223007104903 28.2677 0.1144 1925 +1927 2 -26.328862201504446 -227.44201744763785 28.1086 0.1144 1926 +1928 2 -26.635506695183853 -228.30437672564858 27.898 0.1144 1927 +1929 2 -26.81847685541136 -229.31534590947086 27.6396 0.1144 1928 +1930 2 -26.66502703507804 -230.18016046517982 27.1391 0.1144 1929 +1931 2 -27.068345820799227 -230.21388563841356 26.3073 0.1144 1930 +1932 2 -27.062782687744043 -230.57511710781057 25.6311 0.1144 1931 +1933 2 -27.11384835572639 -231.83537901506696 25.1026 0.1144 1932 +1934 2 -26.21746802227033 -232.84888497611877 24.7123 0.1144 1933 +1935 2 -25.407198367426112 -233.17189815454458 24.3126 0.1144 1934 +1936 2 -25.470502837706007 -234.43433103538922 24.0539 0.1144 1935 +1937 2 -25.620156147945032 -235.86240531883743 23.9182 0.1144 1936 +1938 2 -25.324271092410196 -236.75306710821962 23.8354 0.1144 1937 +1939 2 -25.037199536905817 -237.89915857860612 23.8048 0.1144 1938 +1940 2 -24.762214595438255 -239.11191948292128 23.8246 0.1144 1939 +1941 2 -24.60053435769643 -240.4502770903107 23.8976 0.1144 1940 +1942 2 -24.88538490985599 -241.58793281836213 23.9997 0.1144 1941 +1943 2 -25.425328452791454 -242.91254975672916 24.2028 0.1144 1942 +1944 2 -26.013006484269816 -244.28769766687557 24.4091 0.1144 1943 +1945 2 -26.748900300280436 -244.66091019777042 24.6117 0.1144 1944 +1946 2 -27.475845065336863 -245.57201700779143 25.0503 0.1144 1945 +1947 2 -27.735458575987238 -245.8801700725666 25.4025 0.1144 1946 +1948 2 -28.87850567590594 -245.25579805962076 25.677 0.1144 1947 +1949 2 -30.01838902570774 -245.89062705631858 25.8851 0.1144 1948 +1950 2 -31.161490511484995 -245.1176847397844 26.051 0.1144 1949 +1951 2 -32.301085567400975 -245.88456467074775 26.1857 0.1144 1950 +1952 2 -33.442374621025536 -245.49707281161176 26.2984 0.1144 1951 +1953 2 -34.53889028186793 -246.16139216988205 26.5024 0.1144 1952 +1954 2 -35.5365275064222 -245.4428831481677 26.7871 0.1144 1953 +1955 2 -36.63553378219578 -245.29838033170637 27.0786 0.1144 1954 +1956 2 -37.52736116697543 -245.8815936872843 27.422 0.1144 1955 +1957 2 -38.371904851857884 -246.718337650556 27.76 0.1144 1956 +1958 2 -39.29674491220479 -247.4434677100508 28.0314 0.1144 1957 +1959 2 -40.202935253594106 -247.21295698358654 28.2632 0.1144 1958 +1960 2 -41.08644433990543 -248.9998156925961 28.474 0.1144 1959 +1961 2 -41.92528884262252 -249.2184683450614 28.6625 0.1144 1960 +1962 2 -42.79000027503562 -250.33564253121227 28.8207 0.1144 1961 +1963 2 -43.74079470446681 -251.00102596923148 28.9696 0.1144 1962 +1964 2 -44.615395745292524 -251.61641817211972 29.1838 0.1144 1963 +1965 2 -45.49237577658578 -252.93215823936617 29.3782 0.1144 1964 +1966 2 -46.40011849253709 -252.9358859427051 29.563 0.1144 1965 +1967 2 -47.20347693426514 -254.14696373379684 29.9986 0.1144 1966 +1968 2 -48.290034426173946 -253.73784518644084 30.3657 0.1144 1967 +1969 2 -49.427165810994836 -254.64749659028206 30.9299 0.1144 1968 +1970 2 -27.19679992882613 -245.26231785921556 25.8686 0.1144 1946 +1971 2 -26.08887909367255 -246.0720588670764 26.0065 0.1144 1970 +1972 2 -25.188774302863404 -246.35103760435794 26.0716 0.1144 1971 +1973 2 -24.12176479374112 -247.18346783045445 26.1834 0.1144 1972 +1974 2 -23.053104905554363 -247.24045837909716 26.2748 0.1144 1973 +1975 2 -22.015055015578437 -248.13234573791658 26.3435 0.1144 1974 +1976 2 -21.069719675032594 -248.53938931506326 26.3911 0.1144 1975 +1977 2 -20.02195910664055 -249.30081324240467 26.4195 0.1144 1976 +1978 2 -18.90835951926332 -249.36040054609066 26.4306 0.1144 1977 +1979 2 -17.895234267394407 -250.14510708542622 26.4312 0.1144 1978 +1980 2 -16.785622691479546 -250.28956358305203 26.4312 0.1144 1979 +1981 2 -27.34098063282219 -230.24503178332122 24.7439 0.1144 1931 +1982 2 -28.095336567141334 -230.12958456598284 24.8861 0.1144 1981 +1983 2 -28.383244805479002 -228.82019327465093 24.927 0.1144 1982 +1984 2 -28.523936991578662 -227.45559390047845 25.0368 0.1144 1983 +1985 2 -28.838433664948617 -225.93966047276564 25.1889 0.1144 1984 +1986 2 -28.842326600213855 -224.71155398089553 25.2955 0.1144 1985 +1987 2 -28.674000678400965 -223.65653309528784 25.3367 0.1144 1986 +1988 2 -29.10969774509968 -222.27256928202286 25.2522 0.1144 1987 +1989 2 -29.584268924719378 -221.4033883775285 25.0767 0.1144 1988 +1990 2 -30.040272105148066 -220.67931734716902 24.8403 0.1144 1989 +1991 2 -30.4954958413486 -219.38517419843743 24.5758 0.1144 1990 +1992 2 -31.058156734227243 -217.7217711910052 24.3156 0.1144 1991 +1993 2 -31.729850776990098 -217.09382174461481 24.0783 0.1144 1992 +1994 2 -32.19150576580643 -216.34170304614622 23.8907 0.1144 1993 +1995 2 -31.90576434705536 -214.93618730226277 23.764 0.1144 1994 +1996 2 -31.5382868931002 -213.32775510417667 23.6859 0.1144 1995 +1997 2 -31.4088553120497 -211.92738935600005 23.6435 0.1144 1996 +1998 2 -31.412096806272253 -210.6641326630521 23.6248 0.1144 1997 +1999 2 -31.657888516652342 -209.70007123534214 23.6195 0.1144 1998 +2000 2 -32.327180178144935 -209.234732920952 23.6191 0.1144 1999 +2001 2 -32.4678423655617 -207.9322667586062 23.6191 0.1144 2000 +2002 2 -32.028392944304265 -206.6787646931183 23.6191 0.1144 2001 +2003 2 -29.39807657729665 -219.96587027967993 30.7392 0.1144 1918 +2004 2 -30.12929087519156 -221.51354786145464 31.7153 0.1144 2003 +2005 2 -30.872621489720068 -221.84821251706822 32.1236 0.1144 2004 +2006 2 -31.461129892237572 -222.87242544064196 32.5931 0.1144 2005 +2007 2 -32.224014914376504 -224.35620016852442 33.1649 0.1144 2006 +2008 2 -32.716115803353105 -225.0247625247599 33.7047 0.1144 2007 +2009 2 -32.38868576618538 -226.55276300641987 34.1863 0.1144 2008 +2010 2 -33.10446601842354 -226.74900724276682 34.6923 0.1144 2009 +2011 2 -33.64038118819991 -228.1569825487961 35.2428 0.1144 2010 +2012 2 -34.306163138924774 -229.7604706524324 35.8431 0.1144 2011 +2013 2 -34.67367889610271 -230.85668636777652 36.505 0.1144 2012 +2014 2 -35.44227266914827 -231.5044683563121 37.1353 0.1144 2013 +2015 2 -36.35578918096474 -232.36471951008957 37.739 0.1144 2014 +2016 2 -36.71795760026241 -233.34441982455985 38.3841 0.1144 2015 +2017 2 -36.67693567869601 -234.51012053477456 39.0684 0.1144 2016 +2018 2 -36.18949212901722 -235.52528897489952 39.6323 0.1144 2017 +2019 2 -35.905693687519104 -236.68866586544584 40.0652 0.1144 2018 +2020 2 -36.12266914954156 -237.8594914627982 40.5031 0.1144 2019 +2021 2 -36.85462558481478 -238.94996088613806 40.9069 0.1144 2020 +2022 2 -37.95505488299087 -239.1139125786022 41.6147 0.1144 2021 +2023 2 -24.157063450691734 -213.2940849510752 24.7439 0.1144 1900 +2024 2 -25.256656066034576 -213.02245972794543 25.3217 0.1144 2023 +2025 2 -26.344294916018438 -213.8045601393857 25.6046 0.1144 2024 +2026 2 -27.481006009063133 -213.22495487752462 25.9138 0.1144 2025 +2027 2 -28.60781337554769 -213.52362250252125 26.2394 0.1144 2026 +2028 2 -29.663804746504827 -213.21786869973107 26.5639 0.1144 2027 +2029 2 -30.69365852759015 -212.79799796453938 26.8922 0.1144 2028 +2030 2 -31.74639671629629 -212.6178180183441 27.3005 0.1144 2029 +2031 2 -32.843912052918206 -212.63441463530117 27.6898 0.1144 2030 +2032 2 -33.977713179113515 -213.10797699351716 27.9977 0.1144 2031 +2033 2 -35.096130890377076 -213.60591574688758 28.2836 0.1144 2032 +2034 2 -36.10461871504232 -214.05806428149566 28.5373 0.1144 2033 +2035 2 -37.14233382069783 -214.586169781994 28.7353 0.1144 2034 +2036 2 -38.210133522218804 -215.06494743520872 28.891 0.1144 2035 +2037 2 -39.190962118890866 -215.62960440565098 29.0531 0.1144 2036 +2038 2 -40.22950078560507 -215.131615946358 29.2561 0.1144 2037 +2039 2 -41.327422591941726 -216.32044707513955 29.4711 0.1144 2038 +2040 2 -42.37276478549829 -215.6770536733433 29.7794 0.1144 2039 +2041 2 -43.41536252434129 -217.13440468906532 30.074 0.1144 2040 +2042 2 -44.47014773447018 -216.66361092999335 30.3176 0.1144 2041 +2043 2 -45.59176770117378 -217.74772849580455 30.518 0.1144 2042 +2044 2 -46.692122681736144 -217.2803393461113 30.69 0.1144 2043 +2045 2 -47.807498132173805 -217.93744217780784 30.903 0.1144 2044 +2046 2 -48.92188371514458 -217.73558669676578 31.1363 0.1144 2045 +2047 2 -50.024661210832676 -218.24833929824183 31.3788 0.1144 2046 +2048 2 -50.988551555336336 -218.7081551887572 31.6638 0.1144 2047 +2049 2 -52.0376140985114 -219.381085457469 31.908 0.1144 2048 +2050 2 -53.150136820704844 -219.6231346256145 32.1 0.1144 2049 +2051 2 -54.171672190292 -220.0926899753029 32.2941 0.1144 2050 +2052 2 -55.18734001283156 -220.74040747922328 32.4719 0.1144 2051 +2053 2 -56.261611530765464 -221.03759041892857 32.6108 0.1144 2052 +2054 2 -57.36037357296878 -221.67184394479 32.7387 0.1144 2053 +2055 2 -58.44597614970043 -222.04248980211028 32.8745 0.1144 2054 +2056 2 -59.57001191553496 -222.8319430316646 33.0 0.1144 2055 +2057 2 -60.712137854093115 -222.55216658947836 33.0901 0.1144 2056 +2058 2 -61.788062805938466 -223.08417054458113 33.1545 0.1144 2057 +2059 2 -62.927118839547916 -223.14854919030387 33.2024 0.1144 2058 +2060 2 -64.05349293806707 -223.02081324137646 33.2371 0.1144 2059 +2061 2 -65.13024450581796 -223.98166973818647 33.2693 0.1144 2060 +2062 2 -66.2247921387989 -223.67172277729793 33.3043 0.1144 2061 +2063 2 -67.32510300253082 -224.8840727625868 33.3491 0.1144 2062 +2064 2 -68.4425555295891 -224.1080821789754 33.4211 0.1144 2063 +2065 2 -69.56078394784225 -225.35421864921744 33.5107 0.1144 2064 +2066 2 -70.6783070373806 -224.84632656236906 33.7417 0.1144 2065 +2067 2 -7.659201691571335 -203.0334285984302 18.4423 0.1144 35 +2068 2 -7.64553382720396 -204.24887364618974 18.6548 0.1144 2067 +2069 2 -7.14672616519764 -204.98660867572193 18.8475 0.1144 2068 +2070 2 -6.401603322398455 -206.6711741195675 18.9741 0.1144 2069 +2071 2 -6.486746147114769 -207.7174330691807 19.0313 0.1144 2070 +2072 2 -6.680186000045006 -208.73627211677132 19.0642 0.1144 2071 +2073 2 -6.216955447964322 -210.26141552647454 19.0757 0.1144 2072 +2074 2 -5.956584248042033 -211.3522290107171 19.0042 0.1144 2073 +2075 2 -5.745614092348598 -212.32859574663397 19.0248 0.1144 2074 +2076 2 -5.504627144508952 -213.29026670453928 19.0502 0.1144 2075 +2077 2 -5.740089478128148 -214.7745071544834 19.0757 0.1144 2076 +2078 2 -6.052520391260952 -216.27974660445238 19.0997 0.1144 2077 +2079 2 -5.828498935511917 -217.31010983136298 19.1213 0.1144 2078 +2080 2 -5.551931620799415 -218.20373164905232 19.1398 0.1144 2079 +2081 2 -6.091898352437317 -219.81018486076013 19.1537 0.1144 2080 +2082 2 -6.305814178539203 -220.86824320751447 19.2078 0.1144 2081 +2083 2 -5.837850422771034 -221.7214834654859 19.1646 0.1144 2082 +2084 2 -5.910770823911729 -223.05511835596354 19.1453 0.1144 2083 +2085 2 -5.994090853461447 -224.39763558322954 19.1507 0.1144 2084 +2086 2 -6.006191618201321 -225.6592003114108 19.1609 0.1144 2085 +2087 2 -6.113059880431532 -226.9165078961804 19.1781 0.1144 2086 +2088 2 -6.264413500173195 -228.16824606784502 19.2057 0.1144 2087 +2089 2 -6.257149944585606 -229.4178217515053 19.2515 0.1144 2088 +2090 2 -6.135835200588048 -230.66179566727612 19.2993 0.1144 2089 +2091 2 -6.266201765060515 -231.86400261324286 19.382 0.1144 2090 +2092 2 -6.475946100297392 -232.8272438643557 19.5166 0.1144 2091 +2093 2 -6.4128971234563465 -234.14337827770817 19.6528 0.1144 2092 +2094 2 -6.2786525686942944 -235.53187742240763 19.7554 0.1144 2093 +2095 2 -5.968130582911744 -236.7212407230068 19.8003 0.1144 2094 +2096 2 -5.834983064659912 -237.72853286952915 19.7051 0.1144 2095 +2097 2 -5.818916574156013 -238.91042826508868 19.5149 0.1144 2096 +2098 2 -5.111465551612994 -238.97250844191086 19.3972 0.1144 2097 +2099 2 -4.361650271023752 -240.42427535634363 19.2478 0.1144 2098 +2100 2 -4.4030629973814825 -241.57856443624007 19.0674 0.1144 2099 +2101 2 -4.615887896666916 -242.57645251453818 18.9147 0.1144 2100 +2102 2 -4.773676025971671 -243.64784432872386 18.8173 0.1144 2101 +2103 2 -4.638696143811892 -245.01819534352114 18.8324 0.1144 2102 +2104 2 -4.155206851778907 -246.56434501463053 18.8451 0.1144 2103 +2105 2 -4.012051290670183 -247.83081309580842 18.858 0.1144 2104 +2106 2 -3.7662292855210886 -248.89701638520455 18.7885 0.1144 2105 +2107 2 -3.504251527278587 -249.83649929982488 18.7252 0.1144 2106 +2108 2 -3.2843226953746942 -250.83508660438127 18.6678 0.1144 2107 +2109 2 -3.1815999335431364 -252.07494343382263 18.6173 0.1144 2108 +2110 2 -3.101639150183253 -253.32018098227053 18.5879 0.1144 2109 +2111 2 -3.235875789860348 -254.59941390726715 18.5776 0.1144 2110 +2112 2 -3.5952181286636673 -256.1539796217795 18.5816 0.1144 2111 +2113 2 -4.077557210312818 -257.602891361289 18.5819 0.1144 2112 +2114 2 -4.979104955279745 -256.6620039465158 19.5042 0.1144 2113 +2115 2 -6.002324368677485 -257.10076738585593 20.2144 0.1144 2114 +2116 2 -7.064400519901554 -255.8586347242666 20.518 0.1144 2115 +2117 2 -8.14093566774968 -256.3615800986656 20.8236 0.1144 2116 +2118 2 -9.164523802340781 -254.88804114279247 21.078 0.1144 2117 +2119 2 -10.236389000814501 -255.41806880578497 21.266 0.1144 2118 +2120 2 -11.113029741384388 -253.6979809584671 21.3927 0.1144 2119 +2121 2 -11.659511396381166 -253.01465106252863 21.4726 0.1144 2120 +2122 2 -12.049225412951042 -252.2739459786436 21.5747 0.1144 2121 +2123 2 -12.431688370980005 -251.33554494252388 21.6463 0.1144 2122 +2124 2 -12.87477861755254 -250.24127625166426 21.6823 0.1144 2123 +2125 2 -13.422131005285355 -249.1533927047949 21.6846 0.1144 2124 +2126 2 -13.650167712418888 -247.88712167535482 21.6383 0.1144 2125 +2127 2 -14.222471978180874 -246.74459321335786 21.5064 0.1144 2126 +2128 2 -15.102429653501328 -245.99713163218945 21.3702 0.1144 2127 +2129 2 -15.796025305013778 -245.03800846724528 21.2443 0.1144 2128 +2130 2 -16.386897569966738 -243.80974199762392 21.0504 0.1144 2129 +2131 2 -16.70145849402262 -242.62586413544642 20.8942 0.1144 2130 +2132 2 -17.353754664741665 -241.7383233213006 20.7741 0.1144 2131 +2133 2 -17.87015516387657 -241.6184664350836 20.6238 0.1144 2132 +2134 2 -18.99980498957729 -241.23898011014901 20.5045 0.1144 2133 +2135 2 -20.13190551018385 -241.64667400242976 20.4228 0.1144 2134 +2136 2 -21.27235738278863 -241.5080157690162 20.3749 0.1144 2135 +2137 2 -22.405304653156282 -241.77982114547854 20.3438 0.1144 2136 +2138 2 -23.446241946006964 -242.35930529713602 20.3277 0.1144 2137 +2139 2 -24.431936096857974 -242.9484496604171 20.3245 0.1144 2138 +2140 2 -25.46555127050135 -243.52832437312293 20.322 0.1144 2139 +2141 2 -26.52189862603388 -243.91304078568555 20.3185 0.1144 2140 +2142 2 -27.743159211188747 -243.93486611253752 20.3067 0.1144 2141 +2143 2 -28.885481750924285 -243.21562921368584 20.2971 0.1144 2142 +2144 2 -30.029389718751567 -243.9254989748752 20.2836 0.1144 2143 +2145 2 -31.173304200473314 -243.170045515859 20.2647 0.1144 2144 +2146 2 -32.280819449255105 -244.18413390064296 20.2388 0.1144 2145 +2147 2 -33.2836174583961 -244.12234411728872 20.2028 0.1144 2146 +2148 2 -33.908722306247085 -244.50474306026973 20.27 0.1144 2147 +2149 2 -34.686948520949095 -244.00430901024043 20.9928 0.1144 2148 +2150 2 -35.268974030241395 -242.75118600758555 21.2586 0.1144 2149 +2151 2 -36.11172059529355 -241.93688949847115 21.6875 0.1144 2150 +2152 2 -36.91398017731039 -241.385650629044 22.3326 0.1144 2151 +2153 2 -37.86631884630839 -240.7238617816314 23.1215 0.1144 2152 +2154 2 -37.807056571249035 -239.53359321142236 23.9373 0.1144 2153 +2155 2 -37.063363049134914 -238.96240869056857 24.9047 0.1144 2154 +2156 2 -36.47812464926188 -238.27312024212938 26.0167 0.1144 2155 +2157 2 -35.4522418196742 -237.7816856391356 27.0527 0.1144 2156 +2158 2 -34.436978149760186 -237.9849599791919 28.0098 0.1144 2157 +2159 2 -33.76403364628227 -238.25932015465355 28.9075 0.1144 2158 +2160 2 -33.181351178425736 -238.67005431960843 29.6192 0.1144 2159 +2161 2 -32.11299951587998 -239.7945519367376 30.1955 0.1144 2160 +2162 2 -31.01015791509125 -239.12863936078168 30.6502 0.1144 2161 +2163 2 -29.993918641443255 -240.4391650661773 31.0682 0.1144 2162 +2164 2 -29.001787254824045 -240.35750171915782 31.4378 0.1144 2163 +2165 2 -28.071808089287867 -241.72253727231546 31.817 0.1144 2164 +2166 2 -27.698737277535002 -242.5768569753307 32.3501 0.1144 2165 +2167 2 -27.37727032924285 -243.28155752938954 32.9633 0.1144 2166 +2168 2 -26.66837623951225 -244.14145433295494 33.5563 0.1144 2167 +2169 2 -25.92157322106594 -245.6075147071843 34.1452 0.1144 2168 +2170 2 -25.276593355946503 -246.11317579138034 34.8135 0.1144 2169 +2171 2 -25.080592339116688 -247.08336641718938 35.5998 0.1144 2170 +2172 2 -24.72749622675045 -248.06393790032206 36.4448 0.1144 2171 +2173 2 -24.03971798974718 -249.52067019443933 37.2019 0.1144 2172 +2174 2 -23.04127733798977 -249.683930449603 37.8476 0.1144 2173 +2175 2 -22.067435394961844 -249.55227780998712 38.4328 0.1144 2174 +2176 2 -21.0969618116819 -248.6831445446673 39.011 0.1144 2175 +2177 2 -20.03600969731896 -248.7492127570212 39.6119 0.1144 2176 +2178 2 -19.100374841720072 -247.94468632303688 40.2282 0.1144 2177 +2179 2 -18.289067081332167 -247.1426790728728 40.7921 0.1144 2178 +2180 2 -18.19797591061565 -247.4371327960323 41.2731 0.1144 2179 +2181 2 -17.77856269418167 -248.59202849270173 41.788 0.1144 2180 +2182 2 -17.14004763339429 -249.43403413090385 42.2621 0.1144 2181 +2183 2 -16.210908407638655 -250.15663514364388 42.6479 0.1144 2182 +2184 2 -15.153498154569178 -250.65168277445662 42.9867 0.1144 2183 +2185 2 -14.060055251422028 -250.93767064043055 43.2774 0.1144 2184 +2186 2 -12.934410610178048 -251.2136040776877 43.5187 0.1144 2185 +2187 2 -11.791305571367474 -250.6279814014377 43.7259 0.1144 2186 +2188 2 -10.667293290321442 -250.38497589948366 43.9314 0.1144 2187 +2189 2 -9.573271059685826 -250.01093103019463 44.2257 0.1144 2188 +2190 2 -8.5591119365493 -250.09558091468267 44.6967 0.1144 2189 +2191 2 -7.4735168135701 -249.79448930966805 45.1973 0.1144 2190 +2192 2 -6.364047156887892 -250.52348200752755 45.638 0.1144 2191 +2193 2 -5.272316124730423 -250.1296736307586 46.0972 0.1144 2192 +2194 2 -4.221061510494103 -251.08062461112274 46.6155 0.1144 2193 +2195 2 -3.3185212848849126 -251.18448145930762 47.0585 0.1144 2194 +2196 2 -2.5265313353458865 -252.36268145445467 47.4079 0.1144 2195 +2197 2 -1.7514128306288903 -253.5079089825923 47.7856 0.1144 2196 +2198 2 -0.8037834763292189 -253.5611880905716 48.1877 0.1144 2197 +2199 2 0.2800869125008525 -254.55149781252442 48.5332 0.1144 2198 +2200 2 1.3833214195581363 -254.43148147013937 48.8354 0.1144 2199 +2201 2 2.4522625330349825 -254.89831135372367 49.2475 0.1144 2200 +2202 2 3.53086133964295 -254.91469338179394 49.7339 0.1144 2201 +2203 2 4.672281949486333 -254.87837515963957 50.1516 0.1144 2202 +2204 2 5.782480161056569 -254.77943646890418 50.5798 0.1144 2203 +2205 2 6.743148022278859 -254.067488791637 51.0664 0.1144 2204 +2206 2 7.086779380926437 -252.64901499160226 51.3724 0.1144 2205 +2207 2 7.4226307256544395 -251.38858056478102 51.4136 0.1144 2206 +2208 2 7.831293977465311 -250.1509479006362 51.4172 0.1144 2207 +2209 2 8.209245175342975 -248.91584126533257 51.382 0.1144 2208 +2210 2 8.533776026387436 -247.67916168081098 51.2812 0.1144 2209 +2211 2 8.773337793832315 -246.6003139249624 51.1067 0.1144 2210 +2212 2 8.851863127769384 -245.37942010230535 50.8452 0.1144 2211 +2213 2 9.101115641875204 -244.19122869987117 50.5784 0.1144 2212 +2214 2 9.483105778026193 -243.05417892127622 50.3037 0.1144 2213 +2215 2 9.366717140274723 -242.2308641515762 48.9255 0.1144 2214 +2216 2 6.872981547597238 -254.2339459833342 51.501 0.1144 2205 +2217 2 7.543008536487566 -255.09111013401213 51.9554 0.1144 2216 +2218 2 8.213035525377936 -255.9440388605832 52.4345 0.1144 2217 +2219 2 8.88391281706268 -257.02705003375854 52.9396 0.1144 2218 +2220 2 9.553234477238249 -258.1680741635158 53.4537 0.1144 2219 +2221 2 10.223261466128616 -258.9388786401486 53.9728 0.1144 2220 +2222 2 10.894138757813316 -259.9235236605214 54.4986 0.1144 2221 +2223 2 11.477749897297763 -261.13102642073557 54.9898 0.1144 2222 +2224 2 11.687916625788063 -262.3575484020815 55.4151 0.1144 2223 +2225 2 11.80489427279904 -263.4122699541768 55.9056 0.1144 2224 +2226 2 12.389010680773303 -264.15964095051527 56.4645 0.1144 2225 +2227 2 11.786376134019605 -265.16440612444114 56.9173 0.1144 2226 +2228 2 10.773917376900659 -265.5292450035691 57.2653 0.1144 2227 +2229 2 10.556932050050747 -266.65186588845035 57.5999 0.1144 2228 +2230 2 10.467042899872261 -267.92375259314815 57.8444 0.1144 2229 +2231 2 10.12560379534225 -269.2284035304683 58.0129 0.1144 2230 +2232 2 9.898209271341962 -270.5322146293496 58.1403 0.1144 2231 +2233 2 9.948331990451848 -271.7674443063797 58.2655 0.1144 2232 +2234 2 10.338032387060636 -272.78165748131573 58.4783 0.1144 2233 +2235 2 10.95162982182184 -273.91947053936366 58.6888 0.1144 2234 +2236 2 11.743693886874262 -275.0250517228282 58.9117 0.1144 2235 +2237 2 12.697913289930725 -275.3622370504617 59.15 0.1144 2236 +2238 2 12.7175729536958 -275.1117663256166 58.2887 0.1144 2237 +2239 2 12.715313318486444 -273.89251573461917 57.9228 0.1144 2238 +2240 2 12.730680387252043 -272.65378027289734 57.7682 0.1144 2239 +2241 2 12.881187257232703 -271.47155189596776 57.6512 0.1144 2240 +2242 2 13.374164894653283 -270.52699808549056 57.577 0.1144 2241 +2243 2 14.373825895413013 -269.9537843383144 57.5551 0.1144 2242 +2244 2 15.459472090788722 -269.59813076919244 57.5812 0.1144 2243 +2245 2 16.544271536403297 -269.1675633744169 57.6481 0.1144 2244 +2246 2 17.62991773177893 -268.87442387580643 57.734 0.1144 2245 +2247 2 18.715567184101854 -268.2476144319283 57.8287 0.1144 2246 +2248 2 19.80036662971643 -268.22883808344426 57.9284 0.1144 2247 +2249 2 20.885236637811083 -267.3253648506348 58.0311 0.1144 2248 +2250 2 21.970882833186792 -267.55424843413164 58.1389 0.1144 2249 +2251 2 23.055682278801367 -266.48472349758146 58.2537 0.1144 2250 +2252 2 24.141402589690433 -266.7708655795638 58.3761 0.1144 2251 +2253 2 25.227048785066106 -265.4769466313485 58.5038 0.1144 2252 +2254 2 26.31184823068068 -264.83392697888706 58.6345 0.1144 2253 +2255 2 26.9005633013033 -264.2147466846659 58.8624 0.1144 2254 +2256 2 27.254203699180614 -263.0042869560812 59.085 0.1144 2255 +2257 2 27.506712154298242 -261.5250878557898 59.2463 0.1144 2256 +2258 2 27.543991194827292 -260.2704185956733 59.3471 0.1144 2257 +2259 2 27.52130415869714 -259.0297880689583 59.3956 0.1144 2258 +2260 2 27.596671057938483 -257.79188486708944 59.327 0.1144 2259 +2261 2 27.791670095411174 -256.52563372742895 59.2388 0.1144 2260 +2262 2 27.990768566709598 -255.2623989601393 59.1646 0.1144 2261 +2263 2 28.00371963424389 -254.0136984748102 59.1119 0.1144 2262 +2264 2 27.99807220571779 -252.77298365186363 59.0806 0.1144 2263 +2265 2 27.99412182974711 -251.5319259237536 59.0685 0.1144 2264 +2266 2 27.98847440122097 -250.2911639792552 59.0747 0.1144 2265 +2267 2 27.98282697269491 -249.05027735224297 59.0853 0.1144 2266 +2268 2 27.97802629392982 -247.8084750331467 59.1002 0.1144 2267 +2269 2 27.972378865403716 -246.56862824935587 59.1206 0.1144 2268 +2270 2 27.966731436877573 -245.32738332421007 59.1492 0.1144 2269 +2271 2 27.961930758112523 -244.08724007394466 59.1906 0.1144 2270 +2272 2 28.049346668454604 -242.843156520094 59.2491 0.1144 2271 +2273 2 28.18365416669787 -241.60338897192798 59.3272 0.1144 2272 +2274 2 28.321281358452524 -240.36460828413453 59.4252 0.1144 2273 +2275 2 28.470101242805434 -239.29399800132018 59.5818 0.1144 2274 +2276 2 28.76155872063012 -238.33057308855416 59.8564 0.1144 2275 +2277 2 29.739226123845718 -237.49975541104425 60.1644 0.1144 2276 +2278 2 30.76638280495114 -237.16669573333223 60.4243 0.1144 2277 +2279 2 31.883028647859064 -236.73270780847628 60.6273 0.1144 2278 +2280 2 33.02591063984268 -236.8211025511921 60.7816 0.1144 2279 +2281 2 34.16796551773431 -236.6599360745343 60.8936 0.1144 2280 +2282 2 35.29439359791135 -236.49767533493838 60.975 0.1144 2281 +2283 2 36.43732246548619 -236.4297541518286 61.0492 0.1144 2282 +2284 2 37.4032214581633 -236.8325727298498 61.2881 0.1144 2283 +2285 2 37.484137983528505 -236.84829136867285 61.9063 0.1144 2284 +2286 2 38.588666772045194 -237.0815529134514 62.9429 0.1144 2285 +2287 2 39.69312499808181 -237.2185914739472 63.3833 0.1144 2286 +2288 2 40.79765378659849 -237.2344907500771 63.9106 0.1144 2287 +2289 2 41.90218257511518 -237.679283558353 64.5011 0.1144 2288 +2290 2 43.00664080115175 -237.48344995337374 65.1322 0.1144 2289 +2291 2 44.112616853661216 -237.9884380755672 65.7868 0.1144 2290 +2292 2 45.189819266572535 -237.17327438060812 66.4619 0.1144 2291 +2293 2 46.25231269219679 -236.70996766549348 67.1488 0.1144 2292 +2294 2 47.31473525925487 -236.5701545459878 67.8266 0.1144 2293 +2295 2 48.37800487216013 -236.28329199759807 68.4751 0.1144 2294 +2296 2 49.440427439218205 -235.96513911885776 69.0757 0.1144 2295 +2297 2 50.502850006276276 -235.85641560549897 69.6125 0.1144 2296 +2298 2 51.19304531091027 -235.21960834652978 69.876 0.1144 2297 +2299 2 51.5038500300538 -233.77562071414977 69.9835 0.1144 2298 +2300 2 51.813807703350115 -232.48693720228528 69.9756 0.1144 2299 +2301 2 52.12369126113312 -231.30817925748335 69.8897 0.1144 2300 +2302 2 52.43364923051555 -230.2189001150818 69.7595 0.1144 2301 +2303 2 52.744383091092935 -229.23999536464385 69.6153 0.1144 2302 +2304 2 53.05434076438925 -228.048030779797 69.4837 0.1144 2303 +2305 2 53.36507462496659 -226.84799663712192 69.3543 0.1144 2304 +2306 2 53.675032298263 -225.39910082539006 69.2278 0.1144 2305 +2307 2 53.98576615884029 -224.23445724415447 69.106 0.1144 2306 +2308 2 54.29494438790846 -223.08142603828205 68.9903 0.1144 2307 +2309 2 54.605678248485845 -222.01055998499456 68.8822 0.1144 2308 +2310 2 54.915635921782204 -220.91907118146878 68.7828 0.1144 2309 +2311 2 55.27165175709364 -219.71383326733235 68.7086 0.1144 2310 +2312 2 55.640758958071416 -218.46367685748706 68.6594 0.1144 2311 +2313 2 56.01057178385002 -217.20534742863714 68.6302 0.1144 2312 +2314 2 56.37960842234768 -216.10183966723702 68.6151 0.1144 2313 +2315 2 56.74949181060643 -215.06004835703422 68.6084 0.1144 2314 +2316 2 37.51959603428211 -238.0416744638956 61.4757 0.1144 2284 +2317 2 37.51067383809344 -239.28523343896956 61.6137 0.1144 2316 +2318 2 37.458902545310224 -240.5265260596699 61.7042 0.1144 2317 +2319 2 37.46532616111726 -241.77322273655767 61.7476 0.1144 2318 +2320 2 37.562322999047865 -243.02518586709323 61.7456 0.1144 2319 +2321 2 37.58981509380452 -244.30033965460888 61.7 0.1144 2320 +2322 2 37.559824418666224 -245.52527124408402 61.64 0.1144 2321 +2323 2 37.24261518864263 -246.6572016190256 61.5616 0.1144 2322 +2324 2 37.048264039179266 -247.82409196256947 61.4104 0.1144 2323 +2325 2 37.270611631075234 -249.05130304804322 61.2217 0.1144 2324 +2326 2 37.62155990224048 -250.36290622250988 61.0246 0.1144 2325 +2327 2 37.97244057178667 -251.49244886260226 60.8244 0.1144 2326 +2328 2 38.30805309788388 -252.62089702744032 60.6189 0.1144 2327 +2329 2 38.62903520762782 -253.62433889057178 60.4086 0.1144 2328 +2330 2 38.71631435506139 -254.8594179586143 60.2025 0.1144 2329 +2331 2 38.55207099016591 -256.1093975783295 60.0032 0.1144 2330 +2332 2 38.330328274553224 -257.4528079583747 59.8172 0.1144 2331 +2333 2 38.107735256146164 -258.71304659964704 59.654 0.1144 2332 +2334 2 37.86583485993065 -259.9813505130107 59.5294 0.1144 2333 +2335 2 37.71037499638272 -261.25148494759276 59.4695 0.1144 2334 +2336 2 37.83252287018024 -262.4496303921586 59.4726 0.1144 2335 +2337 2 38.28282686844365 -263.44116694763835 59.5871 0.1144 2336 +2338 2 38.459019290194824 -264.53289798157846 59.7652 0.1144 2337 +2339 2 38.36184433128605 -265.77890730940356 60.046 0.1144 2338 +2340 2 37.940109349478035 -267.03343035126545 60.3002 0.1144 2339 +2341 2 37.433412094050894 -268.25710987404227 60.4316 0.1144 2340 +2342 2 36.922679157297665 -269.1559113001181 60.4433 0.1144 2341 +2343 2 36.41032002655517 -270.1120697573629 60.3515 0.1144 2342 +2344 2 35.89874034004087 -271.42734022500235 60.1818 0.1144 2343 +2345 2 35.38800740328762 -272.7195367180917 59.9572 0.1144 2344 +2346 2 34.87656913781959 -273.6533355902328 59.7092 0.1144 2345 +2347 2 34.365765638586225 -274.566434504893 59.453 0.1144 2346 +2348 2 33.854256514552006 -275.8250701819217 59.1836 0.1144 2347 +2349 2 33.34352387388489 -277.14354255364026 58.8974 0.1144 2348 +2350 2 32.83201474985066 -278.15568233783284 58.5922 0.1144 2349 +2351 2 32.32121125061733 -279.0357630729955 58.2683 0.1144 2350 +2352 2 31.553697637173652 -280.1325301178785 57.927 0.1144 2351 +2353 2 30.664577489328227 -280.0952287844822 57.3709 0.1144 2352 +2354 2 29.852295746307018 -279.0142911470702 56.8534 0.1144 2353 +2355 2 29.040928058579755 -278.5783255295425 56.3858 0.1144 2354 +2356 2 28.229557113905287 -277.2520572716812 55.9751 0.1144 2355 +2357 2 27.482734163703714 -276.4689781954018 55.5934 0.1144 2356 +2358 2 26.615672545331172 -275.85354104353894 55.1116 0.1144 2357 +2359 2 13.277740359852771 -275.520036689907 59.514 0.1144 2237 +2360 2 14.267294077309032 -275.21454518398093 60.041 0.1144 2359 +2361 2 15.278376631101786 -274.6935188469847 60.5665 0.1144 2360 +2362 2 16.301413448439895 -274.2152845522207 61.0327 0.1144 2361 +2363 2 17.197859653682656 -273.29101473399766 61.4611 0.1144 2362 +2364 2 17.963912881358954 -272.81534509613766 61.9388 0.1144 2363 +2365 2 18.568952366043362 -271.66056755532503 62.487 0.1144 2364 +2366 2 18.83528554973672 -270.2145899347963 62.9457 0.1144 2365 +2367 2 19.01012009662606 -269.02677974557633 63.2968 0.1144 2366 +2368 2 19.199453705750074 -267.85233474533175 63.5695 0.1144 2367 +2369 2 19.413834236544716 -266.6909368976736 63.7865 0.1144 2368 +2370 2 19.634793954895844 -265.60128911470497 63.9612 0.1144 2369 +2371 2 19.857309600842253 -264.6116651033592 64.1147 0.1144 2370 +2372 2 20.07989580926877 -263.37338977377146 64.2751 0.1144 2371 +2373 2 20.302411159129065 -262.0883678588243 64.4428 0.1144 2372 +2374 2 20.52577710786985 -260.80961926316684 64.6103 0.1144 2373 +2375 2 20.686862038069666 -259.44995838684963 64.8175 0.1144 2374 +2376 2 20.645667498300824 -258.2634572741332 64.9942 0.1144 2375 +2377 2 20.509789939569032 -257.12812561533576 65.1255 0.1144 2376 +2378 2 20.35771952299424 -255.92323795688247 65.2212 0.1144 2377 +2379 2 20.212225333114862 -254.70746490716425 65.291 0.1144 2378 +2380 2 20.03428522808334 -253.50518585568426 65.3428 0.1144 2379 +2381 2 19.83775314088589 -252.16631614506684 65.3836 0.1144 2380 +2382 2 19.59034175041099 -250.69076213501597 65.4581 0.1144 2381 +2383 2 19.414041459329866 -249.43113920471876 65.569 0.1144 2382 +2384 2 19.342995235349946 -248.17371296192954 65.6695 0.1144 2383 +2385 2 19.25483528825266 -246.91520077818672 65.7516 0.1144 2384 +2386 2 19.156988147527723 -245.65850741996013 65.8176 0.1144 2385 +2387 2 19.063173135095546 -244.4054012147002 65.8703 0.1144 2386 +2388 2 18.99763729845705 -243.15434475198754 65.9103 0.1144 2387 +2389 2 18.95727263154096 -241.9088693333945 65.9604 0.1144 2388 +2390 2 19.064944024888163 -240.6926291420798 66.0601 0.1144 2389 +2391 2 19.913669065463083 -240.27206631372565 66.1441 0.1144 2390 +2392 2 20.26822046378742 -239.21217157015997 66.2007 0.1144 2391 +2393 2 20.205164676965786 -237.97146932204373 66.2298 0.1144 2392 +2394 2 20.124356847758786 -236.72724271728185 66.2326 0.1144 2393 +2395 2 20.025662957272765 -235.48413090016692 66.1965 0.1144 2394 +2396 2 19.92704288621411 -234.1352766280101 66.1296 0.1144 2395 +2397 2 19.828348995728085 -232.77619705338208 66.0472 0.1144 2396 +2398 2 19.728949480441194 -231.41876813711295 65.9548 0.1144 2397 +2399 2 19.62947940267423 -230.13601374576604 65.8563 0.1144 2398 +2400 2 19.530079887387302 -228.89778917923778 65.7546 0.1144 2399 +2401 2 19.43053895105416 -227.66163458866538 65.6527 0.1144 2400 +2402 2 19.331915623048246 -226.42749951986366 65.5511 0.1144 2401 +2403 2 19.233292295042332 -225.19577895736967 65.4492 0.1144 2402 +2404 2 19.133822217275373 -223.96773748732699 65.3472 0.1144 2403 +2405 2 19.03435213950837 -222.74204886620623 65.2453 0.1144 2404 +2406 2 18.93573206844967 -221.61531276261883 65.1437 0.1144 2405 +2407 2 18.83703817796369 -220.49226232785105 65.0418 0.1144 2406 +2408 2 18.7376386626768 -219.36677568491615 64.9398 0.1144 2407 +2409 2 18.638168584909838 -218.1185235735901 64.8382 0.1144 2408 +2410 2 18.538627648576657 -216.8680075432762 64.7363 0.1144 2409 +2411 2 18.439228133289767 -215.61643587141407 64.6344 0.1144 2410 +2412 2 18.340604805283853 -214.36103145016608 64.5327 0.1144 2411 +2413 2 18.24191091479787 -213.103556907518 64.4308 0.1144 2412 +2414 2 18.14251139951098 -211.84457275641387 64.3292 0.1144 2413 +2415 2 18.043041321744013 -210.58406602564767 64.2272 0.1144 2414 +2416 2 17.94442125068532 -209.25036630060663 64.1256 0.1144 2415 +2417 2 17.845727360199298 -207.8973912265872 64.024 0.1144 2416 +2418 2 17.746327844912408 -206.6060783716078 63.9223 0.1144 2417 +2419 2 17.646786908579262 -205.39437148017083 63.821 0.1144 2418 +2420 2 17.54731683081226 -204.18534118266695 63.7196 0.1144 2419 +2421 2 17.447917315525412 -202.9788151273297 63.6182 0.1144 2420 +2422 2 17.34929398751946 -201.77599928439668 63.5174 0.1144 2421 +2423 2 17.250600097033434 -200.57369414752839 63.4169 0.1144 2422 +2424 2 17.151200581746583 -199.37497063947856 63.317 0.1144 2423 +2425 2 17.0516596454134 -198.17777013402417 63.2178 0.1144 2424 +2426 2 16.953886620201864 -197.03614199783559 63.1198 0.1144 2425 +2427 2 16.8544165424349 -195.919261574611 63.0232 0.1144 2426 +2428 2 16.754166724353638 -194.70134283023523 62.9283 0.1144 2427 +2429 2 16.65547609081483 -193.43548741650451 62.8365 0.1144 2428 +2430 2 16.556006013047867 -192.1667572936978 62.7497 0.1144 2429 +2431 2 16.457382685041956 -190.89666561742683 62.6688 0.1144 2430 +2432 2 16.357912607274994 -189.62371323801096 62.5932 0.1144 2431 +2433 2 16.156575461450952 -188.31966017223465 62.5254 0.1144 2432 +2434 2 15.749096374706799 -186.96638468549287 62.4719 0.1144 2433 +2435 2 15.413521155459515 -185.9519672734398 62.5005 0.1144 2434 +2436 2 15.466999567725987 -184.70993766242145 62.4772 0.1144 2435 +2437 2 15.523656548543581 -183.45448770491652 62.4053 0.1144 2436 +2438 2 15.492132325494088 -182.23578213654105 62.2913 0.1144 2437 +2439 2 15.174392832887007 -181.2043742759509 62.1491 0.1144 2438 +2440 2 14.855732475005478 -180.2329664422445 61.9696 0.1144 2439 +2441 2 14.536366492323001 -178.8910494549321 61.7484 0.1144 2440 +2442 2 14.217000509640563 -177.54034391202157 61.497 0.1144 2441 +2443 2 13.897563964478055 -176.168913816615 61.213 0.1144 2442 +2444 2 13.631557334889937 -175.0596944345611 60.8933 0.1144 2443 +2445 2 13.800655064122267 -174.98362109580066 60.177 0.1144 2444 +2446 2 13.812847319470318 -173.78707213215088 59.4992 0.1144 2445 +2447 2 13.821037445208514 -172.57203552633396 58.8882 0.1144 2446 +2448 2 13.615601161644936 -171.47379141062135 58.4413 0.1144 2447 +2449 2 13.40542712498766 -170.3825071442698 58.1434 0.1144 2448 +2450 2 13.19270928601387 -169.29935694896872 57.9233 0.1144 2449 +2451 2 -17.40622161798019 -246.1941452128458 41.0866 0.1144 2179 +2452 2 -16.524352641705345 -245.13193142995283 41.1009 0.1144 2451 +2453 2 -15.522394572344943 -244.71992220563504 41.1211 0.1144 2452 +2454 2 -14.608902245603712 -243.82900775361924 41.1477 0.1144 2453 +2455 2 -13.995367351357224 -242.8094827568158 41.181 0.1144 2454 +2456 2 -13.227023865060836 -241.9398789368295 41.2266 0.1144 2455 +2457 2 -12.402735367097431 -241.02305548304332 41.3364 0.1144 2456 +2458 2 -11.390182360609536 -239.47714913362256 41.4383 0.1144 2457 +2459 2 -10.2939981706254 -239.95939144433603 41.5187 0.1144 2458 +2460 2 -9.164266775658874 -238.83471530489263 41.5792 0.1144 2459 +2461 2 -8.023008218903772 -239.62852052793897 41.6214 0.1144 2460 +2462 2 -6.880133036900702 -238.90623722573986 41.6489 0.1144 2461 +2463 2 -5.778165482310133 -239.02504421695727 41.666 0.1144 2462 +2464 2 -4.65580358032863 -238.54295632441435 41.6875 0.1144 2463 +2465 2 -3.6814500570166757 -238.07066433275273 41.7166 0.1144 2464 +2466 2 -2.7112199505053134 -237.12384716781435 41.7536 0.1144 2465 +2467 2 -1.7751133781328328 -236.82600165413356 41.7981 0.1144 2466 +2468 2 -1.2634931278213557 -235.18455012437704 41.911 0.1144 2467 +2469 2 -0.7803004864306935 -234.05051068580389 42.0305 0.1144 2468 +2470 2 -0.176412720201089 -233.52918878840495 42.1341 0.1144 2469 +2471 2 0.508412499521711 -232.23772109068966 42.2232 0.1144 2470 +2472 2 1.2759697316094112 -231.09044852212065 42.299 0.1144 2471 +2473 2 2.138346088285143 -230.71903883264997 42.376 0.1144 2472 +2474 2 3.1241044898220878 -229.70648155008092 42.5023 0.1144 2473 +2475 2 4.118673134442364 -229.45131042317124 42.6096 0.1144 2474 +2476 2 5.1384403908075775 -228.56456021880368 42.6989 0.1144 2475 +2477 2 6.215195215505645 -228.41132658715293 42.7734 0.1144 2476 +2478 2 7.339193674490296 -227.9637161618249 42.8347 0.1144 2477 +2479 2 8.48037485878483 -227.9418275396189 42.884 0.1144 2478 +2480 2 9.372438783811123 -228.80697260857667 42.9635 0.1144 2479 +2481 2 10.215354710118463 -229.5627975743878 43.0744 0.1144 2480 +2482 2 10.329697007689894 -230.15579959250653 44.4209 0.1144 2481 +2483 2 10.421820781174226 -231.32637795374356 44.8549 0.1144 2482 +2484 2 10.484806005515782 -232.564991213339 45.0139 0.1144 2483 +2485 2 10.581026952251474 -233.80357090237771 45.1531 0.1144 2484 +2486 2 10.878619127269495 -235.0359816564797 45.2906 0.1144 2485 +2487 2 11.618110093436293 -235.97455963517962 45.3874 0.1144 2486 +2488 2 12.738486207305012 -235.88446238000785 45.4605 0.1144 2487 +2489 2 13.813750647552762 -235.69066365597135 45.6378 0.1144 2488 +2490 2 14.889082393333371 -235.21777787432268 45.9007 0.1144 2489 +2491 2 15.96349653078671 -235.10680446756797 46.676 0.1144 2490 +2492 2 10.147111523515923 -228.15842298269087 43.2264 0.1144 2481 +2493 2 10.593079932863638 -227.04501626152043 43.2706 0.1144 2492 +2494 2 10.809933407408575 -225.86520579252274 43.2964 0.1144 2493 +2495 2 11.312588467615166 -224.71571294866084 43.3054 0.1144 2494 +2496 2 11.583631666293655 -223.48311828289613 43.3068 0.1144 2495 +2497 2 12.00694546831324 -222.34290239795348 43.3087 0.1144 2496 +2498 2 12.280461906828217 -221.16534485435662 43.3112 0.1144 2497 +2499 2 12.550725661278513 -219.99217816006137 43.3152 0.1144 2498 +2500 2 12.83237721494521 -218.76103170018496 43.3202 0.1144 2499 +2501 2 13.163346128586051 -217.5301240183265 43.3275 0.1144 2500 +2502 2 13.187681738389525 -216.28718827506154 43.3376 0.1144 2501 +2503 2 13.144769716123633 -215.05435554448798 43.3516 0.1144 2502 +2504 2 12.765552632178686 -213.98006138639502 43.372 0.1144 2503 +2505 2 12.581248580064258 -212.73534960193808 43.4008 0.1144 2504 +2506 2 12.168893576127333 -211.49570715509245 43.4386 0.1144 2505 +2507 2 11.834897473177765 -210.23275677356528 43.4865 0.1144 2506 +2508 2 11.062813921119652 -209.31957470778482 43.7097 0.1144 2507 +2509 2 10.895418122490693 -208.14017417725245 43.8444 0.1144 2508 +2510 2 10.685173227267235 -206.89618274869673 43.9603 0.1144 2509 +2511 2 10.11925284034341 -205.68038338290506 44.0748 0.1144 2510 +2512 2 9.16911649239074 -205.16435569736342 44.4268 0.1144 2511 +2513 2 -33.62005762932735 -244.534740511697 20.1503 0.1144 2147 +2514 2 -34.75638943606454 -245.40242873442168 20.0757 0.1144 2513 +2515 2 -35.89426019950289 -245.28729578605652 19.9767 0.1144 2514 +2516 2 -37.03815780431633 -245.49880155927832 19.8544 0.1144 2515 +2517 2 -38.14949786951402 -245.3499820658808 19.6599 0.1144 2516 +2518 2 -39.144045144334655 -245.77590687280673 19.2973 0.1144 2517 +2519 2 -40.14222582757186 -245.12057878454073 18.9021 0.1144 2518 +2520 2 -41.25094598219387 -246.3430127236519 18.6059 0.1144 2519 +2521 2 -42.394877636910024 -245.36283315930245 18.4047 0.1144 2520 +2522 2 -43.536360236865015 -245.9832822334963 18.2936 0.1144 2521 +2523 2 -44.672326339784846 -245.40265693218913 18.2709 0.1144 2522 +2524 2 -45.80599822685064 -245.40744576330252 18.3266 0.1144 2523 +2525 2 -46.94363769543706 -245.35178012768097 18.4286 0.1144 2524 +2526 2 -48.08009169175209 -245.05207154324626 18.5588 0.1144 2525 +2527 2 -49.15608444731674 -245.9741690901315 18.7249 0.1144 2526 +2528 2 -50.030492994699735 -245.94443154093506 19.0824 0.1144 2527 +2529 2 -51.00074259129474 -246.46206618664462 19.5333 0.1144 2528 +2530 2 -52.13210067843695 -246.31723431753477 19.9158 0.1144 2529 +2531 2 -52.9236397828155 -245.84101873343604 20.2233 0.1144 2530 +2532 2 -53.54790833298979 -246.72933644924234 20.4632 0.1144 2531 +2533 2 -54.59646590376111 -246.50411587202655 20.6431 0.1144 2532 +2534 2 -55.66773196953266 -247.3487187241817 20.8668 0.1144 2533 +2535 2 -56.6112990273119 -247.52665983705845 21.1093 0.1144 2534 +2536 2 -57.68956941790841 -248.39867306076331 21.3181 0.1144 2535 +2537 2 -58.83097364902994 -249.23160727215623 21.4932 0.1144 2536 +2538 2 -59.97062239051769 -248.50928994941597 21.6368 0.1144 2537 +2539 2 -61.06925307860247 -249.72951387138778 21.7785 0.1144 2538 +2540 2 -62.14219937653609 -248.68815688595674 22.0117 0.1144 2539 +2541 2 -63.274384079583804 -249.64943880920788 22.1785 0.1144 2540 +2542 2 -64.41514793296325 -248.9997718487565 22.288 0.1144 2541 +2543 2 -65.55277407767474 -249.148362405709 22.3432 0.1144 2542 +2544 2 -65.97565047143867 -249.22589766537573 22.5898 0.1144 2543 +2545 2 -66.65162488428103 -250.69865776999978 22.7877 0.1144 2544 +2546 2 -67.47423951839141 -251.73237691803126 22.8539 0.1144 2545 +2547 2 -68.32521090285628 -252.0457171659424 22.9621 0.1144 2546 +2548 2 -69.05886488887135 -253.78525342753306 23.1942 0.1144 2547 +2549 2 -70.0332116022028 -253.54378817644357 23.3778 0.1144 2548 +2550 2 -70.88261047825021 -255.08922109473684 23.5138 0.1144 2549 +2551 2 -70.45472342415405 -255.91921626384163 23.653 0.1144 2550 +2552 2 -69.81042094754046 -256.97245518010055 23.6624 0.1144 2551 +2553 2 -69.11851553860295 -258.75783571061845 23.6398 0.1144 2552 +2554 2 -68.36844976916424 -258.9571365403835 23.6065 0.1144 2553 +2555 2 -67.42949199566243 -260.03851155277954 23.5608 0.1144 2554 +2556 2 -66.39151947814712 -260.2955366688632 23.5023 0.1144 2555 +2557 2 -65.32686803136426 -261.1073553319317 23.4321 0.1144 2556 +2558 2 -64.28332888427543 -261.1545719101216 23.2775 0.1144 2557 +2559 2 -63.174327245748145 -261.6654510825603 23.0626 0.1144 2558 +2560 2 -62.04553778976959 -261.08987820247745 22.8841 0.1144 2559 +2561 2 -60.97049402274467 -262.39335625269433 22.7506 0.1144 2560 +2562 2 -59.94448307694172 -262.1188534364547 22.6587 0.1144 2561 +2563 2 -58.93382099798146 -263.5248497972819 22.6045 0.1144 2562 +2564 2 -57.973116656737425 -263.4894130191062 22.5836 0.1144 2563 +2565 2 -56.86756770598469 -263.3233095623079 22.5789 0.1144 2564 +2566 2 -55.768025721366776 -263.2662696056932 22.5746 0.1144 2565 +2567 2 -54.65623912084366 -262.5168341141357 22.5685 0.1144 2566 +2568 2 -53.51671492349383 -263.0398711766034 22.5599 0.1144 2567 +2569 2 -52.39270634106659 -262.58163010714225 22.548 0.1144 2568 +2570 2 -51.41179438878147 -263.9373356707896 22.5313 0.1144 2569 +2571 2 -50.463213174151576 -263.8888525113122 22.5084 0.1144 2570 +2572 2 -49.90542109239897 -265.26496006178934 22.476 0.1144 2571 +2573 2 -49.23688874127902 -266.8139654513318 22.4291 0.1144 2572 +2574 2 -48.427113493724434 -266.974447671682 22.3644 0.1144 2573 +2575 2 -47.641470614360045 -268.37817774333377 22.2787 0.1144 2574 +2576 2 -46.87848510108461 -269.4322854239904 22.1708 0.1144 2575 +2577 2 -46.71107479915149 -269.68412154127634 22.5898 0.1144 2576 +2578 2 -46.454748849296664 -270.6533998287895 22.5362 0.1144 2577 +2579 2 -46.25991381465461 -271.71015577142424 22.5147 0.1144 2578 +2580 2 -45.577611416903586 -273.3142187131607 22.4884 0.1144 2579 +2581 2 -44.75245354868967 -274.2445482855726 22.459 0.1144 2580 +2582 2 -44.07473133953715 -273.54730885203503 22.37 0.1144 2581 +2583 2 -42.94066590243092 -274.40807056951627 22.2725 0.1144 2582 +2584 2 -41.87292382467173 -274.11007400131314 22.2096 0.1144 2583 +2585 2 -40.7833242549934 -275.0924431809617 22.1854 0.1144 2584 +2586 2 -40.67605097460448 -276.0817680654509 22.1979 0.1144 2585 +2587 2 -41.22735862986755 -277.4203283938852 22.2435 0.1144 2586 +2588 2 -41.753545746132986 -277.91074686936196 22.4223 0.1144 2587 +2589 2 -41.871761445882754 -279.02920490088337 22.6342 0.1144 2588 +2590 2 -41.410096390138705 -280.712250248816 22.8006 0.1144 2589 +2591 2 -40.67371944575106 -281.7309901133576 22.9225 0.1144 2590 +2592 2 -39.985839651211904 -282.0248957759702 23.0035 0.1144 2591 +2593 2 -39.37471190325378 -283.7895128383002 23.0569 0.1144 2592 +2594 2 -45.21601358318112 -274.57533433946634 22.5898 0.1144 2581 +2595 2 -46.29768864400276 -274.03234307099524 22.5898 0.1144 2594 +2596 2 -47.099278417807575 -275.76120471479425 22.5898 0.1144 2595 +2597 2 -47.665931885066385 -276.48707537617764 22.5898 0.1144 2596 +2598 2 -48.201711447404136 -277.1821760746504 22.5898 0.1144 2597 +2599 2 -48.81522946474236 -278.8322748963006 22.5898 0.1144 2598 +2600 2 -49.23613762854446 -280.3071701867837 22.5898 0.1144 2599 +2601 2 -49.33565021985107 -281.56217111747856 22.5898 0.1144 2600 +2602 2 -49.29853823699961 -282.8802372044426 22.5898 0.1144 2601 +2603 2 -48.71891866201086 -283.61780835804853 22.5898 0.1144 2602 +2604 2 -47.926007847197425 -284.1610586671179 22.5898 0.1144 2603 +2605 2 -46.16032278448801 -268.73821933175213 21.9669 0.1144 2576 +2606 2 -45.071929117022734 -269.80267045170245 21.6763 0.1144 2605 +2607 2 -44.1911211389079 -269.6855463054871 21.4018 0.1144 2606 +2608 2 -43.384589006676556 -271.34048923408693 21.0934 0.1144 2607 +2609 2 -42.367455313403646 -271.3715985890743 20.8316 0.1144 2608 +2610 2 -41.29887279767754 -272.42777183712906 20.6063 0.1144 2609 +2611 2 -40.26728140023957 -272.29338576599014 20.3652 0.1144 2610 +2612 2 -39.26550338378992 -273.5584889752228 20.1411 0.1144 2611 +2613 2 -38.46245399453105 -274.3574695270689 19.9514 0.1144 2612 +2614 2 -38.41643150351938 -275.58154107772384 19.6875 0.1144 2613 +2615 2 -38.37060807635971 -276.73586150400985 19.3074 0.1144 2614 +2616 2 -38.20889783993498 -277.9108229534788 18.9605 0.1144 2615 +2617 2 -37.55731736094455 -278.99518523743285 18.7413 0.1144 2616 +2618 2 -36.701620056999886 -280.0422379584913 18.6373 0.1144 2617 +2619 2 -36.65153138779267 -281.2854618702291 18.6392 0.1144 2618 +2620 2 -37.069126075891795 -282.46393375532506 18.757 0.1144 2619 +2621 2 -37.400277970748945 -283.43381734177916 19.0794 0.1144 2620 +2622 2 -37.63287677143849 -284.39857193434716 19.5542 0.1144 2621 +2623 2 -38.04316977027193 -285.52610410858483 19.9485 0.1144 2622 +2624 2 -38.356380127632846 -286.91759768341734 20.2715 0.1144 2623 +2625 2 -38.604853197510515 -288.3038299877202 20.5329 0.1144 2624 +2626 2 -38.56799575472827 -289.39503738911424 20.7601 0.1144 2625 +2627 2 -37.63639690909725 -289.8634382137777 21.0081 0.1144 2626 +2628 2 -36.7055775076944 -290.95645378187004 21.28 0.1144 2627 +2629 2 -35.774754849344355 -291.1490826437773 21.5799 0.1144 2628 +2630 2 -34.84400630650773 -292.44662735523025 21.8819 0.1144 2629 +2631 2 -33.95435482967942 -292.78591360332007 22.1584 0.1144 2630 +2632 2 -33.806685558676875 -293.7311609387261 22.3144 0.1144 2631 +2633 2 -34.0041038543281 -295.1893781726914 22.3304 0.1144 2632 +2634 2 -34.20314864005469 -296.5622344351252 22.2447 0.1144 2633 +2635 2 -34.64596216774009 -298.0029783792264 22.1222 0.1144 2634 +2636 2 -35.22868039567059 -298.8109894945928 22.001 0.1144 2635 +2637 2 -35.65285812044567 -299.72267678527504 21.8943 0.1144 2636 +2638 2 -35.936918865363126 -301.03091143013233 21.8111 0.1144 2637 +2639 2 -36.12462953744515 -302.420977769091 21.7456 0.1144 2638 +2640 2 -36.70921092223905 -303.8369539873633 21.6272 0.1144 2639 +2641 2 -37.73080778375141 -303.69406487626696 21.5004 0.1144 2640 +2642 2 -38.85812317748667 -304.54422558240157 21.3908 0.1144 2641 +2643 2 -39.40637495196274 -304.89499479822314 21.2964 0.1144 2642 +2644 2 -39.273692838690444 -306.3094961661307 21.2005 0.1144 2643 +2645 2 -38.854940632040424 -307.9568573893441 21.0634 0.1144 2644 +2646 2 -38.532325222240566 -309.0148945977229 20.9644 0.1144 2645 +2647 2 -38.34554793028973 -310.15279974245834 20.8929 0.1144 2646 +2648 2 -38.47497625439302 -311.5335683185616 20.8074 0.1144 2647 +2649 2 -71.03782298335447 -255.30254714285644 24.4878 0.1144 2550 +2650 2 -71.79226022832418 -254.91854328716545 25.401 0.1144 2649 +2651 2 -72.88847491517765 -255.61800833493248 25.7199 0.1144 2650 +2652 2 -73.8742300597674 -255.82872287011526 25.9927 0.1144 2651 +2653 2 -74.66528233715017 -256.8614854380505 26.2532 0.1144 2652 +2654 2 -75.4062206373362 -258.21099156567664 26.5485 0.1144 2653 +2655 2 -76.30190753220633 -258.2072546930629 26.8204 0.1144 2654 +2656 2 -77.26887488772525 -259.6852115092048 27.015 0.1144 2655 +2657 2 -78.27977446030178 -259.53698230568074 27.1814 0.1144 2656 +2658 2 -79.35234892568018 -260.69591683835506 27.3304 0.1144 2657 +2659 2 -80.47642199836467 -260.17113024192514 27.474 0.1144 2658 +2660 2 -81.61866616926672 -260.9268906154128 27.6303 0.1144 2659 +2661 2 -82.76171752250552 -261.5339108500062 27.8273 0.1144 2660 +2662 2 -83.89504032404703 -260.92285051267737 28.1277 0.1144 2661 +2663 2 -84.98667705032065 -261.7542359802309 28.5807 0.1144 2662 +2664 2 -86.0479446419767 -261.58083751781686 29.1234 0.1144 2663 +2665 2 -87.00779604820698 -262.0124494463716 29.79 0.1144 2664 +2666 2 -87.89623188453623 -262.8282845319023 30.6043 0.1144 2665 +2667 2 -88.61364895239277 -263.56721699045534 31.6938 0.1144 2666 +2668 2 -88.83127817254719 -264.2847556537635 32.9837 0.1144 2667 +2669 2 -89.21101116012272 -264.7977948745106 34.4585 0.1144 2668 +2670 2 -90.04031340582095 -265.2965106484221 35.9654 0.1144 2669 +2671 2 -90.78692775598473 -265.895057660965 37.4643 0.1144 2670 +2672 2 -91.8105200308661 -265.80810483006485 38.7534 0.1144 2671 +2673 2 -92.7059006885427 -265.38204786036016 39.699 0.1144 2672 +2674 2 -92.95235690522519 -264.52454712091804 41.7911 0.1144 2673 +2675 2 -66.09478021297066 -248.09038956291624 22.3487 0.1144 2543 +2676 2 -66.92720275968648 -248.04466640335426 22.3109 0.1144 2675 +2677 2 -67.93028186757607 -247.00900372609692 22.1189 0.1144 2676 +2678 2 -68.93697231379586 -246.95709434794435 21.9297 0.1144 2677 +2679 2 -69.15272111502186 -247.2728758005229 21.4603 0.1144 2678 +2680 2 -70.21809445229768 -246.72145329423233 21.5482 0.1144 2679 +2681 2 -71.28908634233093 -248.17993863672734 21.585 0.1144 2680 +2682 2 -72.33648538466683 -247.71592460291862 21.6347 0.1144 2681 +2683 2 -73.37414630656411 -249.19109043860698 21.6975 0.1144 2682 +2684 2 -73.93167149678608 -249.33605848353307 21.3851 0.1144 2683 +2685 2 -74.32663230358482 -250.26510983263972 21.3842 0.1144 2684 +2686 2 -74.17467005242618 -251.54181820441403 21.3846 0.1144 2685 +2687 2 -73.72431187040455 -253.14955506320342 21.3858 0.1144 2686 +2688 2 -73.08402464517549 -254.6242476389183 21.3875 0.1144 2687 +2689 2 -72.50764413429026 -255.0993964277705 21.3892 0.1144 2688 +2690 2 -72.28852198653674 -256.113482292504 21.4293 0.1144 2689 +2691 2 -72.28777060905887 -257.4054464610742 21.4199 0.1144 2690 +2692 2 -72.34286514838679 -258.7695754912313 21.4079 0.1144 2691 +2693 2 -72.856786720619 -260.50654335285213 21.3966 0.1144 2692 +2694 2 -73.19179131558599 -261.9673449683992 21.3863 0.1144 2693 +2695 2 -73.02360570971499 -263.19610861135453 21.3699 0.1144 2694 +2696 2 -74.09523946162324 -248.62149737215447 21.7719 0.1144 2683 +2697 2 -75.15113602851017 -249.67185626290916 21.9673 0.1144 2696 +2698 2 -76.21573041974418 -249.34691868258864 22.1788 0.1144 2697 +2699 2 -77.27129833104847 -250.5707022483292 22.3495 0.1144 2698 +2700 2 -78.39773016635912 -250.04366588938422 22.4775 0.1144 2699 +2701 2 -79.5389514162644 -250.8575904894616 22.567 0.1144 2700 +2702 2 -80.6773028214458 -250.1335833734865 22.6231 0.1144 2701 +2703 2 -81.80133509076197 -250.51580380766455 22.6515 0.1144 2702 +2704 2 -82.9428678232554 -251.07306605881786 22.6772 0.1144 2703 +2705 2 -84.0859360534025 -250.39861643281228 22.7119 0.1144 2704 +2706 2 -85.21740861775491 -251.09457412651244 22.7599 0.1144 2705 +2707 2 -86.33804297031162 -250.8333773694212 22.8279 0.1144 2706 +2708 2 -87.3456192963434 -251.1094180487159 22.9244 0.1144 2707 +2709 2 -88.24776063253167 -252.1684418558566 23.0594 0.1144 2708 +2710 2 -89.24239983963201 -252.60793791422714 23.2405 0.1144 2709 +2711 2 -90.36719817278649 -253.01187784517685 23.4734 0.1144 2710 +2712 2 -90.69585220106038 -253.85570364783263 22.5898 0.1144 2711 +2713 2 -91.0025171246814 -254.99590447087633 22.5898 0.1144 2712 +2714 2 -91.34166171727118 -256.08313447355005 22.5898 0.1144 2713 +2715 2 -91.8629321504465 -257.12470337048575 22.5898 0.1144 2714 +2716 2 -92.35822472974887 -258.5184383913371 22.5898 0.1144 2715 +2717 2 -92.71757743156617 -259.8479951903336 22.5898 0.1144 2716 +2718 2 -93.00078787368922 -261.0202099906631 22.5898 0.1144 2717 +2719 2 -93.33345383988552 -262.1745466997577 22.5898 0.1144 2718 +2720 2 -93.58752503257901 -263.3633986194184 22.5898 0.1144 2719 +2721 2 -94.07166598126665 -264.51290247947577 22.5898 0.1144 2720 +2722 2 -94.71840304619106 -265.7954854829769 22.5898 0.1144 2721 +2723 2 -95.70209778896815 -265.9898692296086 22.5898 0.1144 2722 +2724 2 -96.73010527105443 -266.72469511060217 22.5898 0.1144 2723 +2725 2 -97.72226117139058 -267.1980226294124 22.5898 0.1144 2724 +2726 2 -98.23070335133725 -268.24952096461476 22.5898 0.1144 2725 +2727 2 -98.79481627322681 -269.5870157198496 22.5898 0.1144 2726 +2728 2 -99.59647009561726 -270.4036257542077 22.5898 0.1144 2727 +2729 2 -100.33399691559771 -271.28390828325576 22.5898 0.1144 2728 +2730 2 -101.13471625275261 -272.52533494008276 22.5898 0.1144 2729 +2731 2 -101.89086880871557 -273.112437751536 22.5898 0.1144 2730 +2732 2 -102.70540527019317 -274.2185357090168 22.5898 0.1144 2731 +2733 2 -103.57748925043813 -276.0606920176068 22.5898 0.1144 2732 +2734 2 -104.51288694106252 -276.4897743610024 22.5898 0.1144 2733 +2735 2 -105.58151020364213 -277.22782030815506 22.5898 0.1144 2734 +2736 2 -106.60284671147758 -277.43975989243455 22.5898 0.1144 2735 +2737 2 -107.3955756114742 -278.5075821790952 22.5898 0.1144 2736 +2738 2 -107.3034175859868 -279.71162020677224 22.5898 0.1144 2737 +2739 2 -107.57701139696238 -281.3217486544314 22.5898 0.1144 2738 +2740 2 -108.0261583748613 -282.74971919668064 22.5898 0.1144 2739 +2741 2 -108.23494759282065 -283.7798833582229 22.5898 0.1144 2740 +2742 2 -107.95516084967372 -285.32915684084736 22.5898 0.1144 2741 +2743 2 -90.88338548992182 -253.08093909254978 23.8903 0.1144 2711 +2744 2 -91.94115598088662 -252.8710330347372 24.4305 0.1144 2743 +2745 2 -92.90641128235956 -253.07871236983135 25.1239 0.1144 2744 +2746 2 -93.79671077373868 -253.45663431307509 25.8048 0.1144 2745 +2747 2 -94.32541544877134 -254.56852073461033 26.5006 0.1144 2746 +2748 2 -95.02412865138307 -255.73592194971388 27.0262 0.1144 2747 +2749 2 -95.83707948266851 -256.42553982414296 27.3329 0.1144 2748 +2750 2 -96.21354266969995 -256.67472599741325 27.1079 0.1144 2749 +2751 2 -96.70415948602029 -257.8602241984314 27.6554 0.1144 2750 +2752 2 -97.22947566744948 -259.0755677537205 27.8576 0.1144 2751 +2753 2 -97.88689520287548 -259.97721925372986 28.0134 0.1144 2752 +2754 2 -98.49233860061422 -261.0816847985423 28.1257 0.1144 2753 +2755 2 -99.0313776569971 -262.4629504608187 28.1977 0.1144 2754 +2756 2 -99.55342427745339 -263.4955704881535 28.2332 0.1144 2755 +2757 2 -99.88771999067227 -264.63543627447586 28.2372 0.1144 2756 +2758 2 -100.3279455992107 -265.7439054388887 28.2372 0.1144 2757 +2759 2 -100.3611249098279 -267.0580505160205 28.2372 0.1144 2758 +2760 2 -95.8766883922452 -255.11567234623783 27.7588 0.1144 2749 +2761 2 -96.07308862713775 -253.8329341448635 28.0288 0.1144 2760 +2762 2 -96.30438127528305 -252.60396643349776 28.2999 0.1144 2761 +2763 2 -96.44988532998988 -251.3770658473553 28.6446 0.1144 2762 +2764 2 -96.57441545120213 -250.12882965430947 29.0298 0.1144 2763 +2765 2 -96.71021889442054 -248.8638132951146 29.3714 0.1144 2764 +2766 2 -96.8492785747369 -247.59457154098487 29.6713 0.1144 2765 +2767 2 -96.79346834368035 -246.29006242927267 29.9541 0.1144 2766 +2768 2 -96.39766434015385 -245.029118515925 30.2543 0.1144 2767 +2769 2 -96.19605482398275 -243.81368816553876 30.6886 0.1144 2768 +2770 2 -96.0536561253178 -242.56107716309253 31.1993 0.1144 2769 +2771 2 -95.24402666515937 -242.54691522428772 31.9242 0.1144 2770 +2772 2 -94.33924611136811 -243.17382542595283 32.7216 0.1144 2771 +2773 2 -93.81489955052062 -242.75711875820923 33.7383 0.1144 2772 +2774 2 -93.55670879014596 -241.5273956203061 34.6433 0.1144 2773 +2775 2 -93.23945544329192 -240.387086294372 35.4729 0.1144 2774 +2776 2 -93.55776750992175 -239.22874397789704 36.2267 0.1144 2775 +2777 2 -93.5105134800657 -238.09137928366965 36.8626 0.1144 2776 +2778 2 -92.85057914463324 -237.2528270589225 37.5133 0.1144 2777 +2779 2 -91.91154217546975 -236.58315873838956 38.2147 0.1144 2778 +2780 2 -91.69307384236303 -237.0306188431058 39.1882 0.1144 2779 +2781 2 -91.56749860352625 -236.7226841993213 39.0068 0.1144 2780 +2782 2 -91.73230272787458 -235.50853913786062 38.9312 0.1144 2781 +2783 2 -92.23437363905968 -234.36719616133973 38.9068 0.1144 2782 +2784 2 -92.83660370454615 -233.4115703366067 38.8945 0.1144 2783 +2785 2 -93.41545745526778 -232.1565056026167 38.9001 0.1144 2784 +2786 2 -93.97891466928297 -231.04612670491713 38.9208 0.1144 2785 +2787 2 -94.75890603634582 -230.18279372941805 38.9542 0.1144 2786 +2788 2 -95.31670818502613 -229.04320267003254 38.9973 0.1144 2787 +2789 2 -95.17423181781452 -227.78120224934108 39.0768 0.1144 2788 +2790 2 -94.77609599549794 -226.595535604114 39.3655 0.1144 2789 +2791 2 -91.90712764950766 -237.210441088866 39.9916 0.1144 2780 +2792 2 -92.86130731559517 -237.99248234952432 40.7151 0.1144 2791 +2793 2 -93.9862445131354 -238.0069970496063 41.2429 0.1144 2792 +2794 2 -95.12850605913215 -238.07880020783745 41.5834 0.1144 2793 +2795 2 -96.22728823519098 -238.33996058461975 41.7766 0.1144 2794 +2796 2 -97.34628277379731 -238.6783653438111 41.869 0.1144 2795 +2797 2 -98.43847845413268 -238.9366682720933 41.9384 0.1144 2796 +2798 2 -99.3519775908544 -239.8353684467449 41.9958 0.1144 2797 +2799 2 -99.87969941050099 -240.9993789275137 42.0619 0.1144 2798 +2800 2 -100.16209034278519 -242.21743098438037 42.1982 0.1144 2799 +2801 2 -100.40172672392987 -243.25583748069016 42.4178 0.1144 2800 +2802 2 -100.59479741399525 -244.29461390233223 42.5866 0.1144 2801 +2803 2 -100.80931581280282 -245.59696076419004 42.7056 0.1144 2802 +2804 2 -100.93071689108433 -246.887421125392 42.7759 0.1144 2803 +2805 2 -100.60567591131185 -248.05692276660608 42.8 0.1144 2804 +2806 2 -99.92183505504602 -249.24813104934339 42.7815 0.1144 2805 +2807 2 -99.21618683939951 -250.34108504088954 42.7361 0.1144 2806 +2808 2 -98.89207729001573 -251.38258591547896 42.6409 0.1144 2807 +2809 2 -99.09370318490873 -252.67964068240514 42.5001 0.1144 2808 +2810 2 -99.29188760091321 -254.04796025206826 42.3814 0.1144 2809 +2811 2 -99.42300942453863 -255.3133249066376 42.2932 0.1144 2810 +2812 2 -99.55491098847835 -256.57406832578823 42.233 0.1144 2811 +2813 2 -99.65449088531776 -257.84211868222883 42.1985 0.1144 2812 +2814 2 -99.76453771609914 -259.10475408928966 42.1868 0.1144 2813 +2815 2 -99.9263582697828 -260.3427742467887 42.1887 0.1144 2814 +2816 2 -99.97007862985535 -261.5920511531161 42.1949 0.1144 2815 +2817 2 -99.92646127887471 -262.912113160405 42.2027 0.1144 2816 +2818 2 -99.88354925660883 -264.21729323094445 42.2111 0.1144 2817 +2819 2 -99.7065436368129 -265.5351208069465 42.198 0.1144 2818 +2820 2 -99.67179091477405 -266.784709627928 42.257 0.1144 2819 +2821 2 -99.14814279710191 -268.00182912883935 42.3284 0.1144 2820 +2822 2 -98.7657813966088 -269.09552115915574 42.3038 0.1144 2821 +2823 2 -98.60007909750193 -270.3280559808515 42.266 0.1144 2822 +2824 2 -98.04222652019706 -271.2444999036349 42.224 0.1144 2823 +2825 2 -97.60080658444423 -272.5252287827746 42.1201 0.1144 2824 +2826 2 -97.15777052162996 -273.85486291189574 42.1137 0.1144 2825 +2827 2 -97.03412751187558 -275.1891811065466 42.1772 0.1144 2826 +2828 2 -100.91567352982688 -242.3043545933446 42.7622 0.1144 2801 +2829 2 -101.76175795775765 -241.64750136630403 42.7507 0.1144 2828 +2830 2 -102.69179486008544 -240.62324274896707 42.7468 0.1144 2829 +2831 2 -103.70730887326349 -240.55321058428262 42.7437 0.1144 2830 +2832 2 -104.69296183558947 -240.43409345319924 42.7414 0.1144 2831 +2833 2 -105.53835781171375 -238.8554958574614 42.74 0.1144 2832 +2834 2 -106.32075481699408 -238.68603753035276 42.7395 0.1144 2833 +2835 2 -106.94720113702584 -237.32658670677557 42.7395 0.1144 2834 +2836 2 -107.43875142869719 -235.68345393449624 42.7395 0.1144 2835 +2837 2 -108.16057888222556 -235.12767554585116 42.7395 0.1144 2836 +2838 2 -109.04625567146653 -234.3089170515599 42.7395 0.1144 2837 +2839 2 -109.99406069881547 -233.31043543597403 42.7395 0.1144 2838 +2840 2 -110.88291960964094 -232.9859360067435 42.7395 0.1144 2839 +2841 2 -111.8436206939378 -231.6842615092346 42.7395 0.1144 2840 +2842 2 -112.73416955125208 -231.41898387496343 42.7395 0.1144 2841 +2843 2 -113.71657663949398 -230.23300798479232 42.7395 0.1144 2842 +2844 2 -114.47390708743455 -229.72041425266673 42.7395 0.1144 2843 +2845 2 -115.3192390149732 -228.64705066269767 42.7395 0.1144 2844 +2846 2 -115.77771543523838 -227.23829991289733 42.7395 0.1144 2845 +2847 2 -116.20695826271911 -226.0694691178986 42.7395 0.1144 2846 +2848 2 -116.65082469657258 -225.25545021643188 42.7395 0.1144 2847 +2849 2 -116.83682254429526 -223.96599775954468 42.7395 0.1144 2848 +2850 2 -116.53251993633371 -222.62876384915984 42.7395 0.1144 2849 +2851 2 -116.02993573469335 -221.15554440114562 42.7395 0.1144 2850 +2852 2 -115.33944538270796 -220.44765197664458 42.7395 0.1144 2851 +2853 2 -69.71548662028337 -245.65838483504973 21.7154 0.1144 2678 +2854 2 -70.40329585234241 -244.19606987828053 21.6933 0.1144 2853 +2855 2 -71.09929388512508 -243.95385907116042 21.7278 0.1144 2854 +2856 2 -71.96162485647059 -242.5741634914344 21.8172 0.1144 2855 +2857 2 -72.58241611116753 -241.38348452068652 21.9381 0.1144 2856 +2858 2 -73.03831447711312 -240.77669957398308 22.2018 0.1144 2857 +2859 2 -73.86419760579699 -239.7120758399163 22.509 0.1144 2858 +2860 2 -74.84427968522932 -238.96866124061404 22.8094 0.1144 2859 +2861 2 -75.91293957341612 -238.59518235488014 23.1093 0.1144 2860 +2862 2 -77.05450635581226 -238.61108995868676 23.4143 0.1144 2861 +2863 2 -76.96478651037407 -237.58264307791956 23.8589 0.1144 2862 +2864 2 -76.84948121914519 -236.36590819675672 24.4773 0.1144 2863 +2865 2 -77.27983514476881 -235.9676630575093 25.145 0.1144 2864 +2866 2 -78.15165750283712 -234.69853796328184 25.7221 0.1144 2865 +2867 2 -78.83219830126069 -233.6236396424229 26.2527 0.1144 2866 +2868 2 -79.59435699653025 -233.2536956616429 26.6806 0.1144 2867 +2869 2 -80.47199972996886 -231.80220533980366 26.9631 0.1144 2868 +2870 2 -81.43259294493568 -231.71384353013642 27.1418 0.1144 2869 +2871 2 -82.50047338889433 -231.39184393663615 27.2707 0.1144 2870 +2872 2 -83.61397822871614 -231.35638721416257 27.3876 0.1144 2871 +2873 2 -84.75704270372961 -231.3788741711735 27.5094 0.1144 2872 +2874 2 -85.8950044595897 -231.17947060661933 27.6646 0.1144 2873 +2875 2 -87.01082368659205 -231.2787425705035 27.8844 0.1144 2874 +2876 2 -88.08528499572277 -231.2591876088287 28.2302 0.1144 2875 +2877 2 -88.81676034758138 -232.3165033265388 28.6717 0.1144 2876 +2878 2 -89.27497387102073 -233.27475613951813 29.1788 0.1144 2877 +2879 2 -89.73789376734138 -233.48753994612986 29.944 0.1144 2878 +2880 2 -89.52922322339742 -232.60502870623478 30.7171 0.1144 2879 +2881 2 -89.68426879736552 -231.43500775756763 31.4437 0.1144 2880 +2882 2 -89.9583833021832 -230.20119134101486 32.0342 0.1144 2881 +2883 2 -90.3125875143603 -229.09522255813863 32.452 0.1144 2882 +2884 2 -90.53088985618882 -227.95219359656016 32.7281 0.1144 2883 +2885 2 -90.67242603328882 -226.66627331795507 32.8899 0.1144 2884 +2886 2 -90.82194909451371 -225.37915067636425 33.0002 0.1144 2885 +2887 2 -91.10581484154473 -224.1187859499977 33.0873 0.1144 2886 +2888 2 -91.57932934635106 -222.83668538415583 33.3343 0.1144 2887 +2889 2 -91.37753427325917 -222.75957429254225 34.438 0.1144 2888 +2890 2 -91.20646719115081 -222.18342746305711 35.7739 0.1144 2889 +2891 2 -92.21367391264619 -221.9583232622685 36.3549 0.1144 2890 +2892 2 -93.2414034263896 -222.28259753702076 36.9858 0.1144 2891 +2893 2 -94.27272784322645 -222.70884721729522 37.501 0.1144 2892 +2894 2 -95.25027000201736 -223.40335693793656 37.8557 0.1144 2893 +2895 2 -96.17751570058165 -224.1532777783049 38.0629 0.1144 2894 +2896 2 -97.04726460508928 -224.97200501482007 38.1184 0.1144 2895 +2897 2 -97.89019541985739 -225.84259820374342 38.0372 0.1144 2896 +2898 2 -98.76796851533992 -226.6086132792764 37.9184 0.1144 2897 +2899 2 -99.74147499280467 -227.35902299760107 37.8224 0.1144 2898 +2900 2 -100.68411743017576 -227.9632016285132 37.7549 0.1144 2899 +2901 2 -101.54734379355976 -228.8701565980956 37.7138 0.1144 2900 +2902 2 -102.60559892097255 -229.19297598951613 37.6964 0.1144 2901 +2903 2 -103.74432324415254 -229.51886711216105 37.6978 0.1144 2902 +2904 2 -104.88736047924382 -230.15647911220645 37.7054 0.1144 2903 +2905 2 -106.01778974917272 -229.60408011692928 37.7166 0.1144 2904 +2906 2 -107.12978001946897 -229.45326296815819 37.7325 0.1144 2905 +2907 2 -108.2482146641557 -229.23737362737197 37.7544 0.1144 2906 +2908 2 -109.38557995700386 -228.95359104459376 37.7818 0.1144 2907 +2909 2 -110.49897992582768 -229.75055974076054 37.8143 0.1144 2908 +2910 2 -111.55539508507948 -229.59961801523997 37.8955 0.1144 2909 +2911 2 -112.46566848157266 -230.92284143208613 37.9938 0.1144 2910 +2912 2 -113.32158989874372 -231.43196116423292 38.0722 0.1144 2911 +2913 2 -114.26260258909228 -232.2618126266721 38.1256 0.1144 2912 +2914 2 -115.21261076431475 -233.03063702955967 38.1536 0.1144 2913 +2915 2 -115.67478259661962 -233.91365093527628 38.1562 0.1144 2914 +2916 2 -115.98799295398058 -235.16591003001133 38.1335 0.1144 2915 +2917 2 -116.20236993174188 -236.62035018577473 38.0948 0.1144 2916 +2918 2 -116.2226766701998 -237.96677255938394 38.0453 0.1144 2917 +2919 2 -116.25509015654993 -239.3184620609857 37.9431 0.1144 2918 +2920 2 -116.41048271456496 -240.68935850326162 37.8092 0.1144 2919 +2921 2 -116.59734308385256 -241.99279644278334 37.683 0.1144 2920 +2922 2 -116.78752699577099 -243.3017506876684 37.5642 0.1144 2921 +2923 2 -116.97608441761399 -244.55807327394672 37.4486 0.1144 2922 +2924 2 -117.16952101359705 -245.60400152741204 37.331 0.1144 2923 +2925 2 -117.8633659032691 -246.45176381472749 37.1367 0.1144 2924 +2926 2 -118.36356104751421 -247.9215497553211 36.9225 0.1144 2925 +2927 2 -118.67996359338747 -249.22542532326105 36.682 0.1144 2926 +2928 2 -118.98759300092699 -250.41624423765847 36.4235 0.1144 2927 +2929 2 -119.2933839348648 -251.46554553875097 36.1564 0.1144 2928 +2930 2 -119.41639107328004 -252.73072408180514 35.882 0.1144 2929 +2931 2 -119.15854324573262 -254.02730374073673 35.6023 0.1144 2930 +2932 2 -118.89171710630565 -255.4809615151965 35.3231 0.1144 2931 +2933 2 -118.62566685807356 -256.80329429962217 35.0563 0.1144 2932 +2934 2 -118.52705034004819 -258.0824605699702 34.8477 0.1144 2933 +2935 2 -118.50761598798263 -259.39055733460634 34.7262 0.1144 2934 +2936 2 -117.98870107399803 -260.3897082245795 34.8664 0.1144 2935 +2937 2 -92.05905781403897 -222.4586198347539 33.5317 0.1144 2888 +2938 2 -92.95278553599059 -221.80154683701682 33.682 0.1144 2937 +2939 2 -93.8448867678668 -220.84169127490122 33.7907 0.1144 2938 +2940 2 -94.73790560807024 -220.1741663507368 33.8638 0.1144 2939 +2941 2 -95.63078302722742 -219.21853243517256 33.9094 0.1144 2940 +2942 2 -96.5237310088647 -218.54875713438722 33.9366 0.1144 2941 +2943 2 -97.41992516067216 -217.6379053509687 33.9805 0.1144 2942 +2944 2 -98.36531418678982 -217.0326615823845 34.0474 0.1144 2943 +2945 2 -99.19755750742299 -216.0912916184181 34.1474 0.1144 2944 +2946 2 -99.99115982888983 -215.2769149049027 34.326 0.1144 2945 +2947 2 -100.93406910127663 -214.50482860140613 34.5654 0.1144 2946 +2948 2 -101.97531068157839 -214.07217565034617 34.8174 0.1144 2947 +2949 2 -103.02586066738665 -213.60754799725208 35.1708 0.1144 2948 +2950 2 -103.95966177754815 -213.6461995747432 35.7137 0.1144 2949 +2951 2 -105.00851045748092 -214.17089100029824 36.2314 0.1144 2950 +2952 2 -106.10688947728708 -213.12959644808774 36.6293 0.1144 2951 +2953 2 -107.1022294311404 -213.14430163856883 36.918 0.1144 2952 +2954 2 -107.90795893044111 -211.52081942363037 37.1146 0.1144 2953 +2955 2 -108.72747180024791 -211.31767461791594 37.2299 0.1144 2954 +2956 2 -109.35721797602164 -210.06620645089703 37.2898 0.1144 2955 +2957 2 -109.89880713300354 -208.43545864499214 37.4041 0.1144 2956 +2958 2 -110.55031023953336 -207.76316962429613 37.5166 0.1144 2957 +2959 2 -111.34561336868924 -207.06915051316417 37.6096 0.1144 2958 +2960 2 -112.20872378426296 -205.69429939187978 37.6866 0.1144 2959 +2961 2 -113.15969731323537 -205.52228474957025 37.7516 0.1144 2960 +2962 2 -114.0550376092151 -204.14160798595776 37.8084 0.1144 2961 +2963 2 -114.91970365629803 -203.8681576043814 37.8605 0.1144 2962 +2964 2 -115.77964231330105 -202.659624990663 37.9271 0.1144 2963 +2965 2 -116.557905834853 -201.67224078933083 38.0604 0.1144 2964 +2966 2 -117.4249541293506 -201.14059047021834 38.2096 0.1144 2965 +2967 2 -118.36556533676386 -200.0477768178004 38.3594 0.1144 2966 +2968 2 -119.38664342285503 -199.81489843186267 38.5129 0.1144 2967 +2969 2 -120.43201167690466 -198.97739174971463 38.6733 0.1144 2968 +2970 2 -121.47569649835984 -198.7107208266002 38.8413 0.1144 2969 +2971 2 -122.42773395379771 -198.04216334321518 39.1818 0.1144 2970 +2972 2 -123.45570019084406 -197.95323942028432 39.6172 0.1144 2971 +2973 2 -124.54679795132611 -197.4090880845141 39.9745 0.1144 2972 +2974 2 -125.4800197339992 -196.85148829804393 40.2881 0.1144 2973 +2975 2 -125.67967265295633 -195.55000211431476 40.5163 0.1144 2974 +2976 2 -126.09690327799984 -194.2036677045283 40.6294 0.1144 2975 +2977 2 -126.56500313939307 -193.33587344000767 40.6316 0.1144 2976 +2978 2 -127.57770513370943 -193.76001589301066 41.9233 0.1144 2977 +2979 2 -128.61942148563168 -193.041660363708 42.8812 0.1144 2978 +2980 2 -129.66361107739039 -193.0254878733205 43.2877 0.1144 2979 +2981 2 -130.2139894928126 -191.82841230134852 43.7777 0.1144 2980 +2982 2 -130.15722414447853 -190.6819527223521 44.2618 0.1144 2981 +2983 2 -130.29464045781125 -189.2761577650495 44.632 0.1144 2982 +2984 2 -130.57365427062444 -188.1134405755214 44.9014 0.1144 2983 +2985 2 -130.91887987483585 -187.2499414609092 45.0839 0.1144 2984 +2986 2 -131.22940186061837 -186.33789916696014 45.2138 0.1144 2985 +2987 2 -131.103847164753 -184.92348077572865 45.3183 0.1144 2986 +2988 2 -130.6871092933427 -183.20996047247004 45.4479 0.1144 2987 +2989 2 -130.4280745419678 -181.88510474420605 45.677 0.1144 2988 +2990 2 -130.2831080580114 -180.81402133885194 45.948 0.1144 2989 +2991 2 -129.9505429490643 -179.99090900056862 46.2202 0.1144 2990 +2992 2 -129.60972499080785 -179.1668161243484 46.4531 0.1144 2991 +2993 2 -129.53690189388305 -177.91367786756103 46.6684 0.1144 2992 +2994 2 -129.77864134211478 -176.51025778709635 46.8387 0.1144 2993 +2995 2 -129.84089725476656 -175.18823201271329 46.9316 0.1144 2994 +2996 2 -129.91523652450783 -173.85702227035472 46.9171 0.1144 2995 +2997 2 -130.06404389400416 -172.43801269468025 46.8748 0.1144 2996 +2998 2 -130.28955367572945 -170.94403236819244 46.8381 0.1144 2997 +2999 2 -130.20381438800123 -169.7860998855723 46.8138 0.1144 2998 +3000 2 -130.01928909445098 -168.73992666663057 46.8107 0.1144 2999 +3001 2 -129.773292521357 -167.7640159977794 46.8336 0.1144 3000 +3002 2 -129.52566620124037 -166.20343252881196 46.8874 0.1144 3001 +3003 2 -129.31033786133528 -164.67334547268675 47.0109 0.1144 3002 +3004 2 -129.37182469277272 -163.43336560787077 47.1335 0.1144 3003 +3005 2 -129.17270934456604 -161.91150794634882 47.2427 0.1144 3004 +3006 2 -129.04886878026468 -160.45504431412195 47.3416 0.1144 3005 +3007 2 -129.1329930460359 -159.23637480745867 47.4348 0.1144 3006 +3008 2 -129.2008607014646 -157.99539313584012 47.5272 0.1144 3007 +3009 2 -129.7448621045441 -157.51635707000005 47.6935 0.1144 3008 +3010 2 -130.21782396708284 -156.33170323789716 47.864 0.1144 3009 +3011 2 -130.64883115265192 -154.6807093343782 48.0287 0.1144 3010 +3012 2 -130.51195922005024 -153.6239002057282 48.26 0.1144 3011 +3013 2 -130.65662659192375 -152.2356976299784 48.5288 0.1144 3012 +3014 2 -130.76740709644648 -150.8544269323041 48.7684 0.1144 3013 +3015 2 -130.59425923909876 -149.8016464625905 48.9854 0.1144 3014 +3016 2 -130.49790833943507 -148.66106085398474 49.2058 0.1144 3015 +3017 2 -130.45667128612672 -147.44335421505735 49.3727 0.1144 3016 +3018 2 -130.41536367033814 -146.22598915681573 49.4808 0.1144 3017 +3019 2 -130.37405575846358 -145.0088429551525 49.5387 0.1144 3018 +3020 2 -130.33274814267503 -143.79191085959587 49.5564 0.1144 3019 +3021 2 -130.08511175563072 -142.4704169213488 49.4855 0.1144 3020 +3022 2 -129.70231167838216 -140.80758036237984 49.315 0.1144 3021 +3023 2 -129.32191723935102 -139.14699024042855 49.0837 0.1144 3022 +3024 2 -128.93339123820152 -138.3407296391909 48.8267 0.1144 3023 +3025 2 -128.4947212611723 -137.66021493376098 48.629 0.1144 3024 +3026 2 -128.05527183991478 -136.38057189053023 48.4896 0.1144 3025 +3027 2 -127.61660186288555 -134.65909398426328 48.3633 0.1144 3026 +3028 2 -126.74752801498491 -192.3590612873656 40.4765 0.1144 2977 +3029 2 -126.72241296095328 -191.00350398194675 40.2909 0.1144 3028 +3030 2 -126.06993990520004 -189.5479839638743 40.0837 0.1144 3029 +3031 2 -125.39970474013367 -188.78215120094387 39.8692 0.1144 3030 +3032 2 -125.33681393470579 -188.71035784583142 40.4348 0.1144 3031 +3033 2 -124.68181345535794 -187.35850113612176 40.9581 0.1144 3032 +3034 2 -123.90939372393828 -186.55139215246015 41.1807 0.1144 3033 +3035 2 -123.00060410401524 -185.87745962278368 41.5089 0.1144 3034 +3036 2 -121.8893727024201 -185.79657587412066 41.8508 0.1144 3035 +3037 2 -120.7864086724824 -185.4338345615699 42.2159 0.1144 3036 +3038 2 -120.16057142553913 -184.38162682382585 42.5071 0.1144 3037 +3039 2 -119.89271360539234 -183.31164063647697 42.721 0.1144 3038 +3040 2 -119.69283894681303 -182.14443376954466 42.8666 0.1144 3039 +3041 2 -119.71955130125536 -180.85587768246768 42.9906 0.1144 3040 +3042 2 -119.82458900496883 -179.53964400945895 43.302 0.1144 3041 +3043 2 -126.06157266836817 -188.00837734726355 39.4517 0.1144 3031 +3044 2 -126.84104934378524 -187.7371114033975 38.9189 0.1144 3043 +3045 2 -126.5296280277743 -186.01122671314408 38.2754 0.1144 3044 +3046 2 -126.31920550975909 -184.61267156320125 38.1612 0.1144 3045 +3047 2 -126.1015657810054 -183.45668399188972 38.1735 0.1144 3046 +3048 2 -125.72762983451224 -182.43156748876004 38.2796 0.1144 3047 +3049 2 -125.2929851757952 -181.2692730794874 38.4199 0.1144 3048 +3050 2 -124.8916034793946 -179.8407436323173 38.5739 0.1144 3049 +3051 2 -124.39871002441515 -178.56622763312413 38.7579 0.1144 3050 +3052 2 -123.87013434894087 -177.7325729360777 38.9824 0.1144 3051 +3053 2 -123.10076438861438 -176.76781524323812 39.2563 0.1144 3052 +3054 2 -122.15161282798039 -176.0676517438249 39.5634 0.1144 3053 +3055 2 -121.48207597954791 -175.37772279243688 39.8894 0.1144 3054 +3056 2 -121.08138273495373 -173.84522271121472 40.2293 0.1144 3055 +3057 2 -120.76569182958937 -172.44373313931777 40.6255 0.1144 3056 +3058 2 -120.32137990899994 -171.45228743252179 41.0144 0.1144 3057 +3059 2 -119.75147375767648 -170.68541373223977 41.3678 0.1144 3058 +3060 2 -119.14121523438342 -169.27291085328093 41.7144 0.1144 3059 +3061 2 -118.33067359434872 -168.35992950077605 42.0762 0.1144 3060 +3062 2 -117.46949726976351 -168.04257103812034 42.604 0.1144 3061 +3063 2 -117.51157974781842 -168.12409000291336 43.1777 0.1144 3062 +3064 2 -117.82622691708772 -168.5063062154934 44.1014 0.1144 3063 +3065 2 -117.94049211432534 -169.6063548537872 45.0747 0.1144 3064 +3066 2 -117.98103390584677 -170.8508075599632 45.9724 0.1144 3065 +3067 2 -118.3542889108007 -171.66711773391125 46.8059 0.1144 3066 +3068 2 -119.1615063644327 -172.32116499531125 47.6588 0.1144 3067 +3069 2 -119.59265379591713 -172.20708975700313 48.7197 0.1144 3068 +3070 2 -120.00460227362437 -170.99762661169956 49.7773 0.1144 3069 +3071 2 -119.936967018152 -170.03931987240207 50.8337 0.1144 3070 +3072 2 -120.08049905029253 -168.904360233039 51.8563 0.1144 3071 +3073 2 -120.8142066518528 -167.6098533671664 52.736 0.1144 3072 +3074 2 -121.51324744364778 -167.1760046786934 53.5091 0.1144 3073 +3075 2 -121.96846436986775 -166.00439323761444 54.0442 0.1144 3074 +3076 2 -122.10589430316153 -164.65602054031268 54.404 0.1144 3075 +3077 2 -122.07830600929343 -163.40241487926806 54.6389 0.1144 3076 +3078 2 -121.8963245180597 -162.2700417482296 54.8122 0.1144 3077 +3079 2 -121.65271700236096 -160.97741391860518 54.9808 0.1144 3078 +3080 2 -121.404227055575 -159.5023317113893 55.1533 0.1144 3079 +3081 2 -121.15821360557271 -158.05629574918345 55.3423 0.1144 3080 +3082 2 -120.7827356475315 -156.66234347034532 55.4994 0.1144 3081 +3083 2 -120.38206934677339 -155.84339356999618 55.6195 0.1144 3082 +3084 2 -119.87707921082949 -155.07558897773134 55.7074 0.1144 3083 +3085 2 -119.31206230057373 -153.4298172606591 55.7721 0.1144 3084 +3086 2 -119.0498562888146 -151.95395424201712 55.8253 0.1144 3085 +3087 2 -119.05394808583151 -150.6501013184372 55.8852 0.1144 3086 +3088 2 -118.71723637138135 -149.57830794065876 55.991 0.1144 3087 +3089 2 -118.38781627926912 -148.66600147281096 56.1254 0.1144 3088 +3090 2 -117.98318515575107 -147.80695517346356 56.247 0.1144 3089 +3091 2 -117.50806713395983 -146.1579334899846 56.3587 0.1144 3090 +3092 2 -116.570351629663 -146.28345026893277 56.7501 0.1144 3091 +3093 2 -115.43279328867081 -146.33489129739854 56.8224 0.1144 3092 +3094 2 -114.30633826465777 -146.37724631006017 56.8509 0.1144 3093 +3095 2 -113.19355542835865 -146.21002605725874 56.8837 0.1144 3094 +3096 2 -112.24653991216563 -147.38535818153235 56.9212 0.1144 3095 +3097 2 -111.62327541763233 -148.49962001241516 56.9621 0.1144 3096 +3098 2 -110.91047068890006 -148.7873710070994 57.0858 0.1144 3097 +3099 2 -111.01826732667202 -150.09102356716545 57.1838 0.1144 3098 +3100 2 -111.13319333159333 -151.4808509172657 57.2589 0.1144 3099 +3101 2 -111.24967467193773 -152.87966823201404 57.3121 0.1144 3100 +3102 2 -111.36382448957815 -154.31087314308445 57.3454 0.1144 3101 +3103 2 -111.22717074356532 -155.45200314786217 57.3611 0.1144 3102 +3104 2 -111.27166373788558 -156.8077012260287 57.3611 0.1144 3103 +3105 2 -111.36148232558395 -158.2153346217517 57.3611 0.1144 3104 +3106 2 -111.45299796583782 -159.62523206089986 57.3611 0.1144 3105 +3107 2 -111.54684868182903 -161.03741945701898 57.3611 0.1144 3106 +3108 2 -111.63829346351665 -162.4200387855215 57.3611 0.1144 3107 +3109 2 -111.73051798551865 -163.62619862468006 57.3611 0.1144 3108 +3110 2 -111.82281307000068 -164.83526310328276 57.3611 0.1144 3109 +3111 2 -111.9158134831975 -166.04798347166204 57.3611 0.1144 3110 +3112 2 -112.00810856767951 -167.26137815105184 57.3611 0.1144 3111 +3113 2 -112.10040365216156 -168.42327395722384 57.3611 0.1144 3112 +3114 2 -112.1926281741635 -169.58404450727886 57.3608 0.1144 3113 +3115 2 -112.28569914984044 -170.74514451134797 57.3608 0.1144 3114 +3116 2 -111.45338852367435 -172.21660582843919 57.3608 0.1144 3115 +3117 2 -110.54513855078568 -172.15919181246107 57.3605 0.1144 3116 +3118 2 -109.63526238390773 -173.6811047755146 57.3602 0.1144 3117 +3119 2 -108.72701241101898 -173.849018591055 57.36 0.1144 3118 +3120 2 -107.81791568836923 -175.0733867469244 57.3597 0.1144 3119 +3121 2 -106.90796866292504 -175.6744041760811 57.3591 0.1144 3120 +3122 2 -105.99971869003637 -176.3708332359794 57.3583 0.1144 3121 +3123 2 -105.0899130856385 -177.5258725454424 57.3572 0.1144 3122 +3124 2 -104.18159255026967 -177.46872124351182 57.3555 0.1144 3123 +3125 2 -103.27171608730558 -178.83358442304606 57.3532 0.1144 3124 +3126 2 -102.36346611441691 -179.13580105531918 57.3504 0.1144 3125 +3127 2 -101.45436939176714 -180.17290540239304 57.346 0.1144 3126 +3128 2 -100.54449322488915 -180.82637606474563 57.3398 0.1144 3127 +3129 2 -99.63624325200044 -181.64425188280703 57.3314 0.1144 3128 +3130 2 -98.72629622655627 -182.4857779278634 57.3199 0.1144 3129 +3131 2 -97.79547988000036 -183.1022167748257 57.3048 0.1144 3130 +3132 2 -97.92648181762556 -181.77020300956423 57.2788 0.1144 3131 +3133 2 -98.05825994253166 -180.43582859644266 57.244 0.1144 3132 +3134 2 -98.18926188015689 -179.0980819818556 57.2032 0.1144 3133 +3135 2 -98.32111412057647 -177.8720981884182 57.1575 0.1144 3134 +3136 2 -98.4521160582016 -176.65446597270727 57.1094 0.1144 3135 +3137 2 -98.58389418310779 -175.4411501112463 57.0606 0.1144 3136 +3138 2 -98.71489612073296 -174.22923638931988 57.0125 0.1144 3137 +3139 2 -98.84589805835813 -173.02008041236328 56.9657 0.1144 3138 +3140 2 -98.97767944021149 -171.81331314875123 56.9206 0.1144 3139 +3141 2 -99.10952842368386 -170.61127218908445 56.8772 0.1144 3140 +3142 2 -99.24053036130903 -169.41133934569467 56.8358 0.1144 3141 +3143 2 -99.51120588738375 -168.67556650377196 56.8033 0.1144 3142 +3144 2 -99.92998859090312 -167.24121215037042 56.7764 0.1144 3143 +3145 2 -100.18877771366667 -165.84692703615133 56.7532 0.1144 3144 +3146 2 -100.34882820438584 -164.48681772918985 56.7294 0.1144 3145 +3147 2 -100.69093573559842 -163.39466867442388 56.6969 0.1144 3146 +3148 2 -101.17111184801448 -162.5524034901576 56.6518 0.1144 3147 +3149 2 -101.65135852291063 -161.44507481114442 56.5989 0.1144 3148 +3150 2 -102.02412392429815 -160.00742602438277 56.553 0.1144 3149 +3151 2 -101.99491249128772 -158.79880843232561 56.5513 0.1144 3150 +3152 2 -101.67686657843083 -157.83674487946791 56.6028 0.1144 3151 +3153 2 -101.51005246738279 -156.68065701961822 56.6616 0.1144 3152 +3154 2 -101.63291247987567 -155.42887541245938 56.6656 0.1144 3153 +3155 2 -101.7664481528896 -154.04393417879044 56.5796 0.1144 3154 +3156 2 -101.71622923466829 -152.84930458905708 56.392 0.1144 3155 +3157 2 -101.51472157211916 -151.57725859213429 56.1036 0.1144 3156 +3158 2 -101.06945512150918 -150.95223511343244 55.5923 0.1144 3157 +3159 2 -100.531237139551 -151.26993155112413 54.773 0.1144 3158 +3160 2 -100.21075636010698 -152.013274955243 53.7118 0.1144 3159 +3161 2 -99.78187644021182 -153.2832031289297 52.7411 0.1144 3160 +3162 2 -99.16750962815024 -154.19855536572607 52.0366 0.1144 3161 +3163 2 -98.78422686419614 -155.10573239403595 51.5584 0.1144 3162 +3164 2 -98.81588104017365 -156.40825580878962 51.2845 0.1144 3163 +3165 2 -99.1581840674591 -157.8930044776485 51.1692 0.1144 3164 +3166 2 -99.74912840296315 -159.04887096909215 51.142 0.1144 3165 +3167 2 -100.23396085830413 -159.8503884615232 51.1322 0.1144 3166 +3168 2 -100.58028594695467 -160.96524490693423 51.1154 0.1144 3167 +3169 2 -100.12381104975236 -162.16535791705752 51.0964 0.1144 3168 +3170 2 -99.00586781402325 -162.2949939170422 51.077 0.1144 3169 +3171 2 -97.88779913176906 -162.3593941166973 50.9832 0.1144 3170 +3172 2 -96.80066243891332 -162.62643297393612 50.9211 0.1144 3171 +3173 2 -95.8286849777634 -163.4570327492997 50.8976 0.1144 3172 +3174 2 -95.04064623102323 -164.41394607349096 50.9144 0.1144 3173 +3175 2 -94.54824918959076 -165.24929452307308 50.9737 0.1144 3174 +3176 2 -94.09958450709127 -166.51964265253287 51.1008 0.1144 3175 +3177 2 -93.5288089290024 -167.96199476466765 51.3184 0.1144 3176 +3178 2 -92.95980096594911 -168.9216835773088 51.5922 0.1144 3177 +3179 2 -92.3890253878602 -169.6686637540697 51.9036 0.1144 3178 +3180 2 -91.81909981647965 -171.05659038547566 52.2343 0.1144 3179 +3181 2 -91.24995043238006 -172.47320978380162 52.5692 0.1144 3180 +3182 2 -90.74230182832073 -173.2516088380777 52.8702 0.1144 3181 +3183 2 -90.24665891280421 -174.1232105511706 53.1325 0.1144 3182 +3184 2 -89.7518627470487 -175.627712948791 53.3638 0.1144 3183 +3185 2 -89.94228358437037 -176.1760419320719 53.5648 0.1144 3184 +3186 2 -90.28055774031027 -177.22965542908986 53.7592 0.1144 3185 +3187 2 -90.61890245873023 -178.64236516805752 53.9414 0.1144 3186 +3188 2 -90.95639717044193 -180.07954864473407 54.1061 0.1144 3187 +3189 2 -91.29467132638179 -181.36211150504946 54.2447 0.1144 3188 +3190 2 -90.76642857332186 -182.06207133814547 54.175 0.1144 3189 +3191 2 -89.64654085103474 -182.22672118280556 54.0652 0.1144 3190 +3192 2 -88.52894969916188 -182.33914148486502 53.942 0.1144 3191 +3193 2 -87.60702117025016 -183.24818392985674 53.7488 0.1144 3192 +3194 2 -86.50227514851422 -184.18406704032367 53.5696 0.1144 3193 +3195 2 -85.37097188890209 -184.48411823315186 53.429 0.1144 3194 +3196 2 -84.36841798125754 -185.07818624002772 53.3319 0.1144 3195 +3197 2 -83.39483445997391 -185.85587956895742 53.2162 0.1144 3196 +3198 2 -82.39631919451661 -186.21554113743025 53.0818 0.1144 3197 +3199 2 -81.36544624756812 -186.37959602719565 52.9855 0.1144 3198 +3200 2 -80.35647441118277 -187.3970361426655 52.9124 0.1144 3199 +3201 2 -79.36991065051005 -187.6536131866973 52.857 0.1144 3200 +3202 2 -78.39630669928479 -188.61210044354212 52.8153 0.1144 3201 +3203 2 -77.5348159638059 -189.41214630249243 52.7842 0.1144 3202 +3204 2 -76.74283608119462 -189.91765203439613 52.7556 0.1144 3203 +3205 2 -75.6116341770181 -190.64397551029515 52.7187 0.1144 3204 +3206 2 -74.47189068797496 -190.28407177486167 52.6512 0.1144 3205 +3207 2 -73.41003714190632 -190.28348544287655 52.5384 0.1144 3206 +3208 2 -72.95438124284485 -188.63189261765302 52.4496 0.1144 3207 +3209 2 -72.49950508409762 -187.78564856611476 52.3835 0.1144 3208 +3210 2 -72.04469623088332 -187.1288259310565 52.3387 0.1144 3209 +3211 2 -71.5898200721361 -185.8103887958988 52.313 0.1144 3210 +3212 2 -71.13416446916074 -184.11656458165126 52.3043 0.1144 3211 +3213 2 -70.67935887289363 -182.9257165301093 52.3062 0.1144 3212 +3214 2 -70.22532946390751 -182.2726840657394 52.3088 0.1144 3213 +3215 2 -69.76960300236593 -181.3342359421663 52.3124 0.1144 3214 +3216 2 -69.31472684361876 -179.64146429043456 52.3172 0.1144 3215 +3217 2 -68.76098581202965 -178.29888148033638 52.3242 0.1144 3216 +3218 2 -67.66962355758041 -178.65243960249921 52.334 0.1144 3217 +3219 2 -66.54155240650587 -177.92260538292302 52.3477 0.1144 3218 +3220 2 -65.413477702398 -177.98180486481178 52.3664 0.1144 3219 +3221 2 -64.28547385685629 -177.74399905189915 52.3925 0.1144 3220 +3222 2 -63.15824945554279 -177.31232033341303 52.43 0.1144 3221 +3223 2 -62.030174751434885 -177.5644181757546 52.484 0.1144 3222 +3224 2 -60.902100047327025 -176.6436846569124 52.5568 0.1144 3223 +3225 2 -59.77481515046117 -177.3070478833626 52.6478 0.1144 3224 +3226 2 -59.04117147094509 -176.17998301260496 52.7797 0.1144 3225 +3227 2 -59.61013156203434 -175.74459418682585 53.0354 0.1144 3226 +3228 2 -59.99312297725564 -174.67976437062617 53.3484 0.1144 3227 +3229 2 -59.82804973950742 -173.57477037278494 53.59 0.1144 3228 +3230 2 -59.24279402105451 -171.98740952997628 53.7636 0.1144 3229 +3231 2 -58.51249832785972 -170.79632138498198 53.874 0.1144 3230 +3232 2 -57.77334827475116 -170.12055567852096 53.9249 0.1144 3231 +3233 2 -57.03419851772868 -168.56895530925257 53.926 0.1144 3232 +3234 2 -56.35581491363555 -167.96109852283305 53.9017 0.1144 3233 +3235 2 -56.134038148120155 -166.88831451367784 53.8709 0.1144 3234 +3236 2 -56.00454251848398 -165.7233843272716 53.8342 0.1144 3235 +3237 2 -55.80952334715574 -164.48635908513546 53.7412 0.1144 3236 +3238 2 -55.36113893657668 -162.879404179294 53.6357 0.1144 3237 +3239 2 -54.939525444059775 -161.41070708864055 53.5497 0.1144 3238 +3240 2 -54.507293529626864 -160.67159773461498 53.4848 0.1144 3239 +3241 2 -53.79971619625977 -160.01463076433348 53.4394 0.1144 3240 +3242 2 -52.92925841000401 -158.41937587187007 53.4108 0.1144 3241 +3243 2 -51.96307405174661 -158.61566651027874 53.3966 0.1144 3242 +3244 2 -50.978230203689975 -157.13514992921978 53.3845 0.1144 3243 +3245 2 -50.0841667440484 -157.1140775883751 53.3686 0.1144 3244 +3246 2 -49.148765500390645 -155.7511084941108 53.3467 0.1144 3245 +3247 2 -48.142839351323055 -155.7538885786254 53.3156 0.1144 3246 +3248 2 -47.197723674115515 -154.5005780538231 53.2717 0.1144 3247 +3249 2 -46.29565290040732 -154.08906522595407 53.2104 0.1144 3248 +3250 2 -45.33514403742635 -153.22923042206594 53.1261 0.1144 3249 +3251 2 -44.22824667797091 -153.1431514750507 53.0155 0.1144 3250 +3252 2 -43.13444799234873 -152.39593943705438 52.8374 0.1144 3251 +3253 2 -42.02180378086422 -152.7302613711761 52.5896 0.1144 3252 +3254 2 -40.90832268444611 -151.71803905251215 52.2701 0.1144 3253 +3255 2 -39.88036563098448 -152.123107588982 51.8826 0.1144 3254 +3256 2 -39.38772034776523 -151.63136554599518 51.9565 0.1144 3255 +3257 2 -38.792824513376274 -151.02338019905721 51.8686 0.1144 3256 +3258 2 -38.46021252883786 -149.60519438854357 51.8336 0.1144 3257 +3259 2 -38.1850696002476 -148.1620484306692 51.7877 0.1144 3258 +3260 2 -37.935037641913596 -146.72843746947729 51.7202 0.1144 3259 +3261 2 -37.736711804862864 -145.43395336190784 51.613 0.1144 3260 +3262 2 -37.54899432280035 -144.36190587478913 51.4749 0.1144 3261 +3263 2 -37.36049739650963 -143.295532639757 51.3184 0.1144 3262 +3264 2 -37.173556101728046 -142.23119968726067 51.1557 0.1144 3263 +3265 2 -36.55503416401158 -141.29065251560368 51.0224 0.1144 3264 +3266 2 -35.654576260417656 -140.0207798854959 50.9292 0.1144 3265 +3267 2 -34.72322076501385 -139.98674108090228 50.8721 0.1144 3266 +3268 2 -33.79271557240437 -138.23936516671358 50.8418 0.1144 3267 +3269 2 -33.31924041941032 -137.59168426382752 50.8298 0.1144 3268 +3270 2 -32.746081584022264 -137.08900801485555 50.827 0.1144 3269 +3271 2 -40.338640646349 -152.65549156436813 51.0068 0.1144 3255 +3272 2 -40.802607535711935 -153.21852880670232 50.4442 0.1144 3271 +3273 2 -41.23961095705514 -154.84492676198195 49.9542 0.1144 3272 +3274 2 -41.54716624908128 -156.40562275366563 49.5768 0.1144 3273 +3275 2 -41.8912068927193 -157.74315701354908 49.2486 0.1144 3274 +3276 2 -42.49510196711586 -158.10238921735666 48.925 0.1144 3275 +3277 2 -43.14193002446195 -159.16191430676656 48.6724 0.1144 3276 +3278 2 -43.25215983645958 -160.45164818906323 48.4949 0.1144 3277 +3279 2 -42.59501903968969 -161.13231952360246 48.358 0.1144 3278 +3280 2 -41.8248397064786 -162.90062677140853 48.2482 0.1144 3279 +3281 2 -41.128841673695895 -163.29551755542224 48.1611 0.1144 3280 +3282 2 -40.51199481181732 -164.15287072115984 48.0855 0.1144 3281 +3283 2 -40.2954169645667 -165.5694698376281 47.9531 0.1144 3282 +3284 2 -39.50237010064313 -166.91720236013143 47.728 0.1144 3283 +3285 2 -38.36250718078291 -167.31000229429048 47.5465 0.1144 3284 +3286 2 -37.27051529676211 -167.51639087991452 47.4102 0.1144 3285 +3287 2 -36.15130446479445 -167.8100369136463 47.3164 0.1144 3286 +3288 2 -35.04323164348047 -168.2363449467511 47.2606 0.1144 3287 +3289 2 -34.02616199879324 -168.422662136996 47.2391 0.1144 3288 +3290 2 -32.97917406464882 -169.0439775227703 47.2385 0.1144 3289 +3291 2 -31.85436916108505 -169.01265157886888 47.2385 0.1144 3290 +3292 2 -30.71277869180007 -169.60870470220726 47.2385 0.1144 3291 +3293 2 -29.56983294731693 -168.78853717898136 47.2385 0.1144 3292 +3294 2 -28.426957765313816 -169.5766976641612 47.2385 0.1144 3293 +3295 2 -88.93468025798764 -176.27985159044704 54.5493 0.1144 3184 +3296 2 -87.93619273063895 -176.56601717886102 54.4611 0.1144 3295 +3297 2 -86.80341171016471 -177.39614088142253 54.425 0.1144 3296 +3298 2 -85.6746631140694 -178.07874718373006 54.3746 0.1144 3297 +3299 2 -84.58267804002912 -178.08402218083756 54.3074 0.1144 3298 +3300 2 -83.51402140878953 -178.79067827817232 54.2231 0.1144 3299 +3301 2 -82.49465419731519 -179.07432406090527 54.0772 0.1144 3300 +3302 2 -81.54618490323506 -179.44018904579883 53.8432 0.1144 3301 +3303 2 -80.59762737549399 -180.28508011112928 53.5984 0.1144 3302 +3304 2 -79.69417890819847 -181.14664991194593 53.3792 0.1144 3303 +3305 2 -78.84235167945835 -181.58025936339095 53.1798 0.1144 3304 +3306 2 -77.99052800375159 -183.1532533968962 52.9939 0.1144 3305 +3307 2 -77.10256726768459 -183.10021071554524 52.7528 0.1144 3306 +3308 2 -76.10511578310737 -184.33932180756395 52.4171 0.1144 3307 +3309 2 -75.0060016380038 -183.82984869679396 52.0724 0.1144 3308 +3310 2 -73.93417019334663 -185.13529466123012 51.7619 0.1144 3309 +3311 2 -72.95012704628806 -184.82624263836044 51.4402 0.1144 3310 +3312 2 -72.04367292472986 -186.36777087032522 51.0521 0.1144 3311 +3313 2 -71.14287712545377 -186.39988612002313 50.6229 0.1144 3312 +3314 2 -70.14282034663486 -187.44426223165365 50.2508 0.1144 3313 +3315 2 -69.14901914738239 -187.64678935552945 49.9713 0.1144 3314 +3316 2 -68.22871335341245 -188.66940812246406 49.7678 0.1144 3315 +3317 2 -67.33012007728198 -189.45474080783802 49.6289 0.1144 3316 +3318 2 -66.42588890881107 -189.95939944497513 49.5373 0.1144 3317 +3319 2 -65.41290557617486 -190.9445129335412 49.4659 0.1144 3318 +3320 2 -64.35875431896416 -191.018010284898 49.3797 0.1144 3319 +3321 2 -63.639505714027834 -192.58519896267876 49.224 0.1144 3320 +3322 2 -63.13182030130504 -193.20197894198253 49.0123 0.1144 3321 +3323 2 -62.68959042445468 -193.88822248999003 48.8155 0.1144 3322 +3324 2 -62.160047021626305 -195.44474106657853 48.6556 0.1144 3323 +3325 2 -61.23083605396133 -195.56679061197087 48.515 0.1144 3324 +3326 2 -60.43410502435489 -194.13138198262322 48.4114 0.1144 3325 +3327 2 -59.49618672011637 -194.19956667917126 48.3434 0.1144 3326 +3328 2 -58.39992465948522 -193.14264285190774 48.2955 0.1144 3327 +3329 2 -57.26003875302298 -193.02372656407982 48.2471 0.1144 3328 +3330 2 -56.14012285095576 -193.0526679277777 48.1894 0.1144 3329 +3331 2 -55.099175491177235 -192.19730885403646 48.1188 0.1144 3330 +3332 2 -54.08026179455362 -192.00736252260126 48.0329 0.1144 3331 +3333 2 -52.99296542221376 -191.17024536101195 47.9332 0.1144 3332 +3334 2 -52.04307266405948 -191.34100745816886 47.6372 0.1144 3333 +3335 2 -50.93114995791132 -190.61762787661627 47.3505 0.1144 3334 +3336 2 -49.79400495312935 -191.14677411201956 47.1397 0.1144 3335 +3337 2 -48.69048176702961 -190.0400087117428 47.0067 0.1144 3336 +3338 2 -47.764855452474016 -190.11642078179182 46.9504 0.1144 3337 +3339 2 -47.12775515255263 -188.59359881649635 46.9759 0.1144 3338 +3340 2 -46.787092235303604 -187.06743581106548 47.0708 0.1144 3339 +3341 2 -46.397729551320744 -186.05276268836576 47.2388 0.1144 3340 +3342 2 -45.93559857889912 -185.42962801483628 47.4667 0.1144 3341 +3343 2 -45.47424705070565 -184.32829363685832 47.7296 0.1144 3342 +3344 2 -45.012045219717805 -182.66587283365686 48.3633 0.1144 3343 +3345 2 -99.23148345143764 -169.4796539716423 55.9933 0.1144 3142 +3346 2 -99.30837510016215 -169.93106208643133 53.9885 0.1144 3345 +3347 2 -99.91799985359336 -170.57055070711783 53.2087 0.1144 3346 +3348 2 -100.53827983760405 -171.50076692912822 52.4398 0.1144 3347 +3349 2 -101.15919784479664 -172.90611534676808 51.7168 0.1144 3348 +3350 2 -101.77933640776098 -173.6725994005629 51.0709 0.1144 3349 +3351 2 -102.39869552649719 -174.4791197657714 50.5288 0.1144 3350 +3352 2 -102.85435793945308 -175.97235853269552 50.2415 0.1144 3351 +3353 2 -103.30846146395268 -177.35851785117393 50.1192 0.1144 3352 +3354 2 -103.76249412988602 -178.17317650614888 50.1225 0.1144 3353 +3355 2 -104.21568004605828 -179.10849979290762 50.2146 0.1144 3354 +3356 2 -104.6689332677634 -180.7472061146 50.363 0.1144 3355 +3357 2 -105.12218648946859 -182.4701044488449 50.5378 0.1144 3356 +3358 2 -105.57621945148804 -183.52094119889173 50.7128 0.1144 3357 +3359 2 -106.02869648591225 -184.1800657226519 50.8878 0.1144 3358 +3360 2 -106.48265858936551 -185.302102353579 51.0625 0.1144 3359 +3361 2 -106.93669125529885 -187.0206536044298 51.2369 0.1144 3360 +3362 2 -107.38994803003732 -188.36257622774468 51.4108 0.1144 3361 +3363 2 -107.84320125174246 -189.08537361985395 51.5841 0.1144 3362 +3364 2 -108.29645447344764 -189.99510797501193 51.7569 0.1144 3363 +3365 2 -108.75048713938098 -191.5735297491501 51.9282 0.1144 3364 +3366 2 -109.20374391411944 -193.1217904587352 52.0979 0.1144 3365 +3367 2 -109.65699713582458 -193.994189224588 52.2656 0.1144 3366 +3368 2 -110.11102980175797 -194.70774212304235 52.43 0.1144 3367 +3369 2 -110.56421571793025 -196.12853330156614 52.5902 0.1144 3368 +3370 2 -111.01746893963539 -197.854756578538 52.7447 0.1144 3369 +3371 2 -111.2319200329101 -199.05940768608386 52.8884 0.1144 3370 +3372 2 -111.36948347216519 -200.29374061713264 53.0194 0.1144 3371 +3373 2 -111.50711421695313 -201.47201902603058 53.1373 0.1144 3372 +3374 2 -111.64382735341384 -202.58206636217687 53.2423 0.1144 3373 +3375 2 -111.57914181956968 -203.9273717575246 53.3198 0.1144 3374 +3376 2 -111.44495776035998 -205.34249874741053 53.37 0.1144 3375 +3377 2 -111.35354512919803 -206.71506987324904 53.3994 0.1144 3376 +3378 2 -111.34867388795294 -207.99596440904855 53.4142 0.1144 3377 +3379 2 -111.34550295621042 -209.2731997605144 53.419 0.1144 3378 +3380 2 -111.27515880399812 -210.6167379335979 53.4181 0.1144 3379 +3381 2 -111.20156196772118 -211.92409352032126 53.4153 0.1144 3380 +3382 2 -111.12888599671876 -213.22917062005297 53.4117 0.1144 3381 +3383 2 -111.05528916044184 -214.53440196972247 53.4066 0.1144 3382 +3384 2 -110.8967874912512 -215.84136874072442 53.3996 0.1144 3383 +3385 2 -110.64286392266656 -217.0652746882159 53.3896 0.1144 3384 +3386 2 -110.36872573096005 -218.03190007919756 53.3753 0.1144 3385 +3387 2 -110.08165417545568 -219.00926659610883 53.3557 0.1144 3386 +3388 2 -109.7937358701903 -220.22437745452584 53.3305 0.1144 3387 +3389 2 -110.15692765215633 -221.69782448132554 53.2258 0.1144 3388 +3390 2 -110.64579223579014 -223.38220535715175 53.1471 0.1144 3389 +3391 2 -111.2156242716002 -224.2931413340787 53.0743 0.1144 3390 +3392 2 -111.7506985052232 -225.03589853741767 53.006 0.1144 3391 +3393 2 -112.26057107225431 -226.45011944191123 52.9357 0.1144 3392 +3394 2 -112.75834014834038 -227.93393277348684 52.8553 0.1144 3393 +3395 2 -113.22135823221984 -228.92075848278023 52.7576 0.1144 3394 +3396 2 -113.56846276509853 -229.82673230277607 52.6338 0.1144 3395 +3397 2 -113.86384045066622 -231.09947322979409 52.4784 0.1144 3396 +3398 2 -113.88021030657312 -232.3089173399644 52.1847 0.1144 3397 +3399 2 -113.78418596101474 -233.49620343075503 51.7474 0.1144 3398 +3400 2 -113.75271592172348 -234.76514801280774 51.3282 0.1144 3399 +3401 2 -113.75116792702306 -236.06667154489435 50.9846 0.1144 3400 +3402 2 -113.74877318256156 -237.3669250150091 50.7102 0.1144 3401 +3403 2 -113.71648313524499 -238.65892363467628 50.4616 0.1144 3402 +3404 2 -113.64944585085547 -239.93401755778095 50.197 0.1144 3403 +3405 2 -113.61546556096394 -241.22454571984855 49.9587 0.1144 3404 +3406 2 -113.6090419451569 -242.52483870854488 49.7568 0.1144 3405 +3407 2 -113.77171931552935 -243.79374761928324 49.5785 0.1144 3406 +3408 2 -114.11967415120239 -245.3636381347648 49.4116 0.1144 3407 +3409 2 -114.51057558978613 -246.74563358154217 49.2456 0.1144 3408 +3410 2 -115.20522636933599 -247.35679264470997 49.0652 0.1144 3409 +3411 2 -116.0230359448198 -248.3912811057208 48.8166 0.1144 3410 +3412 2 -116.82407662939036 -249.46189094458043 48.3941 0.1144 3411 +3413 2 -117.57875873265819 -249.93664574424128 47.8646 0.1144 3412 +3414 2 -118.15833569888744 -251.28726682573443 47.3211 0.1144 3413 +3415 2 -118.69422313055517 -252.53218146696884 46.7681 0.1144 3414 +3416 2 -119.32814230526483 -253.2465033209897 46.1636 0.1144 3415 +3417 2 -120.12409714759033 -254.27345760059626 45.607 0.1144 3416 +3418 2 -120.93146071726022 -255.24098931270157 45.0593 0.1144 3417 +3419 2 -121.7564568610277 -255.45580595943204 44.4016 0.1144 3418 +3420 2 -121.8685042049874 -254.37864257719366 43.302 0.1144 3419 +3421 2 -122.13203759473899 -253.24011173360992 43.472 0.1144 3420 +3422 2 -122.66243130036179 -252.1973652961721 43.5487 0.1144 3421 +3423 2 -123.22433643590111 -250.98320328538102 43.6489 0.1144 3422 +3424 2 -123.81851556867687 -249.7844051709833 43.7668 0.1144 3423 +3425 2 -124.34481990740177 -248.6692433965901 43.8967 0.1144 3424 +3426 2 -124.52805316655531 -247.56995677342468 44.2106 0.1144 3425 +3427 2 -124.69620146557637 -246.32397804578 44.989 0.1144 3426 +3428 2 -121.70406387156777 -256.2302307780452 43.9057 0.1144 3419 +3429 2 -121.67501288835467 -257.53283525091285 43.5467 0.1144 3428 +3430 2 -121.89110734861305 -258.7912876623263 43.2964 0.1144 3429 +3431 2 -122.50397066796133 -260.1023063041931 43.118 0.1144 3430 +3432 2 -123.02357128850335 -261.20835176289404 42.9839 0.1144 3431 +3433 2 -123.1700694209939 -262.4497045772006 42.861 0.1144 3432 +3434 2 -122.9921461928707 -263.77647739070727 42.6835 0.1144 3433 +3435 2 -122.69867388161992 -265.16054387844224 42.4091 0.1144 3434 +3436 2 -123.42429736486599 -265.78445721481836 42.0994 0.1144 3435 +3437 2 -124.31455975149547 -266.49204125101267 41.6128 0.1144 3436 +3438 2 -125.34348504400927 -267.78039714372386 41.0799 0.1144 3437 +3439 2 -126.2004061934747 -268.59040269658533 40.4796 0.1144 3438 +3440 2 -127.0614985377191 -268.8144374100078 39.8079 0.1144 3439 +3441 2 -128.17683598102013 -269.42210175886174 39.2619 0.1144 3440 +3442 2 -128.9833119410457 -269.72369495871624 38.7999 0.1144 3441 +3443 2 -129.253575695496 -271.3472369528722 38.2407 0.1144 3442 +3444 2 -109.3272111303899 -221.34026384372376 53.4246 0.1144 3388 +3445 2 -108.40132884201893 -222.1411801945556 53.7054 0.1144 3444 +3446 2 -107.27933610290228 -222.00280279474808 53.8129 0.1144 3445 +3447 2 -106.16595330707281 -221.644757251238 53.9476 0.1144 3446 +3448 2 -105.07544505403675 -221.9498456202305 54.1898 0.1144 3447 +3449 2 -104.01206376015296 -221.8115798016317 54.553 0.1144 3448 +3450 2 -102.91948873699516 -221.6779129827953 54.9452 0.1144 3449 +3451 2 -101.79356217017445 -221.80371632430774 55.3036 0.1144 3450 +3452 2 -100.76313868685688 -221.17538881008505 55.5946 0.1144 3451 +3453 2 -99.85857453945675 -220.4694084244163 55.8169 0.1144 3452 +3454 2 -98.97994462728542 -219.59985395391206 56.021 0.1144 3453 +3455 2 -98.06717706282781 -218.94301950527196 56.2652 0.1144 3454 +3456 2 -97.24042243109463 -218.02602002218504 56.4631 0.1144 3455 +3457 2 -96.43318765888279 -217.1803020475213 56.6079 0.1144 3456 +3458 2 -95.49784365383016 -216.37669137784312 56.7092 0.1144 3457 +3459 2 -94.51051649900937 -215.7791574524423 56.7717 0.1144 3458 +3460 2 -93.5605756293198 -214.99052859587238 56.8 0.1144 3459 +3461 2 -92.64219731845805 -214.41397249666403 56.8056 0.1144 3460 +3462 2 -91.55644956554653 -213.84412165829804 56.8084 0.1144 3461 +3463 2 -90.4390915839433 -213.60364459063518 56.8123 0.1144 3462 +3464 2 -89.32409236496623 -213.45481154100895 56.8176 0.1144 3463 +3465 2 -88.2318934276837 -212.85465114390536 56.8252 0.1144 3464 +3466 2 -87.2096292445932 -212.55641554075675 56.8358 0.1144 3465 +3467 2 -86.51661827899368 -211.6883857024238 56.8506 0.1144 3466 +3468 2 -85.80834894078674 -211.27957047064416 56.8714 0.1144 3467 +3469 2 -85.05460231912733 -210.1723848384608 56.9008 0.1144 3468 +3470 2 -84.31864119758382 -208.8178193931501 56.9411 0.1144 3469 +3471 2 -83.56815377388342 -208.50119827874983 56.9968 0.1144 3470 +3472 2 -82.7658082427393 -206.97731419717468 57.0763 0.1144 3471 +3473 2 -81.91633525117845 -206.22133066786637 57.1911 0.1144 3472 +3474 2 -81.04510483067507 -204.8426110416105 57.3485 0.1144 3473 +3475 2 -80.19166346332096 -204.45844725052763 57.5492 0.1144 3474 +3476 2 -79.36655545551868 -203.39577256762783 57.8281 0.1144 3475 +3477 2 -78.73391092659935 -202.1589181445737 58.3271 0.1144 3476 +3478 2 -78.59416533762528 -201.364873506917 59.0349 0.1144 3477 +3479 2 -78.99507480555428 -200.14695120500159 59.6613 0.1144 3478 +3480 2 -79.54722869888032 -199.51624952253093 60.1311 0.1144 3479 +3481 2 -80.14388107149253 -198.53309848441108 60.4545 0.1144 3480 +3482 2 -80.63790460300037 -196.90246206997273 60.6446 0.1144 3481 +3483 2 -80.70980438672183 -195.56546345747512 60.7225 0.1144 3482 +3484 2 -80.79223840991813 -194.21788220154116 60.7351 0.1144 3483 +3485 2 -110.79372212838334 -148.06961737292707 57.3611 0.1144 3098 +3486 2 -110.58571235465217 -147.05724527510813 57.3611 0.1144 3485 +3487 2 -110.37855288371543 -146.04311840988407 57.3611 0.1144 3486 +3488 2 -110.10425700097234 -145.07131783055206 57.3611 0.1144 3487 +3489 2 -110.02412234995428 -143.8772367817424 57.3611 0.1144 3488 +3490 2 -109.71664117344159 -142.51359159118752 57.3611 0.1144 3489 +3491 2 -109.58792173108638 -141.06996332349323 57.3611 0.1144 3490 +3492 2 -109.51182276139453 -139.68013916306654 57.3611 0.1144 3491 +3493 2 -109.11207051593033 -138.0547202115462 57.3611 0.1144 3492 +3494 2 -108.68153920708622 -137.1015834445235 57.3611 0.1144 3493 +3495 2 -108.22581274554463 -136.42947502367758 57.3611 0.1144 3494 +3496 2 -116.7728371430089 -144.61906764667103 56.621 0.1144 3091 +3497 2 -116.32686547671392 -143.88335846746574 56.7854 0.1144 3496 +3498 2 -116.05100715248108 -142.893441510116 56.9467 0.1144 3497 +3499 2 -115.53539178464067 -141.23846353234805 57.1192 0.1144 3498 +3500 2 -114.79134597656993 -140.0986560140412 57.3157 0.1144 3499 +3501 2 -113.90947700029513 -139.87663494309868 57.547 0.1144 3500 +3502 2 -113.00249329863038 -138.26412828686205 57.8614 0.1144 3501 +3503 2 -112.43347425876478 -137.80364698752717 58.2613 0.1144 3502 +3504 2 -112.09131409056998 -137.2502270532995 58.9562 0.1144 3503 +3505 2 -111.85226410550939 -135.94128232323237 59.7299 0.1144 3504 +3506 2 -111.93924814907663 -134.95586145313806 60.5066 0.1144 3505 +3507 2 -112.09258041830881 -135.27881701780535 61.3528 0.1144 3506 +3508 2 -112.20597092557655 -136.41932341714528 62.0312 0.1144 3507 +3509 2 -111.78591457263971 -137.22712646691895 62.5881 0.1144 3508 +3510 2 -110.7287472981524 -137.206679307289 62.998 0.1144 3509 +3511 2 -109.64563316484809 -137.89075535102205 63.2744 0.1144 3510 +3512 2 -109.037951647285 -138.224268095893 63.441 0.1144 3511 +3513 2 -108.5205991747901 -139.77912793802784 63.5292 0.1144 3512 +3514 2 -107.63430173746198 -140.79776971172373 63.5841 0.1144 3513 +3515 2 -106.57045342179616 -140.8838849719108 63.6188 0.1144 3514 +3516 2 -105.48569216637458 -141.55935432976577 63.6516 0.1144 3515 +3517 2 -104.37215682968333 -141.54493523219753 63.6941 0.1144 3516 +3518 2 -103.25941085856263 -141.37800153216756 63.7487 0.1144 3517 +3519 2 -102.23143713029299 -140.9559655386895 63.814 0.1144 3518 +3520 2 -101.16963145618841 -140.58910091366775 63.9528 0.1144 3519 +3521 2 -100.295505515625 -141.37369063476928 64.1561 0.1144 3520 +3522 2 -99.43974396099426 -142.39551541514155 64.3294 0.1144 3521 +3523 2 -98.36165062497653 -142.4483920214877 64.4532 0.1144 3522 +3524 2 -97.29779905236354 -143.08055604078658 64.5299 0.1144 3523 +3525 2 -96.26784016070897 -143.51710524514232 64.5632 0.1144 3524 +3526 2 -95.33371744451664 -144.44109126380695 64.559 0.1144 3525 +3527 2 -94.49086527070882 -144.89179340721068 64.5072 0.1144 3526 +3528 2 -93.6657310893838 -146.43703377429702 64.4148 0.1144 3527 +3529 2 -93.0053270434351 -146.98131658820236 64.3437 0.1144 3528 +3530 2 -92.46927501553029 -147.8916149996814 64.2978 0.1144 3529 +3531 2 -92.47179319902533 -149.13471011402427 64.3012 0.1144 3530 +3532 2 -92.8603156471416 -150.4846854222831 64.3664 0.1144 3531 +3533 2 -92.0852034542187 -151.57576301494584 64.4109 0.1144 3532 +3534 2 -91.28100264259106 -152.69366553625758 64.4308 0.1144 3533 +3535 2 -90.47764858072452 -152.98841087957427 64.4213 0.1144 3534 +3536 2 -89.67436863437133 -154.58730087334428 64.3866 0.1144 3535 +3537 2 -88.87101457250478 -155.1439849031342 64.3311 0.1144 3536 +3538 2 -88.06681376087718 -156.09950329435634 64.2645 0.1144 3537 +3539 2 -87.26346295595785 -157.57952011072655 64.199 0.1144 3538 +3540 2 -86.46010889409126 -159.2618787178879 64.1354 0.1144 3539 +3541 2 -85.656758385258 -159.71205895522797 64.0746 0.1144 3540 +3542 2 -84.85340432339144 -160.5717603077602 64.0178 0.1144 3541 +3543 2 -84.04927407424388 -161.9476732400774 63.9663 0.1144 3542 +3544 2 -83.24585270684447 -162.08949861065548 63.922 0.1144 3543 +3545 2 -82.44249864497789 -163.5189189519481 63.889 0.1144 3544 +3546 2 -81.63836839583035 -163.95144719207997 63.8725 0.1144 3545 +3547 2 -80.83586463675817 -164.96815672591111 63.875 0.1144 3546 +3548 2 -80.03166382513055 -166.23667645838947 63.8985 0.1144 3547 +3549 2 -79.89448493538757 -166.72803615998322 63.9537 0.1144 3548 +3550 2 -79.54455938311884 -167.5072730640813 64.1449 0.1144 3549 +3551 2 -79.4030537028882 -168.66980588926918 64.3745 0.1144 3550 +3552 2 -79.5171362149957 -170.00844639994338 64.5772 0.1144 3551 +3553 2 -79.78174135107784 -171.54822185310397 64.7595 0.1144 3552 +3554 2 -79.77774735646318 -172.81464727383542 64.9642 0.1144 3553 +3555 2 -79.83277459025823 -174.15942754219532 65.1356 0.1144 3554 +3556 2 -79.79891529147136 -175.40688202070697 65.2571 0.1144 3555 +3557 2 -79.61857931906404 -176.47046936771625 65.38 0.1144 3556 +3558 2 -79.26439553682864 -177.38320481247666 65.5262 0.1144 3557 +3559 2 -78.39324780850538 -178.74611098015555 65.6298 0.1144 3558 +3560 2 -77.49387864118002 -179.21728444311785 65.6956 0.1144 3559 +3561 2 -76.55904704323962 -180.0226290445718 65.735 0.1144 3560 +3562 2 -75.60799614180664 -180.85036017710547 65.7524 0.1144 3561 +3563 2 -74.74968042184554 -181.30157195842452 65.749 0.1144 3562 +3564 2 -74.0166237631415 -183.00281366848077 65.7303 0.1144 3563 +3565 2 -73.4071189522254 -183.60148203957561 65.7056 0.1144 3564 +3566 2 -73.43735973105652 -183.91398722463094 65.8549 0.1144 3565 +3567 2 -73.5781118057906 -185.34458710637546 66.1276 0.1144 3566 +3568 2 -73.71730824901547 -186.77449221252624 66.2477 0.1144 3567 +3569 2 -73.85813118231565 -188.17532783470642 66.3818 0.1144 3568 +3570 2 -73.89704322681447 -189.41913543121422 66.5073 0.1144 3569 +3571 2 -73.56393118047589 -190.36565902905934 66.5809 0.1144 3570 +3572 2 -73.1329945573869 -191.07450455470274 66.5974 0.1144 3571 +3573 2 -72.70283412157886 -192.11252270038753 66.5647 0.1144 3572 +3574 2 -72.27267368577085 -193.75310316665224 66.4969 0.1144 3573 +3575 2 -71.8425132499628 -195.35639788492108 66.4073 0.1144 3574 +3576 2 -71.41320311694918 -196.21493223003117 66.3071 0.1144 3575 +3577 2 -70.98304268114114 -196.9258225236179 66.2052 0.1144 3576 +3578 2 -70.55288224533314 -198.06727252069567 66.1032 0.1144 3577 +3579 2 -70.12357211231947 -199.70795504329504 66.0016 0.1144 3578 +3580 2 -69.69341167651146 -201.3143342121494 65.9 0.1144 3579 +3581 2 -69.26325124070343 -202.0706878089937 65.7989 0.1144 3580 +3582 2 -68.8339411076898 -202.78271080455403 65.6978 0.1144 3581 +3583 2 -68.40378067188179 -204.0255293298884 65.5973 0.1144 3582 +3584 2 -67.97362023607376 -205.6716128547632 65.4976 0.1144 3583 +3585 2 -67.54431010306013 -207.21731586234412 65.3988 0.1144 3584 +3586 2 -67.11414966725208 -207.9297601151528 65.301 0.1144 3585 +3587 2 -66.68398923144407 -208.64140701063008 65.2053 0.1144 3586 +3588 2 -66.25467909843042 -209.99175845913356 65.1118 0.1144 3587 +3589 2 -65.82451866262237 -211.63744622739603 65.0222 0.1144 3588 +3590 2 -65.39442908538058 -213.08249501581287 64.9376 0.1144 3589 +3591 2 -64.96504809380073 -213.79557929218223 64.8589 0.1144 3590 +3592 2 -64.65621635059307 -214.68926630087404 64.7892 0.1144 3591 +3593 2 -64.88847337392534 -216.18873003391684 64.7388 0.1144 3592 +3594 2 -65.23486576810873 -217.81306600057783 64.7069 0.1144 3593 +3595 2 -65.58118730372593 -219.07622453791805 64.6887 0.1144 3594 +3596 2 -65.92679995759501 -219.8996682107092 64.6808 0.1144 3595 +3597 2 -66.30793653400437 -220.6686811088011 64.6797 0.1144 3596 +3598 2 -66.88025542961192 -222.17083710194413 64.6822 0.1144 3597 +3599 2 -67.49143481817941 -223.7806962113644 64.6862 0.1144 3598 +3600 2 -67.9429945403625 -224.4377639979408 64.6929 0.1144 3599 +3601 2 -67.99726246378484 -225.63026631866336 64.7021 0.1144 3600 +3602 2 -68.10327716627341 -226.77209642822356 64.7125 0.1144 3601 +3603 2 -68.48123843107884 -227.73926653607577 64.7228 0.1144 3602 +3604 2 -68.87773443944508 -229.40198267709087 64.7461 0.1144 3603 +3605 2 -69.1626018685129 -230.96351324641142 64.822 0.1144 3604 +3606 2 -69.44271466757876 -232.3528382763423 64.8388 0.1144 3605 +3607 2 -69.7712171513637 -233.1957255509174 64.8052 0.1144 3606 +3608 2 -70.26247760237334 -233.79213027918644 64.769 0.1144 3607 +3609 2 -70.81050533364964 -235.3115067258906 64.7354 0.1144 3608 +3610 2 -71.37382519134994 -236.97614944681754 64.7055 0.1144 3609 +3611 2 -71.96149996588099 -237.4710113125232 64.6814 0.1144 3610 +3612 2 -72.55646636275007 -238.32694321061183 64.6724 0.1144 3611 +3613 2 -73.05260924484688 -240.05780115972777 64.6719 0.1144 3612 +3614 2 -73.50911189366946 -241.40681071480444 64.6722 0.1144 3613 +3615 2 -74.10648748178924 -241.82378702216926 64.6724 0.1144 3614 +3616 2 -74.72411174293366 -243.02624124204382 64.6727 0.1144 3615 +3617 2 -75.41708214473606 -244.61895882309074 64.673 0.1144 3616 +3618 2 -76.13512641204507 -244.8978133355651 64.6736 0.1144 3617 +3619 2 -76.84672254983002 -246.17957856377683 64.6744 0.1144 3618 +3620 2 -77.44331869372162 -247.68076408002753 64.6755 0.1144 3619 +3621 2 -77.97428668353841 -248.3201070111757 64.6769 0.1144 3620 +3622 2 -78.37891780705644 -249.29092924574957 64.6792 0.1144 3621 +3623 2 -78.81192561268422 -250.7713374658535 64.682 0.1144 3622 +3624 2 -79.05474361722703 -252.3163827596207 64.6862 0.1144 3623 +3625 2 -79.15587914557565 -253.65461538181086 64.6918 0.1144 3624 +3626 2 -79.07740668819208 -254.92165920131538 64.6999 0.1144 3625 +3627 2 -79.1866808847258 -256.2255358919705 64.7122 0.1144 3626 +3628 2 -79.31455002428663 -257.5384656042195 64.729 0.1144 3627 +3629 2 -79.3526016990633 -258.8400510312337 64.7478 0.1144 3628 +3630 2 -79.47559196057024 -260.119180679825 64.7662 0.1144 3629 +3631 2 -79.71680716192648 -261.0786556194497 64.8413 0.1144 3630 +3632 2 -79.84058042069498 -262.20238213528637 64.9211 0.1144 3631 +3633 2 -79.88669635205727 -263.42197186102544 64.9662 0.1144 3632 +3634 2 -79.86094542668646 -264.6973060773358 64.9219 0.1144 3633 +3635 2 -79.86825830579421 -265.9515783015536 64.8466 0.1144 3634 +3636 2 -80.00018355662274 -267.12423419736547 64.8612 0.1144 3635 +3637 2 -80.1369203799723 -268.34231670376454 64.9533 0.1144 3636 +3638 2 -80.25347938886343 -269.576936649408 65.0888 0.1144 3637 +3639 2 -80.34492772358438 -270.821789802695 65.2308 0.1144 3638 +3640 2 -80.19858648785784 -272.1443770812237 65.3764 0.1144 3639 +3641 2 -79.89936130887 -273.4939599118208 65.5273 0.1144 3640 +3642 2 -79.53958621379928 -275.05157005074796 65.7 0.1144 3641 +3643 2 -79.17818818168656 -276.55993362166237 65.8952 0.1144 3642 +3644 2 -78.8175663368548 -277.6250930465056 66.1097 0.1144 3643 +3645 2 -78.45531800194767 -278.4698877196054 66.3356 0.1144 3644 +3646 2 -78.09391996983491 -279.426941165287 66.5588 0.1144 3645 +3647 2 -77.73329812500315 -280.81224730756134 66.7635 0.1144 3646 +3648 2 -77.37104979009597 -282.4222338199004 66.9427 0.1144 3647 +3649 2 -77.30884075303548 -283.76500403924126 67.0608 0.1144 3648 +3650 2 -77.49167254706362 -284.8186176747965 67.1006 0.1144 3649 +3651 2 -77.67372460077742 -285.87430635828315 67.083 0.1144 3650 +3652 2 -77.85662695728563 -287.03956411872224 66.9211 0.1144 3651 +3653 2 -73.35862846677202 -183.08127884381196 65.6687 0.1144 3565 +3654 2 -73.2267269028323 -181.65481100735258 65.611 0.1144 3653 +3655 2 -73.09397533218431 -180.24137306069673 65.5379 0.1144 3654 +3656 2 -72.96129432401644 -178.9025115889942 65.4559 0.1144 3655 +3657 2 -72.82854275336845 -177.7575228773134 65.3708 0.1144 3656 +3658 2 -72.69586174520057 -176.65740327229315 65.2896 0.1144 3657 +3659 2 -72.5631807370327 -175.55745591724394 65.2196 0.1144 3658 +3660 2 -72.4312086106129 -174.4560249820237 65.168 0.1144 3659 +3661 2 -72.29852760244498 -173.35637363741904 65.1392 0.1144 3660 +3662 2 -72.165776031797 -172.25704770574526 65.1375 0.1144 3661 +3663 2 -72.03634089771316 -171.0862235575703 65.2067 0.1144 3662 +3664 2 -71.90838402267786 -169.71480536481292 65.3562 0.1144 3663 +3665 2 -71.78056856868886 -168.30357355267446 65.5687 0.1144 3664 +3666 2 -71.57742434913656 -166.81996326625483 65.8224 0.1144 3665 +3667 2 -71.27149199415246 -165.24524867272524 66.0974 0.1144 3666 +3668 2 -70.93407820793476 -164.030727857905 66.383 0.1144 3667 +3669 2 -70.59744060899799 -163.20810285475443 66.6697 0.1144 3668 +3670 2 -70.25988540173392 -162.38520520733948 66.9558 0.1144 3669 +3671 2 -70.66785593490657 -160.95453251231316 67.2865 0.1144 3670 +3672 2 -71.76034953438393 -160.88405117191738 67.6595 0.1144 3671 +3673 2 -72.85608575099818 -160.33776775161317 68.0551 0.1144 3672 +3674 2 -73.54077691005837 -159.3407040607953 68.3771 0.1144 3673 +3675 2 -74.20034427317377 -158.99119079104048 68.6314 0.1144 3674 +3676 2 -74.8608292446164 -157.33048033412553 68.8282 0.1144 3675 +3677 2 -75.52124335749284 -156.12804840462456 68.9805 0.1144 3676 +3678 2 -76.18080746366107 -155.8195057747877 69.1079 0.1144 3677 +3679 2 -76.8404453892565 -154.32757457760724 69.2311 0.1144 3678 +3680 2 -77.5008597982191 -152.96592715512134 69.3686 0.1144 3679 +3681 2 -76.6227170416853 -152.53919558566136 69.7374 0.1144 3680 +3682 2 -75.73590464058454 -151.42318260355594 70.002 0.1144 3681 +3683 2 -74.84916635499715 -150.7203971447832 70.2898 0.1144 3682 +3684 2 -73.96164832909544 -150.1607284042056 70.5802 0.1144 3683 +3685 2 -73.18349891864113 -148.69041418727795 70.8319 0.1144 3684 +3686 2 -72.71078327812015 -148.07133348173076 70.9758 0.1144 3685 +3687 2 -72.23813849616529 -147.30280047872233 71.0259 0.1144 3686 +3688 2 -71.76627315843864 -145.60979285273527 71.0055 0.1144 3687 +3689 2 -71.29200188640847 -143.98272901679908 70.9372 0.1144 3688 +3690 2 -70.81928624588744 -143.36412705846362 70.8406 0.1144 3689 +3691 2 -70.3466414639326 -142.73032430889768 70.7344 0.1144 3690 +3692 2 -69.87237019190243 -141.1164791409339 70.6311 0.1144 3691 +3693 2 -69.39972540994762 -139.4244241561558 70.5323 0.1144 3692 +3694 2 -68.92786007222101 -138.6605912625489 70.4393 0.1144 3693 +3695 2 -68.4535888001908 -138.044306605267 70.3545 0.1144 3694 +3696 2 -67.98087315966977 -136.62637401802763 70.2794 0.1144 3695 +3697 2 -67.53576186309694 -134.95196220224076 70.222 0.1144 3696 +3698 2 -68.0076493796415 -134.47969890606615 71.1894 0.1144 3697 +3699 2 -68.4940904382651 -133.73194558720235 72.963 0.1144 3698 +3700 2 -68.98144880912983 -132.1943557539218 73.719 0.1144 3699 +3701 2 -69.46788986775343 -130.7428332595706 74.6147 0.1144 3700 +3702 2 -69.95433063029088 -130.2506655945286 75.5978 0.1144 3701 +3703 2 -70.44084225139463 -129.76194632118006 76.6318 0.1144 3702 +3704 2 -70.9273538724983 -128.2719874022582 77.6572 0.1144 3703 +3705 2 -71.41379493112187 -126.73535625369617 78.6234 0.1144 3704 +3706 2 -71.78640103818196 -125.8142874612804 79.4998 0.1144 3705 +3707 2 -71.69894456404275 -124.46538589319073 80.2052 0.1144 3706 +3708 2 -71.61149105076468 -123.11997723851741 81.3235 0.1144 3707 +3709 2 -66.68481493583417 -136.32193309728862 70.1921 0.1144 3697 +3710 2 -65.84350151662723 -137.08497856225503 70.2162 0.1144 3709 +3711 2 -65.00134134765925 -137.6261873048677 70.2573 0.1144 3710 +3712 2 -64.16009878701848 -139.2120412238329 70.3094 0.1144 3711 +3713 2 -63.3179386180505 -139.14513354650072 70.3671 0.1144 3712 +3714 2 -62.47669605740978 -140.69699358406902 70.4262 0.1144 3713 +3715 2 -61.634535888441796 -141.27910336240893 70.4852 0.1144 3714 +3716 2 -60.793293327801045 -142.00146756278156 70.5443 0.1144 3715 +3717 2 -59.95120372131313 -143.3931307566406 70.6034 0.1144 3716 +3718 2 -59.109890302106194 -143.37961806249578 70.6628 0.1144 3717 +3719 2 -58.267800991704384 -144.92981188012297 70.7218 0.1144 3718 +3720 2 -57.42648757249745 -145.27845939586055 70.7809 0.1144 3719 +3721 2 -56.58439826209568 -146.3503701403425 70.8403 0.1144 3720 +3722 2 -55.74308484288875 -147.30432784912978 70.8994 0.1144 3721 +3723 2 -54.9009955324869 -147.68378175493248 70.9584 0.1144 3722 +3724 2 -54.05968211327997 -149.29956651670588 71.0178 0.1144 3723 +3725 2 -53.21766336535827 -149.4343173736567 71.0769 0.1144 3724 +3726 2 -52.376349946151336 -150.7388220527994 71.1362 0.1144 3725 +3727 2 -51.534189777183315 -151.46154952883293 71.1956 0.1144 3726 +3728 2 -50.692947216542635 -152.07204959613975 71.255 0.1144 3727 +3729 2 -49.85078704757461 -153.56855100650438 71.3143 0.1144 3728 +3730 2 -49.009544486933855 -153.58277314840154 71.374 0.1144 3729 +3731 2 -48.16738431796587 -155.13945592880012 71.4336 0.1144 3730 +3732 2 -47.32614175732511 -155.61402010323232 71.4935 0.1144 3731 +3733 2 -46.4840521508372 -156.4530287959374 71.5537 0.1144 3732 +3734 2 -45.642739027716416 -157.73109747872394 71.6145 0.1144 3733 +3735 2 -44.8006494212285 -157.75934976516265 71.6755 0.1144 3734 +3736 2 -43.95933600202156 -159.53045799936046 71.7377 0.1144 3735 +3737 2 -43.117246691619755 -159.77563973023658 71.801 0.1144 3736 +3738 2 -42.27593327241282 -160.83717178015718 71.8659 0.1144 3737 +3739 2 -41.43384396201102 -161.89317711290002 71.9331 0.1144 3738 +3740 2 -40.592530542804084 -162.14432812900225 72.0031 0.1144 3739 +3741 2 -39.750511794882385 -163.9163543219484 72.0782 0.1144 3740 +3742 2 -38.90912781319534 -165.32076178728732 72.1599 0.1144 3741 +3743 2 -38.067038206707466 -165.91435478629117 72.2504 0.1144 3742 +3744 2 -37.22579564606671 -166.82052881665362 72.3503 0.1144 3743 +3745 2 -36.383635477098686 -167.8187605696561 72.4601 0.1144 3744 +3746 2 -35.86073985981868 -168.53197165646762 72.6228 0.1144 3745 +3747 2 -36.13368372431083 -169.77648642008245 72.8232 0.1144 3746 +3748 2 -36.85994728921287 -170.9537980009652 73.0128 0.1144 3747 +3749 2 -37.58528998884039 -171.4884283054937 73.1898 0.1144 3748 +3750 2 -38.31147943822899 -172.8037395539493 73.353 0.1144 3749 +3751 2 -39.036822137856554 -173.73669403133144 73.502 0.1144 3750 +3752 2 -39.76308244581131 -174.23783460495397 73.6361 0.1144 3751 +3753 2 -40.48849570791893 -174.40817233254313 73.7624 0.1144 3752 +3754 2 -41.21383840754649 -175.82162031373838 73.8872 0.1144 3753 +3755 2 -41.94002785693506 -176.9896481732296 74.0099 0.1144 3754 +3756 2 -42.66537055656262 -177.1895923425052 74.1297 0.1144 3755 +3757 2 -43.39241030874556 -178.92249786654307 74.2456 0.1144 3756 +3758 2 -44.117753008373114 -179.74070723616816 74.3554 0.1144 3757 +3759 2 -44.84316627048075 -180.2315909955479 74.4573 0.1144 3758 +3760 2 -45.569356015955464 -182.02350510720981 74.5497 0.1144 3759 +3761 2 -46.19108701909251 -182.65731341233393 74.6273 0.1144 3760 +3762 2 -46.29872791557033 -183.7902772836395 74.6732 0.1144 3761 +3763 2 -46.44683566122798 -184.86804919620673 74.6914 0.1144 3762 +3764 2 -46.82960198465991 -185.95509128708113 74.6852 0.1144 3763 +3765 2 -47.33388323885575 -187.61377563745117 74.6609 0.1144 3764 +3766 2 -47.87859779051506 -188.9296345168794 74.6178 0.1144 3765 +3767 2 -48.616995047145394 -189.08605963568942 74.5276 0.1144 3766 +3768 2 -49.407257813372226 -190.63112874326413 74.4027 0.1144 3767 +3769 2 -50.120483900280085 -191.51363189620582 74.2823 0.1144 3768 +3770 2 -50.52115701101873 -192.24679626532236 74.2526 0.1144 3769 +3771 2 -50.92176252013837 -193.45468378135547 74.3016 0.1144 3770 +3772 2 -51.322364772310834 -195.02769335971033 74.4164 0.1144 3771 +3773 2 -51.723817327277715 -196.45983070190385 74.5839 0.1144 3772 +3774 2 -52.12435227391728 -197.42691050654108 74.7846 0.1144 3773 +3775 2 -52.525025384655926 -198.16076965420666 74.9994 0.1144 3774 +3776 2 -52.92562763682839 -199.40956783625774 75.2139 0.1144 3775 +3777 2 -53.326233145948066 -200.94870025513563 75.4284 0.1144 3776 +3778 2 -53.72690625668672 -202.33371691012036 75.6431 0.1144 3777 +3779 2 -54.127441203326285 -203.347094944146 75.8576 0.1144 3778 +3780 2 -54.52804345549879 -204.08279818930367 76.0721 0.1144 3779 +3781 2 -54.929496010465584 -205.3689281497618 76.2866 0.1144 3780 +3782 2 -55.32932207535707 -206.87237438539216 76.501 0.1144 3781 +3783 2 -55.73070406784383 -208.2119642251629 76.7155 0.1144 3782 +3784 2 -56.13130632001631 -209.27636197380025 76.9297 0.1144 3783 +3785 2 -56.53191182913594 -210.05566696580252 77.1439 0.1144 3784 +3786 2 -56.933364384102816 -211.33560892707754 77.3576 0.1144 3785 +3787 2 -57.33311988651424 -212.8045915018044 77.5712 0.1144 3786 +3788 2 -57.734572441481035 -214.09469957013113 77.7843 0.1144 3787 +3789 2 -58.1351746936535 -215.21495413993333 77.9968 0.1144 3788 +3790 2 -58.53585106133936 -216.4480992946555 78.2085 0.1144 3789 +3791 2 -58.93645331351182 -218.1097830391402 78.4188 0.1144 3790 +3792 2 -59.33783500991248 -219.5637744221238 78.6276 0.1144 3791 +3793 2 -59.73759051232389 -220.40926210569668 78.8357 0.1144 3792 +3794 2 -60.13826362306254 -221.1460649500048 79.0384 0.1144 3793 +3795 2 -60.539645319463155 -222.4494135079995 79.2313 0.1144 3794 +3796 2 -60.8293815596571 -224.0151546237005 79.429 0.1144 3795 +3797 2 -61.05840908762717 -225.53912873814957 79.6076 0.1144 3796 +3798 2 -61.157918421986516 -226.92276018341153 79.8554 0.1144 3797 +3799 2 -78.54320942181677 -153.39971002024504 70.1901 0.1144 3680 +3800 2 -79.58718553548981 -152.56606399748037 71.5501 0.1144 3799 +3801 2 -80.6302440408356 -152.89238088489398 72.1339 0.1144 3800 +3802 2 -81.67422015450865 -152.1655434221893 72.8064 0.1144 3801 +3803 2 -82.7173459653873 -152.38650174190695 73.5168 0.1144 3802 +3804 2 -83.76054589177936 -152.05661611515205 74.2188 0.1144 3803 +3805 2 -83.55595635797683 -153.09488362601468 74.7244 0.1144 3804 +3806 2 -83.35129596560812 -154.16388814409828 75.0501 0.1144 3805 +3807 2 -83.14592698757735 -155.55902368830834 75.238 0.1144 3806 +3808 2 -82.94056126649389 -156.94717378044896 75.3281 0.1144 3807 +3809 2 -82.73590087412518 -158.33155736059254 75.3567 0.1144 3808 +3810 2 -79.3737492711987 -165.30620732930373 63.4847 0.1144 3548 +3811 2 -78.31085568765378 -165.54786930391992 63.2027 0.1144 3810 +3812 2 -77.24803296267498 -164.28457207440977 63.0854 0.1144 3811 +3813 2 -76.1843599349019 -164.7090191418147 62.9364 0.1144 3812 +3814 2 -75.12139578887687 -163.29669469063953 62.7553 0.1144 3813 +3815 2 -74.00552563506348 -163.9343589734741 62.529 0.1144 3814 +3816 2 -73.04185265032052 -163.68033535873568 62.2283 0.1144 3815 +3817 2 -72.10460880628243 -165.3363887886771 61.8643 0.1144 3816 +3818 2 -71.16814114952534 -165.05032593072656 61.4513 0.1144 3817 +3819 2 -70.2438069823962 -166.5988569447547 61.0005 0.1144 3818 +3820 2 -69.32750983193048 -166.7214522008902 60.5223 0.1144 3819 +3821 2 -68.41205972731198 -167.8071313527268 60.0312 0.1144 3820 +3822 2 -67.49738906692163 -168.42940784515812 59.5353 0.1144 3821 +3823 2 -66.58193896230313 -169.01436295967068 59.0369 0.1144 3822 +3824 2 -65.67692855170435 -170.16112341202913 58.5348 0.1144 3823 +3825 2 -64.83490349198851 -170.24413962847115 58.0306 0.1144 3824 +3826 2 -63.93237263302029 -172.00337184982237 57.5926 0.1144 3825 +3827 2 -63.02040576956064 -171.6670095278668 57.0615 0.1144 3826 +3828 2 -61.99777630528035 -172.937112679744 56.5404 0.1144 3827 +3829 2 -60.942242330848984 -172.52303265867266 56.0319 0.1144 3828 +3830 2 -59.90617778731435 -173.72270191460146 55.512 0.1144 3829 +3831 2 -58.77098481682853 -172.97456325532627 55.1121 0.1144 3830 +3832 2 -57.62859141852685 -173.34835979535637 54.8374 0.1144 3831 +3833 2 -56.488681124889 -173.28061367322903 54.6753 0.1144 3832 +3834 2 -55.368626800107464 -173.47621102926024 54.5885 0.1144 3833 +3835 2 -54.24458772081081 -173.95495234692282 54.5538 0.1144 3834 +3836 2 -53.148597462313816 -173.93893181297383 54.5493 0.1144 3835 +3837 2 -52.11131694963838 -174.93082818174327 54.5493 0.1144 3836 +3838 2 -51.3257514427346 -175.57386044346663 54.5493 0.1144 3837 +3839 2 -117.02248957420875 -168.82413399882208 41.9849 0.1144 3062 +3840 2 -116.568095710861 -169.73141632040466 41.9656 0.1144 3839 +3841 2 -116.11363128503321 -171.38595158288808 41.9574 0.1144 3840 +3842 2 -115.6600841714465 -172.82018651857535 41.9476 0.1144 3841 +3843 2 -115.20569060418487 -173.79099379004327 41.9367 0.1144 3842 +3844 2 -114.75129674083709 -174.63544269781187 41.9252 0.1144 3843 +3845 2 -114.2969028774894 -175.80570276714604 41.9135 0.1144 3844 +3846 2 -113.84328520142263 -177.42525493067438 41.9014 0.1144 3845 +3847 2 -113.38896219664107 -178.8335177558584 41.8897 0.1144 3846 +3848 2 -112.93534777752149 -179.55368782099566 41.8779 0.1144 3847 +3849 2 -112.48173010145476 -180.46292870009387 41.8664 0.1144 3848 +3850 2 -112.0274070966732 -181.89118939627457 41.855 0.1144 3849 +3851 2 -111.57301323332545 -183.45665201940898 41.8438 0.1144 3850 +3852 2 -111.11861936997772 -184.6358934514517 41.8328 0.1144 3851 +3853 2 -110.66500169391097 -185.32768333251295 41.8222 0.1144 3852 +3854 2 -110.2106786891294 -186.31036175935378 41.8121 0.1144 3853 +3855 2 -109.75621426330159 -187.9835392273185 41.8026 0.1144 3854 +3856 2 -109.63739644602927 -189.36797613551698 41.795 0.1144 3855 +3857 2 -109.59611091383877 -190.68483481995824 41.7892 0.1144 3856 +3858 2 -109.58813166652249 -191.96431451796957 41.7838 0.1144 3857 +3859 2 -109.58651310934198 -193.23865065823384 41.7788 0.1144 3858 +3860 2 -109.58574455886973 -194.51160315181522 41.7735 0.1144 3859 +3861 2 -109.58497630448358 -195.78442601226578 41.7682 0.1144 3860 +3862 2 -109.58258156002208 -197.05941992791244 41.7626 0.1144 3861 +3863 2 -109.58181300954982 -198.33297984381585 41.7567 0.1144 3862 +3864 2 -109.58019445236926 -199.60844262326077 41.7508 0.1144 3863 +3865 2 -109.57942590189703 -200.8819704276208 41.7449 0.1144 3864 +3866 2 -109.57872820999094 -202.15596365259347 41.739 0.1144 3865 +3867 2 -109.57626260696327 -203.43450431509882 41.7332 0.1144 3866 +3868 2 -109.57549435257715 -204.70900751373205 41.7273 0.1144 3867 +3869 2 -109.57394635787671 -205.9856197151894 41.7214 0.1144 3868 +3870 2 -109.57310724492433 -207.2610398906217 41.7152 0.1144 3869 +3871 2 -109.57155925022391 -208.53817222016562 41.7094 0.1144 3870 +3872 2 -109.5699439499906 -209.81377667618068 41.7035 0.1144 3871 +3873 2 -109.56917569560444 -211.08902814649102 41.6976 0.1144 3872 +3874 2 -109.56762770090398 -212.3669995069368 41.6917 0.1144 3873 +3875 2 -109.56678858795166 -213.6433060288628 41.6858 0.1144 3874 +3876 2 -109.5652405932512 -214.92158242315398 41.68 0.1144 3875 +3877 2 -109.56362529301789 -216.19839540160177 41.6744 0.1144 3876 +3878 2 -109.56200673583737 -217.47716510248515 41.6685 0.1144 3877 +3879 2 -109.56130904393132 -218.75425259539935 41.6626 0.1144 3878 +3880 2 -109.56046993097897 -220.03173805063858 41.657 0.1144 3879 +3881 2 -109.55814574899753 -221.31144796503196 41.6511 0.1144 3880 +3882 2 -109.55730663604521 -222.58937340095852 41.6458 0.1144 3881 +3883 2 -109.55575864134477 -223.8692833441139 41.6402 0.1144 3882 +3884 2 -109.55491952839242 -225.1476752513508 41.6352 0.1144 3883 +3885 2 -109.55422183648632 -226.43956163111358 41.6301 0.1144 3884 +3886 2 -109.55182709202487 -227.74338052928988 41.6256 0.1144 3885 +3887 2 -109.55098797907254 -229.04706095743393 41.6214 0.1144 3886 +3888 2 -109.41517772587355 -230.40829342586898 41.6184 0.1144 3887 +3889 2 -109.2712391675034 -231.8381554945031 41.6167 0.1144 3888 +3890 2 -109.11513987958298 -233.28115973156213 41.6156 0.1144 3889 +3891 2 -109.1062397669923 -234.57030952385105 41.615 0.1144 3890 +3892 2 -109.02295899403492 -235.9394140543049 41.6147 0.1144 3891 +3893 2 -108.84834213554811 -237.39895749384928 41.6147 0.1144 3892 +3894 2 -109.18660622456024 -238.23750894840293 41.6147 0.1144 3893 +3895 2 -127.0211698496594 -188.52249802798417 37.1199 0.1144 3044 +3896 2 -126.84817948124794 -189.63527585586098 38.1931 0.1144 3895 +3897 2 -126.54939108578796 -189.8578889672737 37.116 0.1144 3896 +3898 2 -125.96498688211423 -190.8150091555949 36.8259 0.1144 3897 +3899 2 -126.54420099727272 -191.8677097740064 36.6772 0.1144 3898 +3900 2 -126.33641577843946 -192.47167111951515 36.4381 0.1144 3899 +3901 2 -125.55251476874776 -193.4831895017634 36.1197 0.1144 3900 +3902 2 -124.65427007995514 -193.99090442447797 35.6964 0.1144 3901 +3903 2 -123.76636027069915 -194.79510067063802 35.2526 0.1144 3902 +3904 2 -122.88146973566693 -195.60703510322602 34.8796 0.1144 3903 +3905 2 -122.29866528033284 -196.46429932348482 34.5486 0.1144 3904 +3906 2 -122.04730288915945 -197.7147452806949 34.1874 0.1144 3905 +3907 2 -122.21812268285063 -198.90533037236344 33.8551 0.1144 3906 +3908 2 -122.2432818537128 -200.19459559892852 33.5821 0.1144 3907 +3909 2 -121.76231643224106 -201.5393455876855 33.3236 0.1144 3908 +3910 2 -121.4728598705612 -202.82288962460228 33.0151 0.1144 3909 +3911 2 -121.58134801498652 -204.03827115681446 32.6623 0.1144 3910 +3912 2 -121.33654191875334 -205.28550715887962 32.2669 0.1144 3911 +3913 2 -120.30929413219643 -205.38460385834537 31.9026 0.1144 3912 +3914 2 -119.62487013679365 -206.52845656194944 30.9299 0.1144 3913 +3915 2 -127.00674092604307 -192.03882077232888 36.7912 0.1144 3899 +3916 2 -127.90931214670812 -190.85021524637443 36.8113 0.1144 3915 +3917 2 -128.88366149225885 -190.37027210641372 36.8267 0.1144 3916 +3918 2 -129.887136561264 -189.65462236486994 36.8749 0.1144 3917 +3919 2 -130.89857127447186 -189.07677625993207 36.9611 0.1144 3918 +3920 2 -131.9302135987208 -188.50806164631058 37.0955 0.1144 3919 +3921 2 -133.00202511162274 -188.11553845012236 37.3103 0.1144 3920 +3922 2 -134.0786880605561 -187.5596640319179 37.6379 0.1144 3921 +3923 2 -135.1021615158366 -186.18827958904203 38.0456 0.1144 3922 +3924 2 -135.54170772961183 -185.01701426604706 38.5409 0.1144 3923 +3925 2 -135.43829550608925 -184.06069450629855 39.2496 0.1144 3924 +3926 2 -134.6734014506202 -183.79963928794285 41.0525 0.1144 3925 +3927 2 -127.12396236495273 -189.9484806256229 38.6299 0.1144 3896 +3928 2 -127.88383755506781 -188.93794049444836 39.3128 0.1144 3927 +3929 2 -128.11152517667705 -187.63347892682702 40.1727 0.1144 3928 +3930 2 -127.42364100227643 -188.1430485537864 41.1757 0.1144 3929 +3931 2 -127.12073929441442 -189.06452052276066 42.1865 0.1144 3930 +3932 2 -127.94327581830655 -189.0746068032445 43.2586 0.1144 3931 +3933 2 -128.88454122552324 -188.54850547646032 44.2296 0.1144 3932 +3934 2 -129.70418659140688 -188.1823934302625 45.2281 0.1144 3933 +3935 2 -130.6861022706912 -187.33206979190993 46.1034 0.1144 3934 +3936 2 -131.55545171756486 -188.58554137755328 46.979 0.1144 3935 +3937 2 -132.57323268763093 -188.13018260537004 47.7613 0.1144 3936 +3938 2 -133.655050367972 -189.1631698368936 48.4081 0.1144 3937 +3939 2 -134.68798084494253 -188.55498250592728 48.9143 0.1144 3938 +3940 2 -135.65543591080035 -188.45003425840835 49.3007 0.1144 3939 +3941 2 -136.33295450669465 -189.01254452736242 49.5894 0.1144 3940 +3942 2 -136.8687476889935 -189.80589606306506 49.6843 0.1144 3941 +3943 2 -137.70804890699364 -190.1170961376709 49.6283 0.1144 3942 +3944 2 -138.7500598645958 -189.55401284408134 49.4637 0.1144 3943 +3945 2 -139.78003868800562 -189.0751815039277 49.2302 0.1144 3944 +3946 2 -140.80916720862095 -188.47675795595137 48.9608 0.1144 3945 +3947 2 -141.83914603203073 -187.97867888254916 48.6889 0.1144 3946 +3948 2 -142.86912485544053 -187.39470100091245 48.4439 0.1144 3947 +3949 2 -143.79262914971684 -186.55045320862598 48.2656 0.1144 3948 +3950 2 -144.64283344141495 -186.11289316822774 48.1726 0.1144 3949 +3951 2 -145.5195553095791 -184.57430027999658 48.1558 0.1144 3950 +3952 2 -146.40770859560365 -184.61510426271764 48.2023 0.1144 3951 +3953 2 -147.34413618675012 -183.706072927624 48.3319 0.1144 3952 +3954 2 -147.92925133064597 -182.46835128917584 48.6007 0.1144 3953 +3955 2 -147.94446120656136 -181.17960604906727 48.8874 0.1144 3954 +3956 2 -147.89183635403657 -179.8266677295313 49.1596 0.1144 3955 +3957 2 -147.8376558700026 -178.47183818759203 49.4119 0.1144 3956 +3958 2 -147.77286732706648 -177.15526906761252 49.6404 0.1144 3957 +3959 2 -147.70814934661047 -175.95015350176217 49.8436 0.1144 3958 +3960 2 -147.64180487607914 -174.74703817288486 50.0312 0.1144 3959 +3961 2 -147.62878324606476 -173.4804047367723 50.197 0.1144 3960 +3962 2 -147.75573943543606 -172.0721402123698 50.3804 0.1144 3961 +3963 2 -148.35877568688636 -171.07285434201472 50.57 0.1144 3962 +3964 2 -148.50667175984955 -169.89397065030863 50.8021 0.1144 3963 +3965 2 -148.37151425489805 -168.49158611291676 51.175 0.1144 3964 +3966 2 -90.42974363618457 -225.29355580456183 32.9297 0.1144 2886 +3967 2 -89.36346836901664 -224.81279203963567 32.8944 0.1144 3966 +3968 2 -88.35332781072673 -224.2854593348991 32.8513 0.1144 3967 +3969 2 -87.31812650870481 -223.70602834997408 32.7978 0.1144 3968 +3970 2 -86.25531059370655 -223.47975266520973 32.7622 0.1144 3969 +3971 2 -85.180975027187 -223.75935726452113 32.7446 0.1144 3970 +3972 2 -84.22525373470805 -223.3433631013012 32.7513 0.1144 3971 +3973 2 -84.12172478691252 -224.60974581936426 32.786 0.1144 3972 +3974 2 -84.0683493837381 -225.8955543623055 32.8448 0.1144 3973 +3975 2 -84.01504809607697 -227.1785063708185 32.9146 0.1144 3974 +3976 2 -83.9616726929025 -228.49813479348734 32.9865 0.1144 3975 +3977 2 -83.90830084276129 -229.82019970456724 33.0562 0.1144 3976 +3978 2 -83.74499085799695 -231.25591728422188 33.1086 0.1144 3977 +3979 2 -83.73772049242882 -232.52883787510814 33.1433 0.1144 3978 +3980 2 -83.3148448689782 -234.14773048281518 33.1643 0.1144 3979 +3981 2 -82.43968869925092 -234.47991368116794 33.1747 0.1144 3980 +3982 2 -81.58228733066997 -235.19588319971734 33.1789 0.1144 3981 +3983 2 -80.72968746768218 -235.46633602598735 33.1794 0.1144 3982 +3984 2 -80.44503517035638 -236.702854594124 33.1794 0.1144 3983 +3985 2 -77.2752459556419 -238.85715950292814 22.5898 0.1144 2862 +3986 2 -78.4181579463085 -238.22913204633852 22.5929 0.1144 3985 +3987 2 -79.51036369357158 -239.27029162350783 22.5942 0.1144 3986 +3988 2 -80.59843625319238 -239.03034552411657 22.5959 0.1144 3987 +3989 2 -81.62878512281007 -240.1833262193414 22.5983 0.1144 3988 +3990 2 -82.72013050035102 -241.14696847813906 22.6016 0.1144 3989 +3991 2 -83.85759429588819 -240.45607269152285 22.6063 0.1144 3990 +3992 2 -85.00072302158765 -241.12252731838424 22.6129 0.1144 3991 +3993 2 -86.14542405360423 -240.36595946774034 22.6221 0.1144 3992 +3994 2 -87.25067478912874 -240.39762713757545 22.6344 0.1144 3993 +3995 2 -88.37209539589418 -240.91561692856908 22.6525 0.1144 3994 +3996 2 -89.48466825062607 -240.9628969803963 22.679 0.1144 3995 +3997 2 -90.62505637073133 -241.2879712986411 22.7151 0.1144 3996 +3998 2 -91.16742841194493 -241.02381327610863 22.7597 0.1144 3997 +3999 2 -92.3007958285033 -240.96350552856006 22.8101 0.1144 3998 +4000 2 -93.40486015189842 -241.017839353005 22.9487 0.1144 3999 +4001 2 -94.51260525748782 -241.29230360798834 23.1173 0.1144 4000 +4002 2 -95.65082786521117 -241.24527921263322 23.2353 0.1144 4001 +4003 2 -96.75326249809864 -240.89895799777858 23.2963 0.1144 4002 +4004 2 -97.84998482704616 -240.59612171975695 23.2651 0.1144 4003 +4005 2 -98.90055524279612 -240.16553566182398 23.0913 0.1144 4004 +4006 2 -100.03380698367107 -240.32432727642194 22.9183 0.1144 4005 +4007 2 -101.16905088096789 -240.05183668991097 22.7769 0.1144 4006 +4008 2 -102.25611671525742 -239.812798907476 22.6768 0.1144 4007 +4009 2 -103.3062764079725 -239.1006559870157 22.6154 0.1144 4008 +4010 2 -104.29601192721589 -239.57338375146043 22.5886 0.1144 4009 +4011 2 -104.97173128829098 -238.13799930157347 22.5853 0.1144 4010 +4012 2 -105.95897343384242 -237.42170726136936 22.5842 0.1144 4011 +4013 2 -107.05897213374337 -237.10028372276972 22.5837 0.1144 4012 +4014 2 -108.14941519623551 -236.83042329855826 22.574 0.1144 4013 +4015 2 -109.14711065576782 -236.0350816361327 22.568 0.1144 4014 +4016 2 -110.28931070983938 -236.32989375684068 22.5706 0.1144 4015 +4017 2 -111.38229264438345 -236.2219453183792 22.5831 0.1144 4016 +4018 2 -112.52131186932947 -236.72418775177078 22.6072 0.1144 4017 +4019 2 -113.49249626629015 -235.53572915218354 22.6481 0.1144 4018 +4020 2 -114.06234416912397 -234.49564585700915 22.7109 0.1144 4019 +4021 2 -113.91912566453408 -233.1404707716315 22.7963 0.1144 4020 +4022 2 -113.68288388668665 -231.86516535459788 22.9062 0.1144 4021 +4023 2 -113.7296661862574 -230.57511349411254 23.0546 0.1144 4022 +4024 2 -113.91307186151309 -229.40397862994445 23.3589 0.1144 4023 +4025 2 -114.60329639451666 -228.90887358775365 23.7154 0.1144 4024 +4026 2 -115.61633035787779 -227.85472004453905 24.0229 0.1144 4025 +4027 2 -116.62445800116255 -227.7374129812969 24.3336 0.1144 4026 +4028 2 -117.49483279915206 -226.5875287443269 24.5645 0.1144 4027 +4029 2 -118.31673798330138 -225.66276574760977 24.7251 0.1144 4028 +4030 2 -118.97551583526081 -224.8868200323105 24.8277 0.1144 4029 +4031 2 -119.36034386771017 -223.6601908954132 24.9061 0.1144 4030 +4032 2 -119.28506796089047 -222.3819093667781 24.9891 0.1144 4031 +4033 2 -118.93541281571476 -221.18382599452687 25.1 0.1144 4032 +4034 2 -118.58582852910523 -219.86715026309167 25.2411 0.1144 4033 +4035 2 -118.23787043648491 -218.41912444290915 25.4013 0.1144 4034 +4036 2 -117.8882152913092 -217.12363136570818 25.5694 0.1144 4035 +4037 2 -117.53863070861351 -216.1170296371935 25.734 0.1144 4036 +4038 2 -117.18904642200398 -215.0453977672269 25.884 0.1144 4037 +4039 2 -116.79487867939454 -213.90319476370024 26.0077 0.1144 4038 +4040 2 -116.12848664569667 -212.46001727262785 26.0884 0.1144 4039 +4041 2 -115.08512654163408 -212.38146934834464 26.1094 0.1144 4040 +4042 2 -113.99541772109626 -211.48420852948172 26.0639 0.1144 4041 +4043 2 -112.90404510363314 -211.6913480273982 25.953 0.1144 4042 +4044 2 -111.81267278225616 -210.67924531201135 25.797 0.1144 4043 +4045 2 -110.7221504675874 -210.9125391794384 25.6155 0.1144 4044 +4046 2 -109.63070728764419 -210.1098058854178 25.4266 0.1144 4045 +4047 2 -108.5394055287473 -209.9976647667259 25.2444 0.1144 4046 +4048 2 -107.46432732666304 -209.47019822982293 25.0841 0.1144 4047 +4049 2 -106.52401620989565 -208.89527861330617 24.968 0.1144 4048 +4050 2 -105.95156575806922 -207.29750661265973 24.9029 0.1144 4049 +4051 2 -105.8002658238993 -206.05449469406693 24.88 0.1144 4050 +4052 2 -105.8714570219588 -204.70377628025938 24.8906 0.1144 4051 +4053 2 -106.0007619070285 -203.4389718748048 24.9262 0.1144 4052 +4054 2 -106.0160627753657 -202.15807741021223 25.0083 0.1144 4053 +4055 2 -106.00064152284185 -200.88772849804877 25.1443 0.1144 4054 +4056 2 -106.14131377718641 -199.65127217574306 25.2655 0.1144 4055 +4057 2 -106.18740436800346 -198.3682215698267 25.3759 0.1144 4056 +4058 2 -106.29415600118062 -197.11333517249562 25.4799 0.1144 4057 +4059 2 -106.16871924157306 -195.79650971073522 25.5921 0.1144 4058 +4060 2 -105.77051937067077 -194.83476055833924 25.731 0.1144 4059 +4061 2 -105.33099257695267 -194.15467301677683 25.9028 0.1144 4060 +4062 2 -105.03396797136807 -193.02388551737715 26.1004 0.1144 4061 +4063 2 -104.75803227467458 -191.4381993588442 26.3304 0.1144 4062 +4064 2 -104.51116852187793 -189.88049426284397 26.5926 0.1144 4063 +4065 2 -104.46338553664313 -188.5366053871428 26.9049 0.1144 4064 +4066 2 -104.74633347324658 -187.639142310992 27.2805 0.1144 4065 +4067 2 -105.15541862012441 -186.88962542423064 27.6778 0.1144 4066 +4068 2 -105.47966022391351 -185.48741246123012 28.0535 0.1144 4067 +4069 2 -106.13353145971051 -183.77885121993413 28.4245 0.1144 4068 +4070 2 -107.01422751727559 -183.6367833417409 28.8526 0.1144 4069 +4071 2 -107.71484081748804 -182.63537277546624 29.3451 0.1144 4070 +4072 2 -108.47209333826666 -181.6639934390306 30.9299 0.1144 4071 +4073 2 -90.88057320631678 -241.3674759924063 23.1303 0.1144 3997 +4074 2 -91.51213332231417 -242.16464631495137 23.2347 0.1144 4073 +4075 2 -91.96292366719675 -243.30926185819212 23.2514 0.1144 4074 +4076 2 -92.62513839642195 -244.52221745330104 23.2033 0.1144 4075 +4077 2 -93.47128133145752 -245.29262867973023 23.16 0.1144 4076 +4078 2 -94.27773665944119 -246.21852208283525 23.1218 0.1144 4077 +4079 2 -95.04529389152889 -247.2949565453876 23.0886 0.1144 4078 +4080 2 -95.79741076616573 -248.15162949431118 23.0604 0.1144 4079 +4081 2 -96.62251877396805 -249.0513354964578 23.0479 0.1144 4080 +4082 2 -97.60496705073497 -249.76223616072798 23.0444 0.1144 4081 +4083 2 -98.67596219771539 -250.1233728586016 23.0394 0.1144 4082 +4084 2 -99.77293945188879 -250.59436431192847 23.0325 0.1144 4083 +4085 2 -100.89949908828464 -250.6715884837684 23.0228 0.1144 4084 +4086 2 -102.02816655678572 -250.68779890724073 23.0092 0.1144 4085 +4087 2 -103.10322394377172 -250.10686230947272 22.9902 0.1144 4086 +4088 2 -104.17102346223635 -250.79995765754757 22.9637 0.1144 4087 +4089 2 -105.28683593577307 -249.7922991667927 22.9268 0.1144 4088 +4090 2 -106.42071769137628 -250.78005103157858 22.8749 0.1144 4089 +4091 2 -107.544648844828 -250.24474397742773 22.8014 0.1144 4090 +4092 2 -108.6629276917057 -251.1206411987818 22.6993 0.1144 4091 +4093 2 -109.77871316489151 -251.03757674783287 22.5611 0.1144 4092 +4094 2 -110.89779188593903 -251.44049102124455 22.3695 0.1144 4093 +4095 2 -111.99628652491369 -251.507071153345 22.0759 0.1144 4094 +4096 2 -113.04789979341561 -250.89487293761175 21.6551 0.1144 4095 +4097 2 -114.12450224679654 -250.76276706045223 21.1608 0.1144 4096 +4098 2 -114.77121761327965 -250.21321547133027 20.5658 0.1144 4097 +4099 2 -114.82088643238217 -249.11932267454 19.7953 0.1144 4098 +4100 2 -115.21110216440857 -247.66080612828534 18.9606 0.1144 4099 +4101 2 -115.41558333069467 -246.41337974299745 18.1849 0.1144 4100 +4102 2 -115.66782602334541 -245.18776901611875 17.4634 0.1144 4101 +4103 2 -116.15290094557054 -244.28986331156665 16.8476 0.1144 4102 +4104 2 -116.54334072079679 -243.20846539710084 16.3792 0.1144 4103 +4105 2 -116.73901569521934 -241.94773073925006 16.0352 0.1144 4104 +4106 2 -116.24752488921573 -240.7917956101887 15.7166 0.1144 4105 +4107 2 -115.4467108045055 -239.63069956773526 15.3494 0.1144 4106 +4108 2 -114.80716430256957 -239.0139517780521 15.0058 0.1144 4107 +4109 2 -114.7211611081311 -237.82395758560918 14.582 0.1144 4108 +4110 2 -114.82948830457264 -236.56013781606566 14.1627 0.1144 4109 +4111 2 -115.16972992016093 -235.209843234102 13.7252 0.1144 4110 +4112 2 -115.97788498943436 -234.0521971607132 13.3927 0.1144 4111 +4113 2 -116.79577492219912 -233.53418814515328 13.1693 0.1144 4112 +4114 2 -117.82167799867209 -232.62183531248874 13.0291 0.1144 4113 +4115 2 -118.76870358179285 -232.20792433949524 12.9583 0.1144 4114 +4116 2 -119.70924748367322 -231.1834067382636 12.9278 0.1144 4115 +4117 2 -120.74166244216983 -230.86780519324725 12.9208 0.1144 4116 +4118 2 -121.80061520497374 -230.16945073308523 12.9153 0.1144 4117 +4119 2 -122.92623991446254 -230.1120522904698 12.9078 0.1144 4118 +4120 2 -124.06584503730627 -230.09718908791768 12.8977 0.1144 4119 +4121 2 -125.18985030627141 -230.40322072730837 12.8825 0.1144 4120 +4122 2 -126.33275924209113 -231.36385772737714 12.8609 0.1144 4121 +4123 2 -127.44405425060033 -230.2142203033713 12.832 0.1144 4122 +4124 2 -128.58560415608818 -231.14665522866892 12.796 0.1144 4123 +4125 2 -129.72352860509832 -230.2896000971189 12.7533 0.1144 4124 +4126 2 -130.84389840717296 -231.01089157113176 12.6246 0.1144 4125 +4127 2 -131.98096929644154 -230.65722059048187 12.5177 0.1144 4126 +4128 2 -133.12564989851646 -230.85815050257952 12.4297 0.1144 4127 +4129 2 -133.20556713325885 -231.28898446641057 12.3577 0.1144 4128 +4130 2 -133.85651910559204 -231.65476503272583 12.299 0.1144 4129 +4131 2 -134.82849363843644 -232.58883443281863 12.2519 0.1144 4130 +4132 2 -135.9354051160394 -232.54612484736998 12.2149 0.1144 4131 +4133 2 -136.39549937353726 -233.53694773253318 12.1094 0.1144 4132 +4134 2 -136.40521818694853 -234.84311492265988 12.0064 0.1144 4133 +4135 2 -136.17886491240938 -236.12137704690008 11.9269 0.1144 4134 +4136 2 -135.709928664269 -237.30061178087905 11.8693 0.1144 4135 +4137 2 -135.00024802424363 -238.65932200818708 11.8319 0.1144 4136 +4138 2 -134.1630275249679 -239.28485518080498 11.8127 0.1144 4137 +4139 2 -133.86225046960453 -240.48912121907225 11.8096 0.1144 4138 +4140 2 -134.26776564973355 -241.74378646106788 11.8096 0.1144 4139 +4141 2 -133.60743316263782 -242.66342829614595 11.8096 0.1144 4140 +4142 2 -134.36306553647802 -229.80719541175603 12.4273 0.1144 4128 +4143 2 -134.62663899184037 -228.54832580788877 12.4381 0.1144 4142 +4144 2 -135.11142611836613 -227.80751508794 12.8732 0.1144 4143 +4145 2 -135.8121341661339 -226.67356882909155 12.1991 0.1144 4144 +4146 2 -136.67030115688164 -225.67257011138207 11.9124 0.1144 4145 +4147 2 -137.27164666757068 -224.97171572701848 11.5616 0.1144 4146 +4148 2 -137.4923816854385 -223.72856883573928 11.2115 0.1144 4147 +4149 2 -137.84651503904936 -222.40068248684562 10.6848 0.1144 4148 +4150 2 -134.42445714121763 -227.62407352040648 12.5052 0.1144 4143 +4151 2 -134.17689161273952 -226.3595043630117 12.558 0.1144 4150 +4152 2 -134.08621946529948 -225.0630679419192 12.5718 0.1144 4151 +4153 2 -133.69451489559873 -224.11049296860847 12.5387 0.1144 4152 +4154 2 -133.07521677060132 -223.7556104207183 12.4063 0.1144 4153 +4155 2 -132.34335182593628 -222.56623895006857 12.2373 0.1144 4154 +4156 2 -131.48332721980586 -221.4714614746153 12.0037 0.1144 4155 +4157 2 -130.48213171776533 -221.30481794529777 11.7972 0.1144 4156 +4158 2 -130.03927387114913 -219.64582793635384 11.2473 0.1144 4157 +4159 2 -26.33894315216684 -244.61157114114593 20.3308 0.1144 2141 +4160 2 -25.996896116506626 -245.96383637129253 20.1796 0.1144 4159 +4161 2 -25.549007621288116 -246.9996047403871 20.1195 0.1144 4160 +4162 2 -24.824734167845463 -247.5489189106005 20.0405 0.1144 4161 +4163 2 -23.810155138089375 -248.60120010293946 19.9417 0.1144 4162 +4164 2 -22.779569488653866 -248.56287682211627 19.7305 0.1144 4163 +4165 2 -21.729501286546952 -249.45720668199118 19.4738 0.1144 4164 +4166 2 -20.812397748017005 -249.81364369939314 19.2449 0.1144 4165 +4167 2 -20.193239995476254 -251.09089090535656 18.9684 0.1144 4166 +4168 2 -19.616866294571643 -252.28082141324336 18.7354 0.1144 4167 +4169 2 -18.811899362590776 -252.8686927710243 18.5525 0.1144 4168 +4170 2 -18.594413771840312 -254.05070559045214 18.4108 0.1144 4169 +4171 2 -18.52087111932163 -255.27088057563304 18.3689 0.1144 4170 +4172 2 -17.852280444153166 -255.77977756196384 19.1204 0.1144 4171 +4173 2 -17.190259975056875 -256.7294798142221 19.3827 0.1144 4172 +4174 2 -16.705218604548016 -257.7696812565525 19.4805 0.1144 4173 +4175 2 -15.880355342014028 -258.60652603559635 19.605 0.1144 4174 +4176 2 -14.880037767846659 -258.8357742143285 19.8352 0.1144 4175 +4177 2 -14.078693237496601 -259.41657438400347 20.2047 0.1144 4176 +4178 2 -13.142181463909019 -260.34320838182293 20.5109 0.1144 4177 +4179 2 -12.306590711655911 -260.9896208122962 20.7695 0.1144 4178 +4180 2 -11.378369794514242 -260.65320799757313 21.0099 0.1144 4179 +4181 2 -10.252822955672535 -261.6547212684 21.2154 0.1144 4180 +4182 2 -9.148910618437817 -260.5495608263017 21.3557 0.1144 4181 +4183 2 -8.095832823878254 -260.98888712960024 21.4537 0.1144 4182 +4184 2 -7.037845358309369 -259.60398095058366 21.5465 0.1144 4183 +4185 2 -5.979814071996049 -260.0322121858364 21.6666 0.1144 4184 +4186 2 -4.927464794853648 -258.728643526465 21.8051 0.1144 4185 +4187 2 -3.8475041616822168 -259.0478931483275 21.9252 0.1144 4186 +4188 2 -2.7447740397717553 -258.13893580298685 22.0397 0.1144 4187 +4189 2 -1.6412473006387316 -258.1975107064245 22.1533 0.1144 4188 +4190 2 -0.5346281116264748 -257.96136292355516 22.2688 0.1144 4189 +4191 2 0.5917354782933799 -258.1384649073772 22.388 0.1144 4190 +4192 2 1.5638116817035055 -258.5252295159259 22.6313 0.1144 4191 +4193 2 2.388698132939872 -259.41083206965504 22.9703 0.1144 4192 +4194 2 3.264573251342945 -259.7628115325714 23.2544 0.1144 4193 +4195 2 4.1108227872088605 -261.0635628601231 23.4765 0.1144 4194 +4196 2 4.805883077808744 -261.77684085749746 23.6409 0.1144 4195 +4197 2 5.609975521919985 -262.67440507810574 23.7864 0.1144 4196 +4198 2 6.675663951332162 -262.8640241055148 23.9095 0.1144 4197 +4199 2 6.853286703652913 -263.52355640591526 23.9914 0.1144 4198 +4200 2 6.890377758376296 -264.72922127579926 24.0444 0.1144 4199 +4201 2 7.365819670732037 -265.7351418858731 24.0709 0.1144 4200 +4202 2 7.778147434746764 -266.7666907157155 24.0733 0.1144 4201 +4203 2 8.349354165812088 -267.51508749700173 24.0548 0.1144 4202 +4204 2 9.372058243792218 -268.35746829560753 23.9801 0.1144 4203 +4205 2 9.91912934972008 -269.18625848535135 23.884 0.1144 4204 +4206 2 10.368620648125102 -270.1714440899413 23.8163 0.1144 4205 +4207 2 10.653168036982066 -271.33530374824574 23.7785 0.1144 4206 +4208 2 10.533406772650885 -272.5266375513424 23.7721 0.1144 4207 +4209 2 10.356166291458074 -273.8248610749927 23.7979 0.1144 4208 +4210 2 10.408674514929842 -275.043818532446 23.8549 0.1144 4209 +4211 2 10.678777321396396 -276.26412999942835 23.9391 0.1144 4210 +4212 2 10.614740484579912 -277.43548294008536 24.1014 0.1144 4211 +4213 2 10.533023258216666 -278.6277370855947 24.3093 0.1144 4212 +4214 2 10.706064055252732 -279.93392195898303 24.5211 0.1144 4213 +4215 2 11.268633955709689 -281.2610599947067 24.705 0.1144 4214 +4216 2 12.040507084529068 -282.1174026402158 24.8595 0.1144 4215 +4217 2 12.98661130418889 -282.66818805935577 25.033 0.1144 4216 +4218 2 13.722070142062876 -283.91301270793645 25.1879 0.1144 4217 +4219 2 14.20955425553877 -284.7958764596445 25.3505 0.1144 4218 +4220 2 14.160927777490144 -286.05292343015634 25.4579 0.1144 4219 +4221 2 14.064600564715306 -287.35044895763457 25.5043 0.1144 4220 +4222 2 13.97803466108153 -288.64718062124604 25.4935 0.1144 4221 +4223 2 13.408134821552174 -289.7432153570184 25.3783 0.1144 4222 +4224 2 13.22929133507251 -290.8653414469366 25.1821 0.1144 4223 +4225 2 13.335179341580314 -292.1739532389396 24.9503 0.1144 4224 +4226 2 13.443540291838438 -293.48610506484647 24.7114 0.1144 4225 +4227 2 13.5106249500056 -294.7997831085516 24.4995 0.1144 4226 +4228 2 13.57609022416407 -296.14047254242337 24.3502 0.1144 4227 +4229 2 13.79439256599261 -297.2586541068822 24.2584 0.1144 4228 +4230 2 14.01361251614837 -298.3619673681303 24.2093 0.1144 4229 +4231 2 14.231914857976868 -299.4625129782308 24.1875 0.1144 4230 +4232 2 14.380732590487085 -300.6140528798296 24.1817 0.1144 4231 +4233 2 14.49554522330262 -301.7660174013967 24.1816 0.1144 4232 +4234 2 14.552102451975514 -302.95460657774913 24.1816 0.1144 4233 +4235 2 -18.141236558876166 -256.07538495175135 18.1541 0.1144 4171 +4236 2 -17.381524361707324 -257.1391252532744 17.8856 0.1144 4235 +4237 2 -17.377503423256538 -258.4078734808139 17.6663 0.1144 4236 +4238 2 -17.01933133347262 -259.3752469252452 17.417 0.1144 4237 +4239 2 -16.94092943856917 -260.6225300358517 17.2518 0.1144 4238 +4240 2 -16.837535101839407 -261.8411509055793 17.1573 0.1144 4239 +4241 2 -16.223940924025424 -262.88480210383307 17.1452 0.1144 4240 +4242 2 -15.84313139990778 -264.1753041380373 17.1838 0.1144 4241 +4243 2 -15.918383619838593 -265.41771148675383 17.2552 0.1144 4242 +4244 2 -15.82707915409281 -266.69095251253566 17.3783 0.1144 4243 +4245 2 -15.437436198189488 -267.95811890677663 17.6177 0.1144 4244 +4246 2 -14.990330700232459 -269.02289534494855 17.8697 0.1144 4245 +4247 2 -14.636126488055407 -270.1107339704581 18.0965 0.1144 4246 +4248 2 -14.27881782284058 -271.1863492155869 18.3023 0.1144 4247 +4249 2 -13.796097908107996 -272.5129352957494 18.4885 0.1144 4248 +4250 2 -13.381455700397865 -273.79556588913704 18.7105 0.1144 4249 +4251 2 -13.021965642265748 -274.8118013010724 19.0918 0.1144 4250 +4252 2 -12.6202023185091 -275.81118691257143 19.4513 0.1144 4251 +4253 2 -12.20459492659365 -276.81448120954013 19.7022 0.1144 4252 +4254 2 -11.742926317816277 -277.4637315978701 19.8475 0.1144 4253 +4255 2 -11.293347580022846 -278.1279586375741 19.8873 0.1144 4254 +4256 2 -10.951381469856564 -279.4195515571158 19.7998 0.1144 4255 +4257 2 -10.603713122678165 -280.99163773439477 19.5775 0.1144 4256 +4258 2 -10.209116675021122 -282.5914175471642 19.3011 0.1144 4257 +4259 2 -9.732895318437187 -283.38826193030957 19.0338 0.1144 4258 +4260 2 -9.34486147751452 -284.14407101401764 18.7832 0.1144 4259 +4261 2 -8.945504586247864 -285.1911208461943 18.4788 0.1144 4260 +4262 2 -8.253182142481322 -286.7793216886714 18.0339 0.1144 4261 +4263 2 -7.430596016792833 -287.0162415257314 17.6021 0.1144 4262 +4264 2 -6.674966174441003 -288.0021288267601 17.2641 0.1144 4263 +4265 2 -5.983836952784472 -289.62054624225965 17.0017 0.1144 4264 +4266 2 -5.340371159004228 -289.9740923841287 16.803 0.1144 4265 +4267 2 -4.584677268066713 -291.05912698703617 16.6667 0.1144 4266 +4268 2 -3.809636135810372 -292.3717581909597 16.4914 0.1144 4267 +4269 2 -3.4967997063324106 -293.1955468847843 16.3158 0.1144 4268 +4270 2 -3.124057991833716 -294.05913273335494 16.1044 0.1144 4269 +4271 2 -2.2080587979809323 -295.21821490140223 15.8421 0.1144 4270 +4272 2 -1.3264209470133395 -295.63919592645306 15.6424 0.1144 4271 +4273 2 -0.5303380775430995 -296.58150730314276 15.5226 0.1144 4272 +4274 2 0.0815754264373183 -298.0929232454048 15.539 0.1144 4273 +4275 2 0.8437847524318016 -298.5003435255185 15.5644 0.1144 4274 +4276 2 1.6059235159461451 -299.6258236394395 15.5894 0.1144 4275 +4277 2 2.3697593320159953 -300.8744334795447 15.6008 0.1144 4276 +4278 2 3.1318980955303317 -301.2190827959301 15.5816 0.1144 4277 +4279 2 3.3368881724102124 -301.3671020377305 15.8182 0.1144 4278 +4280 2 4.216906343282979 -302.87168230358253 16.2964 0.1144 4279 +4281 2 5.096148622960932 -303.0859222408847 16.4946 0.1144 4280 +4282 2 5.976099488300854 -304.26604457527156 16.7207 0.1144 4281 +4283 2 6.9035132231057545 -304.65915457752055 17.0394 0.1144 4282 +4284 2 7.902723252163611 -304.5466049831316 17.3232 0.1144 4283 +4285 2 8.938380827797069 -305.1341115320294 17.5126 0.1144 4284 +4286 2 9.765114259275322 -306.0796781784812 17.6107 0.1144 4285 +4287 2 10.74591834223039 -306.41801099412066 17.617 0.1144 4286 +4288 2 11.747642174921822 -307.34679970589633 17.5078 0.1144 4287 +4289 2 12.552470444617185 -307.6609530174327 17.2981 0.1144 4288 +4290 2 12.9883532512929 -309.14085532453686 17.1244 0.1144 4289 +4291 2 13.083578220867864 -310.39551795843164 16.9927 0.1144 4290 +4292 2 13.582477373482348 -311.86772529818745 16.8996 0.1144 4291 +4293 2 14.069155300994296 -312.64939717102067 16.8399 0.1144 4292 +4294 2 14.55590408707247 -313.3760938982281 16.8048 0.1144 4293 +4295 2 15.023224504237461 -314.8916262316656 16.7779 0.1144 4294 +4296 2 15.437981889444586 -316.4209645438166 16.7413 0.1144 4295 +4297 2 15.824480232713611 -317.5471107263479 16.6939 0.1144 4296 +4298 2 16.119592654000847 -318.5228518600603 16.623 0.1144 4297 +4299 2 16.316107568203925 -319.5954804771214 16.5041 0.1144 4298 +4300 2 16.704974835012692 -320.5927870267936 16.3558 0.1144 4299 +4301 2 17.165779521034615 -322.1346469512735 16.2125 0.1144 4300 +4302 2 17.322695061846645 -323.51570092661234 16.0688 0.1144 4301 +4303 2 17.32501569079477 -324.79296552494355 15.9184 0.1144 4302 +4304 2 17.38728877644094 -326.132392593575 15.7273 0.1144 4303 +4305 2 17.411487327249773 -327.4133215374365 15.4486 0.1144 4304 +4306 2 17.34108023155624 -328.59031570336913 15.1157 0.1144 4305 +4307 2 17.3377289182612 -329.8543922384995 14.7749 0.1144 4306 +4308 2 17.854870967517385 -330.77800334714516 14.3586 0.1144 4307 +4309 2 18.86990433895236 -330.6874392412334 13.8881 0.1144 4308 +4310 2 19.817001424411146 -331.56138398553765 13.3286 0.1144 4309 +4311 2 20.644385300559236 -331.51502047605385 12.8042 0.1144 4310 +4312 2 21.367761575616193 -333.21219958046004 12.4146 0.1144 4311 +4313 2 21.980582823096462 -334.2412287917131 12.1558 0.1144 4312 +4314 2 22.27970694273484 -335.1396411860198 12.0129 0.1144 4313 +4315 2 22.33059903914515 -336.3373439882037 11.9647 0.1144 4314 +4316 2 22.291666564704727 -337.62236751578 12.0297 0.1144 4315 +4317 2 22.615944977157255 -338.4559275192331 12.1034 0.1144 4316 +4318 2 22.988663502953557 -340.0127351584396 12.1482 0.1144 4317 +4319 2 22.737720248086383 -340.965498176799 12.1651 0.1144 4318 +4320 2 22.782997344772603 -342.26787949867077 12.1238 0.1144 4319 +4321 2 23.253543206080053 -343.9274567362185 12.0278 0.1144 4320 +4322 2 23.56075526919286 -345.5077507388019 11.9405 0.1144 4321 +4323 2 23.661851837035215 -346.7712350022308 11.8096 0.1144 4322 +4324 2 13.369085788106524 -309.7316410964697 16.7661 0.1144 4290 +4325 2 14.303730649697066 -309.9308938449319 16.1659 0.1144 4324 +4326 2 15.275748472543775 -310.8570596949976 15.9398 0.1144 4325 +4327 2 16.302461490114297 -311.18587009402637 15.738 0.1144 4326 +4328 2 17.339667887276335 -311.94777719056276 15.5539 0.1144 4327 +4329 2 18.385812328606924 -312.2038416631504 15.3824 0.1144 4328 +4330 2 19.433566087018427 -313.0235490511157 15.1998 0.1144 4329 +4331 2 20.301254463171972 -313.5395114500835 14.9055 0.1144 4330 +4332 2 21.240887068519207 -314.1893744930129 14.5841 0.1144 4331 +4333 2 22.299036202019728 -314.69199488676344 14.2541 0.1144 4332 +4334 2 23.41487280411684 -314.5450318217399 13.9552 0.1144 4333 +4335 2 24.509484485683444 -313.9312103047688 13.7412 0.1144 4334 +4336 2 25.534151050044173 -312.36256701261743 13.6055 0.1144 4335 +4337 2 26.489834720543122 -312.0455675722682 13.5367 0.1144 4336 +4338 2 27.38630411448824 -311.06015304113566 13.5056 0.1144 4337 +4339 2 28.255054485174668 -310.21603788922624 13.4968 0.1144 4338 +4340 2 3.311244787727695 -301.42667393222706 15.525 0.1144 4278 +4341 2 3.9805465161480456 -303.0284888423694 15.4129 0.1144 4340 +4342 2 4.649001494807386 -303.9242591989382 15.2693 0.1144 4341 +4343 2 5.503980052176509 -304.4878785147862 15.1243 0.1144 4342 +4344 2 6.421117640609154 -305.79496302481346 14.985 0.1144 4343 +4345 2 7.14531342550503 -306.20392552892235 14.8055 0.1144 4344 +4346 2 7.653872827911044 -306.97847565071834 14.5957 0.1144 4345 +4347 2 8.135745992882583 -307.7869326817853 14.3904 0.1144 4346 +4348 2 8.619245351843382 -308.92584193331226 14.1808 0.1144 4347 +4349 2 9.169776308127396 -310.435355627788 13.9383 0.1144 4348 +4350 2 10.237874426976788 -310.20513798909474 13.5933 0.1144 4349 +4351 2 11.30182799879725 -310.76997160197885 13.1059 0.1144 4350 +4352 2 12.445641421169526 -310.20536181540814 12.6569 0.1144 4351 +4353 2 13.341781332703867 -311.05683970603405 12.9343 0.1144 4352 +4354 2 13.575785325518076 -312.18499809718423 12.8524 0.1144 4353 +4355 2 13.174329513604029 -313.1009891268917 12.8188 0.1144 4354 +4356 2 13.372979443319522 -314.3545564354785 12.7716 0.1144 4355 +4357 2 13.716618919152424 -315.53876317653186 12.7089 0.1144 4356 +4358 2 13.710011368759453 -316.7961624432013 12.6304 0.1144 4357 +4359 2 13.665508011425345 -318.087009204884 12.4982 0.1144 4358 +4360 2 13.38143344444645 -319.2694496276042 12.2758 0.1144 4359 +4361 2 13.011529626246144 -320.15642565611 12.0434 0.1144 4360 +4362 2 12.69435770307242 -321.1088114314056 11.8404 0.1144 4361 +4363 2 12.198980941328834 -322.29869175071366 11.6682 0.1144 4362 +4364 2 11.787827572773274 -323.8162969202822 11.4998 0.1144 4363 +4365 2 11.506934831292845 -325.2388127574068 11.2687 0.1144 4364 +4366 2 11.422740812059871 -326.54443040137676 11.0616 0.1144 4365 +4367 2 10.975183017386385 -327.2898103403724 10.9048 0.1144 4366 +4368 2 10.729871639151632 -328.29677768015176 10.7915 0.1144 4367 +4369 2 11.178620005905877 -329.84428235039917 10.7171 0.1144 4368 +4370 2 11.308751506881137 -331.22107259325793 10.6774 0.1144 4369 +4371 2 11.278760831742858 -332.46785917146894 10.6634 0.1144 4370 +4372 2 11.035163382971852 -333.47710628250263 10.6542 0.1144 4371 +4373 2 10.659685424930615 -334.3143022425867 10.642 0.1144 4372 +4374 2 10.249395683044433 -335.3623531290561 10.6254 0.1144 4373 +4375 2 10.658481126008432 -336.67347856278116 10.6018 0.1144 4374 +4376 2 10.535487311468188 -337.8107570486644 10.5673 0.1144 4375 +4377 2 10.230344763726109 -339.0150614078667 10.5195 0.1144 4376 +4378 2 10.010699700261114 -339.85966054343425 10.4572 0.1144 4377 +4379 2 9.69352777708744 -341.3977532694659 10.3809 0.1144 4378 +4380 2 9.77265137942753 -342.5511158222037 10.235 0.1144 4379 +4381 2 9.609970253921446 -343.93265683060497 10.0037 0.1144 4380 +4382 2 9.520070740729096 -345.28955205637175 9.7973 0.1144 4381 +4383 2 9.866983330568203 -346.12226872381996 9.628 0.1144 4382 +4384 2 10.189601997315265 -346.99177010661964 9.4947 0.1144 4383 +4385 2 10.484798304957508 -348.19140017038245 9.3954 0.1144 4384 +4386 2 10.50168530167322 -349.4802275422384 9.3276 0.1144 4385 +4387 2 10.902679248129445 -351.1263114873329 8.9978 0.1144 4386 +4388 2 10.414469514199055 -338.7211474386352 10.2728 0.1144 4377 +4389 2 11.148929888278346 -338.5923572373841 9.7365 0.1144 4388 +4390 2 11.973214833208424 -337.41277567665486 9.5051 0.1144 4389 +4391 2 13.031452345955266 -337.6336611680923 9.3101 0.1144 4390 +4392 2 13.56886725331129 -338.94451992571965 9.166 0.1144 4391 +4393 2 13.797700281581307 -339.95670769951056 9.0688 0.1144 4392 +4394 2 13.999107989885417 -340.9978788052244 8.9978 0.1144 4393 +4395 2 12.697597201463985 -310.4625075176913 12.1257 0.1144 4352 +4396 2 13.440873064021268 -311.824711112312 11.5277 0.1144 4395 +4397 2 13.739038015162436 -312.8746518102478 10.9732 0.1144 4396 +4398 2 14.470078628455553 -313.0301210513521 10.3469 0.1144 4397 +4399 2 15.033522020409322 -314.3611974319079 9.8283 0.1144 4398 +4400 2 15.221848133888798 -315.75854435122375 9.4074 0.1144 4399 +4401 2 15.713245443026878 -316.9973741299665 8.9916 0.1144 4400 +4402 2 16.635861925558665 -316.93226012749636 8.5879 0.1144 4401 +4403 2 17.745063718296585 -317.7816609539352 8.2429 0.1144 4402 +4404 2 18.794671652087175 -316.90154200329874 7.8329 0.1144 4403 +4405 2 19.769210915376156 -317.02454229641455 7.4492 0.1144 4404 +4406 2 20.556129709030564 -315.42626326024225 7.1225 0.1144 4405 +4407 2 21.612171950283866 -315.8594454039041 6.7721 0.1144 4406 +4408 2 22.74847020530475 -314.90210298713134 6.4677 0.1144 4407 +4409 2 23.74573889172207 -315.33421786482967 6.1029 0.1144 4408 +4410 2 24.415515663889828 -313.92590754725086 5.6554 0.1144 4409 +4411 2 25.13922535954756 -312.16432696913415 5.2924 0.1144 4410 +4412 2 25.790061858297626 -310.6302463220443 4.9949 0.1144 4411 +4413 2 26.30730391831373 -309.9600690888866 4.7034 0.1144 4412 +4414 2 26.738197434456808 -309.25815139220157 4.3977 0.1144 4413 +4415 2 27.7466441971385 -308.0687360573421 4.188 0.1144 4414 +4416 2 28.818506523821647 -308.25437944826314 4.0476 0.1144 4415 +4417 2 29.41560799271805 -307.15920797923167 3.9431 0.1144 4416 +4418 2 29.16578385795905 -306.12115704873196 3.8697 0.1144 4417 +4419 2 29.084929153160786 -304.97216656159173 3.8217 0.1144 4418 +4420 2 29.404631756876327 -303.53133170135766 3.7843 0.1144 4419 +4421 2 29.939662371855256 -302.0965317845238 3.701 0.1144 4420 +4422 2 30.40348713988515 -301.25082556063234 3.5886 0.1144 4421 +4423 2 30.628432110937844 -300.17622408651744 3.4981 0.1144 4422 +4424 2 30.483751415189353 -298.854613780657 3.4276 0.1144 4423 +4425 2 30.33574036682954 -297.5315835674163 3.3769 0.1144 4424 +4426 2 30.71618543658556 -296.6236725119683 3.3451 0.1144 4425 +4427 2 30.621851831788526 -295.44877030272494 3.3316 0.1144 4426 +4428 2 30.010002080307643 -294.02521261438227 3.2696 0.1144 4427 +4429 2 30.171314108554206 -293.0041107376083 3.2357 0.1144 4428 +4430 2 30.63257790127316 -292.17489283506916 3.2684 0.1144 4429 +4431 2 30.89648451862108 -291.1034354276513 3.3117 0.1144 4430 +4432 2 31.041258654720153 -289.932761469171 3.3558 0.1144 4431 +4433 2 30.666957755678965 -288.5675694544283 3.4004 0.1144 4432 +4434 2 29.915282669159296 -287.3236574838588 3.4462 0.1144 4433 +4435 2 29.041749436474113 -287.07628131920717 3.5162 0.1144 4434 +4436 2 28.991701331064068 -285.83140929716143 3.5719 0.1144 4435 +4437 2 28.927872613908757 -284.54849646893314 3.5996 0.1144 4436 +4438 2 29.00871259364147 -283.3341151536531 3.6455 0.1144 4437 +4439 2 28.835752722099425 -282.0266357521704 3.7154 0.1144 4438 +4440 2 28.294983573142883 -280.66899540109455 3.821 0.1144 4439 +4441 2 28.598493615101567 -279.6844700982426 4.0076 0.1144 4440 +4442 2 29.26796265981475 -278.75514041021927 4.2356 0.1144 4441 +4443 2 29.878494658559365 -277.44059795194636 4.529 0.1144 4442 +4444 2 30.228977119927382 -276.2498403469291 4.9281 0.1144 4443 +4445 2 30.584331447268433 -275.3343971270131 5.3148 0.1144 4444 +4446 2 30.394437078691563 -274.09728985478034 5.7194 0.1144 4445 +4447 2 29.73498183822624 -273.1329443402511 6.2033 0.1144 4446 +4448 2 29.13067143917199 -272.6496430884595 6.801 0.1144 4447 +4449 2 29.6659765259753 -271.35651013645725 7.3375 0.1144 4448 +4450 2 30.384911659875854 -270.40041477041007 7.815 0.1144 4449 +4451 2 31.236740157115722 -269.901669302614 8.1885 0.1144 4450 +4452 2 32.12186537048849 -268.7054657622985 8.4573 0.1144 4451 +4453 2 33.01748090860594 -268.19640022408794 8.6408 0.1144 4452 +4454 2 33.723438857964354 -267.14646857178883 8.8029 0.1144 4453 +4455 2 33.92181256697918 -265.9256261553681 9.0217 0.1144 4454 +4456 2 34.73074509203323 -265.104794448932 9.2363 0.1144 4455 +4457 2 34.86428646992326 -263.9120536900155 9.4079 0.1144 4456 +4458 2 35.13553889336736 -262.81367297522127 9.5438 0.1144 4457 +4459 2 34.813703223881824 -261.52682289402986 9.6502 0.1144 4458 +4460 2 34.39647940881879 -260.2561688178547 9.7367 0.1144 4459 +4461 2 34.28498045380665 -259.08107057553576 9.8198 0.1144 4460 +4462 2 34.70907725308773 -257.9819365191988 9.9238 0.1144 4461 +4463 2 35.08707632292949 -256.9562135312629 10.0596 0.1144 4462 +4464 2 35.036238410277385 -255.7302684691776 10.2493 0.1144 4463 +4465 2 34.889165658801645 -254.96485543128875 10.5723 0.1144 4464 +4466 2 34.04757324232341 -255.5979300776889 11.0034 0.1144 4465 +4467 2 33.02186282883784 -256.12791811408346 11.4755 0.1144 4466 +4468 2 32.05154561157984 -255.32059415920054 11.8882 0.1144 4467 +4469 2 31.17831379455511 -254.9355951862338 12.3908 0.1144 4468 +4470 2 30.40156504462914 -253.7529066212291 12.7824 0.1144 4469 +4471 2 29.807402788761625 -252.7035776631556 13.0801 0.1144 4470 +4472 2 29.678966079767395 -251.57187644178475 13.4379 0.1144 4471 +4473 2 29.2553583858663 -250.7409893699741 13.7194 0.1144 4472 +4474 2 29.381611398365592 -249.4281983466754 13.9262 0.1144 4473 +4475 2 29.323481863375566 -248.27955346457162 14.1166 0.1144 4474 +4476 2 29.084064167006176 -247.051812971882 14.2316 0.1144 4475 +4477 2 29.16016313669803 -245.81810427869652 14.278 0.1144 4476 +4478 2 29.229031477790723 -244.6101611407389 14.2244 0.1144 4477 +4479 2 29.300404053775587 -243.451611877218 14.0386 0.1144 4478 +4480 2 29.289108073809103 -242.20848747278322 13.8891 0.1144 4479 +4481 2 29.129759654857462 -240.9624989418902 13.7803 0.1144 4480 +4482 2 28.856610132144695 -239.77176749289012 13.7278 0.1144 4481 +4483 2 28.207421967496693 -238.4258356461932 13.7317 0.1144 4482 +4484 2 27.751466160845723 -237.33526898657664 13.7895 0.1144 4483 +4485 2 27.656942266665496 -236.09648646990087 13.889 0.1144 4484 +4486 2 27.765444529238295 -234.93684986742278 14.0588 0.1144 4485 +4487 2 28.164684198045578 -233.87689418901633 14.3649 0.1144 4486 +4488 2 27.939313778892554 -232.76895332704805 14.6612 0.1144 4487 +4489 2 27.497796040737487 -231.8193298800337 14.8898 0.1144 4488 +4490 2 27.328851420579937 -230.78754155977356 15.0545 0.1144 4489 +4491 2 27.033692123701442 -229.61574678455457 15.1596 0.1144 4490 +4492 2 26.975674011074723 -228.42925407666996 15.2142 0.1144 4491 +4493 2 26.519820260146044 -227.2366238720768 15.2849 0.1144 4492 +4494 2 25.58676734054177 -226.4628677811317 15.2859 0.1144 4493 +4495 2 24.5712737573053 -226.8501490951835 15.2592 0.1144 4494 +4496 2 23.71305939277988 -225.45977825276765 15.2327 0.1144 4495 +4497 2 23.21822967530809 -224.39635080464305 15.2069 0.1144 4496 +4498 2 23.423131941154566 -223.19664190771653 15.181 0.1144 4497 +4499 2 23.66743471864036 -221.96070827905092 15.1545 0.1144 4498 +4500 2 23.007291026368556 -221.31300645453007 15.1368 0.1144 4499 +4501 2 22.181286408393564 -220.68589396442928 15.1209 0.1144 4500 +4502 2 21.732544353433468 -219.07993055055908 15.1054 0.1144 4501 +4503 2 21.540602963433845 -218.57390066570179 15.1838 0.1144 4502 +4504 2 21.14117451331419 -217.46466962933948 15.2694 0.1144 4503 +4505 2 20.847675258227348 -216.58507103497794 15.3053 0.1144 4504 +4506 2 20.395764701643806 -215.4856994154734 15.3539 0.1144 4505 +4507 2 19.352374984054936 -214.82219139346589 15.4152 0.1144 4506 +4508 2 18.320061084907806 -214.59492751072145 15.489 0.1144 4507 +4509 2 17.29666599846074 -213.9143759081187 15.6724 0.1144 4508 +4510 2 16.229469367831932 -214.41485218535524 15.8873 0.1144 4509 +4511 2 15.08737718309034 -214.35236172054013 16.0556 0.1144 4510 +4512 2 14.016382036109867 -214.82515571723673 16.1792 0.1144 4511 +4513 2 12.902239929907763 -215.13469747270585 16.3086 0.1144 4512 +4514 2 21.092201619431584 -219.34908231385026 15.0434 0.1144 4502 +4515 2 20.10530550455748 -219.23740289688288 14.9787 0.1144 4514 +4516 2 19.052048666971615 -218.5154354270678 14.9498 0.1144 4515 +4517 2 17.958789003655937 -218.91060582182496 14.9542 0.1144 4516 +4518 2 16.974639919199934 -219.3707103111829 15.0453 0.1144 4517 +4519 2 15.890749156943105 -219.52531545652346 15.2296 0.1144 4518 +4520 2 14.85037801329127 -219.02257618861628 15.3987 0.1144 4519 +4521 2 13.785800682021817 -218.5122323914129 15.5299 0.1144 4520 +4522 2 12.680197547510907 -218.3209608866453 15.6165 0.1144 4521 +4523 2 11.580246719574085 -217.93664665615927 15.608 0.1144 4522 +4524 2 10.88441073987967 -217.0979211434061 15.589 0.1144 4523 +4525 2 10.003646878595253 -216.19380258475388 15.632 0.1144 4524 +4526 2 9.750506307272135 -214.93925327318163 15.7461 0.1144 4525 +4527 2 -17.402332260941712 -240.92699165523487 20.0967 0.1144 2132 +4528 2 -17.321279799496136 -239.60703683202996 19.6333 0.1144 4527 +4529 2 -17.43686812140625 -238.4886083053762 19.4292 0.1144 4528 +4530 2 -17.35015704159249 -237.18066112886953 19.2209 0.1144 4529 +4531 2 -17.801145238342336 -236.20678144611344 19.0332 0.1144 4530 +4532 2 -18.42840129737133 -234.98679583485665 18.8119 0.1144 4531 +4533 2 -18.702495668333498 -233.74317572216825 18.6117 0.1144 4532 +4534 2 -18.924047141193306 -232.50591501479494 18.4524 0.1144 4533 +4535 2 -19.572243379900268 -231.76126036922648 18.304 0.1144 4534 +4536 2 -20.10335553601249 -230.6892904440263 18.1081 0.1144 4535 +4537 2 -20.442962883552525 -229.33848442095706 17.8823 0.1144 4536 +4538 2 -21.138930419465815 -228.1957234755946 17.7112 0.1144 4537 +4539 2 -21.82920963441409 -227.54234278906694 17.5927 0.1144 4538 +4540 2 -22.539750348075476 -226.3133848456779 17.5186 0.1144 4539 +4541 2 -23.104010491107392 -225.08190669124517 17.4321 0.1144 4540 +4542 2 -23.88392418962348 -224.59879392781596 17.4149 0.1144 4541 +4543 2 -24.61134571474792 -223.36363228131427 17.5351 0.1144 4542 +4544 2 -24.565890995269974 -222.1867168643273 17.6442 0.1144 4543 +4545 2 -25.287295045660336 -221.16642535551503 16.3473 0.1144 4544 +4546 2 -24.65616596960964 -221.39022645245103 14.9135 0.1144 4545 +4547 2 -23.56454236511067 -221.35403201749753 14.6469 0.1144 4546 +4548 2 -22.47234342782813 -220.98955271528303 14.5595 0.1144 4547 +4549 2 -21.35959716062132 -220.6308958508422 14.4215 0.1144 4548 +4550 2 -20.331241570339657 -221.46753150802516 14.2899 0.1144 4549 +4551 2 -19.304450884222405 -221.7062153811213 14.191 0.1144 4550 +4552 2 -18.23663448884948 -222.45297104751404 14.1235 0.1144 4551 +4553 2 -17.098621806178393 -222.1444104747781 14.0844 0.1144 4552 +4554 2 -15.959816557504475 -222.2002331143633 14.0637 0.1144 4553 +4555 2 -14.86143398466498 -222.45516948064073 14.0592 0.1144 4554 +4556 2 -13.932244128184415 -223.24348532507904 14.0591 0.1144 4555 +4557 2 -13.085285710570416 -224.0603655598087 14.0591 0.1144 4556 +4558 2 -12.2245711623725 -224.88424867353694 14.0591 0.1144 4557 +4559 2 -11.306660939692193 -224.6262326356374 14.0591 0.1144 4558 +4560 2 -26.500901100891653 -221.4383705595946 15.8827 0.1144 4545 +4561 2 -27.361863820849795 -220.47105416623066 15.6329 0.1144 4560 +4562 2 -28.194194820442572 -220.71527036595 15.3208 0.1144 4561 +4563 2 -29.197769515050943 -220.5993227297143 15.055 0.1144 4562 +4564 2 -30.314638902972277 -221.48982352322074 14.8281 0.1144 4563 +4565 2 -31.15965579488938 -220.0346148749494 14.4883 0.1144 4564 +4566 2 -32.21673152225364 -220.93533033443617 14.1353 0.1144 4565 +4567 2 -33.233597938839274 -220.50999253300495 13.779 0.1144 4566 +4568 2 -34.3111022655975 -221.53996498330088 13.4034 0.1144 4567 +4569 2 -35.24414106705429 -220.78211744908435 13.1059 0.1144 4568 +4570 2 -36.06848573722336 -219.91133698704073 12.8784 0.1144 4569 +4571 2 -36.96377184944492 -219.22678014180093 12.6639 0.1144 4570 +4572 2 -37.75099710205419 -218.24716542806595 12.4678 0.1144 4571 +4573 2 -38.480878745240396 -217.3853686970412 12.3101 0.1144 4572 +4574 2 -39.10485537846903 -216.23205554608796 12.1778 0.1144 4573 +4575 2 -40.06790771512478 -214.79905998489423 12.0102 0.1144 4574 +4576 2 -40.386412829898646 -213.27746852981116 11.8357 0.1144 4575 +4577 2 -40.56506181667825 -212.15482221294184 11.6974 0.1144 4576 +4578 2 -41.140676005109974 -211.72479044059165 11.2473 0.1144 4577 +4579 2 -24.7752517208527 -221.6531327493268 17.9221 0.1144 4544 +4580 2 -25.353861994805712 -220.63418394458114 18.2307 0.1144 4579 +4581 2 -25.982008920426257 -220.09156779612383 18.5061 0.1144 4580 +4582 2 -26.86275916174951 -218.78387080270966 18.7993 0.1144 4581 +4583 2 -26.570403307066076 -218.0389511934327 19.0211 0.1144 4582 +4584 2 -26.313615693853745 -217.17650202544527 19.1936 0.1144 4583 +4585 2 -26.938509935409613 -215.53351816091077 19.3206 0.1144 4584 +4586 2 -27.29992789927758 -214.31107038606535 19.4607 0.1144 4585 +4587 2 -27.53345406562436 -213.33062000391698 19.6469 0.1144 4586 +4588 2 -28.069492769654207 -212.67434817869733 19.8094 0.1144 4587 +4589 2 -28.272374685787074 -211.51869420111342 19.9983 0.1144 4588 +4590 2 -28.557586139274928 -210.2311636733126 20.2543 0.1144 4589 +4591 2 -29.09838578510083 -208.66835244834937 20.4985 0.1144 4590 +4592 2 -29.319913571071805 -207.3966562140837 20.6867 0.1144 4591 +4593 2 -29.528589214825047 -206.3018178953005 20.829 0.1144 4592 +4594 2 -29.81721640183855 -205.39367475730404 20.9397 0.1144 4593 +4595 2 -29.966783081707558 -204.31986609021476 21.0651 0.1144 4594 +4596 2 -29.89716905020323 -202.98996803296222 21.1909 0.1144 4595 +4597 2 -29.73372230253041 -201.5565519201217 21.3001 0.1144 4596 +4598 2 -29.297495068468148 -200.09056154666763 21.3952 0.1144 4597 +4599 2 -28.618254351600058 -199.61980886308797 21.479 0.1144 4598 +4600 2 -27.98200109752587 -198.66295353744627 21.5546 0.1144 4599 +4601 2 -27.60161346847533 -197.06605820668162 21.6549 0.1144 4600 +4602 2 -27.947486462509666 -196.313002130943 21.7948 0.1144 4601 +4603 2 -28.610367005241976 -195.30371591033105 21.9286 0.1144 4602 +4604 2 -28.4702628185173 -194.25518471438676 22.0501 0.1144 4603 +4605 2 -28.35454730243999 -193.017193104669 22.1994 0.1144 4604 +4606 2 -28.447569250682896 -191.81048041356377 22.3755 0.1144 4605 +4607 2 -28.677252581747254 -190.34109618953119 22.5251 0.1144 4606 +4608 2 -28.923047845160674 -188.8564626607414 22.6569 0.1144 4607 +4609 2 -27.741718456856084 -188.1737417386871 22.8683 0.1144 4608 +4610 2 -26.70888272744086 -187.8342336850131 22.9416 0.1144 4609 +4611 2 -25.802701954792816 -187.00958985660685 22.9997 0.1144 4610 +4612 2 -25.42940333119482 -185.522015021301 23.0441 0.1144 4611 +4613 2 -25.19880980870179 -184.40888621616995 23.0767 0.1144 4612 +4614 2 -24.63863121270274 -183.77224206549002 23.1001 0.1144 4613 +4615 2 -23.87355047739866 -182.78400596876855 23.1178 0.1144 4614 +4616 2 -23.082542316846414 -181.5827343151874 23.1427 0.1144 4615 +4617 2 -22.259857120255937 -181.17837595758863 23.1757 0.1144 4616 +4618 2 -21.30086658193418 -179.96558895773632 23.2171 0.1144 4617 +4619 2 -20.27136120513032 -179.96935762516847 23.2879 0.1144 4618 +4620 2 -19.32059677438206 -178.7579490275217 23.4045 0.1144 4619 +4621 2 -18.40057864957005 -178.61086474974047 23.5242 0.1144 4620 +4622 2 -17.329457759978403 -177.69118915856237 23.6309 0.1144 4621 +4623 2 -16.213662219864894 -177.89761022636353 23.7284 0.1144 4622 +4624 2 -15.127941908975828 -177.14851556538326 23.8204 0.1144 4623 +4625 2 -14.126824075481967 -176.8546109438616 23.9117 0.1144 4624 +4626 2 -13.148360553230166 -175.9483321188997 24.0722 0.1144 4625 +4627 2 -12.251927967948571 -175.48991246768526 24.2576 0.1144 4626 +4628 2 -11.36198111512702 -173.73556397030669 24.4467 0.1144 4627 +4629 2 -10.289264730515841 -174.3842568953439 24.6415 0.1144 4628 +4630 2 -9.225476525245742 -173.0395637935605 24.9071 0.1144 4629 +4631 2 -8.504711786198007 -172.97357160401907 25.2885 0.1144 4630 +4632 2 -7.526159828184991 -171.85106805708025 25.7207 0.1144 4631 +4633 2 -6.797053987123089 -172.2068343472126 26.0849 0.1144 4632 +4634 2 -5.66261953273748 -172.31700780644232 26.3839 0.1144 4633 +4635 2 -4.521865746285792 -172.72106547798322 26.6183 0.1144 4634 +4636 2 -3.389850846164772 -172.31277016466254 26.8172 0.1144 4635 +4637 2 -2.304767801655971 -173.18872253009064 27.0833 0.1144 4636 +4638 2 -1.2010142605623235 -172.1769232385499 27.3268 0.1144 4637 +4639 2 -0.06764358705670048 -172.93481003900774 27.5347 0.1144 4638 +4640 2 0.9203843145170589 -172.88675731737754 27.7187 0.1144 4639 +4641 2 1.9906233190014992 -173.89247894638874 27.8922 0.1144 4640 +4642 2 2.775294204180101 -174.08349509429954 28.1168 0.1144 4641 +4643 2 3.3476390337391826 -175.47014282460736 28.3214 0.1144 4642 +4644 2 4.047585012373486 -176.74476891571467 28.5233 0.1144 4643 +4645 2 4.43602512091064 -177.43759452055485 28.9386 0.1144 4644 +4646 2 4.047502376708252 -178.79585955721222 29.2706 0.1144 4645 +4647 2 3.72219533838277 -180.06209654868996 29.517 0.1144 4646 +4648 2 3.3135320865719393 -180.83564799288735 29.6859 0.1144 4647 +4649 2 2.803588957060748 -181.70296285394707 29.7965 0.1144 4648 +4650 2 2.432146384259538 -183.23644583472458 29.8589 0.1144 4649 +4651 2 2.155374004732791 -184.62280191514617 29.8827 0.1144 4650 +4652 2 1.8397609700155004 -185.96208277629484 29.9127 0.1144 4651 +4653 2 1.552539031641539 -187.0320670190846 30.0107 0.1144 4652 +4654 2 1.2709379065993598 -187.94791922203152 30.1188 0.1144 4653 +4655 2 1.1107302230300116 -189.10631689559656 30.2324 0.1144 4654 +4656 2 1.0694226072415391 -190.3351430653943 30.3296 0.1144 4655 +4657 2 1.1235739016108859 -191.60295609790683 30.4125 0.1144 4656 +4658 2 1.501974234477721 -193.0374002480718 30.483 0.1144 4657 +4659 2 2.2067688903825955 -194.1050857948337 30.5435 0.1144 4658 +4660 2 2.9180384175473266 -194.63190378780172 30.6561 0.1144 4659 +4661 2 3.4984946753693733 -195.97299413477708 30.7748 0.1144 4660 +4662 2 4.419556024578384 -196.71982650643434 30.8764 0.1144 4661 +4663 2 5.524274806392214 -196.94640086095643 30.9635 0.1144 4662 +4664 2 6.326761486455798 -197.86707748277092 31.0377 0.1144 4663 +4665 2 6.537805461576479 -199.00513109007267 31.1013 0.1144 4664 +4666 2 7.074515740504491 -199.93157418224973 31.2068 0.1144 4665 +4667 2 8.089216259551687 -200.79952791505525 31.3278 0.1144 4666 +4668 2 9.124030638457382 -201.53759593916865 31.4308 0.1144 4667 +4669 2 9.954050507816868 -202.172836857773 31.5188 0.1144 4668 +4670 2 10.388168956404265 -203.44909383118522 31.5988 0.1144 4669 +4671 2 10.676087261669647 -204.72414306211624 31.6767 0.1144 4670 +4672 2 11.11267569314627 -205.84128068155673 31.7568 0.1144 4671 +4673 2 11.389992453403988 -206.9747892073488 31.8517 0.1144 4672 +4674 2 11.76846009180376 -208.02724412335886 31.9827 0.1144 4673 +4675 2 12.505271446115074 -209.00888417646158 32.2759 0.1144 4674 +4676 2 12.86403999891087 -210.06272900559256 32.5396 0.1144 4675 +4677 2 12.35725806285614 -211.09053201382824 32.8084 0.1144 4676 +4678 2 12.42274297268371 -212.31656490909154 33.0691 0.1144 4677 +4679 2 12.920612892507247 -213.37351805672915 33.32 0.1144 4678 +4680 2 13.90191493578525 -213.74428846597957 33.5482 0.1144 4679 +4681 2 14.897102405291704 -214.27947310844564 33.7142 0.1144 4680 +4682 2 15.64629092809994 -215.07371121522965 33.8568 0.1144 4681 +4683 2 15.880674207221638 -216.35578314059194 33.9864 0.1144 4682 +4684 2 15.437124853952108 -217.38096416987185 34.1188 0.1144 4683 +4685 2 15.585719243549226 -218.51531286192585 34.2706 0.1144 4684 +4686 2 16.618841885320748 -219.1894287127111 34.4602 0.1144 4685 +4687 2 17.648299446675356 -218.7340368044691 34.8589 0.1144 4686 +4688 2 17.67434536288273 -219.25781717962394 35.25 0.1144 4687 +4689 2 18.398372082609505 -220.43039762389765 35.6989 0.1144 4688 +4690 2 19.327209394518274 -220.61093246057115 36.2807 0.1144 4689 +4691 2 20.15693509986938 -221.24447344654777 37.0381 0.1144 4690 +4692 2 20.02385200184819 -221.40106431777815 38.2407 0.1144 4691 +4693 2 19.942761735366286 -222.46615370693354 38.7422 0.1144 4692 +4694 2 20.025148384784895 -223.78169735696315 38.962 0.1144 4693 +4695 2 20.19005356848267 -225.0147060546416 39.305 0.1144 4694 +4696 2 20.92556333316768 -225.767395369015 39.6382 0.1144 4695 +4697 2 21.352261361959055 -226.6387875255351 40.0862 0.1144 4696 +4698 2 21.407303320819622 -227.86382894685113 40.542 0.1144 4697 +4699 2 21.095618098098456 -229.05306153373473 40.9917 0.1144 4698 +4700 2 21.108513032132024 -230.27520219909053 41.4277 0.1144 4699 +4701 2 20.883551184171086 -231.68108324260106 41.8474 0.1144 4700 +4702 2 20.69161553775254 -233.04348128153464 42.2912 0.1144 4701 +4703 2 20.706930026050777 -234.25304253633624 42.6614 0.1144 4702 +4704 2 20.795838920506917 -235.3754392081546 42.9436 0.1144 4703 +4705 2 21.214611557098518 -236.23803995517926 43.1326 0.1144 4704 +4706 2 21.880714287026084 -237.4919361529184 43.2482 0.1144 4705 +4707 2 22.676783536535247 -238.56104849791242 43.3101 0.1144 4706 +4708 2 23.260415105961314 -239.13278778432453 43.3384 0.1144 4707 +4709 2 23.433411786166836 -240.34261124719646 43.3583 0.1144 4708 +4710 2 23.354970930757112 -241.57738946685237 43.3807 0.1144 4709 +4711 2 23.458395764356254 -242.82708825276592 43.4084 0.1144 4710 +4712 2 23.61852037058883 -244.0820278508673 43.4482 0.1144 4711 +4713 2 23.471104131584646 -245.25541886747538 43.5263 0.1144 4712 +4714 2 22.919084337626195 -246.4754670205789 43.6251 0.1144 4713 +4715 2 22.332259865889515 -247.91012644788833 43.6974 0.1144 4714 +4716 2 21.528843743884778 -248.24422715653742 43.7433 0.1144 4715 +4717 2 20.502527002559916 -249.15006667408323 43.7629 0.1144 4716 +4718 2 19.514416850477556 -249.46638967328613 43.7559 0.1144 4717 +4719 2 18.517368452126448 -250.33361253747506 43.7214 0.1144 4718 +4720 2 17.590102323620567 -250.86659385253284 43.6638 0.1144 4719 +4721 2 16.6733505028342 -251.66739650856118 43.5854 0.1144 4720 +4722 2 15.789979580621992 -252.6395738408375 43.4826 0.1144 4721 +4723 2 15.435292574859062 -253.49800580702254 43.3194 0.1144 4722 +4724 2 15.497474668083548 -254.74714738546834 43.0777 0.1144 4723 +4725 2 15.589632693570959 -255.99664205161287 42.7784 0.1144 4724 +4726 2 15.6810148278635 -257.3250875332127 42.4432 0.1144 4725 +4727 2 15.772326103589819 -258.66702719046503 42.0941 0.1144 4726 +4728 2 15.863634122368971 -259.8820166601862 41.7528 0.1144 4727 +4729 2 15.89188848835941 -261.1184289523452 41.4543 0.1144 4728 +4730 2 15.84491899725554 -262.3812243219686 41.2236 0.1144 4729 +4731 2 15.777724520015884 -263.6496443381425 41.0572 0.1144 4730 +4732 2 15.756708899809901 -264.90939124667534 40.973 0.1144 4731 +4733 2 15.93051226416582 -266.07922457697526 40.9906 0.1144 4732 +4734 2 16.262014993423474 -267.16619404172883 41.071 0.1144 4733 +4735 2 16.590278658577606 -268.226740939311 41.1634 0.1144 4734 +4736 2 16.806171809155384 -269.25127028382065 41.2244 0.1144 4735 +4737 2 16.96629967233521 -270.54765970706234 41.2311 0.1144 4736 +4738 2 17.20650717594663 -271.8592956231662 41.1732 0.1144 4737 +4739 2 18.02079208217534 -272.8837207585427 41.0332 0.1144 4738 +4740 2 19.088584790659468 -272.89286902799677 40.8215 0.1144 4739 +4741 2 20.066827696203298 -273.93376572681467 40.5076 0.1144 4740 +4742 2 20.93371619818704 -274.0406169190056 40.0747 0.1144 4741 +4743 2 21.929740350526746 -275.2485326324139 39.6256 0.1144 4742 +4744 2 23.020011495103297 -274.89565283510365 39.2361 0.1144 4743 +4745 2 24.137669952509018 -275.84778927758686 38.9337 0.1144 4744 +4746 2 25.241643339997342 -275.1768305679223 38.6938 0.1144 4745 +4747 2 26.317439607414382 -275.41380530172995 38.4894 0.1144 4746 +4748 2 27.399598566926308 -275.3082661153548 38.3303 0.1144 4747 +4749 2 27.709000839194328 -274.12878082199137 38.2108 0.1144 4748 +4750 2 27.211900296671207 -273.39927570342854 38.061 0.1144 4749 +4751 2 26.49974345594827 -272.3227372519006 37.9288 0.1144 4750 +4752 2 25.92414238929127 -270.87982844071155 37.8361 0.1144 4751 +4753 2 25.462544639080075 -269.9017992622559 37.7768 0.1144 4752 +4754 2 25.21180644902714 -268.9624090537395 37.7378 0.1144 4753 +4755 2 25.342209822163106 -267.6153019866568 37.7846 0.1144 4754 +4756 2 25.658609111089174 -266.2137901336505 37.8067 0.1144 4755 +4757 2 25.625536066511046 -264.9816781422933 37.7717 0.1144 4756 +4758 2 25.579449028727282 -263.75086834722845 37.6841 0.1144 4757 +4759 2 25.534141435171712 -262.5194234604257 37.553 0.1144 4758 +4760 2 25.488124959868056 -261.30893978194473 37.3884 0.1144 4759 +4761 2 25.44203792208429 -260.1201208223116 37.1994 0.1144 4760 +4762 2 25.397577078289768 -258.92990131041455 37.0062 0.1144 4761 +4763 2 25.351490040506004 -257.7417204303564 36.8144 0.1144 4762 +4764 2 25.3046268154413 -256.5555398235712 36.6243 0.1144 4763 +4765 2 25.260165971646778 -255.36604661745935 36.4367 0.1144 4764 +4766 2 25.21407893386301 -254.18388087954162 36.2524 0.1144 4765 +4767 2 25.168842198873623 -252.99688810248733 36.0727 0.1144 4766 +4768 2 25.122825723569967 -251.80990523816445 35.8996 0.1144 4767 +4769 2 25.076667827220017 -250.62329330774344 35.7367 0.1144 4768 +4770 2 25.03143109223063 -249.436990606547 35.5872 0.1144 4769 +4771 2 24.985414616926935 -248.25070044056463 35.4539 0.1144 4770 +4772 2 24.939327579143168 -247.06382543407454 35.3391 0.1144 4771 +4773 2 24.887507807477867 -245.88206914357136 35.2654 0.1144 4772 +4774 2 24.95479683017254 -244.58790979696712 35.292 0.1144 4773 +4775 2 25.344071778680924 -243.0049268149736 35.3276 0.1144 4774 +4776 2 25.889552450693504 -241.59298569356127 35.3651 0.1144 4775 +4777 2 26.41896125596776 -240.65909512626754 35.429 0.1144 4776 +4778 2 20.70243458072285 -221.43783156946955 37.6354 0.1144 4691 +4779 2 21.36735559351265 -221.84863710600405 38.0509 0.1144 4778 +4780 2 21.489358291130223 -223.02525220339442 38.4398 0.1144 4779 +4781 2 21.751302295556094 -224.23326124761638 38.7923 0.1144 4780 +4782 2 22.32449061792905 -225.74843322651515 39.0726 0.1144 4781 +4783 2 23.05350833835976 -226.35164258413403 39.354 0.1144 4782 +4784 2 23.427886609861595 -227.35312376836328 39.6763 0.1144 4783 +4785 2 24.331193157924382 -228.62847045818418 40.0299 0.1144 4784 +4786 2 25.228275563147978 -228.49735093625765 40.5647 0.1144 4785 +4787 2 25.618602661022802 -228.6625204338252 41.0735 0.1144 4786 +4788 2 26.29594851217326 -229.60092181361466 41.5374 0.1144 4787 +4789 2 27.041128593577582 -230.93873508013982 41.9516 0.1144 4788 +4790 2 27.82755397201704 -231.42886867333203 42.3811 0.1144 4789 +4791 2 28.565347885628338 -232.5663048936478 42.8112 0.1144 4790 +4792 2 29.09161116236961 -233.71790396147594 43.2104 0.1144 4791 +4793 2 28.997591583309664 -234.90234303859856 43.6551 0.1144 4792 +4794 2 29.08316261488713 -236.0461411636001 44.1266 0.1144 4793 +4795 2 29.804031398104662 -236.6700670168421 44.6284 0.1144 4794 +4796 2 30.020165412275723 -237.60443317944922 45.2502 0.1144 4795 +4797 2 29.887172921519586 -238.67946899308163 45.9785 0.1144 4796 +4798 2 30.080367347938726 -239.84998279357836 46.6256 0.1144 4797 +4799 2 30.91182441436316 -240.8660628983177 47.1436 0.1144 4798 +4800 2 31.953777931259925 -241.152842556571 47.6218 0.1144 4799 +4801 2 32.99666968852585 -241.7823134777666 48.0214 0.1144 4800 +4802 2 34.05970500824721 -242.15915410948892 48.3473 0.1144 4801 +4803 2 35.104992336802844 -242.70292058372274 48.662 0.1144 4802 +4804 2 35.98779966647668 -242.85072810119732 49.2114 0.1144 4803 +4805 2 36.30286230598914 -243.8744573070224 49.8252 0.1144 4804 +4806 2 36.83060965538663 -244.7828709108087 50.3317 0.1144 4805 +4807 2 37.510324133990714 -245.84448866293553 50.8054 0.1144 4806 +4808 2 38.59824983981605 -246.1255201470329 51.2056 0.1144 4807 +4809 2 39.636269232922565 -246.76964621965055 51.5374 0.1144 4808 +4810 2 40.63727787207176 -247.22058950078087 51.7611 0.1144 4809 +4811 2 40.972363209476356 -246.8328746074733 51.9445 0.1144 4810 +4812 2 41.85253868622911 -246.39123910957807 52.136 0.1144 4811 +4813 2 42.732784725461926 -245.30996602069592 52.3314 0.1144 4812 +4814 2 43.612180757986444 -244.57227093916507 52.5364 0.1144 4813 +4815 2 44.49158004745818 -244.02050910521402 52.7506 0.1144 4814 +4816 2 45.371826086691 -242.3361554357307 52.9738 0.1144 4815 +4817 2 46.25122211921551 -241.6171894350686 53.198 0.1144 4816 +4818 2 47.13062140868728 -241.08324725812804 53.4178 0.1144 4817 +4819 2 48.01086744792006 -239.83325210713434 53.632 0.1144 4818 +4820 2 48.89104292467282 -239.5561287911851 53.8384 0.1144 4819 +4821 2 49.769662769916344 -238.33020456582784 54.0333 0.1144 4820 +4822 2 50.64990880914917 -237.9274393595218 54.2114 0.1144 4821 +4823 2 51.53008428590188 -236.85805242289354 54.367 0.1144 4822 +4824 2 52.40870413114545 -236.1474396795943 54.4944 0.1144 4823 +4825 2 53.28895017037827 -235.55983248487064 54.5888 0.1144 4824 +4826 2 53.201887372820934 -235.2919464335723 55.5223 0.1144 4825 +4827 2 53.33380581366895 -234.07470573011324 55.7206 0.1144 4826 +4828 2 53.512672488851045 -232.6880465450525 55.7987 0.1144 4827 +4829 2 53.691468601553034 -231.36707454644306 55.8807 0.1144 4828 +4830 2 53.87026471425506 -230.15292856591924 55.9647 0.1144 4829 +4831 2 54.049981692231526 -228.9436566705221 56.0482 0.1144 4830 +4832 2 54.22877780493351 -227.73803445827335 56.1291 0.1144 4831 +4833 2 54.40764448011561 -226.5352944338941 56.2061 0.1144 4832 +4834 2 54.58644059281758 -225.4311941985382 56.2828 0.1144 4833 +4835 2 54.76523670551961 -224.30355488388938 56.3598 0.1144 4834 +4836 2 54.94495368349604 -223.07783762571395 56.4365 0.1144 4835 +4837 2 55.12374979619806 -221.84873821925453 56.5132 0.1144 4836 +4838 2 55.30261647138012 -220.61608439587155 56.5897 0.1144 4837 +4839 2 55.48141258408214 -219.38460952308287 56.6661 0.1144 4838 +4840 2 55.660208696784125 -218.08461577999603 56.7423 0.1144 4839 +4841 2 55.83992567476059 -216.76521918425783 56.8179 0.1144 4840 +4842 2 56.01872178746262 -215.57624340879335 56.8926 0.1144 4841 +4843 2 56.19758846264471 -214.39087528081905 56.968 0.1144 4842 +4844 2 56.37645543391288 -213.20965484133896 57.0419 0.1144 4843 +4845 2 56.5552515466149 -212.0323979108851 57.113 0.1144 4844 +4846 2 56.73489766602519 -210.86328939106275 57.1796 0.1144 4845 +4847 2 56.913693778727215 -209.74427590006047 57.2412 0.1144 4846 +4848 2 57.09263131247549 -208.50035130609143 57.3611 0.1144 4847 +4849 2 53.720694247930886 -234.77685139631805 54.5908 0.1144 4825 +4850 2 54.48174966492268 -233.95428919543428 54.4992 0.1144 4849 +4851 2 55.242804785828405 -233.15905126922888 54.3357 0.1144 4850 +4852 2 56.00386020282015 -232.08660209116047 54.1204 0.1144 4851 +4853 2 56.76406857396479 -231.28547249649213 53.872 0.1144 4852 +4854 2 57.52427368816217 -230.3644333450921 53.608 0.1144 4853 +4855 2 58.28539966763407 -229.40734442965595 53.3434 0.1144 4854 +4856 2 59.046455084625904 -228.50126170819107 53.0827 0.1144 4855 +4857 2 59.80743964305147 -227.59761159284525 52.8276 0.1144 4856 +4858 2 60.56771531972896 -226.73918929417508 52.579 0.1144 4857 +4859 2 61.238841351386874 -225.64873398098567 52.3421 0.1144 4858 +4860 2 61.71962805847403 -224.54821591814323 52.1254 0.1144 4859 +4861 2 62.20119420978937 -223.54568281021113 51.9263 0.1144 4860 +4862 2 62.682760657190826 -222.48612067085165 51.7426 0.1144 4861 +4863 2 63.164326808506175 -220.89315423195282 51.5724 0.1144 4862 +4864 2 63.645892959821516 -219.28878646547116 51.4136 0.1144 4863 +4865 2 63.93647319101569 -218.08038916588208 51.2708 0.1144 4864 +4866 2 63.801442382044954 -216.84022425732644 51.1526 0.1144 4865 +4867 2 63.66718776035519 -215.73937851768056 51.0544 0.1144 4866 +4868 2 63.53300725417882 -214.68087942262412 50.9709 0.1144 4867 +4869 2 63.39882319496908 -213.62087431201593 50.8976 0.1144 4868 +4870 2 63.263721823518225 -212.56293875322632 50.8304 0.1144 4869 +4871 2 63.12953776430853 -211.50330023271817 50.7654 0.1144 4870 +4872 2 62.99528314261876 -210.44362672305826 50.7004 0.1144 4871 +4873 2 62.86103177787618 -209.38646471507633 50.6355 0.1144 4872 +4874 2 62.726777156186365 -208.1401293281052 50.5705 0.1144 4873 +4875 2 62.59174634721562 -206.88618962599776 50.5056 0.1144 4874 +4876 2 62.457491725525855 -205.6275173274598 50.4409 0.1144 4875 +4877 2 62.32330796240223 -204.36590895015559 50.3759 0.1144 4876 +4878 2 62.18905659765968 -203.10366656196578 50.311 0.1144 4877 +4879 2 62.054801975969866 -201.83404307387048 50.246 0.1144 4878 +4880 2 61.919771166999126 -200.52177946929407 50.181 0.1144 4879 +4881 2 61.78551654530932 -199.34296802759008 50.1161 0.1144 4880 +4882 2 61.65126192361955 -198.167830202346 50.0511 0.1144 4881 +4883 2 61.51708141744314 -196.99795556994303 49.9864 0.1144 4882 +4884 2 61.38282679575338 -195.82950469332337 49.9215 0.1144 4883 +4885 2 61.24779598678259 -194.6657703141828 49.8565 0.1144 4884 +4886 2 61.11361192757289 -193.50411050280127 49.7916 0.1144 4885 +4887 2 60.980136750111285 -192.34735263499329 49.7266 0.1144 4886 +4888 2 60.84510594114054 -191.07643019958158 49.6619 0.1144 4887 +4889 2 60.71085131945077 -189.80275351594202 49.597 0.1144 4888 +4890 2 60.575820510479986 -188.52542440432887 49.532 0.1144 4889 +4891 2 60.44156588879022 -187.2445201730635 49.4673 0.1144 4890 +4892 2 60.308161569894786 -185.96268581892178 49.4024 0.1144 4891 +4893 2 60.173130760924 -184.66883305689993 49.3377 0.1144 4892 +4894 2 60.03887613923423 -183.49308642812474 49.2727 0.1144 4893 +4895 2 59.90384533026349 -182.34234787201603 49.208 0.1144 4894 +4896 2 59.76959070857369 -181.19396841642816 49.1436 0.1144 4895 +4897 2 59.63618638967829 -180.04951220206584 49.0792 0.1144 4896 +4898 2 59.50115558070751 -178.90894715247993 49.0148 0.1144 4897 +4899 2 59.3669009590177 -177.77027865728968 48.951 0.1144 4898 +4900 2 59.231870150047 -176.6368221433636 48.8874 0.1144 4899 +4901 2 59.09761552835718 -175.35030862345923 48.8244 0.1144 4900 +4902 2 58.9633641636146 -174.062018793596 48.762 0.1144 4901 +4903 2 58.8291801044049 -172.76970812024888 48.7007 0.1144 4902 +4904 2 58.694925482715135 -171.4733795887299 48.641 0.1144 4903 +4905 2 58.55989467374435 -170.17439801291098 48.5834 0.1144 4904 +4906 2 58.42649035484896 -168.8741166928948 48.5288 0.1144 4905 +4907 2 58.29145954587817 -167.595519102137 48.4778 0.1144 4906 +4908 2 58.157204924188406 -166.5094486137976 48.4313 0.1144 4907 +4909 2 57.83451569496126 -165.53858516779326 48.3994 0.1144 4908 +4910 2 57.51359408076965 -164.57359208938476 48.3633 0.1144 4909 +4911 2 40.96598264410036 -247.29995044496053 51.9047 0.1144 4810 +4912 2 41.98295754123223 -248.1539575458459 52.9589 0.1144 4911 +4913 2 43.010520363410656 -248.2860912535827 53.3988 0.1144 4912 +4914 2 44.053398500715545 -249.2050617981708 53.9174 0.1144 4913 +4915 2 45.08407208772591 -248.97155102203965 54.5401 0.1144 4914 +4916 2 45.98664700700971 -248.88361006252921 55.3734 0.1144 4915 +4917 2 46.80564211127982 -249.2154792954746 56.3811 0.1144 4916 +4918 2 47.72907878489321 -248.45705046724726 57.4616 0.1144 4917 +4919 2 48.542555075038976 -248.37765751462751 58.5427 0.1144 4918 +4920 2 49.07863229790354 -247.45148439113302 59.5389 0.1144 4919 +4921 2 49.07251365079024 -246.38736282219054 60.4492 0.1144 4920 +4922 2 49.08795483506923 -245.15227673334653 61.0814 0.1144 4921 +4923 2 49.1129957735875 -243.8969089335661 61.4802 0.1144 4922 +4924 2 49.13817813315201 -242.64306971184504 61.7078 0.1144 4923 +4925 2 49.16244288438931 -241.39117603028302 61.8184 0.1144 4924 +4926 2 49.18762524395387 -240.13785949850086 61.8579 0.1144 4925 +4927 2 49.21344562670025 -238.883998291975 61.8604 0.1144 4926 +4928 2 49.23862798626482 -237.63115869985734 61.8607 0.1144 4927 +4929 2 49.2645156745441 -236.37829124014672 61.861 0.1144 4928 +4930 2 49.28885128434757 -235.1279823870476 61.8612 0.1144 4929 +4931 2 49.31389222286581 -233.87632050113146 61.8618 0.1144 4930 +4932 2 49.33985402665857 -232.62461604457764 61.8626 0.1144 4931 +4933 2 49.364894965176795 -231.37344922009348 61.8638 0.1144 4932 +4934 2 49.53817388055693 -229.97770316805253 61.8652 0.1144 4933 +4935 2 49.77603533849913 -228.6653919201765 61.8674 0.1144 4934 +4936 2 50.01884979000861 -227.47465273547087 61.8702 0.1144 4935 +4937 2 50.2607433762436 -226.28835174879512 61.8744 0.1144 4936 +4938 2 50.50355782775308 -225.29019935234203 61.8803 0.1144 4937 +4939 2 50.745451413988114 -224.2732876389713 61.8884 0.1144 4938 +4940 2 50.98826586549759 -223.05344652605777 61.8996 0.1144 4939 +4941 2 51.33784363821269 -221.850967133865 61.9158 0.1144 4940 +4942 2 51.91660030033047 -220.4495331688322 61.9385 0.1144 4941 +4943 2 52.509086943468674 -219.5215300188371 61.9696 0.1144 4942 +4944 2 52.65153607075817 -218.44537961201695 62.0071 0.1144 4943 +4945 2 52.50675401957414 -217.0612298148854 62.0679 0.1144 4944 +4946 2 52.12113617988273 -215.83532161868453 62.1866 0.1144 4945 +4947 2 51.91174158745369 -214.58483076610057 62.2807 0.1144 4946 +4948 2 51.70142612975012 -213.4636466968055 62.4224 0.1144 4947 +4949 2 35.99747596634836 -244.0916161476672 50.1959 0.1144 4805 +4950 2 35.25082436584952 -244.9384962860292 49.9411 0.1144 4949 +4951 2 34.706042508657305 -245.95805747711194 49.854 0.1144 4950 +4952 2 34.32652886928993 -247.09107171947062 49.7876 0.1144 4951 +4953 2 34.03114763068897 -248.3242078888468 49.74 0.1144 4952 +4954 2 33.701808464070695 -249.56027755095772 49.7101 0.1144 4953 +4955 2 33.24126006699426 -250.78659143594365 49.6955 0.1144 4954 +4956 2 32.536921797730685 -251.623395769904 49.6947 0.1144 4955 +4957 2 31.603895991507088 -252.32200551786218 49.6933 0.1144 4956 +4958 2 30.509081194868674 -252.5993304829883 49.6916 0.1144 4957 +4959 2 29.367127376326494 -252.818562199699 49.6891 0.1144 4958 +4960 2 28.230849551247193 -252.58539178619452 49.6857 0.1144 4959 +4961 2 27.09617798840196 -253.21901793104695 49.681 0.1144 4960 +4962 2 26.076292297592513 -253.2171515850764 49.6742 0.1144 4961 +4963 2 25.136848562628135 -254.47975815622146 49.665 0.1144 4962 +4964 2 24.19499593249906 -255.88732094221058 49.6518 0.1144 4963 +4965 2 23.239312262000162 -255.95818225584003 49.6322 0.1144 4964 +4966 2 22.269935715230435 -257.16787211088626 49.6059 0.1144 4965 +4967 2 21.30041774741441 -257.3534186321483 49.5734 0.1144 4966 +4968 2 20.33671669592116 -258.4329583855888 49.537 0.1144 4967 +4969 2 19.415841256233904 -258.8069069795756 49.4318 0.1144 4968 +4970 2 18.942183620209992 -259.74100599745475 49.3114 0.1144 4969 +4971 2 18.716415290198988 -261.1241830944963 49.2288 0.1144 4970 +4972 2 18.642715444830134 -262.44259902160223 49.1924 0.1144 4971 +4973 2 19.0251310290815 -263.38380537748236 49.203 0.1144 4972 +4974 2 19.432677717444577 -264.6733317225278 49.259 0.1144 4973 +4975 2 19.963847314262235 -266.1773460873943 49.3562 0.1144 4974 +4976 2 20.675025350818785 -266.75206654875336 49.576 0.1144 4975 +4977 2 21.470102176200584 -267.47185681386514 49.8982 0.1144 4976 +4978 2 22.266157805748627 -268.7483627107617 50.1805 0.1144 4977 +4979 2 22.9556572803826 -269.1710284351347 50.3972 0.1144 4978 +4980 2 23.473903876416266 -270.4282044269366 50.5529 0.1144 4979 +4981 2 24.192397720386044 -271.9022539648466 50.6783 0.1144 4980 +4982 2 25.168423984636743 -271.67366282151886 50.75 0.1144 4981 +4983 2 26.255547057531448 -271.7105623081138 50.7844 0.1144 4982 +4984 2 27.375601086226897 -272.1225375517399 50.8066 0.1144 4983 +4985 2 28.463507156383084 -272.5049977460994 50.8211 0.1144 4984 +4986 2 29.4701439170311 -273.06866502589014 50.8292 0.1144 4985 +4987 2 30.4211207029507 -273.7161173787654 50.8315 0.1144 4986 +4988 2 31.347985846707786 -274.6255881028999 50.8329 0.1144 4987 +4989 2 32.27724981870179 -275.0009961566994 50.8354 0.1144 4988 +4990 2 33.209689102299755 -276.16877535075014 50.839 0.1144 4989 +4991 2 34.02834841236494 -276.7135990617362 50.8446 0.1144 4990 +4992 2 34.770440917639796 -277.75823204142176 50.85 0.1144 4991 +4993 2 35.38721366400496 -279.0299673811174 50.8536 0.1144 4992 +4994 2 35.75504620568073 -280.05014989186975 50.8729 0.1144 4993 +4995 2 35.60125970779942 -281.3380333082347 50.9121 0.1144 4994 +4996 2 35.463770384057774 -282.63968554746566 50.9359 0.1144 4995 +4997 2 35.908345201472926 -283.55110258585046 50.8654 0.1144 4996 +4998 2 35.87756827212587 -284.80615132016493 50.8063 0.1144 4997 +4999 2 35.83385797898103 -286.07235083456123 50.7637 0.1144 4998 +5000 2 35.79092742615051 -287.3403158487034 50.7382 0.1144 4999 +5001 2 35.74721713300566 -288.6088042001014 50.7349 0.1144 5000 +5002 2 35.70350713594695 -289.881676524616 50.7556 0.1144 5001 +5003 2 35.501223286116804 -291.2158472962004 50.8169 0.1144 5002 +5004 2 35.12325846827807 -292.48231055274465 50.9169 0.1144 5003 +5005 2 34.73638590103991 -293.44482560468856 51.0166 0.1144 5004 +5006 2 34.107434336231464 -294.2096753245984 51.175 0.1144 5005 +5007 2 25.03992143943304 -229.14828937407032 41.2776 0.1144 4786 +5008 2 24.73619791938872 -230.523358585567 42.2929 0.1144 5007 +5009 2 24.413805340803858 -231.62387631832223 42.7865 0.1144 5008 +5010 2 23.8164025127619 -232.25523697851236 43.1922 0.1144 5009 +5011 2 23.815510819342208 -233.49131867827023 43.4946 0.1144 5010 +5012 2 23.648028390343192 -234.5708570679331 43.7007 0.1144 5011 +5013 2 23.173753861365814 -235.69165448453634 43.82 0.1144 5012 +5014 2 23.45269355866556 -236.90759910829354 43.8642 0.1144 5013 +5015 2 18.251610996778318 -218.95306882405538 34.8664 0.1144 4687 +5016 2 19.393842045905725 -218.67866063980165 34.9527 0.1144 5015 +5017 2 20.397951382959043 -219.59423578265876 34.9894 0.1144 5016 +5018 2 21.38930983924445 -219.81748027732078 35.0372 0.1144 5017 +5019 2 22.477276404952995 -220.64692719815872 35.0963 0.1144 5018 +5020 2 23.602149553907594 -219.98070873131087 35.1646 0.1144 5019 +5021 2 24.57213829863923 -220.142100382024 35.3906 0.1144 5020 +5022 2 25.707085033595607 -219.18106061679487 35.5701 0.1144 5021 +5023 2 26.734708849512863 -220.17679831458304 35.6978 0.1144 5022 +5024 2 27.58490958817759 -220.71066007096016 35.7832 0.1144 5023 +5025 2 28.56893961346156 -221.4201013864042 35.8364 0.1144 5024 +5026 2 29.27914210279905 -222.3663057439228 35.7067 0.1144 5025 +5027 2 28.92588099122925 -223.75331170956676 35.6048 0.1144 5026 +5028 2 28.46031790656005 -224.52029931826667 35.8089 0.1144 5027 +5029 2 28.456146289153562 -225.72526879181868 36.0654 0.1144 5028 +5030 2 29.516450572022038 -226.1517897302396 36.3499 0.1144 5029 +5031 2 30.65006166744936 -226.3567800430627 36.6668 0.1144 5030 +5032 2 30.48069982940653 -226.02772601503412 37.1428 0.1144 5031 +5033 2 29.56884113136301 -225.5822036251535 37.6855 0.1144 5032 +5034 2 29.154097864303385 -224.62979981789442 38.1962 0.1144 5033 +5035 2 28.74682890471185 -223.65205425259816 38.7699 0.1144 5034 +5036 2 28.20305410149264 -222.35719327172268 39.4274 0.1144 5035 +5037 2 27.681212104179092 -221.4788351220372 40.2074 0.1144 5036 +5038 2 27.40469172157277 -221.0260798169718 40.9951 0.1144 5037 +5039 2 27.57824205393039 -219.80325566578742 41.7466 0.1144 5038 +5040 2 27.536231261269872 -218.64225214705817 42.394 0.1144 5039 +5041 2 27.24772300688696 -217.71719804580977 42.9965 0.1144 5040 +5042 2 27.103069254974578 -216.5436806812991 43.5252 0.1144 5041 +5043 2 27.077270955826087 -215.31259313410047 43.9272 0.1144 5042 +5044 2 27.23747538244826 -214.06910014924875 44.2854 0.1144 5043 +5045 2 27.45434247695428 -212.7948187647178 44.6323 0.1144 5044 +5046 2 27.600084852105518 -211.44165813750374 45.015 0.1144 5045 +5047 2 27.067501858141522 -211.55622322407712 44.989 0.1144 5046 +5048 2 26.4865267118685 -210.36098909095537 45.4157 0.1144 5047 +5049 2 25.78499835998934 -209.1956590353665 45.57 0.1144 5048 +5050 2 25.329090425302407 -208.64868802945676 45.8758 0.1144 5049 +5051 2 25.21920759735171 -207.56785566724906 46.2132 0.1144 5050 +5052 2 25.177159497841277 -206.39015858473317 46.578 0.1144 5051 +5053 2 25.43874861664688 -204.9981718551492 47.0476 0.1144 5052 +5054 2 25.91957944056449 -203.51630897016895 47.5149 0.1144 5053 +5055 2 26.571205746556632 -202.8045945639329 47.938 0.1144 5054 +5056 2 26.81081844081252 -201.88103980700305 48.337 0.1144 5055 +5057 2 26.429172233861586 -200.33907665493092 48.7351 0.1144 5056 +5058 2 26.193067717109187 -199.0633743968225 49.1033 0.1144 5057 +5059 2 26.20608964320966 -197.8348419350274 49.425 0.1144 5058 +5060 2 26.723341770153517 -197.15157633667286 49.8285 0.1144 5059 +5061 2 27.247882262488133 -196.12547827958716 50.309 0.1144 5060 +5062 2 27.669647741165488 -194.7595971672382 50.8508 0.1144 5061 +5063 2 27.965882539508165 -193.3730878386575 51.3663 0.1144 5062 +5064 2 28.349425050221072 -192.35763485349767 51.8333 0.1144 5063 +5065 2 27.950260323755323 -192.0187100921854 52.446 0.1144 5064 +5066 2 28.177789773951424 -191.80664378555394 53.1896 0.1144 5065 +5067 2 29.283186682028763 -191.967694597617 53.8516 0.1144 5066 +5068 2 30.40566376150724 -191.55368438070974 54.4202 0.1144 5067 +5069 2 31.527256286188305 -191.44715721907914 54.8811 0.1144 5068 +5070 2 32.64304501632132 -191.17761152559615 55.2222 0.1144 5069 +5071 2 33.764180440562754 -191.03594831812893 55.5167 0.1144 5070 +5072 2 34.87828479824336 -191.3713220030433 55.8046 0.1144 5071 +5073 2 36.004841379792346 -190.89937093035525 56.0423 0.1144 5072 +5074 2 37.09623768414429 -190.85526429305196 56.2531 0.1144 5073 +5075 2 38.208756853304415 -190.38915502411834 56.4164 0.1144 5074 +5076 2 39.345101983916564 -190.32641622143407 56.5152 0.1144 5075 +5077 2 40.42667924233592 -189.9981127244286 56.523 0.1144 5076 +5078 2 41.435156501887015 -189.35562612314712 56.4533 0.1144 5077 +5079 2 42.410330033224255 -188.85059836082957 56.3536 0.1144 5078 +5080 2 43.079805887917985 -188.02388121815272 56.3032 0.1144 5079 +5081 2 43.348524077786905 -186.59003193358308 56.3114 0.1144 5080 +5082 2 43.36417193017104 -185.47601238835716 56.5365 0.1144 5081 +5083 2 43.45649445667552 -184.27638025430144 56.8669 0.1144 5082 +5084 2 43.68388898067581 -182.97683352455488 57.1446 0.1144 5083 +5085 2 43.80206766966177 -181.70441277707792 57.358 0.1144 5084 +5086 2 43.80200800093763 -180.48107355418077 57.5016 0.1144 5085 +5087 2 43.73336090128072 -179.29245833729678 57.5809 0.1144 5086 +5088 2 43.66386349882946 -178.10533244998766 57.6036 0.1144 5087 +5089 2 43.61452022394778 -176.91070842425768 57.6041 0.1144 5088 +5090 2 43.54742875580007 -175.72747532397008 57.6041 0.1144 5089 +5091 2 43.354078790187145 -174.64936175045275 57.6041 0.1144 5090 +5092 2 42.99104094412407 -173.6793437250862 57.6041 0.1144 5091 +5093 2 42.46558335516026 -172.28815928882102 57.6041 0.1144 5092 +5094 2 41.938429009727145 -170.99620114555185 57.6041 0.1144 5093 +5095 2 41.47273152960416 -170.14535612565885 57.6041 0.1144 5094 +5096 2 41.048222902183795 -169.25595155998053 57.6041 0.1144 5095 +5097 2 40.48476568816862 -167.8421751697269 57.6041 0.1144 5096 +5098 2 39.85746551230917 -166.714736845913 57.6041 0.1144 5097 +5099 2 39.23101563924405 -166.0784602318912 57.6041 0.1144 5098 +5100 2 38.60364490090452 -164.81518007708127 57.6041 0.1144 5099 +5101 2 29.077192878149706 -192.14614973293004 51.175 0.1144 5064 +5102 2 30.03280924311575 -191.00706529635644 50.7674 0.1144 5101 +5103 2 31.04189594186797 -191.195547499445 50.5599 0.1144 5102 +5104 2 31.65156700267747 -191.691319644825 50.1892 0.1144 5103 +5105 2 31.50831800121815 -192.95062459860225 49.9534 0.1144 5104 +5106 2 31.34889331491032 -194.21981301311538 49.8448 0.1144 5105 +5107 2 31.18861832580808 -195.48565123207027 49.8434 0.1144 5106 +5108 2 31.028417452219266 -196.74985417097247 49.9293 0.1144 5107 +5109 2 30.868213025597136 -198.00168660941677 50.0828 0.1144 5108 +5110 2 30.70716184921391 -199.04476441458647 50.267 0.1144 5109 +5111 2 30.637568247651245 -200.2018676613003 50.4098 0.1144 5110 +5112 2 30.61160644385857 -201.42180562233293 50.5044 0.1144 5111 +5113 2 30.58727438708842 -202.64853778699393 50.561 0.1144 5112 +5114 2 30.563009635851127 -203.87198161243114 50.5893 0.1144 5113 +5115 2 30.537968697332893 -205.09663943442996 50.5985 0.1144 5114 +5116 2 30.512786337768333 -206.3219866955502 50.5966 0.1144 5115 +5117 2 30.48852158653108 -207.54640364363448 50.5901 0.1144 5116 +5118 2 30.465036279521975 -208.77351037137885 50.5814 0.1144 5117 +5119 2 30.439853919957493 -210.00085401304221 50.5691 0.1144 5118 +5120 2 30.415592425667416 -211.22921974091372 50.5509 0.1144 5119 +5121 2 30.391327674430162 -212.45717596572484 50.5266 0.1144 5120 +5122 2 30.366216173431816 -213.68668073233846 50.4941 0.1144 5121 +5123 2 30.341880563628344 -214.91598746251205 50.456 0.1144 5122 +5124 2 31.094379009106355 -216.04971289615804 50.3695 0.1144 5123 +5125 2 31.944498822277147 -216.62076633894418 50.2589 0.1144 5124 +5126 2 32.87693484892788 -217.57505746316252 50.1724 0.1144 5125 +5127 2 33.75697670668953 -218.15118912288025 50.0503 0.1144 5126 +5128 2 27.75576531884974 -211.0794977365656 45.3849 0.1144 5046 +5129 2 28.36716173853621 -210.22952219242597 45.8542 0.1144 5128 +5130 2 28.985589130797617 -209.5281305533794 46.2764 0.1144 5129 +5131 2 29.835872359542194 -208.3058380071948 46.6463 0.1144 5130 +5132 2 30.281793597212562 -207.29290317428507 46.9574 0.1144 5131 +5133 2 30.43155477678162 -206.12651159075938 47.2298 0.1144 5132 +5134 2 30.651660935391156 -205.00983236678533 47.3908 0.1144 5133 +5135 2 30.718848898736383 -203.8481915724616 47.4516 0.1144 5134 +5136 2 30.9551544290833 -202.74426496744374 47.4432 0.1144 5135 +5137 2 30.962378543788084 -202.7120320226158 47.8008 0.1144 5136 +5138 2 31.25124760427927 -201.44404717716617 47.9282 0.1144 5137 +5139 2 31.60492806776731 -200.16785060387593 47.9674 0.1144 5138 +5140 2 32.11003288302176 -198.92594942197525 48.0808 0.1144 5139 +5141 2 32.670946806418506 -198.03692728286956 48.183 0.1144 5140 +5142 2 33.076428232730954 -197.0037079680266 48.2616 0.1144 5141 +5143 2 33.29002576626408 -195.72606205802634 48.3633 0.1144 5142 +5144 2 31.753456938178743 -202.80243406619826 47.3371 0.1144 5136 +5145 2 32.87249485585785 -203.25159994237225 47.1839 0.1144 5144 +5146 2 33.99669642991429 -202.81429732866627 46.9636 0.1144 5145 +5147 2 35.054151683157265 -202.70787360922304 46.6441 0.1144 5146 +5148 2 36.17823532095588 -202.40926118032712 46.3358 0.1144 5147 +5149 2 37.22568173706949 -202.0153762362246 46.058 0.1144 5148 +5150 2 38.273930786113695 -201.50501080524427 45.8074 0.1144 5149 +5151 2 39.2809953297612 -201.04303885227097 45.4616 0.1144 5150 +5152 2 40.131837272996194 -200.53363267202576 44.9686 0.1144 5151 +5153 2 40.52115633833499 -199.51840792408774 44.5645 0.1144 5152 +5154 2 40.63848798147379 -198.32958259838082 44.2621 0.1144 5153 +5155 2 40.75178749631979 -197.14117763406304 44.0524 0.1144 5154 +5156 2 40.633722179439616 -195.87319271514994 43.927 0.1144 5155 +5157 2 40.36354200051245 -194.57559539999602 43.8768 0.1144 5156 +5158 2 40.12509559804215 -193.27407439555702 43.8738 0.1144 5157 +5159 2 40.040117772529314 -191.95878499301045 43.8777 0.1144 5158 +5160 2 39.95846319356126 -190.64191421422146 43.883 0.1144 5159 +5161 2 39.880058041710555 -189.44369329402403 43.8903 0.1144 5160 +5162 2 40.15768072403172 -188.38078830714608 43.9006 0.1144 5161 +5163 2 40.43678492234857 -187.3009354699587 43.9149 0.1144 5162 +5164 2 40.4295818623133 -186.0627016194116 43.9354 0.1144 5163 +5165 2 40.37620645913882 -184.7959525769758 43.9648 0.1144 5164 +5166 2 40.42394888057646 -183.58453343183675 44.0051 0.1144 5165 +5167 2 40.24027096151511 -183.43960407178093 43.6962 0.1144 5166 +5168 2 39.20655511367888 -183.3054945596821 42.882 0.1144 5167 +5169 2 38.172980686888984 -182.73365968204342 42.5186 0.1144 5168 +5170 2 37.139335401532826 -182.71144458601702 42.1257 0.1144 5169 +5171 2 36.105544737896466 -181.95289718036264 41.776 0.1144 5170 +5172 2 35.383893455603854 -181.3667148651911 41.7245 0.1144 5171 +5173 2 34.68170083699344 -180.46135064602365 41.939 0.1144 5172 +5174 2 33.97943735981684 -179.26872708480434 42.3553 0.1144 5173 +5175 2 33.27710332016017 -178.78289295906183 42.8912 0.1144 5174 +5176 2 32.70400599020891 -177.6316980086045 43.405 0.1144 5175 +5177 2 32.559298054538274 -176.34135708418216 43.8292 0.1144 5176 +5178 2 32.41451926030145 -175.04799844441308 44.4268 0.1144 5177 +5179 2 40.94471034664304 -183.27186944829768 44.0569 0.1144 5166 +5180 2 41.72353438684247 -181.9817170246143 44.1188 0.1144 5179 +5181 2 41.59759436500236 -181.35201647718722 44.2719 0.1144 5180 +5182 2 41.16909062005294 -180.4854427966712 44.4287 0.1144 5181 +5183 2 40.706784984466466 -179.3866338535103 44.6023 0.1144 5182 +5184 2 40.73430241976836 -178.1703222401064 44.725 0.1144 5183 +5185 2 40.78204809815321 -176.96799590674775 44.7978 0.1144 5184 +5186 2 41.00952354764743 -175.8910180168624 44.8204 0.1144 5185 +5187 2 41.561506532942374 -174.5399780014908 44.7922 0.1144 5186 +5188 2 42.42311351231763 -173.73600632874775 44.7283 0.1144 5187 +5189 2 43.40967809981852 -173.20764905298213 44.6345 0.1144 5188 +5190 2 44.42545053474086 -172.58313162789017 44.4892 0.1144 5189 +5191 2 45.40955600055284 -172.1558583619187 44.2512 0.1144 5190 +5192 2 46.418087443862106 -170.99311578197126 43.9516 0.1144 5191 +5193 2 47.4933922458067 -171.21239269815072 43.6671 0.1144 5192 +5194 2 48.597000112534005 -170.51267523014047 43.4364 0.1144 5193 +5195 2 49.634782523722365 -170.36118975304043 43.2328 0.1144 5194 +5196 2 50.53769699234472 -169.28098965723842 43.0825 0.1144 5195 +5197 2 51.353080499669474 -168.94938769689415 43.0108 0.1144 5196 +5198 2 52.335715014599884 -167.7839069444224 42.9982 0.1144 5197 +5199 2 53.375672822041494 -168.66714417945082 43.0441 0.1144 5198 +5200 2 54.12726352401971 -169.02180863325808 43.1623 0.1144 5199 +5201 2 54.25404729728889 -170.04656245601012 43.3073 0.1144 5200 +5202 2 53.88667721447732 -171.5200830324654 43.4482 0.1144 5201 +5203 2 53.19447924482224 -172.80575318685933 43.6391 0.1144 5202 +5204 2 52.5038202318684 -173.2269738983113 43.829 0.1144 5203 +5205 2 52.02061752354991 -174.33720461937392 43.9958 0.1144 5204 +5206 2 51.607810721082934 -175.77774746893095 44.2148 0.1144 5205 +5207 2 51.2929869954213 -177.07466355053734 44.3811 0.1144 5206 +5208 2 50.670426119431504 -177.67831163233132 44.5488 0.1144 5207 +5209 2 49.96208947569173 -178.54849296377822 44.7429 0.1144 5208 +5210 2 49.266438963847435 -179.87724368883096 45.1175 0.1144 5209 +5211 2 48.580374088095 -180.1888309342611 45.6672 0.1144 5210 +5212 2 47.79158532759662 -181.0692872803882 46.2554 0.1144 5211 +5213 2 46.89182899758383 -182.0428277358593 46.807 0.1144 5212 +5214 2 46.17616372074228 -182.41012836582235 47.2318 0.1144 5213 +5215 2 45.68076978600428 -183.85407967002973 47.5479 0.1144 5214 +5216 2 45.869918760255665 -184.80034737654069 47.6375 0.1144 5215 +5217 2 46.498821443215526 -185.84382414596237 47.6118 0.1144 5216 +5218 2 47.27472344338048 -187.21601919312715 47.5222 0.1144 5217 +5219 2 48.10227688288407 -187.42860221018674 47.3962 0.1144 5218 +5220 2 48.819828233164586 -188.73128252853027 47.1005 0.1144 5219 +5221 2 49.014632770937226 -190.1366386162896 46.8157 0.1144 5220 +5222 2 48.873816647617545 -191.20919182760275 46.566 0.1144 5221 +5223 2 48.54850960929207 -192.04059318453682 46.342 0.1144 5222 +5224 2 48.01024674019017 -192.8974501408027 46.1446 0.1144 5223 +5225 2 47.182742865012045 -194.3908128414227 45.9749 0.1144 5224 +5226 2 46.463997465793405 -194.5233635027787 44.989 0.1144 5225 +5227 2 41.064356931663696 -182.0610498712835 45.372 0.1144 5180 +5228 2 40.143505122350334 -181.8961087228331 46.5679 0.1144 5227 +5229 2 39.3367650535142 -182.79354735734097 47.1103 0.1144 5228 +5230 2 38.51053858288723 -183.43263879461762 47.7599 0.1144 5229 +5231 2 37.5717798406818 -184.0216151106547 48.3358 0.1144 5230 +5232 2 36.5252174811792 -184.55829090266937 48.7967 0.1144 5231 +5233 2 35.43223228968788 -184.94562468720233 49.1585 0.1144 5232 +5234 2 34.29916678697637 -184.93957384722935 49.4455 0.1144 5233 +5235 2 33.21581454883963 -185.09496740007228 49.7893 0.1144 5234 +5236 2 32.15535076954339 -184.33664209186796 50.1276 0.1144 5235 +5237 2 31.050282958720217 -184.75517274429296 50.5126 0.1144 5236 +5238 2 30.05281154238777 -183.78049028572593 50.9558 0.1144 5237 +5239 2 28.941557097675698 -184.09758032662018 51.7373 0.1144 5238 +5240 2 30.842288094387595 -227.11050908277159 35.9912 0.1144 5031 +5241 2 30.47078758269455 -227.98888544103667 35.3702 0.1144 5240 +5242 2 29.971334575827708 -229.0470935199525 35.0882 0.1144 5241 +5243 2 29.69208214648398 -230.23695612889145 34.839 0.1144 5242 +5244 2 29.403077478554145 -231.65756669127978 34.498 0.1144 5243 +5245 2 29.047831316629217 -232.83434942860157 34.2034 0.1144 5244 +5246 2 29.277572530070586 -233.67952761046294 33.6501 0.1144 5245 +5247 2 29.642887310878784 -234.4861904642138 32.6385 0.1144 5246 +5248 2 30.16099879766029 -235.53859498362215 32.2123 0.1144 5247 +5249 2 30.83192701615608 -236.76539758981107 31.8116 0.1144 5248 +5250 2 31.68606839250546 -237.3831205426061 31.3729 0.1144 5249 +5251 2 32.49544066686374 -238.02661989179023 30.8207 0.1144 5250 +5252 2 32.63560789228957 -239.07757490224762 30.2355 0.1144 5251 +5253 2 31.695419646342785 -238.8998028149353 29.7651 0.1144 5252 +5254 2 31.410892391341367 -237.92108039900867 29.465 0.1144 5253 +5255 2 31.33408343479697 -236.69731262670842 29.3286 0.1144 5254 +5256 2 30.98888151747439 -235.51582506965406 29.3751 0.1144 5255 +5257 2 30.595924883767704 -234.30819165116907 29.5739 0.1144 5256 +5258 2 30.24345177404882 -232.98125513885273 29.8505 0.1144 5257 +5259 2 30.011312080056275 -231.7714546603837 30.1185 0.1144 5258 +5260 2 29.91354586482532 -230.53774358940754 30.3425 0.1144 5259 +5261 2 30.03169425904219 -229.3290757187222 30.546 0.1144 5260 +5262 2 30.35219623874112 -228.15965475986908 30.7068 0.1144 5261 +5263 2 30.628192727072996 -227.1290504606246 30.809 0.1144 5262 +5264 2 30.908150485131486 -225.99215166558417 30.8697 0.1144 5263 +5265 2 31.159815743521392 -224.7728871156757 30.9047 0.1144 5264 +5266 2 31.12344639623466 -223.55760787781918 30.9215 0.1144 5265 +5267 2 30.872772254767362 -222.37330130135223 30.9246 0.1144 5266 +5268 2 30.850206707928365 -221.16921515080313 30.9224 0.1144 5267 +5269 2 31.06628073824511 -219.93392459427486 30.9193 0.1144 5268 +5270 2 30.980678711611823 -218.76313126395684 30.9151 0.1144 5269 +5271 2 30.10498026263085 -217.82302086405122 30.9095 0.1144 5270 +5272 2 29.30240614317894 -217.25186578604627 30.9008 0.1144 5271 +5273 2 28.958004100026173 -216.15043904888108 30.8882 0.1144 5272 +5274 2 29.423529675745126 -215.00248426005743 30.872 0.1144 5273 +5275 2 29.973892482758806 -213.6374397572008 30.8529 0.1144 5274 +5276 2 30.135810838844655 -212.4583327575558 30.8333 0.1144 5275 +5277 2 29.952273109183746 -211.2279052048512 30.7474 0.1144 5276 +5278 2 29.743661514016182 -210.04625959917348 30.6827 0.1144 5277 +5279 2 29.566497300179524 -209.02055302610944 30.6544 0.1144 5278 +5280 2 29.252857241398125 -207.93236524820514 30.6634 0.1144 5279 +5281 2 28.884943774228425 -206.85127862420262 30.7098 0.1144 5280 +5282 2 28.604333968209268 -205.45355731836491 30.8683 0.1144 5281 +5283 2 28.34072971989137 -204.1127737640515 31.0688 0.1144 5282 +5284 2 28.09973951510459 -202.8370715920829 31.267 0.1144 5283 +5285 2 27.592097721025766 -201.93224634394215 31.4894 0.1144 5284 +5286 2 26.989037782686594 -201.15666712608143 31.7313 0.1144 5285 +5287 2 26.805725643001487 -202.1679172123179 32.6169 0.1144 5286 +5288 2 29.59864370030361 -233.44924897895473 33.9931 0.1144 5245 +5289 2 30.399598637847156 -234.26974681731326 33.8607 0.1144 5288 +5290 2 31.20456882677519 -235.38584224648181 33.7848 0.1144 5289 +5291 2 31.712173111903763 -236.24972539374173 33.7459 0.1144 5290 +5292 2 31.327000854168283 -237.6080822731384 33.7389 0.1144 5291 +5293 2 31.139209256592324 -238.81771849588984 33.7378 0.1144 5292 +5294 2 31.284700189524486 -240.05951657012662 33.7361 0.1144 5293 +5295 2 31.592829860964567 -241.09770991563215 33.7341 0.1144 5294 +5296 2 31.875093100895135 -242.26726056270286 33.731 0.1144 5295 +5297 2 32.03514359161431 -243.48164669429946 33.7268 0.1144 5296 +5298 2 31.93647775006884 -244.72202707719106 33.7207 0.1144 5297 +5299 2 31.687151120449585 -245.96021718325676 33.7123 0.1144 5298 +5300 2 31.59414715421947 -247.2120479810725 33.7008 0.1144 5299 +5301 2 31.5932824046358 -248.45432997956345 33.6846 0.1144 5300 +5302 2 31.788967742072238 -249.6562279336697 33.6619 0.1144 5301 +5303 2 31.999988528490526 -250.847005280181 33.6297 0.1144 5302 +5304 2 32.18033131087842 -252.04262802740493 33.5838 0.1144 5303 +5305 2 32.30001956480059 -253.2537606142812 33.5216 0.1144 5304 +5306 2 32.534578516971614 -254.58110874274314 33.4407 0.1144 5305 +5307 2 32.747991617732445 -255.84215787494674 33.3259 0.1144 5306 +5308 2 32.94044064982606 -257.0862686699827 33.1178 0.1144 5307 +5309 2 33.24520621483819 -258.3404782024857 32.8602 0.1144 5308 +5310 2 33.385088958026806 -259.60454132429476 32.622 0.1144 5309 +5311 2 33.32351579230537 -260.81775124040723 32.3624 0.1144 5310 +5312 2 33.46016953831817 -261.98018531518034 32.1552 0.1144 5311 +5313 2 33.75698552605529 -263.10368128518365 32.0001 0.1144 5312 +5314 2 34.1474789868533 -264.15046622093377 31.8685 0.1144 5313 +5315 2 34.32778446239122 -265.30512001191875 31.7078 0.1144 5314 +5316 2 34.55654692818113 -266.57633743725825 31.5829 0.1144 5315 +5317 2 34.79350826162239 -267.87459782009506 31.4852 0.1144 5316 +5318 2 35.054692955675606 -269.17178418581665 31.3978 0.1144 5317 +5319 2 35.7572955970341 -269.84397950421715 31.3146 0.1144 5318 +5320 2 36.82357391904894 -269.3222810259926 31.2312 0.1144 5319 +5321 2 37.84250405090932 -269.33092394134366 31.1276 0.1144 5320 +5322 2 38.82172881546642 -269.71587207184496 30.9747 0.1144 5321 +5323 2 39.246587172182934 -270.84429632888924 30.7432 0.1144 5322 +5324 2 39.13809902775762 -272.0180260922944 30.4828 0.1144 5323 +5325 2 39.06522224526096 -273.2262668181247 30.2484 0.1144 5324 +5326 2 38.94709072795237 -274.4156839814133 30.0804 0.1144 5325 +5327 2 38.692105479964994 -275.53225604367174 30.0152 0.1144 5326 +5328 2 38.6822714890567 -276.7078316573887 30.1249 0.1144 5327 +5329 2 39.412956502931166 -277.639957383325 30.5054 0.1144 5328 +5330 2 40.267840312744966 -278.12833952735957 30.8636 0.1144 5329 +5331 2 41.054252569409734 -279.02903298248475 31.1385 0.1144 5330 +5332 2 41.32912638460013 -280.4106356852522 31.3222 0.1144 5331 +5333 2 41.35173930521684 -281.70005315497133 31.4107 0.1144 5332 +5334 2 41.151081649375975 -282.76571757033383 31.407 0.1144 5333 +5335 2 40.822518670038676 -283.8123813981593 31.3298 0.1144 5334 +5336 2 40.504429138537716 -284.8618161898977 31.2194 0.1144 5335 +5337 2 40.02123324019979 -286.29552341086037 31.0646 0.1144 5336 +5338 2 40.621033186307415 -287.06997672374627 30.7908 0.1144 5337 +5339 2 41.31452777847037 -288.49954935022464 30.4508 0.1144 5338 +5340 2 42.12599652554714 -289.16289683303006 30.1059 0.1144 5339 +5341 2 42.9849734573925 -289.88332604317196 29.7049 0.1144 5340 +5342 2 43.864033254040564 -290.8840495320003 29.2306 0.1144 5341 +5343 2 44.74231331037435 -290.7865188470661 28.7224 0.1144 5342 +5344 2 45.62059691974144 -290.9780991753915 28.2128 0.1144 5343 +5345 2 46.499656420303424 -292.4392388416289 27.1079 0.1144 5344 +5346 2 29.76896097688217 -222.2505642580653 35.6199 0.1144 5026 +5347 2 30.613327222029135 -223.1838706791931 35.8747 0.1144 5346 +5348 2 31.172654505349286 -224.31798573353936 35.9654 0.1144 5347 +5349 2 31.778194493505442 -225.15030693617427 36.0528 0.1144 5348 +5350 2 32.56135406610567 -226.11006578351243 36.1402 0.1144 5349 +5351 2 33.44054591715897 -226.99534570520302 36.2295 0.1144 5350 +5352 2 34.32467714181852 -227.71232367373008 36.3222 0.1144 5351 +5353 2 35.18274958711129 -228.516227049361 36.4994 0.1144 5352 +5354 2 35.94645384696227 -229.39859805525305 36.7326 0.1144 5353 +5355 2 36.614979388101645 -230.42685624961797 36.9438 0.1144 5354 +5356 2 37.297210927286514 -231.35796037157735 37.123 0.1144 5355 +5357 2 37.93983322825294 -232.47573039004058 37.2733 0.1144 5356 +5358 2 38.43794938360587 -233.5957692216064 37.3979 0.1144 5357 +5359 2 38.806551100481784 -234.57204607512 37.5931 0.1144 5358 +5360 2 39.433793539549654 -235.59642945174988 37.8087 0.1144 5359 +5361 2 40.22824991894454 -236.66876026203647 37.984 0.1144 5360 +5362 2 41.00499866887054 -237.33196560262172 38.117 0.1144 5361 +5363 2 41.708197331569444 -238.47121909001083 38.2108 0.1144 5362 +5364 2 42.61001605184236 -239.3113364765764 38.2712 0.1144 5363 +5365 2 43.5013410964376 -239.8281902021246 38.3043 0.1144 5364 +5366 2 44.33129721329751 -241.04205833757146 38.3317 0.1144 5365 +5367 2 45.124980958444745 -241.29946484845553 38.3662 0.1144 5366 +5368 2 45.704603790380716 -241.89619098544108 38.4087 0.1144 5367 +5369 2 46.28507366816385 -243.26279219314583 38.4916 0.1144 5368 +5370 2 46.87761298698935 -244.6076886056869 38.6114 0.1144 5369 +5371 2 47.28191024823505 -245.47074138961153 38.7257 0.1144 5370 +5372 2 47.677309827009125 -246.37779616629558 38.8273 0.1144 5371 +5373 2 47.989397807314695 -247.53103296655894 38.922 0.1144 5372 +5374 2 48.61018906201161 -249.06317176282636 39.0158 0.1144 5373 +5375 2 48.990249638770415 -250.29293457197468 39.114 0.1144 5374 +5376 2 49.06136642523035 -251.48997868657062 39.2232 0.1144 5375 +5377 2 48.02201781741867 -251.4380376590591 39.4293 0.1144 5376 +5378 2 46.983378091355064 -252.43192458268288 39.7034 0.1144 5377 +5379 2 45.944808927771525 -252.31101519691146 40.0179 0.1144 5378 +5380 2 44.95649210758411 -253.38049294968215 40.3323 0.1144 5379 +5381 2 44.476508329513685 -254.97991324493836 40.5014 0.1144 5380 +5382 2 44.15120129118822 -256.2818505884901 40.6204 0.1144 5381 +5383 2 43.77239298053565 -257.5305853387312 40.7025 0.1144 5382 +5384 2 43.23738605244552 -258.20345486670004 40.7845 0.1144 5383 +5385 2 42.70230856187536 -259.20040308012733 40.8778 0.1144 5384 +5386 2 42.167301633785236 -260.6774554923402 40.992 0.1144 5385 +5387 2 41.630739074186 -261.871097202103 41.1323 0.1144 5386 +5388 2 41.09566158361581 -262.6307448440362 41.2807 0.1144 5387 +5389 2 40.56065465552568 -263.6523011063412 41.4324 0.1144 5388 +5390 2 40.0256477274356 -265.04247672279166 41.5842 0.1144 5389 +5391 2 39.49064079934547 -266.2118458435254 41.7357 0.1144 5390 +5392 2 38.95400767726616 -267.05386172752617 41.8869 0.1144 5391 +5393 2 38.419000749176035 -268.10715722523537 42.0378 0.1144 5392 +5394 2 37.88399382108595 -269.4187481517145 42.1887 0.1144 5393 +5395 2 37.348986892995825 -270.5621669632984 42.3388 0.1144 5394 +5396 2 36.81313321514467 -271.47315487456956 42.4883 0.1144 5395 +5397 2 36.27734684282639 -272.5173988221209 42.637 0.1144 5396 +5398 2 35.74233991473626 -273.80831146144857 42.7843 0.1144 5397 +5399 2 35.2072624241661 -274.9961969478926 42.9296 0.1144 5398 +5400 2 34.67147930879503 -275.88535241227504 43.0724 0.1144 5399 +5401 2 34.136401818224826 -276.89432978924924 43.2116 0.1144 5400 +5402 2 33.60139489013474 -278.2092682289946 43.3454 0.1144 5401 +5403 2 33.06553765925022 -279.428258464538 43.472 0.1144 5402 +5404 2 32.5296839813991 -280.2961705062817 43.5898 0.1144 5403 +5405 2 31.994677053308983 -281.2805135467523 43.6974 0.1144 5404 +5406 2 31.807040496740417 -282.59365412536334 43.7718 0.1144 5405 +5407 2 31.620038706406522 -283.9096992978966 43.8197 0.1144 5406 +5408 2 31.431551847043558 -285.23106475865677 43.8474 0.1144 5407 +5409 2 31.243773869428722 -286.59739063931096 43.8642 0.1144 5408 +5410 2 1.361254839777359 -185.74264417032634 29.9345 0.1144 4652 +5411 2 0.28609926523248247 -186.35459941670263 30.1554 0.1144 5410 +5412 2 -0.8313970825701522 -186.24633472978405 30.247 0.1144 5411 +5413 2 -1.8933653644642323 -186.34975889294068 30.329 0.1144 5412 +5414 2 -2.85730225591739 -185.20808685396082 30.4024 0.1144 5413 +5415 2 -3.7817009698186332 -184.8160827517492 30.4702 0.1144 5414 +5416 2 -4.661742827580205 -183.93571486587425 30.5326 0.1144 5415 +5417 2 -5.572388371758594 -182.98871850049164 30.5892 0.1144 5416 +5418 2 -6.647909965250958 -183.014607247016 30.709 0.1144 5417 +5419 2 -7.675195942000872 -183.27380032798686 30.8952 0.1144 5418 +5420 2 -8.708747067058571 -183.9603968848732 31.0332 0.1144 5419 +5421 2 -9.842791872122838 -183.98826656398995 31.0957 0.1144 5420 +5422 2 -10.984358156332577 -183.70305725862892 31.0892 0.1144 5421 +5423 2 -12.125786572529352 -184.16657490796993 31.0251 0.1144 5422 +5424 2 -13.267285551206196 -183.93598132758896 30.9159 0.1144 5423 +5425 2 -14.408008342602065 -184.27907969107116 30.7835 0.1144 5424 +5426 2 -15.549510874312276 -183.92401743002952 30.6527 0.1144 5425 +5427 2 -16.69100985298916 -184.02776727852506 30.5298 0.1144 5426 +5428 2 -16.683902038695642 -185.19300709312617 30.438 0.1144 5427 +5429 2 -16.596518278879294 -186.48574682165815 30.371 0.1144 5428 +5430 2 -16.509984821857326 -187.7680777786539 30.3212 0.1144 5429 +5431 2 -16.422742483087273 -189.10530961996096 30.2828 0.1144 5430 +5432 2 -16.00632535217466 -190.15367854632376 30.2358 0.1144 5431 +5433 2 -15.462292954039338 -191.03881843201293 30.1762 0.1144 5432 +5434 2 -14.909292310952207 -192.21214404452573 30.1064 0.1144 5433 +5435 2 -14.36836791888798 -193.54391524623517 30.0345 0.1144 5434 +5436 2 -14.489134729121204 -194.65798028201635 29.9922 0.1144 5435 +5437 2 -14.78607159923138 -195.75993360981892 29.981 0.1144 5436 +5438 2 -15.081452837832426 -196.86822651714607 29.9922 0.1144 5437 +5439 2 -15.378460270422675 -198.0295679521065 30.0163 0.1144 5438 +5440 2 -15.675467999099032 -199.3901694534008 30.0437 0.1144 5439 +5441 2 -15.915067073393834 -200.67563887302353 29.9908 0.1144 5440 +5442 2 -16.338327189841646 -201.96097627487688 29.9214 0.1144 5441 +5443 2 -16.222735314898202 -203.13801790900817 29.8556 0.1144 5442 +5444 2 -15.344407884786754 -203.58277508160643 29.7948 0.1144 5443 +5445 2 -14.314388497579857 -204.42870577658047 29.7382 0.1144 5444 +5446 2 -13.348119787336548 -204.83802163075893 29.685 0.1144 5445 +5447 2 -12.265764466218515 -205.43848938335844 29.6344 0.1144 5446 +5448 2 -11.201187134949064 -204.9120559387548 29.5742 0.1144 5447 +5449 2 -10.178415253249675 -206.4072001856655 29.4832 0.1144 5448 +5450 2 -9.389664866000604 -206.41761980635764 29.3023 0.1144 5449 +5451 2 -8.549977936869064 -207.85785270873725 29.1273 0.1144 5450 +5452 2 -7.92678074786858 -208.94950545587466 28.9666 0.1144 5451 +5453 2 -7.801440685558771 -210.05663490108316 28.8221 0.1144 5452 +5454 2 -8.360128897107424 -211.30683920979166 28.1182 0.1144 5453 +5455 2 -7.647125984844706 -170.88749756678055 25.7225 0.1144 4632 +5456 2 -7.634822307133339 -169.6952254905114 25.1129 0.1144 5455 +5457 2 -7.0843750215924 -168.43736573829352 24.8688 0.1144 5456 +5458 2 -6.533151844856634 -167.9541891877504 24.5982 0.1144 5457 +5459 2 -5.982775417881916 -166.85956396423845 24.3074 0.1144 5458 +5460 2 -5.430772500831804 -165.17199296308894 24.002 0.1144 5459 +5461 2 -4.880325215290905 -164.29642193628752 23.6874 0.1144 5460 +5462 2 -4.329102038555138 -163.8136929658028 23.3673 0.1144 5461 +5463 2 -3.879036954142469 -162.42182373536411 22.9865 0.1144 5462 +5464 2 -3.671013358349933 -161.01349205693006 22.5624 0.1144 5463 +5465 2 -3.6417920605120777 -159.74122538140932 22.1386 0.1144 5464 +5466 2 -3.6118618809260976 -158.46839351866487 21.7104 0.1144 5465 +5467 2 -3.5260384107566694 -157.15169378649117 21.2498 0.1144 5466 +5468 2 -3.6925090907910842 -156.1834238067096 20.7179 0.1144 5467 +5469 2 -4.076392368976775 -155.46479834009116 20.1117 0.1144 5468 +5470 2 -4.477203038130641 -154.4255086470979 19.449 0.1144 5469 +5471 2 -5.3693514416842 -152.88116967497766 18.8406 0.1144 5470 +5472 2 -6.336684078392963 -153.47457871299176 18.2349 0.1144 5471 +5473 2 -7.417301726643533 -152.58265920409048 17.6049 0.1144 5472 +5474 2 -8.126813150999178 -152.87514429499515 17.075 0.1144 5473 +5475 2 -8.161518997446754 -151.7069529418857 16.7329 0.1144 5474 +5476 2 -8.44841520854353 -151.93220096706972 16.1951 0.1144 5475 +5477 2 -9.344535131807799 -151.0864268088656 15.5269 0.1144 5476 +5478 2 -9.936096031623604 -151.51864026385638 14.846 0.1144 5477 +5479 2 -8.989248551671162 -150.69486555447196 14.2599 0.1144 5478 +5480 2 -8.433905511168089 -150.22839580700625 13.8677 0.1144 5479 +5481 2 -8.134400653666114 -148.9525152614354 13.5406 0.1144 5480 +5482 2 -7.968476911023188 -147.57967847685967 12.9343 0.1144 5481 +5483 2 -30.09517730850492 -188.7836554641469 22.9707 0.1144 4608 +5484 2 -31.13624647270457 -187.8093048090384 23.2165 0.1144 5483 +5485 2 -31.748942973946505 -186.87503656797657 23.4243 0.1144 5484 +5486 2 -32.384431950529574 -186.43408353679376 23.5947 0.1144 5485 +5487 2 -33.082829107635206 -184.8587432208449 23.7309 0.1144 5486 +5488 2 -33.84329756032986 -183.97401039895533 23.9058 0.1144 5487 +5489 2 -34.80075602748987 -183.91180139458191 24.0407 0.1144 5488 +5490 2 -35.585548900145945 -182.56974257693793 24.1405 0.1144 5489 +5491 2 -36.26128513812935 -181.8804289228268 24.2266 0.1144 5490 +5492 2 -36.93546929763691 -180.8913569360445 24.3039 0.1144 5491 +5493 2 -37.07476934336011 -179.89643563542367 24.1816 0.1144 5492 +5494 2 -36.95418501615667 -178.70980011283137 24.2621 0.1144 5493 +5495 2 -36.83360068895332 -177.52559719885676 24.2955 0.1144 5494 +5496 2 -36.62890409483907 -176.4092765524324 24.3419 0.1144 5495 +5497 2 -36.26387264079818 -175.0182643196738 24.4017 0.1144 5496 +5498 2 -36.320487108076215 -173.79924717126977 24.4786 0.1144 5497 +5499 2 -36.69631314175716 -172.8217862036772 24.6117 0.1144 5498 +5500 2 -37.43088742483371 -171.53599308176976 24.8484 0.1144 5499 +5501 2 -38.33432552911533 -171.02776059662116 25.0383 0.1144 5500 +5502 2 -39.04152611932379 -170.02168381872886 25.1869 0.1144 5501 +5503 2 -39.60257088514095 -168.59588365900115 25.3105 0.1144 5502 +5504 2 -40.2840161701171 -166.88523965473996 25.4054 0.1144 5503 +5505 2 -41.03887337822127 -165.83644569479554 25.4482 0.1144 5504 +5506 2 -41.886678545596325 -165.58592230941724 25.427 0.1144 5505 +5507 2 -42.694020618925244 -163.83003096375734 25.3402 0.1144 5506 +5508 2 -43.29614231689523 -163.31499982454514 25.1319 0.1144 5507 +5509 2 -43.68180377523066 -162.57619938155483 24.8503 0.1144 5508 +5510 2 -44.10303958473095 -161.21062405572226 24.5743 0.1144 5509 +5511 2 -44.639091612635724 -159.51707417873865 24.3556 0.1144 5510 +5512 2 -45.089379232177286 -158.41821262022654 24.191 0.1144 5511 +5513 2 -45.44280044709282 -157.60543412051786 24.0738 0.1144 5512 +5514 2 -45.87776238849405 -156.83015475322247 23.9838 0.1144 5513 +5515 2 -46.262627727793316 -155.30844038691276 23.8797 0.1144 5514 +5516 2 -46.6458668731033 -153.7135241220136 23.7571 0.1144 5515 +5517 2 -46.915945992680975 -152.28168675889592 23.6302 0.1144 5516 +5518 2 -47.06705468409807 -151.17354470666862 23.5117 0.1144 5517 +5519 2 -47.69194842746754 -150.80627913023199 23.3994 0.1144 5518 +5520 2 -48.6452464670631 -149.6697040421555 23.2768 0.1144 5519 +5521 2 -49.71923987106875 -149.8473952024725 23.0839 0.1144 5520 +5522 2 -50.82496869167593 -149.25931461741175 22.8507 0.1144 5521 +5523 2 -51.939225477188614 -150.33364223639185 22.6588 0.1144 5522 +5524 2 -53.008590877146474 -149.85652592173585 22.4995 0.1144 5523 +5525 2 -54.02595575224146 -151.31390000018166 22.3668 0.1144 5524 +5526 2 -54.97270798645215 -151.1418259584194 22.2553 0.1144 5525 +5527 2 -55.81397174734781 -152.67648446702367 22.147 0.1144 5526 +5528 2 -56.480303083393025 -153.5081880072836 21.9814 0.1144 5527 +5529 2 -57.03156356697871 -154.0738208759529 21.7547 0.1144 5528 +5530 2 -57.34963316672447 -155.50814778818562 21.533 0.1144 5529 +5531 2 -57.30844188390285 -156.7341763583363 21.3394 0.1144 5530 +5532 2 -57.09169517358349 -157.82399738267264 21.1623 0.1144 5531 +5533 2 -56.93327117293962 -159.00838339266699 20.9921 0.1144 5532 +5534 2 -56.94700523773544 -160.24695796562884 20.8211 0.1144 5533 +5535 2 -57.079713189739394 -161.587352954355 20.5887 0.1144 5534 +5536 2 -57.14138090091585 -162.86420332196016 20.2607 0.1144 5535 +5537 2 -57.264811442469025 -163.97604448246776 19.7433 0.1144 5536 +5538 2 -57.21637996230692 -165.14110372682737 19.2641 0.1144 5537 +5539 2 -57.09513252384221 -166.3265907870497 18.8886 0.1144 5538 +5540 2 -56.62049403868966 -167.61193663521271 18.6044 0.1144 5539 +5541 2 -56.00131891105425 -169.1149958869556 18.3942 0.1144 5540 +5542 2 -56.14224665883758 -170.21872222403687 18.2343 0.1144 5541 +5543 2 -56.7395367395016 -169.5726004643818 18.0969 0.1144 5542 +5544 2 -57.85617577242898 -170.4994700930437 17.9308 0.1144 5543 +5545 2 -58.86738762186624 -170.29297359700945 17.6557 0.1144 5544 +5546 2 -59.6410170106326 -171.8067608245325 17.1957 0.1144 5545 +5547 2 -60.673070240972706 -171.58524094770738 16.7731 0.1144 5546 +5548 2 -61.798712269041346 -172.60794497188544 16.3642 0.1144 5547 +5549 2 -62.80017519335455 -171.69794345457115 15.848 0.1144 5548 +5550 2 -63.47517604742532 -171.6679087610844 15.2595 0.1144 5549 +5551 2 -64.2932151510749 -171.15872138233692 14.7515 0.1144 5550 +5552 2 -64.25314558802522 -172.26468925522425 14.3224 0.1144 5551 +5553 2 -63.76478067488553 -173.71187036808988 13.9756 0.1144 5552 +5554 2 -63.330594920765236 -174.41731588556874 13.7058 0.1144 5553 +5555 2 -62.92565352664383 -175.09134105960786 13.377 0.1144 5554 +5556 2 -62.6225078438268 -176.36237464245545 13.0126 0.1144 5555 +5557 2 -62.637932151197504 -177.60097545393964 12.7364 0.1144 5556 +5558 2 -62.98023843543018 -178.83903695301694 12.5339 0.1144 5557 +5559 2 -63.479097024247494 -178.26288720850906 12.3203 0.1144 5558 +5560 2 -64.31383371857262 -177.2658101522572 12.1906 0.1144 5559 +5561 2 -65.04809346421408 -176.13952354375178 12.253 0.1144 5560 +5562 2 -65.34154208857603 -175.2539353997155 12.2798 0.1144 5561 +5563 2 -66.31460408918932 -175.89363842112155 12.2433 0.1144 5562 +5564 2 -66.88927819438975 -176.3416096111711 12.1422 0.1144 5563 +5565 2 -67.13101465780115 -177.1388879878345 13.2645 0.1144 5564 +5566 2 -67.82473450514877 -178.91798142804706 14.3245 0.1144 5565 +5567 2 -68.6385724478921 -179.03405513697442 14.7318 0.1144 5566 +5568 2 -69.12932087694617 -179.54857199634893 15.272 0.1144 5567 +5569 2 -68.42192735162354 -180.0075574683388 16.0574 0.1144 5568 +5570 2 -68.22672315411666 -181.20930655388025 16.9721 0.1144 5569 +5571 2 -68.15167905384693 -182.489790452332 17.8097 0.1144 5570 +5572 2 -68.59317531347085 -182.90581982428668 18.6166 0.1144 5571 +5573 2 -68.54599661111303 -183.96753373150557 19.3757 0.1144 5572 +5574 2 -68.23482368247423 -185.4479250141225 20.8074 0.1144 5573 +5575 2 -66.58082496717631 -175.97415833158308 11.9014 0.1144 5564 +5576 2 -66.01229452099264 -175.64404281406263 11.4548 0.1144 5575 +5577 2 -65.12290257101303 -174.32606729373535 10.8807 0.1144 5576 +5578 2 -64.55119355627819 -173.4548403961976 10.3453 0.1144 5577 +5579 2 -63.87273533848518 -173.18150802778365 9.8752 0.1144 5578 +5580 2 -63.577100058001385 -171.80410066086588 9.3544 0.1144 5579 +5581 2 -63.35043760445161 -170.3161041301691 8.8855 0.1144 5580 +5582 2 -62.885850269101844 -168.71620424490817 8.4913 0.1144 5581 +5583 2 -62.567652167984164 -167.8916688368758 8.0152 0.1144 5582 +5584 2 -62.34277188928896 -167.2981971890934 7.4388 0.1144 5583 +5585 2 -61.677494708867584 -166.86015956133025 6.8664 0.1144 5584 +5586 2 -61.556073200644455 -165.47788823099592 6.3164 0.1144 5585 +5587 2 -61.09055393671956 -163.87304603551019 5.7914 0.1144 5586 +5588 2 -60.43471677453846 -163.19357304654918 5.345 0.1144 5587 +5589 2 -60.32784425898818 -162.14239426570506 5.0157 0.1144 5588 +5590 2 -60.45548890016599 -160.77596164519383 4.721 0.1144 5589 +5591 2 -60.07015764418918 -160.1041336405317 4.4552 0.1144 5590 +5592 2 -60.0107970685412 -159.04134698094526 4.2274 0.1144 5591 +5593 2 -60.172422624338324 -157.69130293492282 3.9306 0.1144 5592 +5594 2 -60.15206851210275 -156.48937110828072 3.6506 0.1144 5593 +5595 2 -59.2746179434651 -155.79492450442277 3.3796 0.1144 5594 +5596 2 -58.51242194134561 -156.80306260954373 3.157 0.1144 5595 +5597 2 -59.408610110000716 -157.38660503690403 3.0063 0.1144 5596 +5598 2 -60.44471540038883 -157.99153746397567 2.9167 0.1144 5597 +5599 2 -61.350126795736394 -158.55730123589524 2.8804 0.1144 5598 +5600 2 -61.936992127356405 -160.236567122967 2.8738 0.1144 5599 +5601 2 -62.741987069572666 -160.28362456874365 2.8909 0.1144 5600 +5602 2 -63.71952567533022 -161.48954172894264 2.9267 0.1144 5601 +5603 2 -64.66875440632452 -161.75344491514255 2.9802 0.1144 5602 +5604 2 -65.40625803760253 -162.7614838250092 3.025 0.1144 5603 +5605 2 -65.95586183032964 -164.49230325559313 3.0636 0.1144 5604 +5606 2 -66.28872084466997 -165.32909283899969 3.27 0.1144 5605 +5607 2 -66.67971703080902 -166.0275924410612 3.5829 0.1144 5606 +5608 2 -66.71292683829569 -167.22524713204382 3.8833 0.1144 5607 +5609 2 -67.26411675940129 -168.31838495043672 4.1534 0.1144 5608 +5610 2 -67.4998868204751 -169.70996832801748 4.5539 0.1144 5609 +5611 2 -67.23520532181676 -170.36545374282238 4.8881 0.1144 5610 +5612 2 -66.72107829346426 -171.42962818379763 5.1757 0.1144 5611 +5613 2 -66.01944207225512 -173.18780013560993 5.3862 0.1144 5612 +5614 2 -65.44469130839245 -173.8985772484553 5.5345 0.1144 5613 +5615 2 -64.91026221752969 -174.43676165960528 5.6299 0.1144 5614 +5616 2 -64.37265426202963 -176.05753966284485 5.6809 0.1144 5615 +5617 2 -63.86817415959375 -177.73980611352155 5.7235 0.1144 5616 +5618 2 -63.26425385153236 -178.26244163478628 5.7648 0.1144 5617 +5619 2 -62.977975360217314 -179.1786272008829 5.8134 0.1144 5618 +5620 2 -63.13748097201912 -180.62121141394488 5.8963 0.1144 5619 +5621 2 -63.17873490223585 -181.9438721335822 6.0204 0.1144 5620 +5622 2 -63.28889996536108 -183.32387861852584 6.1984 0.1144 5621 +5623 2 -63.20230245975351 -184.5068570050413 6.3305 0.1144 5622 +5624 2 -62.66147587009148 -185.18962431771928 6.3688 0.1144 5623 +5625 2 -62.02211306317024 -186.8859300467487 6.3426 0.1144 5624 +5626 2 -61.32696178014862 -187.89290056592836 6.303 0.1144 5625 +5627 2 -60.72635465170423 -188.32068646238736 6.2576 0.1144 5626 +5628 2 -60.168478387510476 -189.8561415560667 6.2164 0.1144 5627 +5629 2 -59.706806521785886 -191.51760179086273 6.193 0.1144 5628 +5630 2 -59.30575513462421 -192.52652003257555 6.186 0.1144 5629 +5631 2 -68.05336904516324 -169.22510835331738 5.0613 0.1144 5610 +5632 2 -68.58369870220031 -167.53246604973364 4.7672 0.1144 5631 +5633 2 -68.97831883674618 -165.92282434538703 4.6555 0.1144 5632 +5634 2 -69.3624115417978 -164.99344023974191 4.5197 0.1144 5633 +5635 2 -70.31313102888738 -164.95353485808283 4.2913 0.1144 5634 +5636 2 -71.18148035831005 -163.97841396157847 3.8249 0.1144 5635 +5637 2 -72.29244063901379 -165.1059828149041 3.4514 0.1144 5636 +5638 2 -73.31547745635189 -164.93394107561375 3.1696 0.1144 5637 +5639 2 -74.35555082644716 -166.16129376777002 2.9731 0.1144 5638 +5640 2 -75.23337760750147 -166.22179279077886 2.8118 0.1144 5639 +5641 2 -57.46630667186986 -155.93115305962135 2.6425 0.1144 5596 +5642 2 -56.37732311180196 -155.8174402860085 2.5784 0.1144 5641 +5643 2 -55.28924403828668 -155.0686338674443 2.4888 0.1144 5642 +5644 2 -54.46643004423818 -154.56643344883972 2.329 0.1144 5643 +5645 2 -53.45049861107452 -153.9176012925198 2.1449 0.1144 5644 +5646 2 -52.34290924677932 -153.87909410141364 1.9596 0.1144 5645 +5647 2 -51.60835382905856 -153.002205643032 1.6616 0.1144 5646 +5648 2 -51.1923044094547 -151.44389753953035 1.1248 0.1144 5647 +5649 2 -55.90349915583687 -170.8176314863162 18.6831 0.1144 5542 +5650 2 -55.75262457454741 -171.8460853852627 18.5237 0.1144 5649 +5651 2 -56.31356573786633 -172.72596373838962 18.4399 0.1144 5650 +5652 2 -56.75959464276639 -173.45366493131064 18.3477 0.1144 5651 +5653 2 -57.13835578174159 -174.7484816569635 18.2136 0.1144 5652 +5654 2 -56.930110149006566 -175.6846794381001 18.0089 0.1144 5653 +5655 2 -56.234050056085756 -175.46658044660367 17.8015 0.1144 5654 +5656 2 -55.92166601854423 -174.4404104292899 17.6398 0.1144 5655 +5657 2 -54.98700295503083 -173.18001988608722 17.4587 0.1144 5656 +5658 2 -53.87009300331232 -173.72301623465702 17.4101 0.1144 5657 +5659 2 -52.75345397038493 -172.68445855217308 17.4334 0.1144 5658 +5660 2 -37.60172889177291 -180.71839231119282 24.3741 0.1144 5492 +5661 2 -38.701981577041735 -181.12895858925003 24.4379 0.1144 5660 +5662 2 -39.659149193655445 -180.0532961720643 24.572 0.1144 5661 +5663 2 -40.57684899309699 -178.44268552747505 24.7812 0.1144 5662 +5664 2 -41.35248658836529 -178.39099964652263 24.9362 0.1144 5663 +5665 2 -42.03621631835387 -177.31740584406157 25.0368 0.1144 5664 +5666 2 -42.73055766027791 -175.69323108692794 25.0831 0.1144 5665 +5667 2 -43.28518449735425 -175.17096705375266 25.0763 0.1144 5666 +5668 2 -43.955252346127864 -174.36415317145344 25.0185 0.1144 5667 +5669 2 -44.80462952373398 -172.7912973909128 24.885 0.1144 5668 +5670 2 -45.71842669262752 -172.98869208656524 24.7057 0.1144 5669 +5671 2 -46.47816938666578 -171.37285679419907 24.4863 0.1144 5670 +5672 2 -47.15473224055472 -170.40197721487738 24.2537 0.1144 5671 +5673 2 -47.89912932469748 -170.02740280340709 24.0187 0.1144 5672 +5674 2 -48.82832904600555 -168.48142176834273 23.8187 0.1144 5673 +5675 2 -49.92722014428212 -169.09211745858994 23.6764 0.1144 5674 +5676 2 -50.75934453228465 -167.59540318622783 23.5801 0.1144 5675 +5677 2 -51.468147629593474 -167.09904524829483 23.4656 0.1144 5676 +5678 2 -52.227940954356626 -166.30186310179275 23.3747 0.1144 5677 +5679 2 -53.247287237702906 -165.4379941016287 23.326 0.1144 5678 +5680 2 -53.95517883637831 -165.10594109389098 23.3509 0.1144 5679 +5681 2 -54.68906211098789 -163.5562771328881 23.4175 0.1144 5680 +5682 2 -55.506172599524504 -162.87373623063147 23.4865 0.1144 5681 +5683 2 -56.46678594834688 -162.2703986542745 23.5497 0.1144 5682 +5684 2 -57.529800838126576 -161.73949025492996 23.5975 0.1144 5683 +5685 2 -58.66088430785896 -161.57498344592852 23.6279 0.1144 5684 +5686 2 -59.80555128997276 -162.26260253827127 23.6436 0.1144 5685 +5687 2 -60.94784007589171 -161.32808180872246 23.6545 0.1144 5686 +5688 2 -62.09158569454467 -162.25710462116615 23.6692 0.1144 5687 +5689 2 -63.22435990503837 -161.4162142617525 23.69 0.1144 5688 +5690 2 -64.36510688150952 -161.76208401715715 23.7173 0.1144 5689 +5691 2 -65.50667366390566 -161.50580798787144 23.7506 0.1144 5690 +5692 2 -66.64800328132736 -161.4563941595472 23.7999 0.1144 5691 +5693 2 -67.08274949758024 -162.1581767903105 23.9186 0.1144 5692 +5694 2 -67.44938020177436 -163.78425422838046 24.0134 0.1144 5693 +5695 2 -67.48767872329663 -164.10670639365495 24.0852 0.1144 5694 +5696 2 -67.86237723710965 -165.7392667261954 24.1355 0.1144 5695 +5697 2 -69.07570526748323 -164.8573819520251 24.1816 0.1144 5696 +5698 2 -69.48391977561089 -164.16674392037444 24.1816 0.1144 5697 +5699 2 -69.84695762167397 -163.35586907751792 24.1816 0.1144 5698 +5700 2 -70.51548316281337 -162.15333460404653 24.1816 0.1144 5699 +5701 2 -71.23075481958796 -160.58551190053944 24.1816 0.1144 5700 +5702 2 -71.63187351228245 -159.8276000444691 24.1816 0.1144 5701 +5703 2 -66.8139492906246 -165.86786779951507 24.1788 0.1144 5696 +5704 2 -66.4186648893475 -167.41868011158851 24.1777 0.1144 5703 +5705 2 -66.44541975732953 -168.63434630716213 24.1762 0.1144 5704 +5706 2 -66.9100239695876 -169.25313419218497 24.1741 0.1144 5705 +5707 2 -67.67844838137793 -170.92312137781462 24.171 0.1144 5706 +5708 2 -68.27490991420382 -171.98233629009061 24.1668 0.1144 5707 +5709 2 -68.20624288279177 -173.2834240345946 24.1608 0.1144 5708 +5710 2 -68.2015163195401 -174.54295030126866 24.1525 0.1144 5709 +5711 2 -68.74546830387956 -175.03325626860428 24.1413 0.1144 5710 +5712 2 -69.42384865102552 -176.37513054337415 24.1249 0.1144 5711 +5713 2 -70.22130849413527 -177.56134697345937 24.1013 0.1144 5712 +5714 2 -71.22575993718766 -177.63144725853357 24.0697 0.1144 5713 +5715 2 -72.35707114873861 -178.1880315529435 24.0281 0.1144 5714 +5716 2 -73.38304478769163 -177.35963399488045 23.9762 0.1144 5715 +5717 2 -73.7895625719056 -178.00541952414454 23.858 0.1144 5716 +5718 2 -74.5450271742485 -178.567727281004 23.7282 0.1144 5717 +5719 2 -74.64545431903545 -179.67216837056318 23.619 0.1144 5718 +5720 2 -74.335830009825 -181.19040482090043 23.4623 0.1144 5719 +5721 2 -73.69965258143543 -182.33194340318158 23.3435 0.1144 5720 +5722 2 -73.55334539561164 -183.4255666213074 23.2729 0.1144 5721 +5723 2 -74.08595645632593 -184.82082997489834 23.2468 0.1144 5722 +5724 2 -74.32955390509693 -185.79078630905727 23.253 0.1144 5723 +5725 2 -74.18729246752697 -187.1686058537556 23.3674 0.1144 5724 +5726 2 -73.82979743760723 -187.32524137072085 23.5079 0.1144 5725 +5727 2 -72.70600559021278 -186.6113244475986 22.962 0.1144 5726 +5728 2 -71.81074366306655 -188.17029899769926 22.734 0.1144 5727 +5729 2 -71.1036582503551 -188.31427533357885 22.4093 0.1144 5728 +5730 2 -70.09054336150004 -189.4502997884801 22.1415 0.1144 5729 +5731 2 -69.1580536492775 -189.75269199755132 21.8935 0.1144 5730 +5732 2 -68.22887711667187 -190.70022336212747 21.6733 0.1144 5731 +5733 2 -67.38114606481025 -191.65834911538747 21.5239 0.1144 5732 +5734 2 -66.28352961232399 -191.79832711557827 21.3699 0.1144 5733 +5735 2 -74.45372720875626 -187.9962261554645 23.4698 0.1144 5725 +5736 2 -74.44562016035479 -189.25512643486996 23.5299 0.1144 5735 +5737 2 -74.37288695074724 -190.58379429724442 23.5947 0.1144 5736 +5738 2 -74.14565011778357 -192.0462035267235 23.72 0.1144 5737 +5739 2 -73.66464768554803 -193.28289850580796 23.8967 0.1144 5738 +5740 2 -73.17226752102385 -193.8821992059265 24.1002 0.1144 5739 +5741 2 -72.7341408331328 -194.72620327362384 24.3723 0.1144 5740 +5742 2 -72.14092362761504 -196.3979693860419 24.678 0.1144 5741 +5743 2 -71.54832381323725 -197.62761480226163 24.917 0.1144 5742 +5744 2 -71.2233300051421 -198.48499159213765 25.0563 0.1144 5743 +5745 2 -71.14650061865609 -199.6762122791606 25.1212 0.1144 5744 +5746 2 -71.58047745760854 -201.29561411149302 25.1593 0.1144 5745 +5747 2 -72.27422730363912 -201.86124211208073 25.1968 0.1144 5746 +5748 2 -72.79468474086994 -202.5680238221019 25.2837 0.1144 5747 +5749 2 -73.316755048215 -204.24362494356936 25.4325 0.1144 5748 +5750 2 -73.9660563453975 -205.48328966285067 25.6353 0.1144 5749 +5751 2 -74.46781748416569 -206.04833045177867 25.8412 0.1144 5750 +5752 2 -74.60873466683486 -207.1265010905255 26.0277 0.1144 5751 +5753 2 -74.06964619171187 -208.76029325960965 26.2441 0.1144 5752 +5754 2 -73.2445120103868 -209.5645684946655 26.4639 0.1144 5753 +5755 2 -72.19439012270809 -209.88669326384493 26.6628 0.1144 5754 +5756 2 -71.08737071926025 -210.10451522596895 26.913 0.1144 5755 +5757 2 -70.13330380055068 -210.73575386521622 27.2224 0.1144 5756 +5758 2 -69.03100753386263 -211.01598078716705 27.4938 0.1144 5757 +5759 2 -67.89792139910917 -211.14035954288067 27.7443 0.1144 5758 +5760 2 -66.76551996102856 -210.6030073589633 28.0036 0.1144 5759 +5761 2 -65.62402749624613 -211.38826083101912 28.2254 0.1144 5760 +5762 2 -64.56671771526918 -210.07179310033735 28.4718 0.1144 5761 +5763 2 -63.469442800569006 -210.81928591230715 28.7375 0.1144 5762 +5764 2 -62.85643463368251 -210.52253981102885 28.8957 0.1144 5763 +5765 2 -61.7519363420352 -210.99563299073998 28.943 0.1144 5764 +5766 2 -60.61406883554407 -210.32668015733626 28.98 0.1144 5765 +5767 2 -59.48513050476678 -210.89908193344007 29.0237 0.1144 5766 +5768 2 -58.38641563424085 -209.74415749673932 29.0811 0.1144 5767 +5769 2 -57.31056805485615 -209.29927566629567 29.1679 0.1144 5768 +5770 2 -56.265866239041586 -209.01704943019615 29.3779 0.1144 5769 +5771 2 -55.272559061922145 -209.02879751171608 29.75 0.1144 5770 +5772 2 -54.14114323798839 -208.92874271687054 30.0684 0.1144 5771 +5773 2 -53.032639818399254 -208.36127379027351 30.3324 0.1144 5772 +5774 2 -51.92013071616689 -208.516787592868 30.5525 0.1144 5773 +5775 2 -50.83675484765621 -207.6174757035056 30.7734 0.1144 5774 +5776 2 -49.85014594122456 -207.66311690417135 31.0176 0.1144 5775 +5777 2 -48.96265160221172 -206.38150869128452 31.2262 0.1144 5776 +5778 2 -48.075879764908045 -205.80528328021109 31.3956 0.1144 5777 +5779 2 -47.10884184690904 -205.11063378130012 31.5342 0.1144 5778 +5780 2 -46.04422682363303 -204.7482467276886 31.6509 0.1144 5779 +5781 2 -44.90954845080726 -204.3941342089896 31.7554 0.1144 5780 +5782 2 -43.83199680678626 -204.4041574811739 31.8626 0.1144 5781 +5783 2 -42.848772342738364 -203.34225575100947 31.99 0.1144 5782 +5784 2 -41.87330796085482 -203.1621507861331 32.2294 0.1144 5783 +5785 2 -40.89066288081022 -202.40773668736745 32.5814 0.1144 5784 +5786 2 -39.89838874813021 -201.99547655067857 32.9213 0.1144 5785 +5787 2 -38.86803612337886 -202.1466642148324 33.2548 0.1144 5786 +5788 2 -37.92766776800633 -201.39886367544938 33.5574 0.1144 5787 +5789 2 -37.051544849487996 -200.63231270534482 33.7991 0.1144 5788 +5790 2 -36.151033260322336 -199.8519933654573 33.9912 0.1144 5789 +5791 2 -35.199388528096726 -199.1381375709429 34.1684 0.1144 5790 +5792 2 -34.22424549362886 -198.47675195816396 34.391 0.1144 5791 +5793 2 -33.208493488648145 -197.15708485659462 34.6696 0.1144 5792 +5794 2 -32.243064887730014 -197.26187288032713 34.9706 0.1144 5793 +5795 2 -31.282491219361724 -196.32589178147913 35.4203 0.1144 5794 +5796 2 -30.728165116703067 -196.90591831051245 36.1642 0.1144 5795 +5797 2 -30.68542162886423 -196.85989360223795 36.7461 0.1144 5796 +5798 2 -30.197350109419645 -195.91061195843184 37.1756 0.1144 5797 +5799 2 -29.723078837389444 -194.31663516291465 37.4699 0.1144 5798 +5800 2 -29.144385927771197 -193.04809192889053 37.6499 0.1144 5799 +5801 2 -28.53801485477743 -192.59391611649832 37.7322 0.1144 5800 +5802 2 -28.009523361744336 -191.4043345850401 37.7538 0.1144 5801 +5803 2 -28.182876379126228 -190.4923118735855 37.7798 0.1144 5802 +5804 2 -29.12421965699001 -189.22285713571966 37.8137 0.1144 5803 +5805 2 -29.228634099440875 -188.26984639454514 37.8972 0.1144 5804 +5806 2 -29.15413743474913 -187.1033536760961 37.9915 0.1144 5805 +5807 2 -29.061889225858337 -185.92144577202666 38.0638 0.1144 5806 +5808 2 -28.826339452850732 -184.97211749004543 38.0769 0.1144 5807 +5809 2 -28.715496004846763 -183.8644930454878 38.0657 0.1144 5808 +5810 2 -28.576306371602435 -182.78344599009898 38.073 0.1144 5809 +5811 2 -28.84060538352085 -181.32922545220407 38.1083 0.1144 5810 +5812 2 -29.727654324868308 -180.4296807557802 38.185 0.1144 5811 +5813 2 -30.75299507730253 -181.0181475841863 38.4261 0.1144 5812 +5814 2 -31.020289178369467 -179.69518048268722 38.7215 0.1144 5813 +5815 2 -30.974952691235384 -178.5023127967189 39.0032 0.1144 5814 +5816 2 -30.911864457801954 -177.33006928121108 39.268 0.1144 5815 +5817 2 -30.7385753624643 -177.17639889556415 39.0202 0.1144 5816 +5818 2 -30.267539897590435 -176.13561983657428 39.4472 0.1144 5817 +5819 2 -29.825563052738296 -174.55394880600838 39.6654 0.1144 5818 +5820 2 -29.572274857306404 -173.04839654946926 39.8588 0.1144 5819 +5821 2 -29.39829061321148 -171.85975990964278 40.0246 0.1144 5820 +5822 2 -29.127169745986222 -170.83392458293486 40.1951 0.1144 5821 +5823 2 -29.010559608183783 -169.79249157490295 40.4541 0.1144 5822 +5824 2 -28.701384932148905 -168.93109862763555 40.6319 0.1144 5823 +5825 2 -27.92543517304967 -168.71327413059396 40.7294 0.1144 5824 +5826 2 -26.789415088471912 -169.02664707866262 40.7644 0.1144 5825 +5827 2 -25.654241753655203 -168.73803563919284 40.7498 0.1144 5826 +5828 2 -24.519068714924646 -169.55447127393228 40.7002 0.1144 5827 +5829 2 -23.38304863034685 -168.95394516929207 40.6372 0.1144 5828 +5830 2 -22.24780473305011 -169.6845823248757 40.5983 0.1144 5829 +5831 2 -21.11185195400521 -169.40490797677444 40.5941 0.1144 5830 +5832 2 -19.9719252816455 -169.7258518901342 40.6347 0.1144 5831 +5833 2 -19.09135384377727 -168.8752741309162 40.7876 0.1144 5832 +5834 2 -18.294595574248667 -168.4392460795977 41.0522 0.1144 5833 +5835 2 -17.797294459802586 -167.1671545142459 41.4686 0.1144 5834 +5836 2 -17.97351007025615 -166.09051221497458 41.8737 0.1144 5835 +5837 2 -18.042224475445884 -164.88546030886164 42.1744 0.1144 5836 +5838 2 -17.826993937942976 -163.5165757946684 42.3696 0.1144 5837 +5839 2 -17.451448674368905 -162.00213842195353 42.467 0.1144 5838 +5840 2 -17.10427683595731 -161.04683397387902 42.488 0.1144 5839 +5841 2 -17.210191288114753 -159.764057057019 42.1772 0.1144 5840 +5842 2 -28.22067935265606 -167.7203501608119 41.1544 0.1144 5824 +5843 2 -27.735084329995136 -166.08556632910012 41.1883 0.1144 5842 +5844 2 -27.19441552658965 -165.01568883023327 41.2471 0.1144 5843 +5845 2 -26.644798113901462 -164.50141199086403 41.3624 0.1144 5844 +5846 2 -26.290338206185268 -163.2479508241733 41.4557 0.1144 5845 +5847 2 -26.256315402754186 -161.9727081187562 41.5257 0.1144 5846 +5848 2 -26.3646932299206 -160.79968024400702 41.5747 0.1144 5847 +5849 2 -26.42287694866889 -159.5896251388167 41.6147 0.1144 5848 +5850 2 -31.751826685586078 -177.31666416773143 39.6802 0.1144 5816 +5851 2 -32.62484940438667 -178.66763986852666 40.1279 0.1144 5850 +5852 2 -33.455639717445976 -178.67781104900803 40.507 0.1144 5851 +5853 2 -34.08219541487869 -180.26733746695288 40.8027 0.1144 5852 +5854 2 -34.43181375139092 -181.83175131370106 41.0614 0.1144 5853 +5855 2 -34.56371531533065 -183.1810662402503 41.1953 0.1144 5854 +5856 2 -34.723133191657936 -184.3459510416028 41.2152 0.1144 5855 +5857 2 -34.882621926551444 -185.51465166641742 41.1636 0.1144 5856 +5858 2 -35.04281599015971 -186.68786336769546 41.0659 0.1144 5857 +5859 2 -35.21517759329868 -187.86551312111803 40.9438 0.1144 5858 +5860 2 -35.45714174201379 -188.9279455182861 40.8122 0.1144 5859 +5861 2 -35.65857203210228 -190.16517668573448 40.6812 0.1144 5860 +5862 2 -35.822191195877295 -191.4314130625815 40.5017 0.1144 5861 +5863 2 -35.88822344606278 -192.47228363214685 40.1478 0.1144 5862 +5864 2 -36.014466391634315 -193.77809446749043 39.8737 0.1144 5863 +5865 2 -36.12126734833163 -195.07084725967854 39.6724 0.1144 5864 +5866 2 -36.08408450691396 -196.31821563845352 39.5385 0.1144 5865 +5867 2 -35.71311821380423 -197.28055732794536 39.4682 0.1144 5866 +5868 2 -35.274442436678925 -198.38799068154668 39.4584 0.1144 5867 +5869 2 -35.56582530080373 -199.44142048803948 39.4965 0.1144 5868 +5870 2 -36.11130922976353 -200.7258423475804 39.5455 0.1144 5869 +5871 2 -36.456156557551914 -202.07475602895823 39.6043 0.1144 5870 +5872 2 -36.08452570162481 -202.90919040155723 39.7208 0.1144 5871 +5873 2 -35.20704502127442 -203.68245872060564 39.9067 0.1144 5872 +5874 2 -34.77310975600362 -204.83736667072458 40.075 0.1144 5873 +5875 2 -34.903405259809574 -206.04603539399602 40.1892 0.1144 5874 +5876 2 -35.39641013715232 -206.91595729783103 40.2492 0.1144 5875 +5877 2 -36.30022278053318 -207.7973297583988 40.2528 0.1144 5876 +5878 2 -37.41943355598598 -207.79611314682913 40.1974 0.1144 5877 +5879 2 -38.37460189106723 -208.5826373832084 40.0879 0.1144 5878 +5880 2 -38.954961854557965 -209.56418866027286 39.9333 0.1144 5879 +5881 2 -39.55885968771533 -210.36716974670014 39.7188 0.1144 5880 +5882 2 -40.08664960716729 -210.86125245481398 39.3781 0.1144 5881 +5883 2 -40.56589805784 -211.7468115048643 38.9141 0.1144 5882 +5884 2 -41.030563263836825 -213.38693223813067 38.3614 0.1144 5883 +5885 2 -41.32041793847496 -214.87662833617873 37.7325 0.1144 5884 +5886 2 -41.30759732205508 -216.08453661277142 37.0807 0.1144 5885 +5887 2 -41.132154143748835 -217.14212176609055 36.5002 0.1144 5886 +5888 2 -40.80553760071201 -217.95197296252456 35.9386 0.1144 5887 +5889 2 -40.44749381019974 -218.70581097103798 35.3889 0.1144 5888 +5890 2 -40.241325456185685 -219.9977604843508 34.9182 0.1144 5889 +5891 2 -40.187190742638485 -221.31131949893685 34.5372 0.1144 5890 +5892 2 -40.09904115855503 -222.66448869895027 34.2292 0.1144 5891 +5893 2 -39.85102294205438 -224.08416711864794 34.1384 0.1144 5892 +5894 2 -39.44352037052172 -225.6922826625334 34.0281 0.1144 5893 +5895 2 -38.963283762553296 -227.00907784921 33.9038 0.1144 5894 +5896 2 -38.90101748688766 -228.27085461825237 33.7565 0.1144 5895 +5897 2 -38.39659837819053 -229.3954380770125 33.5504 0.1144 5896 +5898 2 -37.89529684430586 -230.4721930218475 33.1794 0.1144 5897 +5899 2 -30.368996904173034 -198.03370888776877 37.469 0.1144 5796 +5900 2 -29.584345950749654 -198.27099177869178 37.2201 0.1144 5899 +5901 2 -28.65585786995056 -199.36605319281534 37.123 0.1144 5900 +5902 2 -27.640401593564007 -199.666058164648 37.0283 0.1144 5901 +5903 2 -26.673374071134496 -200.4653938306567 36.9286 0.1144 5902 +5904 2 -25.995215520125694 -201.63401019901812 36.8136 0.1144 5903 +5905 2 -25.65319542830149 -202.53996862946207 36.6744 0.1144 5904 +5906 2 -25.303107822944526 -203.45452408621782 36.5056 0.1144 5905 +5907 2 -24.807528659927524 -204.7373266580562 36.2886 0.1144 5906 +5908 2 -24.305708533677976 -206.19356033468472 35.8943 0.1144 5907 +5909 2 -23.838662588337407 -207.07806828837812 35.3304 0.1144 5908 +5910 2 -23.423129514035722 -207.82118131111383 34.7519 0.1144 5909 +5911 2 -22.666737804650733 -208.80571965544235 34.2454 0.1144 5910 +5912 2 -21.817745726959828 -209.72511058334536 33.7011 0.1144 5911 +5913 2 -20.824306495435113 -209.45968348926368 33.1173 0.1144 5912 +5914 2 -19.70606815583963 -209.83838758980187 32.6572 0.1144 5913 +5915 2 -18.671277759908886 -210.2086448852835 32.3322 0.1144 5914 +5916 2 -17.90026855384496 -211.29405360975306 32.1031 0.1144 5915 +5917 2 -17.369021288480624 -212.19451643471143 31.948 0.1144 5916 +5918 2 -16.545571037936348 -213.12181747854493 31.7806 0.1144 5917 +5919 2 -15.630906689340136 -213.9087306209682 31.6733 0.1144 5918 +5920 2 -14.700866530065195 -214.61471026407355 31.5972 0.1144 5919 +5921 2 -13.815955861177418 -215.44308775738034 31.5431 0.1144 5920 +5922 2 -12.9867791885457 -216.27144280489472 31.5092 0.1144 5921 +5923 2 -12.312669144551581 -217.3915599255078 31.493 0.1144 5922 +5924 2 -11.549609515762706 -217.5167438790277 31.4924 0.1144 5923 +5925 2 -10.874652722007497 -218.62734518800437 31.4924 0.1144 5924 +5926 2 -10.372575000841836 -220.30227984994946 31.4924 0.1144 5925 +5927 2 -9.897976581299975 -221.2316655205411 31.4924 0.1144 5926 +5928 2 -9.542216737613744 -222.02959666538703 31.4924 0.1144 5927 +5929 2 -9.255145182109413 -222.97651865963664 31.4924 0.1144 5928 +5930 2 -8.830636554688976 -224.47095809798935 31.4924 0.1144 5929 +5931 2 -8.296278026306332 -226.16694104692203 31.4924 0.1144 5930 +5932 2 -7.567948757682087 -226.57237252279688 31.4924 0.1144 5931 +5933 2 -6.865596844744239 -227.45598047291344 31.4924 0.1144 5932 +5934 2 -6.113125141001984 -229.03504018182616 31.4924 0.1144 5933 +5935 2 -5.287899967255228 -229.12475447148597 31.4924 0.1144 5934 +5936 2 -4.398194306668692 -230.52918083087542 31.4924 0.1144 5935 +5937 2 -63.527925504858715 -210.6788337258194 29.6534 0.1144 5763 +5938 2 -63.63005550229711 -209.62377820877214 31.1758 0.1144 5937 +5939 2 -63.560591966692215 -210.04903347526437 31.74 0.1144 5938 +5940 2 -63.656719377857414 -210.85842544477038 32.4439 0.1144 5939 +5941 2 -63.96588958496018 -209.60994196511052 33.0529 0.1144 5940 +5942 2 -63.893805866652855 -208.4383047592087 33.5255 0.1144 5941 +5943 2 -63.288304732122576 -207.59179197047973 33.882 0.1144 5942 +5944 2 -63.22911707076307 -206.26759432484045 34.1446 0.1144 5943 +5945 2 -62.83260744243579 -204.62156466778134 34.375 0.1144 5944 +5946 2 -62.82200457241346 -203.34856599644854 34.6668 0.1144 5945 +5947 2 -63.2913619066026 -202.8595786341142 35.0538 0.1144 5946 +5948 2 -62.33650153854712 -202.0045156248483 35.5796 0.1144 5947 +5949 2 -62.80489639077689 -201.61195671170918 36.1595 0.1144 5948 +5950 2 -63.867057720814955 -201.66117310672303 36.6218 0.1144 5949 +5951 2 -64.66155446190669 -200.02899151279985 37.0023 0.1144 5950 +5952 2 -65.40187905605987 -199.8806112043445 37.2775 0.1144 5951 +5953 2 -66.0340243561566 -198.63674654373497 37.3926 0.1144 5952 +5954 2 -66.64594467011756 -196.92521925843423 37.5166 0.1144 5953 +5955 2 -67.61066100579886 -197.2545548122253 37.6782 0.1144 5954 +5956 2 -62.81471611180285 -208.1090484880782 31.4924 0.1144 5938 +5957 2 -62.993239355971255 -207.1390606780244 31.4924 0.1144 5956 +5958 2 -63.7432882485017 -206.50539343701297 31.4924 0.1144 5957 +5959 2 -63.911433290575545 -205.09052210885977 31.4924 0.1144 5958 +5960 2 -63.34243438456549 -204.20311092751842 31.4924 0.1144 5959 +5961 2 -74.13499434603568 -176.8200997499529 24.8655 0.1144 5716 +5962 2 -74.40632037329509 -175.55377699901516 25.2439 0.1144 5961 +5963 2 -75.51411922097115 -175.10855928261032 25.6743 0.1144 5962 +5964 2 -76.63479724868674 -174.96019517332584 26.1182 0.1144 5963 +5965 2 -77.76354208964841 -175.0527112675303 26.5485 0.1144 5964 +5966 2 -78.85899115433511 -174.94811109897728 26.973 0.1144 5965 +5967 2 -79.91868623757365 -175.92792191311608 27.3416 0.1144 5966 +5968 2 -80.99345952747905 -175.40219670027656 27.7657 0.1144 5967 +5969 2 -82.12753788425957 -176.19998887271677 28.1579 0.1144 5968 +5970 2 -83.23693642376031 -176.0812849838034 28.5457 0.1144 5969 +5971 2 -84.34562608151295 -176.69188695315063 28.9173 0.1144 5970 +5972 2 -85.45587492380807 -176.72319900489393 29.2578 0.1144 5971 +5973 2 -86.56941020398443 -176.89471163505806 29.5495 0.1144 5972 +5974 2 -87.70905263367808 -176.25230523931643 29.7382 0.1144 5973 +5975 2 -88.85119574523064 -176.2530060035468 29.8116 0.1144 5974 +5976 2 -89.98754818400978 -176.15800069986219 29.7556 0.1144 5975 +5977 2 -91.12227413271356 -176.70514555024613 29.598 0.1144 5976 +5978 2 -92.25784712726451 -176.22444002687146 29.3642 0.1144 5977 +5979 2 -93.39341982572934 -176.80018537684165 29.0746 0.1144 5978 +5980 2 -94.52977226450847 -176.5818603984004 28.7482 0.1144 5979 +5981 2 -95.6605306316915 -176.80676385431832 28.3878 0.1144 5980 +5982 2 -96.77223260810193 -176.68024135315932 27.9715 0.1144 5981 +5983 2 -97.82166768411886 -176.4441274294599 27.53 0.1144 5982 +5984 2 -98.71237933227907 -176.04820361311147 26.9499 0.1144 5983 +5985 2 -99.78752865154472 -175.9457842892757 26.4132 0.1144 5984 +5986 2 -100.92217347265424 -176.24243921532732 25.9738 0.1144 5985 +5987 2 -102.0268610573119 -175.73454317513387 25.5993 0.1144 5986 +5988 2 -103.10511013462374 -175.72701832768692 25.2605 0.1144 5987 +5989 2 -104.21736169845485 -175.193943105818 24.9547 0.1144 5988 +5990 2 -105.13767049075682 -175.78313655528683 24.5386 0.1144 5989 +5991 2 -105.98766180255572 -174.6426807375047 24.1666 0.1144 5990 +5992 2 -107.04975888190782 -174.3950970819108 23.8795 0.1144 5991 +5993 2 -108.12242395455135 -173.67133525868232 23.6703 0.1144 5992 +5994 2 -108.83530279879703 -172.6534056687995 23.5146 0.1144 5993 +5995 2 -109.33494408878977 -172.06383723617478 23.3578 0.1144 5994 +5996 2 -109.83617150716105 -170.7989947478899 23.2655 0.1144 5995 +5997 2 -110.8943075188869 -169.8774097368385 23.2088 0.1144 5996 +5998 2 -110.86768615686624 -171.1459919214152 23.1797 0.1144 5997 +5999 2 -110.84019080516228 -172.42859463198303 23.1794 0.1144 5998 +6000 2 -110.79332077011705 -173.7000011705296 23.2086 0.1144 5999 +6001 2 -110.70120281024036 -174.94211399007966 23.2672 0.1144 6000 +6002 2 -110.18142171292588 -176.06045345067736 23.3485 0.1144 6001 +6003 2 -109.31598628854252 -177.54644502547038 23.4654 0.1144 6002 +6004 2 -108.5175418976853 -177.66164592950912 23.6484 0.1144 6003 +6005 2 -108.18692017019174 -178.87790520852178 23.8593 0.1144 6004 +6006 2 -108.18060166495387 -180.09787236765408 24.1566 0.1144 6005 +6007 2 -108.55059391891547 -181.23727997355272 24.5384 0.1144 6006 +6008 2 -109.07840021708931 -182.93299756577517 24.8655 0.1144 6007 +6009 2 -109.46923760708741 -184.23460888029825 25.1055 0.1144 6008 +6010 2 -109.42732787377633 -185.49088972119995 25.3272 0.1144 6009 +6011 2 -109.23646121492757 -186.83344669751054 25.4695 0.1144 6010 +6012 2 -109.04240592059986 -187.97494608875368 25.519 0.1144 6011 +6013 2 -109.34590234259744 -189.25938359943575 25.4912 0.1144 6012 +6014 2 -109.98782428196753 -189.73551549804668 25.4184 0.1144 6013 +6015 2 -110.33514129655907 -190.82054515874006 25.2332 0.1144 6014 +6016 2 -109.99471769612728 -192.07451180998333 24.9693 0.1144 6015 +6017 2 -109.50731095511205 -193.74346503808886 24.6721 0.1144 6016 +6018 2 -109.09573213845614 -195.1141777975194 24.1816 0.1144 6017 +6019 2 -111.83305225597461 -170.14735077089827 23.0569 0.1144 5997 +6020 2 -112.46617404314844 -168.77389051260243 22.4274 0.1144 6019 +6021 2 -113.00216182036725 -167.8903776510498 22.1879 0.1144 6020 +6022 2 -113.72877390258057 -167.3982156911308 21.9523 0.1144 6021 +6023 2 -114.31163254167282 -165.85401082115894 21.7339 0.1144 6022 +6024 2 -114.44904204502495 -164.4570674989356 21.575 0.1144 6023 +6025 2 -114.60195921136079 -163.03120517724443 21.4765 0.1144 6024 +6026 2 -115.17421985847875 -162.22203074859436 21.4331 0.1144 6025 +6027 2 -116.01954497603683 -161.66826684857153 21.4182 0.1144 6026 +6028 2 -116.68002994747948 -160.01936071803038 21.4253 0.1144 6027 +6029 2 -117.50998251130608 -159.67657357809335 21.4467 0.1144 6028 +6030 2 -118.23259296209594 -158.62081224519568 21.4754 0.1144 6029 +6031 2 -118.85671427331812 -157.03239087462956 21.51 0.1144 6030 +6032 2 -119.53166781012608 -156.4945248457594 21.5783 0.1144 6031 +6033 2 -120.22192304209945 -155.54043645336117 21.6912 0.1144 6032 +6034 2 -120.77245399838345 -153.96073443912806 21.7811 0.1144 6033 +6035 2 -121.19533968876178 -152.84030203929413 21.8484 0.1144 6034 +6036 2 -121.75152245343344 -152.1524192840374 21.8947 0.1144 6035 +6037 2 -122.27309584904515 -150.9803030068815 21.9218 0.1144 6036 +6038 2 -122.99401250422675 -149.36550007300318 21.9321 0.1144 6037 +6039 2 -66.33925378862824 -164.2137984597743 24.1816 0.1144 5694 +6040 2 -65.68095319492322 -163.6846546321072 25.7684 0.1144 6039 +6041 2 -65.29415231307946 -163.33438037798396 26.5064 0.1144 6040 +6042 2 -66.32360987443411 -163.94364114562023 27.1638 0.1144 6041 +6043 2 -67.40938812421504 -163.91275828082766 27.7909 0.1144 6042 +6044 2 -68.14288281590267 -165.46548538457748 28.3318 0.1144 6043 +6045 2 -69.20555660956785 -165.1687958888566 28.1232 0.1144 6044 +6046 2 -70.33693137151799 -166.01597493892433 28.1252 0.1144 6045 +6047 2 -71.39363743783098 -165.40494559909098 28.128 0.1144 6046 +6048 2 -71.64796066614986 -164.6789548390175 28.1319 0.1144 6047 +6049 2 -71.2538032865543 -163.03194506216525 28.1375 0.1144 6048 +6050 2 -71.06032257374082 -161.73299282436807 28.145 0.1144 6049 +6051 2 -70.68475312509148 -161.01138384077956 28.1557 0.1144 6050 +6052 2 -69.94395319110481 -160.48037145359763 28.1705 0.1144 6051 +6053 2 -69.12616049252932 -158.68353419545943 28.1924 0.1144 6052 +6054 2 -68.48902999182468 -158.3438871182836 28.222 0.1144 6053 +6055 2 -67.94107282302848 -157.45272091886267 28.2607 0.1144 6054 +6056 2 -67.73461492567287 -156.00033260798443 28.3086 0.1144 6055 +6057 2 -67.42550705698443 -154.4593707031541 28.4113 0.1144 6056 +6058 2 -66.82804373339013 -153.41726409980168 28.5407 0.1144 6057 +6059 2 -66.28985142676831 -152.90651671901375 28.6608 0.1144 6058 +6060 2 -65.77990829725711 -151.54902514096514 28.7714 0.1144 6059 +6061 2 -65.27484759883308 -149.8345939895288 28.8809 0.1144 6060 +6062 2 -64.64341598420764 -149.1870292342501 29.001 0.1144 6061 +6063 2 -64.05411146265396 -148.57881766807822 29.141 0.1144 6062 +6064 2 -63.62923847609193 -146.92483124143328 29.3152 0.1144 6063 +6065 2 -63.14930532874632 -145.2676912933172 29.538 0.1144 6064 +6066 2 -63.59367653290325 -144.72596533840422 29.9603 0.1144 6065 +6067 2 -64.12534814126359 -144.3240442797122 30.5371 0.1144 6066 +6068 2 -64.3694995395069 -143.0209657787148 31.1282 0.1144 6067 +6069 2 -64.43091551237814 -141.7164449941073 31.6526 0.1144 6068 +6070 2 -64.48420673311146 -140.41740597332048 32.1 0.1144 6069 +6071 2 -64.53919471031413 -139.11695548227095 32.4654 0.1144 6070 +6072 2 -64.69768956952414 -137.71086781223988 32.7298 0.1144 6071 +6073 2 -64.86099274430799 -136.29949087362326 32.9244 0.1144 6072 +6074 2 -65.47920850134587 -135.08698207219945 33.0672 0.1144 6073 +6075 2 -66.43914020834228 -135.20413676977017 33.1685 0.1144 6074 +6076 2 -67.41104355397874 -133.59850257434348 33.2436 0.1144 6075 +6077 2 -68.41767350464617 -134.02546398848597 33.3068 0.1144 6076 +6078 2 -69.31139441661725 -132.2705983573095 33.3698 0.1144 6077 +6079 2 -70.28163376322816 -132.51259381034072 33.4396 0.1144 6078 +6080 2 -71.40565191439674 -131.42498368338812 33.5577 0.1144 6079 +6081 2 -72.52716662494565 -132.24019311302092 33.7308 0.1144 6080 +6082 2 -73.65030752948381 -131.18851085705177 33.9391 0.1144 6081 +6083 2 -74.2118575637909 -130.84329061577372 34.1256 0.1144 6082 +6084 2 -74.73165979133374 -129.84983747930934 34.2779 0.1144 6083 +6085 2 -75.45990487751683 -128.10424363559844 34.4019 0.1144 6084 +6086 2 -76.22860950471278 -127.75241287291193 34.5033 0.1144 6085 +6087 2 -76.97536209453453 -126.80422086811923 34.5937 0.1144 6086 +6088 2 -77.47737201198088 -125.16973822627112 34.7581 0.1144 6087 +6089 2 -77.82428785876718 -123.97651146954257 34.9353 0.1144 6088 +6090 2 -77.91731661699063 -122.8051973192241 35.1257 0.1144 6089 +6091 2 -77.43003766354889 -121.70450736702188 35.3228 0.1144 6090 +6092 2 -76.68677129970636 -121.55987682262305 35.5211 0.1144 6091 +6093 2 -76.10604566986919 -120.08304699970222 35.9078 0.1144 6092 +6094 2 -75.33602831971973 -119.0742396699688 36.2709 0.1144 6093 +6095 2 -74.83331581880775 -118.53451972407396 37.116 0.1144 6094 +6096 2 -67.92411262546395 -165.6541689995846 28.8092 0.1144 6044 +6097 2 -67.31722367390374 -165.94846786237238 29.2975 0.1144 6096 +6098 2 -66.51315773195705 -166.56251204246928 29.871 0.1144 6097 +6099 2 -65.40002892149553 -166.54997615905052 30.4931 0.1144 6098 +6100 2 -64.30114163486746 -166.51640246021913 31.108 0.1144 6099 +6101 2 -63.21556955500522 -165.70301874905869 31.7341 0.1144 6100 +6102 2 -62.48409114829973 -165.1239701757691 32.5298 0.1144 6101 +6103 2 -62.12811987149033 -164.70762226404455 33.5961 0.1144 6102 +6104 2 -61.30062724266912 -164.18854221327703 34.8174 0.1144 6103 +6105 2 -60.905789489747335 -164.32275219270414 36.2564 0.1144 6104 +6106 2 -61.14512007537009 -164.5912336769018 37.0812 0.1144 6105 +6107 2 -62.22750677670058 -165.5033831115141 36.9636 0.1144 6106 +6108 2 -63.31074378082553 -165.54561780534877 36.9096 0.1144 6107 +6109 2 -64.39227692241442 -166.1626851752141 36.8542 0.1144 6108 +6110 2 -65.4307409754287 -166.57173299296 36.82 0.1144 6109 +6111 2 -66.3402147938382 -167.5216280083086 36.8197 0.1144 6110 +6112 2 -67.08667660314022 -167.86859569177437 36.8628 0.1144 6111 +6113 2 -67.72208310745332 -169.64320347519697 36.9695 0.1144 6112 +6114 2 -68.26608877736459 -170.72329613774465 37.1328 0.1144 6113 +6115 2 -68.53398390436126 -171.62850362499142 37.3184 0.1144 6114 +6116 2 -68.57854775724769 -172.83071516315522 37.5074 0.1144 6115 +6117 2 -68.44829526516779 -174.1986221396084 37.751 0.1144 6116 +6118 2 -68.21640585792441 -175.5802217218196 38.1237 0.1144 6117 +6119 2 -68.15671437963107 -176.83831807639086 38.526 0.1144 6118 +6120 2 -68.42220031537701 -177.7497320303174 38.8514 0.1144 6119 +6121 2 -68.8495497987227 -178.4431873838775 39.0863 0.1144 6120 +6122 2 -69.34321263100259 -180.02172483475724 39.2392 0.1144 6121 +6123 2 -69.63458187516628 -181.5808995770068 39.3173 0.1144 6122 +6124 2 -69.79159085632895 -183.03285091328155 39.3378 0.1144 6123 +6125 2 -69.93240342661531 -184.3251560993532 39.3319 0.1144 6124 +6126 2 -70.0197487744773 -185.4818206417703 39.3187 0.1144 6125 +6127 2 -69.87667384277646 -186.86394800707342 39.3 0.1144 6126 +6128 2 -69.6502431957767 -187.96258560852152 39.2734 0.1144 6127 +6129 2 -69.52242663668322 -189.09724915615567 39.2361 0.1144 6128 +6130 2 -69.8405736088896 -190.57184305889376 39.1863 0.1144 6129 +6131 2 -70.29785570194032 -191.23350087563608 39.123 0.1144 6130 +6132 2 -70.4993974143922 -192.22899319250402 39.0062 0.1144 6131 +6133 2 -70.62967929823712 -193.3316497475799 38.8567 0.1144 6132 +6134 2 -70.88135788050195 -194.48997169835346 38.6728 0.1144 6133 +6135 2 -71.47148596311428 -196.23319055667594 38.479 0.1144 6134 +6136 2 -72.4028283367435 -196.59665629988598 38.3141 0.1144 6135 +6137 2 -73.33659628034533 -197.49612988082882 38.1814 0.1144 6136 +6138 2 -73.58032883836847 -198.9945218999623 38.0783 0.1144 6137 +6139 2 -73.63617963322218 -200.3207641059086 37.9201 0.1144 6138 +6140 2 -74.11938234154064 -201.24139604954217 37.7978 0.1144 6139 +6141 2 -74.22378772694829 -202.37225623006407 37.679 0.1144 6140 +6142 2 -74.07095800000081 -203.78215761527997 37.5676 0.1144 6141 +6143 2 -74.4747423737578 -204.51391496934826 37.4984 0.1144 6142 +6144 2 -75.1345711004346 -205.67573385113153 37.4713 0.1144 6143 +6145 2 -75.71825431047004 -207.30091738872437 37.546 0.1144 6144 +6146 2 -76.27102986176774 -207.97597578932795 37.5998 0.1144 6145 +6147 2 -76.878960119304 -208.71643021678943 37.6533 0.1144 6146 +6148 2 -77.39535137833929 -210.37836798896112 37.7045 0.1144 6147 +6149 2 -78.03074781572467 -211.52199879980697 37.7471 0.1144 6148 +6150 2 -78.62494483529326 -211.98039091661235 37.7611 0.1144 6149 +6151 2 -79.19808048197896 -213.37608797433933 37.7695 0.1144 6150 +6152 2 -79.63924433088657 -214.914617036874 37.9098 0.1144 6151 +6153 2 -80.12493084415561 -215.81723061355171 38.0859 0.1144 6152 +6154 2 -80.87955826547879 -216.33725841937817 38.2656 0.1144 6153 +6155 2 -81.17836154939963 -217.684673894416 38.4681 0.1144 6154 +6156 2 -81.25530776703897 -219.02545537704498 38.6394 0.1144 6155 +6157 2 -81.42043844549266 -220.46202816933788 38.7663 0.1144 6156 +6158 2 -81.20207886505902 -221.47951092572163 38.8528 0.1144 6157 +6159 2 -81.05011661390037 -222.57219370457656 38.9222 0.1144 6158 +6160 2 -81.45486972489589 -224.16854373970352 38.9861 0.1144 6159 +6161 2 -82.30758908872724 -224.93005469450043 39.0508 0.1144 6160 +6162 2 -83.31930265362107 -226.09298257657932 39.1801 0.1144 6161 +6163 2 -84.29537711847762 -226.0475920630388 39.3506 0.1144 6162 +6164 2 -85.22105711860503 -227.49642914739803 39.5108 0.1144 6163 +6165 2 -86.11100752445986 -227.57668246907207 39.662 0.1144 6164 +6166 2 -86.86314482903833 -228.5072036805857 39.807 0.1144 6165 +6167 2 -87.22170141181941 -229.53873572739082 39.9454 0.1144 6166 +6168 2 -87.22338291248116 -230.7908185430801 40.1262 0.1144 6167 +6169 2 -87.07496489622014 -232.01238673949132 40.4905 0.1144 6168 +6170 2 -87.43927839795803 -232.80474602583945 40.8198 0.1144 6169 +6171 2 -88.06427520693435 -233.8922366579348 41.0396 0.1144 6170 +6172 2 -88.54664804240005 -235.36708248236394 41.1298 0.1144 6171 +6173 2 -88.81529211675553 -236.63252837899043 41.1594 0.1144 6172 +6174 2 -89.05244824598299 -237.90646919338346 41.1468 0.1144 6173 +6175 2 -89.35914642523417 -238.8648208947513 41.1071 0.1144 6174 +6176 2 -89.71763875732927 -240.08029800565367 41.0791 0.1144 6175 +6177 2 -90.17089197903444 -241.3879316510109 41.0696 0.1144 6176 +6178 2 -90.68720586560912 -242.67748812844195 41.0724 0.1144 6177 +6179 2 -90.92274912472226 -243.96834571053336 41.0819 0.1144 6178 +6180 2 -90.79903880943506 -245.2417204997227 41.0984 0.1144 6179 +6181 2 -90.64216363031981 -246.50910036277054 41.1152 0.1144 6180 +6182 2 -90.48613845791286 -247.772667095231 41.1233 0.1144 6181 +6183 2 -90.32919242023144 -249.03377334603778 41.1113 0.1144 6182 +6184 2 -90.17154105383523 -250.29022032091723 41.0497 0.1144 6183 +6185 2 -90.39244057272015 -251.5968282504624 40.9394 0.1144 6184 +6186 2 -91.0773431649036 -252.554871544398 40.782 0.1144 6185 +6187 2 -91.74359002242156 -253.4395708091833 40.5182 0.1144 6186 +6188 2 -92.33477477984725 -254.57835840212857 40.0898 0.1144 6187 +6189 2 -92.9251095305647 -255.69204643341294 38.803 0.1144 6188 +6190 2 -60.81697120255633 -164.75482432235532 37.6222 0.1144 6105 +6191 2 -60.36621661774765 -166.10834913446368 39.0048 0.1144 6190 +6192 2 -60.156137826832165 -167.48506660860886 40.2668 0.1144 6191 +6193 2 -60.49130121794012 -168.26707005620017 41.3736 0.1144 6192 +6194 2 -61.07520497465695 -168.56142561513352 42.5718 0.1144 6193 +6195 2 -60.499318485904695 -169.1324784887695 42.9072 0.1144 6194 +6196 2 -59.49273265206773 -170.07968365232642 42.3287 0.1144 6195 +6197 2 -58.46514288605321 -170.18096569634764 42.0854 0.1144 6196 +6198 2 -57.43600074547674 -170.63852171383644 41.8015 0.1144 6197 +6199 2 -56.40685860490027 -171.28267206319282 41.4915 0.1144 6198 +6200 2 -55.379342954399156 -171.66586172369037 41.1678 0.1144 6199 +6201 2 -54.35097700110367 -172.3775929758647 40.8422 0.1144 6200 +6202 2 -53.321834860527204 -172.70976254345163 40.5264 0.1144 6201 +6203 2 -52.292692719950765 -173.45515066982213 40.2223 0.1144 6202 +6204 2 -51.26510621088343 -173.76360298970212 39.9364 0.1144 6203 +6205 2 -50.23589350782689 -174.53124879516074 39.674 0.1144 6204 +6206 2 -49.31820245029853 -173.7681574759648 39.4041 0.1144 6205 +6207 2 -48.198253292601116 -173.66188156425667 39.2246 0.1144 6206 +6208 2 -47.062076526871266 -173.13096719223597 39.1208 0.1144 6207 +6209 2 -46.66609386547518 -173.58632493435164 39.1574 0.1144 6208 +6210 2 -46.69468890371847 -174.65164806621965 40.5208 0.1144 6209 +6211 2 -47.23475393594505 -176.14111897201423 40.9536 0.1144 6210 +6212 2 -47.49711974021808 -177.54641256559458 41.4263 0.1144 6211 +6213 2 -47.4519200159925 -178.74509144745213 41.8788 0.1144 6212 +6214 2 -47.71013851447576 -180.14841353643698 42.3489 0.1144 6213 +6215 2 -48.6170162222282 -179.3094479033647 42.7582 0.1144 6214 +6216 2 -49.62667856889408 -179.58305864608622 43.0769 0.1144 6215 +6217 2 -50.6410853656044 -179.26490880422207 43.4017 0.1144 6216 +6218 2 -51.577994425322075 -180.2452939568752 43.7819 0.1144 6217 +6219 2 -52.59927275469446 -179.8749636902063 44.1638 0.1144 6218 +6220 2 -53.46996039775769 -181.0052669915367 44.546 0.1144 6219 +6221 2 -54.437869250593096 -181.4434841860692 44.8409 0.1144 6220 +6222 2 -55.47393773231774 -182.11241862903563 45.0657 0.1144 6221 +6223 2 -56.50353084459604 -182.45854892174094 45.2332 0.1144 6222 +6224 2 -57.57611211995506 -183.15132250405287 45.3821 0.1144 6223 +6225 2 -58.67240773230252 -183.23221360966005 45.5221 0.1144 6224 +6226 2 -59.733722199549774 -184.56541586410373 45.6366 0.1144 6225 +6227 2 -60.522951240094415 -184.30799502245517 45.8917 0.1144 6226 +6228 2 -61.3201699235248 -185.45874091230783 46.2566 0.1144 6227 +6229 2 -62.291501117766074 -185.74576156015104 46.4136 0.1144 6228 +6230 2 -63.275829630405056 -186.42099610391722 46.3526 0.1144 6229 +6231 2 -64.26008758056389 -186.82611218277796 46.1356 0.1144 6230 +6232 2 -65.35410931301305 -187.250854783431 45.8881 0.1144 6231 +6233 2 -66.47723334064293 -186.73583815485284 45.6856 0.1144 6232 +6234 2 -67.58122360503955 -186.96095105656386 45.5658 0.1144 6233 +6235 2 -68.66147890040583 -186.0613317743484 45.6607 0.1144 6234 +6236 2 -69.79166093843244 -186.91250734149168 45.8685 0.1144 6235 +6237 2 -70.93473192734035 -185.8988823278923 46.0894 0.1144 6236 +6238 2 -72.0734497366259 -186.85054056219775 46.2902 0.1144 6237 +6239 2 -73.2138511806061 -186.35825052663756 46.4596 0.1144 6238 +6240 2 -74.24942076214988 -186.74237995403794 46.7569 0.1144 6239 +6241 2 -75.37422240876643 -186.2167511784266 47.2385 0.1144 6240 +6242 2 -46.762905916798275 -174.9800220248557 39.2722 0.1144 6209 +6243 2 -47.09231594198273 -176.44879176856264 39.3288 0.1144 6242 +6244 2 -47.42406429985181 -178.03498671429782 39.3672 0.1144 6243 +6245 2 -48.19027987670239 -178.73882131262818 39.3896 0.1144 6244 +6246 2 -49.15805036333839 -179.15142389222456 39.3994 0.1144 6245 +6247 2 -49.557151167759855 -180.7573745080486 39.4128 0.1144 6246 +6248 2 -49.88493470286899 -182.00998567915235 39.4316 0.1144 6247 +6249 2 -50.24017079786617 -182.92495416137803 39.4579 0.1144 6248 +6250 2 -50.59866312996127 -183.72331648497672 39.4948 0.1144 6249 +6251 2 -50.86977718720593 -184.96807705088798 39.5475 0.1144 6250 +6252 2 -51.09228928011902 -186.3266554112318 39.6197 0.1144 6251 +6253 2 -51.3116159945004 -187.8156360651135 39.7155 0.1144 6252 +6254 2 -51.562498255628824 -189.33822565384614 39.8516 0.1144 6253 +6255 2 -51.91940495753177 -190.49132362349937 40.0744 0.1144 6254 +6256 2 -52.29167079530553 -191.36067979366157 40.3648 0.1144 6255 +6257 2 -52.662381297656225 -192.16943521592503 40.6958 0.1144 6256 +6258 2 -53.033088246973584 -193.49517296970993 41.0399 0.1144 6257 +6259 2 -53.367316654659604 -195.03398451827897 41.3129 0.1144 6258 +6260 2 -53.6951001897687 -196.47728974404185 41.5097 0.1144 6259 +6261 2 -54.02443935638698 -197.57768882477018 41.6413 0.1144 6260 +6262 2 -54.35300233572427 -198.48792752827916 41.7262 0.1144 6261 +6263 2 -54.68156561114772 -199.47755917822872 41.799 0.1144 6262 +6264 2 -55.001237717993845 -200.790603281114 41.9104 0.1144 6263 +6265 2 -55.28692820993392 -202.2411038025812 42.0062 0.1144 6264 +6266 2 -55.56851245806776 -203.75869548676454 42.0787 0.1144 6265 +6267 2 -55.80566503426188 -204.93438945181077 42.1299 0.1144 6266 +6268 2 -56.02004201202316 -206.1255396855687 42.1616 0.1144 6267 +6269 2 -56.219987233082634 -207.23631073437733 42.1758 0.1144 6268 +6270 2 -56.3477858101633 -208.34874871564938 42.1772 0.1144 6269 +6271 2 -56.44899219707811 -209.4934047712428 42.1772 0.1144 6270 +6272 2 -56.512927180272634 -210.7101961286096 42.1772 0.1144 6271 +6273 2 -56.38185793711456 -212.07986687559122 42.1772 0.1144 6272 +6274 2 -55.90897019008921 -213.60675020091622 42.1772 0.1144 6273 +6275 2 -55.60896882382039 -214.8839563322058 42.1772 0.1144 6274 +6276 2 -55.88653426753636 -216.0629274198098 42.1772 0.1144 6275 +6277 2 -56.271773830804776 -216.96919289019087 42.1772 0.1144 6276 +6278 2 -56.35996592842783 -218.1318417012892 42.1772 0.1144 6277 +6279 2 -46.661589893867315 -172.13542716537498 38.6523 0.1144 6208 +6280 2 -45.71337070347996 -172.71401257637308 37.3996 0.1144 6279 +6281 2 -44.72761644223327 -171.9271676994612 36.8192 0.1144 6280 +6282 2 -43.73779180598592 -172.77951918042882 36.1208 0.1144 6281 +6283 2 -42.949785840648744 -171.19852338685683 35.5211 0.1144 6282 +6284 2 -42.23191463321364 -170.82023076844422 34.9311 0.1144 6283 +6285 2 -41.155756012912256 -170.96099408554505 34.3602 0.1144 6284 +6286 2 -40.062815083836874 -171.13691916601607 33.8192 0.1144 6285 +6287 2 -38.97717875328863 -171.60950243142562 33.3474 0.1144 6286 +6288 2 -37.88499032460538 -171.37871747075826 32.8289 0.1144 6287 +6289 2 -37.00845894792478 -172.26126819046465 32.205 0.1144 6288 +6290 2 -36.474791484523976 -173.09984382651157 32.4982 0.1144 6289 +6291 2 -35.686840473258286 -173.55413001133664 32.6939 0.1144 6290 +6292 2 -34.88271022411076 -174.87734817791056 32.765 0.1144 6291 +6293 2 -34.00499663210593 -175.21917301604032 32.8297 0.1144 6292 +6294 2 -32.905647935203255 -175.386494549571 32.9375 0.1144 6293 +6295 2 -32.68537892923296 -174.49201439162889 33.0316 0.1144 6294 +6296 2 -32.487910204957146 -173.34823618138404 33.0996 0.1144 6295 +6297 2 -31.920484103450672 -171.72504204078973 33.1794 0.1144 6296 +6298 2 -36.287836513266456 -172.2097100842112 31.612 0.1144 6289 +6299 2 -35.26132740504026 -172.5026453454401 31.003 0.1144 6298 +6300 2 -34.38268094460241 -173.16798577363866 30.2924 0.1144 6299 +6301 2 -33.7296227047499 -173.4404139340666 29.6537 0.1144 6300 +6302 2 -32.73606873739968 -174.55099917681372 29.1043 0.1144 6301 +6303 2 -31.713946915213413 -173.76361316500552 28.56 0.1144 6302 +6304 2 -30.83729305286893 -174.93865433106575 28.1238 0.1144 6303 +6305 2 -30.628715211517914 -176.36644751363207 27.7706 0.1144 6304 +6306 2 -30.7079963027943 -177.52010927684114 27.4687 0.1144 6305 +6307 2 -30.716261042232336 -178.69043099585065 27.1036 0.1144 6306 +6308 2 -30.490978560654085 -179.9626572330121 26.5612 0.1144 6307 +6309 2 -30.983719587801527 -180.21795998308238 26.024 0.1144 6308 +6310 2 -31.674633140824586 -180.79558321035665 25.4327 0.1144 6309 +6311 2 -32.07615320342461 -182.38084547623586 24.8868 0.1144 6310 +6312 2 -32.18459752710558 -183.7440122049843 24.4376 0.1144 6311 +6313 2 -32.75292180337058 -184.68860533912246 23.6191 0.1144 6312 +6314 2 -61.7855835222004 -169.26970046878745 43.6741 0.1144 6194 +6315 2 -62.69227874692298 -168.55169232960978 44.7756 0.1144 6314 +6316 2 -63.7994442664087 -169.45955426307677 45.6582 0.1144 6315 +6317 2 -64.82094262523208 -169.12513473597906 46.2949 0.1144 6316 +6318 2 -65.61438366392404 -170.67952174793615 46.7547 0.1144 6317 +6319 2 -66.37644157197096 -171.39713438398388 47.1576 0.1144 6318 +6320 2 -66.99563508458566 -171.88157095291194 47.4158 0.1144 6319 +6321 2 -67.61736233258901 -173.6598392631657 47.5611 0.1144 6320 +6322 2 -68.24468740732212 -174.73534738225715 47.6451 0.1144 6321 +6323 2 -68.87767465345674 -175.0850985027937 47.684 0.1144 6322 +6324 2 -69.22329411730637 -176.53993722648687 47.6722 0.1144 6323 +6325 2 -69.39883754594376 -178.00787964815072 47.6176 0.1144 6324 +6326 2 -69.57282534307197 -179.4731837623045 47.5499 0.1144 6325 +6327 2 -69.74681314020023 -180.93934273407507 47.4762 0.1144 6326 +6328 2 -69.92079738429511 -182.32013394748097 47.4012 0.1144 6327 +6329 2 -70.13602466485081 -183.3344286500344 47.3348 0.1144 6328 +6330 2 -70.41845566274574 -184.2421574265605 47.2889 0.1144 6329 +6331 2 -70.70173696343497 -185.14765357252327 47.2592 0.1144 6330 +6332 2 -70.98572359283907 -186.3177555644183 47.2422 0.1144 6331 +6333 2 -71.26900489352838 -187.8784020366678 47.2329 0.1144 6332 +6334 2 -71.55221533565143 -189.44482479728026 47.2282 0.1144 6333 +6335 2 -71.8362728236217 -190.9484996396912 47.224 0.1144 6334 +6336 2 -72.11948326574479 -191.93149770798567 47.2184 0.1144 6335 +6337 2 -72.33315165784413 -192.9326118191282 47.2105 0.1144 6336 +6338 2 -72.24096283940123 -194.28858117663844 47.199 0.1144 6337 +6339 2 -72.14792401425004 -195.64609418908628 47.1828 0.1144 6338 +6340 2 -72.05573193885996 -197.0050349935575 47.1604 0.1144 6339 +6341 2 -71.96361397898328 -198.3618630330197 47.1313 0.1144 6340 +6342 2 -72.65261611802218 -197.7148642371684 47.5154 0.1144 6341 +6343 2 -73.78114116910407 -198.5640552627263 48.0127 0.1144 6342 +6344 2 -74.78755132989177 -197.13070517058 48.2138 0.1144 6343 +6345 2 -75.50127366695128 -196.79210368366 48.4635 0.1144 6344 +6346 2 -76.04599352052021 -195.944006026712 48.8202 0.1144 6345 +6347 2 -76.86051914475678 -194.33470505750336 49.1529 0.1144 6346 +6348 2 -77.87825255798879 -194.66622749379104 49.4908 0.1144 6347 +6349 2 -78.10148094954855 -193.3518423925562 49.7356 0.1144 6348 +6350 2 -78.31009935469665 -191.94531677682755 49.8985 0.1144 6349 +6351 2 -78.51871775984475 -190.47750624067345 49.9926 0.1144 6350 +6352 2 -78.78805118901082 -188.95623419787444 50.034 0.1144 6351 +6353 2 -79.35793314174741 -187.9967682737278 50.05 0.1144 6352 +6354 2 -79.93113834102863 -187.47695874476946 50.0503 0.1144 6353 +6355 2 -80.4840716785829 -186.04919070823783 50.0503 0.1144 6354 +6356 2 -80.7977858528777 -184.4938756317734 50.0503 0.1144 6355 +6357 2 -81.21826916198583 -183.2661060819425 50.0503 0.1144 6356 +6358 2 -81.8027711680618 -182.66716123436777 50.0503 0.1144 6357 +6359 2 -82.38805261836592 -181.57744388682272 50.0503 0.1144 6358 +6360 2 -71.71369885180255 -199.77489885009408 47.0212 0.1144 6341 +6361 2 -71.46628420438047 -200.7828924056622 46.9216 0.1144 6360 +6362 2 -71.35791970108899 -201.9379071096347 46.8227 0.1144 6361 +6363 2 -71.26248175161486 -203.11508496851536 46.7424 0.1144 6362 +6364 2 -71.02319185633064 -204.10645131744195 46.6791 0.1144 6363 +6365 2 -70.72884229844942 -205.03168768032305 46.6304 0.1144 6364 +6366 2 -70.43286625049288 -206.43868316309346 46.5917 0.1144 6365 +6367 2 -70.13696106110254 -207.98427634833678 46.5536 0.1144 6366 +6368 2 -69.84261150322132 -209.52936824276162 46.5046 0.1144 6367 +6369 2 -69.54663545526475 -210.9843662845214 46.4349 0.1144 6368 +6370 2 -69.25065940730818 -211.89999071979258 46.3369 0.1144 6369 +6371 2 -68.95630984942696 -212.81745975270152 46.2064 0.1144 6370 +6372 2 -68.66280704130678 -213.7369996056281 46.0379 0.1144 6371 +6373 2 -68.19800773594233 -215.06488345226404 45.7534 0.1144 6372 +6374 2 -67.49100729994458 -216.72305418378687 45.3278 0.1144 6373 +6375 2 -66.69259686500425 -216.6796317858097 44.8342 0.1144 6374 +6376 2 -65.87960979326832 -217.94985703356713 44.3836 0.1144 6375 +6377 2 -65.32997651355635 -219.44693437887088 44.0082 0.1144 6376 +6378 2 -65.01209885685014 -220.3289056962482 43.6979 0.1144 6377 +6379 2 -64.82215306327586 -221.384966816953 43.4168 0.1144 6378 +6380 2 -65.07807399497197 -222.8111319796394 43.0489 0.1144 6379 +6381 2 -65.62294103097823 -223.907629782137 42.6059 0.1144 6380 +6382 2 -65.82863636101398 -224.8757873139606 42.2064 0.1144 6381 +6383 2 -66.02689133949852 -225.8980754623389 41.8799 0.1144 6382 +6384 2 -66.48171381267392 -226.81221058511306 41.6161 0.1144 6383 +6385 2 -67.04427110305431 -228.56757376363012 41.37 0.1144 6384 +6386 2 -67.62063900386299 -229.71934167457624 41.1278 0.1144 6385 +6387 2 -68.19778634889983 -230.15937267967342 40.8727 0.1144 6386 +6388 2 -68.98153338398356 -231.58968329898798 40.6224 0.1144 6387 +6389 2 -69.8625488005168 -232.28532739768553 40.3869 0.1144 6388 +6390 2 -70.73224046641927 -232.91769961187873 40.126 0.1144 6389 +6391 2 -71.57518164420131 -234.28423883039682 39.8146 0.1144 6390 +6392 2 -72.41331421032345 -234.29040273422643 39.4612 0.1144 6391 +6393 2 -73.25059676973731 -235.99025711324822 39.0816 0.1144 6392 +6394 2 -74.08467026373054 -236.25024673028133 38.7016 0.1144 6393 +6395 2 -74.89759059814662 -237.3063735443517 38.369 0.1144 6394 +6396 2 -75.70483543728625 -238.49071238351712 38.0985 0.1144 6395 +6397 2 -76.30874718649076 -238.9317738820771 37.8952 0.1144 6396 +6398 2 -76.56933707118841 -240.15839565814645 37.7588 0.1144 6397 +6399 2 -76.75782393055138 -241.63593619480895 37.6712 0.1144 6398 +6400 2 -76.94319597386271 -243.12895561520995 37.6121 0.1144 6399 +6401 2 -77.12843014916103 -244.62068190756398 37.5659 0.1144 6400 +6402 2 -77.2498647791588 -245.9758891094378 37.5172 0.1144 6401 +6403 2 -77.04290661790263 -247.0757063949597 37.4259 0.1144 6402 +6404 2 -76.83182178289863 -248.11010106495428 37.3251 0.1144 6403 +6405 2 -76.53104422934884 -249.02201288792816 37.2431 0.1144 6404 +6406 2 -76.28432810066097 -250.2419231286724 37.1834 0.1144 6405 +6407 2 -76.35881094329135 -251.50507293705783 37.144 0.1144 6406 +6408 2 -75.88184389629585 -252.93938772939555 37.1227 0.1144 6407 +6409 2 -75.03898165556029 -254.25319228524933 37.1165 0.1144 6408 +6410 2 -74.15816361051769 -254.3289794574339 37.116 0.1144 6409 +6411 2 -73.23129876284673 -255.96061929921234 37.116 0.1144 6410 +6412 2 -72.21662468944915 -255.61521289332063 37.116 0.1144 6411 +6413 2 -71.18096356078242 -257.14610774229834 37.116 0.1144 6412 +6414 2 -70.10590972682972 -256.5759830626929 37.116 0.1144 6413 +6415 2 -68.97383383296996 -257.70637222401575 37.116 0.1144 6414 +6416 2 -67.84979475367331 -257.2008130711908 37.116 0.1144 6415 +6417 2 -66.70747902391834 -257.7609277411642 37.116 0.1144 6416 +6418 2 -65.56515648418285 -257.6112949048692 37.116 0.1144 6417 +6419 2 -64.42358289180616 -257.6445541532481 37.116 0.1144 6418 +6420 2 -27.373139370874704 -219.22932269870205 19.57 0.1144 4582 +6421 2 -28.06125102847873 -220.8146205906819 19.9746 0.1144 6420 +6422 2 -28.42789535263389 -221.9086917950333 20.125 0.1144 6421 +6423 2 -28.804290919002373 -222.67764041514266 20.3042 0.1144 6422 +6424 2 -28.741400940402652 -223.90795272898634 20.6438 0.1144 6423 +6425 2 -29.485565681104013 -224.73272012770423 21.0825 0.1144 6424 +6426 2 -29.69741746328942 -225.003110547237 21.5008 0.1144 6425 +6427 2 -30.752436285359423 -225.18571667215554 21.9445 0.1144 6426 +6428 2 -31.74054969438896 -226.0108811588718 22.3503 0.1144 6427 +6429 2 -32.6994527933223 -226.585367392993 22.7641 0.1144 6428 +6430 2 -33.40315373969075 -227.17679341144367 23.209 0.1144 6429 +6431 2 -33.75207425775551 -228.67276619508263 23.7799 0.1144 6430 +6432 2 -34.52062722743268 -229.68096758307934 24.5275 0.1144 6431 +6433 2 -35.26241001680545 -230.35791158027695 25.2636 0.1144 6432 +6434 2 -35.73316681304974 -231.2539473224494 26.1504 0.1144 6433 +6435 2 -36.37865652862087 -231.8276465130217 27.2136 0.1144 6434 +6436 2 -37.46605140364974 -232.01517430915527 28.1114 0.1144 6435 +6437 2 -38.41280689480757 -232.78447709200947 28.8355 0.1144 6436 +6438 2 -38.24720251113278 -233.08807355371272 29.4669 0.1144 6437 +6439 2 -37.443818450583294 -233.94862442495386 30.0535 0.1144 6438 +6440 2 -36.51959877970836 -233.83742037510382 30.7734 0.1144 6439 +6441 2 -36.52335279407289 -233.12362973773202 31.5932 0.1144 6440 +6442 2 -37.28095123249911 -233.243708866168 32.4128 0.1144 6441 +6443 2 -37.78284067053888 -234.34177398505733 33.1915 0.1144 6442 +6444 2 -38.483136448495806 -235.3784875209211 33.845 0.1144 6443 +6445 2 -38.573242629793256 -236.53138507697804 34.4294 0.1144 6444 +6446 2 -37.967099368644675 -237.45378061327764 34.9961 0.1144 6445 +6447 2 -37.78944024933203 -238.56478213037136 35.6185 0.1144 6446 +6448 2 -37.63187356356342 -239.78544857716614 36.2454 0.1144 6447 +6449 2 -37.97911320569426 -240.93610358669213 36.8477 0.1144 6448 +6450 2 -37.69698152198253 -242.1528641525021 37.4287 0.1144 6449 +6451 2 -37.037546767973716 -242.76980149901573 37.9708 0.1144 6450 +6452 2 -36.04319548311418 -243.13063948968846 38.4748 0.1144 6451 +6453 2 -35.00255042233924 -243.53748823249776 40.0674 0.1144 6452 +6454 2 -34.53507956578974 -242.59012062023282 40.5863 0.1144 6453 +6455 2 -34.003291567947656 -241.2086630885538 41.095 0.1144 6454 +6456 2 -33.616934336127144 -239.72279408171755 41.6825 0.1144 6455 +6457 2 -33.32642190865222 -238.17739479525608 42.1291 0.1144 6456 +6458 2 -33.048093897616305 -236.85510967840224 42.4334 0.1144 6457 +6459 2 -32.53404097126557 -236.25949542340305 42.609 0.1144 6458 +6460 2 -32.01603003213546 -235.4433370839825 42.7003 0.1144 6459 +6461 2 -31.86559402072103 -234.05593356378034 42.7395 0.1144 6460 +6462 2 -36.118958658601144 -243.28476311779553 38.8662 0.1144 6452 +6463 2 -36.268801463950915 -244.55727910348958 39.2372 0.1144 6462 +6464 2 -35.62314676698605 -245.39649143181197 39.5867 0.1144 6463 +6465 2 -34.63103906725572 -246.20385698493902 39.9087 0.1144 6464 +6466 2 -33.62215240968442 -246.01904680823748 40.2973 0.1144 6465 +6467 2 -32.62778169125615 -246.408869116505 40.7876 0.1144 6466 +6468 2 -31.532313136485776 -246.55850977812008 41.2782 0.1144 6467 +6469 2 -30.622877249654056 -246.98678694810638 41.8121 0.1144 6468 +6470 2 -29.762524612668912 -248.08616257127562 42.4393 0.1144 6469 +6471 2 -28.755226842236933 -248.00689715779123 43.0472 0.1144 6470 +6472 2 -27.84654671274461 -249.21094496334905 43.7086 0.1144 6471 +6473 2 -27.63729746604015 -248.94145828357352 44.2487 0.1144 6472 +6474 2 -26.671807871383262 -247.8312417058882 44.7252 0.1144 6473 +6475 2 -25.64470813279683 -247.806451055055 45.0811 0.1144 6474 +6476 2 -24.5968756203952 -247.0509341007114 45.4261 0.1144 6475 +6477 2 -24.401529061984046 -247.88388484882483 45.7629 0.1144 6476 +6478 2 -24.850743345415854 -248.79331197904435 46.0191 0.1144 6477 +6479 2 -25.24164478399963 -250.0755399537407 46.2437 0.1144 6478 +6480 2 -25.60820492571367 -251.69127459886357 46.4442 0.1144 6479 +6481 2 -26.188628641703897 -252.74997877595 46.5842 0.1144 6480 +6482 2 -26.19504301741144 -252.75887783320758 45.5515 0.1144 6481 +6483 2 -26.700110525816005 -253.32778559534773 45.376 0.1144 6482 +6484 2 -26.83124952243579 -254.59175497109152 45.3076 0.1144 6483 +6485 2 -26.538543035452115 -255.9564027964696 45.2192 0.1144 6484 +6486 2 -25.977511889596034 -257.48220203860876 45.071 0.1144 6485 +6487 2 -25.35504045925193 -258.27627478390116 44.861 0.1144 6486 +6488 2 -24.726991336033702 -259.0297710675742 44.6051 0.1144 6487 +6489 2 -24.1004978443246 -260.5421546580572 44.3212 0.1144 6488 +6490 2 -23.532178333077773 -261.72990134637575 44.0485 0.1144 6489 +6491 2 -23.08916220201864 -262.49197282724515 43.8301 0.1144 6490 +6492 2 -22.895151226621667 -263.62855997051224 43.5551 0.1144 6491 +6493 2 -22.841020066107834 -264.87116459970935 43.3205 0.1144 6492 +6494 2 -22.583850623439137 -266.02612099444576 43.167 0.1144 6493 +6495 2 -21.745192927098476 -267.3364626538557 43.1614 0.1144 6494 +6496 2 -20.97653810379925 -266.64751433504654 43.1805 0.1144 6495 +6497 2 -19.92907530896378 -266.35411103459523 43.2144 0.1144 6496 +6498 2 -18.89226794680812 -265.6226117596662 43.2594 0.1144 6497 +6499 2 -17.80825149845506 -265.40085386741345 43.2947 0.1144 6498 +6500 2 -16.688319217665903 -264.95768088082735 43.3135 0.1144 6499 +6501 2 -15.559563313403661 -265.3579272684447 43.318 0.1144 6500 +6502 2 -14.44910143469438 -265.4375284108324 43.3241 0.1144 6501 +6503 2 -13.330666790007655 -265.9522978727673 43.3336 0.1144 6502 +6504 2 -12.195192096045393 -265.49642947537427 43.3471 0.1144 6503 +6505 2 -11.096517789316596 -264.1261841249437 43.3633 0.1144 6504 +6506 2 -10.02552264233616 -264.55797774271707 43.381 0.1144 6505 +6507 2 -8.960277106145526 -263.3393622393846 43.4193 0.1144 6506 +6508 2 -7.938748546538914 -263.5123238817423 43.5025 0.1144 6507 +6509 2 -7.926323651663306 -264.0858165205557 43.5473 0.1144 6508 +6510 2 -7.851950628105392 -265.2674550528195 43.5523 0.1144 6509 +6511 2 -7.775101107763852 -266.44709349293106 43.5179 0.1144 6510 +6512 2 -7.558428512957882 -267.45022177713906 43.4417 0.1144 6511 +6513 2 -7.071764407507359 -268.1654565980072 43.2298 0.1144 6512 +6514 2 -6.565765980412188 -269.75193674955926 42.9523 0.1144 6513 +6515 2 -6.184075656630796 -271.3008763233989 42.7034 0.1144 6514 +6516 2 -5.8185645707313185 -272.4017085595278 42.4824 0.1144 6515 +6517 2 -5.288397963155305 -272.8137880733015 42.1266 0.1144 6516 +6518 2 -4.751768098023149 -271.77074829019216 41.6147 0.1144 6517 +6519 2 -3.8196326602047037 -271.6286795977173 41.7298 0.1144 6518 +6520 2 -2.9491751700350974 -270.1074819833806 41.7676 0.1144 6519 +6521 2 -2.616539202521764 -269.17967248147295 41.8443 0.1144 6520 +6522 2 -2.5339179877923286 -268.0193785211595 41.9577 0.1144 6521 +6523 2 -2.2887681644594196 -267.0481982710806 42.0473 0.1144 6522 +6524 2 -2.2353001152068472 -265.80289756606976 42.1772 0.1144 6523 +6525 2 -5.75626166945851 -274.4702290364277 41.8449 0.1144 6517 +6526 2 -5.960209020127792 -275.9230818311708 41.6262 0.1144 6525 +6527 2 -5.895594048763748 -277.1179789830268 41.4417 0.1144 6526 +6528 2 -5.8438451356646155 -278.3291402955614 41.2714 0.1144 6527 +6529 2 -5.951503407237183 -279.6658427261889 41.0998 0.1144 6528 +6530 2 -6.401632244149347 -280.546291985622 40.8696 0.1144 6529 +6531 2 -6.582190158279168 -281.52436529852366 40.5392 0.1144 6530 +6532 2 -6.337272639682659 -282.97908891618425 40.1685 0.1144 6531 +6533 2 -5.644652535389369 -283.77158274372823 39.8112 0.1144 6532 +6534 2 -4.634868201245929 -284.08752354938434 39.5329 0.1144 6533 +6535 2 -3.522877930949683 -284.5224374956518 39.3257 0.1144 6534 +6536 2 -2.3980394756696555 -284.8132253673915 39.1563 0.1144 6535 +6537 2 -1.2654444912585703 -284.6098030862639 38.9939 0.1144 6536 +6538 2 -0.14874115113034492 -285.23178331241877 38.8508 0.1144 6537 +6539 2 0.9735320755186905 -284.8841805373692 38.7321 0.1144 6538 +6540 2 2.0909100453920075 -285.5747807854901 38.598 0.1144 6539 +6541 2 3.128888874701417 -285.51330128767967 38.4426 0.1144 6540 +6542 2 4.054110651474829 -286.73355085350227 38.3006 0.1144 6541 +6543 2 4.894577024834611 -287.282169774518 38.1811 0.1144 6542 +6544 2 5.735886891008256 -288.23395054905177 38.0708 0.1144 6543 +6545 2 6.557795628190846 -289.2803713044564 37.9624 0.1144 6544 +6546 2 7.145482514612112 -290.00103001654406 37.8084 0.1144 6545 +6547 2 7.721832528627949 -290.7700373296011 37.6166 0.1144 6546 +6548 2 8.448464744696743 -291.347171143529 37.4108 0.1144 6547 +6549 2 9.197757879887803 -292.7682311098885 37.1832 0.1144 6548 +6550 2 9.856613104307854 -293.7031223407016 36.9244 0.1144 6549 +6551 2 10.308476287113749 -294.5702865211784 36.5722 0.1144 6550 +6552 2 10.602690237556388 -295.6696976158168 36.0749 0.1144 6551 +6553 2 10.862103063253961 -296.9638112174477 35.4502 0.1144 6552 +6554 2 11.379902569260828 -298.16899780393345 34.6884 0.1144 6553 +6555 2 12.245110895597406 -298.52191388544196 33.9455 0.1144 6554 +6556 2 12.885246134666033 -299.51303873209565 33.2968 0.1144 6555 +6557 2 13.757057631534082 -300.5947124330682 32.6973 0.1144 6556 +6558 2 14.158075264879166 -301.5018534878652 32.2585 0.1144 6557 +6559 2 14.574448777147765 -302.33968629798625 31.918 0.1144 6558 +6560 2 15.028829020534424 -303.760731023859 31.6473 0.1144 6559 +6561 2 15.450084963890205 -305.2358205749013 31.437 0.1144 6560 +6562 2 16.0676739631471 -306.1397076053852 31.2256 0.1144 6561 +6563 2 16.636003541321692 -306.75071497159365 30.9299 0.1144 6562 +6564 2 -7.826181045628527 -262.60039956259595 43.8642 0.1144 6508 +6565 2 -8.01777977492781 -261.59281299122057 44.0972 0.1144 6564 +6566 2 -8.40023947600963 -260.2376253008524 44.2011 0.1144 6565 +6567 2 -9.222076856439596 -258.6758680521557 44.2915 0.1144 6566 +6568 2 -10.266517435234192 -259.0825813145819 44.3677 0.1144 6567 +6569 2 -11.0884188642498 -257.3408392737554 44.3576 0.1144 6568 +6570 2 -11.88774405477081 -257.0821391508418 44.3803 0.1144 6569 +6571 2 -12.660372940929548 -256.64935243260516 44.4679 0.1144 6570 +6572 2 -13.058134337176668 -255.56515958692063 44.6236 0.1144 6571 +6573 2 -13.429290421483248 -254.36016373081594 44.8008 0.1144 6572 +6574 2 -13.86432647839792 -253.10178479761834 44.9646 0.1144 6573 +6575 2 -14.307346162490337 -251.83127634308863 45.1153 0.1144 6574 +6576 2 -14.63724283161422 -250.67625803454445 45.2418 0.1144 6575 +6577 2 -15.111034567005731 -249.61314501488312 45.4065 0.1144 6576 +6578 2 -15.665519780935519 -248.59394230898215 45.6305 0.1144 6577 +6579 2 -15.777147035219315 -247.32004178679256 45.8144 0.1144 6578 +6580 2 -15.60231248833005 -246.08885119160783 45.9525 0.1144 6579 +6581 2 -15.451808875296614 -244.8486449748283 46.1138 0.1144 6580 +6582 2 -22.615180138538836 -267.8699700134426 43.4006 0.1144 6495 +6583 2 -23.541720508388373 -269.2193831930189 43.4353 0.1144 6582 +6584 2 -24.51195061489974 -269.29442921326586 43.4764 0.1144 6583 +6585 2 -25.545613660507193 -270.33887207551936 43.5977 0.1144 6584 +6586 2 -26.473652423260805 -270.5873247540352 43.7046 0.1144 6585 +6587 2 -26.98692916233057 -271.65306827694553 43.7912 0.1144 6586 +6588 2 -27.3348771880231 -273.1590111608258 43.8589 0.1144 6587 +6589 2 -27.42930023846585 -274.23486902735544 43.8642 0.1144 6588 +6590 2 -27.552290499972788 -275.64415048411126 43.5562 0.1144 6589 +6591 2 -27.51596151438285 -276.8812936092396 43.4311 0.1144 6590 +6592 2 -27.194935785994872 -277.73314482996176 43.2309 0.1144 6591 +6593 2 -26.921688460879867 -278.76968832434204 42.9761 0.1144 6592 +6594 2 -27.374989056362686 -280.30654898374144 42.6936 0.1144 6593 +6595 2 -27.742395947837778 -281.7608288248298 42.4794 0.1144 6594 +6596 2 -28.110582283541067 -282.76741573950557 42.3287 0.1144 6595 +6597 2 -28.48697784990951 -283.5448542975269 42.2363 0.1144 6596 +6598 2 -28.871367110383513 -284.6622621160074 42.1915 0.1144 6597 +6599 2 -29.25575962780472 -286.18454614411775 42.1772 0.1144 6598 +6600 2 -29.640999191073096 -287.82488566087335 42.1772 0.1144 6599 +6601 2 -27.73568172843917 -273.30930163480645 43.9135 0.1144 6588 +6602 2 -28.783378248245576 -272.02615016984095 43.9606 0.1144 6601 +6603 2 -29.830295323823776 -272.3023255132157 44.0 0.1144 6602 +6604 2 -30.877988586682967 -270.98256110551927 44.0437 0.1144 6603 +6605 2 -31.925755965055547 -271.29744221215975 44.0902 0.1144 6604 +6606 2 -32.972673040633794 -269.9359957339326 44.1367 0.1144 6605 +6607 2 -34.01951955373189 -270.4969259572966 44.1806 0.1144 6606 +6608 2 -35.06721607353829 -270.181287399456 44.2196 0.1144 6607 +6609 2 -36.114204007682716 -269.5003056570011 44.252 0.1144 6608 +6610 2 -37.16112108326092 -269.1535018183639 44.2767 0.1144 6609 +6611 2 -38.18945703787344 -268.4003106635608 44.2848 0.1144 6610 +6612 2 -39.19046567702269 -267.92733211220377 44.2686 0.1144 6611 +6613 2 -40.19070138583813 -266.4072065458595 44.2324 0.1144 6612 +6614 2 -41.19001978241246 -266.7306279999805 44.1818 0.1144 6613 +6615 2 -42.190255787314015 -265.10509282698524 44.1213 0.1144 6614 +6616 2 -43.189644746368415 -265.5108493631943 44.0546 0.1144 6615 +6617 2 -44.18980989270379 -263.8878550640954 43.9866 0.1144 6616 +6618 2 -45.18919559481101 -264.2092039833074 43.9186 0.1144 6617 +6619 2 -46.18858455386537 -262.6944978945 43.8508 0.1144 6618 +6620 2 -47.18882055876697 -262.90714204876593 43.7839 0.1144 6619 +6621 2 -48.18820951782133 -261.4994795231174 43.7178 0.1144 6620 +6622 2 -49.188374664156704 -261.60566372053466 43.6531 0.1144 6621 +6623 2 -50.18776036626389 -260.305832759601 43.5901 0.1144 6622 +6624 2 -51.18714932531833 -260.30589837633187 43.5296 0.1144 6623 +6625 2 -52.18731447165371 -259.11045436686464 43.4725 0.1144 6624 +6626 2 -53.18677428927428 -259.0059896965112 43.4196 0.1144 6625 +6627 2 -54.0740034530772 -257.77180136404013 43.3728 0.1144 6626 +6628 2 -54.26078074502807 -256.4545139505153 43.3409 0.1144 6627 +6629 2 -54.44840478673999 -255.15529302468752 43.3205 0.1144 6628 +6630 2 -54.63525293725701 -253.8591654809249 43.3087 0.1144 6629 +6631 2 -54.822030229207876 -252.74391636095834 43.302 0.1144 6630 +6632 2 -26.355983876535724 -251.35252029778894 47.2483 0.1144 6481 +6633 2 -26.51160202452657 -250.18704306628717 47.9111 0.1144 6632 +6634 2 -26.439457312480446 -249.05088356387546 48.5657 0.1144 6633 +6635 2 -26.81129809345987 -247.60130856393516 49.0706 0.1144 6634 +6636 2 -27.612985101453933 -247.21326164529455 49.4626 0.1144 6635 +6637 2 -28.468763330892575 -246.24965078342302 49.8187 0.1144 6636 +6638 2 -29.19412184102901 -245.16268447616835 50.1724 0.1144 6637 +6639 2 -28.61724210132114 -244.5717995747455 50.6806 0.1144 6638 +6640 2 -28.60843916640483 -244.5254780201533 51.7373 0.1144 6639 +6641 2 -28.554255425423598 -243.33317150773783 52.1842 0.1144 6640 +6642 2 -28.612365028658452 -242.01503652238767 52.3401 0.1144 6641 +6643 2 -27.971537512623236 -241.69337808375028 52.6649 0.1144 6642 +6644 2 -27.055679613275302 -240.3370159944738 53.0177 0.1144 6643 +6645 2 -26.448481426189595 -239.62643564559596 53.4282 0.1144 6644 +6646 2 -25.886663016240263 -238.79832156300478 53.8768 0.1144 6645 +6647 2 -25.325765471565376 -237.27557386025507 54.3301 0.1144 6646 +6648 2 -24.557619173703266 -237.11788739272222 54.959 0.1144 6647 +6649 2 -24.2195759974852 -237.43875106639626 55.3829 0.1144 6648 +6650 2 -23.075712146488343 -236.99763876452676 55.6346 0.1144 6649 +6651 2 -21.939675185002333 -237.53941913614284 55.7253 0.1144 6650 +6652 2 -20.878540089423083 -237.0991953680948 55.5467 0.1144 6651 +6653 2 -19.734737030064693 -237.40881892012268 55.3134 0.1144 6652 +6654 2 -18.74354038729632 -237.26730644176672 54.8685 0.1144 6653 +6655 2 -18.80798700728966 -238.26182026161422 53.9137 0.1144 6654 +6656 2 -18.891300226858874 -239.52947780300343 53.7894 0.1144 6655 +6657 2 -18.973837259147075 -240.79670828076434 53.7359 0.1144 6656 +6658 2 -19.055665409687183 -242.06730276743122 53.6743 0.1144 6657 +6659 2 -19.138978629256396 -243.33970294154454 53.6091 0.1144 6658 +6660 2 -19.221515661544597 -244.61412916431783 53.5441 0.1144 6659 +6661 2 -18.820552009857398 -245.74758492648448 53.4932 0.1144 6660 +6662 2 -18.59730318835605 -246.9596082924201 53.4596 0.1144 6661 +6663 2 -18.91858490836924 -248.2152887475773 53.4391 0.1144 6662 +6664 2 -19.746938790255665 -249.35507029482557 53.4246 0.1144 6663 +6665 2 -17.898735907065443 -236.34815017087055 54.2822 0.1144 6654 +6666 2 -17.28436788301895 -235.1302535155217 54.1274 0.1144 6665 +6667 2 -17.029446387531124 -233.88279248806998 54.0526 0.1144 6666 +6668 2 -16.875690386519196 -232.62958092112137 54.0257 0.1144 6667 +6669 2 -16.942778597719688 -231.3685145555801 54.042 0.1144 6668 +6670 2 -16.487102564802697 -230.23232636003075 54.0649 0.1144 6669 +6671 2 -15.864663178103973 -229.2958836036551 54.0957 0.1144 6670 +6672 2 -15.220345371358055 -228.14631959016364 54.1344 0.1144 6671 +6673 2 -15.131998232727623 -226.8954800248692 54.1811 0.1144 6672 +6674 2 -15.298458845834322 -225.72737640709312 54.3127 0.1144 6673 +6675 2 -15.44727302531119 -224.55603073229003 54.4281 0.1144 6674 +6676 2 -15.565338342191328 -223.3072565248719 54.5278 0.1144 6675 +6677 2 -15.632429810339033 -222.05147571069972 54.6188 0.1144 6676 +6678 2 -15.697895084497453 -220.80376355595797 54.7005 0.1144 6677 +6679 2 -15.763430921136026 -219.5515395519853 54.7725 0.1144 6678 +6680 2 -15.82804589250011 -218.30181250553355 54.8341 0.1144 6679 +6681 2 -15.893581729138644 -217.05320570815024 54.8988 0.1144 6680 +6682 2 -15.959047003297105 -215.80593466760195 54.9646 0.1144 6681 +6683 2 -16.02528816865039 -214.5617066609472 55.0306 0.1144 6682 +6684 2 -16.090824005288965 -213.31812551597744 55.097 0.1144 6683 +6685 2 -16.156289279447428 -212.07679836239598 55.1636 0.1144 6684 +6686 2 -16.220974813291583 -210.83739279580982 55.2308 0.1144 6685 +6687 2 -16.286440087450046 -209.59888179865573 55.2986 0.1144 6686 +6688 2 -16.351975924088574 -208.3256076061781 55.3675 0.1144 6687 +6689 2 -16.416590895452664 -207.00913211611754 55.4372 0.1144 6688 +6690 2 -16.482126732091192 -205.7073522559391 55.5086 0.1144 6689 +6691 2 -16.547662568729766 -204.43972136186318 55.5834 0.1144 6690 +6692 2 -16.61227754009381 -203.16957328827553 55.6623 0.1144 6691 +6693 2 -16.590418723160063 -201.9233202152945 55.7444 0.1144 6692 +6694 2 -16.210837778259876 -200.88531963366302 55.8219 0.1144 6693 +6695 2 -15.930097022939869 -199.5832753677247 55.9275 0.1144 6694 +6696 2 -15.743925105458764 -198.29177738905832 56.0776 0.1144 6695 +6697 2 -15.507619279025693 -196.97878400211852 56.2083 0.1144 6696 +6698 2 -15.114311906138454 -195.75450387898314 56.3245 0.1144 6697 +6699 2 -14.826998477156357 -194.64206044618638 56.4354 0.1144 6698 +6700 2 -14.761846584963086 -193.23749398909104 56.2859 0.1144 6699 +6701 2 -14.698691045996759 -192.01053765377404 56.3052 0.1144 6700 +6702 2 -14.746407830803133 -190.7432312873218 56.3307 0.1144 6701 +6703 2 -14.798932931183238 -189.47269615757358 56.371 0.1144 6702 +6704 2 -14.63300613369335 -188.3068561038383 56.4298 0.1144 6703 +6705 2 -14.447701395914958 -187.15503870098775 56.5037 0.1144 6704 +6706 2 -14.262467220616596 -185.9552300353837 56.5886 0.1144 6705 +6707 2 -14.076244874510891 -184.63654600956949 56.6815 0.1144 6706 +6708 2 -13.892566330721703 -183.31566541182065 56.7792 0.1144 6707 +6709 2 -13.707261592943269 -181.98853712037527 56.8789 0.1144 6708 +6710 2 -13.522027417644946 -180.65801512818513 56.98 0.1144 6709 +6711 2 -13.336651821300332 -179.33883041291693 57.0828 0.1144 6710 +6712 2 -13.15057089624088 -178.19597960688813 57.1878 0.1144 6711 +6713 2 -12.96519529989627 -177.05716476702887 57.2964 0.1144 6712 +6714 2 -12.78158761467326 -175.92236033998142 57.4092 0.1144 6713 +6715 2 -12.596212018328645 -174.79282237920714 57.5282 0.1144 6714 +6716 2 -12.410131093269273 -173.66695134284635 57.6579 0.1144 6715 +6717 2 -12.22475549692458 -172.30051851546185 57.8012 0.1144 6716 +6718 2 -12.039521321626257 -170.86721387484556 57.9597 0.1144 6717 +6719 2 -11.854216583847826 -169.43511754460016 58.1314 0.1144 6718 +6720 2 -11.63728218380895 -167.98341454365539 58.3386 0.1144 6719 +6721 2 -11.282601988026563 -166.69957119456413 58.6891 0.1144 6720 +6722 2 -11.257523742658371 -165.50736308019907 59.0248 0.1144 6721 +6723 2 -11.382020312154348 -164.1683533829471 59.2816 0.1144 6722 +6724 2 -11.510549009943112 -163.068901358007 59.467 0.1144 6723 +6725 2 -11.639924753579038 -161.9713547031953 59.5904 0.1144 6724 +6726 2 -11.768524309933989 -160.8722527700613 59.6627 0.1144 6725 +6727 2 -11.897899757483803 -159.7760133238148 59.6988 0.1144 6726 +6728 2 -12.02649931383879 -158.677263217926 59.7338 0.1144 6727 +6729 2 -12.155875057474717 -157.5804079242193 59.7808 0.1144 6728 +6730 2 -12.31840530192477 -156.52426185684962 59.8514 0.1144 6729 +6731 2 -12.528646644114943 -155.32388573804283 59.9558 0.1144 6730 +6732 2 -12.73966417358601 -153.95100627348654 60.086 0.1144 6731 +6733 2 -12.951599311384394 -152.57432643765384 60.2403 0.1144 6732 +6734 2 -13.233741062023885 -151.1674552483205 60.4674 0.1144 6733 +6735 2 -13.660652070714544 -150.0497321212515 60.6553 0.1144 6734 +6736 2 -14.13842905880757 -149.28821772071097 60.8045 0.1144 6735 +6737 2 -14.603346798616293 -148.249389688379 60.935 0.1144 6736 +6738 2 -15.02704548493912 -146.7759604923987 61.2976 0.1144 6737 +6739 2 -15.544987235692568 -194.36752385988956 56.572 0.1144 6699 +6740 2 -16.61597844448308 -194.0658505091122 56.726 0.1144 6739 +6741 2 -17.497585798581287 -193.1527403742848 56.8904 0.1144 6740 +6742 2 -18.429124148659966 -192.76392871190114 57.0758 0.1144 6741 +6743 2 -19.41193395148306 -191.9338690302337 57.4126 0.1144 6742 +6744 2 -20.469433081985255 -192.27267982362343 57.8662 0.1144 6743 +6745 2 -21.603349587777906 -192.05379576457915 58.2789 0.1144 6744 +6746 2 -22.722621356969462 -192.26464317013773 58.69 0.1144 6745 +6747 2 -23.859905226137247 -192.4757273515564 59.0005 0.1144 6746 +6748 2 -24.983937438938494 -192.36453883378266 59.2668 0.1144 6747 +6749 2 -26.08314025937448 -192.87223768259562 59.5753 0.1144 6748 +6750 2 -27.135933571696782 -192.54918637558086 59.9508 0.1144 6749 +6751 2 -27.14713557442123 -193.04744540546966 60.7351 0.1144 6750 +6752 2 -27.174653009723123 -194.28790136422452 60.7351 0.1144 6751 +6753 2 -27.203088053352246 -195.53172580737237 60.7351 0.1144 6752 +6754 2 -27.230605488654135 -196.775428900507 60.7351 0.1144 6753 +6755 2 -27.09309818289973 -198.06728124620088 60.7351 0.1144 6754 +6756 2 -26.956511742419814 -199.35486198347996 60.7351 0.1144 6755 +6757 2 -26.819783880893603 -200.72657075540698 60.7351 0.1144 6756 +6758 2 -26.6822765751392 -202.11667536180187 60.7351 0.1144 6757 +6759 2 -27.340479228240056 -191.70457423390417 60.2294 0.1144 6750 +6760 2 -27.54428931781443 -190.53234392506806 60.4204 0.1144 6759 +6761 2 -27.704417180994263 -189.45765791588678 60.5388 0.1144 6760 +6762 2 -27.85966616612021 -188.37711629961822 60.5847 0.1144 6761 +6763 2 -28.015694595474393 -187.29668951229712 60.5662 0.1144 6762 +6764 2 -28.087661684728722 -186.09609042736324 60.4974 0.1144 6763 +6765 2 -28.033481200694748 -184.80684666853654 60.3935 0.1144 6764 +6766 2 -27.96140754931514 -183.47022012779613 60.2585 0.1144 6765 +6767 2 -27.890184200729905 -182.13292066053128 60.0978 0.1144 6766 +6768 2 -27.818960852144713 -180.7967581322124 59.9158 0.1144 6767 +6769 2 -27.746958059331284 -179.46103464487277 59.717 0.1144 6768 +6770 2 -27.67488440795168 -178.1253829524378 59.5053 0.1144 6769 +6771 2 -27.709577132624574 -176.91177185391058 59.2626 0.1144 6770 +6772 2 -27.783929726240906 -175.74493177209857 58.9898 0.1144 6771 +6773 2 -27.86238204976896 -174.58456737039404 58.6989 0.1144 6772 +6774 2 -27.94075996169746 -173.426441401916 58.4024 0.1144 6773 +6775 2 -28.018436097944534 -172.2647358470872 58.112 0.1144 6774 +6776 2 -28.096817562906406 -171.10489553558307 57.8388 0.1144 6775 +6777 2 -28.05225371001997 -169.79924478103476 57.6352 0.1144 6776 +6778 2 -28.32637502481823 -168.794718563998 57.5008 0.1144 6777 +6779 2 -29.037607743319445 -167.43340946850066 57.4202 0.1144 6778 +6780 2 -29.930619773542386 -166.64505988451518 57.3793 0.1144 6779 +6781 2 -30.67419379481294 -166.15597293250738 57.3636 0.1144 6780 +6782 2 -30.675785408157413 -164.92720531422643 57.3611 0.1144 6781 +6783 2 -30.532566903567506 -163.73883630978827 57.3611 0.1144 6782 +6784 2 -30.384469224837613 -162.39681168957705 57.3611 0.1144 6783 +6785 2 -30.228236727042027 -161.02688658139283 57.3611 0.1144 6784 +6786 2 -30.071298604445616 -159.6085966834456 57.3611 0.1144 6785 +6787 2 -29.91513666913014 -158.19054013960977 57.3611 0.1144 6786 +6788 2 -29.758127984053573 -156.77188317390087 57.3611 0.1144 6787 +6789 2 -29.543680147726075 -155.46340778297667 57.3611 0.1144 6788 +6790 2 -28.722698813671638 -155.38879543216072 57.3611 0.1144 6789 +6791 2 -27.90249692384536 -153.9888334410845 57.3611 0.1144 6790 +6792 2 -14.84041850881027 -226.2999526330845 54.9091 0.1144 6673 +6793 2 -14.402246492103977 -225.3535218612804 56.1095 0.1144 6792 +6794 2 -14.179663540624672 -224.15706729645876 56.5132 0.1144 6793 +6795 2 -14.000488639801578 -223.05972362586527 57.0164 0.1144 6794 +6796 2 -13.867943680743794 -222.13323625352706 57.7147 0.1144 6795 +6797 2 -13.859024741502333 -220.87929061386114 58.2464 0.1144 6796 +6798 2 -13.850105802260837 -219.61787536765974 58.6228 0.1144 6797 +6799 2 -13.803142825051395 -218.3508790232715 58.8568 0.1144 6798 +6800 2 -13.748965894050746 -217.08383068724527 58.9952 0.1144 6799 +6801 2 -13.69549754871203 -215.81475862523126 59.0481 0.1144 6800 +6802 2 -24.569935644547535 -237.02339567136602 56.609 0.1144 6648 +6803 2 -24.51468175437728 -236.35822484518553 58.6625 0.1144 6802 +6804 2 -23.982141697814633 -235.9472734821657 59.5566 0.1144 6803 +6805 2 -24.03470128976898 -235.0775602067514 60.566 0.1144 6804 +6806 2 -23.424297975452617 -234.64073355333335 62.4224 0.1144 6805 +6807 2 -22.315011558601956 -234.49654952379322 62.4224 0.1144 6806 +6808 2 -21.206575444545678 -233.88854075493714 62.4224 0.1144 6807 +6809 2 -20.098139330489346 -233.88329159349178 62.4224 0.1144 6808 +6810 2 -18.98963235786688 -233.3074040167173 62.4224 0.1144 6809 +6811 2 -17.880416799582402 -233.2167072888062 62.4224 0.1144 6810 +6812 2 -16.771909826959934 -232.72908674257474 62.4224 0.1144 6811 +6813 2 -15.6643204626647 -232.54821054625745 62.4224 0.1144 6812 +6814 2 -14.555884348608414 -232.15412724130354 62.4224 0.1144 6813 +6815 2 -13.44744823455213 -231.8764560880203 62.4224 0.1144 6814 +6816 2 -12.338161817701469 -231.5804672132965 62.4224 0.1144 6815 +6817 2 -11.229725703645185 -230.17503102807552 62.4224 0.1144 6816 +6818 2 -10.12121873102268 -230.83007334329477 62.4224 0.1144 6817 +6819 2 -9.013629366727443 -229.71548786168236 62.4224 0.1144 6818 +6820 2 -7.904342949876781 -230.01573455018945 62.4224 0.1144 6819 +6821 2 -6.795906835820496 -229.29287561579025 62.4224 0.1144 6820 +6822 2 -5.68747072176421 -229.20035409772956 62.4224 0.1144 6821 +6823 2 -25.150482768249873 -234.4623094310711 61.3393 0.1144 6805 +6824 2 -26.24559578011643 -234.64392747951104 61.8929 0.1144 6823 +6825 2 -27.26356260318931 -233.50561471869054 62.246 0.1144 6824 +6826 2 -28.237942445609427 -233.45811284933436 62.421 0.1144 6825 +6827 2 -29.189766277376208 -232.09362434753797 62.4926 0.1144 6826 +6828 2 -30.23825891621881 -232.31961654361467 62.5206 0.1144 6827 +6829 2 -31.34541087225831 -231.31868548305073 62.5612 0.1144 6828 +6830 2 -32.47669370192881 -231.65384415862223 62.6172 0.1144 6829 +6831 2 -33.56132991502599 -230.95813967460646 62.6906 0.1144 6830 +6832 2 -34.68252958995337 -231.74954193353508 62.7836 0.1144 6831 +6833 2 -35.75730243818717 -231.27966369146316 62.9636 0.1144 6832 +6834 2 -36.84028146223937 -231.0969153296657 63.2117 0.1144 6833 +6835 2 -37.97293999704961 -230.95964367407686 63.4544 0.1144 6834 +6836 2 -39.11502586999706 -231.02214661017456 63.674 0.1144 6835 +6837 2 -40.258032608219004 -229.9490059429482 63.8672 0.1144 6836 +6838 2 -41.40024678043807 -230.93099793174085 64.0321 0.1144 6837 +6839 2 -42.19212135037979 -229.23850066064682 64.1656 0.1144 6838 +6840 2 -42.90830706244824 -228.67311218091191 64.2788 0.1144 6839 +6841 2 -43.624492774516774 -227.9385644087326 64.3832 0.1144 6840 +6842 2 -44.34061118105236 -226.162643744952 64.4798 0.1144 6841 +6843 2 -45.056726330640785 -225.7917212523671 64.5677 0.1144 6842 +6844 2 -45.772912042709315 -224.85823785919388 64.6439 0.1144 6843 +6845 2 -46.488251005016714 -223.2329451189256 64.7035 0.1144 6844 +6846 2 -47.2044367170852 -222.91202468681809 64.7424 0.1144 6845 +6847 2 -47.920551866673584 -221.77579533251833 64.757 0.1144 6846 +6848 2 -48.62375052937253 -220.3009144583575 64.7349 0.1144 6847 +6849 2 -49.248621084039556 -219.85118468353232 64.6254 0.1144 6848 +6850 2 -50.06642278314341 -218.77656667633573 64.4216 0.1144 6849 +6851 2 -50.8132830401949 -217.52192784662253 64.1841 0.1144 6850 +6852 2 -51.504328079410286 -217.15744703324685 63.9447 0.1144 6851 +6853 2 -51.82938593609106 -215.9064710905023 63.7255 0.1144 6852 +6854 2 -51.62058309817062 -214.69905104140304 63.5491 0.1144 6853 +6855 2 -51.38024514344476 -213.42017483745525 63.4152 0.1144 6854 +6856 2 -51.14068337599991 -211.9015605175168 63.313 0.1144 6855 +6857 2 -50.900345421274054 -210.3806965872185 63.2265 0.1144 6856 +6858 2 -50.65922802232 -209.06163449554526 63.1473 0.1144 6857 +6859 2 -50.41889006759418 -207.84844784922856 63.0689 0.1144 6858 +6860 2 -50.18017860294371 -206.87903025727968 62.9874 0.1144 6859 +6861 2 -49.96898345068081 -205.87418685357198 62.9009 0.1144 6860 +6862 2 -49.7981810320843 -204.7481880764415 62.8102 0.1144 6861 +6863 2 -49.62992596883767 -203.53977416875284 62.7094 0.1144 6862 +6864 2 -49.46160004702482 -202.2516505611529 62.5926 0.1144 6863 +6865 2 -49.292494680983765 -200.7989904333989 62.4529 0.1144 6864 +6866 2 -48.943392178075584 -199.31637735438716 62.1253 0.1144 6865 +6867 2 -48.839088974931684 -199.2316440828689 62.8037 0.1144 6866 +6868 2 -48.539825164079346 -199.14373940777529 64.5786 0.1144 6867 +6869 2 -48.16281746977545 -200.40392548813617 65.3498 0.1144 6868 +6870 2 -47.90486502984524 -201.91587066146772 65.9467 0.1144 6869 +6871 2 -47.905722969448334 -203.17548159762447 66.3751 0.1144 6870 +6872 2 -47.90658090905146 -204.43538213478735 66.6487 0.1144 6871 +6873 2 -47.90743884865456 -205.6975361027688 66.7831 0.1144 6872 +6874 2 -47.90829678825765 -206.9587137306463 66.7951 0.1144 6873 +6875 2 -47.909013306814494 -208.21949058859855 66.7666 0.1144 6874 +6876 2 -47.90909180218944 -209.482091123163 66.7383 0.1144 6875 +6877 2 -47.9098788832263 -210.7435189565932 66.712 0.1144 6876 +6878 2 -47.91073682282939 -212.0040813710388 66.6876 0.1144 6877 +6879 2 -47.91159476243253 -213.26578488200173 66.64 0.1144 6878 +6880 2 -49.08129676996009 -199.27166756942125 61.8218 0.1144 6866 +6881 2 -49.995177623108376 -198.86625371922855 61.5135 0.1144 6880 +6882 2 -51.024333383645924 -197.89293176932026 61.1912 0.1144 6881 +6883 2 -51.9273380178618 -197.84031138071964 60.7463 0.1144 6882 +6884 2 -51.778214161187876 -196.72931431931283 60.3548 0.1144 6883 +6885 2 -51.587230375099715 -195.55787717895447 60.0037 0.1144 6884 +6886 2 -51.40515789144426 -194.10650836805485 59.6714 0.1144 6885 +6887 2 -51.20039073484993 -192.6273798302514 59.3872 0.1144 6886 +6888 2 -50.952835273299584 -191.16323236354788 59.1864 0.1144 6887 +6889 2 -50.7018857066383 -189.81876616863946 59.0584 0.1144 6888 +6890 2 -50.44945107094796 -188.7630949741898 58.9677 0.1144 6889 +6891 2 -49.74261942799242 -188.39780508504782 58.8641 0.1144 6890 +6892 2 -48.687020521632306 -187.1515737632119 58.7826 0.1144 6891 +6893 2 -47.59240558311846 -187.635921424301 58.7157 0.1144 6892 +6894 2 -46.56323294567265 -187.33421280815477 58.653 0.1144 6893 +6895 2 -45.5348969910601 -188.73014523895904 58.5883 0.1144 6894 +6896 2 -44.641101963575636 -188.62363155419598 58.5169 0.1144 6895 +6897 2 -43.74815042890505 -190.3216052135376 58.4284 0.1144 6896 +6898 2 -42.85844832135184 -190.42010524320938 58.3058 0.1144 6897 +6899 2 -42.055101069465834 -191.6235312460472 58.1381 0.1144 6898 +6900 2 -41.28322113066591 -192.78742513214195 57.8956 0.1144 6899 +6901 2 -40.254096163083844 -192.81156957288846 57.5915 0.1144 6900 +6902 2 -39.22508258039422 -193.7506899915865 57.0704 0.1144 6901 +6903 2 -38.25920363250211 -193.47101553006377 56.4136 0.1144 6902 +6904 2 -37.29417143437103 -192.89878525586732 55.6836 0.1144 6903 +6905 2 -36.3282921903928 -192.6263536283586 53.9868 0.1144 6904 +6906 2 -28.659342396142293 -244.91879185449295 51.0728 0.1144 6639 +6907 2 -28.7840297102047 -246.03104733116794 51.371 0.1144 6906 +6908 2 -28.68697889061621 -247.3821946389284 51.5752 0.1144 6907 +6909 2 -28.472705420133288 -248.85512319726507 51.6905 0.1144 6908 +6910 2 -28.38377609573553 -250.20344029301782 51.7362 0.1144 6909 +6911 2 -28.79499726801044 -250.88536487484947 51.7356 0.1144 6910 +6912 2 -29.538203136300616 -252.29555607853433 51.735 0.1144 6911 +6913 2 -30.269214521224036 -253.41722800035836 51.7342 0.1144 6912 +6914 2 -30.96707061106085 -253.7935771199596 51.7331 0.1144 6913 +6915 2 -31.76701701788197 -255.40173162133152 51.7311 0.1144 6914 +6916 2 -32.6269773733264 -255.78925257822243 51.7289 0.1144 6915 +6917 2 -33.5168536636678 -256.7210130652514 51.7255 0.1144 6916 +6918 2 -34.273093955105324 -258.402858355159 51.7208 0.1144 6917 +6919 2 -34.430136892184876 -259.6486635749575 51.714 0.1144 6918 +6920 2 -34.30161145134329 -260.878974947355 51.7056 0.1144 6919 +6921 2 -34.07843348840812 -262.02220592346293 51.6925 0.1144 6920 +6922 2 -33.97896666758838 -263.1820373822758 51.6729 0.1144 6921 +6923 2 -34.12792471604041 -264.6014108005372 51.6468 0.1144 6922 +6924 2 -34.86219935014266 -265.764017316817 51.6172 0.1144 6923 +6925 2 -35.70111115839265 -266.275685006282 51.5875 0.1144 6924 +6926 2 -36.68045242546128 -267.090821635441 51.4721 0.1144 6925 +6927 2 -37.684877126777955 -267.4720146054229 51.3316 0.1144 6926 +6928 2 -38.809912624906914 -267.75807842170207 51.2896 0.1144 6927 +6929 2 -39.94306982032684 -266.92034624922434 51.333 0.1144 6928 +6930 2 -41.076223758799564 -267.928644338018 51.441 0.1144 6929 +6931 2 -42.04095709793069 -267.5844533406001 51.5477 0.1144 6930 +6932 2 -42.98763166359454 -269.1859612644634 51.6466 0.1144 6931 +6933 2 -43.93920228030671 -269.1620722912095 51.7224 0.1144 6932 +6934 2 -44.908649685642665 -270.4527214701322 51.7689 0.1144 6933 +6935 2 -45.81561295736578 -270.79452321314255 51.7992 0.1144 6934 +6936 2 -46.72257267605561 -271.77240260665303 51.8249 0.1144 6935 +6937 2 -47.67747690232636 -272.47050593589773 51.856 0.1144 6936 +6938 2 -48.61117428344808 -273.05810554382606 51.8921 0.1144 6937 +6939 2 -49.42334567050533 -274.4061128025493 51.9971 0.1144 6938 +6940 2 -49.81581961750658 -275.15703108405364 52.0985 0.1144 6939 +6941 2 -49.709918287123784 -276.5442727338196 52.1763 0.1144 6940 +6942 2 -49.793302069173016 -277.7262573558692 52.2315 0.1144 6941 +6943 2 -49.94380538612039 -278.82416868484387 52.2656 0.1144 6942 +6944 2 -49.75215247306285 -280.2953630780807 52.2802 0.1144 6943 +6945 2 -49.41017274293553 -281.89726193882154 52.2768 0.1144 6944 +6946 2 -48.92497633141929 -283.0351620201826 52.2679 0.1144 6945 +6947 2 -48.646812525314374 -283.98487023553076 52.2553 0.1144 6946 +6948 2 -48.41712919425001 -284.9955044961851 52.2374 0.1144 6947 +6949 2 -48.32663772444865 -286.18372326391716 52.2124 0.1144 6948 +6950 2 -48.236071843047824 -287.3744358468903 52.178 0.1144 6949 +6951 2 -48.14628570196126 -288.6623782882908 52.1298 0.1144 6950 +6952 2 -47.845504891464245 -290.0756210945606 52.0615 0.1144 6951 +6953 2 -47.497023050154894 -291.68534854055866 51.9646 0.1144 6952 +6954 2 -47.1501676989209 -293.29397320827667 51.8311 0.1144 6953 +6955 2 -46.80161529513149 -294.30930188635966 51.6558 0.1144 6954 +6956 2 -47.30660780467955 -294.653004571713 53.09 0.1144 6955 +6957 2 -48.153133579056 -294.5264572163908 53.6782 0.1144 6956 +6958 2 -48.676924827945676 -296.19738735934703 53.9045 0.1144 6957 +6959 2 -48.79025158271381 -297.60340615356046 54.0593 0.1144 6958 +6960 2 -48.721540434471294 -298.81855676834715 54.1198 0.1144 6959 +6961 2 -48.31812722983656 -299.5547519166802 54.08 0.1144 6960 +6962 2 -47.740056476376395 -300.71316514729153 53.9997 0.1144 6961 +6963 2 -47.38354087535086 -302.3203850737813 53.8658 0.1144 6962 +6964 2 -47.19346047071079 -303.7884195341867 53.7071 0.1144 6963 +6965 2 -47.31653846769225 -304.91503797925185 53.5805 0.1144 6964 +6966 2 -47.49292864609069 -305.9839027948934 53.492 0.1144 6965 +6967 2 -47.66931882448912 -307.0530256008497 53.4335 0.1144 6966 +6968 2 -47.8449295586594 -308.1671090863996 53.3915 0.1144 6967 +6969 2 -48.02054354977686 -309.30861633927685 53.3602 0.1144 6968 +6970 2 -48.19700458674152 -310.73829640082425 53.3322 0.1144 6969 +6971 2 -48.35472215356621 -312.20565153281683 53.2997 0.1144 6970 +6972 2 -48.50444602628531 -313.66587771094663 53.2624 0.1144 6971 +6973 2 -48.60081054591005 -315.0499343391994 53.165 0.1144 6972 +6974 2 -48.687420566374314 -316.4140823416785 53.027 0.1144 6973 +6975 2 -48.85250387105033 -317.8309063057096 52.9432 0.1144 6974 +6976 2 -49.19967896640909 -318.9794278673576 52.9334 0.1144 6975 +6977 2 -49.398733819063416 -320.00528065617056 53.0502 0.1144 6976 +6978 2 -49.554997109814494 -321.0857889129329 53.2857 0.1144 6977 +6979 2 -49.70956305192399 -322.1973470105623 53.6169 0.1144 6978 +6980 2 -49.865755484108846 -323.320251964021 54.01 0.1144 6979 +6981 2 -50.02039228478453 -324.50580155330954 54.4317 0.1144 6980 +6982 2 -50.17502908546025 -325.9567939957409 54.8638 0.1144 6981 +6983 2 -50.33044533036413 -327.40790575174265 55.2905 0.1144 6982 +6984 2 -50.484940709993566 -328.85929774548583 55.7066 0.1144 6983 +6985 2 -50.64113314217842 -330.2897702842277 56.1072 0.1144 6984 +6986 2 -50.7957699428541 -331.71565143430774 56.4866 0.1144 6985 +6987 2 -50.95040674352982 -333.13309950432307 56.8386 0.1144 6986 +6988 2 -51.10659917571467 -334.2161599354609 57.1528 0.1144 6987 +6989 2 -51.31539846060174 -335.24098958104724 57.3961 0.1144 6988 +6990 2 -51.127021918497675 -336.7117711721836 57.5484 0.1144 6989 +6991 2 -51.37460106693691 -337.6768449032058 57.6248 0.1144 6990 +6992 2 -51.9339024163055 -338.2386108669839 57.6069 0.1144 6991 +6993 2 -52.112006524167654 -339.72462296710626 57.3611 0.1144 6992 +6994 2 -46.6637006363192 -294.360303588369 51.408 0.1144 6955 +6995 2 -46.02127819347734 -294.73936734774867 50.988 0.1144 6994 +6996 2 -45.37885575063555 -296.32734727067276 50.4512 0.1144 6995 +6997 2 -44.73713863650846 -297.3906004651126 49.849 0.1144 6996 +6998 2 -44.39775750367208 -297.2581367421392 49.2736 0.1144 6997 +6999 2 -44.696135932898876 -296.34219073356354 48.8474 0.1144 6998 +7000 2 -44.995290549406604 -295.35951468889954 48.5596 0.1144 6999 +7001 2 -45.293668978633406 -293.91574051305685 48.3916 0.1144 7000 +7002 2 -45.593673601849446 -292.3436670664455 48.3062 0.1144 7001 +7003 2 -45.89205203107624 -290.7796629474149 48.27 0.1144 7002 +7004 2 -46.190430460303034 -289.46295540912746 48.2524 0.1144 7003 +7005 2 -46.48887974809601 -288.5485015169511 48.235 0.1144 7004 +7006 2 -46.787258177322805 -287.6347331175635 48.2174 0.1144 7005 +7007 2 -47.08719223805877 -286.60918357599195 48.1998 0.1144 7006 +7008 2 -47.38557066728556 -285.2089329928933 48.1824 0.1144 7007 +7009 2 -47.68479584627346 -283.6404407457066 48.1648 0.1144 7008 +7010 2 -47.98317427550025 -282.10784482433473 48.1474 0.1144 7009 +7011 2 -48.28155270472705 -280.7642331874802 48.1298 0.1144 7010 +7012 2 -48.579931133953835 -279.8512447040252 48.1124 0.1144 7011 +7013 2 -48.87993605325599 -278.9401288754758 48.0948 0.1144 7012 +7014 2 -49.178314482482776 -277.8706277545303 48.0774 0.1144 7013 +7015 2 -49.47669291170958 -276.5150112234636 48.0598 0.1144 7014 +7016 2 -49.77507134093637 -274.94882197675395 48.0424 0.1144 7015 +7017 2 -50.07429651992422 -273.452003351077 48.0248 0.1144 7016 +7018 2 -50.37267494915101 -272.1046511743207 48.0074 0.1144 7017 +7019 2 -50.672609009886976 -271.17048940945614 47.99 0.1144 7018 +7020 2 -50.970987439113735 -270.2588517756198 47.973 0.1144 7019 +7021 2 -51.26936586834053 -269.14457203067104 47.9559 0.1144 7020 +7022 2 -51.56781515613354 -267.8369919867477 47.9388 0.1144 7021 +7023 2 -51.866193585360335 -266.2734490049625 47.922 0.1144 7022 +7024 2 -52.16541876434822 -264.8117234894022 47.9055 0.1144 7023 +7025 2 -52.46379719357502 -263.4907129043761 47.8895 0.1144 7024 +7026 2 -52.76373125431094 -262.49639120382875 47.8741 0.1144 7025 +7027 2 -53.062109683537734 -261.58553666651613 47.8596 0.1144 7026 +7028 2 -53.36048811276453 -260.4279643008981 47.8464 0.1144 7027 +7029 2 -53.65886654199132 -259.1740600642675 47.8344 0.1144 7028 +7030 2 -53.9903897011906 -257.5823258546959 47.8251 0.1144 7029 +7031 2 -54.367204107779216 -256.20344815712014 47.8198 0.1144 7030 +7032 2 -54.756952174251765 -255.04294641557595 47.8184 0.1144 7031 +7033 2 -55.14422670480175 -254.2326919454959 47.8206 0.1144 7032 +7034 2 -55.421611066678516 -253.0486029225877 47.8265 0.1144 7033 +7035 2 -55.60110680321917 -251.8166212188268 47.836 0.1144 7034 +7036 2 -55.92371865998566 -250.40324341103775 47.85 0.1144 7035 +7037 2 -56.287603255809785 -248.9186439467868 47.8699 0.1144 7036 +7038 2 -56.65226759194826 -247.65759138941854 47.8971 0.1144 7037 +7039 2 -56.987816069459775 -246.61667728190383 47.9326 0.1144 7038 +7040 2 -57.220745274608234 -245.58208926087633 47.9906 0.1144 7039 +7041 2 -57.422082420432275 -244.34926019253265 48.0721 0.1144 7040 +7042 2 -57.621863638661 -243.11228435883567 48.1732 0.1144 7041 +7043 2 -57.822421044170774 -241.87270844509047 48.2899 0.1144 7042 +7044 2 -58.00509534926259 -240.62285888467864 48.4193 0.1144 7043 +7045 2 -57.96143903777567 -239.34682704876553 48.5685 0.1144 7044 +7046 2 -57.86347852494495 -238.0684971174491 48.7332 0.1144 7045 +7047 2 -57.87477776185866 -236.7914856244638 48.8961 0.1144 7046 +7048 2 -58.06720360524993 -235.53895085232898 49.051 0.1144 7047 +7049 2 -58.37038354006995 -234.3940912789256 49.212 0.1144 7048 +7050 2 -58.689816828285245 -233.51190992824144 49.3805 0.1144 7049 +7051 2 -59.009179257934356 -232.62591087870194 49.555 0.1144 7050 +7052 2 -59.5129235347861 -231.2822048687736 49.7594 0.1144 7051 +7053 2 -60.071484993839135 -229.56965715326555 49.9918 0.1144 7052 +7054 2 -60.63089320265318 -228.76754226447548 50.2398 0.1144 7053 +7055 2 -61.51483187735514 -228.39976111292052 50.3961 0.1144 7054 +7056 2 -62.56952846866651 -227.56359424199465 50.6038 0.1144 7055 +7057 2 -63.68622144578087 -227.72841870937216 50.8113 0.1144 7056 +7058 2 -64.79883891552961 -227.80752417173915 50.9634 0.1144 7057 +7059 2 -65.57050969959049 -229.02717955470587 51.065 0.1144 7058 +7060 2 -65.85131450349616 -229.94325152262084 51.175 0.1144 7059 +7061 2 -28.369056858464397 -249.44486052406944 44.7121 0.1144 6472 +7062 2 -29.241974466695773 -249.8674051872975 45.0982 0.1144 7061 +7063 2 -30.11580968325442 -251.26696234901436 45.2805 0.1144 7062 +7064 2 -30.91493658023665 -251.3999478302997 45.4801 0.1144 7063 +7065 2 -30.74838753136878 -252.7575090866536 45.5823 0.1144 7064 +7066 2 -30.58021199242551 -254.18327461419352 45.5515 0.1144 7065 +7067 2 -38.20390918891852 -242.7081318491525 38.677 0.1144 6450 +7068 2 -38.86207461685645 -243.8081205816378 38.5134 0.1144 7067 +7069 2 -39.55908069998496 -244.45335643259148 38.4572 0.1144 7068 +7070 2 -40.20749162876239 -244.74805419999782 38.3054 0.1144 7069 +7071 2 -40.8365205660315 -246.49301357929676 38.1405 0.1144 7070 +7072 2 -41.33920938005469 -247.93557595687827 37.9271 0.1144 7071 +7073 2 -41.86210956025249 -248.48220112995898 37.7336 0.1144 7072 +7074 2 -42.47566488444064 -249.38792172875094 37.5172 0.1144 7073 +7075 2 -43.031767235316394 -251.13670152236398 37.361 0.1144 7074 +7076 2 -43.5133265766512 -252.22558071380058 37.2658 0.1144 7075 +7077 2 -43.82979317111009 -253.09235293962922 37.2148 0.1144 7076 +7078 2 -44.00618334950852 -254.15286705359074 37.2028 0.1144 7077 +7079 2 -44.2504828700471 -255.22890250580576 37.2184 0.1144 7078 +7080 2 -44.4050891738534 -256.60113552477685 37.2585 0.1144 7079 +7081 2 -44.595202227205604 -258.0867280800647 37.3108 0.1144 7080 +7082 2 -44.76437845181284 -259.54818282722783 37.3727 0.1144 7081 +7083 2 -44.76684265364999 -260.8152162844201 37.522 0.1144 7082 +7084 2 -44.299416538658825 -260.6841927409136 37.7003 0.1144 7083 +7085 2 -43.35242470935465 -262.23003492239064 37.8636 0.1144 7084 +7086 2 -42.34909461442916 -262.10844765895774 37.9742 0.1144 7085 +7087 2 -41.41575459941224 -263.45613563253886 38.0324 0.1144 7086 +7088 2 -40.4615387493891 -263.7304269542872 38.0386 0.1144 7087 +7089 2 -39.5282592299245 -264.72414464355205 37.9921 0.1144 7088 +7090 2 -38.649840309204876 -265.91864709929797 37.9056 0.1144 7089 +7091 2 -37.782707832266134 -266.59485211662786 37.7544 0.1144 7090 +7092 2 -36.968067326618744 -267.81198874764766 37.5561 0.1144 7091 +7093 2 -35.91029698123931 -267.661386320393 37.322 0.1144 7092 +7094 2 -34.83743847529516 -267.7698705606638 36.9986 0.1144 7093 +7095 2 -33.76536622355968 -266.8230753441069 36.5859 0.1144 7094 +7096 2 -33.42272116030168 -265.86397508396436 34.8664 0.1144 7095 +7097 2 -45.16559842376702 -262.52279613262175 37.4536 0.1144 7083 +7098 2 -45.27649555734281 -263.83326229841714 37.3758 0.1144 7097 +7099 2 -45.46180029512124 -264.8934994905314 37.2896 0.1144 7098 +7100 2 -45.69248806698326 -265.8612633844119 37.1288 0.1144 7099 +7101 2 -46.34185391093788 -266.4284170281774 36.5537 0.1144 7100 +7102 2 -38.947352727753156 -233.28722380842234 29.6318 0.1144 6437 +7103 2 -39.71052504740506 -233.5084576054108 31.5554 0.1144 7102 +7104 2 -40.473559499043965 -233.78523927975482 32.3795 0.1144 7103 +7105 2 -41.236660960129655 -235.36784059918284 33.3404 0.1144 7104 +7106 2 -41.999762717301444 -235.37456523971827 34.3711 0.1144 7105 +7107 2 -42.762793615907064 -236.2423468814688 35.4091 0.1144 7106 +7108 2 -43.53069312353847 -237.41364422621464 36.3784 0.1144 7107 +7109 2 -44.066496372765044 -237.92631772206113 37.1078 0.1144 7108 +7110 2 -44.36839659945636 -238.93856746710156 37.6323 0.1144 7109 +7111 2 -44.625713370147764 -240.42185861892142 37.9562 0.1144 7110 +7112 2 -45.082999016231845 -242.11079873183542 38.1332 0.1144 7111 +7113 2 -45.419697110720904 -243.50900724109113 38.2124 0.1144 7112 +7114 2 -45.611439911095715 -244.55449942048546 38.2388 0.1144 7113 +7115 2 -46.14403764793504 -245.08456495719741 38.2483 0.1144 7114 +7116 2 -46.86937353758206 -246.45619006680977 38.2514 0.1144 7115 +7117 2 -47.594004098514276 -247.70356723222494 38.2556 0.1144 7116 +7118 2 -48.31856380088028 -248.01710776516717 38.2614 0.1144 7117 +7119 2 -49.04071431199555 -249.592470906147 38.2698 0.1144 7118 +7120 2 -49.67533456209995 -250.67880212405993 38.2816 0.1144 7119 +7121 2 -50.12774784402458 -251.33472184221057 38.2976 0.1144 7120 +7122 2 -50.088169431317226 -252.64440841929877 38.32 0.1144 7121 +7123 2 -49.77209343954935 -254.19730610900302 38.3533 0.1144 7122 +7124 2 -50.12897290153014 -255.00742287668783 38.3986 0.1144 7123 +7125 2 -50.1758650201734 -256.27729919505697 38.456 0.1144 7124 +7126 2 -50.2884019676995 -257.5183836109153 38.5314 0.1144 7125 +7127 2 -50.753043486807485 -258.8865486793832 38.6767 0.1144 7126 +7128 2 -51.44450612906479 -260.3147718689618 38.8951 0.1144 7127 +7129 2 -51.986801126459525 -260.9273101408346 39.0648 0.1144 7128 +7130 2 -52.59147188995061 -261.8496210404508 39.1877 0.1144 7129 +7131 2 -53.2739652908833 -263.46143794046395 39.2664 0.1144 7130 +7132 2 -53.838914895606194 -264.3366186056393 39.3039 0.1144 7131 +7133 2 -54.389355371166594 -265.12807659895105 39.3044 0.1144 7132 +7134 2 -55.040121307436536 -266.62594413365883 39.2798 0.1144 7133 +7135 2 -55.58249397337802 -267.936025403689 39.2442 0.1144 7134 +7136 2 -56.0502699442067 -268.6167940906568 39.1958 0.1144 7135 +7137 2 -56.74812958707685 -269.599998223156 39.1348 0.1144 7136 +7138 2 -57.48162427876447 -271.0179100524213 39.0491 0.1144 7137 +7139 2 -58.11792164966908 -272.42894840580635 38.89 0.1144 7138 +7140 2 -58.720197043970856 -274.038474256276 38.6702 0.1144 7139 +7141 2 -59.417280499559936 -274.42162912306236 38.4966 0.1144 7140 +7142 2 -60.19936048077122 -275.52202725849446 38.3662 0.1144 7141 +7143 2 -60.971736391446555 -276.8347876196222 38.2743 0.1144 7142 +7144 2 -61.73759657097875 -276.98474082041855 38.2166 0.1144 7143 +7145 2 -62.587076372520144 -278.71611051408405 38.1844 0.1144 7144 +7146 2 -63.54518966421148 -278.72226109564514 38.1618 0.1144 7145 +7147 2 -64.58925509698884 -279.9037534566402 38.1326 0.1144 7146 +7148 2 -65.61807557501952 -279.73897267918505 38.0954 0.1144 7147 +7149 2 -66.61842778634657 -281.016272418583 38.024 0.1144 7148 +7150 2 -67.71321514096252 -280.5535605947856 37.9126 0.1144 7149 +7151 2 -68.82168175188815 -281.81272958486903 37.8255 0.1144 7150 +7152 2 -69.92693653863246 -281.0461151717965 37.7611 0.1144 7151 +7153 2 -70.99879531228233 -282.4537968982908 37.718 0.1144 7152 +7154 2 -71.93439691225102 -282.1017142751216 37.6942 0.1144 7153 +7155 2 -72.26065225787347 -283.63036166984784 37.6877 0.1144 7154 +7156 2 -72.47753622928775 -285.14489310489154 37.6914 0.1144 7155 +7157 2 -72.98820186050816 -286.64096887106314 37.6967 0.1144 7156 +7158 2 -73.57998287884547 -287.0709993932338 37.704 0.1144 7157 +7159 2 -73.90775003523268 -288.02985646555425 37.714 0.1144 7158 +7160 2 -73.87468380063514 -289.3227074774748 37.7289 0.1144 7159 +7161 2 -73.73477411361053 -290.6741252484115 37.7496 0.1144 7160 +7162 2 -73.59486413049979 -292.05693238394144 37.7768 0.1144 7161 +7163 2 -73.46060950880998 -293.47783599620703 37.8101 0.1144 7162 +7164 2 -73.37577991432406 -294.844837185825 37.8692 0.1144 7163 +7165 2 -73.04022838196562 -296.41065230639856 37.9716 0.1144 7164 +7166 2 -72.18209869806773 -296.83478475969986 38.0685 0.1144 7165 +7167 2 -71.54442663190784 -297.60921408867665 38.1424 0.1144 7166 +7168 2 -71.04390454225131 -299.3216711958058 38.1954 0.1144 7167 +7169 2 -70.8126860096194 -300.82613173566733 38.229 0.1144 7168 +7170 2 -70.4245780531833 -301.88666967789544 38.2458 0.1144 7169 +7171 2 -69.73269958808183 -302.1268984780469 38.2516 0.1144 7170 +7172 2 -68.91798496692101 -303.7702774256544 38.2561 0.1144 7171 +7173 2 -67.98795487457383 -304.14810162979325 38.262 0.1144 7172 +7174 2 -67.11440802192753 -305.0742407646723 38.2707 0.1144 7173 +7175 2 -66.17873648420658 -306.010779550442 38.2824 0.1144 7174 +7176 2 -65.23741639504522 -306.35625809513255 38.2992 0.1144 7175 +7177 2 -64.35004255324884 -307.8292856800874 38.3222 0.1144 7176 +7178 2 -63.58550821844477 -307.92861872396884 38.3544 0.1144 7177 +7179 2 -63.114179359875806 -309.37106283586996 38.4003 0.1144 7178 +7180 2 -63.199166443298004 -310.5294235587593 38.4653 0.1144 7179 +7181 2 -63.55610640083118 -311.61126917837527 38.5532 0.1144 7180 +7182 2 -63.518107306521834 -312.86328853449123 38.6728 0.1144 7181 +7183 2 -63.180163257720636 -314.25771940976426 38.838 0.1144 7182 +7184 2 -62.7362532052231 -315.92612296013283 39.1258 0.1144 7183 +7185 2 -62.65059373788439 -317.289503403064 39.4682 0.1144 7184 +7186 2 -62.048346997589945 -318.3512855480933 39.828 0.1144 7185 +7187 2 -61.49916436093813 -318.5996556497371 40.4096 0.1144 7186 +7188 2 -60.60669722314427 -319.7643115354112 41.0925 0.1144 7187 +7189 2 -59.66010866312257 -319.8867406866898 42.7395 0.1144 7188 +7190 2 -28.72698107382958 -225.1049270524528 21.7414 0.1144 6425 +7191 2 -27.693756376335763 -225.8699469086229 21.7575 0.1144 7190 +7192 2 -26.82830457323059 -226.26747388468212 21.7676 0.1144 7191 +7193 2 -25.95799402592705 -227.60330539502795 21.7209 0.1144 7192 +7194 2 -25.11036758644817 -227.9047687683746 21.6588 0.1144 7193 +7195 2 -24.319926458437777 -229.28199983562897 21.622 0.1144 7194 +7196 2 -23.723301029661613 -230.36363638395324 21.6134 0.1144 7195 +7197 2 -23.287492338499295 -231.09778900019995 21.6339 0.1144 7196 +7198 2 -23.168620835655197 -232.33007959950652 21.7151 0.1144 7197 +7199 2 -22.83639284592757 -233.50302263433053 21.8724 0.1144 7198 +7200 2 -21.954792301809903 -234.6729942710622 22.0419 0.1144 7199 +7201 2 -21.143400927193788 -235.21283374673533 22.2128 0.1144 7200 +7202 2 -20.294840002479383 -236.31071098534898 22.4163 0.1144 7201 +7203 2 -19.415715955145295 -237.04444604882684 22.6748 0.1144 7202 +7204 2 -18.353263332889384 -237.1306384573533 23.0042 0.1144 7203 +7205 2 -17.407189610098882 -237.90005779889026 23.3289 0.1144 7204 +7206 2 -16.66614525948568 -236.48260433849543 23.6252 0.1144 7205 +7207 2 -16.036333324955052 -235.56622003420796 23.5976 0.1144 7206 +7208 2 -15.406592248990643 -234.5254834379439 23.486 0.1144 7207 +7209 2 -14.777559758688202 -233.38370266569177 23.3225 0.1144 7208 +7210 2 -14.147818682723791 -232.38041144005513 23.1444 0.1144 7209 +7211 2 -13.518077310673233 -231.32275259315355 22.9785 0.1144 7210 +7212 2 -13.025106483233186 -230.19143714163124 22.851 0.1144 7211 +7213 2 -12.638237172942246 -229.01755178653565 22.7732 0.1144 7212 +7214 2 -12.270830281467195 -227.8249351658888 22.7413 0.1144 7213 +7215 2 -11.903423389992101 -226.22885410097052 22.7478 0.1144 7214 +7216 2 -11.535237054288851 -224.63400561338622 22.784 0.1144 7215 +7217 2 -11.168606350094697 -223.22454353146765 22.8409 0.1144 7216 +7218 2 -10.753376736415877 -222.54132496367507 22.9775 0.1144 7217 +7219 2 -10.265335215654273 -221.93057298725824 23.1624 0.1144 7218 +7220 2 -9.87923528266377 -220.43359432753863 23.3199 0.1144 7219 +7221 2 -9.932563312060612 -219.26057176807063 23.4335 0.1144 7220 +7222 2 -10.022275337633744 -218.1074140129353 23.5051 0.1144 7221 +7223 2 -9.879900325857673 -216.70655176454272 23.5369 0.1144 7222 +7224 2 -10.082843235729335 -215.70300062820039 23.5314 0.1144 7223 +7225 2 -10.20818655498636 -214.56645842022562 23.5001 0.1144 7224 +7226 2 -10.084342733737829 -213.21185303625285 23.4503 0.1144 7225 +7227 2 -9.86268094361912 -211.73735323915926 23.3818 0.1144 7226 +7228 2 -9.62637511718609 -210.24905252179573 23.2941 0.1144 7227 +7229 2 -9.187627767696155 -208.76007970803238 23.1864 0.1144 7228 +7230 2 -8.659820971335861 -208.23869039247018 22.9666 0.1144 7229 +7231 2 -8.029913791063475 -207.56167342653066 22.6331 0.1144 7230 +7232 2 -6.939243043267614 -206.62284235830134 22.363 0.1144 7231 +7233 2 -5.877928462990556 -207.57353836530285 22.1614 0.1144 7232 +7234 2 -4.955078570617983 -207.75395771163298 21.9321 0.1144 7233 +7235 2 -17.403875434109082 -237.96659900561792 24.4055 0.1144 7205 +7236 2 -16.952351472000043 -238.71293057671642 25.4814 0.1144 7235 +7237 2 -16.158684899847174 -239.71843904158095 25.857 0.1144 7236 +7238 2 -15.34404765114704 -240.65578579173211 26.2043 0.1144 7237 +7239 2 -14.455158741638577 -241.2902910738022 26.5542 0.1144 7238 +7240 2 -13.555396226373134 -241.95519130304717 27.5559 0.1144 7239 +7241 2 -3.9160933224472174 -257.91823540502685 18.6131 0.1144 2113 +7242 2 -3.616146139936614 -258.7876428263183 18.6632 0.1144 7241 +7243 2 -2.5713800169211822 -258.9316082790224 18.6574 0.1144 7242 +7244 2 -1.5414385003613376 -259.5260171231642 18.5542 0.1144 7243 +7245 2 -0.9278410656001412 -260.2376815562769 18.4364 0.1144 7244 +7246 2 -1.1551474124544114 -261.13147513852414 18.5578 0.1144 7245 +7247 2 -1.1673359126688112 -262.3905327389592 18.6215 0.1144 7246 +7248 2 -0.8301713080957498 -263.49888503582656 18.6479 0.1144 7247 +7249 2 -0.3968323037365096 -265.1050011366672 18.6836 0.1144 7248 +7250 2 0.05028681418156111 -266.47517768643087 18.7293 0.1144 7249 +7251 2 0.30010739590718316 -267.6872372252605 18.786 0.1144 7250 +7252 2 0.6478329816907689 -268.4845259793117 18.9272 0.1144 7251 +7253 2 1.326022029568989 -269.33532767436685 19.0641 0.1144 7252 +7254 2 1.9791616931018794 -270.86307792789074 19.1932 0.1144 7253 +7255 2 2.6896315481970845 -271.5501205806167 19.3233 0.1144 7254 +7256 2 3.1812526984346903 -272.51405170381986 19.4616 0.1144 7255 +7257 2 3.7697800228229 -273.9488882502019 19.6145 0.1144 7256 +7258 2 4.402728454036634 -275.179090153228 19.7928 0.1144 7257 +7259 2 4.894953375453149 -275.9072221617414 20.1182 0.1144 7258 +7260 2 5.413061107101001 -276.79286273749483 20.5743 0.1144 7259 +7261 2 5.443721407395039 -278.0816307517893 21.0103 0.1144 7260 +7262 2 4.996139925832672 -279.30787069947445 21.4653 0.1144 7261 +7263 2 4.972295466371612 -280.39524535160086 22.0207 0.1144 7262 +7264 2 4.153476589852062 -281.57301908320994 22.6116 0.1144 7263 +7265 2 3.9981513373699187 -282.75193065849163 23.1255 0.1144 7264 +7266 2 3.4915531528447303 -281.88305427869096 23.7656 0.1144 7265 +7267 2 2.853356384626146 -281.0911222804304 24.5277 0.1144 7266 +7268 2 2.653056075846088 -280.0310414104201 25.2475 0.1144 7267 +7269 2 2.6053392910397477 -278.81284211715075 25.8202 0.1144 7268 +7270 2 2.3870033974949934 -277.82616778059054 26.3162 0.1144 7269 +7271 2 1.9797274258226238 -276.7378711350345 26.854 0.1144 7270 +7272 2 1.673467425140366 -275.484459382075 27.3792 0.1144 7271 +7273 2 1.1003806603033368 -274.0577173330791 27.7977 0.1144 7272 +7274 2 0.07949612054259347 -274.2375091639863 28.1744 0.1144 7273 +7275 2 -0.7697121939947777 -272.8122285924536 28.4987 0.1144 7274 +7276 2 -0.9305588037501451 -271.59432701809976 28.7456 0.1144 7275 +7277 2 -1.5505333073689371 -270.95878783003417 28.9293 0.1144 7276 +7278 2 -2.33941880387016 -270.1603514283019 29.0805 0.1144 7277 +7279 2 -2.976280928932532 -268.61149147776433 29.3247 0.1144 7278 +7280 2 -3.562162395281888 -268.0190673585927 29.6671 0.1144 7279 +7281 2 -4.013377690078386 -267.20442939247323 29.9326 0.1144 7280 +7282 2 -4.6034606459757725 -265.68410276628003 30.1302 0.1144 7281 +7283 2 -4.612259144515718 -264.9128718354228 30.2655 0.1144 7282 +7284 2 -4.393731806117749 -263.9403019412068 30.3442 0.1144 7283 +7285 2 -3.874091119965044 -263.00196881056814 30.3724 0.1144 7284 +7286 2 -3.407880847573246 -261.33579107514146 30.3744 0.1144 7285 +7287 2 -2.9473191266218777 -259.97594866503863 30.3769 0.1144 7286 +7288 2 -2.3143286235400424 -259.5221454860025 30.3808 0.1144 7287 +7289 2 -1.7987773042852666 -258.4904436775053 30.3859 0.1144 7288 +7290 2 -1.464481591066395 -256.9130779292037 30.3932 0.1144 7289 +7291 2 -1.1934416493351137 -255.47851696790605 30.4032 0.1144 7290 +7292 2 -0.8309003120389313 -254.2169750457822 30.4175 0.1144 7291 +7293 2 -0.4876391126290578 -253.37628739451247 30.4371 0.1144 7292 +7294 2 -0.5159038416333708 -252.09085001280494 30.4651 0.1144 7293 +7295 2 -0.7083329419718467 -250.63829206463174 30.5052 0.1144 7294 +7296 2 -0.8749525533198685 -249.3181006552175 30.5586 0.1144 7295 +7297 2 -0.8296092562052415 -248.05753721250045 30.6261 0.1144 7296 +7298 2 -0.7162928644508959 -246.89280908733207 30.7348 0.1144 7297 +7299 2 -0.6992723617739358 -245.6749653890555 30.9179 0.1144 7298 +7300 2 -0.9118586445288557 -244.38210181136006 31.1284 0.1144 7299 +7301 2 -1.371054013469827 -243.3550999239976 31.3144 0.1144 7300 +7302 2 -1.5918222869678225 -242.40114236620684 31.4591 0.1144 7301 +7303 2 -1.4064129368066176 -240.9695483204439 31.603 0.1144 7302 +7304 2 -1.0858905271660255 -239.63178402141915 31.7349 0.1144 7303 +7305 2 -0.7776331633723466 -238.41820238870986 31.8049 0.1144 7304 +7306 2 -0.4207605113720625 -237.62069175717653 31.8287 0.1144 7305 +7307 2 -0.22883217312053716 -236.55746188654544 31.8184 0.1144 7306 +7308 2 -0.46413000572261964 -235.1513213749074 31.7803 0.1144 7307 +7309 2 -0.7673261171642061 -233.674755390835 31.6268 0.1144 7308 +7310 2 -0.9466598006166578 -232.46020556552946 31.4286 0.1144 7309 +7311 2 -0.7840124289271664 -231.2486192032694 31.2838 0.1144 7310 +7312 2 -0.34292970761379493 -230.5796173193715 31.1898 0.1144 7311 +7313 2 0.21479883725120885 -229.533337523196 31.1461 0.1144 7312 +7314 2 0.638163566081829 -227.96579909644623 31.1965 0.1144 7313 +7315 2 0.22032661319889257 -227.34547745547172 31.285 0.1144 7314 +7316 2 -0.7555645417995684 -226.25647718201355 31.362 0.1144 7315 +7317 2 -1.553202248506473 -225.62089493331277 31.416 0.1144 7316 +7318 2 -1.6679100668389033 -224.5495878857969 31.4482 0.1144 7317 +7319 2 -2.1788312867180473 -223.66221607984795 31.46 0.1144 7318 +7320 2 -2.7608633099047797 -222.07061575063224 31.453 0.1144 7319 +7321 2 -3.479444889349061 -221.15074581492286 31.4364 0.1144 7320 +7322 2 -4.328022690971762 -220.77013444212406 31.4135 0.1144 7321 +7323 2 -4.956928926964949 -219.04456867527003 31.3838 0.1144 7322 +7324 2 -4.87999603320057 -217.90733127003784 31.3477 0.1144 7323 +7325 2 -5.478909163936462 -216.960775697006 31.2794 0.1144 7324 +7326 2 -6.24920623130501 -216.66006889772962 31.1632 0.1144 7325 +7327 2 -6.9120194685044645 -214.95585603977415 31.068 0.1144 7326 +7328 2 -7.620913558235026 -214.1612229764492 30.994 0.1144 7327 +7329 2 -8.702354824059153 -213.85676424315182 30.9386 0.1144 7328 +7330 2 -9.633235219200753 -212.9998142830873 30.898 0.1144 7329 +7331 2 -10.440681904912445 -212.57486091860306 30.87 0.1144 7330 +7332 2 -11.23186191335386 -210.8289541173219 30.8482 0.1144 7331 +7333 2 -12.331836926365963 -211.57334347331096 30.8216 0.1144 7332 +7334 2 -13.462015909545748 -211.33209083563366 30.7636 0.1144 7333 +7335 2 -14.434701256070886 -210.85272085464786 30.6737 0.1144 7334 +7336 2 -15.087837366570485 -209.68268303687628 30.6163 0.1144 7335 +7337 2 -15.645710373817025 -208.6809721025853 30.592 0.1144 7336 +7338 2 -16.32469603891781 -207.82892930405492 30.6009 0.1144 7337 +7339 2 -17.02950076175048 -206.56682363094123 30.6558 0.1144 7338 +7340 2 -17.88445918526409 -205.95621377749094 30.7894 0.1144 7339 +7341 2 -18.76369110192817 -205.00420565029816 30.9364 0.1144 7340 +7342 2 -19.503995562225825 -204.06737096077842 31.0904 0.1144 7341 +7343 2 -20.321045057023646 -203.5289012103088 31.2878 0.1144 7342 +7344 2 -21.104862086374546 -202.23868390524558 31.4558 0.1144 7343 +7345 2 -22.20725310061795 -202.33994464905987 31.5949 0.1144 7344 +7346 2 -23.319941189361685 -201.59202109204705 31.736 0.1144 7345 +7347 2 -24.404265421684244 -202.00573634571901 31.9124 0.1144 7346 +7348 2 -25.405277613866783 -200.7732416791397 32.0608 0.1144 7347 +7349 2 -26.411920888409227 -200.84245753930293 32.1894 0.1144 7348 +7350 2 -27.28131007225184 -199.42459478170554 32.3117 0.1144 7349 +7351 2 -27.63459973094859 -198.46583849678586 32.4612 0.1144 7350 +7352 2 -28.040310004183986 -197.80690382149106 32.6953 0.1144 7351 +7353 2 -28.544719045953393 -196.71557186981906 32.9218 0.1144 7352 +7354 2 -28.78973131210525 -195.23332296698578 33.1078 0.1144 7353 +7355 2 -28.814733290117207 -193.97053577213794 33.292 0.1144 7354 +7356 2 -28.25133200873654 -193.26371743665112 33.4664 0.1144 7355 +7357 2 -28.247997074163386 -192.042315815709 33.5885 0.1144 7356 +7358 2 -28.697515316404463 -190.7033611848369 33.6622 0.1144 7357 +7359 2 -28.436878260029456 -189.737778407829 33.9783 0.1144 7358 +7360 2 -27.803880946967084 -188.27543614922118 34.0539 0.1144 7359 +7361 2 -27.016132280459942 -187.18074741561736 34.1001 0.1144 7360 +7362 2 -26.21052725527064 -186.77930738079908 34.118 0.1144 7361 +7363 2 -25.411367102658254 -185.23625150050003 34.0981 0.1144 7362 +7364 2 -24.627609704560616 -184.88134995768903 33.9956 0.1144 7363 +7365 2 -23.679231276360728 -183.9201931030545 33.9007 0.1144 7364 +7366 2 -22.57734790421131 -183.8673281274638 33.8285 0.1144 7365 +7367 2 -21.521779992907057 -182.96804358142356 33.7417 0.1144 7366 +7368 2 -29.486407824986554 -189.2056254994662 33.7375 0.1144 7358 +7369 2 -30.461543720832104 -189.3959728828297 33.7495 0.1144 7368 +7370 2 -31.472205799792413 -187.9288551169676 33.754 0.1144 7369 +7371 2 -32.49822000254253 -188.28346107729797 33.7588 0.1144 7370 +7372 2 -33.597324080718344 -187.14680984899223 33.7658 0.1144 7371 +7373 2 -34.67346932062985 -188.38761673663532 33.7756 0.1144 7372 +7374 2 -35.78953627772093 -188.12175113483602 33.7887 0.1144 7373 +7375 2 -36.928744499591204 -188.24511106383062 33.8069 0.1144 7374 +7376 2 -37.98931644430358 -187.6841954712893 33.8335 0.1144 7375 +7377 2 -39.098050275401576 -187.46317621592084 33.8722 0.1144 7376 +7378 2 -40.23028610736062 -186.61773402640307 33.924 0.1144 7377 +7379 2 -41.36907122217902 -187.23465730149763 33.9889 0.1144 7378 +7380 2 -42.5049425775435 -186.37781916373274 34.0659 0.1144 7379 +7381 2 -43.57286027183717 -187.28651974303835 34.277 0.1144 7380 +7382 2 -44.6880936009418 -186.45498880575906 34.4918 0.1144 7381 +7383 2 -45.82164675747721 -187.19952105977427 34.6626 0.1144 7382 +7384 2 -46.94967059128902 -186.3118371248134 34.7914 0.1144 7383 +7385 2 -48.067335858675264 -186.50436849504018 34.8796 0.1144 7384 +7386 2 -49.18337818901952 -185.9851718151542 34.9499 0.1144 7385 +7387 2 -50.23663176965821 -185.63917433233604 35.0224 0.1144 7386 +7388 2 -51.16988730614787 -184.74058718372538 35.0599 0.1144 7387 +7389 2 -52.25529595139237 -184.615064726735 35.0501 0.1144 7388 +7390 2 -53.384156468037474 -184.38944965295082 34.9894 0.1144 7389 +7391 2 -54.50735205452025 -183.9407793643635 34.8824 0.1144 7390 +7392 2 -55.62640664700744 -184.23066369173438 34.6752 0.1144 7391 +7393 2 -56.68932042092278 -183.6470694730881 34.3188 0.1144 7392 +7394 2 -57.742435578847164 -184.32412094791295 33.8638 0.1144 7393 +7395 2 -58.843494450079945 -183.9595276251336 33.4121 0.1144 7394 +7396 2 -59.869973799194405 -184.66512739667934 33.2475 0.1144 7395 +7397 2 -60.98785298633784 -184.12194098624747 33.2335 0.1144 7396 +7398 2 -62.094831825988535 -184.30385426673666 33.1946 0.1144 7397 +7399 2 -63.148203342884976 -183.57425314475532 33.1974 0.1144 7398 +7400 2 -63.993451087982464 -183.1414371888773 33.2203 0.1144 7399 +7401 2 -64.80569602234017 -181.4113176494726 33.2343 0.1144 7400 +7402 2 -65.87837421675835 -182.01936293787583 33.2237 0.1144 7401 +7403 2 -67.01953141807793 -181.25429950260872 33.2184 0.1144 7402 +7404 2 -68.15396261551638 -181.69741734878124 33.2326 0.1144 7403 +7405 2 -69.29709459816303 -181.30782804767122 33.2548 0.1144 7404 +7406 2 -70.4366019186045 -181.48963217106999 33.2833 0.1144 7405 +7407 2 -71.57816870100064 -181.60632222333726 33.3183 0.1144 7406 +7408 2 -71.7803871772305 -181.84101453411057 33.3794 0.1144 7407 +7409 2 -72.90957629294333 -181.0080090368773 33.4911 0.1144 7408 +7410 2 -74.05103470782304 -181.91650947239407 33.5896 0.1144 7409 +7411 2 -75.19491919086185 -181.10397214376326 33.6669 0.1144 7410 +7412 2 -76.33122070282998 -181.7929782858531 33.7252 0.1144 7411 +7413 2 -77.37134855276958 -181.88533188847111 33.7669 0.1144 7412 +7414 2 -78.43018957808006 -182.69649055540435 33.7966 0.1144 7413 +7415 2 -79.53449901838853 -182.83766197166543 33.8212 0.1144 7414 +7416 2 -80.58034568616252 -183.39942253755666 33.8528 0.1144 7415 +7417 2 -81.65945275959231 -183.86795039128856 33.8932 0.1144 7416 +7418 2 -82.72319309289833 -184.3190645982384 33.9416 0.1144 7417 +7419 2 -83.7756066207267 -185.38257937095574 34.0684 0.1144 7418 +7420 2 -84.86448231146458 -185.04997448875713 34.1942 0.1144 7419 +7421 2 -85.99998444744931 -185.9428370220738 34.3048 0.1144 7420 +7422 2 -87.12244420834796 -184.7899262272305 34.4022 0.1144 7421 +7423 2 -88.25922330721228 -184.13408093522636 34.4887 0.1144 7422 +7424 2 -89.34542451845965 -184.23236277584883 34.6374 0.1144 7423 +7425 2 -90.4749934186664 -183.7665720323878 34.7648 0.1144 7424 +7426 2 -91.4944921863596 -183.4167445752194 34.8785 0.1144 7425 +7427 2 -92.15813529641184 -182.00341605662553 34.9835 0.1144 7426 +7428 2 -92.68443963513667 -181.12457531427947 35.0829 0.1144 7427 +7429 2 -93.27939495519341 -180.25812091894238 35.1775 0.1144 7428 +7430 2 -94.0713947695599 -178.9500311690803 35.3424 0.1144 7429 +7431 2 -94.83352622490727 -178.28892120155356 35.5796 0.1144 7430 +7432 2 -95.5626316808125 -177.32807882483814 35.775 0.1144 7431 +7433 2 -96.3530728088229 -176.09125686390627 35.9293 0.1144 7432 +7434 2 -97.27175921878413 -175.79535960171359 36.0436 0.1144 7433 +7435 2 -98.20017268588343 -174.585769121925 36.1959 0.1144 7434 +7436 2 -98.99625881230088 -174.04771252003744 36.2894 0.1144 7435 +7437 2 -99.85372748641475 -173.0089801406627 36.3331 0.1144 7436 +7438 2 -100.83454213448402 -172.41776550847527 36.3054 0.1144 7437 +7439 2 -101.71295424522307 -171.60266923354078 36.2376 0.1144 7438 +7440 2 -102.68978719362413 -170.8334371239456 36.143 0.1144 7439 +7441 2 -103.56397412792636 -170.34686390037908 35.9257 0.1144 7440 +7442 2 -104.18762516041929 -169.09873749728368 35.5606 0.1144 7441 +7443 2 -104.57814911808666 -167.8956891957835 35.3203 0.1144 7442 +7444 2 -104.77106699516338 -167.87363402000173 35.208 0.1144 7443 +7445 2 -105.53809450155907 -167.6693168614705 35.2747 0.1144 7444 +7446 2 -106.11514233402241 -166.11977881765256 35.5552 0.1144 7445 +7447 2 -106.50559167798997 -164.53454175729883 35.9464 0.1144 7446 +7448 2 -107.1966294090384 -164.1498254844615 36.3572 0.1144 7447 +7449 2 -108.06661535197907 -163.448956435506 36.8382 0.1144 7448 +7450 2 -108.6235397558425 -161.83236904869318 37.2352 0.1144 7449 +7451 2 -109.37923364677998 -161.57747666962297 37.529 0.1144 7450 +7452 2 -110.18018532737636 -160.47157429536094 37.7381 0.1144 7451 +7453 2 -110.98191289916755 -159.25951006608207 37.8893 0.1144 7452 +7454 2 -111.78442021127304 -158.99832218716162 37.9982 0.1144 7453 +7455 2 -112.58544245434949 -157.35536424048468 38.0733 0.1144 7454 +7456 2 -113.3516032792289 -156.74430086374724 38.1363 0.1144 7455 +7457 2 -114.07428754944604 -155.95817765481428 38.1816 0.1144 7456 +7458 2 -114.43567551463104 -154.45312554313972 38.2108 0.1144 7457 +7459 2 -114.84237871018038 -152.84541861434172 38.227 0.1144 7458 +7460 2 -115.7271578228492 -152.86054655534008 38.2343 0.1144 7459 +7461 2 -116.78532758839168 -151.67576947944377 38.236 0.1144 7460 +7462 2 -117.69758600268435 -151.50305765876328 38.2346 0.1144 7461 +7463 2 -118.59138103016878 -150.38498236159555 38.232 0.1144 7462 +7464 2 -119.6245653659658 -150.01135019152295 38.2284 0.1144 7463 +7465 2 -120.59415051277327 -149.17728981375464 38.2242 0.1144 7464 +7466 2 -121.15929145546889 -147.78489014197507 38.2169 0.1144 7465 +7467 2 -121.29021927758063 -146.59973872563467 38.2063 0.1144 7466 +7468 2 -121.257893526705 -145.26563726548062 38.1928 0.1144 7467 +7469 2 -121.3160772454533 -144.01035363825633 38.1786 0.1144 7468 +7470 2 -121.16875575400438 -142.5829962500853 38.166 0.1144 7469 +7471 2 -121.29730438354832 -141.4257117665509 38.0794 0.1144 7470 +7472 2 -120.87183493397433 -140.280439282531 38.0293 0.1144 7471 +7473 2 -120.47442487031415 -139.44533970325736 38.0741 0.1144 7472 +7474 2 -120.07701125362064 -138.45806780563132 38.162 0.1144 7473 +7475 2 -119.77026520240534 -136.94077875332457 38.3544 0.1144 7474 +7476 2 -119.31025257068816 -135.44376836090055 38.652 0.1144 7475 +7477 2 -118.76348812581544 -134.91650180689606 39.0513 0.1144 7476 +7478 2 -118.49932726448446 -134.11100858018085 39.4534 0.1144 7477 +7479 2 -118.04831011764121 -133.1613854912415 39.5847 0.1144 7478 +7480 2 -117.77381763372077 -131.7061837217044 39.5993 0.1144 7479 +7481 2 -117.36828883363063 -130.10560146330053 39.5492 0.1144 7480 +7482 2 -118.04576712434303 -130.57708348542624 39.3896 0.1144 7481 +7483 2 -119.16754944022097 -130.03996804734035 39.1194 0.1144 7482 +7484 2 -120.15112950368749 -131.25423770582998 38.719 0.1144 7483 +7485 2 -121.01759898239477 -131.48928324175816 38.3412 0.1144 7484 +7486 2 -121.725109010229 -132.6080274790778 37.9898 0.1144 7485 +7487 2 -122.32256552384277 -134.2215466600521 37.6737 0.1144 7486 +7488 2 -122.94261614923235 -134.69204921398992 37.3976 0.1144 7487 +7489 2 -123.88120602836904 -135.66485484751774 37.1991 0.1144 7488 +7490 2 -124.92618551644031 -135.96621172775346 37.0563 0.1144 7489 +7491 2 -125.70335192592313 -136.58329513433995 37.011 0.1144 7490 +7492 2 -125.40254082065707 -137.53814524400732 36.927 0.1144 7491 +7493 2 -125.54191017817045 -138.8680088640991 36.7002 0.1144 7492 +7494 2 -125.76011522929485 -140.07742358024024 36.3334 0.1144 7493 +7495 2 -125.53526390069305 -141.13996069174536 36.0662 0.1144 7494 +7496 2 -125.17648122974974 -141.97237301211123 35.7767 0.1144 7495 +7497 2 -124.41846658332275 -143.5132653266269 35.4654 0.1144 7496 +7498 2 -123.42573547674442 -143.65895597064355 35.2666 0.1144 7497 +7499 2 -122.29925365448078 -144.351320836602 35.1708 0.1144 7498 +7500 2 -121.1712333737023 -143.89790256657483 35.1498 0.1144 7499 +7501 2 -120.03366822272957 -144.84666100350813 35.1705 0.1144 7500 +7502 2 -118.92444274310274 -144.1460682523418 35.2962 0.1144 7501 +7503 2 -117.82553526610428 -144.9541377098221 35.5102 0.1144 7502 +7504 2 -116.68980277512563 -144.5723623224595 35.7031 0.1144 7503 +7505 2 -115.59584529336242 -144.45316761216398 35.8543 0.1144 7504 +7506 2 -114.62317194569764 -143.65519015693556 35.9691 0.1144 7505 +7507 2 -113.63097548156435 -143.24627839540827 36.0517 0.1144 7506 +7508 2 -112.56567270676862 -142.611046320939 36.1063 0.1144 7507 +7509 2 -111.48493262936898 -142.22536001511432 36.1525 0.1144 7508 +7510 2 -110.42034504811548 -141.89131255856367 36.2435 0.1144 7509 +7511 2 -109.36800258095366 -141.20997156510947 36.349 0.1144 7510 +7512 2 -108.29046150204681 -141.1018849276347 36.4314 0.1144 7511 +7513 2 -107.19755368301614 -140.249450978138 36.4918 0.1144 7512 +7514 2 -106.08253758713079 -140.6306509436537 36.5322 0.1144 7513 +7515 2 -104.94950613432204 -139.5533883590699 36.5543 0.1144 7514 +7516 2 -103.8073902626916 -140.3589370504792 36.563 0.1144 7515 +7517 2 -102.67140748496377 -139.74758319990295 36.5691 0.1144 7516 +7518 2 -101.5354378290106 -140.41267914830544 36.5739 0.1144 7517 +7519 2 -100.40176594194486 -140.28553565221935 36.5691 0.1144 7518 +7520 2 -99.26591501652194 -140.45493260540738 36.5736 0.1144 7519 +7521 2 -98.16837243997796 -140.46965952132325 36.6472 0.1144 7520 +7522 2 -97.13223733396316 -140.61524350149946 36.7027 0.1144 7521 +7523 2 -96.2212392077421 -141.24761737727084 36.5408 0.1144 7522 +7524 2 -95.27789957665132 -141.81184860249476 36.2166 0.1144 7523 +7525 2 -94.21331593358782 -142.18089405285377 35.9117 0.1144 7524 +7526 2 -93.12378011640902 -142.53048839068094 35.6544 0.1144 7525 +7527 2 -92.09299135190173 -143.19642221720687 35.4466 0.1144 7526 +7528 2 -90.96752593674036 -143.1021405357398 35.2926 0.1144 7527 +7529 2 -89.95855154369454 -143.94882857991797 35.1417 0.1144 7528 +7530 2 -88.87227877359425 -143.96561166018208 35.0358 0.1144 7529 +7531 2 -87.76905788649805 -144.80515728665387 34.9563 0.1144 7530 +7532 2 -86.76489436568647 -146.34505965223224 34.897 0.1144 7531 +7533 2 -85.79368628183698 -146.62264690813052 34.8547 0.1144 7532 +7534 2 -84.69696720983669 -147.37093878438966 34.8272 0.1144 7533 +7535 2 -83.6484372641442 -147.3607951486907 34.8093 0.1144 7534 +7536 2 -83.18595921245566 -148.48501710506 34.7861 0.1144 7535 +7537 2 -83.25692413929656 -148.55509057390236 35.2089 0.1144 7536 +7538 2 -83.80701913888095 -149.69202573261967 36.1057 0.1144 7537 +7539 2 -83.76714893576938 -150.67332992300632 36.4633 0.1144 7538 +7540 2 -83.22467572217653 -151.52205737183235 36.7503 0.1144 7539 +7541 2 -82.97885046008017 -152.92278939875106 36.9684 0.1144 7540 +7542 2 -82.3583200572466 -154.29759540619486 37.1238 0.1144 7541 +7543 2 -81.5767430599916 -154.45207627145572 37.2235 0.1144 7542 +7544 2 -81.09899656876792 -155.6435540143091 37.2817 0.1144 7543 +7545 2 -80.71005192949852 -157.22544168607865 37.3789 0.1144 7544 +7546 2 -80.28725042156134 -158.68475719053987 37.4814 0.1144 7545 +7547 2 -79.71970709759545 -159.20551939598803 37.5603 0.1144 7546 +7548 2 -79.14085689990713 -160.03943004310702 37.6177 0.1144 7547 +7549 2 -78.5233047093137 -161.7488397902517 37.655 0.1144 7548 +7550 2 -77.92990502076614 -162.76904804061766 37.6737 0.1144 7549 +7551 2 -77.30260839793996 -163.23266934643328 37.6782 0.1144 7550 +7552 2 -77.03659545655779 -164.46796954146924 37.6782 0.1144 7551 +7553 2 -77.03342778176253 -165.72255304573176 37.6782 0.1144 7552 +7554 2 -76.9816788686634 -167.03220654630871 37.6782 0.1144 7553 +7555 2 -77.50624985786739 -168.22533489498582 37.6782 0.1144 7554 +7556 2 -77.42558444607948 -169.3468526602411 37.6782 0.1144 7555 +7557 2 -76.84194961970628 -170.486774334382 37.6782 0.1144 7556 +7558 2 -76.17179077851092 -172.14471404854862 37.6782 0.1144 7557 +7559 2 -75.97776242801928 -173.39272624657895 37.6782 0.1144 7558 +7560 2 -75.99233998562892 -174.69399682125757 37.6782 0.1144 7559 +7561 2 -75.63659376190375 -175.5102879071567 37.6782 0.1144 7560 +7562 2 -75.14342053319031 -176.1807609073398 37.6782 0.1144 7561 +7563 2 -74.86525672708542 -177.4466065746171 37.6782 0.1144 7562 +7564 2 -74.91378214578458 -178.64482412892943 37.6782 0.1144 7563 +7565 2 -82.17666233003588 -149.1656186945151 34.7536 0.1144 7536 +7566 2 -81.09430345588453 -149.1908736931942 34.7094 0.1144 7565 +7567 2 -79.9855353727835 -149.72432797647812 34.6531 0.1144 7566 +7568 2 -78.8839779865265 -149.9969056615265 34.5638 0.1144 7567 +7569 2 -77.8412722653237 -150.38295517483579 34.4134 0.1144 7568 +7570 2 -76.86848180822929 -151.0581416397012 34.2558 0.1144 7569 +7571 2 -75.84665852991296 -151.61146663205352 34.0726 0.1144 7570 +7572 2 -74.83359427178281 -152.1126801376173 33.9343 0.1144 7571 +7573 2 -73.8785349289458 -152.95271765538592 33.8383 0.1144 7572 +7574 2 -72.83011966256389 -153.24081766039774 33.7803 0.1144 7573 +7575 2 -71.74222395542154 -153.71639686145164 33.7532 0.1144 7574 +7576 2 -70.73722375177663 -154.2614086448406 33.7431 0.1144 7575 +7577 2 -69.77969442605047 -155.10441792105445 33.7434 0.1144 7576 +7578 2 -68.83513882581892 -155.49875527025145 33.7442 0.1144 7577 +7579 2 -67.91722860313858 -156.79028229718614 33.745 0.1144 7578 +7580 2 -67.00164338926793 -156.7711856162957 33.7464 0.1144 7579 +7581 2 -66.06759449250292 -158.49157037489692 33.7484 0.1144 7580 +7582 2 -65.01110234594712 -157.85955429385334 33.7512 0.1144 7581 +7583 2 -63.8935348809631 -159.03722730534588 33.7551 0.1144 7582 +7584 2 -62.86920786594091 -158.73536241866594 33.7604 0.1144 7583 +7585 2 -61.917454892740395 -160.30935978191758 33.7677 0.1144 7584 +7586 2 -61.07780171742536 -160.27099958209394 33.7781 0.1144 7585 +7587 2 -60.434342733625655 -161.72591832841363 33.7932 0.1144 7586 +7588 2 -59.708527268634946 -163.03033801705362 33.8142 0.1144 7587 +7589 2 -58.7157316152846 -162.926274977139 33.8408 0.1144 7588 +7590 2 -57.637441974175616 -163.5498255977635 33.8724 0.1144 7589 +7591 2 -56.58817314805208 -163.87707361710528 33.9444 0.1144 7590 +7592 2 -55.70012141956335 -164.8969041917805 34.0424 0.1144 7591 +7593 2 -55.034005069674706 -165.3751285192521 34.1242 0.1144 7592 +7594 2 -54.426126748834 -166.82164573455339 34.1796 0.1144 7593 +7595 2 -53.57285551304839 -167.69494763618974 34.2087 0.1144 7594 +7596 2 -52.565361935711564 -168.0019460152243 34.2129 0.1144 7595 +7597 2 -51.75239855086443 -169.40881596146886 34.1936 0.1144 7596 +7598 2 -50.820813325194464 -169.27038923424408 34.1603 0.1144 7597 +7599 2 -49.82309112392649 -170.73536965309646 34.0766 0.1144 7598 +7600 2 -48.957618890879615 -170.7555205263303 33.9741 0.1144 7599 +7601 2 -48.0211847858388 -172.14272703022206 33.889 0.1144 7600 +7602 2 -47.24369715548173 -172.67437479170582 33.8268 0.1144 7601 +7603 2 -46.476689580841295 -173.44542559422294 33.7862 0.1144 7602 +7604 2 -45.49828462220918 -174.5753114277951 33.7658 0.1144 7603 +7605 2 -44.387894100252566 -174.3897394634958 33.7638 0.1144 7604 +7606 2 -43.25903358360746 -174.8339941449925 33.7708 0.1144 7605 +7607 2 -42.167969374841704 -175.16195073147986 33.7826 0.1144 7606 +7608 2 -41.490607144969346 -176.50210507027572 33.7999 0.1144 7607 +7609 2 -40.60734280392641 -176.39814233201685 33.8232 0.1144 7608 +7610 2 -39.520314276486715 -177.90269339499824 33.8528 0.1144 7609 +7611 2 -38.384670719455706 -178.15751230890913 33.8884 0.1144 7610 +7612 2 -37.4233522440189 -178.50556134447064 33.9718 0.1144 7611 +7613 2 -36.61027743680844 -179.79175138071946 34.0802 0.1144 7612 +7614 2 -35.76331901919444 -180.18853649195364 34.1662 0.1144 7613 +7615 2 -34.766396489995905 -181.1861479659255 34.2297 0.1144 7614 +7616 2 -33.82500909530166 -181.21984662888616 34.2726 0.1144 7615 +7617 2 -32.92077437379744 -182.19915987906694 34.2966 0.1144 7616 +7618 2 -31.925400666127537 -182.772021896443 34.3042 0.1144 7617 +7619 2 -121.56037437457783 -142.45857854644314 37.6782 0.1144 7471 +7620 2 -121.96422605386769 -144.0566536916938 37.7283 0.1144 7619 +7621 2 -122.36807743707142 -145.14046126277168 37.7482 0.1144 7620 +7622 2 -122.77192911636126 -145.99119975097344 37.7765 0.1144 7621 +7623 2 -123.17570993708493 -146.99037031715693 37.816 0.1144 7622 +7624 2 -123.57956161637478 -148.5538227785421 37.8697 0.1144 7623 +7625 2 -123.98348385814474 -150.1422581348249 37.9428 0.1144 7624 +7626 2 -124.69481807766694 -149.0374021881535 38.0556 0.1144 7625 +7627 2 -125.60948242626318 -148.39179963675224 38.2141 0.1144 7626 +7628 2 -126.52421733733945 -147.66568414897716 38.4166 0.1144 7627 +7629 2 -127.43973198873005 -146.775684742549 38.6585 0.1144 7628 +7630 2 -128.07180593207417 -146.4557371348114 38.9973 0.1144 7629 +7631 2 -128.45089096161385 -145.05572001811524 39.4439 0.1144 7630 +7632 2 -128.80814168793682 -143.52896756520988 39.9568 0.1144 7631 +7633 2 -128.86144247741152 -142.24596235052584 40.4572 0.1144 7632 +7634 2 -128.5976672141821 -141.3195652893595 40.8744 0.1144 7633 +7635 2 -128.577357218777 -140.08165948143412 41.1799 0.1144 7634 +7636 2 -128.92823788832317 -138.491188342194 41.3619 0.1144 7635 +7637 2 -129.4279837906988 -137.01071903489168 41.4431 0.1144 7636 +7638 2 -129.960645266526 -136.4561734509256 41.4492 0.1144 7637 +7639 2 -130.27612379890914 -135.5521831801786 41.4061 0.1144 7638 +7640 2 -130.27116642548037 -134.22703401462098 41.3322 0.1144 7639 +7641 2 -130.26705580181263 -132.9045586035261 41.2378 0.1144 7640 +7642 2 -129.96946848703266 -131.18247263855775 40.7641 0.1144 7641 +7643 2 -130.21124800087514 -130.2046695084631 40.4914 0.1144 7642 +7644 2 -131.09257812438815 -129.1622039220074 40.2937 0.1144 7643 +7645 2 -132.1861760685427 -129.05186132548684 40.1685 0.1144 7644 +7646 2 -133.3189535359836 -128.4417931443489 40.1134 0.1144 7645 +7647 2 -134.43498905634726 -128.86212569589512 40.1232 0.1144 7646 +7648 2 -135.553423701034 -127.69455614382206 40.1853 0.1144 7647 +7649 2 -136.68211535461035 -126.42240207310414 40.3071 0.1144 7648 +7650 2 -137.807770062782 -127.10814703114634 40.4793 0.1144 7649 +7651 2 -138.86344290159926 -125.89276046917804 40.6596 0.1144 7650 +7652 2 -139.9577966030931 -126.1639469802131 40.838 0.1144 7651 +7653 2 -141.05687699438008 -125.40832824553273 41.078 0.1144 7652 +7654 2 -142.02110262139055 -125.4057672957071 41.4484 0.1144 7653 +7655 2 -143.07279376053953 -124.42275176373948 41.7707 0.1144 7654 +7656 2 -144.03425741215628 -124.30208434718185 42.0216 0.1144 7655 +7657 2 -145.03695629388037 -122.98164841162094 42.222 0.1144 7656 +7658 2 -145.88780492055452 -123.07801624513418 42.4287 0.1144 7657 +7659 2 -146.7525314631897 -121.31757448397137 42.572 0.1144 7658 +7660 2 -147.5469913956179 -120.84677590554652 42.6577 0.1144 7659 +7661 2 -148.4140530139905 -120.01555934099812 42.7165 0.1144 7660 +7662 2 -149.31997797806963 -118.863343679582 42.754 0.1144 7661 +7663 2 -150.32814994028513 -118.77866074518835 42.7966 0.1144 7662 +7664 2 -151.44328758197648 -118.12828402776826 42.8646 0.1144 7663 +7665 2 -152.40396906315988 -119.12737010460248 42.8249 0.1144 7664 +7666 2 -152.24748883527565 -118.21023696381255 42.7395 0.1144 7665 +7667 2 -152.08559771911195 -117.0390994782593 42.3727 0.1144 7666 +7668 2 -152.13233214671857 -116.02478149758909 42.1515 0.1144 7667 +7669 2 -152.1687115609331 -114.98721719490648 41.911 0.1144 7668 +7670 2 -152.02138681253695 -113.77967871650662 41.7038 0.1144 7669 +7671 2 -151.81592439415567 -112.52993082749231 41.5324 0.1144 7670 +7672 2 -151.33593025307135 -111.14925536256095 41.3129 0.1144 7671 +7673 2 -150.8712824221692 -110.47607833818512 41.1384 0.1144 7672 +7674 2 -150.81702456567461 -109.49765812221725 41.0138 0.1144 7673 +7675 2 -151.16556690253628 -108.22960212671964 40.9156 0.1144 7674 +7676 2 -151.71857080257064 -107.47586429176825 40.8296 0.1144 7675 +7677 2 -152.36601128393824 -107.168481349079 40.4902 0.1144 7676 +7678 2 -152.39562746295928 -120.14866886930812 42.7829 0.1144 7665 +7679 2 -152.31234669000196 -121.50583559734818 42.7384 0.1144 7678 +7680 2 -152.26222397089202 -122.82953752650009 42.6902 0.1144 7679 +7681 2 -152.23798130325275 -124.12584028568473 42.6334 0.1144 7680 +7682 2 -152.29541447135136 -125.33552441941772 42.5656 0.1144 7681 +7683 2 -152.3877095558334 -126.51052565785145 42.4956 0.1144 7682 +7684 2 -152.48071352206355 -127.68686102360557 42.4127 0.1144 7683 +7685 2 -152.57223241926465 -128.86546407769333 42.3209 0.1144 7684 +7686 2 -152.66445694126656 -130.03377095825235 42.2232 0.1144 7685 +7687 2 -152.7575314699768 -131.2003730128172 42.1235 0.1144 7686 +7688 2 -152.84982655445882 -132.43181035205222 42.0238 0.1144 7687 +7689 2 -152.94290108316906 -133.8545158923663 41.9244 0.1144 7688 +7690 2 -153.03512560517098 -135.27559515687398 41.8258 0.1144 7689 +7691 2 -153.12820013388125 -136.69212770096163 41.7284 0.1144 7690 +7692 2 -153.2204243597971 -138.1058215056025 41.6324 0.1144 7691 +7693 2 -153.31187269451806 -139.5146176020587 41.5386 0.1144 7692 +7694 2 -153.4049472232283 -140.92749458000534 41.4476 0.1144 7693 +7695 2 -153.49717174523025 -142.36203959091296 41.3608 0.1144 7694 +7696 2 -153.59024627394047 -143.79700416368334 41.2793 0.1144 7695 +7697 2 -153.68254135842253 -144.99114481377217 41.2042 0.1144 7696 +7698 2 -153.85893508985427 -146.1063012950558 41.1438 0.1144 7697 +7699 2 -154.09849685729915 -147.1617098520241 41.102 0.1144 7698 +7700 2 -154.36960736151053 -148.14991349459936 41.076 0.1144 7699 +7701 2 -154.56785908304786 -149.34062887498195 41.062 0.1144 7700 +7702 2 -154.89239674407293 -150.88579547658793 41.0561 0.1144 7701 +7703 2 -155.48731271231736 -152.4714430111856 41.055 0.1144 7702 +7704 2 -156.10656672048435 -153.07546661750766 41.0556 0.1144 7703 +7705 2 -156.09136415273588 -154.2973967200182 41.057 0.1144 7704 +7706 2 -156.06875804209972 -155.59656945430947 41.0586 0.1144 7705 +7707 2 -156.21523248770143 -156.74062417185462 41.0609 0.1144 7706 +7708 2 -156.48224355808713 -157.98427833004465 41.0642 0.1144 7707 +7709 2 -156.82375352118333 -159.51266855364844 41.0698 0.1144 7708 +7710 2 -157.37257431664892 -160.9657501608067 41.0771 0.1144 7709 +7711 2 -157.87034694576835 -161.7832251216032 41.0847 0.1144 7710 +7712 2 -158.39161737894358 -162.724484882354 41.0894 0.1144 7711 +7713 2 -158.7800624545992 -164.24085111724463 41.123 0.1144 7712 +7714 2 -159.0568451971398 -165.71429557366596 41.1695 0.1144 7713 +7715 2 -158.97762023936411 -166.96618837762153 41.183 0.1144 7714 +7716 2 -158.6258993339512 -167.9866915569736 41.1342 0.1144 7715 +7717 2 -158.1699062204503 -168.8897877417874 41.0043 0.1144 7716 +7718 2 -157.44894949965794 -170.29611021616662 40.8212 0.1144 7717 +7719 2 -157.04964984699637 -171.6687602915091 40.5348 0.1144 7718 +7720 2 -156.75050204046914 -172.73178073465235 40.2993 0.1144 7719 +7721 2 -156.25817556151674 -173.62474855681407 40.1274 0.1144 7720 +7722 2 -155.45715657538756 -174.77269238047768 40.0156 0.1144 7721 +7723 2 -154.45136330755338 -175.31419828362314 39.9543 0.1144 7722 +7724 2 -153.31157244473258 -175.44084245984607 39.9277 0.1144 7723 +7725 2 -130.33146754507513 -132.70934511522788 41.6147 0.1144 7641 +7726 2 -130.6339454081276 -131.38673675842685 41.6226 0.1144 7725 +7727 2 -130.93472651471075 -129.8349610904398 41.6256 0.1144 7726 +7728 2 -131.23713351919702 -128.28209958332786 41.6304 0.1144 7727 +7729 2 -131.529856883089 -126.73829380185121 41.6363 0.1144 7728 +7730 2 -131.70617079413122 -125.55769541618977 41.6438 0.1144 7729 +7731 2 -131.75791970723034 -124.30181002820261 41.6567 0.1144 7730 +7732 2 -131.81532398175042 -123.05341119088304 41.6769 0.1144 7731 +7733 2 -131.9284395620105 -121.87387402679167 41.7004 0.1144 7732 +7734 2 -132.048964498766 -120.7113554341825 41.7169 0.1144 7733 +7735 2 -131.8360720918474 -119.21464474703698 41.7427 0.1144 7734 +7736 2 -131.85847153437845 -118.04502599115938 41.9126 0.1144 7735 +7737 2 -131.56461848526413 -116.91959656108571 42.0398 0.1144 7736 +7738 2 -131.61909837870118 -116.04903929204693 41.9297 0.1144 7737 +7739 2 -132.16839974588333 -115.50566617270174 41.6377 0.1144 7738 +7740 2 -132.87073733857335 -115.26055185817513 41.4327 0.1144 7739 +7741 2 -132.98039306847727 -114.24911186701706 41.3778 0.1144 7740 +7742 2 -132.97941669443 -113.26274718562604 41.4781 0.1144 7741 +7743 2 -132.7794878520924 -112.26715687160456 41.6648 0.1144 7742 +7744 2 -132.4209922630501 -110.9213974633929 41.8678 0.1144 7743 +7745 2 -132.9827149155596 -110.4178565711676 42.1086 0.1144 7744 +7746 2 -133.9151267571351 -109.06903256327234 42.1772 0.1144 7745 +7747 2 -124.2762964281112 -150.36945747262791 37.6631 0.1144 7625 +7748 2 -124.9838536276228 -150.77856391624084 37.6029 0.1144 7747 +7749 2 -125.6914140840816 -152.3194911973237 37.5771 0.1144 7748 +7750 2 -126.39812423774609 -153.26871579276906 37.5463 0.1144 7749 +7751 2 -127.10568469420491 -153.96355332624836 37.5119 0.1144 7750 +7752 2 -127.81246570643552 -155.8161135074921 37.4749 0.1144 7751 +7753 2 -128.52002616289434 -156.34580704768922 37.436 0.1144 7752 +7754 2 -129.22666575407865 -157.16885050535495 37.3962 0.1144 7753 +7755 2 -129.93422621053745 -159.01813671039264 37.3551 0.1144 7754 +7756 2 -130.64100722276814 -159.2379767885088 37.3122 0.1144 7755 +7757 2 -131.34941442898804 -160.37765548539002 37.2669 0.1144 7756 +7758 2 -132.05612458265242 -161.92095072093173 37.2179 0.1144 7757 +7759 2 -132.76361447663118 -162.12941673261054 37.1636 0.1144 7758 +7760 2 -133.47039548886178 -163.58572958720094 37.1022 0.1144 7759 +7761 2 -134.17710564252624 -164.81559002862986 37.0317 0.1144 7760 +7762 2 -134.88466609898506 -165.0240156822706 36.9505 0.1144 7761 +7763 2 -135.0394811158589 -163.86326171297162 36.8418 0.1144 7762 +7764 2 -135.2335331532394 -162.4479518692603 36.7041 0.1144 7763 +7765 2 -135.4283646348481 -161.05601977691765 36.5406 0.1144 7764 +7766 2 -135.57562318281578 -159.68421530770638 36.3541 0.1144 7765 +7767 2 -135.68477394031595 -158.33390776279902 36.1469 0.1144 7766 +7768 2 -135.79307794805507 -156.98129984141184 35.9215 0.1144 7767 +7769 2 -136.00415923002575 -155.570169734243 35.6689 0.1144 7768 +7770 2 -136.32753365411213 -154.51174649389864 35.3811 0.1144 7769 +7771 2 -136.65663400209957 -153.51732547155436 35.0672 0.1144 7770 +7772 2 -136.94367831768173 -152.48175633905458 34.7301 0.1144 7771 +7773 2 -137.13203117289697 -151.36303076482494 34.3638 0.1144 7772 +7774 2 -137.31720545956097 -150.0297296913351 33.987 0.1144 7773 +7775 2 -137.50805524150144 -148.5868424476331 33.6311 0.1144 7774 +7776 2 -137.39878459800104 -147.44679621437285 33.3634 0.1144 7775 +7777 2 -137.3024606421734 -146.29205839268602 33.171 0.1144 7776 +7778 2 -137.5013951106411 -144.82531159490517 33.0392 0.1144 7777 +7779 2 -137.70357545319288 -143.3862495054052 32.9238 0.1144 7778 +7780 2 -137.9089207443348 -141.96823527030577 32.6169 0.1144 7779 +7781 2 -135.91144310862632 -164.15796485009105 36.7363 0.1144 7762 +7782 2 -137.03850777394086 -164.6741049710656 36.2628 0.1144 7781 +7783 2 -138.16472568949433 -164.15122479639268 36.0542 0.1144 7782 +7784 2 -139.2630435134614 -164.06680937159865 35.812 0.1144 7783 +7785 2 -139.22300343739659 -162.9979368334591 35.6034 0.1144 7784 +7786 2 -138.96816316348875 -161.99916330668015 35.4351 0.1144 7785 +7787 2 -139.4612481585413 -160.44747132679504 35.3016 0.1144 7786 +7788 2 -139.86144598596138 -158.97122438409517 35.1868 0.1144 7787 +7789 2 -140.24390568704314 -157.76237137709322 35.0496 0.1144 7788 +7790 2 -140.6069334661785 -156.863491069076 34.8874 0.1144 7789 +7791 2 -140.72011635197146 -155.63737337574614 34.7304 0.1144 7790 +7792 2 -140.81555755839287 -154.39582307317528 34.5722 0.1144 7791 +7793 2 -140.80095305694715 -153.07445376752153 34.3577 0.1144 7792 +7794 2 -140.58154847191875 -151.63942665420169 34.0704 0.1144 7793 +7795 2 -140.38973481297774 -150.11139155716216 33.8383 0.1144 7794 +7796 2 -140.69297879638344 -149.15597299128538 33.6218 0.1144 7795 +7797 2 -141.0600991993639 -148.22363391868242 33.1794 0.1144 7796 +7798 2 -104.68796808050803 -167.67016552892028 34.0477 0.1144 7443 +7799 2 -105.19002211478488 -167.07977227296735 33.7187 0.1144 7798 +7800 2 -105.5821690094943 -166.12517887142593 33.5989 0.1144 7799 +7801 2 -105.5943117392219 -164.84809711215254 33.4774 0.1144 7800 +7802 2 -105.33693042175838 -163.47186290183674 33.2693 0.1144 7801 +7803 2 -105.58996638069873 -162.42341911796575 33.0285 0.1144 7802 +7804 2 -105.29619801221199 -160.9135105800042 32.814 0.1144 7803 +7805 2 -104.81456781231097 -159.17544070654972 32.6452 0.1144 7804 +7806 2 -104.44644878214058 -157.81227772234263 32.4943 0.1144 7805 +7807 2 -104.0781883309239 -156.87790199043977 32.3646 0.1144 7806 +7808 2 -103.70992787970721 -155.99913301046436 32.2596 0.1144 7807 +7809 2 -103.34173799097064 -154.6751615942984 32.0547 0.1144 7808 +7810 2 -100.07516528984851 -173.83999094186174 36.7086 0.1144 7437 +7811 2 -100.36156466353665 -175.0407021701898 36.951 0.1144 7810 +7812 2 -100.64647896819575 -176.46539348242797 37.0625 0.1144 7811 +7813 2 -100.73792404596952 -177.80937671148004 37.1706 0.1144 7812 +7814 2 -100.81968133794341 -179.14568492592878 37.2784 0.1144 7813 +7815 2 -100.90143892600345 -180.47928842839772 37.3895 0.1144 7814 +7816 2 -100.64536026456574 -181.01411441382936 37.5491 0.1144 7815 +7817 2 -99.84617344024414 -181.7747973716693 37.7418 0.1144 7816 +7818 2 -98.73376357845844 -181.9697500720245 37.9467 0.1144 7817 +7819 2 -97.60597385477423 -181.98688940577628 38.2066 0.1144 7818 +7820 2 -96.66147569524809 -182.67008316536985 38.4754 0.1144 7819 +7821 2 -96.02212650828793 -183.54041771061026 38.7685 0.1144 7820 +7822 2 -95.72702770696179 -184.89811057371685 39.0835 0.1144 7821 +7823 2 -95.51198485917843 -186.24469431951937 39.389 0.1144 7822 +7824 2 -95.31700840349012 -187.58665157342944 39.6502 0.1144 7823 +7825 2 -95.31555870937837 -188.81392841605776 39.9826 0.1144 7824 +7826 2 -95.33505976005875 -190.0197958794821 40.3704 0.1144 7825 +7827 2 -95.07640199141375 -191.36368373818902 40.6613 0.1144 7826 +7828 2 -95.04805633691542 -192.64859141699074 41.0525 0.1144 7827 +7829 2 -101.05350385761228 -180.5394269064222 36.3115 0.1144 7815 +7830 2 -101.67883594909546 -180.27081331091682 34.435 0.1144 7829 +7831 2 -102.37308968208643 -180.538327899895 33.574 0.1144 7830 +7832 2 -102.14557467867954 -181.37313978707022 32.7911 0.1144 7831 +7833 2 -102.08414203100031 -182.64135361931517 32.1992 0.1144 7832 +7834 2 -102.27920837400592 -183.98609633988164 31.7831 0.1144 7833 +7835 2 -102.84822741387148 -185.4001584772735 31.5207 0.1144 7834 +7836 2 -103.36794221553758 -186.42777195066404 31.3967 0.1144 7835 +7837 2 -103.39787239512356 -187.681571060519 31.3398 0.1144 7836 +7838 2 -103.35991010947774 -188.97239929944055 31.2967 0.1144 7837 +7839 2 -103.26936140107127 -190.28771188763585 31.2074 0.1144 7838 +7840 2 -103.34539987521082 -191.50583654214972 30.9299 0.1144 7839 +7841 2 -72.00055394442217 -182.26019500620947 32.6455 0.1144 7407 +7842 2 -72.92480405565156 -181.94635930211751 32.3456 0.1144 7841 +7843 2 -73.96168198028734 -183.43890420319752 32.2445 0.1144 7842 +7844 2 -74.88893498701862 -183.21344153543217 32.1689 0.1144 7843 +7845 2 -75.65238597530009 -184.824999942787 32.1138 0.1144 7844 +7846 2 -76.36809161383844 -185.74493146638855 32.0706 0.1144 7845 +7847 2 -76.89995728022728 -186.26779555847898 32.0516 0.1144 7846 +7848 2 -76.78143130987412 -187.42530413478664 32.132 0.1144 7847 +7849 2 -75.86252428320492 -187.80209502097813 32.1216 0.1144 7848 +7850 2 -74.91167892696272 -186.2014103282831 31.9743 0.1144 7849 +7851 2 -73.96494336756004 -186.42239433893562 31.7072 0.1144 7850 +7852 2 -73.01891313687216 -184.86714699038203 31.3412 0.1144 7851 +7853 2 -72.0713272746751 -184.99732939119207 30.8977 0.1144 7852 +7854 2 -71.0057840779577 -183.84210121354258 30.3794 0.1144 7853 +7855 2 -69.90004213557589 -184.7415036486016 29.8206 0.1144 7854 +7856 2 -68.84258668023257 -183.36535543928116 29.223 0.1144 7855 +7857 2 -67.77310935972494 -184.03219374073058 28.6566 0.1144 7856 +7858 2 -66.70279209943675 -182.70608417829828 28.133 0.1144 7857 +7859 2 -65.63421600853448 -183.10462838409654 27.6704 0.1144 7858 +7860 2 -64.63982447500793 -181.98110013899125 27.1638 0.1144 7859 +7861 2 -63.49695254995207 -182.5954743352255 26.4312 0.1144 7860 +7862 2 -5.105135280915313 -265.3305922347345 30.3677 0.1144 7282 +7863 2 -6.212816135818642 -266.3461535062737 30.2991 0.1144 7862 +7864 2 -7.324609546322378 -265.9458129574398 30.2705 0.1144 7863 +7865 2 -8.421928338281809 -266.2595286183128 30.2322 0.1144 7864 +7866 2 -9.537974221659393 -265.62576289573536 30.1823 0.1144 7865 +7867 2 -10.658024993407562 -265.5138962500497 30.1196 0.1144 7866 +7868 2 -11.352899045843959 -264.2209675645296 29.9754 0.1144 7867 +7869 2 -12.37308201202357 -264.7695536165797 29.8222 0.1144 7868 +7870 2 -13.477915769234041 -264.6127009331386 29.6741 0.1144 7869 +7871 2 -14.609476769347701 -264.54792968504756 29.5302 0.1144 7870 +7872 2 -15.736477183976245 -264.59332944540637 29.3353 0.1144 7871 +7873 2 -16.84998202379813 -264.2460683619213 29.1133 0.1144 7872 +7874 2 -17.94645356781006 -264.14320657432086 28.838 0.1144 7873 +7875 2 -19.049271923381447 -264.3404209114751 28.5782 0.1144 7874 +7876 2 -20.17648951471436 -264.6350383815635 28.3847 0.1144 7875 +7877 2 -21.309504090614897 -264.8607694698738 28.2548 0.1144 7876 +7878 2 -22.408181950377024 -264.95869567970567 28.1826 0.1144 7877 +7879 2 -23.528826369861477 -265.6679406005446 28.1537 0.1144 7878 +7880 2 -24.537306684259452 -265.70303531568567 28.1551 0.1144 7879 +7881 2 -25.53205387371959 -265.9328203314367 28.1702 0.1144 7880 +7882 2 -26.45395210786219 -264.81561256964267 28.1918 0.1144 7881 +7883 2 -27.516116990933664 -264.6666513276802 28.2206 0.1144 7882 +7884 2 -28.622566875205585 -263.8970277338802 28.2565 0.1144 7883 +7885 2 -29.6203228302902 -263.796202030058 28.3038 0.1144 7884 +7886 2 -30.67514161117937 -262.84781998212236 28.427 0.1144 7885 +7887 2 -31.813245286272153 -263.6045692658206 28.5326 0.1144 7886 +7888 2 -32.93481467876573 -262.5045940881834 28.6177 0.1144 7887 +7889 2 -34.03428530663102 -263.9105906137693 28.6868 0.1144 7888 +7890 2 -35.16644632278992 -264.2250899638755 28.7431 0.1144 7889 +7891 2 -36.310384787486576 -264.16599149041826 28.7893 0.1144 7890 +7892 2 -36.62512315127791 -264.6354859810518 28.6804 0.1144 7891 +7893 2 -37.485130880500016 -265.34615691375154 29.8346 0.1144 7892 +7894 2 -38.23604822123285 -266.01025906537484 30.3657 0.1144 7893 +7895 2 -38.762919592499586 -266.89392621366073 31.122 0.1144 7894 +7896 2 -39.62969354171422 -267.03732229104486 31.8674 0.1144 7895 +7897 2 -40.58771909793103 -267.78301863742433 32.4321 0.1144 7896 +7898 2 -41.32772241469509 -269.08285429916316 32.8266 0.1144 7897 +7899 2 -41.82874772787911 -269.66898853520274 33.1794 0.1144 7898 +7900 2 -36.92160441120947 -264.0863042182587 28.8288 0.1144 7891 +7901 2 -37.96930093101592 -263.2448323495075 28.875 0.1144 7900 +7902 2 -38.872674784611554 -262.75928077676787 29.0094 0.1144 7901 +7903 2 -39.904571150743266 -261.22685112107337 29.2258 0.1144 7902 +7904 2 -40.965143593642054 -261.43784443285944 29.3076 0.1144 7903 +7905 2 -41.99755174215809 -260.14425166815784 29.37 0.1144 7904 +7906 2 -43.08848695136551 -260.7084577437581 29.4812 0.1144 7905 +7907 2 -44.200571912702245 -259.87370350927125 29.6173 0.1144 7906 +7908 2 -45.32749445668373 -260.7724348464537 29.7063 0.1144 7907 +7909 2 -46.44320161755093 -259.86093353845496 29.6184 0.1144 7908 +7910 2 -47.546999275475045 -260.6639773869929 29.4109 0.1144 7909 +7911 2 -48.55386671975874 -260.7292934727307 29.1197 0.1144 7910 +7912 2 -49.58191852077577 -261.7170162759436 28.6818 0.1144 7911 +7913 2 -50.61680064688586 -261.0870761621687 28.1355 0.1144 7912 +7914 2 -51.559563948820184 -261.02972176183033 27.518 0.1144 7913 +7915 2 -52.536823998977965 -259.8625303437988 26.8114 0.1144 7914 +7916 2 -53.31551797321963 -259.80804710601 25.9696 0.1144 7915 +7917 2 -54.22087761492806 -258.77718932183666 25.1037 0.1144 7916 +7918 2 -55.2707900757409 -258.8464034541608 24.2837 0.1144 7917 +7919 2 -56.14853155143971 -258.0100326671539 23.4106 0.1144 7918 +7920 2 -57.13905376656333 -258.069154194567 22.6174 0.1144 7919 +7921 2 -58.257390406747454 -258.2904039677472 21.9947 0.1144 7920 +7922 2 -59.38046350756635 -258.31317151260055 21.4926 0.1144 7921 +7923 2 -59.98109489111257 -258.54994382739085 20.9824 0.1144 7922 +7924 2 -60.62969886803401 -260.14518303982476 20.5108 0.1144 7923 +7925 2 -61.517243339585356 -260.5889833505411 20.1736 0.1144 7924 +7926 2 -62.30585592884799 -261.4838855226332 19.9446 0.1144 7925 +7927 2 -62.87082241047911 -263.2414221609569 19.7962 0.1144 7926 +7928 2 -63.209865943719436 -264.1968161549019 19.7168 0.1144 7927 +7929 2 -63.49399399416979 -265.11364711712787 19.6918 0.1144 7928 +7930 2 -63.68411060055533 -266.15523531315284 19.6912 0.1144 7929 +7931 2 -63.82089104254889 -267.26733910694503 19.6946 0.1144 7930 +7932 2 -63.56218965525986 -268.78235924433767 19.6995 0.1144 7931 +7933 2 -63.44568677986939 -270.176650465964 19.7062 0.1144 7932 +7934 2 -63.433604545694166 -271.46479500348147 19.7157 0.1144 7933 +7935 2 -63.58170548137128 -272.56173712745175 19.7285 0.1144 7934 +7936 2 -63.839801992376984 -273.58193764862045 19.7465 0.1144 7935 +7937 2 -64.04618527603279 -275.0499441408769 19.7734 0.1144 7936 +7938 2 -64.12872230832099 -276.4459654385216 19.8109 0.1144 7937 +7939 2 -64.25659174396787 -277.8869538038726 19.8589 0.1144 7938 +7940 2 -64.54065248888537 -279.4755035509682 19.9157 0.1144 7939 +7941 2 -64.79558049826768 -280.9697368051876 20.0219 0.1144 7940 +7942 2 -65.15821332617199 -281.7402084160306 20.227 0.1144 7941 +7943 2 -65.59688656014846 -282.426603068906 20.3813 0.1144 7942 +7944 2 -65.60991174319615 -283.68653089841257 20.4769 0.1144 7943 +7945 2 -65.83567652017382 -284.8634842572689 20.5157 0.1144 7944 +7946 2 -66.04602136964235 -286.38906897914967 20.5014 0.1144 7945 +7947 2 -65.75314226445627 -287.40559572131855 20.1902 0.1144 7946 +7948 2 -65.3675176147844 -288.9749536561466 19.9696 0.1144 7947 +7949 2 -64.98342165278558 -290.6111220632423 19.7878 0.1144 7948 +7950 2 -64.73353021249373 -292.1368996919019 19.6416 0.1144 7949 +7951 2 -64.97151996970754 -293.0909457851654 19.5258 0.1144 7950 +7952 2 -65.64481403293686 -293.06084062978545 19.3607 0.1144 7951 +7953 2 -64.85356346201533 -294.8534737822404 19.2442 0.1144 7952 +7954 2 -64.51567004393902 -296.1897893437589 19.1492 0.1144 7953 +7955 2 -64.85079307335022 -297.2087522067303 19.067 0.1144 7954 +7956 2 -65.72862666438502 -297.26377632513163 18.9931 0.1144 7955 +7957 2 -66.36815678759908 -299.0284975744988 18.9241 0.1144 7956 +7958 2 -66.41924288552303 -300.38547006068825 18.8499 0.1144 7957 +7959 2 -66.24937384705763 -301.4814441325324 18.7289 0.1144 7958 +7960 2 -65.95189635135014 -302.3795859334818 18.553 0.1144 7959 +7961 2 -65.42801156688992 -303.2501618197642 18.3605 0.1144 7960 +7962 2 -65.00599631316148 -304.90441272222756 18.196 0.1144 7961 +7963 2 -64.64211171733734 -306.52846644835523 18.0761 0.1144 7962 +7964 2 -64.10212506745586 -307.35458109996614 17.9802 0.1144 7963 +7965 2 -63.62190888942905 -307.97870665536595 17.8851 0.1144 7964 +7966 2 -63.23379412301241 -309.2892824058373 17.8307 0.1144 7965 +7967 2 -62.945916381544166 -310.8331253857198 17.8804 0.1144 7966 +7968 2 -63.016387229737255 -312.01912874820647 17.9565 0.1144 7967 +7969 2 -63.50937523017171 -312.79734400521977 18.0354 0.1144 7968 +7970 2 -64.03461048610689 -314.56034131443977 18.1278 0.1144 7969 +7971 2 -64.46439640062555 -316.13494674826757 18.2738 0.1144 7970 +7972 2 -64.23802319433122 -317.2521328901581 18.3928 0.1144 7971 +7973 2 -63.53884984994457 -317.4910694737319 18.4752 0.1144 7972 +7974 2 -64.08479399070582 -319.0567055952055 18.5355 0.1144 7973 +7975 2 -65.07056651039028 -319.1895183761241 18.5791 0.1144 7974 +7976 2 -65.93787267193085 -320.25997427477637 18.6089 0.1144 7975 +7977 2 -65.80055160433994 -321.30765434972795 18.6319 0.1144 7976 +7978 2 -65.67605503484401 -322.47264048503047 18.6623 0.1144 7977 +7979 2 -65.5984293272215 -323.6972970083807 18.7043 0.1144 7978 +7980 2 -65.24754510464189 -324.7650721365697 18.7585 0.1144 7979 +7981 2 -64.82791209832816 -326.43458083127683 18.8242 0.1144 7980 +7982 2 -64.04396676970563 -327.6560461818134 18.9808 0.1144 7981 +7983 2 -63.34325842585182 -327.8477503976752 19.1399 0.1144 7982 +7984 2 -63.43636345143141 -329.2462767254314 19.3283 0.1144 7983 +7985 2 -63.3951152260908 -330.4965157871627 19.4704 0.1144 7984 +7986 2 -63.82083496241394 -332.20792220549987 19.569 0.1144 7985 +7987 2 -64.12196581180481 -333.8147505813718 19.6274 0.1144 7986 +7988 2 -64.32348709431508 -335.0884279589404 19.6492 0.1144 7987 +7989 2 -64.97688576684922 -335.28422406789747 19.6516 0.1144 7988 +7990 2 -66.0056721949772 -336.4539796832025 19.6391 0.1144 7989 +7991 2 -66.75957130098355 -337.0181661234736 19.6212 0.1144 7990 +7992 2 -67.12699862240027 -337.81277573665756 19.5963 0.1144 7991 +7993 2 -67.79182240100074 -339.241541026618 19.564 0.1144 7992 +7994 2 -68.86865559453234 -339.41188316353623 19.5242 0.1144 7993 +7995 2 -69.96991476556121 -340.0677036738124 19.4432 0.1144 7994 +7996 2 -71.01330862344034 -340.0901820834363 19.3306 0.1144 7995 +7997 2 -71.93980211769866 -341.25708043445076 19.2257 0.1144 7996 +7998 2 -72.67649580787914 -342.2250033295213 19.1334 0.1144 7997 +7999 2 -73.57144382231812 -342.54583220525853 19.0539 0.1144 7998 +8000 2 -74.66993165131217 -343.0185015542372 18.9873 0.1144 7999 +8001 2 -75.59753650232852 -343.1039236663768 18.9334 0.1144 8000 +8002 2 -76.60114445256704 -344.2998362873373 18.886 0.1144 8001 +8003 2 -76.9865702539989 -344.979707837044 18.5578 0.1144 8002 +8004 2 -63.49903063015887 -317.9941368633223 19.4007 0.1144 7973 +8005 2 -63.59543926661411 -319.370389126078 19.5059 0.1144 8004 +8006 2 -63.428046724932415 -320.4747106216821 19.5462 0.1144 8005 +8007 2 -62.61263378713767 -322.06893862793197 19.556 0.1144 8006 +8008 2 -62.02894853213981 -323.1994906532085 19.5071 0.1144 8007 +8009 2 -61.70233504394991 -324.06918021047784 19.5297 0.1144 8008 +8010 2 -61.40395987167033 -325.00071384958125 19.572 0.1144 8009 +8011 2 -61.185657529841784 -326.183863390274 19.6049 0.1144 8010 +8012 2 -61.26168919400079 -327.46896144534304 19.635 0.1144 8011 +8013 2 -61.80079910894989 -329.2201960894342 19.6826 0.1144 8012 +8014 2 -66.44155018754599 -285.9667716824516 21.3511 0.1144 7946 +8015 2 -66.70600118562493 -284.99756749488824 21.5226 0.1144 8014 +8016 2 -66.67930681319524 -283.6739079334869 21.6267 0.1144 8015 +8017 2 -66.41385137431868 -282.1010445267292 21.7354 0.1144 8016 +8018 2 -66.09095027029679 -280.4781422813637 21.8194 0.1144 8017 +8019 2 -65.80123090701115 -278.92353526909864 21.9321 0.1144 8018 +8020 2 -38.29743535704046 -261.77189305682316 30.07 0.1144 7902 +8021 2 -37.809523460565046 -261.80997620320153 31.2458 0.1144 8020 +8022 2 -37.52976677261598 -262.68872146372513 31.7638 0.1144 8021 +8023 2 -36.48471355418791 -263.11044354603774 32.3086 0.1144 8022 +8024 2 -36.000837724195335 -263.81932156042416 32.7718 0.1144 8023 +8025 2 -35.61524682833998 -265.07272619962396 33.1663 0.1144 8024 +8026 2 -34.51997813169422 -265.26883773284914 33.4793 0.1144 8025 +8027 2 -34.38776547032295 -264.9930253039495 33.7417 0.1144 8026 +8028 2 -33.83414316926414 -263.4773414103696 33.9108 0.1144 8027 +8029 2 -33.752358637368076 -262.1258967313677 33.976 0.1144 8028 +8030 2 -33.95531842414799 -261.09639224252396 34.062 0.1144 8029 +8031 2 -34.3887078571318 -260.19759395915787 34.2098 0.1144 8030 +8032 2 -34.84223779772404 -259.15041448225645 34.4084 0.1144 8031 +8033 2 -35.295838596882504 -257.7846158757745 34.643 0.1144 8032 +8034 2 -35.74858909324659 -256.52404273541873 34.9 0.1144 8033 +8035 2 -36.202119033838926 -255.45559190862355 35.1663 0.1144 8034 +8036 2 -36.21417758112531 -254.19965167643585 35.4166 0.1144 8035 +8037 2 -36.027313658804374 -252.80499260516547 35.6384 0.1144 8036 +8038 2 -35.832244058851614 -251.5920264053296 35.8372 0.1144 8037 +8039 2 -35.635618827389635 -250.3747549420404 36.0192 0.1144 8038 +8040 2 -35.43977304015585 -249.15164643501066 36.1906 0.1144 8039 +8041 2 -35.24392725292207 -247.92446746625615 36.3569 0.1144 8040 +8042 2 -35.04730202146013 -246.85204797071418 36.5224 0.1144 8041 +8043 2 -34.8523029839874 -245.58654993633945 36.6892 0.1144 8042 +8044 2 -34.656457196753614 -244.30994254615064 36.857 0.1144 8043 +8045 2 -34.45976110672545 -243.03962659876635 37.0336 0.1144 8044 +8046 2 -34.13282106443019 -241.69768177333162 37.214 0.1144 8045 +8047 2 -33.46824126078476 -239.92716438188916 37.3926 0.1144 8046 +8048 2 -32.79467248615978 -238.8694482963174 37.5651 0.1144 8047 +8049 2 -32.12039512587283 -238.46747135167175 37.7286 0.1144 8048 +8050 2 -31.220631985879507 -236.9517734314672 38.2407 0.1144 8049 +8051 2 -34.11887261728921 -265.91524836674444 33.7165 0.1144 8026 +8052 2 -33.93952581206213 -266.9046820281248 33.8817 0.1144 8051 +8053 2 -34.16769978029056 -268.3573804771455 33.9626 0.1144 8052 +8054 2 -34.49300681861605 -269.69370581422965 33.9805 0.1144 8053 +8055 2 -34.96247658505298 -270.9470094768565 33.9402 0.1144 8054 +8056 2 -35.516982942722805 -271.7532727808252 33.8047 0.1144 8055 +8057 2 -35.69349510859875 -272.8823715705496 33.5938 0.1144 8056 +8058 2 -35.62641045043156 -274.17589254092945 33.3553 0.1144 8057 +8059 2 -35.627275200015234 -275.4459314923599 33.1198 0.1144 8058 +8060 2 -35.683149183571345 -276.69499911731606 32.9025 0.1144 8059 +8061 2 -35.72206172625657 -277.90806155140467 32.6214 0.1144 8060 +8062 2 -35.30747370230466 -279.1846636109646 32.3075 0.1144 8061 +8063 2 -34.530741829286946 -280.27996022121465 32.027 0.1144 8062 +8064 2 -33.558811741914724 -280.17043360488856 31.7688 0.1144 8063 +8065 2 -32.6232518286574 -280.35270495717157 31.4639 0.1144 8064 +8066 2 -32.07113574036769 -282.01425815115635 31.1525 0.1144 8065 +8067 2 -31.900699739386937 -283.32601002237664 30.828 0.1144 8066 +8068 2 -31.60965073753443 -284.41211382474063 30.4721 0.1144 8067 +8069 2 -31.424536946422762 -285.451661100763 30.2554 0.1144 8068 +8070 2 -31.500666412984 -286.8013365784978 30.1823 0.1144 8069 +8071 2 -31.14245701635021 -287.60719705170436 30.196 0.1144 8070 +8072 2 -30.785850422902968 -288.5648867188216 30.2389 0.1144 8071 +8073 2 -30.87977525440753 -289.88749510915994 30.2935 0.1144 8072 +8074 2 -30.717950338672267 -291.0650283930383 30.3677 0.1144 8073 +8075 2 -24.97297452258846 -266.346617843844 28.1182 0.1144 7880 +8076 2 -24.87363955407361 -267.5473557017836 28.1084 0.1144 8075 +8077 2 -24.55504975867215 -268.7059136679319 28.1047 0.1144 8076 +8078 2 -24.245293597156753 -270.26454327283466 28.0997 0.1144 8077 +8079 2 -23.637347970783114 -271.6290106756753 28.0916 0.1144 8078 +8080 2 -22.747649120177165 -271.87794566608204 28.0795 0.1144 8079 +8081 2 -22.1547673802225 -273.0259752076602 28.0658 0.1144 8080 +8082 2 -22.88904832611889 -273.74829167954215 28.0521 0.1144 8081 +8083 2 -23.36340378059021 -275.2497216441273 28.026 0.1144 8082 +8084 2 -23.698448939354343 -276.5619947076581 27.9414 0.1144 8083 +8085 2 -23.97763051013185 -277.6757860579764 27.8865 0.1144 8084 +8086 2 -23.704444178755562 -278.97260180134055 27.9273 0.1144 8085 +8087 2 -23.351943829114514 -280.0833878176315 27.98 0.1144 8086 +8088 2 -24.001093638323 -281.0835501854497 28.0286 0.1144 8087 +8089 2 -24.828597217415002 -281.56339563342067 28.1182 0.1144 8088 +8090 2 4.523164595067648 -283.5669434450966 22.5898 0.1144 7265 +8091 2 5.199677020332025 -284.20344944828236 22.8578 0.1144 8090 +8092 2 5.652430571543 -285.5247098153082 23.0162 0.1144 8091 +8093 2 5.912673970380119 -286.8696916288531 23.2147 0.1144 8092 +8094 2 5.986334855242696 -288.17295865296404 23.3677 0.1144 8093 +8095 2 5.588124917412742 -289.13078392173344 23.4677 0.1144 8094 +8096 2 4.806743454935713 -290.09727095841384 23.5161 0.1144 8095 +8097 2 4.0757388799928265 -291.3610950097578 23.5111 0.1144 8096 +8098 2 3.96893111331498 -292.55682299519 23.4474 0.1144 8097 +8099 2 3.8709774104647465 -293.7670641527948 23.3356 0.1144 8098 +8100 2 4.05457287691722 -295.131338383047 23.1835 0.1144 8099 +8101 2 4.492632146245597 -295.3246482869029 23.0332 0.1144 8100 +8102 2 4.617650362953341 -296.28917237034216 22.6909 0.1144 8101 +8103 2 4.498293194732781 -296.60003044743655 23.0569 0.1144 8102 +8104 2 4.034485303611206 -297.7867960007428 23.0033 0.1144 8103 +8105 2 3.5966623724291438 -298.68397449237295 22.9808 0.1144 8104 +8106 2 3.5108421592069305 -299.8381609871773 22.9488 0.1144 8105 +8107 2 3.6208464764486976 -301.21540146252215 22.9083 0.1144 8106 +8108 2 3.8083999556805495 -302.5930885812588 22.862 0.1144 8107 +8109 2 3.514577403435595 -303.5505351930579 22.777 0.1144 8108 +8110 2 2.873309367782845 -304.5414274054081 22.5957 0.1144 8109 +8111 2 2.1317299895680293 -306.005763766234 22.4514 0.1144 8110 +8112 2 1.3698278228151466 -306.3108416336488 22.3959 0.1144 8111 +8113 2 0.5561244911375312 -307.5259597253839 22.4245 0.1144 8112 +8114 2 0.024366990164850222 -308.9403935166319 22.4813 0.1144 8113 +8115 2 -0.666197477334002 -309.329061649287 22.5642 0.1144 8114 +8116 2 -1.3664630545076548 -310.5419561461564 22.6683 0.1144 8115 +8117 2 -2.416362280516026 -311.1512358805414 22.7749 0.1144 8116 +8118 2 -3.5288645727678087 -311.47128880972525 22.8822 0.1144 8117 +8119 2 -3.677889743696369 -311.9940559414656 23.061 0.1144 8118 +8120 2 -4.191963800275488 -313.1075818980898 23.3606 0.1144 8119 +8121 2 -4.755374650397492 -313.6113288532585 23.6438 0.1144 8120 +8122 2 -5.238567291788179 -314.7812079063435 23.8563 0.1144 8121 +8123 2 -5.871557794870007 -316.5359489300897 24.0021 0.1144 8122 +8124 2 -6.5896693677119345 -317.042120827812 24.0856 0.1144 8123 +8125 2 -7.306934190792759 -317.8516337141818 24.1105 0.1144 8124 +8126 2 -7.955391995161463 -319.6097632211295 24.093 0.1144 8125 +8127 2 -8.306606028793588 -320.6317894876116 24.0594 0.1144 8126 +8128 2 -8.89910273885954 -321.05499945368 24.0178 0.1144 8127 +8129 2 -9.45366683332086 -322.37422757820195 23.9434 0.1144 8128 +8130 2 -9.7644684976175 -323.91496436575073 23.8147 0.1144 8129 +8131 2 -10.396756928931744 -324.9711246779748 23.7043 0.1144 8130 +8132 2 -11.112392004990049 -325.2163632146129 23.608 0.1144 8131 +8133 2 -11.839360898606806 -327.0002064843065 23.5218 0.1144 8132 +8134 2 -12.586656133794946 -328.71794032863244 23.4421 0.1144 8133 +8135 2 -13.303924213823038 -330.05543908078516 23.3642 0.1144 8134 +8136 2 -13.722460695324664 -330.8008498305832 23.2468 0.1144 8135 +8137 2 -14.088369894182428 -331.60001922942797 23.073 0.1144 8136 +8138 2 -14.74643100582368 -333.15490838076204 22.893 0.1144 8137 +8139 2 -15.349539327825084 -334.4939059044368 22.7128 0.1144 8138 +8140 2 -15.589239959655742 -335.4401372259271 22.4885 0.1144 8139 +8141 2 -15.608005386852305 -336.6207189301181 22.1436 0.1144 8140 +8142 2 -16.007906563630065 -337.33948968208387 21.7854 0.1144 8141 +8143 2 -16.551902166613566 -338.64970444843647 21.4893 0.1144 8142 +8144 2 -16.454184025446978 -339.72699173023466 21.2373 0.1144 8143 +8145 2 -16.097651547513138 -340.7513382610217 21.0202 0.1144 8144 +8146 2 -15.716845280342739 -342.3406655202415 20.7759 0.1144 8145 +8147 2 -15.500233679275546 -343.7984137284137 20.4879 0.1144 8146 +8148 2 -15.344077448836174 -345.2362327960537 20.2125 0.1144 8147 +8149 2 -15.371075793586769 -346.3937885338799 19.8404 0.1144 8148 +8150 2 -15.757091746236426 -347.1441941964389 19.5046 0.1144 8149 +8151 2 -15.977278830339927 -348.1545659352 19.2455 0.1144 8150 +8152 2 -15.720136627593376 -349.67464793832784 19.0539 0.1144 8151 +8153 2 -15.264129894131372 -351.36530417616893 18.8851 0.1144 8152 +8154 2 -15.435799990616943 -352.39733281026224 18.7037 0.1144 8153 +8155 2 -15.569327748545888 -353.5264839432759 18.5699 0.1144 8154 +8156 2 -15.426168634403894 -354.96674963172103 18.4551 0.1144 8155 +8157 2 -15.21844109584731 -356.44734272434795 18.2813 0.1144 8156 +8158 2 -14.987134827740874 -357.6529259890413 18.1458 0.1144 8157 +8159 2 -14.890913881005176 -358.83555236238425 18.0464 0.1144 8158 +8160 2 -14.731565462053524 -359.9371920582987 17.9722 0.1144 8159 +8161 2 -14.63880011235392 -361.05266081589343 17.9099 0.1144 8160 +8162 2 -15.101757700681105 -362.7538653917505 17.8565 0.1144 8161 +8163 2 -15.349313162231496 -363.77603272985056 17.8068 0.1144 8162 +8164 2 -15.732109982532833 -364.5413518880679 17.7246 0.1144 8163 +8165 2 -16.276939213502715 -365.35158140232846 17.574 0.1144 8164 +8166 2 -16.557774514277767 -366.90919912585593 17.4564 0.1144 8165 +8167 2 -16.72619844059321 -368.32873841790627 17.3479 0.1144 8166 +8168 2 -16.817772019738868 -369.65667536128103 17.1536 0.1144 8167 +8169 2 -16.60110623491346 -370.6808073250694 16.963 0.1144 8168 +8170 2 -16.309968999400056 -371.58965114267244 16.762 0.1144 8169 +8171 2 -16.332709114184 -372.85761440541427 16.5698 0.1144 8170 +8172 2 -16.161480547200384 -373.8736934008763 16.4189 0.1144 8171 +8173 2 -16.099315829070605 -375.0759448347594 16.3067 0.1144 8172 +8174 2 -16.150395117014057 -376.38767170087 16.2268 0.1144 8173 +8175 2 -15.732392355909269 -377.9420716547307 16.1584 0.1144 8174 +8176 2 -15.002520779650837 -379.55774432348835 16.0942 0.1144 8175 +8177 2 -14.132223354121962 -379.4106606943859 16.026 0.1144 8176 +8178 2 -13.288562235589467 -381.04251670446297 15.8632 0.1144 8177 +8179 2 -12.499025594131666 -381.59612022909823 15.6595 0.1144 8178 +8180 2 -11.74493776332794 -381.8636658824793 15.4906 0.1144 8179 +8181 2 -10.978706079882315 -382.48094194989955 15.3689 0.1144 8180 +8182 2 -10.035722988068215 -383.73745593462064 15.2919 0.1144 8181 +8183 2 -8.98325190650462 -383.6800717515849 15.257 0.1144 8182 +8184 2 -8.232470943523708 -385.09227225272554 15.2617 0.1144 8183 +8185 2 -7.5445202904183475 -385.96155398636483 15.2896 0.1144 8184 +8186 2 -6.828401883882734 -386.86091642258253 15.3322 0.1144 8185 +8187 2 -5.8524598020732554 -387.8298337508557 15.3917 0.1144 8186 +8188 2 -4.791047419393905 -388.01461973179045 15.4747 0.1144 8187 +8189 2 -3.9368414962724216 -389.3009074958526 15.5863 0.1144 8188 +8190 2 -2.9503485941659306 -389.3822847641675 15.7397 0.1144 8189 +8191 2 -1.883504192978748 -390.3588896296502 16.0052 0.1144 8190 +8192 2 -0.7538816072001993 -390.0865370446234 16.2908 0.1144 8191 +8193 2 0.2821833780059819 -390.3098288726641 16.7414 0.1144 8192 +8194 2 1.2713164510850419 -388.85152509204084 17.172 0.1144 8193 +8195 2 1.8577375079538854 -388.46602633700127 17.743 0.1144 8194 +8196 2 2.7474471067303767 -388.29223748612964 18.3078 0.1144 8195 +8197 2 3.849726200424058 -388.64486402547607 18.7371 0.1144 8196 +8198 2 4.940003656794701 -388.75047945352566 19.0588 0.1144 8197 +8199 2 6.04069386334902 -389.4707630479217 19.2917 0.1144 8198 +8200 2 7.169544313066353 -389.0534573661567 19.4808 0.1144 8199 +8201 2 8.197110777348655 -387.8789981121366 19.6449 0.1144 8200 +8202 2 9.080603188851967 -387.83259149797726 19.8826 0.1144 8201 +8203 2 10.018450930610385 -386.43419760941373 20.1689 0.1144 8202 +8204 2 10.680791402446687 -385.8936945952603 20.5826 0.1144 8203 +8205 2 10.715918108883443 -385.184348156566 21.1035 0.1144 8204 +8206 2 11.622152181946603 -385.22391548121345 21.6478 0.1144 8205 +8207 2 12.75080978562022 -385.44380469656124 22.1462 0.1144 8206 +8208 2 13.809372640487624 -384.9798153106033 22.6843 0.1144 8207 +8209 2 14.859289241590687 -384.8404901519357 23.1891 0.1144 8208 +8210 2 15.987743232006125 -384.3553281577316 23.6334 0.1144 8209 +8211 2 16.804633930662916 -385.055317576053 24.086 0.1144 8210 +8212 2 17.60473530846491 -386.2938007622306 24.4819 0.1144 8211 +8213 2 18.729167237515256 -385.9420611902234 24.8458 0.1144 8212 +8214 2 19.811675484651772 -386.2643028984931 25.2821 0.1144 8213 +8215 2 20.63103980830168 -385.9176179156555 25.9125 0.1144 8214 +8216 2 21.385593114111444 -385.46291177854175 26.4959 0.1144 8215 +8217 2 22.25300814135487 -384.27924085290715 27.035 0.1144 8216 +8218 2 23.316700861311944 -384.5845559636548 27.607 0.1144 8217 +8219 2 24.45818977306108 -384.0918197340619 28.0619 0.1144 8218 +8220 2 25.588571669212314 -383.34870873810166 28.4427 0.1144 8219 +8221 2 26.700799047968147 -383.9887187551993 28.7756 0.1144 8220 +8222 2 27.79465872732905 -383.1861739473644 29.0931 0.1144 8221 +8223 2 28.91731523499051 -383.3765907986649 29.4353 0.1144 8222 +8224 2 30.023535704126473 -383.13966570155884 29.7489 0.1144 8223 +8225 2 31.04859191780858 -382.7275762915382 30.1339 0.1144 8224 +8226 2 32.02118971191558 -382.39751423965487 30.6625 0.1144 8225 +8227 2 33.10647000137358 -382.23821445530325 31.1562 0.1144 8226 +8228 2 34.24938554507345 -382.052790966607 31.556 0.1144 8227 +8229 2 35.16632360402332 -381.1658899884833 31.8741 0.1144 8228 +8230 2 36.02246876830809 -380.540481369987 32.2622 0.1144 8229 +8231 2 37.09852982577843 -380.19898992888795 32.6301 0.1144 8230 +8232 2 38.23598305620142 -380.3924820031652 32.9031 0.1144 8231 +8233 2 39.34203366589577 -379.791079174434 33.1142 0.1144 8232 +8234 2 40.437434858618374 -379.8316485077038 33.2808 0.1144 8233 +8235 2 40.908120650711 -379.186650541421 33.4891 0.1144 8234 +8236 2 41.85087145559855 -378.2015606640287 33.8657 0.1144 8235 +8237 2 42.9153980431133 -378.09947258642217 34.0052 0.1144 8236 +8238 2 43.99211961218121 -376.952943120327 34.174 0.1144 8237 +8239 2 45.11786625263258 -376.19079876123396 34.4109 0.1144 8238 +8240 2 46.2434714720377 -376.3950687811322 34.7004 0.1144 8239 +8241 2 47.36837136272805 -376.08594284338636 35.0288 0.1144 8240 +8242 2 48.444323112823994 -376.05009258996375 35.4606 0.1144 8241 +8243 2 49.513908063090405 -376.18883598876164 35.966 0.1144 8242 +8244 2 50.6475259684983 -375.8150186504414 36.3807 0.1144 8243 +8245 2 51.654322408630364 -376.2792490403801 36.7332 0.1144 8244 +8246 2 52.38869109000121 -374.85472842549757 37.0737 0.1144 8245 +8247 2 53.12376510008683 -373.7919998567825 37.3985 0.1144 8246 +8248 2 53.85890996873864 -373.4761293387395 37.7037 0.1144 8247 +8249 2 54.510607335397296 -371.8437518482368 37.9938 0.1144 8248 +8250 2 54.65715263956521 -370.46634406282124 38.2488 0.1144 8249 +8251 2 54.80525357524235 -369.08171586290325 38.4675 0.1144 8250 +8252 2 54.95250776115839 -367.6920778603783 38.6526 0.1144 8251 +8253 2 55.44633995469343 -367.0928110919277 38.8038 0.1144 8252 +8254 2 56.29900158173323 -366.43158264981304 38.9231 0.1144 8253 +8255 2 57.31336787116129 -366.0336254978454 39.0454 0.1144 8254 +8256 2 58.3989521894551 -366.77104062585346 39.1857 0.1144 8255 +8257 2 59.48361564247449 -367.00137334452467 39.3403 0.1144 8256 +8258 2 60.569976148049285 -367.41259930417164 39.51 0.1144 8257 +8259 2 61.655489607776936 -366.8576263099355 39.6875 0.1144 8258 +8260 2 62.741000106643455 -367.32175511717645 39.8647 0.1144 8259 +8261 2 63.8265135663711 -367.5407910411729 40.0333 0.1144 8260 +8262 2 64.9120237691515 -368.25890433063495 40.1884 0.1144 8261 +8263 2 65.99753752496525 -367.8846280285713 40.4902 0.1144 8262 +8264 2 40.79198173149578 -380.3545193905793 33.4099 0.1144 8234 +8265 2 41.58792593868053 -380.71276454131623 33.5538 0.1144 8264 +8266 2 42.530042146878046 -382.03252768586145 33.7221 0.1144 8265 +8267 2 43.60412348845851 -381.7554208664789 33.8884 0.1144 8266 +8268 2 44.7332143035826 -380.6046138444606 34.0609 0.1144 8267 +8269 2 45.86960730615887 -381.4093445309116 34.2504 0.1144 8268 +8270 2 46.94282827801719 -380.9901051916464 34.5072 0.1144 8269 +8271 2 47.955001669555855 -382.24720890384975 34.848 0.1144 8270 +8272 2 49.027415957263784 -381.91534313999614 35.2615 0.1144 8271 +8273 2 50.14332297625556 -382.11926504373133 35.7076 0.1144 8272 +8274 2 51.218288374447 -382.567025380155 36.1844 0.1144 8273 +8275 2 52.27702134737119 -382.7715218801876 36.6814 0.1144 8274 +8276 2 53.33511629711347 -383.49402982691026 37.1795 0.1144 8275 +8277 2 54.421873905762055 -383.31331478350984 37.6816 0.1144 8276 +8278 2 55.55445832505891 -383.89856985241227 38.1091 0.1144 8277 +8279 2 56.67445840956738 -383.0036435912335 38.458 0.1144 8278 +8280 2 57.584793297985705 -383.0017708446185 38.8287 0.1144 8279 +8281 2 58.577205796865144 -381.79811484825296 39.2087 0.1144 8280 +8282 2 59.640821586033155 -381.9782993632317 39.5349 0.1144 8281 +8283 2 60.67448087650702 -380.75602626358625 39.8605 0.1144 8282 +8284 2 61.54880424507599 -379.7424830783274 40.3416 0.1144 8283 +8285 2 62.66544327800338 -379.493960828395 40.7274 0.1144 8284 +8286 2 63.759221533683956 -378.9605851430087 41.0292 0.1144 8285 +8287 2 64.71320815162741 -378.4288456546476 41.2748 0.1144 8286 +8288 2 65.73634632440113 -377.25317227017734 41.519 0.1144 8287 +8289 2 66.83601000041045 -377.6578412427298 41.7746 0.1144 8288 +8290 2 67.9383735726314 -377.12485716213143 42.0386 0.1144 8289 +8291 2 69.04228596638097 -378.4203895609147 42.3335 0.1144 8290 +8292 2 70.15659393731988 -377.6506708597253 42.6314 0.1144 8291 +8293 2 71.28626063992888 -378.6665565096282 42.8901 0.1144 8292 +8294 2 72.37255334178437 -378.4187016847276 43.1614 0.1144 8293 +8295 2 73.4940276906365 -379.02843485872995 43.4258 0.1144 8294 +8296 2 74.60478461669715 -378.89886713035673 43.7158 0.1144 8295 +8297 2 75.6742879976978 -379.3833007431467 43.9648 0.1144 8296 +8298 2 76.76375295631038 -379.9133603305718 44.1949 0.1144 8297 +8299 2 77.84523784077855 -380.0247472433764 44.445 0.1144 8298 +8300 2 78.87279710992372 -380.9467343480585 44.7549 0.1144 8299 +8301 2 79.90106200386973 -381.05375211585573 45.1175 0.1144 8300 +8302 2 80.9326433343799 -380.42465293787876 45.5151 0.1144 8301 +8303 2 81.96092460704777 -381.39329429850153 45.9452 0.1144 8302 +8304 2 82.94217622170123 -381.40484481887256 46.4825 0.1144 8303 +8305 2 84.01301849917814 -382.2288962273932 47.0028 0.1144 8304 +8306 2 85.14983114975874 -381.66941517203725 47.4558 0.1144 8305 +8307 2 86.27369781295333 -382.7136332754471 47.8853 0.1144 8306 +8308 2 87.35615818812573 -381.8430694860489 48.314 0.1144 8307 +8309 2 88.32696418212191 -382.32928427277005 48.8432 0.1144 8308 +8310 2 89.34310909337123 -381.08774635245874 49.3562 0.1144 8309 +8311 2 90.44586645520387 -381.57711185602403 49.7664 0.1144 8310 +8312 2 91.56331217228157 -380.6181160081328 50.0954 0.1144 8311 +8313 2 92.6816078960676 -380.9235988785994 50.3488 0.1144 8312 +8314 2 93.79983305737352 -380.22976932488524 50.5327 0.1144 8313 +8315 2 94.87819444039175 -380.146477290769 50.6556 0.1144 8314 +8316 2 95.96232556805539 -379.5306569552392 50.7534 0.1144 8315 +8317 2 97.09451027110312 -378.91887325422425 50.85 0.1144 8316 +8318 2 98.22420841043947 -377.9746041728989 50.9698 0.1144 8317 +8319 2 99.34661768619866 -378.157981075199 51.1322 0.1144 8318 +8320 2 100.4689697233527 -377.3214744567455 51.3366 0.1144 8319 +8321 2 101.59216880635397 -377.82320639502734 51.5743 0.1144 8320 +8322 2 102.71459170207423 -376.96551241039725 51.8364 0.1144 8321 +8323 2 103.83779404202267 -377.2611238514367 52.1133 0.1144 8322 +8324 2 104.96021693774296 -376.6995080188967 52.3972 0.1144 8323 +8325 2 106.08263983346322 -376.69651686187234 52.6842 0.1144 8324 +8326 2 107.21003309784547 -376.48646477896 52.9749 0.1144 8325 +8327 2 108.34305192706606 -376.27637888127794 53.2717 0.1144 8326 +8328 2 109.47786916427765 -376.47339663690076 53.5738 0.1144 8327 +8329 2 110.61183580260874 -375.9082597827462 53.8798 0.1144 8328 +8330 2 111.74580629005928 -376.4161857750422 54.189 0.1144 8329 +8331 2 112.88055266870464 -375.77813692924997 54.4995 0.1144 8330 +8332 2 114.01529904735006 -375.9357326388499 54.8108 0.1144 8331 +8333 2 115.14933654424732 -375.5012880124207 55.1225 0.1144 8332 +8334 2 116.2832361731317 -375.52012736508857 55.4344 0.1144 8333 +8335 2 117.41798255177709 -374.44637641803126 55.7469 0.1144 8334 +8336 2 118.55194948619427 -374.6233339153907 56.0594 0.1144 8335 +8337 2 119.68511654644172 -374.09333088084713 56.3721 0.1144 8336 +8338 2 120.7839297175563 -374.39545651566664 56.6871 0.1144 8337 +8339 2 121.85981105075761 -373.29704635033875 57.0044 0.1144 8338 +8340 2 122.9349161966779 -373.6084042549751 57.3199 0.1144 8339 +8341 2 124.00931275693623 -372.49113077320396 57.6293 0.1144 8340 +8342 2 125.08519409013755 -372.69399412881756 57.9264 0.1144 8341 +8343 2 126.15951979182968 -371.774551131763 58.2033 0.1144 8342 +8344 2 127.23469609240225 -371.78153489833596 58.45 0.1144 8343 +8345 2 128.31036455381889 -371.0594898465757 58.6564 0.1144 8344 +8346 2 129.3851865615605 -370.8673576376776 58.8134 0.1144 8345 +8347 2 130.49795581536938 -370.1859844095552 58.8818 0.1144 8346 +8348 2 131.61261036677166 -370.5714849482172 58.802 0.1144 8347 +8349 2 132.71105628791005 -370.8167993315322 58.5768 0.1144 8348 +8350 2 133.81027839632947 -370.9433363521884 58.2406 0.1144 8349 +8351 2 134.90886633068632 -371.57611053231716 57.825 0.1144 8350 +8352 2 136.00731225182474 -371.3170816489663 57.36 0.1144 8351 +8353 2 137.10653436024407 -370.53442385013057 56.8714 0.1144 8352 +8354 2 138.20483886033617 -371.68904113450344 56.3766 0.1144 8353 +8355 2 139.30335564004076 -371.141122977373 55.8799 0.1144 8354 +8356 2 140.40279032415873 -372.06116363659004 55.3804 0.1144 8355 +8357 2 141.5011653867309 -371.91435528277987 54.8783 0.1144 8356 +8358 2 142.60045835371648 -372.43359933504956 54.3763 0.1144 8357 +8359 2 143.691467476337 -372.63204881377806 53.858 0.1144 8358 +8360 2 144.70407873684687 -373.0183850834492 53.3201 0.1144 8359 +8361 2 145.4963713521191 -373.4463481780383 52.7856 0.1144 8360 +8362 2 146.20594007159474 -374.97405787069613 52.2794 0.1144 8361 +8363 2 146.37421251055318 -376.0061111915053 51.8644 0.1144 8362 +8364 2 145.64813052629398 -376.6575990541921 51.639 0.1144 8363 +8365 2 144.8272740324636 -377.51755344181777 51.5788 0.1144 8364 +8366 2 144.0056413513523 -379.2071219173358 51.6398 0.1144 8365 +8367 2 143.18471399895571 -379.30370219533745 51.7759 0.1144 8366 +8368 2 142.33033418913206 -380.49533400189625 52.0206 0.1144 8367 +8369 2 141.95648903296038 -382.0537979562053 52.2368 0.1144 8368 +8370 2 141.97343652522838 -383.28293864401746 52.3261 0.1144 8369 +8371 2 141.990596593195 -384.51234452741994 52.3163 0.1144 8370 +8372 2 142.00641390143716 -385.74387001713507 52.2346 0.1144 8371 +8373 2 142.0763329022523 -386.92216556925126 52.1405 0.1144 8372 +8374 2 142.15728244859173 -388.08750290207195 52.0531 0.1144 8373 +8375 2 142.23950360000327 -389.25095520888374 51.9565 0.1144 8374 +8376 2 -13.904976821598538 -359.40887042411714 18.5578 0.1144 8160 +8377 2 -12.959217692758088 -360.2698955402623 18.5096 0.1144 8376 +8378 2 -12.55654662550161 -361.0248518354759 18.487 0.1144 8377 +8379 2 -12.112616439148567 -361.71410295148706 18.4569 0.1144 8378 +8380 2 -11.944474950108003 -362.79768033278486 18.4259 0.1144 8379 +8381 2 -12.038396228579302 -364.1798203770847 18.3824 0.1144 8380 +8382 2 -11.973744448551741 -365.3918984221152 18.3262 0.1144 8381 +8383 2 -11.495181704436362 -366.13340419951203 18.2409 0.1144 8382 +8384 2 -10.84363853229587 -366.9982631755234 18.0879 0.1144 8383 +8385 2 -10.264049454176472 -368.5810279735496 17.8902 0.1144 8384 +8386 2 -9.868673562291292 -369.82032679316075 17.7166 0.1144 8385 +8387 2 -9.526622973597739 -370.80013806202066 17.5869 0.1144 8386 +8388 2 -9.30027650903915 -371.9062360650954 17.4924 0.1144 8387 +8389 2 -8.86853725301954 -373.0259718355515 17.4233 0.1144 8388 +8390 2 -8.814551766872057 -374.28825349858846 17.4318 0.1144 8389 +8391 2 -8.47023085131356 -375.7083203296151 17.453 0.1144 8390 +8392 2 -7.48911534228516 -375.9885022922179 17.3939 0.1144 8391 +8393 2 -6.566847649191558 -376.4838560980054 17.1615 0.1144 8392 +8394 2 -7.276505372641381 -377.1144764507548 16.8708 0.1144 8393 +8395 2 -3.9041146059340903 -311.933044024808 22.3948 0.1144 8118 +8396 2 -4.746163977266654 -311.6385066175717 21.5313 0.1144 8395 +8397 2 -4.950850208366994 -312.6759483293522 21.2292 0.1144 8396 +8398 2 -5.375417784563751 -313.96378377407393 20.8967 0.1144 8397 +8399 2 -6.454124258401393 -313.99133758472146 20.465 0.1144 8398 +8400 2 -7.3889825980775825 -313.02518595725866 20.0707 0.1144 8399 +8401 2 -7.873244524358235 -312.4146738230986 19.718 0.1144 8400 +8402 2 -8.067933386447471 -311.4065244555204 19.2419 0.1144 8401 +8403 2 -8.04093172823481 -310.7058333547508 19.1204 0.1144 8402 +8404 2 -8.26754529993594 -309.6321030411212 20.111 0.1144 8403 +8405 2 -8.404924306418707 -308.24535592115757 20.5055 0.1144 8404 +8406 2 -8.696766870646911 -306.70788922966227 20.798 0.1144 8405 +8407 2 -9.286910618182723 -305.41376634910995 20.9912 0.1144 8406 +8408 2 -10.038592514682911 -305.29370887822046 21.0893 0.1144 8407 +8409 2 -11.005541668278958 -303.8163917217232 21.0975 0.1144 8408 +8410 2 -12.136669456942087 -304.63231669280333 21.0063 0.1144 8409 +8411 2 -13.228586727263078 -304.9690502071904 20.8395 0.1144 8410 +8412 2 -14.244836363924982 -303.769078248376 20.6293 0.1144 8411 +8413 2 -15.204693955407961 -303.74345896862366 20.4061 0.1144 8412 +8414 2 -16.127533484766666 -302.40495698118553 20.1509 0.1144 8413 +8415 2 -17.06936209936513 -302.23072388283583 19.7943 0.1144 8414 +8416 2 -17.906722087754545 -302.3964059881985 19.3438 0.1144 8415 +8417 2 -18.745440904375364 -302.85640272609675 18.7934 0.1144 8416 +8418 2 -19.80004970369732 -303.17288705281976 18.2573 0.1144 8417 +8419 2 -20.90703861027577 -302.848096709972 17.846 0.1144 8418 +8420 2 -22.034991383421023 -302.7000994611471 17.6217 0.1144 8419 +8421 2 -23.173935496480787 -302.88147403715965 17.6303 0.1144 8420 +8422 2 -24.26247859344604 -302.22504086505717 17.8732 0.1144 8421 +8423 2 -25.346078006970124 -302.92638730857567 18.3354 0.1144 8422 +8424 2 -26.390684633557775 -302.1860376852382 19.1021 0.1144 8423 +8425 2 -26.706581084112983 -301.94583173528116 20.3688 0.1144 8424 +8426 2 -27.02247753466819 -301.95315515817197 21.9816 0.1144 8425 +8427 2 -27.338303422743287 -302.10057100970783 23.7972 0.1144 8426 +8428 2 -27.654979317526646 -302.07226562238924 25.6869 0.1144 8427 +8429 2 -27.970805205601756 -301.6606043470927 27.5369 0.1144 8428 +8430 2 -27.974034202777503 -301.6710932894787 28.8722 0.1144 8429 +8431 2 -28.322832235178346 -302.503290993027 29.7598 0.1144 8430 +8432 2 -28.701566430317477 -303.4996689935744 30.3131 0.1144 8431 +8433 2 -29.265830840181096 -305.11493622861065 30.6382 0.1144 8432 +8434 2 -30.084416602945844 -305.9795732146331 30.847 0.1144 8433 +8435 2 -30.789673180823442 -306.40858554467303 31.0738 0.1144 8434 +8436 2 -30.878769764999127 -307.72256729258135 31.3566 0.1144 8435 +8437 2 -30.60150718849959 -308.7530523942282 31.6487 0.1144 8436 +8438 2 -30.011482171494073 -310.43268139576014 32.0079 0.1144 8437 +8439 2 -29.483680638338363 -311.7174776623197 32.3859 0.1144 8438 +8440 2 -29.3187681464736 -312.7966762716297 32.646 0.1144 8439 +8441 2 -29.331719214007897 -314.0997606332395 32.7933 0.1144 8440 +8442 2 -29.064950515286363 -315.0059809130414 32.8429 0.1144 8441 +8443 2 -28.40051434104484 -315.72436415613765 32.8096 0.1144 8442 +8444 2 -27.91059755152964 -317.37147816410857 32.704 0.1144 8443 +8445 2 -27.803946977701997 -318.71144179181755 32.5114 0.1144 8444 +8446 2 -27.890651745721577 -319.8386792664166 32.177 0.1144 8445 +8447 2 -28.332747321103973 -320.4391917651916 31.7839 0.1144 8446 +8448 2 -28.97472975602637 -321.7222948744168 31.43 0.1144 8447 +8449 2 -29.3907219370251 -323.37226976371664 31.1038 0.1144 8448 +8450 2 -29.2347887534127 -324.3876120901484 30.7387 0.1144 8449 +8451 2 -29.16221158118538 -325.5036486496616 30.3162 0.1144 8450 +8452 2 -29.828536309350348 -326.58312066070533 29.9012 0.1144 8451 +8453 2 -30.109696214488274 -327.36133541267424 29.3759 0.1144 8452 +8454 2 -29.87601500713408 -328.81971012284913 28.7902 0.1144 8453 +8455 2 -30.220116644510902 -329.5903588663735 28.177 0.1144 8454 +8456 2 -30.706565226913447 -330.6001128678589 27.6225 0.1144 8455 +8457 2 -30.073332313462423 -331.67054093001457 26.8985 0.1144 8456 +8458 2 -30.459238517066147 -331.67081018349404 26.2868 0.1144 8457 +8459 2 -30.632487931949726 -332.95204572763635 25.6986 0.1144 8458 +8460 2 -30.06901360145504 -333.97943178550474 24.9466 0.1144 8459 +8461 2 -30.539912575547255 -333.9371645575115 25.4668 0.1144 8460 +8462 2 -30.99244479010251 -335.48311414485323 25.273 0.1144 8461 +8463 2 -30.868063398103537 -336.5666383991714 25.1523 0.1144 8462 +8464 2 -30.633581818393104 -337.5863878725428 25.0165 0.1144 8463 +8465 2 -30.619192448689425 -338.7734977827902 24.7476 0.1144 8464 +8466 2 -31.116205767436156 -340.46981402220433 24.1816 0.1144 8465 +8467 2 -29.577696536568155 -334.65284383411665 24.3425 0.1144 8460 +8468 2 -28.79814850439849 -334.74586226103315 23.7559 0.1144 8467 +8469 2 -27.896672059669314 -335.6226190181167 23.2027 0.1144 8468 +8470 2 -26.799464892173503 -335.5862223783961 22.6984 0.1144 8469 +8471 2 -25.729307311369425 -336.31910933141563 22.3203 0.1144 8470 +8472 2 -24.629251372863322 -336.20916298450896 22.071 0.1144 8471 +8473 2 -23.902818516732687 -337.3649709883542 21.8951 0.1144 8472 +8474 2 -24.461306870156797 -338.06252346072665 21.7648 0.1144 8473 +8475 2 -25.039311327968548 -339.76478747456883 21.6246 0.1144 8474 +8476 2 -25.503885043357243 -341.16631680229347 21.5277 0.1144 8475 +8477 2 -26.170863971325694 -341.48813887600187 21.4579 0.1144 8476 +8478 2 -26.7439555011809 -342.7478021058779 21.4094 0.1144 8477 +8479 2 -27.26274588453923 -344.4825208779955 21.3699 0.1144 8478 +8480 2 -29.68086931673202 -331.7130896940223 26.4312 0.1144 8457 +8481 2 -28.849255940800496 -330.30287579123984 26.2475 0.1144 8480 +8482 2 -28.195962580935905 -329.2312515413392 26.128 0.1144 8481 +8483 2 -27.556523948329975 -328.82392246677483 26.0127 0.1144 8482 +8484 2 -26.96807298651789 -327.2692842781182 25.9152 0.1144 8483 +8485 2 -26.719586296679196 -325.7813611867339 25.8314 0.1144 8484 +8486 2 -26.604660587843938 -324.39816229499803 25.7563 0.1144 8485 +8487 2 -26.54397828871405 -323.0607596409972 25.6812 0.1144 8486 +8488 2 -26.43958978021473 -321.7182802539994 25.6078 0.1144 8487 +8489 2 -26.31327627216308 -320.5929615930401 25.5265 0.1144 8488 +8490 2 -26.013862407082883 -319.73657026732644 25.348 0.1144 8489 +8491 2 -25.399446713172644 -319.1324858023441 25.1271 0.1144 8490 +8492 2 -24.377951907382574 -317.6808107739213 24.7439 0.1144 8491 +8493 2 -27.939473203868104 -301.57205676531754 30.3677 0.1144 8429 +8494 2 -27.590745733947394 -300.58264916860844 30.3464 0.1144 8493 +8495 2 -26.993289220333615 -298.88865680416376 30.338 0.1144 8494 +8496 2 -26.51257307572653 -297.48535770408887 30.3268 0.1144 8495 +8497 2 -26.21881832720088 -296.5873529721748 30.3097 0.1144 8496 +8498 2 -26.000338362580592 -295.5594722975887 30.2856 0.1144 8497 +8499 2 -26.06091765261852 -294.253635003357 30.2537 0.1144 8498 +8500 2 -26.186264524908914 -292.85344017079416 30.2134 0.1144 8499 +8501 2 -26.052729956999364 -291.74308678624874 30.1588 0.1144 8500 +8502 2 -25.36859624392995 -290.866146017938 30.0286 0.1144 8501 +8503 2 -24.576734523636 -289.34214547272387 29.9104 0.1144 8502 +8504 2 -23.913720418427495 -288.8427890741403 29.8057 0.1144 8503 +8505 2 -23.286465906174456 -287.77641345900344 29.7105 0.1144 8504 +8506 2 -22.989454920550884 -286.27715380468175 29.6223 0.1144 8505 +8507 2 -22.821905186019002 -284.929053432891 29.54 0.1144 8506 +8508 2 -22.762059569722418 -283.63078787722577 29.4244 0.1144 8507 +8509 2 -22.64215993919187 -282.35538431095205 29.2051 0.1144 8508 +8510 2 -22.311966916745888 -281.2478380603182 29.0147 0.1144 8509 +8511 2 -22.199443589180863 -280.11431814845315 28.8702 0.1144 8510 +8512 2 -22.229415437668393 -278.81674101602005 28.7686 0.1144 8511 +8513 2 -22.195392634237308 -277.5903680342931 28.6804 0.1144 8512 +8514 2 -7.696919719560064 -312.2035531716919 18.7634 0.1144 8402 +8515 2 -7.57183695608024 -313.193024974044 18.2014 0.1144 8514 +8516 2 -7.343935358198898 -314.1460792163233 17.6911 0.1144 8515 +8517 2 -6.8774047482759215 -315.1334475981382 17.2989 0.1144 8516 +8518 2 -6.351873339884868 -316.8538695739058 17.0228 0.1144 8517 +8519 2 -6.417499063840694 -318.01906404265225 16.8491 0.1144 8518 +8520 2 -6.465241485278334 -319.238790578868 16.7327 0.1144 8519 +8521 2 -6.152323632119966 -320.77520819392697 16.6493 0.1144 8520 +8522 2 -6.287487947052064 -321.9149805448455 16.5599 0.1144 8521 +8523 2 -6.933435500820536 -322.24470345405445 16.4443 0.1144 8522 +8524 2 -7.685619680990264 -323.84789245544727 16.2975 0.1144 8523 +8525 2 -8.407970548416507 -324.67919391163207 15.9594 0.1144 8524 +8526 2 -9.116489050458277 -323.66169741591165 14.7769 0.1144 8525 +8527 2 -9.67822482474245 -323.2396102605612 14.0375 0.1144 8526 +8528 2 -10.678389971077799 -322.4005141905527 13.7667 0.1144 8527 +8529 2 -11.680235293060342 -321.9612424540827 13.4877 0.1144 8528 +8530 2 -12.55350086390164 -322.15808823844355 13.1433 0.1144 8529 +8531 2 -12.6378506809436 -322.95526399710377 12.5753 0.1144 8530 +8532 2 -13.167496651192337 -324.3782990208155 11.9787 0.1144 8531 +8533 2 -14.237699232170009 -323.98492115778544 11.4886 0.1144 8532 +8534 2 -15.35962742451455 -324.6982195172993 11.0772 0.1144 8533 +8535 2 -15.331090893376043 -325.31416547401824 10.6883 0.1144 8534 +8536 2 -14.21691923016251 -324.6804170940405 10.2845 0.1144 8535 +8537 2 -13.18875944678571 -325.9678817316981 9.9018 0.1144 8536 +8538 2 -12.644896908091987 -326.58059922179046 9.5392 0.1144 8537 +8539 2 -12.41375269307381 -327.5814986195986 9.0845 0.1144 8538 +8540 2 -11.769843418814958 -327.75806206844396 8.4927 0.1144 8539 +8541 2 -11.17992321629255 -328.0727586710051 7.8276 0.1144 8540 +8542 2 -10.472665683565104 -329.65335637502824 7.2272 0.1144 8541 +8543 2 -9.665367045823956 -329.64482191221714 6.5203 0.1144 8542 +8544 2 -8.667403595806036 -328.8387188068744 5.9234 0.1144 8543 +8545 2 -7.555494509618917 -328.8143594506239 5.4306 0.1144 8544 +8546 2 -6.460676159947191 -328.57020904439565 5.0481 0.1144 8545 +8547 2 -5.402587136842385 -327.9968082772887 4.7272 0.1144 8546 +8548 2 -4.281831294994596 -328.0649553979926 4.4897 0.1144 8547 +8549 2 -3.1626915802083246 -327.34955688518954 4.3127 0.1144 8548 +8550 2 -2.0600050769418985 -327.66473840419906 4.1497 0.1144 8549 +8551 2 -0.990548186375861 -326.5218306585245 3.9892 0.1144 8550 +8552 2 -0.11424278482770944 -326.40459061157594 3.7738 0.1144 8551 +8553 2 0.18083354159436738 -325.7049644606281 3.3704 0.1144 8552 +8554 2 0.378583049488725 -324.33536497021277 2.95 0.1144 8553 +8555 2 0.5314991107201408 -322.9013054747183 2.6163 0.1144 8554 +8556 2 0.8706200164210856 -321.3774434482768 2.3594 0.1144 8555 +8557 2 1.5781436642164266 -320.53394960031653 2.1633 0.1144 8556 +8558 2 2.380563310873967 -320.00601999987174 2.0241 0.1144 8557 +8559 2 2.7221375246561337 -318.47752654335267 1.9289 0.1144 8558 +8560 2 2.7706662003025 -317.1675111702168 1.8216 0.1144 8559 +8561 2 1.9887193398959369 -316.78637851473366 1.5865 0.1144 8560 +8562 2 1.3759991517651429 -315.16103308485594 1.1248 0.1144 8561 +8563 2 -8.631589857797358 -324.67568889109526 15.6421 0.1144 8525 +8564 2 -9.5152005016445 -325.45777387674593 15.2961 0.1144 8563 +8565 2 -10.505977143807584 -326.10687429298605 14.8612 0.1144 8564 +8566 2 -11.552736104487558 -326.3581129661852 14.4477 0.1144 8565 +8567 2 -12.679481979046898 -327.5952808702899 14.126 0.1144 8566 +8568 2 -13.634759179831043 -328.01628447372315 13.8032 0.1144 8567 +8569 2 -13.781528527198788 -328.9919303942764 13.4414 0.1144 8568 +8570 2 -13.082494047197976 -330.5025930120169 13.1327 0.1144 8569 +8571 2 -13.000152012796235 -331.6258795988819 12.8299 0.1144 8570 +8572 2 -13.169235497339614 -330.36396017552386 12.4418 0.1144 8571 +8573 2 -13.448242796258398 -328.8599925669915 12.334 0.1144 8572 +8574 2 -13.588132053341354 -327.4678795226975 12.2592 0.1144 8573 +8575 2 -13.388163145393115 -326.39679707204164 12.1932 0.1144 8574 +8576 2 -13.700155583870774 -324.9727421423037 12.1261 0.1144 8575 +8577 2 -14.369460865324484 -323.7060367650559 12.0424 0.1144 8576 +8578 2 -14.221884833806392 -322.4838305874224 11.8764 0.1144 8577 +8579 2 -13.502122881899922 -322.0625597220879 11.6409 0.1144 8578 +8580 2 -12.859343829754948 -321.0792045332604 11.4311 0.1144 8579 +8581 2 -13.037853952148716 -320.03043655561805 11.2229 0.1144 8580 +8582 2 -13.648249131469903 -318.6261451928533 11.0273 0.1144 8581 +8583 2 -14.579038238103678 -317.7897547587049 10.8899 0.1144 8582 +8584 2 -15.001846057834975 -316.977477240756 10.8779 0.1144 8583 +8585 2 -15.49097353829454 -315.77473210758956 10.8317 0.1144 8584 +8586 2 -16.140036956704172 -314.2334704682729 10.7576 0.1144 8585 +8587 2 -15.698954235390879 -313.4071491368883 10.696 0.1144 8586 +8588 2 -15.62518332935548 -312.2276767113982 10.6405 0.1144 8587 +8589 2 -16.32280429918017 -310.78456929321544 10.5869 0.1144 8588 +8590 2 -16.960473108392897 -310.2341171304644 10.5092 0.1144 8589 +8591 2 -17.07839956088722 -309.1159350906788 10.3546 0.1144 8590 +8592 2 -17.084114294946218 -307.83511400616544 10.2792 0.1144 8591 +8593 2 -17.13894071724706 -306.6137377997728 10.2903 0.1144 8592 +8594 2 -16.916354010634137 -305.23087481462767 10.4574 0.1144 8593 +8595 2 -16.904880205775527 -304.0206655737062 10.773 0.1144 8594 +8596 2 -17.12890166152456 -302.9149257669924 11.0976 0.1144 8595 +8597 2 -17.078584442714586 -301.65161065344705 11.3959 0.1144 8596 +8598 2 -16.678693628950732 -300.2679574262493 11.7179 0.1144 8597 +8599 2 -16.747859118872135 -299.2107734105502 12.1135 0.1144 8598 +8600 2 -17.28947877272337 -298.4966316298884 12.4216 0.1144 8599 +8601 2 -17.38949468277736 -297.2833634428462 12.6328 0.1144 8600 +8602 2 -16.91768984060306 -295.88535248117876 12.7737 0.1144 8601 +8603 2 -16.529167096400712 -294.46756439757013 12.8526 0.1144 8602 +8604 2 -16.461958999200014 -293.16572703238376 12.8757 0.1144 8603 +8605 2 -16.06773687073202 -292.1051281995873 12.8627 0.1144 8604 +8606 2 -15.57150299621351 -291.24653251365646 12.8423 0.1144 8605 +8607 2 -15.649833332264038 -290.00704660559563 12.7732 0.1144 8606 +8608 2 -15.886774531849774 -288.6444834221183 12.7028 0.1144 8607 +8609 2 -15.782278154020453 -287.4516338496478 12.6712 0.1144 8608 +8610 2 -15.677103687398535 -286.2411439725432 12.6799 0.1144 8609 +8611 2 -15.816220310233845 -284.91581829292244 12.7321 0.1144 8610 +8612 2 -16.25921630743742 -283.48756426449404 12.8283 0.1144 8611 +8613 2 -17.09945538065014 -283.13998840591756 13.0558 0.1144 8612 +8614 2 -18.19115286109134 -282.6449967267374 13.3442 0.1144 8613 +8615 2 -19.168687383073532 -282.2451622412465 13.6131 0.1144 8614 +8616 2 -19.4934607010021 -281.3772474293517 13.9963 0.1144 8615 +8617 2 -20.412841376377543 -280.10996476449475 14.3319 0.1144 8616 +8618 2 -20.894687597513027 -279.1733436296767 14.5996 0.1144 8617 +8619 2 -21.467042493999905 -278.5177504421962 14.8028 0.1144 8618 +8620 2 -22.34622753507271 -277.19448686424164 14.9608 0.1144 8619 +8621 2 -23.307708063597723 -276.8007079096754 15.0868 0.1144 8620 +8622 2 -24.173718820764645 -276.09914041649034 15.7461 0.1144 8621 +8623 2 -13.170493096676978 -331.89524149185246 12.3721 0.1144 8571 +8624 2 -13.662623984336506 -332.57217819032337 12.089 0.1144 8623 +8625 2 -13.89493824627391 -333.58210766588206 11.9455 0.1144 8624 +8626 2 -14.01064064057654 -334.70684190622774 11.7231 0.1144 8625 +8627 2 -14.453349555879136 -336.054433560299 11.5439 0.1144 8626 +8628 2 -15.221693042175552 -337.66548923402365 11.41 0.1144 8627 +8629 2 -15.855533848051714 -338.09290336134814 11.3182 0.1144 8628 +8630 2 -16.39216371318387 -339.0973891065832 11.2473 0.1144 8629 +8631 2 4.710991726679239 -296.38565350492644 22.1481 0.1144 8102 +8632 2 5.473191869088993 -296.26012745432314 21.5556 0.1144 8631 +8633 2 6.259547953548086 -295.99191021091036 21.0129 0.1144 8632 +8634 2 6.564697809457094 -294.6654807491647 20.5294 0.1144 8633 +8635 2 7.588246263594158 -293.77838040056787 20.1643 0.1144 8634 +8636 2 8.707385480193985 -293.2370582722225 19.9481 0.1144 8635 +8637 2 9.831316633645763 -293.20613824431274 19.8451 0.1144 8636 +8638 2 10.943815372864215 -292.79151538414976 19.8139 0.1144 8637 +8639 2 12.038430311378079 -292.4892403449939 19.8301 0.1144 8638 +8640 2 12.946176580362717 -291.6086000448643 19.8804 0.1144 8639 +8641 2 13.618965614673392 -290.9960518415166 19.9507 0.1144 8640 +8642 2 14.261653674396676 -289.6107204712677 20.0351 0.1144 8641 +8643 2 14.248930916893976 -288.87940227664245 20.266 0.1144 8642 +8644 2 13.936053923618857 -287.8637120259073 20.4915 0.1144 8643 +8645 2 13.490631858256208 -286.749222894089 20.6766 0.1144 8644 +8646 2 13.214023683660493 -285.38507223105694 20.8239 0.1144 8645 +8647 2 13.393798271887078 -285.60144666781287 21.3819 0.1144 8646 +8648 2 14.480118157149853 -285.2702161064725 23.0469 0.1144 8647 +8649 2 15.5270051775302 -285.6303092182619 23.6711 0.1144 8648 +8650 2 16.028530698099843 -286.46699739418557 24.4409 0.1144 8649 +8651 2 16.21494907716992 -286.97998065413213 25.4491 0.1144 8650 +8652 2 16.826765403475925 -286.3755948119583 28.1182 0.1144 8651 +8653 2 13.030058171000093 -285.12034066228654 20.9566 0.1144 8646 +8654 2 12.150900369849452 -284.36985948998245 21.1006 0.1144 8653 +8655 2 11.213605895086488 -283.75813072256057 21.201 0.1144 8654 +8656 2 10.313396491894522 -282.7495922542176 21.273 0.1144 8655 +8657 2 9.79931032342526 -281.89941162195356 21.3238 0.1144 8656 +8658 2 9.130801659194148 -280.9002175286485 21.355 0.1144 8657 +8659 2 8.99175609702531 -279.6346127204575 21.3689 0.1144 8658 +8660 2 8.561686653639 -278.2773525974399 21.3709 0.1144 8659 +8661 2 8.06201160982964 -277.2382404900373 21.3713 0.1144 8660 +8662 2 7.9076229944258145 -276.0644761814628 21.3719 0.1144 8661 +8663 2 7.712717397303727 -274.9025966148973 21.3727 0.1144 8662 +8664 2 7.72567172178519 -273.6430241284954 21.3739 0.1144 8663 +8665 2 7.57685754230836 -272.4507368465629 21.3755 0.1144 8664 +8666 2 7.281731797146207 -271.34063032329976 21.3777 0.1144 8665 +8667 2 7.103862254594787 -270.1553137568549 21.3808 0.1144 8666 +8668 2 6.860398809971485 -269.0014843234131 21.3851 0.1144 8667 +8669 2 6.726994491076134 -267.7880148888948 21.3912 0.1144 8668 +8670 2 7.07340376216775 -266.4803132463287 21.3997 0.1144 8669 +8671 2 7.325062210577151 -265.17404586870595 21.4115 0.1144 8670 +8672 2 7.511213698116634 -263.87704235597363 21.4282 0.1144 8671 +8673 2 7.1974458382500295 -262.7621469498782 21.4516 0.1144 8672 +8674 2 6.922531459262533 -261.60987868713073 21.484 0.1144 8673 +8675 2 7.338503210319594 -260.33686674235713 21.5284 0.1144 8674 +8676 2 7.697845845209063 -259.0558140846022 21.5923 0.1144 8675 +8677 2 7.820836106716044 -257.78107833985297 21.6841 0.1144 8676 +8678 2 8.144516654966132 -256.5107817650303 21.8101 0.1144 8677 +8679 2 8.297493211749902 -255.24149756545194 21.9737 0.1144 8678 +8680 2 8.637376684770704 -254.10607311686488 22.1774 0.1144 8679 +8681 2 9.278641223905051 -253.7276349151461 22.6199 0.1144 8680 +8682 2 9.486044171610388 -252.62419154743253 23.1424 0.1144 8681 +8683 2 10.330441740454948 -251.93924650897003 23.6737 0.1144 8682 +8684 2 11.268276360438715 -251.3698417064124 24.1446 0.1144 8683 +8685 2 12.21276527986528 -250.75942785270183 24.6386 0.1144 8684 +8686 2 13.060707323178647 -249.94743365766863 25.1326 0.1144 8685 +8687 2 13.69699107412217 -249.07371179113164 25.5004 0.1144 8686 +8688 2 14.190728021915433 -247.92462621577494 25.7635 0.1144 8687 +8689 2 14.660211112227376 -246.73114208403297 26.001 0.1144 8688 +8690 2 15.54212094838547 -245.9201979324784 26.1896 0.1144 8689 +8691 2 16.46362058919322 -245.31165014602237 26.3061 0.1144 8690 +8692 2 17.228701324497262 -244.16621137584536 26.3749 0.1144 8691 +8693 2 17.732989388673637 -243.18042707430982 26.421 0.1144 8692 +8694 2 18.295529802145726 -242.2532686135135 26.4506 0.1144 8693 +8695 2 19.247896739994438 -241.23406550332118 26.4667 0.1144 8694 +8696 2 20.278312915144987 -241.0798596612976 26.4814 0.1144 8695 +8697 2 21.354997177362982 -240.2310722258224 26.5013 0.1144 8696 +8698 2 22.419449649364303 -240.24538112596312 26.5285 0.1144 8697 +8699 2 23.30046861893089 -238.9309434464745 26.5676 0.1144 8698 +8700 2 24.109333138165322 -238.5708242110399 26.6246 0.1144 8699 +8701 2 25.000909738009447 -237.45244514248614 26.7023 0.1144 8700 +8702 2 26.099587597771567 -236.39527745042585 26.8017 0.1144 8701 +8703 2 26.31841285531158 -235.84657237401387 27.1985 0.1144 8702 +8704 2 27.057026644874448 -235.36409837179247 27.483 0.1144 8703 +8705 2 27.9136602007408 -234.16880433386967 27.5791 0.1144 8704 +8706 2 28.601771858344833 -233.4538233848296 27.6934 0.1144 8705 +8707 2 29.281798829421696 -232.53384319464686 27.8306 0.1144 8706 +8708 2 29.94970217569795 -231.24680775514292 27.9449 0.1144 8707 +8709 2 30.043630762336203 -230.05424144581895 28.0249 0.1144 8708 +8710 2 30.369747741759213 -228.89899485232544 28.0742 0.1144 8709 +8711 2 30.062579997577195 -227.74839766581218 28.1039 0.1144 8710 +8712 2 29.803854923399328 -226.52488511795403 28.1162 0.1144 8711 +8713 2 29.810374738317815 -225.28709640353335 28.1182 0.1144 8712 +8714 2 29.175827056950855 -224.56601789588632 28.1182 0.1144 8713 +8715 2 28.541255688695053 -223.38560557282415 28.1182 0.1144 8714 +8716 2 28.283306801798165 -222.03543088981903 28.1182 0.1144 8715 +8717 2 28.204830791381237 -220.79192045689558 28.1182 0.1144 8716 +8718 2 28.313321990653517 -219.57644399106118 28.1182 0.1144 8717 +8719 2 26.752344807120245 -236.78592085066492 26.9233 0.1144 8702 +8720 2 27.816966198705256 -236.46285602143521 27.1962 0.1144 8719 +8721 2 28.89887862660167 -236.58211402660677 27.5486 0.1144 8720 +8722 2 30.014738215300866 -236.03644631852507 27.8423 0.1144 8721 +8723 2 31.11669214993035 -235.94125861257714 28.0756 0.1144 8722 +8724 2 32.174025415695816 -235.34728122427322 28.3307 0.1144 8723 +8725 2 33.286537774875356 -235.21135772620372 28.5118 0.1144 8724 +8726 2 34.383575524601085 -234.7620680526021 28.6236 0.1144 8725 +8727 2 35.48951826496541 -234.50158306731538 28.6975 0.1144 8726 +8728 2 36.623400020568624 -234.33032764346487 28.7577 0.1144 8727 +8729 2 37.76573618026521 -234.45343683960584 28.8126 0.1144 8728 +8730 2 38.90200719536392 -234.17021901349034 28.8674 0.1144 8729 +8731 2 40.045834237697306 -234.37086363681 28.9408 0.1144 8730 +8732 2 40.71467282601072 -233.7961987019125 29.0346 0.1144 8731 +8733 2 41.65085351389668 -232.95757613448887 29.1668 0.1144 8732 +8734 2 42.533725775499235 -232.55989908054985 29.4417 0.1144 8733 +8735 2 43.49428201225792 -231.57417191540247 29.7175 0.1144 8734 +8736 2 44.56936021434214 -231.55658078218084 29.9771 0.1144 8735 +8737 2 45.69599772138506 -230.34048064158173 30.2456 0.1144 8736 +8738 2 46.81795315365179 -230.92927219108432 30.5452 0.1144 8737 +8739 2 47.8734195639351 -230.2989447649103 30.924 0.1144 8738 +8740 2 48.97478710248042 -230.5613556568503 31.1592 0.1144 8739 +8741 2 50.1153750807102 -230.13833242491157 31.3174 0.1144 8740 +8742 2 51.23295942260255 -230.7801093478339 31.4143 0.1144 8741 +8743 2 52.36182319619487 -230.66223342511876 31.4572 0.1144 8742 +8744 2 53.5017942814711 -230.8971929719719 31.4574 0.1144 8743 +8745 2 54.5964465268349 -230.63129854354563 31.4311 0.1144 8744 +8746 2 55.67554323725092 -230.0633713875293 31.4054 0.1144 8745 +8747 2 56.73843326776249 -229.7419139552435 31.374 0.1144 8746 +8748 2 57.76146682815342 -229.1056799667561 31.3368 0.1144 8747 +8749 2 58.64656204284326 -228.3929445056151 31.2396 0.1144 8748 +8750 2 59.594950537970895 -227.67764404239034 31.1324 0.1144 8749 +8751 2 60.45569033764352 -226.938899292116 31.0484 0.1144 8750 +8752 2 61.03298646840849 -226.26841551542236 29.909 0.1144 8751 +8753 2 61.899083231217546 -225.8346074110057 29.3563 0.1144 8752 +8754 2 61.418781306163766 -226.24792166935435 29.1852 0.1144 8753 +8755 2 60.77357944280692 -227.27513210901736 29.076 0.1144 8754 +8756 2 60.521877173653166 -228.54178162068484 29.0228 0.1144 8755 +8757 2 60.766757385399785 -229.57873950373272 29.0688 0.1144 8756 +8758 2 61.21364614832393 -230.5879738050146 29.248 0.1144 8757 +8759 2 61.238708325802136 -231.80626075989994 29.4073 0.1144 8758 +8760 2 61.102764566641866 -233.0247286734433 29.5131 0.1144 8759 +8761 2 61.01773741760895 -234.24538901809257 29.5534 0.1144 8760 +8762 2 60.79195902067015 -235.43990050031528 29.5173 0.1144 8761 +8763 2 60.703729616197194 -236.64379008618522 29.4445 0.1144 8762 +8764 2 60.79181870472829 -237.87682694249324 29.3748 0.1144 8763 +8765 2 60.73918733830906 -239.09928445892876 29.3311 0.1144 8764 +8766 2 60.57255846905163 -240.3117874883284 29.3168 0.1144 8765 +8767 2 60.39121174405259 -241.62281295355757 29.3194 0.1144 8766 +8768 2 60.07804826228286 -242.8153265186443 29.3177 0.1144 8767 +8769 2 59.64347446213205 -243.98889130797318 29.3348 0.1144 8768 +8770 2 59.358424550034385 -245.09667829961643 29.4868 0.1144 8769 +8771 2 59.25555090714677 -246.26270424965583 29.7483 0.1144 8770 +8772 2 59.404324522826506 -247.49482752989587 30.0166 0.1144 8771 +8773 2 59.764042379292064 -248.66022183471932 30.2935 0.1144 8772 +8774 2 60.244248490391115 -249.69643681268275 30.6239 0.1144 8773 +8775 2 60.76707234671789 -250.5355047087885 31.1192 0.1144 8774 +8776 2 61.58605039102337 -251.37447808503458 31.6817 0.1144 8775 +8777 2 62.69298185689641 -251.04678088082318 32.1622 0.1144 8776 +8778 2 63.82655238852658 -250.7364108099639 32.5517 0.1144 8777 +8779 2 64.91289572110698 -251.904097562368 32.8734 0.1144 8778 +8780 2 65.67974074447277 -252.3063207661661 33.1895 0.1144 8779 +8781 2 66.57183822121534 -253.4747509080044 33.4519 0.1144 8780 +8782 2 67.62176805712289 -253.47748035423444 33.7456 0.1144 8781 +8783 2 68.3612963301396 -254.55796618144666 34.0239 0.1144 8782 +8784 2 69.120913483667 -255.67866504103807 34.8664 0.1144 8783 +8785 2 61.0258437773841 -226.340844287356 30.9854 0.1144 8751 +8786 2 62.0009026294108 -225.80473320789935 30.9417 0.1144 8785 +8787 2 63.00689608401129 -224.90769561765057 30.9148 0.1144 8786 +8788 2 63.99095723089248 -223.6954854745961 30.9025 0.1144 8787 +8789 2 64.9766546386907 -224.10354199707433 30.891 0.1144 8788 +8790 2 66.1007546552112 -223.62950795426514 30.8745 0.1144 8789 +8791 2 67.24300968731352 -224.03373258943213 30.8526 0.1144 8790 +8792 2 68.3449941188124 -223.2912038377456 30.826 0.1144 8791 +8793 2 69.07360637941287 -222.7564556958965 30.7958 0.1144 8792 +8794 2 69.91257918140161 -221.84031536532802 30.6936 0.1144 8793 +8795 2 70.93227913223396 -221.1924213213981 30.609 0.1144 8794 +8796 2 72.00575758597859 -220.82759727044953 30.5528 0.1144 8795 +8797 2 73.11092088211477 -220.59907421725654 30.5222 0.1144 8796 +8798 2 73.65015536024585 -220.70360851541392 30.5141 0.1144 8797 +8799 2 74.75409493740266 -219.84050869267472 30.6037 0.1144 8798 +8800 2 75.76495775783056 -220.42272859661583 30.9299 0.1144 8799 +8801 2 76.71414287018084 -218.96768141522745 30.6715 0.1144 8800 +8802 2 77.66982979762697 -219.1979558737071 30.5676 0.1144 8801 +8803 2 78.70259141152874 -217.7413866497463 30.4287 0.1144 8802 +8804 2 79.67778487462121 -218.0752501353687 30.2462 0.1144 8803 +8805 2 80.66102997071104 -216.5588677211575 29.9348 0.1144 8804 +8806 2 80.84156968291799 -216.61823690608315 30.3568 0.1144 8805 +8807 2 81.92707307571784 -217.7770617801098 30.1188 0.1144 8806 +8808 2 82.99495351967647 -217.38684331233583 30.0174 0.1144 8807 +8809 2 84.06191635530782 -217.76975952556828 29.8976 0.1144 8808 +8810 2 85.1297967992664 -218.32861013550206 29.7693 0.1144 8809 +8811 2 85.66775023074251 -219.22991858174794 29.5464 0.1144 8810 +8812 2 86.44969709114908 -219.62305722401663 29.3356 0.1144 8811 +8813 2 87.33048138237508 -220.68059157648707 29.2088 0.1144 8812 +8814 2 88.07080271958104 -221.29233874750685 29.162 0.1144 8813 +8815 2 88.83458435189266 -222.31471132980073 29.2496 0.1144 8814 +8816 2 89.36168806660089 -223.5878369720758 29.4064 0.1144 8815 +8817 2 89.53070680227184 -224.800218919782 29.5974 0.1144 8816 +8818 2 90.19157199987997 -225.17802521294556 29.9298 0.1144 8817 +8819 2 91.12163209091017 -226.31935818567496 30.2487 0.1144 8818 +8820 2 91.62117913153395 -227.342080528084 30.5682 0.1144 8819 +8821 2 92.24350183266478 -227.83927618439054 30.9184 0.1144 8820 +8822 2 93.33708615685825 -228.76511743074525 31.1772 0.1144 8821 +8823 2 94.45874979872067 -228.37236173902585 31.4924 0.1144 8822 +8824 2 80.2021496373916 -216.09959159386602 29.4857 0.1144 8805 +8825 2 79.87719284006032 -215.32131068127856 29.0032 0.1144 8824 +8826 2 79.7195319049228 -214.23530511810148 28.4676 0.1144 8825 +8827 2 79.72793245389974 -213.18335469092972 27.7725 0.1144 8826 +8828 2 80.15706742556212 -211.81040670182313 27.1123 0.1144 8827 +8829 2 80.91727934974006 -210.29170396658088 26.5516 0.1144 8828 +8830 2 81.61131323633639 -210.17138761231126 25.9342 0.1144 8829 +8831 2 81.29927929420363 -209.07216934512417 25.1378 0.1144 8830 +8832 2 80.48622462084865 -208.177541415573 24.4907 0.1144 8831 +8833 2 80.191932799759 -207.35685170674148 23.9734 0.1144 8832 +8834 2 79.33490390750494 -206.5056536895383 23.3926 0.1144 8833 +8835 2 79.14947839423384 -205.3813960353289 22.787 0.1144 8834 +8836 2 79.88152632011516 -205.29056606816576 22.3531 0.1144 8835 +8837 2 80.98671330314018 -204.0115089223085 22.0515 0.1144 8836 +8838 2 82.09528778339583 -204.6201986674672 21.806 0.1144 8837 +8839 2 83.15004625178899 -203.31960197918983 21.5867 0.1144 8838 +8840 2 83.9695435131872 -202.78529228817075 21.4201 0.1144 8839 +8841 2 84.47461783157229 -201.47988620331358 21.2984 0.1144 8840 +8842 2 85.18399101626996 -200.6380161088428 21.1427 0.1144 8841 +8843 2 86.22005600147618 -200.61040367728833 20.982 0.1144 8842 +8844 2 87.34487757984789 -200.85085994191303 20.8548 0.1144 8843 +8845 2 88.48799949556681 -200.7267514956926 20.7512 0.1144 8844 +8846 2 89.62352156330675 -200.89747596132332 20.6594 0.1144 8845 +8847 2 90.73361792125498 -200.22977796640055 20.5708 0.1144 8846 +8848 2 91.85789786414486 -200.67714058410866 20.4872 0.1144 8847 +8849 2 92.90034934136455 -200.37043292548836 20.2956 0.1144 8848 +8850 2 93.97200787173317 -201.32210832061264 20.08 0.1144 8849 +8851 2 95.0995609286293 -200.62755313017206 19.9125 0.1144 8850 +8852 2 96.1727819004876 -201.48502663384662 19.6826 0.1144 8851 +8853 2 74.2508374875467 -220.37248832612465 30.6796 0.1144 8799 +8854 2 74.11403335866432 -221.6951348395953 30.7252 0.1144 8853 +8855 2 74.3065365745162 -222.67739674433295 30.737 0.1144 8854 +8856 2 74.47630425754602 -223.78925499672633 30.7121 0.1144 8855 +8857 2 74.05546014232948 -225.21707599016474 30.6499 0.1144 8856 +8858 2 73.5106682182095 -226.72198976340604 30.5446 0.1144 8857 +8859 2 73.29944612211057 -227.8928966199779 30.3814 0.1144 8858 +8860 2 73.28078550939713 -229.08829480020015 30.1314 0.1144 8859 +8861 2 73.0962869575826 -230.14992630963457 29.8368 0.1144 8860 +8862 2 73.15686624762054 -231.4531346606376 29.5481 0.1144 8861 +8863 2 73.13821274097378 -232.65117868501687 29.2107 0.1144 8862 +8864 2 72.9268792225115 -233.6062524648196 28.8467 0.1144 8863 +8865 2 72.72779712993497 -234.58446809841553 28.527 0.1144 8864 +8866 2 73.09885890835774 -235.7096121930623 28.1352 0.1144 8865 +8867 2 74.03566572929677 -235.6017628223101 27.7801 0.1144 8866 +8868 2 74.6378652979138 -236.66545592905572 27.5614 0.1144 8867 +8869 2 75.09548460540402 -238.29265920449484 27.4878 0.1144 8868 +8870 2 74.96031022354417 -239.3706820135489 27.4691 0.1144 8869 +8871 2 74.77260280840943 -240.39428554876682 27.4823 0.1144 8870 +8872 2 74.63744885649122 -241.4834356700568 27.5178 0.1144 8871 +8873 2 74.50554729255154 -242.5762091717824 27.5477 0.1144 8872 +8874 2 74.28544113394196 -243.6373712748554 27.5608 0.1144 8873 +8875 2 74.05642367289965 -244.81315145742997 27.5636 0.1144 8874 +8876 2 73.75701030600587 -246.28355163612588 27.5666 0.1144 8875 +8877 2 73.34431137286886 -247.84074718499113 27.5709 0.1144 8876 +8878 2 72.74120305086753 -248.74157315296708 27.5769 0.1144 8877 +8879 2 72.49519966779296 -249.68748761985591 27.5852 0.1144 8878 +8880 2 72.26695839403163 -250.6715976157589 27.5964 0.1144 8879 +8881 2 71.88582181762226 -251.76069697873965 27.613 0.1144 8880 +8882 2 71.73043606958771 -253.10054928959562 27.6368 0.1144 8881 +8883 2 71.58644137771684 -254.4504328960582 27.6688 0.1144 8882 +8884 2 71.7223189364487 -255.50500756759703 27.709 0.1144 8883 +8885 2 71.5806528064207 -256.8497877204008 27.7573 0.1144 8884 +8886 2 71.47946960820829 -258.1348854205118 27.8936 0.1144 8885 +8887 2 71.3604409125141 -259.46158322308435 28.0137 0.1144 8886 +8888 2 71.1743599874547 -260.85044799698636 28.1184 0.1144 8887 +8889 2 70.88230554843169 -262.1406240114412 28.21 0.1144 8888 +8890 2 70.42976446542184 -263.0606050749946 28.2898 0.1144 8889 +8891 2 70.13096136455738 -262.96566715135083 28.4161 0.1144 8890 +8892 2 69.24913245389324 -263.9850981339057 28.5407 0.1144 8891 +8893 2 68.40859089862067 -264.93585273975594 28.6502 0.1144 8892 +8894 2 67.48872100483547 -265.22726638882125 28.7479 0.1144 8893 +8895 2 66.6595168201547 -266.60577821498237 28.8411 0.1144 8894 +8896 2 65.82967461229205 -267.01128842599286 28.9377 0.1144 8895 +8897 2 65.59170528501984 -268.1210361348152 29.0483 0.1144 8896 +8898 2 64.61163570263433 -269.19442042988834 29.1906 0.1144 8897 +8899 2 63.52127356563611 -267.9585806785916 29.3748 0.1144 8898 +8900 2 62.583463755455426 -267.8706967763186 29.7086 0.1144 8899 +8901 2 61.5325956791787 -268.0829009360573 30.1073 0.1144 8900 +8902 2 60.506049024531386 -267.82848927369065 30.6684 0.1144 8901 +8903 2 60.299063238196446 -267.3842053973977 31.2035 0.1144 8902 +8904 2 60.302862139704686 -266.42182088188065 31.824 0.1144 8903 +8905 2 61.29353702223154 -266.2521016595487 32.412 0.1144 8904 +8906 2 62.33281782632398 -265.3382253259477 32.9412 0.1144 8905 +8907 2 63.40597123403422 -264.22844432627824 33.4765 0.1144 8906 +8908 2 64.49947812925213 -265.2340244149445 34.013 0.1144 8907 +8909 2 65.38475958210546 -264.1352624063387 34.5358 0.1144 8908 +8910 2 66.16849980720865 -263.36020896544693 35.0246 0.1144 8909 +8911 2 66.84561912852536 -262.8222738631015 35.5964 0.1144 8910 +8912 2 67.54115801590594 -261.4431462050836 36.1542 0.1144 8911 +8913 2 68.18071132782241 -260.56192076800056 36.6691 0.1144 8912 +8914 2 68.92471707028241 -260.0684682484667 37.1112 0.1144 8913 +8915 2 69.52056071378189 -258.6158771278452 37.4749 0.1144 8914 +8916 2 70.40263359940106 -258.1333782381144 37.8504 0.1144 8915 +8917 2 71.19554923574756 -257.64144396258644 38.2973 0.1144 8916 +8918 2 71.82313140721037 -256.07720818850436 38.7923 0.1144 8917 +8919 2 72.48773489774467 -255.48470923357735 39.2106 0.1144 8918 +8920 2 73.18396153664499 -254.84370497965114 39.5158 0.1144 8919 +8921 2 73.88344737350435 -253.16523472303402 39.7155 0.1144 8920 +8922 2 74.5836420921118 -252.58396685946383 39.8188 0.1144 8921 +8923 2 75.28312792897117 -251.93532540057282 39.8482 0.1144 8922 +8924 2 75.89183082075508 -250.274699525372 39.825 0.1144 8923 +8925 2 76.467331541861 -249.29455855284232 39.7793 0.1144 8924 +8926 2 77.0404230717162 -248.84336744882853 39.7272 0.1144 8925 +8927 2 77.61273515734322 -247.48554255267675 39.678 0.1144 8926 +8928 2 78.18575582863222 -245.84123034523492 39.6421 0.1144 8927 +8929 2 78.75884735848743 -245.26139225377995 39.6346 0.1144 8928 +8930 2 79.33193888834262 -244.69822269129202 39.6715 0.1144 8929 +8931 2 79.90418011540348 -243.05526551314438 39.7659 0.1144 8930 +8932 2 80.47727164525865 -241.68187084622133 39.9255 0.1144 8931 +8933 2 80.9572352894736 -241.0920172184301 40.2234 0.1144 8932 +8934 2 81.52739923781348 -240.4978901119677 40.7677 0.1144 8933 +8935 2 82.2239814761325 -238.9901259539635 41.494 0.1144 8934 +8936 2 83.09557380784861 -238.14565710722275 42.3072 0.1144 8935 +8937 2 84.10891306854525 -237.46986313839193 43.062 0.1144 8936 +8938 2 85.03048682486647 -236.9328157237422 43.7276 0.1144 8937 +8939 2 85.89546867788417 -235.99483370672885 44.4231 0.1144 8938 +8940 2 86.76045082698802 -235.59463661709745 45.1307 0.1144 8939 +8941 2 87.62620886728666 -234.69448467855148 45.8511 0.1144 8940 +8942 2 88.49126157887059 -233.92108150221225 46.5811 0.1144 8941 +8943 2 89.35624343188833 -233.56508264241117 47.3085 0.1144 8942 +8944 2 88.70909065714955 -233.444659824596 48.0553 0.1144 8943 +8945 2 87.73861657568321 -233.7229209672197 48.6819 0.1144 8944 +8946 2 86.82271505769123 -234.74913764401117 49.1109 0.1144 8945 +8947 2 86.13377678418166 -235.4361104819094 49.3744 0.1144 8946 +8948 2 85.43917663535672 -236.59712323958735 49.506 0.1144 8947 +8949 2 84.66439182951675 -237.5371960955111 49.539 0.1144 8948 +8950 2 83.84900832219199 -238.18815607353918 49.5076 0.1144 8949 +8951 2 82.81140463889982 -238.845322062411 49.4519 0.1144 8950 +8952 2 82.02839648424714 -240.08446867945554 49.3147 0.1144 8951 +8953 2 81.41306623685654 -241.6883783378645 49.0952 0.1144 8952 +8954 2 81.68680577871334 -240.73430227218634 48.9619 0.1144 8953 +8955 2 82.14084199767998 -239.15662623189326 48.9171 0.1144 8954 +8956 2 82.59409847633235 -237.76341772465906 48.9457 0.1144 8955 +8957 2 83.04728439250464 -236.64180202018002 49.0325 0.1144 8956 +8958 2 83.49976497996212 -235.45737972825756 49.1638 0.1144 8957 +8959 2 83.81616071585485 -234.2169547323788 49.2948 0.1144 8958 +8960 2 83.95294471088178 -233.01495315884353 49.383 0.1144 8959 +8961 2 84.0759349723887 -231.807986489766 49.4441 0.1144 8960 +8962 2 84.19892523389561 -230.59902362168097 49.499 0.1144 8961 +8963 2 84.32198605788264 -229.38730186231504 49.5667 0.1144 8962 +8964 2 84.44412956962853 -228.1753053231065 49.6644 0.1144 8963 +8965 2 84.46037388502457 -226.97806319606798 49.8929 0.1144 8964 +8966 2 84.45965951831052 -225.78847162475046 50.2435 0.1144 8965 +8967 2 84.45894544768261 -224.5995155454846 50.6881 0.1144 8966 +8968 2 84.4573810742603 -223.4104632315125 51.1988 0.1144 8967 +8969 2 84.45666670754625 -222.2228200143079 51.7499 0.1144 8968 +8970 2 84.45510233412396 -221.03525424229835 52.3177 0.1144 8969 +8971 2 84.45445882597612 -219.84829750239652 52.8808 0.1144 8970 +8972 2 84.45282359398756 -218.6618115820658 53.4338 0.1144 8971 +8973 2 84.45218008583976 -217.48138349531115 53.9717 0.1144 8972 +8974 2 84.45061571241742 -216.29658074605643 54.4883 0.1144 8973 +8975 2 84.44912190147518 -215.11240680844588 54.9766 0.1144 8974 +8976 2 84.44833697228106 -213.92970425042165 55.4305 0.1144 8975 +8977 2 84.44923547568129 -212.74060050283413 55.8345 0.1144 8976 +8978 2 84.47109784564839 -211.53005535250327 56.1184 0.1144 8977 +8979 2 84.41779330104009 -210.3325312250445 56.301 0.1144 8978 +8980 2 84.35388365839076 -209.139936023455 56.4066 0.1144 8979 +8981 2 84.28841838423229 -207.94925373921356 56.457 0.1144 8980 +8982 2 84.42675801076838 -206.72452837665315 56.4738 0.1144 8981 +8983 2 84.96346524836113 -205.57336433997133 56.4746 0.1144 8982 +8984 2 85.51460779568907 -204.75243703757081 56.4746 0.1144 8983 +8985 2 85.8084334027809 -203.66447626945757 56.4746 0.1144 8984 +8986 2 86.04226243634423 -202.45920037583807 56.4746 0.1144 8985 +8987 2 86.27453613448445 -201.09872735846966 56.4746 0.1144 8986 +8988 2 86.23813303338113 -199.91598200271304 56.4746 0.1144 8987 +8989 2 86.15647519746582 -198.81799456239156 56.4746 0.1144 8988 +8990 2 86.14191972345415 -197.64994124454697 56.4746 0.1144 8989 +8991 2 86.87788084499766 -196.40109623828903 56.4746 0.1144 8990 +8992 2 87.6129952167801 -195.75510402307088 56.4746 0.1144 8991 +8993 2 88.34888547975743 -194.7586944136135 56.4746 0.1144 8992 +8994 2 89.08399985153983 -193.53958272453286 56.4746 0.1144 8993 +8995 2 80.91583656823357 -241.39758073259298 48.3974 0.1144 8953 +8996 2 79.81396000606473 -241.69570842089422 48.5125 0.1144 8995 +8997 2 78.71278877261065 -241.8868092881443 48.5626 0.1144 8996 +8998 2 77.61169165467 -242.514387658223 48.6214 0.1144 8997 +8999 2 76.5105912797821 -242.37836608538225 48.6844 0.1144 8998 +9000 2 75.40942004632802 -243.33242074649377 48.7477 0.1144 8999 +9001 2 74.30832292838737 -242.93723636516958 48.8082 0.1144 9000 +9002 2 73.20722255349949 -244.00142737626715 48.9255 0.1144 9001 +9003 2 89.89706096450706 -232.09545457407808 48.0768 0.1144 8943 +9004 2 90.4514730728079 -231.04183877483655 48.3946 0.1144 9003 +9005 2 91.0051089938278 -230.45646297455474 48.5352 0.1144 9004 +9006 2 91.55959166460873 -229.37541602859216 48.699 0.1144 9005 +9007 2 91.95809212434322 -229.19511606941774 48.9255 0.1144 9006 +9008 2 92.91393446444175 -230.22546823499619 48.9255 0.1144 9007 +9009 2 93.62445830119485 -231.16280917452855 48.9255 0.1144 9008 +9010 2 94.34297583205348 -231.63375680896434 48.9255 0.1144 9009 +9011 2 94.67532205412498 -233.03516131883038 48.9255 0.1144 9010 +9012 2 94.00012658732436 -233.753656057559 48.9255 0.1144 9011 +9013 2 91.68021329866205 -228.08474026839167 48.8337 0.1144 9006 +9014 2 91.4303254114035 -227.0487479640177 48.9423 0.1144 9013 +9015 2 91.0907480625464 -225.8572951880147 49.0342 0.1144 9014 +9016 2 90.76968858034182 -224.3822759216156 49.1229 0.1144 9015 +9017 2 90.44947584789833 -223.06010251327885 49.2125 0.1144 9016 +9018 2 90.12770748394564 -221.92231626679708 49.3055 0.1144 9017 +9019 2 89.80749475150213 -221.05365826599876 49.4026 0.1144 9018 +9020 2 89.48728201905864 -220.01936827752883 49.4984 0.1144 9019 +9021 2 89.45010598762155 -218.80211991752168 49.5793 0.1144 9020 +9022 2 89.75114584459072 -217.64154371409728 49.6345 0.1144 9021 +9023 2 90.05784402384192 -216.18261997010552 49.6689 0.1144 9022 +9024 2 89.65687356217423 -215.35677295880237 49.6877 0.1144 9023 +9025 2 89.1773995215257 -214.15965944519982 49.6978 0.1144 9024 +9026 2 60.301525786377255 -268.6625223853261 30.9299 0.1144 8902 +9027 2 60.08784407040295 -269.97305000652966 30.8204 0.1144 9026 +9028 2 60.09674418299365 -271.20383380231596 30.7768 0.1144 9027 +9029 2 60.03518108420001 -272.4395628764466 30.716 0.1144 9028 +9030 2 59.60061409402976 -273.73511114990015 30.6317 0.1144 9029 +9031 2 59.2735321325018 -275.00361475447005 30.5141 0.1144 9030 +9032 2 59.43286367454515 -276.16326841853737 30.338 0.1144 9031 +9033 2 59.65199233619308 -277.2833879347086 30.1078 0.1144 9032 +9034 2 59.55145001390919 -278.46111333811996 29.7996 0.1144 9033 +9035 2 58.81196479132353 -279.2950425895906 29.3709 0.1144 9034 +9036 2 57.906583892845354 -279.75789518960437 28.9682 0.1144 9035 +9037 2 57.21675830577757 -281.01678064864615 28.6289 0.1144 9036 +9038 2 56.82016449500907 -282.23305931509293 28.315 0.1144 9037 +9039 2 56.568492426638585 -283.32881381965984 28.0126 0.1144 9038 +9040 2 56.18567872942896 -284.29485088639615 27.7012 0.1144 9039 +9041 2 55.56697055354903 -285.2138115572088 27.3096 0.1144 9040 +9042 2 54.728901739926464 -286.3654636005548 26.9683 0.1144 9041 +9043 2 53.66347697765321 -286.29992004119555 26.7129 0.1144 9042 +9044 2 52.52963203071352 -286.86288672657173 26.5352 0.1144 9043 +9045 2 51.38925427362215 -286.61714289873424 26.4208 0.1144 9044 +9046 2 50.24851786226519 -286.81902495884685 26.3535 0.1144 9045 +9047 2 49.110112273325484 -286.5140390344753 26.3151 0.1144 9046 +9048 2 47.967017301442645 -286.504841366134 26.2764 0.1144 9047 +9049 2 46.850347569545576 -286.92108757958283 26.1978 0.1144 9048 +9050 2 45.73121111170652 -286.7306302474603 26.0844 0.1144 9049 +9051 2 44.611346136450265 -287.6006299776035 25.9823 0.1144 9050 +9052 2 43.54517292500464 -288.85824459784 25.8976 0.1144 9051 +9053 2 42.595218435353985 -288.8967105539581 25.8277 0.1144 9052 +9054 2 41.80738884335287 -290.25451435617043 25.7704 0.1144 9053 +9055 2 41.163843966940725 -291.21956322791465 25.7242 0.1144 9054 +9056 2 40.77291884146814 -292.1605148125794 25.6433 0.1144 9055 +9057 2 40.352071173218306 -293.11780369764784 25.5356 0.1144 9056 +9058 2 39.825915052008625 -294.6319032091924 25.4463 0.1144 9057 +9059 2 39.37676807410969 -296.03683154722785 25.3786 0.1144 9058 +9060 2 38.627114076295406 -296.50999734375347 25.3301 0.1144 9059 +9061 2 37.570708983971365 -297.24991225373367 25.2994 0.1144 9060 +9062 2 36.43098237183654 -296.967987872137 25.2858 0.1144 9061 +9063 2 35.30461834024518 -297.6332802042606 25.2858 0.1144 9062 +9064 2 34.214018653115815 -297.46251990930205 25.2571 0.1144 9063 +9065 2 33.20309865059771 -298.5648635938487 25.2179 0.1144 9064 +9066 2 32.06259535299547 -298.0231735475292 25.2224 0.1144 9065 +9067 2 31.603826315497933 -298.6680700751923 24.7439 0.1144 9066 +9068 2 30.55958896480493 -299.25572935018727 24.5796 0.1144 9067 +9069 2 29.562442265865165 -299.6885506337079 24.467 0.1144 9068 +9070 2 28.5576860371753 -299.4144090787065 24.3662 0.1144 9069 +9071 2 27.803601463318735 -298.0925808813858 24.2888 0.1144 9070 +9072 2 27.022054760832837 -297.7756726797195 24.2333 0.1144 9071 +9073 2 25.888724651124406 -297.04839119960053 24.1816 0.1144 9072 +9074 2 31.836289950420444 -296.99980637150225 25.4824 0.1144 9066 +9075 2 32.049179100391896 -295.6880523598365 25.7414 0.1144 9074 +9076 2 32.559925657106184 -294.8551907714107 26.0205 0.1144 9075 +9077 2 33.23026513846928 -294.11098000454393 26.2921 0.1144 9076 +9078 2 33.74915382241625 -292.7583065667247 26.5509 0.1144 9077 +9079 2 33.35600044194676 -292.1228524533867 26.7883 0.1144 9078 +9080 2 32.44858084009726 -291.13244526949796 26.9599 0.1144 9079 +9081 2 32.15931001839448 -289.81293803044963 27.0896 0.1144 9080 +9082 2 32.30177631867838 -288.7164043659718 27.227 0.1144 9081 +9083 2 32.40534146821936 -287.5391772694252 27.3769 0.1144 9082 +9084 2 32.38847134841197 -286.28865165318183 27.5259 0.1144 9083 +9085 2 32.54381347780243 -285.1408417843945 27.6377 0.1144 9084 +9086 2 32.91777311118441 -284.16037152149823 27.6474 0.1144 9085 +9087 2 33.31362804152184 -283.07272341943326 27.5405 0.1144 9086 +9088 2 33.66646856522935 -281.7292738458687 27.446 0.1144 9087 +9089 2 33.746610026227884 -280.4549897642349 27.3877 0.1144 9088 +9090 2 33.37384788178756 -279.44664812731327 27.3708 0.1144 9089 +9091 2 33.46292403602159 -278.182299941478 27.3977 0.1144 9090 +9092 2 32.94472155681836 -277.0892450402515 27.4648 0.1144 9091 +9093 2 32.2530870666719 -275.87302920893103 28.1182 0.1144 9092 +9094 2 63.72598576815889 -268.6296141186948 29.9516 0.1144 8899 +9095 2 63.51870430974462 -269.5703049078656 30.7549 0.1144 9094 +9096 2 64.1040530655816 -271.2883776181637 31.0489 0.1144 9095 +9097 2 64.85550865830761 -272.22357029873297 31.4157 0.1144 9096 +9098 2 65.83461563219234 -272.1239491735645 31.9861 0.1144 9097 +9099 2 66.73821978426706 -272.8831262334732 32.7051 0.1144 9098 +9100 2 67.76159168201167 -272.90108411606997 33.4219 0.1144 9099 +9101 2 68.82075105640588 -273.5063072422631 34.1004 0.1144 9100 +9102 2 69.88620276251518 -272.6547869565438 34.7136 0.1144 9101 +9103 2 70.90439800864937 -272.63778955722177 35.2453 0.1144 9102 +9104 2 71.91690739649324 -271.52976864582126 35.6958 0.1144 9103 +9105 2 72.92942033737043 -271.6070529633747 36.0914 0.1144 9104 +9106 2 73.94122439649954 -270.3900309814566 36.4566 0.1144 9105 +9107 2 74.75508702250455 -270.4133151616471 36.7945 0.1144 9106 +9108 2 74.77554950225654 -269.26129461799525 37.0857 0.1144 9107 +9109 2 74.51435118824227 -267.82689786405507 37.3276 0.1144 9108 +9110 2 74.24827399617412 -266.3197527920865 37.5312 0.1144 9109 +9111 2 74.12148915650548 -266.69740619255845 37.7202 0.1144 9110 +9112 2 73.80986768628385 -267.6902765463143 37.8288 0.1144 9111 +9113 2 73.20916835343291 -269.1952249124567 37.9548 0.1144 9112 +9114 2 72.41246426766253 -270.15442883894633 38.0624 0.1144 9113 +9115 2 71.50379713340341 -270.42965970626506 38.1352 0.1144 9114 +9116 2 70.51085497885849 -271.6792819837036 38.18 0.1144 9115 +9117 2 69.49186716672146 -271.54533596720637 38.2035 0.1144 9116 +9118 2 68.49240276713905 -272.84093598725303 38.2144 0.1144 9117 +9119 2 67.57812744313635 -272.9191269350294 38.2088 0.1144 9118 +9120 2 66.68087860496298 -274.2093209247184 38.1965 0.1144 9119 +9121 2 66.1077465113107 -275.0807930999457 38.1783 0.1144 9120 +9122 2 65.32158673194286 -275.5889851310362 38.1525 0.1144 9121 +9123 2 64.39185772661435 -276.88339214934393 38.1181 0.1144 9122 +9124 2 63.668121087120525 -277.2119515895797 38.0741 0.1144 9123 +9125 2 62.711590168674164 -277.801327752623 38.0131 0.1144 9124 +9126 2 61.86289612315506 -279.4053913363536 37.8812 0.1144 9125 +9127 2 61.05969022228876 -280.5202719271312 37.749 0.1144 9126 +9128 2 60.095901435321025 -280.71493310445715 37.6289 0.1144 9127 +9129 2 59.09565403847706 -281.8088852793043 37.5144 0.1144 9128 +9130 2 58.18138226750772 -282.15273816517106 37.394 0.1144 9129 +9131 2 57.241094837629156 -283.1029517298875 37.2103 0.1144 9130 +9132 2 56.150376419969454 -283.1622950501111 37.0849 0.1144 9131 +9133 2 55.27491451123518 -284.05738642077404 36.8934 0.1144 9132 +9134 2 54.60197980255817 -285.11677748794017 36.591 0.1144 9133 +9135 2 53.76403928820723 -285.52815514107516 36.3084 0.1144 9134 +9136 2 52.888625251437034 -286.829998764881 36.0772 0.1144 9135 +9137 2 52.011652030124324 -287.31374316315566 35.8946 0.1144 9136 +9138 2 51.13552911160605 -288.1639531030442 35.7451 0.1144 9137 +9139 2 50.260182380368704 -289.1127673413578 35.6328 0.1144 9138 +9140 2 49.3840594618504 -289.5772838613275 35.5443 0.1144 9139 +9141 2 48.50793654333209 -290.9159068650138 35.4578 0.1144 9140 +9142 2 47.631743062333705 -291.0183369211366 35.3702 0.1144 9141 +9143 2 46.81714886406459 -292.37946157150617 35.2204 0.1144 9142 +9144 2 46.35009509885894 -293.6842010167217 35.0896 0.1144 9143 +9145 2 45.91630755291685 -294.53352499142864 34.9924 0.1144 9144 +9146 2 45.48096437546565 -295.26337209539344 34.9247 0.1144 9145 +9147 2 45.04710626704343 -296.66013608432627 34.8816 0.1144 9146 +9148 2 44.611692231026055 -298.26766963733724 34.8592 0.1144 9147 +9149 2 44.17790468508397 -299.88294724018124 34.8527 0.1144 9148 +9150 2 43.74327038938085 -301.38046900595054 34.8468 0.1144 9149 +9151 2 43.30792721192959 -302.7011357592379 34.839 0.1144 9150 +9152 2 42.87413966598751 -303.45334671009607 34.8286 0.1144 9151 +9153 2 42.43865506748999 -304.32712988584024 34.8149 0.1144 9152 +9154 2 42.00486752154791 -305.76136881304683 34.7908 0.1144 9153 +9155 2 41.569453781616595 -307.21297082466634 34.7589 0.1144 9154 +9156 2 41.13566623567451 -308.4365135234952 34.7206 0.1144 9155 +9157 2 40.700252199657065 -309.2398659913259 34.6777 0.1144 9156 +9158 2 40.26646465371498 -310.0907682649025 34.6321 0.1144 9157 +9159 2 39.731407094899986 -311.58477740980055 34.3042 0.1144 9158 +9160 2 71.09426862643899 -263.3741426646938 28.1182 0.1144 8890 +9161 2 72.22614160732729 -263.0768943055908 27.8173 0.1144 9160 +9162 2 73.34452157006933 -263.4507421321389 27.72 0.1144 9161 +9163 2 74.38221260367935 -263.73927067381516 27.5123 0.1144 9162 +9164 2 75.45270579563203 -263.8503265957876 27.2122 0.1144 9163 +9165 2 76.57575926078182 -264.22117659649064 26.9495 0.1144 9164 +9166 2 77.67398553762585 -263.61024669939513 26.7578 0.1144 9165 +9167 2 78.73271563875949 -263.6846436565422 26.6651 0.1144 9166 +9168 2 79.84025994636627 -263.07525650050053 26.6021 0.1144 9167 +9169 2 80.94807916746906 -263.69259289531624 26.5893 0.1144 9168 +9170 2 82.01908112443004 -262.2956846128425 26.6165 0.1144 9169 +9171 2 83.06967235527823 -261.50073929268444 26.6576 0.1144 9170 +9172 2 83.99700578931704 -260.93317984088355 26.7166 0.1144 9171 +9173 2 84.99773708485127 -260.55494096346763 26.9065 0.1144 9172 +9174 2 86.12764514923995 -260.5672542044724 27.0717 0.1144 9173 +9175 2 87.24188505784434 -260.02502239531947 27.1876 0.1144 9174 +9176 2 88.05405339005468 -259.3567382593207 27.1765 0.1144 9175 +9177 2 88.23525781066436 -259.134940823516 27.1517 0.1144 9176 +9178 2 88.88046648400177 -258.18411500594266 27.1169 0.1144 9177 +9179 2 89.59696518672943 -256.79123279284045 27.0769 0.1144 9178 +9180 2 89.93128182807635 -255.74415211058505 27.0538 0.1144 9179 +9181 2 89.83663338975815 -254.50732436203685 27.0499 0.1144 9180 +9182 2 89.75593372596718 -253.286258088389 27.097 0.1144 9181 +9183 2 90.0383551551208 -252.18572873249622 27.1481 0.1144 9182 +9184 2 90.46570108543318 -251.42317920271103 27.1629 0.1144 9183 +9185 2 90.82662303872068 -250.36525700898443 27.105 0.1144 9184 +9186 2 91.07671599079345 -249.17770998815695 26.9444 0.1144 9185 +9187 2 91.20864449856921 -247.94080383179664 26.7644 0.1144 9186 +9188 2 91.30574789862503 -246.64819752830948 26.6126 0.1144 9187 +9189 2 91.51213799226134 -245.26230418477104 26.4946 0.1144 9188 +9190 2 91.86341607447913 -243.87850467529358 26.4117 0.1144 9189 +9191 2 92.39276793723438 -242.9778418735313 26.3572 0.1144 9190 +9192 2 93.23813844012268 -242.61357828655878 26.3172 0.1144 9191 +9193 2 94.16382525023062 -241.28879144788948 26.2718 0.1144 9192 +9194 2 95.16409633396337 -241.38194299025514 26.2121 0.1144 9193 +9195 2 96.06791153400471 -239.9258449280643 26.1346 0.1144 9194 +9196 2 97.04316974596958 -240.14768011098317 25.9794 0.1144 9195 +9197 2 97.94126908903759 -238.7586481901065 25.7947 0.1144 9196 +9198 2 98.25376149409556 -237.49633010481216 25.6035 0.1144 9197 +9199 2 98.27725005805186 -236.28025895248769 25.3984 0.1144 9198 +9200 2 98.33231459869685 -235.08555662258266 25.1098 0.1144 9199 +9201 2 98.29839480435767 -233.87333764146584 24.8089 0.1144 9200 +9202 2 98.62237656616792 -233.03322929988624 24.3787 0.1144 9201 +9203 2 98.37350528811209 -231.76232108682268 23.8488 0.1144 9202 +9204 2 97.94909140824703 -230.99667963434018 23.3124 0.1144 9203 +9205 2 96.9748978039904 -230.7109772435341 22.8225 0.1144 9204 +9206 2 96.83553282633848 -230.45281193805633 22.4912 0.1144 9205 +9207 2 95.94103247013928 -229.585540330926 22.2975 0.1144 9206 +9208 2 95.02149931041694 -229.1804560846881 22.2275 0.1144 9207 +9209 2 95.1688414339078 -228.1511466613908 22.2444 0.1144 9208 +9210 2 94.9627843192007 -227.63667252659457 22.3652 0.1144 9209 +9211 2 94.36877454768009 -226.2432191193971 22.605 0.1144 9210 +9212 2 94.48741365056782 -225.26318717150087 22.8007 0.1144 9211 +9213 2 95.41797983691606 -225.27013269163302 22.9531 0.1144 9212 +9214 2 96.3939159355732 -223.93256110693787 23.0637 0.1144 9213 +9215 2 96.8927253077508 -223.24965245543194 23.1777 0.1144 9214 +9216 2 97.50996984091614 -222.92498173921857 23.2784 0.1144 9215 +9217 2 98.27518263062548 -221.43936014308264 23.3148 0.1144 9216 +9218 2 98.32716690330791 -220.26829116472263 23.2828 0.1144 9217 +9219 2 98.33525596969665 -219.08059214855982 23.2341 0.1144 9218 +9220 2 98.22851440344724 -218.01392888598045 23.1923 0.1144 9219 +9221 2 97.94067021369524 -217.16816937797165 23.16 0.1144 9220 +9222 2 97.504932085013 -216.22513008843237 23.1463 0.1144 9221 +9223 2 97.12889682656646 -214.68111909789693 23.1592 0.1144 9222 +9224 2 97.08855939957257 -213.41478130500454 23.1921 0.1144 9223 +9225 2 97.13219883415121 -212.22567754422067 23.2331 0.1144 9224 +9226 2 97.0603431672602 -210.93478960452683 23.34 0.1144 9225 +9227 2 97.35896041511783 -210.09272666089396 23.4456 0.1144 9226 +9228 2 98.3625888518129 -209.7485700216198 23.6191 0.1144 9227 +9229 2 95.00367782846573 -227.9130714886793 21.9321 0.1144 9209 +9230 2 93.9077075582388 -227.73143762645128 21.2408 0.1144 9229 +9231 2 92.77942973905911 -227.87124916936497 20.9739 0.1144 9230 +9232 2 91.80171185070404 -228.0375908212685 20.5326 0.1144 9231 +9233 2 90.69578692710596 -227.92602432053764 20.1281 0.1144 9232 +9234 2 89.57804660434829 -228.28597306028627 19.7382 0.1144 9233 +9235 2 88.53634979902455 -228.39161444318782 19.4374 0.1144 9234 +9236 2 87.54334033894678 -229.3323546816971 19.2306 0.1144 9235 +9237 2 87.26973921980428 -230.4772941491898 19.0984 0.1144 9236 +9238 2 87.24377741601154 -231.69134021962145 19.0227 0.1144 9237 +9239 2 87.16689870600537 -232.9016605233265 18.9663 0.1144 9238 +9240 2 87.13852090098136 -234.1109651816668 18.8789 0.1144 9239 +9241 2 87.02690837176307 -235.3172275030833 18.7679 0.1144 9240 +9242 2 86.89168356127867 -236.52757362378128 18.681 0.1144 9241 +9243 2 87.07125015638552 -237.72857829350232 18.5578 0.1144 9242 +9244 2 88.1106108017839 -259.7813839205311 26.9934 0.1144 9176 +9245 2 88.56336129814798 -261.1114660299255 26.7796 0.1144 9244 +9246 2 89.29400550865408 -261.5806033268565 26.7051 0.1144 9245 +9247 2 89.8008910472071 -262.68450398814247 26.5406 0.1144 9246 +9248 2 89.92699041988956 -263.95033483397776 26.3658 0.1144 9247 +9249 2 89.6802007826063 -265.0557228593136 26.1954 0.1144 9248 +9250 2 89.64044524529363 -266.2717349687171 26.0301 0.1144 9249 +9251 2 89.74293113823684 -267.4116369061988 25.7076 0.1144 9250 +9252 2 89.71211009205933 -268.6085707665717 25.3722 0.1144 9251 +9253 2 89.76138250837485 -269.85896194293304 25.1223 0.1144 9252 +9254 2 89.67891959160005 -271.06225942433446 24.9412 0.1144 9253 +9255 2 89.47416250193349 -272.2005683593684 24.8214 0.1144 9254 +9256 2 89.32443862921437 -273.3662792289857 24.7439 0.1144 9255 +9257 2 72.9737919793248 -220.220306130952 30.3937 0.1144 8797 +9258 2 72.3512968620919 -218.9522184117987 30.5418 0.1144 9257 +9259 2 71.72972261013346 -218.5762327246943 30.6065 0.1144 9258 +9260 2 71.10722749290056 -217.28309176237985 30.6835 0.1144 9259 +9261 2 70.48480293814777 -215.92431392661587 30.7692 0.1144 9260 +9262 2 70.19782968323207 -214.9273978802961 30.7944 0.1144 9261 +9263 2 69.83642859627244 -214.20886614182376 30.8658 0.1144 9262 +9264 2 69.34411248033395 -213.07209543294982 30.9543 0.1144 9263 +9265 2 69.13140796523513 -211.70756740405596 31.0433 0.1144 9264 +9266 2 69.46403712276795 -210.75158860935395 31.1422 0.1144 9265 +9267 2 69.90023060301354 -209.66116577227754 31.2595 0.1144 9266 +9268 2 70.40047617588326 -208.07610777224608 31.4023 0.1144 9267 +9269 2 70.01811832842343 -207.38861274424937 31.6123 0.1144 9268 +9270 2 69.31979904196484 -206.44122676768364 31.9169 0.1144 9269 +9271 2 68.61103325150594 -205.14861492342155 32.289 0.1144 9270 +9272 2 67.90219660248081 -204.7469229155753 32.6964 0.1144 9271 +9273 2 67.29762514946293 -203.56933061164327 33.1013 0.1144 9272 +9274 2 67.50796999893142 -202.42991885005634 33.4004 0.1144 9273 +9275 2 67.74908739788543 -201.3114232784639 33.6025 0.1144 9274 +9276 2 68.10687084823245 -200.08232709432878 33.7274 0.1144 9275 +9277 2 68.46536318032753 -198.6154969549871 33.7999 0.1144 9276 +9278 2 68.82222902234727 -197.35911315013036 33.845 0.1144 9277 +9279 2 69.15319467904091 -196.26138891995816 33.887 0.1144 9278 +9280 2 69.4122120553211 -195.34146654032372 33.9503 0.1144 9279 +9281 2 69.67200887582948 -194.30036950723454 34.0278 0.1144 9280 +9282 2 69.93173158082448 -193.21153595136377 34.1121 0.1144 9281 +9283 2 70.19067839462454 -191.97556158056267 34.3042 0.1144 9282 +9284 2 40.4505452768248 -235.3389799296653 28.6804 0.1144 8731 +9285 2 41.28932446245657 -235.91569790128835 28.5522 0.1144 9284 +9286 2 41.7840664444538 -237.21593641800692 28.5104 0.1144 9285 +9287 2 41.47008621160597 -238.1744680134033 28.39 0.1144 9286 +9288 2 41.46031696957009 -239.41752228955684 28.2926 0.1144 9287 +9289 2 41.50153193928051 -240.66677855001188 28.2187 0.1144 9288 +9290 2 41.4950189343426 -241.91300495115618 28.166 0.1144 9289 +9291 2 41.68426946612988 -243.2914517767864 28.1333 0.1144 9290 +9292 2 41.73035976086086 -244.5980565753291 28.1182 0.1144 9291 +9293 2 41.94625972141918 -245.8820445586207 28.1182 0.1144 9292 +9294 2 8.723735478627908 -253.1944215022615 21.3126 0.1144 8680 +9295 2 8.604870785764312 -251.90791841632694 21.1814 0.1144 9294 +9296 2 8.363195386118253 -250.66627048682062 21.1144 0.1144 9295 +9297 2 8.175571344406329 -249.46571081500718 21.079 0.1144 9296 +9298 2 7.960450828076205 -248.26916801513437 21.0751 0.1144 9297 +9299 2 7.747749866010707 -247.07573887006885 21.1334 0.1144 9298 +9300 2 7.528617651329419 -245.88066466872635 21.2479 0.1144 9299 +9301 2 7.269113132923362 -244.68643112353985 21.3788 0.1144 9300 +9302 2 6.944038103248179 -243.5184471709839 21.5349 0.1144 9301 +9303 2 6.639174735833773 -242.38732624378932 21.6851 0.1144 9302 +9304 2 6.446745635495297 -241.31891572436638 21.7923 0.1144 9303 +9305 2 6.13709082941546 -240.09796070731767 21.86 0.1144 9304 +9306 2 5.408933680807177 -238.8816092818929 21.8972 0.1144 9305 +9307 2 4.898931065628151 -237.88107342949456 21.9137 0.1144 9306 +9308 2 4.641828928492316 -236.72912267902 21.9142 0.1144 9307 +9309 2 4.056621795801931 -235.93154530692465 21.9071 0.1144 9308 +9310 2 3.2726759689929708 -234.6422412550732 21.8973 0.1144 9309 +9311 2 2.6025343007921116 -233.75355361474317 21.8835 0.1144 9310 +9312 2 2.065705789520244 -232.938581681252 21.8635 0.1144 9311 +9313 2 1.5256990057832454 -231.6286782796849 21.8356 0.1144 9312 +9314 2 0.9467746925815348 -230.2836091917156 21.7987 0.1144 9313 +9315 2 0.38416422832740693 -229.543737056229 21.7518 0.1144 9314 +9316 2 -0.20117801361513443 -228.62838180659924 21.6711 0.1144 9315 +9317 2 -0.15482186243152185 -227.46205329736733 21.5412 0.1144 9316 +9318 2 0.19483328274427336 -226.24923748333276 21.4097 0.1144 9317 +9319 2 0.3145877370949144 -224.93775474738197 21.2919 0.1144 9318 +9320 2 0.26447538099886003 -223.74087565082374 21.1577 0.1144 9319 +9321 2 0.14804987806904535 -222.51653841128 21.0004 0.1144 9320 +9322 2 0.16673693643213028 -221.26911276295 20.8609 0.1144 9321 +9323 2 0.3511949244495156 -219.91608842518903 20.7428 0.1144 9322 +9324 2 0.6174265506070213 -218.40232298863415 20.6338 0.1144 9323 +9325 2 1.3298868132477235 -217.45204712342826 20.5291 0.1144 9324 +9326 2 2.2791492980586234 -217.13284383806229 20.3923 0.1144 9325 +9327 2 3.1725217492332476 -216.06578637253406 20.1583 0.1144 9326 +9328 2 4.204477177171121 -215.89105430704427 19.9559 0.1144 9327 +9329 2 5.326913894952753 -215.4536590293614 19.765 0.1144 9328 +9330 2 6.465095938879031 -215.6598308484326 19.6018 0.1144 9329 +9331 2 7.608959789875886 -215.538413768 19.5135 0.1144 9330 +9332 2 8.54764747141484 -215.00435512354784 19.5002 0.1144 9331 +9333 2 9.534917683716607 -214.4043257230485 19.5778 0.1144 9332 +9334 2 10.631247049880653 -214.126785821888 19.7312 0.1144 9333 +9335 2 10.605991086500772 -213.2025152181925 19.9897 0.1144 9334 +9336 2 10.827764298982835 -212.06467434732406 20.2492 0.1144 9335 +9337 2 10.998432106513555 -210.8123216850169 20.4458 0.1144 9336 +9338 2 11.093203687779202 -209.5599550858958 20.5723 0.1144 9337 +9339 2 10.937897760134224 -208.37656093677185 20.6316 0.1144 9338 +9340 2 10.490016074896296 -207.17886843737207 20.6292 0.1144 9339 +9341 2 9.975787987194302 -205.94026516144106 20.5741 0.1144 9340 +9342 2 9.599047400033013 -204.83698289241966 20.4841 0.1144 9341 +9343 2 9.291693915873866 -203.72258749092688 20.3675 0.1144 9342 +9344 2 8.64106835206063 -202.73565515456684 20.198 0.1144 9343 +9345 2 8.053523586972398 -201.60375935663637 19.8755 0.1144 9344 +9346 2 7.680791939401464 -200.3440729268668 19.5268 0.1144 9345 +9347 2 7.994167902883996 -199.29849310453014 19.164 0.1144 9346 +9348 2 8.631204154219702 -198.48251299587403 18.8767 0.1144 9347 +9349 2 9.271486279639461 -197.448609638454 18.6676 0.1144 9348 +9350 2 9.920760632985942 -196.22738132528326 18.5257 0.1144 9349 +9351 2 10.683435433986437 -195.57581011803327 18.4348 0.1144 9350 +9352 2 11.515754138632754 -194.54886228460015 18.3609 0.1144 9351 +9353 2 12.477120114388676 -194.0159639904697 18.2855 0.1144 9352 +9354 2 13.558660065958115 -193.44828071901162 18.1843 0.1144 9353 +9355 2 14.64793147824022 -193.95555241167688 17.9872 0.1144 9354 +9356 2 15.772031053089226 -193.81142445828186 17.7722 0.1144 9355 +9357 2 16.913343793602582 -194.12823517178379 17.5529 0.1144 9356 +9358 2 18.03673237171453 -193.82240664998017 17.271 0.1144 9357 +9359 2 19.074641023700504 -193.5380409447871 16.8952 0.1144 9358 +9360 2 20.111908099471215 -193.1421116960099 16.4678 0.1144 9359 +9361 2 21.118617245800284 -192.59562688232208 15.7461 0.1144 9360 +9362 2 11.726272269757834 -213.90637377881598 19.6826 0.1144 9334 +9363 2 12.716919912362485 -213.48012653230762 19.7703 0.1144 9362 +9364 2 13.62225018011586 -212.53360589496435 19.8056 0.1144 9363 +9365 2 14.32987488726063 -211.74406712555992 19.8571 0.1144 9364 +9366 2 14.533005985038244 -210.60409723811327 19.9273 0.1144 9365 +9367 2 14.397205798767061 -209.34732624188032 20.0168 0.1144 9366 +9368 2 14.166746280421686 -208.07751269368586 20.124 0.1144 9367 +9369 2 13.942162115477359 -206.916515892789 20.3752 0.1144 9368 +9370 2 14.082391842712875 -205.81912131067037 20.6929 0.1144 9369 +9371 2 14.598729416176385 -204.86099772407061 20.9577 0.1144 9370 +9372 2 15.086028301373315 -203.61590622332537 21.157 0.1144 9371 +9373 2 15.111966916463638 -202.40160394784812 21.2962 0.1144 9372 +9374 2 15.568490197328076 -201.18186505596563 21.3817 0.1144 9373 +9375 2 16.23150430253666 -200.3535287692656 21.4206 0.1144 9374 +9376 2 17.178313977452696 -199.60100675825578 21.4475 0.1144 9375 +9377 2 18.295884938955172 -199.5518099415185 21.48 0.1144 9376 +9378 2 19.439684741366346 -199.29193683234342 21.5186 0.1144 9377 +9379 2 20.58179054606898 -199.6203764590017 21.5616 0.1144 9378 +9380 2 21.5318259612136 -198.51579262515222 21.6255 0.1144 9379 +9381 2 22.6371986842157 -198.7484740221921 21.9321 0.1144 9380 +9382 2 14.592669576658558 -289.0619283853811 19.6826 0.1144 8642 +9383 2 15.710202733124689 -289.38380147931446 19.3655 0.1144 9382 +9384 2 16.830934888083625 -288.5671076352608 19.2502 0.1144 9383 +9385 2 17.91474777969338 -288.9979207960483 18.9973 0.1144 9384 +9386 2 18.941881272096424 -287.94869297294997 18.7453 0.1144 9385 +9387 2 19.62517780414614 -287.4096964627647 18.528 0.1144 9386 +9388 2 20.653121237646694 -286.53451222970864 18.2968 0.1144 9387 +9389 2 21.693530073305155 -286.57919185178883 18.0157 0.1144 9388 +9390 2 22.783387623056242 -285.7538504990322 17.8254 0.1144 9389 +9391 2 23.812272849959335 -285.8658079448781 17.7214 0.1144 9390 +9392 2 24.936908392267902 -285.31115738336075 17.6784 0.1144 9391 +9393 2 25.997544587666212 -284.9954933473336 17.6883 0.1144 9392 +9394 2 27.045237850525403 -286.20365454277555 17.7462 0.1144 9393 +9395 2 28.02672613196691 -286.06496212779683 17.8944 0.1144 9394 +9396 2 28.904800018382012 -287.3118398598389 18.1403 0.1144 9395 +9397 2 29.92489548865833 -286.83853076039543 18.3462 0.1144 9396 +9398 2 31.030207716108034 -287.0901417010495 18.5166 0.1144 9397 +9399 2 32.0331178478991 -286.0988249498719 18.6576 0.1144 9398 +9400 2 33.02862097775491 -285.91068492835075 18.7748 0.1144 9399 +9401 2 34.12834564750303 -285.3019866956703 18.9067 0.1144 9400 +9402 2 35.259835586950146 -285.6407442105608 19.0605 0.1144 9401 +9403 2 36.39359635144869 -284.99622261625296 19.2148 0.1144 9402 +9404 2 37.4663870536736 -285.10600463702036 19.4294 0.1144 9403 +9405 2 38.131392046804216 -285.61991564754805 19.6295 0.1144 9404 +9406 2 38.1910194765119 -286.77482615799113 19.804 0.1144 9405 +9407 2 38.64996711536419 -287.7318474723032 19.9636 0.1144 9406 +9408 2 39.58641789521302 -288.7862778574802 20.1692 0.1144 9407 +9409 2 40.33957429562807 -289.19391721494424 20.386 0.1144 9408 +9410 2 40.81661545813702 -290.4734902552445 20.6202 0.1144 9409 +9411 2 41.42608296220316 -291.9888492113963 20.8798 0.1144 9410 +9412 2 41.79873999607429 -292.89869452268994 21.217 0.1144 9411 +9413 2 42.64141925559357 -293.2394488101143 21.5418 0.1144 9412 +9414 2 43.726184209633914 -293.7401231228859 21.8678 0.1144 9413 +9415 2 44.86054405031969 -292.81666757829754 22.1123 0.1144 9414 +9416 2 45.958970241803215 -293.14465853292944 22.2551 0.1144 9415 +9417 2 47.043075125917554 -292.6884279705029 22.2981 0.1144 9416 +9418 2 47.914382918881515 -291.92822141163344 22.3323 0.1144 9417 +9419 2 48.95361309224906 -291.51354256718446 22.3866 0.1144 9418 +9420 2 50.056417329672925 -291.1575561973727 22.4729 0.1144 9419 +9421 2 50.359801060807484 -291.789336327626 22.66 0.1144 9420 +9422 2 50.99670680451387 -292.6006351280232 22.9855 0.1144 9421 +9423 2 51.57944019918141 -293.27722713711745 23.3927 0.1144 9422 +9424 2 51.832502899857495 -294.52283534132994 23.7963 0.1144 9423 +9425 2 51.6251813758325 -295.5856695814942 24.0979 0.1144 9424 +9426 2 51.003477316531516 -296.9609158201159 24.2524 0.1144 9425 +9427 2 50.96608970638573 -298.13132842459993 24.2961 0.1144 9426 +9428 2 51.59899402076905 -298.7668825668597 24.2864 0.1144 9427 +9429 2 52.525717245293414 -300.10428843833023 24.2504 0.1144 9428 +9430 2 53.540330324952194 -300.0880721337994 24.2381 0.1144 9429 +9431 2 54.39764701290558 -301.30838031548393 24.2387 0.1144 9430 +9432 2 54.92306679683301 -302.3556746386774 24.1978 0.1144 9431 +9433 2 55.19882792558161 -303.3861262077285 24.1572 0.1144 9432 +9434 2 55.82844885693058 -304.12761590285976 24.1088 0.1144 9433 +9435 2 56.743892649754976 -305.45650926351396 24.0496 0.1144 9434 +9436 2 57.40993438594381 -305.97029312572556 23.9748 0.1144 9435 +9437 2 57.78271696032574 -306.9522231431752 23.8849 0.1144 9436 +9438 2 58.05678103651886 -308.3682713320739 23.7667 0.1144 9437 +9439 2 58.39555851120616 -309.8096004963168 23.582 0.1144 9438 +9440 2 58.61305091193711 -311.1985774216667 23.3665 0.1144 9439 +9441 2 59.08658534849864 -311.98079964163753 23.0376 0.1144 9440 +9442 2 59.57479472244451 -312.7005977506035 22.7053 0.1144 9441 +9443 2 60.17702428974451 -313.95084199789125 22.3576 0.1144 9442 +9444 2 61.26927065731962 -314.0951334313385 22.0766 0.1144 9443 +9445 2 62.28788211145462 -313.6190892221732 21.8032 0.1144 9444 +9446 2 63.15987658953897 -314.3891021142254 21.592 0.1144 9445 +9447 2 62.08820394102284 -314.2744938114238 21.4526 0.1144 9446 +9448 2 60.953928780964645 -315.22606590149024 21.3558 0.1144 9447 +9449 2 59.81352733698442 -314.7636021705082 21.285 0.1144 9448 +9450 2 58.97609279141008 -316.00617449580864 21.2217 0.1144 9449 +9451 2 58.31385487348254 -317.0201772673928 21.1614 0.1144 9450 +9452 2 57.84686841380977 -317.79455924993533 21.0917 0.1144 9451 +9453 2 57.65997754765279 -318.8705940170658 20.9631 0.1144 9452 +9454 2 57.437316725526436 -320.11525754467266 20.7429 0.1144 9453 +9455 2 57.583627464383575 -321.2369717773415 20.5506 0.1144 9454 +9456 2 57.67016092140556 -322.5687816680175 20.4015 0.1144 9455 +9457 2 57.547167402951395 -323.71549377069437 20.2917 0.1144 9456 +9458 2 57.476723498594346 -324.99329018404825 20.2164 0.1144 9457 +9459 2 57.572164705015766 -326.25539866194543 20.1684 0.1144 9458 +9460 2 57.88749855940539 -327.7534070816839 20.1331 0.1144 9459 +9461 2 58.008809750369615 -329.1237508439318 20.0892 0.1144 9460 +9462 2 58.50761791056238 -330.6639462403848 20.0316 0.1144 9461 +9463 2 59.02347219225358 -331.3102513197848 19.9581 0.1144 9462 +9464 2 59.701543303874026 -332.0460017017783 19.7871 0.1144 9463 +9465 2 61.03640763481103 -331.97917603647716 19.6826 0.1144 9464 +9466 2 62.04077489542226 -330.35884715129083 19.6826 0.1144 9465 +9467 2 62.77355063843403 -329.0723980417514 19.6826 0.1144 9466 +9468 2 63.43975012217431 -328.78313362348007 19.6826 0.1144 9467 +9469 2 64.27292238656217 -327.55294689737536 19.6826 0.1144 9468 +9470 2 59.3982403151771 -332.35539428124275 19.6243 0.1144 9464 +9471 2 58.76191975557001 -333.9773155862464 19.4637 0.1144 9470 +9472 2 58.40667635240592 -335.4436788325998 19.2502 0.1144 9471 +9473 2 58.06025020440592 -336.2951074431554 19.0183 0.1144 9472 +9474 2 58.09570825515954 -337.55294568554564 18.8004 0.1144 9473 +9475 2 58.490230587303145 -338.90272239390765 18.5397 0.1144 9474 +9476 2 59.31684884128444 -338.86665133455716 18.1796 0.1144 9475 +9477 2 59.72265436026162 -340.2722334877089 17.8384 0.1144 9476 +9478 2 60.063078458879815 -341.8433389423253 17.5298 0.1144 9477 +9479 2 60.142113625458705 -343.08742945872814 17.0894 0.1144 9478 +9480 2 60.10627483684154 -344.2275256121142 16.5641 0.1144 9479 +9481 2 59.878083695618656 -345.22511815892204 16.1246 0.1144 9480 +9482 2 60.08914158678659 -346.6943004864599 15.7472 0.1144 9481 +9483 2 60.508774593100384 -347.9016133312244 15.4777 0.1144 9482 +9484 2 60.70120369343884 -348.9227083886687 15.3067 0.1144 9483 +9485 2 61.24770903532451 -349.4252956316365 15.2242 0.1144 9484 +9486 2 61.74088581707126 -350.0156474543347 15.1838 0.1144 9485 +9487 2 64.42924038443 -315.1000949580439 21.2454 0.1144 9446 +9488 2 65.5628313460018 -315.4627513965579 21.1951 0.1144 9487 +9489 2 66.69999322769206 -314.91261280383634 21.1266 0.1144 9488 +9490 2 67.74194298945517 -315.92982904612757 21.0346 0.1144 9489 +9491 2 68.19385354603875 -316.96725754586413 20.9047 0.1144 9490 +9492 2 68.94050408013817 -317.1504941856994 20.6716 0.1144 9491 +9493 2 69.97776090592484 -318.53921977585435 20.4272 0.1144 9492 +9494 2 71.00668275843509 -318.0844765546187 20.1287 0.1144 9493 +9495 2 72.11104949386356 -319.0071070621009 19.7295 0.1144 9494 +9496 2 72.83232474679588 -318.94538504765774 19.2462 0.1144 9495 +9497 2 72.91631390331493 -320.038675993066 18.7521 0.1144 9496 +9498 2 72.95742376245616 -321.2066652660836 18.2311 0.1144 9497 +9499 2 73.33526946460789 -321.16578023558094 17.637 0.1144 9498 +9500 2 73.32408165005751 -319.91240060403203 17.1718 0.1144 9499 +9501 2 72.96110805468038 -318.4573421695829 16.3086 0.1144 9500 +9502 2 51.27054873073474 -290.5727096567599 22.352 0.1144 9420 +9503 2 52.35461610589881 -290.43017956142063 22.5211 0.1144 9502 +9504 2 53.39153133738452 -289.696024649949 22.6811 0.1144 9503 +9505 2 54.366823801352396 -289.33958493321524 22.911 0.1144 9504 +9506 2 55.42122573046889 -288.9407718137802 23.1872 0.1144 9505 +9507 2 56.56001785736819 -289.03276798340875 23.4045 0.1144 9506 +9508 2 57.702320263248154 -288.840090566247 23.5686 0.1144 9507 +9509 2 58.77970166267092 -289.50550593597603 23.6925 0.1144 9508 +9510 2 59.62982453068861 -290.0672255737561 23.7867 0.1144 9509 +9511 2 60.585880790544316 -290.53974146704064 23.9122 0.1144 9510 +9512 2 61.65298593056501 -290.1424628423952 24.0335 0.1144 9511 +9513 2 62.77543301136052 -288.9000695919889 24.1385 0.1144 9512 +9514 2 63.79966853577452 -289.94079512951157 24.231 0.1144 9513 +9515 2 64.91127270978274 -289.89557612833306 24.3158 0.1144 9514 +9516 2 66.02551942836762 -289.97391644055733 24.3968 0.1144 9515 +9517 2 67.14380508522589 -289.179623715656 24.4776 0.1144 9516 +9518 2 68.24263163673037 -290.0720103837808 24.6383 0.1144 9517 +9519 2 69.37378291018204 -289.4376082733349 24.8031 0.1144 9518 +9520 2 70.49040788147678 -290.2697870602086 25.0289 0.1144 9519 +9521 2 71.62154929010102 -289.81649331567667 25.2247 0.1144 9520 +9522 2 72.68295199100922 -290.0217634405107 25.4389 0.1144 9521 +9523 2 73.77680436220317 -289.1533660642601 25.6185 0.1144 9522 +9524 2 74.78762656231903 -289.04119562259046 25.7386 0.1144 9523 +9525 2 75.92138732681755 -288.52781409894203 25.8686 0.1144 9524 +9526 2 4.120414509077698 -295.3262843229704 24.2027 0.1144 8100 +9527 2 4.642013029622618 -295.91774983667733 24.9308 0.1144 9526 +9528 2 5.464396242339653 -296.3482620660389 25.138 0.1144 9527 +9529 2 6.293497803085131 -297.71326593581904 25.2911 0.1144 9528 +9530 2 7.100860306355656 -298.1142107324112 25.4648 0.1144 9529 +9531 2 7.909852556648744 -298.5100102963284 25.6479 0.1144 9530 +9532 2 8.714026424440334 -299.29340942451927 25.8564 0.1144 9531 +9533 2 9.512460748369797 -300.5797925310365 26.0993 0.1144 9532 +9534 2 10.319043807412122 -300.950439002274 26.3453 0.1144 9533 +9535 2 11.1296658047278 -302.1631389516115 26.5558 0.1144 9534 +9536 2 11.924911493178307 -303.01895187268684 26.7948 0.1144 9535 +9537 2 12.730600132595761 -303.5830303449804 27.0614 0.1144 9536 +9538 2 13.711394148623135 -304.69373170689806 27.2814 0.1144 9537 +9539 2 14.589003128245146 -304.8394222283353 27.4426 0.1144 9538 +9540 2 15.220274438658635 -306.30169194747117 27.5131 0.1144 9539 +9541 2 16.126087980374415 -307.03181193619906 27.5979 0.1144 9540 +9542 2 17.09943107973637 -307.44501225794306 27.7897 0.1144 9541 +9543 2 18.205013784305663 -307.8667766625302 27.9404 0.1144 9542 +9544 2 19.284940865760802 -307.4389459265369 28.0574 0.1144 9543 +9545 2 20.37955935730801 -307.03166214119125 28.1453 0.1144 9544 +9546 2 21.47573673731158 -306.84987764028364 28.2055 0.1144 9545 +9547 2 22.520790340896234 -306.05411417433703 28.2313 0.1144 9546 +9548 2 23.61455527270183 -306.0778705150557 28.2307 0.1144 9547 +9549 2 24.42421611307278 -304.96390839652383 28.2282 0.1144 9548 +9550 2 24.675098374201184 -303.47021448561037 28.2246 0.1144 9549 +9551 2 24.545919231742594 -302.47033040130196 28.2195 0.1144 9550 +9552 2 24.435155900214234 -301.35579501527 28.2125 0.1144 9551 +9553 2 24.705497027125176 -299.8488585952366 28.2027 0.1144 9552 +9554 2 25.03316282807684 -298.3050705805672 28.189 0.1144 9553 +9555 2 25.04859394542808 -297.04119341891015 28.17 0.1144 9554 +9556 2 24.898224134442103 -295.9665046208439 28.1436 0.1144 9555 +9557 2 24.71462866798963 -294.93286085799934 28.1056 0.1144 9556 +9558 2 24.550471933464202 -293.8748587716885 28.0515 0.1144 9557 +9559 2 24.43085098507489 -292.762280180259 27.9797 0.1144 9558 +9560 2 24.39685026524178 -291.55126362089726 27.8881 0.1144 9559 +9561 2 24.428494374291482 -290.2821249799758 27.7431 0.1144 9560 +9562 2 24.46174148862805 -289.0395867069883 27.4901 0.1144 9561 +9563 2 24.49096959644647 -287.7676208364661 27.2177 0.1144 9562 +9564 2 24.49585966434237 -286.5153117505708 26.9702 0.1144 9563 +9565 2 24.443274068409913 -285.33150906298926 26.7201 0.1144 9564 +9566 2 24.374603483964528 -284.1668598519795 26.412 0.1144 9565 +9567 2 24.318866559403055 -282.96405569559187 26.0785 0.1144 9566 +9568 2 24.292217957460206 -281.72381731701284 25.7818 0.1144 9567 +9569 2 24.25418510933431 -280.4878688217523 25.4932 0.1144 9568 +9570 2 24.183074836768746 -279.2733985763654 25.1769 0.1144 9569 +9571 2 23.80166203965869 -278.1079692598561 24.7736 0.1144 9570 +9572 2 23.242511129674597 -276.67909871489763 24.2436 0.1144 9571 +9573 2 23.15385302015407 -275.53529718217385 23.5852 0.1144 9572 +9574 2 22.93884768132092 -274.30697851972894 22.9613 0.1144 9573 +9575 2 22.247870944011275 -273.981276734404 22.3893 0.1144 9574 +9576 2 21.48419392408247 -272.7286263843635 21.8545 0.1144 9575 +9577 2 20.939460948738812 -271.53610844429545 21.3104 0.1144 9576 +9578 2 19.97174241784233 -271.6079997189774 20.8998 0.1144 9577 +9579 2 18.908777956687228 -270.57459686218397 20.6241 0.1144 9578 +9580 2 17.969873868757144 -270.37879633988683 20.4398 0.1144 9579 +9581 2 17.624658829659925 -269.07872762674964 20.3266 0.1144 9580 +9582 2 17.750142464858822 -267.9719811056037 20.2655 0.1144 9581 +9583 2 17.578721347917607 -266.54276206037 20.23 0.1144 9582 +9584 2 17.488159019550064 -265.2405635229334 20.1874 0.1144 9583 +9585 2 17.22448746569935 -263.94279425165223 20.1312 0.1144 9584 +9586 2 17.015869060551207 -262.65082354740304 20.0621 0.1144 9585 +9587 2 16.882464741655856 -261.3729739138232 19.9818 0.1144 9586 +9588 2 16.715326241856857 -260.36223464759905 19.7203 0.1144 9587 +9589 2 16.37249976196848 -259.36954857068577 19.5099 0.1144 9588 +9590 2 15.909275521681938 -258.33416459953037 19.3597 0.1144 9589 +9591 2 15.023551358663305 -257.2172355625577 20.0352 0.1144 9590 +9592 2 13.96266393665788 -257.2618641745926 20.344 0.1144 9591 +9593 2 12.828277152136017 -256.8990629821254 20.5999 0.1144 9592 +9594 2 11.737088399232253 -256.76265718754127 20.8113 0.1144 9593 +9595 2 10.710314886109419 -256.0227024978788 20.9879 0.1144 9594 +9596 2 9.644145114667353 -255.74148176744563 21.1416 0.1144 9595 +9597 2 8.589987047476072 -255.08452206977267 21.2963 0.1144 9596 +9598 2 7.705977312107603 -254.41932939243526 21.4868 0.1144 9597 +9599 2 6.916450737577595 -253.69347785702683 21.7708 0.1144 9598 +9600 2 6.155945476219472 -253.01296646196477 22.1334 0.1144 9599 +9601 2 5.228707414463852 -252.1591079463932 22.5883 0.1144 9600 +9602 2 4.172885461276767 -252.89273260980673 23.6191 0.1144 9601 +9603 2 16.24926060875357 -257.5594644438214 19.2499 0.1144 9590 +9604 2 16.723535137730952 -256.21327228241256 19.176 0.1144 9603 +9605 2 16.701085064475002 -255.083466321618 19.1321 0.1144 9604 +9606 2 16.03749939512819 -254.32113288587084 19.1123 0.1144 9605 +9607 2 15.565529956716837 -253.10908385860296 19.0801 0.1144 9606 +9608 2 15.441738715935657 -251.83895234220608 19.0308 0.1144 9607 +9609 2 15.119940353300024 -250.6046172187631 18.9623 0.1144 9608 +9610 2 14.433727316547287 -249.75099141864592 18.8693 0.1144 9609 +9611 2 13.461901841557832 -249.11453246871775 18.7479 0.1144 9610 +9612 2 12.4182848238219 -248.61193438328695 18.5501 0.1144 9611 +9613 2 11.38270561702194 -248.21885221605208 18.2485 0.1144 9612 +9614 2 10.36808247043539 -247.56683577589433 17.9312 0.1144 9613 +9615 2 9.338607975657538 -247.41663343355418 17.5204 0.1144 9614 +9616 2 8.278232133936111 -246.86832582730653 17.1171 0.1144 9615 +9617 2 7.195883622798622 -246.60313374705038 16.7544 0.1144 9616 +9618 2 6.262011395455751 -246.27864849379392 16.3488 0.1144 9617 +9619 2 5.339296612335335 -245.23345116569863 16.01 0.1144 9618 +9620 2 4.319194073463262 -245.1204898547399 15.6905 0.1144 9619 +9621 2 3.3502960534477033 -245.23068779860682 15.4606 0.1144 9620 +9622 2 2.3345036867701445 -246.2827608427125 15.1838 0.1144 9621 +9623 2 24.988399451856964 -303.6730738308681 28.2839 0.1144 9550 +9624 2 25.191186620434515 -304.5920000149987 28.9246 0.1144 9623 +9625 2 25.95571039012441 -305.05219687344703 29.1645 0.1144 9624 +9626 2 26.97753366844077 -306.2643858388949 29.4336 0.1144 9625 +9627 2 26.26999402708021 -306.04483191027117 29.6817 0.1144 9626 +9628 2 25.148458741004248 -306.4040709455942 29.4232 0.1144 9627 +9629 2 24.02607640908112 -307.758718610081 29.3121 0.1144 9628 +9630 2 22.903764935724176 -307.2799589819329 29.1838 0.1144 9629 +9631 2 21.78138260380105 -308.3300666528437 29.0483 0.1144 9630 +9632 2 20.728749027477726 -307.3261067038412 28.9176 0.1144 9631 +9633 2 20.240539855632164 -306.77279658126116 28.8165 0.1144 9632 +9634 2 19.99149190815416 -305.71471726844976 28.7504 0.1144 9633 +9635 2 19.741597210915117 -304.6536845628217 28.7115 0.1144 9634 +9636 2 19.44081640041805 -303.13081404056004 28.6924 0.1144 9635 +9637 2 19.10279468307013 -301.6665336115201 28.686 0.1144 9636 +9638 2 19.08022587928386 -300.41306209205493 28.6868 0.1144 9637 +9639 2 19.327076012119477 -299.33638780653916 28.6896 0.1144 9638 +9640 2 18.95196892711435 -297.95160694389523 28.693 0.1144 9639 +9641 2 18.755457269858503 -296.59980181188104 28.6961 0.1144 9640 +9642 2 18.721527408591562 -295.34256366180625 28.702 0.1144 9641 +9643 2 18.70371599356806 -294.11142567344626 28.7199 0.1144 9642 +9644 2 18.68675488133899 -292.88064999544923 28.7479 0.1144 9643 +9645 2 18.336778402259235 -292.05281578391833 28.7179 0.1144 9644 +9646 2 18.048866906974375 -290.9986357642741 28.7017 0.1144 9645 +9647 2 18.242459244251485 -289.7367365425382 28.8358 0.1144 9646 +9648 2 19.197411342486333 -288.89225377237847 29.2429 0.1144 9647 +9649 2 28.280140935564468 -305.989119498248 29.8206 0.1144 9626 +9650 2 29.419376397356935 -306.16775765841777 29.9508 0.1144 9649 +9651 2 30.558608306116078 -306.3665462028738 30.0468 0.1144 9650 +9652 2 31.619814518876687 -306.6008210221846 30.198 0.1144 9651 +9653 2 32.423981576687716 -307.49689603764887 30.3677 0.1144 9652 +9654 2 33.232980636961365 -308.68487922429136 30.529 0.1144 9653 +9655 2 34.04360263427704 -309.0000126105153 30.6785 0.1144 9654 +9656 2 34.85422463159269 -310.4364108267575 30.8168 0.1144 9655 +9657 2 35.62928589770459 -311.1159894228794 31.0204 0.1144 9656 +9658 2 36.24040308054854 -311.84946946529783 31.2805 0.1144 9657 +9659 2 36.509466291210266 -313.2139214732889 31.6067 0.1144 9658 +9660 2 37.20996065879208 -314.443717109064 31.7072 0.1144 9659 +9661 2 38.06751252327244 -313.02774588414616 31.7895 0.1144 9660 +9662 2 39.169042909178536 -313.62077430484595 31.8598 0.1144 9661 +9663 2 40.23433819275097 -313.1833745037958 31.9225 0.1144 9662 +9664 2 41.0899576260486 -314.6516022701793 32.0698 0.1144 9663 +9665 2 42.09468335786906 -314.5071840416795 32.2857 0.1144 9664 +9666 2 43.22488227280402 -315.26396201809627 32.5394 0.1144 9665 +9667 2 44.11991496787059 -313.90252477866386 32.7793 0.1144 9666 +9668 2 44.78371207034064 -312.1747336188924 32.9585 0.1144 9667 +9669 2 45.17136733875421 -310.69047896259286 33.0772 0.1144 9668 +9670 2 45.74283267462016 -309.8827235619918 33.1411 0.1144 9669 +9671 2 46.18794397119297 -309.10165811168804 33.1696 0.1144 9670 +9672 2 46.66547118423499 -307.83943854259877 33.1789 0.1144 9671 +9673 2 46.99077822256049 -306.3304282486835 33.1794 0.1144 9672 +9674 2 47.25460391441444 -304.94558761244537 33.1794 0.1144 9673 +9675 2 47.629302428227476 -303.7831356787866 33.1794 0.1144 9674 +9676 2 47.97647426663906 -302.9415362968612 33.1794 0.1144 9675 +9677 2 48.34069577958236 -301.98948636080087 33.1794 0.1144 9676 +9678 2 48.28414180785673 -300.6963807392989 33.1794 0.1144 9677 +9679 2 -0.0905685731140693 -259.9749493192326 18.1214 0.1144 7245 +9680 2 0.8360128587190445 -258.8438459238078 17.8439 0.1144 9679 +9681 2 1.5711947381347002 -258.1399033911517 17.5761 0.1144 9680 +9682 2 2.3054656171032946 -257.44101226490136 17.3464 0.1144 9681 +9683 2 2.9887452722446817 -255.9564133366348 17.1174 0.1144 9682 +9684 2 3.7441521377961244 -255.3335129021421 16.8726 0.1144 9683 +9685 2 4.531982227983651 -254.4301333341918 16.5884 0.1144 9684 +9686 2 5.327080253620306 -253.26408005427197 16.3003 0.1144 9685 +9687 2 6.132762651270259 -252.7156880825035 16.0592 0.1144 9686 +9688 2 7.089266625880555 -251.79879863815057 15.8764 0.1144 9687 +9689 2 8.193874224902281 -251.44660487523765 15.7082 0.1144 9688 +9690 2 9.135923456208705 -250.991792404897 15.638 0.1144 9689 +9691 2 9.994331437091176 -250.10149892030677 15.6008 0.1144 9690 +9692 2 10.986436908802727 -249.48565060295243 15.5578 0.1144 9691 +9693 2 11.80269085277737 -248.70468604930454 15.4919 0.1144 9692 +9694 2 12.737181298088398 -247.8243980704965 15.3995 0.1144 9693 +9695 2 13.860704985452493 -247.95938231387078 15.2834 0.1144 9694 +9696 2 14.920891275548364 -247.55362327341476 15.013 0.1144 9695 +9697 2 15.851921927018108 -247.42174726685073 14.5876 0.1144 9696 +9698 2 16.65031270233009 -246.4284784482419 14.2615 0.1144 9697 +9699 2 17.51828362878829 -245.46508138821508 14.0382 0.1144 9698 +9700 2 18.47645060605139 -245.01808571132074 13.9171 0.1144 9699 +9701 2 19.61524954293121 -244.67121456110186 13.899 0.1144 9700 +9702 2 20.758148411823118 -244.8061297684436 13.9836 0.1144 9701 +9703 2 21.882133250846646 -244.6231952404107 14.1473 0.1144 9702 +9704 2 23.022524627899152 -244.23847799818734 14.3621 0.1144 9703 +9705 2 23.157654066100314 -244.15562248678557 13.554 0.1144 9704 +9706 2 24.30233141122803 -244.7575446893336 13.3759 0.1144 9705 +9707 2 25.35544651263755 -243.46261765422645 13.3158 0.1144 9706 +9708 2 26.20163001147028 -242.31861435294124 13.19 0.1144 9707 +9709 2 26.858995861324548 -241.74411338204126 13.032 0.1144 9708 +9710 2 27.60297081082909 -240.48656148748682 12.8695 0.1144 9709 +9711 2 28.384345463325573 -239.57675360979835 12.7262 0.1144 9710 +9712 2 29.08670131445335 -240.00686437038365 12.249 0.1144 9711 +9713 2 30.197074959501712 -239.9719357487885 12.0959 0.1144 9712 +9714 2 31.293749858156634 -240.09622301640917 12.042 0.1144 9713 +9715 2 32.41377362955389 -239.67481562942493 12.0009 0.1144 9714 +9716 2 33.54754446098019 -239.68274976976193 11.9529 0.1144 9715 +9717 2 34.68136572103105 -239.44657409140137 11.8765 0.1144 9716 +9718 2 35.44037080313793 -238.7600849535333 11.6514 0.1144 9717 +9719 2 36.21435978602787 -237.85691985935654 11.4376 0.1144 9718 +9720 2 37.19442936841341 -237.19779553150215 11.1809 0.1144 9719 +9721 2 38.19158287733374 -236.7380622345716 10.8444 0.1144 9720 +9722 2 39.12789804974396 -237.19628571424022 10.385 0.1144 9721 +9723 2 40.14337475607209 -237.94313829347846 9.8545 0.1144 9722 +9724 2 40.83101768172288 -238.54839702098172 9.6546 0.1144 9723 +9725 2 40.64082014984337 -239.93843121122825 9.4105 0.1144 9724 +9726 2 40.125936650353175 -241.07340107854475 9.07 0.1144 9725 +9727 2 39.278432015295465 -241.0151428645231 8.5687 0.1144 9726 +9728 2 38.79446844982837 -240.05205260795853 7.9909 0.1144 9727 +9729 2 38.77210631414724 -238.94534196711055 7.3456 0.1144 9728 +9730 2 38.00893062451835 -238.94088764270072 6.7499 0.1144 9729 +9731 2 36.94707071014066 -238.53310101675612 6.2449 0.1144 9730 +9732 2 36.34740913023247 -237.61862445494705 5.8427 0.1144 9731 +9733 2 35.549791557381084 -236.7972341593138 5.525 0.1144 9732 +9734 2 34.62541327342151 -236.03883390813803 5.2545 0.1144 9733 +9735 2 33.56861527482887 -236.3356119554635 5.046 0.1144 9734 +9736 2 32.71701484804941 -235.62471061577864 4.8724 0.1144 9735 +9737 2 32.219819557970915 -234.38254634553925 4.7181 0.1144 9736 +9738 2 32.342599452753994 -233.44655256617403 4.2043 0.1144 9737 +9739 2 31.7451877697691 -232.38811567969668 3.8862 0.1144 9738 +9740 2 31.16797412908389 -231.51766880092336 3.6453 0.1144 9739 +9741 2 30.58433574967732 -230.3730029193144 3.5199 0.1144 9740 +9742 2 29.840691165926618 -229.276399940495 3.5116 0.1144 9741 +9743 2 29.170792974494343 -228.65700748874676 3.6922 0.1144 9742 +9744 2 28.42292247654921 -227.74673156109407 4.0994 0.1144 9743 +9745 2 27.361581154536434 -227.6112376314137 4.489 0.1144 9744 +9746 2 26.28253220305477 -226.8368309062705 4.8036 0.1144 9745 +9747 2 25.197015190293836 -226.95954259216566 5.0452 0.1144 9746 +9748 2 24.18469336562802 -226.8620056323394 5.2218 0.1144 9747 +9749 2 23.328192930566324 -225.56562359803092 5.3703 0.1144 9748 +9750 2 22.385460327601717 -225.5057509767314 5.5181 0.1144 9749 +9751 2 21.33627618210573 -224.62003041735932 5.6979 0.1144 9750 +9752 2 20.340156784024227 -224.4317319840776 5.8763 0.1144 9751 +9753 2 19.48836360518681 -223.23932558301505 6.0162 0.1144 9752 +9754 2 18.748035458000317 -222.64017546406865 6.116 0.1144 9753 +9755 2 18.148214583764652 -221.54781974323424 6.1803 0.1144 9754 +9756 2 17.235759681324403 -221.3389650508957 6.2185 0.1144 9755 +9757 2 16.12570694202023 -221.81463004362774 6.2423 0.1144 9756 +9758 2 15.073291040587716 -221.29110589778915 6.2658 0.1144 9757 +9759 2 13.978923719132714 -221.01763381359265 6.299 0.1144 9758 +9760 2 12.896635703547538 -220.59954317049028 6.3449 0.1144 9759 +9761 2 11.969021612431659 -219.85362297162834 6.4036 0.1144 9760 +9762 2 11.299729950939025 -218.8892053756693 6.4755 0.1144 9761 +9763 2 10.62164196241025 -217.93065268042267 6.6236 0.1144 9762 +9764 2 10.267515620880287 -216.73882730024042 6.8465 0.1144 9763 +9765 2 10.085546644503186 -215.48186961903622 7.0258 0.1144 9764 +9766 2 9.72894005105591 -214.26484604277755 7.1595 0.1144 9765 +9767 2 9.07262537200515 -213.42956986594731 7.3108 0.1144 9766 +9768 2 31.887685930642004 -234.1226808538823 4.8183 0.1144 9737 +9769 2 31.16999245902846 -233.40596748449843 4.5858 0.1144 9768 +9770 2 30.728609331939147 -232.26710415104043 4.5017 0.1144 9769 +9771 2 30.174036678620986 -230.98122575947775 4.4202 0.1144 9770 +9772 2 29.36508431088231 -231.24328114917785 4.3383 0.1144 9771 +9773 2 28.46534890899754 -231.79002320027996 4.2543 0.1144 9772 +9774 2 27.399568547305655 -232.17633755555406 4.1076 0.1144 9773 +9775 2 26.261514802650993 -231.86401520565843 3.9575 0.1144 9774 +9776 2 25.131654610226413 -232.56443897202564 3.7838 0.1144 9775 +9777 2 24.231014223602656 -233.7550107585634 3.5976 0.1144 9776 +9778 2 24.018168692275268 -234.75124042144188 3.4411 0.1144 9777 +9779 2 24.787372276166963 -235.60665694834424 3.3189 0.1144 9778 +9780 2 25.72466349398274 -235.36698796016157 3.1989 0.1144 9779 +9781 2 26.600659603490477 -236.5059674893003 3.0623 0.1144 9780 +9782 2 27.234370602024107 -237.608146783756 2.9611 0.1144 9781 +9783 2 27.191507354726458 -238.84817775964146 2.8914 0.1144 9782 +9784 2 27.257043191365035 -240.09523478134813 2.8118 0.1144 9783 +9785 2 38.18993663855951 -235.88479178846197 10.3869 0.1144 9721 +9786 2 39.0062353996513 -234.97686096453685 9.9329 0.1144 9785 +9787 2 40.0895671513316 -234.82871077573003 9.6208 0.1144 9786 +9788 2 40.90830164330963 -233.76785213010874 9.2976 0.1144 9787 +9789 2 41.724467851809756 -233.00379470668082 9.0578 0.1144 9788 +9790 2 42.860304955171245 -232.9881944615907 8.8875 0.1144 9789 +9791 2 43.552621655356575 -232.01637511666232 10.1337 0.1144 9790 +9792 2 44.13154442178237 -231.4107163238779 10.619 0.1144 9791 +9793 2 44.87244966843855 -230.34258606447025 11.1208 0.1144 9792 +9794 2 45.834075997871395 -228.95107680404294 11.6751 0.1144 9793 +9795 2 46.353144608187755 -228.302673100698 12.2382 0.1144 9794 +9796 2 46.93298192809382 -227.67822138666526 12.7663 0.1144 9795 +9797 2 47.711057020934476 -226.23636125648022 13.1769 0.1144 9796 +9798 2 48.29471980102829 -225.30120880237996 13.5024 0.1144 9797 +9799 2 48.87511657318251 -224.65264322317068 13.7762 0.1144 9798 +9800 2 49.62314082397425 -223.33446490634873 13.9724 0.1144 9799 +9801 2 50.36640037783624 -222.4047970974532 14.1053 0.1144 9800 +9802 2 50.80349479160113 -221.65305688090638 14.2425 0.1144 9801 +9803 2 50.992845277633435 -220.43101091638334 14.3751 0.1144 9802 +9804 2 51.49709653314633 -219.21106705340316 14.4732 0.1144 9803 +9805 2 52.117977031388634 -217.95690777682833 14.538 0.1144 9804 +9806 2 52.51695960346628 -216.9012836021314 14.5796 0.1144 9805 +9807 2 52.88684299172499 -215.99392868478247 14.6014 0.1144 9806 +9808 2 53.38135938374645 -214.81326501121174 14.6052 0.1144 9807 +9809 2 53.32966139745833 -213.61908661746068 14.6002 0.1144 9808 +9810 2 53.6380198206015 -212.33179069670908 14.5919 0.1144 9809 +9811 2 54.34148410018182 -211.28064657867407 14.5802 0.1144 9810 +9812 2 55.161760105521545 -210.63308395137364 14.5632 0.1144 9811 +9813 2 55.90091341557735 -209.42094433887814 14.5397 0.1144 9812 +9814 2 56.336266659956316 -208.38929301027173 14.5082 0.1144 9813 +9815 2 56.470647977626875 -207.2035920666638 14.4705 0.1144 9814 +9816 2 56.19171834725485 -205.9443236230406 14.3991 0.1144 9815 +9817 2 56.104355017380165 -204.70043107930758 14.2845 0.1144 9816 +9818 2 56.161855491011636 -203.48503206341596 14.1933 0.1144 9817 +9819 2 56.53336862629291 -202.43090643423417 14.0591 0.1144 9818 +9820 2 43.83028107631468 -232.7692924060073 8.7637 0.1144 9790 +9821 2 44.87545666737686 -232.2376876147187 8.5772 0.1144 9820 +9822 2 46.01043715614987 -231.51163926736527 8.41 0.1144 9821 +9823 2 47.12068550025855 -231.84875980288044 8.2211 0.1144 9822 +9824 2 48.11775432855133 -230.7244102084224 8.0277 0.1144 9823 +9825 2 49.087981178115434 -230.55283822174593 7.8633 0.1144 9824 +9826 2 49.97062634167126 -229.32900849117635 7.7206 0.1144 9825 +9827 2 49.76674119672555 -228.46621836339295 7.873 0.1144 9826 +9828 2 49.08215465004812 -227.9506337535421 7.9861 0.1144 9827 +9829 2 48.5454416123593 -226.80967101802977 8.0323 0.1144 9828 +9830 2 48.04504101199388 -225.36232106405618 8.0933 0.1144 9829 +9831 2 47.165947461529214 -225.1403901042035 8.1693 0.1144 9830 +9832 2 46.106090766874 -224.56302719745304 8.3026 0.1144 9831 +9833 2 45.0145891498525 -225.4986152802796 8.5188 0.1144 9832 +9834 2 43.89210200344626 -225.81096498782819 8.741 0.1144 9833 +9835 2 42.755519209673174 -225.87614576855566 8.9296 0.1144 9834 +9836 2 41.61710681075295 -225.48697823852345 9.0895 0.1144 9835 +9837 2 40.48671790252088 -225.57137800473882 9.2247 0.1144 9836 +9838 2 39.35146038526299 -225.21695455384213 9.3396 0.1144 9837 +9839 2 38.370290194289964 -224.97598808132344 9.5641 0.1144 9838 +9840 2 37.328373984243115 -224.4307145031788 9.7914 0.1144 9839 +9841 2 36.20514839907736 -224.2696867106913 9.9802 0.1144 9840 +9842 2 35.098694961772075 -223.96563362086434 10.1347 0.1144 9841 +9843 2 34.005093760670334 -223.531578976334 10.2591 0.1144 9842 +9844 2 32.87027582317201 -223.6765622873818 10.3669 0.1144 9843 +9845 2 31.742570780115404 -223.4659136016245 10.5173 0.1144 9844 +9846 2 30.60424335790885 -223.52369663369194 10.6622 0.1144 9845 +9847 2 29.49465191584954 -223.28450464814424 10.7965 0.1144 9846 +9848 2 28.486405838120575 -222.5671523589923 10.9208 0.1144 9847 +9849 2 27.673405644609957 -221.6547056962839 11.1128 0.1144 9848 +9850 2 27.15048228922135 -220.93068501353332 11.3455 0.1144 9849 +9851 2 26.66211056610116 -219.78211554508925 11.5224 0.1144 9850 +9852 2 25.70952772004777 -218.7241649876203 11.6525 0.1144 9851 +9853 2 24.705276463761717 -219.15773425024474 11.741 0.1144 9852 +9854 2 23.73731425399627 -217.88893029798322 11.7916 0.1144 9853 +9855 2 22.94038137781776 -217.37631029542004 11.8087 0.1144 9854 +9856 2 22.435125088100943 -216.40824875909618 11.8096 0.1144 9855 +9857 2 22.076116113383407 -215.06605183578927 11.8096 0.1144 9856 +9858 2 50.791420610734036 -230.01059374410272 7.5946 0.1144 9826 +9859 2 51.87611731938357 -230.01646997674715 7.4693 0.1144 9858 +9860 2 52.86735446943421 -230.039860892487 7.2687 0.1144 9859 +9861 2 53.86142160069821 -229.34802876097228 6.9609 0.1144 9860 +9862 2 54.845638488873504 -229.017797428998 6.6658 0.1144 9861 +9863 2 55.682866864529146 -228.00064908098318 6.4398 0.1144 9862 +9864 2 56.68261204773012 -227.66029518714373 6.2795 0.1144 9863 +9865 2 57.78549465398747 -227.3089062544471 6.125 0.1144 9864 +9866 2 58.88665602261408 -227.0581398381865 6.0206 0.1144 9865 +9867 2 59.66413790938999 -226.23004849097651 6.0544 0.1144 9866 +9868 2 60.12220951359666 -225.16014666516926 6.106 0.1144 9867 +9869 2 60.86377201490323 -224.1739344666198 6.1587 0.1144 9868 +9870 2 61.568923280111306 -223.15287254909634 6.2116 0.1144 9869 +9871 2 62.31622177224662 -222.38364021080577 6.2626 0.1144 9870 +9872 2 63.00458027659626 -222.0934526865829 6.186 0.1144 9871 +9873 2 64.11168430415678 -221.3849548372565 5.7239 0.1144 9872 +9874 2 65.19808675505821 -221.97761708045738 5.5441 0.1144 9873 +9875 2 66.29597480757832 -221.30802907456328 5.364 0.1144 9874 +9876 2 67.40355642203502 -221.75877052114652 5.1088 0.1144 9875 +9877 2 68.49093066502195 -220.97084542794812 4.8632 0.1144 9876 +9878 2 69.58101507324854 -221.71278541015272 4.5577 0.1144 9877 +9879 2 70.60401508192317 -220.6116239305719 4.2902 0.1144 9878 +9880 2 71.60569873597412 -220.94359756862832 3.8884 0.1144 9879 +9881 2 72.68075650811676 -219.86027271355124 3.5624 0.1144 9880 +9882 2 73.80112255505774 -220.45612723102758 3.2983 0.1144 9881 +9883 2 74.56399289083616 -220.65591136239675 3.0191 0.1144 9882 +9884 2 75.56075281224517 -221.52578851790224 2.7537 0.1144 9883 +9885 2 76.51164228531782 -220.07532849688994 2.546 0.1144 9884 +9886 2 77.53709184694004 -220.39872003816174 2.4145 0.1144 9885 +9887 2 78.45703230320535 -218.91318708019307 2.3246 0.1144 9886 +9888 2 79.59514278827866 -219.63635529842847 2.2725 0.1144 9887 +9889 2 80.70951856293684 -218.92316227778562 2.2495 0.1144 9888 +9890 2 62.062470436707756 -222.07773156669958 6.3396 0.1144 9871 +9891 2 61.713291073037006 -220.83149930073887 6.4212 0.1144 9890 +9892 2 61.605830558111705 -219.61452190612607 6.4665 0.1144 9891 +9893 2 61.28959626838923 -218.48543791649777 6.4769 0.1144 9892 +9894 2 61.1756676921847 -217.2967585137377 6.4548 0.1144 9893 +9895 2 60.773881179725585 -216.33689734523728 6.3366 0.1144 9894 +9896 2 61.077462282350766 -215.10900144874972 6.1789 0.1144 9895 +9897 2 61.788386845237554 -214.05295829379938 5.9884 0.1144 9896 +9898 2 62.0901489078298 -213.00760114327045 5.8395 0.1144 9897 +9899 2 62.189728804669215 -211.79838869586615 5.7334 0.1144 9898 +9900 2 61.8679672506971 -210.47602911309554 5.6666 0.1144 9899 +9901 2 62.06615166670157 -209.37609103103898 5.635 0.1144 9900 +9902 2 62.69758298524091 -208.500915137501 5.6231 0.1144 9901 +9903 2 63.46995889591621 -207.01519812061258 5.6221 0.1144 9902 +9904 2 64.30065466352049 -205.9884067392303 5.6215 0.1144 9903 +9905 2 65.27258537562057 -206.29514359907387 5.6207 0.1144 9904 +9906 2 66.19415883585567 -205.42859036356407 5.6195 0.1144 9905 +9907 2 66.9697942405761 -204.38485470292656 5.6179 0.1144 9906 +9908 2 67.63521753703542 -203.82086521980003 5.6157 0.1144 9907 +9909 2 68.17510689621271 -202.5868623204983 5.6126 0.1144 9908 +9910 2 68.53841080082879 -201.19917036311125 5.6086 0.1144 9909 +9911 2 68.98197001892578 -199.9616955972001 5.6022 0.1144 9910 +9912 2 69.58097535406814 -199.44534854496516 5.5925 0.1144 9911 +9913 2 70.23102915164282 -198.33926669932507 5.581 0.1144 9912 +9914 2 70.70617086032291 -196.89919698531537 5.5696 0.1144 9913 +9915 2 71.47618515562549 -196.4257287013316 5.5524 0.1144 9914 +9916 2 72.43838475936782 -195.64893078866479 5.4853 0.1144 9915 +9917 2 73.26111407278871 -194.6851900063713 5.4257 0.1144 9916 +9918 2 73.60102854086534 -193.92734712017295 5.458 0.1144 9917 +9919 2 74.13855252953618 -193.0758821385808 5.5143 0.1144 9918 +9920 2 75.16277511523185 -191.97223088310432 5.5714 0.1144 9919 +9921 2 75.9781314391494 -192.30686009706585 5.6304 0.1144 9920 +9922 2 75.05690448381881 -190.79073314117065 5.6909 0.1144 9921 +9923 2 74.47548891191406 -190.50546257024246 5.7454 0.1144 9922 +9924 2 75.02831864697004 -189.04593958403711 5.7953 0.1144 9923 +9925 2 75.25493698368935 -187.90082542166874 5.8679 0.1144 9924 +9926 2 75.17671126002158 -186.69329784982722 5.992 0.1144 9925 +9927 2 74.36387311959916 -186.58894534176952 6.1046 0.1144 9926 +9928 2 73.64712164348848 -185.63973327080816 6.2384 0.1144 9927 +9929 2 73.42564123129517 -184.2244439780343 6.4396 0.1144 9928 +9930 2 73.2056587138195 -182.831991940645 6.6292 0.1144 9929 +9931 2 72.94452444839087 -181.77585098393047 6.7841 0.1144 9930 +9932 2 72.68657200846062 -180.81165947562425 6.9083 0.1144 9931 +9933 2 73.02349039101591 -179.53033790765966 7.124 0.1144 9932 +9934 2 72.87314802205242 -178.46168395036926 7.326 0.1144 9933 +9935 2 72.43576702457291 -177.84073949876847 7.3902 0.1144 9934 +9936 2 71.73744398298066 -176.69420945774448 7.4316 0.1144 9935 +9937 2 71.38161683376158 -175.14367177912865 7.4615 0.1144 9936 +9938 2 71.56777187433444 -174.13366630027383 7.4829 0.1144 9937 +9939 2 72.20727455552597 -173.62681687854928 6.5166 0.1144 9938 +9940 2 71.88309444366206 -172.34344663744616 6.2652 0.1144 9939 +9941 2 71.8856564479015 -171.16073114013003 5.9722 0.1144 9940 +9942 2 72.10174765121269 -170.10312306918078 5.6917 0.1144 9941 +9943 2 72.29434756436237 -169.02392337057123 5.4437 0.1144 9942 +9944 2 72.93626950373246 -167.56246830946773 5.2732 0.1144 9943 +9945 2 73.0560811966882 -166.27520553845096 5.1769 0.1144 9944 +9946 2 73.43058316583877 -165.24843944602216 4.957 0.1144 9945 +9947 2 73.7787542383583 -164.46475009551042 3.9955 0.1144 9946 +9948 2 74.1723899707421 -163.8729720353063 3.5291 0.1144 9947 +9949 2 75.08522859586623 -162.85022902102796 3.0652 0.1144 9948 +9950 2 76.00362753876988 -162.36704720990863 2.618 0.1144 9949 +9951 2 76.85105424666563 -161.89075105687996 2.0891 0.1144 9950 +9952 2 77.95392328947676 -161.852385601239 1.6863 0.1144 9951 +9953 2 79.07082273259593 -162.13508366601081 1.4189 0.1144 9952 +9954 2 79.95325364775283 -162.85340660293625 1.2585 0.1144 9953 +9955 2 80.65249755461952 -164.3016994673496 1.1668 0.1144 9954 +9956 2 81.40659219540383 -164.41515682247348 1.1248 0.1144 9955 +9957 2 72.62785435368227 -166.9482244340413 5.1259 0.1144 9945 +9958 2 71.55443046885249 -166.0491715523628 5.1106 0.1144 9957 +9959 2 70.8406506910875 -165.39333965764794 5.1125 0.1144 9958 +9960 2 69.95746046555796 -164.75819709686095 5.1277 0.1144 9959 +9961 2 69.39731011936564 -163.2603785164618 5.2104 0.1144 9960 +9962 2 69.11837417719951 -162.3111224044847 5.2473 0.1144 9961 +9963 2 69.39519067355671 -160.99591991452132 5.195 0.1144 9962 +9964 2 69.69384828311115 -159.99292562116773 5.1425 0.1144 9963 +9965 2 70.13662144909975 -159.29416550960832 5.0891 0.1144 9964 +9966 2 70.10749990340655 -158.05754815153125 5.0331 0.1144 9965 +9967 2 70.02662151171944 -156.7863903727902 4.9741 0.1144 9966 +9968 2 70.05664268372715 -155.6055098730845 4.9228 0.1144 9967 +9969 2 70.48316910420064 -154.80070608212299 4.8743 0.1144 9968 +9970 2 70.90662858058661 -153.48250072652635 4.7932 0.1144 9969 +9971 2 70.9090794585488 -152.3122831869988 4.6563 0.1144 9970 +9972 2 71.35597298649105 -150.91602806580968 4.5172 0.1144 9971 +9973 2 72.19892698996163 -150.4778941718743 4.3884 0.1144 9972 +9974 2 72.8214241134519 -149.67453383688272 4.2675 0.1144 9973 +9975 2 73.40281656668073 -148.17719038098696 4.0975 0.1144 9974 +9976 2 74.28069447664637 -147.85114482418925 3.8722 0.1144 9975 +9977 2 74.91469457684997 -147.07674007069562 3.6877 0.1144 9976 +9978 2 75.30149302857473 -145.5643710034341 3.5564 0.1144 9977 +9979 2 75.96709880806391 -144.46037687129783 3.4269 0.1144 9978 +9980 2 76.81972717947352 -144.42766014200177 3.349 0.1144 9979 +9981 2 77.79655740166939 -142.89878632452357 3.3751 0.1144 9980 +9982 2 78.75712400144194 -143.20803374714995 3.4794 0.1144 9981 +9983 2 79.52550479458829 -141.69584893766555 3.6148 0.1144 9982 +9984 2 80.3238991229336 -140.99673262717923 3.738 0.1144 9983 +9985 2 81.20484397698671 -140.47652499003988 3.8395 0.1144 9984 +9986 2 82.15244621790569 -139.31838514073345 3.9185 0.1144 9985 +9987 2 82.9240597633614 -139.2835107831416 3.928 0.1144 9986 +9988 2 83.48181229120135 -137.72510909990106 3.9345 0.1144 9987 +9989 2 83.45526879982773 -136.62221173889614 3.9756 0.1144 9988 +9990 2 82.60939479513571 -136.07204263488612 4.1316 0.1144 9989 +9991 2 81.64708770721998 -135.52680628307215 4.4836 0.1144 9990 +9992 2 80.57541130357023 -135.46788947777375 4.8065 0.1144 9991 +9993 2 79.43491205718777 -135.39396452359517 5.0498 0.1144 9992 +9994 2 78.30682091784311 -135.08629933576194 5.2043 0.1144 9993 +9995 2 77.19163496251616 -135.54298405391384 5.0613 0.1144 9994 +9996 2 71.46111460355594 -173.6799004883076 7.5128 0.1144 9938 +9997 2 70.98658398773337 -172.68281796273249 7.6 0.1144 9996 +9998 2 70.11389119301512 -172.41367588589054 7.7051 0.1144 9997 +9999 2 69.1533257161569 -171.28816667651813 7.7612 0.1144 9998 +10000 2 68.68628658079679 -170.62457930544107 7.8494 0.1144 9999 +10001 2 68.5360488242161 -169.66788361758086 7.9886 0.1144 10000 +10002 2 67.92008957198178 -168.58332922744262 8.2159 0.1144 10001 +10003 2 67.40371314489238 -167.16198839793446 8.597 0.1144 10002 +10004 2 66.7669800193884 -166.67200172253823 9.0472 0.1144 10003 +10005 2 66.10903482300175 -167.5316993355732 9.4406 0.1144 10004 +10006 2 65.40822447994046 -166.42877473512362 9.7745 0.1144 10005 +10007 2 65.3580441370688 -165.9894968660953 9.6788 0.1144 10006 +10008 2 65.22877981579623 -164.6531172962043 9.8704 0.1144 10007 +10009 2 65.2863009214696 -163.53754693721734 9.9888 0.1144 10008 +10010 2 65.57765003177782 -162.6670731160458 10.0463 0.1144 10009 +10011 2 65.65134356535258 -161.55894445926373 10.0073 0.1144 10010 +10012 2 65.46477975148736 -160.25842930238383 9.7714 0.1144 10011 +10013 2 65.45439506805404 -159.0589285253488 9.5167 0.1144 10012 +10014 2 65.70195733958494 -158.13325738547752 9.3054 0.1144 10013 +10015 2 65.39962109967908 -156.6644433001195 9.1512 0.1144 10014 +10016 2 65.12630646903118 -155.20577838256384 8.9969 0.1144 10015 +10017 2 65.05604649926002 -153.91542126529433 8.9174 0.1144 10016 +10018 2 64.87255238824312 -152.5276738506608 8.9668 0.1144 10017 +10019 2 64.51107392882288 -151.1486658328577 9.1283 0.1144 10018 +10020 2 63.80790576299336 -150.95343754758875 9.2772 0.1144 10019 +10021 2 63.843612497205235 -149.757375209746 9.3982 0.1144 10020 +10022 2 64.69623405863439 -148.2892295793299 9.56 0.1144 10021 +10023 2 65.40004574614463 -166.4321277257214 10.0628 0.1144 10006 +10024 2 64.72934335719592 -166.46595372465995 10.4705 0.1144 10023 +10025 2 63.78099137464562 -167.4433988194378 10.8415 0.1144 10024 +10026 2 63.92467657237579 -167.54018687930636 11.2132 0.1144 10025 +10027 2 64.90990938851107 -167.98753180828115 11.548 0.1144 10026 +10028 2 65.61133923770122 -169.58679351002073 11.959 0.1144 10027 +10029 2 66.5096986058044 -170.4650531395381 12.3631 0.1144 10028 +10030 2 67.38231047502873 -170.7022449701062 12.7665 0.1144 10029 +10031 2 68.40645776578182 -171.7443895486496 13.2 0.1144 10030 +10032 2 69.53758535234462 -171.3800475708352 13.5827 0.1144 10031 +10033 2 70.67995832070471 -171.6824319942235 13.9114 0.1144 10032 +10034 2 71.54933500750055 -170.89662874258505 14.3644 0.1144 10033 +10035 2 72.46694740010933 -170.77987473286524 14.8152 0.1144 10034 +10036 2 73.60155165742171 -170.06932713201232 15.1919 0.1144 10035 +10037 2 74.06604030702617 -170.21332885371532 15.5167 0.1144 10036 +10038 2 75.08585493716906 -169.1933705326017 15.8545 0.1144 10037 +10039 2 76.18942811022185 -169.83940280536694 16.2061 0.1144 10038 +10040 2 76.48220609954355 -170.71723407962935 16.7164 0.1144 10039 +10041 2 76.9534467244516 -171.25854300665827 17.2064 0.1144 10040 +10042 2 78.03607340603229 -171.674088020077 17.6329 0.1144 10041 +10043 2 78.22174697803385 -171.6829405020674 18.3686 0.1144 10042 +10044 2 78.47976517672095 -170.92739298443507 20.6836 0.1144 10043 +10045 2 78.6772575878856 -169.56296578107214 21.4727 0.1144 10044 +10046 2 78.62397367531926 -168.47573243807193 21.8314 0.1144 10045 +10047 2 78.51326778449632 -167.44573395279454 22.273 0.1144 10046 +10048 2 78.36779728150582 -166.20873960136723 22.7073 0.1144 10047 +10049 2 78.39542308432414 -165.06489526590514 23.1782 0.1144 10048 +10050 2 77.62945935880848 -163.50765551595208 24.1816 0.1144 10049 +10051 2 78.53705708901975 -172.38584207265635 18.7739 0.1144 10043 +10052 2 79.21433513645091 -172.60240314080508 18.9941 0.1144 10051 +10053 2 80.0532426213543 -173.97570789356848 19.1018 0.1144 10052 +10054 2 81.00420934034616 -174.32396635561872 19.1421 0.1144 10053 +10055 2 82.08727985500641 -175.01037056418954 19.1313 0.1144 10054 +10056 2 83.16155424473091 -174.95619366854388 19.0764 0.1144 10055 +10057 2 84.19720856341715 -175.62611561553348 19.0472 0.1144 10056 +10058 2 85.30941906526468 -175.18596735039992 19.0182 0.1144 10057 +10059 2 86.4268443524008 -175.46836623742098 18.9816 0.1144 10058 +10060 2 87.51897598415049 -174.5602398011987 18.9377 0.1144 10059 +10061 2 88.63524230117966 -174.92820860384091 18.8187 0.1144 10060 +10062 2 89.77038513912699 -174.88908975291056 18.7037 0.1144 10061 +10063 2 90.91340875425722 -174.82340773862327 18.6058 0.1144 10062 +10064 2 92.01781629305401 -174.73900098489037 18.5234 0.1144 10063 +10065 2 93.1401781950355 -174.17442922303957 18.4548 0.1144 10064 +10066 2 94.2689368580586 -174.8097567241288 18.3989 0.1144 10065 +10067 2 95.38675179451607 -174.11517433771746 18.2816 0.1144 10066 +10068 2 96.50989319724067 -175.09405356556618 18.1814 0.1144 10067 +10069 2 97.64542533190837 -174.2273953566135 18.1044 0.1144 10068 +10070 2 98.51837974880326 -174.23540096304097 18.0493 0.1144 10069 +10071 2 99.31108851494432 -172.60190330701278 18.0142 0.1144 10070 +10072 2 99.78939872524782 -171.5640148909601 17.997 0.1144 10071 +10073 2 99.98439095274006 -170.56368619920636 17.9956 0.1144 10072 +10074 2 99.90103932121647 -169.25044330616518 17.9956 0.1144 10073 +10075 2 73.49718177347285 -168.6885200767456 15.5278 0.1144 10036 +10076 2 73.34677485773722 -167.48346159324873 15.6726 0.1144 10075 +10077 2 73.52240927879635 -166.31535489727156 15.8092 0.1144 10076 +10078 2 74.26817682268421 -166.1857586190702 15.961 0.1144 10077 +10079 2 75.19954593804914 -164.88124886590538 16.1313 0.1144 10078 +10080 2 76.10970465523175 -164.62164616359195 16.2965 0.1144 10079 +10081 2 76.9964596156271 -163.64573505004716 16.4369 0.1144 10080 +10082 2 77.93028174298715 -162.93606697646163 16.6069 0.1144 10081 +10083 2 78.90552988802428 -162.56556280155561 16.8306 0.1144 10082 +10084 2 79.69171305819481 -161.20717743784832 17.0109 0.1144 10083 +10085 2 79.78725806798067 -160.12405002144837 17.1278 0.1144 10084 +10086 2 79.78168120193467 -158.8935330314213 17.1921 0.1144 10085 +10087 2 79.79790538347518 -157.69812044141625 17.1611 0.1144 10086 +10088 2 79.78575939680039 -156.4647059661944 17.0812 0.1144 10087 +10089 2 79.52462838831894 -155.2523067819588 17.0016 0.1144 10088 +10090 2 79.1898560980884 -154.45751112866373 16.9402 0.1144 10089 +10091 2 78.88900442902519 -153.62478288158644 16.8993 0.1144 10090 +10092 2 78.96425664895597 -152.36429797636328 16.8769 0.1144 10091 +10093 2 78.77910555099439 -151.38560964084553 16.8708 0.1144 10092 +10094 2 28.391014764258905 -238.89697178642427 12.5957 0.1144 9711 +10095 2 28.190545094223687 -237.63435611628609 12.4931 0.1144 10094 +10096 2 27.389007017543193 -237.1412677558028 12.4296 0.1144 10095 +10097 2 26.40328319665098 -236.3157468135136 12.3914 0.1144 10096 +10098 2 25.79704518794704 -235.16913929853987 12.3686 0.1144 10097 +10099 2 24.969532312240595 -235.08537131684034 12.3541 0.1144 10098 +10100 2 24.13386389144072 -234.51520103389726 12.3442 0.1144 10099 +10101 2 23.687625573186367 -232.884504136365 12.3331 0.1144 10100 +10102 2 22.981204723292244 -232.10340359384912 12.3169 0.1144 10101 +10103 2 22.311045882096984 -231.41006600183917 12.293 0.1144 10102 +10104 2 21.661999138495275 -229.9116176167081 12.2657 0.1144 10103 +10105 2 20.915179243140624 -229.17602858523435 12.2353 0.1144 10104 +10106 2 20.413132018844387 -228.29630180456553 12.1546 0.1144 10105 +10107 2 19.9886334583517 -227.0566166529213 12.0526 0.1144 10106 +10108 2 19.437306679117643 -225.70394866625807 11.8971 0.1144 10107 +10109 2 19.679131521775393 -224.80024768425346 12.0055 0.1144 10108 +10110 2 20.257187108498478 -224.1897633118645 12.0098 0.1144 10109 +10111 2 20.375423238189825 -222.99237179709633 11.9458 0.1144 10110 +10112 2 20.655451854814537 -221.81961542474033 11.895 0.1144 10111 +10113 2 20.796193862620818 -220.5283632390587 11.849 0.1144 10112 +10114 2 20.783264878684506 -219.3168509848037 11.799 0.1144 10113 +10115 2 21.010726708217693 -217.86294786419978 11.7312 0.1144 10114 +10116 2 20.753445458028963 -217.75493715251653 11.8096 0.1144 10115 +10117 2 19.796148602285694 -217.10790546088214 10.5409 0.1144 10116 +10118 2 18.839479317639896 -218.00319871300104 10.0378 0.1144 10117 +10119 2 17.860043688172507 -217.4912967536983 9.4004 0.1144 10118 +10120 2 16.774662043278923 -217.8159937258963 8.8277 0.1144 10119 +10121 2 16.412775915670682 -216.77063995705385 8.1702 0.1144 10120 +10122 2 16.795043780593254 -215.76399523851853 7.5844 0.1144 10121 +10123 2 17.70538853383907 -214.76816311779513 7.0314 0.1144 10122 +10124 2 18.53377341078123 -214.31627881311383 6.5148 0.1144 10123 +10125 2 18.979033638667637 -213.06955159425206 6.0288 0.1144 10124 +10126 2 19.67306782135006 -211.988318892935 5.571 0.1144 10125 +10127 2 20.645730806000984 -211.79648532664993 5.2074 0.1144 10126 +10128 2 21.63305796082178 -210.69228353148065 4.9195 0.1144 10127 +10129 2 22.699265222170066 -210.79528855004185 4.6889 0.1144 10128 +10130 2 23.655186555829896 -209.7058505068485 4.3808 0.1144 10129 +10131 2 24.436588650348877 -209.3972405915943 4.0808 0.1144 10130 +10132 2 25.144129175052495 -208.1665249094197 3.7702 0.1144 10131 +10133 2 26.152080534071732 -207.08359646413993 3.4685 0.1144 10132 +10134 2 27.277759868990252 -207.30260895875756 3.1893 0.1144 10133 +10135 2 28.284604124571555 -206.4386191580764 2.9772 0.1144 10134 +10136 2 29.361305263697844 -206.2919608865542 2.8359 0.1144 10135 +10137 2 30.33808485516882 -205.45180031270758 2.7357 0.1144 10136 +10138 2 31.22236302269447 -204.88461784461632 2.6653 0.1144 10137 +10139 2 31.65297930825229 -203.6724835462244 2.5375 0.1144 10138 +10140 2 32.280385308479374 -202.56165275264425 2.4358 0.1144 10139 +10141 2 33.08193146364013 -201.92281974601775 2.4239 0.1144 10140 +10142 2 33.4081429885182 -200.6792855820816 2.2495 0.1144 10141 +10143 2 21.07580384112565 -216.74900433509094 11.6833 0.1144 10115 +10144 2 21.163250248337107 -215.4584644100196 11.6391 0.1144 10143 +10145 2 20.850325881284338 -214.5989475270273 11.5693 0.1144 10144 +10146 2 20.615038115610012 -213.4728063900004 11.4306 0.1144 10145 +10147 2 20.530130852577283 -212.21895410553606 11.3096 0.1144 10146 +10148 2 20.54236021267496 -211.00996518067637 11.2054 0.1144 10147 +10149 2 20.8822673725846 -209.7885089280938 11.0972 0.1144 10148 +10150 2 21.08216897500005 -208.37593976640358 10.9601 0.1144 10149 +10151 2 21.52898137534804 -207.0931618412734 10.8515 0.1144 10150 +10152 2 22.372742062968975 -206.69813556789785 10.7779 0.1144 10151 +10153 2 23.321899935397056 -205.60029654368657 10.7253 0.1144 10152 +10154 2 24.289717593710357 -205.33314797961822 10.6914 0.1144 10153 +10155 2 25.001590962080535 -204.43745720062975 10.674 0.1144 10154 +10156 2 25.541439959560982 -202.790456611001 10.6672 0.1144 10155 +10157 2 26.504815466833435 -202.29815986412888 10.6602 0.1144 10156 +10158 2 27.640300227723458 -202.1593516640003 10.6504 0.1144 10157 +10159 2 28.758589437615033 -202.1355511829506 10.6366 0.1144 10158 +10160 2 29.887501026656523 -201.55375976312484 10.6178 0.1144 10159 +10161 2 31.005030926175422 -201.73059493570892 10.5912 0.1144 10160 +10162 2 32.028888047625 -200.85198742862582 10.5525 0.1144 10161 +10163 2 32.98209522134029 -200.50607619755328 10.4989 0.1144 10162 +10164 2 33.83958559389549 -199.38622300384844 10.4286 0.1144 10163 +10165 2 34.46863496110622 -198.51446914862132 10.3413 0.1144 10164 +10166 2 34.94450923842324 -197.58193748112103 10.1752 0.1144 10165 +10167 2 35.04580356291285 -196.374589567076 9.9269 0.1144 10166 +10168 2 35.32500911666531 -195.1061642625761 9.6907 0.1144 10167 +10169 2 35.843030122723206 -193.83158906731157 9.4804 0.1144 10168 +10170 2 36.648662387834676 -193.1934974264644 9.2882 0.1144 10169 +10171 2 37.44373998352967 -192.2227895563252 9.063 0.1144 10170 +10172 2 38.36448031396477 -191.51984784789107 8.8291 0.1144 10171 +10173 2 39.41197034872236 -191.012428873799 8.597 0.1144 10172 +10174 2 40.470631706278766 -190.985230124755 8.2386 0.1144 10173 +10175 2 41.58180922020176 -190.6737256291858 7.857 0.1144 10174 +10176 2 41.89609629716108 -190.32302055717028 6.919 0.1144 10175 +10177 2 42.78632093526916 -190.58425509467668 6.3941 0.1144 10176 +10178 2 42.82793230776661 -191.6001422529555 6.1693 0.1144 10177 +10179 2 42.848004184827616 -192.80299834230843 5.9684 0.1144 10178 +10180 2 42.96126118613398 -194.05793374011552 5.82 0.1144 10179 +10181 2 43.16662365027028 -195.03506696616512 5.7204 0.1144 10180 +10182 2 43.375242055418425 -196.11197088969487 5.6655 0.1144 10181 +10183 2 43.5362166683593 -197.27373202863882 5.651 0.1144 10182 +10184 2 43.98407792365565 -198.32623808719063 5.6576 0.1144 10183 +10185 2 44.50635694406825 -199.80440525536596 5.6724 0.1144 10184 +10186 2 44.51999075853291 -201.0065848628596 5.6878 0.1144 10185 +10187 2 44.722157777209674 -202.2753833988442 5.7008 0.1144 10186 +10188 2 45.317159972857695 -202.9023806421572 5.7369 0.1144 10187 +10189 2 46.24694283330271 -202.97617809596693 5.8897 0.1144 10188 +10190 2 47.05430577824472 -204.01682523032088 6.7763 0.1144 10189 +10191 2 47.64575061722051 -204.5107583947762 7.7181 0.1144 10190 +10192 2 47.520852879919374 -205.7118358519483 8.1828 0.1144 10191 +10193 2 47.55128282521942 -206.77176869928752 8.7795 0.1144 10192 +10194 2 48.190771059621724 -206.72962089804477 9.2826 0.1144 10193 +10195 2 49.20220201769603 -207.73850069038866 9.6971 0.1144 10194 +10196 2 50.04976370830249 -208.00699722040386 10.1086 0.1144 10195 +10197 2 50.952931833650965 -208.73427630581062 10.5771 0.1144 10196 +10198 2 51.98278905473985 -207.88482866968127 10.965 0.1144 10197 +10199 2 53.05216481771162 -207.867567159677 11.2136 0.1144 10198 +10200 2 54.167190980524694 -207.27997213950493 11.3601 0.1144 10199 +10201 2 55.29650228581532 -207.54958738154977 11.4109 0.1144 10200 +10202 2 56.41387344570818 -207.5556599450251 11.3218 0.1144 10201 +10203 2 57.50485197747349 -207.85626894382955 11.1058 0.1144 10202 +10204 2 58.2465762597414 -208.6173871498736 10.8832 0.1144 10203 +10205 2 59.07572519426455 -209.51981849653401 10.6698 0.1144 10204 +10206 2 59.826587082739415 -210.26547622139987 10.4666 0.1144 10205 +10207 2 60.575731986903634 -211.3581582614508 10.3134 0.1144 10206 +10208 2 61.38959985830337 -212.1001345190494 10.2177 0.1144 10207 +10209 2 62.421893125408545 -212.69556416548807 10.1647 0.1144 10208 +10210 2 63.32527023595139 -212.94140446586863 10.136 0.1144 10209 +10211 2 63.21916384075439 -214.17567205332892 10.1244 0.1144 10210 +10212 2 62.25120781624164 -215.1429384827469 10.1226 0.1144 10211 +10213 2 61.16719492092186 -215.4574826308558 10.1226 0.1144 10212 +10214 2 60.02333738171915 -215.43177171844556 10.1226 0.1144 10213 +10215 2 47.2330719309688 -206.87295198982673 10.1267 0.1144 10193 +10216 2 46.18469446962326 -205.92313436235244 10.2526 0.1144 10215 +10217 2 45.19527991263888 -206.8963495631159 10.1778 0.1144 10216 +10218 2 45.21497964201464 -206.60903277641523 10.1771 0.1144 10217 +10219 2 45.264439748049654 -205.38560812618954 10.304 0.1144 10218 +10220 2 45.254773811191846 -204.1821992197235 10.4245 0.1144 10219 +10221 2 45.58420397023181 -202.6752316151556 10.5207 0.1144 10220 +10222 2 45.990390725259026 -201.2203071875647 10.5937 0.1144 10221 +10223 2 46.34003906045428 -200.15998041784906 10.6554 0.1144 10222 +10224 2 45.835650448626495 -199.0648283334072 10.6821 0.1144 10223 +10225 2 45.12271061064206 -198.86932295571964 10.6848 0.1144 10224 +10226 2 44.39445190449793 -197.95685199256206 10.6848 0.1144 10225 +10227 2 43.867374931525454 -196.48578804897707 10.6848 0.1144 10226 +10228 2 44.14385925060944 -207.1462499327479 9.2229 0.1144 10217 +10229 2 43.21200967655774 -206.60930593357728 8.999 0.1144 10228 +10230 2 42.19951429383158 -206.4941500964587 8.7362 0.1144 10229 +10231 2 41.10594003656593 -206.041837161071 8.5564 0.1144 10230 +10232 2 40.017054222385404 -205.98483137681728 8.5178 0.1144 10231 +10233 2 38.94410117098618 -206.35621034139584 8.6186 0.1144 10232 +10234 2 38.893908994500606 -207.60411576046357 8.7306 0.1144 10233 +10235 2 38.1652226183868 -208.44608903476018 8.8463 0.1144 10234 +10236 2 37.17065397376652 -209.06173097853596 8.9978 0.1144 10235 +10237 2 46.35428456118274 -203.75675825842313 5.8805 0.1144 10189 +10238 2 45.899791683447944 -204.53237740908978 5.7833 0.1144 10237 +10239 2 45.956667444260844 -205.50623635842226 5.6824 0.1144 10238 +10240 2 46.36025256681124 -206.8076312333767 5.5781 0.1144 10239 +10241 2 47.0892433434059 -208.20735465630747 5.4713 0.1144 10240 +10242 2 48.19021497735064 -207.71488201277504 5.2867 0.1144 10241 +10243 2 49.28038445136146 -207.6003528679538 5.042 0.1144 10242 +10244 2 50.26742673878832 -207.70511970228767 5.0344 0.1144 10243 +10245 2 51.130537154362074 -208.90319141651867 5.0236 0.1144 10244 +10246 2 51.96373914530604 -209.32285590031756 5.0086 0.1144 10245 +10247 2 52.790516693614755 -210.5691451393909 4.9876 0.1144 10246 +10248 2 53.65038449205163 -211.1968748018504 4.9589 0.1144 10247 +10249 2 54.22265826094419 -212.1109194018456 4.9174 0.1144 10248 +10250 2 54.89112961832543 -213.34578121419355 4.8585 0.1144 10249 +10251 2 55.70739661404817 -214.00750000568738 4.7779 0.1144 10250 +10252 2 56.5671902969716 -214.85775464971397 4.6716 0.1144 10251 +10253 2 57.59470574537242 -215.34307243166018 4.5369 0.1144 10252 +10254 2 58.4894672820767 -214.9960583345923 4.247 0.1144 10253 +10255 2 59.361625876021506 -214.2144404005901 3.9392 0.1144 10254 +10256 2 59.99064850149649 -213.18872430208233 3.5911 0.1144 10255 +10257 2 60.73554155751471 -212.4449382273033 3.2168 0.1144 10256 +10258 2 61.564749497329075 -211.45118951612886 2.8434 0.1144 10257 +10259 2 61.70320380317567 -210.22904010567913 2.5695 0.1144 10258 +10260 2 61.30215241601404 -209.16160619764986 2.2495 0.1144 10259 +10261 2 48.30451295599127 -208.26595201549304 5.1515 0.1144 10242 +10262 2 48.98511119512026 -209.73466143385298 5.0405 0.1144 10261 +10263 2 50.04974576499477 -209.67099922044136 4.9389 0.1144 10262 +10264 2 50.777950287380726 -211.03583627597277 4.8449 0.1144 10263 +10265 2 51.013204501338755 -212.24158941407683 4.7446 0.1144 10264 +10266 2 51.19750154137235 -213.38093186961044 4.5627 0.1144 10265 +10267 2 51.48052053864227 -214.48958136187088 4.3637 0.1144 10266 +10268 2 51.80963095355746 -215.32945933639127 4.2078 0.1144 10267 +10269 2 52.4401091997817 -216.43325355429528 4.0863 0.1144 10268 +10270 2 53.02165356914445 -217.51397744441542 4.0477 0.1144 10269 +10271 2 52.88069532449175 -218.67464341065806 4.1094 0.1144 10270 +10272 2 53.10624141669409 -219.7921844349349 4.0795 0.1144 10271 +10273 2 53.700986313512196 -220.4261741236444 3.8534 0.1144 10272 +10274 2 54.054228598431145 -221.55282920785237 3.5446 0.1144 10273 +10275 2 54.435841253665814 -222.75477180048085 3.2785 0.1144 10274 +10276 2 54.71478450399889 -224.14417153872483 3.0664 0.1144 10275 +10277 2 54.45822674759406 -225.13702821590397 2.9151 0.1144 10276 +10278 2 54.72018762892823 -226.5135901832423 2.8366 0.1144 10277 +10279 2 55.00732974691267 -227.69108058049522 2.8136 0.1144 10278 +10280 2 55.111608436339544 -228.91594283697546 2.8118 0.1144 10279 +10281 2 55.012878546208356 -230.1466210784117 2.8118 0.1144 10280 +10282 2 54.79114589752347 -231.35717858064382 2.8118 0.1144 10281 +10283 2 41.580931418869994 -190.18763424504468 7.5233 0.1144 10175 +10284 2 41.805086878766765 -188.9049797690932 7.2432 0.1144 10283 +10285 2 42.64316200418346 -188.42902796747165 7.0627 0.1144 10284 +10286 2 43.702897651219146 -187.69326324663564 7.0206 0.1144 10285 +10287 2 44.830925183649626 -187.93879416073887 7.0056 0.1144 10286 +10288 2 45.893758271642284 -186.63878857662513 6.9835 0.1144 10287 +10289 2 46.97834004236606 -187.10344963395292 6.9351 0.1144 10288 +10290 2 47.48782932838479 -186.07401956213394 6.8532 0.1144 10289 +10291 2 48.57736153601536 -185.67088295447576 6.6527 0.1144 10290 +10292 2 49.65061650126149 -185.7949264791413 6.3332 0.1144 10291 +10293 2 50.71354433680946 -185.2724756424132 6.0259 0.1144 10292 +10294 2 51.54445308431295 -184.68882922505665 5.745 0.1144 10293 +10295 2 51.934588900729864 -183.29204657360975 5.5136 0.1144 10294 +10296 2 51.9378797184726 -182.088881669477 5.3853 0.1144 10295 +10297 2 51.613675421533415 -181.20022787201242 5.3687 0.1144 10296 +10298 2 50.82254002810887 -180.31113061346537 5.3982 0.1144 10297 +10299 2 50.67744555447863 -179.17432107563832 5.4221 0.1144 10298 +10300 2 50.65725870202098 -177.9530339185632 5.429 0.1144 10299 +10301 2 50.96401787501097 -177.07953247074067 5.4102 0.1144 10300 +10302 2 51.626202107366716 -176.05876569189604 5.3604 0.1144 10301 +10303 2 52.27871602300319 -174.64494036190231 5.2186 0.1144 10302 +10304 2 53.09654602842859 -174.36879897565007 5.0547 0.1144 10303 +10305 2 53.58870385992414 -173.19157796571625 4.8926 0.1144 10304 +10306 2 54.35948377739354 -171.8912380147445 4.7286 0.1144 10305 +10307 2 55.40448724843972 -171.9196062122325 4.561 0.1144 10306 +10308 2 55.89277224596995 -170.6592852174506 4.2468 0.1144 10307 +10309 2 56.42460080760917 -169.40637897406774 3.8813 0.1144 10308 +10310 2 56.17368269118688 -168.11037038759133 3.1658 0.1144 10309 +10311 2 55.68782477170028 -167.36021050004098 3.0523 0.1144 10310 +10312 2 55.746335044553845 -166.23241744485543 2.9161 0.1144 10311 +10313 2 56.46526692150718 -164.96853435425356 2.7988 0.1144 10312 +10314 2 57.20935003642783 -164.54388059733526 2.642 0.1144 10313 +10315 2 57.697452052741795 -163.3579921958547 2.5035 0.1144 10314 +10316 2 57.71206336416803 -162.15765251753066 2.4074 0.1144 10315 +10317 2 57.69184956787432 -160.96216313166633 2.353 0.1144 10316 +10318 2 57.98561793636106 -159.60990790515336 2.329 0.1144 10317 +10319 2 58.57649170938494 -158.37971616266873 2.3304 0.1144 10318 +10320 2 59.23709662334272 -157.84333882579102 2.3568 0.1144 10319 +10321 2 59.952731699401006 -156.67350522426796 2.3972 0.1144 10320 +10322 2 60.733256049103076 -155.6371751927127 2.4554 0.1144 10321 +10323 2 61.70997159198845 -155.35082028062595 2.5271 0.1144 10322 +10324 2 62.30179722534264 -153.9606049817567 2.6878 0.1144 10323 +10325 2 62.07947607909629 -152.93961877628664 2.83 0.1144 10324 +10326 2 61.79487776342835 -151.9770524877489 2.9515 0.1144 10325 +10327 2 61.99720898703616 -150.67713005135346 3.3743 0.1144 10326 +10328 2 57.03303476904951 -170.2227598754336 3.5821 0.1144 10309 +10329 2 58.09273997573067 -169.96840707087588 3.2789 0.1144 10328 +10330 2 59.111019404306006 -169.78015347679118 3.0323 0.1144 10329 +10331 2 60.215196348537674 -169.38734880274052 2.8565 0.1144 10330 +10332 2 61.353581507535736 -169.9828701648364 2.7427 0.1144 10331 +10333 2 62.486406644840436 -169.7285366874111 2.6596 0.1144 10332 +10334 2 63.54299028200434 -170.42479951052042 2.5679 0.1144 10333 +10335 2 64.5736744341289 -170.2681148597868 2.4487 0.1144 10334 +10336 2 65.44720391168045 -171.95287651123093 2.2798 0.1144 10335 +10337 2 66.37317789275988 -173.11078935796465 2.1559 0.1144 10336 +10338 2 67.41516190652604 -173.042972694356 2.1029 0.1144 10337 +10339 2 68.32971433457249 -174.30673212623498 2.1623 0.1144 10338 +10340 2 69.41855133693092 -174.06533395080038 2.247 0.1144 10339 +10341 2 70.52729247619594 -174.79113926151524 2.3545 0.1144 10340 +10342 2 71.42121318977658 -174.75072980242015 2.4796 0.1144 10341 +10343 2 71.81813790319046 -176.31567011318998 2.6118 0.1144 10342 +10344 2 72.63431646315198 -176.99856612800613 2.772 0.1144 10343 +10345 2 73.56983906955934 -177.41577876711213 3.0179 0.1144 10344 +10346 2 74.22447612962344 -178.88218675727603 3.3078 0.1144 10345 +10347 2 75.05667882994462 -178.48933798178348 3.6791 0.1144 10346 +10348 2 76.05798645463521 -178.66375241358438 4.0243 0.1144 10347 +10349 2 76.98037889396714 -178.56966543523944 4.2885 0.1144 10348 +10350 2 77.775611460643 -179.72049362876294 4.4792 0.1144 10349 +10351 2 78.87595563651996 -179.6512461629888 4.613 0.1144 10350 +10352 2 79.93060949253037 -179.45744559499025 4.7159 0.1144 10351 +10353 2 80.95122705168995 -178.62150587524246 4.8071 0.1144 10352 +10354 2 81.76661381596193 -177.82507562948345 4.9135 0.1144 10353 +10355 2 82.67846632875279 -177.3939583851743 5.0532 0.1144 10354 +10356 2 83.67577519381055 -177.16866626110505 5.3601 0.1144 10355 +10357 2 84.53101454652817 -177.88541041398784 5.6693 0.1144 10356 +10358 2 85.64358464249926 -177.42258298136315 5.9836 0.1144 10357 +10359 2 86.16706334240135 -178.16584024110935 6.3241 0.1144 10358 +10360 2 86.37143969420428 -179.33764020040218 6.7748 0.1144 10359 +10361 2 87.3325946219936 -179.2252536515529 7.1885 0.1144 10360 +10362 2 88.22698661067639 -180.46047040016174 7.5947 0.1144 10361 +10363 2 88.55201397048778 -181.422164449959 7.953 0.1144 10362 +10364 2 89.25925136935967 -181.9655374891538 8.297 0.1144 10363 +10365 2 89.59603363277833 -183.2053099065482 8.7089 0.1144 10364 +10366 2 90.73416780474048 -183.10827505363022 9.0482 0.1144 10365 +10367 2 91.85325333576856 -183.08803898865506 9.3601 0.1144 10366 +10368 2 92.99117097479818 -182.61636103997992 9.6644 0.1144 10367 +10369 2 94.12998984343318 -183.02409065065427 9.9798 0.1144 10368 +10370 2 95.13083000467029 -182.15804119547943 10.3785 0.1144 10369 +10371 2 95.76014353720646 -182.01426294208417 11.0737 0.1144 10370 +10372 2 96.6288561593714 -181.77842181479076 11.8974 0.1144 10371 +10373 2 97.66509024721756 -181.00056043331978 12.6425 0.1144 10372 +10374 2 98.74826320275679 -180.89248756663875 13.2251 0.1144 10373 +10375 2 99.84862825024695 -180.46452046057126 13.6801 0.1144 10374 +10376 2 100.85074531784875 -180.04652056507564 14.0742 0.1144 10375 +10377 2 101.8130227922381 -179.0068312903046 14.3902 0.1144 10376 +10378 2 102.91584795779002 -178.8963554150527 14.6185 0.1144 10377 +10379 2 104.05648281161112 -178.8767991492162 14.8104 0.1144 10378 +10380 2 105.19466130250404 -178.7571146245141 14.988 0.1144 10379 +10381 2 106.30971470523932 -178.79521414459956 15.1575 0.1144 10380 +10382 2 107.39236225843314 -178.15966902822566 15.3808 0.1144 10381 +10383 2 108.47426787634903 -178.45053349945871 15.6937 0.1144 10382 +10384 2 109.54563905268978 -177.64413237289224 16.0775 0.1144 10383 +10385 2 110.64094860921881 -178.16948114153294 16.4939 0.1144 10384 +10386 2 111.71991238188645 -178.09749707294685 16.8411 0.1144 10385 +10387 2 112.77640828357585 -178.79569271639073 17.1333 0.1144 10386 +10388 2 113.87880329252414 -178.6017416798107 17.3877 0.1144 10387 +10389 2 114.98594157208773 -178.43417671080198 17.6656 0.1144 10388 +10390 2 116.04237627793802 -178.9743081580701 17.971 0.1144 10389 +10391 2 117.09818822071225 -178.7980778604794 18.3444 0.1144 10390 +10392 2 117.97503882981958 -179.3680498570811 18.8768 0.1144 10391 +10393 2 118.21727949532148 -180.6013800803788 19.5547 0.1144 10392 +10394 2 118.92614308818261 -181.26489119644074 20.1848 0.1144 10393 +10395 2 120.04648520866354 -181.7509013921088 21.074 0.1144 10394 +10396 2 120.77319198191728 -182.36790426511263 21.6034 0.1144 10395 +10397 2 120.96651283219033 -182.5839456777788 22.6934 0.1144 10396 +10398 2 121.458053056934 -183.13282779251574 22.9867 0.1144 10397 +10399 2 121.95044328838593 -184.38020600236965 23.1155 0.1144 10398 +10400 2 122.44198351312957 -185.75949714751798 23.2628 0.1144 10399 +10401 2 122.9198278067555 -186.6434541679012 23.3974 0.1144 10400 +10402 2 123.38552499079238 -187.47757334322762 23.497 0.1144 10401 +10403 2 123.63541968803143 -188.72715408013966 23.5633 0.1144 10402 +10404 2 123.4962300547871 -189.86698405073508 23.5993 0.1144 10403 +10405 2 123.30116726481485 -191.02242699234938 23.6149 0.1144 10404 +10406 2 122.8747386467436 -192.34281867466478 23.619 0.1144 10405 +10407 2 122.31538361180324 -193.56359185904304 23.6191 0.1144 10406 +10408 2 121.30469467069395 -182.25952689479368 21.9595 0.1144 10396 +10409 2 121.47451390526257 -182.03822705424537 23.501 0.1144 10408 +10410 2 121.63707946811508 -181.6334689234426 24.2558 0.1144 10409 +10411 2 121.60158366883998 -180.8301227859652 24.4954 0.1144 10410 +10412 2 122.66066511607224 -181.0016603275137 24.5736 0.1144 10411 +10413 2 123.41454734517025 -179.84573953160518 24.6178 0.1144 10412 +10414 2 124.24366429256293 -179.2017721999716 24.71 0.1144 10413 +10415 2 125.18473797665023 -178.5095947298973 24.8098 0.1144 10414 +10416 2 126.20705634349892 -178.04692906969964 24.8552 0.1144 10415 +10417 2 127.2115488485349 -177.48339651673456 25.0259 0.1144 10416 +10418 2 128.12415667699355 -177.16208733319564 25.3935 0.1144 10417 +10419 2 128.53078588357087 -177.2215989702088 25.7504 0.1144 10418 +10420 2 128.08776038587075 -175.93929396694273 26.059 0.1144 10419 +10421 2 128.21816375900673 -174.83910880172988 26.2961 0.1144 10420 +10422 2 128.5134708820943 -173.83638654641467 26.4684 0.1144 10421 +10423 2 128.2880732230191 -172.618959031491 26.6298 0.1144 10422 +10424 2 127.83044710554839 -171.2377692810452 26.7441 0.1144 10423 +10425 2 127.8678645122768 -170.08269089228062 26.816 0.1144 10424 +10426 2 128.01589133244048 -168.9840912280614 26.8507 0.1144 10425 +10427 2 127.84849879075875 -167.75586899647698 26.857 0.1144 10426 +10428 2 127.6236946338343 -166.7286955900905 26.8389 0.1144 10427 +10429 2 127.39889018082377 -165.70738503139694 26.8003 0.1144 10428 +10430 2 127.17246634380456 -164.69398652943696 26.7278 0.1144 10429 +10431 2 127.88260535276933 -163.43972548449892 26.4312 0.1144 10430 +10432 2 121.8709546634712 -182.62146233283897 22.1808 0.1144 10408 +10433 2 122.81312150239364 -183.54278179000806 22.3111 0.1144 10432 +10434 2 123.76825851377734 -183.9545776133226 22.3702 0.1144 10433 +10435 2 124.80218528303875 -184.66026868330084 22.3605 0.1144 10434 +10436 2 125.81107194061006 -184.98847490090586 22.2281 0.1144 10435 +10437 2 126.8248783361185 -185.60964445573705 22.0614 0.1144 10436 +10438 2 127.876640535934 -186.02625764459717 21.9397 0.1144 10437 +10439 2 128.85507599143546 -186.62983497197922 21.8861 0.1144 10438 +10440 2 129.3489271068412 -187.45606805634196 21.9024 0.1144 10439 +10441 2 129.5728812570573 -188.757645606587 21.9875 0.1144 10440 +10442 2 129.76777323421834 -190.02731715366752 22.1718 0.1144 10441 +10443 2 130.26245422247683 -191.25933800720242 22.4918 0.1144 10442 +10444 2 130.9372283311019 -192.65328741394873 22.9356 0.1144 10443 +10445 2 131.8518180659983 -193.33241124308668 23.3734 0.1144 10444 +10446 2 132.85127788361888 -193.80892973477086 23.7599 0.1144 10445 +10447 2 133.8885515863138 -194.39028184648103 24.0995 0.1144 10446 +10448 2 134.92173947514414 -194.87958681445815 24.4159 0.1144 10447 +10449 2 135.86862619387912 -195.53136631629798 24.7908 0.1144 10448 +10450 2 136.86064610162003 -195.5397976845474 25.2932 0.1144 10449 +10451 2 137.84216576327395 -195.49713748678522 25.8932 0.1144 10450 +10452 2 138.69813781116994 -194.4432689614974 26.3693 0.1144 10451 +10453 2 139.60588052712126 -194.0731778808689 26.7135 0.1144 10452 +10454 2 140.549363200359 -193.00555150651513 26.936 0.1144 10453 +10455 2 141.57807906600692 -192.54041744298453 27.0512 0.1144 10454 +10456 2 142.4915005341819 -191.2831646531929 27.0869 0.1144 10455 +10457 2 143.237172832328 -191.15758747097496 27.0819 0.1144 10456 +10458 2 144.04192755472292 -189.7406288863911 27.0716 0.1144 10457 +10459 2 144.84916232693473 -188.97130568191807 27.0575 0.1144 10458 +10460 2 145.7869727618433 -188.56447839644986 27.0373 0.1144 10459 +10461 2 146.8840173215495 -187.92960587467297 27.0081 0.1144 10460 +10462 2 147.95344677009302 -187.71075851692888 26.9673 0.1144 10461 +10463 2 148.97243102919677 -186.99738844000183 26.9147 0.1144 10462 +10464 2 150.1154992593439 -187.11372894566247 26.8517 0.1144 10463 +10465 2 149.82033825229416 -188.2176707615984 26.7207 0.1144 10464 +10466 2 149.45932204963773 -189.55333148211417 26.5329 0.1144 10465 +10467 2 149.2570008929577 -190.52085531307938 26.3494 0.1144 10466 +10468 2 149.24320307566234 -191.72647423612239 26.2233 0.1144 10467 +10469 2 149.22940170533366 -192.92906588936418 26.165 0.1144 10468 +10470 2 149.17195847030735 -194.07951227949383 26.1905 0.1144 10469 +10471 2 149.0077219153924 -195.10583518430155 26.2679 0.1144 10470 +10472 2 148.69443063253743 -195.93840329066043 26.3481 0.1144 10471 +10473 2 148.2858346862595 -196.69213104492187 26.4186 0.1144 10472 +10474 2 147.9652686579749 -198.0694335420032 26.4761 0.1144 10473 +10475 2 147.68778739670006 -199.46291185366346 26.5227 0.1144 10474 +10476 2 147.4076914745425 -200.8621242616162 26.5612 0.1144 10475 +10477 2 147.1293634635066 -202.252741492178 26.5984 0.1144 10476 +10478 2 146.8509645939045 -203.20295489361928 26.6379 0.1144 10477 +10479 2 146.5726362867825 -204.0920278660733 26.6786 0.1144 10478 +10480 2 146.29508446302754 -204.98040072263296 26.7196 0.1144 10479 +10481 2 146.01668559342542 -205.86883452843966 26.7605 0.1144 10480 +10482 2 145.73750727959515 -207.19885003420467 26.8015 0.1144 10481 +10483 2 145.45833222271204 -208.60048726018164 26.8424 0.1144 10482 +10484 2 145.18070954039095 -209.9986003981357 26.8833 0.1144 10483 +10485 2 144.90231067078884 -211.39882978077918 26.9243 0.1144 10484 +10486 2 144.6239826597529 -212.5018495360299 26.9653 0.1144 10485 +10487 2 144.34480434592263 -213.39011292117016 27.0062 0.1144 10486 +10488 2 144.0664054763205 -214.28022696069314 27.0471 0.1144 10487 +10489 2 143.78800660671843 -215.17003102251743 27.0881 0.1144 10488 +10490 2 143.5096077371163 -216.34315603042057 27.1291 0.1144 10489 +10491 2 143.2312797260804 -217.74609151506309 27.17 0.1144 10490 +10492 2 142.95288085647832 -219.14849980900806 27.2109 0.1144 10491 +10493 2 142.6737731051281 -220.55087476934904 27.2519 0.1144 10492 +10494 2 142.395374235526 -221.81861595296732 27.2928 0.1144 10493 +10495 2 142.11697536592388 -222.71374734560905 27.3337 0.1144 10494 +10496 2 141.83864735488797 -223.60592562204613 27.3746 0.1144 10495 +10497 2 141.56024848528585 -224.49829914662826 27.4155 0.1144 10496 +10498 2 141.28184961568377 -225.53964535984449 27.4564 0.1144 10497 +10499 2 141.00267130185347 -226.91338814701157 27.4973 0.1144 10498 +10500 2 140.72427243225133 -228.3191465483122 27.5381 0.1144 10499 +10501 2 140.44594442121544 -229.72437623925026 27.5789 0.1144 10500 +10502 2 140.16754555161333 -231.031015537036 27.6196 0.1144 10501 +10503 2 139.88914668201124 -232.1783892748077 27.6602 0.1144 10502 +10504 2 139.60996836818094 -233.33151889785228 27.7007 0.1144 10503 +10505 2 139.3315694985788 -234.489788945516 27.7409 0.1144 10504 +10506 2 139.05324148754295 -235.76775891082346 27.781 0.1144 10505 +10507 2 138.7748426179408 -237.15167094460207 27.8207 0.1144 10506 +10508 2 138.49566430411053 -238.30035733657388 27.8598 0.1144 10507 +10509 2 138.21726543450842 -239.4444418874918 27.8982 0.1144 10508 +10510 2 137.9388665649063 -240.51161393991748 27.9357 0.1144 10509 +10511 2 137.6605385538704 -241.41905504138037 27.9717 0.1144 10510 +10512 2 137.38213968426828 -242.59402575832144 28.0059 0.1144 10511 +10513 2 137.102961370438 -243.77370640432605 28.0375 0.1144 10512 +10514 2 136.90470283892012 -244.98074519698304 28.0652 0.1144 10513 +10515 2 136.84882885536405 -246.20919816662825 28.0862 0.1144 10514 +10516 2 136.70884941487765 -247.50921496216688 28.0997 0.1144 10515 +10517 2 136.79272013695248 -248.5006803560093 28.107 0.1144 10516 +10518 2 137.3659253362337 -249.45356200734523 28.1095 0.1144 10517 +10519 2 137.81867908954504 -250.88201402507104 28.1086 0.1144 10518 +10520 2 138.01921961814645 -252.10208966187741 28.1053 0.1144 10519 +10521 2 137.9261282125279 -253.28009449766864 28.1002 0.1144 10520 +10522 2 138.00123961833043 -254.44983310006927 28.093 0.1144 10521 +10523 2 138.4054695740433 -255.5479170531886 28.0829 0.1144 10522 +10524 2 138.65697714139665 -256.4937289124605 28.0686 0.1144 10523 +10525 2 138.77016328413683 -257.6689546353623 28.0493 0.1144 10524 +10526 2 138.8955101564272 -258.83847332524135 28.0218 0.1144 10525 +10527 2 139.00869659525347 -260.008189243115 27.9824 0.1144 10526 +10528 2 138.8727187861905 -261.2042834074 27.9274 0.1144 10527 +10529 2 138.71892547832863 -262.4088630650217 27.8548 0.1144 10528 +10530 2 138.77230088150316 -263.59439009415274 27.764 0.1144 10529 +10531 2 138.67271367649673 -264.77426784759183 27.5938 0.1144 10530 +10532 2 138.47596014576314 -265.9765586908299 27.351 0.1144 10531 +10533 2 138.30110516893225 -267.2022285200289 27.0904 0.1144 10532 +10534 2 137.81791558238842 -268.54147045131316 26.8622 0.1144 10533 +10535 2 137.34278394063608 -269.4764210579727 26.6531 0.1144 10534 +10536 2 137.11058110106205 -270.53686254324106 26.4986 0.1144 10535 +10537 2 136.7025894241494 -271.4402472125929 26.4312 0.1144 10536 +10538 2 136.1020249044645 -272.6883039024642 27.4234 0.1144 10537 +10539 2 135.56499206613603 -273.84806106759635 27.9124 0.1144 10538 +10540 2 135.02431008444103 -274.2502833398015 28.6443 0.1144 10539 +10541 2 134.10019558065022 -274.8038728767824 29.2939 0.1144 10540 +10542 2 133.15255198166162 -275.72243559771096 29.8962 0.1144 10541 +10543 2 132.1709540076891 -275.9279358808428 30.3761 0.1144 10542 +10544 2 131.21527033719016 -277.09657106333896 30.7006 0.1144 10543 +10545 2 130.1198691444676 -276.8919769813487 30.8862 0.1144 10544 +10546 2 128.99429136708494 -277.5576119799615 30.9845 0.1144 10545 +10547 2 127.88821401565482 -277.4395691147297 31.0537 0.1144 10546 +10548 2 126.78547708376385 -277.5973817453509 31.1069 0.1144 10547 +10549 2 125.66968154365034 -278.0402735906255 31.1822 0.1144 10548 +10550 2 124.54721758594648 -277.95977189919876 31.3191 0.1144 10549 +10551 2 123.91770469347222 -278.39753901620037 31.4457 0.1144 10550 +10552 2 122.91909030059804 -279.1569413466797 31.5644 0.1144 10551 +10553 2 121.92040534524384 -279.5075447718463 31.6728 0.1144 10552 +10554 2 120.92172038988959 -280.4161796143854 31.7677 0.1144 10553 +10555 2 119.92303543453535 -280.6168706288965 31.8472 0.1144 10554 +10556 2 118.92357103495293 -281.7642567206781 31.9124 0.1144 10555 +10557 2 117.98007829478746 -283.31395380243845 31.9656 0.1144 10556 +10558 2 117.08771869768184 -283.2789931643968 32.0015 0.1144 10557 +10559 2 116.20585623530141 -284.6404655986094 32.0225 0.1144 10558 +10560 2 115.32406137454002 -285.13522839976355 32.0312 0.1144 10559 +10561 2 114.44304595800676 -285.86751262085363 32.0309 0.1144 10560 +10562 2 113.56040405139815 -287.04037314269175 32.0242 0.1144 10561 +10563 2 112.66882715546795 -287.1082873376405 32.013 0.1144 10562 +10564 2 111.60501881634232 -288.2903157484202 31.9962 0.1144 10563 +10565 2 110.48681053194471 -287.86524250356945 31.9701 0.1144 10564 +10566 2 109.36937843482805 -288.62109547340526 31.9362 0.1144 10565 +10567 2 108.25109633100315 -288.57021914906915 31.8965 0.1144 10566 +10568 2 107.13203774381111 -288.9570842513821 31.8531 0.1144 10567 +10569 2 106.08640118414583 -288.63394349219425 31.7268 0.1144 10568 +10570 2 106.10981563258869 -287.41392811874323 31.4924 0.1144 10569 +10571 2 124.53074330071316 -278.2067886672395 31.4605 0.1144 10550 +10572 2 124.44891159713973 -279.3930910206254 31.2334 0.1144 10571 +10573 2 124.3671507521325 -280.57853564502784 31.1363 0.1144 10572 +10574 2 124.28461371984427 -281.76518977995585 31.0223 0.1144 10573 +10575 2 124.20292343731712 -282.9490604469011 30.8988 0.1144 10574 +10576 2 124.1211625923099 -284.12994649262913 30.7731 0.1144 10575 +10577 2 124.03940174730268 -285.36215340359536 30.6522 0.1144 10576 +10578 2 123.95849090900373 -286.6234470511892 30.5416 0.1144 10577 +10579 2 123.97297552444917 -287.78991046104477 30.4634 0.1144 10578 +10580 2 123.83223351664287 -289.08517618498195 30.413 0.1144 10579 +10581 2 123.62903561151882 -290.36645196799566 30.3677 0.1144 10580 +10582 2 138.25845389164928 -270.5459926544075 26.3179 0.1144 10536 +10583 2 139.403144560652 -270.0311678127098 26.2567 0.1144 10582 +10584 2 140.53100910013632 -269.97459277969233 26.146 0.1144 10583 +10585 2 141.66491504081478 -269.8132691724359 26.0235 0.1144 10584 +10586 2 142.75626041835574 -269.6928983666405 25.9176 0.1144 10585 +10587 2 143.8785413948433 -269.06416633388034 25.8236 0.1144 10586 +10588 2 144.98338196203431 -269.9798027527335 25.7357 0.1144 10587 +10589 2 145.77107955614503 -269.02492565987626 25.6495 0.1144 10588 +10590 2 146.56787108130382 -268.0945739762229 25.5616 0.1144 10589 +10591 2 147.26403011858514 -267.76795257056307 25.4592 0.1144 10590 +10592 2 147.9709336164797 -266.2983572489043 25.2215 0.1144 10591 +10593 2 148.65109214377537 -265.3283939518603 24.9531 0.1144 10592 +10594 2 149.32373650009254 -264.9541165955748 24.7144 0.1144 10593 +10595 2 150.1902596643716 -263.53211764892734 24.5011 0.1144 10594 +10596 2 151.19070010935957 -263.5818506133085 24.223 0.1144 10595 +10597 2 152.12051053836842 -262.5362396524308 23.9317 0.1144 10596 +10598 2 153.07123766226678 -262.04974137541274 23.6859 0.1144 10597 +10599 2 154.07077292041538 -261.41696697934344 23.4664 0.1144 10598 +10600 2 155.00371454419775 -260.62965856537284 23.2223 0.1144 10599 +10601 2 155.8977782059397 -260.28161107126414 22.9131 0.1144 10600 +10602 2 156.77641167114433 -259.0386029517555 22.5935 0.1144 10601 +10603 2 157.42485940858526 -257.844740425828 22.2992 0.1144 10602 +10604 2 158.07403971466314 -256.26196637485356 21.9621 0.1144 10603 +10605 2 158.9086550462386 -256.39067326069556 21.4667 0.1144 10604 +10606 2 159.9017391200162 -255.43722587626718 21.0304 0.1144 10605 +10607 2 160.9328742438426 -255.27022324682827 20.7068 0.1144 10606 +10608 2 162.07178786003303 -254.76417217120877 20.4747 0.1144 10607 +10609 2 163.21633009590857 -255.45946866917728 20.3156 0.1144 10608 +10610 2 164.35553831777884 -254.59707045366326 20.2177 0.1144 10609 +10611 2 165.49234465656536 -255.6297672589991 20.1581 0.1144 10610 +10612 2 166.50947153985766 -255.41379510988946 20.0884 0.1144 10611 +10613 2 167.63427644342144 -256.25864239364483 19.9889 0.1144 10612 +10614 2 168.71502925743908 -256.225146576279 19.8503 0.1144 10613 +10615 2 169.73294239494015 -257.10569891218273 19.6692 0.1144 10614 +10616 2 170.87595969827623 -256.94716972782186 19.4424 0.1144 10615 +10617 2 171.08801696913756 -258.05205823697673 20.3308 0.1144 10616 +10618 2 171.4858865308008 -259.3169566018565 20.3308 0.1144 10617 +10619 2 171.81253051586015 -260.0935595313211 20.3308 0.1144 10618 +10620 2 172.36954641033176 -260.7833411025128 20.3308 0.1144 10619 +10621 2 172.13389478370215 -261.9341671920002 20.3308 0.1144 10620 +10622 2 171.9332374239474 -263.18209297477534 20.3308 0.1144 10621 +10623 2 171.9307497373217 -264.340165865411 20.3308 0.1144 10622 +10624 2 171.91695192002635 -265.52741675553114 20.3308 0.1144 10623 +10625 2 171.43862127978122 -267.03109605467176 20.3308 0.1144 10624 +10626 2 170.83473351355164 -268.18625313061494 20.3308 0.1144 10625 +10627 2 169.91228251060002 -268.23178622563927 20.3308 0.1144 10626 +10628 2 168.7725080265011 -268.9116398116153 20.3308 0.1144 10627 +10629 2 167.6287450327534 -268.40904206447436 20.3308 0.1144 10628 +10630 2 166.48406768762567 -268.6249541006992 20.3308 0.1144 10629 +10631 2 165.34023413139786 -268.6467554777857 20.3308 0.1144 10630 +10632 2 164.20023254925218 -268.2376949787126 20.3308 0.1144 10631 +10633 2 163.05943188720926 -268.7066827183817 20.3308 0.1144 10632 +10634 2 161.93063867609706 -267.69982776009357 20.3308 0.1144 10633 +10635 2 171.19699943178193 -257.6069010509701 18.9993 0.1144 10616 +10636 2 172.00553778206768 -257.8019268173423 18.3982 0.1144 10635 +10637 2 172.5445993133546 -258.53149276603585 17.7561 0.1144 10636 +10638 2 173.13877163614984 -260.1564834172779 17.2273 0.1144 10637 +10639 2 173.83127656294621 -260.7411410980651 16.6665 0.1144 10638 +10640 2 174.79196402728198 -260.71795280727304 16.2631 0.1144 10639 +10641 2 175.8404266674416 -261.73402366540296 16.0089 0.1144 10640 +10642 2 176.8736919287326 -261.30532970655526 15.8577 0.1144 10641 +10643 2 177.79082951716524 -261.92612376945135 15.7658 0.1144 10642 +10644 2 178.68624392865837 -262.94588142384845 15.7028 0.1144 10643 +10645 2 179.64448539307986 -263.1986478449091 15.6577 0.1144 10644 +10646 2 180.65599096485394 -264.19048446346966 15.5927 0.1144 10645 +10647 2 181.7253529248083 -263.5535038909499 15.5028 0.1144 10646 +10648 2 182.69014337600308 -265.1535702157229 15.3871 0.1144 10647 +10649 2 183.81989845785841 -264.00228499379404 15.2474 0.1144 10648 +10650 2 184.70868319665556 -265.32082204212907 14.9715 0.1144 10649 +10651 2 185.65169722701057 -264.7287904711201 14.5179 0.1144 10650 +10652 2 186.5970898061616 -266.15840716996905 14.1532 0.1144 10651 +10653 2 187.47868403848514 -266.32381823220123 13.8784 0.1144 10652 +10654 2 188.551409606681 -267.2948042584947 13.6863 0.1144 10653 +10655 2 189.67698388754522 -266.76459839914156 13.569 0.1144 10654 +10656 2 190.776203143218 -267.29928532557136 13.5169 0.1144 10655 +10657 2 191.7207655534301 -267.7309220541343 13.5009 0.1144 10656 +10658 2 192.5329399253077 -268.6186153904487 13.4796 0.1144 10657 +10659 2 193.46537871071922 -269.46441301079454 13.4501 0.1144 10658 +10660 2 194.60337777342926 -268.3159629211816 13.4096 0.1144 10659 +10661 2 195.70290238295243 -268.44341223497764 13.3514 0.1144 10660 +10662 2 196.76166929274956 -267.3754949787977 13.2675 0.1144 10661 +10663 2 197.7701732940364 -266.81742145434316 13.1537 0.1144 10662 +10664 2 198.61550323312753 -266.26878825488706 13.0076 0.1144 10663 +10665 2 199.70202036333953 -265.51819467891875 12.8107 0.1144 10664 +10666 2 200.73235872435794 -265.74092427586845 12.4204 0.1144 10665 +10667 2 201.69588316294391 -264.9610709827469 11.9267 0.1144 10666 +10668 2 202.3581210808715 -264.66462516121646 11.5058 0.1144 10667 +10669 2 203.10947894122182 -263.26495668061756 11.115 0.1144 10668 +10670 2 203.90861590513177 -262.30569870249695 10.7421 0.1144 10669 +10671 2 204.7133910574683 -262.08837525030833 10.4264 0.1144 10670 +10672 2 205.46801166881102 -260.4708048084275 10.2061 0.1144 10671 +10673 2 205.98276992387645 -259.2198860804092 10.0339 0.1144 10672 +10674 2 206.59069337143217 -258.3524268723271 9.874 0.1144 10673 +10675 2 207.32174532015276 -257.35713898279255 9.7192 0.1144 10674 +10676 2 208.35136892930046 -256.8008533740113 9.5499 0.1144 10675 +10677 2 209.42937802636214 -256.77074400942746 9.2786 0.1144 10676 +10678 2 210.3229872008398 -256.43696785446963 8.8127 0.1144 10677 +10679 2 210.55492874687894 -255.56073685328198 8.392 0.1144 10678 +10680 2 210.35688209015592 -254.36289581672924 8.0413 0.1144 10679 +10681 2 210.89124162842307 -253.4751507968174 7.7506 0.1144 10680 +10682 2 211.5234899941266 -252.6267414828336 7.512 0.1144 10681 +10683 2 212.03499201209422 -251.4872994229583 7.3114 0.1144 10682 +10684 2 212.57532165131775 -250.39982758495012 6.9708 0.1144 10683 +10685 2 213.27589190109907 -249.84903312841703 6.5493 0.1144 10684 +10686 2 214.11481732931014 -249.0872770491759 6.1982 0.1144 10685 +10687 2 214.9893105008059 -247.48181247777825 5.9354 0.1144 10686 +10688 2 215.82085331425728 -246.0251801881717 5.7534 0.1144 10687 +10689 2 216.54619927083206 -245.42378744724437 5.6436 0.1144 10688 +10690 2 217.41265512957824 -244.6855783670503 5.5956 0.1144 10689 +10691 2 218.26455448538428 -243.5199239961089 5.5705 0.1144 10690 +10692 2 219.07178925759615 -243.2220001678956 5.5383 0.1144 10691 +10693 2 219.89843927694648 -241.86119160686485 5.4938 0.1144 10692 +10694 2 220.8939393519554 -241.71838668278028 5.4364 0.1144 10693 +10695 2 222.01731786313962 -241.1478265127621 5.3671 0.1144 10694 +10696 2 223.07212963194792 -242.14294178689053 5.2328 0.1144 10695 +10697 2 223.85918246845506 -242.46137757599803 5.0056 0.1144 10696 +10698 2 224.9744116007546 -242.48227806013455 4.8232 0.1144 10697 +10699 2 226.06233099478573 -242.6311077587689 4.6866 0.1144 10698 +10700 2 227.20448417326605 -242.81247490607956 4.5923 0.1144 10699 +10701 2 228.32026964645183 -242.38594135982072 4.5181 0.1144 10700 +10702 2 184.0022550951094 -263.976957008091 15.2113 0.1144 10649 +10703 2 184.44862647765353 -263.52935503696426 14.4347 0.1144 10702 +10704 2 184.54340536708614 -262.4273668833859 14.1374 0.1144 10703 +10705 2 184.556282319107 -261.188896400297 13.9105 0.1144 10704 +10706 2 184.77809915023306 -260.2115075550937 13.7503 0.1144 10705 +10707 2 184.90915722135895 -259.11553121018267 13.6524 0.1144 10706 +10708 2 185.09934439022456 -257.93218733826615 13.6117 0.1144 10707 +10709 2 185.4562137852776 -256.4775452066289 13.6235 0.1144 10708 +10710 2 185.67477112235855 -255.12634747186837 13.6523 0.1144 10709 +10711 2 186.03886483421667 -253.67061065391306 13.693 0.1144 10710 +10712 2 186.7060088701203 -253.03175953880742 13.7466 0.1144 10711 +10713 2 187.14626497552808 -252.37486279333018 13.8124 0.1144 10712 +10714 2 186.69521528685308 -250.7844080159296 13.9142 0.1144 10713 +10715 2 185.84683053337437 -250.19272787832222 14.1319 0.1144 10714 +10716 2 185.49839961887605 -249.46876504992974 14.3268 0.1144 10715 +10717 2 185.78566261923353 -248.0811366259864 14.4762 0.1144 10716 +10718 2 185.73717645712676 -246.98283325592433 14.5822 0.1144 10717 +10719 2 185.35153137751325 -246.02646764207702 14.6486 0.1144 10718 +10720 2 185.70438907421513 -244.84846769405652 14.6795 0.1144 10719 +10721 2 186.11149669451683 -243.36164192915544 14.6835 0.1144 10720 +10722 2 145.4552767867458 -270.79130292716695 26.664 0.1144 10588 +10723 2 146.0712864676047 -271.13750938768646 26.9863 0.1144 10722 +10724 2 146.62742185849865 -272.63836438674144 27.3289 0.1144 10723 +10725 2 146.81820078187292 -274.05771637516483 27.638 0.1144 10724 +10726 2 146.72512625316267 -275.1935121316523 27.8628 0.1144 10725 +10727 2 146.51315491361885 -276.18476504492213 28.009 0.1144 10726 +10728 2 146.5236815162849 -277.43888364720306 28.1182 0.1144 10727 +10729 2 151.21716539827395 -186.79713411684634 27.1848 0.1144 10464 +10730 2 152.2385692116423 -186.0711602593438 27.2153 0.1144 10729 +10731 2 153.28519206669725 -185.79592267620848 27.2593 0.1144 10730 +10732 2 154.36514263294094 -185.1452781993836 27.32 0.1144 10731 +10733 2 155.38329376224465 -184.9110343551089 27.4022 0.1144 10732 +10734 2 156.4673575843754 -184.2275196252976 27.5082 0.1144 10733 +10735 2 157.56782043426784 -184.41406926590025 27.686 0.1144 10734 +10736 2 158.59828497956897 -183.4524128005097 27.9614 0.1144 10735 +10737 2 159.4104765004817 -182.89265456244328 28.2279 0.1144 10736 +10738 2 160.3771419986687 -181.97215624050608 28.588 0.1144 10737 +10739 2 161.4530775156282 -182.17602522145648 28.8926 0.1144 10738 +10740 2 162.44532115143886 -181.05216153473035 29.1116 0.1144 10739 +10741 2 163.30040233274332 -180.57963149353978 29.2519 0.1144 10740 +10742 2 163.66467802944484 -179.82198197860734 29.33 0.1144 10741 +10743 2 163.6550085395537 -178.61881635227152 29.3686 0.1144 10742 +10744 2 163.5360964729125 -177.28289086075404 29.3765 0.1144 10743 +10745 2 163.57089872057176 -176.105630384044 29.3804 0.1144 10744 +10746 2 163.71977584352982 -175.05977277533827 29.3857 0.1144 10745 +10747 2 163.69150430454494 -173.81659729577945 29.3933 0.1144 10746 +10748 2 163.03109700164907 -172.18291201105612 29.4042 0.1144 10747 +10749 2 163.2480245917074 -171.1660030196109 29.4188 0.1144 10748 +10750 2 163.6494703366937 -170.4568774255319 29.4392 0.1144 10749 +10751 2 164.15771641364944 -169.79490467928076 29.4689 0.1144 10750 +10752 2 165.0049709450143 -167.9494120018894 29.568 0.1144 10751 +10753 2 165.8486406402135 -167.65233603468178 29.64 0.1144 10752 +10754 2 166.72568442400626 -166.7750542518849 29.7388 0.1144 10753 +10755 2 167.47545685626477 -165.58827794314556 29.9513 0.1144 10754 +10756 2 168.44259988483304 -165.75177297421146 30.1795 0.1144 10755 +10757 2 169.455058641952 -164.37256737387617 30.3769 0.1144 10756 +10758 2 170.39039258007688 -164.6380456865205 30.5452 0.1144 10757 +10759 2 171.19933447177198 -163.06928168933098 30.6916 0.1144 10758 +10760 2 171.88338350421384 -162.2704807419938 30.8238 0.1144 10759 +10761 2 172.94516223448232 -162.27951621916128 30.9557 0.1144 10760 +10762 2 174.03530126813865 -162.05746371904274 31.1968 0.1144 10761 +10763 2 175.04217602058932 -161.59494431252122 31.4625 0.1144 10762 +10764 2 176.00444668499816 -160.8715257507077 31.78 0.1144 10763 +10765 2 176.88878939929583 -160.52530305673164 32.0947 0.1144 10764 +10766 2 177.51207908878897 -158.98379256631105 32.314 0.1144 10765 +10767 2 178.0341289661924 -157.46022637390843 32.4388 0.1144 10766 +10768 2 178.34726520803997 -156.12581142983456 32.4736 0.1144 10767 +10769 2 178.60302664330834 -154.84063348159575 32.4341 0.1144 10768 +10770 2 178.48898990168766 -153.77213835121805 32.3229 0.1144 10769 +10771 2 178.3725510748829 -152.70955497581534 32.1532 0.1144 10770 +10772 2 178.1890264669966 -151.74244835659846 31.9376 0.1144 10771 +10773 2 178.0289019172789 -151.1815837332593 32.7552 0.1144 10772 +10774 2 177.82438294595644 -150.26949041707724 32.954 0.1144 10773 +10775 2 177.7710143527625 -149.2063372451287 33.0347 0.1144 10774 +10776 2 177.58177744093626 -148.28357460142507 33.1442 0.1144 10775 +10777 2 177.5608043342699 -147.18194430320716 33.285 0.1144 10776 +10778 2 177.80359234012974 -145.85857354505026 33.5121 0.1144 10777 +10779 2 178.181628218635 -144.45883543548138 33.8531 0.1144 10778 +10780 2 178.58394815540484 -143.04914555518897 34.2871 0.1144 10779 +10781 2 178.72078278115657 -141.83629158657817 34.7248 0.1144 10780 +10782 2 178.3706515571556 -141.10885852626532 35.1151 0.1144 10781 +10783 2 177.5730808598955 -141.1123582953577 35.4472 0.1144 10782 +10784 2 176.48649311068857 -140.52577795177413 35.8218 0.1144 10783 +10785 2 175.5390906148644 -140.94425886326218 36.3378 0.1144 10784 +10786 2 174.3982190942553 -140.2994808118447 36.7217 0.1144 10785 +10787 2 173.2620355185449 -141.21463561473274 37.2733 0.1144 10786 +10788 2 178.58243477269195 -151.59174299000435 31.5991 0.1144 10772 +10789 2 179.36286087832025 -151.3380295887703 31.0531 0.1144 10788 +10790 2 180.07647285941582 -150.87408928339735 30.3503 0.1144 10789 +10791 2 181.10791245374963 -149.6883084066803 29.7142 0.1144 10790 +10792 2 182.16346043329872 -149.90517118668564 29.2062 0.1144 10791 +10793 2 183.11251304957216 -148.9046244299139 28.5723 0.1144 10792 +10794 2 184.02436250751612 -148.99593512457994 27.9797 0.1144 10793 +10795 2 184.9958252579762 -147.85669770235336 27.386 0.1144 10794 +10796 2 185.9190585769466 -147.06475132354817 26.7035 0.1144 10795 +10797 2 185.90497417593673 -146.16777748095146 26.1264 0.1144 10796 +10798 2 186.1664211734093 -144.868957887457 25.6647 0.1144 10797 +10799 2 186.22120448876422 -143.97660044964826 25.0751 0.1144 10798 +10800 2 186.17032601231494 -142.88512265897103 24.6362 0.1144 10799 +10801 2 186.4211714647799 -141.7285487216647 24.318 0.1144 10800 +10802 2 186.11647340740092 -140.78933205794047 24.084 0.1144 10801 +10803 2 185.44260733836177 -140.65626375021571 23.8869 0.1144 10802 +10804 2 185.53244280296852 -139.44927248340642 23.7156 0.1144 10803 +10805 2 185.79219274788565 -138.10636839994666 23.5364 0.1144 10804 +10806 2 186.01486058209287 -136.85376239477782 23.208 0.1144 10805 +10807 2 186.80005699615825 -136.07320123280712 22.8258 0.1144 10806 +10808 2 187.5986244408924 -136.06290904306786 22.4268 0.1144 10807 +10809 2 188.2429490576188 -134.49989746134776 22.1036 0.1144 10808 +10810 2 189.00484135954423 -133.64554670214875 21.7829 0.1144 10809 +10811 2 189.41435491414944 -132.94427437343364 21.3699 0.1144 10810 +10812 2 163.93665259461358 -168.7330366053974 29.9956 0.1144 10751 +10813 2 163.63504516821104 -167.25251372427095 30.5379 0.1144 10812 +10814 2 163.7798934198235 -166.20544828086167 30.7518 0.1144 10813 +10815 2 164.03884349057083 -165.30021482292364 31.0108 0.1144 10814 +10816 2 164.29857300554633 -164.3235766564348 31.3102 0.1144 10815 +10817 2 163.42224448532232 -162.49766905638103 31.3228 0.1144 10816 +10818 2 162.64952460674192 -162.23164592513865 31.4874 0.1144 10817 +10819 2 161.87772559343597 -161.24041980067088 31.6907 0.1144 10818 +10820 2 161.58505996633556 -159.78823200440024 31.9682 0.1144 10819 +10821 2 161.44844678411988 -158.51291651228928 32.3011 0.1144 10820 +10822 2 161.31748896332516 -157.4758887935149 32.6614 0.1144 10821 +10823 2 160.74190832660972 -157.02104417908936 32.9762 0.1144 10822 +10824 2 160.70147635416083 -155.93040375630807 33.234 0.1144 10823 +10825 2 160.66028862437253 -154.85118725903476 33.7417 0.1144 10824 +10826 2 164.3718121974422 -163.3437375457785 31.6884 0.1144 10816 +10827 2 164.45850640034763 -162.15425855334712 32.1376 0.1144 10826 +10828 2 164.54512974468685 -160.96499337582134 32.6332 0.1144 10827 +10829 2 164.63012689503682 -159.77754191272416 33.1607 0.1144 10828 +10830 2 164.71682109794227 -158.58870386919995 33.6988 0.1144 10829 +10831 2 164.80266499805327 -157.39987057065167 34.2286 0.1144 10830 +10832 2 164.8892883423925 -156.21151867851307 34.7318 0.1144 10831 +10833 2 164.97598254529794 -155.02345903023055 35.2008 0.1144 10832 +10834 2 164.9226376389928 -153.95898951909544 35.6045 0.1144 10833 +10835 2 164.59196478258792 -153.05801778318502 35.891 0.1144 10834 +10836 2 164.25231687125074 -151.5850014252553 36.0861 0.1144 10835 +10837 2 163.99683767115692 -150.1368955178085 36.2169 0.1144 10836 +10838 2 163.79055108479895 -148.75912352806523 36.3107 0.1144 10837 +10839 2 163.61833660758236 -147.75215637770071 36.3944 0.1144 10838 +10840 2 163.3352939234236 -146.92360288476183 36.5036 0.1144 10839 +10841 2 162.8340665050523 -146.33741507831672 36.6422 0.1144 10840 +10842 2 162.32873965285538 -144.79545907803916 36.8026 0.1144 10841 +10843 2 161.8793602750001 -143.41242939282273 37.1073 0.1144 10842 +10844 2 161.139916682611 -143.26012909236297 37.4811 0.1144 10843 +10845 2 160.32451736477734 -142.168678984182 38.4028 0.1144 10844 +10846 2 118.26759520606049 -181.50641785562834 20.8074 0.1144 10394 +10847 2 117.24926878886407 -180.60455007767064 21.2284 0.1144 10846 +10848 2 116.22607948717905 -181.59353611401366 21.4205 0.1144 10847 +10849 2 115.32390084414085 -181.75614490945827 21.6598 0.1144 10848 +10850 2 114.43795512455635 -183.1077308662202 21.9701 0.1144 10849 +10851 2 113.390441346395 -182.4776765128155 22.2785 0.1144 10850 +10852 2 112.30254208621932 -182.68776071371477 22.5441 0.1144 10851 +10853 2 111.18252862132101 -182.0076557351071 22.7669 0.1144 10852 +10854 2 110.06099703386386 -182.14703592260616 22.9957 0.1144 10853 +10855 2 109.74105522021142 -180.96269667753313 23.2772 0.1144 10854 +10856 2 109.82281961825198 -179.79579855254127 23.498 0.1144 10855 +10857 2 110.29071026839122 -178.9602677419487 23.7489 0.1144 10856 +10858 2 110.93906701341045 -177.7402073234324 23.9368 0.1144 10857 +10859 2 111.37618135893055 -176.43658579984904 24.065 0.1144 10858 +10860 2 111.48622818971191 -175.20095278929546 24.1816 0.1144 10859 +10861 2 19.286017934789754 -225.69362009571 11.4148 0.1144 10108 +10862 2 18.25985731991559 -225.78324475511354 11.9115 0.1144 10861 +10863 2 17.410541136048273 -224.72819530043324 12.0816 0.1144 10862 +10864 2 17.01841111824709 -223.6022364520122 12.2134 0.1144 10863 +10865 2 16.846196641030534 -222.49068537295602 12.3102 0.1144 10864 +10866 2 16.5244487070195 -221.42187093547358 12.3757 0.1144 10865 +10867 2 16.216454346931897 -220.25122705349645 12.4144 0.1144 10866 +10868 2 16.40338912781901 -219.05098760390018 12.4311 0.1144 10867 +10869 2 16.223211951552727 -217.84807328565483 12.454 0.1144 10868 +10870 2 15.71223654791541 -216.51951835431998 12.4875 0.1144 10869 +10871 2 15.160089464569865 -215.52185200959576 12.5357 0.1144 10870 +10872 2 14.59007290076757 -214.60417301996353 12.5998 0.1144 10871 +10873 2 14.073449241775936 -213.40356289408834 12.6785 0.1144 10872 +10874 2 13.472012240478747 -212.28021079460927 12.7954 0.1144 10873 +10875 2 12.886140841057143 -211.42693861252735 13.0335 0.1144 10874 +10876 2 12.278354509010978 -210.4196247151075 13.3059 0.1144 10875 +10877 2 11.454877018544579 -209.54851313899474 13.4927 0.1144 10876 +10878 2 10.527235983592604 -208.88242717561286 13.5966 0.1144 10877 +10879 2 9.654539433740695 -208.01101925496255 13.604 0.1144 10878 +10880 2 8.684286467168715 -207.5362412823548 13.5004 0.1144 10879 +10881 2 7.671273135849559 -206.7196248016947 13.2833 0.1144 10880 +10882 2 6.775980213647505 -205.7377372736901 13.0355 0.1144 10881 +10883 2 5.995985589637441 -205.20485730442772 12.8149 0.1144 10882 +10884 2 5.2564505066401805 -203.97092676202544 12.5907 0.1144 10883 +10885 2 4.4564000556492696 -203.29032681400113 12.3391 0.1144 10884 +10886 2 3.579641580921927 -202.56429737858704 12.0481 0.1144 10885 +10887 2 2.620749469730292 -201.69673581495363 11.772 0.1144 10886 +10888 2 1.5424935824379062 -201.54940515984106 11.5679 0.1144 10887 +10889 2 0.4296530093472848 -201.1687276348395 11.4248 0.1144 10888 +10890 2 -0.6911570727736063 -200.8006648933149 11.3368 0.1144 10889 +10891 2 -1.823236223580599 -200.97174925654474 11.293 0.1144 10890 +10892 2 -2.9598762559588234 -200.41197317071993 11.2774 0.1144 10891 +10893 2 -4.098590512211049 -201.19006004463438 11.2704 0.1144 10892 +10894 2 -5.234854717329227 -200.55426672986562 11.2606 0.1144 10893 +10895 2 -6.374439706317489 -201.4328721690959 11.2468 0.1144 10894 +10896 2 -7.518219078787 -200.87211478002325 11.2276 0.1144 10895 +10897 2 -8.650217101999724 -201.05275792521155 11.2014 0.1144 10896 +10898 2 -9.769434743947967 -200.697564917543 11.1645 0.1144 10897 +10899 2 -10.753410087287271 -200.1500788393255 11.1103 0.1144 10898 +10900 2 -11.168028608108568 -198.60725370143518 11.0347 0.1144 10899 +10901 2 -11.156619552122368 -197.3806848145611 10.9364 0.1144 10900 +10902 2 -10.9730118668994 -196.3518449681004 10.8156 0.1144 10901 +10903 2 -10.525329029901481 -195.7436703439028 10.5984 0.1144 10902 +10904 2 -10.071035512104821 -194.76463246638502 10.214 0.1144 10903 +10905 2 -10.208468702345787 -193.67253144572277 9.8899 0.1144 10904 +10906 2 -9.514095595052689 -192.24495110234503 9.56 0.1144 10905 +10907 2 -9.462172259594084 -191.42295003999203 9.5899 0.1144 10906 +10908 2 -9.792570442074283 -190.76714636157664 9.602 0.1144 10907 +10909 2 -9.182858451354958 -189.30494150069399 9.6196 0.1144 10908 +10910 2 -9.917205932470932 -189.14378774521748 9.6435 0.1144 10909 +10911 2 -10.303737827456246 -188.3521935118469 9.6738 0.1144 10910 +10912 2 -10.530097911975936 -186.93298800805087 9.7104 0.1144 10911 +10913 2 -10.721733948125175 -185.49687987863388 9.798 0.1144 10912 +10914 2 -10.991833201558357 -183.99950880059367 9.9051 0.1144 10913 +10915 2 -10.850230824029904 -182.92580824080227 9.991 0.1144 10914 +10916 2 -10.122391197677143 -182.36966828899884 10.0543 0.1144 10915 +10917 2 -8.985954576456853 -181.70141435185428 10.1226 0.1144 10916 +10918 2 -10.666054641176045 -193.08131328650214 9.6225 0.1144 10905 +10919 2 -11.696006722850086 -192.25779351940741 9.4071 0.1144 10918 +10920 2 -12.673639047234515 -192.21218990911933 9.2189 0.1144 10919 +10921 2 -13.39265453841607 -191.17761298561226 8.9411 0.1144 10920 +10922 2 -13.785458889876185 -190.21845692798652 8.7432 0.1144 10921 +10923 2 -14.784895020607888 -189.64591890756026 8.5882 0.1144 10922 +10924 2 -15.85994559761335 -189.2441249426846 8.4709 0.1144 10923 +10925 2 -16.83587050642849 -188.56263622764362 8.3865 0.1144 10924 +10926 2 -17.499493482625184 -187.44677954305945 8.3308 0.1144 10925 +10927 2 -17.8124077827502 -186.43344259621523 8.2956 0.1144 10926 +10928 2 -17.826871968254064 -185.19446304413384 8.2311 0.1144 10927 +10929 2 -17.601903310312544 -183.88457712139166 8.1164 0.1144 10928 +10930 2 -16.981612761187698 -182.905137757062 8.0255 0.1144 10929 +10931 2 -15.914195842492658 -182.85566690887146 7.9573 0.1144 10930 +10932 2 -14.930859697466254 -182.61422603403634 7.9099 0.1144 10931 +10933 2 -14.25323510765965 -181.87456163047253 7.8816 0.1144 10932 +10934 2 -13.438542904887946 -180.67768070866384 7.8701 0.1144 10933 +10935 2 -12.554196637556966 -180.27095446969184 7.8689 0.1144 10934 +10936 2 -12.030456019392128 -178.93889781823546 7.8672 0.1144 10935 +10937 2 -12.485832681611095 -178.4214986101229 7.8649 0.1144 10936 +10938 2 -13.596006966721244 -177.9022794981807 7.8618 0.1144 10937 +10939 2 -14.601789171254826 -177.6426521990328 7.8572 0.1144 10938 +10940 2 -15.293633586453588 -176.31199316231468 7.8508 0.1144 10939 +10941 2 -15.759253398029815 -175.37197981285632 7.842 0.1144 10940 +10942 2 -16.079466130473342 -174.34551226237608 7.8302 0.1144 10941 +10943 2 -16.706003240826455 -173.26793594579883 7.8131 0.1144 10942 +10944 2 -17.18862535315681 -171.87698680873496 7.7865 0.1144 10943 +10945 2 -17.25406013044585 -170.6055599760601 7.7523 0.1144 10944 +10946 2 -17.122158566506165 -169.44240024199584 7.7125 0.1144 10945 +10947 2 -16.877714367974118 -168.36971311302386 7.6607 0.1144 10946 +10948 2 -15.953460501611092 -167.84061987812078 7.5373 0.1144 10947 +10949 2 -14.91224211001172 -168.28071450758767 7.3108 0.1144 10948 +10950 2 23.61681606638133 -244.4852504776953 14.7373 0.1144 9704 +10951 2 24.69795541835859 -245.11197229963437 15.2507 0.1144 10950 +10952 2 25.759082764099272 -244.387689738639 15.8483 0.1144 10951 +10953 2 26.80256772742994 -245.18573031021384 16.4622 0.1144 10952 +10954 2 27.60177868031192 -245.32046617864188 17.2438 0.1144 10953 +10955 2 28.32319279763004 -246.02690402983586 18.0644 0.1144 10954 +10956 2 29.261239274598765 -247.061704906126 18.7486 0.1144 10955 +10957 2 29.98369043106119 -247.61647610058492 19.3183 0.1144 10956 +10958 2 30.878000793963302 -248.48007558026427 19.838 0.1144 10957 +10959 2 31.935916959294467 -248.24720991181977 20.3675 0.1144 10958 +10960 2 33.0322667554001 -248.08103075023348 20.7917 0.1144 10959 +10961 2 33.90935160117646 -247.25872384810054 21.2026 0.1144 10960 +10962 2 34.996922149254615 -247.04753290553487 21.6309 0.1144 10961 +10963 2 36.09548814498188 -247.09091979997106 22.0543 0.1144 10962 +10964 2 37.23506277095623 -246.95825340418276 22.3814 0.1144 10963 +10965 2 38.37394283543037 -246.9710559750094 22.6347 0.1144 10964 +10966 2 39.47241358541584 -246.8614211238555 22.8427 0.1144 10965 +10967 2 40.44544529126008 -246.48252033321455 23.0857 0.1144 10966 +10968 2 41.457236285129426 -246.24128877253423 23.4278 0.1144 10967 +10969 2 42.59464569480805 -246.37940978290993 23.7152 0.1144 10968 +10970 2 43.7260610205554 -246.2766214608535 23.937 0.1144 10969 +10971 2 44.85327861188831 -245.77756723646365 24.0992 0.1144 10970 +10972 2 45.98379300411635 -244.85582556218742 24.2087 0.1144 10971 +10973 2 47.11761071113387 -245.1916948398317 24.2735 0.1144 10972 +10974 2 48.25732775452736 -244.9144584843561 24.3163 0.1144 10973 +10975 2 49.37167934411027 -245.15528146155958 24.3722 0.1144 10974 +10976 2 50.40885198745573 -245.77712826224405 24.4493 0.1144 10975 +10977 2 51.44132418455745 -246.14441331099044 24.5493 0.1144 10976 +10978 2 52.50802285486334 -246.19360251483567 24.6733 0.1144 10977 +10979 2 53.56262889542452 -245.923550231592 24.9207 0.1144 10978 +10980 2 54.58346911625447 -246.41509709693474 25.2795 0.1144 10979 +10981 2 55.67287308112829 -246.67136908236665 25.6014 0.1144 10980 +10982 2 56.81013326340725 -246.6779916697668 25.8679 0.1144 10981 +10983 2 57.88099241779248 -246.97531203359569 26.1646 0.1144 10982 +10984 2 59.019441625376174 -247.10620569160034 26.398 0.1144 10983 +10985 2 60.12788454941302 -246.81215571105662 26.5779 0.1144 10984 +10986 2 60.78550464325035 -245.88531337040905 26.4312 0.1144 10985 +10987 2 61.135166598406656 -244.7588183469174 25.889 0.1144 10986 +10988 2 61.68401463379438 -243.83892825370725 25.6399 0.1144 10987 +10989 2 61.98990662708165 -242.64558367790107 25.3456 0.1144 10988 +10990 2 61.57116498554583 -241.55972267786805 24.9483 0.1144 10989 +10991 2 60.93378802325225 -240.61119134217776 24.3684 0.1144 10990 +10992 2 61.070181927286214 -239.5954172701347 23.7874 0.1144 10991 +10993 2 61.61086079761948 -238.6490772391802 23.2923 0.1144 10992 +10994 2 62.51148430733494 -237.92619822455674 22.8991 0.1144 10993 +10995 2 63.293076193050695 -236.35846470112148 22.4468 0.1144 10994 +10996 2 64.3682428308962 -236.45570922495182 22.0942 0.1144 10995 +10997 2 65.48817185473808 -236.6505080785559 21.8417 0.1144 10996 +10998 2 66.1977040376771 -235.51641019451148 21.4867 0.1144 10997 +10999 2 66.03710477285372 -235.32230084398464 21.2262 0.1144 10998 +11000 2 65.32826111174776 -234.72334126366115 21.0507 0.1144 10999 +11001 2 64.8512872547717 -233.61940588645564 20.9548 0.1144 11000 +11002 2 64.44373405251416 -232.04321058396545 20.9087 0.1144 11001 +11003 2 63.84314380097805 -230.33851353590316 20.9052 0.1144 11002 +11004 2 63.303849155936405 -229.55308743843733 20.9402 0.1144 11003 +11005 2 62.662859858939775 -229.23015482130234 20.9822 0.1144 11004 +11006 2 62.11400631954214 -228.2030911504467 21.0955 0.1144 11005 +11007 2 61.85523081673968 -226.99434869496247 21.2078 0.1144 11006 +11008 2 61.85687501055155 -225.76095425394178 21.3006 0.1144 11007 +11009 2 61.54558690441577 -224.4654746412878 21.3763 0.1144 11008 +11010 2 61.50354561488588 -223.24605965576012 21.4399 0.1144 11009 +11011 2 62.16422839949071 -222.42088420290605 21.4966 0.1144 11010 +11012 2 62.93008532207573 -221.33094759718762 21.5512 0.1144 11011 +11013 2 63.73654065005941 -219.6337884997546 21.6193 0.1144 11012 +11014 2 64.64435748152412 -219.66140943983862 21.7083 0.1144 11013 +11015 2 64.89119093955175 -218.74926361921155 21.8828 0.1144 11014 +11016 2 65.35095633936668 -217.80268117457945 22.0918 0.1144 11015 +11017 2 65.82763354570042 -216.6872489992502 22.3118 0.1144 11016 +11018 2 65.7130540831545 -216.05553250707533 22.555 0.1144 11017 +11019 2 65.41575701200276 -215.0151947838556 22.9061 0.1144 11018 +11020 2 64.83322653030667 -213.78901600704597 23.3708 0.1144 11019 +11021 2 64.4387011433162 -212.24822332549627 23.8797 0.1144 11020 +11022 2 64.09996778545933 -210.73380724678378 24.3639 0.1144 11021 +11023 2 63.68762640148351 -209.68527939570052 24.7564 0.1144 11022 +11024 2 63.28589387068236 -209.02537017405353 25.1454 0.1144 11023 +11025 2 63.2690443829169 -207.891415187434 25.4989 0.1144 11024 +11026 2 63.29419674379845 -206.67744091449907 25.8121 0.1144 11025 +11027 2 63.518446453064136 -205.27766074036697 26.0592 0.1144 11026 +11028 2 63.78376047089437 -203.82552120296296 26.2319 0.1144 11027 +11029 2 64.27674491829553 -202.78264626635882 26.3447 0.1144 11028 +11030 2 64.97701730544973 -202.56795940953484 26.4036 0.1144 11029 +11031 2 65.18668071519264 -201.63090712333712 26.4287 0.1144 11030 +11032 2 65.38493569367714 -200.50928280297813 26.4363 0.1144 11031 +11033 2 65.21686832015001 -199.25309675657113 26.4382 0.1144 11032 +11034 2 64.45713243609225 -197.54599739083875 26.4399 0.1144 11033 +11035 2 63.850826623669015 -196.36272961642982 26.4435 0.1144 11034 +11036 2 63.35037539257871 -195.8050505356377 26.4531 0.1144 11035 +11037 2 63.25743436982978 -194.71453107840026 26.4731 0.1144 11036 +11038 2 63.3610905117925 -193.42835450094896 26.4415 0.1144 11037 +11039 2 63.290689120975046 -192.30635509778614 26.449 0.1144 11038 +11040 2 63.29162117609158 -191.1023525095186 26.53 0.1144 11039 +11041 2 62.98275262422044 -190.14092941312703 26.7193 0.1144 11040 +11042 2 62.427356113757554 -188.83889275032104 26.9441 0.1144 11041 +11043 2 62.155816904498565 -187.59290543492384 27.3397 0.1144 11042 +11044 2 61.8415568979167 -186.60255854530988 27.8727 0.1144 11043 +11045 2 61.23849014959699 -185.82604653434998 28.3102 0.1144 11044 +11046 2 61.14628495243224 -184.72119204874392 28.7283 0.1144 11045 +11047 2 60.22629745103105 -183.74239657932225 29.1421 0.1144 11046 +11048 2 59.131235864161894 -183.88423383891597 28.9134 0.1144 11047 +11049 2 58.02164116515533 -183.2335199931649 28.8291 0.1144 11048 +11050 2 56.92248595806822 -183.12212474879084 28.7633 0.1144 11049 +11051 2 55.86585820407386 -182.51778312662736 28.7143 0.1144 11050 +11052 2 54.90113861144525 -181.96427886427136 28.6807 0.1144 11051 +11053 2 54.30859248263926 -180.62824589902434 28.6602 0.1144 11052 +11054 2 53.71279041282142 -179.8737714701963 28.6502 0.1144 11053 +11055 2 52.949028712265005 -179.0294542286347 28.6381 0.1144 11054 +11056 2 51.92464751348463 -178.26285351489688 28.6216 0.1144 11055 +11057 2 51.97839378969526 -177.170130498698 28.975 0.1144 11056 +11058 2 52.22043610514349 -175.84065583925312 29.1858 0.1144 11057 +11059 2 53.03737850092463 -175.51127971186472 29.2614 0.1144 11058 +11060 2 53.881179550242365 -174.4801142064852 29.339 0.1144 11059 +11061 2 54.752413227692955 -173.66760148251979 29.4241 0.1144 11060 +11062 2 55.623714210676354 -173.02859874945221 29.5212 0.1144 11061 +11063 2 56.46418846041607 -171.8930965793353 29.6321 0.1144 11062 +11064 2 57.18878546963202 -171.41338436731212 29.7741 0.1144 11063 +11065 2 57.65187185541724 -170.22511027654252 30.0544 0.1144 11064 +11066 2 58.151399179897844 -168.91324258485216 30.406 0.1144 11065 +11067 2 58.81031059433353 -168.09274504772975 30.7042 0.1144 11066 +11068 2 59.47007201547744 -167.32893266648676 30.9369 0.1144 11067 +11069 2 60.12898313382697 -165.9500363089897 31.0948 0.1144 11068 +11070 2 60.78796511074272 -165.0890545336209 31.1696 0.1144 11069 +11071 2 61.446876229092254 -164.38749893539944 31.1578 0.1144 11070 +11072 2 62.04441742333357 -163.03538949428338 31.0268 0.1144 11071 +11073 2 62.49304225583434 -161.90493349302199 30.6852 0.1144 11072 +11074 2 63.10184650305382 -161.29108555252847 30.3019 0.1144 11073 +11075 2 63.70819814247881 -160.24643994449127 29.8332 0.1144 11074 +11076 2 64.432676275579 -158.9115128389795 29.2916 0.1144 11075 +11077 2 65.13239870919989 -160.38734362350198 28.8422 0.1144 11076 +11078 2 65.7112524599215 -162.04869827229078 28.5228 0.1144 11077 +11079 2 66.32407370740175 -163.47632095314907 28.3153 0.1144 11078 +11080 2 66.94727770638278 -164.08530287387936 28.1789 0.1144 11079 +11081 2 67.52768353558027 -164.9491349986888 28.0938 0.1144 11080 +11082 2 68.09446103527901 -166.46003462999602 28.0302 0.1144 11081 +11083 2 68.76376602064661 -167.234792746765 27.9492 0.1144 11082 +11084 2 69.77261842621492 -167.67833502304964 27.8231 0.1144 11083 +11085 2 70.88941369862282 -167.4329313187995 27.6498 0.1144 11084 +11086 2 72.00777722612816 -167.4941065197474 27.4452 0.1144 11085 +11087 2 73.12684963538156 -166.8625635895948 27.2261 0.1144 11086 +11088 2 74.24521316288687 -167.22247302314594 27.008 0.1144 11087 +11089 2 75.29919218705184 -166.10058393165593 26.8148 0.1144 11088 +11090 2 75.80422288679289 -165.26461587302904 26.689 0.1144 11089 +11091 2 76.11905973422921 -164.42533819023865 26.6268 0.1144 11090 +11092 2 76.5123668110304 -163.57121019253532 26.6177 0.1144 11091 +11093 2 76.88062400529988 -162.0773463351529 26.65 0.1144 11092 +11094 2 77.26579271000203 -160.56003456825633 26.7128 0.1144 11093 +11095 2 77.8980947612774 -159.6757511444435 26.8385 0.1144 11094 +11096 2 78.43965492946083 -159.21662318567545 27.0707 0.1144 11095 +11097 2 79.32635590819825 -157.83301709002455 27.2588 0.1144 11096 +11098 2 80.38519693350878 -157.9140867178994 27.4002 0.1144 11097 +11099 2 81.48798479221077 -156.973033171125 27.5381 0.1144 11098 +11100 2 82.56954162068851 -157.39625942257794 27.6639 0.1144 11099 +11101 2 83.51474523547087 -155.99631902971288 27.5559 0.1144 11100 +11102 2 50.760147953317194 -178.48727577848624 28.5642 0.1144 11056 +11103 2 49.641082852230745 -178.915000911008 28.5177 0.1144 11102 +11104 2 48.50030232404333 -178.50605449274477 28.4567 0.1144 11103 +11105 2 47.356434717912826 -178.97127994417983 28.3755 0.1144 11104 +11106 2 47.451297902816414 -178.62216949126739 28.5827 0.1144 11105 +11107 2 47.536531038711715 -178.3055089389417 28.3122 0.1144 11106 +11108 2 47.892641123392096 -176.81067306661183 28.1792 0.1144 11107 +11109 2 48.228512898061766 -175.43838168966573 28.0109 0.1144 11108 +11110 2 48.44941212086057 -174.3631106122964 27.8433 0.1144 11109 +11111 2 48.56271518873987 -173.20882910925562 27.7164 0.1144 11110 +11112 2 48.79329153823858 -172.19443609520903 27.6271 0.1144 11111 +11113 2 49.05471129578899 -171.2802354535359 27.5717 0.1144 11112 +11114 2 49.307145931479326 -170.1708948548236 27.5434 0.1144 11113 +11115 2 49.62361252593821 -168.8253839395347 27.5291 0.1144 11114 +11116 2 49.880987033421235 -167.4690956203875 27.5195 0.1144 11115 +11117 2 49.5875416660065 -166.5499100944248 27.5094 0.1144 11116 +11118 2 48.941602928475916 -165.4466903153145 27.4899 0.1144 11117 +11119 2 48.18918540849188 -164.07459645650795 27.4369 0.1144 11118 +11120 2 47.20768300890287 -164.31270781189286 27.3953 0.1144 11119 +11121 2 46.10460098619248 -163.31901942506855 27.4206 0.1144 11120 +11122 2 44.974978198313636 -163.921578929128 27.4415 0.1144 11121 +11123 2 43.86293394635946 -163.23522552787483 27.456 0.1144 11122 +11124 2 42.79188855381078 -163.08622043601983 27.4626 0.1144 11123 +11125 2 41.850649888329805 -162.16875651733375 27.4595 0.1144 11124 +11126 2 41.498400027538175 -161.37001976662867 27.4413 0.1144 11125 +11127 2 41.88284347177039 -159.99893391636567 27.3862 0.1144 11126 +11128 2 42.64234020240613 -159.28109779300684 27.2962 0.1144 11127 +11129 2 43.577674140530995 -158.64069882765136 27.2139 0.1144 11128 +11130 2 44.265863668782075 -157.27409895804809 27.1595 0.1144 11129 +11131 2 44.890037414886194 -156.81316274132485 27.1343 0.1144 11130 +11132 2 45.647040273643526 -155.77012447053886 27.1404 0.1144 11131 +11133 2 46.428344067573796 -154.29601354054256 27.1784 0.1144 11132 +11134 2 47.23557883978567 -154.1969444197523 27.244 0.1144 11133 +11135 2 48.08902346408699 -152.80639318830052 27.3296 0.1144 11134 +11136 2 49.01803126016528 -152.4678881399586 27.4984 0.1144 11135 +11137 2 49.925112966332584 -151.7086570991222 27.7351 0.1144 11136 +11138 2 50.77941470340887 -150.74171775478874 27.9523 0.1144 11137 +11139 2 51.6994128964657 -150.41285165477163 28.1722 0.1144 11138 +11140 2 52.747682873637935 -149.56767034181217 28.3718 0.1144 11139 +11141 2 53.79595916260426 -149.44308338057772 28.5127 0.1144 11140 +11142 2 54.68027819001311 -148.28097332091153 28.597 0.1144 11141 +11143 2 55.65714246211169 -148.24279804994413 28.6412 0.1144 11142 +11144 2 56.77634642758399 -147.58612015549235 28.6628 0.1144 11143 +11145 2 57.90768438087065 -147.7208842484003 28.6667 0.1144 11144 +11146 2 58.966579589939386 -147.13717250413987 28.6622 0.1144 11145 +11147 2 59.9993409077551 -146.71616691388695 28.6549 0.1144 11146 +11148 2 61.09237021607684 -146.3711614601248 28.6451 0.1144 11147 +11149 2 62.16502915998254 -145.86629493106798 28.6306 0.1144 11148 +11150 2 63.248202115521764 -145.69625099335795 28.6098 0.1144 11149 +11151 2 64.36972733466997 -144.95085938094914 28.5827 0.1144 11150 +11152 2 65.44540466945641 -145.8208532924135 28.5494 0.1144 11151 +11153 2 66.51967905918093 -147.19860575266406 28.4953 0.1144 11152 +11154 2 67.63521004881237 -146.4155229696323 28.3903 0.1144 11153 +11155 2 68.77349996206867 -147.18374534448972 28.2904 0.1144 11154 +11156 2 69.8958756861116 -146.48262178557553 28.2128 0.1144 11155 +11157 2 70.95792577684269 -146.42027621491033 28.1557 0.1144 11156 +11158 2 71.83003699700981 -145.15344364592463 28.1168 0.1144 11157 +11159 2 72.35614949957541 -144.61316155954256 28.093 0.1144 11158 +11160 2 72.7689898537587 -143.7658602244295 28.0792 0.1144 11159 +11161 2 72.92593804328286 -142.43636495253676 28.0636 0.1144 11160 +11162 2 72.46997216970409 -141.288334682695 28.0423 0.1144 11161 +11163 2 72.05599422872518 -139.75664515996095 28.0148 0.1144 11162 +11164 2 71.7568396122174 -138.33529793796384 27.9671 0.1144 11163 +11165 2 71.72609838642944 -137.17547478685728 27.9029 0.1144 11164 +11166 2 72.05311609727143 -136.20049471674167 27.8262 0.1144 11165 +11167 2 72.45371153946334 -135.4661397044503 27.7406 0.1144 11166 +11168 2 72.43753668144298 -134.24106181924898 27.6495 0.1144 11167 +11169 2 72.149841921191 -132.8815720930035 26.9934 0.1144 11168 +11170 2 47.099220716742124 -178.2699362395484 28.604 0.1144 11106 +11171 2 46.42108535443572 -176.61775578463033 29.1063 0.1144 11170 +11172 2 45.74931038617889 -175.872553962265 29.2992 0.1144 11171 +11173 2 45.13097243956321 -175.53815093412595 29.6092 0.1144 11172 +11174 2 44.51426068693678 -174.21285751429255 30.0096 0.1144 11173 +11175 2 43.89585188175489 -172.96209491661475 30.4755 0.1144 11174 +11176 2 43.27836068490027 -172.37311058709022 30.9837 0.1144 11175 +11177 2 42.82485137634994 -171.28732950057866 31.5031 0.1144 11176 +11178 2 42.684961823180785 -169.99421225531057 31.9987 0.1144 11177 +11179 2 42.54507256609782 -168.69710564293143 32.475 0.1144 11178 +11180 2 42.4043327101343 -167.39272037733832 32.9518 0.1144 11179 +11181 2 42.26373782825043 -166.0343029203161 33.446 0.1144 11180 +11182 2 42.082551849134845 -164.78206908615806 33.9382 0.1144 11181 +11183 2 41.878812322040574 -163.70864797026908 34.4308 0.1144 11182 +11184 2 41.87620415600833 -162.8148707268998 35.2338 0.1144 11183 +11185 2 41.40564778610158 -162.40813779383376 36.1911 0.1144 11184 +11186 2 40.42263131517341 -161.66022992580938 37.1557 0.1144 11185 +11187 2 39.35611932470255 -161.8099188377185 38.0999 0.1144 11186 +11188 2 38.289677896711716 -161.21978042133648 38.99 0.1144 11187 +11189 2 37.487336801944 -161.63667259859855 41.0525 0.1144 11188 +11190 2 47.08837067133247 -179.76660878616212 28.2248 0.1144 11105 +11191 2 46.476468781055765 -180.1643607469437 28.0297 0.1144 11190 +11192 2 45.62621279223339 -181.27493106673487 27.8321 0.1144 11191 +11193 2 44.6689634232976 -182.34199192647915 27.6231 0.1144 11192 +11194 2 44.006366352918036 -182.70435813166785 27.2456 0.1144 11193 +11195 2 43.08225766273492 -183.89178204643105 26.871 0.1144 11194 +11196 2 41.981039055503125 -183.663490240672 26.5452 0.1144 11195 +11197 2 40.8836184664366 -184.29708981924205 26.2714 0.1144 11196 +11198 2 39.783667140313334 -183.6092504848961 26.0816 0.1144 11197 +11199 2 38.71988287323316 -183.4427445186573 25.9836 0.1144 11198 +11200 2 37.61514415966415 -182.99838707737712 25.9553 0.1144 11199 +11201 2 36.47597294855768 -182.95591787312358 25.9266 0.1144 11200 +11202 2 35.361702284468734 -182.82787833880556 25.9061 0.1144 11201 +11203 2 34.38254808239172 -182.0717025312146 25.8927 0.1144 11202 +11204 2 33.56953732376694 -181.30348446734249 25.8798 0.1144 11203 +11205 2 32.60339485432121 -180.7779994173294 25.8675 0.1144 11204 +11206 2 31.626788505780485 -180.22226156877647 25.8585 0.1144 11205 +11207 2 30.596958909770358 -179.76643931071416 25.8527 0.1144 11206 +11208 2 29.494065940499176 -180.11467750707686 25.8453 0.1144 11207 +11209 2 28.372493845759735 -180.12007106087438 25.8357 0.1144 11208 +11210 2 27.237879521519595 -180.64349211926984 25.8272 0.1144 11209 +11211 2 26.121300984144526 -180.38946848440858 25.8231 0.1144 11210 +11212 2 25.003459602037452 -181.3969548040228 25.7593 0.1144 11211 +11213 2 23.88275418881424 -180.92951166203432 25.7151 0.1144 11212 +11214 2 23.101365418170225 -182.31276584589855 25.7086 0.1144 11213 +11215 2 22.983078657753943 -183.6040376219043 25.824 0.1144 11214 +11216 2 22.33727041004285 -184.1050616062942 25.9575 0.1144 11215 +11217 2 21.622411521265544 -184.74726487104786 26.1111 0.1144 11216 +11218 2 21.113379190101078 -186.14645860503134 26.2842 0.1144 11217 +11219 2 20.621271989330385 -187.40558951065452 26.4774 0.1144 11218 +11220 2 20.395954744051018 -188.35189954623758 26.8509 0.1144 11219 +11221 2 20.080216464908997 -189.27718972798021 27.2751 0.1144 11220 +11222 2 19.793753338721274 -190.26666204940616 27.6059 0.1144 11221 +11223 2 19.51457502489098 -191.57311690378452 27.8483 0.1144 11222 +11224 2 19.261290086406262 -192.87030724840727 28.0092 0.1144 11223 +11225 2 19.192546787638012 -194.126178070551 28.0963 0.1144 11224 +11226 2 18.749343850202443 -194.91132124501854 28.1207 0.1144 11225 +11227 2 17.92425271930842 -195.36685273967078 28.1218 0.1144 11226 +11228 2 17.291255406246126 -196.47519617855409 28.1232 0.1144 11227 +11229 2 16.705989822965748 -197.80898123244725 28.1254 0.1144 11228 +11230 2 16.256842845066792 -198.79761204805249 28.1282 0.1144 11229 +11231 2 15.837635286853397 -199.72305613964207 28.1324 0.1144 11230 +11232 2 15.458833786181403 -200.9666132647502 28.138 0.1144 11231 +11233 2 15.371411065858785 -202.22222583006004 28.1456 0.1144 11232 +11234 2 15.612394460665064 -203.36087139735855 28.1565 0.1144 11233 +11235 2 15.459401026973033 -204.62294151521726 28.1728 0.1144 11234 +11236 2 15.007844857823358 -205.87318493632267 28.1949 0.1144 11235 +11237 2 14.373224607718955 -206.9569070116376 28.2237 0.1144 11236 +11238 2 13.770966588511914 -207.80561771842883 28.2582 0.1144 11237 +11239 2 13.295838203706836 -209.03853079510014 28.3262 0.1144 11238 +11240 2 12.468304127745451 -209.95901499574745 28.4393 0.1144 11239 +11241 2 11.727595186180558 -210.76819144821965 28.5292 0.1144 11240 +11242 2 10.983556188090372 -211.86049104232217 28.5967 0.1144 11241 +11243 2 10.141384885795208 -212.58086519259618 28.6429 0.1144 11242 +11244 2 9.27504370635954 -213.4890484637404 28.67 0.1144 11243 +11245 2 8.36886343189798 -214.1538439895834 28.6804 0.1144 11244 +11246 2 7.634599362909885 -214.97579030096628 28.6804 0.1144 11245 +11247 2 6.995876125946509 -215.90396739845716 28.6804 0.1144 11246 +11248 2 6.345042884143643 -217.17085769586959 28.6804 0.1144 11247 +11249 2 5.867895399080682 -218.16938948726926 28.6804 0.1144 11248 +11250 2 4.9778908094676275 -218.58456743614528 28.6804 0.1144 11249 +11251 2 3.927275891730609 -219.439889303102 28.6804 0.1144 11250 +11252 2 2.810613171914383 -219.2673872220363 28.6804 0.1144 11251 +11253 2 1.6890579540832373 -219.96756332216108 28.6804 0.1144 11252 +11254 2 0.5494122674423263 -219.74386546200788 28.6804 0.1144 11253 +11255 2 -0.5255918191285023 -220.2615971986006 28.6804 0.1144 11254 +11256 2 -1.387985052712489 -220.85991529177497 28.6804 0.1144 11255 +11257 2 -1.8614902043894688 -222.47683857386141 28.6804 0.1144 11256 +11258 2 -2.2952777503315502 -223.6665354551638 28.6804 0.1144 11257 +11259 2 -2.7137094173500778 -224.37184252425857 28.6804 0.1144 11258 +11260 2 -3.160517766478378 -225.33418713537404 28.6804 0.1144 11259 +11261 2 -3.565925077277356 -226.81075121732 28.6804 0.1144 11260 +11262 2 -3.797351729570437 -228.29772121146738 28.6804 0.1144 11261 +11263 2 -4.125914708907732 -229.63602095377865 28.6804 0.1144 11262 +11264 2 -4.486104093558289 -230.6093482255124 28.6804 0.1144 11263 +11265 2 -4.888329282772784 -231.340695484663 28.6804 0.1144 11264 +11266 2 -4.861616928330388 -232.62113910524374 28.6804 0.1144 11265 +11267 2 -4.651375586140254 -234.0847654192236 28.6804 0.1144 11266 +11268 2 -4.695935885993364 -235.2895632609789 28.6804 0.1144 11267 +11269 2 -4.265775450185362 -236.91053683536484 28.6804 0.1144 11268 +11270 2 -3.8630978690344406 -238.0515275018741 28.6804 0.1144 11269 +11271 2 -3.4952549643447703 -238.84030937652966 28.6804 0.1144 11270 +11272 2 -3.1272706386088487 -239.79264057031088 28.6804 0.1144 11271 +11273 2 6.3007950767632295 -216.44450012869635 29.6374 0.1144 11248 +11274 2 6.368803048133746 -215.20158642812328 30.172 0.1144 11273 +11275 2 6.7022963305223655 -213.83687580584206 30.4548 0.1144 11274 +11276 2 7.242276682121352 -212.7879290748968 30.7504 0.1144 11275 +11277 2 7.757814381415047 -211.7774833078622 31.0153 0.1144 11276 +11278 2 7.985215715395875 -210.60909285590427 31.25 0.1144 11277 +11279 2 8.2831349427057 -209.54630458387646 31.5767 0.1144 11278 +11280 2 8.709746043806822 -208.62506468689992 31.9466 0.1144 11279 +11281 2 9.382460962604057 -207.5331214095247 32.2148 0.1144 11280 +11282 2 9.987199031628 -206.360111236392 32.4078 0.1144 11281 +11283 2 10.611194049835898 -205.4837317910662 32.6169 0.1144 11282 +11284 2 19.543532952910063 -194.3904190526241 28.1182 0.1144 11225 +11285 2 20.451752428929435 -195.4773166596563 28.0918 0.1144 11284 +11286 2 21.455156935454436 -195.72219311069293 28.0815 0.1144 11285 +11287 2 22.4988313938958 -196.62258267995443 28.0669 0.1144 11286 +11288 2 23.474020975313206 -196.81853149524608 28.047 0.1144 11287 +11289 2 24.380651268107062 -198.0019928717981 28.0182 0.1144 11288 +11290 2 25.238892872554725 -198.55403287890525 27.9766 0.1144 11289 +11291 2 25.979281515293536 -198.86990048416362 27.9203 0.1144 11290 +11292 2 26.51849523484126 -200.17565597263444 27.8475 0.1144 11291 +11293 2 26.862165207543462 -201.6922784198436 27.7581 0.1144 11292 +11294 2 27.08606141886777 -202.76592562227123 27.552 0.1144 11293 +11295 2 27.812538776985527 -202.36720130365018 27.308 0.1144 11294 +11296 2 28.929228736723914 -202.60642660168668 27.1055 0.1144 11295 +11297 2 30.057438752184268 -202.0531994604808 26.896 0.1144 11296 +11298 2 31.17490815615085 -202.13316135444177 26.7091 0.1144 11297 +11299 2 32.07141811389314 -201.10156205081944 26.5794 0.1144 11298 +11300 2 32.84783266675569 -200.52844357244666 26.5049 0.1144 11299 +11301 2 33.82375188850453 -199.5884803390298 26.4625 0.1144 11300 +11302 2 34.82818645464863 -199.24339835223105 26.4388 0.1144 11301 +11303 2 35.94477180200421 -198.7264682113054 26.4317 0.1144 11302 +11304 2 37.08858522437651 -198.9467433085581 26.4312 0.1144 11303 +11305 2 23.0851103546037 -184.3621277869979 25.9649 0.1144 11215 +11306 2 23.226643274756466 -185.41759620911057 26.0383 0.1144 11305 +11307 2 23.36810533634305 -186.49468053658342 26.0741 0.1144 11306 +11308 2 23.511264450485058 -187.654833697789 26.1097 0.1144 11307 +11309 2 23.580758299902982 -188.85632764926595 26.1159 0.1144 11308 +11310 2 23.596939967903893 -190.08231531079247 26.0765 0.1144 11309 +11311 2 23.609868951840205 -191.31038644084816 25.9957 0.1144 11310 +11312 2 23.623503264491276 -192.53777229692275 25.8796 0.1144 11311 +11313 2 23.637211692655786 -193.76762019690773 25.7377 0.1144 11312 +11314 2 23.659105664596655 -194.9859482374041 25.5519 0.1144 11313 +11315 2 23.681637659719424 -196.20638448071702 25.3385 0.1144 11314 +11316 2 23.703460773094072 -197.42714667365397 25.1124 0.1144 11315 +11317 2 23.65408890071994 -198.6776394865682 24.9106 0.1144 11316 +11318 2 23.644386964217 -199.91498596267243 24.7323 0.1144 11317 +11319 2 23.6386465935267 -201.1522787027145 24.5791 0.1144 11318 +11320 2 23.633753268683563 -202.38884350569649 24.4538 0.1144 11319 +11321 2 23.239659641587547 -203.68794858063984 24.3734 0.1144 11320 +11322 2 22.562055481722606 -205.07167957548387 24.3381 0.1144 11321 +11323 2 22.023795869567884 -205.86096847769636 24.3346 0.1144 11322 +11324 2 21.458778959312127 -206.78802238005846 24.3589 0.1144 11323 +11325 2 21.249206744091254 -208.0508680097244 24.4231 0.1144 11324 +11326 2 21.039638081903746 -209.4224426905119 24.5116 0.1144 11325 +11327 2 20.8299953042028 -210.85442758730312 24.7439 0.1144 11326 +11328 2 61.58113515634005 -184.7085805373419 29.0237 0.1144 11046 +11329 2 62.618321419646634 -185.23845270389901 29.239 0.1144 11328 +11330 2 63.59173508148867 -185.49788494326566 29.4627 0.1144 11329 +11331 2 64.558850541493 -185.88062732639247 29.5565 0.1144 11330 +11332 2 65.3144940038059 -187.61938362359075 29.5462 0.1144 11331 +11333 2 66.11543837623525 -188.81578673619532 29.3426 0.1144 11332 +11334 2 67.00660136774228 -188.9711005664724 28.996 0.1144 11333 +11335 2 68.14498277160672 -189.60392244228805 28.5939 0.1144 11334 +11336 2 69.26514916252344 -189.03861146013742 28.0885 0.1144 11335 +11337 2 70.34216489559974 -189.50436935529336 27.4657 0.1144 11336 +11338 2 71.26720457449996 -188.97604782799107 26.6717 0.1144 11337 +11339 2 72.10767888075452 -189.19505802382648 25.7733 0.1144 11338 +11340 2 72.93077347536527 -188.69066144804177 24.7936 0.1144 11339 +11341 2 73.84545819738818 -189.61182112846302 23.9225 0.1144 11340 +11342 2 74.95829196049831 -189.23903482886448 23.3093 0.1144 11341 +11343 2 75.99791741373858 -190.47192430676716 22.9256 0.1144 11342 +11344 2 76.98765974296248 -190.29054223600266 22.7321 0.1144 11343 +11345 2 77.97739526220582 -191.71662448732513 22.6755 0.1144 11344 +11346 2 79.04827860166634 -191.22192976387453 22.7201 0.1144 11345 +11347 2 80.16753630922527 -192.3838583594491 22.819 0.1144 11346 +11348 2 81.28757375709847 -191.7917943862349 22.9417 0.1144 11347 +11349 2 82.39955721741417 -192.69662535191478 23.0691 0.1144 11348 +11350 2 83.50845991158096 -192.355028889114 23.1931 0.1144 11349 +11351 2 84.62452267186683 -192.60229322961547 23.3208 0.1144 11350 +11352 2 85.75883889390859 -192.88243332027344 23.4651 0.1144 11351 +11353 2 86.90195074269971 -192.64293966070005 23.643 0.1144 11352 +11354 2 88.04412079808836 -193.0495150078917 23.8774 0.1144 11353 +11355 2 89.13806515807687 -192.26257523302476 24.2101 0.1144 11354 +11356 2 90.10444206629191 -192.25463457849366 24.6521 0.1144 11355 +11357 2 90.89329839093837 -191.4260626986192 25.3426 0.1144 11356 +11358 2 91.68908748155684 -191.30259357823198 26.1826 0.1144 11357 +11359 2 92.58001669157802 -190.41939091503707 26.9456 0.1144 11358 +11360 2 93.49429556861406 -189.6632755849016 27.5816 0.1144 11359 +11361 2 94.4507755602495 -189.25048669150306 28.1072 0.1144 11360 +11362 2 95.5325894854569 -188.71227259351704 28.565 0.1144 11361 +11363 2 96.41371001255938 -188.35512467565752 28.9139 0.1144 11362 +11364 2 97.48610105505006 -187.77893147610422 29.2558 0.1144 11363 +11365 2 98.52084801539309 -187.84642564572607 29.6638 0.1144 11364 +11366 2 99.4928734750485 -186.80215600977067 30.074 0.1144 11365 +11367 2 100.42341242147458 -186.74306887127983 30.4486 0.1144 11366 +11368 2 101.3920095240161 -185.18225389096108 30.744 0.1144 11367 +11369 2 102.40609447512435 -185.06810396921955 30.9694 0.1144 11368 +11370 2 103.50398933762496 -184.35798012734944 31.1399 0.1144 11369 +11371 2 104.63528998406174 -184.44563797681076 31.2785 0.1144 11370 +11372 2 105.73746420675742 -184.1001235963715 31.493 0.1144 11371 +11373 2 105.49463913361888 -184.70189221346436 31.6949 0.1144 11372 +11374 2 105.29227110134757 -185.83167309127566 31.911 0.1144 11373 +11375 2 104.83234946205212 -186.9923010286172 32.2462 0.1144 11374 +11376 2 103.8349355994549 -187.4533715418237 32.5842 0.1144 11375 +11377 2 102.80704960665972 -187.97500702490947 32.8821 0.1144 11376 +11378 2 101.94691663301293 -188.70238670738036 33.2441 0.1144 11377 +11379 2 101.3316199373386 -189.38649230598378 33.6697 0.1144 11378 +11380 2 101.13162378946815 -190.6410771913773 34.0242 0.1144 11379 +11381 2 101.23189679625183 -191.70275469091965 34.3557 0.1144 11380 +11382 2 101.20924817207604 -192.90370276690925 34.6147 0.1144 11381 +11383 2 101.07487011135271 -194.20479785928802 34.8009 0.1144 11382 +11384 2 101.1338973229148 -195.32369180254037 34.9255 0.1144 11383 +11385 2 101.36915834685337 -196.56491347345846 35.0146 0.1144 11384 +11386 2 101.45653855363642 -197.80370486460973 35.0941 0.1144 11385 +11387 2 101.53734638284345 -199.0400096417324 35.1683 0.1144 11386 +11388 2 101.74430404591318 -200.24486176547651 35.3556 0.1144 11387 +11389 2 101.94809044859869 -201.48463321743444 35.5667 0.1144 11388 +11390 2 102.12355405684656 -202.6979643273458 35.737 0.1144 11389 +11391 2 102.29817091533334 -203.8354526263147 35.8515 0.1144 11390 +11392 2 102.47045595503002 -204.97891441678712 35.9047 0.1144 11391 +11393 2 102.64507281351682 -206.12503854521998 35.8952 0.1144 11392 +11394 2 102.81891348472269 -207.2764943690305 35.8268 0.1144 11393 +11395 2 102.98149090085009 -208.41677703541217 35.6588 0.1144 11394 +11396 2 103.04191489126546 -209.1683834038446 35.1644 0.1144 11395 +11397 2 103.05027642322122 -210.11188354990702 33.8848 0.1144 11396 +11398 2 103.04461016804439 -211.32537063710402 33.8604 0.1144 11397 +11399 2 103.00903173310411 -212.53159209352202 33.8509 0.1144 11398 +11400 2 102.98384937353958 -213.74181764592817 33.838 0.1144 11399 +11401 2 103.09222068681157 -214.9678316742734 33.8187 0.1144 11400 +11402 2 103.22725149578233 -216.19605326935604 33.791 0.1144 11401 +11403 2 103.14222079371606 -217.38399774306168 33.754 0.1144 11402 +11404 2 102.44021689990308 -218.24393369991455 33.7078 0.1144 11403 +11405 2 101.43498245958918 -218.81875992520875 33.6529 0.1144 11404 +11406 2 101.13470623633931 -218.2869479604177 33.4897 0.1144 11405 +11407 2 102.06612648061557 -217.7378004832281 33.3528 0.1144 11406 +11408 2 103.20580216593936 -217.61593019649996 33.2391 0.1144 11407 +11409 2 104.34872777656705 -217.51430146420205 33.1447 0.1144 11408 +11410 2 105.49158252862848 -217.59272787960128 33.0644 0.1144 11409 +11411 2 106.63450813925611 -217.32706486771013 32.9935 0.1144 11410 +11412 2 107.73346017475656 -217.38438998915166 32.9207 0.1144 11411 +11413 2 108.6866741584524 -216.42246468750548 32.8045 0.1144 11412 +11414 2 109.63669240060263 -216.11723236796536 32.6528 0.1144 11413 +11415 2 110.58586063604454 -215.059135580161 32.4736 0.1144 11414 +11416 2 111.53418182563934 -214.80280106615237 32.2734 0.1144 11415 +11417 2 112.4841295053095 -213.70173093510874 32.0583 0.1144 11416 +11418 2 113.43252155347048 -213.48459479226506 31.8335 0.1144 11417 +11419 2 114.3816897889124 -212.34906667480735 31.6 0.1144 11418 +11420 2 115.34789102407817 -212.18605663279246 31.3544 0.1144 11419 +11421 2 116.37342151119435 -211.21594319219332 31.096 0.1144 11420 +11422 2 117.41273231396968 -211.16423841730017 30.8207 0.1144 11421 +11423 2 118.44305118490442 -210.21282131917013 30.5133 0.1144 11422 +11424 2 119.43948624333535 -210.11471193496487 30.1221 0.1144 11423 +11425 2 120.4530016752677 -209.30627389830346 29.6733 0.1144 11424 +11426 2 121.5234378681865 -208.72316243385632 29.2163 0.1144 11425 +11427 2 122.59999644430826 -208.69603399594672 28.7325 0.1144 11426 +11428 2 123.73382421825352 -208.58579208976533 28.3452 0.1144 11427 +11429 2 124.86397250246357 -208.47978637690602 28.0423 0.1144 11428 +11430 2 125.97995759420272 -208.8724489239791 27.8013 0.1144 11429 +11431 2 127.10778156988991 -208.8960320537542 27.5907 0.1144 11430 +11432 2 128.20942032331246 -208.8020958610369 27.3227 0.1144 11431 +11433 2 129.26884375000225 -208.72548401271501 26.957 0.1144 11432 +11434 2 130.32682490377704 -208.7003065397331 26.561 0.1144 11433 +11435 2 131.27937432465552 -208.55688221131567 26.0904 0.1144 11434 +11436 2 132.1014122444529 -208.03377950595748 25.6085 0.1144 11435 +11437 2 133.04407748536977 -208.8282482935852 25.1255 0.1144 11436 +11438 2 133.9010525225073 -207.52242131099598 24.5817 0.1144 11437 +11439 2 134.56140676455928 -207.5325485963716 23.8437 0.1144 11438 +11440 2 135.04612608736576 -208.76089236487985 23.1324 0.1144 11439 +11441 2 135.569177742026 -209.54537969752147 22.5904 0.1144 11440 +11442 2 135.95002101996022 -210.36563392556857 22.1983 0.1144 11441 +11443 2 136.12873731227268 -211.59446515215183 21.9323 0.1144 11442 +11444 2 136.08417701241956 -212.78490664332608 21.7663 0.1144 11443 +11445 2 136.1828709029055 -214.00141779990912 21.6605 0.1144 11444 +11446 2 136.55318379048438 -215.4423607788742 21.5478 0.1144 11445 +11447 2 136.43181646601948 -216.53477934038176 21.3965 0.1144 11446 +11448 2 136.03199691502243 -217.42765940137144 21.2018 0.1144 11447 +11449 2 136.21141833394935 -218.62021638673053 20.8836 0.1144 11448 +11450 2 136.29700979546848 -219.85210319475033 20.4489 0.1144 11449 +11451 2 136.9067927203128 -220.46634769855626 19.8101 0.1144 11450 +11452 2 137.20666197566146 -221.054603542164 19.1889 0.1144 11451 +11453 2 136.12045401094846 -220.84133473568147 18.6697 0.1144 11452 +11454 2 135.1503462205564 -220.66902786055738 18.2183 0.1144 11453 +11455 2 134.31894383607664 -219.80571288069842 17.7431 0.1144 11454 +11456 2 133.4851791359373 -218.9084817624157 17.3034 0.1144 11455 +11457 2 132.78834086728804 -218.4643017199862 16.973 0.1144 11456 +11458 2 132.0019354206038 -216.9595865502812 16.6911 0.1144 11457 +11459 2 131.2842008870067 -216.40266190742648 16.4307 0.1144 11458 +11460 2 130.35981905001375 -215.67054159412936 16.182 0.1144 11459 +11461 2 129.59217465066456 -214.41505474135158 15.8979 0.1144 11460 +11462 2 129.54964476745278 -213.323934208663 15.4601 0.1144 11461 +11463 2 129.35522332763614 -212.7641838501945 14.7798 0.1144 11462 +11464 2 128.37479201709417 -212.1791236226336 14.1751 0.1144 11463 +11465 2 128.55843962234246 -211.3425462473911 12.9822 0.1144 11464 +11466 2 128.91531908432324 -210.19622801121113 12.751 0.1144 11465 +11467 2 129.27870391443327 -209.24442862329772 12.6445 0.1144 11466 +11468 2 129.58059377811074 -208.1560048306056 12.5459 0.1144 11467 +11469 2 129.57813172811638 -206.95007026831001 12.4709 0.1144 11468 +11470 2 129.5920004039779 -205.74652851257605 12.4189 0.1144 11469 +11471 2 129.45124367110608 -204.50756432714226 12.3876 0.1144 11470 +11472 2 129.88179215294468 -203.524896684403 12.375 0.1144 11471 +11473 2 129.98866041517482 -202.36029649528592 12.3722 0.1144 11472 +11474 2 129.52211618529077 -201.11153348873057 12.3721 0.1144 11473 +11475 2 128.1739143692732 -213.27407754366942 13.1653 0.1144 11464 +11476 2 128.06710660259535 -214.47203492787366 12.8176 0.1144 11475 +11477 2 128.23039615741806 -215.62348508103082 12.6081 0.1144 11476 +11478 2 128.01740219296357 -216.73307371701813 12.5479 0.1144 11477 +11479 2 127.6532207456309 -218.05167887368086 12.529 0.1144 11478 +11480 2 127.08497789304633 -218.984576551147 12.4986 0.1144 11479 +11481 2 126.50621767789517 -219.89795814706844 12.4385 0.1144 11480 +11482 2 126.19535551804623 -221.05220881653239 12.2738 0.1144 11481 +11483 2 126.67059757227739 -222.09690565167477 12.0693 0.1144 11482 +11484 2 126.32884718725947 -223.0598554197622 11.7784 0.1144 11483 +11485 2 125.92719151722085 -224.1035989514525 11.3688 0.1144 11484 +11486 2 125.23174106560151 -225.13068898472227 10.6848 0.1144 11485 +11487 2 103.24814048388467 -210.3812908580071 34.7892 0.1144 11396 +11488 2 103.45753507631379 -211.619422951542 34.5276 0.1144 11487 +11489 2 103.6677764185039 -212.85124389081633 34.3722 0.1144 11488 +11490 2 103.87809187620748 -214.00534705905613 34.3132 0.1144 11489 +11491 2 104.08911266262581 -215.1535334813559 34.3403 0.1144 11490 +11492 2 104.29942486338213 -216.30637820218035 34.4316 0.1144 11491 +11493 2 104.50881945581125 -217.46101627434385 34.5232 0.1144 11492 +11494 2 104.71984024222957 -218.65502154123175 34.6147 0.1144 11493 +11495 2 104.92930539713873 -219.9088780534278 34.7063 0.1144 11494 +11496 2 105.14032647964318 -221.13163097614893 34.7978 0.1144 11495 +11497 2 105.35056782183332 -222.3476054111537 34.8897 0.1144 11496 +11498 2 105.56088327953688 -223.56138198312902 34.9812 0.1144 11497 +11499 2 105.77112462172704 -224.58690981504617 35.0728 0.1144 11498 +11500 2 105.98129865838432 -225.76144680297023 35.1646 0.1144 11499 +11501 2 106.19154000057443 -226.93992305697844 35.2562 0.1144 11500 +11502 2 106.40263164555898 -228.1244597726855 35.3483 0.1144 11501 +11503 2 106.61209680046815 -229.4692129963188 35.4402 0.1144 11502 +11504 2 106.82318844545266 -230.68662545591638 35.5326 0.1144 11503 +11505 2 107.03258303788176 -231.88810711998025 35.6252 0.1144 11504 +11506 2 107.24360382430007 -233.08394914937364 35.7179 0.1144 11505 +11507 2 107.45306897920926 -234.1626852650631 35.8114 0.1144 11506 +11508 2 107.66416062419381 -235.20877150679766 35.9058 0.1144 11507 +11509 2 107.87440196638393 -236.40825992614816 36.0013 0.1144 11508 +11510 2 108.08379655881303 -237.6142245165399 36.0982 0.1144 11509 +11511 2 108.29488820379754 -238.8582828178879 36.1973 0.1144 11510 +11512 2 108.50590899021589 -240.28632596810507 36.2992 0.1144 11511 +11513 2 108.71537414512508 -241.471353758795 36.4056 0.1144 11512 +11514 2 108.92646579010957 -242.65089712971007 36.5176 0.1144 11513 +11515 2 109.13586038253868 -243.8230455535188 36.638 0.1144 11514 +11516 2 109.3469520275232 -244.76807529273543 36.7696 0.1144 11515 +11517 2 109.55719336971335 -245.86884567833408 36.9172 0.1144 11516 +11518 2 109.76665852462253 -247.09503627250774 37.0885 0.1144 11517 +11519 2 109.97767931104084 -248.32737351886175 37.2921 0.1144 11518 +11520 2 110.18877095602537 -249.7202162863632 37.5326 0.1144 11519 +11521 2 110.32697026661961 -251.10311191684315 37.8252 0.1144 11520 +11522 2 110.14799472573466 -252.04960439677296 38.2407 0.1144 11521 +11523 2 110.31081300545529 -253.14761995812728 38.8058 0.1144 11522 +11524 2 111.04353449468229 -253.66252641846683 39.4615 0.1144 11523 +11525 2 111.85563375467368 -254.25077660969225 40.0635 0.1144 11524 +11526 2 112.5621287200812 -255.64877977295595 40.5191 0.1144 11525 +11527 2 112.89677952102065 -256.65113000513037 40.8313 0.1144 11526 +11528 2 113.23881293671982 -257.42079217218793 41.0203 0.1144 11527 +11529 2 113.93955858742356 -258.55147460280625 41.1188 0.1144 11528 +11530 2 114.73966322217277 -259.7380107951078 41.1776 0.1144 11529 +11531 2 115.52854871867399 -260.01867826956527 41.2353 0.1144 11530 +11532 2 116.31574071565308 -261.6260826257317 41.3039 0.1144 11531 +11533 2 117.10293241654607 -261.984434901655 41.379 0.1144 11532 +11534 2 117.88849792344978 -262.93049390206716 41.4557 0.1144 11533 +11535 2 118.59740889008862 -264.3406697319699 41.5198 0.1144 11534 +11536 2 119.46449725019693 -264.19527603732297 41.5643 0.1144 11535 +11537 2 120.4622567583149 -264.45818955768027 41.5923 0.1144 11536 +11538 2 121.56373953087206 -264.9820256888537 41.6074 0.1144 11537 +11539 2 122.7052185777937 -264.8663002901073 41.6144 0.1144 11538 +11540 2 123.84754792750978 -265.1051849395678 41.6164 0.1144 11539 +11541 2 124.95457082747603 -264.7300447993027 41.6175 0.1144 11540 +11542 2 126.07530298243498 -264.64715080958143 41.6184 0.1144 11541 +11543 2 127.20581382162966 -264.33246314427515 41.62 0.1144 11542 +11544 2 128.33639551939058 -264.26995334877375 41.622 0.1144 11543 +11545 2 129.4669099116186 -264.7340821287065 41.6248 0.1144 11544 +11546 2 130.5973501883332 -263.89687368514717 41.629 0.1144 11545 +11547 2 131.7279351430413 -264.3884858357789 41.6346 0.1144 11546 +11548 2 132.85837541975593 -263.5258180819584 41.6424 0.1144 11547 +11549 2 133.98896037446406 -263.9552949116586 41.6536 0.1144 11548 +11550 2 135.11947150974487 -263.3170813617379 41.6696 0.1144 11549 +11551 2 136.25083265173396 -263.36857957070043 41.6917 0.1144 11550 +11552 2 137.38049674116758 -263.18205907108984 41.7194 0.1144 11551 +11553 2 138.48659777948652 -262.7597534259775 41.7575 0.1144 11552 +11554 2 139.13916282403426 -261.7138503730392 41.8317 0.1144 11553 +11555 2 139.61995634110198 -260.3746381280258 41.9292 0.1144 11554 +11556 2 139.60793865369882 -259.2524593137348 42.0109 0.1144 11555 +11557 2 139.1866254717379 -258.35669757014824 42.0678 0.1144 11556 +11558 2 139.16977903881934 -257.1849174370791 42.1 0.1144 11557 +11559 2 139.32346447735117 -255.97239838997206 42.1092 0.1144 11558 +11560 2 139.28628518896687 -254.7849418079685 42.098 0.1144 11559 +11561 2 139.24754701212618 -253.59568311217265 42.0748 0.1144 11560 +11562 2 139.36326252820348 -252.3935799284559 42.0134 0.1144 11561 +11563 2 139.68942638321775 -251.20608022338513 41.9412 0.1144 11562 +11564 2 140.1928608876525 -249.6509215590312 41.8832 0.1144 11563 +11565 2 140.70761914271804 -248.20107676195914 41.8404 0.1144 11564 +11566 2 141.20857359733583 -247.56922771774794 41.8118 0.1144 11565 +11567 2 141.70719297621628 -246.9721464165296 41.7959 0.1144 11566 +11568 2 142.48361789209267 -245.42311478334693 41.7914 0.1144 11567 +11569 2 143.29248241132711 -244.7341277661601 41.7911 0.1144 11568 +11570 2 144.1183562433965 -244.21053898106868 41.7911 0.1144 11569 +11571 2 144.9499663623808 -242.62174414642578 41.7911 0.1144 11570 +11572 2 145.86664406765377 -242.87444505318246 41.7911 0.1144 11571 +11573 2 146.84496567067285 -241.42346808077377 41.7911 0.1144 11572 +11574 2 147.88674971328464 -241.70963708340395 41.7911 0.1144 11573 +11575 2 148.9422470621088 -240.44054556875545 41.7911 0.1144 11574 +11576 2 150.00676683964303 -240.79098614974305 41.7911 0.1144 11575 +11577 2 151.08017798785477 -239.63217512635572 41.7911 0.1144 11576 +11578 2 152.20576257521793 -240.13571392050142 41.7911 0.1144 11577 +11579 2 153.331414468114 -239.2653873054312 41.7911 0.1144 11578 +11580 2 154.42282715118782 -239.51398306182062 41.7911 0.1144 11579 +11581 2 155.51089615777533 -238.6089993315356 41.7911 0.1144 11580 +11582 2 156.58593705300967 -238.6338370697626 41.7911 0.1144 11581 +11583 2 157.655295642987 -237.81176548432654 41.7911 0.1144 11582 +11584 2 158.69210981512322 -236.5818504298658 41.7911 0.1144 11583 +11585 2 159.71436037825262 -236.813239089012 41.7911 0.1144 11584 +11586 2 160.65869986817918 -235.49248881970726 41.7911 0.1144 11585 +11587 2 161.39134100012524 -234.78859233707686 41.7911 0.1144 11586 +11588 2 161.36385571534908 -233.53328022088033 41.7911 0.1144 11587 +11589 2 161.47072072063204 -232.42327082034217 41.7911 0.1144 11588 +11590 2 161.55891281825507 -231.28871822048222 41.7911 0.1144 11589 +11591 2 161.5403960745168 -230.0381912752434 41.7911 0.1144 11590 +11592 2 161.50717154196468 -228.7720336461637 41.7911 0.1144 11591 +11593 2 161.45139375751995 -227.48494493735916 41.7914 0.1144 11592 +11594 2 161.39321003877168 -226.1936825067736 41.7914 0.1144 11593 +11595 2 161.28970753662577 -224.93555480456635 41.7914 0.1144 11594 +11596 2 161.2840601080997 -223.7506928280519 41.7917 0.1144 11595 +11597 2 161.40146260980464 -222.5670745578472 41.7917 0.1144 11596 +11598 2 161.5163177561598 -221.4292320123999 41.792 0.1144 11597 +11599 2 161.6441868957206 -220.34658040721808 41.7922 0.1144 11598 +11600 2 161.7963167027433 -219.29362553978387 41.7928 0.1144 11599 +11601 2 161.89752308965808 -218.18027590542 41.7936 0.1144 11600 +11602 2 161.96464019443712 -217.02704276272135 41.7945 0.1144 11601 +11603 2 161.97843801173244 -215.815044533417 41.7959 0.1144 11602 +11604 2 161.87981468372655 -214.48018181794765 41.7978 0.1144 11603 +11605 2 161.75361780472792 -213.12584922950964 41.8006 0.1144 11604 +11606 2 161.5191326719842 -212.05228268569303 41.8043 0.1144 11605 +11607 2 161.28464457837936 -211.16590641900117 41.8096 0.1144 11606 +11608 2 161.04202788351714 -210.28936191715604 41.8169 0.1144 11607 +11609 2 160.79297993603916 -209.32950823331765 41.8272 0.1144 11608 +11610 2 160.34988968946664 -207.88572953592734 41.841 0.1144 11609 +11611 2 159.86639033050588 -206.3851044505812 41.8606 0.1144 11610 +11612 2 159.4596871349566 -205.55474182747463 41.8919 0.1144 11611 +11613 2 159.0522044951791 -204.89322726032356 41.9322 0.1144 11612 +11614 2 158.64550129962987 -203.7222865857674 41.9793 0.1144 11613 +11615 2 158.23957429136152 -202.47802037030038 42.0314 0.1144 11614 +11616 2 157.83209165158405 -201.6313474486726 42.086 0.1144 11615 +11617 2 157.4253884560348 -200.76810531312555 42.142 0.1144 11616 +11618 2 157.01868526048548 -199.57183424029523 42.1982 0.1144 11617 +11619 2 156.61113205822795 -198.0833315687899 42.2542 0.1144 11618 +11620 2 156.20442886267867 -196.91046264989103 42.3108 0.1144 11619 +11621 2 155.79694622290117 -196.2436220999666 42.3676 0.1144 11620 +11622 2 155.39101921463288 -195.3229201375155 42.425 0.1144 11621 +11623 2 154.98431601908362 -193.86601822541286 42.483 0.1144 11622 +11624 2 154.57683337930615 -192.44002393394982 42.5418 0.1144 11623 +11625 2 154.17013018375687 -191.52350066003908 42.602 0.1144 11624 +11626 2 153.76342698820758 -190.84863786385608 42.6636 0.1144 11625 +11627 2 153.35594434843009 -189.7429927653012 42.7277 0.1144 11626 +11628 2 152.95001734016182 -188.1699644724487 42.7955 0.1144 11627 +11629 2 152.5433141446125 -186.80891807194337 42.868 0.1144 11628 +11630 2 152.13583150483504 -186.14262378579565 42.9472 0.1144 11629 +11631 2 151.72905774680567 -185.4145940617105 43.0343 0.1144 11630 +11632 2 151.85277869723365 -184.90078037054457 42.9206 0.1144 11631 +11633 2 152.15700037970123 -183.4872551902347 42.9206 0.1144 11632 +11634 2 152.4531578055832 -182.08854070505265 42.9206 0.1144 11633 +11635 2 152.74690929716164 -180.68553918324426 42.9206 0.1144 11634 +11636 2 153.0391051572309 -179.67462384369983 42.9206 0.1144 11635 +11637 2 153.33200634601496 -178.79550250984514 42.9206 0.1144 11636 +11638 2 153.46878678800852 -177.7332162325673 42.9206 0.1144 11637 +11639 2 153.32484822963832 -176.37342148268186 42.9206 0.1144 11638 +11640 2 153.18253586525736 -175.02629934034113 42.9206 0.1144 11639 +11641 2 153.04418180974187 -173.75852844902514 42.9206 0.1144 11640 +11642 2 152.90511887247834 -172.61296605944426 42.9206 0.1144 11641 +11643 2 152.73290439526176 -171.6519225504893 42.9206 0.1144 11642 +11644 2 152.55171160616564 -170.70093593025481 42.9206 0.1144 11643 +11645 2 151.88778660311354 -185.78485521867526 43.1337 0.1144 11631 +11646 2 152.25894624045344 -186.49752006520896 43.2611 0.1144 11645 +11647 2 152.6292552789128 -187.3394706045995 43.4101 0.1144 11646 +11648 2 152.99878842617736 -188.75168598063237 43.5758 0.1144 11647 +11649 2 153.36987720495105 -190.3002229468142 43.7531 0.1144 11648 +11650 2 153.74018653949656 -191.38785998773753 43.9373 0.1144 11649 +11651 2 154.1097196867611 -192.11684924753268 44.1244 0.1144 11650 +11652 2 154.48087902801493 -192.96815409101004 44.3117 0.1144 11651 +11653 2 154.85118836256044 -194.31112346237185 44.4987 0.1144 11652 +11654 2 155.22072150982495 -195.85864810960675 44.686 0.1144 11653 +11655 2 155.5918808510787 -196.94815659774747 44.8731 0.1144 11654 +11656 2 155.96219018562425 -197.74023759761616 45.0604 0.1144 11655 +11657 2 156.33327896439795 -198.60875372481206 45.2474 0.1144 11656 +11658 2 156.70281211166252 -199.87945150922775 45.4348 0.1144 11657 +11659 2 157.07319200868812 -201.42865436667495 45.6218 0.1144 11658 +11660 2 157.44428078746182 -202.50906240921765 45.8088 0.1144 11659 +11661 2 157.81381393472634 -203.3685221210227 45.9962 0.1144 11660 +11662 2 158.18412326927188 -204.2621438993085 46.1832 0.1144 11661 +11663 2 158.55528261052567 -205.49952719545996 46.3702 0.1144 11662 +11664 2 158.9248157577902 -206.7290932410781 46.5576 0.1144 11663 +11665 2 159.29505423376952 -207.46592660480616 46.7446 0.1144 11664 +11666 2 159.6662844335895 -208.23107547147336 46.9314 0.1144 11665 +11667 2 160.03581758085403 -209.4776577003861 47.1184 0.1144 11666 +11668 2 160.40605605683334 -211.03126844650313 47.3052 0.1144 11667 +11669 2 160.77721569417324 -212.34476342250832 47.4916 0.1144 11668 +11670 2 161.14752473263266 -213.0550489821026 47.6781 0.1144 11669 +11671 2 161.51868436997256 -213.76528777418594 47.864 0.1144 11670 +11672 2 161.8881466586709 -215.06291028797025 48.0497 0.1144 11671 +11673 2 162.2585265556965 -216.62433865431927 48.2348 0.1144 11672 +11674 2 162.6296153344702 -217.93252765429474 48.4187 0.1144 11673 +11675 2 162.99914848173472 -218.6455032005619 48.6016 0.1144 11674 +11676 2 163.36945781628023 -219.3568097816871 48.783 0.1144 11675 +11677 2 163.74061715753405 -220.660309292237 48.9616 0.1144 11676 +11678 2 164.1101503047986 -222.2179051136481 49.1364 0.1144 11677 +11679 2 164.48045963934408 -223.53518194628407 49.3069 0.1144 11678 +11680 2 164.8515484181178 -224.24592633790638 49.4732 0.1144 11679 +11681 2 165.2275833804782 -224.95134653898145 49.6303 0.1144 11680 +11682 2 165.62701183059787 -226.28770470403305 49.761 0.1144 11681 +11683 2 166.02481408672824 -227.86868150556757 49.8764 0.1144 11682 +11684 2 166.29654634413123 -229.19271450110327 49.9993 0.1144 11683 +11685 2 166.35556674571276 -230.27564928169338 50.1556 0.1144 11684 +11686 2 166.41536659152257 -231.3588333406211 50.3406 0.1144 11685 +11687 2 166.47438699310413 -232.44060267367746 50.5498 0.1144 11686 +11688 2 166.53418683891385 -233.52425160791591 50.7808 0.1144 11687 +11689 2 165.78716314724468 -233.50507652045786 50.827 0.1144 11688 +11690 2 164.67671163154932 -232.8793315154008 50.7794 0.1144 11689 +11691 2 163.56625656282063 -232.715043228799 50.7609 0.1144 11690 +11692 2 162.45580504712524 -232.5065860306442 50.7338 0.1144 11691 +11693 2 161.34542083696272 -231.92349025352746 50.6948 0.1144 11692 +11694 2 160.77656230340938 -230.99169846307828 50.643 0.1144 11693 +11695 2 160.41345359878014 -230.2656434150913 50.5786 0.1144 11694 +11696 2 160.02618232517733 -229.37211114438315 50.4932 0.1144 11695 +11697 2 159.43218617361777 -227.83619677932398 50.2804 0.1144 11696 +11698 2 158.86792247755258 -226.8167145490614 50.0772 0.1144 11697 +11699 2 158.40703005605616 -226.22734914398652 49.9206 0.1144 11698 +11700 2 157.97369105169693 -225.1789069370384 49.8078 0.1144 11699 +11701 2 157.562112235041 -224.01653748869782 49.7347 0.1144 11700 +11702 2 157.08758467406534 -223.2850207219675 49.6972 0.1144 11701 +11703 2 156.55640471423385 -222.35609116908398 49.6891 0.1144 11702 +11704 2 155.74017502536103 -221.0210131108 49.6857 0.1144 11703 +11705 2 154.91981866274034 -220.7344835496342 49.681 0.1144 11704 +11706 2 154.12450872360387 -219.46305803386676 49.6742 0.1144 11705 +11707 2 153.28728822432817 -218.7569306847969 49.665 0.1144 11706 +11708 2 152.51618772975647 -218.18300046195822 49.6518 0.1144 11707 +11709 2 151.94144051892715 -216.5455342149349 49.6339 0.1144 11708 +11710 2 151.40383256342704 -215.73489201463545 49.6079 0.1144 11709 +11711 2 150.74829407165723 -215.26638536344342 49.5712 0.1144 11710 +11712 2 150.05956723127093 -213.60562068801954 49.5219 0.1144 11711 +11713 2 149.40233168694562 -212.88158007060028 49.4603 0.1144 11712 +11714 2 148.76939332265965 -212.39057564286674 49.357 0.1144 11713 +11715 2 148.15992256164628 -210.71484340619043 49.1946 0.1144 11714 +11716 2 147.55278332333694 -209.80650195023662 48.995 0.1144 11715 +11717 2 146.9343876399297 -209.4600914825233 48.8289 0.1144 11716 +11718 2 146.31436250558602 -207.84334413736832 48.7071 0.1144 11717 +11719 2 145.69433707515617 -206.71395533627808 48.6259 0.1144 11718 +11720 2 145.10171002085622 -206.32222891706067 48.5811 0.1144 11719 +11721 2 144.51642857055205 -204.97101969416275 48.5635 0.1144 11720 +11722 2 143.92959474568602 -203.46656154259415 48.559 0.1144 11721 +11723 2 143.3378179941804 -203.0747995546796 48.5551 0.1144 11722 +11724 2 142.74526179844668 -202.11321865003467 48.55 0.1144 11723 +11725 2 142.21973364700278 -200.46382384637815 48.5428 0.1144 11724 +11726 2 141.7120041174495 -199.6127594562587 48.5327 0.1144 11725 +11727 2 141.2059010779716 -199.0887860517393 48.5184 0.1144 11726 +11728 2 140.71992847917437 -197.90384968891556 48.4985 0.1144 11727 +11729 2 140.13952264997693 -196.79888325075558 48.4702 0.1144 11728 +11730 2 139.2998525977536 -196.43485384603264 48.4316 0.1144 11729 +11731 2 138.42228042679508 -195.14953964514967 48.3809 0.1144 11730 +11732 2 137.528488952344 -194.90477821147095 48.3039 0.1144 11731 +11733 2 136.61383467067552 -193.72493011828212 48.1846 0.1144 11732 +11734 2 135.69749369946544 -193.481178744864 48.0337 0.1144 11733 +11735 2 134.780302425461 -192.34076313576918 47.864 0.1144 11734 +11736 2 133.86882019844933 -191.94046572025974 47.6935 0.1144 11735 +11737 2 132.98722922307297 -191.09375255181834 47.5577 0.1144 11736 +11738 2 132.04344300014185 -190.32782302299262 47.4575 0.1144 11737 +11739 2 131.03363448092318 -189.92388611561245 47.3841 0.1144 11738 +11740 2 130.13745069212962 -188.54434851687336 47.325 0.1144 11739 +11741 2 129.25980766260486 -187.443356494443 47.269 0.1144 11740 +11742 2 128.43472390990436 -187.0413141859837 47.208 0.1144 11741 +11743 2 127.60230491622193 -185.84078969945614 47.1128 0.1144 11742 +11744 2 126.74163418876836 -185.28616861853402 46.9552 0.1144 11743 +11745 2 125.87779851272462 -184.39989068457697 46.753 0.1144 11744 +11746 2 125.00262872303631 -183.69545366245822 46.5842 0.1144 11745 +11747 2 124.12498598959769 -182.93774629054235 46.459 0.1144 11746 +11748 2 123.27330018190386 -182.0575242976755 46.3753 0.1144 11747 +11749 2 122.55224565870928 -181.45579247205677 46.3288 0.1144 11748 +11750 2 121.98236370597274 -180.05907050863408 46.3114 0.1144 11749 +11751 2 121.89097150475241 -178.819350717339 46.3092 0.1144 11750 +11752 2 122.05604799944788 -177.71231015061502 46.3092 0.1144 11751 +11753 2 122.28747465174095 -176.65553892384878 46.3092 0.1144 11752 +11754 2 122.55052089936677 -175.6336473877301 46.3092 0.1144 11753 +11755 2 122.54565646810215 -174.42370227138773 46.3092 0.1144 11754 +11756 2 122.29986120468875 -173.11086237492225 46.3092 0.1144 11755 +11757 2 121.87613202149656 -171.7477493567296 46.3092 0.1144 11756 +11758 2 121.66999011313206 -170.6428280371582 46.3092 0.1144 11757 +11759 2 121.67643581253712 -169.47000669279896 46.3092 0.1144 11758 +11760 2 121.99205210420168 -168.25717891913854 46.3092 0.1144 11759 +11761 2 122.60564423705324 -167.61690346549383 46.3092 0.1144 11760 +11762 2 123.33912886181312 -166.6702117918374 46.3092 0.1144 11761 +11763 2 124.076648871813 -165.4484359670758 46.3092 0.1144 11762 +11764 2 124.630342031438 -164.74600363941695 46.3092 0.1144 11763 +11765 2 125.09647137833585 -163.81486594363827 46.3092 0.1144 11764 +11766 2 125.50846142972472 -162.47747323616628 46.3092 0.1144 11765 +11767 2 125.74476725615776 -161.18569082644464 46.3092 0.1144 11766 +11768 2 166.8240415700669 -232.59367072936254 50.9989 0.1144 11688 +11769 2 167.2966830950745 -231.3265981301825 51.2154 0.1144 11768 +11770 2 167.77024548535655 -230.71601858194367 51.4399 0.1144 11769 +11771 2 168.2436664545924 -230.01842478078999 51.681 0.1144 11770 +11772 2 168.43153885112085 -229.99005865682977 52.0568 0.1144 11771 +11773 2 168.99601966737555 -229.72680174528287 52.7492 0.1144 11772 +11774 2 169.7967815567751 -230.79401816633091 53.3716 0.1144 11773 +11775 2 170.63153236924768 -231.64611454136704 53.8751 0.1144 11774 +11776 2 171.4664246027666 -232.08036886373162 54.2646 0.1144 11775 +11777 2 172.30124597771925 -233.5245311358765 54.5471 0.1144 11776 +11778 2 173.1344411586827 -233.65924839712588 54.7313 0.1144 11777 +11779 2 173.96926282972152 -235.08276633851648 54.8456 0.1144 11778 +11780 2 174.8041550632404 -235.47968944239483 54.9522 0.1144 11779 +11781 2 175.63897643819308 -235.65756874195282 55.0589 0.1144 11780 +11782 2 176.4730219219509 -237.013421196517 55.1656 0.1144 11781 +11783 2 177.3070638526754 -237.37265051261957 55.2723 0.1144 11782 +11784 2 178.141814665148 -237.6128603761481 55.379 0.1144 11783 +11785 2 178.9767068986669 -238.7637668132569 55.4856 0.1144 11784 +11786 2 179.81068152385853 -239.29735323925496 55.5923 0.1144 11785 +11787 2 180.6455737573774 -240.2466103582657 55.699 0.1144 11786 +11788 2 181.47954512562183 -241.2104311708397 55.8057 0.1144 11787 +11789 2 182.3144373591407 -241.1582152897622 55.9124 0.1144 11788 +11790 2 183.14841198433234 -242.2881329343576 56.0188 0.1144 11789 +11791 2 183.98330421785124 -243.1063141135663 56.1252 0.1144 11790 +11792 2 184.81805503032382 -243.58789196509227 56.2316 0.1144 11791 +11793 2 185.65209696104833 -245.0533018076759 56.3377 0.1144 11792 +11794 2 186.48614244480615 -245.00219209032844 56.4432 0.1144 11793 +11795 2 187.32103467832502 -246.64887188933693 56.5488 0.1144 11794 +11796 2 188.15585605327772 -246.94958994751516 56.6538 0.1144 11795 +11797 2 188.99067772431653 -247.94901016289538 56.758 0.1144 11796 +11798 2 189.82387290527998 -248.89680153614023 56.8613 0.1144 11797 +11799 2 190.65869428023262 -248.95721163186943 56.9629 0.1144 11798 +11800 2 191.49358651375152 -250.09882146100176 57.0629 0.1144 11799 +11801 2 192.3284081847903 -250.7855620345312 57.16 0.1144 11800 +11802 2 193.16238280998198 -251.47943931915825 57.2533 0.1144 11801 +11803 2 193.99642474070646 -252.59675993071204 57.3409 0.1144 11802 +11804 2 194.83131697422533 -252.6838489498312 57.4227 0.1144 11803 +11805 2 195.6604969038043 -253.16592894713335 57.4932 0.1144 11804 +11806 2 196.47351802544298 -254.55975658902452 57.5434 0.1144 11805 +11807 2 197.06683678849666 -255.07566163885468 57.5753 0.1144 11806 +11808 2 197.04255841729827 -256.2476365069855 57.594 0.1144 11807 +11809 2 196.98993711780676 -257.45415492953515 57.6033 0.1144 11808 +11810 2 196.93816582502356 -258.6604916757692 57.6069 0.1144 11809 +11811 2 196.88632396976027 -259.868910256844 57.6083 0.1144 11810 +11812 2 196.83532886425797 -261.07474303441217 57.61 0.1144 11811 +11813 2 196.78348700899468 -262.28254223018064 57.6125 0.1144 11812 +11814 2 196.69614166113274 -263.52337445430214 57.6159 0.1144 11813 +11815 2 196.51239581181065 -264.85135312793403 57.6206 0.1144 11814 +11816 2 196.3247592552421 -266.18232662434366 57.6271 0.1144 11815 +11817 2 196.13613097483284 -267.5143357311824 57.6358 0.1144 11816 +11818 2 195.77841483001873 -268.64766192778825 57.6484 0.1144 11817 +11819 2 194.9120736505831 -268.85049301459037 57.6682 0.1144 11818 +11820 2 194.04644135289556 -270.1761026187689 57.6943 0.1144 11819 +11821 2 193.18002961097983 -271.6473353085787 57.7245 0.1144 11820 +11822 2 192.3127708232169 -272.1812550258129 57.7581 0.1144 11821 +11823 2 191.44713852552943 -273.01329957758344 57.7937 0.1144 11822 +11824 2 190.58079734609376 -274.09212443664325 57.8298 0.1144 11823 +11825 2 189.71516504840622 -274.40732614129945 57.8659 0.1144 11824 +11826 2 188.8486824479243 -275.8503892942776 57.902 0.1144 11825 +11827 2 187.98234126848868 -276.6365165692758 57.9382 0.1144 11826 +11828 2 187.11670897080114 -277.053880197654 57.9743 0.1144 11827 +11829 2 186.2502263703192 -278.5981431872665 58.0104 0.1144 11828 +11830 2 185.3846646351118 -278.480538999953 58.0465 0.1144 11829 +11831 2 184.51825289319606 -279.89329379917393 58.0829 0.1144 11830 +11832 2 183.65177029271413 -280.4565182414857 58.119 0.1144 11831 +11833 2 182.78620855750665 -281.09745776936717 58.1552 0.1144 11832 +11834 2 181.91979681559098 -282.43587369197365 58.1913 0.1144 11833 +11835 2 181.05416451790344 -282.37173156055934 58.2271 0.1144 11834 +11836 2 180.18782333846778 -283.9329411992018 58.2632 0.1144 11835 +11837 2 179.32134073798585 -284.7300035574947 58.2994 0.1144 11836 +11838 2 178.4557084402983 -285.3591370134775 58.3355 0.1144 11837 +11839 2 177.58929669838258 -286.52972029658065 58.3713 0.1144 11838 +11840 2 176.72288466038077 -286.72563619014846 58.4072 0.1144 11839 +11841 2 175.85647617541224 -287.9817891480677 58.443 0.1144 11840 +11842 2 174.9900644334965 -289.6189441907522 58.4786 0.1144 11841 +11843 2 174.12443213580903 -290.22633898158284 58.5136 0.1144 11842 +11844 2 173.25802009780716 -290.8255997716414 58.5491 0.1144 11843 +11845 2 172.39160835589144 -292.46376246277333 58.5838 0.1144 11844 +11846 2 171.5259760582039 -292.6048181698793 58.6172 0.1144 11845 +11847 2 170.65956402020208 -293.67013042620675 58.6485 0.1144 11846 +11848 2 169.79393172251454 -294.56921011677235 58.6774 0.1144 11847 +11849 2 168.92751998059882 -294.8944361100473 58.7336 0.1144 11848 +11850 2 168.2920048973704 -229.12769839783277 51.3458 0.1144 11771 +11851 2 168.35360530301398 -227.9756404604815 51.8983 0.1144 11850 +11852 2 168.4159851528857 -226.8198481922072 52.1598 0.1144 11851 +11853 2 168.52845479487894 -225.57272063435983 52.4068 0.1144 11852 +11854 2 168.701663147779 -224.26535913604533 52.5658 0.1144 11853 +11855 2 168.87812744169085 -222.95706993731088 52.6411 0.1144 11854 +11856 2 169.05451762008929 -221.6472461338274 52.6411 0.1144 11855 +11857 2 169.2309113515211 -220.33805741608307 52.5748 0.1144 11856 +11858 2 169.4080809741477 -219.02875001743473 52.4667 0.1144 11857 +11859 2 169.58376582383138 -217.72932825359163 52.3379 0.1144 11858 +11860 2 169.760935446458 -216.58415678682417 52.1959 0.1144 11859 +11861 2 169.93654973366165 -215.51486101181635 52.0352 0.1144 11860 +11862 2 170.11294316900728 -214.4860050978258 51.8543 0.1144 11861 +11863 2 170.28940420597195 -213.46411447321162 51.6544 0.1144 11862 +11864 2 170.43256902499004 -212.41106858064057 51.4058 0.1144 11863 +11865 2 170.46676799965687 -211.3134622407303 51.023 0.1144 11864 +11866 2 170.58431262269488 -210.2939915724807 50.5702 0.1144 11865 +11867 2 171.1880657778587 -209.41368560220997 50.2208 0.1144 11866 +11868 2 171.80009546922062 -207.83566138766372 49.9685 0.1144 11867 +11869 2 172.4129013478635 -206.96351088069093 49.8028 0.1144 11868 +11870 2 173.0247896181791 -206.5063684180143 49.7123 0.1144 11869 +11871 2 173.65537093001018 -205.13516401779287 49.6798 0.1144 11870 +11872 2 174.30053874346433 -203.85186700366899 49.672 0.1144 11871 +11873 2 174.9448565502102 -203.41757189116586 49.6616 0.1144 11872 +11874 2 175.14728182108664 -202.37744279695448 49.6471 0.1144 11873 +11875 2 175.27755689495098 -201.18459439932855 49.6269 0.1144 11874 +11876 2 175.4871223001913 -199.98130019661397 49.5992 0.1144 11875 +11877 2 175.8496467605792 -198.63084072133202 49.5594 0.1144 11876 +11878 2 176.21139503368613 -197.1881954316022 49.5034 0.1144 11877 +11879 2 176.5731400498458 -195.74439699780004 49.4259 0.1144 11878 +11880 2 176.93488832295276 -194.35104321422426 49.3226 0.1144 11879 +11881 2 177.44365960015358 -192.98328171887 48.9412 0.1144 11880 +11882 2 177.88881146052353 -192.32324717927304 48.6282 0.1144 11881 +11883 2 178.33481036674067 -191.46192449171986 48.2658 0.1144 11882 +11884 2 178.78003308567682 -190.22843538263763 47.8783 0.1144 11883 +11885 2 179.22433493933852 -188.75585980261746 47.4883 0.1144 11884 +11886 2 179.6703338455556 -187.29827347490345 47.1159 0.1144 11885 +11887 2 180.1696822400397 -186.45686623618485 46.7972 0.1144 11886 +11888 2 180.78978655100104 -185.86566726572914 46.5766 0.1144 11887 +11889 2 181.0115292666137 -184.64824745749482 46.4366 0.1144 11888 +11890 2 180.95737767615822 -183.51289334366882 46.3574 0.1144 11889 +11891 2 180.9023760789945 -182.37888936563832 46.321 0.1144 11890 +11892 2 181.01970772213326 -181.19069514270416 46.3098 0.1144 11891 +11893 2 181.13866585534743 -179.98935027751756 46.3092 0.1144 11892 +11894 2 181.5457734756491 -178.73001153014272 46.3092 0.1144 11893 +11895 2 181.99010532799372 -177.28459614856013 46.3092 0.1144 11894 +11896 2 182.47251497212292 -176.37982200642347 46.3092 0.1144 11895 +11897 2 183.00744778469962 -175.70506032361862 46.3092 0.1144 11896 +11898 2 183.54407764983176 -174.55254455069436 46.3092 0.1144 11897 +11899 2 183.7691370980947 -173.31302219426104 46.3092 0.1144 11898 +11900 2 183.93583652983216 -172.0867516840719 46.3092 0.1144 11899 +11901 2 184.10090976758045 -170.81301422051146 46.3092 0.1144 11900 +11902 2 184.3800880814107 -169.43612332401347 46.3092 0.1144 11901 +11903 2 184.74098605172324 -168.00139312578682 46.3092 0.1144 11902 +11904 2 185.1018843181219 -166.56602618136023 46.3092 0.1144 11903 +11905 2 185.46207370277244 -165.2183691461779 46.3092 0.1144 11904 +11906 2 185.82297167308496 -164.37971955106127 46.3092 0.1144 11905 +11907 2 186.18394050196372 -163.6061763603599 46.3092 0.1144 11906 +11908 2 176.94808623723264 -194.09337882523337 49.6978 0.1144 11880 +11909 2 177.0120920789933 -192.90559607612357 49.6381 0.1144 11908 +11910 2 177.07433000963235 -191.71818477222894 49.6166 0.1144 11909 +11911 2 177.8208626775006 -190.97958158824468 49.5793 0.1144 11910 +11912 2 178.62724714691805 -190.45704054071308 49.5286 0.1144 11911 +11913 2 179.43370573184893 -188.84846466361876 49.4679 0.1144 11912 +11914 2 180.2409405040608 -188.10163401470925 49.3996 0.1144 11913 +11915 2 181.04739583204451 -187.48815952573045 49.3268 0.1144 11914 +11916 2 181.8537838544953 -186.2611340087248 49.252 0.1144 11915 +11917 2 182.66101862670718 -185.89685403708057 49.177 0.1144 11916 +11918 2 183.46740309612466 -184.82929198954173 49.1028 0.1144 11917 +11919 2 184.27386168105556 -183.25080411566933 49.0288 0.1144 11918 +11920 2 185.0810964532674 -182.16447431250583 48.9549 0.1144 11919 +11921 2 185.88670503149 -182.06267207885037 48.8821 0.1144 11920 +11922 2 186.69393980370188 -180.46664876420317 48.8121 0.1144 11921 +11923 2 187.50117457591375 -179.964093929526 48.7466 0.1144 11922 +11924 2 188.30678285805027 -179.2780017148255 48.6861 0.1144 11923 +11925 2 189.11401763026214 -177.7674432248937 48.5682 0.1144 11924 +11926 2 106.12357757665266 -184.01152389879155 31.4924 0.1144 11372 +11927 2 107.179196414768 -183.29493196817026 31.9788 0.1144 11926 +11928 2 108.15110364207955 -182.99068228171456 32.1546 0.1144 11927 +11929 2 108.67663655854153 -181.9470490538697 32.48 0.1144 11928 +11930 2 108.56515122349046 -180.92559119443425 32.8558 0.1144 11929 +11931 2 109.29718197637737 -179.70228620765405 33.3365 0.1144 11930 +11932 2 109.93391992341438 -179.1786474933957 33.962 0.1144 11931 +11933 2 110.72254938958534 -178.43163950322727 34.4708 0.1144 11932 +11934 2 111.72123434493957 -177.54321103250285 34.874 0.1144 11933 +11935 2 112.6907051410782 -177.32933761918173 35.1966 0.1144 11934 +11936 2 113.76184270547782 -176.55058634811513 35.5239 0.1144 11935 +11937 2 114.8176306652771 -176.97388655309936 35.8887 0.1144 11936 +11938 2 115.72427763287895 -177.26837120638982 36.178 0.1144 11937 +11939 2 116.48767692403615 -178.59821084936075 36.4764 0.1144 11938 +11940 2 117.43131465732526 -178.12318940258814 36.9687 0.1144 11939 +11941 2 118.52966036498634 -178.78280552123113 37.4478 0.1144 11940 +11942 2 119.65066018178914 -177.8839891970867 37.8756 0.1144 11941 +11943 2 120.7655538485254 -178.64632497769207 38.3177 0.1144 11942 +11944 2 121.84753082319395 -177.71400949876414 38.7878 0.1144 11943 +11945 2 122.91134902714698 -177.66166887204332 39.2078 0.1144 11944 +11946 2 124.01417063966556 -177.13917129189898 39.5536 0.1144 11945 +11947 2 125.15373214386528 -177.18421996245888 39.8656 0.1144 11946 +11948 2 126.2975723079733 -177.20751853246236 40.1542 0.1144 11947 +11949 2 127.38107391909514 -176.82620201319824 40.5012 0.1144 11948 +11950 2 128.37283972843844 -176.65031791205647 40.9716 0.1144 11949 +11951 2 129.33454818183836 -176.00626869930858 41.5503 0.1144 11950 +11952 2 130.3334934908695 -175.71409075825437 42.1291 0.1144 11951 +11953 2 131.3500080631701 -175.91233289843822 42.618 0.1144 11952 +11954 2 132.13139683381405 -175.24897202883363 43.0066 0.1144 11953 +11955 2 132.46002406383738 -173.84065509328963 43.3062 0.1144 11954 +11956 2 132.6299966095811 -172.5331782485512 43.58 0.1144 11955 +11957 2 132.9467041241481 -171.38936952164568 43.9771 0.1144 11956 +11958 2 133.61069427476218 -171.08764801997464 44.394 0.1144 11957 +11959 2 134.30941073432112 -170.18197205253136 44.7336 0.1144 11958 +11960 2 134.85086253498815 -168.6213080745211 44.9907 0.1144 11959 +11961 2 135.41659158393918 -167.76580867588248 45.1741 0.1144 11960 +11962 2 136.05531482090257 -167.3233374523335 45.2962 0.1144 11961 +11963 2 136.71188405353422 -165.89604827024885 45.3785 0.1144 11962 +11964 2 137.36831186511955 -164.77587222308875 45.4628 0.1144 11963 +11965 2 138.0248810977512 -164.38589428847513 45.57 0.1144 11964 +11966 2 138.68130565238937 -163.12979891985603 45.7013 0.1144 11965 +11967 2 139.1128092515054 -161.68554919136912 45.95 0.1144 11966 +11968 2 139.40518809279095 -160.7129768708351 46.333 0.1144 11967 +11969 2 139.60434074784757 -159.6915406406754 46.713 0.1144 11968 +11970 2 139.75647381181747 -158.60688495443335 47.012 0.1144 11969 +11971 2 140.19353772871298 -157.91955206900073 47.2245 0.1144 11970 +11972 2 140.7454597202691 -156.677304667436 47.3581 0.1144 11971 +11973 2 141.34538266373875 -155.16663419686796 47.4205 0.1144 11972 +11974 2 141.91351764699337 -154.5056115944865 47.437 0.1144 11973 +11975 2 142.21945325892466 -153.58067662436227 47.4387 0.1144 11974 +11976 2 142.3894089277601 -152.52234192898115 47.4387 0.1144 11975 +11977 2 142.43715134919776 -151.36216905060726 47.4387 0.1144 11976 +11978 2 142.2187917687641 -150.02548551620512 47.4387 0.1144 11977 +11979 2 142.03201447681323 -148.68664930028424 47.4387 0.1144 11978 +11980 2 142.3006653611493 -147.7371971021957 47.4387 0.1144 11979 +11981 2 142.1809839172076 -146.45328113050513 47.4387 0.1144 11980 +11982 2 142.55251067245 -145.623434097891 47.4387 0.1144 11981 +11983 2 66.78379524476705 -215.49335256097544 21.9321 0.1144 11017 +11984 2 67.56184309768551 -215.05493106833038 21.9321 0.1144 11983 +11985 2 68.32529053293365 -213.72719809606372 21.9321 0.1144 11984 +11986 2 68.83036159437154 -212.5709646878501 21.9321 0.1144 11985 +11987 2 69.36217633394935 -211.97280482816495 21.9321 0.1144 11986 +11988 2 69.9725089727558 -210.8998637940664 21.9321 0.1144 11987 +11989 2 70.22657661241593 -209.4697802038728 21.9321 0.1144 11988 +11990 2 70.02206445107404 -208.50869117790018 21.9321 0.1144 11989 +11991 2 69.43184333107759 -207.5208446172705 21.9321 0.1144 11990 +11992 2 66.42011069137921 -235.5356765310109 20.6525 0.1144 10998 +11993 2 66.61937764058973 -235.32232924991297 19.6703 0.1144 11992 +11994 2 66.68758241523794 -234.31577137114598 19.2249 0.1144 11993 +11995 2 66.2245343461871 -233.1142690050094 18.7128 0.1144 11994 +11996 2 66.18826241614596 -232.7537271386729 18.2966 0.1144 11995 +11997 2 65.94085833383805 -231.60552871984316 17.9526 0.1144 11996 +11998 2 65.17475169271684 -231.07696492676706 17.6313 0.1144 11997 +11999 2 64.51191852376219 -229.70584511131815 17.3939 0.1144 11998 +12000 2 64.15052730162998 -228.14525775341463 17.1803 0.1144 11999 +12001 2 63.726025484190096 -226.67836303631552 17.0067 0.1144 12000 +12002 2 63.24492850649954 -225.9901499088532 16.8666 0.1144 12001 +12003 2 62.782480453493974 -225.37036811963912 16.7533 0.1144 12002 +12004 2 62.560142928525764 -224.32088760234132 16.6374 0.1144 12003 +12005 2 62.62819096550697 -223.10610108939602 16.5155 0.1144 12004 +12006 2 62.548186563503116 -221.88371772850854 16.4103 0.1144 12005 +12007 2 62.22878377215716 -220.6776256563682 16.2459 0.1144 12006 +12008 2 61.98465230566906 -219.45690966143516 16.0283 0.1144 12007 +12009 2 61.69040125047681 -218.22616089431045 15.7063 0.1144 12008 +12010 2 60.98984163583626 -217.4303134674251 15.3416 0.1144 12009 +12011 2 60.4578859869102 -216.43474330162417 15.0105 0.1144 12010 +12012 2 59.6087759729615 -215.63661424980612 14.6817 0.1144 12011 +12013 2 58.799244700361946 -215.01663662587347 14.2593 0.1144 12012 +12014 2 58.51299996286348 -213.79492434367427 13.8849 0.1144 12013 +12015 2 58.61032365098547 -212.70264133811958 13.4139 0.1144 12014 +12016 2 58.47778295875943 -211.46204483491272 13.0014 0.1144 12015 +12017 2 58.00977153312747 -210.31464547741155 12.5355 0.1144 12016 +12018 2 58.136301945756614 -210.54074720291112 11.704 0.1144 12017 +12019 2 58.6358079243969 -211.67082761957477 11.3057 0.1144 12018 +12020 2 58.13956979655829 -212.58957948953596 11.1676 0.1144 12019 +12021 2 57.07558854314417 -213.01858082051308 11.0072 0.1144 12020 +12022 2 56.71325170244925 -213.46578411215106 10.8149 0.1144 12021 +12023 2 56.896782622129585 -214.72188076822198 10.6123 0.1144 12022 +12024 2 56.23162012101874 -215.2441289095733 10.4242 0.1144 12023 +12025 2 55.32690398745814 -216.09428127873633 10.2936 0.1144 12024 +12026 2 54.866355388281406 -217.24041053063144 10.2043 0.1144 12025 +12027 2 54.54189509971701 -218.221985304097 10.1525 0.1144 12026 +12028 2 54.571745458913476 -219.45222533012014 10.1293 0.1144 12027 +12029 2 54.66386341879016 -220.7879947975701 10.1226 0.1144 12028 +12030 2 53.812133165624125 -220.98520741260032 10.1226 0.1144 12029 +12031 2 52.68566822026871 -221.0760412403775 10.1226 0.1144 12030 +12032 2 58.388352858763085 -209.99784370304445 12.1925 0.1144 12017 +12033 2 59.206925001566745 -209.1832728636286 11.9559 0.1144 12032 +12034 2 59.867546792432826 -208.0496998450772 11.7914 0.1144 12033 +12035 2 59.33682073260874 -207.3124802466386 11.6858 0.1144 12034 +12036 2 58.70708136681555 -206.35587262160524 11.6027 0.1144 12035 +12037 2 58.59401997031365 -205.13120344665367 11.5316 0.1144 12036 +12038 2 58.27218479901454 -203.8996028184646 11.3767 0.1144 12037 +12039 2 57.82832843208882 -202.76097586971397 11.2186 0.1144 12038 +12040 2 57.669077815539424 -201.60473952668676 11.0232 0.1144 12039 +12041 2 57.32548195835057 -200.5390389791956 10.8296 0.1144 12040 +12042 2 57.116799504616786 -199.40326689685463 10.6494 0.1144 12041 +12043 2 56.951887012752024 -198.2381525119717 10.4615 0.1144 12042 +12044 2 57.082165639649716 -197.0113451283702 10.3326 0.1144 12043 +12045 2 57.23917432472625 -195.75338606907152 10.2498 0.1144 12044 +12046 2 56.73224141239558 -194.57495020599197 10.2088 0.1144 12045 +12047 2 55.873999807947925 -193.64888893454682 10.1988 0.1144 12046 +12048 2 55.13607759506502 -193.00268614462334 10.2126 0.1144 12047 +12049 2 54.73417590510891 -191.65495225504287 10.2437 0.1144 12048 +12050 2 54.360684745065015 -190.34560854619355 10.2848 0.1144 12049 +12051 2 53.79077279364553 -189.44939112574102 10.387 0.1144 12050 +12052 2 52.99546966448959 -188.81962943799869 10.489 0.1144 12051 +12053 2 52.090526559423694 -187.55789017026552 10.5675 0.1144 12052 +12054 2 50.96886972754175 -187.8690552758189 10.624 0.1144 12053 +12055 2 49.87933115160219 -187.1135597235438 10.6601 0.1144 12054 +12056 2 49.045485027782505 -186.86783899414309 10.6779 0.1144 12055 +12057 2 48.70421062636994 -185.33053256782165 10.6799 0.1144 12056 +12058 2 48.41551968685687 -183.93144054316048 10.6779 0.1144 12057 +12059 2 48.185853232700765 -182.6280316765985 10.6752 0.1144 12058 +12060 2 47.85525824694296 -181.69927245278822 10.6714 0.1144 12059 +12061 2 48.2292483771943 -180.388399520034 10.6663 0.1144 12060 +12062 2 48.9108882183854 -179.9080243496881 10.6588 0.1144 12061 +12063 2 49.22659294581116 -178.9813005884011 10.6476 0.1144 12062 +12064 2 49.38063654042213 -177.81163395542018 10.6326 0.1144 12063 +12065 2 50.10434623607987 -176.27816204860767 10.6145 0.1144 12064 +12066 2 50.5697704563633 -175.36337924612567 10.5952 0.1144 12065 +12067 2 50.505189737002254 -174.15842728155286 10.5332 0.1144 12066 +12068 2 50.459247875398404 -172.94879788973057 10.4588 0.1144 12067 +12069 2 50.40829528343576 -171.70305120728955 10.4201 0.1144 12068 +12070 2 50.29673533468482 -170.41636996197624 10.4159 0.1144 12069 +12071 2 50.253897724018444 -169.1641258113529 10.4528 0.1144 12070 +12072 2 50.025935334498634 -168.20393687625156 10.5939 0.1144 12071 +12073 2 49.830304476906605 -167.24552037676534 10.7875 0.1144 12072 +12074 2 49.50283061899452 -166.31464688489052 10.9526 0.1144 12073 +12075 2 49.220644751524574 -165.28450759817272 11.0703 0.1144 12074 +12076 2 49.36632011722902 -164.05372810448404 11.1428 0.1144 12075 +12077 2 49.567824226744804 -162.7368968563855 11.1744 0.1144 12076 +12078 2 49.96596360209473 -161.29383902882077 11.1728 0.1144 12077 +12079 2 50.20313660823048 -159.86973623455413 11.1567 0.1144 12078 +12080 2 50.19752974350146 -158.6873053055745 11.0768 0.1144 12079 +12081 2 50.22675104133936 -157.45141819336533 11.0013 0.1144 12080 +12082 2 50.12652165319972 -156.36262817765984 10.9896 0.1144 12081 +12083 2 49.5751172054189 -155.8030295648262 11.0214 0.1144 12082 +12084 2 49.20565817366778 -154.70791729486857 11.0477 0.1144 12083 +12085 2 48.46930521225509 -153.1154672055266 11.0635 0.1144 12084 +12086 2 47.40152938067925 -153.45619003960996 11.0688 0.1144 12085 +12087 2 46.31118737753654 -152.2315527165614 11.0162 0.1144 12086 +12088 2 45.28041904297087 -152.7805695190101 10.9149 0.1144 12087 +12089 2 44.36652732862227 -151.27541452224273 10.828 0.1144 12088 +12090 2 43.297874250416015 -151.59203150124273 10.763 0.1144 12089 +12091 2 42.19387391909166 -150.5287133662493 10.7188 0.1144 12090 +12092 2 41.14856941754157 -150.68403807486936 10.6935 0.1144 12091 +12093 2 40.00621687912314 -150.11925822133358 10.6848 0.1144 12092 +12094 2 66.09992552749962 -233.10396166034332 18.1352 0.1144 11995 +12095 2 65.02274348801504 -233.179576885534 18.4398 0.1144 12094 +12096 2 63.90407854484926 -232.23091464043927 18.5413 0.1144 12095 +12097 2 62.843529403682695 -233.26765941236215 18.689 0.1144 12096 +12098 2 62.52042488850283 -234.64358242339534 18.8114 0.1144 12097 +12099 2 62.365113255981775 -235.86332455789568 18.8868 0.1144 12098 +12100 2 61.923166907999054 -236.99717138711998 18.9202 0.1144 12099 +12101 2 61.05989642778461 -237.64417402545757 18.9167 0.1144 12100 +12102 2 60.40649845553719 -238.68602063532342 18.8109 0.1144 12101 +12103 2 60.13793175364231 -239.8930507700351 18.7141 0.1144 12102 +12104 2 59.868376880940104 -241.10726814999137 18.5578 0.1144 12103 +12105 2 60.59793683025906 -246.7499723117404 26.7324 0.1144 10985 +12106 2 61.02638609536411 -247.91493034105025 26.8902 0.1144 12105 +12107 2 61.98128643995978 -248.6327348256507 27.1424 0.1144 12106 +12108 2 63.07622959238475 -248.0496725396605 27.4279 0.1144 12107 +12109 2 64.12865699878937 -248.32010695363203 27.8002 0.1144 12108 +12110 2 65.12887257374932 -249.39328313901137 28.1406 0.1144 12109 +12111 2 66.09997959824935 -249.70426718506064 28.4813 0.1144 12110 +12112 2 67.08083105498208 -250.71176062039802 28.7946 0.1144 12111 +12113 2 68.08180919726193 -250.8571273762485 29.0629 0.1144 12112 +12114 2 69.16798997856769 -251.61472598919238 29.3493 0.1144 12113 +12115 2 70.27540272995564 -251.13235540283057 29.724 0.1144 12114 +12116 2 71.38818275097907 -251.39195565726124 30.1568 0.1144 12115 +12117 2 72.43172533807144 -250.66179693164742 30.5959 0.1144 12116 +12118 2 73.31518725270541 -250.33317121424346 31.0318 0.1144 12117 +12119 2 73.4628784617205 -249.2044525639742 31.5454 0.1144 12118 +12120 2 73.1276956505554 -248.42881039875112 32.2272 0.1144 12119 +12121 2 74.15209135263991 -247.43288254104272 32.853 0.1144 12120 +12122 2 75.18438412155867 -248.65471692789504 33.5149 0.1144 12121 +12123 2 75.05753153468567 -249.57551109657715 34.2742 0.1144 12122 +12124 2 74.2861083676837 -248.9520142331 34.9714 0.1144 12123 +12125 2 74.4858293299313 -249.9581839696694 35.7434 0.1144 12124 +12126 2 74.67419944721148 -250.53037911329244 36.7766 0.1144 12125 +12127 2 75.20679241903268 -251.82677238614588 37.7479 0.1144 12126 +12128 2 76.20498228585456 -251.4273570634815 38.5871 0.1144 12127 +12129 2 77.28599683507858 -251.96817269920513 39.3322 0.1144 12128 +12130 2 78.32077073925768 -250.88240417764933 40.0355 0.1144 12129 +12131 2 79.40244535840779 -251.60601924380632 40.6333 0.1144 12130 +12132 2 80.52168618905841 -251.34102148000358 41.0724 0.1144 12131 +12133 2 81.6127025258601 -251.95193230924048 41.4383 0.1144 12132 +12134 2 82.69244248580873 -251.5820202814307 41.767 0.1144 12133 +12135 2 83.74469046403041 -251.39760073337828 42.1828 0.1144 12134 +12136 2 84.76803506533803 -251.6007862282192 42.7367 0.1144 12135 +12137 2 85.82844771572296 -251.7116581215643 43.2874 0.1144 12136 +12138 2 86.68720791253543 -252.68585753414692 43.89 0.1144 12137 +12139 2 87.67154284999827 -252.64710748543212 44.5418 0.1144 12138 +12140 2 88.70851276342862 -252.64940725055817 45.1032 0.1144 12139 +12141 2 89.82445397790848 -251.9986946907298 45.6075 0.1144 12140 +12142 2 90.81608403422774 -252.4191879426736 46.2381 0.1144 12141 +12143 2 91.8581149235851 -252.32321488014384 46.804 0.1144 12142 +12144 2 92.97648901620462 -252.72649579767005 47.3099 0.1144 12143 +12145 2 92.84474819814835 -251.55349577022753 47.789 0.1144 12144 +12146 2 92.78925495245582 -250.48907071393046 46.9162 0.1144 12145 +12147 2 92.72698186680962 -249.28428100784294 47.2072 0.1144 12146 +12148 2 92.66555908395783 -248.01589224208618 47.336 0.1144 12147 +12149 2 92.60328599831163 -246.7079917140572 47.4832 0.1144 12148 +12150 2 92.90354966799987 -245.66505723893977 47.6078 0.1144 12149 +12151 2 93.32275722621324 -244.40816020583492 47.6983 0.1144 12150 +12152 2 93.74203564299285 -242.860380263641 47.7571 0.1144 12151 +12153 2 94.15954614865076 -241.63021751111276 47.7873 0.1144 12152 +12154 2 94.57882456543037 -240.80469387957368 47.8008 0.1144 12153 +12155 2 92.9566816896257 -251.28487597014913 48.4971 0.1144 12145 +12156 2 93.52958265797076 -251.31729572294046 49.4292 0.1144 12155 +12157 2 94.23595613408722 -252.28807541442546 50.2911 0.1144 12156 +12158 2 95.27963414556191 -253.00963994217977 51.0583 0.1144 12157 +12159 2 95.35778558417158 -252.75968948460638 50.5067 0.1144 12158 +12160 2 95.88966487052147 -251.30902825113418 49.7106 0.1144 12159 +12161 2 96.56415521070764 -250.93324341336188 49.3592 0.1144 12160 +12162 2 97.12689242745742 -250.21815988327563 48.8995 0.1144 12161 +12163 2 97.5704317137992 -248.6827690297858 48.5069 0.1144 12162 +12164 2 98.01561386893822 -247.20908505781688 48.228 0.1144 12163 +12165 2 98.45994572128284 -246.4159813398167 48.0553 0.1144 12164 +12166 2 98.89288296443054 -245.73584582325822 47.9814 0.1144 12165 +12167 2 99.2789725344072 -244.59721856743707 47.983 0.1144 12166 +12168 2 99.29761271717899 -243.40091094106708 48.0354 0.1144 12167 +12169 2 99.58174807579634 -241.98756229903444 48.1732 0.1144 12168 +12170 2 99.99127169732931 -240.45219117284552 48.319 0.1144 12169 +12171 2 100.3044820546903 -238.98542343494182 48.4571 0.1144 12170 +12172 2 100.70345130289296 -237.83933155860666 48.5912 0.1144 12171 +12173 2 100.9592396819974 -236.6704311418341 48.769 0.1144 12172 +12174 2 100.6228245229696 -235.53884646548266 48.9594 0.1144 12173 +12175 2 100.14667728189907 -234.68540740428074 49.1448 0.1144 12174 +12176 2 99.79827736245653 -233.98867580756746 49.4379 0.1144 12175 +12177 2 99.42959451798637 -233.2475414368763 49.6712 0.1144 12176 +12178 2 98.86451732779028 -231.76952539295652 49.8392 0.1144 12177 +12179 2 98.14028097909727 -230.51096904139285 49.9467 0.1144 12178 +12180 2 97.66243313243803 -229.9247771441739 50.0074 0.1144 12179 +12181 2 97.49750021063161 -228.91066568632544 50.0312 0.1144 12180 +12182 2 97.54361643808002 -227.6822888988389 50.0259 0.1144 12181 +12183 2 97.91590576064229 -226.17006110060194 50.0147 0.1144 12182 +12184 2 98.28897452743273 -224.65766285330085 49.9999 0.1144 12183 +12185 2 98.6620432942232 -223.46820198799037 49.9825 0.1144 12184 +12186 2 99.03589150524185 -222.70320750690723 49.9629 0.1144 12185 +12187 2 99.40818082780407 -221.93504172905597 49.9425 0.1144 12186 +12188 2 99.78047340731356 -220.73057933096422 49.9215 0.1144 12187 +12189 2 100.15354217410403 -219.22024640639268 49.9005 0.1144 12188 +12190 2 100.5258314966663 -217.71046858112626 49.8795 0.1144 12189 +12191 2 100.89890026345674 -216.38706585867092 49.859 0.1144 12190 +12192 2 101.2720398888134 -215.30909377699652 49.8386 0.1144 12191 +12193 2 101.64588809983204 -214.23921565206507 49.8184 0.1144 12192 +12194 2 102.01895686662247 -213.13530594485974 49.7986 0.1144 12193 +12195 2 102.39202563341294 -211.93827630744616 49.7795 0.1144 12194 +12196 2 102.76346820621416 -210.73509010821522 49.7613 0.1144 12195 +12197 2 103.1357575287764 -209.59073814019996 49.7442 0.1144 12196 +12198 2 103.50882629556688 -208.53612379223813 49.7286 0.1144 12197 +12199 2 103.87793349654461 -207.48601327526023 49.716 0.1144 12198 +12200 2 104.23076395332433 -206.2522753078141 49.7073 0.1144 12199 +12201 2 104.25502870456164 -205.05120367784514 49.702 0.1144 12200 +12202 2 104.27851401157069 -203.8494737025099 49.6992 0.1144 12201 +12203 2 104.30362551256903 -202.64779104425776 49.698 0.1144 12202 +12204 2 104.3271108195781 -201.4468935724032 49.6978 0.1144 12203 +12205 2 95.63364569475156 -252.8689547834582 51.8916 0.1144 12158 +12206 2 95.88731216660652 -253.86512000028375 52.7363 0.1144 12205 +12207 2 96.06101702827347 -255.0508211872688 53.6194 0.1144 12206 +12208 2 96.35595653527213 -256.48185599154016 54.5395 0.1144 12207 +12209 2 96.68573752871268 -257.9423025312328 55.5108 0.1144 12208 +12210 2 97.01622740390128 -258.87743935513834 56.5102 0.1144 12209 +12211 2 97.19956615878067 -258.9616084200028 57.5011 0.1144 12210 +12212 2 97.06866933172473 -257.96202514148774 58.4458 0.1144 12211 +12213 2 97.09326549730542 -256.87039544232977 59.3104 0.1144 12212 +12214 2 97.98277168492402 -256.0560896167955 60.2582 0.1144 12213 +12215 2 98.81144027379018 -257.50988255560054 61.2097 0.1144 12214 +12216 2 99.47664582533208 -257.8916706406329 62.0388 0.1144 12215 +12217 2 100.08381200747752 -258.4147315344012 62.7864 0.1144 12216 +12218 2 100.25314296349434 -259.33681077113704 63.5435 0.1144 12217 +12219 2 99.35962478143848 -260.13830724136943 64.4487 0.1144 12218 +12220 2 98.78090293953667 -260.0759535668795 65.4912 0.1144 12219 +12221 2 97.87801999671221 -258.73251199834306 66.54 0.1144 12220 +12222 2 96.91129468421565 -259.11956558369735 67.555 0.1144 12221 +12223 2 95.94549023699358 -257.96694823464634 68.495 0.1144 12222 +12224 2 95.08171200165533 -257.7719826261048 69.2381 0.1144 12223 +12225 2 94.37844929037078 -256.7259612186573 69.7228 0.1144 12224 +12226 2 93.78512046038934 -255.22051402574778 70.0022 0.1144 12225 +12227 2 93.54329001973585 -254.1199576072646 70.1408 0.1144 12226 +12228 2 93.33382486482672 -253.16293634977131 70.1828 0.1144 12227 +12229 2 93.12365082816942 -252.20601991006305 70.1655 0.1144 12228 +12230 2 93.18511612456082 -250.95372570374934 70.1131 0.1144 12229 +12231 2 93.60029836446195 -249.41131786743466 70.0325 0.1144 12230 +12232 2 94.02602135773232 -248.1722918192218 69.93 0.1144 12231 +12233 2 94.45259139684987 -247.35380419459733 69.8116 0.1144 12232 +12234 2 94.87824382764013 -246.59906922605757 69.6822 0.1144 12233 +12235 2 95.30481386675768 -245.33190377938644 69.5461 0.1144 12234 +12236 2 95.73046629754798 -243.7820283672911 69.4081 0.1144 12235 +12237 2 96.15618603387114 -242.47092377709725 69.27 0.1144 12236 +12238 2 96.58183846466139 -241.68187062694025 69.1317 0.1144 12237 +12239 2 97.00763231649796 -240.9929674699068 68.9937 0.1144 12238 +12240 2 97.43406093456926 -239.7085226998883 68.8556 0.1144 12239 +12241 2 97.85978392783963 -238.16098618977878 68.7179 0.1144 12240 +12242 2 98.28635396695714 -236.77527238477518 68.5801 0.1144 12241 +12243 2 98.71200639774742 -236.016300389798 68.4424 0.1144 12242 +12244 2 99.13857643686497 -235.32838955689607 68.3049 0.1144 12243 +12245 2 99.56344942342702 -234.09325734261733 68.168 0.1144 12244 +12246 2 99.98917241669741 -232.54741107478577 68.031 0.1144 12245 +12247 2 100.41560103476868 -230.99962742298644 67.895 0.1144 12246 +12248 2 100.84139488660526 -229.85178333696618 67.76 0.1144 12247 +12249 2 101.26782350467649 -228.75501980650864 67.6259 0.1144 12248 +12250 2 101.69361735651306 -227.68309400200707 67.4937 0.1144 12249 +12251 2 102.1201165370644 -226.54961763983238 67.3635 0.1144 12250 +12252 2 102.54576896785466 -225.39182513857696 67.237 0.1144 12251 +12253 2 102.97148870417783 -224.28857292529025 67.1152 0.1144 12252 +12254 2 103.39721199353433 -223.21408632343866 67.0001 0.1144 12253 +12255 2 103.82293498680468 -222.0514159415252 66.8928 0.1144 12254 +12256 2 104.24617822634417 -220.89816828365406 66.7948 0.1144 12255 +12257 2 104.22766829258644 -219.69736709479213 66.7265 0.1144 12256 +12258 2 104.18885925717959 -218.49742049822362 66.6823 0.1144 12257 +12259 2 104.13626004128608 -217.29982566387918 66.6565 0.1144 12258 +12260 2 104.10070368994378 -216.10707275627095 66.6442 0.1144 12259 +12261 2 104.11131968174072 -214.90430113520074 66.64 0.1144 12260 +12262 2 104.12504693655595 -213.70090961399606 66.64 0.1144 12261 +12263 2 104.04904771900883 -212.51666168409724 66.64 0.1144 12262 +12264 2 103.87032787366303 -211.36579379033884 66.64 0.1144 12263 +12265 2 103.69005594984137 -210.18507269380729 66.64 0.1144 12264 +12266 2 103.56704089634118 -208.95315895783943 66.64 0.1144 12265 +12267 2 104.43593268807385 -208.10308207329405 66.64 0.1144 12266 +12268 2 105.30312742725107 -207.35012445646822 66.64 0.1144 12267 +12269 2 106.09661563762036 -206.49622347723277 66.64 0.1144 12268 +12270 2 106.88847410096706 -205.45460568743965 66.64 0.1144 12269 +12271 2 107.68111200854194 -204.8702688201147 66.64 0.1144 12270 +12272 2 106.9694455804038 -203.84163468179992 66.6856 0.1144 12271 +12273 2 106.0176494867456 -203.54388622421635 67.2837 0.1144 12272 +12274 2 104.9821438972726 -202.7843778818221 67.5559 0.1144 12273 +12275 2 103.88564511333848 -202.8242747894774 67.8703 0.1144 12274 +12276 2 102.74513550394217 -202.7350561543917 68.1932 0.1144 12275 +12277 2 101.6101756472111 -202.74228423925916 68.558 0.1144 12276 +12278 2 100.5136058026105 -202.84208239775074 69.0113 0.1144 12277 +12279 2 99.43704115426587 -202.59784425713048 69.5562 0.1144 12278 +12280 2 98.3613232556823 -202.33308592538248 70.1842 0.1144 12279 +12281 2 97.28364275768836 -202.01095277352533 70.9148 0.1144 12280 +12282 2 96.31888873000045 -202.35763498608898 71.7987 0.1144 12281 +12283 2 95.32666221066928 -202.43111430565656 72.7605 0.1144 12282 +12284 2 94.32826898920439 -202.3906465284784 73.7472 0.1144 12283 +12285 2 93.51328913631875 -202.82145590389547 74.7863 0.1144 12284 +12286 2 93.57299373638674 -203.96993133206286 75.64 0.1144 12285 +12287 2 93.71445905492052 -205.21778580420585 76.242 0.1144 12286 +12288 2 93.44256910648099 -206.31568351595593 76.6371 0.1144 12287 +12289 2 92.68556624772361 -206.73891996576032 76.8852 0.1144 12288 +12290 2 91.87670172848915 -208.17168791302538 77.0403 0.1144 12289 +12291 2 91.0265198551802 -208.5313950373228 77.1523 0.1144 12290 +12292 2 92.08396110330543 -209.24289405232443 77.4998 0.1144 12291 +12293 2 93.12031344253947 -209.56785674490706 77.7955 0.1144 12292 +12294 2 94.15666252482629 -210.13399844750188 78.1424 0.1144 12293 +12295 2 95.19308572262653 -210.57112946799174 78.5176 0.1144 12294 +12296 2 96.22943480491335 -211.0244756565255 78.8995 0.1144 12295 +12297 2 97.2657871441474 -211.57441142164055 79.2683 0.1144 12296 +12298 2 98.28440185522959 -211.9762298826021 79.6034 0.1144 12297 +12299 2 98.85427274466554 -212.60576423687655 79.8552 0.1144 12298 +12300 2 99.26663100554967 -214.20948327226853 80.0209 0.1144 12299 +12301 2 99.67736307244449 -215.7157524287652 80.1203 0.1144 12300 +12302 2 100.54829732268212 -215.5768495349917 80.1713 0.1144 12301 +12303 2 101.66106703720656 -215.79724669460452 80.1906 0.1144 12302 +12304 2 102.7626786072218 -216.00295234995093 80.194 0.1144 12303 +12305 2 103.86513692699813 -216.4416157548303 80.194 0.1144 12304 +12306 2 104.96674849701336 -216.7367440911074 80.194 0.1144 12305 +12307 2 106.10112896974107 -216.85462277532716 80.194 0.1144 12306 +12308 2 107.23632243841328 -217.1356002368991 80.194 0.1144 12307 +12309 2 108.37159357563225 -217.06975102705164 80.194 0.1144 12308 +12310 2 109.50763705101271 -217.52376415640697 80.194 0.1144 12309 +12311 2 110.6381104377721 -217.32807006876456 80.194 0.1144 12310 +12312 2 111.76054345693501 -217.9449968293146 80.194 0.1144 12311 +12313 2 112.88212617330353 -217.9369607389957 80.194 0.1144 12312 +12314 2 114.00463005103265 -218.19330972205995 80.194 0.1144 12313 +12315 2 115.12713363267562 -218.64349413660773 80.194 0.1144 12314 +12316 2 116.25034283911955 -218.43982658160206 80.194 0.1144 12315 +12317 2 117.37192555548805 -219.27969199087792 80.194 0.1144 12316 +12318 2 118.49442913713108 -218.80547854693816 80.194 0.1144 12317 +12319 2 90.69847940639772 -208.6394857367459 76.8054 0.1144 12291 +12320 2 89.73882055012501 -209.77760830003064 76.7698 0.1144 12319 +12321 2 88.95182438400997 -210.25944695496716 76.7542 0.1144 12320 +12322 2 88.49125230004472 -211.32466467898251 76.7332 0.1144 12321 +12323 2 88.15214827125207 -212.53530869964933 76.7119 0.1144 12322 +12324 2 87.82606178869841 -213.9916111460551 76.685 0.1144 12323 +12325 2 87.5273804922551 -215.1275538531135 76.596 0.1144 12324 +12326 2 87.11619662683017 -216.16613155953047 76.4733 0.1144 12325 +12327 2 86.41026541920749 -216.85456325735373 76.4448 0.1144 12326 +12328 2 85.79888942946263 -217.98876617272867 76.592 0.1144 12327 +12329 2 85.70905396485591 -219.25856374396733 76.7295 0.1144 12328 +12330 2 85.89427236835043 -220.2382282174185 76.8491 0.1144 12329 +12331 2 85.96617215207192 -221.4186520699259 76.949 0.1144 12330 +12332 2 86.17479055722 -222.59133314192061 77.0437 0.1144 12331 +12333 2 108.14016247342984 -204.1827534598239 66.64 0.1144 12271 +12334 2 108.76834821397122 -202.9800200435593 66.64 0.1144 12333 +12335 2 109.25960511194754 -202.05474154894927 66.64 0.1144 12334 +12336 2 109.70556996826194 -201.09438946223065 66.6397 0.1144 12335 +12337 2 110.02196244720741 -200.0327859803367 66.6397 0.1144 12336 +12338 2 110.2906705701486 -198.69057882908874 66.6397 0.1144 12337 +12339 2 110.52860259057086 -197.35635428030338 66.6397 0.1144 12338 +12340 2 110.7664640485131 -196.11739548627554 66.6394 0.1144 12339 +12341 2 111.0052463717298 -194.8737838383086 66.6392 0.1144 12340 +12342 2 111.243107829672 -193.6501880072231 66.6389 0.1144 12341 +12343 2 111.48026366281331 -192.70151800651223 66.6386 0.1144 12342 +12344 2 111.71734567652732 -191.6688205266095 66.638 0.1144 12343 +12345 2 111.95605714117781 -190.58031622696853 66.6372 0.1144 12344 +12346 2 112.19391859912 -189.49513515467592 66.6358 0.1144 12345 +12347 2 112.43107443226131 -188.271048638313 66.6344 0.1144 12346 +12348 2 112.66893589020356 -186.88301729096446 66.6322 0.1144 12347 +12349 2 112.90686791062583 -185.56160802124475 66.6288 0.1144 12348 +12350 2 113.14472936856806 -184.30143278754025 66.6243 0.1144 12349 +12351 2 113.3835116917847 -183.04316675031276 66.6182 0.1144 12350 +12352 2 113.62144371220703 -181.96818906372624 66.6095 0.1144 12351 +12353 2 113.80024663488956 -180.95020416693512 66.5974 0.1144 12352 +12354 2 113.80513670278546 -179.72695479935854 66.5804 0.1144 12353 +12355 2 113.72510861389273 -178.41617251666906 66.5566 0.1144 12354 +12356 2 113.55120063715401 -177.08423882733953 66.5232 0.1144 12355 +12357 2 113.28843988165002 -176.0556010094411 66.4787 0.1144 12356 +12358 2 113.20275367257557 -174.95227779203805 66.4149 0.1144 12357 +12359 2 113.62368197023324 -173.6489756169512 66.316 0.1144 12358 +12360 2 114.20399781689352 -173.09112961759058 66.1839 0.1144 12359 +12361 2 114.78275803204465 -172.2446150114314 66.0257 0.1144 12360 +12362 2 115.3623649969568 -170.71960103891314 65.8484 0.1144 12361 +12363 2 115.94112521210792 -169.66114093609139 65.6569 0.1144 12362 +12364 2 116.41216748696233 -169.007662501988 65.4581 0.1144 12363 +12365 2 116.65257955720159 -167.97121971745133 65.2613 0.1144 12364 +12366 2 116.82967861734815 -166.88582890517915 65.0597 0.1144 12365 +12367 2 116.53680538228463 -165.81210248168597 64.8446 0.1144 12366 +12368 2 115.42145737386946 -165.52284355757376 64.5554 0.1144 12367 +12369 2 114.45104522599985 -166.0311141798617 64.0716 0.1144 12368 +12370 2 113.61747274717638 -166.1781192582425 63.4662 0.1144 12369 +12371 2 112.48761581169904 -166.7576438094074 62.9535 0.1144 12370 +12372 2 112.57996469478266 -166.45725266655836 62.1219 0.1144 12371 +12373 2 112.88170988046659 -165.38952974480867 62.1219 0.1144 12372 +12374 2 113.1844467899912 -163.95785035239504 62.1219 0.1144 12373 +12375 2 113.48711284094964 -162.61328371115476 62.1219 0.1144 12374 +12376 2 113.76544085198552 -161.29845345388938 62.1219 0.1144 12375 +12377 2 113.87718473532236 -160.05412456854975 62.1219 0.1144 12376 +12378 2 113.9799467537463 -158.81310113190494 62.1219 0.1144 12377 +12379 2 114.20889690925577 -157.8558027094101 62.1219 0.1144 12378 +12380 2 114.44520273568884 -156.90590900830796 62.1219 0.1144 12379 +12381 2 114.68072882180755 -155.8870186182081 62.1219 0.1144 12380 +12382 2 114.69693257340644 -154.68770539928408 62.1219 0.1144 12381 +12383 2 114.6136518004491 -153.41727451293897 62.1219 0.1144 12382 +12384 2 114.52789453070815 -152.142731206396 62.1219 0.1144 12383 +12385 2 114.52147091490104 -150.91592923389922 62.1219 0.1144 12384 +12386 2 114.53774197203282 -149.7039408311379 62.1219 0.1144 12385 +12387 2 114.81366760179847 -148.7539111391546 62.1219 0.1144 12386 +12388 2 115.39001181571832 -147.86115036183054 62.1219 0.1144 12387 +12389 2 115.96628872410524 -146.33726480752878 62.1219 0.1144 12388 +12390 2 116.54256207945885 -145.3234427670584 62.1219 0.1144 12389 +12391 2 117.12535116595555 -144.8175826970951 62.1219 0.1144 12390 +12392 2 117.96830191247888 -143.539555566752 62.1219 0.1144 12391 +12393 2 112.35490193305762 -167.0737493502948 62.5744 0.1144 12371 +12394 2 111.97539510367082 -167.93695144978665 62.3188 0.1144 12393 +12395 2 111.59496740900954 -168.94064665863206 62.1746 0.1144 12394 +12396 2 111.21623676690368 -170.26295764645198 62.1194 0.1144 12395 +12397 2 110.83587963472252 -171.650009447739 62.1085 0.1144 12396 +12398 2 110.45552250254136 -172.82925281979715 62.1032 0.1144 12397 +12399 2 110.0767918604355 -173.75723226397147 62.0956 0.1144 12398 +12400 2 109.7345024531111 -174.6739669950482 62.085 0.1144 12399 +12401 2 109.40028085540568 -175.79515112246222 62.0701 0.1144 12400 +12402 2 109.06761488920937 -177.0915814037818 62.0497 0.1144 12401 +12403 2 108.73339329150389 -178.38248670408822 62.0231 0.1144 12402 +12404 2 108.14303523905429 -178.48127759371872 61.9811 0.1144 12403 +12405 2 107.00756409812531 -178.48607362890965 61.9189 0.1144 12404 +12406 2 105.87286884839125 -178.60781555751208 61.8414 0.1144 12405 +12407 2 104.73824445722339 -178.9099399216826 61.7529 0.1144 12406 +12408 2 103.60284387877452 -178.7352807102482 61.658 0.1144 12407 +12409 2 102.46736918481226 -179.3336050797958 61.5611 0.1144 12408 +12410 2 101.3327447936444 -179.08009963175073 61.4664 0.1144 12409 +12411 2 100.19727335662932 -179.98998510445745 61.3771 0.1144 12410 +12412 2 99.06264896546142 -179.59626381187235 61.2951 0.1144 12411 +12413 2 97.92710696596629 -180.02954340277935 61.222 0.1144 12412 +12414 2 96.79248257479844 -180.1120001313632 61.1596 0.1144 12413 +12415 2 95.60812117565209 -179.81996336620557 61.1218 0.1144 12414 +12416 2 94.46505620245222 -180.3114969519516 61.1433 0.1144 12415 +12417 2 93.32277096956659 -179.5915003697982 61.1828 0.1144 12416 +12418 2 92.17956812835378 -180.1537818351917 61.2343 0.1144 12417 +12419 2 91.03643259267383 -179.64902041350396 61.2923 0.1144 12418 +12420 2 89.89421792226831 -179.89137740497546 61.3516 0.1144 12419 +12421 2 88.75108238658832 -179.70478039992966 61.411 0.1144 12420 +12422 2 87.60795040394166 -179.62932448839268 61.4704 0.1144 12421 +12423 2 86.46488543074176 -179.81751669891514 61.5297 0.1144 12422 +12424 2 85.32252933929001 -179.33365754003455 61.5891 0.1144 12423 +12425 2 84.17939735664338 -179.73143947641387 61.6484 0.1144 12424 +12426 2 83.03626182096338 -179.5888154097522 61.7078 0.1144 12425 +12427 2 81.89404715055791 -179.82064003390838 61.7669 0.1144 12426 +12428 2 80.75091161487791 -179.74780688868515 61.826 0.1144 12427 +12429 2 79.60777963223126 -179.4544373123578 61.8848 0.1144 12428 +12430 2 78.4646440965513 -179.90945118366 61.9433 0.1144 12429 +12431 2 77.3223585675796 -179.08803048240503 62.0012 0.1144 12430 +12432 2 76.18007333469401 -179.89828992166133 62.0589 0.1144 12431 +12433 2 75.03609104925297 -179.13200761455715 62.116 0.1144 12432 +12434 2 73.89387637884747 -179.63625698238357 62.1718 0.1144 12433 +12435 2 72.7507408431675 -179.25018282993975 62.2261 0.1144 12434 +12436 2 71.6083847517157 -179.2708575139231 62.2784 0.1144 12435 +12437 2 70.4644733248409 -179.41144315431424 62.3283 0.1144 12436 +12438 2 69.32218779586916 -178.90529392071983 62.3753 0.1144 12437 +12439 2 69.27544943007251 -178.52874535338321 62.4224 0.1144 12438 +12440 2 69.09998256487746 -177.40729274394397 62.4224 0.1144 12439 +12441 2 68.92444484111616 -176.30619259822828 62.4224 0.1144 12440 +12442 2 68.75548304796419 -175.20609326224655 62.4224 0.1144 12441 +12443 2 68.63579153709478 -174.1152277117106 62.4224 0.1144 12442 +12444 2 68.51609973013925 -173.0555815248434 62.4224 0.1144 12443 +12445 2 68.39647878174993 -171.99611276156907 62.4224 0.1144 12444 +12446 2 68.26049048928107 -179.75818155717548 62.4126 0.1144 12438 +12447 2 67.13899576700223 -179.37921397306295 62.4425 0.1144 12446 +12448 2 66.01750104472345 -180.13093081366424 62.4674 0.1144 12447 +12449 2 64.8960063224446 -179.48308847566238 62.4884 0.1144 12448 +12450 2 63.773577114930205 -179.5825889708255 62.5148 0.1144 12449 +12451 2 62.64697591836436 -179.9870179055037 62.5904 0.1144 12450 +12452 2 61.507093066749 -180.00615160928788 62.6382 0.1144 12451 +12453 2 60.36632615852263 -179.70704840698718 62.648 0.1144 12452 +12454 2 59.22400361878718 -180.02448712860007 62.6273 0.1144 12453 +12455 2 58.08323671056081 -179.56587005338514 62.5825 0.1144 12454 +12456 2 56.9486423180759 -179.95038477765996 62.5218 0.1144 12455 +12457 2 56.29200853867214 -180.59366061892928 62.4646 0.1144 12456 +12458 2 55.59584950139083 -181.86779880878387 62.4212 0.1144 12457 +12459 2 54.77883299009629 -182.64051168442597 62.3882 0.1144 12458 +12460 2 53.84839510301971 -183.3278866325948 62.3599 0.1144 12459 +12461 2 52.80419505917659 -183.84070572575968 62.3314 0.1144 12460 +12462 2 51.730713052398634 -184.32337972296298 62.2952 0.1144 12461 +12463 2 50.68658357103563 -184.6899693234947 62.2423 0.1144 12462 +12464 2 49.86310886328924 -185.46582350270108 62.167 0.1144 12463 +12465 2 49.11014494280519 -186.8564990546305 62.0707 0.1144 12464 +12466 2 48.44961088741363 -187.32700044060726 61.9654 0.1144 12465 +12467 2 47.70218665266714 -188.320770368715 61.7322 0.1144 12466 +12468 2 46.84577077169159 -189.1134213360969 61.371 0.1144 12467 +12469 2 46.12095021746222 -189.36574306764885 60.9857 0.1144 12468 +12470 2 45.148691089350734 -190.27019026735272 61.1044 0.1144 12469 +12471 2 44.096399492485006 -189.9693271178922 61.5558 0.1144 12470 +12472 2 42.98529753211979 -190.25837042852714 62.0491 0.1144 12471 +12473 2 41.97906354256784 -189.28549744610447 62.5621 0.1144 12472 +12474 2 41.504112338882976 -188.57624376092124 63.0361 0.1144 12473 +12475 2 41.41835506914198 -187.38975065152306 63.3192 0.1144 12474 +12476 2 41.53180351530156 -186.2005515381618 63.3494 0.1144 12475 +12477 2 41.818445867571896 -184.9527846058199 63.224 0.1144 12476 +12478 2 42.21170281183457 -183.90021808948723 63.0585 0.1144 12477 +12479 2 42.59937170020922 -182.96434446349286 62.8603 0.1144 12478 +12480 2 42.87211876142372 -181.90205597430435 62.6858 0.1144 12479 +12481 2 43.11655970300855 -180.73962617931528 62.5736 0.1144 12480 +12482 2 43.39085558575168 -179.28766435090665 62.5201 0.1144 12481 +12483 2 43.78494921284769 -177.9516100473641 62.5066 0.1144 12482 +12484 2 44.270544235508616 -176.85859193599654 62.5178 0.1144 12483 +12485 2 44.77001036415014 -176.0956876339956 62.5509 0.1144 12484 +12486 2 45.183562857028676 -175.07864498255395 62.603 0.1144 12485 +12487 2 45.537172758036604 -173.55186569780454 62.6774 0.1144 12486 +12488 2 45.89085322152461 -172.02437947368506 62.7771 0.1144 12487 +12489 2 46.24446312253254 -170.623776745788 62.9031 0.1144 12488 +12490 2 46.71395983280553 -169.85883494681346 63.0972 0.1144 12489 +12491 2 47.42264832083036 -169.4061773302423 63.443 0.1144 12490 +12492 2 48.38745016396744 -168.27212844313615 63.8397 0.1144 12491 +12493 2 49.46819705134765 -168.45318800795803 64.1897 0.1144 12492 +12494 2 50.55711636072954 -167.61343460070898 64.4882 0.1144 12493 +12495 2 51.64681511433962 -167.59961081395144 64.745 0.1144 12494 +12496 2 52.76044869510466 -167.23523474202767 65.0152 0.1144 12495 +12497 2 53.88480976558878 -167.30731374889268 65.3243 0.1144 12496 +12498 2 55.00847587037205 -167.39440580637438 65.6807 0.1144 12497 +12499 2 56.1328505608173 -167.13762518786257 66.0825 0.1144 12498 +12500 2 57.25272545741589 -167.75823942531878 66.4871 0.1144 12499 +12501 2 58.35025091748042 -167.5098019341778 66.8559 0.1144 12500 +12502 2 59.4358488557353 -168.41709936607185 67.1891 0.1144 12501 +12503 2 60.46256818509997 -168.48831265373718 67.5545 0.1144 12502 +12504 2 61.319749561700846 -169.68333943821963 68.0403 0.1144 12503 +12505 2 62.219829871348644 -169.8330510318656 68.6017 0.1144 12504 +12506 2 63.15945596280145 -170.97306872588769 69.2093 0.1144 12505 +12507 2 64.20785030105537 -170.52737620253464 69.8418 0.1144 12506 +12508 2 65.15962039073544 -171.4610800467641 70.6096 0.1144 12507 +12509 2 66.19931734631378 -172.38221361234062 71.4176 0.1144 12508 +12510 2 67.22955696507196 -171.99812395174638 72.2392 0.1144 12509 +12511 2 68.30677581322009 -172.92154993884236 73.0083 0.1144 12510 +12512 2 69.41475764211233 -172.5514488810009 73.6366 0.1144 12511 +12513 2 70.51269987839065 -172.7554749865075 74.1594 0.1144 12512 +12514 2 71.41796609755835 -171.45037033185545 74.6194 0.1144 12513 +12515 2 72.09479081319509 -171.09192010653783 75.0758 0.1144 12514 +12516 2 73.00224173874216 -170.13947293311614 75.7574 0.1144 12515 +12517 2 73.93036148350461 -170.2083965480515 76.6755 0.1144 12516 +12518 2 74.9951552911917 -170.00076026325885 77.684 0.1144 12517 +12519 2 75.70809689586225 -169.38500038253295 78.8978 0.1144 12518 +12520 2 76.43123983110493 -169.14750782414882 80.1349 0.1144 12519 +12521 2 76.86773102839226 -168.14546369425207 81.5195 0.1144 12520 +12522 2 77.4376124264275 -168.2312355578261 83.0382 0.1144 12521 +12523 2 78.01800813218233 -169.4265832176386 84.6336 0.1144 12522 +12524 2 78.52705607175537 -170.2389258073539 86.2876 0.1144 12523 +12525 2 79.02353379468751 -170.04904672113537 87.9528 0.1144 12524 +12526 2 79.9676293661739 -169.8327527484937 89.397 0.1144 12525 +12527 2 80.38230269548134 -170.0946093519646 90.7936 0.1144 12526 +12528 2 80.24663831874904 -168.85689800981623 93.8862 0.1144 12527 +12529 2 80.23936795318087 -167.62408050619575 93.8689 0.1144 12528 +12530 2 80.32119610372098 -166.48731395107865 93.861 0.1144 12529 +12531 2 80.60681248014762 -165.39831001837155 93.8473 0.1144 12530 +12532 2 80.48309890791322 -164.2369918483769 93.8232 0.1144 12531 +12533 2 80.41197856841988 -162.96067385400218 93.7905 0.1144 12532 +12534 2 80.64014927970115 -161.8375563856324 93.7493 0.1144 12533 +12535 2 80.65473009425797 -160.63777607975993 93.6782 0.1144 12534 +12536 2 80.6677552773057 -159.43989217421102 93.588 0.1144 12535 +12537 2 80.68233609186257 -158.24103440881217 93.3523 0.1144 12536 +12538 2 81.13431363272076 -169.69235847273555 91.7151 0.1144 12527 +12539 2 81.72035389521115 -170.62330577002413 92.2132 0.1144 12538 +12540 2 82.25871405501724 -172.27413007337256 92.386 0.1144 12539 +12541 2 82.79629477059518 -173.137705380025 92.3387 0.1144 12540 +12542 2 83.33317015745828 -173.6195508583201 92.1726 0.1144 12541 +12543 2 83.93538660298361 -174.81339503673487 91.964 0.1144 12542 +12544 2 84.65877294496838 -175.81155504580454 91.8257 0.1144 12543 +12545 2 85.39275076503301 -176.3636861922626 91.7501 0.1144 12544 +12546 2 86.13301742029432 -177.66551175787106 91.8204 0.1144 12545 +12547 2 87.09035439816327 -177.96956431729154 91.9181 0.1144 12546 +12548 2 88.1590077724556 -178.76592703874104 91.9654 0.1144 12547 +12549 2 89.29818549745653 -178.36120230054175 91.9517 0.1144 12548 +12550 2 90.42468158345312 -178.8245639008138 91.8285 0.1144 12549 +12551 2 91.2487862168572 -178.10760422596275 91.3948 0.1144 12550 +12552 2 91.47551623455506 -177.3685357782688 90.3594 0.1144 12551 +12553 2 91.84695880735623 -176.60732731235362 90.3594 0.1144 12552 +12554 2 92.2281659462457 -175.67200304297108 90.3594 0.1144 12553 +12555 2 92.69514559593793 -174.48559866222783 90.3594 0.1144 12554 +12556 2 92.99618515682099 -173.0413877487278 90.3594 0.1144 12555 +12557 2 92.81668942028031 -172.0593832853666 90.3594 0.1144 12556 +12558 2 90.78923024390816 -179.48331777574916 90.7374 0.1144 12551 +12559 2 90.3514105696733 -181.0040026921807 90.5349 0.1144 12558 +12560 2 89.91429622415322 -181.90999062663258 90.4109 0.1144 12559 +12561 2 89.44731331751373 -182.6741075688807 90.3568 0.1144 12560 +12562 2 88.83053580613041 -183.77455308741506 90.356 0.1144 12561 +12563 2 88.14160434260134 -185.09512394656713 90.3546 0.1144 12562 +12564 2 87.45507881337586 -185.72821920021585 90.3526 0.1144 12563 +12565 2 86.77917851604684 -186.6946863801109 90.3501 0.1144 12564 +12566 2 86.19549530601144 -188.05701967022912 90.3462 0.1144 12565 +12567 2 86.03445093960876 -189.1863964023026 90.3412 0.1144 12566 +12568 2 86.02312280911653 -190.39126801156362 90.3336 0.1144 12567 +12569 2 86.31414506923329 -191.41586872186036 90.3235 0.1144 12568 +12570 2 86.87577978416797 -192.11577254544082 90.3095 0.1144 12569 +12571 2 86.6710226945014 -193.36753103858226 90.2896 0.1144 12570 +12572 2 86.55531398840468 -194.59737371314793 90.2611 0.1144 12571 +12573 2 86.57474834047018 -195.78997942035153 90.221 0.1144 12572 +12574 2 86.64664812419167 -196.96624102009136 90.1681 0.1144 12573 +12575 2 86.73806075535362 -198.13731863892977 90.0992 0.1144 12574 +12576 2 86.83589101917022 -199.30059402853948 89.9889 0.1144 12575 +12577 2 86.88836519273934 -200.46391503587813 89.8022 0.1144 12576 +12578 2 86.68275434123092 -201.66575181861964 89.6 0.1144 12577 +12579 2 86.17691064554539 -202.88773227415106 89.4432 0.1144 12578 +12580 2 85.8240701218379 -204.2106334030769 89.329 0.1144 12579 +12581 2 85.65085851199066 -205.35942737272876 89.2528 0.1144 12580 +12582 2 85.61605596824523 -206.56279825013013 89.2094 0.1144 12581 +12583 2 85.69042899180315 -207.79353203653451 89.1887 0.1144 12582 +12584 2 85.82948867211947 -209.03062976942044 89.1724 0.1144 12583 +12585 2 85.86346896201098 -210.22292887818605 89.1495 0.1144 12584 +12586 2 85.66600023773518 -211.3894971842046 89.1173 0.1144 12585 +12587 2 85.52842673155234 -212.55802220508735 89.0719 0.1144 12586 +12588 2 85.55747771476538 -213.7781687679723 89.0098 0.1144 12587 +12589 2 85.50562904952156 -214.9785648106798 88.9263 0.1144 12588 +12590 2 85.39316947445609 -216.16321366055854 88.8012 0.1144 12589 +12591 2 85.37207322484224 -217.36797034304618 88.6133 0.1144 12590 +12592 2 85.34935048515305 -218.57740706859732 88.3758 0.1144 12591 +12593 2 85.32754535379112 -219.7810058823996 88.1017 0.1144 12592 +12594 2 85.30482261410194 -220.98647851629204 87.803 0.1144 12593 +12595 2 85.2829466241738 -222.1913449926153 87.4905 0.1144 12594 +12596 2 85.26029474305079 -223.3975867882328 87.1735 0.1144 12595 +12597 2 85.23834819064258 -224.60334842426073 86.858 0.1144 12596 +12598 2 85.2156254509534 -225.81014567849485 86.5446 0.1144 12597 +12599 2 85.19459976381967 -227.01766256647394 86.2333 0.1144 12598 +12600 2 85.17265321141141 -228.2243373308303 85.9219 0.1144 12599 +12601 2 85.14675190317104 -229.43287612738243 85.6142 0.1144 12600 +12602 2 85.10869697144713 -230.64625429947958 85.3255 0.1144 12601 +12603 2 85.02615638612559 -231.8544917977307 85.0567 0.1144 12602 +12604 2 84.73070408685807 -232.98619325151716 84.7535 0.1144 12603 +12605 2 84.17940629642243 -233.83419956074135 84.3718 0.1144 12604 +12606 2 83.62810495295349 -234.8373977429411 83.9373 0.1144 12605 +12607 2 83.07680390557064 -236.01138662134184 83.475 0.1144 12606 +12608 2 82.66555549337363 -237.09753106272433 83.0186 0.1144 12607 +12609 2 82.86595715758925 -238.2132398387351 82.6434 0.1144 12608 +12610 2 83.44565765807197 -239.16794108234774 82.3892 0.1144 12609 +12611 2 84.02599618173659 -240.1812450066712 82.2366 0.1144 12610 +12612 2 84.60647286950027 -241.42951158779795 82.159 0.1144 12611 +12613 2 85.18695281421117 -242.44742895563607 82.1316 0.1144 12612 +12614 2 85.76658245612768 -243.26032272560838 82.1324 0.1144 12613 +12615 2 86.34699183835845 -244.4445182537198 82.1433 0.1144 12614 +12616 2 86.92669233884116 -245.6660756778541 82.1584 0.1144 12615 +12617 2 87.50717228355207 -246.39275110942611 82.1772 0.1144 12616 +12618 2 88.24983856132283 -247.3613560610799 82.2086 0.1144 12617 +12619 2 89.16140171382847 -248.373264669381 82.2584 0.1144 12618 +12620 2 90.07528987514372 -248.7305484115721 82.3166 0.1144 12619 +12621 2 90.97549572530232 -249.92751902726877 82.3712 0.1144 12620 +12622 2 91.80784060347139 -250.22035462346525 82.4018 0.1144 12621 +12623 2 92.58381316611643 -251.68146513059958 82.3948 0.1144 12622 +12624 2 93.35893897900043 -252.29499416731835 82.348 0.1144 12623 +12625 2 93.54697679859409 -253.09666920245093 82.2441 0.1144 12624 +12626 2 93.08883107887397 -254.664769071541 82.0739 0.1144 12625 +12627 2 92.5846103202305 -255.88775609666135 81.8448 0.1144 12626 +12628 2 92.08038956158701 -256.4606752101226 81.5634 0.1144 12627 +12629 2 91.57602738189725 -257.3882654699281 81.2372 0.1144 12628 +12630 2 91.07265692604813 -258.91621740598976 80.8746 0.1144 12629 +12631 2 90.56843616740464 -260.1951790712042 80.488 0.1144 12630 +12632 2 90.14572913489594 -260.5503903480299 79.8983 0.1144 12631 +12633 2 89.39155638389335 -259.69553503084563 79.1862 0.1144 12632 +12634 2 88.33826223945758 -259.7898832457936 78.6136 0.1144 12633 +12635 2 87.36144646405093 -258.6339259718738 78.1404 0.1144 12634 +12636 2 88.0856394336711 -259.4169564785722 77.9066 0.1144 12635 +12637 2 89.02127721757549 -260.20509435283327 78.342 0.1144 12636 +12638 2 90.0205850490356 -260.5682170613454 78.5333 0.1144 12637 +12639 2 91.12591371172208 -260.8457348035718 78.743 0.1144 12638 +12640 2 92.2625907548641 -261.00329756363476 78.9463 0.1144 12639 +12641 2 93.35201139454591 -260.9961217570087 79.1154 0.1144 12640 +12642 2 94.40378721432248 -261.93159318697553 79.2383 0.1144 12641 +12643 2 95.45626836281377 -261.87220198487097 79.3187 0.1144 12642 +12644 2 96.50804418259038 -262.98951694173667 79.3696 0.1144 12643 +12645 2 97.56059618964791 -262.74837744559176 79.4032 0.1144 12644 +12646 2 98.61152170663006 -264.04715507343235 79.4284 0.1144 12645 +12647 2 99.66407371368759 -263.6246152675109 79.4511 0.1144 12646 +12648 2 100.71584953346417 -263.7200630498159 79.4738 0.1144 12647 +12649 2 101.76755449467454 -264.50164720903024 79.4962 0.1144 12648 +12650 2 102.81933031445107 -264.6543482796538 79.518 0.1144 12649 +12651 2 103.8718823215086 -265.4853557306373 79.5396 0.1144 12650 +12652 2 104.92365814128519 -265.5930719412913 79.56 0.1144 12651 +12653 2 105.97535984554833 -266.4713972927367 79.5796 0.1144 12652 +12654 2 107.02713566532486 -266.5320387295863 79.5978 0.1144 12653 +12655 2 108.07891148510141 -267.4575013984503 79.6138 0.1144 12654 +12656 2 109.1305458838317 -267.4753921235648 79.627 0.1144 12655 +12657 2 110.18316845336932 -268.4414648022012 79.6359 0.1144 12656 +12658 2 111.23487371066581 -268.41968296393446 79.6393 0.1144 12657 +12659 2 112.28664597740902 -269.42247703699377 79.6348 0.1144 12658 +12660 2 113.3383512347055 -269.36538469461794 79.6188 0.1144 12659 +12661 2 114.39097380424313 -270.40281730038635 79.5866 0.1144 12660 +12662 2 115.44267876545348 -270.31356568460035 79.5329 0.1144 12661 +12663 2 116.49438402274995 -271.34539565343005 79.4522 0.1144 12662 +12664 2 117.54622714805937 -271.33764840950926 79.333 0.1144 12663 +12665 2 118.59623811156122 -272.1837184466379 79.1308 0.1144 12664 +12666 2 119.66550156882653 -271.6021217884304 78.8365 0.1144 12665 +12667 2 120.75324479162198 -271.9380589510965 78.4812 0.1144 12666 +12668 2 121.84027942875548 -272.17283899378634 78.0937 0.1144 12667 +12669 2 122.86846289902111 -272.6728408608573 77.7076 0.1144 12668 +12670 2 123.39131795250398 -273.8061091117694 77.3917 0.1144 12669 +12671 2 123.6857383689514 -274.8726412224616 77.1677 0.1144 12670 +12672 2 123.98001736435249 -275.93245231289154 77.0188 0.1144 12671 +12673 2 124.27274398519168 -276.9284877512027 76.925 0.1144 12672 +12674 2 124.56709354307287 -278.2253231015737 76.8667 0.1144 12673 +12675 2 124.85981690696485 -279.54544232173885 76.8278 0.1144 12674 +12676 2 125.15416646484607 -280.9038954297523 76.7948 0.1144 12675 +12677 2 125.44766927296624 -282.0190919174545 76.7637 0.1144 12676 +12678 2 125.7411720810864 -283.0608597365799 76.7354 0.1144 12677 +12679 2 126.03389544497833 -284.0614920410459 76.7116 0.1144 12678 +12680 2 126.32824500285953 -285.18639289080306 76.6937 0.1144 12679 +12681 2 126.6217478109797 -286.5291067707901 76.6844 0.1144 12680 +12682 2 126.91532118157993 -287.89443150598606 76.6858 0.1144 12681 +12683 2 127.20804454547189 -289.1864332271275 76.6998 0.1144 12682 +12684 2 127.33415398508217 -290.3167641746355 76.7432 0.1144 12683 +12685 2 127.30500680275767 -291.5336664010635 76.8247 0.1144 12684 +12686 2 127.24184445381084 -292.7665743578208 76.9398 0.1144 12685 +12687 2 127.18037915741945 -293.99972122632573 77.0795 0.1144 12686 +12688 2 127.1179962527008 -295.23496100320074 77.2372 0.1144 12687 +12689 2 127.05490476232013 -296.47041654367644 77.4054 0.1144 12688 +12690 2 127.02738377398494 -297.68908491186124 77.5793 0.1144 12689 +12691 2 127.44854822673261 -298.52469443933666 77.7532 0.1144 12690 +12692 2 128.06369803605577 -299.55686122838625 77.929 0.1144 12691 +12693 2 128.67885110232615 -301.1954025316367 78.1105 0.1144 12692 +12694 2 129.2940714741294 -301.7816879018202 78.3012 0.1144 12693 +12695 2 129.64653125997336 -302.6151344702181 78.5252 0.1144 12694 +12696 2 129.6222796305107 -303.7979153071685 78.7998 0.1144 12695 +12697 2 129.51134193313783 -305.0374095970644 79.1076 0.1144 12696 +12698 2 129.4004042357649 -306.27906906628596 79.4245 0.1144 12697 +12699 2 129.28868709416383 -307.52922188859395 79.7289 0.1144 12698 +12700 2 129.1389427915031 -308.8518016807138 79.9753 0.1144 12699 +12701 2 128.83379648862737 -310.2754584605909 80.0386 0.1144 12700 +12702 2 129.2362573347454 -310.87077578088105 79.966 0.1144 12701 +12703 2 130.1695232342489 -311.9532017352705 79.849 0.1144 12702 +12704 2 131.12050002016855 -312.36484471186407 79.7104 0.1144 12703 +12705 2 132.07077147737337 -313.2048133515967 79.5682 0.1144 12704 +12706 2 133.02090151353192 -313.833305721173 79.4374 0.1144 12705 +12707 2 133.97117297073675 -314.45079485709294 79.3229 0.1144 12706 +12708 2 134.92129974994808 -315.30036998004493 79.21 0.1144 12707 +12709 2 135.87157120715293 -315.69527558930963 79.0888 0.1144 12708 +12710 2 136.82177210187766 -316.76931800153983 78.9606 0.1144 12709 +12711 2 137.75102926389116 -316.7601609975095 78.8178 0.1144 12710 +12712 2 138.04835427525177 -317.51706766182724 78.5394 0.1144 12711 +12713 2 138.39125161370637 -318.2889638750431 78.3241 0.1144 12712 +12714 2 138.73401078806185 -319.29121319446097 78.1684 0.1144 12713 +12715 2 139.07690812651646 -320.86223022501014 78.0665 0.1144 12714 +12716 2 139.42058490919925 -322.4378357258476 78.013 0.1144 12715 +12717 2 139.7633440835548 -323.48270585187487 78.0027 0.1144 12716 +12718 2 140.10624142200942 -324.2558790996437 78.0293 0.1144 12717 +12719 2 140.44991820469218 -325.029010805128 78.0665 0.1144 12718 +12720 2 140.79281880009398 -326.5009988172965 78.122 0.1144 12719 +12721 2 141.13557471750232 -328.0769876107703 78.192 0.1144 12720 +12722 2 141.39274741711824 -329.5661114944813 78.2925 0.1144 12721 +12723 2 141.52698516189972 -330.5941820140882 78.4412 0.1144 12722 +12724 2 141.66122290668122 -331.62246203109675 78.6192 0.1144 12723 +12725 2 141.7953897928965 -332.6509786387933 79.0644 0.1144 12724 +12726 2 87.15227197663171 -258.62222819128624 77.8044 0.1144 12635 +12727 2 86.34172409482944 -258.0508721580003 77.579 0.1144 12726 +12728 2 85.53025534775271 -256.7799983366111 77.448 0.1144 12727 +12729 2 84.71963335043704 -256.19745414611407 77.3637 0.1144 12728 +12730 2 83.90901461006858 -255.19124371193692 77.2856 0.1144 12729 +12731 2 83.09754586299185 -254.3590880281236 77.2122 0.1144 12730 +12732 2 82.28699798118959 -253.63624136228384 77.1372 0.1144 12731 +12733 2 81.47552923411281 -253.52150318111507 77.0622 0.1144 12732 +12734 2 80.6641310495162 -252.4019860760701 76.9874 0.1144 12733 +12735 2 79.85428849642871 -251.38089406191187 76.9124 0.1144 12734 +12736 2 79.04289031183205 -251.09363411613708 76.8373 0.1144 12735 +12737 2 78.23142156475528 -249.35012515272342 76.7626 0.1144 12736 +12738 2 77.42087368295306 -249.24253193189935 76.6875 0.1144 12737 +12739 2 76.60940493587628 -248.0223614147107 76.6125 0.1144 12738 +12740 2 75.79800675127964 -247.10233206921998 76.5377 0.1144 12739 +12741 2 74.98816419819217 -246.71784657621964 76.4627 0.1144 12740 +12742 2 74.17669545111544 -245.11425236775545 76.3879 0.1144 12741 +12743 2 73.36607671074697 -244.9649756373671 76.3129 0.1144 12742 +12744 2 72.55460796367024 -243.64783608188515 76.2381 0.1144 12743 +12745 2 71.74320977907358 -242.82700775761708 76.1634 0.1144 12744 +12746 2 70.93266189727132 -242.34436372404633 76.0883 0.1144 12745 +12747 2 70.12203989995564 -240.8870074510365 76.0138 0.1144 12746 +12748 2 69.31057115287891 -240.57158039861395 75.9391 0.1144 12747 +12749 2 68.49995241251044 -239.2781747024062 75.8643 0.1144 12748 +12750 2 67.68848366543371 -238.5543221992981 75.7901 0.1144 12749 +12751 2 66.87708548083708 -237.94671008608356 75.7159 0.1144 12750 +12752 2 66.06731378631576 -236.6667547256218 75.642 0.1144 12751 +12753 2 65.25584503923903 -236.1634998209505 75.5686 0.1144 12752 +12754 2 64.44444685464241 -234.90972066127472 75.4958 0.1144 12753 +12755 2 63.63382811427394 -233.317203212614 75.4239 0.1144 12754 +12756 2 62.82235936719721 -233.2403128764701 75.353 0.1144 12755 +12757 2 62.011811485394944 -232.63915441667172 75.2839 0.1144 12756 +12758 2 61.201189488079265 -231.6388314102136 75.217 0.1144 12757 +12759 2 60.3897207410025 -230.86127785468878 75.1534 0.1144 12758 +12760 2 59.57910200063405 -229.93884847592818 75.0943 0.1144 12759 +12761 2 58.76763325355732 -229.0851875988514 75.0417 0.1144 12760 +12762 2 57.956235068960666 -228.18306608861917 74.9972 0.1144 12761 +12763 2 57.26765014780704 -227.29871669336345 74.965 0.1144 12762 +12764 2 57.14965263464616 -226.1125890113824 74.9526 0.1144 12763 +12765 2 57.393175967903765 -224.8950887450153 74.9638 0.1144 12764 +12766 2 57.67072453471149 -223.6309684098975 75.0033 0.1144 12765 +12767 2 57.945094532968014 -222.43416834172916 75.08 0.1144 12766 +12768 2 58.22993472211371 -221.2742932966221 75.1909 0.1144 12767 +12769 2 58.513999020064496 -220.1221367607132 75.3273 0.1144 12768 +12770 2 58.79883920921014 -218.9571364188211 75.4813 0.1144 12769 +12771 2 59.082903211074864 -217.74283361808472 75.6462 0.1144 12770 +12772 2 59.36852314053482 -216.5181866449226 75.8167 0.1144 12771 +12773 2 59.608871162188436 -215.2857488115211 75.994 0.1144 12772 +12774 2 59.7675199573014 -214.04635344987474 76.1832 0.1144 12773 +12775 2 59.94399431814102 -212.85893378695232 76.3734 0.1144 12774 +12776 2 60.176203967695585 -211.70180187478627 76.55 0.1144 12775 +12777 2 60.426239479062964 -210.555701024626 76.7077 0.1144 12776 +12778 2 60.60915190249889 -209.39041652134114 76.8284 0.1144 12777 +12779 2 60.55176124793992 -208.15655832641622 76.8947 0.1144 12778 +12780 2 60.36011188791575 -206.89645290212627 76.9202 0.1144 12779 +12781 2 60.16761192901109 -205.63051405920504 76.9266 0.1144 12780 +12782 2 59.845874061927766 -204.40475523927142 76.9577 0.1144 12781 +12783 2 59.34861146631643 -203.43450420672804 77.0543 0.1144 12782 +12784 2 58.84901705191493 -202.4217523580843 77.2094 0.1144 12783 +12785 2 58.35104912758882 -201.16769636955695 77.413 0.1144 12784 +12786 2 57.85138415070725 -200.03799463570272 77.6499 0.1144 12785 +12787 2 57.353345367814924 -199.09011149635307 77.9066 0.1144 12786 +12788 2 56.85368039093335 -197.99893230880627 78.1707 0.1144 12787 +12789 2 56.35486216381284 -196.7260892551897 78.4353 0.1144 12788 +12790 2 55.856047193639526 -195.64771952356705 78.701 0.1144 12789 +12791 2 55.357228966519 -194.74495184549897 78.9681 0.1144 12790 +12792 2 54.85841429243185 -193.61732959683735 79.2372 0.1144 12791 +12793 2 54.35959606531134 -192.2927819797179 79.5088 0.1144 12792 +12794 2 53.86071053265796 -191.24404464944016 79.7843 0.1144 12793 +12795 2 53.36189230553744 -190.40178037983443 80.0649 0.1144 12794 +12796 2 52.86314819393036 -189.24716867867943 80.353 0.1144 12795 +12797 2 52.3641885457635 -187.86424975538932 80.6509 0.1144 12796 +12798 2 51.86544443415646 -186.84265904486637 80.9637 0.1144 12797 +12799 2 51.366626207035935 -186.05928118207095 81.2966 0.1144 12798 +12800 2 50.866961230154324 -184.87929458787713 81.6572 0.1144 12799 +12801 2 50.368922447262 -183.4347612325521 82.0576 0.1144 12800 +12802 2 49.86932803286054 -182.45190235207127 82.5045 0.1144 12801 +12803 2 49.57916308761901 -181.61961606751566 83.053 0.1144 12802 +12804 2 49.468487693665516 -180.51349869541454 83.6828 0.1144 12803 +12805 2 49.02789718909389 -179.87992457971558 84.4724 0.1144 12804 +12806 2 48.369586913617795 -178.99725772022205 85.4731 0.1144 12805 +12807 2 47.43277703783187 -179.10087577717871 86.4209 0.1144 12806 +12808 2 46.46329650340721 -177.97709794864534 87.1811 0.1144 12807 +12809 2 45.89580055321903 -176.99540738249203 87.7643 0.1144 12808 +12810 2 45.50365365850959 -176.2718078534739 88.2098 0.1144 12809 +12811 2 45.13814257261007 -175.50912696361883 88.5539 0.1144 12810 +12812 2 44.85323203659632 -174.42866332684576 89.052 0.1144 12811 +12813 2 44.863902710337854 -173.2689129806054 89.5885 0.1144 12812 +12814 2 44.90858549585492 -172.16444609125577 90.209 0.1144 12813 +12815 2 45.164299759445925 -171.11090919879368 90.7301 0.1144 12814 +12816 2 44.59216109980551 -169.7995830020535 91.2103 0.1144 12815 +12817 2 44.03506427983994 -168.39924112453934 91.5771 0.1144 12816 +12818 2 44.23092694398203 -167.17312485022222 91.8582 0.1144 12817 +12819 2 44.442975655986515 -166.18966562028032 92.094 0.1144 12818 +12820 2 44.65657999950018 -165.14026171620765 92.3014 0.1144 12819 +12821 2 44.868557852938416 -164.07010391686467 92.5053 0.1144 12820 +12822 2 45.08230361749841 -163.0053833105398 92.703 0.1144 12821 +12823 2 45.295131773731065 -161.82914936663923 92.9009 0.1144 12822 +12824 2 45.50873611724473 -160.41848777253205 93.0941 0.1144 12823 +12825 2 45.722411023238465 -159.0077207961342 93.2814 0.1144 12824 +12826 2 45.934388876676735 -157.59952634288445 93.4623 0.1144 12825 +12827 2 46.08814843072199 -156.24102723480507 93.6331 0.1144 12826 +12828 2 45.90300088579373 -155.2445724612869 93.7712 0.1144 12827 +12829 2 45.712123863931104 -154.2534750733909 93.8904 0.1144 12828 +12830 2 45.52124713815458 -153.26250583574713 94.0075 0.1144 12829 +12831 2 45.56333094122403 -152.01064499255446 94.1374 0.1144 12830 +12832 2 45.6175787307909 -150.75541948084881 94.295 0.1144 12831 +12833 2 45.67267327011882 -149.49044186545177 94.4885 0.1144 12832 +12834 2 46.41601444976152 -147.97770913727015 94.8394 0.1144 12833 +12835 2 47.19740697553916 -147.907078779733 95.3114 0.1144 12834 +12836 2 47.977314432287685 -146.77109627783983 95.8628 0.1144 12835 +12837 2 48.75799807631723 -145.81296250290802 96.4541 0.1144 12836 +12838 2 49.14390764989793 -146.6438337192635 96.9472 0.1144 12837 +12839 2 49.90843191777421 -147.4177843429684 97.365 0.1144 12838 +12840 2 50.67387705092501 -147.99715746274074 97.7066 0.1144 12839 +12841 2 51.4384721773675 -149.56618170375708 97.991 0.1144 12840 +12842 2 52.20306700772389 -149.83069861751534 98.2366 0.1144 12841 +12843 2 52.96843802536125 -150.93485489441133 98.4575 0.1144 12842 +12844 2 53.733103714283814 -152.01509652926572 98.6661 0.1144 12843 +12845 2 54.49762798216013 -152.3823055536584 98.8537 0.1144 12844 +12846 2 55.2444410675342 -153.88063963651803 99.0144 0.1144 12845 +12847 2 55.40859454511243 -155.23961657172134 99.1071 0.1144 12846 +12848 2 55.56956915805331 -156.3207205813583 99.1402 0.1144 12847 +12849 2 55.729626458753074 -157.40714521618534 99.122 0.1144 12848 +12850 2 55.83963077599484 -158.53574552626569 99.0444 0.1144 12849 +12851 2 55.879205635668825 -159.7123986218811 98.898 0.1144 12850 +12852 2 55.91885135390905 -160.8908217088579 98.7042 0.1144 12851 +12853 2 55.956800019593786 -162.07164876435624 98.4833 0.1144 12852 +12854 2 55.67350865197676 -163.4187688422668 98.2492 0.1144 12853 +12855 2 55.370052793776274 -164.76652297433125 98.0137 0.1144 12854 +12856 2 55.06737312285679 -165.7327363033231 97.79 0.1144 12855 +12857 2 54.76384670217624 -166.716105168892 97.5867 0.1144 12856 +12858 2 54.46046170254196 -167.70563692084013 97.4103 0.1144 12857 +12859 2 54.15530879178604 -168.87051105671583 97.2684 0.1144 12858 +12860 2 53.7927810744509 -170.3198392543916 97.1964 0.1144 12859 +12861 2 53.40754151118253 -171.67725607361746 97.2014 0.1144 12860 +12862 2 54.533217090967426 -171.0468288671078 97.4817 0.1144 12861 +12863 2 55.645885191441074 -171.13798703439917 97.7844 0.1144 12862 +12864 2 56.75862415048094 -170.79394382954467 98.1562 0.1144 12863 +12865 2 57.870442244246284 -170.6051089543451 98.5701 0.1144 12864 +12866 2 58.982405016005174 -170.54000534129017 99.0058 0.1144 12865 +12867 2 60.09507311647886 -170.0736932499505 99.4462 0.1144 12866 +12868 2 61.206965325757636 -170.2883097316083 99.8743 0.1144 12867 +12869 2 62.31963342623128 -169.54060962694987 100.2859 0.1144 12868 +12870 2 63.43159619799016 -169.8559562843662 100.6757 0.1144 12869 +12871 2 64.54341429175554 -168.8242669506041 101.0394 0.1144 12870 +12872 2 65.66915086527916 -169.82232715928745 101.3522 0.1144 12871 +12873 2 66.80623182147548 -169.68974290340154 101.5804 0.1144 12872 +12874 2 67.94335669240195 -169.74960568435918 101.7372 0.1144 12873 +12875 2 69.07630721971681 -169.23306035705207 101.8438 0.1144 12874 +12876 2 70.20931853867006 -169.57966020695437 101.9217 0.1144 12875 +12877 2 71.34148281177619 -168.73274217290748 101.9928 0.1144 12876 +12878 2 72.47364738096843 -169.28970198201907 102.0774 0.1144 12877 +12879 2 73.60658784135552 -168.5247903074032 102.1891 0.1144 12878 +12880 2 74.73797267023343 -168.7189501509301 102.333 0.1144 12879 +12881 2 74.72769889746534 -169.6673725138275 102.5864 0.1144 12880 +12882 2 74.41450166187897 -171.10580634767146 102.9333 0.1144 12881 +12883 2 74.15953279261348 -172.145115190327 103.3435 0.1144 12882 +12884 2 74.33658558408678 -173.42792328202893 103.7742 0.1144 12883 +12885 2 74.52169937519845 -174.43700425050997 104.207 0.1144 12884 +12886 2 74.50145668532623 -175.64338177458097 104.592 0.1144 12885 +12887 2 74.43185953073024 -176.90170607278998 104.9208 0.1144 12886 +12888 2 74.36141236942598 -178.16043333468795 105.2117 0.1144 12887 +12889 2 74.29103577060188 -179.41886926673942 105.4858 0.1144 12888 +12890 2 74.221438912092 -180.60764416357154 105.7624 0.1144 12889 +12891 2 74.15092089222156 -181.78528984686466 106.0534 0.1144 12890 +12892 2 73.89448086997416 -182.82770603982374 106.4151 0.1144 12891 +12893 2 73.9470068536973 -183.27825399464393 106.8189 0.1144 12892 +12894 2 74.08508042168035 -184.45256973901866 107.3495 0.1144 12893 +12895 2 74.03321438134179 -185.598241134867 107.9067 0.1144 12894 +12896 2 73.73294390167304 -186.59415830861636 108.3866 0.1144 12895 +12897 2 73.43352372479875 -187.45585232228882 108.792 0.1144 12896 +12898 2 73.13254791641519 -188.3449872242664 109.1275 0.1144 12897 +12899 2 72.83305688097468 -189.62067299131584 109.4058 0.1144 12898 +12900 2 72.532786697392 -191.0047827032854 109.6371 0.1144 12899 +12901 2 72.23174003044235 -192.46551183031096 109.8462 0.1144 12900 +12902 2 71.9307642220588 -193.72825597575218 110.0462 0.1144 12901 +12903 2 71.63127348270439 -194.79048382166857 110.2352 0.1144 12902 +12904 2 71.33100300303563 -195.67961511028474 110.4107 0.1144 12903 +12905 2 70.97251067094054 -196.55066146925049 110.5496 0.1144 12904 +12906 2 70.58812141046654 -197.81064639994437 110.6487 0.1144 12905 +12907 2 70.20450833727352 -199.2823590470706 110.7193 0.1144 12906 +12908 2 69.82167470830869 -200.60337472340916 110.7714 0.1144 12907 +12909 2 69.60085966795108 -201.73232336643196 110.8243 0.1144 12908 +12910 2 69.38393533483992 -202.86180457338708 110.8836 0.1144 12909 +12911 2 69.16545537021963 -203.8374296017809 110.9536 0.1144 12910 +12912 2 68.94782570839371 -204.8151787095556 111.0348 0.1144 12911 +12913 2 68.72927518129335 -206.0229206541564 111.1261 0.1144 12912 +12914 2 68.51157466090126 -207.26285169152334 111.2278 0.1144 12913 +12915 2 68.29387088356194 -208.4976704886564 111.3412 0.1144 12914 +12916 2 68.07624122173603 -209.8921461754134 111.4688 0.1144 12915 +12917 2 67.85776125711574 -211.29508911853128 111.6136 0.1144 12916 +12918 2 68.04815077073981 -211.64536395522322 111.3479 0.1144 12917 +12919 2 68.43945091568818 -212.54192451828303 111.3479 0.1144 12918 +12920 2 68.83082517615001 -213.65215569821848 111.3479 0.1144 12919 +12921 2 69.22219588357844 -215.2397251018525 111.3479 0.1144 12920 +12922 2 69.61271984124585 -216.4659759226294 111.3479 0.1144 12921 +12923 2 70.00487028898861 -217.36399612249062 111.3479 0.1144 12922 +12924 2 67.34022210478572 -210.45862821542278 111.8037 0.1144 12917 +12925 2 66.67248607480226 -209.1066089384923 112.0426 0.1144 12924 +12926 2 66.00482090338502 -208.4309114926458 112.3195 0.1144 12925 +12927 2 65.3363762877396 -207.47209005901527 112.6238 0.1144 12926 +12928 2 64.6686402577561 -205.91596672925493 112.9464 0.1144 12927 +12929 2 64.00097508633885 -204.30817185599602 113.2785 0.1144 12928 +12930 2 63.33253047069337 -203.9317741755195 113.6125 0.1144 12929 +12931 2 62.66479444070991 -203.3134954546041 113.9466 0.1144 12930 +12932 2 61.99712926929263 -202.08772443163787 114.28 0.1144 12931 +12933 2 61.32868465364716 -201.22374097295204 114.6135 0.1144 12932 +12934 2 60.6609486236637 -200.31419714902364 114.9462 0.1144 12933 +12935 2 59.993354014726535 -199.10768519681383 115.2782 0.1144 12934 +12936 2 59.3249093990811 -198.31430612848118 115.6092 0.1144 12935 +12937 2 58.657173369097634 -197.31954977700957 115.9388 0.1144 12936 +12938 2 57.98950819768036 -196.11171439755657 116.2664 0.1144 12937 +12939 2 57.32099272346875 -195.40480107393495 116.5914 0.1144 12938 +12940 2 56.65332755205146 -194.32770081708247 116.9123 0.1144 12939 +12941 2 55.98488293640598 -193.1408291255629 117.2282 0.1144 12940 +12942 2 55.31714690642252 -192.49595614573008 117.5367 0.1144 12941 +12943 2 54.649481735005246 -191.34016802866543 117.8344 0.1144 12942 +12944 2 53.98103711935981 -190.1710688396938 118.1169 0.1144 12943 +12945 2 53.31330108937631 -189.58594616694484 118.3795 0.1144 12944 +12946 2 52.6472588550011 -188.35523398489516 118.6184 0.1144 12945 +12947 2 52.070078968132485 -187.07014571473348 118.816 0.1144 12946 +12948 2 51.78470446518362 -186.18131839285797 118.9308 0.1144 12947 +12949 2 51.4992593997546 -185.16476757845493 118.9807 0.1144 12948 +12950 2 51.2154405283149 -184.11597170804228 118.9838 0.1144 12949 +12951 2 50.92992460431971 -182.8112010891424 118.9577 0.1144 12950 +12952 2 50.64532954559899 -181.35757630987223 118.9185 0.1144 12951 +12953 2 50.35988448017001 -180.02801293134786 118.8818 0.1144 12952 +12954 2 50.401720609665716 -179.09409366109702 118.8617 0.1144 12953 +12955 2 51.532617545148454 -179.50041857293922 118.8698 0.1144 12954 +12956 2 52.663860309208225 -179.44403356484716 118.9084 0.1144 12955 +12957 2 53.79425602742087 -179.73041787932004 118.977 0.1144 12956 +12958 2 54.75947751856232 -179.3493455187954 119.0994 0.1144 12957 +12959 2 55.4297600574064 -178.5778383463487 119.2918 0.1144 12958 +12960 2 56.02078531840433 -177.24541755607817 119.5365 0.1144 12959 +12961 2 56.612448602584195 -176.24608472565774 119.8128 0.1144 12960 +12962 2 57.202556551341004 -175.59011629937754 120.1007 0.1144 12961 +12963 2 57.79351095377277 -174.2712523256905 120.3821 0.1144 12962 +12964 2 58.385245096518815 -173.0186166072538 120.6416 0.1144 12963 +12965 2 58.9640121216505 -172.29677404430802 120.8511 0.1144 12964 +12966 2 59.49902911666838 -171.29011077477026 120.9566 0.1144 12965 +12967 2 60.10130075583643 -169.92852233087814 120.9779 0.1144 12966 +12968 2 60.80879390676237 -169.1468309842078 120.9625 0.1144 12967 +12969 2 61.54468772277299 -168.3613413589538 120.9236 0.1144 12968 +12970 2 62.279805351502674 -167.00700012758227 120.8606 0.1144 12969 +12971 2 63.01654947030768 -166.47203511439312 120.773 0.1144 12970 +12972 2 63.752513848798415 -165.3573490031829 120.6576 0.1144 12971 +12973 2 64.64267467789197 -164.2491442466062 120.3969 0.1144 12972 +12974 2 65.70620158962726 -165.23402225931858 119.9985 0.1144 12973 +12975 2 66.81861194959939 -165.34205514534295 119.5261 0.1144 12974 +12976 2 67.9326016279695 -165.53109347842351 119.0146 0.1144 12975 +12977 2 69.04503567483046 -165.35344989990972 118.498 0.1144 12976 +12978 2 70.15831647145248 -165.83906719762228 118.0127 0.1144 12977 +12979 2 71.27237700838879 -165.36373859096707 117.5936 0.1144 12978 +12980 2 72.38481105524971 -166.14728855584758 117.2539 0.1144 12979 +12981 2 73.49809185187179 -165.424064689187 117.0005 0.1144 12980 +12982 2 74.28643621107754 -166.85170514349647 116.9678 0.1144 12981 +12983 2 74.70435784458805 -167.72235267087208 117.2125 0.1144 12982 +12984 2 75.07133257320216 -168.38839626383816 117.6745 0.1144 12983 +12985 2 75.45607316626308 -169.2895696893315 118.2314 0.1144 12984 +12986 2 75.84579043978015 -170.84713902734808 118.8228 0.1144 12985 +12987 2 76.1182651306475 -172.3036527268818 119.4273 0.1144 12986 +12988 2 75.80657615279267 -173.10422392104235 120.0394 0.1144 12987 +12989 2 75.39622541716773 -173.77801260070262 120.6556 0.1144 12988 +12990 2 74.98665442185705 -175.05987412674978 121.2803 0.1144 12989 +12991 2 74.69361436868718 -176.4456294422455 121.9574 0.1144 12990 +12992 2 74.57918001229467 -177.6068227345916 122.7181 0.1144 12991 +12993 2 74.48983619621677 -178.73608285790704 123.5212 0.1144 12992 +12994 2 75.343666089978 -178.71845984830412 124.2262 0.1144 12993 +12995 2 76.39943347425022 -179.9189460126115 124.7366 0.1144 12994 +12996 2 77.35286662309795 -179.8273369277658 125.0718 0.1144 12995 +12997 2 77.95917924550173 -181.51740451724223 125.2636 0.1144 12996 +12998 2 78.25267524364135 -182.90501371757992 125.3487 0.1144 12997 +12999 2 78.3642351923923 -183.98894089348556 125.372 0.1144 12998 +13000 2 78.28898297246148 -185.2508526212241 125.3736 0.1144 12999 +13001 2 78.24202029133815 -186.49123077541492 125.3736 0.1144 13000 +13002 2 78.34955136874352 -187.56678863526685 125.3736 0.1144 13001 +13003 2 79.21428472135926 -187.5797725002917 125.3736 0.1144 13002 +13004 2 80.07979751820324 -189.31662446529964 125.3736 0.1144 13003 +13005 2 73.33400505511983 -182.78324500946854 105.3553 0.1144 12892 +13006 2 72.55162365824813 -183.85619894967735 104.7634 0.1144 13005 +13007 2 73.08160778279432 -184.3628364906838 104.5307 0.1144 13006 +13008 2 73.93018913745034 -185.84015541897585 104.3686 0.1144 13007 +13009 2 74.79005693588726 -186.11510076017362 104.2765 0.1144 13008 +13010 2 75.91092751356047 -186.89606016170714 104.2765 0.1144 13009 +13011 2 77.03095134147259 -186.40551605255993 104.3557 0.1144 13010 +13012 2 78.15097161635141 -187.4942845181721 104.501 0.1144 13011 +13013 2 79.27177163154454 -186.84156083336623 104.6718 0.1144 13012 +13014 2 80.39179516337059 -187.79936037489836 104.8533 0.1144 13013 +13015 2 81.51259517856373 -187.53400709216965 105.0389 0.1144 13014 +13016 2 82.63183956224765 -188.0491173800997 105.224 0.1144 13015 +13017 2 83.75263928135467 -187.90535170178325 105.408 0.1144 13016 +13018 2 84.87266310926682 -187.98488972615968 105.5905 0.1144 13017 +13019 2 85.99353368694004 -188.5014566134358 105.7706 0.1144 13018 +13020 2 87.1135575148522 -188.32761698200648 105.9475 0.1144 13019 +13021 2 88.23357778973103 -189.05719926356545 106.12 0.1144 13020 +13022 2 89.35360161764319 -188.85634786285547 106.2869 0.1144 13021 +13023 2 90.47440133675022 -189.30434815344393 106.4448 0.1144 13022 +13024 2 91.59442516466234 -189.54912556244153 106.5901 0.1144 13023 +13025 2 92.71437487706109 -189.5515479717206 106.7186 0.1144 13024 +13026 2 93.83446926745331 -190.17726998724444 106.8267 0.1144 13025 +13027 2 94.95526928264646 -189.89529277697923 106.9104 0.1144 13026 +13028 2 94.97972575701316 -189.9521915321708 107.3016 0.1144 13027 +13029 2 95.40013820755509 -191.18339439680216 107.3016 0.1144 13028 +13030 2 95.81892446410781 -192.7669956103787 107.3016 0.1144 13029 +13031 2 96.23855747042157 -193.9460191715783 107.3016 0.1144 13030 +13032 2 96.65826459224876 -194.61545221822115 107.3016 0.1144 13031 +13033 2 97.07789759856252 -195.473691167695 107.3016 0.1144 13032 +13034 2 97.49668385511521 -196.98613832275745 107.3016 0.1144 13033 +13035 2 97.91709630565717 -198.49855586916374 107.3016 0.1144 13034 +13036 2 98.33595312468994 -199.39521256284866 107.3016 0.1144 13035 +13037 2 98.75558613100372 -200.0633470125469 107.3016 0.1144 13036 +13038 2 99.17437238755639 -201.19385787919532 107.3016 0.1144 13037 +13039 2 99.59485569666458 -202.79920310267607 107.3016 0.1144 13038 +13040 2 100.01371251569736 -204.17865538239874 107.3016 0.1144 13039 +13041 2 100.43334552201111 -204.8467645438896 107.3016 0.1144 13040 +13042 2 100.85305264383832 -205.51710719539784 107.3016 0.1144 13041 +13043 2 101.27268565015208 -206.6212008026414 107.3016 0.1144 13042 +13044 2 96.03861115776934 -190.62132112153404 106.9177 0.1144 13027 +13045 2 97.17704674539198 -189.9870245417548 106.8626 0.1144 13044 +13046 2 98.31463558325353 -190.8415456277332 106.7592 0.1144 13045 +13047 2 99.45215030560169 -190.36105536136245 106.622 0.1144 13046 +13048 2 100.59051503465815 -190.80008174388684 106.4636 0.1144 13047 +13049 2 101.72725356972532 -190.4139498347689 106.295 0.1144 13048 +13050 2 102.86561859486787 -190.5338042701743 106.127 0.1144 13049 +13051 2 104.00405418249053 -190.76232972128102 105.9596 0.1144 13050 +13052 2 105.1407927175577 -190.61194094354795 105.7932 0.1144 13051 +13053 2 106.27908688413405 -191.06211645601292 105.628 0.1144 13052 +13054 2 107.41589627776742 -190.89157937181875 105.4648 0.1144 13053 +13055 2 108.55426100682388 -191.0739401627843 105.3044 0.1144 13054 +13056 2 109.69262603196641 -191.24080918007962 105.1476 0.1144 13055 +13057 2 110.8293645670336 -191.15241381356975 104.9961 0.1144 13056 +13058 2 111.96780015465625 -191.5891163692695 104.8513 0.1144 13057 +13059 2 113.10531487700439 -191.23030293601477 104.7169 0.1144 13058 +13060 2 114.24283285629977 -191.9357844980388 104.5976 0.1144 13059 +13061 2 115.38126844392242 -191.43887456089507 104.4982 0.1144 13060 +13062 2 116.5180069789896 -191.92904109987353 104.4235 0.1144 13061 +13063 2 117.65637200413215 -191.90662295601055 104.375 0.1144 13062 +13064 2 117.71119111826607 -193.13930716534503 104.6167 0.1144 13063 +13065 2 117.76766721934467 -194.3904154089181 105.2187 0.1144 13064 +13066 2 117.82336713314233 -195.64126624893063 105.5071 0.1144 13065 +13067 2 117.8331139954941 -196.85836918312225 105.7543 0.1144 13066 +13068 2 117.83466199019458 -198.0736129612141 105.9394 0.1144 13067 +13069 2 117.83550110314692 -199.28738826184025 106.0665 0.1144 13068 +13070 2 117.83626965361918 -200.50107557677947 106.141 0.1144 13069 +13071 2 117.67444909993553 -201.63870867842445 106.1684 0.1144 13070 +13072 2 117.4777565629407 -202.64181466515325 106.1721 0.1144 13071 +13073 2 117.28028783866489 -203.64512841417485 106.1721 0.1144 13072 +13074 2 117.08444530837835 -204.6509998062374 106.1721 0.1144 13073 +13075 2 116.9889683983979 -205.7784397323215 106.1721 0.1144 13074 +13076 2 116.97842296908104 -207.003052653366 106.1721 0.1144 13075 +13077 2 116.96787783585032 -208.2281422602403 106.1721 0.1144 13076 +13078 2 116.95655651533862 -209.45380101929402 106.1721 0.1144 13077 +13079 2 116.94523164179355 -210.67771851535502 106.1721 0.1144 13078 +13080 2 116.9346156499966 -211.90398115109264 106.1721 0.1144 13079 +13081 2 117.01874672574833 -213.22925175596464 106.1721 0.1144 13080 +13082 2 117.26779467322635 -214.7084321801168 106.1721 0.1144 13081 +13083 2 117.50468544418752 -216.05665020789723 106.1721 0.1144 13082 +13084 2 117.34130925899474 -217.2263028373086 106.1721 0.1144 13083 +13085 2 117.17779165275563 -218.27960633939202 106.1721 0.1144 13084 +13086 2 117.01434490508274 -219.3285155007088 106.1721 0.1144 13085 +13087 2 116.8500514076488 -220.37766330524974 106.1721 0.1144 13086 +13088 2 116.68660436388981 -221.42665475514468 106.1721 0.1144 13087 +13089 2 118.06083658167067 -191.40936802532497 104.4187 0.1144 13063 +13090 2 118.58290688901573 -190.1776564952069 104.5439 0.1144 13089 +13091 2 119.10575664058902 -188.6514666410663 104.7262 0.1144 13090 +13092 2 119.68288710871755 -187.82905240624348 104.9191 0.1144 13091 +13093 2 120.28762517774152 -187.32823603226737 105.0974 0.1144 13092 +13094 2 120.89222182571922 -185.87988921778037 105.2542 0.1144 13093 +13095 2 121.4985187831995 -184.30589024969538 105.385 0.1144 13094 +13096 2 122.10481248373264 -183.56716372063613 105.4967 0.1144 13095 +13097 2 122.71025943450468 -182.7317678140799 105.5981 0.1144 13096 +13098 2 123.31577694775685 -181.46967021011156 105.6966 0.1144 13097 +13099 2 123.92129446100901 -180.42757864829008 105.7949 0.1144 13098 +13100 2 124.52836760577028 -179.71359044523766 105.8929 0.1144 13099 +13101 2 125.13381455654238 -178.52737981698843 105.9906 0.1144 13100 +13102 2 125.73933206979449 -177.27827897625386 106.0878 0.1144 13101 +13103 2 126.34477902056658 -176.57786436589586 106.1844 0.1144 13102 +13104 2 126.9494462310243 -175.60492812591778 106.2802 0.1144 13103 +13105 2 127.55574348459078 -174.30984719268267 106.3745 0.1144 13104 +13106 2 128.16196632655766 -173.42426895667452 106.4672 0.1144 13105 +13107 2 128.76748383980984 -172.74529481595755 106.5574 0.1144 13106 +13108 2 129.373001353062 -171.39567029835024 106.6442 0.1144 13107 +13109 2 129.97844830383403 -170.23955518595315 106.7265 0.1144 13108 +13110 2 130.58396581708618 -169.59008914356457 106.8018 0.1144 13109 +13111 2 131.19103896184745 -168.95661500549676 106.867 0.1144 13110 +13112 2 131.79648591261954 -168.5721216282012 106.9194 0.1144 13111 +13113 2 132.4020034258717 -167.35711921816556 106.9552 0.1144 13112 +13114 2 133.00660007384934 -165.7743445788622 106.9712 0.1144 13113 +13115 2 133.0204183210863 -164.61007528191723 106.9323 0.1144 13114 +13116 2 132.87330445111212 -163.6154271428974 106.8393 0.1144 13115 +13117 2 132.72534057442968 -162.6211870080467 106.7038 0.1144 13116 +13118 2 132.5780852834092 -161.6272010243815 106.5369 0.1144 13117 +13119 2 132.42934521944576 -160.63487718669273 106.3493 0.1144 13118 +13120 2 132.28138104667718 -159.59021923771996 106.1528 0.1144 13119 +13121 2 132.43593366491172 -158.34806624907552 105.9391 0.1144 13120 +13122 2 132.61241157878467 -157.04169078742228 105.7179 0.1144 13121 +13123 2 132.7888186340914 -155.7319704879693 105.499 0.1144 13122 +13124 2 133.12948510437377 -154.29119781556773 105.315 0.1144 13123 +13125 2 133.60863880749113 -153.2647393175758 105.187 0.1144 13124 +13126 2 134.08941870459773 -152.66458622765225 105.1058 0.1144 13125 +13127 2 134.56935185194328 -151.70695301112147 105.0428 0.1144 13126 +13128 2 52.991471844693436 -171.791102646859 96.7263 0.1144 12861 +13129 2 52.006627996636794 -172.13742328077964 96.621 0.1144 13128 +13130 2 51.14339808021951 -173.4196707570405 96.5804 0.1144 13129 +13131 2 50.677245046432816 -174.0810809630381 96.5146 0.1144 13130 +13132 2 50.249045260292704 -174.98087463946575 96.4278 0.1144 13131 +13133 2 49.82006958295776 -176.42572167231305 96.3245 0.1144 13132 +13134 2 49.39116446810284 -177.8382297539211 96.21 0.1144 13133 +13135 2 48.96218523773454 -178.9267613419591 96.0884 0.1144 13134 +13136 2 48.533280122879624 -179.65816140399562 95.9638 0.1144 13135 +13137 2 48.10430414945857 -180.581162335942 95.8392 0.1144 13136 +13138 2 47.676175221884634 -182.15436237044003 95.7149 0.1144 13137 +13139 2 47.24641980423535 -183.5557226443741 95.5912 0.1144 13138 +13140 2 46.817514689380474 -184.50824875172788 95.468 0.1144 13139 +13141 2 46.38938576180658 -185.24988518815695 95.3456 0.1144 13140 +13142 2 45.960480646951666 -186.30263458811476 95.2244 0.1144 13141 +13143 2 45.53143411105051 -187.88280202253355 95.1048 0.1144 13142 +13144 2 45.10259630172845 -189.46254625681453 94.9878 0.1144 13143 +13145 2 44.67354976582729 -190.58070129764548 94.8741 0.1144 13144 +13146 2 44.24464465097241 -191.50954864306883 94.7649 0.1144 13145 +13147 2 43.81651572339848 -192.425721061517 94.6607 0.1144 13146 +13148 2 43.32122314409608 -193.70977865278405 94.5655 0.1144 13147 +13149 2 42.64361543119777 -194.92895102723708 94.4899 0.1144 13148 +13150 2 42.03654228643646 -195.65385107239146 94.4292 0.1144 13149 +13151 2 41.36864249319354 -196.7374052093329 94.3779 0.1144 13150 +13152 2 40.69514783408199 -197.95842894057 94.3323 0.1144 13151 +13153 2 40.15934458485538 -198.86035020503306 94.2416 0.1144 13152 +13154 2 39.50602122630777 -199.7921577797185 94.1352 0.1144 13153 +13155 2 38.91105482943878 -201.09061822130002 94.05 0.1144 13154 +13156 2 38.32423006161595 -202.00792307936518 93.9873 0.1144 13155 +13157 2 37.96170234428081 -203.0760380597929 93.9453 0.1144 13156 +13158 2 37.80143742210636 -204.23772445191537 93.9218 0.1144 13157 +13159 2 37.401618167195416 -205.49383905311444 93.9148 0.1144 13158 +13160 2 37.18561469935878 -206.75505956818847 93.9145 0.1144 13159 +13161 2 37.26479603849043 -207.96446530281327 93.9145 0.1144 13160 +13162 2 37.338392874767365 -209.17799509619857 93.9145 0.1144 13161 +13163 2 37.549484519751914 -210.34727215570632 93.9145 0.1144 13162 +13164 2 37.96261896791695 -211.53945107142738 93.9145 0.1144 13163 +13165 2 48.51728210378357 -144.99564123890258 97.0634 0.1144 12837 +13166 2 48.08062310982683 -144.13235950810846 96.8582 0.1144 13165 +13167 2 47.64488498114466 -143.42924295228877 96.7711 0.1144 13166 +13168 2 47.20822598718792 -142.29340976153807 96.6658 0.1144 13167 +13169 2 46.771708414277526 -140.70727451554419 96.5504 0.1144 13168 +13170 2 46.334273233039845 -139.3691707389719 96.4323 0.1144 13169 +13171 2 45.89761423908311 -138.71427303387574 96.3178 0.1144 13170 +13172 2 45.46180554792079 -138.05983442191973 96.2122 0.1144 13171 +13173 2 45.02521711644416 -136.63692324613174 96.0067 0.1144 13172 +13174 2 46.612568199823144 -189.95490155598338 58.9702 0.1144 12469 +13175 2 47.62801165052113 -190.58948381987176 58.8372 0.1144 13174 +13176 2 48.6427494764182 -191.07677674927726 58.7765 0.1144 13175 +13177 2 49.65741318680188 -191.71536817626642 58.7101 0.1144 13176 +13178 2 50.238662508813206 -192.48789564746687 58.6701 0.1144 13177 +13179 2 50.49901733001364 -193.78363759848364 58.6592 0.1144 13178 +13180 2 50.503038564550536 -195.0120857771975 58.6807 0.1144 13179 +13181 2 50.446317535147266 -196.2180838838022 58.7376 0.1144 13180 +13182 2 50.38648524272565 -197.4242667009085 58.828 0.1144 13181 +13183 2 50.41553622593874 -198.66037831791147 58.9467 0.1144 13182 +13184 2 50.4516888381926 -199.76962019689273 59.1682 0.1144 13183 +13185 2 50.49369282087258 -200.97973026095895 59.4686 0.1144 13184 +13186 2 50.53407060956327 -202.19223943026856 59.8158 0.1144 13185 +13187 2 50.5299294890262 -203.40785731543906 60.1558 0.1144 13186 +13188 2 50.421438289753965 -204.59080692113793 60.4089 0.1144 13187 +13189 2 50.4950351260309 -205.83665088040814 60.5805 0.1144 13188 +13190 2 50.522530477734776 -207.09946505540893 60.6774 0.1144 13189 +13191 2 50.389002719805845 -208.25527171635537 60.7219 0.1144 13190 +13192 2 50.086336668847416 -209.37015996361686 60.7348 0.1144 13191 +13193 2 49.73916483043587 -210.58695763105385 60.7351 0.1144 13192 +13194 2 49.46317189513727 -212.0655647772811 60.7351 0.1144 13193 +13195 2 49.40170985569312 -213.34891494297273 60.7351 0.1144 13194 +13196 2 49.37179003912101 -214.60147815808187 60.7351 0.1144 13195 +13197 2 96.17800213201579 -181.32111759746758 60.9927 0.1144 12414 +13198 2 95.52143289938414 -181.7256269073282 60.9997 0.1144 13197 +13199 2 94.86493422923257 -182.83229585811276 61.0025 0.1144 13198 +13200 2 94.20758880931999 -184.3005409562657 61.0067 0.1144 13199 +13201 2 93.5519404419628 -184.82586619379134 61.012 0.1144 13200 +13202 2 92.89537120933113 -185.72749219439282 61.0198 0.1144 13201 +13203 2 92.23887253917954 -187.26872834814435 61.0308 0.1144 13202 +13204 2 91.58237416511413 -187.92085990940387 61.0459 0.1144 13203 +13205 2 90.92509930768156 -188.6789162174724 61.0669 0.1144 13204 +13206 2 90.26938037784436 -190.12907363581877 61.0963 0.1144 13205 +13207 2 89.61288170769276 -190.95668503555726 61.1383 0.1144 13206 +13208 2 88.9563124750611 -191.6398217717576 61.1971 0.1144 13207 +13209 2 88.29903761762861 -192.95999767071376 61.2763 0.1144 13208 +13210 2 87.64253924356312 -193.92789596400917 61.3785 0.1144 13209 +13211 2 87.59638926229817 -195.1085092481058 61.5527 0.1144 13210 +13212 2 87.87854788984596 -196.36978436547759 61.7999 0.1144 13211 +13213 2 88.15985621459933 -197.49521013236006 62.0934 0.1144 13212 +13214 2 88.44123539791889 -198.38978835137084 62.4092 0.1144 13213 +13215 2 88.71618658556991 -199.458163265435 62.7197 0.1144 13214 +13216 2 88.87864626753989 -200.60484341472403 62.942 0.1144 13215 +13217 2 89.04124737055615 -201.8010279136329 63.0823 0.1144 13216 +13218 2 89.20377791109232 -203.1992611685806 63.1554 0.1144 13217 +13219 2 89.36715845833676 -204.54123395206045 63.1789 0.1144 13218 +13220 2 89.53774644547798 -205.79265175400496 63.1674 0.1144 13219 +13221 2 89.84502936715703 -207.04460069664404 63.1338 0.1144 13220 +13222 2 90.21612140287795 -207.86654100213536 63.0879 0.1144 13221 +13223 2 90.58806374139324 -208.8571872662358 63.0227 0.1144 13222 +13224 2 90.9608531257557 -210.043651148221 62.9286 0.1144 13223 +13225 2 91.33116897419563 -211.56283216529974 62.7992 0.1144 13224 +13226 2 91.68692881788189 -212.79738485931222 62.6284 0.1144 13225 +13227 2 92.00713474034484 -213.75636538779406 62.4042 0.1144 13226 +13228 2 92.2229258352003 -214.6107603498242 61.9993 0.1144 13227 +13229 2 92.09872641453305 -215.74071842818833 61.4258 0.1144 13228 +13230 2 91.7619842032135 -217.20289728855994 60.8877 0.1144 13229 +13231 2 91.47291528459766 -218.26859008254894 60.2756 0.1144 13230 +13232 2 91.10451547080875 -219.22299693824942 59.6652 0.1144 13231 +13233 2 90.36837817802952 -219.66954444198242 59.2206 0.1144 13232 +13234 2 89.27298024225414 -220.4317399231045 58.9246 0.1144 13233 +13235 2 88.18895372697332 -220.4564908389376 58.7353 0.1144 13234 +13236 2 87.32560487792536 -221.4711627224899 58.6068 0.1144 13235 +13237 2 86.81566174841419 -222.4135484153162 58.5214 0.1144 13236 +13238 2 86.31145105669846 -223.3573754854691 58.4438 0.1144 13237 +13239 2 85.93593579180731 -224.5055861158176 58.3324 0.1144 13238 +13240 2 86.07323367069583 -225.63114845110485 58.1342 0.1144 13239 +13241 2 86.19272532344064 -226.73133949081958 57.8813 0.1144 13240 +13242 2 85.84392729103983 -227.89794649677282 57.6484 0.1144 13241 +13243 2 85.49915783389848 -229.30136139993377 57.4356 0.1144 13242 +13244 2 85.1438476233879 -230.43606985656598 57.2351 0.1144 13243 +13245 2 84.72788593925858 -231.5495991478922 57.0172 0.1144 13244 +13246 2 84.38717209519857 -232.51424915723422 56.7328 0.1144 13245 +13247 2 84.17832188350046 -233.67752432180296 56.3755 0.1144 13246 +13248 2 84.02770714418979 -234.8594662234934 55.9717 0.1144 13247 +13249 2 83.86910552075418 -236.04042864224283 55.5461 0.1144 13248 +13250 2 83.67324611355932 -237.21982089518656 55.1496 0.1144 13249 +13251 2 83.35520701068296 -238.52497413924812 54.7854 0.1144 13250 +13252 2 82.99421804794873 -239.67951255577174 54.4244 0.1144 13251 +13253 2 82.72712605206905 -240.86887804217028 54.0711 0.1144 13252 +13254 2 82.51033633002368 -242.0746016893051 53.72 0.1144 13253 +13255 2 82.13687160211772 -243.27976635355492 53.2532 0.1144 13254 +13256 2 81.50840161891033 -244.79711590748778 52.7285 0.1144 13255 +13257 2 80.60126892941709 -244.45082860684832 52.2995 0.1144 13256 +13258 2 79.64152307542751 -245.09106668876746 51.8185 0.1144 13257 +13259 2 79.10057654325043 -246.2521161070565 51.333 0.1144 13258 +13260 2 78.69423780206276 -246.93155203492591 50.9505 0.1144 13259 +13261 2 78.52664069375322 -247.9565995246806 50.715 0.1144 13260 +13262 2 78.7747638512784 -248.0800323127732 50.7797 0.1144 13261 +13263 2 79.52696546305778 -247.8060612496759 51.2568 0.1144 13262 +13264 2 80.2277050740943 -246.35562484454942 51.9722 0.1144 13263 +13265 2 81.21623537236731 -246.9230187130335 52.6952 0.1144 13264 +13266 2 82.22727668112022 -246.33431862342974 53.4089 0.1144 13265 +13267 2 82.89878122877235 -247.09975430120085 54.0806 0.1144 13266 +13268 2 83.63669287654115 -247.82942612229158 54.644 0.1144 13267 +13269 2 84.70681315049528 -248.41308551033808 55.0362 0.1144 13268 +13270 2 85.72786754969766 -248.679865701008 55.309 0.1144 13269 +13271 2 86.41732971748169 -249.9584123725183 55.5089 0.1144 13270 +13272 2 87.00988265626829 -250.95600611368843 55.6545 0.1144 13271 +13273 2 87.5087445020328 -251.6653314055784 55.83 0.1144 13272 +13274 2 87.75113459703468 -252.82907662826392 56.1081 0.1144 13273 +13275 2 87.67183662885004 -254.02633910209715 56.3301 0.1144 13274 +13276 2 87.57310703480495 -255.22564876097135 56.4866 0.1144 13275 +13277 2 87.47515333195477 -256.4224451638776 56.5793 0.1144 13276 +13278 2 87.49692275975765 -257.6522394128491 56.6112 0.1144 13277 +13279 2 87.50101455677458 -258.8788010581481 56.5838 0.1144 13278 +13280 2 87.41437809066073 -260.0792877925173 56.4878 0.1144 13279 +13281 2 87.08015293992193 -261.4584760278312 56.3578 0.1144 13280 +13282 2 86.94181360947198 -262.7908952778799 56.2033 0.1144 13281 +13283 2 87.0291232537749 -263.89310433149546 56.0314 0.1144 13282 +13284 2 87.16976501125005 -264.9128527095356 55.7732 0.1144 13283 +13285 2 87.2736061793914 -265.80525891226387 54.5493 0.1144 13284 +13286 2 108.79937710151233 -178.98533178416122 60.9367 0.1144 12403 +13287 2 108.8704631890026 -180.0818433670525 60.4366 0.1144 13286 +13288 2 108.91732967101456 -181.24336881468327 60.2574 0.1144 13287 +13289 2 108.77891948199843 -182.48009865849963 60.0972 0.1144 13288 +13290 2 108.68017626799227 -183.6912573668979 59.9119 0.1144 13289 +13291 2 108.52563045973827 -184.97086050074455 59.717 0.1144 13290 +13292 2 108.21567604338915 -186.2096825396551 59.5552 0.1144 13291 +13293 2 108.0999673372924 -187.35865952524108 59.4129 0.1144 13292 +13294 2 108.02710743170405 -188.5273025793701 59.2337 0.1144 13293 +13295 2 108.05374922366636 -189.7440073963889 59.0486 0.1144 13294 +13296 2 107.77782359390065 -190.80404525908818 58.8848 0.1144 13295 +13297 2 108.10932958010554 -192.08773078853616 58.6947 0.1144 13296 +13298 2 108.47560678635824 -193.01970633760263 58.4791 0.1144 13297 +13299 2 108.84265988380582 -194.0198633027606 58.2467 0.1144 13298 +13300 2 109.2097870967668 -195.0575113816928 58.0042 0.1144 13299 +13301 2 109.57691105278059 -196.48419784366527 57.752 0.1144 13300 +13302 2 109.94311740046709 -197.75616944187323 57.4935 0.1144 13301 +13303 2 110.30861841943883 -198.7352668593299 57.2373 0.1144 13302 +13304 2 110.67489532960548 -199.67129312038782 56.9845 0.1144 13303 +13305 2 111.04117253585815 -200.6991231554109 56.7356 0.1144 13304 +13306 2 111.4074494460248 -202.18928888022904 56.4934 0.1144 13305 +13307 2 111.77372665227747 -203.44351838581753 56.2601 0.1144 13306 +13308 2 112.14240594371434 -204.47962040744193 56.0395 0.1144 13307 +13309 2 112.50868314996706 -205.31398209692344 55.8337 0.1144 13308 +13310 2 112.87496006013365 -206.3628685875097 55.6455 0.1144 13309 +13311 2 112.7163216280345 -207.58467855250905 55.5128 0.1144 13310 +13312 2 112.52861450898588 -208.80674063956957 55.4271 0.1144 13311 +13313 2 112.34005679105672 -210.02412769305067 55.377 0.1144 13312 +13314 2 112.15234967200806 -211.3265661966566 55.3451 0.1144 13313 +13315 2 34.71678998664652 -246.50887462311067 21.9762 0.1144 10962 +13316 2 34.24319385605948 -245.39812657576533 22.8041 0.1144 13315 +13317 2 33.82916903948933 -244.29609030139582 23.1393 0.1144 13316 +13318 2 33.46300325559994 -243.25841010991363 23.5458 0.1144 13317 +13319 2 32.916501170661505 -242.1137331365864 23.9434 0.1144 13318 +13320 2 32.32797079142642 -240.94225174824885 24.3895 0.1144 13319 +13321 2 31.438390671350724 -240.45635318400383 24.8446 0.1144 13320 +13322 2 30.642886946312565 -239.8097487433605 25.3556 0.1144 13321 +13323 2 30.756464189930156 -238.72777769421967 25.8269 0.1144 13322 +13324 2 31.105749787084417 -238.66220695783596 26.2385 0.1144 13323 +13325 2 30.909859883020168 -239.84804156447893 26.4533 0.1144 13324 +13326 2 30.55701935931268 -240.94381438031763 26.5759 0.1144 13325 +13327 2 30.170220907587918 -241.95707823718436 26.6597 0.1144 13326 +13328 2 29.97189507053723 -243.19003148611236 26.7298 0.1144 13327 +13329 2 29.78177520720449 -244.42871953425222 26.8071 0.1144 13328 +13330 2 29.51547301856687 -245.73644677319908 26.8701 0.1144 13329 +13331 2 29.50740082908642 -246.9829477822896 26.9271 0.1144 13330 +13332 2 29.50972501106785 -248.21982717329644 26.9655 0.1144 13331 +13333 2 29.334181582430467 -249.63464934431403 26.9856 0.1144 13332 +13334 2 29.092217433715405 -250.8542183206103 26.9928 0.1144 13333 +13335 2 29.180373827779363 -252.11228374054633 26.9934 0.1144 13334 +13336 2 29.267686729029485 -253.37530929078667 26.9934 0.1144 13335 +13337 2 29.121991727655963 -254.5839073196753 26.9934 0.1144 13336 +13338 2 28.632361023668885 -255.6009890493604 26.9934 0.1144 13337 +13339 2 -4.4637451405421285 -192.8734274327376 17.5082 0.1144 7 +13340 2 -5.141792067087325 -191.3294448864073 17.1234 0.1144 13339 +13341 2 -5.884589901076938 -190.9596561443696 16.9836 0.1144 13340 +13342 2 -6.922579238985605 -190.46262923298065 16.859 0.1144 13341 +13343 2 -7.615746241965358 -191.42668034296526 16.7438 0.1144 13342 +13344 2 -7.69294975843471 -192.5896305476834 16.6305 0.1144 13343 +13345 2 -8.812672170686366 -192.50297859314085 16.5115 0.1144 13344 +13346 2 -9.80556257159211 -191.97378915322543 16.3689 0.1144 13345 +13347 2 -10.563390979855601 -191.46100347740082 16.1417 0.1144 13346 +13348 2 -10.611809338243075 -190.20378297601533 15.8698 0.1144 13347 +13349 2 -10.951714787981496 -188.95146707533885 15.4981 0.1144 13348 +13350 2 -11.257263293740284 -187.87962759785393 15.0691 0.1144 13349 +13351 2 -11.246753037240422 -187.877754095701 14.0591 0.1144 13350 +13352 2 -10.598284869857856 -187.58164075878943 13.6813 0.1144 13351 +13353 2 -9.977370617798965 -186.51822513632553 13.5135 0.1144 13352 +13354 2 -9.309541387036113 -184.80239283773318 13.3568 0.1144 13353 +13355 2 -8.785800768871315 -184.2171235394551 13.1595 0.1144 13354 +13356 2 -8.50329871030987 -183.3564865420637 12.9005 0.1144 13355 +13357 2 -7.837800800150724 -182.1748982302681 12.6824 0.1144 13356 +13358 2 -7.353805027643031 -180.52928048869353 12.5233 0.1144 13357 +13359 2 -6.780706687807287 -179.85942022111345 12.4107 0.1144 13358 +13360 2 -6.020508383590451 -179.29465410348377 12.3327 0.1144 13359 +13361 2 -5.397988071397748 -177.574254716295 12.2906 0.1144 13360 +13362 2 -5.525568461889573 -176.524780856735 12.2285 0.1144 13361 +13363 2 -5.047187190919525 -175.32340307688202 12.1692 0.1144 13362 +13364 2 -4.8271279079012235 -174.32915828221778 12.1102 0.2206 13363 +13365 2 -4.945102232359668 -172.97723232290667 12.0649 0.2288 13364 +13366 2 -4.089831701529956 -173.25267116500783 12.2473 0.1332 13365 +13367 2 -3.0593913413041216 -172.085352485376 12.485 0.1144 13366 +13368 2 -1.9423992656185378 -172.6531565290473 12.7746 0.1144 13367 +13369 2 -0.90136129857496 -172.52220868871916 13.1722 0.1144 13368 +13370 2 0.06083747833919606 -173.5978772367815 13.6132 0.1144 13369 +13371 2 1.06500780913131 -173.71401871911095 13.9747 0.1144 13370 +13372 2 2.201800527956681 -174.23507765494702 14.2586 0.1144 13371 +13373 2 3.3375529506905712 -174.01153734508392 14.5178 0.1144 13372 +13374 2 4.35580475418715 -174.44125067306962 14.8917 0.1144 13373 +13375 2 5.391391767340498 -174.88472598348375 15.1994 0.1144 13374 +13376 2 6.410907411941965 -175.48617491440945 15.475 0.1144 13375 +13377 2 7.435705645551315 -175.83785159383152 15.7899 0.1144 13376 +13378 2 8.182752582437793 -176.85163427936195 16.1973 0.1144 13377 +13379 2 9.321460028709476 -176.89181979679634 16.5559 0.1144 13378 +13380 2 10.408854462066804 -176.9788266921021 16.906 0.1144 13379 +13381 2 11.420584020525812 -177.22929394703522 17.358 0.1144 13380 +13382 2 12.444311404659361 -177.0742789852053 17.8949 0.1144 13381 +13383 2 13.529425885895524 -176.70348435848388 18.4137 0.1144 13382 +13384 2 14.56405717055518 -176.4867666785752 18.8434 0.1144 13383 +13385 2 15.647931258004007 -176.1602359975319 19.1854 0.1144 13384 +13386 2 15.14449062483143 -176.68697095844033 20.2817 0.1144 13385 +13387 2 14.161063543898194 -177.06959596805754 20.3736 0.1144 13386 +13388 2 13.14939104098798 -177.82544790100496 20.4082 0.1144 13387 +13389 2 12.074180784498406 -177.9243612641323 20.3317 0.1144 13388 +13390 2 10.990950590354078 -178.649580215071 20.2497 0.1144 13389 +13391 2 9.975303197756094 -178.82239526012177 20.1668 0.1144 13390 +13392 2 8.908248688460318 -179.65644063489117 20.0149 0.1144 13391 +13393 2 7.831487053781711 -179.53294861459167 19.8792 0.1144 13392 +13394 2 6.78409482142631 -179.5356048804285 19.7846 0.1144 13393 +13395 2 5.641202762514981 -180.03648031869596 19.6826 0.1144 13394 +13396 2 15.691457301432862 -176.44871148923045 19.4489 0.1144 13385 +13397 2 16.2117038037268 -177.52954466484198 19.8082 0.1144 13396 +13398 2 17.237684252660404 -178.11907983067383 20.0923 0.1144 13397 +13399 2 18.08302299017959 -178.82959052741526 20.3321 0.1144 13398 +13400 2 18.979989776234714 -179.93375171206853 20.5493 0.1144 13399 +13401 2 19.250915847673724 -180.9029032300246 20.5816 0.1144 13400 +13402 2 18.632183984904934 -182.0196576741924 20.7588 0.1144 13401 +13403 2 17.7130734014924 -182.32601803913695 20.9549 0.1144 13402 +13404 2 17.627057085279276 -183.51725288687004 21.1519 0.1144 13403 +13405 2 18.144432746476653 -184.7198052594095 21.4564 0.1144 13404 +13406 2 18.776561169665094 -186.0238208862467 21.8088 0.1144 13405 +13407 2 19.213149305055573 -186.8615373921173 22.1162 0.1144 13406 +13408 2 19.66676698112237 -187.80408468549558 22.3753 0.1144 13407 +13409 2 20.48444017885428 -188.9507497505641 22.7312 0.1144 13408 +13410 2 21.46582434609943 -189.1567945125605 23.6191 0.1144 13409 +13411 2 19.957826099033966 -179.33734794845287 21.0858 0.1144 13400 +13412 2 21.05444006046508 -180.08174199174186 21.4397 0.1144 13411 +13413 2 22.172729030785412 -179.9867243039581 21.7876 0.1144 13412 +13414 2 23.149399131825703 -180.75140328485685 22.0958 0.1144 13413 +13415 2 24.214603220876086 -180.88755057929114 22.3678 0.1144 13414 +13416 2 25.3314353019475 -180.76600378861593 22.6504 0.1144 13415 +13417 2 26.169371177821745 -180.15177216145648 23.1415 0.1144 13416 +13418 2 27.25526160676764 -180.84551880835932 23.5621 0.1144 13417 +13419 2 28.35848930384438 -180.80200260261392 23.884 0.1144 13418 +13420 2 29.471397182467896 -181.33584400725925 24.1146 0.1144 13419 +13421 2 30.4941596410114 -181.3564165078099 24.4191 0.1144 13420 +13422 2 30.552056334373543 -180.79561499889863 24.254 0.1144 13421 +13423 2 30.891184050055024 -179.89129395041059 24.1119 0.1144 13422 +13424 2 31.559863583612255 -178.71619659007956 24.0591 0.1144 13423 +13425 2 31.725054757618295 -177.44344535209058 23.9988 0.1144 13424 +13426 2 30.77403435305466 -176.90576656285486 23.9049 0.1144 13425 +13427 2 30.14209947619665 -175.6894276710438 23.7541 0.1144 13426 +13428 2 29.910891010492495 -174.52476681268095 23.6158 0.1144 13427 +13429 2 29.215851351934525 -174.09029362894842 23.4839 0.1144 13428 +13430 2 28.264874566014946 -172.94587084324692 23.3518 0.1144 13429 +13431 2 27.346127660501345 -172.628847850173 23.2117 0.1144 13430 +13432 2 26.59046426643326 -171.5057705305207 23.0219 0.1144 13431 +13433 2 26.130537325228172 -170.16569441945472 22.7424 0.1144 13432 +13434 2 25.52672538468326 -169.5958337324365 22.4153 0.1144 13433 +13435 2 24.581376922362775 -169.27844228455677 22.1241 0.1144 13434 +13436 2 23.678852873375067 -168.11373430083952 21.8804 0.1144 13435 +13437 2 22.782662274600924 -167.86936688114497 21.6727 0.1144 13436 +13438 2 22.026185386401973 -166.32648858997112 21.5 0.1144 13437 +13439 2 22.17288941668436 -167.06105124133413 21.2003 0.1144 13438 +13440 2 21.54217980558168 -168.09099624735998 20.9537 0.1144 13439 +13441 2 21.011238557500647 -169.60764746026015 20.6839 0.1144 13440 +13442 2 21.037030046668555 -170.7994381193469 20.2451 0.1144 13441 +13443 2 31.102437362971184 -182.00975169072126 24.5902 0.1144 13421 +13444 2 31.559156620285133 -182.0863142522207 24.5495 0.1144 13443 +13445 2 32.53093422331047 -182.56811168150915 24.4019 0.1144 13444 +13446 2 33.43434212680881 -183.3950720729202 24.2348 0.1144 13445 +13447 2 34.02035564756344 -184.118957524966 24.1008 0.1144 13446 +13448 2 34.621802715788384 -185.4489236013544 24.0164 0.1144 13447 +13449 2 34.886219960050695 -186.7427196912152 24.0092 0.1144 13448 +13450 2 34.74784983664526 -187.8850536301218 24.1105 0.1144 13449 +13451 2 34.535740130902006 -188.96930999110378 24.338 0.1144 13450 +13452 2 34.05244643016186 -189.86925614751294 24.5829 0.1144 13451 +13453 2 33.43566566183127 -191.1287303907945 24.82 0.1144 13452 +13454 2 32.62193864326485 -191.9502396423315 25.0672 0.1144 13453 +13455 2 31.869744100081242 -192.64496043819778 25.2782 0.1144 13454 +13456 2 31.576765040650162 -194.01544056598328 25.4994 0.1144 13455 +13457 2 31.63332226932306 -195.22668052597555 25.6497 0.1144 13456 +13458 2 31.594491150318206 -196.47154464599498 25.7503 0.1144 13457 +13459 2 32.48801297447794 -195.42684175495066 25.5301 0.1144 13458 +13460 2 33.48836853673801 -194.8953653765395 25.4516 0.1144 13459 +13461 2 34.571608797810086 -194.52111995986252 25.391 0.1144 13460 +13462 2 35.6490757612035 -194.01270077700187 25.3471 0.1144 13461 +13463 2 36.73315625814224 -193.80425174684507 25.3185 0.1144 13462 +13464 2 37.83667618729472 -193.20301773270862 25.3034 0.1144 13463 +13465 2 38.95239080191434 -193.3027044801285 25.3002 0.1144 13464 +13466 2 40.00883951288239 -192.4642284698587 25.2973 0.1144 13465 +13467 2 40.787710926859496 -191.95493117879423 25.2938 0.1144 13466 +13468 2 41.21755733693048 -190.6576700945903 25.2896 0.1144 13467 +13469 2 41.32358536329403 -189.4057968777047 25.2836 0.1144 13468 +13470 2 41.32119061883252 -188.18309813749704 25.2745 0.1144 13469 +13471 2 41.2224967283465 -187.00635173722378 25.2406 0.1144 13470 +13472 2 41.25012884295892 -185.79701161546816 25.2552 0.1144 13471 +13473 2 41.82561644229025 -184.5299194583834 25.2421 0.1144 13472 +13474 2 41.32949500001958 -183.7658777327681 25.1923 0.1144 13473 +13475 2 40.573777422193274 -182.88677296168976 25.1122 0.1144 13474 +13476 2 40.79693320631053 -182.11634284479106 24.1816 0.1144 13475 +13477 2 31.36499935932691 -197.510442789124 25.8105 0.1144 13458 +13478 2 30.86078896369726 -198.76021962936971 25.8383 0.1144 13477 +13479 2 30.425374927679865 -199.5929120749972 25.8457 0.1144 13478 +13480 2 30.051455858095 -200.64095818289525 25.8357 0.1144 13479 +13481 2 30.247987945292486 -201.9191849560464 25.8205 0.1144 13480 +13482 2 30.444449173923754 -203.19499903957202 25.8025 0.1144 13481 +13483 2 30.64182801088225 -204.48558097323735 25.7845 0.1144 13482 +13484 2 30.838289239513557 -205.9017120363227 25.7689 0.1144 13483 +13485 2 30.888022548873263 -206.4823116962441 25.8686 0.1144 13484 +13486 2 30.878253306837387 -207.7118872009288 25.8686 0.1144 13485 +13487 2 30.833767122497715 -208.9501972900888 25.8686 0.1144 13486 +13488 2 31.04153196790419 -210.11318061261673 25.8686 0.1144 13487 +13489 2 31.521002455519394 -211.13674248331293 25.8686 0.1144 13488 +13490 2 31.62364784489034 -212.32658915823475 25.8686 0.1144 13489 +13491 2 31.956793941131643 -213.36032614405792 25.8686 0.1144 13490 +13492 2 32.0295404746142 -214.60964090177282 25.8686 0.1144 13491 +13493 2 32.101511116901904 -215.85941451145268 25.8686 0.1144 13492 +13494 2 31.2777746991212 -206.3124585278474 25.6419 0.1144 13484 +13495 2 32.10035451301559 -206.89198347663134 25.5547 0.1144 13494 +13496 2 33.00203407281658 -207.82163460867855 25.615 0.1144 13495 +13497 2 33.94008460100499 -208.2667054773135 25.6955 0.1144 13496 +13498 2 34.87745674431474 -209.2081253337472 25.7744 0.1144 13497 +13499 2 35.78246410006661 -209.77227826674175 25.8535 0.1144 13498 +13500 2 36.65361863837043 -210.73550268022757 25.9345 0.1144 13499 +13501 2 37.598177791635294 -211.27231036455998 25.9994 0.1144 13500 +13502 2 38.63783699869212 -211.97419607169326 26.0516 0.1144 13501 +13503 2 39.72659662858998 -212.09922593662014 26.1127 0.1144 13502 +13504 2 40.815973151441305 -212.70156239589892 26.2573 0.1144 13503 +13505 2 41.94949956624104 -212.62289270595005 26.407 0.1144 13504 +13506 2 42.96983856980083 -213.23753444453223 26.5531 0.1144 13505 +13507 2 43.900648106376245 -213.79706454373644 26.6986 0.1144 13506 +13508 2 44.98536524496736 -214.33861375229503 26.8447 0.1144 13507 +13509 2 46.098107517469344 -213.7657724564743 27.0388 0.1144 13508 +13510 2 47.10063066962925 -214.4386155630898 27.4052 0.1144 13509 +13511 2 48.19812237587723 -214.24947534158292 27.7174 0.1144 13510 +13512 2 48.62817819930247 -215.72757854285285 27.9677 0.1144 13511 +13513 2 48.90966525195205 -217.05881467886854 28.159 0.1144 13512 +13514 2 49.178124691434945 -218.20476214527332 28.3514 0.1144 13513 +13515 2 49.29858913263809 -219.41322636638824 28.4987 0.1144 13514 +13516 2 49.22249016294623 -220.64593987668044 28.6804 0.1144 13515 +13517 2 31.667281471968145 -181.45926826339246 26.2394 0.1144 13443 +13518 2 32.468176355630916 -181.90160089188012 28.1061 0.1144 13517 +13519 2 33.22616770032573 -182.11573665200197 28.9859 0.1144 13518 +13520 2 34.30186540853889 -181.70487236157553 29.8553 0.1144 13519 +13521 2 35.40056715729022 -181.60439552257185 30.6454 0.1144 13520 +13522 2 36.52230535633764 -181.385607893873 31.3765 0.1144 13521 +13523 2 37.56287348632351 -181.09813539035918 32.1014 0.1144 13522 +13524 2 38.39801471843076 -180.45270406100798 32.8448 0.1144 13523 +13525 2 38.843480914135505 -179.6511276459605 33.5765 0.1144 13524 +13526 2 39.573306385116 -178.71946593621516 34.2504 0.1144 13525 +13527 2 40.685889804962045 -178.63085465433892 34.8496 0.1144 13526 +13528 2 41.66326171915469 -178.49162483643957 35.5216 0.1144 13527 +13529 2 42.3886169723439 -179.30472837554353 36.2191 0.1144 13528 +13530 2 43.26134020741662 -179.77999903251077 36.9687 0.1144 13529 +13531 2 44.37629906469689 -179.37879636546984 37.522 0.1144 13530 +13532 2 45.3937244353442 -178.87341353505195 38.2407 0.1144 13531 +13533 2 -4.707091843103898 -172.09806353552295 10.6403 0.2288 13365 +13534 2 -4.2311235185182685 -171.37878470335593 10.4454 0.2288 13533 +13535 2 -3.6103408791930685 -169.33980417676747 10.2356 0.2288 13534 +13536 2 -3.6636789755176267 -168.17388787398198 10.0944 0.2288 13535 +13537 2 -4.181915504623536 -167.5288252577634 9.9398 0.2288 13536 +13538 2 -4.463267448020966 -166.2523716353645 9.6925 0.2288 13537 +13539 2 -4.480150689603017 -165.0349152891213 9.3622 0.2288 13538 +13540 2 -4.196073067777259 -163.9688112909166 9.0396 0.2288 13539 +13541 2 -3.198814448287713 -162.64661820413724 8.6807 0.2288 13540 +13542 2 -2.7807803069704917 -163.30206427737957 8.8496 0.1338 13541 +13543 2 -2.5850617139039027 -164.71759912540043 8.7613 0.1144 13542 +13544 2 -2.7097490279663106 -165.81381388485107 8.7253 0.1144 13543 +13545 2 -2.689548851633691 -167.0684886238056 8.6694 0.1144 13544 +13546 2 -2.545765536371115 -168.41101583008438 8.5458 0.1144 13545 +13547 2 -2.5168166088804025 -169.5953287810221 8.3111 0.1144 13546 +13548 2 -1.996435495520677 -170.6169518031646 8.1135 0.1144 13547 +13549 2 -1.224819463431003 -170.74168704766353 7.9497 0.1144 13548 +13550 2 -1.2670963146445233 -171.86247169996082 7.82 0.1144 13549 +13551 2 -1.7519187030578323 -173.51846705964408 7.7206 0.1144 13550 +13552 2 -2.477389701956963 -174.5683920004619 7.6079 0.1144 13551 +13553 2 -2.6588354278314537 -175.46956209926344 7.4848 0.1144 13552 +13554 2 -2.385483490333633 -176.96904081176015 7.3709 0.1144 13553 +13555 2 -2.213275823097577 -178.28559793514583 7.2732 0.1144 13554 +13556 2 -2.5524443986623044 -179.16560649997507 7.1909 0.1144 13555 +13557 2 -2.875392876461914 -179.98157060946386 7.0596 0.1144 13556 +13558 2 -3.2662370764405466 -180.9423612110291 6.9468 0.1144 13557 +13559 2 -2.969657257305108 -182.23747572012172 6.8658 0.1144 13558 +13560 2 -2.5394935645498506 -183.81020479661697 6.808 0.1144 13559 +13561 2 -1.9105772616289078 -184.97915545996176 6.7704 0.1144 13560 +13562 2 -1.1976374236444736 -185.32146270794934 6.7483 0.1144 13561 +13563 2 -2.724245755301915 -162.46825394542748 8.4058 0.2288 13541 +13564 2 -2.250685921680315 -161.87148119758876 8.206 0.2288 13563 +13565 2 -2.6031421544909037 -160.39353612096906 8.0719 0.2288 13564 +13566 2 -3.035657597791495 -158.84966065930593 7.9778 0.2288 13565 +13567 2 -3.012111297043637 -157.65808812045458 7.8971 0.199 13566 +13568 2 -2.3618170775472986 -157.43324934050517 7.7962 0.1351 13567 +13569 2 -1.405340342859084 -156.0408947666107 7.6693 0.1144 13568 +13570 2 -0.44000628739601133 -155.97340412799335 7.5282 0.1144 13569 +13571 2 0.1042065488067756 -154.95945636339215 7.2649 0.1144 13570 +13572 2 0.4077029708043636 -153.5034858959282 7.0003 0.1144 13571 +13573 2 0.7986785249015345 -152.0070693873942 6.7815 0.1144 13572 +13574 2 1.1604000562727226 -151.11884596263837 6.5375 0.1144 13573 +13575 2 1.4396592955969947 -150.18684121379198 6.3338 0.1144 13574 +13576 2 1.8078491843335662 -149.3473845518355 6.1809 0.1144 13575 +13577 2 2.139664847735496 -147.90006766837465 6.0714 0.1144 13576 +13578 2 2.452804642616382 -146.42469394641694 5.9637 0.1144 13577 +13579 2 2.961222637487783 -145.11629436993513 5.8135 0.1144 13578 +13580 2 3.2808778674256622 -144.19642562787584 5.6807 0.1144 13579 +13581 2 3.691947053540037 -143.4601003447683 5.5599 0.1144 13580 +13582 2 4.272333462680386 -142.10981265996887 5.4403 0.1144 13581 +13583 2 4.9742287868766475 -140.72811029729215 5.3126 0.1144 13582 +13584 2 5.535922154501584 -140.14466811247289 5.1689 0.1144 13583 +13585 2 6.58844710469328 -139.3859838665556 5.0025 0.1144 13584 +13586 2 7.252071349389688 -138.81741926997324 4.7429 0.1144 13585 +13587 2 7.507270775749433 -138.02336161182052 4.3257 0.1144 13586 +13588 2 8.313929218804933 -137.9680225720921 3.8182 0.1144 13587 +13589 2 8.627983567166208 -137.1033837645959 3.3126 0.1144 13588 +13590 2 8.969527284078953 -136.11674416924143 2.8972 0.1144 13589 +13591 2 9.708002707442457 -134.57172674695286 2.479 0.1144 13590 +13592 2 10.384031304043084 -133.87468189651565 2.1389 0.1144 13591 +13593 2 11.14024811069202 -133.27237958714707 1.9206 0.1144 13592 +13594 2 12.08699353492213 -132.00273740810889 1.687 0.1144 13593 +13595 2 -4.925574054786923 -170.95200172175083 11.0434 0.1527 13534 +13596 2 -6.04501143010001 -171.59690978425755 11.0668 0.1144 13595 +13597 2 -7.166529895782544 -170.65754019384275 11.0732 0.1144 13596 +13598 2 -8.289240587202183 -171.59943503228348 11.0658 0.1144 13597 +13599 2 -9.405148047865495 -170.86926880550732 10.998 0.1144 13598 +13600 2 -10.525124445485073 -171.89665442556725 10.9082 0.1144 13599 +13601 2 -11.632953291844071 -171.11553325397773 10.8315 0.1144 13600 +13602 2 -12.674154806535103 -171.2427683348373 10.7727 0.1144 13601 +13603 2 -13.634005588037546 -170.3044008041018 10.7362 0.1144 13602 +13604 2 -14.732913563222409 -170.30801348654117 10.7206 0.1144 13603 +13605 2 -15.687085094314792 -169.49472002200054 10.7248 0.1144 13604 +13606 2 -16.51873145374959 -168.97555935209476 10.7396 0.1144 13605 +13607 2 -17.570368907326756 -168.08172918774275 10.7608 0.1144 13606 +13608 2 -18.678198195357254 -168.60569155304086 10.7922 0.1144 13607 +13609 2 -19.811945339894717 -168.64800307524308 10.836 0.1144 13608 +13610 2 -20.952712248121085 -168.5255098552164 10.8968 0.1144 13609 +13611 2 -21.960937895908422 -168.1032425267644 10.9706 0.1144 13610 +13612 2 -22.95306602558034 -167.3331941407354 11.0737 0.1144 13611 +13613 2 -24.018479983168145 -167.51246330312907 11.3109 0.1144 13612 +13614 2 -25.14001882227744 -167.42656595167432 11.5065 0.1144 13613 +13615 2 -26.13785021789007 -168.4294255287723 11.8096 0.1144 13614 +13616 2 -11.716458662681255 -187.09821653366794 14.7705 0.1144 13350 +13617 2 -12.246012428523493 -186.5684703664216 14.596 0.1144 13616 +13618 2 -12.992059393544377 -185.44445616181082 14.533 0.1144 13617 +13619 2 -13.817576855881821 -184.85537306803548 14.8697 0.1144 13618 +13620 2 -14.825748319910904 -184.30795967881403 15.1595 0.1144 13619 +13621 2 -15.882308768372411 -183.87655035244063 15.376 0.1144 13620 +13622 2 -17.00146847142878 -183.53090939427935 15.5226 0.1144 13621 +13623 2 -18.141940976075517 -183.86704976673505 15.6027 0.1144 13622 +13624 2 -19.26752556343868 -183.6528718567307 15.6177 0.1144 13623 +13625 2 -20.40481929743393 -184.30642444811454 15.5741 0.1144 13624 +13626 2 -21.517504331330773 -183.50212562354469 15.5078 0.1144 13625 +13627 2 -22.652440501172954 -183.8233688170646 15.4255 0.1144 13626 +13628 2 -23.730063003760172 -184.0555696306946 15.2935 0.1144 13627 +13629 2 -24.786830007296984 -184.38736716669536 15.0397 0.1144 13628 +13630 2 -25.389169948370807 -185.0208510195306 14.7978 0.1144 13629 +13631 2 -25.791395137585255 -186.55445587017687 14.5965 0.1144 13630 +13632 2 -26.7985098137712 -187.01961781618968 14.437 0.1144 13631 +13633 2 -27.67872191613108 -186.76449444226563 14.0795 0.1144 13632 +13634 2 -27.66354265011484 -187.06426734990578 13.8704 0.1144 13633 +13635 2 -27.53185601581683 -188.12509091544334 13.8524 0.1144 13634 +13636 2 -27.211775337778576 -189.2833347208852 13.9268 0.1144 13635 +13637 2 -27.314537356202518 -190.4883859646734 14.0204 0.1144 13636 +13638 2 -27.40197369648626 -191.69311225028204 14.1603 0.1144 13637 +13639 2 -27.55569969881521 -193.0316438667577 14.3504 0.1144 13638 +13640 2 -27.953137002397554 -194.6431901251043 14.482 0.1144 13639 +13641 2 -28.612058187674844 -195.67334928861197 14.5651 0.1144 13640 +13642 2 -29.396692334216468 -195.98588316107396 14.6205 0.1144 13641 +13643 2 -30.290654936608913 -197.52095331354218 14.6614 0.1144 13642 +13644 2 -31.342204339581507 -197.21341085214337 14.6918 0.1144 13643 +13645 2 -32.4449448245058 -198.40335371308555 14.7197 0.1144 13644 +13646 2 -33.55173757157843 -197.90949565684156 14.7551 0.1144 13645 +13647 2 -34.65775442745624 -199.15590630395886 14.7974 0.1144 13646 +13648 2 -35.514196867111195 -198.49219734448684 14.9105 0.1144 13647 +13649 2 -35.52459842745285 -197.2551018855127 15.0238 0.1144 13648 +13650 2 -35.87067433445865 -196.1704077463022 15.1187 0.1144 13649 +13651 2 -35.92645211890335 -194.92847424535063 15.1973 0.1144 13650 +13652 2 -35.614021205770584 -193.59267848814608 15.2608 0.1144 13651 +13653 2 -35.46661477507888 -192.85508499925896 15.1838 0.1144 13652 +13654 2 -35.22387088604951 -191.8105532603442 15.132 0.1144 13653 +13655 2 -35.07088751928519 -190.62405335464092 15.1114 0.1144 13654 +13656 2 -35.15740084245165 -189.34315530971077 15.0876 0.1144 13655 +13657 2 -35.421855097477774 -187.96532796372358 15.063 0.1144 13656 +13658 2 -35.72014884607697 -186.76511852482665 14.9642 0.1144 13657 +13659 2 -35.507832970415016 -185.56440728916542 14.8657 0.1144 13658 +13660 2 -35.20924947637397 -184.57955152258222 14.8358 0.1144 13659 +13661 2 -34.92688578401197 -183.4928613273858 14.8516 0.1144 13660 +13662 2 -34.514892179589744 -182.48621193630038 14.9131 0.1144 13661 +13663 2 -34.02200553459085 -180.80469935954991 15.0221 0.1144 13662 +13664 2 -33.71769611664881 -179.26189739304485 15.1855 0.1144 13663 +13665 2 -33.9561218870772 -178.337831638729 15.4307 0.1144 13664 +13666 2 -34.760136460541354 -178.10189693545448 15.755 0.1144 13665 +13667 2 -35.30840384342605 -177.0876036100971 16.2977 0.1144 13666 +13668 2 -35.21182634390206 -175.98128302064018 16.7212 0.1144 13667 +13669 2 -35.05814090537025 -174.82074336087774 17.0318 0.1144 13668 +13670 2 -34.513426353710855 -173.90703184604456 17.2373 0.1144 13669 +13671 2 -35.570054605891656 -172.85884068303173 17.9784 0.1144 13670 +13672 2 -36.60294433600879 -173.0593797244554 18.2441 0.1144 13671 +13673 2 -37.722226670314505 -172.62193569794024 18.5131 0.1144 13672 +13674 2 -38.85965245871498 -173.04412666475054 18.7577 0.1144 13673 +13675 2 -39.96897268589718 -172.09618793523313 19.0544 0.1144 13674 +13676 2 -41.074575763893144 -171.88797885588772 19.3893 0.1144 13675 +13677 2 -42.211887075083425 -171.9985570705833 19.6794 0.1144 13676 +13678 2 -43.32713989427173 -171.85916167009313 19.9247 0.1144 13677 +13679 2 -44.362574423078186 -171.16144489934416 20.2255 0.1144 13678 +13680 2 -45.39411518979122 -170.93320075294216 20.5593 0.1144 13679 +13681 2 -46.47821326392503 -170.9051959958853 20.831 0.1144 13680 +13682 2 -47.42266793134853 -171.8956050212364 21.1358 0.1144 13681 +13683 2 -48.47913401741131 -172.01031913006787 21.4457 0.1144 13682 +13684 2 -49.60477229034629 -172.70669034711673 21.6696 0.1144 13683 +13685 2 -50.72298057474389 -172.27544670677807 21.9321 0.1144 13684 +13686 2 -34.25755412080704 -173.72152642592806 17.3481 0.1144 13670 +13687 2 -33.17771565816943 -173.71063266202356 17.3825 0.1144 13686 +13688 2 -32.113843655614815 -174.48640836223865 17.3622 0.1144 13687 +13689 2 -31.054890892810842 -174.72759626478634 17.3338 0.1144 13688 +13690 2 -29.998259881869267 -175.3661843560862 17.2947 0.1144 13689 +13691 2 -29.069974215855183 -175.84013071741325 17.2399 0.1144 13690 +13692 2 -28.294008463190693 -177.24788547670593 17.1606 0.1144 13691 +13693 2 -27.681271398151626 -177.74779428165076 17.0501 0.1144 13692 +13694 2 -26.992578311581862 -178.8096759288799 16.902 0.1144 13693 +13695 2 -26.17229280752741 -180.08414952964122 16.7126 0.1144 13694 +13696 2 -25.263392389968857 -180.19146377918696 16.403 0.1144 13695 +13697 2 -24.426615042530024 -180.625815074071 15.8771 0.1144 13696 +13698 2 -23.467997605263093 -180.34426828525218 15.3808 0.1144 13697 +13699 2 -23.032436146003015 -181.5555758251001 14.8036 0.1144 13698 +13700 2 -22.751144698157937 -182.91228843816396 14.2783 0.1144 13699 +13701 2 -22.60148021588674 -184.30753334175262 13.9023 0.1144 13700 +13702 2 -22.57320541995459 -185.58253368239244 13.4968 0.1144 13701 +13703 2 -35.303246940514434 -177.23541182774431 17.5013 0.1144 13667 +13704 2 -35.25473077972473 -178.4916547432219 18.0751 0.1144 13703 +13705 2 -35.177226561393326 -179.75931955963063 18.3298 0.1144 13704 +13706 2 -34.93223117214973 -181.09574278066057 18.592 0.1144 13705 +13707 2 -34.68801197018711 -182.4261675848639 18.8411 0.1144 13706 +13708 2 -34.558693963342726 -183.70060206464927 19.0394 0.1144 13707 +13709 2 -34.784532855833845 -184.82392451287942 19.1194 0.1144 13708 +13710 2 -35.01023032727866 -185.95245801362 19.0931 0.1144 13709 +13711 2 -35.23606921976982 -187.08709655997555 18.9797 0.1144 13710 +13712 2 -35.59375181286768 -188.0669926568774 18.7973 0.1144 13711 +13713 2 -36.14980728815216 -189.39630473822345 18.5545 0.1144 13712 +13714 2 -36.706000631449655 -190.63710148599594 18.2841 0.1144 13713 +13715 2 -37.262056106734136 -191.50263840757788 18.0117 0.1144 13714 +13716 2 -37.81817859146541 -192.55382501385915 17.4334 0.1144 13715 +13717 2 -35.84549390682672 -193.66279169449314 15.2997 0.1144 13652 +13718 2 -36.836389279520056 -194.29721032063543 15.3999 0.1144 13717 +13719 2 -37.68419601148097 -194.88983856248404 15.4949 0.1144 13718 +13720 2 -38.165009662404174 -196.1959640959058 15.5626 0.1144 13719 +13721 2 -38.26615200073335 -197.48436168465224 15.6008 0.1144 13720 +13722 2 -39.10671398594753 -198.22330953177135 15.6042 0.1144 13721 +13723 2 -39.888793967158776 -198.57210012856427 15.5665 0.1144 13722 +13724 2 -40.735767273233606 -198.9720630255955 15.5477 0.1144 13723 +13725 2 -41.78722894073168 -200.03278847625234 15.4799 0.1144 13724 +13726 2 -42.395405931983746 -200.33224958082326 15.2921 0.1144 13725 +13727 2 -42.151301907518096 -201.76094941477365 14.9309 0.1144 13726 +13728 2 -41.98074136239935 -203.14264903325937 14.4615 0.1144 13727 +13729 2 -42.06843855454634 -204.1540060170379 13.9494 0.1144 13728 +13730 2 -42.53801363365287 -204.78786625088276 13.4457 0.1144 13729 +13731 2 -42.95340885345322 -206.3348439868288 12.9078 0.1144 13730 +13732 2 -43.24235578459154 -207.85404990643048 12.4036 0.1144 13731 +13733 2 -43.32982617477791 -209.19795728370548 11.946 0.1144 13732 +13734 2 -43.41555865252564 -210.5628595952228 11.578 0.1144 13733 +13735 2 -43.76527479144015 -211.50614663946922 11.3488 0.1144 13734 +13736 2 -44.6152491133009 -210.93935261541628 11.1785 0.1144 13735 +13737 2 -45.42479157574254 -212.34884955627393 10.9358 0.1144 13736 +13738 2 -45.427468757478906 -213.51787298981307 10.7044 0.1144 13737 +13739 2 -44.882023643439986 -213.93096929945648 10.3933 0.1144 13738 +13740 2 -43.84024629777895 -214.58279900961037 10.1097 0.1144 13739 +13741 2 -42.76435222795965 -214.65224051692076 9.8976 0.1144 13740 +13742 2 -41.97388791124686 -215.70684067795327 9.7638 0.1144 13741 +13743 2 -41.94000187072429 -216.98363832818194 9.7018 0.1144 13742 +13744 2 -42.224062615641785 -217.89196011798646 9.6847 0.1144 13743 +13745 2 -42.25976609290648 -219.08686215304147 9.779 0.1144 13744 +13746 2 -42.1207031556429 -220.4966756464355 9.8484 0.1144 13745 +13747 2 -42.73602709123936 -221.52972391034598 9.8834 0.1144 13746 +13748 2 -43.14236227939372 -223.1360577597079 9.8839 0.1144 13747 +13749 2 -43.057499133191506 -224.29667782617207 9.8522 0.1144 13748 +13750 2 -42.84974109776553 -225.31959046587468 9.7616 0.1144 13749 +13751 2 -42.73175039458519 -226.42421526477517 9.5649 0.1144 13750 +13752 2 -42.74799145303403 -227.70489290651764 9.3637 0.1144 13751 +13753 2 -43.08387655157864 -229.28926088625917 9.2079 0.1144 13752 +13754 2 -43.55163564549907 -230.57461596189572 9.0944 0.1144 13753 +13755 2 -43.929660958890125 -231.34844595519917 9.0189 0.1144 13754 +13756 2 -44.11737844095264 -232.38492852268902 8.9768 0.1144 13755 +13757 2 -44.3293530374437 -233.44312788437492 8.9583 0.1144 13756 +13758 2 -44.34720341297346 -234.7077459738295 8.9427 0.1144 13757 +13759 2 -44.05456778455599 -236.16912744311418 8.9195 0.1144 13758 +13760 2 -43.65747115322654 -237.79973249331192 8.8872 0.1144 13759 +13761 2 -43.220103277521716 -239.24797929252617 8.8462 0.1144 13760 +13762 2 -42.73088480464044 -239.8604546460782 8.8007 0.1144 13761 +13763 2 -42.35495771161001 -240.62949877489933 8.6978 0.1144 13762 +13764 2 -42.23456107412616 -241.84127049210022 8.5292 0.1144 13763 +13765 2 -42.36732626473523 -243.15207782334835 8.4004 0.1144 13764 +13766 2 -42.64494894705639 -244.7109807424301 8.3243 0.1144 13765 +13767 2 -43.03995407278583 -246.28757377524704 8.414 0.1144 13766 +13768 2 -43.451117508269164 -247.52154153469428 8.5421 0.1144 13767 +13769 2 -44.03638664458283 -247.9600858202973 8.6566 0.1144 13768 +13770 2 -44.91741893802434 -249.20845860041373 8.7453 0.1144 13769 +13771 2 -45.53185831882345 -250.39775879574455 8.7163 0.1144 13770 +13772 2 -44.998645253616374 -250.83223247832103 8.4356 0.1144 13771 +13773 2 -44.15500682559983 -250.9961668337765 8.4793 0.1144 13772 +13774 2 -43.30240696261213 -252.79305689248878 8.4977 0.1144 13773 +13775 2 -42.29014257865175 -252.36241754035473 8.5225 0.1144 13774 +13776 2 -41.2988955447297 -253.91369058418223 8.5536 0.1144 13775 +13777 2 -40.35757545556835 -253.83868151421717 8.5903 0.1144 13776 +13778 2 -39.457423789167926 -255.16980641288677 8.6892 0.1144 13777 +13779 2 -38.864945464081195 -256.5287807731422 8.7946 0.1144 13778 +13780 2 -38.34026406239837 -257.54601674841496 8.8767 0.1144 13779 +13781 2 -37.729845196188364 -258.59371037456424 8.9369 0.1144 13780 +13782 2 -36.82976764530134 -259.55145565475993 8.9772 0.1144 13781 +13783 2 -35.72176914160108 -259.57652500798594 8.9996 0.1144 13782 +13784 2 -34.85637457710105 -260.70555606896295 9.0066 0.1144 13783 +13785 2 -34.342085993846695 -261.7034006573693 9.0101 0.1144 13784 +13786 2 -33.76570548296149 -262.33864027576834 9.015 0.1144 13785 +13787 2 -32.89131869053471 -262.38458549609595 9.0214 0.1144 13786 +13788 2 -31.814719292000614 -263.6876216108528 9.0315 0.1144 13787 +13789 2 -30.67869920742286 -263.1304688224845 9.0459 0.1144 13788 +13790 2 -29.573465348806607 -263.27854266343866 9.0646 0.1144 13789 +13791 2 -30.063189973520863 -263.24564485673295 9.4181 0.1144 13790 +13792 2 -31.094507195220487 -262.1839063007762 9.981 0.1144 13791 +13793 2 -32.03259778901964 -262.23449589287117 10.2163 0.1144 13792 +13794 2 -32.40289350360405 -260.73109853202925 10.4013 0.1144 13793 +13795 2 -32.38103113363701 -259.49535569251356 10.5365 0.1144 13794 +13796 2 -32.42302199454235 -258.1896802038949 10.6257 0.1144 13795 +13797 2 -32.689102739643786 -256.6659064134682 10.6735 0.1144 13796 +13798 2 -33.51016117403204 -255.9835757975552 10.6848 0.1144 13797 +13799 2 -28.677362302450675 -262.64727068852204 9.0865 0.1144 13790 +13800 2 -27.534412802833835 -263.1493281312233 9.1098 0.1144 13799 +13801 2 -26.423482962484623 -263.0203702262639 9.2111 0.1144 13800 +13802 2 -26.55353366450741 -262.98122532326863 9.56 0.1144 13801 +13803 2 -27.449935752919668 -264.0994880860782 9.6655 0.1144 13802 +13804 2 -28.413799355687566 -264.5533757421701 9.6998 0.1144 13803 +13805 2 -29.537881997113374 -264.9835013067274 9.7481 0.1144 13804 +13806 2 -30.588730526791597 -264.9935312961167 9.8647 0.1144 13805 +13807 2 -31.550232109986073 -265.93751823077673 10.0154 0.1144 13806 +13808 2 -32.50671535856872 -266.4179281628712 10.0824 0.1144 13807 +13809 2 -33.25331958528989 -267.136054293654 10.021 0.1144 13808 +13810 2 -33.69205736603843 -268.7716285909522 9.9005 0.1144 13809 +13811 2 -34.06512613282892 -270.3977702493734 9.7906 0.1144 13810 +13812 2 -34.70632962170953 -271.6681338421223 9.6951 0.1144 13811 +13813 2 -35.17747345409987 -272.60915216182775 9.6279 0.1144 13812 +13814 2 -34.706280202969495 -273.85412438157806 9.5993 0.1144 13813 +13815 2 -33.99581005178814 -274.5275793836887 9.6014 0.1144 13814 +13816 2 -33.721736110767594 -275.4301553427556 9.6174 0.1144 13815 +13817 2 -33.50746264028467 -276.44980550277586 9.6404 0.1144 13816 +13818 2 -33.69359093912172 -277.8970316162656 9.6741 0.1144 13817 +13819 2 -34.40687426463467 -279.4189761194871 9.7201 0.1144 13818 +13820 2 -35.14361838343967 -280.362766963302 9.7787 0.1144 13819 +13821 2 -35.88277169349548 -281.00310868365926 9.849 0.1144 13820 +13822 2 -36.385437022730116 -282.4161823161142 10.0099 0.1144 13821 +13823 2 -36.48748059066466 -283.71149811034496 10.2225 0.1144 13822 +13824 2 -36.683329634845656 -285.07230273287587 10.3974 0.1144 13823 +13825 2 -37.23293017062555 -286.0699515482182 10.5274 0.1144 13824 +13826 2 -38.02550402961475 -286.71969544444084 10.6158 0.1144 13825 +13827 2 -38.78257745085221 -288.0788789289387 10.6664 0.1144 13826 +13828 2 -38.7607780243664 -289.334760036007 10.6834 0.1144 13827 +13829 2 -39.40193058643604 -289.95304852777605 10.6848 0.1144 13828 +13830 2 -40.20838591441972 -290.5335445766193 10.6848 0.1144 13829 +13831 2 -41.032630295552664 -292.20199591779624 10.6848 0.1144 13830 +13832 2 -41.90308097574174 -292.0561674971609 10.6848 0.1144 13831 +13833 2 -42.66171358152168 -293.70973824033706 10.6848 0.1144 13832 +13834 2 -43.163518338933855 -295.03718391164404 10.6848 0.1144 13833 +13835 2 -43.79084341366695 -295.40263772747915 10.6848 0.1144 13834 +13836 2 -44.630538219178504 -296.7547478969295 10.6848 0.1144 13835 +13837 2 -45.57721278484239 -297.26930166957277 10.6848 0.1144 13836 +13838 2 -46.5604236289292 -298.02182032879506 10.6848 0.1144 13837 +13839 2 -47.48532744177564 -298.82125535225987 10.6848 0.1144 13838 +13840 2 -48.226886686134975 -299.34925496526216 10.6848 0.1144 13839 +13841 2 -48.83310952810188 -301.1125951936324 10.6848 0.1144 13840 +13842 2 -49.39083481601966 -302.14956735786325 10.6848 0.1144 13841 +13843 2 -49.9963523292718 -302.66340724344167 10.6848 0.1144 13842 +13844 2 -50.582397356780376 -304.1591317791831 10.6848 0.1144 13843 +13845 2 -51.27855313711447 -305.5216174858734 10.6848 0.1144 13844 +13846 2 -25.531331301983847 -264.1274176489383 9.3107 0.1144 13801 +13847 2 -24.749008412216963 -264.5269900682245 9.31 0.1144 13846 +13848 2 -24.150001032112154 -266.02153548607896 9.2793 0.1144 13847 +13849 2 -23.560762269315425 -267.2220434759263 9.1492 0.1144 13848 +13850 2 -22.619777147530794 -267.19595119914686 8.9495 0.1144 13849 +13851 2 -21.739800038641565 -268.43667380041876 8.785 0.1144 13850 +13852 2 -20.940471295087267 -269.0071154698665 8.6731 0.1144 13851 +13853 2 -19.911013677217714 -269.52356204948126 8.6125 0.1144 13852 +13854 2 -19.110417892126176 -270.13074374713216 8.5996 0.1144 13853 +13855 2 -18.673836270630087 -271.14845126075613 8.6269 0.1144 13854 +13856 2 -17.637531305173702 -271.9268904988498 8.6741 0.1144 13855 +13857 2 -16.68129937226874 -272.13354373447015 8.8829 0.1144 13856 +13858 2 -16.957311671109533 -271.73177975655096 9.56 0.1144 13857 +13859 2 -17.224643079026386 -270.7712057592375 8.6551 0.1144 13858 +13860 2 -16.59050766747026 -269.6234693621973 8.2573 0.1144 13859 +13861 2 -15.662431597866771 -269.1262468166723 7.8165 0.1144 13860 +13862 2 -14.61479944177611 -268.55054556408317 7.3467 0.1144 13861 +13863 2 -13.98327651959887 -268.43363675092723 6.6697 0.1144 13862 +13864 2 -13.609697238923765 -268.9045097771178 5.9873 0.1144 13863 +13865 2 -12.583140019162297 -268.85651446335214 5.3747 0.1144 13864 +13866 2 -12.10456590214855 -267.5530351275889 4.856 0.1144 13865 +13867 2 -11.346648287810492 -265.8374273473135 4.3387 0.1144 13866 +13868 2 -10.753135466728295 -265.1457662697327 3.8332 0.1144 13867 +13869 2 -10.951202257306893 -263.7310699164435 3.3968 0.1144 13868 +13870 2 -10.518190898645795 -263.0429593455533 3.078 0.1144 13869 +13871 2 -9.928886377092088 -262.08226577396624 2.8431 0.1144 13870 +13872 2 -9.384158205471646 -260.3820287284407 2.6389 0.1144 13871 +13873 2 -8.999688019503708 -259.11120583267046 2.4843 0.1144 13872 +13874 2 -8.477631332119739 -258.57016261024114 2.3932 0.1144 13873 +13875 2 -7.743340319295626 -257.5584355933829 2.341 0.1144 13874 +13876 2 -6.750198508726466 -256.72236456016066 2.312 0.1144 13875 +13877 2 -5.640062028652643 -257.07133972272453 2.3053 0.1144 13876 +13878 2 -4.718183928365516 -257.570432447135 2.3194 0.1144 13877 +13879 2 -4.242078247465006 -259.10372080732293 2.3472 0.1144 13878 +13880 2 -4.547315340662074 -260.00922372825914 2.3869 0.1144 13879 +13881 2 -5.041757617170134 -260.73623201948766 2.442 0.1144 13880 +13882 2 -5.495007581928064 -262.19403703666933 2.5157 0.1144 13881 +13883 2 -5.936086750208112 -263.8488028835171 2.6174 0.1144 13882 +13884 2 -6.3124386979325 -264.94640464341325 2.7763 0.1144 13883 +13885 2 -6.463822814543626 -266.01330025487084 3.0089 0.1144 13884 +13886 2 -6.673428783581095 -267.00137690756594 3.2798 0.1144 13885 +13887 2 -6.957499595426306 -267.90383359151804 3.5473 0.1144 13886 +13888 2 -7.098255223193675 -269.1212149935496 3.824 0.1144 13887 +13889 2 -6.955292212042586 -270.3386343969411 4.1616 0.1144 13888 +13890 2 -6.375777451536933 -272.00806023808656 4.5636 0.1144 13889 +13891 2 -5.5458722614880145 -272.60334567984694 4.9401 0.1144 13890 +13892 2 -4.553693999277613 -273.2288408037624 5.2563 0.1144 13891 +13893 2 -3.460963234825762 -273.5293565884084 5.5205 0.1144 13892 +13894 2 -2.34548267381885 -273.7828978836727 5.7971 0.1144 13893 +13895 2 -1.4096992720630794 -273.86252465204797 6.7483 0.1144 13894 +13896 2 -13.529379991846156 -268.6258812749643 5.8453 0.1144 13863 +13897 2 -12.404216490531738 -268.39757766779326 5.6491 0.1144 13896 +13898 2 -11.290765834468068 -267.5073998388934 5.5839 0.1144 13897 +13899 2 -10.838336685519664 -268.7817435060937 5.5146 0.1144 13898 +13900 2 -10.898216351718915 -269.9528014412577 5.388 0.1144 13899 +13901 2 -10.472965290834175 -271.57831610559555 5.2823 0.1144 13900 +13902 2 -10.097007700934363 -273.05951581868646 5.24 0.1144 13901 +13903 2 -9.95471250954781 -274.151578525895 5.2566 0.1144 13902 +13904 2 -10.501073685138039 -275.07450563434725 5.2207 0.1144 13903 +13905 2 -11.03127229765439 -275.6016312087945 5.0613 0.1144 13904 +13906 2 -16.263146058749676 -272.0327071894452 9.0328 0.1144 13857 +13907 2 -15.1374608537086 -272.5528479668824 9.1251 0.1144 13906 +13908 2 -14.069013945421055 -272.68815593521833 9.0909 0.1144 13907 +13909 2 -13.53065073076803 -273.9657762429549 9.0187 0.1144 13908 +13910 2 -12.283158306372407 -273.78325970321185 8.1533 0.1144 13909 +13911 2 -11.385844719326641 -272.11985963505606 7.9879 0.1144 13910 +13912 2 -10.466131506693522 -272.2064607976709 7.8102 0.1144 13911 +13913 2 -9.343128968354769 -271.79228626339915 7.6369 0.1144 13912 +13914 2 -8.216352098739598 -272.51207155096137 7.5184 0.1144 13913 +13915 2 -7.082513961780478 -271.49220625024805 7.4523 0.1144 13914 +13916 2 -5.976284365574713 -272.5951550159869 7.4365 0.1144 13915 +13917 2 -4.8619087930168305 -272.03625128259307 7.4499 0.1144 13916 +13918 2 -3.7832969211491374 -272.4074439706825 7.4935 0.1144 13917 +13919 2 -2.829289873264038 -271.08003984738224 7.5604 0.1144 13918 +13920 2 -1.862997645676593 -271.16747971575006 7.6731 0.1144 13919 +13921 2 -0.93571464026234 -269.7332782468012 7.8327 0.1144 13920 +13922 2 -0.2840442174397353 -269.23539754840306 8.0043 0.1144 13921 +13923 2 -0.7426873857846701 -267.88740091087055 8.237 0.1144 13922 +13924 2 -0.41294169293671956 -267.2560625165867 8.4651 0.1144 13923 +13925 2 -0.7119065182476874 -265.8077532030148 8.6671 0.1144 13924 +13926 2 -1.0757745332496214 -264.60009864736236 8.8834 0.1144 13925 +13927 2 -1.002592782059189 -263.4950544590765 9.2536 0.1144 13926 +13928 2 -0.4214165656767861 -262.7792318457007 9.527 0.1144 13927 +13929 2 0.44010948820456974 -261.99441606357163 9.6998 0.1144 13928 +13930 2 0.9088436311576586 -260.54263518895687 9.862 0.1144 13929 +13931 2 1.6962498765357026 -260.2177949168642 9.6914 0.1144 13930 +13932 2 1.1881106203203728 -258.8873213414708 9.4419 0.1144 13931 +13933 2 0.15504166412066667 -259.0450773165107 9.1298 0.1144 13932 +13934 2 -0.6408652362141822 -257.71658853585944 8.8047 0.1144 13933 +13935 2 -1.7363204671095005 -258.0583956957527 8.4759 0.1144 13934 +13936 2 -2.6514351061648753 -257.1259551867107 8.0217 0.1144 13935 +13937 2 -2.1190170370797468 -256.7921726544063 7.2833 0.1144 13936 +13938 2 -1.8585470948972045 -257.6946774602716 6.0971 0.1144 13937 +13939 2 -1.429310894340631 -257.5232967426883 5.563 0.1144 13938 +13940 2 -1.354937870782706 -258.70373742898647 5.0887 0.1144 13939 +13941 2 -0.9636349670735456 -259.7171037015329 4.6199 0.1144 13940 +13942 2 -0.32505841436105243 -261.2364721650294 4.2241 0.1144 13941 +13943 2 -0.4077242441072997 -262.3344230707446 3.8747 0.1144 13942 +13944 2 -0.5577227907511428 -263.2377557771036 2.8118 0.1144 13943 +13945 2 -2.967057380981789 -256.84743722763415 7.6017 0.1144 13936 +13946 2 -4.08280205079916 -257.4078866697108 7.1671 0.1144 13945 +13947 2 -5.1011385349233365 -256.31796021002947 6.7078 0.1144 13946 +13948 2 -6.054253391202302 -256.58990762450554 6.1657 0.1144 13947 +13949 2 -6.909045710407973 -255.11211803125502 5.6652 0.1144 13948 +13950 2 -7.613040492143039 -254.4594699439038 5.2063 0.1144 13949 +13951 2 -8.087567554932317 -253.8280067707576 4.7664 0.1144 13950 +13952 2 -8.286437772714056 -252.5595926862718 4.3386 0.1144 13951 +13953 2 -8.805362255439977 -250.92024574804577 3.9343 0.1144 13952 +13954 2 -9.115087920086037 -249.40926033797285 3.6263 0.1144 13953 +13955 2 -8.777559454557785 -248.58045555505458 3.3968 0.1144 13954 +13956 2 -8.034279470754136 -248.19843232769574 3.2287 0.1144 13955 +13957 2 -7.427145332254106 -246.49089718335074 3.0292 0.1144 13956 +13958 2 -7.165708697795399 -245.08820195668852 2.869 0.1144 13957 +13959 2 -6.858230778229871 -244.0426251591571 2.7378 0.1144 13958 +13960 2 -6.295683554777234 -243.5704561308998 2.6184 0.1144 13959 +13961 2 -5.564604864320881 -242.18660834600826 2.5005 0.1144 13960 +13962 2 -5.18409554387889 -240.75689822414915 2.2648 0.1144 13961 +13963 2 -4.8968426104491485 -239.58513225723482 2.063 0.1144 13962 +13964 2 -4.717199747986115 -238.53951467398272 1.9083 0.1144 13963 +13965 2 -4.214541430832352 -237.89834921854026 1.7972 0.1144 13964 +13966 2 -3.483462740375998 -236.47306093906093 1.7261 0.1144 13965 +13967 2 -2.986543670998202 -235.1119220993669 1.687 0.1144 13966 +13968 2 0.9576017784548938 -260.21456277004285 10.8709 0.1144 13930 +13969 2 1.0806225368312212 -258.9460717275697 11.2098 0.1144 13968 +13970 2 1.5508686926494661 -258.10055593807044 11.3355 0.1144 13969 +13971 2 1.7153414161660692 -257.0586979834353 11.458 0.1144 13970 +13972 2 1.9653638057587308 -255.9223476197197 11.6363 0.1144 13971 +13973 2 2.583153673024679 -254.68224018730018 11.878 0.1144 13972 +13974 2 3.3652505311442162 -253.53904163737099 12.0801 0.1144 13973 +13975 2 4.091439980532822 -252.9961018608215 12.2276 0.1144 13974 +13976 2 4.841147960005063 -251.74509879418213 12.3313 0.1144 13975 +13977 2 5.681551351178506 -251.06888007723904 12.3957 0.1144 13976 +13978 2 6.494583107957965 -250.31007769458245 12.4875 0.1144 13977 +13979 2 7.430001228523988 -249.2810264101151 12.5191 0.1144 13978 +13980 2 8.485582759789327 -248.65661573727857 12.5003 0.1144 13979 +13981 2 9.532124689350354 -248.3965524766744 12.441 0.1144 13980 +13982 2 10.565736606046514 -247.6610917968896 12.3483 0.1144 13981 +13983 2 11.53355752130707 -247.14376273217334 12.2293 0.1144 13982 +13984 2 12.35974594732647 -246.78572700167007 11.2473 0.1144 13983 +13985 2 -13.356837501584693 -275.24258111105405 8.9175 0.1144 13909 +13986 2 -13.45726770121852 -276.4706291301167 8.7839 0.1144 13985 +13987 2 -13.838502080030153 -277.4966369587298 8.6406 0.1144 13986 +13988 2 -14.698408952003064 -278.2960479653673 8.4804 0.1144 13987 +13989 2 -15.138762859813092 -279.63720746432733 8.2998 0.1144 13988 +13990 2 -15.84913853556597 -280.2982909451569 7.9267 0.1144 13989 +13991 2 -16.051923715696027 -280.73933714408787 9.6854 0.1144 13990 +13992 2 -15.618786557908848 -280.31407494880176 10.761 0.1144 13991 +13993 2 -15.226238495394206 -279.24091785441664 11.1528 0.1144 13992 +13994 2 -14.886995602215755 -277.9254569717039 11.6047 0.1144 13993 +13995 2 -15.071150224830248 -276.8587242876863 12.0418 0.1144 13994 +13996 2 -15.620125549605092 -275.7274136182447 12.3906 0.1144 13995 +13997 2 -16.275464681436745 -274.43793893386766 12.7513 0.1144 13996 +13998 2 -16.706367052522726 -273.43874901452557 13.0691 0.1144 13997 +13999 2 -16.91901077598312 -272.26892362414293 13.3144 0.1144 13998 +14000 2 -16.70939474001786 -270.9671709777279 13.4955 0.1144 13999 +14001 2 -16.436725051264013 -269.6383700371668 13.6409 0.1144 14000 +14002 2 -15.999667944349039 -268.6284364785042 13.7691 0.1144 14001 +14003 2 -15.341529460247163 -267.8140690554829 13.8869 0.1144 14002 +14004 2 -14.731173134551838 -266.5336385908042 14.0552 0.1144 14003 +14005 2 -14.438095976632383 -265.27095753478085 14.336 0.1144 14004 +14006 2 -14.294857338186965 -263.983380647373 14.6212 0.1144 14005 +14007 2 -14.219598308275618 -262.75192623996384 14.9186 0.1144 14006 +14008 2 -14.148368149709878 -261.51521703024673 15.2208 0.1144 14007 +14009 2 -14.63166133875195 -260.48148619571504 15.4906 0.1144 14008 +14010 2 -15.052619362965757 -260.01790734645493 15.9541 0.1144 14009 +14011 2 -14.105003502085722 -259.1831004521727 16.3014 0.1144 14010 +14012 2 -13.14770646328611 -258.72275795612916 16.5556 0.1144 14011 +14013 2 -12.046861013624074 -258.6307036058451 16.7274 0.1144 14012 +14014 2 -10.946862313723095 -258.3123005295935 16.8708 0.1144 14013 +14015 2 -16.83883061922164 -280.52005027145714 7.51 0.1144 13990 +14016 2 -17.329900837362892 -281.6753753137794 7.0168 0.1144 14015 +14017 2 -17.358235521929338 -282.88024460943393 6.5071 0.1144 14016 +14018 2 -17.509673324112192 -284.0646847308615 6.102 0.1144 14017 +14019 2 -17.72892947601347 -285.2090056434662 5.8138 0.1144 14018 +14020 2 -17.86168104666146 -286.4055839899055 5.6288 0.1144 14019 +14021 2 -17.997614738893972 -287.5979222794862 5.5035 0.1144 14020 +14022 2 -18.059147340818193 -288.83340153206785 5.4144 0.1144 14021 +14023 2 -17.97664601208905 -290.1443066135085 5.3323 0.1144 14022 +14024 2 -17.80924340347959 -291.49165963253296 5.2142 0.1144 14023 +14025 2 -17.66694821209304 -292.82702126379644 5.0417 0.1144 14024 +14026 2 -17.672709214825254 -294.04633135673174 4.7774 0.1144 14025 +14027 2 -17.794174341692397 -295.2261142178892 4.5016 0.1144 14026 +14028 2 -18.539016470899654 -295.90359831797497 4.2951 0.1144 14027 +14029 2 -19.084500399859415 -297.35605856305835 4.1577 0.1144 14028 +14030 2 -19.311115479631503 -298.8512695206104 4.0862 0.1144 14029 +14031 2 -18.96984788819948 -299.76318302264116 4.073 0.1144 14030 +14032 2 -18.344244764895492 -300.4332705587572 4.1076 0.1144 14031 +14033 2 -17.476265538195655 -301.87226993503674 4.177 0.1144 14032 +14034 2 -16.497870444390998 -302.0842632786717 4.2762 0.1144 14033 +14035 2 -15.46707486990313 -303.0430132947094 4.4098 0.1144 14034 +14036 2 -14.549097341689965 -303.48752682126053 4.5806 0.1144 14035 +14037 2 -13.583957161199095 -304.16923961160086 4.8096 0.1144 14036 +14038 2 -13.758211553771794 -303.43490913674555 5.322 0.1144 14037 +14039 2 -13.29191965559933 -302.66526177167066 5.8313 0.1144 14038 +14040 2 -13.539998865838733 -301.31521052000267 6.3168 0.1144 14039 +14041 2 -13.535078301073426 -300.0563807372357 6.7698 0.1144 14040 +14042 2 -13.520280953584034 -298.86724991571117 7.2619 0.1144 14041 +14043 2 -13.530756629439125 -297.6089727983979 7.6938 0.1144 14042 +14044 2 -13.645803113767037 -296.59507152588225 7.9701 0.1144 14043 +14045 2 -13.472594760867025 -295.43517571577803 8.1483 0.1144 14044 +14046 2 -13.428867590813873 -294.1913704055834 8.2379 0.1144 14045 +14047 2 -13.24266517646339 -293.0667409093053 8.2228 0.1144 14046 +14048 2 -13.017733529285643 -291.7656668096655 8.164 0.1144 14047 +14049 2 -13.279630159933873 -290.5972127260794 8.1227 0.1144 14048 +14050 2 -13.395242168732828 -289.28784399554587 8.1163 0.1144 14049 +14051 2 -13.184816393770326 -288.1497496178523 8.1474 0.1144 14050 +14052 2 -12.879734341580622 -286.7630304266263 8.2452 0.1144 14051 +14053 2 -12.746962340991054 -285.43909039096826 8.4018 0.1144 14052 +14054 2 -12.776856817017936 -284.18077571642783 8.5594 0.1144 14053 +14055 2 -12.792120378505174 -282.9492409757424 8.7783 0.1144 14054 +14056 2 -12.44233949071829 -281.681555984059 9.088 0.1144 14055 +14057 2 -12.878839688533951 -280.75118840483196 9.3083 0.1144 14056 +14058 2 -12.609358433158732 -279.42694155020257 9.3392 0.1144 14057 +14059 2 -12.449083444056491 -278.10489685956327 9.283 0.1144 14058 +14060 2 -12.317127992444696 -276.81679797572133 9.1568 0.1144 14059 +14061 2 -11.725611026403051 -275.45387655378215 8.9747 0.1144 14060 +14062 2 -10.674386467364528 -275.21742411527293 8.7845 0.1144 14061 +14063 2 -9.899452932311341 -274.6323443663939 8.6619 0.1144 14062 +14064 2 -9.25754105986897 -272.87341151033183 8.6091 0.1144 14063 +14065 2 -8.690114662276386 -272.1266573148574 8.6082 0.1144 14064 +14066 2 -8.192345586190328 -271.49368138659554 8.6515 0.1144 14065 +14067 2 -7.482372681533512 -269.9339595739183 8.7293 0.1144 14066 +14068 2 -7.403847347596447 -268.5930403129059 8.8576 0.1144 14067 +14069 2 -6.9803742512494225 -267.301182026482 9.1323 0.1144 14068 +14070 2 -7.088278044552979 -266.284519796108 9.371 0.1144 14069 +14071 2 -7.319536938881683 -265.1823144333167 9.5796 0.1144 14070 +14072 2 -7.291989006710452 -263.90221686859616 9.7639 0.1144 14071 +14073 2 -7.43505031845023 -262.8191944486512 9.9298 0.1144 14072 +14074 2 -7.307960124931196 -261.45733642999915 10.1351 0.1144 14073 +14075 2 -7.073897681527022 -260.21412251796414 10.4286 0.1144 14074 +14076 2 -6.247471648861634 -260.43934652446137 10.6968 0.1144 14075 +14077 2 -5.40593068993639 -260.4416266298099 10.9717 0.1144 14076 +14078 2 -4.45759345026152 -261.3321156666627 11.2582 0.1144 14077 +14079 2 -3.5098494166513134 -261.85731271331986 11.5122 0.1144 14078 +14080 2 -2.7788088033581886 -262.33371990409523 11.894 0.1144 14079 +14081 2 -2.272790444507841 -263.95837514354287 12.2508 0.1144 14080 +14082 2 -1.6131693958207052 -264.86163700580715 12.5151 0.1144 14081 +14083 2 -1.4134587400720164 -265.8873870714912 12.692 0.1144 14082 +14084 2 -1.0997445657771863 -266.9231854595128 12.7912 0.1144 14083 +14085 2 -0.7535945432579965 -268.0899002992836 12.8256 0.1144 14084 +14086 2 -0.40836212906604175 -269.67685208767665 12.8029 0.1144 14085 +14087 2 -0.032327166705570676 -271.0730732309159 12.7563 0.1144 14086 +14088 2 0.5593585923782811 -271.86848061914594 12.6753 0.1144 14087 +14089 2 1.4369506950919941 -272.5100053443994 12.5429 0.1144 14088 +14090 2 2.4724935914148816 -273.3118797931803 12.4262 0.1144 14089 +14091 2 3.509499632265964 -273.45266712296205 12.3199 0.1144 14090 +14092 2 4.263584206122488 -274.79621749319335 12.2201 0.1144 14091 +14093 2 5.183123677638953 -275.02102378587017 12.124 0.1144 14092 +14094 2 6.27102974779514 -275.8535985809974 12.0198 0.1144 14093 +14095 2 7.163655883830323 -276.0910160521544 11.8468 0.1144 14094 +14096 2 7.874325836621345 -276.45196441752915 11.5997 0.1144 14095 +14097 2 9.00488760262703 -276.32839190838075 11.3911 0.1144 14096 +14098 2 10.130641551245425 -276.11363973145166 11.218 0.1144 14097 +14099 2 11.250109423427851 -276.15884984177836 11.0482 0.1144 14098 +14100 2 12.326780122199708 -276.021388080714 10.8694 0.1144 14099 +14101 2 13.346288956820594 -276.71678048977503 10.7264 0.1144 14100 +14102 2 14.278788735970892 -277.373794127651 10.6127 0.1144 14101 +14103 2 15.132940973520626 -278.13529290932644 10.5046 0.1144 14102 +14104 2 15.72058729614475 -279.5208961863717 10.3634 0.1144 14103 +14105 2 15.789149715174034 -280.70287520955833 10.2049 0.1144 14104 +14106 2 15.823113128157239 -281.92447799878096 10.0674 0.1144 14105 +14107 2 16.312119119325693 -282.7979783445065 9.9378 0.1144 14106 +14108 2 16.921670805833045 -283.6075949450502 9.7805 0.1144 14107 +14109 2 17.26615377447977 -284.95545277500935 9.5881 0.1144 14108 +14110 2 17.05399669495884 -286.0275113612236 9.3958 0.1144 14109 +14111 2 16.968119041031173 -287.1924607822477 9.2094 0.1144 14110 +14112 2 17.352926939625014 -288.548241675854 8.9574 0.1144 14111 +14113 2 17.617246085398975 -289.9734796142676 8.6313 0.1144 14112 +14114 2 17.81288049602435 -291.2613201469025 8.2628 0.1144 14113 +14115 2 17.919692624753885 -292.4496740242887 7.9414 0.1144 14114 +14116 2 17.98027872477237 -293.6710634576938 7.6797 0.1144 14115 +14117 2 17.627350263490072 -294.89292818689853 7.3975 0.1144 14116 +14118 2 17.699253102058428 -296.201864739838 6.7483 0.1144 14117 +14119 2 -7.0189805002262915 -267.4191803686067 9.6343 0.1144 14069 +14120 2 -7.314324930163821 -268.75727259490134 9.8825 0.1144 14119 +14121 2 -7.661567331055437 -270.3493370724579 9.9678 0.1144 14120 +14122 2 -8.316439511131641 -271.66619680850215 10.0331 0.1144 14121 +14123 2 -9.10666822745577 -271.75024273530494 10.0795 0.1144 14122 +14124 2 -9.91553274669021 -273.43751403869163 10.1087 0.1144 14123 +14125 2 -10.599578522184856 -274.2157583466469 10.1226 0.1144 14124 +14126 2 -12.419091461692176 -297.4963106314747 8.4356 0.1144 14043 +14127 2 -11.790249772471036 -297.9287001575345 8.3197 0.1144 14126 +14128 2 -11.10399617192116 -298.2546003340152 8.2805 0.1144 14127 +14129 2 -10.770010135899312 -299.83593636733104 8.229 0.1144 14128 +14130 2 -11.145494903921069 -300.67143611168063 8.1416 0.1144 14129 +14131 2 -11.52105053050905 -302.25930476778916 7.873 0.1144 14130 +14132 2 -46.71636938704103 -250.26831970733826 8.6451 0.1144 13771 +14133 2 -47.798596408887406 -250.05034345024285 8.6351 0.1144 14132 +14134 2 -48.860008791566734 -249.52469900588267 8.6633 0.1144 14133 +14135 2 -49.986476993869374 -249.1985784711468 8.734 0.1144 14134 +14136 2 -51.1049184485366 -249.2679200349374 8.8482 0.1144 14135 +14137 2 -51.85899265937929 -248.17045531459763 8.9915 0.1144 14136 +14138 2 -51.27144618411981 -247.26847400154747 9.3582 0.1144 14137 +14139 2 -50.318832714655635 -245.9854781288002 9.5518 0.1144 14138 +14140 2 -49.50586450827549 -245.87781503131424 9.7272 0.1144 14139 +14141 2 -49.96718115973803 -245.31650474742702 9.8828 0.1144 14140 +14142 2 -50.59642300687982 -244.19592186445374 10.075 0.1144 14141 +14143 2 -50.16171715232373 -243.1825545372148 10.6848 0.1144 14142 +14144 2 -52.44395620227129 -247.7231025951258 9.2487 0.1144 14137 +14145 2 -53.1707917729831 -247.6291941303047 9.6364 0.1144 14144 +14146 2 -53.54591899184368 -246.50703480038607 10.0499 0.1144 14145 +14147 2 -54.182052599488856 -244.96749571303326 10.4279 0.1144 14146 +14148 2 -54.86829258007769 -244.0037238609454 10.7525 0.1144 14147 +14149 2 -55.65307183277269 -243.49915694655556 10.986 0.1144 14148 +14150 2 -56.63628510697854 -242.38777433677973 11.1267 0.1144 14149 +14151 2 -57.272374301707146 -241.77937196864008 11.2022 0.1144 14150 +14152 2 -58.01839787592531 -240.88453142809595 11.2464 0.1144 14151 +14153 2 -58.20911254861358 -239.6810574302582 11.2059 0.1144 14152 +14154 2 -58.246291836997926 -238.40080835852928 11.1963 0.1144 14153 +14155 2 -58.27212368786264 -237.14190129185548 11.301 0.1144 14154 +14156 2 -58.18555778422887 -235.85351837645268 11.4343 0.1144 14155 +14157 2 -58.40075699803418 -235.97905564560543 11.2473 0.1144 14156 +14158 2 -59.45442430003973 -236.59644790564388 11.1563 0.1144 14157 +14159 2 -60.34526882943334 -236.84543911468114 11.1192 0.1144 14158 +14160 2 -61.3277339831085 -238.18122232843484 11.069 0.1144 14159 +14161 2 -62.08231452884048 -238.28133599615822 11.0061 0.1144 14160 +14162 2 -62.61323534697989 -239.8296408839997 10.9023 0.1144 14161 +14163 2 -63.368052559499915 -241.04749107978262 10.7384 0.1144 14162 +14164 2 -64.13503721756483 -241.0103656268677 10.5432 0.1144 14163 +14165 2 -64.76080390202799 -242.66393978995535 10.3504 0.1144 14164 +14166 2 -65.53977262022093 -243.64717502431364 10.2304 0.1144 14165 +14167 2 -65.87171076928678 -244.39109940170346 10.2336 0.1144 14166 +14168 2 -66.12992195960305 -245.31596627095695 10.3295 0.1144 14167 +14169 2 -66.17685138509623 -246.56209761762454 10.4428 0.1144 14168 +14170 2 -65.94237335841915 -248.01135773754083 10.5423 0.1144 14169 +14171 2 -65.72725284208903 -249.49762559049014 10.6168 0.1144 14170 +14172 2 -65.7054934812139 -250.7871369121799 10.659 0.1144 14171 +14173 2 -65.85359441689101 -251.88035782115526 10.6728 0.1144 14172 +14174 2 -66.14494352719919 -252.91063288643437 10.6714 0.1144 14173 +14175 2 -66.54313658812092 -254.58105709174606 10.6661 0.1144 14174 +14176 2 -66.80208665886826 -256.14026502317034 10.6589 0.1144 14175 +14177 2 -67.23022239642269 -257.4434041321711 10.6485 0.1144 14176 +14178 2 -67.44871923795128 -258.4386738066342 10.6332 0.1144 14177 +14179 2 -67.17137218292449 -259.9642121744598 10.6123 0.1144 14178 +14180 2 -66.42135378726346 -260.37117542334886 10.5862 0.1144 14179 +14181 2 -66.07533236010198 -261.18893360444264 10.5559 0.1144 14180 +14182 2 -66.01151370987444 -262.4108551414404 10.4791 0.1144 14181 +14183 2 -65.30023411578195 -264.130374212085 10.3803 0.1144 14182 +14184 2 -64.42907957747812 -264.77595487379017 10.31 0.1144 14183 +14185 2 -63.756521908045926 -265.4336253031631 10.2674 0.1144 14184 +14186 2 -62.9708822856288 -267.23088335037096 10.2509 0.1144 14185 +14187 2 -62.444577946903905 -268.0017508636152 10.2586 0.1144 14186 +14188 2 -61.84716300697178 -268.52459138493595 10.3227 0.1144 14187 +14189 2 -61.4713100294548 -270.02479161476896 10.4227 0.1144 14188 +14190 2 -61.56758355665784 -271.17752416014486 10.495 0.1144 14189 +14191 2 -62.00547734640611 -272.3113268997743 10.5396 0.1144 14190 +14192 2 -62.2628213570197 -273.86144131274534 10.5543 0.1144 14191 +14193 2 -62.15203759554974 -275.03526060047176 10.5382 0.1144 14192 +14194 2 -62.05016158347924 -276.2204208547524 10.4929 0.1144 14193 +14195 2 -61.86819941708267 -277.30781807985426 10.4271 0.1144 14194 +14196 2 -61.39296367464564 -278.6624276079553 10.3228 0.1144 14195 +14197 2 -60.414795880988045 -279.59536467720795 10.1142 0.1144 14196 +14198 2 -59.286033664931665 -279.39699885731466 9.9157 0.1144 14197 +14199 2 -58.16447158060508 -279.718297522733 9.7627 0.1144 14198 +14200 2 -57.04232635714153 -279.1185947070579 9.6519 0.1144 14199 +14201 2 -56.01480063971266 -279.4120767034468 9.5791 0.1144 14200 +14202 2 -55.059741000789586 -280.4362489166491 9.5397 0.1144 14201 +14203 2 -54.08452773248334 -280.69872636418967 9.524 0.1144 14202 +14204 2 -53.2594139810999 -282.1272613819581 9.51 0.1144 14203 +14205 2 -52.57556276182025 -282.6321330060363 9.4901 0.1144 14204 +14206 2 -51.82069548678827 -283.6706678837454 9.4608 0.1144 14205 +14207 2 -51.06173203487791 -285.0561876104852 9.4203 0.1144 14206 +14208 2 -50.233405665040564 -285.21718324556286 9.3691 0.1144 14207 +14209 2 -49.36782556266374 -286.8076621944402 9.3059 0.1144 14208 +14210 2 -48.51696026118168 -287.14275574815736 9.1793 0.1144 14209 +14211 2 -47.56936515888504 -287.93829329715703 8.9731 0.1144 14210 +14212 2 -46.55708695286329 -288.44984027876774 8.8188 0.1144 14211 +14213 2 -45.56333618223542 -289.1299940979771 8.7225 0.1144 14212 +14214 2 -44.56795892153218 -289.7902224311084 8.6789 0.1144 14213 +14215 2 -43.574278713384416 -290.34068294999327 8.6821 0.1144 14214 +14216 2 -42.579748498528346 -291.13352832437783 8.7258 0.1144 14215 +14217 2 -41.5852215406195 -291.55129112132397 8.7948 0.1144 14216 +14218 2 -40.59062046719728 -292.4749779098552 8.8691 0.1144 14217 +14219 2 -39.5968696965694 -292.7620889639132 8.949 0.1144 14218 +14220 2 -38.60234273866055 -293.9921455828974 9.0387 0.1144 14219 +14221 2 -37.565119666690535 -294.23321688677896 9.1391 0.1144 14220 +14222 2 -36.67961904868531 -295.32900308625597 9.25 0.1144 14221 +14223 2 -35.72877431717095 -295.43397018356785 9.3743 0.1144 14222 +14224 2 -34.620843617190005 -296.2436692495582 9.548 0.1144 14223 +14225 2 -33.884988174428685 -296.49914640387703 9.8397 0.1144 14224 +14226 2 -33.74263219140366 -297.60040703869794 10.106 0.1144 14225 +14227 2 -33.06551669524719 -297.7463165989299 10.4739 0.1144 14226 +14228 2 -32.939414065617484 -298.87994881347777 10.7772 0.1144 14227 +14229 2 -33.0745683136218 -300.3003042359932 10.9948 0.1144 14228 +14230 2 -33.1457175466936 -301.664126946497 11.1338 0.1144 14229 +14231 2 -33.21916290850813 -302.7467270632739 11.2077 0.1144 14230 +14232 2 -33.283027329222534 -304.1037048215434 11.2434 0.1144 14231 +14233 2 -33.347033170983195 -305.4613776252319 11.2473 0.1144 14232 +14234 2 -33.49025167557314 -306.8991622425883 11.2473 0.1144 14233 +14235 2 -33.60432737770009 -308.3100188769575 11.2473 0.1144 14234 +14236 2 -33.52514929551566 -309.50501145111303 11.2473 0.1144 14235 +14237 2 -33.81324572175923 -311.07297116898116 11.2473 0.1144 14236 +14238 2 -34.42846079165289 -312.6534178981769 11.2473 0.1144 14237 +14239 2 -35.01769119769315 -313.6537250743284 11.2473 0.1144 14238 +14240 2 -32.00341913551848 -302.5192544860521 11.5656 0.1144 14230 +14241 2 -30.95713844297746 -302.19088142447964 11.7799 0.1144 14240 +14242 2 -29.83872398866115 -302.61472528374156 11.9852 0.1144 14241 +14243 2 -28.700016542389463 -301.7558484859387 12.1447 0.1144 14242 +14244 2 -27.5604386594679 -302.51200753117877 12.26 0.1144 14243 +14245 2 -26.542525521966795 -302.18134221789524 12.3721 0.1144 14244 +14246 2 -58.60630939895272 -235.25563781943237 11.5837 0.1144 14156 +14247 2 -59.14784387398999 -234.63449416026046 11.888 0.1144 14246 +14248 2 -59.96332135855678 -233.00515301058132 12.1917 0.1144 14247 +14249 2 -60.597892726812546 -232.1650060932394 12.4544 0.1144 14248 +14250 2 -60.72181977713265 -230.90386995297894 12.9105 0.1144 14249 +14251 2 -61.680528705007724 -230.44702697934574 13.2849 0.1144 14250 +14252 2 -61.38852983127241 -230.30296385491584 13.4238 0.1144 14251 +14253 2 -60.73776389500244 -228.87391948047787 13.185 0.1144 14252 +14254 2 -60.08848273167541 -227.4062800289047 13.0816 0.1144 14253 +14255 2 -59.40761582081808 -227.14863481214175 12.9596 0.1144 14254 +14256 2 -58.74224620993055 -225.78111685496884 12.8336 0.1144 14255 +14257 2 -58.77097840238847 -224.73012652204545 12.7067 0.1144 14256 +14258 2 -59.5807432869292 -223.99151747489742 12.5728 0.1144 14257 +14259 2 -60.26938544668792 -222.38525806582504 12.3976 0.1144 14258 +14260 2 -60.49080841817579 -221.2714440420233 12.126 0.1144 14259 +14261 2 -60.42676201261795 -219.92808745438333 11.8253 0.1144 14260 +14262 2 -60.304622053905426 -218.67197467715553 11.5511 0.1144 14261 +14263 2 -60.12074365199167 -217.6118544488597 11.1626 0.1144 14262 +14264 2 -60.221660993751364 -216.31917629934398 10.7535 0.1144 14263 +14265 2 -60.5143775476628 -215.09524380170913 10.4257 0.1144 14264 +14266 2 -60.076419009042084 -214.14837641936174 10.1829 0.1144 14265 +14267 2 -59.171803934831004 -214.00686487274896 9.9864 0.1144 14266 +14268 2 -58.3467327356922 -212.39527824508738 9.7857 0.1144 14267 +14269 2 -57.680449069510715 -211.49984405245138 9.637 0.1144 14268 +14270 2 -58.02168942102058 -210.23569997008485 9.5223 0.1144 14269 +14271 2 -58.33695922682459 -208.9424609033454 9.4221 0.1144 14270 +14272 2 -57.89669986446957 -207.8877322723767 9.2879 0.1144 14271 +14273 2 -57.16477037303244 -206.64186182000986 9.1471 0.1144 14272 +14274 2 -57.11299582330197 -205.36012674771928 9.0376 0.1144 14273 +14275 2 -57.01501517661575 -204.08322873520507 8.8974 0.1144 14274 +14276 2 -56.906591282876406 -202.78652429122178 8.7946 0.1144 14275 +14277 2 -56.94370326572786 -201.52632872497995 8.7517 0.1144 14276 +14278 2 -57.023731354620594 -200.28385215702895 8.7701 0.1144 14277 +14279 2 -56.95582118565231 -198.99959263196985 8.841 0.1144 14278 +14280 2 -56.47331324093442 -197.92563169591426 8.9572 0.1144 14279 +14281 2 -55.753345119109326 -197.51522932251112 9.1851 0.1144 14280 +14282 2 -55.5297385463465 -196.4047550275908 9.5736 0.1144 14281 +14283 2 -55.57257290006563 -195.17946800775252 9.94 0.1144 14282 +14284 2 -55.506225172587065 -193.83473646798367 10.2852 0.1144 14283 +14285 2 -55.904963055911274 -193.01618063559516 10.604 0.1144 14284 +14286 2 -56.382367069490954 -191.82501480521393 10.9471 0.1144 14285 +14287 2 -56.63301752406937 -190.33268316055268 11.2645 0.1144 14286 +14288 2 -57.144433649424506 -189.52486557257808 11.6973 0.1144 14287 +14289 2 -57.87326818653865 -189.09548923690238 12.9343 0.1144 14288 +14290 2 -62.264695926763224 -229.8726310081889 13.6049 0.1144 14251 +14291 2 -63.22989029101227 -230.29514181705065 13.9419 0.1144 14290 +14292 2 -64.19758533712029 -228.77681683283615 14.3294 0.1144 14291 +14293 2 -64.81156229776022 -228.3987525565454 14.8143 0.1144 14292 +14294 2 -64.97566129549412 -227.3324448980557 15.212 0.1144 14293 +14295 2 -65.48584363494216 -226.44458277261134 15.4967 0.1144 14294 +14296 2 -66.43676298015635 -224.83639082408362 15.7083 0.1144 14295 +14297 2 -66.48281714746659 -224.4556082941706 16.353 0.1144 14296 +14298 2 -66.29656005117145 -223.2908838885071 16.8744 0.1144 14297 +14299 2 -66.04001917167489 -222.34342287481016 17.0561 0.1144 14298 +14300 2 -65.54215179500015 -221.8090006003004 17.3156 0.1144 14299 +14301 2 -64.7130721544574 -220.33012687916766 17.5704 0.1144 14300 +14302 2 -64.10755108817189 -219.20901988119198 17.8186 0.1144 14301 +14303 2 -63.15922989857718 -219.07016876839782 18.0679 0.1144 14302 +14304 2 -62.45003969509573 -217.26619363859874 18.6641 0.1144 14303 +14305 2 -61.72459593611876 -216.94164442164123 19.0144 0.1144 14304 +14306 2 -61.11348030005076 -215.97890987131862 19.3422 0.1144 14305 +14307 2 -60.5856908787852 -214.2394370332397 19.6763 0.1144 14306 +14308 2 -60.185851193932635 -213.03539148831382 20.0348 0.1144 14307 +14309 2 -59.566379952546384 -212.81218935187684 20.516 0.1144 14308 +14310 2 -58.60212719864347 -211.7384975097812 21.073 0.1144 14309 +14311 2 -57.63264278254374 -211.13828261487816 21.5445 0.1144 14310 +14312 2 -56.70291703416246 -209.93052425526824 21.9291 0.1144 14311 +14313 2 -55.91764486443894 -209.45296640175468 22.2379 0.1144 14312 +14314 2 -55.81798354391914 -208.25480363110458 22.5653 0.1144 14313 +14315 2 -56.22865787402246 -206.90538806598008 22.9065 0.1144 14314 +14316 2 -56.443193319283 -206.55684512414717 23.0569 0.1144 14315 +14317 2 -57.39423741073547 -206.1719204252248 22.8481 0.1144 14316 +14318 2 -58.254878139506104 -205.30922914864033 22.7747 0.1144 14317 +14319 2 -58.84904039537362 -204.4684867196798 22.6869 0.1144 14318 +14320 2 -58.85281084497491 -203.31649475389327 22.4261 0.1144 14319 +14321 2 -59.25060954807199 -202.556144675195 22.2062 0.1144 14320 +14322 2 -59.97971500397722 -201.2740156309575 22.0264 0.1144 14321 +14323 2 -60.7870911272088 -200.0776550593485 21.8832 0.1144 14322 +14324 2 -61.43704185917666 -199.72452144578068 21.7353 0.1144 14323 +14325 2 -62.09179409673774 -198.24423079045732 21.5939 0.1144 14324 +14326 2 -63.0371326942308 -197.47863899587065 21.5075 0.1144 14325 +14327 2 -63.982542150290115 -196.98781749785877 21.4437 0.1144 14326 +14328 2 -64.9270339980221 -195.8531708806729 21.4007 0.1144 14327 +14329 2 -65.87244345408136 -195.73124653152982 21.3699 0.1144 14328 +14330 2 -55.662069282177455 -207.3166495266407 23.1913 0.1144 14315 +14331 2 -54.63378800950956 -207.24329669421175 23.5397 0.1144 14330 +14332 2 -54.480006276646385 -208.1355734182933 23.8614 0.1144 14331 +14333 2 -53.652561204659236 -209.5463061479743 24.1957 0.1144 14332 +14334 2 -52.656499247283165 -209.51758719416654 24.5425 0.1144 14333 +14335 2 -51.88717397200007 -211.00332242206693 24.9109 0.1144 14334 +14336 2 -51.27294296947732 -211.84413278128966 25.4113 0.1144 14335 +14337 2 -50.290511752675044 -211.73720814948362 25.944 0.1144 14336 +14338 2 -49.19452836067346 -211.96030340428706 26.5083 0.1144 14337 +14339 2 -48.14966725053147 -211.6292114984828 27.1321 0.1144 14338 +14340 2 -47.13216351105066 -211.30105327215716 27.6565 0.1144 14339 +14341 2 -46.28762663614876 -210.09922648294963 28.0594 0.1144 14340 +14342 2 -45.361933016060306 -210.00879147905198 28.3618 0.1144 14341 +14343 2 -44.477654848534655 -208.34634384069938 28.6012 0.1144 14342 +14344 2 -43.76340554454395 -208.24544379901545 28.9394 0.1144 14343 +14345 2 -42.94790034582779 -207.07986068610046 29.3166 0.1144 14344 +14346 2 -41.86549321455568 -206.87912746412752 29.6377 0.1144 14345 +14347 2 -40.731722383129416 -206.33486319966917 29.9211 0.1144 14346 +14348 2 -39.64385411800956 -207.25579236780817 30.2126 0.1144 14347 +14349 2 -38.55605315842254 -208.0319567226635 30.4928 0.1144 14348 +14350 2 -37.43362694924021 -208.03137928121288 30.6858 0.1144 14349 +14351 2 -36.29049822354075 -208.25799272890606 30.9299 0.1144 14350 +14352 2 -54.53364253168415 -206.70038387083457 23.6191 0.1144 14331 +14353 2 -54.12086267305327 -205.96468220874766 23.6339 0.1144 14352 +14354 2 -53.44897437016158 -205.0926253068681 23.6398 0.1144 14353 +14355 2 -52.579285961206295 -203.66285049197734 23.6481 0.1144 14354 +14356 2 -51.60663985346366 -203.70646834027173 23.6596 0.1144 14355 +14357 2 -50.687472031446035 -202.24885552803153 23.6754 0.1144 14356 +14358 2 -49.83240091706935 -202.0821352311754 23.6983 0.1144 14357 +14359 2 -49.17503181026791 -200.7499904622968 23.7307 0.1144 14358 +14360 2 -49.144180267221 -199.4819915672732 23.7751 0.1144 14359 +14361 2 -49.715711898735336 -198.79835172551293 23.8332 0.1144 14360 +14362 2 -50.461685044328895 -197.18409272835865 23.9078 0.1144 14361 +14363 2 -50.89495624496884 -196.0364092581356 24.0673 0.1144 14362 +14364 2 -51.156221864516006 -195.01643171459534 24.2388 0.1144 14363 +14365 2 -51.11893601400642 -193.70329996437644 24.4246 0.1144 14364 +14366 2 -50.65922104281606 -192.29603034188676 24.6183 0.1144 14365 +14367 2 -49.88683180826579 -192.089456731687 24.814 0.1144 14366 +14368 2 -48.97803261960139 -190.7992964323796 25.1 0.1144 14367 +14369 2 -48.27096331348497 -190.19596930913193 25.5291 0.1144 14368 +14370 2 -48.03229872442573 -189.2420428979221 26.4312 0.1144 14369 +14371 2 -63.18440881813814 -219.47736445884158 18.4583 0.1144 14303 +14372 2 -63.848280736408334 -220.11676049006053 18.9165 0.1144 14371 +14373 2 -64.25557459487352 -220.74858190439437 19.3376 0.1144 14372 +14374 2 -64.7236614045186 -221.61304573904317 19.9013 0.1144 14373 +14375 2 -65.69045501892086 -221.52046480472092 20.4382 0.1144 14374 +14376 2 -66.32493844960182 -219.81235725584853 20.8865 0.1144 14375 +14377 2 -66.6830906076305 -218.74918132963322 21.2073 0.1144 14376 +14378 2 -67.03078945167833 -217.91206752985988 21.4435 0.1144 14377 +14379 2 -67.70650505761982 -217.1714199953865 21.6282 0.1144 14378 +14380 2 -68.65097647541018 -215.72141371862443 21.7772 0.1144 14379 +14381 2 -69.67944704108848 -215.99194930782463 21.932 0.1144 14380 +14382 2 -70.47935862769361 -214.3065810921903 22.1602 0.1144 14381 +14383 2 -70.36228827808968 -213.45204540777388 22.567 0.1144 14382 +14384 2 -70.72260545031381 -212.3100298776938 23.029 0.1144 14383 +14385 2 -71.62927936175173 -212.45336519668234 23.4294 0.1144 14384 +14386 2 -71.5993941823393 -211.99408640343555 22.5893 0.1144 14385 +14387 2 -71.18906387665598 -210.4039011261624 22.6959 0.1144 14386 +14388 2 -70.77301801008544 -208.7421971095988 22.7592 0.1144 14387 +14389 2 -70.36432751835248 -207.7168067785364 22.8647 0.1144 14388 +14390 2 -69.97017013875686 -206.96844002577703 22.9524 0.1144 14389 +14391 2 -69.55089172197732 -206.05941944002996 23.0246 0.1144 14390 +14392 2 -68.55305706941748 -204.48986180142975 23.0847 0.1144 14391 +14393 2 -67.48756124647771 -205.0408406394879 23.1355 0.1144 14392 +14394 2 -66.38787033054619 -204.04626505488054 23.1771 0.1144 14393 +14395 2 -65.33436933494899 -204.36915316951558 23.2176 0.1144 14394 +14396 2 -64.2627272398171 -203.73262207491928 23.2936 0.1144 14395 +14397 2 -63.247001976572136 -203.66175450027714 23.4188 0.1144 14396 +14398 2 -62.434027660498145 -202.08480371860077 23.5243 0.1144 14397 +14399 2 -62.01557260267689 -201.3765261659167 23.6145 0.1144 14398 +14400 2 -61.59480585992104 -200.6407862788738 23.6933 0.1144 14399 +14401 2 -60.95358243928517 -199.0250212246156 23.7643 0.1144 14400 +14402 2 -60.37808171817916 -197.64523014313102 23.8308 0.1144 14401 +14403 2 -59.77830019575582 -197.23478295185652 23.9034 0.1144 14402 +14404 2 -59.79842605447471 -195.9990587346502 24.0753 0.1144 14403 +14405 2 -60.06993526505076 -194.55750057913028 24.2409 0.1144 14404 +14406 2 -61.03303547367058 -193.79513548823627 24.4023 0.1144 14405 +14407 2 -61.816855557868365 -193.38719059005214 24.5622 0.1144 14406 +14408 2 -62.218242852264716 -191.998827482879 24.8507 0.1144 14407 +14409 2 -63.03485970382502 -192.6069177634186 25.1317 0.1144 14408 +14410 2 -63.30685120980045 -194.1109214807953 25.4089 0.1144 14409 +14411 2 -63.65324360398384 -195.63858638918856 25.6173 0.1144 14410 +14412 2 -64.30247078565299 -195.98489395189608 25.8686 0.1144 14411 +14413 2 -72.3682589306908 -211.48784128847518 23.7699 0.1144 14385 +14414 2 -73.4416628837654 -211.6525422204914 24.079 0.1144 14413 +14415 2 -74.42726847231371 -210.43138537991632 24.379 0.1144 14414 +14416 2 -75.3707364026761 -210.33482615633335 24.7473 0.1144 14415 +14417 2 -76.41397413410452 -209.66125974803 25.1798 0.1144 14416 +14418 2 -77.41556274451395 -210.4075781943726 25.567 0.1144 14417 +14419 2 -78.42078080610601 -210.61014144097715 25.9148 0.1144 14418 +14420 2 -79.50166256316712 -210.9585407426702 26.2141 0.1144 14419 +14421 2 -80.59767319509086 -210.46252725116392 26.4877 0.1144 14420 +14422 2 -81.7274930258186 -211.20817239456431 26.6933 0.1144 14421 +14423 2 -82.86211416003924 -211.44396667364003 26.8272 0.1144 14422 +14424 2 -83.98697979872657 -211.71023939961287 26.9147 0.1144 14423 +14425 2 -85.11412327454613 -212.13893180465604 26.9648 0.1144 14424 +14426 2 -86.19786111078452 -211.46222736172598 26.9878 0.1144 14425 +14427 2 -87.28338493352601 -210.74937677611337 26.9932 0.1144 14426 +14428 2 -88.39467994203524 -210.21992194063733 26.9934 0.1144 14427 +14429 2 -89.49860615784624 -209.96051866764913 26.9934 0.1144 14428 +14430 2 -90.62260467334576 -209.86946756873567 26.9934 0.1144 14429 +14431 2 -91.74586756536142 -209.31679517246567 26.9934 0.1144 14430 +14432 2 -92.87868559659944 -209.46783994109012 26.9934 0.1144 14431 +14433 2 -93.94651274014291 -209.63151390470023 26.9934 0.1144 14432 +14434 2 -95.08056060005407 -209.8782769474774 26.9934 0.1144 14433 +14435 2 -96.18732334844375 -210.1072966512217 26.9934 0.1144 14434 +14436 2 -97.27054347566036 -210.5272776435449 26.9934 0.1144 14435 +14437 2 -98.40781422305346 -210.62833072913736 26.9934 0.1144 14436 +14438 2 -99.48937647998227 -210.06912883934748 26.9934 0.1144 14437 +14439 2 -100.6283684650061 -210.27498210345755 26.9934 0.1144 14438 +14440 2 -101.76835287415736 -209.84366300007736 26.9934 0.1144 14439 +14441 2 -102.90305493387197 -210.21144307488942 26.9934 0.1144 14440 +14442 2 -103.95614634839262 -210.67129280132048 26.9934 0.1144 14441 +14443 2 -105.08668087447617 -211.65464800311332 26.9934 0.1144 14442 +14444 2 -106.21146914070289 -211.34225204179538 26.9934 0.1144 14443 +14445 2 -107.35025070248797 -211.754172490698 26.9934 0.1144 14444 +14446 2 -108.31170754412415 -210.8313007706704 26.9934 0.1144 14445 +14447 2 -66.95543386267107 -224.88323932909307 15.8584 0.1144 14296 +14448 2 -67.75376287393098 -224.20448519930352 15.9651 0.1144 14447 +14449 2 -68.80518684942254 -223.50255753242368 16.0515 0.1144 14448 +14450 2 -69.56899216862297 -223.1710209242363 16.1723 0.1144 14449 +14451 2 -70.29143346025793 -221.44217128696204 16.3849 0.1144 14450 +14452 2 -71.23117373283486 -221.35720028807026 16.6468 0.1144 14451 +14453 2 -72.25387475596807 -220.2923437173431 16.8795 0.1144 14452 +14454 2 -73.26700326478425 -220.16759226457413 17.0862 0.1144 14453 +14455 2 -74.29514261821944 -219.25049532579973 17.3206 0.1144 14454 +14456 2 -75.3883070923082 -219.65550534632274 17.6056 0.1144 14455 +14457 2 -76.52149833763087 -218.98392077570338 17.8703 0.1144 14456 +14458 2 -77.64311830433442 -219.938444745522 18.1152 0.1144 14457 +14459 2 -78.77144705032512 -219.3180370593148 18.3066 0.1144 14458 +14460 2 -79.90434600705707 -219.77409894942835 18.4362 0.1144 14459 +14461 2 -80.98094165045751 -218.81842869937464 18.5098 0.1144 14460 +14462 2 -81.95121524907144 -218.67086950616022 18.5429 0.1144 14461 +14463 2 -82.79088885432806 -218.00858297949776 18.5564 0.1144 14462 +14464 2 -83.48285475881794 -217.3799908359892 18.5592 0.1144 14463 +14465 2 -84.09235275975348 -215.7258122840724 18.5456 0.1144 14464 +14466 2 -84.96335807065759 -215.25084818764083 18.5508 0.1144 14465 +14467 2 -85.61153338123653 -214.60662868242366 18.5738 0.1144 14466 +14468 2 -85.93654761927324 -213.03860365682453 18.6018 0.1144 14467 +14469 2 -86.39580348376657 -211.46938095263585 18.6376 0.1144 14468 +14470 2 -87.11676731062555 -210.33932659716888 18.6835 0.1144 14469 +14471 2 -87.96456892496731 -209.10970129356883 18.7412 0.1144 14470 +14472 2 -88.78802974062575 -208.62548243252488 18.8106 0.1144 14471 +14473 2 -89.6010440522839 -207.41182847363842 18.92 0.1144 14472 +14474 2 -90.60764300789555 -207.02302999233524 19.0939 0.1144 14473 +14475 2 -91.65855845794995 -206.35125725254414 19.2801 0.1144 14474 +14476 2 -92.65470509595363 -205.88136384042554 19.4661 0.1144 14475 +14477 2 -93.75183083976901 -205.52664700029626 19.7196 0.1144 14476 +14478 2 -94.82209722976106 -205.78265170848306 20.0852 0.1144 14477 +14479 2 -95.93726536832182 -205.30647061095402 20.4146 0.1144 14478 +14480 2 -97.03520454975316 -205.77374935779295 20.6772 0.1144 14479 +14481 2 -98.09984305781768 -206.08887804489558 20.9531 0.1144 14480 +14482 2 -99.21098977878518 -206.25950004300685 21.0909 0.1144 14481 +14483 2 -99.8534402318625 -206.95141026434817 21.4122 0.1144 14482 +14484 2 -100.92065729243294 -207.40258847336077 21.5932 0.1144 14483 +14485 2 -102.05818839350296 -207.29978049110986 21.7283 0.1144 14484 +14486 2 -103.18299004011955 -206.98171157860475 21.8217 0.1144 14485 +14487 2 -104.28782379732998 -207.0188602125688 21.8887 0.1144 14486 +14488 2 -105.4126080688518 -207.02605391624633 21.9183 0.1144 14487 +14489 2 -106.54161114850146 -207.20970878671164 21.9117 0.1144 14488 +14490 2 -107.6702040033027 -206.8489277072638 21.8922 0.1144 14489 +14491 2 -108.71958839207983 -207.629074051366 21.9157 0.1144 14490 +14492 2 -109.37947861068184 -208.50552610626602 21.9188 0.1144 14491 +14493 2 -109.93714665999448 -209.13016489810423 21.8478 0.1144 14492 +14494 2 -110.51197254925503 -210.6070866769789 21.67 0.1144 14493 +14495 2 -111.0850340804273 -211.98263413802354 21.4072 0.1144 14494 +14496 2 -111.65816617407964 -212.58584556638596 21.0864 0.1144 14495 +14497 2 -112.2328538992411 -213.6379492347565 20.7339 0.1144 14496 +14498 2 -112.8692286426064 -215.21904250881545 20.3828 0.1144 14497 +14499 2 -113.69363469167092 -214.66658564271236 20.095 0.1144 14498 +14500 2 -114.72896085296097 -214.72437725943774 19.901 0.1144 14499 +14501 2 -115.85145856448136 -214.3550111238494 19.7818 0.1144 14500 +14502 2 -116.93796868261248 -215.22904730765367 19.7206 0.1144 14501 +14503 2 -117.98047167390015 -215.3425907620085 19.7042 0.1144 14502 +14504 2 -118.7659432035618 -216.61270601147555 19.685 0.1144 14503 +14505 2 -119.15611938167561 -217.7450275911441 19.6654 0.1144 14504 +14506 2 -119.56316976337212 -218.79753946999145 19.6877 0.1144 14505 +14507 2 -120.56382955656832 -218.81220644435263 19.8105 0.1144 14506 +14508 2 -121.67489796521724 -218.51551662035132 20.0212 0.1144 14507 +14509 2 -122.78596992689948 -218.490648796784 20.2922 0.1144 14508 +14510 2 -123.89626244435357 -218.04043475928927 20.596 0.1144 14509 +14511 2 -125.00733085300247 -217.97810106673109 20.899 0.1144 14510 +14512 2 -126.12000887481845 -218.05747963135246 21.1688 0.1144 14511 +14513 2 -127.25400956305225 -218.30663815769788 21.3292 0.1144 14512 +14514 2 -128.36913733991614 -218.12164173419274 21.3762 0.1144 14513 +14515 2 -129.50746456002236 -217.77799224072612 21.3158 0.1144 14514 +14516 2 -130.5241179967088 -218.72412054029098 21.1144 0.1144 14515 +14517 2 -131.5935070835555 -218.6638479416065 20.8431 0.1144 14516 +14518 2 -132.38719209720244 -219.7814798586689 20.4167 0.1144 14517 +14519 2 -132.82196555337754 -221.34681684566027 19.9088 0.1144 14518 +14520 2 -133.38615910467493 -221.9214271109584 19.4292 0.1144 14519 +14521 2 -134.41902533095953 -221.7693609631006 19.033 0.1144 14520 +14522 2 -135.02043997038245 -222.17901899299275 18.6509 0.1144 14521 +14523 2 -136.08362134962675 -222.2650925457699 18.2387 0.1144 14522 +14524 2 -137.1352486797613 -222.54152181417516 17.8561 0.1144 14523 +14525 2 -138.16611481672925 -221.64545892002945 17.5539 0.1144 14524 +14526 2 -139.19768657849812 -221.44142682225188 17.3083 0.1144 14525 +14527 2 -140.22847859995267 -220.47643740458835 17.1097 0.1144 14526 +14528 2 -141.26012092420163 -220.34329265433252 16.9563 0.1144 14527 +14529 2 -142.29169268597047 -219.3386680718267 16.8357 0.1144 14528 +14530 2 -143.3233350102194 -219.2162789467149 16.729 0.1144 14529 +14531 2 -144.35413058470726 -218.20918378182913 16.6258 0.1144 14530 +14532 2 -145.38492260616178 -218.07445792132322 16.5267 0.1144 14531 +14533 2 -146.41649436793065 -218.02524303172936 16.432 0.1144 14532 +14534 2 -147.4167235628517 -216.96979294662418 16.3514 0.1144 14533 +14535 2 -148.4475055173785 -216.78739878052275 16.2871 0.1144 14534 +14536 2 -149.45011340668094 -215.81603682725512 16.2324 0.1144 14535 +14537 2 -150.34545044571345 -215.33209809677479 16.1792 0.1144 14536 +14538 2 -151.110048533017 -213.9729230899333 16.118 0.1144 14537 +14539 2 -151.81247130452104 -213.08515272806181 16.0392 0.1144 14538 +14540 2 -152.50282108194943 -212.21721763513528 15.9339 0.1144 14539 +14541 2 -153.0613926079302 -210.79454053367095 15.7974 0.1144 14540 +14542 2 -153.2634983367821 -209.51405917706649 15.5727 0.1144 14541 +14543 2 -153.1727720055839 -208.19642441554717 15.2513 0.1144 14542 +14544 2 -153.2373799648671 -206.9315362857921 14.8519 0.1144 14543 +14545 2 -153.86288754634325 -206.09644248224572 14.4036 0.1144 14544 +14546 2 -154.61619267597155 -205.2579443069737 13.994 0.1144 14545 +14547 2 -155.29764477092826 -203.88943319793853 13.624 0.1144 14546 +14548 2 -155.937610850842 -203.09697511670893 13.1722 0.1144 14547 +14549 2 -156.66590962259687 -202.19370822811197 12.7751 0.1144 14548 +14550 2 -157.32689630949605 -201.03146710824655 12.2818 0.1144 14549 +14551 2 -158.34944464618206 -200.8683770574532 11.7944 0.1144 14550 +14552 2 -159.4469837262077 -200.1849810474733 11.4023 0.1144 14551 +14553 2 -160.58774757958713 -200.31329846366268 11.0921 0.1144 14552 +14554 2 -161.70813731341696 -200.19689501281158 10.769 0.1144 14553 +14555 2 -162.46046047100225 -200.3639280721377 10.4901 0.1144 14554 +14556 2 -163.6019221428292 -200.19209223505283 10.2359 0.1144 14555 +14557 2 -164.74416000193713 -200.87732124142974 9.9709 0.1144 14556 +14558 2 -165.886397861045 -200.42297369489955 9.6727 0.1144 14557 +14559 2 -167.02785982895807 -200.54638496576965 9.3335 0.1144 14558 +14560 2 -168.17016825054606 -200.65088500987085 8.9241 0.1144 14559 +14561 2 -169.31155935989295 -200.2141060508987 8.4545 0.1144 14560 +14562 2 -170.3299809663162 -200.7714760094131 7.7971 0.1144 14561 +14563 2 -171.2447744975271 -200.38098458726455 6.9514 0.1144 14562 +14564 2 -172.09153975396737 -200.63315224552815 5.9756 0.1144 14563 +14565 2 -171.94707954838537 -201.62109693094254 3.999 0.1144 14564 +14566 2 -134.41950004606514 -222.39883233889105 19.1204 0.1144 14521 +14567 2 -134.3789939581028 -223.71217458693314 19.0694 0.1144 14566 +14568 2 -134.2375318965162 -225.02074764831247 19.0483 0.1144 14567 +14569 2 -134.04107066788492 -226.3193402125163 19.02 0.1144 14568 +14570 2 -134.1171633257827 -227.58757877848583 18.984 0.1144 14569 +14571 2 -134.6084507206284 -228.74287310289682 18.9318 0.1144 14570 +14572 2 -135.03671150050724 -230.1992213286582 18.8331 0.1144 14571 +14573 2 -134.92921793205213 -231.4457669363466 18.7152 0.1144 14572 +14574 2 -134.43852475315566 -232.36645781320493 18.6153 0.1144 14573 +14575 2 -133.77077865624443 -233.41540722286294 18.5292 0.1144 14574 +14576 2 -133.16934846492782 -235.11425025585487 18.4528 0.1144 14575 +14577 2 -132.836290104161 -236.7028235456214 18.3821 0.1144 14576 +14578 2 -132.65594732177314 -238.16790699083614 18.3114 0.1144 14577 +14579 2 -132.39716856202347 -239.48869453601213 18.1975 0.1144 14578 +14580 2 -131.88545102100787 -240.0919821181575 18.0349 0.1144 14579 +14581 2 -131.19997686468614 -240.90053879800973 17.8582 0.1144 14580 +14582 2 -130.49508440637902 -242.70068158436484 17.6694 0.1144 14581 +14583 2 -129.79110955639916 -243.2118811376514 17.4544 0.1144 14582 +14584 2 -129.17504569178206 -243.97941124699258 17.1973 0.1144 14583 +14585 2 -128.79351721898863 -245.60450437079777 16.8486 0.1144 14584 +14586 2 -128.81782608705635 -246.83405961567672 16.4245 0.1144 14585 +14587 2 -128.4504708927055 -247.74589434191245 15.7263 0.1144 14586 +14588 2 -127.6137349924069 -247.86870954767545 14.8762 0.1144 14587 +14589 2 -126.95375746095797 -248.10994888681148 13.8324 0.1144 14588 +14590 2 -126.21117286548281 -249.351152583214 11.2473 0.1144 14589 +14591 2 -99.851907460414 -205.6140872174467 21.3454 0.1144 14482 +14592 2 -100.88586798349199 -205.31706394824616 20.9154 0.1144 14591 +14593 2 -101.81191963311821 -204.2671080096456 20.7276 0.1144 14592 +14594 2 -102.73860604897905 -203.9152664581647 20.4987 0.1144 14593 +14595 2 -103.66543714283345 -202.81114719593594 20.2493 0.1144 14594 +14596 2 -104.59134737141336 -202.7997633842204 19.6826 0.1144 14595 +14597 2 -60.945436656394435 -232.71136300519728 12.1341 0.1144 14249 +14598 2 -61.99027052661425 -232.2568662068223 11.1348 0.1144 14597 +14599 2 -63.092332683174746 -232.84365254066515 10.7194 0.1144 14598 +14600 2 -63.99136312798971 -231.56272387097448 10.2706 0.1144 14599 +14601 2 -64.59602231648208 -230.53618104818128 9.8264 0.1144 14600 +14602 2 -65.15429192861596 -230.2447432607421 9.2759 0.1144 14601 +14603 2 -66.06201694083086 -229.0817564976321 8.6683 0.1144 14602 +14604 2 -65.7717995607074 -228.4431188528589 8.1511 0.1144 14603 +14605 2 -65.38087117828756 -227.70184228463995 7.6934 0.1144 14604 +14606 2 -65.23686967643614 -226.36325447567236 7.3372 0.1144 14605 +14607 2 -64.70015562886283 -224.6192713342365 7.0673 0.1144 14606 +14608 2 -64.85355801890363 -224.54588277126754 6.8039 0.1144 14607 +14609 2 -64.89757552780495 -223.5059738133109 6.5061 0.1144 14608 +14610 2 -64.45574691397968 -221.84074229271127 6.2252 0.1144 14609 +14611 2 -64.73413846190317 -221.1593096375874 5.9764 0.1144 14610 +14612 2 -65.15698309029796 -220.49366163685576 5.7875 0.1144 14611 +14613 2 -65.45528740401136 -219.49554110822137 5.6547 0.1144 14612 +14614 2 -66.03170798050729 -217.78232872954908 5.5728 0.1144 14613 +14615 2 -66.13669781225661 -216.4805323159904 5.526 0.1144 14614 +14616 2 -66.2554818757123 -215.12328951497372 5.4378 0.1144 14615 +14617 2 -66.28458654449716 -213.83746368077064 5.3666 0.1144 14616 +14618 2 -66.02316323391344 -212.8994294953126 5.3253 0.1144 14617 +14619 2 -66.8055060554355 -211.7747399294155 5.3104 0.1144 14618 +14620 2 -67.00683283824563 -210.7349147908077 5.3239 0.1144 14619 +14621 2 -67.52743799480521 -210.19826251998026 5.6235 0.1144 14620 +14622 2 -64.3115315101809 -224.0624687958815 7.3108 0.1144 14607 +14623 2 -63.25999572716939 -224.551005670689 7.2414 0.1144 14622 +14624 2 -62.192270141161856 -223.18342147870257 7.2098 0.1144 14623 +14625 2 -61.08854404209066 -223.69224640230618 7.1645 0.1144 14624 +14626 2 -59.95375354661479 -223.08197468232504 7.1359 0.1144 14625 +14627 2 -58.85976536588196 -223.16610937361577 7.0611 0.1144 14626 +14628 2 -57.91206808132155 -222.02419813484101 6.9288 0.1144 14627 +14629 2 -57.02780623600293 -221.35303024912392 6.6192 0.1144 14628 +14630 2 -57.78655096443297 -222.5662793223019 6.3331 0.1144 14629 +14631 2 -58.56707205718783 -223.6450878118703 6.0843 0.1144 14630 +14632 2 -58.998416860162834 -225.31361562346274 5.816 0.1144 14631 +14633 2 -59.05437226739933 -226.62717257377085 5.5087 0.1144 14632 +14634 2 -59.229206814288595 -227.91388533617186 5.0613 0.1144 14633 +14635 2 -42.31791395636083 -220.35368484806793 10.2238 0.1144 13746 +14636 2 -43.377528114105445 -221.7573379435587 10.5977 0.1144 14635 +14637 2 -44.421009707459085 -221.28159767160122 10.7703 0.1144 14636 +14638 2 -45.23714591727628 -222.9436352690438 10.9398 0.1144 14637 +14639 2 -45.533397592527166 -224.28193199943826 11.0705 0.1144 14638 +14640 2 -45.48886618625257 -225.5556296989215 11.1626 0.1144 14639 +14641 2 -45.446099138066344 -226.8304187365815 11.2198 0.1144 14640 +14642 2 -45.585285514363456 -228.03381085796508 11.2457 0.1144 14641 +14643 2 -45.855549268813746 -228.96332413710604 11.2542 0.1144 14642 +14644 2 -46.01178176660934 -230.04373648745934 11.2575 0.1144 14643 +14645 2 -45.897748578021954 -231.4293604657716 11.2615 0.1144 14644 +14646 2 -46.07329200665934 -232.48559532111537 11.2671 0.1144 14645 +14647 2 -46.28052559310952 -233.50013410304626 11.275 0.1144 14646 +14648 2 -46.20848438834175 -234.84543878015708 11.286 0.1144 14647 +14649 2 -46.11962592251022 -236.20337339546626 11.3012 0.1144 14648 +14650 2 -45.711299789918904 -237.83932944101664 11.3229 0.1144 14649 +14651 2 -45.60617790376429 -239.21612414639733 11.3539 0.1144 14650 +14652 2 -45.78745051324994 -240.26629113270073 11.3961 0.1144 14651 +14653 2 -46.141060414257865 -241.08094579918694 11.4517 0.1144 14652 +14654 2 -46.53197191976936 -242.22299964760145 11.5284 0.1144 14653 +14655 2 -46.60483863533824 -243.57770658724814 11.666 0.1144 14654 +14656 2 -46.41645854020086 -244.67171254686883 11.8418 0.1144 14655 +14657 2 -46.021058961426775 -246.0902495345295 12.0117 0.1144 14656 +14658 2 -45.79873831336686 -247.5400909200747 12.2151 0.1144 14657 +14659 2 -45.90399420366921 -248.64092792601673 12.5043 0.1144 14658 +14660 2 -45.955916984426466 -249.8469125555775 12.7771 0.1144 14659 +14661 2 -46.27567051495301 -250.76352069728557 13.0094 0.1144 14660 +14662 2 -46.76772728709916 -252.29259764680393 13.2124 0.1144 14661 +14663 2 -46.94261276079942 -253.73519468040507 13.4309 0.1144 14662 +14664 2 -46.691199941001436 -254.6516013420711 13.7011 0.1144 14663 +14665 2 -46.49973326610739 -255.60657241364623 14.0502 0.1144 14664 +14666 2 -46.64385625724989 -257.017181353678 14.3716 0.1144 14665 +14667 2 -46.55986029075037 -258.1748069947745 14.5354 0.1144 14666 +14668 2 -46.70790398782234 -259.6079626671518 14.6259 0.1144 14667 +14669 2 -47.0397232042576 -261.21549439267625 14.6632 0.1144 14668 +14670 2 -46.49967280187658 -261.7295228600045 14.6602 0.1144 14669 +14671 2 -45.79964915469556 -262.94129973537395 14.6213 0.1144 14670 +14672 2 -27.41792935803322 -185.84101746333278 12.9343 0.1144 13633 +14673 2 -26.64628575737961 -185.95552025736032 12.8697 0.1144 14672 +14674 2 -25.576006189098035 -185.9839299177196 12.8448 0.1144 14673 +14675 2 -24.588787730435406 -187.02796052769466 12.8141 0.1144 14674 +14676 2 -23.72653442763661 -187.6185386933126 12.7621 0.1144 14675 +14677 2 -22.902169623611986 -188.38352090850304 12.6723 0.1144 14676 +14678 2 -22.36229134124693 -189.85058378392205 12.5756 0.1144 14677 +14679 2 -22.235328341895134 -191.04097283758995 12.5035 0.1144 14678 +14680 2 -22.33166591768382 -192.32260332570655 12.4552 0.1144 14679 +14681 2 -22.432811512960207 -193.5567950556861 12.4296 0.1144 14680 +14682 2 -22.17576711261587 -194.69959845191775 12.4265 0.1144 14681 +14683 2 -21.60899642289767 -195.50031676124712 12.4424 0.1144 14682 +14684 2 -21.22177933305311 -196.47144481000396 12.4691 0.1144 14683 +14685 2 -21.42416148347187 -197.64731041957555 12.5018 0.1144 14684 +14686 2 -21.651606638197052 -199.11143931530768 12.5614 0.1144 14685 +14687 2 -21.414783670955217 -200.05230318277478 12.6597 0.1144 14686 +14688 2 -20.74151080798079 -201.18174911541342 12.7557 0.1144 14687 +14689 2 -19.85097201759425 -202.16183032504836 12.8286 0.1144 14688 +14690 2 -18.889420630503015 -202.6298892481521 12.8796 0.1144 14689 +14691 2 -19.073854489960024 -203.41957188284286 12.9106 0.1144 14690 +14692 2 -18.925517399192945 -204.4945279022651 12.9233 0.1144 14691 +14693 2 -17.95949997207165 -205.22351192782824 12.9233 0.1144 14692 +14694 2 -17.003568571484063 -204.48363890134806 12.9189 0.1144 14693 +14695 2 -16.150906648358106 -203.88787328747097 12.9128 0.1144 14694 +14696 2 -15.113994471719337 -203.16652625448546 12.9044 0.1144 14695 +14697 2 -13.9815489168083 -203.30375025627524 12.8923 0.1144 14696 +14698 2 -12.98782558820292 -203.77294653172538 12.8748 0.1144 14697 +14699 2 -12.198251639895236 -204.72599154294582 12.8509 0.1144 14698 +14700 2 -11.659034367314188 -205.23533132334967 12.8207 0.1144 14699 +14701 2 -11.196586314308622 -206.06226507067305 12.7849 0.1144 14700 +14702 2 -11.062375809449275 -207.42677391825612 12.6944 0.1144 14701 +14703 2 -11.569053133121189 -208.60149998786815 12.5898 0.1144 14702 +14704 2 -12.168834655544572 -210.32763129919937 12.5054 0.1144 14703 +14705 2 -12.812443580542364 -211.4086485154275 12.4434 0.1144 14704 +14706 2 -13.166913851272387 -212.52962549485312 12.4018 0.1144 14705 +14707 2 -13.234108328512047 -213.77589510181434 12.379 0.1144 14706 +14708 2 -13.893896989578113 -214.8886528920284 12.3726 0.1144 14707 +14709 2 -14.30016111706598 -216.1287602197918 12.3721 0.1144 14708 +14710 2 -14.307524424798306 -217.37210278997202 12.3721 0.1144 14709 +14711 2 -14.430514686305209 -218.56503294780802 12.3721 0.1144 14710 +14712 2 -13.85333783036681 -185.62297485365497 13.5651 0.1144 13618 +14713 2 -14.84364286878606 -185.0727293735449 13.1477 0.1144 14712 +14714 2 -15.563843832239005 -184.01619350076848 12.9962 0.1144 14713 +14715 2 -15.841231451062983 -182.92727971032838 12.8641 0.1144 14714 +14716 2 -16.834413200701395 -182.11562652902347 12.879 0.1144 14715 +14717 2 -17.96221299131335 -182.17927374212363 12.8564 0.1144 14716 +14718 2 -18.712038837016753 -181.2499077426251 12.8246 0.1144 14717 +14719 2 -19.354731700463276 -179.89782846102287 12.7818 0.1144 14718 +14720 2 -20.289603660100532 -179.75637151942232 12.7259 0.1144 14719 +14721 2 -21.42080230732984 -178.97468556393406 12.6467 0.1144 14720 +14722 2 -22.438630468117193 -179.15184726795388 12.4871 0.1144 14721 +14723 2 -23.50729390933732 -178.01281087318577 12.339 0.1144 14722 +14724 2 -24.572687789584513 -178.17509992109925 12.1685 0.1144 14723 +14725 2 -25.57526162898425 -177.02206201664097 11.9764 0.1144 14724 +14726 2 -26.370568311173514 -176.77821380063043 11.8138 0.1144 14725 +14727 2 -27.293340534999363 -175.37382664075457 11.6735 0.1144 14726 +14728 2 -28.223208076071938 -175.32853415996271 11.547 0.1144 14727 +14729 2 -28.523185755451884 -174.29759660804643 11.4149 0.1144 14728 +14730 2 -29.174587506546096 -172.59915655569 11.2448 0.1144 14729 +14731 2 -29.92530372065465 -171.96371148142003 10.9407 0.1144 14730 +14732 2 -30.727102151012026 -171.40417450792393 10.6509 0.1144 14731 +14733 2 -31.460961738732802 -169.76875011255157 10.3536 0.1144 14732 +14734 2 -32.013027398397924 -169.12139569165828 9.9853 0.1144 14733 +14735 2 -32.76630884113746 -168.5171882485412 9.6151 0.1144 14734 +14736 2 -33.41771690402577 -166.8555251853801 9.2803 0.1144 14735 +14737 2 -33.59397988825705 -165.54182174939587 8.928 0.1144 14736 +14738 2 -33.90993744558078 -164.71166641008864 8.5709 0.1144 14737 +14739 2 -34.663184838417564 -164.58948984352725 8.2114 0.1144 14738 +14740 2 -35.214369496318604 -163.23927196126596 7.8833 0.1144 14739 +14741 2 -35.52240136535641 -161.84296655343292 7.6691 0.1144 14740 +14742 2 -36.01638759001436 -160.79660278043997 7.4678 0.1144 14741 +14743 2 -36.39953850166343 -159.9256169004534 7.2623 0.1144 14742 +14744 2 -36.23267977559849 -158.64721286551844 7.0243 0.1144 14743 +14745 2 -36.340675557696585 -157.63568382109736 6.7854 0.1144 14744 +14746 2 -36.686598980355484 -156.79313976001117 6.6951 0.1144 14745 +14747 2 -36.69130135853185 -155.59156353971326 6.6828 0.1144 14746 +14748 2 -36.63631093340035 -154.29460549405468 6.6123 0.1144 14747 +14749 2 -36.71551220428718 -153.15347848740873 6.462 0.1144 14748 +14750 2 -37.131068965477695 -151.74103991077737 6.2971 0.1144 14749 +14751 2 -37.241707550767714 -150.45397050313846 6.1354 0.1144 14750 +14752 2 -37.55705778387925 -149.03801524347315 5.9678 0.1144 14751 +14753 2 -38.488473648293976 -148.82305789736176 5.7511 0.1144 14752 +14754 2 -39.15201520081033 -147.81924497675308 5.4939 0.1144 14753 +14755 2 -39.694417851923085 -146.288349694784 5.2822 0.1144 14754 +14756 2 -40.230466622880684 -144.64318580660375 5.0944 0.1144 14755 +14757 2 -40.713868179439196 -142.99651575997777 4.9017 0.1144 14756 +14758 2 -40.578777980020554 -141.90866729383646 4.7705 0.1144 14757 +14759 2 -40.537416180473784 -140.73620505362803 4.7569 0.1144 14758 +14760 2 -41.09604820200693 -139.49999395574636 4.7696 0.1144 14759 +14761 2 -41.267479681962016 -138.43970344978374 4.767 0.1144 14760 +14762 2 -41.737975114644904 -137.80741466425107 4.7448 0.1144 14761 +14763 2 -42.38553027532304 -136.4779907520748 4.6879 0.1144 14762 +14764 2 -43.01596440471683 -134.94044224683438 4.5283 0.1144 14763 +14765 2 -43.16791333200051 -133.8681596296023 4.2947 0.1144 14764 +14766 2 -43.24954392799365 -132.70835788152934 4.0902 0.1144 14765 +14767 2 -42.970358804182816 -131.21019059208268 3.9214 0.1144 14766 +14768 2 -42.52354364507401 -130.5551813633894 3.7707 0.1144 14767 +14769 2 -42.217624411864534 -129.725303256317 3.5989 0.1144 14768 +14770 2 -42.4939891096917 -128.3065952991093 3.4547 0.1144 14769 +14771 2 -43.32963029056936 -127.24338617432404 3.3393 0.1144 14770 +14772 2 -44.00861595567019 -126.97236958774491 3.2376 0.1144 14771 +14773 2 -44.716683725581284 -125.28641533225098 3.142 0.1144 14772 +14774 2 -45.32751657177338 -124.26957100478364 2.9552 0.1144 14773 +14775 2 -45.850286686013455 -124.35734520460272 2.7856 0.1144 14774 +14776 2 -46.75416956323261 -123.28709077823261 2.7013 0.1144 14775 +14777 2 -47.70281808339544 -122.81528352909068 2.6267 0.1144 14776 +14778 2 -48.53271646346377 -122.04600410557778 2.5004 0.1144 14777 +14779 2 -49.53608011010553 -121.16022971432088 2.3929 0.1144 14778 +14780 2 -50.29659543839145 -120.86133245937064 2.3718 0.1144 14779 +14781 2 -50.888334883047165 -119.18319861439178 2.2828 0.1144 14780 +14782 2 -51.66176364337568 -118.35316333979667 2.1934 0.1144 14781 +14783 2 -52.223661968934465 -117.87268516042128 2.1182 0.1144 14782 +14784 2 -52.276153315497936 -116.69672549679359 1.9974 0.1144 14783 +14785 2 -52.09975958406622 -115.48929542571325 1.877 0.1144 14784 +14786 2 -52.19032191243372 -114.50608737726185 1.687 0.1144 14785 +14787 2 -14.848733956425836 -183.29665151162231 12.7536 0.1144 14715 +14788 2 -14.06611627792272 -183.60541452975383 12.5058 0.1144 14787 +14789 2 -14.063621781316478 -182.35751504857853 12.3369 0.1144 14788 +14790 2 -13.75394859025742 -181.2980036453182 12.25 0.1144 14789 +14791 2 -13.170648989876089 -181.63243890892176 12.274 0.1144 14790 +14792 2 -13.504459352848613 -180.48036823092752 12.346 0.1144 14791 +14793 2 -14.127797962895388 -179.7429628361601 12.446 0.1144 14792 +14794 2 -14.892403156265598 -178.63970405663954 12.5707 0.1144 14793 +14795 2 -15.53013947311152 -177.4820929504846 12.6881 0.1144 14794 +14796 2 -15.359279115623172 -176.18894294226354 12.8473 0.1144 14795 +14797 2 -15.40748754895828 -175.07925842021905 13.1613 0.1144 14796 +14798 2 -15.3176488274044 -173.869075985867 13.3892 0.1144 14797 +14799 2 -15.17039464148834 -172.7124369426588 13.5218 0.1144 14798 +14800 2 -15.044144885936259 -171.54584458855962 13.5757 0.1144 14799 +14801 2 -15.036002133975739 -170.3017358218301 13.5883 0.1144 14800 +14802 2 -14.69448891393233 -169.31626626087953 13.5637 0.1144 14801 +14803 2 -14.258241249928489 -168.31770658088382 13.5939 0.1144 14802 +14804 2 -14.631722911257661 -168.78718082057196 14.1848 0.1144 14803 +14805 2 -15.314274749268629 -169.27298376065107 14.6877 0.1144 14804 +14806 2 -15.901106030985854 -170.6333373195196 14.8634 0.1144 14805 +14807 2 -16.53501739934213 -171.84075329665419 14.9978 0.1144 14806 +14808 2 -16.998741108022553 -172.69958086449526 15.0936 0.1144 14807 +14809 2 -17.55561935009322 -173.70428628553805 15.1541 0.1144 14808 +14810 2 -18.105273571444844 -175.13918733796186 15.1829 0.1144 14809 +14811 2 -18.61592558270412 -176.21372836136888 15.1838 0.1144 14810 +14812 2 -18.985741665429977 -177.17806040629685 15.1838 0.1144 14811 +14813 2 -19.222047491863044 -178.27910838222192 15.1838 0.1144 14812 +14814 2 -19.767598726355697 -179.61272966391942 15.1838 0.1144 14813 +14815 2 -14.863765004948224 -167.41120584182687 13.6051 0.1144 14803 +14816 2 -14.660159873307702 -166.59675510561894 13.5171 0.1144 14815 +14817 2 -13.723691591822778 -165.75558342535894 13.3542 0.1144 14816 +14818 2 -12.897702582256368 -165.05058148192026 13.221 0.1144 14817 +14819 2 -12.687273052160286 -164.0058883355934 13.1172 0.1144 14818 +14820 2 -12.646744880599964 -162.78928033857602 13.0435 0.1144 14819 +14821 2 -13.116470437795977 -161.37625968360146 13.0132 0.1144 14820 +14822 2 -13.677454708060822 -160.2788399954471 13.0222 0.1144 14821 +14823 2 -13.872403923826974 -159.1931695514916 13.0523 0.1144 14822 +14824 2 -13.125013941083557 -158.16995078291632 13.0906 0.1144 14823 +14825 2 -12.43680448107725 -157.69005268454958 13.202 0.1144 14824 +14826 2 -11.922892975772797 -156.07226617824938 13.2938 0.1144 14825 +14827 2 -11.22262414165189 -154.70424961649042 13.3599 0.1144 14826 +14828 2 -10.167862416311547 -154.94328863272523 13.4007 0.1144 14827 +14829 2 -9.025678740961819 -154.42020731236025 13.4166 0.1144 14828 +14830 2 -8.035040723613381 -153.83620881175176 13.3719 0.1144 14829 +14831 2 -7.626232295622643 -152.26774965874665 13.3232 0.1144 14830 +14832 2 -7.848563010610315 -151.33639914010746 13.258 0.1144 14831 +14833 2 -8.650050160479806 -150.76973982349415 13.162 0.1144 14832 +14834 2 -9.785857265158313 -150.40064820090794 13.0045 0.1144 14833 +14835 2 -10.922520984425377 -150.42148563808593 12.812 0.1144 14834 +14836 2 -12.065652967072008 -150.58169987584188 12.6245 0.1144 14835 +14837 2 -13.018792393582892 -150.77481757914254 12.3411 0.1144 14836 +14838 2 -13.894637141658066 -151.3747948834099 11.9684 0.1144 14837 +14839 2 -15.004163980430429 -151.51385277579226 11.6788 0.1144 14838 +14840 2 -16.12252756445064 -151.50022077696232 11.4699 0.1144 14839 +14841 2 -17.241595978999165 -150.9319609604524 11.3274 0.1144 14840 +14842 2 -18.38376227925415 -151.54612219844836 11.2388 0.1144 14841 +14843 2 -19.525038211104032 -150.8320340429882 11.1961 0.1144 14842 +14844 2 -20.6530514798016 -151.37880889858866 11.1739 0.1144 14843 +14845 2 -21.783351952272458 -150.79847674400816 11.1456 0.1144 14844 +14846 2 -22.92042965152153 -151.14652543629643 11.1101 0.1144 14845 +14847 2 -24.05347472429145 -151.320803446215 11.0517 0.1144 14846 +14848 2 -25.176707561109243 -151.28953596562116 10.951 0.1144 14847 +14849 2 -26.30565320005348 -151.84338173591146 10.8418 0.1144 14848 +14850 2 -27.44604457710595 -151.3380885828746 10.7522 0.1144 14849 +14851 2 -28.58750980196624 -152.1128729030744 10.6793 0.1144 14850 +14852 2 -29.713964384307754 -151.03906439017126 10.6187 0.1144 14851 +14853 2 -30.843567038331088 -151.58689688668292 10.5657 0.1144 14852 +14854 2 -31.985865891177788 -151.0512136549992 10.5131 0.1144 14853 +14855 2 -33.129028168593464 -151.22555229767144 10.4503 0.1144 14854 +14856 2 -34.26951103625407 -151.33274409942507 10.3541 0.1144 14855 +14857 2 -35.402790219151555 -151.28790112744278 10.196 0.1144 14856 +14858 2 -36.541080630594266 -151.55568253623474 10.0087 0.1144 14857 +14859 2 -37.60010839225472 -151.41127061330894 9.8167 0.1144 14858 +14860 2 -38.67120815161796 -152.3945794597554 9.6166 0.1144 14859 +14861 2 -39.74575434347657 -151.9817043842663 9.3183 0.1144 14860 +14862 2 -40.19365746854068 -152.49569963516873 8.8885 0.1144 14861 +14863 2 -41.037408089233864 -152.91759533661588 8.5118 0.1144 14862 +14864 2 -41.88924665340146 -154.5226612139076 8.1294 0.1144 14863 +14865 2 -42.66328606491591 -154.57675480702554 7.7626 0.1144 14864 +14866 2 -43.66688394822668 -155.91899383287543 7.4323 0.1144 14865 +14867 2 -44.6137109982375 -155.88542679583696 7.0577 0.1144 14866 +14868 2 -45.72092013636723 -156.70555172036694 6.6496 0.1144 14867 +14869 2 -46.83890088104664 -155.7941607820295 6.2136 0.1144 14868 +14870 2 -47.925516311847275 -157.03597325507235 5.7517 0.1144 14869 +14871 2 -49.001817293052895 -156.396854542913 5.2654 0.1144 14870 +14872 2 -49.75808833997499 -157.58991790231403 4.8506 0.1144 14871 +14873 2 -49.14440903986187 -157.64154729714278 4.4851 0.1144 14872 +14874 2 -49.04881733754109 -157.22985536724204 3.9971 0.1144 14873 +14875 2 -50.10987781942041 -158.03536880464998 3.4841 0.1144 14874 +14876 2 -50.55742510549464 -158.33505462654594 2.9775 0.1144 14875 +14877 2 -50.281212892014416 -159.68115974328595 2.5418 0.1144 14876 +14878 2 -49.77444558580529 -160.97213674742372 1.687 0.1144 14877 +14879 3 5.009111356239718 -184.09895195448388 19.8075 0.3295 1 +14880 3 5.993213565104522 -183.96737412278316 19.531 0.3267 14879 +14881 3 6.267983279610146 -182.83943714654345 19.2763 0.3254 14880 +14882 3 6.091760360989635 -181.70282264103213 19.0326 0.324 14881 +14883 3 6.797864243329575 -180.80178310626295 18.6551 0.3226 14882 +14884 3 7.811270922588868 -181.61295353109796 18.1835 0.3212 14883 +14885 3 8.841958514716946 -181.81147682271745 17.7026 0.3199 14884 +14886 3 9.860953136834548 -180.7349579496974 17.2875 0.3185 14885 +14887 3 10.941797826616947 -180.81001983074168 16.9208 0.3171 14886 +14888 3 12.071583405341691 -180.30818113649613 16.6046 0.3157 14887 +14889 3 13.212028966152378 -180.440914116471 16.3419 0.3144 14888 +14890 3 14.304302573649657 -180.49249685256092 16.0156 0.313 14889 +14891 3 15.434051343710923 -180.28407608354905 15.7293 0.3116 14890 +14892 3 16.51813509759684 -180.08080239266883 15.4698 0.3103 14891 +14893 3 17.500671311938603 -179.26646707281998 15.1477 0.3089 14892 +14894 3 18.058220926807103 -178.115179733917 14.4843 0.3089 14893 +14895 3 18.713953476605433 -177.48413907734485 14.1417 0.2831 14894 +14896 3 18.594915723867935 -176.53046005627124 13.6846 0.2703 14895 +14897 3 17.565902197693177 -176.6319646348988 13.3131 0.2574 14896 +14898 3 17.755556712561326 -175.84482897011353 13.0328 0.2574 14897 +14899 3 17.99908004581893 -174.6636777789234 12.8232 0.2567 14898 +14900 3 18.206320442249652 -173.63387329338534 12.6476 0.2564 14899 +14901 3 18.318091767608944 -172.51590128631523 12.4183 0.2561 14900 +14902 3 18.36423493889339 -171.3215495790035 12.2349 0.2558 14901 +14903 3 18.40151042638907 -170.10837033307826 12.1051 0.2554 14902 +14904 3 18.410378937006012 -168.8886526898611 12.0724 0.2551 14903 +14905 3 18.526968442766496 -167.74721387604563 12.023 0.2548 14904 +14906 3 18.600668288135388 -166.5644883888026 12.006 0.2544 14905 +14907 3 18.401764316537058 -165.23983738477838 12.0729 0.2541 14906 +14908 3 18.358879534193328 -163.9922864287154 12.1854 0.2538 14907 +14909 3 18.500545960307427 -162.86260798981436 12.2747 0.2535 14908 +14910 3 18.957061933004923 -162.02782833869728 12.3229 0.2531 14909 +14911 3 19.38759353793519 -160.5024722436778 12.3383 0.2528 14910 +14912 3 19.79385085544247 -159.08320595033751 12.3144 0.2525 14911 +14913 3 20.29002749135588 -158.20496506726073 12.1921 0.2521 14912 +14914 3 21.217130626915647 -158.047314949786 12.0033 0.2518 14913 +14915 3 21.306183094260835 -156.74065144897088 11.8364 0.2515 14914 +14916 3 21.1913031559124 -155.64993081098643 11.69 0.2512 14915 +14917 3 21.33540571711331 -154.3043063108285 11.5562 0.2508 14916 +14918 3 21.908514123876813 -152.83227099406707 11.4084 0.2505 14917 +14919 3 22.61850094458078 -152.37888609347868 11.2412 0.2502 14918 +14920 3 23.198057480868414 -151.46027493715593 11.0523 0.2498 14919 +14921 3 23.576029108687656 -149.96029652135167 10.862 0.2495 14920 +14922 3 23.91922270647852 -148.55766056756977 10.7151 0.2492 14921 +14923 3 24.591968418231247 -148.0129007525506 10.5314 0.2489 14922 +14924 3 25.356276223201526 -147.19672874989772 10.3466 0.2485 14923 +14925 3 25.96584679287452 -145.5630944025609 10.1092 0.2482 14924 +14926 3 26.215953364908408 -144.35443388478367 9.821 0.2479 14925 +14927 3 26.313907067758624 -143.21567806857516 9.5739 0.2475 14926 +14928 3 26.41992147416105 -142.08484850438012 9.3539 0.2472 14927 +14929 3 26.527579543633323 -140.96776462037198 9.1364 0.2469 14928 +14930 3 26.711288584291843 -139.9426617196928 8.8905 0.2466 14929 +14931 3 26.69270779196793 -138.70589707851116 8.665 0.2462 14930 +14932 3 26.658939983789253 -137.50322846157283 8.401 0.2459 14931 +14933 3 27.064526722771177 -136.88147348640098 8.0367 0.2456 14932 +14934 3 27.40308541746323 -135.73857308723433 7.6998 0.2452 14933 +14935 3 26.873589388412533 -134.61580593856257 7.3459 0.2449 14934 +14936 3 26.571655919602698 -133.33841481119464 6.939 0.2446 14935 +14937 3 27.070235434972773 -132.80676343022475 6.5498 0.2443 14936 +14938 3 27.717886851277225 -131.40182562965379 6.2802 0.2439 14937 +14939 3 28.331482241076067 -130.01458409970763 6.0749 0.2436 14938 +14940 3 28.884331907887187 -129.4831117417806 5.906 0.2433 14939 +14941 3 29.45168744691363 -128.5490833191896 5.7847 0.2429 14940 +14942 3 29.859611818293402 -127.04530134936417 5.6672 0.2426 14941 +14943 3 30.066011978857468 -125.6436554298612 5.5429 0.2423 14942 +14944 3 30.212493530525872 -124.28981442144668 5.4506 0.2419 14943 +14945 3 30.0168964267504 -123.34375506007643 5.374 0.2416 14944 +14946 3 29.54796669250444 -122.72128805900466 5.2721 0.2413 14945 +14947 3 29.477656792295132 -121.63683208464062 5.1045 0.241 14946 +14948 3 29.650892089031203 -120.2785041946524 4.8801 0.2406 14947 +14949 3 29.69548969573423 -119.04186094510638 4.6059 0.2403 14948 +14950 3 29.85814062045709 -117.6996272125714 4.3097 0.24 14949 +14951 3 30.135770112758753 -116.30976189750554 4.0344 0.2396 14950 +14952 3 30.323480784840733 -115.16752813347678 3.812 0.2393 14951 +14953 3 30.668270375837572 -114.47644045432843 3.63 0.239 14952 +14954 3 31.07299930175789 -113.85771684952385 3.4334 0.2387 14953 +14955 3 31.41205290192597 -112.96088535606296 3.2357 0.2383 14954 +14956 3 31.858044998162566 -111.59566268197035 3.0342 0.238 14955 +14957 3 32.49999743440203 -110.45084717666877 2.8316 0.2377 14956 +14958 3 32.97191044199248 -109.9156589443426 2.6693 0.2373 14957 +14959 3 33.101433015464664 -108.97612603069645 2.5908 0.237 14958 +14960 3 33.17018312421345 -107.96695798607745 2.5786 0.2367 14959 +14961 3 33.298083056729766 -107.02399527241603 2.6455 0.2364 14960 +14962 3 33.53843788836389 -105.91024411072091 2.7307 0.236 14961 +14963 3 33.53763933920865 -104.86253829984074 2.7642 0.2357 14962 +14964 3 33.47380736510611 -103.85382147087337 2.7523 0.2354 14963 +14965 3 33.656726598522624 -102.66098966240199 2.711 0.235 14964 +14966 3 33.7570963026041 -101.52171326332319 2.6722 0.2347 14965 +14967 3 33.67056610252939 -100.5315199865111 2.6253 0.2344 14966 +14968 3 33.621293686213875 -99.5075187805171 2.5713 0.2341 14967 +14969 3 33.720040453253375 -98.37649728485101 2.4782 0.2337 14968 +14970 3 34.00248832805656 -97.1345046415555 2.3506 0.2334 14969 +14971 3 34.30997276151651 -95.88153146430994 2.2029 0.2331 14970 +14972 3 34.365013615272616 -94.78966914365607 2.0591 0.2327 14971 +14973 3 34.221081866882955 -93.84944751014406 1.9188 0.2324 14972 +14974 3 34.217148367820585 -92.8005762271785 1.7727 0.2321 14973 +14975 3 34.40889797817589 -91.62195606935758 1.6734 0.2318 14974 +14976 3 34.79817647971764 -90.84589097590091 1.6202 0.2314 14975 +14977 3 35.508243929829476 -90.4876571516234 1.5878 0.2311 14976 +14978 3 35.4509278889703 -89.46460744155877 1.559 0.2308 14977 +14979 3 35.219621620863876 -88.25383507333373 1.5309 0.2304 14978 +14980 3 35.10799081354674 -87.11593189230986 1.5001 0.2301 14979 +14981 3 35.18901958810344 -86.142499334096 1.3847 0.2298 14980 +14982 3 34.9908681168973 -84.95989858742357 1.2848 0.2295 14981 +14983 3 35.30818827109782 -84.15401770204225 1.1248 0.2291 14982 +14984 3 18.30164220434233 -176.97728976883428 11.9087 0.2368 14897 +14985 3 19.39505766546702 -177.1831734085847 11.3896 0.236 14984 +14986 3 20.516602872885315 -177.59040707790714 11.173 0.2357 14985 +14987 3 21.63739202687818 -177.42047440182625 10.926 0.2353 14986 +14988 3 22.76038775523639 -178.05719838332396 10.6358 0.2349 14987 +14989 3 23.876525072707206 -177.28649584970276 10.3566 0.2345 14988 +14990 3 24.659692723787643 -177.1533444390783 10.0451 0.2341 14989 +14991 3 25.185022525177835 -175.98222606315272 9.69 0.2338 14990 +14992 3 26.127203810889537 -174.70070649147962 9.29 0.2334 14991 +14993 3 26.944525290877902 -174.6500932370857 8.763 0.233 14992 +14994 3 27.575286030891878 -173.43529178018264 8.1337 0.2326 14993 +14995 3 27.629700126867014 -172.29305229574913 7.4222 0.2322 14994 +14996 3 28.289681337890713 -171.1378369071714 6.6997 0.2319 14995 +14997 3 27.711224102985856 -170.86623866108943 6.072 0.2315 14996 +14998 3 27.244875736521518 -170.5582243288709 5.4974 0.2311 14997 +14999 3 27.750868659606745 -169.18520178237176 4.972 0.2307 14998 +15000 3 28.79957516169163 -169.17127472371413 4.4826 0.2303 14999 +15001 3 29.60161158385167 -168.83422440477415 3.8228 0.2299 15000 +15002 3 30.47145218106774 -167.98513313357333 3.2013 0.2296 15001 +15003 3 31.114919685019245 -167.4002363822945 2.2495 0.2292 15002 +15004 3 18.359977341038128 -180.00350376831568 15.1116 0.2574 14893 +15005 3 19.128580410698135 -180.87354546282285 15.0495 0.2566 15004 +15006 3 19.366124883276328 -181.8394965773566 15.1396 0.2562 15005 +15007 3 19.76922305228951 -182.62194723249308 15.4614 0.2557 15006 +15008 3 20.397268918560606 -184.01173255747432 15.7916 0.2553 15007 +15009 3 20.765138268899847 -185.32856012117242 16.1444 0.2549 15008 +15010 3 21.541033459084225 -185.76222606239583 16.4298 0.2545 15009 +15011 3 22.198994263879484 -186.94104563197374 16.5604 0.2541 15010 +15012 3 22.926476782742647 -188.20236196291626 16.6377 0.2537 15011 +15013 3 23.75642608962206 -188.43092501256348 16.6907 0.2533 15012 +15014 3 24.690400372687222 -189.71495549173406 16.8267 0.2528 15013 +15015 3 25.398541962025643 -190.21240274859355 16.9694 0.2524 15014 +15016 3 25.91093413278632 -190.72252202588552 17.1295 0.252 15015 +15017 3 25.669769360054634 -192.12399857264347 17.3504 0.2516 15016 +15018 3 25.78134568752743 -193.19859927135207 17.6191 0.2512 15017 +15019 3 25.94378799440267 -194.29720344173228 17.9209 0.2508 15018 +15020 3 26.0197806980554 -195.55430488623546 18.132 0.2504 15019 +15021 3 25.9347704259308 -196.75672561697286 18.2679 0.2499 15020 +15022 3 25.867579205638357 -197.96723193174304 18.33 0.2495 15021 +15023 3 25.759040632588444 -199.2655015701227 18.3214 0.2491 15022 +15024 3 25.484734184731156 -200.71269455512834 18.2557 0.2487 15023 +15025 3 25.761241003891342 -201.59247742116685 18.1514 0.2483 15024 +15026 3 26.24864093492608 -202.72121296624715 17.9756 0.2479 15025 +15027 3 26.817658264620395 -204.1795367701145 17.6731 0.2474 15026 +15028 3 27.563614035119254 -204.80029049832856 17.3559 0.247 15027 +15029 3 28.46944119679612 -205.42984134885353 17.0998 0.2466 15028 +15030 3 29.48248878011827 -206.1821444625869 16.8972 0.2462 15029 +15031 3 30.27039517636706 -206.8084125268588 16.7379 0.2458 15030 +15032 3 30.74497671900063 -208.16641623348613 16.6118 0.2454 15031 +15033 3 30.905850272592062 -209.42091530632976 16.5022 0.245 15032 +15034 3 31.04486583607796 -210.5913950706083 16.3288 0.2446 15033 +15035 3 31.539681933588664 -211.5776870383058 16.1264 0.2441 15034 +15036 3 31.833821566417516 -212.45267905697006 15.8085 0.2437 15035 +15037 3 32.18866330359003 -213.66498565156948 15.4927 0.2433 15036 +15038 3 32.714188198086696 -214.9229367961771 15.2303 0.2429 15037 +15039 3 33.082871042556874 -216.10303805632685 15.0171 0.2425 15038 +15040 3 33.17099368280424 -217.30139400532903 14.793 0.2421 15039 +15041 3 32.98886020541006 -218.5014601328441 14.5192 0.2416 15040 +15042 3 32.89415592967723 -219.73205587523864 14.3145 0.2412 15041 +15043 3 33.094713335186974 -220.92336892160097 14.1576 0.2408 15042 +15044 3 33.60318825906572 -221.96501936880284 14.0343 0.2404 15043 +15045 3 33.266480097648866 -223.1763086469262 13.9362 0.24 15044 +15046 3 32.6706596428518 -224.19577212888714 13.8554 0.2396 15045 +15047 3 33.12970883923998 -225.2245155578822 13.7769 0.2392 15046 +15048 3 34.02886127153246 -225.77244889421488 13.6785 0.2388 15047 +15049 3 34.360201449515465 -226.88916577069148 13.5052 0.2383 15048 +15050 3 34.478151090712224 -228.0297797767811 13.2296 0.2379 15049 +15051 3 35.009168997455454 -229.11317404205715 12.945 0.2375 15050 +15052 3 35.6243689393171 -230.13258833041596 12.7347 0.2371 15051 +15053 3 36.04066132399143 -231.24583666320115 12.7081 0.2367 15052 +15054 3 36.56440774225224 -232.31423290828002 12.8328 0.2363 15053 +15055 3 36.631376724736036 -233.44865157477375 13.0749 0.2358 15054 +15056 3 36.38126058396087 -234.64569967418896 13.3428 0.2354 15055 +15057 3 36.069750536102546 -235.84134092866455 13.5795 0.235 15056 +15058 3 36.47132406866238 -236.8629915545974 13.8542 0.2346 15057 +15059 3 37.25048151165271 -237.702381380958 14.1207 0.2342 15058 +15060 3 38.04246820424452 -238.6933127362513 14.3147 0.2338 15059 +15061 3 38.79416372070579 -239.45554187651385 14.4429 0.2334 15060 +15062 3 39.539363935965625 -240.45239819830948 14.5227 0.2329 15061 +15063 3 40.28456444731153 -241.55144741858697 14.562 0.2325 15062 +15064 3 41.0282090310622 -242.24871850217176 14.5651 0.2321 15063 +15065 3 41.28851647848499 -243.45929047594097 14.5384 0.2317 15064 +15066 3 41.4349282766916 -244.71059721792312 14.5034 0.2313 15065 +15067 3 41.575614150997204 -246.00897763688545 14.4657 0.2309 15066 +15068 3 41.71467383131357 -247.41027882199887 14.4293 0.2305 15067 +15069 3 41.85535970561913 -248.70337988739738 14.3972 0.23 15068 +15070 3 42.46898388211607 -249.64444455242784 14.3779 0.2296 15069 +15071 3 43.28757538846202 -250.2111442639083 14.6213 0.2292 15070 +15072 3 4.097847814003364 -181.38075120818428 21.5079 0.5148 1 +15073 3 6.068402689819269 -180.1224674822067 21.5609 0.5123 15072 +15074 3 7.164617376672744 -179.4554172518171 21.585 0.511 15073 +15075 3 8.094373621923364 -179.2183493609153 21.6094 0.5097 15074 +15076 3 8.712790947257055 -178.5289306403361 21.6371 0.5085 15075 +15077 3 9.283473285861495 -177.34041464561358 21.6714 0.5072 15076 +15078 3 10.021846855602993 -176.14929255993295 21.7141 0.5059 15077 +15079 3 10.914989449970115 -175.8160050797395 21.7676 0.5047 15078 +15080 3 11.791216980871225 -174.57279377288012 21.8783 0.5034 15079 +15081 3 12.601721314055949 -174.0696534839072 22.0023 0.5021 15080 +15082 3 13.20309577483842 -172.9888861056168 22.1575 0.5009 15081 +15083 3 13.899325670685958 -171.66151785872253 22.2782 0.4996 15082 +15084 3 14.754400042009854 -171.3501401362158 22.3397 0.4983 15083 +15085 3 15.477400855919505 -170.0813363148121 22.3427 0.4971 15084 +15086 3 16.361608460965044 -169.3979296184781 22.2887 0.4958 15085 +15087 3 17.47755273029179 -169.06970351938332 22.1547 0.4946 15086 +15088 3 18.549781221507814 -169.09814987594802 21.8793 0.4933 15087 +15089 3 19.608689867481324 -169.23066417034474 21.6047 0.492 15088 +15090 3 20.730353509343807 -169.90491754808764 21.3748 0.4908 15089 +15091 3 21.86348000579403 -169.20026482505523 21.1557 0.4895 15090 +15092 3 22.925516476564084 -169.45880023893776 20.9849 0.4882 15091 +15093 3 23.801656271990637 -167.99341282382719 20.8329 0.487 15092 +15094 3 24.56837356429783 -167.5555610979157 20.7091 0.4857 15093 +15095 3 25.551668590825795 -166.6005511371793 20.6172 0.4844 15094 +15096 3 26.68872260318611 -166.44720334928837 20.5585 0.4832 15095 +15097 3 27.817657677016108 -166.03082305957207 20.5293 0.4819 15096 +15098 3 28.934306776871253 -166.21173565447594 20.5246 0.4806 15097 +15099 3 30.00198193425423 -165.18964765678535 20.5741 0.4794 15098 +15100 3 31.037327914269667 -165.34758341308094 20.6211 0.4781 15099 +15101 3 31.797570335317005 -164.0305216940991 20.6113 0.4768 15100 +15102 3 32.728150141626315 -163.4969295300368 20.6292 0.4756 15101 +15103 3 33.54684071887418 -162.72096714007256 20.6947 0.4743 15102 +15104 3 33.78080535987608 -161.44252174866315 20.7899 0.473 15103 +15105 3 33.94265641042907 -160.1414952679904 20.8953 0.4718 15104 +15106 3 34.4332757834099 -159.1019596078754 21.0588 0.4705 15105 +15107 3 35.1854637187133 -158.70331100681275 21.2717 0.4692 15106 +15108 3 36.03000740359571 -157.3224652359982 21.4857 0.468 15107 +15109 3 36.83407041723692 -156.82302565630536 21.6452 0.4667 15108 +15110 3 37.54320338211319 -155.85641097352854 21.7132 0.4654 15109 +15111 3 38.12926202958284 -154.40221245738334 21.7092 0.4642 15110 +15112 3 38.65697407838774 -153.6044315547424 21.6616 0.4629 15111 +15113 3 39.27701434076342 -152.93926644930042 21.5967 0.4616 15112 +15114 3 40.07533781054255 -151.47907688598193 21.5318 0.4604 15113 +15115 3 40.97663239696977 -151.19313771626858 21.4747 0.4591 15114 +15116 3 41.86339061431232 -150.1401281363018 21.4237 0.4579 15115 +15117 3 42.82557008419914 -149.64679981840237 21.3499 0.4566 15116 +15118 3 43.664468770674496 -148.86854542388662 21.2625 0.4553 15117 +15119 3 44.20353477089346 -147.39759738890106 21.1789 0.4541 15118 +15120 3 44.76696279400986 -146.66949733450284 21.0573 0.4528 15119 +15121 3 45.59864772879433 -146.11511478423554 20.8779 0.4515 15120 +15122 3 46.493568503311145 -144.6740736448315 20.7815 0.4503 15121 +15123 3 47.04813259777247 -144.17476963717905 20.7275 0.449 15122 +15124 3 47.545058181044695 -143.34025519085642 20.7042 0.4477 15123 +15125 3 48.13670814134955 -141.7645616361437 20.7533 0.4465 15124 +15126 3 48.79576749072596 -140.76892608649288 20.8657 0.4452 15125 +15127 3 49.41745793006583 -140.39661875029134 20.9517 0.4439 15126 +15128 3 49.750097154526415 -139.05741645176593 21.0119 0.4427 15127 +15129 3 49.832040980749944 -137.88003501936316 21.2428 0.4414 15128 +15130 3 50.63616193328299 -136.5438995304629 21.5367 0.4401 15129 +15131 3 51.75351991488622 -136.92942599750745 21.7949 0.4389 15130 +15132 3 52.718250199170384 -135.7395452543031 22.0512 0.4376 15131 +15133 3 53.007976372436616 -134.82396591641657 22.2997 0.4363 15132 +15134 3 53.253305125766076 -133.91736407218303 22.5486 0.4351 15133 +15135 3 54.12149584210401 -133.04820661371843 22.8507 0.4338 15134 +15136 3 54.97015278287353 -132.14986862753486 23.1615 0.4325 15135 +15137 3 55.63565374787956 -131.78997640169013 23.4082 0.4313 15136 +15138 3 56.16252556081788 -130.24819541867888 23.5648 0.43 15137 +15139 3 56.56715668433588 -128.73180578382073 23.6643 0.4287 15138 +15140 3 56.975917738548986 -127.79696861070263 23.7546 0.4275 15139 +15141 3 57.560394012773706 -127.3510350000107 23.8622 0.4262 15140 +15142 3 58.28085428131405 -126.00553063214464 23.913 0.425 15141 +15143 3 58.991697918706826 -124.87685141609667 23.9309 0.4237 15142 +15144 3 59.8274044166699 -124.76262948333704 23.9709 0.4224 15143 +15145 3 60.832585171412 -123.31522467745302 23.957 0.4212 15144 +15146 3 61.86867378699215 -123.73114570385762 23.8707 0.4199 15145 +15147 3 62.81544615505831 -122.13841500836016 23.7691 0.4186 15146 +15148 3 63.65591714785083 -122.13566342153241 23.6676 0.4174 15147 +15149 3 64.47768473611396 -120.85278381402378 23.5461 0.4161 15148 +15150 3 65.32064229261786 -120.0671526777706 23.3916 0.4148 15149 +15151 3 66.14084773547746 -120.09569015133208 23.2365 0.4136 15150 +15152 3 66.92947039166783 -120.03400868617756 23.0512 0.4123 15151 +15153 3 67.42587738257518 -118.59662243343068 22.7822 0.411 15152 +15154 3 67.29980169678153 -117.5758116643221 22.4643 0.4098 15153 +15155 3 67.12187846865838 -116.62439629194722 22.1601 0.4085 15154 +15156 3 67.11306934848933 -115.5713859707089 21.8672 0.4072 15155 +15157 3 67.42154975911002 -114.32845375082209 21.5472 0.406 15156 +15158 3 68.22886921194949 -113.25579858453989 21.2335 0.4047 15157 +15159 3 68.88551000343406 -113.03693002534575 20.9763 0.4034 15158 +15160 3 69.38647482106573 -111.9168335003876 20.7792 0.4022 15159 +15161 3 70.04632042465083 -110.47504800929256 20.6069 0.4009 15160 +15162 3 70.71741921638659 -110.1137061811669 20.4611 0.3996 15161 +15163 3 71.25810163975315 -109.4156404834206 20.383 0.3984 15162 +15164 3 71.71779973403521 -108.044259788547 20.3611 0.3971 15163 +15165 3 72.32731256691662 -106.88931499520793 20.3343 0.3958 15164 +15166 3 73.17922879963093 -106.92170276305147 20.2918 0.3946 15165 +15167 3 74.16649545889938 -105.60235363683142 20.2398 0.3933 15166 +15168 3 75.17738851758148 -105.83645291025285 20.1676 0.392 15167 +15169 3 76.1436570582801 -104.59998360740077 20.0477 0.3908 15168 +15170 3 76.94598946764958 -104.27903545180622 19.8647 0.3895 15169 +15171 3 77.59684313939405 -103.49497501724142 19.6463 0.3883 15170 +15172 3 78.4390418837117 -102.24141162382072 19.4161 0.387 15171 +15173 3 79.37212187369346 -102.44171460810983 19.1335 0.3857 15172 +15174 3 80.06115489475842 -101.10669015761206 18.8385 0.3845 15173 +15175 3 80.59049994753312 -99.97069369203071 18.5911 0.3832 15174 +15176 3 81.11906200304634 -99.44921570599162 18.3892 0.3819 15175 +15177 3 81.73826232564153 -98.63540872554789 18.1927 0.3807 15176 +15178 3 82.5812841328314 -97.37528638814253 17.9919 0.3794 15177 +15179 3 83.58155876959749 -97.53851550936231 17.8226 0.3781 15178 +15180 3 84.54215181501966 -96.21674601931974 17.6823 0.3769 15179 +15181 3 85.2950821837874 -95.91255376976135 17.5569 0.3756 15180 +15182 3 85.98968233261235 -95.04872425468962 17.4605 0.3743 15181 +15183 3 86.93154227090838 -94.15057019943357 17.3965 0.3731 15182 +15184 3 87.96195844605896 -94.07849517039561 17.3551 0.3718 15183 +15185 3 88.87213759318318 -92.95625612950356 17.3372 0.3705 15184 +15186 3 89.64133138227399 -92.74148854265698 17.3171 0.3693 15185 +15187 3 90.32297448041233 -91.58949023697596 17.2738 0.368 15186 +15188 3 91.04435235727992 -90.54628642498874 17.2046 0.3667 15187 +15189 3 91.84991376382519 -90.38631016394982 17.0946 0.3655 15188 +15190 3 92.50240043953944 -89.08248884661934 16.9653 0.3642 15189 +15191 3 93.06416821876392 -87.95184762004236 16.8757 0.3629 15190 +15192 3 93.72549533834477 -87.54234109758227 16.8501 0.3617 15191 +15193 3 93.99501014543627 -86.67248440819914 16.8516 0.3604 15192 +15194 3 94.12287928499705 -85.52577401430872 16.851 0.3591 15193 +15195 3 94.67007388647338 -84.23620645012933 16.8402 0.3579 15194 +15196 3 95.37034597754148 -83.34177137735128 16.781 0.3566 15195 +15197 3 95.70303237367939 -82.54247351013439 16.6611 0.3553 15196 +15198 3 96.01291593146233 -81.7051875253613 16.5313 0.3541 15197 +15199 3 96.66375272629851 -80.54222410088946 16.4109 0.3528 15198 +15200 3 97.40050691203128 -79.55546931740797 16.2697 0.3516 15199 +15201 3 98.07401815196502 -79.10826104459814 16.109 0.3503 15200 +15202 3 98.85134074441349 -78.07984398950211 15.9132 0.349 15201 +15203 3 99.75994057313977 -77.46296480640798 15.798 0.3478 15202 +15204 3 100.58262576973021 -76.88585734449362 15.7305 0.3465 15203 +15205 3 101.24145951561913 -75.64517525101083 15.6936 0.3452 15204 +15206 3 101.78219562455747 -74.85573390737336 15.6838 0.344 15205 +15207 3 102.21683347329392 -74.09493640815586 15.6926 0.3427 15206 +15208 3 102.99402421343746 -73.1573178594314 15.7107 0.3414 15207 +15209 3 103.85235482185927 -72.33499450217583 15.7264 0.3402 15208 +15210 3 104.56069472254627 -71.89585748648183 15.7458 0.3389 15209 +15211 3 105.44496963312469 -70.71409438557667 15.7716 0.3376 15210 +15212 3 106.32683535245232 -70.34890991478359 15.8009 0.3364 15211 +15213 3 107.14704405225912 -69.54134314411547 15.8526 0.3351 15212 +15214 3 108.19691327958456 -68.95402735646599 15.9501 0.3338 15213 +15215 3 108.96206132042145 -68.23000306756893 16.0497 0.3326 15214 +15216 3 109.70843894728232 -67.0324097275001 16.1538 0.3313 15215 +15217 3 110.60167253407117 -66.77780565589784 16.267 0.33 15216 +15218 3 111.70776045061545 -66.18672067424195 16.4287 0.3288 15217 +15219 3 112.79227817275357 -66.49736129911786 16.6805 0.3275 15218 +15220 3 113.70494743662255 -65.49189344402443 16.9071 0.3262 15219 +15221 3 114.43520632115381 -64.81471582630954 17.1092 0.325 15220 +15222 3 115.37698419199764 -64.6055277941317 17.3583 0.3237 15221 +15223 3 116.3802495380507 -64.92837785142763 17.618 0.3224 15222 +15224 3 117.3803775605925 -64.8364240534689 17.8262 0.3212 15223 +15225 3 118.2256838127948 -63.840963500468845 18.0027 0.3199 15224 +15226 3 119.06943117654072 -63.56180182435748 18.1785 0.3186 15225 +15227 3 120.06011938294253 -62.61696883363042 18.3507 0.3174 15226 +15228 3 121.15876694793566 -62.783183256886616 18.4699 0.3161 15227 +15229 3 122.19976197757788 -61.92330771011519 18.5411 0.3149 15228 +15230 3 123.01357643553274 -61.51745767306584 18.5959 0.3136 15229 +15231 3 123.54124812264082 -60.629413473743966 18.6602 0.3123 15230 +15232 3 123.85205935567882 -59.4512927930148 18.7237 0.3111 15231 +15233 3 123.99287903203182 -58.324526261422875 18.7773 0.3098 15232 +15234 3 124.50208703624561 -57.254422859250596 18.852 0.3085 15233 +15235 3 125.44809733517826 -57.14258973071597 18.9268 0.3073 15234 +15236 3 126.05536027113641 -56.0697167000193 18.9832 0.306 15235 +15237 3 126.56530695368096 -54.948405947438495 19.0219 0.3047 15236 +15238 3 127.24455092749625 -54.33077433123531 19.0489 0.3035 15237 +15239 3 127.80307608958385 -53.52988880624895 19.0691 0.3022 15238 +15240 3 127.64869172750005 -52.57964730361923 19.0866 0.3009 15239 +15241 3 127.41181457649998 -51.40669659504125 19.1075 0.2997 15240 +15242 3 127.59313130281609 -50.44507314265855 19.1236 0.2984 15241 +15243 3 127.73558043010554 -49.4263378982103 19.1528 0.2971 15242 +15244 3 128.03090443010143 -48.324283639695864 19.2189 0.2959 15243 +15245 3 128.68590165250208 -47.16216847003771 19.3538 0.2946 15244 +15246 3 129.42997114746163 -46.62378855511144 19.5654 0.2933 15245 +15247 3 129.1348927760771 -45.429716505887725 19.8536 0.2921 15246 +15248 3 129.15108340590137 -44.38267801105556 20.2054 0.2908 15247 +15249 3 128.95628242116206 -43.24477783555518 20.4556 0.2895 15248 +15250 3 128.67340554522517 -42.36740644887602 20.7306 0.2883 15249 +15251 3 129.36892024753047 -41.63759711044123 21.0536 0.287 15250 +15252 3 130.00682367856885 -40.9296136746272 21.3551 0.2857 15251 +15253 3 130.8148920787671 -39.97017926527275 21.6743 0.2845 15252 +15254 3 130.914478842102 -39.28132802770817 22.0989 0.2832 15253 +15255 3 129.8547640101646 -39.121329324883796 22.5655 0.282 15254 +15256 3 129.32110661369148 -38.28138634715308 23.1273 0.2807 15255 +15257 3 129.72531439058642 -37.65667172515372 23.7578 0.2794 15256 +15258 3 130.31464585597615 -36.70198149560721 24.2798 0.2782 15257 +15259 3 130.75182544855508 -35.70349388928129 24.8603 0.2769 15258 +15260 3 131.69797085673994 -35.123740720639326 25.4186 0.2756 15259 +15261 3 132.7145091159294 -34.359061528942384 25.8932 0.2744 15260 +15262 3 133.84344744670668 -34.19905049389197 26.2517 0.2731 15261 +15263 3 134.92922924952092 -34.230777689540254 26.5919 0.2718 15262 +15264 3 135.79727429149256 -33.50507586228415 26.8625 0.2706 15263 +15265 3 136.45540241258058 -32.4865236491056 27.0677 0.2693 15264 +15266 3 137.10953926525903 -31.790579372422968 27.3067 0.268 15265 +15267 3 137.94590046121198 -31.014980277416097 27.5153 0.2668 15266 +15268 3 138.92187662547988 -30.418722764916307 27.709 0.2655 15267 +15269 3 139.9043352652606 -29.937107075051657 27.9303 0.2642 15268 +15270 3 140.7050815462516 -29.046737251897266 28.1901 0.263 15269 +15271 3 141.3049472511161 -28.253341029206027 28.4631 0.2617 15270 +15272 3 142.01576088982594 -27.46087851971893 28.7823 0.2604 15271 +15273 3 143.02028013659768 -26.890272899085755 29.1186 0.2592 15272 +15274 3 144.115827501873 -26.738357925567655 29.3891 0.2579 15273 +15275 3 144.9944879109137 -25.992678588457355 29.6792 0.2566 15274 +15276 3 145.9720561301976 -26.31105539955752 29.99 0.2554 15275 +15277 3 146.2604298435413 -25.68573007324171 30.284 0.2541 15276 +15278 3 146.5299247188776 -24.620900234084736 30.6608 0.2528 15277 +15279 3 146.49792246726037 -23.68641462918498 31.1013 0.2516 15278 +15280 3 145.67648806002677 -23.1639687251285 31.5879 0.2503 15279 +15281 3 144.55746701925585 -22.985565197465878 32.0611 0.249 15280 +15282 3 143.4398017518696 -22.796445327557315 32.4766 0.2478 15281 +15283 3 142.88424517676597 -23.122169025300018 32.8978 0.2465 15282 +15284 3 142.89311911583394 -22.723053528609874 33.5348 0.2453 15283 +15285 3 142.0179667012403 -22.237586518093828 34.1004 0.244 15284 +15286 3 140.94345520305626 -22.013287808216653 34.5909 0.2427 15285 +15287 3 139.8723753754482 -22.482036402701837 35.0619 0.2415 15286 +15288 3 139.28402659589986 -22.280640293609835 35.6544 0.2402 15287 +15289 3 139.42193882459313 -21.385178519876 36.2953 0.2389 15288 +15290 3 140.1078449042046 -20.656255864612245 36.9281 0.2377 15289 +15291 3 141.15630041925354 -20.22627332702987 37.4884 0.2364 15290 +15292 3 142.2249133753342 -20.3108908294087 38.057 0.2351 15291 +15293 3 143.35009099479618 -20.24978451282566 38.5347 0.2339 15292 +15294 3 144.31871747129276 -20.782105345911805 38.8083 0.2326 15293 +15295 3 145.1704705845195 -21.465193988015393 38.9836 0.2313 15294 +15296 3 145.33703275516203 -22.52068628495724 39.3655 0.2301 15295 +15297 3 4.787117527049768 -186.38089268477125 22.8262 0.3604 1 +15298 3 5.839578043499185 -187.41458855775028 23.0152 0.3541 15297 +15299 3 6.919442749686074 -187.26862446351097 23.0919 0.351 15298 +15300 3 8.046619833736791 -187.96114183865154 23.1046 0.3478 15299 +15301 3 9.136175286584617 -188.5748499185649 23.0856 0.3447 15300 +15302 3 10.167743495320185 -188.91945561302248 23.0495 0.3416 15301 +15303 3 11.204174001287367 -189.57738077026877 23.0073 0.3384 15302 +15304 3 12.1656172229625 -190.1193061435107 22.9676 0.3353 15303 +15305 3 13.20890182998215 -190.46687500113063 22.9279 0.3322 15304 +15306 3 14.342662594480656 -190.32699644476804 22.8805 0.329 15305 +15307 3 15.340164507682484 -190.70381680822453 22.8248 0.3259 15306 +15308 3 16.013406873787527 -191.64425313985703 22.7016 0.3228 15307 +15309 3 16.795712388459677 -192.80496139671362 22.5162 0.3196 15308 +15310 3 17.788649961042765 -192.91068096118522 22.3712 0.3165 15309 +15311 3 18.86292435076725 -193.83272561342528 22.2821 0.3134 15310 +15312 3 19.834044995228346 -193.93763042305733 22.2479 0.3102 15311 +15313 3 20.92100877379562 -194.7439024446832 22.3253 0.3071 15312 +15314 3 21.958181417141077 -194.81671132737569 22.4544 0.304 15313 +15315 3 22.84957376726921 -196.1322110714176 22.5936 0.3008 15314 +15316 3 23.801323483522552 -196.15189178011838 22.7249 0.2977 15315 +15317 3 24.89940789764876 -196.99248807123314 22.9273 0.2946 15316 +15318 3 26.01358005904875 -196.14640856486744 23.1699 0.2914 15317 +15319 3 27.127257314972702 -196.93093566810091 23.3495 0.2883 15318 +15320 3 26.421361369237548 -195.4501614558102 22.6976 0.2368 15319 +15321 3 26.114166883319765 -194.23309139489504 22.3408 0.2362 15320 +15322 3 26.664675162599462 -193.53030018833033 21.9238 0.2358 15321 +15323 3 27.501191601660103 -192.74025465700524 21.4959 0.2355 15322 +15324 3 28.581406276714276 -192.3306417844575 21.0664 0.2352 15323 +15325 3 29.657141992064165 -192.32718184178626 20.6913 0.2349 15324 +15326 3 30.25641498905039 -191.28825485512374 20.3301 0.2346 15325 +15327 3 30.09884504633456 -190.04492197537706 19.9934 0.2342 15326 +15328 3 30.456903170606275 -189.19889238764907 19.6787 0.2339 15327 +15329 3 30.89401120433229 -188.40970153549347 19.3803 0.2336 15328 +15330 3 31.235534491303454 -187.15548476183852 19.1225 0.2333 15329 +15331 3 31.57464207312942 -185.84153182073558 18.9092 0.233 15330 +15332 3 31.89188455878321 -184.44459964205993 18.7421 0.2326 15331 +15333 3 32.10626508957782 -183.21347652003806 18.6243 0.2323 15332 +15334 3 32.29163713288915 -182.08323370486846 18.5441 0.232 15333 +15335 3 32.46477462722299 -180.95027593325378 18.4864 0.2317 15334 +15336 3 32.40250509461009 -179.69786964367074 18.436 0.2314 15335 +15337 3 32.28118709366535 -178.4102317750944 18.3811 0.231 15336 +15338 3 32.13166403244037 -177.10939751908757 18.3019 0.2307 15337 +15339 3 32.47802968488804 -176.1413660669716 18.2005 0.2304 15338 +15340 3 32.96447501034338 -175.34395483164707 18.0819 0.2301 15339 +15341 3 33.29873036186542 -174.11288700951192 17.8961 0.2298 15340 +15342 3 32.87359803151089 -173.03051699804766 17.6321 0.2294 15341 +15343 3 32.32152200883195 -171.68141275954565 16.8708 0.2291 15342 +15344 3 27.731574669592902 -197.00750496737433 23.4809 0.2883 15319 +15345 3 28.84440517575581 -197.69176775510402 23.5721 0.2859 15344 +15346 3 29.975593459971247 -197.37045179341897 23.6277 0.2847 15345 +15347 3 31.11864431502361 -197.77133103114988 23.6526 0.2834 15346 +15348 3 32.259462150060976 -197.5979131498005 23.6657 0.2822 15347 +15349 3 33.38865827785463 -197.7215330520994 23.6839 0.281 15348 +15350 3 34.50290549462599 -197.45766575662623 23.7105 0.2798 15349 +15351 3 35.64122284990476 -197.46757223204384 23.7483 0.2786 15350 +15352 3 36.75480911340698 -197.9256155885202 23.7982 0.2774 15351 +15353 3 37.79767363075077 -198.14441120935896 23.8599 0.2762 15352 +15354 3 38.77692208219669 -199.05332439020046 23.9602 0.2749 15353 +15355 3 39.82608579775105 -199.12715812234256 24.1427 0.2737 15354 +15356 3 40.926613453030726 -199.72272141533614 24.3394 0.2725 15355 +15357 3 42.060166609566174 -199.54712164835047 24.4876 0.2713 15356 +15358 3 43.188939390736756 -199.77688749083717 24.5886 0.2701 15357 +15359 3 44.32176423195535 -200.0911555214691 24.6451 0.2689 15358 +15360 3 45.436200798251946 -199.9904369285623 24.6608 0.2677 15359 +15361 3 46.51525300668082 -200.18692663608869 24.6456 0.2664 15360 +15362 3 47.59919751102433 -200.62720471481128 24.6027 0.2652 15361 +15363 3 48.696675597311184 -201.0331287917341 24.5238 0.264 15362 +15364 3 49.709729492427485 -201.39410373134902 24.4452 0.2628 15363 +15365 3 50.748487765965045 -202.07080595230144 24.3975 0.2616 15364 +15366 3 51.800236641905606 -202.28128125147055 24.3799 0.2604 15365 +15367 3 52.864783476305604 -203.0649007514196 24.3938 0.2592 15366 +15368 3 53.965513748470656 -202.92193443404133 24.4801 0.2579 15367 +15369 3 55.057360456311535 -203.63518673294806 24.6014 0.2567 15368 +15370 3 56.16142483622157 -203.66383594054219 24.7121 0.2555 15369 +15371 3 57.25895710626665 -204.20823763647866 24.8107 0.2543 15370 +15372 3 58.37183448802079 -204.37315239638494 24.9007 0.2531 15371 +15373 3 59.50860351995732 -204.50044247879288 24.9868 0.2519 15372 +15374 3 60.632355005654965 -204.72045273528335 25.1251 0.2507 15373 +15375 3 61.73310926079493 -204.81663476920951 25.2849 0.2494 15374 +15376 3 62.83309759768205 -205.43424226303603 25.4356 0.2482 15375 +15377 3 63.94591448388383 -204.66694405220017 25.5975 0.247 15376 +15378 3 65.02068683393126 -205.92080825125936 25.8444 0.2458 15377 +15379 3 65.79807616369965 -207.06408024929144 26.0747 0.2446 15378 +15380 3 66.5254881200827 -207.6013845513433 26.2489 0.2434 15379 +15381 3 67.29899069983854 -208.81925754003657 26.3792 0.2422 15380 +15382 3 68.29910521544903 -209.06889812261298 26.4766 0.2409 15381 +15383 3 69.42230356069263 -209.65160795465647 26.5485 0.2397 15382 +15384 3 70.52705994544249 -209.48639482356364 26.606 0.2385 15383 +15385 3 71.51029690653718 -210.63759577910344 26.6722 0.2373 15384 +15386 3 72.55882329919632 -210.5325200038349 26.7764 0.2361 15385 +15387 3 73.63556767181 -211.6011896222426 26.911 0.2349 15386 +15388 3 74.57924276846393 -211.56572248941848 27.1146 0.2337 15387 +15389 3 75.41567701353088 -212.98753117073602 27.3511 0.2324 15388 +15390 3 76.18995252362049 -213.6570412369593 27.5742 0.2312 15389 +15391 3 76.91991879091938 -213.87856210791688 28.6804 0.23 15390 +15392 3 4.339777527659127 -180.8722065394797 24.7374 0.4118 1 +15393 3 5.224204922584375 -179.96253090700543 25.272 0.4078 15392 +15394 3 6.100321087637074 -179.90092095941827 25.6679 0.4057 15393 +15395 3 5.383359188287565 -178.71229308317572 25.9606 0.4037 15394 +15396 3 5.032722197610286 -177.473169858937 26.1962 0.4017 15395 +15397 3 5.804478160485155 -177.23165146724952 26.4405 0.3996 15396 +15398 3 6.918077489247113 -176.42970303393605 26.6891 0.3976 15397 +15399 3 8.032480447312587 -176.87587130343465 26.9319 0.3956 15398 +15400 3 9.072821479251722 -176.86547869483073 27.2505 0.3935 15399 +15401 3 9.598587180826724 -176.97256503551964 27.7099 0.3915 15400 +15402 3 10.265551662005903 -177.24611427783645 28.2414 0.3895 15401 +15403 3 11.345657969543687 -176.99111058193762 28.7249 0.3874 15402 +15404 3 12.381780136840142 -176.4828685807018 29.1136 0.3854 15403 +15405 3 13.481410059032864 -176.14474553734047 29.4132 0.3834 15404 +15406 3 14.613625258949952 -176.2215579427096 29.6542 0.3813 15405 +15407 3 15.344815630384817 -175.60275087458572 30.0502 0.3793 15406 +15408 3 16.13859518948683 -174.78806322506475 30.3164 0.3773 15407 +15409 3 17.05607276892954 -174.30236788536965 30.4727 0.3752 15408 +15410 3 18.08897600597799 -173.5270844633238 30.5105 0.3732 15409 +15411 3 19.185194245864754 -173.3855251455229 30.469 0.3712 15410 +15412 3 19.939804992379997 -172.1019902971042 30.3526 0.3691 15411 +15413 3 20.535635312004484 -171.54912082604363 30.1994 0.3671 15412 +15414 3 21.342100706915918 -170.50474652722977 30.1036 0.3651 15413 +15415 3 22.328587921956203 -169.9373298977349 30.0706 0.363 15414 +15416 3 23.412611180289804 -169.45649984556428 30.0972 0.361 15415 +15417 3 24.465041585026437 -169.23675226593681 30.0944 0.359 15416 +15418 3 25.395655643338827 -168.48557917009455 30.2669 0.3569 15417 +15419 3 26.29955927914134 -167.3719162986418 30.5785 0.3549 15418 +15420 3 27.2115874649815 -167.19915766209266 30.9364 0.3529 15419 +15421 3 28.224053032081027 -166.07896198583143 31.2455 0.3508 15420 +15422 3 29.12130868023491 -165.93332287366556 31.507 0.3488 15421 +15423 3 29.96256918418335 -164.4955034458495 31.733 0.3468 15422 +15424 3 30.927191100951084 -164.33966168021502 31.9186 0.3447 15423 +15425 3 31.829275198534216 -163.264808433194 32.0981 0.3427 15424 +15426 3 32.44797686051977 -162.32608233735516 32.3548 0.3407 15425 +15427 3 32.37464413305338 -161.18542988399338 32.7953 0.3386 15426 +15428 3 32.401507368551805 -160.03857927079417 33.2562 0.3366 15427 +15429 3 32.71790665747787 -159.07931156758528 33.6417 0.3346 15428 +15430 3 33.18897261922111 -158.28490261617827 34.0049 0.3325 15429 +15431 3 33.86018984540105 -156.90422815235314 34.3773 0.3305 15430 +15432 3 34.7226372627433 -156.30266508597393 34.6861 0.3285 15431 +15433 3 35.60444248651857 -155.55283201822093 34.8765 0.3264 15432 +15434 3 36.566702585813225 -154.77704456469513 34.9712 0.3244 15433 +15435 3 37.57263228791414 -154.37138152316857 34.9849 0.3224 15434 +15436 3 38.50814515603551 -153.5026829811797 34.8634 0.3203 15435 +15437 3 39.386927552553736 -153.18274552226933 34.6091 0.3183 15436 +15438 3 40.43628499749483 -152.42846498696812 34.3675 0.3162 15437 +15439 3 41.47653078369217 -152.3506581342204 34.2026 0.3142 15438 +15440 3 42.35834607439524 -151.0894020487135 34.1138 0.3122 15439 +15441 3 43.26374059283456 -151.10330671145263 34.1513 0.3101 15440 +15442 3 44.112390521523196 -149.6232637976516 34.2616 0.3081 15441 +15443 3 45.10779960411038 -149.59240601118853 34.4025 0.3061 15442 +15444 3 46.08620213262343 -148.3482676917323 34.5526 0.3041 15443 +15445 3 46.93809112541562 -147.7636093599278 34.7136 0.302 15444 +15446 3 47.93596989480592 -147.18157940358924 34.8972 0.3 15445 +15447 3 49.00227190370956 -146.8518651350541 35.184 0.2979 15446 +15448 3 49.40372190201596 -146.2126447431158 35.5718 0.2959 15447 +15449 3 49.46213011914724 -145.00050036127445 35.926 0.2939 15448 +15450 3 49.64354209120509 -143.77302138882058 36.4686 0.2918 15449 +15451 3 49.76440720202703 -142.5819445495354 37.1417 0.2898 15450 +15452 3 49.467092755780556 -141.80664500116112 37.896 0.2878 15451 +15453 3 49.484407662037185 -140.7225872543433 38.6579 0.2857 15452 +15454 3 49.266200067764 -139.4025347222301 39.3145 0.2837 15453 +15455 3 48.519489038112226 -137.85516538566424 39.9518 0.2817 15454 +15456 3 48.92776900891067 -137.27674880861423 40.5857 0.2796 15455 +15457 3 49.657157456792106 -136.77842076194167 41.0976 0.2776 15456 +15458 3 49.98750572234578 -135.38148781975153 41.6016 0.2756 15457 +15459 3 50.01430846229186 -134.2200858637528 42.1162 0.2735 15458 +15460 3 50.918886229653054 -133.31344574719805 42.5723 0.2715 15459 +15461 3 51.662986221481994 -132.9554573288426 42.9948 0.2695 15460 +15462 3 51.977820014071426 -131.54957532236537 43.3446 0.2674 15461 +15463 3 51.64149534927892 -130.7107351671848 43.65 0.2654 15462 +15464 3 51.70475649700091 -129.5421678545123 43.9594 0.2634 15463 +15465 3 52.31998844380281 -127.94702664516751 44.2968 0.2613 15464 +15466 3 52.664906832257714 -126.61251419072485 44.6832 0.2593 15465 +15467 3 52.556542328966266 -125.43933009714203 45.1268 0.2573 15466 +15468 3 52.565495022024365 -124.24484847844909 45.6386 0.2552 15467 +15469 3 52.24396432123264 -123.58324495505798 46.2801 0.2532 15468 +15470 3 51.593833221223846 -123.44783146668487 47.1248 0.2512 15469 +15471 3 51.45763994562772 -122.76209427942752 48.2294 0.2491 15470 +15472 3 52.11614439216215 -121.66524163449054 49.252 0.2471 15471 +15473 3 52.903258790621045 -120.50160135029824 50.1603 0.2451 15472 +15474 3 53.51719695415003 -120.33066834101074 51.0661 0.243 15473 +15475 3 54.004637960679986 -119.17243936704453 51.849 0.241 15474 +15476 3 54.6748831926741 -117.51072512714907 52.3891 0.239 15475 +15477 3 54.90476102343855 -116.4981279221651 52.7366 0.2369 15476 +15478 3 55.16778733930918 -115.72110914446911 53.0457 0.2349 15477 +15479 3 55.57489495961084 -115.09554584284992 53.2398 0.2329 15478 +15480 3 56.38212973182271 -113.96335369588695 53.4246 0.2308 15479 +15481 3 1.793270807300541 -179.50326013794722 21.8606 0.9781 1 +15482 3 1.6170514417133166 -178.14827724244998 22.006 0.8939 15481 +15483 3 1.2127574374148367 -176.6032004123893 22.1126 0.8518 15482 +15484 3 0.5410565846714395 -175.58511431171306 22.1725 0.8096 15483 +15485 3 0.25315515631431484 -174.69859536792595 22.1883 0.7675 15484 +15486 3 0.2508345273662469 -173.45379159441575 22.1625 0.7254 15485 +15487 3 0.2808252025045004 -172.17295134367788 22.0958 0.6833 15486 +15488 3 0.3430767531046781 -170.86611183775506 21.9655 0.6412 15487 +15489 3 0.05206455991565129 -169.9241887464238 21.7401 0.599 15488 +15490 3 -0.3634690125724358 -168.83739584346344 21.5511 0.5569 15489 +15491 3 -0.6149360161286346 -167.38039649388415 21.3241 0.5148 15490 +15492 3 -0.8133017922486525 -167.08595885164436 21.0886 0.4633 15491 +15493 3 -1.7535412236216787 -166.7466416396449 21.8468 0.4376 15492 +15494 3 -2.674696822199639 -165.9880056540265 22.1657 0.4247 15493 +15495 3 -3.352855669294554 -164.58472243416244 22.4726 0.4118 15494 +15496 3 -3.5087621111712224 -163.58216720706355 22.8152 0.399 15495 +15497 3 -2.7468020055265043 -162.91999367934528 23.1342 0.3861 15496 +15498 3 -1.9914256368444807 -162.30427426247704 23.3636 0.3732 15497 +15499 3 -1.667744792508243 -160.81329681214115 23.5019 0.3604 15498 +15500 3 -1.3942932859220658 -160.11862067045067 23.6068 0.3089 15499 +15501 3 -0.713395878195314 -159.42904883361015 23.6928 0.3089 15500 +15502 3 -0.38955248258446673 -158.67802102093626 23.7077 0.3089 15501 +15503 3 -0.8106594946266998 -157.1491188765462 23.6363 0.3089 15502 +15504 3 -1.504919412870322 -156.13943740678846 23.4443 0.3089 15503 +15505 3 -1.7068898303698035 -155.24517761813394 23.199 0.3089 15504 +15506 3 -1.5749108939694683 -153.86931101924378 22.9961 0.3089 15505 +15507 3 -1.754342379824113 -152.86810931893282 22.8647 0.3089 15506 +15508 3 -1.7340386962131777 -151.638598425865 22.8106 0.3089 15507 +15509 3 -1.148769357799182 -150.20763200498087 22.828 0.3089 15508 +15510 3 -0.3430765971354006 -150.10962447619505 22.932 0.3089 15509 +15511 3 0.3864370951707592 -148.77223191415172 23.1647 0.3089 15510 +15512 3 0.19908021711630397 -147.84224545871805 23.3853 0.3089 15511 +15513 3 -0.5146388629959944 -146.99639795296997 23.6328 0.3089 15512 +15514 3 -0.6795513548607524 -145.60687206645858 23.8146 0.3089 15513 +15515 3 -0.4116867247334639 -144.7001763530571 23.9277 0.3089 15514 +15516 3 0.018844880196763114 -143.48445971971768 23.977 0.3089 15515 +15517 3 -0.1333144138107798 -142.70323353062594 23.9374 0.3089 15516 +15518 3 -0.622383955378492 -141.38508251831612 23.8364 0.3077 15517 +15519 3 -1.5924340089789766 -140.57979465600857 23.7607 0.3071 15518 +15520 3 -2.6045564737066655 -140.4198161048057 23.7016 0.3065 15519 +15521 3 -2.652049713499551 -139.25211681025567 23.616 0.306 15520 +15522 3 -2.229575851260517 -138.4342595633112 23.5341 0.3054 15521 +15523 3 -2.4624576826312534 -137.13552987231452 23.4538 0.3048 15522 +15524 3 -3.224579569237349 -135.44664472822294 23.3646 0.3042 15523 +15525 3 -3.6829919409167964 -134.6244345194828 23.2501 0.3036 15524 +15526 3 -3.6498426289824835 -133.3755757045611 23.0533 0.303 15525 +15527 3 -3.283981302088847 -131.88342881450671 22.8691 0.3025 15526 +15528 3 -3.2522215173557285 -130.78846254297846 22.5478 0.3019 15527 +15529 3 -3.683893467842445 -129.98538996398554 22.2896 0.3013 15528 +15530 3 -4.588067195607863 -129.665280955721 22.092 0.3007 15529 +15531 3 -5.66709551504761 -128.83623936238612 21.9483 0.3001 15530 +15532 3 -6.444515341685374 -128.65559250020735 21.8507 0.2995 15531 +15533 3 -6.665277303389235 -127.21653341883527 21.7809 0.2989 15532 +15534 3 -6.708087970219566 -125.95572909275775 21.719 0.2984 15533 +15535 3 -7.1098646178511835 -124.39636368159128 21.596 0.2978 15534 +15536 3 -7.628853647349274 -123.24493850465855 21.4849 0.2972 15535 +15537 3 -7.974865007582942 -122.47213116827982 21.3898 0.2966 15536 +15538 3 -8.734604646774322 -121.70754321156306 21.3078 0.296 15537 +15539 3 -9.538734895921856 -120.14840837551304 21.2363 0.2954 15538 +15540 3 -10.16838958108741 -119.85301553996305 21.1673 0.2949 15539 +15541 3 -10.467557319369824 -119.00959890480863 21.0679 0.2943 15540 +15542 3 -11.0737890162797 -117.3514023210296 20.9298 0.2937 15541 +15543 3 -11.715635129965133 -116.19580220658212 20.8064 0.2931 15542 +15544 3 -12.417268094227143 -116.00644228479503 20.696 0.2925 15543 +15545 3 -13.073572208163743 -114.78192416378145 20.5654 0.2919 15544 +15546 3 -13.423646489645694 -113.47638868780558 20.4045 0.2913 15545 +15547 3 -13.746261603359489 -112.50163985043642 20.2708 0.2908 15546 +15548 3 -14.09311695459343 -111.79782087755505 20.1559 0.2902 15547 +15549 3 -14.56210718439175 -111.25312615465904 20.0487 0.2896 15548 +15550 3 -15.37576207589224 -109.91342797613629 19.9052 0.289 15549 +15551 3 -16.1919811996509 -109.50795074314671 19.7388 0.2884 15550 +15552 3 -16.59779027166142 -108.8796608530787 19.5921 0.2878 15551 +15553 3 -16.968072366284787 -107.6673310385731 19.4092 0.2872 15552 +15554 3 -17.64141934477265 -106.27299921736345 19.2259 0.2867 15553 +15555 3 -18.570504386770107 -106.41498291052301 19.0212 0.2861 15554 +15556 3 -19.4028623867138 -105.24395949694832 18.8483 0.2855 15555 +15557 3 -20.025347437018983 -104.33178077376735 18.7286 0.2849 15556 +15558 3 -20.888329553321043 -104.15867722158801 18.6517 0.2843 15557 +15559 3 -21.73690409799653 -102.77025438981926 18.6144 0.2837 15558 +15560 3 -22.549995782115325 -102.58748761967682 18.605 0.2832 15559 +15561 3 -23.475929697584075 -101.66035822214545 18.6168 0.2826 15560 +15562 3 -24.296981321991794 -100.99492038611616 18.64 0.282 15561 +15563 3 -24.98817459223397 -100.51725073144917 18.6718 0.2814 15562 +15564 3 -25.869734774654834 -99.18163753314914 18.7296 0.2808 15563 +15565 3 -26.83846636172064 -99.30465821818215 18.7806 0.2802 15564 +15566 3 -27.04785670082971 -98.33439127807962 18.8523 0.2797 15565 +15567 3 -27.6338296577872 -96.9994610432518 19.0021 0.2791 15566 +15568 3 -28.575766639902092 -96.67876554083422 19.1393 0.2785 15567 +15569 3 -29.698819108679036 -96.39192654735601 19.2794 0.2779 15568 +15570 3 -30.653705833313605 -96.09646261684314 19.4542 0.2773 15569 +15571 3 -31.378624119918666 -95.3759242216433 19.6153 0.2767 15570 +15572 3 -32.26831616054412 -94.21386886973701 19.7556 0.2762 15571 +15573 3 -33.195069383751466 -94.2069730704005 19.9297 0.2756 15572 +15574 3 -34.215994783395416 -93.1714997879413 20.0912 0.275 15573 +15575 3 -35.159493708813585 -93.36688380853977 20.1132 0.2744 15574 +15576 3 -35.91356791965628 -92.0527075986397 20.1284 0.2738 15575 +15577 3 -36.62818112330726 -91.31613726619473 20.154 0.2732 15576 +15578 3 -37.370118587574694 -90.87047873435203 20.1575 0.2726 15577 +15579 3 -38.06765892799157 -89.54435760868321 20.1412 0.2721 15578 +15580 3 -38.87023680257718 -89.04447601413263 20.1174 0.2715 15579 +15581 3 -39.38026665767832 -88.44227674875754 20.0906 0.2709 15580 +15582 3 -39.20452762423646 -87.36612703775567 20.044 0.2703 15581 +15583 3 -39.11216098090148 -86.28390787053759 19.9414 0.2697 15582 +15584 3 -39.627090642184534 -85.37342339062442 19.8027 0.2691 15583 +15585 3 -39.856625041935416 -84.2506345838744 19.6742 0.2685 15584 +15586 3 -39.794316252730134 -83.24208044918782 19.5544 0.268 15585 +15587 3 -39.80713707125035 -82.19945309675948 19.3869 0.2674 15586 +15588 3 -40.460913559492 -81.01551865709173 19.265 0.2668 15587 +15589 3 -41.22866001456349 -79.77361519004437 19.1278 0.2662 15588 +15590 3 -42.05139507156558 -79.23317460797985 18.9633 0.2656 15589 +15591 3 -42.9515873017631 -78.63158511471384 18.7824 0.265 15590 +15592 3 -43.452797843226094 -77.40065545122529 18.6333 0.2645 15591 +15593 3 -44.3166708261197 -77.08742858781841 18.5136 0.2639 15592 +15594 3 -45.18218362296367 -76.23599285899114 18.4082 0.2633 15593 +15595 3 -45.89992170959412 -75.29180604280515 18.3172 0.2627 15594 +15596 3 -46.693530841041465 -75.02357874830547 18.1651 0.2621 15595 +15597 3 -46.93934929315728 -73.87456006607725 18.0186 0.2615 15596 +15598 3 -47.924961691686136 -73.02113210381158 17.8608 0.2609 15597 +15599 3 -48.93548440807419 -73.00534653591458 17.678 0.2604 15598 +15600 3 -49.67264079669002 -71.78094338760039 17.5369 0.2598 15599 +15601 3 -50.458931564063704 -71.33812401760198 17.4152 0.2592 15600 +15602 3 -51.4122699653561 -70.69508704966064 17.2934 0.2586 15601 +15603 3 -52.17836929831038 -69.8888979612654 17.2606 0.258 15602 +15604 3 -52.82087286874645 -69.4016781419155 17.2358 0.2574 15603 +15605 3 -53.82188150789566 -68.47485011236303 17.2108 0.2569 15604 +15606 3 -54.60000596296149 -68.09006656616785 17.1706 0.2563 15605 +15607 3 -54.97428643206101 -67.31787712059212 17.0589 0.2557 15606 +15608 3 -55.37278670873919 -66.17832776240087 16.8831 0.2551 15607 +15609 3 -55.642855465303036 -65.04718696685143 16.7709 0.2545 15608 +15610 3 -56.043828981817626 -63.93799440540024 16.7268 0.2539 15609 +15611 3 -56.73085195966798 -63.36654514119139 16.6988 0.2534 15610 +15612 3 -57.24587261337276 -62.59953514129155 16.6817 0.2528 15611 +15613 3 -57.317694526447184 -61.5629529217731 16.6273 0.2522 15612 +15614 3 -57.69114086937394 -60.504620452550775 16.5536 0.2516 15613 +15615 3 -58.25458475951414 -59.33775101749994 16.4912 0.251 15614 +15616 3 -58.93113399344196 -58.85144065950593 16.4479 0.2504 15615 +15617 3 -59.94772229609938 -58.40711594151784 16.4289 0.2498 15616 +15618 3 -60.70220347484325 -57.8485292300643 16.4302 0.2493 15617 +15619 3 -61.230943746554594 -57.12118571560331 16.506 0.2487 15618 +15620 3 -61.9817552064049 -56.18460285187028 16.5878 0.2481 15619 +15621 3 -62.68819648624064 -55.23893223888249 16.6454 0.2475 15620 +15622 3 -63.43910900544039 -54.83218035286199 16.665 0.2469 15621 +15623 3 -64.24404544055187 -53.71499915800338 16.6036 0.2463 15622 +15624 3 -65.26655341554104 -53.54911242573336 16.5946 0.2458 15623 +15625 3 -66.39919557162948 -53.26953085148542 16.5656 0.2452 15624 +15626 3 -67.27830550081606 -52.857650728135965 16.4572 0.2446 15625 +15627 3 -67.80621234664127 -51.99049772675975 16.3552 0.244 15626 +15628 3 -68.54822747945548 -50.667193292995734 16.2691 0.2434 15627 +15629 3 -69.33781504772423 -50.07348322224292 16.1723 0.2428 15628 +15630 3 -69.57635194442983 -49.15132140492116 16.0352 0.2422 15629 +15631 3 -70.2133088170476 -48.1508154199901 15.9364 0.2417 15630 +15632 3 -71.19416708376087 -47.562109395149236 15.8787 0.2411 15631 +15633 3 -72.02087732653672 -46.97914194395299 15.849 0.2405 15632 +15634 3 -72.74835303541937 -45.91362705519401 15.8451 0.2399 15633 +15635 3 -73.71546168544316 -45.6214402371099 15.8651 0.2393 15634 +15636 3 -74.45994976200768 -44.69102826744703 15.9069 0.2387 15635 +15637 3 -75.14536973457116 -43.77472446198083 15.9946 0.2382 15636 +15638 3 -76.1479103183407 -43.507145681241106 16.1018 0.2376 15637 +15639 3 -77.05521474269328 -42.6550747958101 16.1889 0.237 15638 +15640 3 -77.43930063776432 -41.792827645063184 16.2617 0.2364 15639 +15641 3 -78.00428653945261 -41.06841638159953 16.2952 0.2358 15640 +15642 3 -78.5394512537992 -40.04720013586916 16.2932 0.2352 15641 +15643 3 -78.65747550869577 -39.02026346014052 16.3275 0.2346 15642 +15644 3 -78.7357722930301 -38.0014045586206 16.4648 0.2341 15643 +15645 3 -79.46141208497146 -37.19761593854819 16.712 0.2335 15644 +15646 3 -80.36323080524433 -36.74317074858158 16.9747 0.2329 15645 +15647 3 -81.12375975349133 -35.772245192543934 17.2973 0.2323 15646 +15648 3 -81.33315710468123 -34.73318609194702 17.6253 0.2317 15647 +15649 3 -81.69441301546095 -33.900119967369264 18.0271 0.2311 15648 +15650 3 -81.55603963510825 -32.8322175267137 18.3497 0.2306 15649 +15651 3 -82.17035226341171 -32.10969851171238 18.6488 0.23 15650 +15652 3 -83.12294191944562 -31.423003058575496 19.1204 0.2294 15651 +15653 3 0.2512741365747644 -143.0282617031355 24.1816 0.3089 15516 +15654 3 0.6665473688976462 -141.4357745031853 24.15 0.3073 15653 +15655 3 0.4085984820007589 -140.506768303869 24.1373 0.3065 15654 +15656 3 -0.032865570582533365 -139.7864110820659 24.1198 0.3056 15655 +15657 3 -0.4185844696233474 -138.66125876174033 24.0955 0.3048 15656 +15658 3 -0.6612011644855613 -137.1939641454639 24.0608 0.304 15657 +15659 3 -0.8729981381848688 -135.75944830859706 24.0112 0.3032 15658 +15660 3 -1.147976565758043 -134.31347728786574 23.9438 0.3024 15659 +15661 3 -1.2182466024569472 -133.01285732374123 23.8563 0.3016 15660 +15662 3 -1.130891187667224 -131.86857348126642 23.7324 0.3008 15661 +15663 3 -0.8176094735536026 -131.02138080789788 23.511 0.3 15662 +15664 3 -0.2995206637764092 -130.52214541359126 23.2257 0.2992 15663 +15665 3 -0.03327897069114627 -129.1226184921962 22.9676 0.2984 15664 +15666 3 -0.2086710200861006 -128.14575616343691 22.6939 0.2976 15665 +15667 3 -0.3773550844664335 -127.03165402002081 22.3643 0.2967 15666 +15668 3 -0.1507095078249634 -125.81641945908405 22.062 0.2959 15667 +15669 3 -0.09736570662428079 -124.5378692399893 21.7889 0.2951 15668 +15670 3 -0.04628641868089289 -123.25851903851492 21.5284 0.2943 15669 +15671 3 0.33248834025541996 -121.71746052589216 21.3009 0.2935 15670 +15672 3 0.7428186459387369 -120.16560184737082 21.0594 0.2927 15671 +15673 3 0.803622434359692 -119.02401515213222 20.8374 0.2919 15672 +15674 3 0.2587337177220128 -118.39436973001587 20.6452 0.2911 15673 +15675 3 -0.029859715474941595 -117.52259600629027 20.4743 0.2903 15674 +15676 3 0.020403319576814738 -116.33798688476489 20.2579 0.2895 15675 +15677 3 0.1719636074236348 -115.23560924343366 19.9121 0.2887 15676 +15678 3 0.6915879148544377 -113.84181497914493 19.6249 0.2879 15677 +15679 3 1.1415816425144527 -113.2281531070016 19.4114 0.287 15678 +15680 3 1.9852750246024513 -112.83417127541304 19.2623 0.2862 15679 +15681 3 2.882523862775834 -111.60854043301471 19.1723 0.2854 15680 +15682 3 3.7627699020086567 -111.73135719043277 19.1356 0.2846 15681 +15683 3 4.122891981126315 -110.43429573901885 19.1356 0.2838 15682 +15684 3 4.183645138822378 -109.32647132857576 19.1413 0.283 15683 +15685 3 4.428015221841029 -108.08114771609999 19.1499 0.2822 15684 +15686 3 4.64650525338908 -106.86058093642633 19.1634 0.2814 15685 +15687 3 5.327325288655139 -106.3758914204014 19.1799 0.2806 15686 +15688 3 6.34252820440166 -105.94608494266008 19.1974 0.2798 15687 +15689 3 6.936661471470721 -104.76283249192333 19.2214 0.279 15688 +15690 3 7.3421834615802695 -104.1226098520699 19.2966 0.2781 15689 +15691 3 7.649148804488917 -103.44063669525949 19.4092 0.2773 15690 +15692 3 7.783662674751184 -102.59316253864996 19.3675 0.2765 15691 +15693 3 8.267648380331167 -102.04958474574555 19.3229 0.2757 15692 +15694 3 8.688526249364266 -101.41674091861081 19.2861 0.2749 15693 +15695 3 9.29159095272162 -100.29582943580077 19.2602 0.2741 15694 +15696 3 9.562735506835665 -99.07281636484882 19.2499 0.2733 15695 +15697 3 9.620948119162477 -97.97317145187553 19.267 0.2725 15696 +15698 3 9.75454673565762 -96.81687494159466 19.3204 0.2717 15697 +15699 3 9.404357333193524 -96.40107610104091 19.3869 0.2709 15698 +15700 3 8.36025923204297 -96.23245015538241 19.5161 0.2701 15699 +15701 3 7.529588419827277 -94.9123874128554 19.7175 0.2692 15700 +15702 3 6.703691671182355 -93.72981223527768 19.9048 0.2684 15701 +15703 3 6.150077392088939 -93.27542305925519 20.0459 0.2676 15702 +15704 3 6.279647635424915 -92.16337729779143 20.1448 0.2668 15703 +15705 3 6.19557755341193 -91.19781842450969 20.2035 0.266 15704 +15706 3 5.7687507271624625 -90.54477229312448 20.2242 0.2652 15705 +15707 3 4.978370592890862 -89.25326470768215 20.2183 0.2644 15706 +15708 3 4.337341230283542 -88.51439786077664 20.21 0.2636 15707 +15709 3 4.670963310130169 -87.35491326061903 20.2448 0.2628 15708 +15710 3 4.046661334781028 -87.13128798711988 20.1743 0.262 15709 +15711 3 3.1238218054222884 -86.27722981295125 20.0879 0.2612 15710 +15712 3 2.416628025194406 -85.28230446591088 19.9836 0.2604 15711 +15713 3 2.0826487991531337 -84.5002445215793 19.8496 0.2595 15712 +15714 3 1.5823291242816566 -83.87708409125275 19.6169 0.2587 15713 +15715 3 1.1351936276416907 -82.63662492926592 19.3377 0.2579 15714 +15716 3 0.8537839474527189 -81.438867547966 19.0812 0.2571 15715 +15717 3 0.5133835357233636 -80.29645855293964 18.8192 0.2563 15716 +15718 3 0.09375052940963258 -79.57868531249386 18.6083 0.2555 15717 +15719 3 -0.3436173462951828 -78.87266717936608 18.4402 0.2547 15718 +15720 3 -0.6913161903430094 -77.82141982573046 18.3047 0.2539 15719 +15721 3 -0.9226224584494318 -76.65192984421277 18.1768 0.2531 15720 +15722 3 -0.990428621952951 -75.62216396559637 17.9847 0.2523 15721 +15723 3 -0.9722838428435736 -74.69106056197204 17.705 0.2515 15722 +15724 3 -1.2755278262492382 -73.50920070582117 17.4564 0.2506 15723 +15725 3 -1.5075898516950161 -72.36336792446482 17.1965 0.2498 15724 +15726 3 -1.8439581351315866 -71.51435156767373 16.9296 0.249 15725 +15727 3 -2.0468909780754885 -70.60271088067836 16.6979 0.2482 15726 +15728 3 -1.846945258829571 -69.48359494082484 16.4596 0.2474 15727 +15729 3 -1.3361886351875256 -68.53958084123634 16.2074 0.2466 15728 +15730 3 -1.1726030231288078 -67.65198535258388 15.9459 0.2458 15729 +15731 3 -1.2663807287110345 -66.57697792545046 15.6604 0.245 15730 +15732 3 -1.7714946010087544 -65.61692676750278 15.4058 0.2442 15731 +15733 3 -2.1700657362531572 -64.86831951056702 15.1962 0.2434 15732 +15734 3 -2.329323162783105 -63.9127731859924 14.9955 0.2426 15733 +15735 3 -2.7876914176320895 -63.063663448366924 14.8407 0.2417 15734 +15736 3 -3.355245104611811 -61.87777033003626 14.7403 0.2409 15735 +15737 3 -3.3105660742283973 -60.907812982774395 14.6822 0.2401 15736 +15738 3 -3.5401851546068244 -59.80462879041139 14.6502 0.2393 15737 +15739 3 -3.8490942702750672 -58.77641807289571 14.6371 0.2385 15738 +15740 3 -3.5633596615045278 -57.81016258068521 14.6388 0.2377 15739 +15741 3 -3.4144760246520605 -56.84668285029399 14.6458 0.2369 15740 +15742 3 -3.5567107204862864 -55.75335513819287 14.6555 0.2361 15741 +15743 3 -4.05319712881667 -54.83868797424773 14.6691 0.2353 15742 +15744 3 -4.376588429811349 -53.96484618718031 14.6881 0.2345 15743 +15745 3 -4.485813302824923 -52.96551600712043 14.7163 0.2337 15744 +15746 3 -4.83188920983072 -52.10319685967104 14.7515 0.2328 15745 +15747 3 -4.856125067489501 -51.0606781053863 14.7991 0.232 15746 +15748 3 -4.558260522124343 -49.925151848376814 14.8794 0.2312 15747 +15749 3 -4.254737358390955 -48.792406087722185 14.9811 0.2304 15748 +15750 3 -4.284705949931308 -47.75253153082024 15.1838 0.2296 15749 +15751 3 -1.9610653006548855 -160.82794863931122 23.8529 0.3604 15499 +15752 3 -2.959370344973747 -159.84870941441056 24.6148 0.3536 15751 +15753 3 -4.080742638103484 -160.33182248344352 24.8942 0.3502 15752 +15754 3 -4.945872891692764 -159.17805968625467 25.2758 0.3469 15753 +15755 3 -5.929065735956952 -158.94635459647884 25.6547 0.3435 15754 +15756 3 -7.057841571974457 -158.34083263060205 25.9852 0.3401 15755 +15757 3 -8.181430008210969 -159.0221374106447 26.3436 0.3367 15756 +15758 3 -9.322756368685408 -158.174067859919 26.6535 0.3334 15757 +15759 3 -10.463184554401392 -159.2219367810213 26.9435 0.33 15758 +15760 3 -11.586858169451903 -158.36367732504823 27.2997 0.3266 15759 +15761 3 -12.360316928463394 -158.30892558022424 27.6847 0.3232 15760 +15762 3 -13.279026028940631 -157.06321921400664 28.1445 0.3199 15761 +15763 3 -14.292846927753182 -157.8670376437989 28.765 0.3165 15762 +15764 3 -14.788745393223465 -158.5266877199158 29.5344 0.3131 15763 +15765 3 -14.322963288987788 -159.47447153482128 30.464 0.3098 15764 +15766 3 -14.199276717104286 -160.16901045288844 31.3006 0.3064 15765 +15767 3 -15.185810366064267 -160.00463401671206 32.1012 0.303 15766 +15768 3 -16.21224865319515 -160.48301628610258 32.8574 0.2996 15767 +15769 3 -17.284236722489467 -160.33421436862585 33.5101 0.2963 15768 +15770 3 -18.3897183111944 -161.08022450333792 34.0738 0.2929 15769 +15771 3 -19.513428734908388 -160.3187518100714 34.5195 0.2895 15770 +15772 3 -20.580438244030706 -160.6015320581602 34.858 0.2861 15771 +15773 3 -21.484531046302184 -159.15976449950477 35.1464 0.2828 15772 +15774 3 -22.21120362406777 -158.81794109585726 35.3923 0.2794 15773 +15775 3 -22.982989017412635 -157.65926673090905 35.593 0.276 15774 +15776 3 -23.75647472026018 -156.57270356873696 35.779 0.2726 15775 +15777 3 -24.497720475773946 -156.24163128570686 35.9769 0.2693 15776 +15778 3 -25.255830367942718 -154.6874352507395 36.2258 0.2659 15777 +15779 3 -25.987193028938254 -153.95747402893363 36.5795 0.2625 15778 +15780 3 -26.725080989818167 -153.42887548059056 37.0507 0.2592 15779 +15781 3 -27.475784082152035 -151.85478268432828 37.6219 0.2558 15780 +15782 3 -27.90174983839264 -150.9761875128871 38.2463 0.2524 15781 +15783 3 -28.174963409691053 -150.09499616765547 38.8892 0.249 15782 +15784 3 -28.540379451949068 -149.2633862903764 39.5223 0.2457 15783 +15785 3 -29.352390774365613 -147.83660968814127 40.096 0.2423 15784 +15786 3 -29.94725765866115 -146.90784696250364 40.5992 0.2389 15785 +15787 3 -29.503613759936567 -145.64265585956096 41.0376 0.2355 15786 +15788 3 -28.77579456352543 -145.4281829208033 41.6147 0.2322 15787 +15789 3 -0.17905446014280457 -166.81697294690048 21.164 0.5148 15491 +15790 3 0.6938427181469855 -165.27902000783692 21.0802 0.469 15789 +15791 3 1.5174187813289368 -164.95832045104146 21.1027 0.4462 15790 +15792 3 1.7569437401103016 -164.0252617212405 21.1417 0.4233 15791 +15793 3 1.5119282170112296 -162.55054106386163 21.1672 0.4004 15792 +15794 3 1.3275533063305804 -161.12706405826353 21.1779 0.3775 15793 +15795 3 1.044510622171824 -159.72215558758387 21.1611 0.3546 15794 +15796 3 0.7858024249022151 -158.3431048283921 21.068 0.3604 15795 +15797 3 1.9571058970688107 -158.21799703288514 22.1892 0.3604 15796 +15798 3 2.9997404445752913 -157.1653332586056 22.4574 0.3572 15797 +15799 3 3.9594635515339665 -157.10502053699255 22.7053 0.3557 15798 +15800 3 4.813009531270893 -155.5790718661435 22.9591 0.3541 15799 +15801 3 5.706185879454566 -155.54304338051142 23.1995 0.3526 15800 +15802 3 6.619610900662902 -154.30678516277283 23.3923 0.351 15801 +15803 3 7.54040521275593 -153.88164085306119 23.5155 0.3494 15802 +15804 3 8.531147602915935 -154.07320663872002 23.5215 0.3479 15803 +15805 3 9.588447316965135 -153.43816722527856 23.5429 0.3463 15804 +15806 3 10.671775811698177 -153.45070067826498 23.5362 0.3448 15805 +15807 3 10.863779463936277 -152.54365750064593 23.5187 0.3432 15806 +15808 3 9.735671006011774 -152.09310222523717 23.5336 0.3416 15807 +15809 3 8.698569479847738 -152.56294123655036 23.5721 0.3401 15808 +15810 3 8.823717503898038 -151.71660306782442 23.8399 0.3385 15809 +15811 3 9.325691622565403 -150.38207954905843 24.2101 0.337 15810 +15812 3 9.63410798460041 -149.0436784507464 24.6765 0.3354 15811 +15813 3 10.160416590156961 -148.02107376601913 25.1557 0.3338 15812 +15814 3 10.844465622598863 -147.5941117170078 25.5455 0.3323 15813 +15815 3 11.431391449771146 -146.18253614113385 25.8668 0.3307 15814 +15816 3 12.03685527745151 -144.85337641101415 26.0845 0.3292 15815 +15817 3 12.929336862034585 -144.86983727822047 26.2053 0.3276 15816 +15818 3 13.80955971256501 -143.3998156146277 26.2576 0.326 15817 +15819 3 13.922381198843285 -142.23724803156114 26.2181 0.3245 15818 +15820 3 13.452698964205181 -141.53370509743272 26.1532 0.3229 15819 +15821 3 13.646396412051487 -140.2942184931164 26.1034 0.3214 15820 +15822 3 14.602226255103181 -140.0485325183748 26.0757 0.3198 15821 +15823 3 15.479314357826755 -139.16667427318342 26.1316 0.3182 15822 +15824 3 15.630678542682663 -137.8653618178289 26.2041 0.3167 15823 +15825 3 16.130171911246308 -136.62135021904157 26.2679 0.3151 15824 +15826 3 16.36557019627986 -135.6363790596186 26.3131 0.3136 15825 +15827 3 16.243486371067977 -134.3087434589727 26.3381 0.312 15826 +15828 3 16.10041143936716 -132.96069223293426 26.3052 0.3104 15827 +15829 3 15.803669567143476 -131.83444693025018 26.2469 0.3089 15828 +15830 3 16.065838385082465 -131.4010562474985 25.8707 0.2574 15829 +15831 3 16.782333830862882 -131.12993862633664 26.1527 0.2562 15830 +15832 3 17.691065215807985 -129.9729069094484 26.3134 0.2555 15831 +15833 3 18.6531365202787 -129.614974482796 26.4662 0.2549 15832 +15834 3 19.45325534320189 -128.75495684922248 26.6162 0.2543 15833 +15835 3 19.657203192057622 -127.41667404847351 26.7746 0.2537 15834 +15836 3 20.571576318462608 -126.82485138851172 26.9839 0.2531 15835 +15837 3 21.458351910899857 -126.20564408346337 27.2164 0.2524 15836 +15838 3 22.497859314852583 -125.59069267189582 27.5031 0.2518 15837 +15839 3 23.347349681508174 -125.19437207892814 27.8261 0.2512 15838 +15840 3 24.25111119597766 -123.79078794053775 28.1165 0.2506 15839 +15841 3 25.201173554958338 -124.02936267905449 28.3928 0.2499 15840 +15842 3 26.10970607815171 -122.33557505041354 28.6272 0.2493 15841 +15843 3 27.15081598920484 -122.84883595558756 28.819 0.2487 15842 +15844 3 28.282983815344338 -121.7405789950914 28.9862 0.2481 15843 +15845 3 29.384121497082113 -122.27414884026167 29.1525 0.2474 15844 +15846 3 30.044245327625234 -120.79715687633454 29.3502 0.2468 15845 +15847 3 30.590081100870055 -119.97953863971586 29.6814 0.2462 15846 +15848 3 31.565643783342274 -119.96415054067388 30.1006 0.2456 15847 +15849 3 32.63092988333005 -119.12079983543445 30.5239 0.245 15848 +15850 3 33.51618083931399 -118.97611849647929 31.0097 0.2443 15849 +15851 3 34.54506606621709 -117.87470312833977 31.4552 0.2437 15850 +15852 3 35.672398336860574 -118.23195194935806 31.8363 0.2431 15851 +15853 3 36.704929154096874 -117.57690954380385 32.2804 0.2425 15852 +15854 3 37.714304588406456 -117.51426759719247 32.7219 0.2419 15853 +15855 3 38.80674069066348 -116.92972637115155 33.1439 0.2412 15854 +15856 3 39.76329529599875 -116.67686803219082 33.4771 0.2406 15855 +15857 3 40.46924643537665 -115.20664283919494 33.7322 0.24 15856 +15858 3 41.269969029478695 -115.17245174812388 33.9296 0.2394 15857 +15859 3 42.151784320181775 -114.11709840046176 34.1113 0.2388 15858 +15860 3 43.006096124185774 -113.5167649683741 34.2958 0.2381 15859 +15861 3 43.78011184881143 -113.01482362139093 34.4817 0.2375 15860 +15862 3 44.54201401556431 -111.55585108679833 34.6755 0.2369 15861 +15863 3 45.37433627324388 -111.4989935476395 34.8533 0.2363 15862 +15864 3 46.14919519459726 -110.43901151931784 35.0081 0.2356 15863 +15865 3 46.629921406132105 -109.06557449096269 35.1464 0.235 15864 +15866 3 47.39177995424092 -108.94421152646768 35.317 0.2344 15865 +15867 3 48.315098136895244 -107.99841060378682 35.5376 0.2338 15866 +15868 3 49.216328674736786 -107.48361590578625 35.7728 0.2331 15867 +15869 3 50.1144378826323 -106.91431977873044 36.0394 0.2325 15868 +15870 3 51.01247652804767 -105.95435886946072 36.3236 0.2319 15869 +15871 3 51.910585735943144 -105.81676376165154 36.6114 0.2313 15870 +15872 3 52.80855352279233 -104.43834727630278 36.8908 0.2307 15871 +15873 3 53.875526608407725 -104.8643445699573 37.133 0.23 15872 +15874 3 54.720279776670964 -103.90466286069466 38.2407 0.2294 15873 +15875 3 15.688531207050755 -131.82249197350487 26.2252 0.3089 15829 +15876 3 14.866619212920945 -131.54669359996845 26.2427 0.3089 15875 +15877 3 13.851186125236826 -130.23270407040198 26.3031 0.3089 15876 +15878 3 13.022108251380185 -130.25887329112447 26.5095 0.3089 15877 +15879 3 12.22043131031388 -128.79950939758396 26.7684 0.3089 15878 +15880 3 11.346054584814848 -128.3029704721918 27.0135 0.3089 15879 +15881 3 10.345042688718419 -127.57335547612769 27.1803 0.3089 15880 +15882 3 9.509445126484732 -126.68435215644409 27.2753 0.3089 15881 +15883 3 9.193311896111709 -125.84572090067405 27.3061 0.3089 15882 +15884 3 9.61579582527854 -124.30154748637968 27.2494 0.3089 15883 +15885 3 9.717904142085498 -123.0776162784852 27.0768 0.3089 15884 +15886 3 8.967245166582092 -123.00767794335158 26.8864 0.3089 15885 +15887 3 7.887934921565559 -121.94979116646972 26.8513 0.3089 15886 +15888 3 6.809336871759278 -121.20334766694477 26.946 0.3089 15887 +15889 3 5.705105743769359 -122.06405636450143 27.1144 0.3089 15888 +15890 3 4.726802342673206 -120.64640947136093 27.2887 0.3089 15889 +15891 3 3.94123357882226 -120.57760733746308 27.4253 0.3089 15890 +15892 3 3.16695451569937 -119.17452603947504 27.505 0.3089 15891 +15893 3 2.4088446235305554 -118.20850322285233 27.5215 0.3089 15892 +15894 3 1.7629260198554917 -117.88882896538821 27.4668 0.3089 15893 +15895 3 1.2221029832268577 -116.35927596318272 27.3421 0.3089 15894 +15896 3 0.7968350454337809 -114.99382973131293 27.2104 0.3089 15895 +15897 3 0.38766542002858984 -114.23795961215465 27.1127 0.3089 15896 +15898 3 -0.3371981846318093 -114.07547455724469 27.0632 0.3089 15897 +15899 3 -1.366353945169358 -112.7709402377493 27.062 0.3089 15898 +15900 3 -2.3962924068822744 -113.14677042769517 27.0832 0.3089 15899 +15901 3 -3.4069476758620425 -111.82044682527139 27.1095 0.3089 15900 +15902 3 -4.303117642594195 -111.99592603303725 27.1277 0.3089 15901 +15903 3 -4.6109937703379344 -110.93503627562276 27.1422 0.3089 15902 +15904 3 -4.6343657052412155 -109.86572214694047 27.1717 0.3089 15903 +15905 3 -5.187146356348229 -108.56138795722907 27.1612 0.3089 15904 +15906 3 -6.15655908705363 -108.47248227515698 27.0694 0.3089 15905 +15907 3 -7.013072643889963 -107.57693207571914 26.9377 0.3089 15906 +15908 3 -7.663020118910602 -106.49078294955106 26.8068 0.3089 15907 +15909 3 -8.080223504031999 -105.86421504917374 26.7287 0.3089 15908 +15910 3 -8.08333669898294 -104.82900278919416 26.7239 0.3089 15909 +15911 3 -7.849500855439096 -103.59904991709752 26.7541 0.3089 15910 +15912 3 -7.898732707957464 -102.5971014317446 26.7949 0.3089 15911 +15913 3 -8.415315803151927 -102.08574236557801 26.8344 0.3089 15912 +15914 3 -9.34925603631443 -100.94564704352686 26.8668 0.3089 15913 +15915 3 -10.238161822731144 -100.68160888055247 26.889 0.3089 15914 +15916 3 -9.89811224540233 -99.46967661457808 26.8725 0.3089 15915 +15917 3 -9.872119944740234 -98.4017556102409 26.8328 0.3089 15916 +15918 3 -10.242435591079861 -97.71834576056932 26.9065 0.3089 15917 +15919 3 -10.508374416948648 -96.92028064372435 27.0479 0.3089 15918 +15920 3 -11.06543393006433 -95.71851047396046 27.1071 0.3089 15919 +15921 3 -11.991286421852664 -95.00011640146256 27.0775 0.3089 15920 +15922 3 -12.96141414399991 -94.80559269714311 27.126 0.3089 15921 +15923 3 -13.595904384661445 -93.49584166396689 27.0587 0.3089 15922 +15924 3 -14.02673539899481 -92.77504828978392 26.8645 0.3089 15923 +15925 3 -14.641085334148151 -92.34852098735377 26.7413 0.3089 15924 +15926 3 -15.570912513523872 -91.23050242333733 26.7 0.3089 15925 +15927 3 -16.704377732484517 -91.74166198904369 26.7602 0.3089 15926 +15928 3 -17.245455933910264 -91.4867712237993 27.0029 0.3089 15927 +15929 3 -16.480104608456877 -92.04356374884345 27.4987 0.3089 15928 +15930 3 -15.390460480276545 -91.75780772916464 28.0274 0.3089 15929 +15931 3 -14.786833509395407 -91.56933419292838 28.4682 0.3089 15930 +15932 3 -15.533209369570123 -90.4577961923975 28.8308 0.3089 15931 +15933 3 -16.54865933416253 -90.37942438922515 29.127 0.3089 15932 +15934 3 -17.342105914335278 -89.50159250028271 29.4955 0.3089 15933 +15935 3 -17.854582765723556 -88.27465267410142 29.834 0.3089 15934 +15936 3 -17.540501473526263 -87.48428570119682 30.1428 0.3089 15935 +15937 3 -16.729881906329624 -87.61770745096908 30.527 0.3089 15936 +15938 3 -17.50603433882914 -86.70152937864925 31.0358 0.3089 15937 +15939 3 -17.99994319102644 -85.6137567164962 31.4689 0.3089 15938 +15940 3 -18.61411014496351 -85.24344420244584 31.8357 0.3089 15939 +15941 3 -19.392376721362282 -84.3536481438391 32.2025 0.3089 15940 +15942 3 -19.758298530296685 -83.2536331963036 32.6872 0.3089 15941 +15943 3 -20.37136813259344 -83.50223370838955 33.2595 0.3089 15942 +15944 3 -21.383585786547968 -83.48191391566253 33.724 0.3089 15943 +15945 3 -21.96074879650829 -82.22529049882803 34.0886 0.3089 15944 +15946 3 -21.94209499377539 -81.21650676099127 34.3834 0.3089 15945 +15947 3 -21.431237310783814 -80.64047812816273 34.6326 0.3089 15946 +15948 3 -20.81355155771424 -79.96152646997632 34.785 0.3089 15947 +15949 3 -20.693803913344176 -78.8407816044218 34.879 0.3089 15948 +15950 3 -20.41291167005012 -77.66296817608199 34.981 0.3089 15949 +15951 3 -19.930433724015202 -76.543360128386 35.0792 0.3089 15950 +15952 3 -19.323218660021197 -76.0468305256456 35.1215 0.3089 15951 +15953 3 -18.98743136387879 -75.26277002661385 35.1624 0.3089 15952 +15954 3 -18.921815706850744 -74.18768738120887 35.2517 0.3089 15953 +15955 3 -19.10771575217114 -73.14376153316086 35.397 0.3089 15954 +15956 3 -19.131907492999453 -72.10667173569726 35.5653 0.3089 15955 +15957 3 -19.255563624528442 -71.01600566002352 35.7221 0.3089 15956 +15958 3 -20.022317157286174 -69.92613319840045 35.8422 0.3089 15957 +15959 3 -21.02494192349687 -69.89807135272034 35.9223 0.3089 15958 +15960 3 -21.900091283243555 -68.87333577616346 35.9685 0.3089 15959 +15961 3 -22.246871818677377 -67.83510039403853 35.9912 0.3089 15960 +15962 3 -22.419150048393547 -66.87928380112776 35.9839 0.3089 15961 +15963 3 -23.136715220735425 -66.54744664944822 35.9456 0.3089 15962 +15964 3 -23.897139556599654 -65.43140884515985 35.9934 0.3089 15963 +15965 3 -24.1219198245349 -64.34043857299642 36.1024 0.3089 15964 +15966 3 -24.100789525018378 -63.32903608761054 36.1323 0.3089 15965 +15967 3 -24.507455413717743 -62.444841612132244 36.1542 0.3089 15966 +15968 3 -24.420781640753937 -61.35243981712685 36.1872 0.3089 15967 +15969 3 -24.492748730008273 -60.34461592381791 36.2292 0.3089 15968 +15970 3 -25.023925432892533 -59.63939204686038 36.2746 0.3089 15969 +15971 3 -24.810800001289678 -59.351634746790474 35.6115 0.3089 15970 +15972 3 -24.438222384841637 -58.31975835292297 35.037 0.2974 15971 +15973 3 -24.718751265366826 -57.45314267086271 34.8326 0.2917 15972 +15974 3 -25.124664653674046 -56.611540516235316 34.6354 0.286 15973 +15975 3 -24.86878783880836 -55.584924088112494 34.3801 0.2803 15974 +15976 3 -25.2000602130721 -54.78825528992004 34.1194 0.2746 15975 +15977 3 -25.81683621638451 -53.859912680313876 33.8733 0.2688 15976 +15978 3 -26.27521107911374 -52.78710101846698 33.5261 0.2631 15977 +15979 3 -26.07925011438298 -51.9003398443872 33.1632 0.2574 15978 +15980 3 -26.099271360719108 -50.90399075530492 32.7342 0.2517 15979 +15981 3 -26.61508507861317 -49.80125113158916 32.3641 0.246 15980 +15982 3 -26.871065495977106 -49.0152091630462 31.8702 0.2402 15981 +15983 3 -27.175014808097558 -48.13404079900375 31.08 0.2345 15982 +15984 3 -24.988798228269346 -59.059529801314376 36.3871 0.3089 15970 +15985 3 -25.329957452184978 -58.22908984707265 36.5884 0.3042 15984 +15986 3 -26.063742924392365 -57.206271099844784 36.7643 0.3018 15985 +15987 3 -26.874364921708 -56.44474867738469 36.8889 0.2995 15986 +15988 3 -27.91394620160291 -56.48392377164686 37.0266 0.2971 15987 +15989 3 -28.997650284024722 -56.28281578430966 37.0597 0.2948 15988 +15990 3 -29.399338994081525 -55.47819888827095 36.9687 0.2924 15989 +15991 3 -29.724315925268357 -54.46121791359289 36.8337 0.29 15990 +15992 3 -30.421866332612936 -53.40126705536851 36.78 0.2877 15991 +15993 3 -31.232488329928614 -52.78981152367734 36.818 0.2853 15992 +15994 3 -32.043953820058135 -52.00143762918078 36.9452 0.283 15993 +15995 3 -33.02147466556435 -51.533805361035206 37.3304 0.2806 15994 +15996 3 -33.878396017130115 -52.30271151717086 37.877 0.2783 15995 +15997 3 -34.774851847629094 -52.265643827260746 38.4759 0.2759 15996 +15998 3 -35.64817160222865 -52.045614750978764 39.0684 0.2736 15997 +15999 3 -36.70881460760749 -51.306607798634886 39.5172 0.2712 15998 +16000 3 -37.7660935065584 -51.28863349667431 39.8532 0.2688 15999 +16001 3 -38.749218345003 -50.49050660516485 40.1134 0.2665 16000 +16002 3 -39.664675259602085 -50.157026307535624 40.2676 0.2641 16001 +16003 3 -40.56792762390665 -49.40163530475532 40.3214 0.2618 16002 +16004 3 -41.29136439451594 -48.32630493199773 40.3194 0.2594 16003 +16005 3 -41.98889061678531 -47.2855951784651 40.3903 0.2571 16004 +16006 3 -42.68067403824528 -46.747473454471454 40.5244 0.2547 16005 +16007 3 -43.46941811370025 -45.969410569789844 40.6171 0.2524 16006 +16008 3 -44.396164526927016 -45.290612729962916 40.6465 0.25 16007 +16009 3 -45.46557691550592 -45.072375891101935 40.6062 0.2476 16008 +16010 3 -46.39072082163232 -44.33812724629296 40.5502 0.2453 16009 +16011 3 -47.20859713443605 -43.877906375431145 40.448 0.2429 16010 +16012 3 -48.02486413015879 -42.887344578581335 40.2928 0.2406 16011 +16013 3 -48.953684565159264 -42.60669479782981 40.0098 0.2382 16012 +16014 3 -49.92335838729916 -42.265906729042904 39.5536 0.2359 16013 +16015 3 -50.75805777477436 -41.61875876180991 39.1432 0.2335 16014 +16016 3 -51.54841422215716 -41.01186298498947 38.2407 0.2312 16015 +16017 3 -0.029271846896975262 -157.9651057821099 20.7752 0.4633 15796 +16018 3 -0.4732838420870742 -157.55906076698915 20.6975 0.3089 16017 +16019 3 -1.1650808835081214 -156.0068448521223 20.6515 0.3089 16018 +16020 3 -1.167319886675557 -154.84418483736363 20.6333 0.3089 16019 +16021 3 -0.3314946581821907 -154.87050773259588 20.7252 0.3089 16020 +16022 3 0.4935866078843727 -153.4682242472358 20.9017 0.3089 16021 +16023 3 0.437930312730785 -152.3123932346719 21.0889 0.3089 16022 +16024 3 0.11686727749288295 -151.4401480502275 21.2339 0.3089 16023 +16025 3 0.18551544354914284 -150.94145749000793 21.2884 0.3089 16024 +16026 3 0.2778747787171447 -149.6503286877189 20.7375 0.3063 16025 +16027 3 0.23187242156097554 -148.50421002109854 20.4693 0.3051 16026 +16028 3 0.23916842376040748 -147.25465321071832 20.2252 0.3038 16027 +16029 3 0.12195340967464219 -146.1173745648513 20.0045 0.3025 16028 +16030 3 -0.1293989145709844 -145.1629442404833 19.7495 0.3012 16029 +16031 3 -0.525408576318064 -143.91082761973698 19.4029 0.3 16030 +16032 3 -0.6482547667495133 -142.6005455663675 19.0915 0.2987 16031 +16033 3 -0.22734284781370917 -141.87834271999984 18.8651 0.2974 16032 +16034 3 0.6180816367324979 -140.26298502501612 18.7026 0.2962 16033 +16035 3 1.6411184540706039 -140.4184068306217 18.5979 0.2949 16034 +16036 3 2.525508542145971 -139.125815786376 18.5445 0.2936 16035 +16037 3 3.0775283361043826 -138.04255584257754 18.5255 0.2924 16036 +16038 3 3.3624494507439735 -137.10728344810363 18.5126 0.2911 16037 +16039 3 3.5452776917388285 -136.0840623447289 18.4949 0.2898 16038 +16040 3 3.6788122596482964 -135.00826688444968 18.4697 0.2885 16039 +16041 3 3.65294665496695 -133.7475633274916 18.4337 0.2873 16040 +16042 3 3.6060801729550285 -132.46809720394023 18.384 0.286 16041 +16043 3 3.7023400801969935 -131.34755332213527 18.3179 0.2847 16042 +16044 3 4.045580849665242 -130.04598900575797 18.2296 0.2835 16043 +16045 3 4.5530711692816155 -128.44629271154236 18.0775 0.2822 16044 +16046 3 4.918116243283581 -127.12582685716855 17.8646 0.2809 16045 +16047 3 4.770982939740659 -125.89519405676477 17.6403 0.2796 16046 +16048 3 4.265726650023797 -125.3166351013903 17.3987 0.2784 16047 +16049 3 3.6758604291592825 -124.72577515798935 17.0289 0.2771 16048 +16050 3 3.3315977485787727 -123.31865301727692 16.5507 0.2758 16049 +16051 3 3.8823229649916264 -122.81775891668994 16.0907 0.2746 16050 +16052 3 4.403007002082742 -121.28189496609775 15.6069 0.2733 16051 +16053 3 5.020787004521267 -120.11743307227778 15.0547 0.272 16052 +16054 3 5.676614029748077 -121.56413623739813 14.4275 0.2708 16053 +16055 3 4.714279001623488 -120.43661325609317 13.7562 0.2695 16054 +16056 3 4.2060008810224225 -120.02315493605695 13.1741 0.2682 16055 +16057 3 4.649658103621988 -118.46321249651066 12.6461 0.2669 16056 +16058 3 5.332179444763568 -117.96603742238993 12.112 0.2657 16057 +16059 3 5.390333178340516 -117.10018454581166 11.6892 0.2644 16058 +16060 3 4.52885300797578 -116.10734229722961 11.3311 0.2631 16059 +16061 3 4.159563337479895 -115.52166053521105 10.9345 0.2619 16060 +16062 3 4.170179827463219 -114.48382445506644 10.5191 0.2606 16061 +16063 3 4.613277654329572 -113.62623193882838 9.9809 0.2593 16062 +16064 3 4.4531157977619 -113.08312595829044 9.4648 0.258 16063 +16065 3 3.682492744500937 -113.37212452077658 9.0358 0.2568 16064 +16066 3 4.033841887385265 -112.25109854608264 8.6809 0.2555 16065 +16067 3 3.6052023894118577 -111.6391132867094 8.2911 0.2542 16066 +16068 3 2.62252138404682 -110.7319851127024 7.851 0.2529 16067 +16069 3 1.9026455231431356 -110.68676751446466 7.5183 0.2517 16068 +16070 3 1.4838933164931518 -109.65190794542063 7.2174 0.2504 16069 +16071 3 0.8670769514838739 -108.24144031501073 6.9352 0.2491 16070 +16072 3 -0.032140027580652486 -108.13912307788331 6.7095 0.2479 16071 +16073 3 -0.9895339479685461 -107.26350538362071 6.5374 0.2466 16072 +16074 3 -1.6789691719165418 -106.43147546975575 6.3482 0.2453 16073 +16075 3 -1.5896220988914394 -105.43402548665868 6.1386 0.244 16074 +16076 3 -0.9654720396761647 -104.67387911927337 5.9294 0.2428 16075 +16077 3 -0.48716814116676943 -104.14072446783327 5.6703 0.2415 16076 +16078 3 -0.4449356088840375 -103.15108623221812 5.3851 0.2402 16077 +16079 3 -0.29192529828371505 -102.16155449483628 5.1358 0.239 16078 +16080 3 -0.3962168133991213 -101.12909500477062 4.9106 0.2377 16079 +16081 3 -1.0541574843388304 -99.77247160364077 4.6726 0.2364 16080 +16082 3 -1.7331330825118627 -98.954097968239 4.4677 0.2352 16081 +16083 3 -2.282884298481612 -98.45397977343387 4.3032 0.2339 16082 +16084 3 -2.7179203553962807 -97.3242245363874 4.1656 0.2326 16083 +16085 3 -2.9750192355849023 -96.10316823289011 4.0445 0.2313 16084 +16086 3 -2.6760871542060514 -95.4421522651566 3.3743 0.2301 16085 +16087 3 -0.3915942094811715 -151.3763890274633 21.3494 0.3089 16024 +16088 3 -1.3820686091555707 -150.07764137246855 21.4369 0.308 16087 +16089 3 -2.2176460375337115 -150.04067943723 21.4967 0.3075 16088 +16090 3 -2.8562931527263213 -148.45514506690702 21.5543 0.3071 16089 +16091 3 -3.5295123301289717 -147.35177597808013 21.6524 0.3066 16090 +16092 3 -4.172947627039839 -146.98826095196944 21.7631 0.3062 16091 +16093 3 -4.431689079939559 -145.80279984287588 21.8544 0.3057 16092 +16094 3 -4.543319887256725 -144.45342267721463 21.9269 0.3053 16093 +16095 3 -5.17851495844657 -142.84755562439028 21.9802 0.3049 16094 +16096 3 -6.237037508132026 -143.4147036305494 22.0194 0.3044 16095 +16097 3 -7.066176375727423 -141.93908810171834 22.1129 0.304 16096 +16098 3 -7.443756902669264 -140.5763284149382 22.1756 0.3035 16097 +16099 3 -7.702478719899915 -139.65134899781773 22.1764 0.3031 16098 +16100 3 -7.927265999916024 -138.68560391578131 22.1173 0.3026 16099 +16101 3 -8.036403137455125 -137.57821090629182 22.0624 0.3022 16100 +16102 3 -8.888125753812432 -136.5907368718503 22.0123 0.3017 16101 +16103 3 -9.94628545242713 -136.1608813127379 21.9684 0.3013 16102 +16104 3 -10.875539357493334 -135.47016309803323 21.9431 0.3008 16103 +16105 3 -11.630544796624342 -134.1261157522814 21.9349 0.3004 16104 +16106 3 -12.28762885297558 -133.83020488724867 21.936 0.2999 16105 +16107 3 -13.106281353060286 -132.5657264706127 21.9375 0.2995 16106 +16108 3 -13.263688044214692 -131.3887540915539 21.9397 0.299 16107 +16109 3 -13.027182359657054 -130.50512781344867 21.9426 0.2986 16108 +16110 3 -13.730137343487037 -129.4355204455443 21.9469 0.2981 16109 +16111 3 -14.681950812239993 -129.33187239570344 21.9528 0.2977 16110 +16112 3 -15.579764348056127 -127.78010738718727 21.9608 0.2972 16111 +16113 3 -16.235248656067686 -127.4450314904002 21.9722 0.2968 16112 +16114 3 -16.84884283388172 -126.41334334111968 21.9887 0.2964 16113 +16115 3 -17.625503848333242 -124.82442903969552 22.0118 0.2959 16114 +16116 3 -18.519224760304272 -124.96600455887896 22.0421 0.2955 16115 +16117 3 -19.564515143706835 -123.59209948739884 22.0797 0.295 16116 +16118 3 -20.63068491514885 -124.14216880374526 22.1468 0.2946 16117 +16119 3 -21.64454904744887 -122.55118454328426 22.2578 0.2941 16118 +16120 3 -22.592266339323306 -122.81908977637177 22.3658 0.2937 16119 +16121 3 -23.519978232841467 -121.30609640020634 22.4507 0.2932 16120 +16122 3 -24.42018408300006 -121.10505699429889 22.5313 0.2928 16121 +16123 3 -25.47004611518835 -120.25938268273978 22.6344 0.2923 16122 +16124 3 -26.472983486901544 -121.2331583165344 22.6891 0.2919 16123 +16125 3 -27.56756748687451 -120.65014416778112 22.6502 0.2914 16124 +16126 3 -28.035558980751293 -119.60460754855814 22.6024 0.291 16125 +16127 3 -27.797613340367853 -118.13626236114528 22.5565 0.2905 16126 +16128 3 -28.456441324865793 -117.84003659854596 22.5124 0.2901 16127 +16129 3 -29.261418323774407 -116.88503452398564 22.4727 0.2896 16128 +16130 3 -30.064772385640953 -115.77287654125256 22.4434 0.2892 16129 +16131 3 -30.79225490450415 -115.61827718791449 22.4209 0.2887 16130 +16132 3 -31.416228280785575 -114.32480175946705 22.3937 0.2883 16131 +16133 3 -31.77761269293724 -113.00808095068838 22.3593 0.2879 16132 +16134 3 -32.684374339849676 -112.91576456207382 22.2963 0.2874 16133 +16135 3 -33.61267638458561 -111.9768547602284 22.1848 0.287 16134 +16136 3 -34.184181274364185 -110.92742500103932 22.1019 0.2865 16135 +16137 3 -34.741126108169254 -110.52198795030024 22.0445 0.2861 16136 +16138 3 -35.732773097911696 -109.7987112022443 21.9873 0.2856 16137 +16139 3 -36.76217973245539 -110.34429157673237 21.9446 0.2852 16138 +16140 3 -37.65331853888709 -109.47813538945636 22.0247 0.2847 16139 +16141 3 -38.33227045017132 -108.49158219265765 22.1467 0.2843 16140 +16142 3 -39.01124930529157 -108.21888043068769 22.2415 0.2838 16141 +16143 3 -39.71289233648133 -106.94880742587982 22.3076 0.2834 16142 +16144 3 -40.454897106281635 -105.53673126019909 22.3471 0.2829 16143 +16145 3 -41.381617073858834 -104.52197836286916 22.3281 0.2825 16144 +16146 3 -42.36805579220711 -104.55393531470543 22.2534 0.282 16145 +16147 3 -43.24088369617751 -103.18108272474277 22.1931 0.2816 16146 +16148 3 -43.91899537159509 -102.88841816432614 22.1639 0.2811 16147 +16149 3 -44.63674658000018 -102.0811566125377 22.1815 0.2807 16148 +16150 3 -45.65593712205234 -101.50576014130597 22.2735 0.2802 16149 +16151 3 -46.57189930514132 -101.35768029765575 22.351 0.2798 16150 +16152 3 -47.26779272554117 -99.99971707200416 22.4236 0.2794 16151 +16153 3 -48.121791980557575 -99.90884290528227 22.597 0.2789 16152 +16154 3 -49.206309261024124 -99.25600502735315 22.8101 0.2785 16153 +16155 3 -50.259508657904604 -99.39346280523296 23.0418 0.278 16154 +16156 3 -51.11848233280273 -98.3348518833539 23.2494 0.2776 16155 +16157 3 -51.92995107987951 -97.66467746811819 23.4088 0.2771 16156 +16158 3 -52.864063729144085 -97.23601206848124 23.5137 0.2767 16157 +16159 3 -53.825541000721834 -96.3607382527434 23.5648 0.2762 16158 +16160 3 -54.917374088601676 -96.38117564676654 23.582 0.2758 16159 +16161 3 -56.038265039701606 -96.38340821691577 23.5775 0.2753 16160 +16162 3 -57.179530904623725 -96.41986616113354 23.5594 0.2749 16161 +16163 3 -58.30752749851333 -96.41766684348386 23.54 0.2744 16162 +16164 3 -59.29323088946391 -95.66764085220304 23.5101 0.274 16163 +16165 3 -60.324029720899006 -95.3971658397217 23.4659 0.2735 16164 +16166 3 -61.44726211604526 -94.97073402943758 23.3952 0.2731 16165 +16167 3 -62.44558433335854 -94.8412962161167 23.2081 0.2726 16166 +16168 3 -63.49564267063801 -94.13146436589598 23.0209 0.2722 16167 +16169 3 -64.52087742916002 -93.98073609383475 22.8815 0.2717 16168 +16170 3 -65.17804566795242 -93.08122164405104 22.7927 0.2713 16169 +16171 3 -65.6873981345477 -91.80863996561813 22.7551 0.2709 16170 +16172 3 -66.30261850635098 -91.04937029554743 22.7665 0.2704 16171 +16173 3 -67.12050518216853 -90.63582108562854 22.8204 0.27 16172 +16174 3 -68.17302313932333 -89.67242055311041 22.8968 0.2695 16173 +16175 3 -69.27962644780021 -89.99742386533195 23.0741 0.2691 16174 +16176 3 -70.31599871878936 -89.31551571654941 23.2894 0.2686 16175 +16177 3 -71.18877619413522 -89.0274253158407 23.4572 0.2682 16176 +16178 3 -72.08649518449637 -87.78021074604715 23.5805 0.2677 16177 +16179 3 -73.15669057033679 -88.0751117962057 23.6626 0.2673 16178 +16180 3 -74.16903282494422 -86.92933760095595 23.7076 0.2668 16179 +16181 3 -75.1240584139646 -87.02408671913192 23.7203 0.2664 16180 +16182 3 -76.23037999896495 -86.12821694895834 23.7206 0.2659 16181 +16183 3 -77.37423023000069 -86.72769321064865 23.7212 0.2655 16182 +16184 3 -78.50039396179592 -86.22115989998741 23.7219 0.265 16183 +16185 3 -79.55780116001849 -86.15810140175975 23.7229 0.2646 16184 +16186 3 -80.62553011600305 -85.49003579976679 23.7243 0.2641 16185 +16187 3 -81.74388639185626 -85.54299241325094 23.7263 0.2637 16186 +16188 3 -82.85202745856114 -85.50270012389238 23.729 0.2632 16187 +16189 3 -83.85943359650955 -85.04565331274817 23.7329 0.2628 16188 +16190 3 -84.83137700775679 -84.41065486736957 23.7383 0.2624 16189 +16191 3 -85.91768382775975 -84.17981367502853 23.7459 0.2619 16190 +16192 3 -87.0039870947295 -83.81027752731568 23.7562 0.2615 16191 +16193 3 -88.0999705432459 -83.45481669896856 23.7707 0.261 16192 +16194 3 -89.22728549530962 -82.5688515983882 23.7921 0.2606 16193 +16195 3 -90.27061166249925 -82.48311520461327 23.8223 0.2601 16194 +16196 3 -91.00859792396784 -81.63057531048402 23.8608 0.2597 16195 +16197 3 -91.70857064433787 -80.4688452906147 23.9072 0.2592 16196 +16198 3 -92.66918704800713 -80.52442140492533 23.9929 0.2588 16197 +16199 3 -93.67728745136974 -79.50509553405445 24.1483 0.2583 16198 +16200 3 -94.58310099308554 -79.39802561900679 24.2892 0.2579 16199 +16201 3 -95.38968405212783 -78.35864394633619 24.3527 0.2574 16200 +16202 3 -96.1873389318291 -77.63815427791693 24.3049 0.257 16201 +16203 3 -96.98655269998676 -77.18701668951039 24.1932 0.2565 16202 +16204 3 -97.7293372101014 -75.98620647240146 24.0915 0.2561 16203 +16205 3 -98.37760776642209 -75.27641923846849 24.0198 0.2556 16204 +16206 3 -99.15191682822795 -74.74994301223543 23.9971 0.2552 16205 +16207 3 -100.1567919895484 -73.90421703873456 24.0304 0.2547 16206 +16208 3 -101.15366644468251 -73.852508880487 24.1508 0.2543 16207 +16209 3 -101.9948311346762 -72.73564840107345 24.3494 0.2539 16208 +16210 3 -102.81997538292904 -72.38630269672434 24.5364 0.2534 16209 +16211 3 -103.67497437023981 -71.4364664322315 24.6788 0.253 16210 +16212 3 -104.6179005195349 -70.74194254112665 24.7741 0.2525 16211 +16213 3 -105.63257103989912 -70.30916828985545 24.8241 0.2521 16212 +16214 3 -106.67531712279867 -69.88927032061564 24.885 0.2516 16213 +16215 3 -107.6221392947616 -69.48778943181107 24.9559 0.2512 16214 +16216 3 -108.60250990765095 -68.98572225863907 24.8998 0.2507 16215 +16217 3 -109.68507609367929 -69.03865142825146 24.6827 0.2503 16216 +16218 3 -110.58987983617294 -68.30308115757445 24.3662 0.2498 16217 +16219 3 -111.4028704609422 -67.97446621610901 24.0526 0.2494 16218 +16220 3 -112.29820749997475 -66.86244610980945 23.7791 0.2489 16219 +16221 3 -113.25087482455537 -66.64452401996029 23.5532 0.2485 16220 +16222 3 -114.1171265018304 -65.74188119894279 23.3444 0.248 16221 +16223 3 -114.9147541416095 -65.03688939404601 23.1024 0.2476 16222 +16224 3 -115.82858811916651 -64.5979911963048 22.8794 0.2471 16223 +16225 3 -116.78048251341338 -63.73844599837472 22.6946 0.2467 16224 +16226 3 -117.6282034983473 -63.4400431059773 22.5376 0.2462 16225 +16227 3 -118.43882549566298 -62.3178736321909 22.403 0.2458 16226 +16228 3 -119.24944749297866 -61.73971441358165 22.2873 0.2454 16227 +16229 3 -120.06006949029434 -61.04977713559091 22.1813 0.2449 16228 +16230 3 -120.81489244639548 -60.008422754887164 21.9812 0.2445 16229 +16231 3 -121.41544183804834 -59.41661887470767 21.7549 0.244 16230 +16232 3 -122.21472320782496 -58.68527950168473 21.5517 0.2436 16231 +16233 3 -123.1649205495164 -57.923331861370194 21.3755 0.2431 16232 +16234 3 -124.01426091845902 -57.526590051569315 21.2229 0.2427 16233 +16235 3 -124.81921423047876 -56.41787997765529 21.0491 0.2422 16234 +16236 3 -125.61120042488413 -55.94414481111684 20.822 0.2418 16235 +16237 3 -126.41693318113207 -55.171725227271935 20.6028 0.2413 16236 +16238 3 -127.18796281713759 -54.193059192926626 20.4077 0.2409 16237 +16239 3 -127.80487017456855 -53.5568678057144 20.2395 0.2404 16238 +16240 3 -128.38203012968194 -52.681303820077616 20.0964 0.24 16239 +16241 3 -128.98023132382278 -51.51180755697796 19.9546 0.2395 16240 +16242 3 -129.41104595943432 -50.63254848723998 19.7228 0.2391 16241 +16243 3 -129.59545086879788 -49.69925953773707 19.4975 0.2386 16242 +16244 3 -129.84767738482708 -48.765770824035855 19.3085 0.2382 16243 +16245 3 -130.53148448727632 -47.946960395609544 19.1504 0.2377 16244 +16246 3 -131.4953976918406 -47.20755965484295 19.0185 0.2373 16245 +16247 3 -132.38022417828722 -46.84078106384817 18.909 0.2369 16246 +16248 3 -133.19163193162512 -45.80921494604934 18.7471 0.2364 16247 +16249 3 -133.99090974836847 -45.269077716761736 18.533 0.236 16248 +16250 3 -134.79990199866157 -44.491810052424576 18.335 0.2355 16249 +16251 3 -135.4457633637315 -43.48481932481519 18.1716 0.2351 16250 +16252 3 -135.87994586090457 -42.5719405886758 18.039 0.2346 16251 +16253 3 -136.52665071878835 -41.89562852654574 17.9312 0.2342 16252 +16254 3 -137.31136947593103 -40.93105559020482 17.8435 0.2337 16253 +16255 3 -138.1090785393905 -39.924318466963854 17.7602 0.2333 16254 +16256 3 -139.09071249519835 -39.33440278009733 17.611 0.2328 16255 +16257 3 -140.1542527873235 -39.0783728315307 17.366 0.2324 16256 +16258 3 -141.17786135185625 -38.28628062510829 17.1568 0.2319 16257 +16259 3 -142.11995407526518 -37.77424972443725 16.9992 0.2315 16258 +16260 3 -143.06688866596426 -37.054622195422304 16.8489 0.231 16259 +16261 3 -143.97019471584065 -36.681150750481684 16.6481 0.2306 16260 +16262 3 -144.7816602059701 -35.722354398421466 16.522 0.2301 16261 +16263 3 -145.58172427692213 -35.127297772289545 16.5322 0.2297 16262 +16264 3 -146.36804178603163 -34.41000140256756 16.9422 0.2292 16263 +16265 3 0.6060495351169841 -156.70823702846616 19.8531 0.3089 16017 +16266 3 1.3711471473293244 -156.11354899543895 19.6278 0.3075 16265 +16267 3 2.0997425310214783 -155.33790265969432 19.543 0.3068 16266 +16268 3 2.856819505292254 -153.82498988960384 19.458 0.3061 16267 +16269 3 3.4930326937557474 -153.3196577962258 19.3377 0.3054 16268 +16270 3 3.7779943721924756 -152.45811880717193 19.1862 0.3047 16269 +16271 3 3.962526475723255 -151.1265447368823 19.0559 0.3041 16270 +16272 3 4.390611784653132 -149.66303725066845 18.927 0.3034 16271 +16273 3 4.941049003266313 -148.2396282787463 18.7784 0.3027 16272 +16274 3 5.32059639645024 -147.39364483815493 18.5809 0.302 16273 +16275 3 5.647617364239483 -146.51822633594657 18.3528 0.3013 16274 +16276 3 6.0709115305900365 -145.38941952942554 18.0739 0.3006 16275 +16277 3 6.874340976469698 -143.95183400251994 17.7464 0.2999 16276 +16278 3 7.789517233991676 -144.00259758670273 17.4352 0.2992 16277 +16279 3 8.707848373176017 -144.04704300854624 17.1743 0.2985 16278 +16280 3 9.435637570904216 -142.82578301421054 16.9976 0.2978 16279 +16281 3 10.092986247764074 -141.58920138842169 16.9125 0.2971 16280 +16282 3 10.390972780606752 -140.72560877486808 16.9817 0.2965 16281 +16283 3 10.896040787197762 -140.12191293449484 17.1028 0.2958 16282 +16284 3 11.677361754122437 -138.57048531858067 17.2155 0.2951 16283 +16285 3 12.150846974044196 -137.46984632668455 17.3083 0.2944 16284 +16286 3 11.976297919276718 -136.13457395193078 17.3784 0.2937 16285 +16287 3 12.64034856544308 -135.8292592824864 17.4445 0.293 16286 +16288 3 13.458073958485745 -134.77179482667572 17.4833 0.2923 16287 +16289 3 14.336606068254802 -133.89145128460362 17.4992 0.2916 16288 +16290 3 15.07583675077122 -133.43777352265542 17.4956 0.2909 16289 +16291 3 15.691831264893025 -131.8436223253897 17.4703 0.2902 16290 +16292 3 15.623073241059274 -130.7015750123799 17.4128 0.2895 16291 +16293 3 15.609371622875305 -129.49556973613235 17.313 0.2889 16292 +16294 3 16.294352085705814 -128.49000121985625 17.2088 0.2882 16293 +16295 3 17.337857864134737 -128.4316172731804 17.054 0.2875 16294 +16296 3 18.058470118835537 -126.88878032556788 16.8441 0.2868 16295 +16297 3 18.527092839425354 -126.25352261576737 16.7017 0.2861 16296 +16298 3 18.818465636622403 -125.37241694585532 16.6428 0.2854 16297 +16299 3 19.117899433457822 -124.36798701952935 16.5784 0.2847 16298 +16300 3 19.206945589008914 -123.10064505783332 16.4254 0.284 16299 +16301 3 19.04526890430041 -122.0502060669745 16.2796 0.2833 16300 +16302 3 18.951480835704363 -120.75270175810925 16.1652 0.2826 16301 +16303 3 19.14494792855676 -119.58861127669611 15.9956 0.282 16302 +16304 3 19.22530612458814 -118.40803139673248 15.7259 0.2813 16303 +16305 3 18.538341085629664 -117.12030741232213 15.4456 0.2806 16304 +16306 3 17.609093990543958 -116.41670141596624 15.2182 0.2799 16305 +16307 3 16.99483199296543 -116.07637724760706 15.0238 0.2792 16306 +16308 3 16.794348702969128 -114.83877811176328 14.8496 0.2785 16307 +16309 3 16.52508307752231 -113.582980140849 14.6647 0.2778 16308 +16310 3 15.869555150866688 -112.40962712148112 14.4393 0.2771 16309 +16311 3 15.0961536304603 -112.33066004912904 14.2057 0.2764 16310 +16312 3 14.354981990460008 -111.04365111459296 13.9919 0.2757 16311 +16313 3 13.540358361720877 -110.34612851682475 13.7825 0.2751 16312 +16314 3 12.750723917860878 -109.93154803003512 13.5817 0.2744 16313 +16315 3 12.254355445788256 -108.56367302583644 13.4016 0.2737 16314 +16316 3 12.392074626337447 -107.70039284744742 13.2378 0.273 16315 +16317 3 12.843701654053348 -107.10791540465404 13.0944 0.2723 16316 +16318 3 12.772682872095956 -106.02923409009192 12.9704 0.2716 16317 +16319 3 12.366023793377103 -104.71446722300246 12.8006 0.2709 16318 +16320 3 11.953689219381829 -103.38331329418415 12.6079 0.2702 16319 +16321 3 11.315055428064234 -103.00193787932075 12.4382 0.2695 16320 +16322 3 10.723356345105366 -102.27866211372984 12.2987 0.2688 16321 +16323 3 10.40153399949478 -101.0048797522968 12.182 0.2682 16322 +16324 3 10.05309301806868 -99.73963632993998 12.0229 0.2675 16323 +16325 3 9.498479504867284 -98.97259659380592 11.8869 0.2668 16324 +16326 3 9.120895720978226 -98.25654815457337 11.7769 0.2661 16325 +16327 3 9.341832250627 -97.06818135418351 11.682 0.2654 16326 +16328 3 10.187341119714645 -96.26051341740343 11.5262 0.2647 16327 +16329 3 10.590386613040586 -95.59323727620624 11.3983 0.264 16328 +16330 3 10.000263295446402 -94.26276725245344 11.3041 0.2633 16329 +16331 3 10.116042860109303 -93.2926054720516 11.2283 0.2626 16330 +16332 3 10.244691443898319 -92.33216229166345 11.1635 0.2619 16331 +16333 3 10.188947709356285 -91.25113122176195 11.1051 0.2612 16332 +16334 3 9.421936581682488 -90.54149557239457 11.0473 0.2606 16333 +16335 3 8.622611391161563 -90.06336261105477 10.9718 0.2599 16334 +16336 3 7.973497342026988 -88.72940518056213 10.8641 0.2592 16335 +16337 3 7.35028377430465 -87.43468376805758 10.6721 0.2585 16336 +16338 3 6.983230380770934 -86.2385500288574 10.4795 0.2578 16337 +16339 3 6.317249140134521 -85.51337656673724 10.2191 0.2571 16338 +16340 3 5.417904157884415 -85.12960840700545 9.9232 0.2564 16339 +16341 3 5.022866988509598 -84.01897802693463 9.6628 0.2557 16340 +16342 3 5.809846277716346 -83.66573920111522 9.4505 0.255 16341 +16343 3 6.314605616994768 -82.61143266423686 9.2543 0.2543 16342 +16344 3 5.806255937540747 -82.08291533901016 9.0014 0.2536 16343 +16345 3 5.688214307549416 -81.11876094503397 8.765 0.253 16344 +16346 3 5.50631589365242 -79.97602819968277 8.589 0.2523 16345 +16347 3 5.460259352738035 -78.90950741053646 8.4356 0.2516 16346 +16348 3 5.695829555687261 -78.02187595151801 8.28 0.2509 16347 +16349 3 6.198461131105304 -76.75853279859496 8.1921 0.2502 16348 +16350 3 6.954634117009931 -75.87710090521307 8.1876 0.2495 16349 +16351 3 7.52379833305541 -75.31174979415623 8.26 0.2488 16350 +16352 3 7.6856325067001094 -74.37436019937839 8.3399 0.2481 16351 +16353 3 7.883934858962334 -73.48780830982518 8.4209 0.2474 16352 +16354 3 8.452150767710911 -72.93728776286936 8.4998 0.2467 16353 +16355 3 9.165379909465614 -71.98658275972484 8.5694 0.2461 16354 +16356 3 10.003458291829553 -71.10026374202425 8.6322 0.2454 16355 +16357 3 10.983491065551576 -70.93547743096148 8.7286 0.2447 16356 +16358 3 11.929602423833728 -69.97730688602724 8.8649 0.244 16357 +16359 3 12.806532026502417 -69.81402994729726 8.9992 0.2433 16358 +16360 3 13.694171043508724 -68.71935608801735 9.1437 0.2426 16359 +16361 3 14.616578427816364 -68.40510671693815 9.263 0.2419 16360 +16362 3 15.69934115850711 -67.95441973819334 9.3348 0.2412 16361 +16363 3 16.746394226680593 -68.06599518953458 9.3612 0.2405 16362 +16364 3 17.52127407616201 -67.10816766468285 9.3088 0.2399 16363 +16365 3 18.083061989242005 -66.03927988669268 9.2214 0.2392 16364 +16366 3 18.75580740490861 -65.52512653529064 9.1406 0.2385 16365 +16367 3 19.405898509333205 -64.61134901847042 9.1032 0.2378 16366 +16368 3 19.902834455619285 -63.40107407581238 9.0975 0.2371 16367 +16369 3 20.608026284624508 -62.82937722428731 9.0745 0.2364 16368 +16370 3 21.405496194662007 -62.10555009072249 8.9915 0.2357 16369 +16371 3 22.153591007933777 -61.034952966285076 8.8346 0.235 16370 +16372 3 22.855499952091122 -60.52995452362209 8.6143 0.2343 16371 +16373 3 23.276455691771268 -59.65699142967733 8.2842 0.2336 16372 +16374 3 23.26922944303361 -58.622820486861464 7.9505 0.2329 16373 +16375 3 23.043686109591995 -57.639739924863584 7.599 0.2323 16374 +16376 3 22.864126324465694 -56.531599552928974 7.2959 0.2316 16375 +16377 3 23.013121679767636 -55.57173356556983 6.9965 0.2309 16376 +16378 3 23.506032011655357 -54.480467446467244 6.7393 0.2302 16377 +16379 3 23.23525812847707 -53.61676764930318 6.186 0.2295 16378 +16380 3 -3.283761024406381 -181.13305742973682 20.8662 0.5663 1 +16381 3 -4.155613583258053 -181.1859310128354 20.9057 0.429 16380 +16382 3 -5.156517407924116 -179.8541676853323 21.0507 0.3604 16381 +16383 3 -4.886382653032207 -178.7396412806492 21.3217 0.3604 16382 +16384 3 -5.1336819208570175 -177.43743081971758 21.4388 0.3568 16383 +16385 3 -5.8385607592030455 -176.96238081856373 21.5354 0.355 16384 +16386 3 -6.597453648633338 -176.08190326172917 21.6169 0.3533 16385 +16387 3 -7.182690982106991 -174.44473740651952 21.7359 0.3515 16386 +16388 3 -7.889128506809115 -174.0467623379614 21.9128 0.3497 16387 +16389 3 -8.861811094573481 -173.2391523199488 22.0949 0.3479 16388 +16390 3 -9.715136218031235 -172.39098500532376 22.2459 0.3462 16389 +16391 3 -10.049054450333788 -171.60042982576852 22.3624 0.3444 16390 +16392 3 -10.197021880049565 -170.5244038221166 22.4494 0.3426 16391 +16393 3 -10.509949800135665 -169.29744398598513 22.515 0.3408 16392 +16394 3 -10.87214089643765 -167.72325565742722 22.5742 0.3391 16393 +16395 3 -11.111572212768122 -166.25346482269515 22.6443 0.3373 16394 +16396 3 -11.497213739348368 -164.9534832115132 22.7341 0.3355 16395 +16397 3 -12.130985233434313 -164.61723135785923 22.8721 0.3337 16396 +16398 3 -13.07540907534669 -163.824705629952 23.0915 0.332 16397 +16399 3 -14.006248610605084 -163.31504981041675 23.3519 0.3302 16398 +16400 3 -14.764294252087884 -162.4284406748615 23.6577 0.3284 16399 +16401 3 -15.118387041901585 -161.02804468174563 23.9294 0.3266 16400 +16402 3 -15.925651244583452 -160.36415591115215 24.1825 0.3249 16401 +16403 3 -17.035987582781885 -160.01680049451602 24.4101 0.3231 16402 +16404 3 -18.135206838454636 -159.9234850100002 24.5918 0.3213 16403 +16405 3 -19.102315488478453 -158.96827328507706 24.7261 0.3195 16404 +16406 3 -20.046749397318628 -158.55656919607827 24.9184 0.3178 16405 +16407 3 -20.712808508602137 -157.64217502595562 25.0595 0.316 16406 +16408 3 -21.15098938025137 -156.15737217630172 25.1548 0.3142 16407 +16409 3 -22.283214647096255 -156.7115673172596 25.211 0.3124 16408 +16410 3 -23.37254004103628 -155.91081813597276 25.2312 0.3107 16409 +16411 3 -24.175890549869546 -155.50306178719532 25.2219 0.3089 16410 +16412 3 -24.985648920515878 -154.46667700428054 25.2123 0.3071 16411 +16413 3 -25.67836377236453 -153.1173736862433 25.2135 0.3053 16412 +16414 3 -26.35071201493085 -152.83083364483747 25.0834 0.3035 16413 +16415 3 -26.999554647087844 -151.75602888165943 24.8078 0.3018 16414 +16416 3 -27.38674479309639 -150.2698969200717 24.6013 0.3 16415 +16417 3 -27.27420734738388 -149.16765702170554 24.5569 0.2982 16416 +16418 3 -27.532766317253806 -147.84319887159148 24.5902 0.2965 16417 +16419 3 -27.679866365166582 -146.61221005698985 24.6593 0.2947 16418 +16420 3 -27.317304597928732 -145.67548294753027 24.7591 0.2929 16419 +16421 3 -27.0444766112203 -144.7508171822146 24.8652 0.2911 16420 +16422 3 -26.599405380258197 -144.0311614312853 24.9469 0.2894 16421 +16423 3 -26.391985555644524 -142.72571524702926 25.1169 0.2876 16422 +16424 3 -26.60215583716818 -141.71514949121496 25.2861 0.2858 16423 +16425 3 -27.29237356019126 -140.16113862451743 25.3434 0.284 16424 +16426 3 -28.040023328398657 -139.28335609070905 25.3531 0.2822 16425 +16427 3 -28.900650437208206 -138.88460694535584 25.3447 0.2805 16426 +16428 3 -29.780692294969857 -137.33446044860708 25.3094 0.2787 16427 +16429 3 -30.37569804365121 -136.92465472641948 25.2652 0.2769 16428 +16430 3 -31.060321897178515 -135.93410458584384 25.2207 0.2752 16429 +16431 3 -31.597146855417098 -134.28159101084955 25.2002 0.2734 16430 +16432 3 -32.33591256111388 -133.78139891095256 25.2158 0.2716 16431 +16433 3 -33.10044689591795 -132.98844498052395 25.2809 0.2698 16432 +16434 3 -33.75203418488888 -131.2861903740462 25.3704 0.2681 16433 +16435 3 -34.6440507361375 -131.37250823207086 25.5368 0.2663 16434 +16436 3 -35.616682397090905 -130.2576738528557 25.7668 0.2645 16435 +16437 3 -36.6338057273499 -130.17891606024844 25.9634 0.2627 16436 +16438 3 -37.74337673946763 -129.31659066468796 26.0506 0.2609 16437 +16439 3 -38.795816825975386 -129.5861565595817 26.0055 0.2592 16438 +16440 3 -39.62908612245226 -128.1729913634608 25.9248 0.2574 16439 +16441 3 -39.547023861784574 -127.17430620093539 25.8813 0.2574 16440 +16442 3 -39.11388015263205 -126.52825703728044 25.8307 0.2569 16441 +16443 3 -38.38030078031684 -125.21445381204586 25.6762 0.2566 16442 +16444 3 -37.96494592221329 -123.70761175111743 25.4868 0.2563 16443 +16445 3 -38.20910768347048 -122.77032119918242 25.3226 0.2561 16444 +16446 3 -38.87592255209338 -122.45639159487583 25.19 0.2558 16445 +16447 3 -39.63486912709545 -120.96074938662358 25.083 0.2555 16446 +16448 3 -40.46071119379579 -119.29998004956128 25.0943 0.2552 16447 +16449 3 -41.32365224811431 -118.23826218547954 25.2249 0.255 16448 +16450 3 -41.98157979727938 -117.9367019518537 25.3632 0.2547 16449 +16451 3 -42.26288762384631 -116.69679412792318 25.4874 0.2544 16450 +16452 3 -41.95287250984455 -115.75173959817616 25.632 0.2542 16451 +16453 3 -41.84352725264432 -114.62228138944727 25.8513 0.2539 16452 +16454 3 -42.441579017285164 -113.74634801234988 26.1943 0.2536 16453 +16455 3 -43.20280317080426 -112.80975414267787 26.826 0.2534 16454 +16456 3 -44.13393449646686 -113.26328624621671 27.6018 0.2531 16455 +16457 3 -44.556003877438656 -112.30361576657855 28.4642 0.2528 16456 +16458 3 -44.92498532229362 -111.20284584849325 29.2958 0.2525 16457 +16459 3 -45.92742335215443 -111.21922567999464 29.9589 0.2523 16458 +16460 3 -47.01689136561389 -110.47918373501797 30.4357 0.252 16459 +16461 3 -47.87339811246972 -110.18052937271779 30.7686 0.2517 16460 +16462 3 -48.751647671934116 -109.50375258144622 31.0744 0.2515 16461 +16463 3 -49.79848006688472 -109.07994315338472 31.3541 0.2512 16462 +16464 3 -50.91430240524886 -108.88607321485921 31.6117 0.2509 16463 +16465 3 -52.05553422026833 -109.18250460239962 31.8643 0.2507 16464 +16466 3 -53.17135300559913 -108.62515755819913 32.1364 0.2504 16465 +16467 3 -54.26151202752557 -108.97387385251227 32.4677 0.2501 16466 +16468 3 -55.362879622585794 -108.10138007960516 32.8359 0.2498 16467 +16469 3 -56.269266236510774 -108.21492364077255 33.1386 0.2496 16468 +16470 3 -57.07260312538296 -107.1155275411846 33.3841 0.2493 16469 +16471 3 -58.04590566094775 -106.80633822535043 33.7263 0.249 16470 +16472 3 -59.12810218592479 -106.38219342359406 34.1029 0.2488 16471 +16473 3 -60.13950995529665 -106.06264225595835 34.463 0.2485 16472 +16474 3 -60.79014488575091 -105.4378270331229 34.9191 0.2482 16473 +16475 3 -61.29719016030291 -104.39429816912107 35.6023 0.248 16474 +16476 3 -61.96387978450105 -103.6228178864142 36.2625 0.2477 16475 +16477 3 -62.62590676749176 -103.31615479481168 36.8122 0.2474 16476 +16478 3 -63.591412412228735 -102.0251448796067 37.2506 0.2471 16477 +16479 3 -64.6566638750568 -102.42947450977744 37.6272 0.2469 16478 +16480 3 -64.83286636373572 -101.34105416944031 37.9772 0.2466 16479 +16481 3 -64.97356535981596 -100.21959456454158 38.3048 0.2463 16480 +16482 3 -65.60248166273695 -98.88258389050394 38.5851 0.2461 16481 +16483 3 -66.07538934151748 -98.02525810338976 38.8088 0.2458 16482 +16484 3 -66.17963723798887 -97.05873472057053 39.041 0.2455 16483 +16485 3 -66.54823895486473 -96.37541330064388 39.291 0.2453 16484 +16486 3 -67.0503398647328 -95.52638033695084 39.4859 0.245 16485 +16487 3 -67.434294203585 -94.2372849640856 39.6488 0.2447 16486 +16488 3 -68.15605760852769 -93.21356498620298 39.8012 0.2444 16487 +16489 3 -68.81166014888315 -92.82339226747595 39.9568 0.2442 16488 +16490 3 -69.22720684314592 -91.74446227179654 40.1624 0.2439 16489 +16491 3 -69.47781318089388 -90.57402847704758 40.4538 0.2436 16490 +16492 3 -69.91930723216007 -89.31913633389868 40.7616 0.2434 16491 +16493 3 -70.60306064903753 -88.83680358330355 41.0911 0.2431 16492 +16494 3 -71.24566883185646 -88.16561310787232 41.4828 0.2428 16493 +16495 3 -71.79051748288344 -86.89664452241773 41.8729 0.2426 16494 +16496 3 -72.0377153952727 -85.8102143426827 42.2629 0.2423 16495 +16497 3 -71.92185420482903 -84.91928728544124 42.7244 0.242 16496 +16498 3 -71.93788062972229 -83.90428794274565 43.1925 0.2418 16497 +16499 3 -71.94026856420325 -82.86382033292148 43.5789 0.2415 16498 +16500 3 -71.95807642619339 -81.81120275575563 43.8698 0.2412 16499 +16501 3 -72.16744052175311 -80.66801124808812 44.0894 0.2409 16500 +16502 3 -72.62670319622691 -79.93431525542582 44.256 0.2407 16501 +16503 3 -73.036635388952 -79.20800427901257 44.4041 0.2404 16502 +16504 3 -73.41019059758159 -78.26649532831671 44.5463 0.2401 16503 +16505 3 -73.77964607629939 -77.05704619203782 44.7059 0.2399 16504 +16506 3 -73.67671824965353 -76.15134821477578 44.9369 0.2396 16505 +16507 3 -73.00716097127943 -75.3677284918834 45.1615 0.2393 16506 +16508 3 -72.32713755323594 -74.11440451495999 45.3331 0.2391 16507 +16509 3 -71.57175082154009 -73.76703326624319 45.4538 0.2388 16508 +16510 3 -70.76451604932822 -72.85574279529607 45.533 0.2385 16509 +16511 3 -69.91589661750896 -72.1052386770444 45.579 0.2382 16510 +16512 3 -68.9457169396222 -71.71985272152108 45.603 0.238 16511 +16513 3 -68.03462373720406 -70.91741362998822 45.6254 0.2377 16512 +16514 3 -67.11872192312597 -70.79013228410024 45.6546 0.2374 16513 +16515 3 -66.04516865358117 -70.1438535856336 45.691 0.2372 16514 +16516 3 -64.96191477254797 -70.09407497911889 45.7402 0.2369 16515 +16517 3 -64.09376817304046 -69.09955229686769 45.8542 0.2366 16516 +16518 3 -63.27759160152646 -68.86189727158296 45.969 0.2364 16517 +16519 3 -62.35679403248622 -67.78793025855462 46.0622 0.2361 16518 +16520 3 -61.26624427579502 -67.93111093082749 46.1376 0.2358 16519 +16521 3 -60.392331188589374 -66.99801344343554 46.2434 0.2355 16520 +16522 3 -59.58183011235177 -66.39547879962647 46.3128 0.2353 16521 +16523 3 -58.66025309908338 -65.78019517498635 46.3313 0.235 16522 +16524 3 -57.82140533941903 -64.97092774237694 46.3103 0.2347 16523 +16525 3 -57.01818226555838 -64.52259450039935 46.207 0.2345 16524 +16526 3 -56.23599717377792 -63.435709325477404 45.9925 0.2342 16525 +16527 3 -55.27134476014075 -63.212524436453265 45.7797 0.2339 16526 +16528 3 -54.21832746113351 -62.46598256097022 45.5949 0.2337 16527 +16529 3 -53.159486435823 -62.466525159085876 45.4437 0.2334 16528 +16530 3 -52.10149571330685 -61.67015521824074 45.3281 0.2331 16529 +16531 3 -51.04187850071536 -61.70516946909968 45.25 0.2328 16530 +16532 3 -49.98310833397101 -60.828148096757786 45.201 0.2326 16531 +16533 3 -49.06720000599852 -60.662405615343225 45.187 0.2323 16532 +16534 3 -48.21935320842692 -59.65653237528962 45.2071 0.232 16533 +16535 3 -47.375690323208254 -59.08717013545388 45.2511 0.2318 16534 +16536 3 -46.531177135195264 -58.40736818651553 45.3051 0.2315 16535 +16537 3 -45.71501418364231 -57.48683025006447 45.3566 0.2312 16536 +16538 3 -45.000934739093154 -57.00619486151468 45.3866 0.231 16537 +16539 3 -44.29422458542878 -55.9190436654865 45.3961 0.2307 16538 +16540 3 -43.630427482958716 -55.044339831778096 45.3751 0.2304 16539 +16541 3 -43.267683232691 -54.27691164244632 45.2256 0.2301 16540 +16542 3 -42.57880219778654 -53.45089102043464 45.1587 0.2299 16541 +16543 3 -41.883341679239464 -52.360078407750315 45.1643 0.2296 16542 +16544 3 -42.00866486464099 -51.35039749491479 45.2334 0.2293 16543 +16545 3 -42.188997284014974 -50.390392353563335 45.5515 0.2291 16544 +16546 3 -40.51060204245727 -126.09211058368858 25.9182 0.2574 16440 +16547 3 -41.61136330967811 -125.916007295898 25.9688 0.2557 16546 +16548 3 -42.690455879803785 -125.20834219530174 26.0265 0.2549 16547 +16549 3 -43.8200144169967 -125.54062150345365 26.1012 0.254 16548 +16550 3 -44.9167198690359 -124.51947198023183 26.2255 0.2532 16549 +16551 3 -46.006166954367345 -125.07172659900534 26.3758 0.2524 16550 +16552 3 -46.744675361234115 -123.63783202465861 26.5148 0.2515 16551 +16553 3 -46.67342151577955 -122.49168901633836 26.6545 0.2507 16552 +16554 3 -46.26947203408743 -121.7778205535702 26.8261 0.2498 16553 +16555 3 -45.78632301134075 -120.46252924796234 27.0292 0.249 16554 +16556 3 -45.75203985423274 -119.26136652035605 27.2129 0.2481 16555 +16557 3 -46.44144082617774 -118.43795780964167 27.4489 0.2473 16556 +16558 3 -47.445370438962044 -117.48667315665186 27.7444 0.2465 16557 +16559 3 -48.57405152742419 -117.75773701081131 28.0098 0.2456 16558 +16560 3 -49.482680730105514 -116.85176730759902 28.2517 0.2448 16559 +16561 3 -49.827045466408364 -116.1915191335896 28.4964 0.2439 16560 +16562 3 -50.46473095042906 -115.54376248836901 28.7137 0.2431 16561 +16563 3 -51.48813985893754 -114.60254638340007 28.9022 0.2423 16562 +16564 3 -52.48663469445317 -114.66004265611896 29.097 0.2414 16563 +16565 3 -53.448951905811526 -113.45812475504978 29.3166 0.2406 16564 +16566 3 -54.398369803274754 -113.62811587441189 29.5506 0.2397 16565 +16567 3 -55.45557388642548 -112.52080760995857 29.8407 0.2389 16566 +16568 3 -56.47611289369531 -113.07315422750898 30.2677 0.2381 16567 +16569 3 -57.490695476484724 -111.85409588866003 30.6468 0.2372 16568 +16570 3 -58.396468454403404 -112.04819950322033 31.0262 0.2364 16569 +16571 3 -59.15379534931066 -110.68690422079123 31.3328 0.2355 16570 +16572 3 -59.95467972437413 -110.06046057279994 31.5711 0.2347 16571 +16573 3 -60.85813144861683 -109.59205402115168 31.7593 0.2338 16572 +16574 3 -61.74381504783833 -108.50607021874382 31.9105 0.233 16573 +16575 3 -62.519615194381245 -108.44367204052074 32.1448 0.2322 16574 +16576 3 -63.33658050673791 -107.13706312155304 32.4268 0.2313 16575 +16577 3 -64.37622589173337 -107.15771063757114 32.7194 0.2305 16576 +16578 3 -65.46969929174993 -106.36869338010129 33.1794 0.2296 16577 +16579 3 -5.585171352686822 -180.53851931627256 21.3699 0.3089 16382 +16580 3 -6.356781143008936 -182.0166271083765 21.5853 0.3061 16579 +16581 3 -7.048138674697023 -182.24582659074918 21.6857 0.3047 16580 +16582 3 -7.655323241821687 -183.51185767463906 21.8314 0.3033 16581 +16583 3 -7.958833283780358 -185.01396710688965 21.982 0.3019 16582 +16584 3 -7.4393631708676935 -185.34898079602533 22.0403 0.3004 16583 +16585 3 -6.408635400099115 -186.5483187977435 22.0474 0.299 16584 +16586 3 -6.107417623017904 -187.55959358896473 22.0412 0.2976 16585 +16587 3 -7.064737850519953 -187.4981454676454 22.0271 0.2962 16586 +16588 3 -8.088560922066835 -188.7806057606836 22.0153 0.2948 16587 +16589 3 -9.054067393631982 -188.71530555626802 22.0191 0.2934 16588 +16590 3 -10.152988988777924 -189.19913159351057 22.0476 0.292 16589 +16591 3 -11.176570313388485 -187.8635662379384 22.0937 0.2906 16590 +16592 3 -12.283722269428026 -188.44627041408398 22.1557 0.2892 16591 +16593 3 -13.399560986514055 -187.98912587678979 22.2385 0.2878 16592 +16594 3 -14.390392108521421 -188.8315784112924 22.3762 0.2864 16593 +16595 3 -15.187916202317137 -189.34709689082223 22.5789 0.285 16594 +16596 3 -16.177757658957912 -190.24492354718555 22.78 0.2836 16595 +16597 3 -17.235900865820952 -190.27396688901592 23.0371 0.2822 16596 +16598 3 -17.990846579712915 -191.34295918132364 23.4016 0.2808 16597 +16599 3 -18.750417924048456 -192.05267389543246 23.763 0.2794 16598 +16600 3 -19.743441004087313 -192.7395101982513 24.0502 0.278 16599 +16601 3 -20.74291221365031 -193.2457962136895 24.288 0.2766 16600 +16602 3 -21.640984612882228 -194.0280261322044 24.5226 0.2752 16601 +16603 3 -22.470914556219405 -195.13943261460108 24.7262 0.2738 16602 +16604 3 -23.346335402970162 -195.40918579881017 24.8829 0.2724 16603 +16605 3 -24.260570365276028 -196.73677823152417 25.0638 0.2709 16604 +16606 3 -25.262582618394685 -196.71748872331517 25.2617 0.2695 16605 +16607 3 -26.18020211707017 -198.00911115626474 25.4799 0.2681 16606 +16608 3 -26.784086828452814 -198.69667028343912 25.6763 0.2667 16607 +16609 3 -27.156382960995614 -199.6397273097108 25.8298 0.2653 16608 +16610 3 -27.74488129658537 -200.9934493585858 25.9478 0.2639 16609 +16611 3 -28.725191300892646 -201.51820078635467 26.0914 0.2625 16610 +16612 3 -29.69961914181829 -202.01529418606364 26.214 0.2611 16611 +16613 3 -30.54328883701745 -203.20558402672583 26.2965 0.2597 16612 +16614 3 -31.130214664189772 -203.64713396761968 26.3507 0.2583 16613 +16615 3 -31.783538022737382 -205.01444303245518 26.3832 0.2569 16614 +16616 3 -32.65316238310698 -206.0031818520298 26.3939 0.2555 16615 +16617 3 -33.434547102531226 -206.3129906465316 26.384 0.2541 16616 +16618 3 -34.4657910920605 -207.82008880994943 26.3653 0.2527 16617 +16619 3 -35.372029103313636 -208.2391049049976 26.343 0.2513 16618 +16620 3 -36.15496264426651 -209.29724487113404 26.3194 0.2499 16619 +16621 3 -36.86179784025537 -210.3180591672311 26.2288 0.2485 16620 +16622 3 -37.59847791047469 -211.13407161922572 26.1542 0.2471 16621 +16623 3 -38.19019162327916 -212.34074610359687 26.109 0.2457 16622 +16624 3 -38.74869990845847 -213.44595937309913 26.0998 0.2443 16623 +16625 3 -39.659027488709874 -213.73825617391446 26.1764 0.2428 16624 +16626 3 -40.59925747788295 -213.83372610094872 26.2561 0.2414 16625 +16627 3 -41.47941933467462 -215.50164672612348 26.3284 0.24 16626 +16628 3 -42.122191576839114 -215.8289860156398 26.3813 0.2386 16627 +16629 3 -42.53899675378225 -216.7837215519886 26.4144 0.2372 16628 +16630 3 -43.296019746395146 -218.58044074402324 26.4298 0.2358 16629 +16631 3 -44.18356096099926 -218.70899240071373 26.4312 0.2344 16630 +16632 3 -45.2904115013783 -219.17415073316417 26.4312 0.233 16631 +16633 3 -46.400863017073675 -218.06427411433066 26.4312 0.2316 16632 +16634 3 -47.515109735658626 -219.18061085781477 26.4312 0.2302 16633 +16635 3 -2.440771840735324 -189.80968503958712 24.1776 0.3604 1 +16636 3 -3.0155437483379868 -190.323339147414 24.635 0.3539 16635 +16637 3 -3.67771110378548 -191.66161152349918 24.9578 0.3507 16636 +16638 3 -4.619712961314232 -192.34670128511968 25.1581 0.3475 16637 +16639 3 -5.150806195555675 -192.92924024068066 25.2685 0.3443 16638 +16640 3 -5.822762100066379 -194.45499577993294 25.3196 0.341 16639 +16641 3 -6.660756299989137 -195.2255197020546 25.3391 0.3378 16640 +16642 3 -7.445319587964539 -195.75796308941193 25.3521 0.3346 16641 +16643 3 -7.888042123228238 -197.38821655679325 25.3695 0.3314 16642 +16644 3 -8.487830455632118 -198.55943323978084 25.3956 0.3282 16643 +16645 3 -9.222165087100285 -198.7635925342134 25.4331 0.325 16644 +16646 3 -10.03996133870913 -200.4071659258201 25.4831 0.3218 16645 +16647 3 -10.425160540280658 -201.65508487887402 25.545 0.3185 16646 +16648 3 -10.80070580385473 -202.4242684747133 25.6171 0.3153 16647 +16649 3 -11.512511866692009 -203.00826252919893 25.8387 0.3121 16648 +16650 3 -12.327831325431085 -204.7607490152906 26.034 0.3089 16649 +16651 3 -12.569480292939256 -205.67939277830763 26.1803 0.3089 16650 +16652 3 -12.411002310637468 -206.94916826380654 26.2819 0.3048 16651 +16653 3 -12.181433658883641 -208.036480046066 26.346 0.3027 16652 +16654 3 -12.238030144148919 -209.34426833995502 26.352 0.3007 16653 +16655 3 -12.229237900888211 -210.57044472266773 26.2916 0.2986 16654 +16656 3 -12.028694115339594 -211.57842912978697 26.2654 0.2966 16655 +16657 3 -11.709348562598741 -212.4222782374813 26.3105 0.2945 16656 +16658 3 -11.706218692839837 -213.61588984911128 26.4401 0.2925 16657 +16659 3 -12.017806113158766 -215.1626480491459 26.5901 0.2904 16658 +16660 3 -12.30189409799843 -216.66709040965384 26.7285 0.2883 16659 +16661 3 -12.325552023209896 -217.82745358528527 26.9314 0.2863 16660 +16662 3 -12.253822098930014 -218.91835669905547 27.2981 0.2842 16661 +16663 3 -12.123718039977227 -219.96166364927018 27.6761 0.2822 16662 +16664 3 -12.047759386227243 -221.11163367717552 28.0347 0.2801 16663 +16665 3 -12.344045111380838 -222.5559641337742 28.3458 0.2781 16664 +16666 3 -12.426639584374469 -223.77001713374227 28.5796 0.276 16665 +16667 3 -12.1654480803407 -224.86112741226276 28.7378 0.274 16666 +16668 3 -11.816966535117468 -225.67667077509304 28.8408 0.2719 16667 +16669 3 -11.741804202503975 -226.81879803227702 28.971 0.2699 16668 +16670 3 -11.902862188867697 -228.2333080506574 29.0942 0.2678 16669 +16671 3 -12.165911693440675 -229.74622494870238 29.1945 0.2658 16670 +16672 3 -12.423157901652047 -231.09555596611375 29.2796 0.2637 16671 +16673 3 -12.63116767538321 -232.3312745406163 29.3504 0.2617 16672 +16674 3 -12.817322715956015 -233.5748947355724 29.4258 0.2596 16673 +16675 3 -12.973501528179748 -234.8200872326281 29.5316 0.2575 16674 +16676 3 -13.006687648777579 -236.08057169184676 29.6324 0.2555 16675 +16677 3 -12.759215762750323 -237.2969496779885 29.7114 0.2534 16676 +16678 3 -12.415680401113868 -238.48726567895625 29.7674 0.2514 16677 +16679 3 -12.012155774115747 -239.37910326335634 29.7973 0.2493 16678 +16680 3 -11.652310116564951 -240.1744732905819 29.8323 0.2473 16679 +16681 3 -11.319244945817626 -241.0083323871076 29.8749 0.2452 16680 +16682 3 -11.090347868961963 -242.27095094955575 29.8914 0.2432 16681 +16683 3 -10.732297268469164 -243.80194340142572 29.7777 0.2411 16682 +16684 3 -9.78726739480355 -244.4533497043301 29.5669 0.2391 16683 +16685 3 -8.657840615929796 -244.44281628791373 29.4392 0.237 16684 +16686 3 -7.515531696155378 -244.35238939924122 29.3406 0.235 16685 +16687 3 -6.542794595991019 -243.94194714432865 29.2723 0.2329 16686 +16688 3 -6.072552195306432 -243.11160278339094 29.2429 0.2308 16687 +16689 3 -12.97685412352872 -204.04234594155176 26.1851 0.278 16650 +16690 3 -13.8076365602081 -203.23545051272447 26.2037 0.2682 16689 +16691 3 -14.328268660603651 -202.27950421862676 26.2103 0.2632 16690 +16692 3 -15.16792183591868 -201.15490156963997 26.2555 0.2583 16691 +16693 3 -16.156725924773376 -200.84123503775328 26.4015 0.2534 16692 +16694 3 -17.05530202790941 -199.80334320084503 26.5614 0.2485 16693 +16695 3 -17.856253708505776 -199.10668482388436 26.7344 0.2436 16694 +16696 3 -18.633737785829474 -198.11789601222748 26.9546 0.2386 16695 +16697 3 -19.353814003044214 -196.93448723636465 27.5559 0.2337 16696 diff --git a/example_data/layer_aligned_swcs/694146546.swc b/example_data/layer_aligned_swcs/694146546.swc new file mode 100644 index 0000000..6516788 --- /dev/null +++ b/example_data/layer_aligned_swcs/694146546.swc @@ -0,0 +1,5683 @@ +1 1 0.0 -363.1829539564272 41.5128 4.3758 -1 +2 3 1.2820735545827087 -353.26344468639604 40.451 0.3558 1 +3 3 1.7962892718661776 -349.45156672716246 40.171 0.4213 2 +4 3 1.629646313563212 -348.29154139504107 40.1212 0.4868 3 +5 3 1.1286985930852618 -347.45871342048844 40.168 0.5523 4 +6 3 0.42145396357946296 -346.90737147942104 40.3206 0.6178 5 +7 3 -0.2007000533365444 -347.950288984688 38.6943 0.4633 6 +8 3 -1.09544630880819 -347.49579836136155 37.6188 0.4373 7 +9 3 -2.1841655857196494 -348.1463768239024 37.1694 0.4242 8 +10 3 -2.878124090311021 -348.32928717460356 36.6114 0.4112 9 +11 3 -3.5146780519673904 -348.9577808302152 35.919 0.3982 10 +12 3 -3.9760968907126957 -350.55961200113376 35.2078 0.3852 11 +13 3 -4.393571301357971 -352.58217440326166 34.5134 0.3721 12 +14 3 -4.95357554003419 -354.6178589935655 33.854 0.3591 13 +15 3 -5.756409536235652 -356.0923983984408 33.2601 0.3461 14 +16 3 -6.716966086890711 -355.75826964095967 32.7247 0.333 15 +17 3 -7.752516414417847 -356.81110126244295 32.2031 0.32 16 +18 3 -8.474902713647348 -356.8697102641799 31.7148 0.307 17 +19 3 -9.482389727349794 -358.4983477893818 31.2939 0.2939 18 +20 3 -10.614358790312526 -359.21535805667094 30.8932 0.2809 19 +21 3 -11.368941520229543 -356.6832938691465 30.3671 0.2679 20 +22 3 -12.081025584654965 -355.50428711746184 29.7791 0.2549 21 +23 3 -12.733807209900418 -354.9093701848367 28.1786 0.2418 22 +24 3 0.13682064843266328 -346.76913543774805 40.5017 0.6178 6 +25 3 -0.6525630567004015 -345.9173533980294 40.7358 0.6102 24 +26 3 -1.392316374511715 -344.0347191043026 40.9601 0.6065 25 +27 3 -2.0706814838222343 -343.394725812247 41.1172 0.6027 26 +28 3 -2.7261953125229086 -342.04204804211736 41.1776 0.599 27 +29 3 -3.3798947028185147 -340.3307154456913 41.137 0.5952 28 +30 3 -3.996328961907545 -339.64855427518194 41.0074 0.5914 29 +31 3 -4.476708269113209 -338.7696610733676 40.8086 0.5877 30 +32 3 -4.674936362296826 -337.62586292433093 40.5866 0.5839 31 +33 3 -4.458192931425176 -336.29083688355325 40.3802 0.5801 32 +34 3 -3.8991867891887484 -334.8827311204677 40.2024 0.5764 33 +35 3 -3.25885371830703 -333.4356624802624 40.0299 0.5726 34 +36 3 -2.813214764088789 -332.88201664185027 39.8345 0.5689 35 +37 3 -2.839386646721616 -331.61500777627424 39.6278 0.5651 36 +38 3 -3.4311589159575195 -330.1045708014565 39.4453 0.5613 37 +39 3 -4.227274028285819 -329.6843951261893 39.3011 0.5576 38 +40 3 -4.7568063401291845 -328.78300813295294 39.1933 0.5538 39 +41 3 -4.708466489378699 -327.5176272045526 39.1115 0.55 40 +42 3 -4.208747112553194 -326.1926919279155 39.0323 0.5463 41 +43 3 -3.4856301629324147 -324.77042479992036 38.9558 0.5425 42 +44 3 -2.727288461141301 -324.4690339600095 38.8917 0.5388 43 +45 3 -2.1456474036478266 -323.5487366166151 38.8301 0.535 44 +46 3 -2.00552656882226 -322.2077296432279 38.8226 0.5312 45 +47 3 -2.249303417354069 -321.12889719907554 38.9127 0.5275 46 +48 3 -2.6949432792185437 -319.84097918486725 39.0902 0.5237 47 +49 3 -3.1485472088742164 -317.944984901318 39.31 0.5199 48 +50 3 -3.47668241128315 -316.7613243622127 39.5226 0.5162 49 +51 3 -3.635148665603934 -315.60489152156646 39.7032 0.5124 50 +52 3 -3.5598300461640786 -314.2834676566171 39.8518 0.5087 51 +53 3 -3.237124149969155 -312.959363228664 39.9829 0.5049 52 +54 3 -2.8360437788044024 -312.4186009439618 40.1078 0.5011 53 +55 3 -2.7236622151696075 -311.3474396359034 40.231 0.4974 54 +56 3 -2.814941691197408 -309.955498104455 40.3449 0.4936 55 +57 3 -3.0876189582831373 -308.31775692365227 40.4233 0.4898 56 +58 3 -3.487236702577558 -306.9284574852877 40.444 0.4861 57 +59 3 -3.9321369602992178 -306.0393909824242 40.406 0.4823 58 +60 3 -4.132963748008997 -304.9223519814166 40.3217 0.4786 59 +61 3 -3.950144158819384 -303.6897235721708 40.0436 0.4748 60 +62 3 -3.8514822319230078 -302.4423266218508 39.6715 0.471 61 +63 3 -4.281894426259726 -301.594907425387 39.2865 0.4673 62 +64 3 -4.28642426548565 -300.36679406591986 39.1062 0.4635 63 +65 3 -4.439697151216272 -299.1831444987315 39.1129 0.4598 64 +66 3 -4.493913683049136 -297.94459291504523 39.2255 0.456 65 +67 3 -4.596370406574454 -296.6910250446201 39.349 0.4522 66 +68 3 -4.644239142471562 -295.43851919151945 39.4405 0.4485 67 +69 3 -4.692713409797442 -294.1772933230997 39.478 0.4447 68 +70 3 -4.703553404298592 -292.92378280261516 39.4117 0.4409 69 +71 3 -4.4977339532171605 -291.7445400324145 39.2073 0.4372 70 +72 3 -4.1924655832269515 -290.44443261300967 38.9673 0.4334 71 +73 3 -3.8827606179862677 -289.0452868797425 38.827 0.4297 72 +74 3 -3.73297715087536 -287.7462274987941 38.8242 0.4259 73 +75 3 -3.623980771621806 -286.4840604198095 38.9508 0.4221 74 +76 3 -3.480199519111519 -285.63570183334554 39.0401 0.4221 75 +77 3 -3.411978748929549 -284.4144062538272 39.0768 0.4212 76 +78 3 -3.9066646952724184 -283.55410289890824 38.9948 0.4207 77 +79 3 -4.644818444603754 -282.9391896394467 38.7209 0.4202 78 +80 3 -5.157637160616197 -281.8905540915125 38.3247 0.4198 79 +81 3 -5.408579642476823 -280.8274938727519 37.9417 0.4193 80 +82 3 -5.246811539654654 -279.4925988112151 37.6354 0.4188 81 +83 3 -4.721762082066103 -278.3324284936446 37.3932 0.4183 82 +84 3 -4.09170612864996 -277.15727249311345 37.1442 0.4179 83 +85 3 -3.6525974242216606 -275.79460802502416 36.7982 0.4174 84 +86 3 -3.6303439617524766 -274.6205999570763 36.3244 0.4169 85 +87 3 -3.925028218879902 -273.66781495365797 35.756 0.4164 86 +88 3 -4.3272848233952175 -272.8186569585255 35.142 0.416 87 +89 3 -4.887601136101562 -271.7969932900996 34.5456 0.4155 88 +90 3 -5.708264598106062 -271.22766955915944 34.0816 0.415 89 +91 3 -6.601570253931321 -270.03691506273515 33.8064 0.4145 90 +92 3 -7.284810205088029 -268.6402303424323 33.7296 0.4141 91 +93 3 -7.472657989808653 -267.56683089534437 33.8148 0.4136 92 +94 3 -7.2909020473957185 -266.22139268532635 33.9721 0.4131 93 +95 3 -7.024884222085632 -264.9114967966807 34.1253 0.4127 94 +96 3 -6.880399839596613 -263.82530329877255 34.2129 0.4122 95 +97 3 -7.048570387325327 -262.46908476348773 34.1841 0.4117 96 +98 3 -7.536249730800613 -261.60711196985864 34.0057 0.4112 97 +99 3 -8.012544415177032 -260.795018704359 33.7613 0.4108 98 +100 3 -8.463922812386699 -259.54401017684444 33.5566 0.4103 99 +101 3 -9.19221846243854 -257.61052192797064 33.4194 0.4098 100 +102 3 -10.144070813710513 -257.5016498024857 33.3542 0.4093 101 +103 3 -11.06430565295738 -257.3336391338221 33.357 0.4089 102 +104 3 -11.68905101896933 -256.42220451510514 33.4373 0.4084 103 +105 3 -11.92270082674532 -254.7991133075031 33.5894 0.4079 104 +106 3 -11.942869427539982 -253.48949505337077 33.7733 0.4074 105 +107 3 -11.988870119302305 -252.20394313529584 33.9746 0.407 106 +108 3 -11.956821117034877 -251.07073522126848 34.1611 0.4065 107 +109 3 -11.578002499046939 -250.473561449923 34.2787 0.406 108 +110 3 -10.781006034204857 -249.2614752080051 34.3112 0.4055 109 +111 3 -9.70408012099373 -248.1992412925316 34.244 0.4051 110 +112 3 -8.708987341615646 -248.1321488134617 34.0757 0.4046 111 +113 3 -8.087681945845752 -247.5008508923446 33.8209 0.4041 112 +114 3 -8.053440118503467 -246.28309773664137 33.523 0.4036 113 +115 3 -8.455131823106228 -245.3956214305395 33.1848 0.4032 114 +116 3 -8.972020692306458 -243.41951084697064 32.809 0.4027 115 +117 3 -9.520223190950453 -242.08942248255266 32.4548 0.4022 116 +118 3 -10.14904795520198 -241.45812919083605 32.1686 0.4017 117 +119 3 -10.812985035574563 -240.85225971446596 32.0166 0.4013 118 +120 3 -11.66256039491875 -240.55203154918587 32.0541 0.4008 119 +121 3 -12.6521809561348 -238.86038809365664 32.319 0.4003 120 +122 3 -13.559303749284894 -238.81228046489534 32.7925 0.3998 121 +123 3 -13.757831064245224 -237.7885472117021 33.4421 0.3994 122 +124 3 -13.38634485967134 -236.66597638633732 34.1076 0.3989 123 +125 3 -13.000844419755872 -235.26227114861325 34.6858 0.3984 124 +126 3 -12.867875039917962 -233.9512543742355 35.1411 0.3979 125 +127 3 -12.969871084134617 -232.78194168366736 35.4984 0.3975 126 +128 3 -13.235711227993335 -231.74026501258743 35.7697 0.397 127 +129 3 -13.48304946056448 -230.67111399333098 35.9302 0.3965 128 +130 3 -13.571885543365589 -229.483891974654 35.9747 0.396 129 +131 3 -13.652137848605683 -228.29537236053866 35.917 0.3956 130 +132 3 -13.919396136696584 -227.00518992989893 35.8165 0.3951 131 +133 3 -14.377456355833814 -225.25120519631588 35.7165 0.3946 132 +134 3 -14.9561468969045 -223.8505291067071 35.6334 0.3941 133 +135 3 -15.597498938588082 -223.2058768401662 35.5757 0.3937 134 +136 3 -16.222033163836812 -222.51974010149056 35.5426 0.3932 135 +137 3 -16.705645053679653 -221.1607848085182 35.5247 0.3927 136 +138 3 -16.91963180280497 -219.859811870921 35.5093 0.3922 137 +139 3 -16.722117204450377 -218.80388717883204 35.4886 0.3918 138 +140 3 -16.18704240167567 -217.8824965626468 35.4612 0.3913 139 +141 3 -15.448490372925669 -216.48017058159132 35.4239 0.3908 140 +142 3 -14.664000752978367 -215.48262199606552 35.3665 0.3903 141 +143 3 -14.07101296834685 -215.17686008377305 35.278 0.3899 142 +144 3 -14.063920884762325 -213.99435227141015 35.1733 0.3894 143 +145 3 -14.735554586877605 -212.25392183296236 35.0784 0.3889 144 +146 3 -15.688771476651986 -211.7847192235149 34.9992 0.3884 145 +147 3 -16.606253815501162 -211.40467632379153 34.9334 0.388 146 +148 3 -17.205831122066947 -209.97968935560328 34.8746 0.3875 147 +149 3 -17.405709398604678 -208.62072699007908 34.8082 0.387 148 +150 3 -17.413361171146626 -207.40922711240427 34.722 0.3865 149 +151 3 -17.284524503977835 -206.3293345408793 34.6251 0.3861 150 +152 3 -17.05585004312472 -205.41702572451612 34.5369 0.3856 151 +153 3 -16.830722496669445 -204.30531847067493 34.4644 0.3851 152 +154 3 -16.690544326952256 -203.139397082388 34.4064 0.3847 153 +155 3 -16.599834989061257 -201.90528338994068 34.3582 0.3842 154 +156 3 -16.46018901188549 -200.5851539862283 34.3134 0.3837 155 +157 3 -16.25743938381816 -199.23494998675747 34.2616 0.3832 156 +158 3 -16.001398522554076 -197.8659765237431 34.186 0.3828 157 +159 3 -15.685311888805366 -196.47722315873511 34.0743 0.3823 158 +160 3 -15.308956066974986 -195.21821061857383 33.9408 0.3818 159 +161 3 -14.897748655054436 -194.2572520624188 33.8173 0.3813 160 +162 3 -14.575792812181653 -193.54168545479973 33.7226 0.3809 161 +163 3 -14.545917232058208 -192.36785535807167 33.6591 0.3804 162 +164 3 -14.73846562021614 -190.97119879329267 33.6221 0.3799 163 +165 3 -14.949482008162995 -189.5121189698594 33.6028 0.3794 164 +166 3 -15.138856352702923 -188.08677354030476 33.5944 0.379 165 +167 3 -15.299978636441445 -186.84512431882865 33.602 0.3785 166 +168 3 -15.447935734174784 -185.61694359755086 33.6213 0.378 167 +169 3 -15.669243417928335 -184.4192989776853 33.5936 0.3775 168 +170 3 -16.086506100028885 -183.49899199670804 33.4527 0.3771 169 +171 3 -16.69212059993155 -182.85606553668964 33.2077 0.3766 170 +172 3 -17.212474382191147 -182.02085113787092 32.9232 0.3761 171 +173 3 -17.40816261116811 -180.8077170565681 32.6645 0.3756 172 +174 3 -17.315440377022213 -179.60105551929112 32.466 0.3752 173 +175 3 -17.042639034214915 -178.31244372851302 32.3386 0.3747 174 +176 3 -16.71156722123969 -176.92453262848113 32.2764 0.3742 175 +177 3 -16.3997384191227 -175.54329882028435 32.2613 0.3737 176 +178 3 -16.165494902565 -174.1825343335127 32.2728 0.3733 177 +179 3 -16.109569370693166 -172.90591081847953 32.2997 0.3728 178 +180 3 -16.306206110842197 -171.80264632570817 32.34 0.3723 179 +181 3 -16.60360270267259 -170.7856874744989 32.3963 0.3718 180 +182 3 -16.59583879901622 -169.54691866579154 32.4705 0.3714 181 +183 3 -16.170566071058545 -168.14541467942365 32.5746 0.3709 182 +184 3 -15.59211323552428 -167.0793855142573 32.7401 0.3704 183 +185 3 -15.226556274521542 -166.30881059588435 32.9784 0.3699 184 +186 3 -15.204271600109067 -165.16600379457714 33.2374 0.3695 185 +187 3 -15.156885485120256 -164.05619294327124 33.4583 0.369 186 +188 3 -14.713496690868496 -163.27078604840275 33.6151 0.3685 187 +189 3 -14.082265411748068 -161.97350985801637 33.7053 0.368 188 +190 3 -13.7349548605917 -160.7816635708284 33.7341 0.3676 189 +191 3 -14.009977554496302 -159.65397544410857 33.7134 0.3671 190 +192 3 -14.781160705888823 -159.05095114247337 33.6608 0.3666 191 +193 3 -15.766507897298922 -157.54557903788339 33.5773 0.3661 192 +194 3 -16.697733004979156 -157.1374006169819 33.4379 0.3657 193 +195 3 -17.248025467927178 -156.4440618472293 33.2396 0.3652 194 +196 3 -17.40394140886194 -155.32536631429213 33.0518 0.3647 195 +197 3 -17.415633152254898 -154.0996121161858 32.942 0.3642 196 +198 3 -17.209809972011655 -152.78130557946116 32.9532 0.3638 197 +199 3 -16.606693651196466 -151.44532995609433 33.0946 0.3633 198 +200 3 -15.74064236392661 -150.63661424412004 33.3127 0.3628 199 +201 3 -14.993379943225165 -150.59063255110834 33.5353 0.3624 200 +202 3 -14.692098229656395 -149.2414073376954 33.7187 0.3619 201 +203 3 -14.79091127650355 -148.07028987896416 33.8526 0.3614 202 +204 3 -14.97870322176037 -146.96327351785908 33.9436 0.3609 203 +205 3 -15.142888608495468 -145.8400766158918 34.0085 0.3605 204 +206 3 -15.442080235800034 -144.5325849717459 34.071 0.36 205 +207 3 -16.018370540194525 -142.66418298417986 34.1494 0.3595 206 +208 3 -16.881678685011863 -142.09256795694026 34.2527 0.359 207 +209 3 -17.87254132639673 -142.0487642280383 34.3952 0.3586 208 +210 3 -18.833905068043123 -141.32696022415325 34.6167 0.3581 209 +211 3 -19.63802963844695 -139.8777685202825 34.9376 0.3576 210 +212 3 -20.07184642009574 -139.08659807655872 35.3248 0.3571 211 +213 3 -19.874766047874786 -137.7939720268833 35.6997 0.3567 212 +214 3 -19.23405086116142 -136.8649699033908 36.0086 0.3562 213 +215 3 -18.533506267316312 -136.78647875707327 36.2608 0.3557 214 +216 3 -18.092559370863384 -135.42697324128252 36.4991 0.3552 215 +217 3 -18.090343624552915 -134.2448476662525 36.7374 0.3548 216 +218 3 -18.50290719864394 -133.3927548025128 36.9328 0.3543 217 +219 3 -19.201205337687853 -132.01175912545878 36.9956 0.3538 218 +220 3 -19.91523973888691 -130.64672129690712 36.8589 0.3533 219 +221 3 -20.61966511353043 -130.20750992634643 36.5856 0.3529 220 +222 3 -21.29123625616444 -128.80035081053944 36.3129 0.3524 221 +223 3 -21.79447206856966 -127.15024994782772 36.1421 0.3519 222 +224 3 -22.041538834630273 -126.10890687312406 36.1497 0.3514 223 +225 3 -22.075901929813156 -124.9484939942799 36.3815 0.351 224 +226 3 -22.044001508827648 -123.75650254462477 36.7878 0.3505 225 +227 3 -22.071431009803575 -122.58360996216095 37.2702 0.35 226 +228 3 -22.234037726417398 -121.48008617812661 37.7292 0.3495 227 +229 3 -22.502307085161647 -120.44269306961249 38.059 0.3491 228 +230 3 -22.859728551117982 -119.48128653104092 38.2119 0.3486 229 +231 3 -23.248106488433606 -118.54812513358209 38.255 0.3481 230 +232 3 -23.42465340212196 -117.44899486829397 38.2505 0.3476 231 +233 3 -23.221468052493194 -116.32185922702655 38.2337 0.3472 232 +234 3 -22.77182793328565 -115.30317046593534 38.2301 0.3467 233 +235 3 -22.336340647343718 -114.29209934337351 38.2572 0.3462 234 +236 3 -21.95939007349061 -113.7610616949142 38.3194 0.3458 235 +237 3 -21.628405777743822 -113.39455228382198 38.414 0.3453 236 +238 3 -21.35455422819483 -112.56366290893823 38.5482 0.3448 237 +239 3 -21.17581823222804 -111.60683014908206 38.7352 0.3443 238 +240 3 -21.168054328571685 -110.71123184100446 38.9914 0.3439 239 +241 3 -21.27846989529843 -109.86674871671384 39.3478 0.3434 240 +242 3 -21.246462554153624 -109.01700938539192 39.87 0.3429 241 +243 3 -20.858519284796472 -108.19599432103401 40.6227 0.3424 242 +244 3 -20.475543599103645 -107.61133599617234 41.5394 0.342 243 +245 3 -20.653141749140133 -106.67511367275723 42.4474 0.3415 244 +246 3 -21.228464139431736 -106.16121796798167 43.2678 0.341 245 +247 3 -21.8901782123926 -105.72441650285278 44.0283 0.3405 246 +248 3 -22.45824073210936 -104.54758352441824 44.7356 0.3401 247 +249 3 -22.947782895129777 -103.46826176790628 45.3552 0.3396 248 +250 3 -23.5669696546165 -102.96148710728356 45.8492 0.3391 249 +251 3 -24.42370169353805 -102.72336459203575 46.1941 0.3386 250 +252 3 -25.344299245685747 -102.560787840782 46.4318 0.3382 251 +253 3 -25.590139139525164 -101.7117254253706 46.718 0.3377 252 +254 3 -25.051111417306515 -101.05798743691871 47.1302 0.3372 253 +255 3 -24.76982902211425 -100.14533875927899 47.605 0.3367 254 +256 3 -25.015081349769872 -99.3913505880725 48.0511 0.3363 255 +257 3 -25.419851831138203 -98.69628062643723 48.4394 0.3358 256 +258 3 -25.849109598129345 -97.77106720738891 48.7718 0.3353 257 +259 3 -26.254562348748877 -96.56751006473705 49.0728 0.3348 258 +260 3 -26.51849531238446 -95.51337447271312 49.4113 0.3344 259 +261 3 -26.593970276364757 -94.66168698825071 49.8313 0.3339 260 +262 3 -26.643986311457525 -93.82074939312629 50.293 0.3334 261 +263 3 -26.852452386018385 -93.0178831805336 50.7248 0.3329 262 +264 3 -27.25477947416003 -92.27764581499973 51.0863 0.3325 263 +265 3 -27.710701678079786 -91.59585716769311 51.3724 0.332 264 +266 3 -27.91969994518206 -90.79496978727322 51.6211 0.3315 265 +267 3 -27.52758276785461 -89.88928162274873 51.8918 0.331 266 +268 3 -26.66429293473398 -89.59698013774904 52.1749 0.3306 267 +269 3 -25.7390069923551 -89.30446200770898 52.3919 0.3301 268 +270 3 -25.24309927642048 -88.3488246500592 52.4835 0.3296 269 +271 3 -25.40793152548028 -87.55093734837949 52.5112 0.3291 270 +272 3 -25.757229893184245 -86.8351883180844 52.5636 0.3287 271 +273 3 -25.785569973371437 -85.96743346854821 52.7349 0.3282 272 +274 3 -25.425057333855506 -85.04124891537752 53.0762 0.3277 273 +275 3 -25.02062401985924 -84.15878284983692 53.5676 0.3272 274 +276 3 -24.847704656893157 -83.30854894486475 54.1335 0.3268 275 +277 3 -25.309619693471774 -82.67661819981369 54.6319 0.3263 276 +278 3 -26.11116273854634 -82.3407497678773 54.9158 0.3258 277 +279 3 -26.47529201378383 -81.6527930383777 54.8758 0.3253 278 +280 3 -26.086035286619833 -80.8473545590034 54.5597 0.3249 279 +281 3 -25.25980214349802 -79.93724359325343 54.2223 0.3244 280 +282 3 -24.625875698871525 -79.03542349471361 53.9641 0.3239 281 +283 3 -24.48824261795066 -78.24586271654682 53.8166 0.3234 282 +284 3 -25.089522218172462 -77.53627791790218 53.8614 0.323 283 +285 3 -25.88934207123235 -77.17029919913263 54.0683 0.3225 284 +286 3 -26.69765818462477 -76.82237685044726 54.3558 0.322 285 +287 3 -27.322104892645 -76.15254258118333 54.6017 0.3215 286 +288 3 -27.7826476410973 -75.016310705883 54.7904 0.3211 287 +289 3 -28.02419000343164 -74.00795159339546 54.9307 0.3206 288 +290 3 -27.691056913061345 -73.51825826295742 55.032 0.3201 289 +291 3 -26.758401654914067 -73.06057558858576 55.1174 0.3196 290 +292 3 -25.616217470182036 -72.63360478090848 55.2093 0.3192 291 +293 3 -25.44723900679044 -72.49725448328225 54.8458 0.3192 292 +294 3 -24.65214748843752 -72.1463420293984 54.7548 0.3173 293 +295 3 -24.22037539240651 -71.6175183365246 54.714 0.3163 294 +296 3 -24.03766198507003 -70.70017947739342 54.691 0.3153 295 +297 3 -23.84471059635638 -69.79369868652726 54.6882 0.3144 296 +298 3 -23.54604698024457 -68.90716545185383 54.6706 0.3134 297 +299 3 -23.24455785507442 -68.10466191582103 54.6 0.3125 298 +300 3 -23.0450981445359 -67.49054751347153 54.4849 0.3115 299 +301 3 -22.75166060438535 -66.7980772918664 54.3575 0.3106 300 +302 3 -22.12224778413207 -65.92275929339853 54.2298 0.3096 301 +303 3 -21.297195191304183 -65.18759298215949 54.0887 0.3086 302 +304 3 -20.47997632271523 -64.45666591526853 53.9235 0.3077 303 +305 3 -19.696405031603106 -64.32343176591785 53.7606 0.3067 304 +306 3 -18.96033553216816 -63.45254649704937 53.6581 0.3058 305 +307 3 -18.421234936883636 -62.811400388691766 53.6528 0.3048 306 +308 3 -18.120858577936488 -62.25505111588508 53.7258 0.3038 307 +309 3 -17.86687899406745 -61.51021269888133 53.8451 0.3029 308 +310 3 -17.338210817547917 -60.645652388382814 53.9966 0.3019 309 +311 3 -16.480448379009204 -59.876068126180016 54.1733 0.301 310 +312 3 -15.591003169408737 -59.178337101574016 54.3788 0.3 311 +313 3 -14.88113892302161 -58.98851677338604 54.6515 0.2991 312 +314 3 -14.239304250067747 -58.211336081954286 55.0421 0.2981 313 +315 3 -13.642859302000787 -57.60709834833696 55.545 0.2971 314 +316 3 -13.440102953915925 -56.94957784021678 56.0944 0.2962 315 +317 3 -13.564892943850836 -56.07148006089968 56.6269 0.2952 316 +318 3 -13.570013805937677 -55.26135625515053 57.1052 0.2943 317 +319 3 -13.30605725802262 -54.520715516633764 57.505 0.2933 318 +320 3 -12.93045148951434 -53.58035237995146 57.8323 0.2924 319 +321 3 -12.846365143231424 -52.70025760608847 58.1868 0.2914 320 +322 3 -12.940777740060767 -51.885438135417054 58.623 0.2904 321 +323 3 -12.771059747788627 -51.00815756060588 59.0778 0.2895 322 +324 3 -12.407279001929794 -50.20645099299237 59.5378 0.2885 323 +325 3 -12.422744474252823 -49.39049248749563 59.9724 0.2876 324 +326 3 -12.745010467537696 -48.48771436584928 60.352 0.2866 325 +327 3 -13.147277152079255 -47.706854993675435 60.681 0.2857 326 +328 3 -13.645363296119001 -47.01562436957911 60.9857 0.2847 327 +329 3 -13.895408755582537 -46.24912150304712 61.3981 0.2837 328 +330 3 -13.10980295166155 -45.62874692732851 61.9836 0.2828 329 +331 3 -12.233575368594899 -45.51562570417014 62.6091 0.2818 330 +332 3 -11.209727683236395 -45.16961790308989 63.2506 0.2809 331 +333 3 -10.169295289097704 -44.674135335297606 63.9122 0.2799 332 +334 3 -9.684897273371803 -43.8692911663031 64.4798 0.279 333 +335 3 -9.628352031730088 -43.12749060887066 64.9244 0.278 334 +336 3 -8.683052555002433 -43.15901441352786 65.9823 0.278 335 +337 3 -7.715511932156289 -43.05070829583743 67.5578 0.2737 336 +338 3 -6.797785373429235 -42.76790037758511 68.2472 0.2716 337 +339 3 -6.115169575513761 -42.04110254430834 69.0021 0.2694 338 +340 3 -5.70321613073321 -41.227332963061336 69.7354 0.2673 339 +341 3 -5.186904547877589 -40.45469289583042 70.4558 0.2652 340 +342 3 -4.3785007388497945 -40.29130286443931 71.2289 0.263 341 +343 3 -3.619252459493964 -39.89303491829653 72.0826 0.2609 342 +344 3 -3.3794654087638776 -39.18974868549606 72.9714 0.2587 343 +345 3 -3.8886158205776553 -38.51173466739964 73.7696 0.2566 344 +346 3 -4.805140733429624 -37.84408121807398 74.3999 0.2545 345 +347 3 -5.795622793337088 -37.21435994342413 74.8535 0.2523 346 +348 3 -6.646997752291782 -36.653262410068905 75.1288 0.2502 347 +349 3 -7.2720284329287495 -35.98835383800824 75.273 0.2481 348 +350 3 -7.526887922558956 -35.18671866199281 75.4256 0.2459 349 +351 3 -7.409524674771433 -34.30138237274358 75.6672 0.2438 350 +352 3 -7.244214260614086 -33.412906112932895 75.957 0.2416 351 +353 3 -7.184200376751164 -32.53488194374019 76.2555 0.2395 352 +354 3 -7.796446860939795 -31.956833136802377 76.692 0.2374 353 +355 3 -8.664941188508351 -31.52655882111279 77.2215 0.2352 354 +356 3 -9.471803381589012 -30.729668430571238 77.6678 0.2331 355 +357 3 -9.450489728914278 -29.87890477546268 78.5375 0.2309 356 +358 3 -10.009024840557345 -42.20648809002331 65.3517 0.278 335 +359 3 -10.542048926714557 -41.544339279413954 65.7908 0.2746 358 +360 3 -11.294954534170245 -41.098167506807116 66.2469 0.2729 359 +361 3 -12.145593657070293 -40.60247262095846 66.7223 0.2712 360 +362 3 -12.69541242756975 -39.87296240823288 67.1762 0.2695 361 +363 3 -13.09925011046144 -38.94626369527014 67.5676 0.2678 362 +364 3 -13.823497127211056 -37.99045197062574 67.9204 0.2661 363 +365 3 -14.757580082167692 -37.692264474121195 68.2884 0.2644 364 +366 3 -15.69378749552763 -36.98450310621803 68.6798 0.2627 365 +367 3 -16.59999735895323 -36.429444451537336 69.0698 0.261 366 +368 3 -17.404244814585695 -35.71004966848979 69.4582 0.2593 367 +369 3 -17.770846966007014 -34.764003003928394 69.86 0.2576 368 +370 3 -17.99739676864391 -33.87680616363478 70.2932 0.2559 369 +371 3 -18.694527331607503 -33.32535551011105 70.7955 0.2542 370 +372 3 -19.505570735276564 -32.88202941038447 71.3636 0.2525 371 +373 3 -19.859639763149175 -32.08025307394973 71.9415 0.2509 372 +374 3 -19.994554968185383 -31.245723074947083 72.5147 0.2492 373 +375 3 -20.46349476750845 -30.478513277478648 73.0167 0.2475 374 +376 3 -21.231499233293874 -29.742066643175942 73.416 0.2458 375 +377 3 -22.175361607273942 -29.03271145494018 73.7363 0.2441 376 +378 3 -23.16842204594937 -28.82620100901234 74.039 0.2424 377 +379 3 -24.146924442361325 -28.084958970396556 74.4131 0.2407 378 +380 3 -25.060466971574925 -27.549808496757127 74.8322 0.239 379 +381 3 -25.727124505427412 -26.863324326855295 75.3214 0.2373 380 +382 3 -26.14504760666682 -26.136917344246417 75.8881 0.2356 381 +383 3 -26.064185044975176 -25.347055906470196 76.5618 0.2339 382 +384 3 -25.116985087931027 -24.928295535794796 77.2027 0.2322 383 +385 3 -24.28426522072283 -24.408496746155333 78.4 0.2305 384 +386 3 -25.452023143330052 -71.67927279955369 55.5551 0.3192 292 +387 3 -25.433851778655836 -70.8017717985893 55.8267 0.3192 386 +388 3 -25.510601530176046 -69.93996873911313 56.1179 0.3192 387 +389 3 -25.330024642629212 -69.07278174488087 56.4578 0.3192 388 +390 3 -24.786504194396045 -68.80755510538506 56.887 0.3192 389 +391 3 -24.427617110713683 -68.19022757671532 57.3653 0.3192 390 +392 3 -24.545680918043047 -67.33651038790266 57.7951 0.3192 391 +393 3 -24.816713226364328 -66.52718050497914 58.1459 0.3192 392 +394 3 -24.937270012188037 -65.66479577687925 58.4312 0.3192 393 +395 3 -24.699309810291552 -64.78947460616956 58.6706 0.3192 394 +396 3 -24.113686116838778 -63.94482277048004 58.9123 0.3192 395 +397 3 -23.720340008077258 -63.23716608505513 59.232 0.3192 396 +398 3 -23.787424097530064 -62.41717172391651 59.6319 0.3192 397 +399 3 -23.71209133867545 -61.66433627725629 60.0468 0.3192 398 +400 3 -23.43339429464268 -61.016744410047224 60.4254 0.3192 399 +401 3 -23.203239130076042 -60.18652192286437 60.7656 0.3192 400 +402 3 -23.01141837616194 -59.26894828714399 61.0775 0.3192 401 +403 3 -23.16854724453509 -58.44216387807666 61.3847 0.3192 402 +404 3 -23.5563840744842 -57.722327324326585 61.7515 0.3192 403 +405 3 -23.76497899716948 -56.84612240560902 62.2129 0.3192 404 +406 3 -24.011075984546252 -55.92983658139398 62.7239 0.3192 405 +407 3 -24.661698132430544 -55.00197075966805 63.2523 0.3192 406 +408 3 -25.353166897871418 -54.43168996198025 63.8546 0.3192 407 +409 3 -25.19085046291741 -53.681866295590055 64.5425 0.3192 408 +410 3 -24.55557249292849 -53.07506078620525 65.2086 0.3192 409 +411 3 -24.42074738271606 -52.32275590995171 65.7927 0.3192 410 +412 3 -25.05444259919858 -51.42493730849519 66.2794 0.3192 411 +413 3 -25.933636383501096 -50.96400880464819 66.7164 0.3192 412 +414 3 -26.851354820860635 -50.081808901411456 67.1712 0.3192 413 +415 3 -27.71646425534827 -49.62144412625758 67.6948 0.3192 414 +416 3 -28.008151328969205 -48.88743738636892 68.269 0.3192 415 +417 3 -27.13555042790493 -48.173091590426246 68.791 0.3192 416 +418 3 -26.924553651155477 -47.56479795462767 69.4089 0.3192 417 +419 3 -27.01099169208794 -46.737162641284854 70.0342 0.3192 418 +420 3 -27.534667438794116 -45.84481034482187 70.5936 0.3192 419 +421 3 -28.535864532536152 -45.68015688436632 71.0192 0.3192 420 +422 3 -28.456913911131124 -45.344431189573456 71.3661 0.3192 421 +423 3 -28.57290226272427 -44.52246578241995 72.4926 0.3127 422 +424 3 -29.099792762417437 -43.847885115747 72.9716 0.3095 423 +425 3 -29.654413327176016 -43.13997823788206 73.5619 0.3063 424 +426 3 -29.99348979535121 -42.381018478057875 74.2336 0.3031 425 +427 3 -30.045714115840326 -41.546509183966556 74.9538 0.2999 426 +428 3 -29.9296445148494 -40.67597616316162 75.6554 0.2967 427 +429 3 -30.051586485160243 -39.82804761461154 76.309 0.2934 428 +430 3 -30.853850100599942 -39.18249769809092 76.9927 0.2902 429 +431 3 -31.661156172945425 -38.3747780471229 77.735 0.287 430 +432 3 -32.352109953968096 -37.81579342373735 78.4703 0.2838 431 +433 3 -33.438258231287136 -37.364859773040514 79.1451 0.2806 432 +434 3 -34.536683664892166 -37.149873844475586 79.812 0.2774 433 +435 3 -34.83740651411594 -36.503611389639 80.6602 0.2741 434 +436 3 -35.26837269336451 -35.874096025031676 81.6169 0.2709 435 +437 3 -35.81956225656242 -35.22796413373356 82.5524 0.2677 436 +438 3 -36.214202863320054 -35.04385954750132 83.6903 0.2677 437 +439 3 -36.90763088035962 -34.3082503989481 85.1679 0.2628 438 +440 3 -37.39050237001163 -33.445981005794636 85.806 0.2604 439 +441 3 -37.71730523654145 -32.70811726365834 86.611 0.258 440 +442 3 -37.87358363800317 -31.90516897553447 87.4852 0.2555 441 +443 3 -37.68301009217919 -31.107421187867434 88.401 0.2531 442 +444 3 -37.63173967679194 -30.29119905973013 89.3063 0.2507 443 +445 3 -37.58448854734448 -29.47397329141128 90.1368 0.2482 444 +446 3 -37.80142384646226 -28.652392840244747 90.972 0.2458 445 +447 3 -38.11150769793963 -27.824651999001336 91.7577 0.2434 446 +448 3 -37.943637181670255 -27.04321209133954 92.568 0.241 447 +449 3 -37.57816245556435 -26.602937584876898 93.4802 0.2385 448 +450 3 -37.965577742293135 -25.67392762360447 94.2976 0.2361 449 +451 3 -38.09651703138749 -24.797551821429657 94.9203 0.2337 450 +452 3 -38.494575994423656 -24.074978572257955 96.32 0.2312 451 +453 3 -35.621399748756374 -34.84159122316777 83.3504 0.2677 437 +454 3 -35.161005207251975 -34.05711760724249 84.0616 0.2634 453 +455 3 -34.833341050297264 -33.25279665538257 84.6852 0.2612 454 +456 3 -34.75862091204195 -32.41629122675513 85.2362 0.259 455 +457 3 -34.382984961196854 -31.58504279577457 85.71 0.2569 456 +458 3 -33.36817672156582 -31.522837902401797 86.1008 0.2547 457 +459 3 -32.53596869221457 -30.741980729309915 86.4931 0.2526 458 +460 3 -31.88677328809075 -30.22061766924759 86.8776 0.2504 459 +461 3 -31.274365923789787 -29.665225878567657 87.2441 0.2482 460 +462 3 -30.57290395286313 -28.989502332783122 87.6156 0.2461 461 +463 3 -30.007870522794974 -28.189586191519176 87.9743 0.2439 462 +464 3 -29.943065993231954 -27.283210823017654 88.3025 0.2418 463 +465 3 -29.615692414418305 -26.376345340335195 88.6371 0.2396 464 +466 3 -29.11397461097937 -25.704721957912604 88.9426 0.2374 465 +467 3 -28.622965956331996 -25.09971648075512 89.206 0.2353 466 +468 3 -28.69557623623922 -24.258307943068907 89.5149 0.2331 467 +469 3 -29.762345954668916 -23.93875003667247 90.44 0.231 468 +470 3 -29.253549933142267 -45.277403316166776 71.3787 0.3192 421 +471 3 -30.219596778802455 -44.76359344525985 71.71 0.3152 470 +472 3 -31.31278166680481 -44.29238479823869 72.0076 0.3132 471 +473 3 -32.44921107863766 -44.251119304349864 72.2918 0.3112 472 +474 3 -33.54739522806902 -43.8619744977285 72.5945 0.3092 473 +475 3 -34.53898515983643 -43.49237840027338 72.9322 0.3072 474 +476 3 -35.46094725048653 -43.13419941658926 73.3065 0.3052 475 +477 3 -36.373445166701174 -42.36704653737942 73.7341 0.3032 476 +478 3 -37.31615173468691 -42.00121409728747 74.214 0.3012 477 +479 3 -38.33274953023806 -41.27134182969436 74.7001 0.2992 478 +480 3 -39.37397357848906 -41.065240071333875 75.1293 0.2972 479 +481 3 -40.25952071354364 -40.66052999803766 75.4726 0.2952 480 +482 3 -40.87019670412995 -39.962494041612956 75.7408 0.2932 481 +483 3 -41.37011917561341 -39.096566224235836 75.9682 0.2911 482 +484 3 -42.032248906751576 -38.101819039391096 76.1956 0.2891 483 +485 3 -42.95379314441678 -37.63938636224597 76.435 0.2871 484 +486 3 -43.9840414328023 -36.93046498014418 76.6721 0.2851 485 +487 3 -44.995355118120784 -36.6828545538392 76.8975 0.2831 486 +488 3 -45.98512286185927 -36.03515365583118 77.1176 0.2811 487 +489 3 -47.0087358448764 -35.5742317946375 77.3612 0.2791 488 +490 3 -48.03795585448529 -35.289239061766196 77.6773 0.2771 489 +491 3 -49.01199242506354 -34.994275627568655 78.0805 0.2751 490 +492 3 -49.981999143743494 -34.32686749479345 78.5263 0.2731 491 +493 3 -51.02769212546298 -33.91497089082637 78.9592 0.2711 492 +494 3 -52.12614372094281 -33.50784613979851 79.3761 0.2691 493 +495 3 -53.215475986311375 -33.447197796377324 79.8182 0.2671 494 +496 3 -54.2829769954749 -33.217099139131925 80.306 0.2651 495 +497 3 -55.36384724223626 -32.72671402985586 80.8242 0.2631 496 +498 3 -56.47701610507279 -32.7648188426323 81.345 0.2611 497 +499 3 -57.593990802794394 -32.625305776339566 81.8325 0.2591 498 +500 3 -58.711927355054726 -32.806016877360854 82.266 0.2571 499 +501 3 -59.61146413685678 -32.494945046164425 82.6865 0.2551 500 +502 3 -58.93668674409574 -31.77744526894963 83.2208 0.2531 501 +503 3 -57.79511890912488 -31.73483906876564 83.7575 0.2511 502 +504 3 -56.671626275373555 -31.801169115584482 84.3438 0.2491 503 +505 3 -55.80508715624029 -31.18433440799875 85.045 0.2471 504 +506 3 -55.83990028951102 -31.028478458228896 85.9496 0.2471 505 +507 3 -55.870447995936445 -30.546756783962657 87.2388 0.2452 506 +508 3 -55.869777766665536 -29.962980626496527 88.7813 0.2442 507 +509 3 -55.995304603445874 -29.34996826236325 90.4831 0.2432 508 +510 3 -56.29445358024307 -28.889366230162523 92.3059 0.2423 509 +511 3 -56.67598006158022 -28.466273731671045 94.1688 0.2413 510 +512 3 -56.86022810340563 -27.75757451690233 95.9437 0.2404 511 +513 3 -56.79765879834625 -26.986382674883977 97.5657 0.2394 512 +514 3 -56.8718781642699 -26.26218597197149 99.1015 0.2384 513 +515 3 -56.62992726796955 -25.918288569602296 100.7048 0.2375 514 +516 3 -56.57252101745442 -26.407529683694715 102.2792 0.2365 515 +517 3 -57.12835632037604 -27.05761760314593 103.658 0.2355 516 +518 3 -58.048158859697935 -27.31795819288625 104.7407 0.2346 517 +519 3 -58.9019876649444 -27.85767482058965 105.5144 0.2336 518 +520 3 -59.73295075886588 -28.540068782906594 106.043 0.2327 519 +521 3 -60.71598999218696 -28.810801084302994 106.3955 0.2317 520 +522 3 -61.77139876750624 -29.137603978909663 106.6206 0.2307 521 +523 3 -62.68726176838203 -29.08842211594648 107.52 0.2298 522 +524 3 -55.58792622401651 -30.92561358273236 83.44 0.2471 505 +525 3 -55.1823547779706 -30.15349191163051 84.6376 0.2434 524 +526 3 -54.944468905641514 -29.512066727042413 85.1654 0.2416 525 +527 3 -54.49010695441129 -28.931885771073798 85.8024 0.2398 526 +528 3 -53.79827440365099 -28.297986323037676 86.4814 0.238 527 +529 3 -53.440778972099395 -27.577469966722738 87.1937 0.2361 528 +530 3 -52.97263917533826 -26.71448694979152 87.8335 0.2343 529 +531 3 -52.28419998547821 -25.96402778780199 88.277 0.2325 530 +532 3 -51.8330720733866 -25.376070852973367 88.76 0.2306 531 +533 3 -3.623555499239661 -286.47250495239604 39.7832 0.4221 75 +534 3 -3.649442766627253 -285.3794573482105 41.2516 0.4087 533 +535 3 -3.8260365660279163 -284.3018428743877 41.8709 0.402 534 +536 3 -4.005394810433472 -283.17723706765685 42.5093 0.3953 535 +537 3 -4.3098750731805815 -282.15963676455755 43.1634 0.3886 536 +538 3 -4.958428718904507 -281.2952399115691 43.9575 0.3818 537 +539 3 -5.692103281515184 -281.55752651193995 44.9663 0.3751 538 +540 3 -6.527514291176889 -280.67319426141967 46.0578 0.3684 539 +541 3 -6.754886185227367 -279.23839895991364 47.1439 0.3617 540 +542 3 -6.304485563518337 -279.01625712889086 48.0385 0.355 541 +543 3 -5.76713564302997 -278.03703082689407 48.7824 0.3483 542 +544 3 -5.255440584244713 -276.607930381864 49.3536 0.3416 543 +545 3 -5.129729579553821 -275.27891619344643 49.7311 0.3348 544 +546 3 -5.467105871027794 -274.2812789115645 49.9775 0.3281 545 +547 3 -6.171433745084915 -273.66520230469877 50.1595 0.3214 546 +548 3 -6.58655808174127 -271.8453433773277 50.3314 0.3147 547 +549 3 -6.889180749532919 -270.08560294847393 50.5151 0.308 548 +550 3 -6.78421688280671 -269.04925750540235 50.7329 0.3013 549 +551 3 -6.36124642511745 -268.7271932864909 51.0418 0.2946 550 +552 3 -6.135296380464432 -267.9099699670352 51.6037 0.2878 551 +553 3 -5.887349794948989 -266.674442808271 52.2735 0.2811 552 +554 3 -5.692323980105563 -265.4093158000269 52.9522 0.2744 553 +555 3 -5.699293483396339 -264.1473479592928 53.4456 0.2681 554 +556 3 -5.936206582300244 -263.82478205057095 56.4446 0.2677 555 +557 3 -5.862577244671684 -263.0457541459343 60.2185 0.265 556 +558 3 -5.647147233975723 -262.30426960352344 61.8156 0.2637 557 +559 3 -5.645807225030261 -261.89759666018784 63.7762 0.2623 558 +560 3 -5.679820680784779 -261.678963456592 65.9971 0.261 559 +561 3 -5.676220626478475 -261.5523546553305 68.3684 0.2596 560 +562 3 -5.69601971909254 -261.4243791158735 70.7787 0.2583 561 +563 3 -5.805007821273016 -261.3127145710327 73.1245 0.257 562 +564 3 -6.342523430612481 -261.0977184201291 75.2738 0.2556 563 +565 3 -6.831034188405916 -259.4797097599045 77.1823 0.2543 564 +566 3 -6.673069822329552 -258.6926353223936 78.745 0.2529 565 +567 3 -6.881509308120634 -257.30931750768445 80.127 0.2516 566 +568 3 -7.241248582519667 -255.95082529621232 81.3999 0.2502 567 +569 3 -7.223762012130962 -254.75100777717324 82.5418 0.2489 568 +570 3 -6.954085865980112 -253.88283287765682 83.6864 0.2476 569 +571 3 -6.898978599691695 -253.1241478148816 84.9601 0.2462 570 +572 3 -6.716190222445341 -252.47386471283704 86.2644 0.2449 571 +573 3 -6.551608089350559 -251.68156841672732 87.5104 0.2435 572 +574 3 -6.958003660731066 -249.9000471332791 88.7132 0.2422 573 +575 3 -7.456436008928179 -248.73323005158142 89.8755 0.2408 574 +576 3 -7.729639778144197 -247.83847727902725 91.0025 0.2395 575 +577 3 -6.83185687285102 -247.5350785351224 92.0472 0.2381 576 +578 3 -5.933938069189196 -247.28463545046418 93.0362 0.2368 577 +579 3 -6.57759177972504 -246.68654401030375 93.9232 0.2368 578 +580 3 -7.345546077642204 -244.7301963194314 94.747 0.2364 579 +581 3 -8.111917976276274 -244.3224356724995 95.5259 0.2362 580 +582 3 -8.878289874910351 -242.95085985075184 96.2783 0.236 581 +583 3 -9.646244172827544 -241.6904317795452 97.0236 0.2358 582 +584 3 -10.412035497780039 -241.2879522059389 97.7735 0.2356 583 +585 3 -11.179471781496964 -240.88346747947264 98.5362 0.2354 584 +586 3 -11.945906239612334 -240.0301904698137 99.3124 0.2352 585 +587 3 -12.701124353068252 -238.30288539994575 100.133 0.235 586 +588 3 -13.457948289200246 -237.94004784171807 100.9865 0.2349 587 +589 3 -14.213189826049131 -236.44080910833145 101.8598 0.2347 588 +590 3 -15.130122803159985 -235.6551816603013 102.7037 0.2345 589 +591 3 -16.106672085390144 -235.49602024517128 103.5062 0.2343 590 +592 3 -17.086497106807926 -234.29044578690406 104.279 0.2341 591 +593 3 -18.066370509365882 -233.8728738759707 105.0339 0.2339 592 +594 3 -18.836239737130143 -233.28743035123807 105.8187 0.2337 593 +595 3 -19.382417394912075 -231.92238574419002 106.6688 0.2335 594 +596 3 -19.779582326406832 -230.6079397541987 107.5866 0.2333 595 +597 3 -20.168420477209708 -229.40385367281309 108.5445 0.2331 596 +598 3 -20.558753510067177 -228.58908957011673 109.5128 0.2329 597 +599 3 -20.94970625269456 -227.77536921640507 110.4653 0.2327 598 +600 3 -21.265928332625023 -226.78459144037737 111.2787 0.2325 599 +601 3 -21.56628110729271 -225.68577224628828 111.9555 0.2323 600 +602 3 -21.864510045084053 -224.34706113485376 112.5351 0.2321 601 +603 3 -22.1641947288417 -222.74796145957453 113.062 0.2319 602 +604 3 -22.46242366663305 -221.24131294650172 113.5786 0.2317 603 +605 3 -22.76272806016059 -219.89072861097895 114.1235 0.2315 604 +606 3 -23.06086948072349 -218.9004832154056 114.7306 0.2313 605 +607 3 -23.433329265814756 -218.07693213110986 115.5372 0.2311 606 +608 3 -23.928372234647384 -217.4413383267542 116.5335 0.231 607 +609 3 -24.768047232173274 -216.3253149538379 117.6613 0.2308 608 +610 3 -25.608254422240577 -215.57750997785124 118.8802 0.2306 609 +611 3 -26.446879213024786 -215.34223944673408 120.1516 0.2304 610 +612 3 -27.28713478423225 -214.76993749057326 121.4394 0.2302 611 +613 3 -28.127341974299554 -213.34117363851828 122.7352 0.23 612 +614 3 -28.965966765083763 -213.24263171642156 124.0044 0.2298 613 +615 3 -29.806173955151067 -212.12066973731737 125.223 0.2296 614 +616 3 -30.645848952676985 -211.790606445001 126.3688 0.2294 615 +617 3 -31.485005936002622 -211.14313888626617 127.4249 0.2292 616 +618 3 -32.325261507210044 -210.96892510554682 129.4804 0.229 617 +619 3 -4.996702394573013 -246.9731757553871 94.2463 0.2368 578 +620 3 -3.919693587306895 -246.61659692635897 95.8532 0.2356 619 +621 3 -2.843599088413889 -246.87322499394963 96.5322 0.235 620 +622 3 -1.768804898593018 -246.8426119661397 97.3566 0.2343 621 +623 3 -0.7694867639865421 -247.89654925915238 98.2946 0.2337 622 +624 3 0.2174855174357262 -248.32893571010118 99.3205 0.2331 623 +625 3 1.203407592116264 -248.41964168286626 100.4576 0.2325 624 +626 3 2.1903314923983643 -249.29589440315635 101.6406 0.2319 625 +627 3 3.0724540747203193 -249.54572861736466 102.9067 0.2313 626 +628 3 3.7587712695836615 -250.35693142481455 104.2874 0.2307 627 +629 3 4.261160656945599 -250.95756059180667 105.7706 0.23 628 +630 3 4.154054175824903 -250.436814541334 109.2137 0.2294 629 +631 3 -6.277109881788732 -263.45552157916205 53.7244 0.2683 555 +632 3 -7.060092185256245 -261.3661120573669 53.7953 0.2685 631 +633 3 -7.909708176116631 -260.9840959751149 53.7205 0.2688 632 +634 3 -8.438799541808855 -259.8980032254349 53.6161 0.269 633 +635 3 -8.454999684985353 -258.6703652524205 53.5506 0.2692 634 +636 3 -8.291529288507142 -257.66555306110456 53.522 0.2694 635 +637 3 -8.29420675736727 -256.4121477851774 53.4923 0.2697 636 +638 3 -8.462755691765828 -255.04307591212444 53.4467 0.2699 637 +639 3 -8.647784687445593 -253.42172035323853 53.3946 0.2701 638 +640 3 -8.87395050966991 -251.8055690028869 53.3756 0.2703 639 +641 3 -9.12436602357883 -250.1982630515459 53.438 0.2705 640 +642 3 -9.263051849910234 -249.0561144923352 53.6158 0.2708 641 +643 3 -9.320819316603114 -247.86420194447453 53.8961 0.271 642 +644 3 -9.541055895256335 -246.81740679277613 54.2545 0.2712 643 +645 3 -9.867539418883332 -245.86766333452613 54.647 0.2714 644 +646 3 -10.03209647227078 -244.75060979016868 54.9749 0.2717 645 +647 3 -10.021787479818101 -243.48166240429174 55.1552 0.2719 646 +648 3 -10.116351648785013 -242.31164172361616 55.1289 0.2721 647 +649 3 -10.350058791452632 -241.26458942979096 54.9108 0.2723 648 +650 3 -10.400980181167043 -240.0604806813895 54.5835 0.2726 649 +651 3 -10.274581682635237 -238.74777324277952 54.2086 0.2728 650 +652 3 -10.046008917351756 -237.38032637421944 53.8535 0.273 651 +653 3 -9.826232565820362 -236.02902378466544 53.5304 0.2732 652 +654 3 -10.216396119037249 -235.21842049451033 53.1583 0.2735 653 +655 3 -11.089970466319393 -235.10593290603484 52.7668 0.2737 654 +656 3 -12.012807729254234 -234.50481902221742 52.4765 0.2739 655 +657 3 -12.590742992413091 -232.57136410667914 52.3981 0.2741 656 +658 3 -12.533493087733653 -231.46560342544097 52.5913 0.2743 657 +659 3 -12.32447123635189 -230.62033080249512 52.9508 0.2746 658 +660 3 -12.216753373800088 -229.64576076375613 53.3898 0.2748 659 +661 3 -12.342080780866105 -228.2175324990526 53.8278 0.275 660 +662 3 -12.586389821939314 -226.67342763317004 54.2396 0.2752 661 +663 3 -12.733446789640716 -225.3872199811437 54.5838 0.2755 662 +664 3 -12.75272048499312 -224.14269047479553 54.8288 0.2757 663 +665 3 -12.885247728186961 -222.8813930044467 54.9886 0.2759 664 +666 3 -13.516472729114703 -222.2313440493106 55.0855 0.2761 665 +667 3 -14.495661337387162 -220.92287324818074 55.1387 0.2763 666 +668 3 -15.403824023694291 -220.19508975248857 55.1622 0.2766 667 +669 3 -15.76636837461443 -219.3069855059328 55.1712 0.2768 668 +670 3 -15.213468705213629 -217.87727559574728 55.1768 0.277 669 +671 3 -14.564478848110262 -216.94525500310078 55.1835 0.2772 670 +672 3 -14.537877511746643 -215.795877760888 55.193 0.2775 671 +673 3 -15.25277187728284 -214.7168333627825 55.2059 0.2777 672 +674 3 -16.043060937037467 -214.31529088896394 55.2244 0.2779 673 +675 3 -16.48318534892723 -213.3317478887828 55.2499 0.2781 674 +676 3 -16.596808540544004 -212.06943873123168 55.286 0.2783 675 +677 3 -16.646927766634242 -210.83110584549485 55.3364 0.2786 676 +678 3 -16.82294771237089 -209.57811843192906 55.4061 0.2788 677 +679 3 -17.157135781885657 -208.21741228942284 55.5024 0.279 678 +680 3 -17.534491773003246 -206.67270902980474 55.6405 0.2792 679 +681 3 -17.754831542653967 -205.29699297253455 55.839 0.2795 680 +682 3 -17.796893959134948 -204.08325023031935 56.1047 0.2797 681 +683 3 -17.860598419022864 -202.83822048205917 56.4147 0.2799 682 +684 3 -17.973253696536744 -201.5666840858072 56.7288 0.2801 683 +685 3 -17.96512185538988 -200.32629779876817 57.0055 0.2804 684 +686 3 -17.725977374037654 -199.38287056318083 57.2174 0.2806 685 +687 3 -17.4561947735489 -198.47894320492838 57.3644 0.2808 686 +688 3 -17.57711427227344 -197.19184295561257 57.4636 0.281 687 +689 3 -17.988136078597563 -195.65656861298172 57.5378 0.2813 688 +690 3 -18.26596085816754 -194.50671442878007 57.6078 0.2815 689 +691 3 -18.093063888988027 -193.2396261050776 57.6909 0.2817 690 +692 3 -17.59872033460688 -192.66367012033385 57.8046 0.2819 691 +693 3 -17.22648677626627 -191.90519333931627 57.9734 0.2821 692 +694 3 -17.184296554901877 -190.72228012083238 58.2154 0.2824 693 +695 3 -17.378711491766744 -189.50684956585442 58.5158 0.2826 694 +696 3 -17.653928623059137 -188.06776341184872 58.8344 0.2828 695 +697 3 -17.86583991644825 -186.65178191400292 59.1354 0.283 696 +698 3 -17.985864509730526 -185.33754718871066 59.3992 0.2833 697 +699 3 -18.258231174217357 -183.80855016405707 59.6109 0.2835 698 +700 3 -18.946175457973247 -183.2612570367137 59.7607 0.2837 699 +701 3 -19.798616957891987 -182.45783966102397 59.8559 0.2839 700 +702 3 -20.270657539798528 -180.90781095024522 59.9138 0.2841 701 +703 3 -20.00436704385036 -180.09299699274277 59.9502 0.2844 702 +704 3 -19.469495923515197 -179.44743357138498 59.9766 0.2846 703 +705 3 -19.16844624906834 -178.08758739782667 60.0029 0.2848 704 +706 3 -19.06649710419856 -176.7882793900714 60.037 0.285 705 +707 3 -18.8594412633594 -175.45012308790695 60.0835 0.2853 706 +708 3 -18.510278341837264 -174.04915764833441 60.1437 0.2855 707 +709 3 -18.18286438388128 -173.27674122908914 60.2328 0.2857 708 +710 3 -17.95614921355326 -172.51550070169694 60.3781 0.2859 709 +711 3 -17.857901080253257 -171.55790691137332 60.5707 0.2862 710 +712 3 -17.894830162591134 -170.33386790173677 60.7656 0.2864 711 +713 3 -18.040411651168725 -168.91927402442658 60.9336 0.2866 712 +714 3 -18.17114385888837 -167.53232601094143 61.0708 0.2868 713 +715 3 -18.07068437148355 -166.5485755759045 61.1806 0.2871 714 +716 3 -17.703492900895753 -165.60862778701562 61.2777 0.2873 715 +717 3 -17.43706277741714 -164.32063535577728 61.4051 0.2875 716 +718 3 -17.78555478651373 -163.37280367887445 61.5695 0.2877 717 +719 3 -18.651029633457583 -161.68006599895523 61.7288 0.2879 718 +720 3 -19.373379336562834 -160.90414496694297 61.8663 0.2882 719 +721 3 -19.546475806833286 -159.81590913706782 61.9842 0.2884 720 +722 3 -19.36934563354255 -158.49445081654892 62.0934 0.2886 721 +723 3 -19.054173308166938 -157.11826233637436 62.2157 0.2888 722 +724 3 -18.638190050414465 -156.3387575688912 62.3613 0.2891 723 +725 3 -18.16923913627768 -155.98477554198573 62.5218 0.2893 724 +726 3 -17.901270974193977 -154.74523677411068 62.6746 0.2895 725 +727 3 -18.10543083598303 -153.61173096270835 62.7956 0.2897 726 +728 3 -18.70510983811846 -151.9691331088507 62.8757 0.2899 727 +729 3 -19.466606894906334 -150.74218653176197 62.9168 0.2902 728 +730 3 -20.267405111248422 -150.3817742028258 62.9266 0.2904 729 +731 3 -20.971152411624004 -148.452795253314 62.9129 0.2906 730 +732 3 -21.316119608808947 -147.32956223553688 62.8816 0.2908 731 +733 3 -21.12826241815003 -146.00385931620326 62.8356 0.2911 732 +734 3 -20.65262968208573 -145.63375879758274 62.7724 0.2913 733 +735 3 -20.305629733528193 -144.76611912652967 62.6794 0.2915 734 +736 3 -20.339277852088784 -143.56704508923036 62.5408 0.2917 735 +737 3 -20.608886791588233 -142.34838379382634 62.3596 0.2919 736 +738 3 -20.745604082342766 -140.99656350143192 62.1746 0.2922 737 +739 3 -20.531778902347597 -140.07338159784751 62.0486 0.2924 738 +740 3 -20.225819309354677 -138.7048605706338 62.0052 0.2926 739 +741 3 -19.8352480947774 -137.31319746599212 62.0211 0.2928 740 +742 3 -19.40378660134529 -136.0511234906232 62.0612 0.2931 741 +743 3 -19.422222726147055 -134.88113743701388 62.1074 0.2933 742 +744 3 -19.99978109806395 -133.98366492026304 62.1474 0.2935 743 +745 3 -20.64844884978612 -133.36566949188006 62.174 0.2937 744 +746 3 -21.294039320170526 -131.67105600095044 62.1905 0.294 745 +747 3 -21.95952488832755 -130.45538576270957 62.2042 0.2942 746 +748 3 -22.621440118693727 -129.775566341817 62.2222 0.2944 747 +749 3 -23.250657447956243 -129.08426141493763 62.2471 0.2946 748 +750 3 -23.774931306693915 -128.30068047259533 62.281 0.2949 749 +751 3 -24.078047030938635 -127.29296325875963 62.3288 0.2951 750 +752 3 -24.08036178689794 -126.061907320059 62.3988 0.2953 751 +753 3 -23.858408284060715 -124.72417493396995 62.4957 0.2955 752 +754 3 -23.746394657916426 -123.43411994231441 62.6223 0.2957 753 +755 3 -24.079300481567643 -122.45917252992415 62.7718 0.296 754 +756 3 -24.73280141401341 -121.0638675097473 62.9168 0.2962 755 +757 3 -25.438474093415394 -119.51336951756203 63.0445 0.2964 756 +758 3 -25.9963068472003 -118.76964276622172 63.1576 0.2966 757 +759 3 -25.94712569673733 -117.5128393643877 63.2652 0.2969 758 +760 3 -25.12626837605984 -116.65395016629589 63.3934 0.2971 759 +761 3 -24.41845868705026 -116.68287801463283 63.586 0.2973 760 +762 3 -24.980367848219046 -115.57395815038561 63.8277 0.2975 761 +763 3 -26.006388487309692 -114.95226924615258 64.0192 0.2977 762 +764 3 -26.88807072489662 -114.40257937640116 64.0825 0.298 763 +765 3 -27.301214872669235 -113.15129434931873 64.0447 0.2982 764 +766 3 -27.342169747516934 -112.288701605457 64.0088 0.2984 765 +767 3 -27.243026708774664 -111.60072605282737 64.0388 0.2986 766 +768 3 -27.142402966318926 -110.91444321390809 64.1497 0.2989 767 +769 3 -27.115653048673366 -110.13731974172644 64.3261 0.2991 768 +770 3 -27.17818740744667 -109.24793030828418 64.5616 0.2993 769 +771 3 -27.43484902172166 -108.15563623006886 64.8522 0.2995 770 +772 3 -28.04254420195018 -107.18848233397057 65.1899 0.2998 771 +773 3 -28.84385371247504 -106.89263911294155 65.5844 0.3 772 +774 3 -29.399988931372135 -106.40275761610403 66.0251 0.3002 773 +775 3 -29.291830122669225 -105.50510531610506 66.4404 0.3004 774 +776 3 -28.752933209824263 -104.50580360101172 66.7769 0.3007 775 +777 3 -28.29262340814016 -103.53981540255702 67.0471 0.3009 776 +778 3 -28.354468777644783 -102.71311251107491 67.2885 0.3011 777 +779 3 -28.931073413799936 -102.16487705173613 67.5178 0.3013 778 +780 3 -29.730371523497723 -101.82583177589365 67.7258 0.3015 779 +781 3 -30.637151472499184 -101.60220648886398 67.9031 0.3018 780 +782 3 -31.581200281869158 -100.33184668173337 68.0495 0.302 781 +783 3 -32.438344618959235 -100.074312590342 68.171 0.3022 782 +784 3 -33.010821767034955 -99.15048009857088 68.2791 0.3024 783 +785 3 -33.17469655117121 -98.18657221012477 68.3973 0.3027 784 +786 3 -32.9726239677654 -97.61463330406109 68.5563 0.3029 785 +787 3 -32.56768205914176 -96.80005024963405 68.7616 0.3031 786 +788 3 -32.212843161755714 -95.84635878954049 68.9942 0.3033 787 +789 3 -32.14080923525502 -94.93658703670896 69.2474 0.3035 788 +790 3 -32.37572711055344 -94.16747983058654 69.5198 0.3038 789 +791 3 -32.738224575761265 -93.43478676071219 69.7936 0.304 790 +792 3 -33.154229639518746 -92.73484456512496 70.0557 0.3042 791 +793 3 -33.759317171469604 -91.58421821496142 70.3088 0.3044 792 +794 3 -34.601249514800884 -90.81178392166622 70.5468 0.3047 793 +795 3 -35.32393174847013 -90.39133604522837 70.7582 0.3049 794 +796 3 -35.36106152239191 -89.56798455707525 70.9159 0.3051 795 +797 3 -35.02230083729785 -88.61089110167201 70.9778 0.3053 796 +798 3 -35.0039637221449 -87.75295044683091 70.9498 0.3056 797 +799 3 -35.417800588348015 -87.06399967892291 70.9075 0.3058 798 +800 3 -35.806923354396105 -86.36781258062791 70.9243 0.306 799 +801 3 -35.90354880075812 -85.52595541590584 71.013 0.3062 800 +802 3 -35.95017442688 -84.65521919071897 71.139 0.3064 801 +803 3 -36.31464042766471 -83.95857806257794 71.2704 0.3067 802 +804 3 -36.94295762689531 -83.4043844215063 71.3905 0.3069 803 +805 3 -37.261444375360114 -82.60954627765855 71.4921 0.3071 804 +806 3 -36.88937909253255 -81.74484835427724 71.5761 0.3073 805 +807 3 -36.30842552887992 -80.7777648703818 71.6556 0.3076 806 +808 3 -36.006248909868916 -79.81448258874256 71.7665 0.3078 807 +809 3 -36.307930816112474 -79.08542019831626 71.944 0.308 808 +810 3 -37.011930218994095 -78.65676159244695 72.1535 0.3082 809 +811 3 -37.448953926153166 -77.92684847838211 72.3206 0.3085 810 +812 3 -37.08072675739152 -77.04540299135067 72.4172 0.3087 811 +813 3 -36.43304223931801 -76.0667019431858 72.4794 0.3089 812 +814 3 -36.02753053641884 -75.11617513331328 72.5337 0.3091 813 +815 3 -36.13066952919529 -74.26291052340228 72.5959 0.3093 814 +816 3 -36.748307761971176 -73.70251806436193 72.6911 0.3096 815 +817 3 -37.584426036262414 -73.35893844478291 72.8594 0.3098 816 +818 3 -38.33524076658679 -72.50096625446815 73.1237 0.31 817 +819 3 -38.68834739624651 -71.46051031323266 73.453 0.3102 818 +820 3 -38.68874941716628 -70.6585216275378 73.7982 0.3105 819 +821 3 -38.541689433317416 -69.96487141181369 74.1269 0.3107 820 +822 3 -38.38668325025395 -69.27405933249926 74.4229 0.3109 821 +823 3 -38.507338332712195 -68.36842503283762 74.6883 0.3111 822 +824 3 -39.198645542657516 -67.25068407748229 74.9773 0.3114 823 +825 3 -39.827545879530334 -66.64335485605663 75.3838 0.3116 824 +826 3 -40.021754434400265 -65.88084532470246 75.887 0.3118 825 +827 3 -39.7184493753973 -65.02221877478144 76.3946 0.312 826 +828 3 -39.61437485929697 -64.13638301201976 76.7987 0.3122 827 +829 3 -40.12961471034431 -63.4242452397272 77.0795 0.3125 828 +830 3 -40.733850163176726 -62.782020559643804 77.1999 0.3127 829 +831 3 -41.12693835706092 -61.86981580698529 77.1607 0.3129 830 +832 3 -41.2126185950473 -61.00349589463902 77.0546 0.3131 831 +833 3 -41.12577265919607 -60.2669875635986 77.056 0.3134 832 +834 3 -41.842585217919776 -59.22614334032927 77.313 0.3136 833 +835 3 -42.77588391675528 -58.906779670024875 77.6611 0.3138 834 +836 3 -43.5760624233275 -58.20368943731455 77.9948 0.314 835 +837 3 -43.71174178346946 -57.65308867177071 78.3118 0.3179 836 +838 3 -43.55874849666094 -56.93605240207236 78.6055 0.3218 837 +839 3 -43.291410823753125 -56.177194183268256 78.9076 0.3256 838 +840 3 -43.20660157670282 -55.29820053393827 79.3164 0.3295 839 +841 3 -42.285095346260704 -54.8690808552224 79.6071 0.278 840 +842 3 -41.14668671611332 -55.28703432558314 79.5928 0.2747 841 +843 3 -40.051739673233826 -55.11495196387973 79.5841 0.2731 842 +844 3 -39.15246388606161 -54.85611058423147 79.5539 0.2714 843 +845 3 -38.31177775625467 -54.09225856923223 79.4937 0.2698 844 +846 3 -37.354794903399196 -53.40559212437879 79.3783 0.2682 845 +847 3 -36.31691515304884 -53.549898038910385 79.1988 0.2665 846 +848 3 -35.36750160816595 -52.98250860431374 78.9961 0.2649 847 +849 3 -34.455730590479476 -52.76320240627323 78.8194 0.2632 848 +850 3 -33.39615212228394 -52.29657054068046 78.6811 0.2616 849 +851 3 -32.283909414464105 -51.971776105953964 78.554 0.26 850 +852 3 -31.193972451346042 -52.08503768682934 78.4207 0.2583 851 +853 3 -30.227319877034674 -51.45593339739837 78.3138 0.2567 852 +854 3 -29.75780625779295 -50.93600590701221 78.2592 0.255 853 +855 3 -29.617872771184523 -50.21553782101293 78.2858 0.2534 854 +856 3 -29.205366779178064 -49.4336392182861 78.3913 0.2518 855 +857 3 -28.36429853353947 -48.7542252582293 78.5386 0.2501 856 +858 3 -27.920402504493424 -47.81005576806679 78.7144 0.2485 857 +859 3 -27.65019463162261 -46.889462976944905 78.9345 0.2468 858 +860 3 -27.005485699317205 -46.31598650777532 79.1963 0.2452 859 +861 3 -26.046539865701234 -46.06885766922009 79.5049 0.2436 860 +862 3 -24.982112990018948 -46.0220115574394 79.9445 0.2419 861 +863 3 -24.049341974740003 -45.57603909544888 80.5008 0.2403 862 +864 3 -23.351832787662545 -44.86087418349709 81.1362 0.2386 863 +865 3 -22.547915994127408 -44.251837849415885 81.8387 0.237 864 +866 3 -21.840169116972987 -43.87635014645129 82.5048 0.2354 865 +867 3 -21.098786102201075 -43.201284592759585 83.162 0.2337 866 +868 3 -20.25968153670277 -42.705215449141896 83.7841 0.2321 867 +869 3 -19.412972586532078 -42.4950554554952 85.12 0.2304 868 +870 3 -43.70987466061551 -54.54687800320864 80.2318 0.3295 840 +871 3 -43.277458596447175 -53.76327481571102 80.8623 0.3252 870 +872 3 -43.3506153464958 -53.59085944127025 81.2795 0.323 871 +873 3 -43.67093100300703 -52.840123799119425 81.6539 0.3209 872 +874 3 -44.024237294644195 -51.92269883386159 81.8068 0.3188 873 +875 3 -44.4350520195936 -50.91258900875238 81.975 0.3166 874 +876 3 -44.83126368114807 -49.973672463122654 82.1736 0.3145 875 +877 3 -45.00544054049708 -49.14488973441559 82.4135 0.3123 876 +878 3 -44.7515395590314 -48.38685443324437 82.6711 0.3102 877 +879 3 -44.261346916122676 -47.93345946459694 82.9206 0.3081 878 +880 3 -43.95276889544614 -47.05792570845102 83.1664 0.3059 879 +881 3 -44.07737120693716 -46.22149228533851 83.4042 0.3038 880 +882 3 -44.61966872037745 -45.434096275481856 83.6293 0.3016 881 +883 3 -45.37117616913237 -44.46978576505691 83.8544 0.2995 882 +884 3 -46.07965126442646 -43.82165840390088 84.0924 0.2973 883 +885 3 -46.54825301729558 -43.06120331165661 84.3452 0.2952 884 +886 3 -46.853688880385306 -42.240857199724466 84.6006 0.2931 885 +887 3 -47.322796003467786 -41.4893049390794 84.8422 0.2909 886 +888 3 -48.05293287532629 -40.9818002371813 85.0632 0.2888 887 +889 3 -48.85417576698137 -40.14356020743453 85.2827 0.2866 888 +890 3 -49.58740256416455 -39.42060188155276 85.5448 0.2845 889 +891 3 -50.05175357457259 -38.65295720294359 85.8718 0.2824 890 +892 3 -50.020552922261786 -37.79668810829984 86.2338 0.2802 891 +893 3 -50.111596668932265 -36.945450802244885 86.6491 0.2781 892 +894 3 -50.50095180432895 -36.153801669370296 87.1226 0.2759 893 +895 3 -50.582166799082245 -35.295032737765 87.6098 0.2738 894 +896 3 -50.21041920802412 -34.48818690858968 88.123 0.2716 895 +897 3 -49.80496148000782 -33.6967588084113 88.6967 0.2695 896 +898 3 -49.82364108379089 -32.85881814164583 89.3105 0.2674 897 +899 3 -50.23408666712224 -32.08994817343268 89.9396 0.2652 898 +900 3 -50.526955534091 -31.291425284437036 90.6158 0.2631 899 +901 3 -50.56214819782667 -30.471098589347875 91.3357 0.2609 900 +902 3 -51.04208191689216 -29.69339540301489 92.0354 0.2588 901 +903 3 -51.81109314156856 -28.86632247049093 92.6559 0.2566 902 +904 3 -51.835503861299514 -28.033657412904972 93.2534 0.2545 903 +905 3 -51.89171064322687 -27.28985937729183 94.0002 0.2524 904 +906 3 -52.17903824868364 -26.645283023525785 94.9452 0.2502 905 +907 3 -52.43406609167968 -25.825007940332526 95.8919 0.2481 906 +908 3 -53.1311272583653 -25.25294612263639 96.7162 0.2459 907 +909 3 -53.939433174952256 -24.733187288915907 97.4137 0.2438 908 +910 3 -54.655329074789734 -24.051597875794357 98.0482 0.2416 909 +911 3 -55.4850306038731 -23.374444145423936 98.66 0.2395 910 +912 3 -56.46718537834076 -22.852959957624883 99.2597 0.2374 911 +913 3 -57.34921436375927 -22.57200216492673 99.8836 0.2352 912 +914 3 -58.26774797788289 -21.85749975485384 100.5124 0.2331 913 +915 3 -59.39739830076016 -21.78671649198184 101.64 0.2309 914 +916 3 -43.1558816279226 -53.695199647101035 81.4268 0.3089 871 +917 3 -42.11485042237271 -53.47603753671953 82.0229 0.3089 916 +918 3 -41.16463947263392 -53.32173700745632 82.6238 0.3089 917 +919 3 -40.804778920032305 -52.526359385061156 83.2132 0.3089 918 +920 3 -40.955453111236835 -51.71135588954553 83.8127 0.3089 919 +921 3 -40.65434223714176 -50.95324760501051 84.4466 0.3089 920 +922 3 -39.8219668840311 -50.825690771278325 85.0256 0.3089 921 +923 3 -39.18041179636478 -50.16653640860495 85.5663 0.3089 922 +924 3 -39.878697020232266 -49.73335717616488 86.1641 0.3089 923 +925 3 -40.5245317079041 -48.898187746233404 86.8417 0.3089 924 +926 3 -40.62709082637879 -48.06537163688678 87.5624 0.3089 925 +927 3 -40.29293837205705 -47.495102895475334 88.2529 0.3089 926 +928 3 -39.857978054066834 -46.664258398049 88.9283 0.3089 927 +929 3 -39.683589931994476 -45.83574143805369 89.6339 0.3089 928 +930 3 -39.68835955996623 -45.016823130042596 90.3784 0.3089 929 +931 3 -39.598720861354195 -44.22032702311539 91.1674 0.3089 930 +932 3 -39.192270591714546 -43.30802508934163 91.9881 0.3089 931 +933 3 -38.36623963560446 -42.56603930323692 92.7842 0.3089 932 +934 3 -37.294164441466805 -42.70925049485757 93.5166 0.3089 933 +935 3 -36.35371376019451 -42.201131152536526 94.2771 0.3089 934 +936 3 -36.21969454276798 -41.51423440943384 95.0914 0.3089 935 +937 3 -36.047899929558454 -40.79324046255813 95.993 0.3089 936 +938 3 -35.56791192031331 -40.19859597408683 97.0404 0.3089 937 +939 3 -35.37799355022294 -39.56455849551074 98.2565 0.3089 938 +940 3 -35.72796546698487 -38.929735962098114 99.4888 0.3089 939 +941 3 -36.12011940589102 -38.19973951389984 100.6348 0.3089 940 +942 3 -36.390555835914824 -37.386237881287855 101.666 0.3089 941 +943 3 -36.55487098360163 -36.53604338964254 102.5055 0.3089 942 +944 3 -36.080237917257676 -35.79955506375437 103.1206 0.3089 943 +945 3 -35.15061093778101 -35.18879006425354 103.558 0.3089 944 +946 3 -35.4506983833551 -34.357051365066404 103.8892 0.3089 945 +947 3 -35.73495154262423 -33.64951119931121 104.3647 0.3089 946 +948 3 -36.532806105927335 -33.8423339672977 105.8112 0.3089 947 +949 3 -37.54447598005632 -33.75811526382936 108.1408 0.3022 948 +950 3 -38.60238338535467 -33.88285239483 109.0723 0.2989 949 +951 3 -39.53578659738966 -33.58830701395493 110.2741 0.2955 950 +952 3 -40.042952062846666 -33.31452887475571 111.7539 0.2922 951 +953 3 -40.55925832055857 -33.1988236500222 113.43 0.2889 952 +954 3 -41.20502536234463 -33.208465140633216 115.1937 0.2855 953 +955 3 -41.79325981041464 -33.56480328826441 116.9252 0.2822 954 +956 3 -42.42767327074566 -33.829395871283054 118.4613 0.2789 955 +957 3 -43.05399612674785 -34.52157044217586 119.73 0.2755 956 +958 3 -43.654808973167064 -35.16235157434616 120.7455 0.2722 957 +959 3 -44.321816561003686 -35.550433751777774 121.5791 0.2688 958 +960 3 -45.05853773927349 -36.34225726746479 122.3046 0.2655 959 +961 3 -45.57659842364471 -37.03949405058584 122.943 0.2622 960 +962 3 -45.99671285971206 -37.57596962781297 123.5004 0.2588 961 +963 3 -46.41104593411049 -38.37983208322464 123.9672 0.2555 962 +964 3 -46.66857458825862 -39.22775019054736 124.3852 0.2522 963 +965 3 -46.098127874787735 -39.92328470014437 124.8839 0.2488 964 +966 3 -45.745844637337484 -40.707035648686826 125.4218 0.2455 965 +967 3 -45.83693978129557 -41.56885304086352 125.9406 0.2422 966 +968 3 -46.34086148051564 -42.327715579916486 126.5037 0.2388 967 +969 3 -46.96999318112715 -43.028115081962696 127.101 0.2355 968 +970 3 -47.74969444685033 -43.73497479272873 128.52 0.2321 969 +971 3 -35.73456449350323 -33.648940743772464 104.7514 0.3089 947 +972 3 -35.270872984225804 -32.888262146292966 105.1915 0.3025 971 +973 3 -34.69374895004074 -32.17103697931767 105.6406 0.2993 972 +974 3 -34.01220977311564 -31.531328645885917 106.055 0.2961 973 +975 3 -33.13619536991425 -31.154045578080577 106.3832 0.2929 974 +976 3 -32.065933662427966 -30.781097790090477 106.6069 0.2897 975 +977 3 -30.965233323261515 -30.833263995569475 106.7984 0.2865 976 +978 3 -29.835682966967767 -30.689397055913826 106.9575 0.2833 977 +979 3 -28.69518963603241 -30.54483281825084 107.0717 0.2801 978 +980 3 -27.570133714628582 -30.619432812422026 107.1468 0.2768 979 +981 3 -26.4876994406132 -30.571827595068225 107.1958 0.2736 980 +982 3 -25.495828677913835 -30.005656669351875 107.2252 0.2704 981 +983 3 -24.671175447967272 -29.401078881178563 107.2372 0.2672 982 +984 3 -24.052304122519445 -28.687330379047403 107.2397 0.264 983 +985 3 -23.494623052470388 -28.15081089646426 107.24 0.2608 984 +986 3 -22.536385980207 -27.620212130305266 107.24 0.2576 985 +987 3 -21.400496490428708 -27.70975261393273 107.24 0.2544 986 +988 3 -20.257208610004398 -27.809398106465284 107.24 0.2512 987 +989 3 -19.19725368005234 -28.055508499426562 107.24 0.248 988 +990 3 -18.110305433916807 -28.408581798232838 107.24 0.2448 989 +991 3 -16.985707629156167 -28.684657389044215 107.24 0.2416 990 +992 3 -15.843531310827274 -29.03181002333465 107.24 0.2384 991 +993 3 -14.897335241188046 -29.31972425886678 107.24 0.2352 992 +994 3 -14.580763422570385 -30.130119246626265 107.24 0.232 993 +995 3 -44.15242816474853 -57.34284857335487 78.428 0.3089 836 +996 3 -44.86900509078323 -56.76699758872844 79.165 0.3067 995 +997 3 -45.643483714520954 -56.228323988133 79.4744 0.3056 996 +998 3 -46.381672870778814 -55.731742861531 79.8902 0.3045 997 +999 3 -46.94809532609415 -55.03538723069025 80.3692 0.3034 998 +1000 3 -47.46523037383106 -54.036020500712915 80.8284 0.3023 999 +1001 3 -48.20358864057643 -53.324820359844935 81.226 0.3012 1000 +1002 3 -49.06115083065136 -52.780060362990746 81.5654 0.3001 1001 +1003 3 -50.00782179686679 -51.89264745184606 81.881 0.299 1002 +1004 3 -51.06455123335219 -51.85011095927622 82.1696 0.2979 1003 +1005 3 -51.96183276619287 -51.410314586581414 82.4216 0.2967 1004 +1006 3 -52.36525844221636 -50.63883083885559 82.6538 0.2956 1005 +1007 3 -53.046479573148744 -49.60144967657868 82.8993 0.2945 1006 +1008 3 -53.95067160703012 -49.016987287671746 83.1998 0.2934 1007 +1009 3 -55.061538568751274 -48.88735810708607 83.5929 0.2923 1008 +1010 3 -56.17915906026474 -48.83321583154057 84.0647 0.2912 1009 +1011 3 -57.25751304073354 -48.64221640077013 84.5659 0.2901 1010 +1012 3 -57.97579748501394 -48.08223470964841 85.1063 0.289 1011 +1013 3 -58.53571684309412 -47.17522837052984 85.722 0.2879 1012 +1014 3 -59.251853852584134 -46.48645013851494 86.4433 0.2868 1013 +1015 3 -59.54738599384683 -45.816454515410506 87.2942 0.2857 1014 +1016 3 -59.87257952198631 -45.027152272521136 88.0886 0.2846 1015 +1017 3 -60.81757315229288 -44.22183154138064 88.7748 0.2835 1016 +1018 3 -61.41952051319805 -43.404646504285715 89.4118 0.2824 1017 +1019 3 -61.625966971486505 -42.626714521683745 90.0998 0.2813 1018 +1020 3 -61.5319266187291 -41.85648679181214 90.8953 0.2802 1019 +1021 3 -61.4122155358676 -41.01325732708715 91.6835 0.2791 1020 +1022 3 -61.61169705241109 -40.27662324478565 92.5333 0.278 1021 +1023 3 -61.55700880430868 -39.61196831580555 93.3526 0.2471 1022 +1024 3 -61.09410217267937 -39.13198120181221 94.0775 0.2454 1023 +1025 3 -60.410260725485855 -38.56461923810475 94.6308 0.2445 1024 +1026 3 -59.92458137672361 -37.744993562957674 95.0169 0.2436 1025 +1027 3 -59.658454766673344 -37.01934037395189 95.2834 0.2427 1026 +1028 3 -59.41340902927922 -36.29204997398287 95.4803 0.2419 1027 +1029 3 -59.224483433075335 -35.483755476468104 95.6614 0.241 1028 +1030 3 -58.957345752371694 -34.551076113510476 95.8532 0.2401 1029 +1031 3 -58.122341153244946 -33.89278391258836 96.0767 0.2393 1030 +1032 3 -57.240366954982534 -33.345467228867335 96.369 0.2384 1031 +1033 3 -56.47150564742462 -32.98354741298008 96.7758 0.2375 1032 +1034 3 -55.700145806555994 -32.28601532992277 97.3073 0.2366 1033 +1035 3 -54.99904476180204 -31.638701740713252 97.9815 0.2358 1034 +1036 3 -54.43270300184831 -31.264559673750053 98.786 0.2349 1035 +1037 3 -54.23102803352204 -30.482926610493145 99.6867 0.234 1036 +1038 3 -54.961435692622146 -29.774559765662044 100.6589 0.2332 1037 +1039 3 -55.048614910978074 -28.983563372717345 101.614 0.2323 1038 +1040 3 -54.693240791268494 -28.37578715701014 102.4702 0.2314 1039 +1041 3 -54.0101167678788 -27.70817357715008 103.1817 0.2305 1040 +1042 3 -53.361664075532616 -27.050284556765725 104.44 0.2297 1041 +1043 3 -60.95020903297498 -40.177400116963184 94.4499 0.278 1022 +1044 3 -60.246559307152836 -39.905454065331 97.5416 0.2728 1043 +1045 3 -59.77760000434485 -39.623314939075186 98.898 0.2702 1044 +1046 3 -59.55608441917191 -39.21666847151547 100.5192 0.2676 1045 +1047 3 -59.395473172061244 -38.695978166864286 102.2386 0.265 1046 +1048 3 -59.229791150288776 -38.14230102069229 103.9842 0.2625 1047 +1049 3 -58.993363995966064 -37.52060609849713 105.677 0.2599 1048 +1050 3 -58.4608926464857 -36.716885082507474 107.189 0.2573 1049 +1051 3 -57.49661741031625 -36.351757762617424 108.5392 0.2547 1050 +1052 3 -56.438231438317075 -36.43594550757707 109.7942 0.2521 1051 +1053 3 -55.439116227733194 -36.578436745456315 111.0379 0.2495 1052 +1054 3 -54.83133562712018 -36.951687867649134 112.327 0.2469 1053 +1055 3 -54.59270941752311 -37.61084837023641 113.6321 0.2443 1054 +1056 3 -54.96828690590654 -38.14069498322612 114.9943 0.2418 1055 +1057 3 -55.99486069622972 -38.42855146799468 116.1877 0.2392 1056 +1058 3 -56.69668380677659 -38.83855897837153 117.1514 0.2366 1057 +1059 3 -57.206935763582464 -39.62073339805004 117.8646 0.234 1058 +1060 3 -57.87006058537483 -40.34128499385303 118.8088 0.2314 1059 +1061 3 -2.331616866164793 -370.26908631298545 41.2378 0.8546 1 +1062 3 -2.8379502808468775 -371.0746346881218 41.2062 0.7949 1061 +1063 3 -3.4218310491274133 -372.05975181892086 41.2196 0.765 1062 +1064 3 -4.005847715776596 -373.9173267487482 41.2728 0.7351 1063 +1065 3 -4.287050946075679 -376.2577287591663 41.286 0.7053 1064 +1066 3 -4.530951870329045 -378.27261552727305 41.3367 0.6754 1065 +1067 3 -4.787524924134552 -380.2943771689144 41.4033 0.6456 1066 +1068 3 -5.045592859994708 -382.3190421163073 41.4882 0.6157 1067 +1069 3 -5.307309697122651 -384.06846931733514 41.6492 0.5858 1068 +1070 3 -5.569346090600937 -385.77730935896443 41.8765 0.556 1069 +1071 3 -5.250582651036015 -387.60558514598443 42.3167 0.556 1070 +1072 3 -4.9344804654784316 -389.31661121016725 42.5589 0.5524 1071 +1073 3 -4.6520440951273985 -390.8486914878854 42.8254 0.5506 1072 +1074 3 -4.5231605286117675 -392.55401587390884 43.1348 0.5488 1073 +1075 3 -4.57129147233301 -394.43504854159653 43.4792 0.547 1074 +1076 3 -4.628635148437046 -396.3207660553526 43.869 0.5452 1075 +1077 3 -4.747622670077748 -398.1762456074583 44.3755 0.5434 1076 +1078 3 -5.346242535716597 -399.62330280316456 45.0103 0.5416 1077 +1079 3 -6.319064608166336 -399.0506441100005 45.6798 0.5398 1078 +1080 3 -7.362794339231096 -400.5368371495012 46.3212 0.538 1079 +1081 3 -8.373520655588202 -400.5210056971945 46.8835 0.5362 1080 +1082 3 -9.217449817211696 -401.500605283302 47.3385 0.5344 1081 +1083 3 -9.782755665544009 -403.6050458551018 47.6412 0.5326 1082 +1084 3 -9.814658320263549 -405.4813419689755 47.7851 0.5308 1083 +1085 3 -9.41748396919579 -406.8550727499912 47.7728 0.529 1084 +1086 3 -8.891450481910503 -408.17764439113654 47.5944 0.5272 1085 +1087 3 -8.255615385629543 -410.2200314768872 47.3074 0.5253 1086 +1088 3 -7.579800589705043 -412.41947219797686 46.9837 0.5236 1087 +1089 3 -6.923706187322793 -413.34837349454824 46.7062 0.5217 1088 +1090 3 -6.276901255145804 -414.41769555199704 46.4635 0.5199 1089 +1091 3 -5.808869296552185 -416.52967379504764 46.2568 0.5181 1090 +1092 3 -5.765001395417691 -418.39117641012285 46.1202 0.5163 1091 +1093 3 -5.9168498690854765 -420.0724402627467 46.0424 0.5145 1092 +1094 3 -6.118636807639541 -421.72244246413595 46.0046 0.5127 1093 +1095 3 -6.671066843980217 -423.460681259821 45.9936 0.5109 1094 +1096 3 -7.316920589426369 -425.5706304470865 46.0068 0.5091 1095 +1097 3 -7.930955665442093 -427.1795377339902 46.039 0.5073 1096 +1098 3 -8.487411494292555 -428.3087573694199 46.0869 0.5055 1097 +1099 3 -8.412292523195578 -430.301515388966 46.1544 0.5037 1098 +1100 3 -7.912089631450092 -432.3939098354279 46.2462 0.5019 1099 +1101 3 -7.021604260093497 -433.191861017732 46.3669 0.5001 1100 +1102 3 -6.206601100183889 -433.9456328117319 46.5578 0.4983 1101 +1103 3 -5.650090019651204 -435.9283609558535 46.8398 0.4965 1102 +1104 3 -5.368660699491423 -438.16353085735267 47.1856 0.4947 1103 +1105 3 -5.293764813764831 -440.1064761485005 47.5843 0.4929 1104 +1106 3 -5.258853852271518 -441.98884099933036 48.0161 0.4911 1105 +1107 3 -5.270348619607823 -443.78144572251864 48.461 0.4893 1106 +1108 3 -5.3770162754179545 -445.3823008134977 48.8922 0.4875 1107 +1109 3 -5.5355961562809775 -446.8572659663879 49.2976 0.4857 1108 +1110 3 -5.764697384944043 -448.1350521290572 49.6756 0.4839 1109 +1111 3 -6.158281689059944 -449.33385227036456 49.9128 0.4839 1110 +1112 3 -6.884161588257829 -451.23485374342806 50.0282 0.4788 1111 +1113 3 -7.732918706015209 -453.1459600454695 50.0654 0.4762 1112 +1114 3 -8.469457838510262 -454.24390028596525 50.0702 0.4736 1113 +1115 3 -8.878856036615488 -455.05052388838067 50.0721 0.471 1114 +1116 3 -8.793833110133097 -457.09176067666357 50.0996 0.4685 1115 +1117 3 -8.321693066390942 -459.9276897648384 50.1836 0.4659 1116 +1118 3 -7.935328025330211 -461.6754584952936 50.311 0.4633 1117 +1119 3 -8.2928583590605 -463.5510903300746 50.4372 0.4607 1118 +1120 3 -9.242595150529233 -463.04354135698406 50.5336 0.4582 1119 +1121 3 -10.248281904167818 -464.8357924260438 50.5977 0.4556 1120 +1122 3 -11.036686376003555 -464.38598030886624 50.6316 0.453 1121 +1123 3 -11.372064401750627 -466.32674789112355 50.6405 0.4505 1122 +1124 3 -11.384511409420782 -468.19669949358126 50.6321 0.4479 1123 +1125 3 -11.380183757206595 -470.057994842322 50.6131 0.4453 1124 +1126 3 -11.400894986087458 -471.938291610811 50.5859 0.4427 1125 +1127 3 -11.245506013104425 -473.6660792975138 50.5498 0.4402 1126 +1128 3 -10.967840263995665 -475.2424312897776 50.5044 0.4376 1127 +1129 3 -11.073665124665482 -477.1638239654861 50.4255 0.435 1128 +1130 3 -11.744554022044866 -478.8465742866725 50.2995 0.4324 1129 +1131 3 -12.410299136101795 -480.33231981159634 50.1673 0.4299 1130 +1132 3 -12.756704332636577 -481.7789421379628 50.0564 0.4273 1131 +1133 3 -12.865693991872604 -483.13939621092084 49.9388 0.4247 1132 +1134 3 -12.78655445285554 -484.38696496402287 49.7213 0.4221 1133 +1135 3 -12.584196346558173 -485.4903280689004 49.3458 0.4196 1134 +1136 3 -12.284389204466944 -486.4721119376512 48.8225 0.417 1135 +1137 3 -11.632755286549546 -487.02710677341963 48.2216 0.4144 1136 +1138 3 -10.765049682570087 -487.80762090156907 47.6829 0.4118 1137 +1139 3 -9.934103878510356 -489.5746102724498 47.2657 0.4093 1138 +1140 3 -9.198583764810188 -490.11104429702 46.9809 0.4067 1139 +1141 3 -8.58507148575956 -491.90729401091244 46.8488 0.4041 1140 +1142 3 -8.104159986012416 -493.4716643173013 46.8611 0.4015 1141 +1143 3 -7.712186753158797 -494.449116640649 46.9241 0.399 1142 +1144 3 -7.6427385333360185 -495.71110672605084 46.9661 0.3964 1143 +1145 3 -8.303407648141459 -497.1959789945919 46.9641 0.3938 1144 +1146 3 -9.154376120003622 -496.8826764589621 46.9109 0.3912 1145 +1147 3 -9.509640289771799 -498.36479588036116 46.8037 0.3887 1146 +1148 3 -8.893007572832943 -499.3769453271161 46.5951 0.3861 1147 +1149 3 -8.35753603406053 -501.44269903973185 46.244 0.3835 1148 +1150 3 -8.038943569564005 -502.5335427451312 45.8315 0.381 1149 +1151 3 -9.204096832434814 -502.0620386343912 44.6933 0.2574 1150 +1152 3 -10.256184556134798 -503.19195167507183 44.4531 0.2565 1151 +1153 3 -11.316768540167281 -502.49619720138867 44.2224 0.256 1152 +1154 3 -12.376302317458151 -503.6081160572958 43.995 0.2556 1153 +1155 3 -13.391856589949189 -504.66932663210815 43.7525 0.2551 1154 +1156 3 -14.368957256794605 -504.26165800526417 43.503 0.2547 1155 +1157 3 -15.309510294089932 -505.590503429708 43.279 0.2542 1156 +1158 3 -16.109909850816223 -505.19972774974775 43.108 0.2538 1157 +1159 3 -16.831546096723535 -506.61538466029964 43.0391 0.2533 1158 +1160 3 -17.747669183287655 -507.02228196363654 43.1096 0.2529 1159 +1161 3 -18.809408060487193 -507.3626559474611 43.2793 0.2524 1160 +1162 3 -19.864422988815175 -508.2863117383216 43.4644 0.252 1161 +1163 3 -20.741776642545073 -509.2573683900729 43.598 0.2515 1162 +1164 3 -21.47837833452146 -509.3508505985648 43.6666 0.251 1163 +1165 3 -22.237920319764047 -510.74419586233097 43.6649 0.2506 1164 +1166 3 -23.005745929148098 -511.0329685624597 43.5868 0.2501 1165 +1167 3 -23.75873121142572 -512.0781032766259 43.4386 0.2497 1166 +1168 3 -24.561356300597986 -513.4569529958902 43.2169 0.2492 1167 +1169 3 -25.419399159398655 -514.6562777148142 42.9108 0.2488 1168 +1170 3 -26.24476757941509 -514.7697731201403 42.5104 0.2483 1169 +1171 3 -26.933586029845866 -515.6485454854343 42.0109 0.2479 1170 +1172 3 -27.47847624117107 -516.996403072958 41.4383 0.2474 1171 +1173 3 -27.931107619915746 -517.772793521214 40.8722 0.247 1172 +1174 3 -28.292778415939086 -518.4359486314432 40.395 0.2465 1173 +1175 3 -28.63896575169316 -519.8802791234589 40.0235 0.2461 1174 +1176 3 -29.164140328244315 -521.4065528737207 39.7174 0.2456 1175 +1177 3 -29.90269758158394 -522.7986572594086 39.4366 0.2451 1176 +1178 3 -30.725737278156924 -523.9582240383264 39.1712 0.2447 1177 +1179 3 -31.54085606348923 -523.884756435033 38.9228 0.2442 1178 +1180 3 -32.28976717211687 -525.0929146829868 38.6848 0.2438 1179 +1181 3 -32.944853052876574 -526.0084937223833 38.4317 0.2433 1180 +1182 3 -33.59124944004348 -526.4702362141836 38.1368 0.2429 1181 +1183 3 -34.418461276674215 -527.8988806619963 37.8112 0.2424 1182 +1184 3 -35.37335080521687 -529.0873440527223 37.499 0.242 1183 +1185 3 -36.29146588967724 -529.3388112265109 37.2168 0.2415 1184 +1186 3 -37.164788526307696 -530.1443637185312 36.9597 0.2411 1185 +1187 3 -37.97105729215808 -531.2926080241676 36.7324 0.2406 1186 +1188 3 -38.52177981025302 -531.6088741772571 36.5112 0.2401 1187 +1189 3 -38.75439404181536 -532.8883120719212 36.2208 0.2397 1188 +1190 3 -39.35397510153951 -534.0609064463297 35.8352 0.2392 1189 +1191 3 -40.33770398458267 -535.3740425887212 35.5043 0.2388 1190 +1192 3 -41.043010245918545 -536.3117465311796 35.313 0.2383 1191 +1193 3 -41.491542823492765 -536.7938175837902 35.2296 0.2379 1192 +1194 3 -42.052987134366234 -537.9897782489271 35.1702 0.2374 1193 +1195 3 -42.564837494450934 -539.4971878527381 35.0342 0.237 1194 +1196 3 -43.18576823271283 -540.3886021193505 34.8463 0.2365 1195 +1197 3 -44.10351537968272 -540.7518839077097 34.6312 0.2361 1196 +1198 3 -45.12835912237894 -541.0845893328323 34.4075 0.2356 1197 +1199 3 -46.02526638956597 -541.5620353179465 34.1779 0.2352 1198 +1200 3 -46.67499585081217 -542.7477022105347 33.8548 0.2347 1199 +1201 3 -47.387458791725436 -544.2390514287076 33.3928 0.2342 1200 +1202 3 -48.17572513145854 -545.1976549300729 32.7561 0.2338 1201 +1203 3 -48.825009023380034 -545.5362956545576 31.8668 0.2333 1202 +1204 3 -49.38025924622583 -546.4506837525824 30.7535 0.2329 1203 +1205 3 -49.68183751964705 -547.4869917750173 29.549 0.2324 1204 +1206 3 -49.91767538009502 -548.6699624052208 28.4068 0.232 1205 +1207 3 -50.231050144962154 -549.482775477668 27.333 0.2315 1206 +1208 3 -50.74275714835461 -550.3502293233691 26.342 0.2311 1207 +1209 3 -51.36989904587753 -551.5202369491649 25.4409 0.2306 1208 +1210 3 -51.65766330971955 -552.6973897491295 24.6503 0.2302 1209 +1211 3 -52.65020055112197 -553.8511512548966 23.9841 0.2297 1210 +1212 3 -53.43803266472146 -554.3749940223641 22.68 0.2293 1211 +1213 3 -7.726472650255971 -503.8067062476389 45.1094 0.381 1150 +1214 3 -7.5596796152432475 -504.9950873263072 44.805 0.381 1213 +1215 3 -7.547619934359787 -506.2991258269414 44.5852 0.381 1214 +1216 3 -7.686215704793909 -507.690220119929 44.4391 0.381 1215 +1217 3 -7.821255315778323 -509.079630647706 44.3246 0.381 1216 +1218 3 -7.634150864362354 -510.24628693794284 44.175 0.381 1217 +1219 3 -7.003729522486594 -511.0940289055417 43.9715 0.381 1218 +1220 3 -6.151825439698932 -511.5011040242239 43.7489 0.381 1219 +1221 3 -5.282265969925817 -513.1789891277922 43.5593 0.381 1220 +1222 3 -4.537799365763831 -514.2352826950012 43.43 0.381 1221 +1223 3 -4.015107906309289 -515.0744608302907 43.3672 0.381 1222 +1224 3 -3.7700435873242455 -516.554540053906 43.3695 0.381 1223 +1225 3 -3.8025268157252796 -517.8339898046255 43.43 0.381 1224 +1226 3 -4.083824418865142 -519.0250805237454 43.5498 0.381 1225 +1227 3 -4.1652687168490345 -518.9904093012063 42.5914 0.3089 1226 +1228 3 -4.230179347821938 -518.9571613742163 39.4576 0.2982 1227 +1229 3 -4.278235222374462 -519.5334318640118 38.0817 0.2929 1228 +1230 3 -4.43152739943779 -520.6257872990049 36.5632 0.2875 1229 +1231 3 -4.7812449072879275 -521.9912547666165 35.1243 0.2822 1230 +1232 3 -5.202087798939004 -523.1922065259073 33.7635 0.2768 1231 +1233 3 -5.3840964439788905 -523.221222341707 32.249 0.2715 1232 +1234 3 -5.563362474015413 -523.0133225107388 30.5796 0.2662 1233 +1235 3 -5.983951669769056 -523.4066329742532 28.9162 0.2608 1234 +1236 3 -6.068307423349637 -524.5334179490288 27.2976 0.2555 1235 +1237 3 -6.142644085940148 -525.7488106247216 25.7859 0.2502 1236 +1238 3 -6.482322070262953 -527.1351313847049 24.4637 0.2448 1237 +1239 3 -6.264776033942283 -527.9473316248223 23.2301 0.2395 1238 +1240 3 -6.662427791690632 -529.1174014632284 20.7564 0.2341 1239 +1241 3 -4.504746009587976 -520.300055569021 43.7284 0.381 1226 +1242 3 -5.086706623431795 -521.6252796151541 43.9659 0.381 1241 +1243 3 -5.642635484330498 -521.9068827904359 44.2481 0.381 1242 +1244 3 -6.047529011813971 -522.8885189801352 44.5477 0.381 1243 +1245 3 -6.231403566513521 -524.3162072460541 44.833 0.381 1244 +1246 3 -6.200357871640925 -525.6238855597793 45.1004 0.381 1245 +1247 3 -5.9699927568040465 -526.771935385613 45.3796 0.381 1246 +1248 3 -5.436740030460129 -528.5896504236495 45.698 0.381 1247 +1249 3 -4.633044461600193 -529.8913544985152 46.0611 0.381 1248 +1250 3 -4.176682806957189 -530.8013696182165 46.4453 0.381 1249 +1251 3 -4.621732233742371 -532.2731702962391 46.8762 0.381 1250 +1252 3 -5.155481634103019 -533.5291744417787 47.3183 0.381 1251 +1253 3 -5.584398038738854 -534.0348760185999 47.7134 0.381 1252 +1254 3 -5.991584882739282 -534.861386117837 48.1116 0.381 1253 +1255 3 -6.388205235260621 -536.3368237347054 48.5372 0.381 1254 +1256 3 -6.740286407659269 -537.8137371556157 48.9664 0.381 1255 +1257 3 -6.946684936994409 -539.1568361353749 49.3828 0.381 1256 +1258 3 -7.1109981286128985 -540.4423337404421 49.7972 0.381 1257 +1259 3 -7.59417115551404 -541.5797874563686 50.2309 0.381 1258 +1260 3 -8.43349544637401 -542.8784492447637 50.6464 0.381 1259 +1261 3 -9.190145303688432 -542.9997933893383 51.0026 0.381 1260 +1262 3 -9.390287283478166 -544.4414306857857 51.2142 0.381 1261 +1263 3 -8.84386008715083 -545.7080572777666 51.1806 0.381 1262 +1264 3 -8.776602458668897 -547.0175951282605 50.8978 0.381 1263 +1265 3 -8.394491520078056 -548.6861617805409 50.5014 0.381 1264 +1266 3 -7.872167998114001 -549.5244291904622 50.1203 0.381 1265 +1267 3 -7.516187808482492 -550.5987802932412 49.8198 0.381 1266 +1268 3 -7.472852099889401 -551.935117140412 49.6194 0.381 1267 +1269 3 -7.701735467771819 -553.2751360620525 49.4427 0.381 1268 +1270 3 -7.86306784903249 -554.6864753209651 49.3217 0.381 1269 +1271 3 -7.912892132658335 -556.0449719351725 49.28 0.381 1270 +1272 3 -7.986208305022643 -557.3896241137332 49.3797 0.381 1271 +1273 3 -8.108784693484154 -558.7676217714328 49.572 0.381 1272 +1274 3 -8.3977659441531 -560.2406171539968 49.7532 0.381 1273 +1275 3 -8.517695256948379 -561.4922789630928 49.9618 0.381 1274 +1276 3 -8.463735721984584 -562.8608852264546 50.1939 0.381 1275 +1277 3 -8.23543188454277 -564.048266147265 50.3779 0.381 1276 +1278 3 -7.980410004442518 -565.1793635678905 50.4703 0.381 1277 +1279 3 -7.667438705952527 -566.2366259154669 50.4143 0.381 1278 +1280 3 -8.621506202118837 -567.4099686004681 50.0438 0.381 1279 +1281 3 -9.440308965418758 -567.9335223504414 49.7143 0.3805 1280 +1282 3 -9.905012497103158 -569.4347364785808 49.4052 0.3803 1281 +1283 3 -10.063281775367273 -570.8634398853327 49.2027 0.38 1282 +1284 3 -10.256702797141095 -572.2662136346913 49.1414 0.3798 1283 +1285 3 -10.553421301068987 -573.1172400780865 49.2002 0.3796 1284 +1286 3 -10.820010455008862 -573.8591595520428 49.3424 0.3794 1285 +1287 3 -10.913163186126546 -575.0015016166473 49.5124 0.3791 1286 +1288 3 -10.817427420617136 -576.5425835018151 49.6796 0.3789 1287 +1289 3 -10.619344179553607 -578.2893169284869 49.8369 0.3787 1288 +1290 3 -10.424768716799598 -580.0261981049275 50.0035 0.3784 1289 +1291 3 -10.302900706903024 -581.4923205070957 50.2163 0.3782 1290 +1292 3 -10.332467179855385 -582.7985109529579 50.4944 0.378 1291 +1293 3 -10.669282752765518 -583.4312766792002 50.8077 0.3777 1292 +1294 3 -11.37691624211702 -583.9902601237613 51.1081 0.3775 1293 +1295 3 -12.337510724732816 -585.2355997003173 51.3747 0.3773 1294 +1296 3 -13.41926981866758 -585.589567793525 51.6174 0.3771 1295 +1297 3 -14.488821191520614 -585.6993359081574 51.8787 0.3768 1296 +1298 3 -15.363307675069628 -587.0725119829611 52.2015 0.3766 1297 +1299 3 -15.911225582464894 -587.382296306317 52.5767 0.3764 1298 +1300 3 -16.223002274279914 -588.1606400870498 52.9494 0.3761 1299 +1301 3 -16.427068351009773 -589.5401045620621 53.2574 0.3759 1300 +1302 3 -16.556969403261412 -590.9637675033828 53.4598 0.3757 1301 +1303 3 -16.453017797681497 -592.2398872298556 53.5475 0.3755 1302 +1304 3 -15.941198207715239 -593.8069900620366 53.5223 0.3752 1303 +1305 3 -15.644556893796725 -595.7226961867487 53.3565 0.375 1304 +1306 3 -16.213561228664553 -595.7888859368384 53.0838 0.3748 1305 +1307 3 -16.661106158978328 -597.2220519794242 52.7853 0.3745 1306 +1308 3 -16.427020629640886 -598.382341660322 52.488 0.3743 1307 +1309 3 -15.709048982766937 -600.3081977805965 52.2393 0.3741 1308 +1310 3 -14.868649453451098 -601.2750798915288 52.0475 0.3739 1309 +1311 3 -14.267334446302755 -602.0324911381962 51.9053 0.3736 1310 +1312 3 -14.270554543249034 -603.3822222982417 51.7958 0.3734 1311 +1313 3 -15.080817889665951 -604.7857029512255 51.5858 0.3732 1312 +1314 3 -16.04835641566811 -604.6078423090103 51.3797 0.3729 1313 +1315 3 -17.000327693334256 -605.5594515295976 51.221 0.3727 1314 +1316 3 -17.713224860381168 -606.5903066592106 51.1076 0.3725 1315 +1317 3 -18.118098984933837 -607.7589822364591 51.0367 0.3723 1316 +1318 3 -18.349279398494915 -609.2514901896872 51.0065 0.372 1317 +1319 3 -18.34644662833537 -610.6168032221052 51.0132 0.3718 1318 +1320 3 -18.13484966670697 -611.8195285433418 51.0317 0.3716 1319 +1321 3 -17.729028978596915 -613.1613712083705 51.0502 0.3713 1320 +1322 3 -17.359317498920134 -614.6434920831728 51.1039 0.3711 1321 +1323 3 -17.050255827728833 -615.7854686793726 51.184 0.3709 1322 +1324 3 -17.009300952881134 -617.111048346027 51.2604 0.3707 1323 +1325 3 -16.92201912353785 -617.0766271384164 51.8017 0.2986 1324 +1326 3 -15.805470495541684 -617.7386395220516 52.2766 0.2954 1325 +1327 3 -14.681390996281635 -618.0839823934753 52.467 0.2938 1326 +1328 3 -13.595013088095826 -618.4238710944006 52.7551 0.2922 1327 +1329 3 -12.606871735165399 -619.0833920361589 53.1434 0.2905 1328 +1330 3 -11.878726161823366 -620.1702710732536 53.5858 0.2889 1329 +1331 3 -11.777160614578506 -621.4338768154963 54.0456 0.2873 1330 +1332 3 -12.086649214466263 -622.9080407328288 54.539 0.2857 1331 +1333 3 -12.426281342683225 -624.1323527827501 55.041 0.2841 1332 +1334 3 -12.650770980565298 -625.2070699826297 55.4991 0.2825 1333 +1335 3 -12.489653921416448 -626.7061736262405 55.9084 0.2809 1334 +1336 3 -11.876039946796112 -627.8134685049664 56.2486 0.2793 1335 +1337 3 -11.03447927011716 -628.2283524689963 56.511 0.2777 1336 +1338 3 -10.136553069759415 -630.3889088383057 56.7148 0.2761 1337 +1339 3 -9.292345608714484 -630.749247222141 56.8929 0.2745 1338 +1340 3 -8.65316176458522 -631.9809764618411 57.0214 0.2728 1339 +1341 3 -7.875596944684659 -632.5906304776639 57.2208 0.2712 1340 +1342 3 -6.908149589810577 -633.7106322393674 57.629 0.2696 1341 +1343 3 -5.942161574469836 -633.8819058438887 58.1182 0.268 1342 +1344 3 -4.92935720207997 -635.550574318558 58.6894 0.2664 1343 +1345 3 -3.832725036036493 -635.2863941833743 59.3118 0.2648 1344 +1346 3 -2.7226247330493294 -634.6255463183486 59.9189 0.2632 1345 +1347 3 -1.6189296964842441 -634.8460893326319 60.4321 0.2616 1346 +1348 3 -0.6663163152616391 -633.9761821156678 60.9666 0.26 1347 +1349 3 0.3169835662375391 -634.2317189763091 61.5017 0.2584 1348 +1350 3 1.3777801864611519 -633.5912402224044 61.9637 0.2568 1349 +1351 3 2.413207026048312 -632.7283110579574 62.5209 0.2551 1350 +1352 3 3.4550863856276095 -633.5795107522862 63.1224 0.2535 1351 +1353 3 4.308365456096993 -634.4538254821439 63.6345 0.2519 1352 +1354 3 5.236288701641271 -634.7481533276178 64.1987 0.2503 1353 +1355 3 6.376885728321881 -635.1562514300688 64.706 0.2487 1354 +1356 3 7.5200278437989 -635.2967312901535 65.1518 0.2471 1355 +1357 3 7.831931691088059 -635.148818175247 64.8782 0.2471 1356 +1358 3 8.937009502589902 -635.9769729268897 65.1221 0.2425 1357 +1359 3 10.074846843033924 -635.674797653827 65.2028 0.2402 1358 +1360 3 10.998420042577479 -634.4954533611734 65.2506 0.238 1359 +1361 3 11.883457343836497 -634.4302398240698 65.2697 0.2357 1360 +1362 3 12.758730317240591 -633.3342681390884 65.2403 0.2334 1361 +1363 3 13.625574814383029 -632.3683961901156 64.96 0.2311 1362 +1364 3 7.170495451727206 -636.1942275309049 65.574 0.2471 1356 +1365 3 6.70667637630568 -637.5140268809629 66.0764 0.2452 1364 +1366 3 6.693478849491953 -638.7041217648999 66.7461 0.2442 1365 +1367 3 7.076241874997137 -639.8334397806218 67.5058 0.2432 1366 +1368 3 7.624004922917877 -640.6248054611071 68.3021 0.2423 1367 +1369 3 8.310463278370605 -641.7473328362806 69.1802 0.2413 1368 +1370 3 8.690187692804983 -643.3120486757862 70.2134 0.2404 1369 +1371 3 8.53220345797638 -644.1587248909684 71.433 0.2394 1370 +1372 3 8.073449000984255 -644.4222351139567 72.8106 0.2384 1371 +1373 3 7.375055533460213 -645.3550373598453 74.2854 0.2375 1372 +1374 3 6.520697043186246 -645.4512194438536 75.7798 0.2365 1373 +1375 3 5.699450811397384 -644.1892638756585 77.2428 0.2355 1374 +1376 3 4.912714257192832 -644.9198564778465 78.6848 0.2346 1375 +1377 3 4.109632646064057 -645.5730924605585 80.01 0.2336 1376 +1378 3 3.4336468510744993 -646.8122577493975 81.0046 0.2327 1377 +1379 3 2.64528151532717 -646.9602022533027 81.6911 0.2317 1378 +1380 3 1.9120323003608632 -648.4704353704915 82.185 0.2307 1379 +1381 3 1.1336554074453744 -649.6505982169072 83.0253 0.2298 1380 +1382 3 -17.052553325594417 -618.3952604554761 51.2366 0.3707 1324 +1383 3 -17.06218004879588 -619.7511178653311 51.1342 0.3684 1382 +1384 3 -17.033529366009873 -621.0869105553951 50.9936 0.3673 1383 +1385 3 -16.958322877684424 -622.3911805838092 50.846 0.3662 1384 +1386 3 -16.747524350518304 -623.580922223705 50.6836 0.3651 1385 +1387 3 -16.43523532127945 -624.6712865948232 50.4879 0.364 1386 +1388 3 -16.274854137111618 -625.8851760193681 50.2765 0.3629 1387 +1389 3 -16.511551496075313 -627.342630571432 50.0786 0.3618 1388 +1390 3 -17.098650668651928 -628.8860569068196 49.9117 0.3606 1389 +1391 3 -17.822512447005224 -629.8862913295043 49.7714 0.3595 1390 +1392 3 -18.426425706854843 -631.2807512613156 49.649 0.3584 1391 +1393 3 -18.565662085417486 -632.6815368861912 49.5334 0.3573 1392 +1394 3 -18.114662074877657 -633.6015431157598 49.4068 0.3562 1393 +1395 3 -17.44451280563763 -634.7668599595033 49.2299 0.3551 1394 +1396 3 -17.18112920374034 -635.9458866582728 48.9482 0.354 1395 +1397 3 -17.403302062786196 -637.2674176939722 48.592 0.3528 1396 +1398 3 -17.29372556203785 -638.5941370461064 48.2546 0.3517 1397 +1399 3 -16.67941111936311 -639.321922220753 47.9724 0.3506 1398 +1400 3 -15.934944515201153 -640.6249827335632 47.7383 0.3495 1399 +1401 3 -15.338555430594496 -642.5835425628771 47.5342 0.3484 1400 +1402 3 -15.115395376475135 -643.7528465081906 47.3413 0.3473 1401 +1403 3 -15.374891905746765 -645.2244538776295 47.1262 0.3462 1402 +1404 3 -15.946353812182494 -645.503336468262 46.8518 0.3451 1403 +1405 3 -16.55582837811272 -646.2779303248476 46.5228 0.3439 1404 +1406 3 -17.045997558702155 -647.7901856374096 46.1891 0.3428 1405 +1407 3 -17.34971744090791 -649.2308150733373 45.9365 0.3417 1406 +1408 3 -17.46688902871584 -650.5609805956609 45.8514 0.3406 1407 +1409 3 -17.45923352701199 -651.8959594152117 45.9452 0.3395 1408 +1410 3 -17.32860451028982 -653.2249451382072 46.1742 0.3384 1409 +1411 3 -17.05333526869552 -654.3758180377298 46.4758 0.3373 1410 +1412 3 -16.70218453062577 -655.4211437548993 46.7589 0.3362 1411 +1413 3 -16.414014849519234 -656.5515763446581 46.9109 0.335 1412 +1414 3 -16.27507725090841 -657.7906359254146 46.8572 0.3339 1413 +1415 3 -16.237138593345065 -659.1050809908236 46.611 0.3328 1414 +1416 3 -16.228525626717698 -660.4459665786854 46.2356 0.3317 1415 +1417 3 -16.15401185682275 -661.8958913978124 45.8217 0.3306 1416 +1418 3 -16.03965801481469 -663.4282840946778 45.4594 0.3295 1417 +1419 3 -16.212660700025978 -664.5115374405125 45.183 0.3284 1418 +1420 3 -16.736277835041193 -666.0002753881419 44.9842 0.3272 1419 +1421 3 -17.22755828642576 -667.5627424585847 44.8353 0.3261 1420 +1422 3 -17.40565114922964 -668.927444278875 44.6984 0.325 1421 +1423 3 -17.458881515595422 -670.3029489437689 44.5278 0.3239 1422 +1424 3 -17.608974089877393 -671.6791153998702 44.2994 0.3228 1423 +1425 3 -17.708117128619577 -673.0620873348612 44.0238 0.3217 1424 +1426 3 -17.39703360742196 -674.3173602785993 43.6951 0.3206 1425 +1427 3 -16.592914261607774 -674.770323855368 43.2804 0.3195 1426 +1428 3 -15.952474294563288 -676.0552618361953 42.7966 0.3183 1427 +1429 3 -16.012325127502834 -677.2753112579276 42.3329 0.3172 1428 +1430 3 -16.201556101715866 -678.29697512525 41.9196 0.3161 1429 +1431 3 -16.158525771132005 -679.7658583421555 41.5587 0.315 1430 +1432 3 -15.888974166524179 -681.5969375015162 41.2597 0.3139 1431 +1433 3 -15.518464252385073 -683.695770846334 41.0206 0.3128 1432 +1434 3 -15.19471755538676 -684.8905778577746 40.8195 0.3117 1433 +1435 3 -15.02336653532285 -686.1383562789049 40.6238 0.3106 1434 +1436 3 -15.018788314956765 -687.4798436671883 40.3438 0.3094 1435 +1437 3 -15.045874958149554 -688.7800428898839 39.9445 0.3083 1436 +1438 3 -14.834642204849814 -689.9581357192386 39.5268 0.3072 1437 +1439 3 -14.286568554330216 -690.7984301689954 39.1801 0.3061 1438 +1440 3 -13.737212657947055 -691.7435691523319 38.9267 0.305 1439 +1441 3 -14.003167923775848 -693.1737360882763 38.7624 0.3039 1440 +1442 3 -15.017613159205766 -694.4662602178969 38.6775 0.3028 1441 +1443 3 -15.96723780592555 -694.4663217900925 38.6478 0.3016 1442 +1444 3 -16.651911599079995 -695.4484516666015 38.6422 0.3005 1443 +1445 3 -17.224470597969656 -697.0031265521446 38.642 0.2994 1444 +1446 3 -17.692583941555768 -698.4705412012347 38.6428 0.2983 1445 +1447 3 -17.591757998453716 -699.809394025058 38.6439 0.2972 1446 +1448 3 -17.057081903287923 -700.775741067086 38.6456 0.2961 1447 +1449 3 -16.27480902162631 -701.2603358679652 38.6478 0.295 1448 +1450 3 -16.267839518335578 -702.6393721230027 38.6512 0.2938 1449 +1451 3 -16.534157497065237 -704.1648979252491 38.656 0.2927 1450 +1452 3 -16.980686132136015 -705.7393876396127 38.6613 0.2916 1451 +1453 3 -17.437327629621493 -707.271706243962 38.6655 0.2905 1452 +1454 3 -17.780882359350784 -708.7982800256189 38.6845 0.2894 1453 +1455 3 -18.103307835283672 -710.3550601985592 38.7142 0.2883 1454 +1456 3 -17.983786221479974 -710.7812962293268 39.482 0.2883 1455 +1457 3 -17.13354053749174 -711.0428112564988 41.2846 0.2764 1456 +1458 3 -15.997462359773962 -710.7534564750745 41.9689 0.2704 1457 +1459 3 -14.883638185609058 -711.5989058800475 42.8576 0.2645 1458 +1460 3 -13.954334299603161 -711.2509382844718 44.0138 0.2585 1459 +1461 3 -13.924795934844951 -711.8071312306861 45.4787 0.2526 1460 +1462 3 -14.625657888937567 -712.6892854560701 47.0428 0.2466 1461 +1463 3 -14.954470761420751 -713.4820337524652 48.6587 0.2407 1462 +1464 3 -15.218522613819388 -714.4639594977041 52.08 0.2347 1463 +1465 3 -18.4065211217425 -710.9698644279063 38.7246 0.2883 1455 +1466 3 -19.12046849553103 -711.2756683552074 38.7072 0.2843 1465 +1467 3 -19.581416205788344 -712.1577763968944 38.6456 0.2823 1466 +1468 3 -19.489986653050792 -713.4697813573641 38.5518 0.2804 1467 +1469 3 -18.94258109344122 -715.4737310696592 38.4558 0.2784 1468 +1470 3 -18.24322229847627 -716.9414963602849 38.3701 0.2764 1469 +1471 3 -17.486026229870575 -717.4583451159679 38.2967 0.2744 1470 +1472 3 -16.691063019853573 -717.8943552728769 38.2315 0.2724 1471 +1473 3 -16.183974915041233 -718.7479675272594 38.166 0.2704 1472 +1474 3 -16.303154174514404 -720.1170587958494 38.0831 0.2685 1473 +1475 3 -16.462686295711308 -721.5019112179807 37.9655 0.2665 1474 +1476 3 -16.272818894718284 -722.6813063845772 37.8134 0.2645 1475 +1477 3 -15.627126728764196 -724.6022058759789 37.6337 0.2625 1476 +1478 3 -14.84473395272974 -725.6466038417809 37.3321 0.2605 1477 +1479 3 -14.332569284880947 -726.2700358192358 36.7769 0.2585 1478 +1480 3 -14.176079956103521 -727.270865091493 36.0433 0.2566 1479 +1481 3 -13.961943130268423 -728.4411484084811 35.3648 0.2546 1480 +1482 3 -13.606548738908188 -729.491842755267 34.7544 0.2526 1481 +1483 3 -13.279149411480248 -730.5327799611589 34.214 0.2506 1482 +1484 3 -13.168564365112843 -731.7757750242135 33.7868 0.2486 1483 +1485 3 -12.711679471679872 -733.0018241752939 33.4499 0.2466 1484 +1486 3 -12.047688785577549 -735.0622569783985 33.1422 0.2447 1485 +1487 3 -11.36210966179803 -735.6789055459811 32.807 0.2427 1486 +1488 3 -11.145075483445126 -736.7768160908853 32.3131 0.2407 1487 +1489 3 -10.984335781359704 -737.8618028762943 31.626 0.2387 1488 +1490 3 -11.128376089951985 -738.8944867175444 30.7362 0.2367 1489 +1491 3 -10.648308880773001 -740.3120628120369 29.8642 0.2347 1490 +1492 3 -10.45405969438687 -741.9254655648239 29.0576 0.2328 1491 +1493 3 -9.899513128968934 -743.4527847016733 27.72 0.2308 1492 +1494 3 -7.060431583349853 -567.7508487011783 48.8547 0.3192 1279 +1495 3 -6.357630269112079 -568.461493047299 48.1838 0.3168 1494 +1496 3 -5.4319415097653305 -569.6475039534181 47.3665 0.3156 1495 +1497 3 -4.416665523061127 -570.1366090345942 46.3918 0.3144 1496 +1498 3 -3.4203954190983765 -570.77380899051 45.2634 0.3132 1497 +1499 3 -2.508396617605726 -570.2726791592129 43.9866 0.312 1498 +1500 3 -1.7195789172539264 -570.3034693507128 42.5883 0.3108 1499 +1501 3 -0.9571540127990872 -570.0977836525233 41.1275 0.3097 1500 +1502 3 -0.1016911086375103 -571.2385335702243 39.7289 0.3085 1501 +1503 3 0.8891933251176738 -571.6560315999424 38.5204 0.3073 1502 +1504 3 1.97434752645907 -572.4510045709574 37.5715 0.3061 1503 +1505 3 3.0817280740508295 -572.0792795626796 36.8813 0.3049 1504 +1506 3 4.121092662765442 -572.7193120029119 36.3952 0.3037 1505 +1507 3 4.950726038624779 -574.203868426614 36.0049 0.3025 1506 +1508 3 5.732791042863539 -574.5425298410922 35.5754 0.3013 1507 +1509 3 6.687296297102847 -575.8447173019663 35.0871 0.3002 1508 +1510 3 7.7029615854775955 -576.2016415215152 34.6458 0.299 1509 +1511 3 8.619708049345746 -576.6660980528661 34.3672 0.2978 1510 +1512 3 9.561152939599936 -577.9921768712533 34.2728 0.2966 1511 +1513 3 10.626598692006183 -578.2084553886805 34.3034 0.2954 1512 +1514 3 11.742358130591846 -578.9075167373462 34.4042 0.2942 1513 +1515 3 12.819720734638402 -579.4447887937963 34.5377 0.293 1514 +1516 3 13.716316307992493 -579.6898204641063 34.678 0.2918 1515 +1517 3 14.409472159141771 -581.4918484596225 34.8244 0.2906 1516 +1518 3 15.107412809874546 -582.8178176360499 35.0011 0.2894 1517 +1519 3 15.92494165564969 -583.2054781379875 35.2234 0.2883 1518 +1520 3 16.79772325888065 -584.5226920320697 35.4844 0.2871 1519 +1521 3 17.69517460158859 -585.6132555259169 35.7666 0.2859 1520 +1522 3 18.623900476578385 -586.8203515220001 36.0545 0.2847 1521 +1523 3 19.623815324456857 -587.5931709729748 36.3252 0.2835 1522 +1524 3 20.699014955538743 -587.4751463191999 36.5658 0.2823 1523 +1525 3 21.83623052699997 -587.8181754465597 36.8018 0.2811 1524 +1526 3 22.896603370269304 -587.4085975613948 37.0664 0.2799 1525 +1527 3 23.688454556361073 -587.1808863071188 37.368 0.2787 1526 +1528 3 24.323122100558244 -585.6892258848736 37.6659 0.2776 1527 +1529 3 25.235212674595076 -584.3072430368089 37.9072 0.2764 1528 +1530 3 26.340557894514255 -584.3697586462745 38.0702 0.2752 1529 +1531 3 27.46904945946786 -584.2211116704516 38.1592 0.274 1530 +1532 3 28.59773948227142 -585.0039585875271 38.1833 0.2728 1531 +1533 3 29.6646869360087 -584.0259763534499 38.1413 0.2716 1532 +1534 3 30.489357413004853 -582.5845844501117 38.0464 0.2704 1533 +1535 3 31.179919818214316 -581.2313924992471 37.9487 0.2692 1534 +1536 3 32.02544435333446 -581.5527450380164 37.8689 0.268 1535 +1537 3 33.10055955730241 -580.4213934774676 37.8064 0.2668 1536 +1538 3 34.23923969288672 -581.4661625982706 37.758 0.2657 1537 +1539 3 35.38374887190039 -580.712347291777 37.7202 0.2645 1538 +1540 3 36.525938281222025 -580.46338134023 37.6883 0.2633 1539 +1541 3 37.662057654241025 -580.9300925629385 37.6452 0.2621 1540 +1542 3 38.784603272248084 -580.9951261166931 37.5626 0.2609 1541 +1543 3 39.87562095467137 -580.138839721416 37.4562 0.2597 1542 +1544 3 40.90772307251458 -579.6060524997364 37.3822 0.2585 1543 +1545 3 41.93988774983909 -579.5494843369275 37.3573 0.2573 1544 +1546 3 43.04105187594904 -579.2144163075236 37.3993 0.2562 1545 +1547 3 44.17203987607413 -579.6009508760199 37.5343 0.255 1546 +1548 3 45.277815630596216 -579.5521048860577 37.7474 0.2538 1547 +1549 3 46.40123063251339 -580.3158547302553 37.9924 0.2526 1548 +1550 3 47.491203332784636 -579.6634849094598 38.2133 0.2514 1549 +1551 3 48.47567704456024 -579.1528481582981 38.3541 0.2502 1550 +1552 3 49.499708174453026 -578.6349250598765 38.3569 0.249 1551 +1553 3 50.61385563413012 -578.7470684830232 38.178 0.2478 1552 +1554 3 51.721525420140644 -579.2320210301216 37.8666 0.2466 1553 +1555 3 52.827995350889935 -578.5909124871946 37.5001 0.2454 1554 +1556 3 53.89245924570575 -578.9856216291801 37.0804 0.2443 1555 +1557 3 55.01712347599948 -578.1624333724192 36.7119 0.2431 1556 +1558 3 56.15820580950927 -578.9089826890666 36.437 0.2419 1557 +1559 3 57.288664880433394 -578.5677130092383 36.204 0.2407 1558 +1560 3 58.20313003401951 -577.2894952208967 35.9486 0.2395 1559 +1561 3 59.22621414816806 -577.1704051648614 35.7409 0.2383 1560 +1562 3 60.36812836181743 -577.3783559297311 35.6591 0.2371 1561 +1563 3 61.50527820842056 -577.679565554098 35.7286 0.2359 1562 +1564 3 62.28391462323943 -576.7919614426862 35.975 0.2347 1563 +1565 3 62.88757358577537 -575.3709688254287 36.407 0.2336 1564 +1566 3 63.59527635462564 -574.1921330685524 36.9424 0.2324 1565 +1567 3 64.32641740648462 -573.636905996087 37.5116 0.2312 1566 +1568 3 65.1912025874813 -572.9912995640047 38.92 0.23 1567 +1569 3 -6.399730943013605 -449.1670191428947 51.8199 0.4839 1110 +1570 3 -7.392578787014855 -450.8645197232212 52.8254 0.4616 1569 +1571 3 -8.51449424607268 -450.9361519505335 53.2232 0.4505 1570 +1572 3 -9.634696962295152 -450.86182291132167 53.6928 0.4393 1571 +1573 3 -10.724828693027739 -450.9217374099749 54.2517 0.4281 1572 +1574 3 -11.281175076684608 -451.88174750676706 54.9548 0.417 1573 +1575 3 -11.507093307978177 -453.7073522648546 55.7998 0.4058 1574 +1576 3 -11.762361857728312 -455.6657844941375 56.7717 0.3947 1575 +1577 3 -11.948705830639362 -457.01960273921406 58.0325 0.3835 1576 +1578 3 -11.875306360026368 -457.93620442013355 59.5272 0.3724 1577 +1579 3 -11.533160514547713 -458.7550730899858 61.115 0.3612 1578 +1580 3 -11.560019915017936 -459.9194553452212 62.748 0.3501 1579 +1581 3 -11.525447249761996 -459.95990539644487 64.4084 0.3295 1580 +1582 3 -10.810170768394126 -461.5438615696872 65.2758 0.3192 1581 +1583 3 -10.609727591943848 -463.8005807642423 65.6782 0.314 1582 +1584 3 -10.965670301801417 -464.6160811698043 66.1777 0.3089 1583 +1585 3 -11.251255918909774 -466.5232111378574 66.7537 0.3037 1584 +1586 3 -11.422038296264784 -468.4269317551795 67.3971 0.2986 1585 +1587 3 -11.886865917305364 -470.36653232946014 68.1775 0.2934 1586 +1588 3 -12.512632827146511 -472.36896234187225 69.0284 0.2883 1587 +1589 3 -12.94256150656324 -474.4254965816562 69.8771 0.2831 1588 +1590 3 -12.54919135806275 -475.8084194648241 70.7364 0.278 1589 +1591 3 -12.147679582279949 -477.0849586734635 71.6573 0.2728 1590 +1592 3 -11.849462025310743 -478.07145824641975 72.7437 0.2677 1591 +1593 3 -11.84989365114781 -479.1515184367783 73.9071 0.2625 1592 +1594 3 -11.733129724700333 -480.11470734248013 75.1321 0.2574 1593 +1595 3 -11.821320600195921 -480.7158218018176 76.1984 0.26 1594 +1596 3 -11.895686979301875 -482.04619013779075 77.1638 0.2625 1595 +1597 3 -11.841315146169606 -483.3183423594621 78.006 0.2651 1596 +1598 3 -11.613066118585095 -484.41474812341494 78.8245 0.2677 1597 +1599 3 -11.27571222089762 -485.3565200193021 79.6975 0.2703 1598 +1600 3 -11.226342484344489 -486.38719694950976 80.7212 0.2728 1599 +1601 3 -11.43075573580094 -487.6891736979613 81.8104 0.2754 1600 +1602 3 -11.594593040163236 -488.9902525730807 82.9256 0.278 1601 +1603 3 -11.570597179970918 -489.1754424169477 83.9336 0.278 1602 +1604 3 -11.44127579375456 -490.16884932871545 85.0326 0.2769 1603 +1605 3 -11.457075744256265 -491.36204616387977 86.1322 0.2763 1604 +1606 3 -11.3616667209362 -492.40772979872753 87.2567 0.2757 1605 +1607 3 -11.268650010147251 -493.5232404967475 88.3588 0.2752 1606 +1608 3 -11.337734473828167 -494.79439152034956 89.3942 0.2746 1607 +1609 3 -11.797986940620632 -496.2563378464367 90.3134 0.274 1608 +1610 3 -12.368011299893283 -497.69466481305096 91.0983 0.2735 1609 +1611 3 -12.926858411668498 -499.0377497213546 91.7896 0.2729 1610 +1612 3 -13.39225466178344 -500.4789208453735 92.4378 0.2724 1611 +1613 3 -13.83163856188408 -501.03765632598015 93.0686 0.2718 1612 +1614 3 -14.395711749620531 -501.69101805565197 93.6561 0.2712 1613 +1615 3 -14.993755800346047 -503.17708554524825 94.2029 0.2707 1614 +1616 3 -15.595061411918046 -504.2340071916138 94.7156 0.2701 1615 +1617 3 -16.199874801799567 -504.2810684084449 95.1919 0.2695 1616 +1618 3 -16.810358942955283 -505.7502981594417 95.6306 0.269 1617 +1619 3 -17.422337966165692 -507.1149379742598 96.0481 0.2684 1618 +1620 3 -18.053826242155186 -507.09810934127324 96.4594 0.2678 1619 +1621 3 -18.730816387780553 -508.5924122755392 96.8674 0.2673 1620 +1622 3 -19.416758248457413 -509.9185411737429 97.2796 0.2667 1621 +1623 3 -20.10419499118892 -511.32526214200146 97.7024 0.2661 1622 +1624 3 -20.63945541319467 -512.4413556424807 98.3038 0.2656 1623 +1625 3 -21.015565153156782 -512.8688193601014 99.0153 0.265 1624 +1626 3 -21.315051831251353 -513.6495950897598 99.68 0.2644 1625 +1627 3 -21.603763110837583 -514.9753369730302 100.2705 0.2639 1626 +1628 3 -21.86897354793393 -516.3777544354441 100.7692 0.2633 1627 +1629 3 -22.013622185473917 -517.7869753099491 101.1276 0.2628 1628 +1630 3 -22.140151357784593 -519.1876312298509 101.3558 0.2622 1629 +1631 3 -22.268470010753138 -520.5895346224718 101.5008 0.2616 1630 +1632 3 -22.395395477236676 -521.9926197153485 101.603 0.2611 1631 +1633 3 -22.551419820124003 -523.2672553689987 101.677 0.2605 1632 +1634 3 -22.72064848510488 -524.3151253784591 101.738 0.2599 1633 +1635 3 -22.88829475080268 -525.3700943363573 101.8024 0.2594 1634 +1636 3 -23.058979161749864 -526.4217331798856 101.8777 0.2588 1635 +1637 3 -23.23781685328629 -527.611358920423 101.9754 0.2582 1636 +1638 3 -23.471097680330757 -529.0763999016817 102.1188 0.2577 1637 +1639 3 -23.710822735364587 -530.5443263249673 102.3151 0.2571 1638 +1640 3 -23.95063530762686 -532.0119878850721 102.5654 0.2566 1639 +1641 3 -24.19098007243057 -533.4816917018528 102.8684 0.256 1640 +1642 3 -24.24054483415304 -534.8044285415987 103.3108 0.2554 1641 +1643 3 -24.164810348269413 -535.9779163148015 103.913 0.2549 1642 +1644 3 -24.18282015744805 -537.2426800565984 104.6041 0.2543 1643 +1645 3 -24.49279658919925 -538.5721755349739 105.2736 0.2537 1644 +1646 3 -24.818570812980468 -539.8175466095705 105.9044 0.2532 1645 +1647 3 -25.193088442786234 -541.1549766465623 106.4941 0.2526 1646 +1648 3 -25.651008456973464 -542.5942044674913 107.0437 0.252 1647 +1649 3 -26.11391695318369 -543.1507660016148 107.5547 0.2515 1648 +1650 3 -26.576244875712348 -544.0361072939027 108.038 0.2509 1649 +1651 3 -27.0237272465449 -545.1988900038693 108.4723 0.2504 1650 +1652 3 -27.431576956865676 -546.7012681298133 108.8074 0.2498 1651 +1653 3 -27.838328079304596 -547.6393290669471 109.0678 0.2492 1652 +1654 3 -28.245127582883676 -548.3933545360715 109.282 0.2487 1653 +1655 3 -28.648815602326025 -549.9198421895655 109.4859 0.2481 1654 +1656 3 -29.02575722242768 -551.4227580940748 109.7589 0.2475 1655 +1657 3 -29.4010680621061 -552.9205580401607 110.1075 0.247 1656 +1658 3 -29.778972371720883 -554.2839522294298 110.5275 0.2464 1657 +1659 3 -30.15437072862776 -555.4449396764451 111.0049 0.2458 1658 +1660 3 -30.622431961911907 -556.772215870001 111.5447 0.2453 1659 +1661 3 -31.11550894419846 -557.4700488473864 112.1352 0.2447 1660 +1662 3 -31.62254030190075 -558.502741397263 112.763 0.2441 1661 +1663 3 -32.14055969430238 -559.5253238389391 113.4269 0.2436 1662 +1664 3 -32.658086030250956 -560.6986448588239 114.1258 0.243 1663 +1665 3 -33.1765750557127 -561.257305363996 114.8571 0.2424 1664 +1666 3 -33.694681965342845 -562.5810590171727 115.6187 0.2419 1665 +1667 3 -34.067291385318995 -563.9883254741823 116.4722 0.2413 1666 +1668 3 -34.368693459082074 -565.3381049713498 117.4202 0.2408 1667 +1669 3 -34.406387225270116 -566.588491642569 118.4184 0.2402 1668 +1670 3 -34.19400004462481 -567.6822557192045 119.42 0.2396 1669 +1671 3 -33.97848720150163 -568.7732050387344 120.4109 0.2391 1670 +1672 3 -33.858526663128465 -569.9948936470179 121.3416 0.2385 1671 +1673 3 -33.81857883847195 -571.303586637565 122.1892 0.2379 1672 +1674 3 -33.77867939495562 -572.612235954688 122.9931 0.2374 1673 +1675 3 -33.73877995143933 -573.9215935711211 123.797 0.2368 1674 +1676 3 -33.732077794938114 -574.2251297477034 124.63 0.2368 1675 +1677 3 -33.70724745430973 -575.3447356932954 125.6847 0.2359 1676 +1678 3 -33.68279922951299 -576.4629223039593 126.9344 0.2355 1677 +1679 3 -33.66011212869174 -577.5753656578386 128.3467 0.235 1678 +1680 3 -33.63719568830403 -578.6196818501743 129.9052 0.2346 1679 +1681 3 -33.55460005308906 -579.5164386111226 131.5908 0.2341 1680 +1682 3 -33.34130961466615 -580.2653028237632 133.3478 0.2337 1681 +1683 3 -33.18096966343061 -581.1371423041419 135.0955 0.2333 1682 +1684 3 -33.021220735056005 -582.2020457067733 136.8114 0.2328 1683 +1685 3 -32.54115309768675 -583.3508302042733 138.4659 0.2324 1684 +1686 3 -32.10502373218495 -584.3232925674124 139.9656 0.2319 1685 +1687 3 -31.49761419680808 -585.7141505381128 141.2197 0.2315 1686 +1688 3 -30.894161174442246 -587.0248774907626 142.1952 0.231 1687 +1689 3 -30.23559469192437 -588.1602582603402 143.0016 0.2306 1688 +1690 3 -29.61535044189349 -589.4590558546298 143.8116 0.2301 1689 +1691 3 -29.038677593477075 -589.94552139069 144.6931 0.2297 1690 +1692 3 -28.999161761220186 -591.2106350091433 146.4165 0.2292 1691 +1693 3 -33.385838372878624 -574.8305149275535 122.92 0.2368 1675 +1694 3 -32.99088955425689 -576.2161567790554 123.0967 0.2358 1693 +1695 3 -32.5981037085998 -577.8536786110922 123.1633 0.2353 1694 +1696 3 -32.20473728926115 -579.0741645558111 123.2448 0.2348 1695 +1697 3 -31.5541546076919 -580.4933500677523 123.4086 0.2343 1696 +1698 3 -30.88698614880969 -581.7492550769366 123.6329 0.2338 1697 +1699 3 -30.126544523353154 -582.8530733011676 123.8731 0.2333 1698 +1700 3 -29.168189074845998 -583.6867845543729 124.0574 0.2328 1699 +1701 3 -28.205532638156683 -583.787191415689 124.1884 0.2323 1700 +1702 3 -27.20269058565026 -584.8357011931705 124.2704 0.2318 1701 +1703 3 -26.113078599399373 -585.5846807662031 124.3085 0.2313 1702 +1704 3 -25.023452434807396 -586.1686351322064 124.3197 0.2308 1703 +1705 3 -23.932776063473703 -586.7719655591143 124.32 0.2303 1704 +1706 3 -22.79481789701395 -586.5827306123917 124.32 0.2298 1705 +1707 3 -21.65109147869355 -586.4700928836713 124.32 0.2293 1706 +1708 3 -12.63588040760768 -490.0982957003651 83.16 0.2574 1602 +1709 3 -13.628241449351982 -490.9352530962713 82.829 0.2547 1708 +1710 3 -14.534806124234702 -490.9353261857563 82.7002 0.2533 1709 +1711 3 -15.405303251806806 -492.3466372154425 82.528 0.252 1710 +1712 3 -16.22022880387886 -491.88939202309757 82.2531 0.2506 1711 +1713 3 -17.002440781078295 -493.2968420036441 81.8642 0.2492 1712 +1714 3 -17.83347995236887 -493.5262121252718 81.3856 0.2479 1713 +1715 3 -18.706736300356265 -494.31104875591245 80.8371 0.2465 1714 +1716 3 -19.592151988285103 -495.56255899610755 80.2298 0.2451 1715 +1717 3 -20.681056283011394 -496.3157573016801 79.571 0.2438 1716 +1718 3 -21.81216790667127 -495.397301634217 78.8721 0.2424 1717 +1719 3 -22.871858518320515 -495.08710952153825 78.0416 0.2411 1718 +1720 3 -23.780622174510604 -495.24557361781837 77.051 0.2397 1719 +1721 3 -24.777197190661134 -495.769365864944 75.9452 0.2383 1720 +1722 3 -25.71774610823549 -496.0244564066638 74.7337 0.237 1721 +1723 3 -26.679744264146773 -494.96308572699263 73.4829 0.2356 1722 +1724 3 -27.67115263736696 -495.71423668410085 72.277 0.2342 1723 +1725 3 -28.66903275898895 -494.2995986985247 71.1726 0.2329 1724 +1726 3 -29.645069116013772 -494.454037134051 70.2094 0.2315 1725 +1727 3 -30.738276961587694 -494.85691120605753 68.6 0.2302 1726 +1728 3 -11.698713856171643 -480.0892203455143 76.16 0.2574 1594 +1729 3 -10.558504635733755 -480.31245125418656 76.3938 0.2562 1728 +1730 3 -9.435286130417246 -480.65354397732204 76.5022 0.2555 1729 +1731 3 -8.35351309299492 -482.06273846233915 76.6646 0.2549 1730 +1732 3 -7.237501882129916 -481.7941855170751 76.8387 0.2543 1731 +1733 3 -6.103089425940503 -481.2596217312328 76.9958 0.2537 1732 +1734 3 -4.9643864307482275 -482.5419859813282 77.1383 0.2531 1733 +1735 3 -3.8247885301137643 -481.954471329545 77.2727 0.2524 1734 +1736 3 -2.686153318992467 -483.1984945752132 77.4049 0.2518 1735 +1737 3 -1.5784115539277686 -482.7857658225601 77.6054 0.2512 1736 +1738 3 -0.4833351983976577 -482.7536871666207 77.87 0.2506 1737 +1739 3 0.5743211904477405 -484.1056146404862 78.1698 0.2499 1738 +1740 3 1.6274106404904316 -484.69463357737425 78.4896 0.2493 1739 +1741 3 2.7026140007341866 -485.50337803095846 78.8208 0.2487 1740 +1742 3 3.791329586114916 -485.2072713368065 79.1532 0.2481 1741 +1743 3 4.866281174079223 -485.80464120499664 79.4696 0.2474 1742 +1744 3 5.9127867686021816 -486.6510133131341 79.7619 0.2468 1743 +1745 3 6.9591031503270315 -487.71396551837233 80.0352 0.2462 1744 +1746 3 8.015700378679291 -488.2058581242187 80.2911 0.2456 1745 +1747 3 9.074474758337331 -488.03690395527843 80.5347 0.245 1746 +1748 3 10.205752598297366 -488.8749261437907 80.7612 0.2443 1747 +1749 3 11.348676852993627 -488.68495080651223 80.9757 0.2437 1748 +1750 3 12.490912118421182 -489.7553164811477 81.1927 0.2431 1749 +1751 3 13.60910193838873 -488.89047741028054 81.443 0.2425 1750 +1752 3 14.723424996307774 -487.9660665775092 81.7256 0.2419 1751 +1753 3 15.811166939543387 -488.7649449539275 82.0439 0.2412 1752 +1754 3 16.866240698190804 -487.7442478064528 82.3992 0.2406 1753 +1755 3 17.906202663221272 -488.2907143982645 82.7798 0.24 1754 +1756 3 18.85609998057913 -487.2766928158932 83.181 0.2394 1755 +1757 3 19.95242570137579 -487.84581589915206 83.5439 0.2388 1756 +1758 3 21.094285105167767 -487.10355331026506 83.8415 0.2381 1757 +1759 3 22.224764510665498 -487.1546405131818 84.1224 0.2375 1758 +1760 3 23.314273305918864 -488.02757033895807 84.4152 0.2369 1759 +1761 3 24.420907529350284 -488.9450236681398 84.723 0.2363 1760 +1762 3 25.55112321796147 -488.87244816982917 85.0469 0.2356 1761 +1763 3 26.67857222783376 -488.2966364154242 85.3882 0.235 1762 +1764 3 27.778738760956518 -489.6529357370634 85.7391 0.2344 1763 +1765 3 28.87822302482804 -489.4281727702645 86.0938 0.2338 1764 +1766 3 30.00960778494741 -490.7556035324654 86.4181 0.2331 1765 +1767 3 31.146985377725624 -490.1797160587749 86.7328 0.2325 1766 +1768 3 32.285031061413825 -489.61741165288 87.04 0.2319 1767 +1769 3 33.3782738480928 -490.82173278295545 87.4602 0.2313 1768 +1770 3 34.459071319751885 -490.77333400153145 87.9701 0.2307 1769 +1771 3 35.537784381923274 -491.4092147771752 88.5329 0.23 1770 +1772 3 36.601448675780375 -490.8941626644907 89.88 0.2294 1771 +1773 3 -12.527472494481753 -460.1330670993867 64.0721 0.3501 1580 +1774 3 -13.593319126603191 -460.9093913125007 65.189 0.3466 1773 +1775 3 -14.512873253654416 -460.8187847805268 66.159 0.3449 1774 +1776 3 -15.297536548225576 -462.3968334754113 67.0891 0.3432 1775 +1777 3 -15.49955375798904 -463.91430168485886 68.0952 0.3415 1776 +1778 3 -15.21088742686234 -465.4567383678476 69.1664 0.3398 1777 +1779 3 -15.531947334686468 -467.0366317355708 70.2512 0.3381 1778 +1780 3 -16.473995254036396 -466.78896036517676 71.2132 0.3363 1779 +1781 3 -16.82349387149938 -468.6124205282896 72.207 0.3346 1780 +1782 3 -17.197010141524977 -470.4750328936842 73.1858 0.3329 1781 +1783 3 -17.84076244388134 -470.8119308087148 74.0816 0.3312 1782 +1784 3 -18.854671757607992 -471.4927539166865 74.8331 0.3295 1783 +1785 3 -19.31402100425402 -472.29607662607833 75.4348 0.3295 1784 +1786 3 -20.31980572430046 -473.9834476140827 75.9506 0.2883 1785 +1787 3 -20.617658396262524 -474.9655502226125 76.4338 0.2883 1786 +1788 3 -21.213581600967387 -474.69008019711544 76.939 0.2872 1787 +1789 3 -21.83344795414643 -476.4369040569267 77.3648 0.2867 1788 +1790 3 -22.38543331517412 -478.3614122586241 77.6765 0.2862 1789 +1791 3 -22.856091747556583 -479.0684229792957 77.8834 0.2856 1790 +1792 3 -23.327316575279426 -479.4773188500493 77.9976 0.2851 1791 +1793 3 -23.866794061805926 -480.9939172827985 78.0368 0.2846 1792 +1794 3 -24.478235667885215 -482.50536029070963 78.0248 0.284 1793 +1795 3 -25.118582917108114 -483.97166040109175 77.989 0.2835 1794 +1796 3 -25.701031362815336 -485.4742335322828 77.9369 0.283 1795 +1797 3 -26.171245119884812 -485.89666679764247 77.8652 0.2824 1796 +1798 3 -26.586540883796474 -486.6318818438092 77.7633 0.2819 1797 +1799 3 -27.001924164936554 -488.0868005906004 77.6168 0.2814 1798 +1800 3 -27.361214127214566 -489.54325439702575 77.4152 0.2809 1799 +1801 3 -27.56683764548035 -490.96760096871384 77.1532 0.2803 1800 +1802 3 -27.737920176254896 -492.25206701467704 76.7936 0.2798 1801 +1803 3 -28.07118630973281 -492.79437103865706 76.3008 0.2793 1802 +1804 3 -28.409489306373892 -493.384999175689 75.7162 0.2787 1803 +1805 3 -28.651437368819387 -494.7881095389376 75.1066 0.2782 1804 +1806 3 -28.984580908369015 -496.24982487850406 74.5315 0.2777 1805 +1807 3 -29.419274984438324 -497.753403723461 74.0376 0.2771 1806 +1808 3 -29.877929378178717 -499.25458997264616 73.6448 0.2766 1807 +1809 3 -30.425370932496335 -500.63522073034216 73.3362 0.2761 1808 +1810 3 -31.189170749370604 -501.2899600376939 73.0688 0.2755 1809 +1811 3 -32.04990877367743 -501.7263356982619 72.7681 0.275 1810 +1812 3 -32.776177508724466 -502.9952016248601 72.3615 0.2745 1811 +1813 3 -33.270639927872054 -503.29973256475904 71.8528 0.2739 1812 +1814 3 -33.567306321497995 -504.1647871194203 71.3076 0.2734 1813 +1815 3 -33.77032741607582 -505.58874643766904 70.7787 0.2729 1814 +1816 3 -34.14393969125997 -507.0834060858712 70.3069 0.2724 1815 +1817 3 -34.90973822604803 -508.5669069902857 69.9194 0.2718 1816 +1818 3 -35.735540872198015 -509.81186601105003 69.573 0.2713 1817 +1819 3 -36.42350607830914 -510.1522650650736 69.2275 0.2708 1818 +1820 3 -37.12219307719876 -511.0533943360646 68.8929 0.2702 1819 +1821 3 -37.9621485566144 -512.3760721177325 68.6014 0.2697 1820 +1822 3 -38.83316369838675 -512.1757773657141 68.367 0.2692 1821 +1823 3 -39.585098773922695 -513.5015092230209 68.1761 0.2686 1822 +1824 3 -40.100766019487914 -515.0195050887423 67.9913 0.2681 1823 +1825 3 -40.42383985317339 -516.5028922379965 67.7986 0.2676 1824 +1826 3 -40.68443869948868 -517.9103966861597 67.6214 0.267 1825 +1827 3 -40.974470156899294 -519.2513576512846 67.4716 0.2665 1826 +1828 3 -41.33831810422851 -519.9862164109403 67.3369 0.266 1827 +1829 3 -41.81029298527352 -520.5565892603942 67.1874 0.2655 1828 +1830 3 -42.39088383602525 -522.0796143183011 67.0247 0.2649 1829 +1831 3 -43.014252742924185 -523.5353326036964 66.8836 0.2644 1830 +1832 3 -43.4497400288661 -524.0825107943178 66.7772 0.2639 1831 +1833 3 -43.614792824627465 -525.1410402214833 66.7022 0.2633 1832 +1834 3 -43.71674196949722 -526.4434591514761 66.6551 0.2628 1833 +1835 3 -43.979416271548715 -527.8464980436197 66.631 0.2623 1834 +1836 3 -44.46675844765194 -529.098481061701 66.6201 0.2617 1835 +1837 3 -45.08960934035059 -530.1172682029106 66.6112 0.2612 1836 +1838 3 -45.68964165981051 -530.6229968087908 66.5997 0.2607 1837 +1839 3 -46.02368905855384 -532.0192489865199 66.5832 0.2601 1838 +1840 3 -46.108297148198886 -533.3643899641897 66.5608 0.2596 1839 +1841 3 -46.08283468737198 -534.7078174613408 66.5319 0.2591 1840 +1842 3 -46.07182521323023 -536.0537869718925 66.4882 0.2585 1841 +1843 3 -46.14614200706853 -537.3924747256139 66.4163 0.258 1842 +1844 3 -46.30494347787408 -538.7135831808168 66.3247 0.2575 1843 +1845 3 -46.58489627566907 -540.0524080273688 66.2379 0.257 1844 +1846 3 -47.0566049147932 -541.5877325435436 66.1696 0.2564 1845 +1847 3 -47.55694802185067 -543.1259563887415 66.1217 0.2559 1846 +1848 3 -47.63641755276289 -544.5228595598627 66.0926 0.2554 1847 +1849 3 -47.64486372567049 -545.8745515380917 66.078 0.2548 1848 +1850 3 -47.732979593625 -547.2769719552994 66.0719 0.2543 1849 +1851 3 -47.71942503068692 -548.6165146965304 66.068 0.2538 1850 +1852 3 -47.67142039642114 -549.9332058385182 66.0629 0.2532 1851 +1853 3 -47.69785075771634 -551.302413873864 66.0562 0.2527 1852 +1854 3 -47.90252576481015 -552.7559756495527 66.0467 0.2522 1853 +1855 3 -48.29219684935555 -553.534420766162 66.0332 0.2516 1854 +1856 3 -48.756371917660275 -554.5243977123927 66.0148 0.2511 1855 +1857 3 -49.25264085106783 -555.8423329899738 65.9893 0.2506 1856 +1858 3 -49.81714826493791 -556.9264042782468 65.9529 0.25 1857 +1859 3 -50.46799049240711 -557.2573267447216 65.9011 0.2495 1858 +1860 3 -51.02444632125757 -558.7543664898456 65.8297 0.249 1859 +1861 3 -51.344476785103915 -559.9636688001675 65.7359 0.2485 1860 +1862 3 -51.424328431847776 -561.2824282829857 65.6029 0.2479 1861 +1863 3 -51.05090176226007 -562.6461968285104 65.382 0.2474 1862 +1864 3 -50.494004545433626 -563.5259996929926 65.091 0.2469 1863 +1865 3 -50.07360202251405 -565.1040167369086 64.7702 0.2463 1864 +1866 3 -49.8359264222282 -566.6488407165588 64.4554 0.2458 1865 +1867 3 -49.733407139221654 -568.0871887098806 64.2146 0.2453 1866 +1868 3 -49.58523218070758 -569.4194568281413 64.0811 0.2447 1867 +1869 3 -49.52289627978418 -570.7858812498232 64.073 0.2442 1868 +1870 3 -49.82439062954401 -571.9315615519552 64.2032 0.2437 1869 +1871 3 -50.295949191958385 -572.6776419866203 64.3868 0.2431 1870 +1872 3 -50.85964921761466 -574.1179653321155 64.6139 0.2426 1871 +1873 3 -51.51913927755397 -574.897796042329 64.8936 0.2421 1872 +1874 3 -52.25865399581714 -576.3331886578295 65.1375 0.2415 1873 +1875 3 -53.017527890149736 -577.4699660919298 65.3117 0.241 1874 +1876 3 -53.784971383702114 -578.2505742872489 65.424 0.2405 1875 +1877 3 -54.53201967278464 -579.3199912710135 65.492 0.24 1876 +1878 3 -55.14447234951726 -579.741562133369 65.5256 0.2394 1877 +1879 3 -55.6999654888545 -580.944326115739 65.5371 0.2389 1878 +1880 3 -56.25344573193685 -582.5097281516706 65.5444 0.2384 1879 +1881 3 -56.8069259750192 -584.0774980911148 65.5539 0.2378 1880 +1882 3 -57.473585397449206 -585.5384087694009 65.5676 0.2373 1881 +1883 3 -58.26167031293451 -585.4944155640733 65.5864 0.2368 1882 +1884 3 -59.00482870787587 -586.7166731383718 65.613 0.2362 1883 +1885 3 -59.636742256247516 -587.9594441912668 65.6499 0.2357 1884 +1886 3 -60.2292551832292 -588.0653112614433 65.7017 0.2352 1885 +1887 3 -60.79318202341774 -589.4446032892143 65.774 0.2346 1886 +1888 3 -61.34666226650009 -591.0112668621729 65.8734 0.2341 1887 +1889 3 -61.85156335860876 -592.5798107238469 66.0181 0.2336 1888 +1890 3 -62.326678080472824 -594.1448647079235 66.2175 0.233 1889 +1891 3 -62.67122045746249 -595.5917832061111 66.4905 0.2325 1890 +1892 3 -62.56958712614663 -596.9714572645097 66.8696 0.232 1891 +1893 3 -62.179738934296935 -597.972943946953 67.3526 0.2315 1892 +1894 3 -62.4709982935352 -599.3840114559126 67.9745 0.2309 1893 +1895 3 -62.94775424500185 -600.0177439148738 68.5947 0.2304 1894 +1896 3 -63.37147895099643 -600.3716554022517 69.2796 0.2299 1895 +1897 3 -64.0310357654003 -601.7719607320056 70.84 0.2293 1896 +1898 3 -21.415542984901656 -472.19000888165607 76.1877 0.2883 1786 +1899 3 -22.551057758134725 -473.0255982799098 76.4644 0.2861 1898 +1900 3 -23.68700825292921 -471.14828386117085 76.5733 0.285 1899 +1901 3 -24.81764818431609 -471.87672102143074 76.6993 0.284 1900 +1902 3 -25.9351542772358 -471.88004636825616 76.8516 0.2829 1901 +1903 3 -27.05545602710363 -470.47613213062624 77.0465 0.2818 1902 +1904 3 -28.185414718845696 -469.77029084975493 77.3004 0.2807 1903 +1905 3 -29.313818202785896 -469.6356471346872 77.6087 0.2796 1904 +1906 3 -30.44120838233872 -470.36955992115486 77.9506 0.2786 1905 +1907 3 -31.56383988525645 -469.0293648987268 78.3034 0.2775 1906 +1908 3 -32.62005350234913 -468.7047089231983 78.6691 0.2764 1907 +1909 3 -33.579486310152774 -466.3880252033765 79.0252 0.2753 1908 +1910 3 -34.537473821169435 -465.9508630902709 79.3274 0.2742 1909 +1911 3 -35.59103812886195 -465.94831693783436 79.578 0.2731 1910 +1912 3 -36.72166864067589 -465.0141458277577 79.8134 0.2721 1911 +1913 3 -37.85435846863558 -465.34383915184713 80.0327 0.271 1912 +1914 3 -38.995895791042955 -464.01045856822236 80.2102 0.2699 1913 +1915 3 -40.140149177315074 -464.98551984740277 80.3443 0.2688 1914 +1916 3 -41.283923976775526 -465.7938175707787 80.4597 0.2677 1915 +1917 3 -42.425212226458875 -464.14305054540137 80.5714 0.2667 1916 +1918 3 -43.565866588031156 -464.30705361075707 80.6806 0.2656 1917 +1919 3 -44.70841768064724 -463.632938093084 80.7747 0.2645 1918 +1920 3 -45.85220665844892 -462.5392344885466 80.8466 0.2634 1919 +1921 3 -46.99660116767928 -462.96245002148123 80.8996 0.2623 1920 +1922 3 -48.140023703418294 -463.62213032674396 80.936 0.2612 1921 +1923 3 -49.28082561666602 -461.97819562657776 80.9614 0.2602 1922 +1924 3 -50.421907950175815 -462.7191730349194 80.9833 0.2591 1923 +1925 3 -51.564523097701056 -461.2842933272175 81.0088 0.258 1924 +1926 3 -52.70847260139182 -461.97943338696024 81.0446 0.2569 1925 +1927 3 -53.85203998925091 -462.55213712697565 81.0942 0.2558 1926 +1928 3 -54.980822325682304 -460.92313664685196 81.163 0.2548 1927 +1929 3 -56.02687769007595 -460.10386404255956 81.2585 0.2537 1928 +1930 3 -57.05769390815603 -458.9057390623708 81.396 0.2526 1929 +1931 3 -58.14663780349687 -458.9266323292934 81.592 0.2515 1930 +1932 3 -59.254323729097806 -458.46227017509585 81.8524 0.2504 1931 +1933 3 -60.35693888003692 -457.2632624604423 82.1892 0.2493 1932 +1934 3 -61.39930457605181 -456.3182419213084 82.7025 0.2483 1933 +1935 3 -62.347657035528194 -455.9966261364764 83.4198 0.2472 1934 +1936 3 -63.29207121972324 -456.0530586618579 84.278 0.2461 1935 +1937 3 -63.802762369697504 -454.88121974812555 85.0436 0.245 1936 +1938 3 -64.28844971527657 -453.34648506537235 85.7091 0.2439 1937 +1939 3 -64.69246491873311 -450.4972913798633 86.3187 0.2429 1938 +1940 3 -64.9963723574226 -448.0348989930959 86.9109 0.2418 1939 +1941 3 -65.28289035974719 -446.525979949609 87.4927 0.2407 1940 +1942 3 -64.99915711300463 -444.54279946286056 88.0572 0.2396 1941 +1943 3 -64.43330862295151 -444.60300687177323 88.5973 0.2385 1942 +1944 3 -63.850306756117504 -442.977198778511 89.0994 0.2374 1943 +1945 3 -63.13984775770764 -440.86503589909887 89.5213 0.2364 1944 +1946 3 -62.37276697705607 -439.56166140067 89.85 0.2353 1945 +1947 3 -61.60174792112317 -438.06605524227376 90.102 0.2342 1946 +1948 3 -60.829248161476784 -437.28828317656564 90.2955 0.2331 1947 +1949 3 -60.27634849207601 -435.12178059603013 90.4254 0.232 1948 +1950 3 -60.40300652614569 -433.35941433549226 90.4565 0.231 1949 +1951 3 -60.531295340638636 -431.60012621141163 90.3182 0.2299 1950 +1952 3 -18.858448439762633 -472.1721662046402 75.5252 0.3295 1784 +1953 3 -18.905627143150078 -474.03983505320224 76.4179 0.3243 1952 +1954 3 -19.108533567944676 -475.98734023972395 76.8158 0.3218 1953 +1955 3 -19.37719967304856 -477.9480393359958 77.2792 0.3192 1954 +1956 3 -19.663264168268903 -479.37805906854055 77.7526 0.3166 1955 +1957 3 -19.87672663536323 -480.79193548955317 78.1922 0.314 1956 +1958 3 -20.1056189569971 -482.21925340179155 78.573 0.3115 1957 +1959 3 -20.633106583222638 -483.6275299039154 78.8637 0.3089 1958 +1960 3 -21.397486973778484 -483.3171988623382 79.0821 0.3063 1959 +1961 3 -22.18944760506383 -484.74830752788404 79.2638 0.3037 1960 +1962 3 -23.003099865023835 -484.99763072635346 79.4391 0.3012 1961 +1963 3 -24.039126079807193 -485.58171099862295 79.6289 0.2986 1962 +1964 3 -24.88486072608417 -486.9198638245032 79.9366 0.296 1963 +1965 3 -25.566638662148662 -488.3044889396519 80.3729 0.2934 1964 +1966 3 -26.25328891502512 -488.42937579347324 80.8926 0.2909 1965 +1967 3 -26.914888342199298 -489.34363231989425 81.4187 0.2883 1966 +1968 3 -27.53228111981482 -490.8107531519124 81.8916 0.2857 1967 +1969 3 -27.857300065684168 -491.8706204684344 82.3172 0.2831 1968 +1970 3 -28.006124572443774 -492.8885184833077 82.7126 0.2806 1969 +1971 3 -28.20915611620091 -493.74944012013805 83.214 0.278 1970 +1972 3 -28.436523839264698 -494.60997037725605 83.8858 0.2754 1971 +1973 3 -28.848269134137805 -495.9573878629574 84.7045 0.2728 1972 +1974 3 -29.50866454869869 -497.415295217407 85.5453 0.2703 1973 +1975 3 -30.138460980211462 -498.7978035944348 86.389 0.2677 1974 +1976 3 -30.666967601235477 -500.1256196833828 87.2323 0.2651 1975 +1977 3 -31.061529667217464 -501.03271424780525 88.0692 0.2625 1976 +1978 3 -31.513683663278066 -501.3402395912862 88.8577 0.26 1977 +1979 3 -32.09511730917013 -502.64034847370544 89.5476 0.2574 1978 +1980 3 -32.66811202962125 -503.9995685784791 90.1412 0.2548 1979 +1981 3 -33.17598870749805 -504.60925761759813 90.6002 0.2523 1980 +1982 3 -33.585120663682446 -505.3291409636465 90.9871 0.2497 1981 +1983 3 -33.31425979625095 -506.67657102033155 91.4995 0.2471 1982 +1984 3 -33.622463060160655 -506.79554975751284 91.9108 0.2471 1983 +1985 3 -34.447147715498 -508.248655215236 92.274 0.2466 1984 +1986 3 -35.27033748878074 -509.67144026950257 92.6013 0.2463 1985 +1987 3 -36.02422290109027 -510.7919876756585 92.892 0.2461 1986 +1988 3 -36.646159485415865 -510.83916381049494 93.1319 0.2458 1987 +1989 3 -37.21863096707706 -512.3209685878996 93.3363 0.2455 1988 +1990 3 -37.8247213782325 -513.8385933477917 93.5855 0.2453 1989 +1991 3 -38.45195704717993 -514.0537472667532 93.8921 0.245 1990 +1992 3 -39.059760201170754 -515.0090544781127 94.2376 0.2447 1991 +1993 3 -39.65136404436905 -516.4419490943238 94.6061 0.2445 1992 +1994 3 -40.21045770383399 -517.9611149458251 94.9956 0.2442 1993 +1995 3 -40.64552494198352 -519.4038997663308 95.4198 0.244 1994 +1996 3 -40.99177110805702 -520.7034148270099 95.8642 0.2437 1995 +1997 3 -41.28410110657424 -521.5122958689396 96.3038 0.2434 1996 +1998 3 -41.558427513773 -522.3441433734314 96.7305 0.2432 1997 +1999 3 -41.73084962530271 -523.3712249385975 97.1351 0.2429 1998 +2000 3 -41.80799192819934 -524.7425735367427 97.5106 0.2427 1999 +2001 3 -41.85918597491728 -526.1106722228074 97.862 0.2424 2000 +2002 3 -41.94039320641201 -527.4907393443781 98.2069 0.2421 2001 +2003 3 -42.06377698308734 -528.894046750825 98.5634 0.2419 2002 +2004 3 -42.20246549533959 -530.3038634433497 98.9369 0.2416 2003 +2005 3 -42.25387740283815 -531.6658986186169 99.3261 0.2413 2004 +2006 3 -42.24494860902227 -532.9914565484459 99.7279 0.2411 2005 +2007 3 -42.222704552491415 -534.3067766967312 100.1364 0.2408 2006 +2008 3 -42.206411667496795 -535.6238676790077 100.5536 0.2406 2007 +2009 3 -42.215618342905856 -536.9400420836536 100.9996 0.2403 2008 +2010 3 -42.23977628604276 -538.2534434098964 101.47 0.24 2009 +2011 3 -42.58379169508069 -539.7421813982796 101.906 0.2398 2010 +2012 3 -43.081710811842356 -540.847409709698 102.2792 0.2395 2011 +2013 3 -43.65746325728082 -541.3987456225269 102.5839 0.2393 2012 +2014 3 -44.49465578711939 -542.3289016435042 102.8006 0.239 2013 +2015 3 -45.41957379200775 -542.4635660487788 102.935 0.2387 2014 +2016 3 -46.36437421175542 -543.2553852779816 103.01 0.2385 2015 +2017 3 -47.33325231851279 -544.514296347715 103.0515 0.2382 2016 +2018 3 -48.30986767852899 -545.1353465551658 103.0756 0.238 2017 +2019 3 -49.33406306347273 -545.5509073280165 103.0935 0.2377 2018 +2020 3 -50.47618468872344 -544.8246740928195 103.115 0.2374 2019 +2021 3 -51.61674005428151 -544.8781285471503 103.145 0.2372 2020 +2022 3 -52.752539870950045 -545.6117969036467 103.1873 0.2369 2021 +2023 3 -53.78136102501598 -545.5003166328049 103.2461 0.2366 2022 +2024 3 -54.77378462624155 -546.5572941291116 103.327 0.2364 2023 +2025 3 -55.76333433726867 -546.2112390200992 103.4351 0.2361 2024 +2026 3 -56.773052108006766 -547.5082214011035 103.605 0.2359 2025 +2027 3 -57.78739564786705 -548.7552977686651 103.843 0.2356 2026 +2028 3 -58.80272683498771 -548.1474174065472 104.146 0.2353 2027 +2029 3 -59.81797050487986 -549.3594714630242 104.5122 0.2351 2028 +2030 3 -60.830713446653746 -548.7196430229063 104.9644 0.2348 2029 +2031 3 -61.833688331410784 -549.9644022098643 105.5261 0.2346 2030 +2032 3 -62.834732282325135 -551.2015926507083 106.19 0.2343 2031 +2033 3 -63.83644432414943 -550.5802819424064 106.9474 0.234 2032 +2034 3 -64.83401590368075 -551.6863465843517 107.8056 0.2338 2033 +2035 3 -65.791790703244 -550.832590601766 108.8178 0.2335 2034 +2036 3 -66.73345458314422 -551.7562757823816 109.9543 0.2333 2035 +2037 3 -67.20837476965686 -552.9111361979808 111.2376 0.233 2036 +2038 3 -67.77758189295261 -554.1363256192881 112.5846 0.2327 2037 +2039 3 -68.7071901876937 -554.2112032525328 113.8628 0.2325 2038 +2040 3 -69.58782900018423 -554.7039049945226 115.0481 0.2322 2039 +2041 3 -70.41421119040935 -555.6231726212886 116.1381 0.2319 2040 +2042 3 -71.23721072128754 -556.149140385187 117.1484 0.2317 2041 +2043 3 -71.86786039711997 -557.402531966939 118.1043 0.2314 2042 +2044 3 -72.09034908335437 -558.5411432270698 119.028 0.2312 2043 +2045 3 -72.29761130618847 -559.3205618158968 119.9332 0.2309 2044 +2046 3 -72.81737884835194 -559.9261175255511 120.7993 0.2306 2045 +2047 3 -73.55206188131946 -561.4089694587101 121.6186 0.2304 2046 +2048 3 -74.28727710682834 -562.2271942832931 122.3832 0.2301 2047 +2049 3 -75.0218242414272 -563.6437599459177 123.0886 0.2298 2048 +2050 3 -75.75554458488145 -564.0524285907661 123.7323 0.2296 2049 +2051 3 -76.49067229316188 -565.3636670174482 124.3147 0.2293 2050 +2052 3 -77.22530694498919 -566.1920355309727 125.44 0.2291 2051 +2053 3 -33.06117051864723 -507.6418238689604 92.3227 0.2471 1983 +2054 3 -32.512719976885634 -509.0990576403414 93.0056 0.2465 2053 +2055 3 -31.982650247911195 -510.121071619144 93.2837 0.2462 2054 +2056 3 -31.4641488360174 -511.1856078086272 93.5959 0.2459 2055 +2057 3 -30.960186393682953 -513.2202010323557 93.9596 0.2456 2056 +2058 3 -30.571869986242213 -514.4281637502779 94.5008 0.2453 2057 +2059 3 -30.236051602125553 -515.4365050506436 95.1944 0.245 2058 +2060 3 -30.188535265544683 -516.6236864980832 95.9736 0.2447 2059 +2061 3 -30.260843358111263 -517.8480877121444 96.7845 0.2444 2060 +2062 3 -30.412112753525335 -519.1469612933221 97.5257 0.2441 2061 +2063 3 -30.6428001106334 -520.5672852088401 98.0885 0.2438 2062 +2064 3 -30.87858689038581 -521.8459988256209 98.4768 0.2435 2063 +2065 3 -31.007573634264435 -522.9552303426713 98.7473 0.2432 2064 +2066 3 -30.890524626750235 -524.4461807313211 98.9694 0.2429 2065 +2067 3 -30.741454762793914 -525.8769540631265 99.1726 0.2426 2066 +2068 3 -30.600218623076508 -527.0977895781461 99.3745 0.2423 2067 +2069 3 -30.570667810258534 -528.4066189299799 99.5478 0.242 2068 +2070 3 -30.569417439382104 -529.7379296910661 99.689 0.2417 2069 +2071 3 -30.573218110009954 -531.0736590818428 99.8071 0.2414 2070 +2072 3 -30.598535705082128 -532.4212217966026 99.9141 0.2411 2071 +2073 3 -30.643753622516606 -533.781553376514 100.0255 0.2408 2072 +2074 3 -30.68593339470167 -535.1406012591306 100.1543 0.2405 2073 +2075 3 -30.65330530054592 -536.4512763024335 100.3274 0.2402 2074 +2076 3 -30.685628468879294 -537.6845893271453 100.6824 0.2399 2075 +2077 3 -30.491745724555805 -538.849152582895 101.0685 0.2396 2076 +2078 3 -30.283027877715558 -540.0894400466485 101.4544 0.2393 2077 +2079 3 -30.380826111112924 -541.4067727654409 101.7755 0.239 2078 +2080 3 -30.54996725886538 -542.8275475575163 102.0169 0.2387 2079 +2081 3 -30.72112130287269 -544.258367292858 102.1784 0.2384 2080 +2082 3 -30.893906127303246 -545.3451643071376 102.2655 0.2381 2081 +2083 3 -31.065147688539042 -546.4344407123945 102.307 0.2378 2082 +2084 3 -31.244996450728806 -547.5190120750548 102.3098 0.2375 2083 +2085 3 -31.512078661121777 -548.6969529018147 102.2462 0.2372 2084 +2086 3 -31.783322562393103 -550.0808833205748 102.1292 0.2369 2085 +2087 3 -32.1045477548746 -551.306540863847 101.9696 0.2366 2086 +2088 3 -32.50451535981634 -552.570017975588 101.7764 0.2363 2087 +2089 3 -32.9090893309495 -553.5392931076423 101.5644 0.236 2088 +2090 3 -33.3136633020826 -554.3010124936393 101.3477 0.2357 2089 +2091 3 -33.716694010020916 -555.8223674422197 101.1396 0.2354 2090 +2092 3 -34.12126798115408 -557.3462830260848 100.9464 0.2351 2091 +2093 3 -34.52584195228718 -558.8703724888016 100.7776 0.2348 2092 +2094 3 -34.93041592342034 -560.3955843965373 100.6452 0.2345 2093 +2095 3 -35.333359114130204 -561.5416701363538 100.5623 0.2342 2094 +2096 3 -35.737933085263364 -562.7314974714243 100.5444 0.2339 2095 +2097 3 -36.14250705639642 -563.5297591299629 100.6062 0.2336 2096 +2098 3 -36.581289484456896 -564.5523938826685 100.8305 0.2333 2097 +2099 3 -37.04562657407863 -566.0251249384569 101.2906 0.233 2098 +2100 3 -37.50929557279034 -567.4972848427901 101.9399 0.2327 2099 +2101 3 -37.84764965012692 -568.4946716402333 102.7911 0.2324 2100 +2102 3 -38.158478296591326 -569.2889559953159 103.7915 0.2321 2101 +2103 3 -38.46772454377266 -570.0927950722595 104.8807 0.2318 2102 +2104 3 -39.12553171298679 -571.0440817156098 105.9262 0.2315 2103 +2105 3 -39.80851888625419 -572.5174286555821 106.9116 0.2312 2104 +2106 3 -40.49001117746708 -573.7030776886104 107.8462 0.2309 2105 +2107 3 -41.172998350734495 -573.9635147785949 108.7626 0.2306 2106 +2108 3 -41.76319719843535 -574.9556052709753 109.69 0.2303 2107 +2109 3 -42.253201094367384 -576.3466473052885 110.6456 0.23 2108 +2110 3 -42.74306909193084 -577.5937740041018 111.6058 0.2297 2109 +2111 3 -43.232492414181344 -578.1885911094365 112.5368 0.2294 2110 +2112 3 -43.72236041174475 -579.1564045150511 114.4405 0.2291 2111 +2113 3 -6.390109677484985 -384.7852559780031 42.5838 0.4427 1070 +2114 3 -7.478933175000332 -386.1443763671333 43.2653 0.4398 2113 +2115 3 -8.60253049517692 -385.16653380578487 43.5448 0.4383 2114 +2116 3 -9.730722372532451 -385.8091658864583 43.8606 0.4368 2115 +2117 3 -10.843640162469327 -385.9261422662662 44.2084 0.4354 2116 +2118 3 -11.910399372682464 -384.4336527607718 44.5528 0.4339 2117 +2119 3 -12.869769621004776 -383.9315847697106 44.8403 0.4324 2118 +2120 3 -13.707131005071211 -381.7318265848483 45.0374 0.431 2119 +2121 3 -14.423670329371813 -380.3797277086527 45.1528 0.4295 2120 +2122 3 -14.929131674222997 -378.4886335500915 45.1993 0.428 2121 +2123 3 -15.069351518697415 -376.39560258442066 45.1914 0.4266 2122 +2124 3 -14.784617650480829 -375.2368019444169 45.1441 0.4251 2123 +2125 3 -14.223235899088642 -373.50689977230115 45.0598 0.4236 2124 +2126 3 -13.663649183170639 -371.7790955516621 44.9288 0.4221 2125 +2127 3 -13.355278574095507 -370.04598870534966 44.7544 0.4207 2126 +2128 3 -13.457637331213004 -368.0130735164392 44.5656 0.4192 2127 +2129 3 -13.938636348188599 -366.6223634294379 44.3828 0.4177 2128 +2130 3 -14.665311666996459 -365.654580354467 44.2028 0.4163 2129 +2131 3 -15.502140858521486 -362.77715782928556 44.0068 0.4148 2130 +2132 3 -16.258981963850324 -361.88958654832965 43.7567 0.4133 2131 +2133 3 -16.773765194977496 -360.7657008078054 43.423 0.4118 2132 +2134 3 -16.975228395832623 -359.2264267649978 43.0394 0.4104 2133 +2135 3 -16.827607901686385 -357.3205843974223 42.6868 0.4089 2134 +2136 3 -16.40686820103273 -355.24994122054267 42.4208 0.4074 2135 +2137 3 -15.95742653967508 -353.21264140102807 42.2506 0.406 2136 +2138 3 -15.766545382107934 -351.244775004638 42.1674 0.4045 2137 +2139 3 -15.91769070180045 -349.65954217439474 42.1518 0.403 2138 +2140 3 -16.306020257975927 -348.6989651329392 42.1862 0.4015 2139 +2141 3 -16.83226265229048 -347.89331194351996 42.271 0.4001 2140 +2142 3 -17.255258645146476 -346.98931389990554 42.3973 0.3986 2141 +2143 3 -17.18179612523428 -345.7170784904709 42.5074 0.3971 2142 +2144 3 -16.696079504964622 -344.2675740354112 42.541 0.3957 2143 +2145 3 -16.272296434471954 -342.85030706020393 42.4934 0.3942 2144 +2146 3 -16.2381719764683 -341.57813686270106 42.4074 0.3927 2145 +2147 3 -16.53011045321555 -340.50046033169826 42.3116 0.3912 2146 +2148 3 -16.97723624338324 -339.599865213282 42.1898 0.3898 2147 +2149 3 -17.452671429243903 -338.73552659366374 42.019 0.3883 2148 +2150 3 -17.77694509419399 -337.7165963438762 41.8071 0.3868 2149 +2151 3 -17.882754294729374 -336.50096611028 41.5719 0.3854 2150 +2152 3 -17.94222555050612 -335.2555535341039 41.3084 0.3839 2151 +2153 3 -18.096660787727394 -333.9995754530794 41.0052 0.3824 2152 +2154 3 -18.30967962274982 -332.3578892705309 40.6708 0.381 2153 +2155 3 -18.51272671831588 -330.7467788883779 40.3365 0.3795 2154 +2156 3 -18.67564403752857 -329.2191606391809 40.04 0.378 2155 +2157 3 -18.80215199488849 -327.7483814412797 39.8084 0.3765 2156 +2158 3 -18.923594732402968 -326.5211598565381 39.6491 0.3751 2157 +2159 3 -19.06196220651159 -325.33876058570155 39.5534 0.3736 2158 +2160 3 -19.232781034034126 -324.1864591255123 39.5046 0.3721 2159 +2161 3 -19.498142591081233 -323.1089346577853 39.4848 0.3707 2160 +2162 3 -19.943207103853858 -322.21288154053025 39.478 0.3692 2161 +2163 3 -20.475807743283486 -320.6389687663991 39.4758 0.3677 2162 +2164 3 -20.867891916758524 -318.8555776962905 39.4741 0.3662 2163 +2165 3 -21.069163379781234 -317.6732998599384 39.4716 0.3648 2164 +2166 3 -21.225602559505965 -316.4590017224381 39.4682 0.3633 2165 +2167 3 -21.500824915388016 -315.30228037686845 39.4638 0.3618 2166 +2168 3 -21.992395648432336 -314.42310456382353 39.4573 0.3604 2167 +2169 3 -22.645896580878087 -313.76946068652865 39.4481 0.3589 2168 +2170 3 -23.278907663528525 -312.91389756850174 39.4358 0.3574 2169 +2171 3 -23.659703648884673 -311.4950529937186 39.4178 0.3559 2170 +2172 3 -23.71673151143471 -310.16497118026524 39.3926 0.3545 2171 +2173 3 -23.637706655835437 -309.033926051094 39.3576 0.353 2172 +2174 3 -23.668370234876388 -307.7391876770385 39.3112 0.3515 2173 +2175 3 -23.997782458559264 -306.05628085725095 39.2476 0.3501 2174 +2176 3 -24.595879061411583 -304.80899986253655 39.1437 0.3486 2175 +2177 3 -25.21081843844594 -304.12774603019454 38.9922 0.3471 2176 +2178 3 -25.48259035091005 -303.0808054457881 38.8324 0.3456 2177 +2179 3 -25.151352787456027 -301.69497377455093 38.6711 0.3442 2178 +2180 3 -24.428700246305702 -300.2812631323089 38.507 0.3427 2179 +2181 3 -23.796467141583697 -299.91414593160374 38.3704 0.3412 2180 +2182 3 -23.394868756218706 -298.9839796173872 38.2718 0.3398 2181 +2183 3 -23.380316110475484 -297.7340988007608 38.2357 0.3383 2182 +2184 3 -23.98183330463556 -296.23112951677547 38.2346 0.3368 2183 +2185 3 -24.899692534726697 -295.2753679608209 38.22 0.3354 2184 +2186 3 -25.835046625914206 -294.80059100704517 38.1368 0.3339 2185 +2187 3 -26.53689569981813 -292.9257828453748 37.9579 0.3324 2186 +2188 3 -26.671652204619715 -291.71628712913645 37.7006 0.3309 2187 +2189 3 -26.269773398992683 -290.8419923994629 37.4506 0.3295 2188 +2190 3 -25.797909458569126 -290.4483423826847 37.2812 0.328 2189 +2191 3 -25.53174155654925 -289.2060983114346 37.1529 0.3265 2190 +2192 3 -25.685737343047276 -288.0605847278858 37.0443 0.3251 2191 +2193 3 -25.59700549448465 -286.76579217973205 36.869 0.3236 2192 +2194 3 -25.4492510255879 -285.80176385296477 36.4442 0.3221 2193 +2195 3 -25.477383694173714 -284.5583479377318 36.1564 0.3207 2194 +2196 3 -25.533666727991278 -283.33267233289206 36.017 0.3192 2195 +2197 3 -26.050306486836377 -282.6071486703867 34.5111 0.3192 2196 +2198 3 -26.918852186400734 -280.99276647274996 33.6336 0.2934 2197 +2199 3 -27.947442872034873 -281.0747506168077 33.3242 0.2804 2198 +2200 3 -28.999056842953742 -280.7155889566391 32.9916 0.2675 2199 +2201 3 -29.92550610480203 -279.32238075825126 32.5926 0.2546 2200 +2202 3 -30.755530414649762 -279.1621946581197 31.4149 0.2417 2201 +2203 3 -25.355523349572046 -282.85321300595217 36.0055 0.3192 2196 +2204 3 -24.816045863045527 -281.400348751652 36.1343 0.3037 2203 +2205 3 -24.573156009445526 -280.0160062878976 36.4115 0.296 2204 +2206 3 -25.012855148953168 -279.11656592964016 36.8264 0.2883 2205 +2207 3 -25.26608312244448 -279.07599771009615 35.3419 0.2883 2206 +2208 3 -26.05361445721173 -278.3809253325202 35.2307 0.2883 2207 +2209 3 -26.145689376846118 -277.1282776439213 35.1896 0.2883 2208 +2210 3 -25.772977231693886 -276.10540440506594 35.1436 0.2883 2209 +2211 3 -25.71577318312031 -274.84224471956054 35.035 0.2883 2210 +2212 3 -25.998049027582216 -273.7691595033296 34.8799 0.2883 2211 +2213 3 -26.433683238491696 -272.0374332527272 34.7396 0.2883 2212 +2214 3 -26.993325206091917 -270.3614806888612 34.6699 0.2883 2213 +2215 3 -27.486582559023276 -269.5785698057305 34.7362 0.2883 2214 +2216 3 -27.834225518783484 -268.6148014772465 34.8513 0.2883 2215 +2217 3 -27.81007280023625 -267.36930971319373 34.8594 0.2883 2216 +2218 3 -27.482332565912394 -266.01660075417965 34.7085 0.2883 2217 +2219 3 -28.086348992762957 -265.40272010893 34.496 0.2883 2218 +2220 3 -29.05747706226431 -264.6861988659899 34.2787 0.2883 2219 +2221 3 -29.324497756416953 -263.623465741685 34.0617 0.2883 2220 +2222 3 -28.814656563425384 -262.386869978068 33.8584 0.2883 2221 +2223 3 -28.670181134687848 -261.20610165365184 33.5966 0.2883 2222 +2224 3 -28.730489961015206 -259.95082457665063 33.346 0.2883 2223 +2225 3 -29.343557098931495 -259.05418014343445 33.0826 0.2883 2224 +2226 3 -29.937415273082973 -257.6673378463394 32.7482 0.2839 2225 +2227 3 -30.625038505060633 -256.7214880469279 32.2848 0.2817 2226 +2228 3 -31.410825419227848 -256.3698061649161 31.7178 0.2795 2227 +2229 3 -32.00005110423957 -254.6131176921955 31.0803 0.2773 2228 +2230 3 -32.69123049566694 -253.4290988971398 30.394 0.2751 2229 +2231 3 -33.51503379849048 -252.99026241388464 29.7352 0.2729 2230 +2232 3 -34.23595640361207 -250.923505645089 29.1102 0.2707 2231 +2233 3 -34.55842458390865 -249.78302540621428 28.5088 0.2685 2232 +2234 3 -34.686558097102136 -248.6287771361047 27.9197 0.2663 2233 +2235 3 -35.17816899584123 -247.89586907729012 27.2481 0.264 2234 +2236 3 -35.90842123686278 -246.97836801461523 26.503 0.2619 2235 +2237 3 -36.67871946617098 -246.36217582512063 25.6938 0.2596 2236 +2238 3 -37.334280180583924 -245.35121294122666 24.902 0.2574 2237 +2239 3 -37.60992258425841 -244.0019943608315 24.1492 0.2552 2238 +2240 3 -37.337215012875696 -243.10473492864315 23.3679 0.253 2239 +2241 3 -37.849132103428346 -241.7337328712393 22.5648 0.2508 2240 +2242 3 -38.611038758829324 -241.29731818286788 21.7913 0.2486 2241 +2243 3 -39.04369961770467 -240.08325971788994 21.0051 0.2464 2242 +2244 3 -39.14754280769746 -238.84976451639074 20.2295 0.2442 2243 +2245 3 -39.66358515259557 -237.16924841070158 19.4736 0.242 2244 +2246 3 -40.60387142052093 -236.71423898972665 18.748 0.2398 2245 +2247 3 -41.69575955409182 -236.20887606286618 18.1007 0.2376 2246 +2248 3 -42.535770247558524 -235.92912651297226 17.4926 0.2354 2247 +2249 3 -42.8227656325672 -234.70790837987448 16.88 0.2332 2248 +2250 3 -43.241730608323735 -233.3389889064353 15.68 0.231 2249 +2251 3 -28.076987471513878 -259.4965004915952 32.5279 0.2883 2224 +2252 3 -27.302563362447522 -258.1936737936983 30.9039 0.2734 2251 +2253 3 -26.632139903145028 -257.8997403051014 30.2319 0.266 2252 +2254 3 -26.018959529245652 -257.70053172956653 29.3373 0.2585 2253 +2255 3 -25.765330247848844 -256.5307361272905 28.373 0.2511 2254 +2256 3 -26.094581945642588 -255.5604993046408 27.5385 0.2437 2255 +2257 3 -26.624589115135755 -254.15374720220916 26.3662 0.2362 2256 +2258 3 -24.966957120739195 -278.94590412430506 37.4469 0.2883 2206 +2259 3 -25.023010311537693 -278.3294045351497 38.4409 0.2857 2258 +2260 3 -25.600702154752504 -277.9209481523994 39.6077 0.2844 2259 +2261 3 -26.293140932435517 -276.9197337908605 40.8856 0.2831 2260 +2262 3 -26.534258586172722 -275.4833789408459 42.1884 0.2818 2261 +2263 3 -26.380661962743066 -274.60735887161553 43.3454 0.2805 2262 +2264 3 -25.94382837602842 -274.0712200911288 44.3887 0.2792 2263 +2265 3 -25.24598473606409 -272.8783910409221 45.4507 0.2779 2264 +2266 3 -24.55722152368093 -272.1226109355459 46.6178 0.2767 2265 +2267 3 -23.93159480515521 -272.01720578521724 47.845 0.2754 2266 +2268 3 -23.139670144581366 -271.4159818395227 49.0386 0.2741 2267 +2269 3 -22.24316948515175 -270.225022647766 50.1634 0.2728 2268 +2270 3 -21.211693331274518 -270.1460331907803 51.1535 0.2715 2269 +2271 3 -20.160559343336256 -269.8196865277463 51.9585 0.2702 2270 +2272 3 -19.271055303416308 -268.8241670979705 52.6515 0.2689 2271 +2273 3 -18.653712674853487 -268.73155466696653 53.4344 0.2676 2272 +2274 3 -18.279131553923595 -267.93949965220133 54.3614 0.2663 2273 +2275 3 -17.854484789931924 -266.61733342109903 55.2824 0.265 2274 +2276 3 -17.32677930292563 -265.17864599730905 56.0986 0.2637 2275 +2277 3 -16.656373012819987 -264.18631480135116 56.8943 0.2624 2276 +2278 3 -15.783116664832647 -263.86692982189027 57.6551 0.2611 2277 +2279 3 -14.825478365054096 -263.01843447074344 58.3722 0.2598 2278 +2280 3 -13.947312662305727 -262.4820170521367 59.2122 0.2585 2279 +2281 3 -13.098666622059767 -262.7850942354987 60.2221 0.2573 2280 +2282 3 -12.197855089053647 -261.93970073484826 61.3427 0.256 2281 +2283 3 -11.161705814520545 -262.68125165122603 62.435 0.2547 2282 +2284 3 -10.10284488690796 -261.6863567261249 63.4754 0.2534 2283 +2285 3 -9.086751236036562 -260.69918792689776 64.5061 0.2521 2284 +2286 3 -8.049707056061195 -261.5268753450478 65.4996 0.2508 2285 +2287 3 -6.9741065452641 -260.6428786165005 66.402 0.2495 2286 +2288 3 -6.270212737749297 -261.0325240559978 67.3756 0.2482 2287 +2289 3 -6.602945625082846 -259.60927360170933 68.4704 0.2469 2288 +2290 3 -6.894267985627259 -258.0574088926524 69.6422 0.2456 2289 +2291 3 -7.024185619294208 -256.77740839148385 70.8506 0.2443 2290 +2292 3 -6.553371419790864 -256.70385363837437 72.0364 0.243 2291 +2293 3 -5.888768788472369 -255.82890256671374 73.1525 0.2417 2292 +2294 3 -5.223173285303808 -254.63004253377858 74.1821 0.2404 2293 +2295 3 -4.556026594795398 -254.05085112074494 75.1554 0.2391 2294 +2296 3 -3.6093723092541126 -253.0442429089037 75.915 0.2378 2295 +2297 3 -2.730905889301198 -252.54728417044578 76.5038 0.2366 2296 +2298 3 -2.1774256462188504 -251.1071018309857 76.9261 0.2353 2297 +2299 3 -1.6239454031365028 -250.49928606160097 77.2257 0.234 2298 +2300 3 -1.0094928043626084 -250.07013728250092 77.518 0.2327 2299 +2301 3 -0.3952777995269301 -248.65847770631387 77.8128 0.2314 2300 +2302 3 0.2205679857319751 -247.8264180547588 78.5375 0.2301 2301 +2303 2 -3.7250739768393726 -374.3939549015945 41.3538 0.1144 1064 +2304 2 -3.0371818033854634 -376.02886377502847 41.4677 0.1144 2303 +2305 2 -2.1805018747658256 -378.30881040098666 41.6058 0.1144 2304 +2306 2 -1.229142579946921 -378.4786556663619 41.7684 0.1144 2305 +2307 2 -0.38020885833772144 -381.0366390720629 41.9695 0.1144 2306 +2308 2 0.15954696524137724 -382.6470804959593 42.2153 0.1144 2307 +2309 2 0.2980201553817521 -384.38231828153243 42.4841 0.1144 2308 +2310 2 0.14585212536362135 -386.26306588117006 42.7426 0.1144 2309 +2311 2 -0.06602271785795377 -388.0178312770027 42.9839 0.1144 2310 +2312 2 -0.14245410352075982 -389.8192140616434 43.2121 0.1144 2311 +2313 2 -0.002973863189184911 -391.6772558337544 43.4258 0.1144 2312 +2314 2 0.2702839775781145 -393.48631034684297 43.6584 0.1144 2313 +2315 2 0.5122069603162487 -395.0171027088055 43.9748 0.1144 2314 +2316 2 0.6403300243303978 -396.6772026389938 44.3565 0.1144 2315 +2317 2 0.6671320659125044 -398.48345859965605 44.7261 0.1144 2316 +2318 2 0.6225089005007263 -400.3653174572456 45.0559 0.1144 2317 +2319 2 0.6367941138301436 -402.18256018795813 45.3452 0.1144 2318 +2320 2 1.0089489867336887 -403.59360132595526 45.5812 0.1144 2319 +2321 2 1.6630304928609672 -404.81238461974857 45.764 0.1144 2320 +2322 2 1.7266776178573053 -406.7144011312678 45.9287 0.1144 2321 +2323 2 1.5098768520939494 -408.3519659695405 46.1042 0.1144 2322 +2324 2 1.8144196743224175 -410.4069966422357 46.3036 0.1144 2323 +2325 2 2.201906435357584 -412.9524697717842 46.5458 0.1144 2324 +2326 2 2.4847055186094096 -415.04392791969366 46.7869 0.1144 2325 +2327 2 2.492739406983061 -416.9152884947264 46.9389 0.1144 2326 +2328 2 2.454367566527079 -418.73957237242644 47.0131 0.1144 2327 +2329 2 2.594278303830494 -420.70948563975026 47.0568 0.1144 2328 +2330 2 3.018915526289078 -422.1210534876557 47.1092 0.1144 2329 +2331 2 3.6570935243546216 -423.0852416376339 47.194 0.1144 2330 +2332 2 4.156246209358411 -424.760446337829 47.3155 0.1144 2331 +2333 2 4.271007124945333 -426.68192271487914 47.4743 0.1144 2332 +2334 2 4.134336733537651 -428.4295571616274 47.6655 0.1144 2333 +2335 2 3.78282941480305 -429.9943639173275 48.0138 0.1144 2334 +2336 2 3.4716801823818173 -431.95581329142294 48.4694 0.1144 2335 +2337 2 3.5959573827061675 -433.675769713499 48.9098 0.1144 2336 +2338 2 3.984485396731543 -435.2421898270096 49.317 0.1144 2337 +2339 2 4.3931106955412496 -437.0445936385347 49.7381 0.1144 2338 +2340 2 4.681923509810606 -438.69882065878534 50.0889 0.1144 2339 +2341 2 4.538769754325269 -440.63185808649484 50.3269 0.1144 2340 +2342 2 4.325400029049092 -442.4164040048602 50.47 0.1144 2341 +2343 2 4.76963219586073 -444.14786780682954 50.5462 0.1144 2342 +2344 2 5.305508574478008 -446.8472582974157 50.568 0.1144 2343 +2345 2 5.8218861494955085 -448.3176523235592 50.5445 0.1144 2344 +2346 2 5.9391530177903675 -450.1622080252171 50.4935 0.1144 2345 +2347 2 5.99119762290707 -452.01216674602824 50.4221 0.1144 2346 +2348 2 6.003257303790534 -453.8755451530903 50.3306 0.1144 2347 +2349 2 6.229016052436027 -455.6273028618366 50.1735 0.1144 2348 +2350 2 6.580166790505793 -457.1206628680827 49.9332 0.1144 2349 +2351 2 6.521758729318929 -458.9929499095179 49.6768 0.1144 2350 +2352 2 6.463288108650779 -460.86999824354024 49.4166 0.1144 2351 +2353 2 6.416057294961455 -462.73951874958095 49.1546 0.1144 2352 +2354 2 6.387144404351215 -464.59253577416433 48.883 0.1144 2353 +2355 2 6.422960720466136 -466.3840259936892 48.5859 0.1144 2354 +2356 2 6.463915595313793 -468.17134746417815 48.2563 0.1144 2355 +2357 2 6.545477629198956 -469.83967402083044 47.7977 0.1144 2356 +2358 2 6.1341044667996165 -471.82367155954074 47.269 0.1144 2357 +2359 2 5.531898725195688 -473.8367369211711 46.7158 0.1144 2358 +2360 2 5.567440837613525 -474.7475954107516 46.1429 0.1144 2359 +2361 2 5.721487238985677 -476.35801379763564 45.5076 0.1144 2360 +2362 2 6.1388802646384555 -477.69595645919867 44.9092 0.1144 2361 +2363 2 6.804194857727023 -479.04121603800905 44.3167 0.1144 2362 +2364 2 7.678571834454729 -480.4537634436602 43.745 0.1144 2363 +2365 2 8.520605873355635 -480.776694145437 43.2107 0.1144 2364 +2366 2 9.144606410635074 -481.4407456286054 42.6933 0.1144 2365 +2367 2 9.469092711776195 -482.48585331173615 42.2223 0.1144 2366 +2368 2 9.84607554081364 -483.77950855006327 41.771 0.1144 2367 +2369 2 10.193298452781399 -485.7497039950653 41.3784 0.1144 2368 +2370 2 10.049146600856318 -486.7475164489209 41.1281 0.1144 2369 +2371 2 9.668639867553559 -487.3531936944757 40.8845 0.1144 2370 +2372 2 9.086523952410307 -488.7601914896331 40.5426 0.1144 2371 +2373 2 8.481186256501225 -489.74644687476405 39.9014 0.1144 2372 +2374 2 8.1762503794439 -490.5957645811888 40.4978 0.1144 2373 +2375 2 7.56463107827863 -491.977417414081 41.4694 0.1144 2374 +2376 2 6.779191743031689 -492.2898997029733 41.8664 0.1144 2375 +2377 2 6.011312527917845 -492.9512890588568 42.2758 0.1144 2376 +2378 2 5.5177085776795565 -494.42141873287676 42.7025 0.1144 2377 +2379 2 5.117948384339172 -495.6709278632328 43.141 0.1144 2378 +2380 2 4.483866638413197 -495.61920790273183 43.5392 0.1144 2379 +2381 2 3.6890804980694867 -496.97401646073973 43.8752 0.1144 2380 +2382 2 2.8820616788969744 -498.34451890175916 44.1997 0.1144 2381 +2383 2 2.1049111923812163 -499.780320550612 44.5483 0.1144 2382 +2384 2 1.4122681068459144 -499.86750112894794 44.9137 0.1144 2383 +2385 2 0.7736283758687534 -501.04172274280035 45.2978 0.1144 2384 +2386 2 0.0698028182463375 -502.32872002935983 45.7358 0.1144 2385 +2387 2 -0.6017735729739044 -502.27026028731035 46.2269 0.1144 2386 +2388 2 -1.104454357226338 -503.5833722941378 46.7751 0.1144 2387 +2389 2 -1.3347361361833805 -504.9829032701705 47.4085 0.1144 2388 +2390 2 -1.1947785131676838 -506.163894181162 48.12 0.1144 2389 +2391 2 -0.7565627769289449 -507.03090343541305 48.9171 0.1144 2390 +2392 2 -0.4670995067678234 -508.4314035314708 49.8711 0.1144 2391 +2393 2 -0.8435459722771341 -509.11722295913756 50.932 0.1144 2392 +2394 2 -1.6723179499991119 -510.33651009136116 51.9487 0.1144 2393 +2395 2 -2.679597552100198 -511.42893138193574 52.8396 0.1144 2394 +2396 2 -3.6755252024735228 -511.5984283665483 53.6323 0.1144 2395 +2397 2 -4.542855006445123 -512.4298921452746 54.3922 0.1144 2396 +2398 2 -5.307664864366259 -513.2067579830065 55.1614 0.1144 2397 +2399 2 -6.025978951195071 -513.1861964255846 55.9992 0.1144 2398 +2400 2 -6.639413156586741 -514.4414904273518 56.9218 0.1144 2399 +2401 2 -7.161732507564132 -515.6528929446 57.8343 0.1144 2400 +2402 2 -7.802913598175806 -516.9704983842491 58.6261 0.1144 2401 +2403 2 -8.63751265807791 -517.7700955026397 59.2427 0.1144 2402 +2404 2 -9.496295121021419 -518.257739224722 59.6963 0.1144 2403 +2405 2 -10.264120730405494 -519.6760788703218 60.0342 0.1144 2404 +2406 2 -10.91639528044798 -519.5038411722088 60.328 0.1144 2405 +2407 2 -11.436049182434722 -520.8448088426271 60.6595 0.1144 2406 +2408 2 -11.88310105629548 -522.3407059586434 61.0753 0.1144 2407 +2409 2 -12.318598791416747 -523.7545722210571 61.609 0.1144 2408 +2410 2 -12.752394232881976 -524.9790625877807 62.2776 0.1144 2409 +2411 2 -13.213237722535382 -526.3261497243092 63.077 0.1144 2410 +2412 2 -13.714764079442169 -527.2718117742569 63.9881 0.1144 2411 +2413 2 -14.185460909606867 -527.6511124365943 65.0073 0.1144 2412 +2414 2 -14.636427032644583 -528.8610048725843 66.1794 0.1144 2413 +2415 2 -15.144877601816596 -529.8794704601877 67.4878 0.1144 2414 +2416 2 -15.784191249709615 -530.163161648217 68.8069 0.1144 2415 +2417 2 -16.489460044906153 -530.4569734019922 70.0448 0.1144 2416 +2418 2 -17.278237678822023 -531.9093500731562 71.0713 0.1144 2417 +2419 2 -18.00550553991519 -532.0373630482288 71.8679 0.1144 2418 +2420 2 -18.484263938457374 -533.473415363721 72.4842 0.1144 2419 +2421 2 -18.776421932299748 -534.8916996228728 73.1102 0.1144 2420 +2422 2 -18.93626525751168 -535.9667886550691 73.9035 0.1144 2421 +2423 2 -18.181351492458504 -536.2766423927444 74.7158 0.1144 2422 +2424 2 -17.394163603255997 -537.93285580867 75.5426 0.1144 2423 +2425 2 -16.472433881954487 -538.1838282280656 76.2219 0.1144 2424 +2426 2 -15.535381226272754 -540.0450040116917 76.7374 0.1144 2425 +2427 2 -14.596165597626353 -540.4165188309219 77.1156 0.1144 2426 +2428 2 -13.656998350120112 -541.6414248833694 77.4088 0.1144 2427 +2429 2 -12.721590653202789 -542.2703250256477 77.6894 0.1144 2428 +2430 2 -11.785650763744066 -542.8146632270073 78.0018 0.1144 2429 +2431 2 -10.937650015132647 -543.1785724682627 78.5252 0.1144 2430 +2432 2 -10.119967829307313 -545.1469892242102 79.2375 0.1144 2431 +2433 2 -9.208251080394504 -544.9822226077712 80.108 0.1144 2432 +2434 2 -8.266631523541193 -545.9122616703763 81.0779 0.1144 2433 +2435 2 -7.323541712153784 -545.6446146404999 82.0756 0.1144 2434 +2436 2 -6.211685607744343 -545.4786895580944 82.8904 0.1144 2435 +2437 2 -5.076842654583139 -546.6160423465764 83.4411 0.1144 2436 +2438 2 -3.97116440064746 -546.5184288060051 83.7687 0.1144 2437 +2439 2 -2.879893277291025 -547.4905941047266 83.921 0.1144 2438 +2440 2 -1.7890042697662523 -547.5063286534203 83.9468 0.1144 2439 +2441 2 -0.6960398065053468 -547.7350400507275 83.8891 0.1144 2440 +2442 2 0.39542977470098606 -548.9303195835947 83.7847 0.1144 2441 +2443 2 1.4600249823430147 -549.6063560168534 83.6438 0.1144 2442 +2444 2 2.513187441046341 -550.0231371279815 83.4663 0.1144 2443 +2445 2 3.516966060117646 -550.2343789427557 83.1695 0.1144 2444 +2446 2 4.439047579319244 -550.943169527255 82.7109 0.1144 2445 +2447 2 5.359421580275132 -551.855435865794 82.1425 0.1144 2446 +2448 2 6.327593466939234 -552.2907535461641 81.6592 0.1144 2447 +2449 2 7.260775631410553 -554.0140494905442 81.2602 0.1144 2448 +2450 2 8.120088166054963 -554.3341263823754 80.9208 0.1144 2449 +2451 2 8.73519954776419 -555.179303166557 80.5484 0.1144 2450 +2452 2 9.62282773229773 -556.4780503210313 80.1696 0.1144 2451 +2453 2 10.59422427745389 -557.1065585709002 79.7922 0.1144 2452 +2454 2 10.316397377043387 -557.7705187823833 78.9536 0.1144 2453 +2455 2 9.687884686822024 -558.8032467749767 77.9971 0.1144 2454 +2456 2 9.11169082941096 -559.2662327068845 77.5132 0.1144 2455 +2457 2 8.788194248377657 -560.3987169762124 76.9563 0.1144 2456 +2458 2 8.67081002437866 -561.6850846004536 76.4159 0.1144 2457 +2459 2 8.836640369878218 -563.0640339217204 75.9394 0.1144 2458 +2460 2 9.60692245959602 -564.264751430552 75.3362 0.1144 2459 +2461 2 10.529005474225421 -564.8490969039691 74.7256 0.1144 2460 +2462 2 11.466367237078195 -565.5529768141332 74.2193 0.1144 2461 +2463 2 12.461468307163912 -566.8647255703647 73.8304 0.1144 2462 +2464 2 13.36489577915529 -567.13792390035 73.5423 0.1144 2463 +2465 2 14.018382533259889 -568.0411241608962 73.3373 0.1144 2464 +2466 2 14.550465158489217 -569.8930230410956 73.2038 0.1144 2465 +2467 2 14.943395856266413 -571.5394926025297 73.0358 0.1144 2466 +2468 2 15.11854904238605 -571.4536223182225 72.6429 0.1144 2467 +2469 2 15.93882316508882 -571.0537014058784 71.113 0.1144 2468 +2470 2 17.078145404229574 -571.4402277343538 70.588 0.1144 2469 +2471 2 18.21752124910008 -571.7271164320347 70.0902 0.1144 2470 +2472 2 19.308383202033646 -572.1288294113069 69.5472 0.1144 2471 +2473 2 20.199280330475034 -571.7348201947451 68.0742 0.1144 2472 +2474 2 15.002338648663518 -572.7961943678569 72.7964 0.1144 2467 +2475 2 14.807804860666714 -574.0623757313122 72.6188 0.1144 2474 +2476 2 14.062617858070332 -573.5431462176068 72.4531 0.1144 2475 +2477 2 13.028222423710197 -574.4422415436334 72.2952 0.1144 2476 +2478 2 11.96091076164425 -575.028989387815 72.1092 0.1144 2477 +2479 2 10.957874812833744 -574.9191419347092 71.9359 0.1144 2478 +2480 2 10.010161366799252 -576.2808488353087 71.7909 0.1144 2479 +2481 2 9.080937149139032 -576.5364507637739 71.6559 0.1144 2480 +2482 2 8.418969784474328 -577.2806597987516 71.505 0.1144 2481 +2483 2 7.824226100456983 -578.7529509488239 71.335 0.1144 2482 +2484 2 7.364759093913193 -580.2695349547225 71.1712 0.1144 2483 +2485 2 7.148601461312737 -581.7126496803527 70.9948 0.1144 2484 +2486 2 7.182549733292859 -583.0033045328087 70.7728 0.1144 2485 +2487 2 7.307557584008492 -584.2342231908523 70.5312 0.1144 2486 +2488 2 7.609724797081157 -585.3231933582713 70.3357 0.1144 2487 +2489 2 7.9185112726000995 -586.4108992917996 70.1893 0.1144 2488 +2490 2 8.153284295778434 -587.5680392752965 70.0806 0.1144 2489 +2491 2 8.355543406061514 -588.7994501522226 69.998 0.1144 2490 +2492 2 8.481669247589764 -590.2156881658377 69.9135 0.1144 2491 +2493 2 8.592984944348487 -591.6299203457446 69.8177 0.1144 2492 +2494 2 8.579057232964814 -592.9669494985402 69.7281 0.1144 2493 +2495 2 8.483209336341048 -594.2478099100522 69.6632 0.1144 2494 +2496 2 8.368055869377699 -595.5096568143017 69.6273 0.1144 2495 +2497 2 8.199359396938206 -596.8452255018542 69.6083 0.1144 2496 +2498 2 7.80660953562726 -598.3200683909516 69.5419 0.1144 2497 +2499 2 7.41788173766426 -599.8260916173449 69.5486 0.1144 2498 +2500 2 7.10287096778417 -601.2389321938272 69.7292 0.1144 2499 +2501 2 6.855989233173062 -602.5351449064849 69.9482 0.1144 2500 +2502 2 6.616819794073649 -603.6851034182596 70.1789 0.1144 2501 +2503 2 6.456748760317794 -604.6936467095762 70.453 0.1144 2502 +2504 2 6.670801662491527 -606.1212607088632 70.6936 0.1144 2503 +2505 2 7.072472002914125 -607.2457780429952 70.6485 0.1144 2504 +2506 2 7.476922927932122 -608.2334682944629 70.6423 0.1144 2505 +2507 2 7.948234354875154 -609.1114995835313 70.7748 0.1144 2506 +2508 2 8.295240435668617 -610.2160561633001 71.0808 0.1144 2507 +2509 2 8.561443292428237 -611.7533105436431 71.428 0.1144 2508 +2510 2 8.799979886657567 -613.2915576722761 71.792 0.1144 2509 +2511 2 8.853074698515996 -614.709916631784 72.3668 0.1144 2510 +2512 2 14.754594287790944 -574.3734614440767 72.6387 0.1144 2475 +2513 2 14.561603762988945 -575.5071357765917 72.2422 0.1144 2512 +2514 2 14.718392779364471 -576.6273006081128 72.0922 0.1144 2513 +2515 2 15.808019372146738 -576.1935238930948 71.7976 0.1144 2514 +2516 2 16.86365194973653 -576.9142470017684 71.4067 0.1144 2515 +2517 2 17.917412754029655 -577.3733678785786 70.9629 0.1144 2516 +2518 2 18.97213624783599 -578.0980889094934 70.5043 0.1144 2517 +2519 2 20.013033650566015 -578.7789848797674 70.2265 0.1144 2518 +2520 2 20.992755480986347 -578.7296384661365 70.3111 0.1144 2519 +2521 2 11.012606079232377 -556.9656986808684 79.5071 0.1144 2453 +2522 2 12.118864906849609 -558.0745401771007 79.308 0.1144 2521 +2523 2 13.224543160785345 -558.1303366981183 79.1874 0.1144 2522 +2524 2 14.330133897492537 -558.1676048470077 79.1344 0.1144 2523 +2525 2 15.432111139858456 -559.3151902303457 79.1232 0.1144 2524 +2526 2 16.51832226795907 -559.5213685680485 79.1333 0.1144 2525 +2527 2 17.571586422232038 -560.4255156222052 79.1476 0.1144 2526 +2528 2 18.6198531407305 -561.4786913876113 79.1669 0.1144 2527 +2529 2 19.71996756355128 -561.9468451268353 79.1921 0.1144 2528 +2530 2 20.84791755402172 -561.6759542762046 79.2282 0.1144 2529 +2531 2 21.975799760421218 -562.3640861891557 79.2887 0.1144 2530 +2532 2 23.101354738805078 -562.3587708045156 79.3736 0.1144 2531 +2533 2 24.23486706496258 -563.1874681410234 79.4553 0.1144 2532 +2534 2 25.374779297357797 -562.5689197638931 79.5138 0.1144 2533 +2535 2 26.51548473962559 -562.8051387069236 79.5477 0.1144 2534 +2536 2 27.655139975151677 -563.2132030721443 79.5606 0.1144 2535 +2537 2 28.79637760996087 -564.2458640739562 79.5567 0.1144 2536 +2538 2 29.938835960758865 -563.7623566479932 79.5452 0.1144 2537 +2539 2 31.079520038846532 -562.9362042072086 79.5343 0.1144 2538 +2540 2 32.21527147437506 -563.9487394558496 79.527 0.1144 2539 +2541 2 33.3479351793864 -563.1000978691035 79.5234 0.1144 2540 +2542 2 34.48008087019753 -564.0251911532417 79.522 0.1144 2541 +2543 2 35.61695029653864 -563.1491729990106 79.522 0.1144 2542 +2544 2 36.76019513719168 -562.9503468190851 79.5225 0.1144 2543 +2545 2 37.903601999161694 -563.5429233611806 79.5236 0.1144 2544 +2546 2 39.03912199698444 -564.1303899023117 79.525 0.1144 2545 +2547 2 40.126503226199645 -563.9635327859464 79.527 0.1144 2546 +2548 2 41.17410185378805 -564.4132347318141 79.5295 0.1144 2547 +2549 2 42.245155797987245 -565.5847779282315 79.5334 0.1144 2548 +2550 2 43.35535663004763 -565.6769430793033 79.541 0.1144 2549 +2551 2 44.48132390660005 -566.3608655991054 79.5497 0.1144 2550 +2552 2 45.608679145047766 -566.6639912959904 79.5536 0.1144 2551 +2553 2 46.73509109691312 -567.2479493298597 79.5393 0.1144 2552 +2554 2 47.8589631845718 -567.3029978250863 79.4926 0.1144 2553 +2555 2 48.98112775398478 -567.9811129792794 79.4105 0.1144 2554 +2556 2 50.10269757137506 -567.7291752750303 79.298 0.1144 2555 +2557 2 51.21802651298889 -569.001432950923 79.1596 0.1144 2556 +2558 2 52.31915200646301 -568.8309154085083 78.9986 0.1144 2557 +2559 2 53.41078584272027 -569.2687989659217 78.8192 0.1144 2558 +2560 2 54.500044069821804 -570.1016529263608 78.6232 0.1144 2559 +2561 2 55.58817535235919 -570.2187763533412 78.4104 0.1144 2560 +2562 2 56.65616619356176 -571.3931123358834 78.1752 0.1144 2561 +2563 2 57.67050757495032 -571.4029131343035 77.908 0.1144 2562 +2564 2 58.6530865921937 -571.7500863177117 77.6054 0.1144 2563 +2565 2 59.67119900295699 -572.7561377263049 77.2425 0.1144 2564 +2566 2 60.69180066305281 -573.6792435168184 76.8844 0.1144 2565 +2567 2 61.66844418252895 -574.605072968947 76.5906 0.1144 2566 +2568 2 62.63772883541603 -575.0883899843924 76.3526 0.1144 2567 +2569 2 63.6101287016016 -575.436969604429 76.0908 0.1144 2568 +2570 2 64.56714559896 -576.2295703849777 75.7462 0.1144 2569 +2571 2 65.54295005245766 -577.4512914656774 75.3662 0.1144 2570 +2572 2 66.53445060241567 -578.1072401509332 74.9944 0.1144 2571 +2573 2 67.51346823561968 -578.9328489329529 74.6001 0.1144 2572 +2574 2 68.55236692043599 -579.0440744271007 74.2241 0.1144 2573 +2575 2 69.66418808374033 -579.4039612725994 73.9488 0.1144 2574 +2576 2 70.80156045192882 -580.4996568568105 73.75 0.1144 2575 +2577 2 71.93744316265239 -580.099613089756 73.5627 0.1144 2576 +2578 2 73.04375260514377 -581.5342206239632 73.3309 0.1144 2577 +2579 2 74.13124700871438 -581.1574457826138 73.0492 0.1144 2578 +2580 2 75.19935624886205 -580.8731143301748 72.7314 0.1144 2579 +2581 2 76.21315498852985 -582.6599130655283 72.4013 0.1144 2580 +2582 2 77.2014137107989 -582.7877783437314 72.0857 0.1144 2581 +2583 2 78.17944519217039 -583.7081779162667 71.8976 0.1144 2582 +2584 2 78.99179232266226 -584.6458335310595 71.8141 0.1144 2583 +2585 2 79.71293801315429 -585.5188780777653 71.7875 0.1144 2584 +2586 2 80.39278382617826 -586.5075128171322 71.7959 0.1144 2585 +2587 2 81.00302036604128 -588.5073864236833 71.8222 0.1144 2586 +2588 2 81.50071730507878 -589.5907744213623 71.8539 0.1144 2587 +2589 2 81.86497589426212 -590.5974473537976 71.881 0.1144 2588 +2590 2 82.22923448344545 -592.075156774568 71.9121 0.1144 2589 +2591 2 82.65382332476396 -593.4886444304067 71.9533 0.1144 2590 +2592 2 83.09810387271574 -594.4057801995118 72.0065 0.1144 2591 +2593 2 83.6021146961903 -595.250785617876 72.0958 0.1144 2592 +2594 2 84.14119347510788 -596.7823113701863 72.2285 0.1144 2593 +2595 2 84.81641874359937 -597.6387634088128 72.3814 0.1144 2594 +2596 2 85.6151415042053 -599.0103409717981 72.5323 0.1144 2595 +2597 2 86.50925454824431 -600.1895793293503 72.7126 0.1144 2596 +2598 2 87.4669068291416 -601.1237264306649 72.9551 0.1144 2597 +2599 2 88.40269141730093 -601.2670106221317 73.1909 0.1144 2598 +2600 2 89.3082960405981 -602.1785622299224 73.3852 0.1144 2599 +2601 2 90.24809224292603 -603.3328274518087 73.5454 0.1144 2600 +2602 2 91.2365167156739 -604.2330550666726 73.6856 0.1144 2601 +2603 2 92.23718161687452 -605.3904805582207 73.8186 0.1144 2602 +2604 2 93.23837871061656 -605.3842890270028 73.9614 0.1144 2603 +2605 2 94.23957580435857 -605.703685418937 74.137 0.1144 2604 +2606 2 95.2234944023571 -607.2078629169522 74.4173 0.1144 2605 +2607 2 96.22404939254275 -607.1545237613859 74.8199 0.1144 2606 +2608 2 97.27032351172883 -607.5798763970322 75.343 0.1144 2607 +2609 2 98.32510853541001 -608.3711981229669 75.8892 0.1144 2608 +2610 2 99.37195561424842 -609.1368364558743 76.4156 0.1144 2609 +2611 2 100.36857904917026 -610.0121020044056 76.9096 0.1144 2610 +2612 2 101.3502043306519 -610.0080563506642 77.3556 0.1144 2611 +2613 2 102.34938852813903 -610.8024542780772 77.6919 0.1144 2612 +2614 2 103.33123316582922 -612.1004450662733 77.9279 0.1144 2613 +2615 2 104.05885699580921 -613.2502241316815 78.1124 0.1144 2614 +2616 2 104.71182573571355 -614.2987876948405 78.2667 0.1144 2615 +2617 2 105.36325121242308 -615.6628672395068 78.4025 0.1144 2616 +2618 2 106.01510718610447 -616.3205406059055 78.5302 0.1144 2617 +2619 2 106.61737965817635 -617.6338116074394 78.6848 0.1144 2618 +2620 2 107.33815741117778 -618.3325127061727 78.8427 0.1144 2619 +2621 2 108.21576324138087 -619.934208375217 78.9678 0.1144 2620 +2622 2 109.11972290591365 -620.7045836099214 79.0605 0.1144 2621 +2623 2 110.02359505321796 -620.9313665157338 79.1288 0.1144 2622 +2624 2 110.92755471775075 -621.2356584528707 79.1818 0.1144 2623 +2625 2 111.83305764547835 -623.2490710879302 79.2285 0.1144 2624 +2626 2 112.77778872409951 -623.4365819535014 79.2784 0.1144 2625 +2627 2 113.75755790605353 -625.3060679125254 79.3467 0.1144 2626 +2628 2 114.74275502075379 -625.3409581295585 79.4528 0.1144 2627 +2629 2 115.72645725339949 -625.377459908321 79.6118 0.1144 2628 +2630 2 116.71174188532828 -627.2672695462896 79.8328 0.1144 2629 +2631 2 117.70843683348286 -627.4000674971905 80.2228 0.1144 2630 +2632 2 118.50877167225616 -628.5271560963422 80.9304 0.1144 2631 +2633 2 119.34873124739622 -628.5213757250845 81.8454 0.1144 2632 +2634 2 120.46758826426212 -627.8387180568948 82.6927 0.1144 2633 +2635 2 121.58596939387178 -628.3965835048735 83.4459 0.1144 2634 +2636 2 122.66461004879866 -629.0115811772787 84.0963 0.1144 2635 +2637 2 122.93665562387619 -629.7936387559448 84.5449 0.1144 2636 +2638 2 123.6999998264402 -630.3271872055413 84.9058 0.1144 2637 +2639 2 123.80885552456037 -631.216400225638 86.8235 0.1144 2638 +2640 2 124.54868078379472 -631.8009298280275 89.5121 0.1144 2639 +2641 2 125.4660558735531 -632.7835739958666 90.6413 0.1144 2640 +2642 2 126.22606696440671 -632.7064999293775 92.0231 0.1144 2641 +2643 2 126.83492535250645 -633.3271431585891 93.6233 0.1144 2642 +2644 2 127.33072888546826 -633.1393585637339 95.3123 0.1144 2643 +2645 2 127.57595478394536 -632.332189478703 97.0066 0.1144 2644 +2646 2 127.976188067023 -631.4105980289735 98.6219 0.1144 2645 +2647 2 128.50660961789413 -629.9851534015299 100.0084 0.1144 2646 +2648 2 128.90849364811075 -628.5429019852621 101.1534 0.1144 2647 +2649 2 129.07170395890063 -627.4513761390533 102.2725 0.1144 2648 +2650 2 129.57449838332985 -626.376942981399 103.2399 0.1144 2649 +2651 2 129.96416008593349 -625.691251470852 105.4648 0.1144 2650 +2652 2 124.39517076994724 -630.4998811186626 85.1402 0.1144 2638 +2653 2 125.4382363702316 -632.0246829384533 85.3098 0.1144 2652 +2654 2 126.53316012401768 -631.7813165588094 85.4428 0.1144 2653 +2655 2 127.63206530963552 -633.0328168507447 85.566 0.1144 2654 +2656 2 128.7026443961849 -633.0008439954108 85.706 0.1144 2655 +2657 2 129.71380800479363 -633.5852669050557 85.8715 0.1144 2656 +2658 2 130.7091842705517 -634.8351384861472 86.1036 0.1144 2657 +2659 2 131.6615374668271 -634.8664316198737 86.476 0.1144 2658 +2660 2 132.61919450649265 -636.654702831931 86.9996 0.1144 2659 +2661 2 133.71729080846885 -636.2948036873831 87.563 0.1144 2660 +2662 2 134.80945413771212 -636.5067014579834 88.1731 0.1144 2661 +2663 2 135.84783467273346 -637.4651672124427 88.886 0.1144 2662 +2664 2 136.84822344661887 -637.1835987362039 89.6994 0.1144 2663 +2665 2 137.85664962718272 -637.4944749944731 90.5668 0.1144 2664 +2666 2 138.88481709964762 -638.7213194459741 91.4441 0.1144 2665 +2667 2 139.92203798273366 -638.8118037378333 92.3132 0.1144 2666 +2668 2 140.9596502267031 -639.8374940293237 93.1577 0.1144 2667 +2669 2 141.99633891724773 -639.8757043630848 93.963 0.1144 2668 +2670 2 143.03390278007709 -639.865938463761 94.7254 0.1144 2669 +2671 2 144.07063985176183 -641.4513632999729 95.4442 0.1144 2670 +2672 2 145.1087359071326 -641.1898532901312 96.1156 0.1144 2671 +2673 2 146.14547297881737 -642.2094797230479 96.7327 0.1144 2672 +2674 2 147.17369675656744 -642.5712115253666 97.2474 0.1144 2673 +2675 2 148.1821026401888 -642.5466519216209 97.5856 0.1144 2674 +2676 2 149.18329973393085 -644.3743432553941 97.7749 0.1144 2675 +2677 2 150.18286604724958 -644.5326017252122 97.8522 0.1144 2676 +2678 2 151.1840631409916 -644.9193894026298 97.853 0.1144 2677 +2679 2 152.18526023473368 -645.7786843254781 97.809 0.1144 2678 +2680 2 153.1854946389625 -646.4088359617507 97.75 0.1144 2679 +2681 2 154.18669173270453 -647.7864454999511 97.6951 0.1144 2680 +2682 2 155.18630642716346 -648.4672279396615 97.6486 0.1144 2681 +2683 2 156.1875035209055 -648.593892043601 97.6139 0.1144 2682 +2684 2 157.18870061464753 -649.1928306969999 97.5957 0.1144 2683 +2685 2 158.1889350188764 -650.3432975343185 97.6016 0.1144 2684 +2686 2 159.19013211261847 -651.2139809673688 97.6408 0.1144 2685 +2687 2 160.19074863267895 -652.2765350296913 97.7206 0.1144 2686 +2688 2 161.2014426082275 -652.2430660071651 97.8561 0.1144 2687 +2689 2 162.24419088589548 -652.4799247730333 98.1016 0.1144 2688 +2690 2 163.31422014488516 -653.4261726238068 98.5071 0.1144 2689 +2691 2 164.38266700459184 -653.9285972553504 99.022 0.1144 2690 +2692 2 165.46166468200843 -654.3129247865467 99.5938 0.1144 2691 +2693 2 166.5580435803446 -653.6910990938611 100.1697 0.1144 2692 +2694 2 167.64063655329932 -654.2910088160877 100.6925 0.1144 2693 +2695 2 168.66289362133887 -654.9678340490864 101.0506 0.1144 2694 +2696 2 169.6867814698017 -655.3494245644995 101.2645 0.1144 2695 +2697 2 170.7389707898124 -655.725597930792 101.3673 0.1144 2696 +2698 2 171.86203548925732 -656.117551223311 101.3891 0.1144 2697 +2699 2 172.98466969173052 -657.3267146003233 101.3555 0.1144 2698 +2700 2 174.10831496485693 -657.3149980800927 101.2869 0.1144 2699 +2701 2 175.2001614373052 -657.178422820383 101.1769 0.1144 2700 +2702 2 176.28591711068685 -658.6809575204868 101.0254 0.1144 2701 +2703 2 177.3722533577501 -658.4584124081182 100.8392 0.1144 2702 +2704 2 178.40095871316743 -659.779651692211 100.604 0.1144 2703 +2705 2 179.4077233671863 -660.1427174224145 100.3265 0.1144 2704 +2706 2 180.41553822794666 -660.224158409057 100.0233 0.1144 2705 +2707 2 181.4223028819654 -661.8858622034444 99.7066 0.1144 2706 +2708 2 182.26830790351883 -662.159512862406 99.4129 0.1144 2707 +2709 2 182.95123099788054 -662.7641351094373 99.1687 0.1144 2708 +2710 2 183.63315226664082 -663.7497952597062 98.9629 0.1144 2709 +2711 2 184.43492871067036 -665.3498279792377 98.7305 0.1144 2710 +2712 2 185.45335125821114 -665.6199030357752 98.3844 0.1144 2711 +2713 2 185.66528024824615 -665.4645712913958 98.0944 0.1144 2712 +2714 2 186.80050994041255 -666.1099230318175 97.8228 0.1144 2713 +2715 2 187.93627182512037 -665.3496044758406 97.5688 0.1144 2714 +2716 2 189.07208209096834 -664.8077363451063 97.3361 0.1144 2715 +2717 2 190.2073993003632 -665.8173545668544 97.127 0.1144 2716 +2718 2 191.34316118507093 -665.5448461460472 96.9349 0.1144 2717 +2719 2 192.47843925837748 -665.6286087271618 96.738 0.1144 2718 +2720 2 193.61420114308532 -665.1628061834564 96.5412 0.1144 2719 +2721 2 194.74951835248015 -665.3080923772311 96.3444 0.1144 2720 +2722 2 195.88532861832812 -665.3392118170286 96.1472 0.1144 2721 +2723 2 197.02109050303588 -664.5062166894835 95.9498 0.1144 2722 +2724 2 198.15632019520226 -665.0239300163391 95.7522 0.1144 2723 +2725 2 199.2922179782787 -664.7108060398739 95.5539 0.1144 2724 +2726 2 200.4274476704451 -665.6927091632557 95.3554 0.1144 2725 +2727 2 201.56320955515292 -665.2061103229397 95.156 0.1144 2726 +2728 2 202.69843924731924 -664.4053338569353 94.955 0.1144 2727 +2729 2 203.83433703039563 -665.0388478819596 94.7512 0.1144 2728 +2730 2 204.97009891510348 -664.5793805245496 94.5428 0.1144 2729 +2731 2 205.37947378777938 -663.4234810664386 93.387 0.1144 2730 +2732 2 205.37886552045936 -662.0676075456983 92.8766 0.1144 2731 +2733 2 205.23929673329283 -660.5484408505561 92.195 0.1144 2732 +2734 2 205.09981546335476 -659.4783692529825 91.4082 0.1144 2733 +2735 2 204.96024667618823 -658.3634414853867 90.5761 0.1144 2734 +2736 2 204.8207654062503 -657.128852865646 89.7506 0.1144 2735 +2737 2 204.68215930859694 -655.8914216481126 88.0743 0.1144 2736 +2738 2 205.14541785170192 -664.8790835910036 94.3502 0.1144 2730 +2739 2 206.23221850723567 -665.9755754778081 94.1324 0.1144 2738 +2740 2 207.31893164554083 -665.7773075260467 93.8907 0.1144 2739 +2741 2 208.405200108533 -665.924420236694 93.6264 0.1144 2740 +2742 2 209.49191324683818 -667.0229553436033 93.3405 0.1144 2741 +2743 2 210.53535051377497 -666.8905294025782 93.0166 0.1144 2742 +2744 2 211.56411842867365 -667.4375806434699 92.657 0.1144 2743 +2745 2 212.59192365405906 -668.4618499290932 92.2692 0.1144 2744 +2746 2 213.62064318781762 -669.236805704574 91.8705 0.1144 2745 +2747 2 214.64949861994478 -670.0596340527051 91.4763 0.1144 2746 +2748 2 215.67826653484337 -670.2738471862463 91.0994 0.1144 2747 +2749 2 216.70770254065206 -670.668209877899 90.7511 0.1144 2748 +2750 2 217.73545938489752 -671.5396180834039 90.0732 0.1144 2749 +2751 2 185.81586632080604 -666.4074214067628 99.7125 0.1144 2712 +2752 2 186.18353934506467 -668.0619286536911 102.4598 0.1144 2751 +2753 2 186.5512998865517 -669.1132697481671 103.6302 0.1144 2752 +2754 2 186.9183923371287 -669.7890425593782 105.0137 0.1144 2753 +2755 2 186.84264215347952 -670.6712920635308 106.5442 0.1144 2754 +2756 2 186.41453356524775 -671.7213456001415 108.1522 0.1144 2755 +2757 2 185.986424977016 -672.4815761989752 109.7788 0.1144 2756 +2758 2 185.13748816529224 -671.7972744806261 111.2364 0.1144 2757 +2759 2 184.09988786593001 -671.6466407421738 112.4827 0.1144 2758 +2760 2 183.06166785679778 -670.4929611241566 113.5372 0.1144 2759 +2761 2 182.02406755743544 -670.6236439491626 114.4217 0.1144 2760 +2762 2 180.9864672580732 -670.9583702358128 115.9693 0.1144 2761 +2763 2 123.26349992315134 -628.6089386091113 84.7084 0.1144 2636 +2764 2 124.22946500362187 -627.3075718464951 84.7851 0.1144 2763 +2765 2 125.19648029083407 -627.6006366424535 84.8156 0.1144 2764 +2766 2 126.1624453713046 -626.5657837263572 84.8602 0.1144 2765 +2767 2 127.16181301591644 -626.1088046554991 84.9212 0.1144 2766 +2768 2 128.21062872959058 -626.0038578112346 85.0002 0.1144 2767 +2769 2 129.2785872539812 -624.873264475095 85.1088 0.1144 2768 +2770 2 130.31487046563365 -624.7744251548295 85.2802 0.1144 2769 +2771 2 131.09115216965552 -624.194669300792 85.5971 0.1144 2770 +2772 2 131.62739081934873 -622.7992724421495 86.095 0.1144 2771 +2773 2 132.10909359171578 -621.4086960537187 86.7426 0.1144 2772 +2774 2 132.59035168876983 -620.6056830685625 87.498 0.1144 2773 +2775 2 133.17771980282265 -620.4182042582479 88.3165 0.1144 2774 +2776 2 134.04075011404 -619.215464346078 89.1374 0.1144 2775 +2777 2 135.02454827658195 -618.6040841296065 89.9298 0.1144 2776 +2778 2 136.01209703596132 -618.0697901412898 90.7001 0.1144 2777 +2779 2 137.0426261740943 -617.5885578957415 91.4777 0.1144 2778 +2780 2 138.12188650116 -617.2603703044393 92.281 0.1144 2779 +2781 2 139.2180163267722 -617.1753403700226 93.0874 0.1144 2780 +2782 2 140.26792124638638 -617.9827279644069 93.9523 0.1144 2781 +2783 2 141.05434613075442 -616.8293570273306 94.925 0.1144 2782 +2784 2 141.82561429704253 -616.9851739685429 96.0196 0.1144 2783 +2785 2 142.57699631930947 -616.0337593107361 97.1774 0.1144 2784 +2786 2 143.1951306999482 -615.9360352821947 98.3811 0.1144 2785 +2787 2 144.07858563955529 -615.1944909980897 99.4745 0.1144 2786 +2788 2 144.64102435533783 -614.6873795781258 102.492 0.1144 2787 +2789 2 145.5029533791179 -614.8397530856739 103.859 0.1144 2788 +2790 2 146.365971745728 -613.5106279139317 104.424 0.1144 2789 +2791 2 147.2289509762498 -613.1708729137098 105.1112 0.1144 2790 +2792 2 148.1677856179298 -612.8998879354258 106.0144 0.1144 2791 +2793 2 149.10453551989542 -612.2463932068725 107.0717 0.1144 2792 +2794 2 150.03982967589477 -612.0129826943862 108.2259 0.1144 2793 +2795 2 150.9772476687704 -612.3504440763177 109.4005 0.1144 2794 +2796 2 151.9140850879645 -612.0571970544408 110.5437 0.1144 2795 +2797 2 152.84038107139028 -611.0338774847783 111.5173 0.1144 2796 +2798 2 153.70955802113806 -610.1325710775892 112.2598 0.1144 2797 +2799 2 154.57969766039895 -609.4010718433802 113.3185 0.1144 2798 +2800 2 144.96048154293973 -616.7246759104183 100.0734 0.1144 2787 +2801 2 145.8788416180343 -617.2326772125293 100.2683 0.1144 2800 +2802 2 146.79769474958198 -618.0099200801508 100.1661 0.1144 2801 +2803 2 147.71692999696123 -618.853257541674 99.8782 0.1144 2802 +2804 2 148.63525093596746 -619.3747436285282 99.5084 0.1144 2803 +2805 2 148.93846313119215 -620.4029688960786 99.328 0.1144 2804 +2806 2 149.20494640821371 -621.5079025105258 99.3569 0.1144 2805 +2807 2 149.47247989197697 -622.9367201956265 99.5408 0.1144 2806 +2808 2 149.74001337574026 -624.8103695784973 99.8236 0.1144 2807 +2809 2 150.00754685950346 -626.4388042084956 100.1546 0.1144 2808 +2810 2 150.2884973015514 -627.5366703205674 100.4872 0.1144 2809 +2811 2 151.00101605793185 -628.3890599326949 100.7182 0.1144 2810 +2812 2 151.71265964202763 -629.2977776155273 100.977 0.1144 2811 +2813 2 -19.27480844838754 -536.0905463306037 74.9857 0.1144 2422 +2814 2 -20.228824435668052 -536.9787970790966 75.9273 0.1144 2813 +2815 2 -21.151658031068713 -536.9230447945043 76.2994 0.1144 2814 +2816 2 -22.03616313978636 -537.8375279389408 76.6648 0.1144 2815 +2817 2 -22.95190261509098 -538.213866775382 77.0442 0.1144 2816 +2818 2 -23.882337565381995 -539.1609473786019 77.439 0.1144 2817 +2819 2 -24.689998488110966 -540.2431410513515 77.9041 0.1144 2818 +2820 2 -25.330832539590794 -541.4470214172295 78.4025 0.1144 2819 +2821 2 -25.952619047206632 -542.316267965958 78.8259 0.1144 2820 +2822 2 -26.572112238305543 -542.9182644777628 79.1591 0.1144 2821 +2823 2 -26.9477925485334 -543.5148494559284 79.4256 0.1144 2822 +2824 2 -27.625745383671948 -544.8069955171356 79.6606 0.1144 2823 +2825 2 -28.32547736471364 -545.0922109644351 79.8854 0.1144 2824 +2826 2 -29.028122372042098 -546.6030368087175 80.1189 0.1144 2825 +2827 2 -29.756077726976187 -548.0168069431586 80.3704 0.1144 2826 +2828 2 -30.55855273943861 -548.9904250310018 80.6207 0.1144 2827 +2829 2 -31.43344359701105 -549.0883420115731 80.8503 0.1144 2828 +2830 2 -32.249631992015885 -550.068989202038 81.0813 0.1144 2829 +2831 2 -32.88261142089816 -550.9405882290313 81.3593 0.1144 2830 +2832 2 -33.40581373271059 -551.6030755751744 81.69 0.1144 2831 +2833 2 -33.91386138565586 -553.0891403572975 82.0484 0.1144 2832 +2834 2 -34.16985536120768 -554.5269140361444 82.3648 0.1144 2833 +2835 2 -33.94628421304732 -555.6733126402465 82.5446 0.1144 2834 +2836 2 -33.58699992754581 -556.7118523641277 82.5815 0.1144 2835 +2837 2 -33.22907462573041 -557.8684229559323 82.5059 0.1144 2836 +2838 2 -32.8697419590888 -559.549882171618 82.3553 0.1144 2837 +2839 2 -32.387030199277866 -560.938157108963 82.1912 0.1144 2838 +2840 2 -31.806176685242477 -562.2347353195471 82.0593 0.1144 2839 +2841 2 -31.282817134877853 -563.3972456244484 81.9734 0.1144 2840 +2842 2 -30.946921547117356 -565.0421062710358 81.9244 0.1144 2841 +2843 2 -30.67238146048652 -566.639245554447 81.9003 0.1144 2842 +2844 2 -30.397260800174152 -567.8017227453122 81.8905 0.1144 2843 +2845 2 -30.21557010316331 -569.1061443443465 81.8843 0.1144 2844 +2846 2 -30.2171452413452 -570.4416258535823 81.8765 0.1144 2845 +2847 2 -30.274701553640277 -571.7542551878869 81.8658 0.1144 2846 +2848 2 -30.33169147059496 -573.110838040144 81.851 0.1144 2847 +2849 2 -30.389199401749913 -574.4912654825634 81.8303 0.1144 2848 +2850 2 -30.44565712616314 -575.8723743031651 81.8012 0.1144 2849 +2851 2 -30.524681981762406 -577.2663598949125 81.7603 0.1144 2850 +2852 2 -30.61183516020369 -578.6612836685692 81.7034 0.1144 2851 +2853 2 -30.698456146103624 -579.9154520837135 81.6239 0.1144 2852 +2854 2 -30.735458223467596 -581.2228978035001 81.5125 0.1144 2853 +2855 2 -30.715754031143327 -582.5816443542375 81.3554 0.1144 2854 +2856 2 -30.68365812952905 -583.9502326258163 81.1364 0.1144 2855 +2857 2 -30.650599538401522 -585.3211350309253 80.8419 0.1144 2856 +2858 2 -30.537513763915847 -586.6795484527373 80.4143 0.1144 2857 +2859 2 -30.321428096735062 -587.8093529453647 79.8025 0.1144 2858 +2860 2 -30.099819695776873 -588.9085163563574 78.9228 0.1144 2859 +2861 2 -29.754842650828785 -590.1033612298742 77.8218 0.1144 2860 +2862 2 -29.287318392850857 -591.2052374851618 76.6469 0.1144 2861 +2863 2 -28.803609002421553 -591.9940082134664 75.4527 0.1144 2862 +2864 2 -28.32139449404692 -592.7847009078622 74.2731 0.1144 2863 +2865 2 -27.838599411990764 -593.9557652078703 73.1301 0.1144 2864 +2866 2 -27.35489002156146 -595.3357630465639 72.0317 0.1144 2865 +2867 2 -26.872675513186827 -596.1752360723367 70.9688 0.1144 2866 +2868 2 -26.388917741617448 -597.622597643564 69.9345 0.1144 2867 +2869 2 -25.906171040701423 -599.0766778838048 68.9335 0.1144 2868 +2870 2 -25.424044049555235 -600.4211960883217 67.9647 0.1144 2869 +2871 2 -24.933197382479406 -601.2048535493859 67.025 0.1144 2870 +2872 2 -24.319676149677264 -602.7593429640885 66.2348 0.1144 2871 +2873 2 -23.616093570174044 -603.4290126844489 65.7059 0.1144 2872 +2874 2 -23.06803130047666 -603.9322657426285 65.1414 0.1144 2873 +2875 2 -23.20696995269047 -604.9729961516746 64.2709 0.1144 2874 +2876 2 -23.427635556884177 -606.0509511099588 63.1378 0.1144 2875 +2877 2 -24.13995933608841 -607.3817831672942 61.9382 0.1144 2876 +2878 2 -25.122576948336416 -607.5772723432865 60.6934 0.1144 2877 +2879 2 -25.877540223394995 -607.8942854843317 59.2346 0.1144 2878 +2880 2 -25.591324546596148 -607.8202249900735 57.5532 0.1144 2879 +2881 2 -24.95837848812888 -607.7671824552041 55.781 0.1144 2880 +2882 2 -24.571036752439653 -608.5053077336102 53.9353 0.1144 2881 +2883 2 -24.462424474263543 -609.2696895691922 52.0596 0.1144 2882 +2884 2 -24.099620601440087 -610.6872903349554 50.4274 0.1144 2883 +2885 2 -23.22728310973706 -610.7208931581415 48.9972 0.1144 2884 +2886 2 -22.89769099486542 -611.4185183844382 47.7719 0.1144 2885 +2887 2 -22.458063834412002 -612.7924348747631 46.7082 0.1144 2886 +2888 2 -22.0392437107755 -613.890060702312 45.8444 0.1144 2887 +2889 2 -21.692481478116406 -614.9353252998642 45.117 0.1144 2888 +2890 2 -21.383274954805003 -616.3117655020296 44.4534 0.1144 2889 +2891 2 -21.446533365912316 -617.5228129513515 43.8172 0.1144 2890 +2892 2 -21.658975808601838 -618.7725750732423 43.2068 0.1144 2891 +2893 2 -21.71581191968488 -620.1358474967828 42.6054 0.1144 2892 +2894 2 -21.52096232849614 -620.9290651260372 41.8228 0.1144 2893 +2895 2 -21.27686069902427 -622.5059247662491 41.1841 0.1144 2894 +2896 2 -21.06606217185815 -624.0882542396212 40.6302 0.1144 2895 +2897 2 -20.94455837029031 -625.6498663293441 40.0705 0.1144 2896 +2898 2 -20.961352222248422 -626.9209174423777 39.5125 0.1144 2897 +2899 2 -21.078456025985403 -628.0185129868861 39.0583 0.1144 2898 +2900 2 -20.93458728024318 -629.6745755563138 38.6784 0.1144 2899 +2901 2 -20.65624495229433 -631.1168550979417 38.2424 0.1144 2900 +2902 2 -20.96119127853106 -631.4310782847272 37.5651 0.1144 2901 +2903 2 -22.020446130987693 -631.4310519473962 36.967 0.1144 2902 +2904 2 -23.125951876795952 -631.8098880688306 36.4512 0.1144 2903 +2905 2 -23.996639848188806 -633.0667381569539 35.9374 0.1144 2904 +2906 2 -24.686996337224627 -633.4821190506736 35.5006 0.1144 2905 +2907 2 -25.515552979200194 -634.580414004131 35.142 0.1144 2906 +2908 2 -26.218053134408578 -635.3257137907135 34.7732 0.1144 2907 +2909 2 -26.866612494540163 -635.7772317578195 34.3454 0.1144 2908 +2910 2 -27.76159275038296 -636.3479992852483 33.805 0.1144 2909 +2911 2 -28.817643842706204 -637.2066362231683 33.2111 0.1144 2910 +2912 2 -29.771635202466186 -637.6118173734635 32.5279 0.1144 2911 +2913 2 -30.43451314634217 -638.4914114060174 31.9091 0.1144 2912 +2914 2 -31.193585070334308 -639.0307669078392 31.1548 0.1144 2913 +2915 2 -30.518727776964496 -639.5826357240053 29.8995 0.1144 2914 +2916 2 -30.420431224893207 -638.8412626170242 28.0669 0.1144 2915 +2917 2 -31.27769438911858 -638.4361803736113 27.2541 0.1144 2916 +2918 2 -32.26575238217261 -637.5975176578046 26.2757 0.1144 2917 +2919 2 -33.25740044617501 -637.4852398367277 25.2115 0.1144 2918 +2920 2 -34.13892687900996 -638.0090482343608 24.0748 0.1144 2919 +2921 2 -34.69643335642696 -637.0974082082389 23.134 0.1144 2920 +2922 2 -35.214705992539336 -635.4605155217564 21.3172 0.1144 2921 +2923 2 -31.293320702627568 -639.2289094831605 30.5477 0.1144 2914 +2924 2 -32.09190582094887 -639.3794682322064 30.0423 0.1144 2923 +2925 2 -33.064389672423545 -640.1024182256605 29.5638 0.1144 2924 +2926 2 -33.98226090874961 -641.4385549561571 29.0914 0.1144 2925 +2927 2 -35.118676841621 -641.1874611458504 28.5919 0.1144 2926 +2928 2 -36.220001959441454 -641.1031011112109 27.9901 0.1144 2927 +2929 2 -37.29019543585096 -642.1337262698653 27.2546 0.1144 2928 +2930 2 -37.92383790427947 -642.2603394555416 26.3281 0.1144 2929 +2931 2 -37.72746940493173 -642.978943044043 25.0838 0.1144 2930 +2932 2 -37.361616509489245 -643.847538276345 23.716 0.1144 2931 +2933 2 -36.905380439630235 -644.7560097264789 22.4146 0.1144 2932 +2934 2 -36.962351555070185 -645.8574039285674 21.1628 0.1144 2933 +2935 2 -37.21919252074554 -647.1780857986664 20.0596 0.1144 2934 +2936 2 -37.15301598072192 -648.4658465299544 19.2229 0.1144 2935 +2937 2 -36.61626592524773 -649.2785534333525 18.6812 0.1144 2936 +2938 2 -35.84697055114751 -649.8634733422523 18.3269 0.1144 2937 +2939 2 -35.40409886344969 -651.1294455286434 18.1321 0.1144 2938 +2940 2 -35.62424212286517 -652.3315547437319 18.2243 0.1144 2939 +2941 2 -35.46192478026488 -653.6786321344829 18.4388 0.1144 2940 +2942 2 -34.82539174096375 -655.4151087209506 18.6801 0.1144 2941 +2943 2 -34.23875653503272 -656.8072461036778 18.9248 0.1144 2942 +2944 2 -34.451164036617186 -658.1557508675296 19.2775 0.1144 2943 +2945 2 -34.862376673127386 -658.9693087331245 19.6711 0.1144 2944 +2946 2 -35.52350124265179 -659.5488239549944 20.0628 0.1144 2945 +2947 2 -36.221965156171024 -660.8400833554381 20.4865 0.1144 2946 +2948 2 -36.828636141007976 -662.4101073330278 20.9822 0.1144 2947 +2949 2 -37.627664905035786 -663.4921928491094 21.628 0.1144 2948 +2950 2 -38.559509647223635 -662.8889988638533 22.4482 0.1144 2949 +2951 2 -39.48400540821679 -663.6348668501458 23.4423 0.1144 2950 +2952 2 -40.433345049132114 -662.465702921137 24.5411 0.1144 2951 +2953 2 -41.54184252029887 -663.0378637647202 25.5509 0.1144 2952 +2954 2 -42.681274204633226 -663.4906709463504 26.4111 0.1144 2953 +2955 2 -43.77729608047966 -662.3648275800554 27.2005 0.1144 2954 +2956 2 -44.714154863853864 -662.6564625923504 28.0638 0.1144 2955 +2957 2 -45.22967921854827 -663.4094751944624 28.9444 0.1144 2956 +2958 2 -45.865794759087784 -663.9698245003498 29.7405 0.1144 2957 +2959 2 -46.844866661065446 -665.2411328441964 30.4556 0.1144 2958 +2960 2 -47.90582007801633 -666.0047240445432 31.0447 0.1144 2959 +2961 2 -48.957548817977305 -665.6502678545712 31.4549 0.1144 2960 +2962 2 -50.083045394231995 -666.2530059700571 31.7153 0.1144 2961 +2963 2 -51.22278096114765 -665.5369879035976 31.8598 0.1144 2962 +2964 2 -52.315195559217734 -666.5010678748074 31.9119 0.1144 2963 +2965 2 -53.43321962870656 -667.2447458922566 31.89 0.1144 2964 +2966 2 -54.56963975656124 -665.9306105577134 31.8206 0.1144 2965 +2967 2 -55.70958795966795 -666.8009967419182 31.7086 0.1144 2966 +2968 2 -56.778784835065544 -667.5717759188036 31.4482 0.1144 2967 +2969 2 -57.89213997888166 -666.908273174507 31.1416 0.1144 2968 +2970 2 -58.95172483686803 -667.2901401944283 30.765 0.1144 2969 +2971 2 -59.92438787885653 -667.2681930801471 30.2876 0.1144 2970 +2972 2 -61.05187509317433 -668.1940461649308 29.8416 0.1144 2971 +2973 2 -62.195689028723166 -668.0711772279785 29.4753 0.1144 2972 +2974 2 -63.335774761221074 -667.5999321940867 29.1774 0.1144 2973 +2975 2 -64.47796463636413 -666.5269140504722 28.91 0.1144 2974 +2976 2 -65.62093428134483 -667.1031506801866 28.6446 0.1144 2975 +2977 2 -66.75928963598913 -668.0085199850502 28.3399 0.1144 2976 +2978 2 -67.87201046350394 -666.6072210558202 27.8756 0.1144 2977 +2979 2 -69.00172517151694 -667.249275064577 27.2408 0.1144 2978 +2980 2 -70.13240107361536 -667.7229611004716 26.4851 0.1144 2979 +2981 2 -71.01744097517094 -666.4204106315349 25.4708 0.1144 2980 +2982 2 -71.69023172892491 -666.6016468908025 24.2211 0.1144 2981 +2983 2 -72.41711601638977 -667.4095748839075 22.9083 0.1144 2982 +2984 2 -72.98195123968671 -667.0378448663951 19.88 0.1144 2983 +2985 2 -33.2581319879185 -655.0876115115335 19.459 0.1144 2943 +2986 2 -32.35389137567461 -654.2449232721015 19.9085 0.1144 2985 +2987 2 -31.275297644091125 -654.950439918333 20.4977 0.1144 2986 +2988 2 -30.137728779301966 -654.618649547495 21.1382 0.1144 2987 +2989 2 -29.095669062712403 -655.39328698736 21.9461 0.1144 2988 +2990 2 -28.09999044743195 -654.7336825161351 22.9451 0.1144 2989 +2991 2 -27.131940025830943 -654.1335222861313 24.0156 0.1144 2990 +2992 2 -26.538810982646424 -653.2216567882977 25.159 0.1144 2991 +2993 2 -26.46650658161043 -652.6860200250038 26.4911 0.1144 2992 +2994 2 -26.385968141700715 -652.1428868032531 27.9318 0.1144 2993 +2995 2 -25.844618477683838 -653.1248858839025 29.3118 0.1144 2994 +2996 2 -24.99612570222574 -653.8254271925213 30.3601 0.1144 2995 +2997 2 -24.017940414982704 -655.317951914573 31.4149 0.1144 2996 +2998 2 -23.131365858352176 -610.5036149419279 48.2446 0.1144 2885 +2999 2 -22.446692065197723 -609.6892273851988 48.0491 0.1144 2998 +3000 2 -21.366902673336327 -609.5497115555204 47.9783 0.1144 2999 +3001 2 -20.22758043419558 -610.4046245772932 47.8654 0.1144 3000 +3002 2 -19.14138697874438 -609.9746876639305 47.7019 0.1144 3001 +3003 2 -18.08902405937208 -609.1945519455462 47.5252 0.1144 3002 +3004 2 -17.037091636971496 -608.8377299338322 47.1226 0.1144 3003 +3005 2 -27.408695973374932 -543.8464216352684 81.2624 0.1144 2822 +3006 2 -28.154855513247732 -543.8293427393153 82.1041 0.1144 3005 +3007 2 -28.76835274394206 -544.7824990706229 83.1348 0.1144 3006 +3008 2 -29.585716464651156 -546.2535571592136 84.0207 0.1144 3007 +3009 2 -30.3368014612443 -547.0372797602237 84.875 0.1144 3008 +3010 2 -30.99303761199743 -547.5832619621766 85.8225 0.1144 3009 +3011 2 -31.808071579656676 -548.0791820535787 86.5906 0.1144 3010 +3012 2 -32.48025466750679 -549.034832246255 87.215 0.1144 3011 +3013 2 -32.69530102931208 -550.3000886934202 87.8284 0.1144 3012 +3014 2 -32.940271563237985 -551.2806764380224 88.3896 0.1144 3013 +3015 2 -33.40704532606894 -552.0923040128839 88.9134 0.1144 3014 +3016 2 -33.890899126793435 -553.6169338451939 89.4281 0.1144 3015 +3017 2 -34.374801308658036 -555.1463322074487 89.9766 0.1144 3016 +3018 2 -34.85870349052269 -556.6760864192214 90.5551 0.1144 3017 +3019 2 -35.127028246905894 -557.7539619564858 91.329 0.1144 3018 +3020 2 -35.33135714651065 -558.6726443172274 92.2782 0.1144 3019 +3021 2 -35.533126778977966 -559.5871244529703 93.322 0.1144 3020 +3022 2 -35.84155994753435 -560.7525707661395 94.1808 0.1144 3021 +3023 2 -36.16443009878025 -561.6653977580403 94.8077 0.1144 3022 +3024 2 -36.487436148394764 -562.6879621062544 95.2277 0.1144 3023 +3025 2 -36.81030629964061 -564.1941160448099 95.4682 0.1144 3024 +3026 2 -37.133312349255064 -565.7053636619763 95.585 0.1144 3025 +3027 2 -37.45618250050102 -567.2164763414937 95.6357 0.1144 3026 +3028 2 -37.77918855011548 -568.4827930015833 95.6726 0.1144 3027 +3029 2 -38.10205870136132 -569.4349312382992 95.7018 0.1144 3028 +3030 2 -38.425016369835674 -570.3673360294523 95.7146 0.1144 3029 +3031 2 -38.74639163902694 -571.5321577953348 95.7012 0.1144 3030 +3032 2 -39.06432691397959 -572.8140413957858 95.7006 0.1144 3031 +3033 2 -39.374347706408805 -574.2855988372366 95.7303 0.1144 3032 +3034 2 -39.09650262989632 -575.1364332690956 95.5654 0.1144 3033 +3035 2 -38.65420003709429 -576.2801887036737 95.1885 0.1144 3034 +3036 2 -38.25168121112025 -577.720783125882 94.6935 0.1144 3035 +3037 2 -38.001217316071255 -579.3527733615721 94.2284 0.1144 3036 +3038 2 -38.279535604281165 -580.2730187119668 93.7322 0.1144 3037 +3039 2 -38.78545419576042 -581.1794733976823 93.2005 0.1144 3038 +3040 2 -39.285004092945314 -582.5940558784628 92.7186 0.1144 3039 +3041 2 -39.7841718742985 -584.1391158783288 92.2656 0.1144 3040 +3042 2 -39.68642843712391 -585.4160522007252 91.7781 0.1144 3041 +3043 2 -39.5500790838599 -586.6607594286147 91.2475 0.1144 3042 +3044 2 -39.37109922612411 -587.8449551265838 90.6632 0.1144 3043 +3045 2 -39.08788159050766 -588.8940503115462 90.0158 0.1144 3044 +3046 2 -38.79106976734209 -589.9656180677622 89.3108 0.1144 3045 +3047 2 -39.008584615715996 -591.1360084350822 87.5132 0.1144 3046 +3048 2 -39.463223413821034 -574.3974426264718 96.9741 0.1144 3033 +3049 2 -40.46344430275251 -575.3889584128406 96.5045 0.1144 3048 +3050 2 -41.52325793652037 -574.6553922207175 96.271 0.1144 3049 +3051 2 -42.58779157665639 -575.53143911355 95.8622 0.1144 3050 +3052 2 -43.644118330473376 -575.1495010261427 95.3148 0.1144 3051 +3053 2 -44.619511479073076 -575.705223580039 94.7719 0.1144 3052 +3054 2 -45.58436379332062 -575.9417337330235 94.2542 0.1144 3053 +3055 2 -46.54825341805493 -576.5333790412956 93.7418 0.1144 3054 +3056 2 -47.00836625731694 -578.0069457140465 93.1764 0.1144 3055 +3057 2 -47.21192103986416 -579.4126479380462 92.5772 0.1144 3056 +3058 2 -47.26523639842405 -580.7416421836948 91.961 0.1144 3057 +3059 2 -47.22109852620686 -582.0472427199168 91.3886 0.1144 3058 +3060 2 -47.01780385334464 -583.1048185651593 90.0007 0.1144 3059 +3061 2 8.510805982255455 -489.9689172149402 39.2686 0.1144 2373 +3062 2 8.610862003283096 -491.045979638437 38.5151 0.1144 3061 +3063 2 8.68114629822864 -492.26762468501346 37.8003 0.1144 3062 +3064 2 8.829103395961972 -493.4619011645586 37.2047 0.1144 3063 +3065 2 9.05805036656664 -494.62195878992446 36.7189 0.1144 3064 +3066 2 9.062953367872723 -495.91663858440955 36.3258 0.1144 3065 +3067 2 8.738433033272813 -497.32425268340717 35.999 0.1144 3066 +3068 2 8.452959560913378 -498.7716912621097 35.7414 0.1144 3067 +3069 2 8.635457646137965 -499.93653462714326 35.5057 0.1144 3068 +3070 2 9.19880584989761 -500.80513499201396 35.2612 0.1144 3069 +3071 2 9.776001508913666 -502.0554614066147 35.0 0.1144 3070 +3072 2 10.234061728050918 -504.1079892515668 34.6923 0.1144 3071 +3073 2 10.617130131565332 -505.1971241879299 34.2574 0.1144 3072 +3074 2 10.972824210523719 -506.0546108540913 33.6552 0.1144 3073 +3075 2 11.39921434151244 -506.9076199143183 32.9904 0.1144 3074 +3076 2 11.982138086694377 -508.7419976522699 32.3977 0.1144 3075 +3077 2 12.725336623333902 -509.9897475077338 31.8965 0.1144 3076 +3078 2 13.594421235457197 -510.3351034388035 31.4658 0.1144 3077 +3079 2 14.464715084783457 -510.68731824252353 31.0929 0.1144 3078 +3080 2 14.780714079343547 -512.0424365007292 30.7647 0.1144 3079 +3081 2 14.444435923564548 -513.1702118138193 30.5242 0.1144 3080 +3082 2 14.350813559386722 -514.502239403512 30.3965 0.1144 3081 +3083 2 14.807480592038964 -515.9523400843252 30.3643 0.1144 3082 +3084 2 15.363682565400595 -518.0268009279869 30.3755 0.1144 3083 +3085 2 15.573736263834228 -519.184857239653 30.403 0.1144 3084 +3086 2 15.184127738770172 -520.3807004885751 30.4284 0.1144 3085 +3087 2 14.723978462975175 -520.7758473372488 30.4354 0.1144 3086 +3088 2 14.685926178869536 -522.0423552957021 30.4178 0.1144 3087 +3089 2 14.732387549940547 -523.4886123282887 30.3794 0.1144 3088 +3090 2 14.349780403154355 -524.4923644685655 30.3246 0.1144 3089 +3091 2 13.450202928208405 -525.7688362913956 30.254 0.1144 3090 +3092 2 12.677983588823999 -527.1564244041821 30.1493 0.1144 3091 +3093 2 13.109083277001623 -528.1244596382695 29.9435 0.1144 3092 +3094 2 13.119512177461793 -529.4365619914952 29.7727 0.1144 3093 +3095 2 12.42071676298503 -530.6469242644985 29.5218 0.1144 3094 +3096 2 12.017961815799318 -530.9725018302928 29.3387 0.1144 3095 +3097 2 11.022874261010877 -530.8020422816099 29.2356 0.1144 3096 +3098 2 10.204435240218217 -532.0735906525553 29.2762 0.1144 3097 +3099 2 9.587051416354164 -532.4508669444691 29.4154 0.1144 3098 +3100 2 8.772033122463938 -533.1598544520284 29.5823 0.1144 3099 +3101 2 7.764375133693072 -534.2945463107148 29.8281 0.1144 3100 +3102 2 6.667070583792778 -534.2053703253478 30.1451 0.1144 3101 +3103 2 5.563504687947621 -533.7080413117 30.4685 0.1144 3102 +3104 2 4.458022968243711 -533.299654213966 30.8014 0.1144 3103 +3105 2 3.645741500982197 -534.1594041127423 31.1732 0.1144 3104 +3106 2 2.9847670081676227 -535.3906853313667 31.584 0.1144 3105 +3107 2 2.334929131334242 -536.8374229480099 32.0886 0.1144 3106 +3108 2 1.5446144884197537 -537.6509613948381 32.6973 0.1144 3107 +3109 2 0.6403274562849361 -538.143362417981 33.3262 0.1144 3108 +3110 2 -0.10671859906360481 -539.06770864071 34.0049 0.1144 3109 +3111 2 -0.15620526313052352 -540.1720347152476 34.7782 0.1144 3110 +3112 2 0.045484752256804484 -541.4601545982453 35.5603 0.1144 3111 +3113 2 -0.8121995886263775 -541.2424502577487 36.2877 0.1144 3112 +3114 2 -1.8222478307155257 -542.0491297484258 37.0048 0.1144 3113 +3115 2 -2.877688031425656 -542.9723458664581 37.5995 0.1144 3114 +3116 2 -3.764858589133894 -543.3474800056601 38.1973 0.1144 3115 +3117 2 -3.770596057241505 -543.7916416242156 38.64 0.1144 3116 +3118 2 -3.736042584059355 -545.1764456707649 39.2266 0.1144 3117 +3119 2 -3.6218138610138695 -546.659597780241 39.4537 0.1144 3118 +3120 2 -3.3785639804338103 -548.2779485856564 39.7883 0.1144 3119 +3121 2 -3.035309526084241 -549.408169389295 40.266 0.1144 3120 +3122 2 -2.657156595932207 -550.3753573355328 40.8957 0.1144 3121 +3123 2 -2.4083458750929907 -551.4062902454509 41.7113 0.1144 3122 +3124 2 -2.489752165853794 -552.4609707866474 42.7736 0.1144 3123 +3125 2 -2.822817607747872 -553.7902317275062 43.9258 0.1144 3124 +3126 2 -3.083999727300082 -555.179620293587 45.0629 0.1144 3125 +3127 2 -3.143616422978482 -556.2740706800084 46.2759 0.1144 3126 +3128 2 -2.947195385138521 -556.2536919710552 46.772 0.1144 3127 +3129 2 -1.9123835568854375 -556.4190976494408 47.3623 0.1144 3128 +3130 2 -0.8978243147161606 -556.7443519579197 47.6036 0.1144 3129 +3131 2 0.07076089972289878 -558.2384901308207 47.9811 0.1144 3130 +3132 2 0.2758099765430657 -559.4215316996833 48.5349 0.1144 3131 +3133 2 0.6530523274838131 -560.6100672883788 49.1484 0.1144 3132 +3134 2 1.0540956743340786 -561.597786959084 49.7756 0.1144 3133 +3135 2 1.4605542710172656 -563.3070885631756 50.3415 0.1144 3134 +3136 2 1.9185519306732104 -564.6540236585297 50.7758 0.1144 3135 +3137 2 2.3964252851709134 -565.5316490844779 51.0686 0.1144 3136 +3138 2 2.8553804097504027 -566.4397880473236 51.2817 0.1144 3137 +3139 2 3.6350660756715882 -567.3853727764608 51.6435 0.1144 3138 +3140 2 4.404919629666857 -568.3661057593238 52.1917 0.1144 3139 +3141 2 4.760137355547613 -569.8000057274886 52.9505 0.1144 3140 +3142 2 5.059431708028264 -570.8837434600373 53.7902 0.1144 3141 +3143 2 5.329557166300113 -571.941313294129 54.6129 0.1144 3142 +3144 2 5.2544980687636595 -573.2667412000419 55.3624 0.1144 3143 +3145 2 4.947274137410147 -574.7070838030018 56.6591 0.1144 3144 +3146 2 -2.8358598572587397 -557.0950671748396 47.46 0.1144 3127 +3147 2 -2.488461211454272 -558.0554977641586 48.5458 0.1144 3146 +3148 2 -2.3735998044252753 -559.2731566082366 49.4914 0.1144 3147 +3149 2 -2.5741827303661253 -560.6791186899457 50.337 0.1144 3148 +3150 2 -2.9191545747211336 -562.062690538459 51.1739 0.1144 3149 +3151 2 -2.563197244697541 -562.8512489400459 52.0618 0.1144 3150 +3152 2 -1.8581208127461082 -563.7723615827279 52.8517 0.1144 3151 +3153 2 -1.6996061772852116 -565.1756397957977 53.4912 0.1144 3152 +3154 2 -1.88750652449459 -566.4264522261898 54.0532 0.1144 3153 +3155 2 -2.0716433006529087 -567.6547543842503 54.5992 0.1144 3154 +3156 2 -1.9492341444634178 -569.00692299941 55.1424 0.1144 3155 +3157 2 -1.4285243693204777 -570.1961452895531 55.7469 0.1144 3156 +3158 2 -0.7428529695442307 -570.999691487631 56.4365 0.1144 3157 +3159 2 -0.0751575427102864 -572.6473171186406 57.1262 0.1144 3158 +3160 2 0.5336858106677056 -573.9722980452656 57.7399 0.1144 3159 +3161 2 0.7684588338460401 -575.1347922126898 58.2798 0.1144 3160 +3162 2 0.7609075663807516 -576.4736294026842 58.8297 0.1144 3161 +3163 2 0.9312489735880689 -577.168614600083 59.4283 0.1144 3162 +3164 2 1.208045804608119 -578.6005427013416 60.1555 0.1144 3163 +3165 2 1.5816235805120584 -580.0994300892153 61.0081 0.1144 3164 +3166 2 2.2133031045159868 -580.5861758611229 62.004 0.1144 3165 +3167 2 2.7516880977654807 -580.9243455398397 63.2089 0.1144 3166 +3168 2 2.797610090456061 -582.0270397200836 64.4039 0.1144 3167 +3169 2 2.9587673152997382 -583.1266296344422 65.506 0.1144 3168 +3170 2 3.667973760364859 -584.4326058141096 66.642 0.1144 3169 +3171 2 4.101091103565594 -585.3274220303624 67.8975 0.1144 3170 +3172 2 4.538528236463193 -586.4700049086405 69.3739 0.1144 3171 +3173 2 5.241602183707911 -586.801835319696 71.0276 0.1144 3172 +3174 2 4.968513625358824 -587.0870743290468 72.9375 0.1144 3173 +3175 2 4.424116997935769 -586.6255148983107 74.9431 0.1144 3174 +3176 2 3.5233215668889954 -586.4592601246254 76.8877 0.1144 3175 +3177 2 3.0207304583366863 -586.1344438123614 78.8144 0.1144 3176 +3178 2 3.0207304583366863 -586.1344438123614 80.8069 0.1144 3177 +3179 2 2.8608637700642845 -586.2430787149444 82.7968 0.1144 3178 +3180 2 2.3690954115540848 -586.6587165294393 84.6944 0.1144 3179 +3181 2 1.6009889160865356 -587.9932460474547 86.2624 0.1144 3180 +3182 2 0.8293798668991883 -588.3445449936814 87.5266 0.1144 3181 +3183 2 0.34907550560683376 -589.7445940391202 88.4794 0.1144 3182 +3184 2 -0.02760136800182522 -590.7152000847036 89.1528 0.1144 3183 +3185 2 -0.21293739670988998 -591.1920212957194 90.937 0.1144 3184 +3186 2 -0.7134958395138398 -591.946402042453 91.7851 0.1144 3185 +3187 2 -1.3633337163471424 -593.0142504145527 92.1514 0.1144 3186 +3188 2 -2.0336435354728195 -593.9359317146498 92.5646 0.1144 3187 +3189 2 -2.702410091403678 -594.9922945936313 92.99 0.1144 3188 +3190 2 -3.1632535810570914 -596.4530169210711 93.3142 0.1144 3189 +3191 2 -3.4139626503281306 -597.9057260354703 93.4553 0.1144 3190 +3192 2 -3.646034240169641 -599.1042841119294 93.4531 0.1144 3191 +3193 2 -3.6344441923463506 -600.4596740159928 93.4354 0.1144 3192 +3194 2 -3.621852318921512 -601.8165812779836 93.4172 0.1144 3193 +3195 2 -3.610174753869771 -603.1637870921634 93.41 0.1144 3194 +3196 2 -3.6052665279739387 -604.5143991405091 93.4181 0.1144 3195 +3197 2 -3.6336614043839575 -605.84540479847 93.4147 0.1144 3196 +3198 2 -3.6610060740521533 -607.1788907685147 93.3806 0.1144 3197 +3199 2 -3.485141429614984 -608.6100888617342 93.2994 0.1144 3198 +3200 2 -3.1996419562674134 -609.7267459565261 93.1714 0.1144 3199 +3201 2 -2.937241806647279 -610.8575672127763 92.9732 0.1144 3200 +3202 2 -2.7326998290265436 -612.0273754538554 92.6537 0.1144 3201 +3203 2 -2.528157851405922 -613.1968741878302 92.2242 0.1144 3202 +3204 2 -2.384854080838508 -613.3840345933049 92.6719 0.1144 3203 +3205 2 -1.730463467540119 -615.0788957775429 93.4268 0.1144 3204 +3206 2 -1.0754922805602263 -615.7803436897009 93.7443 0.1144 3205 +3207 2 -0.92286252799245 -617.1420439816776 94.1335 0.1144 3206 +3208 2 -0.7773984087535268 -618.5248647359192 94.5535 0.1144 3207 +3209 2 -0.631019981141506 -619.9041978971882 94.9746 0.1144 3208 +3210 2 -0.48560424304264416 -621.2778874172686 95.3702 0.1144 3209 +3211 2 -0.15396126232415952 -622.9341430399197 95.6054 0.1144 3210 +3212 2 0.22741529671348815 -624.6042862141405 95.6782 0.1144 3211 +3213 2 0.6082112820696608 -625.697059241893 95.4528 0.1144 3212 +3214 2 -2.524010128011639 -614.5050061553853 91.7616 0.1144 3203 +3215 2 -2.5212164939403863 -615.8517082319518 91.2526 0.1144 3214 +3216 2 -2.3800027480094457 -617.0522084069958 90.578 0.1144 3215 +3217 2 -2.06298479628218 -618.1359910919631 89.6092 0.1144 3216 +3218 2 -1.9329493650862872 -619.0297264579872 88.4167 0.1144 3217 +3219 2 -1.9737395430581728 -619.9429349432576 87.1298 0.1144 3218 +3220 2 -2.0110199814712644 -621.0501529770903 85.9102 0.1144 3219 +3221 2 -2.0340234972626092 -622.284092470718 84.8649 0.1144 3220 +3222 2 -1.8511731483165335 -623.7666530157226 84.1596 0.1144 3221 +3223 2 -1.509336838199161 -625.0267379418096 83.8572 0.1144 3222 +3224 2 -0.6933502260123561 -625.7281810421777 83.8068 0.1144 3223 +3225 2 0.3078468677296513 -627.274457774132 83.8975 0.1144 3224 +3226 2 1.3010851182702794 -627.8042990039502 84.0921 0.1144 3225 +3227 2 2.2232750530590124 -628.0398488477852 84.4348 0.1144 3226 +3228 2 3.0934083764961713 -628.7507464012806 84.814 0.1144 3227 +3229 2 3.924886373097337 -629.9378741419044 85.1418 0.1144 3228 +3230 2 4.745410207571453 -631.0097321893751 85.4224 0.1144 3229 +3231 2 5.546876514823566 -631.4477477079648 85.6626 0.1144 3230 +3232 2 6.338282069962958 -632.8416308602937 85.9398 0.1144 3231 +3233 2 6.971514276734567 -634.3406108264687 86.3204 0.1144 3232 +3234 2 7.308021650119926 -635.3190733133883 86.7191 0.1144 3233 +3235 2 7.928751672801425 -636.0200822447143 86.9896 0.1144 3234 +3236 2 8.603914381811549 -637.6630927902482 87.1032 0.1144 3235 +3237 2 9.293794493773206 -639.0213353253251 87.0484 0.1144 3236 +3238 2 10.048072311502452 -639.7451529678049 86.7821 0.1144 3237 +3239 2 10.843027306074077 -640.1821003724417 86.266 0.1144 3238 +3240 2 11.70646985383219 -641.7096369205846 85.6036 0.1144 3239 +3241 2 12.37370609678537 -642.943554560545 84.8481 0.1144 3240 +3242 2 12.938336546408607 -643.7492359861844 84.0689 0.1144 3241 +3243 2 13.304963987099015 -644.1946602730691 82.9937 0.1144 3242 +3244 2 13.370938302479786 -645.0594836230498 81.7071 0.1144 3243 +3245 2 13.416007050850723 -646.2328314024642 80.411 0.1144 3244 +3246 2 13.182680932780642 -646.5108673678212 77.2248 0.1144 3245 +3247 2 0.09097635780341307 -590.9767571564146 89.4762 0.1144 3184 +3248 2 0.7269141792604046 -591.9453534450502 89.4286 0.1144 3247 +3249 2 1.1731852296805982 -593.1864774493213 89.2318 0.1144 3248 +3250 2 1.425599461503225 -594.7041141922566 89.033 0.1144 3249 +3251 2 1.6795085753804813 -596.0604045990851 88.8628 0.1144 3250 +3252 2 1.9323191013759384 -597.2034140556751 88.7415 0.1144 3251 +3253 2 2.185696022711795 -598.3477162072357 88.688 0.1144 3252 +3254 2 2.289792480411762 -599.5990245663943 88.6878 0.1144 3253 +3255 2 2.1776287775577288 -601.0064324132763 88.7018 0.1144 3254 +3256 2 2.066651179813988 -602.4141561626179 88.7228 0.1144 3255 +3257 2 1.9545749941884054 -603.813870766736 88.7608 0.1144 3256 +3258 2 1.8341745529051678 -605.1744395787824 88.926 0.1144 3257 +3259 2 1.7067139030245073 -606.5066632679467 89.2508 0.1144 3258 +3260 2 1.6637825820894676 -607.8260288463674 89.5479 0.1144 3259 +3261 2 1.674462050701493 -609.1307362536211 89.7607 0.1144 3260 +3262 2 1.7065068716202774 -610.3820548426222 90.095 0.1144 3261 +3263 2 2.1440951484651976 -611.3095144645115 90.4294 0.1144 3262 +3264 2 2.640954516952121 -612.1879206988862 90.7371 0.1144 3263 +3265 2 2.709222186480872 -613.4792145240507 91.0199 0.1144 3264 +3266 2 2.756810502116039 -614.7889634192329 91.3055 0.1144 3265 +3267 2 2.95292400347509 -616.1123109809789 91.5771 0.1144 3266 +3268 2 3.3182327994001355 -617.7543051697556 91.8053 0.1144 3267 +3269 2 3.6819108149019257 -619.2232433904917 92.0125 0.1144 3268 +3270 2 3.9052531872807066 -620.192370359867 92.3392 0.1144 3269 +3271 2 3.974005096401129 -621.1042468032024 92.8892 0.1144 3270 +3272 2 3.766518292768808 -622.385828702769 93.3299 0.1144 3271 +3273 2 3.3844239355931904 -623.6213112757864 93.5346 0.1144 3272 +3274 2 2.9790123939094713 -624.4564077249704 93.5225 0.1144 3273 +3275 2 2.5742205619956025 -625.7282403920116 93.3218 0.1144 3274 +3276 2 2.173249636024451 -627.2039129535502 92.9174 0.1144 3275 +3277 2 1.7758829593427947 -628.6634447185072 92.363 0.1144 3276 +3278 2 0.9933859010767492 -629.3594688220767 91.7146 0.1144 3277 +3279 2 0.06244278434866146 -629.9031790901926 91.021 0.1144 3278 +3280 2 -0.586390741848902 -630.2412923913477 90.5027 0.1144 3279 +3281 2 -1.0931546535027081 -631.2822021789937 90.169 0.1144 3280 +3282 2 -1.5844351048872625 -632.8390641346479 89.9808 0.1144 3281 +3283 2 -2.074752866758601 -633.7880504442044 89.9055 0.1144 3282 +3284 2 -2.5660333181431696 -634.6434688841814 89.9091 0.1144 3283 +3285 2 -3.056351080014508 -636.1899543797209 89.9528 0.1144 3284 +3286 2 -3.546581324657353 -637.7212997092693 90.0004 0.1144 3285 +3287 2 -4.037861776041851 -638.8172548965448 90.0491 0.1144 3286 +3288 2 -4.528227919053364 -640.2167148669591 90.1023 0.1144 3287 +3289 2 -5.019508370437876 -641.7762584877173 90.162 0.1144 3288 +3290 2 -5.509826132309172 -642.3603516851836 90.2306 0.1144 3289 +3291 2 -6.000143894180496 -643.0074840242826 90.3118 0.1144 3290 +3292 2 -6.491424345565065 -644.49117736287 90.4114 0.1144 3291 +3293 2 -6.981742107436403 -646.0520740765861 90.536 0.1144 3292 +3294 2 -7.473022558820972 -646.7472859949507 90.6923 0.1144 3293 +3295 2 -7.962290113950601 -647.7557042859976 90.8858 0.1144 3294 +3296 2 -8.488505943491958 -649.2866894850424 91.177 0.1144 3295 +3297 2 -9.027249050465286 -650.4063832706737 91.5746 0.1144 3296 +3298 2 -9.566374273270313 -651.8078195210795 92.0581 0.1144 3297 +3299 2 -10.106167586985364 -653.3396924296655 92.6058 0.1144 3298 +3300 2 -10.646343016532072 -653.9642416863949 93.1972 0.1144 3299 +3301 2 -11.18560413770571 -654.4268563786902 93.816 0.1144 3300 +3302 2 -11.725779567252403 -655.9577141380822 94.4482 0.1144 3301 +3303 2 -12.264953171197561 -657.488049311695 95.0902 0.1144 3302 +3304 2 -12.805709174425829 -657.9075341413144 95.7421 0.1144 3303 +3305 2 -13.344921914459306 -659.0382295981321 96.4018 0.1144 3304 +3306 2 -13.605867935501152 -660.3262489730489 97.1298 0.1144 3305 +3307 2 -13.85490638888092 -661.5532366537448 97.9023 0.1144 3306 +3308 2 -14.306642862183281 -662.8710985222918 98.6448 0.1144 3307 +3309 2 -14.802264933266173 -664.4027454244948 99.3423 0.1144 3308 +3310 2 -15.299381886403694 -665.9344678563879 99.995 0.1144 3309 +3311 2 -15.795003957486614 -666.6134648416689 100.6026 0.1144 3310 +3312 2 -16.290538511341012 -667.0217070207439 101.1632 0.1144 3311 +3313 2 -16.786741156105492 -668.5552667122674 101.684 0.1144 3312 +3314 2 -17.282363227188327 -670.0464030421842 102.1703 0.1144 3313 +3315 2 -17.77894798778445 -671.3098395165268 102.608 0.1144 3314 +3316 2 -18.274052044667044 -672.804417143821 102.9756 0.1144 3315 +3317 2 -18.770636805263166 -674.3453076814933 103.2298 0.1144 3316 +3318 2 -19.266258876346072 -674.7271967280808 103.3805 0.1144 3317 +3319 2 -19.762374003881988 -675.7787652972768 103.4393 0.1144 3318 +3320 2 -20.00259009378722 -676.4934971435399 103.0431 0.1144 3319 +3321 2 -20.290445932950945 -677.373226025268 102.2904 0.1144 3320 +3322 2 -20.619846799808215 -678.6442579540391 100.4158 0.1144 3321 +3323 2 1.407577028379464 -577.4544861284934 56.5412 0.1144 3162 +3324 2 2.210362018028107 -578.2008498006411 56.5236 0.1144 3323 +3325 2 2.6478381501240307 -579.0954693573639 56.4948 0.1144 3324 +3326 2 2.9511181294196973 -580.179430621133 56.5275 0.1144 3325 +3327 2 2.9100850349563387 -581.5248284643275 56.6656 0.1144 3326 +3328 2 2.6953492757498623 -582.9428152701179 56.9859 0.1144 3327 +3329 2 2.614938983289534 -584.2800367479435 57.4801 0.1144 3328 +3330 2 2.7419852517922862 -585.2672012529007 58.235 0.1144 3329 +3331 2 2.8508883014460764 -586.2873180157899 59.1573 0.1144 3330 +3332 2 3.2560877843583995 -587.5605470648354 60.023 0.1144 3331 +3333 2 3.680714557637671 -589.0542482475195 60.8042 0.1144 3332 +3334 2 4.08575501008869 -590.1225857786197 61.4914 0.1144 3333 +3335 2 4.364253105158397 -591.6620678323429 62.0645 0.1144 3334 +3336 2 4.635880165502442 -593.1877596426839 62.5534 0.1144 3335 +3337 2 4.980722243724728 -594.3408329019524 63.0165 0.1144 3336 +3338 2 5.354052442332559 -595.3573787892925 63.4964 0.1144 3337 +3339 2 5.306955565762564 -596.5363846567576 64.1586 0.1144 3338 +3340 2 5.424480460532877 -597.6998652261868 64.9001 0.1144 3339 +3341 2 5.592592177942123 -598.8478994208214 65.6673 0.1144 3340 +3342 2 5.647223532977847 -600.0950368411337 66.4157 0.1144 3341 +3343 2 5.646657970021423 -601.3900944259947 67.1012 0.1144 3342 +3344 2 5.486359655911983 -602.6293982902349 67.7936 0.1144 3343 +3345 2 5.430915235886033 -603.9257097355925 68.306 0.1144 3344 +3346 2 4.959206596761902 -605.4582166389221 68.5966 0.1144 3345 +3347 2 4.8282069566284775 -606.8781324852579 68.7019 0.1144 3346 +3348 2 4.512218853072554 -607.9658955714182 68.5787 0.1144 3347 +3349 2 3.7659832760523386 -607.7996033552175 68.1024 0.1144 3348 +3350 2 2.749150449228324 -607.368036212086 67.7692 0.1144 3349 +3351 2 1.7896800760264995 -608.4732144337326 67.4321 0.1144 3350 +3352 2 0.8372935093361349 -608.8861707158802 67.0359 0.1144 3351 +3353 2 0.35185894164635556 -610.0290203895684 66.495 0.1144 3352 +3354 2 0.06530867377550464 -610.9259446234925 65.931 0.1144 3353 +3355 2 -0.011051334249216893 -612.0230557866597 65.7636 0.1144 3354 +3356 2 0.03266751978190996 -613.321461775475 65.8428 0.1144 3355 +3357 2 0.30438209735444843 -614.8865126573339 65.982 0.1144 3356 +3358 2 0.7176696018192814 -615.7729668744608 66.0108 0.1144 3357 +3359 2 1.4776499465509971 -616.6840938652945 66.757 0.1144 3358 +3360 2 -4.0430434436770355 -543.4322066554762 38.6582 0.1144 3116 +3361 2 -4.9842001867465555 -544.6517820424938 39.0583 0.1144 3360 +3362 2 -6.114586249010003 -543.7583756762729 39.4416 0.1144 3361 +3363 2 -7.236537716410503 -544.0614355315288 39.8538 0.1144 3362 +3364 2 -8.27441676738109 -544.9309086977204 40.3357 0.1144 3363 +3365 2 -9.049936473473622 -545.119268555806 40.822 0.1144 3364 +3366 2 -9.939275228736214 -546.3147933961601 41.4019 0.1144 3365 +3367 2 -10.95074637382588 -545.7563729607242 41.9745 0.1144 3366 +3368 2 -12.014093307435473 -546.7931838377565 42.4726 0.1144 3367 +3369 2 -13.032093573449764 -546.3928396477929 42.9932 0.1144 3368 +3370 2 -14.127504557683082 -545.8185888127623 43.5243 0.1144 3369 +3371 2 -15.227027920011821 -546.644743860752 44.0252 0.1144 3370 +3372 2 -16.123310252839318 -546.25741628957 44.4002 0.1144 3371 +3373 2 -16.080334632853962 -546.6253495903336 44.5088 0.1144 3372 +3374 2 -16.15550840017368 -547.860477071058 43.6808 0.1144 3373 +3375 2 -16.50418498526028 -549.1970029468639 43.3048 0.1144 3374 +3376 2 -17.090985499845182 -550.6648274494275 42.8532 0.1144 3375 +3377 2 -17.807048960886128 -551.2682110848896 42.3864 0.1144 3376 +3378 2 -18.581136344405266 -552.2972900746065 41.958 0.1144 3377 +3379 2 -19.28634986392302 -553.4651011677439 41.6083 0.1144 3378 +3380 2 -19.86591024109063 -554.7098755017133 41.3588 0.1144 3379 +3381 2 -20.362179174498195 -556.2382560313201 41.197 0.1144 3380 +3382 2 -20.696226573241532 -557.4087389893716 41.0917 0.1144 3381 +3383 2 -21.042994482677173 -558.1563754704612 41.0158 0.1144 3382 +3384 2 -21.483039753670333 -558.9821104258638 40.9455 0.1144 3383 +3385 2 -22.115853432073884 -560.3622954400147 40.8498 0.1144 3384 +3386 2 -22.863269658646928 -561.0867109797416 40.7137 0.1144 3385 +3387 2 -23.661017206417554 -562.1099181536366 40.546 0.1144 3386 +3388 2 -24.523714521249453 -563.2784474752926 40.3679 0.1144 3387 +3389 2 -25.46067599216859 -564.2286791156508 40.182 0.1144 3388 +3390 2 -25.759830139699233 -565.34358068824 39.8801 0.1144 3389 +3391 2 -25.745918088449947 -566.6757192558267 39.5349 0.1144 3390 +3392 2 -25.922210691190045 -567.8113756156276 39.2221 0.1144 3391 +3393 2 -26.28345099024162 -568.714639971791 38.9169 0.1144 3392 +3394 2 -26.985317257339 -569.4676715928707 38.5734 0.1144 3393 +3395 2 -27.871404765339697 -570.24216314783 38.2788 0.1144 3394 +3396 2 -28.680348963538655 -571.2131073184981 37.9834 0.1144 3395 +3397 2 -29.40288533947792 -572.7296008189677 37.6681 0.1144 3396 +3398 2 -29.973861939084507 -573.8225948871227 37.3778 0.1144 3397 +3399 2 -30.534343560444754 -575.0141046034468 37.1101 0.1144 3398 +3400 2 -31.136931417880284 -575.6807104427531 36.8021 0.1144 3399 +3401 2 -31.512527338625382 -576.6424203345092 35.56 0.1144 3400 +3402 2 -16.832580814441293 -547.1589578934675 44.7698 0.1144 3372 +3403 2 -17.8251217850055 -547.5149590415141 45.0982 0.1144 3402 +3404 2 -18.729673563633355 -548.5017967526935 45.3244 0.1144 3403 +3405 2 -19.242538723533166 -549.7507407068153 45.4633 0.1144 3404 +3406 2 -19.573610536508454 -550.9734310741579 45.5417 0.1144 3405 +3407 2 -19.898111468177568 -552.4271583053725 45.5792 0.1144 3406 +3408 2 -20.536445821145527 -553.9263048128261 45.5801 0.1144 3407 +3409 2 -21.60470449895569 -553.2374372880944 45.563 0.1144 3408 +3410 2 -22.684600773345238 -553.8882907441983 45.5224 0.1144 3409 +3411 2 -23.682168157893322 -554.3493228312224 45.4672 0.1144 3410 +3412 2 -24.637052461846316 -555.3751985919176 45.4168 0.1144 3411 +3413 2 -25.431456486358364 -556.5479838134479 45.3768 0.1144 3412 +3414 2 -26.46885246423379 -556.3450498191667 45.3508 0.1144 3413 +3415 2 -27.594355332315708 -556.2181498383194 45.3393 0.1144 3414 +3416 2 -28.68016311599932 -555.3866586031585 45.2906 0.1144 3415 +3417 2 -29.78402916526396 -555.6896308177901 45.192 0.1144 3416 +3418 2 -30.739118218894134 -555.9841207541258 43.874 0.1144 3417 +3419 2 -31.83142756675388 -555.5765065964059 43.2555 0.1144 3418 +3420 2 -32.91790816248465 -555.5528434113614 42.9772 0.1144 3419 +3421 2 -34.00447850917785 -555.9388617638392 42.7 0.1144 3420 +3422 2 -35.11943055954969 -556.2320748848391 42.4743 0.1144 3421 +3423 2 -36.261625659282444 -555.462092746716 42.2985 0.1144 3422 +3424 2 -37.28948412383515 -556.344615404267 42.161 0.1144 3423 +3425 2 -38.39266114619997 -556.0450437737136 42.0546 0.1144 3424 +3426 2 -39.52868777740082 -556.3969704400082 41.9619 0.1144 3425 +3427 2 -40.346719589019884 -557.8413150542746 41.8488 0.1144 3426 +3428 2 -41.15556479120467 -558.037479843671 41.6349 0.1144 3427 +3429 2 -41.92108873173646 -558.5094766159052 41.2569 0.1144 3428 +3430 2 -42.15945025517303 -558.5410360695533 41.0455 0.1144 3429 +3431 2 -43.203467629969836 -558.0697510686974 41.0676 0.1144 3430 +3432 2 -44.28279947026825 -557.9378207583018 41.2518 0.1144 3431 +3433 2 -45.20691680696038 -558.2657770956671 41.5187 0.1144 3432 +3434 2 -46.33998968239462 -557.8584047000161 41.7642 0.1144 3433 +3435 2 -47.40283520721579 -558.675324653253 41.9714 0.1144 3434 +3436 2 -48.09981991244939 -559.7025733741509 42.1537 0.1144 3435 +3437 2 -49.05312750753042 -560.0178187390195 42.3027 0.1144 3436 +3438 2 -50.062223509285715 -559.9709033586854 42.2484 0.1144 3437 +3439 2 -51.107759754610335 -560.3065731394488 42.1448 0.1144 3438 +3440 2 -52.169597627824096 -560.9274703300493 42.0997 0.1144 3439 +3441 2 -53.23541873841343 -561.2134714207444 42.1618 0.1144 3440 +3442 2 -54.3016082523146 -561.2240947470343 42.287 0.1144 3441 +3443 2 -55.32497129129734 -560.9393399927504 42.3998 0.1144 3442 +3444 2 -56.29140600482799 -561.9197068774511 42.499 0.1144 3443 +3445 2 -57.13300271384615 -563.3675761031262 42.581 0.1144 3444 +3446 2 -58.01905005615214 -564.2164217883098 42.6667 0.1144 3445 +3447 2 -59.1108845463621 -563.72667109078 42.6916 0.1144 3446 +3448 2 -60.22953415162664 -563.234988875347 42.5659 0.1144 3447 +3449 2 -61.28699400624032 -563.0408779671925 42.2523 0.1144 3448 +3450 2 -62.28418556678389 -563.8818744736916 41.7816 0.1144 3449 +3451 2 -63.35816098756885 -563.9034597388943 41.3207 0.1144 3450 +3452 2 -64.49719488230247 -563.7495343472398 40.9688 0.1144 3451 +3453 2 -65.62310538774827 -562.7119334917861 40.6832 0.1144 3452 +3454 2 -66.72835417431861 -563.0183164864227 40.5334 0.1144 3453 +3455 2 -67.58919756172918 -562.9124901826854 40.6448 0.1144 3454 +3456 2 -68.59297618080048 -561.9265192701986 40.8271 0.1144 3455 +3457 2 -69.68487476355077 -561.3858984955737 40.917 0.1144 3456 +3458 2 -70.79305747476656 -560.5797174485341 40.9909 0.1144 3457 +3459 2 -71.92341951092571 -560.8558646896794 41.0452 0.1144 3458 +3460 2 -73.05161185410266 -559.8498505376162 40.9536 0.1144 3459 +3461 2 -74.16696482182081 -560.0872452783856 40.7078 0.1144 3460 +3462 2 -75.27948761967603 -560.7663024574491 40.4088 0.1144 3461 +3463 2 -76.36058417751701 -560.8105883640914 40.1094 0.1144 3462 +3464 2 -77.38924107653202 -561.1574373545768 39.7793 0.1144 3463 +3465 2 -78.36528108745638 -561.4645604637977 39.3974 0.1144 3464 +3466 2 -79.36122291617083 -562.3662756014784 38.9707 0.1144 3465 +3467 2 -80.40689878902592 -563.0249434955562 38.5003 0.1144 3466 +3468 2 -81.4231472753754 -563.2478076758559 37.9193 0.1144 3467 +3469 2 -82.33020863790941 -563.9450488061273 37.1468 0.1144 3468 +3470 2 -83.30755379193646 -562.8536643280528 36.2438 0.1144 3469 +3471 2 -84.41208849589616 -563.4241857848294 35.3651 0.1144 3470 +3472 2 -85.52080233241585 -563.4261540012444 34.5394 0.1144 3471 +3473 2 -86.58925334947452 -563.4489800278632 33.7322 0.1144 3472 +3474 2 -87.64439386258644 -563.7555998946474 32.9762 0.1144 3473 +3475 2 -88.59837953193538 -563.8933179217729 32.3151 0.1144 3474 +3476 2 -89.38413469437084 -565.3495891669555 31.6896 0.1144 3475 +3477 2 -90.28614035459591 -566.6895954825027 31.073 0.1144 3476 +3478 2 -91.31522672097626 -566.1330639610029 30.4965 0.1144 3477 +3479 2 -92.32840015972191 -567.1139854905008 30.0112 0.1144 3478 +3480 2 -93.32693023378317 -566.7679770280675 29.6433 0.1144 3479 +3481 2 -94.44415586880967 -567.5632472084955 29.3714 0.1144 3480 +3482 2 -95.58755228160037 -568.0895065550887 29.1673 0.1144 3481 +3483 2 -96.73154344641367 -567.2809348966209 28.9962 0.1144 3482 +3484 2 -97.8672948819422 -567.2150524707022 28.8151 0.1144 3483 +3485 2 -98.9704250185947 -567.1362342127795 28.5586 0.1144 3484 +3486 2 -100.06787545022154 -566.9456320465098 28.2052 0.1144 3485 +3487 2 -101.18543781079525 -567.9025552304123 27.7811 0.1144 3486 +3488 2 -102.29510538307667 -568.0283083401825 27.282 0.1144 3487 +3489 2 -103.38137338024755 -567.2700782073072 26.7206 0.1144 3488 +3490 2 -104.41844941121344 -567.5059607537439 26.1156 0.1144 3489 +3491 2 -105.41703316626675 -565.7920089977221 25.4857 0.1144 3490 +3492 2 -106.39312312902138 -565.8507150360281 24.8411 0.1144 3491 +3493 2 -107.44798425147778 -566.3698378616642 24.2936 0.1144 3492 +3494 2 -108.31355545650814 -566.5349405243378 23.9042 0.1144 3493 +3495 2 -109.45760143117889 -567.2801761043514 23.6448 0.1144 3494 +3496 2 -110.53094346730532 -565.8277351143292 23.4823 0.1144 3495 +3497 2 -111.67489297099607 -566.2509225616442 23.3811 0.1144 3496 +3498 2 -112.78686790254085 -566.4010806192383 23.3055 0.1144 3497 +3499 2 -113.8303703532519 -566.5952499193887 23.2217 0.1144 3498 +3500 2 -114.27744928170387 -567.7840491488685 23.5234 0.1144 3499 +3501 2 -114.88180199227676 -568.7872161666847 22.7993 0.1144 3500 +3502 2 -115.43209550882774 -569.5946872017907 22.4804 0.1144 3501 +3503 2 -115.66603933778734 -570.6865695693707 21.9976 0.1144 3502 +3504 2 -115.89436303034685 -571.8499285301658 21.4633 0.1144 3503 +3505 2 -116.41782113490076 -573.2569002693608 20.998 0.1144 3504 +3506 2 -117.13804446116559 -574.8068519095785 20.6489 0.1144 3505 +3507 2 -117.96033932900606 -575.6545551564587 20.4354 0.1144 3506 +3508 2 -118.9320731271586 -576.0422236753766 20.3872 0.1144 3507 +3509 2 -120.06321596276172 -575.5796580763842 20.5781 0.1144 3508 +3510 2 -120.9922467499393 -574.8301420164865 21.0475 0.1144 3509 +3511 2 -121.81030056478579 -574.8931648774828 21.8484 0.1144 3510 +3512 2 -122.6859211787378 -576.0197739499012 22.7683 0.1144 3511 +3513 2 -123.55818212984083 -576.3532764669135 23.6508 0.1144 3512 +3514 2 -124.3581155854464 -575.8524690111835 25.76 0.1144 3513 +3515 2 -114.99985688348572 -566.7767578143028 22.9414 0.1144 3499 +3516 2 -116.10373231469215 -566.4647739261048 22.6675 0.1144 3515 +3517 2 -117.20644123705587 -566.9021432585446 22.3393 0.1144 3516 +3518 2 -118.19448359397202 -566.109112194718 22.0419 0.1144 3517 +3519 2 -119.33043408876654 -565.6224210028157 21.7908 0.1144 3518 +3520 2 -120.45880053475761 -565.2027491845888 21.5429 0.1144 3519 +3521 2 -121.5875839007954 -565.1003799386694 21.2477 0.1144 3520 +3522 2 -122.70406577432702 -565.6627572986783 20.8972 0.1144 3521 +3523 2 -123.79567824640418 -564.9463284063219 20.4598 0.1144 3522 +3524 2 -124.81431389595738 -564.3491203484394 19.9699 0.1144 3523 +3525 2 -125.92930191704077 -563.7391117964817 19.4583 0.1144 3524 +3526 2 -127.04284370969435 -563.4462888197139 18.9678 0.1144 3525 +3527 2 -128.04711016062913 -562.7677058505517 18.4923 0.1144 3526 +3528 2 -129.18833212166933 -563.4748310733808 18.122 0.1144 3527 +3529 2 -130.30112908559042 -563.0253824970999 17.7806 0.1144 3528 +3530 2 -131.43417490643347 -563.3629133641506 17.5416 0.1144 3529 +3531 2 -132.46610082461854 -563.6556399966903 17.2488 0.1144 3530 +3532 2 -133.598309074911 -563.6862966392216 17.1386 0.1144 3531 +3533 2 -134.68681724869037 -564.013135786063 17.0679 0.1144 3532 +3534 2 -135.78371831857888 -563.1360076074034 16.9899 0.1144 3533 +3535 2 -136.7309137504131 -564.5652483562455 16.8918 0.1144 3534 +3536 2 -137.45264483498264 -564.8173409244981 15.96 0.1144 3535 +3537 2 -131.240887821779 -562.0564278112679 19.7235 0.1144 3530 +3538 2 -130.3138308700303 -561.5755735348007 20.6585 0.1144 3537 +3539 2 -129.53828410934662 -561.6982558682404 21.749 0.1144 3538 +3540 2 -128.8142284586858 -561.0922287597808 22.9806 0.1144 3539 +3541 2 -127.97157940845076 -560.5711143377622 25.76 0.1144 3540 +3542 2 -42.86272182788364 -559.6513079899455 39.2109 0.1144 3429 +3543 2 -43.76940014294317 -559.7750926653567 38.2418 0.1144 3542 +3544 2 -44.631950371920986 -560.5987500890456 37.816 0.1144 3543 +3545 2 -45.426880334778375 -560.7548586076322 37.3083 0.1144 3544 +3546 2 -46.093371772995596 -561.8052262863948 36.7945 0.1144 3545 +3547 2 -46.701687716597014 -563.1006590990916 36.3521 0.1144 3546 +3548 2 -47.26300690850793 -564.6392067154283 35.9727 0.1144 3547 +3549 2 -47.72067887957752 -566.1693553373904 35.642 0.1144 3548 +3550 2 -48.100010287176076 -567.1587166030522 35.3671 0.1144 3549 +3551 2 -48.483899679825825 -568.0219961320441 35.1296 0.1144 3550 +3552 2 -48.861798764850974 -569.5579448027936 34.9252 0.1144 3551 +3553 2 -49.08062660521033 -570.826258381526 34.7444 0.1144 3552 +3554 2 -49.42256133392235 -571.9630048079665 34.5758 0.1144 3553 +3555 2 -50.02556923915041 -572.7279437613983 34.4574 0.1144 3554 +3556 2 -50.26582648672559 -573.8033212349972 34.3955 0.1144 3555 +3557 2 -50.195360376973106 -574.2709910203404 34.3854 0.1144 3556 +3558 2 -49.85438878996115 -575.8887206526595 34.4204 0.1144 3557 +3559 2 -49.504659925285374 -577.351626878158 34.4977 0.1144 3558 +3560 2 -49.40659693176038 -578.7348180978162 34.6284 0.1144 3559 +3561 2 -49.45270602547529 -580.0387820641914 34.8365 0.1144 3560 +3562 2 -49.5219822269886 -581.3171292833557 35.1162 0.1144 3561 +3563 2 -49.83816160255541 -582.4244321723845 35.4066 0.1144 3562 +3564 2 -50.29115942336274 -583.2753949034033 35.6555 0.1144 3563 +3565 2 -50.55064550345503 -584.7781237096169 35.8616 0.1144 3564 +3566 2 -50.66877455618654 -586.218387003829 36.0352 0.1144 3565 +3567 2 -50.86686450363297 -587.5779792227119 36.1824 0.1144 3566 +3568 2 -51.35489417357705 -588.4952040250562 36.3171 0.1144 3567 +3569 2 -51.914325588195624 -589.8772513969222 36.4487 0.1144 3568 +3570 2 -52.21782760962066 -591.3819845227229 36.5834 0.1144 3569 +3571 2 -52.33446178029749 -592.8110482184121 36.7315 0.1144 3570 +3572 2 -52.459728109675396 -594.242550228121 36.9102 0.1144 3571 +3573 2 -52.60973316672889 -595.6852155285588 37.1126 0.1144 3572 +3574 2 -52.91636607522149 -596.782557172477 37.3422 0.1144 3573 +3575 2 -53.61758920915595 -597.7318011123223 37.5838 0.1144 3574 +3576 2 -54.26950104629769 -598.8666463449276 37.7919 0.1144 3575 +3577 2 -54.741045430370875 -599.5048831017192 37.9358 0.1144 3576 +3578 2 -55.251985211244325 -600.4420431841792 37.9898 0.1144 3577 +3579 2 -55.785211372815034 -602.005581930378 37.9271 0.1144 3578 +3580 2 -56.41262174599275 -603.5319709875129 37.7202 0.1144 3579 +3581 2 -57.09126879498974 -605.0191579994275 37.3951 0.1144 3580 +3582 2 -57.60656437390264 -605.9404110599421 37.044 0.1144 3581 +3583 2 -57.78667013296152 -606.8717145872381 36.7562 0.1144 3582 +3584 2 -57.655366596612076 -608.4706199006716 36.5697 0.1144 3583 +3585 2 -57.485167478859424 -610.0698314324834 36.4902 0.1144 3584 +3586 2 -57.41918790125787 -611.4793670108617 36.5123 0.1144 3585 +3587 2 -57.363587136691486 -612.8832267840279 36.6212 0.1144 3586 +3588 2 -57.22521966258289 -614.3562025184639 36.7984 0.1144 3587 +3589 2 -57.04904964013651 -615.7506162172785 37.0684 0.1144 3588 +3590 2 -56.930671501046476 -616.9960892972231 37.4931 0.1144 3589 +3591 2 -56.97137728953561 -618.344515019414 38.0579 0.1144 3590 +3592 2 -57.395629993088434 -619.3755113153596 38.675 0.1144 3591 +3593 2 -58.17852423953897 -619.3994984171516 39.3478 0.1144 3592 +3594 2 -59.12222803265409 -620.5328236125955 40.1344 0.1144 3593 +3595 2 -60.0345270855299 -619.615970057318 41.0578 0.1144 3594 +3596 2 -60.80376248681078 -620.7969184075457 42.0678 0.1144 3595 +3597 2 -61.47105878820755 -622.2785869121133 43.0237 0.1144 3596 +3598 2 -62.164157328461776 -623.8250538492941 43.8564 0.1144 3597 +3599 2 -62.966192890200986 -623.6405147162347 44.5886 0.1144 3598 +3600 2 -63.70480374927045 -624.8522102784736 45.2463 0.1144 3599 +3601 2 -64.38689974625748 -626.1460639125575 45.8651 0.1144 3600 +3602 2 -65.1820959510357 -625.8140960855096 46.5077 0.1144 3601 +3603 2 -66.02746937983972 -627.2031851368728 47.1887 0.1144 3602 +3604 2 -66.90841459994581 -628.6372369245812 47.8514 0.1144 3603 +3605 2 -67.80427166039122 -629.1840424132495 48.4641 0.1144 3604 +3606 2 -68.63864913035073 -629.5723028526359 49.0636 0.1144 3605 +3607 2 -69.33829508959175 -631.0335717189629 49.6916 0.1144 3606 +3608 2 -69.91983192648135 -631.954124142906 50.3644 0.1144 3607 +3609 2 -70.34605064057678 -633.4194537270052 51.0768 0.1144 3608 +3610 2 -70.65665723127722 -634.9214034411276 51.8202 0.1144 3609 +3611 2 -70.87197356416517 -636.1029532831366 52.5781 0.1144 3610 +3612 2 -70.96009465670943 -637.3443861124322 53.3266 0.1144 3611 +3613 2 -70.98774470438683 -638.666815644577 54.0767 0.1144 3612 +3614 2 -70.97829789637075 -640.0438989179236 54.8761 0.1144 3613 +3615 2 -70.8500980945341 -641.5065315727695 55.8146 0.1144 3614 +3616 2 -70.82236890596005 -642.6915492005309 57.0024 0.1144 3615 +3617 2 -70.84117718723213 -643.3565919471132 58.5281 0.1144 3616 +3618 2 -70.22870260523571 -643.7036454401505 60.277 0.1144 3617 +3619 2 -70.44053106619758 -644.431339358257 62.23 0.1144 3618 +3620 2 -70.99025179632207 -644.7034230349989 64.2046 0.1144 3619 +3621 2 -71.8541019438129 -643.9919232013601 66.0699 0.1144 3620 +3622 2 -72.73329862359803 -644.216508565127 67.7622 0.1144 3621 +3623 2 -73.49377515252851 -643.2430499169544 69.2913 0.1144 3622 +3624 2 -74.45728376629988 -643.2993879854198 71.96 0.1144 3623 +3625 2 -50.38891527423863 -574.0823834471308 34.2479 0.1144 3556 +3626 2 -51.14482449780374 -575.1133720146215 35.0874 0.1144 3625 +3627 2 -52.20930556181641 -575.6052338048316 35.4743 0.1144 3626 +3628 2 -53.20386665210566 -575.4562609072055 35.9246 0.1144 3627 +3629 2 -53.71102357059533 -574.1852702700662 36.3395 0.1144 3628 +3630 2 -54.18450319509276 -573.2814121295917 36.7063 0.1144 3629 +3631 2 -55.14298316114632 -572.0352862456795 37.0443 0.1144 3630 +3632 2 -56.20803541689881 -572.0911890175003 37.469 0.1144 3631 +3633 2 -57.12512742447093 -571.9886851958053 37.9176 0.1144 3632 +3634 2 -57.48650942390036 -571.0121412874686 38.4409 0.1144 3633 +3635 2 -57.84577430647104 -569.6453013746841 38.955 0.1144 3634 +3636 2 -58.570654589804775 -567.5466637290624 39.3904 0.1144 3635 +3637 2 -59.331396368680814 -566.9409985931043 39.7942 0.1144 3636 +3638 2 -60.05047555718809 -565.6235391859384 40.1478 0.1144 3637 +3639 2 -60.61393320614134 -563.6491225825976 40.9517 0.1144 3638 +3640 2 -30.368454536514584 -556.5057673147908 45.2816 0.1144 3417 +3641 2 -30.829655514479114 -557.7185534216974 45.4331 0.1144 3640 +3642 2 -30.99158264776254 -558.8472510983607 45.5316 0.1144 3641 +3643 2 -30.88286042094034 -560.2992265323159 45.5213 0.1144 3642 +3644 2 -30.655467162709748 -561.805869891012 45.355 0.1144 3643 +3645 2 -30.556492560367076 -562.9986111740278 45.0246 0.1144 3644 +3646 2 -30.665710529563185 -564.354718956607 44.6102 0.1144 3645 +3647 2 -30.682613826715013 -565.6617845119847 44.238 0.1144 3646 +3648 2 -30.621342310874418 -567.0128843249117 43.9592 0.1144 3647 +3649 2 -30.643684320178473 -568.3720019591868 43.7738 0.1144 3648 +3650 2 -30.716472029163135 -569.6293107003978 43.6657 0.1144 3649 +3651 2 -30.805686484999534 -570.8736128888756 43.6072 0.1144 3650 +3652 2 -31.028752754059724 -571.9609737100456 43.5655 0.1144 3651 +3653 2 -31.501942096897352 -573.0142792713684 43.5184 0.1144 3652 +3654 2 -32.07537626807173 -574.0168313249503 43.4585 0.1144 3653 +3655 2 -32.64285926770992 -575.1246774790606 43.3726 0.1144 3654 +3656 2 -33.347947668265114 -575.6867976013035 43.23 0.1144 3655 +3657 2 -34.233131317072115 -577.1008027129114 43.0363 0.1144 3656 +3658 2 -35.24741229745105 -577.9564864883467 42.8369 0.1144 3657 +3659 2 -36.33770305864483 -577.5851034131977 42.6642 0.1144 3658 +3660 2 -37.41871209925743 -578.7071207170311 42.5354 0.1144 3659 +3661 2 -38.4135165342284 -578.6543045114724 42.4609 0.1144 3660 +3662 2 -39.35244252026227 -579.4752845440905 42.4388 0.1144 3661 +3663 2 -40.23561700197616 -580.8643995593902 42.4609 0.1144 3662 +3664 2 -40.92929089132234 -581.2483688057386 42.5186 0.1144 3663 +3665 2 -41.539251793688116 -582.0579776837378 42.6098 0.1144 3664 +3666 2 -42.31153369255375 -583.5688454951735 42.7339 0.1144 3665 +3667 2 -41.53037880170488 -584.0328448133589 40.6101 0.1144 3666 +3668 2 -40.73894622960539 -585.4008112617141 39.8566 0.1144 3667 +3669 2 -39.792410132152135 -586.2056668645107 39.0068 0.1144 3668 +3670 2 -38.9642288107284 -585.9638869717189 37.9795 0.1144 3669 +3671 2 -38.50358337473123 -586.6816793295168 36.7814 0.1144 3670 +3672 2 -38.63740226972695 -587.8509917137441 35.7742 0.1144 3671 +3673 2 -38.69383969719765 -588.9051118022343 33.6591 0.1144 3672 +3674 2 -43.08642893010812 -584.1906441425124 42.9117 0.1144 3666 +3675 2 -43.59114201354631 -585.2331415751604 43.1917 0.1144 3674 +3676 2 -43.692981713222515 -586.4770657799363 43.5728 0.1144 3675 +3677 2 -44.26629226086212 -587.3689130546588 44.0194 0.1144 3676 +3678 2 -45.26737787289909 -587.6305469407878 44.4531 0.1144 3677 +3679 2 -46.3229681503189 -587.927654537683 44.8353 0.1144 3678 +3680 2 -47.38318419686094 -589.1375113790016 45.1618 0.1144 3679 +3681 2 -48.34670737953266 -589.4397246058884 45.5204 0.1144 3680 +3682 2 -48.99070875461299 -590.64114338282 45.8973 0.1144 3681 +3683 2 -49.37162778608427 -591.6488031128542 46.2924 0.1144 3682 +3684 2 -49.68952139991431 -592.749548802936 46.7695 0.1144 3683 +3685 2 -50.27200002795837 -593.5410147779045 47.229 0.1144 3684 +3686 2 -51.02095951772621 -594.6560964337307 47.6204 0.1144 3685 +3687 2 -51.9462365063536 -595.484488221206 47.9816 0.1144 3686 +3688 2 -52.87253099435156 -596.4971549564211 48.3546 0.1144 3687 +3689 2 -53.64646307657126 -597.384057669367 48.6738 0.1144 3688 +3690 2 -54.69787226018188 -597.3989379902207 48.9112 0.1144 3689 +3691 2 -55.57246818892444 -598.0964317598888 49.1462 0.1144 3690 +3692 2 -56.609714090090065 -599.364480861843 49.3394 0.1144 3691 +3693 2 -57.57529705472892 -600.2900825321962 49.4732 0.1144 3692 +3694 2 -58.602773403449945 -600.0568473837973 49.5628 0.1144 3693 +3695 2 -59.53304782785189 -601.0746849804834 49.6311 0.1144 3694 +3696 2 -60.086528070934236 -601.2661743455999 49.6916 0.1144 3695 +3697 2 -60.64000831401658 -602.6439707401123 49.7504 0.1144 3696 +3698 2 -60.232475950308725 -603.1923846740001 49.7288 0.1144 3697 +3699 2 -59.7016807955326 -605.0384465185361 51.3747 0.1144 3698 +3700 2 -59.24978484994407 -606.7550608601389 52.0565 0.1144 3699 +3701 2 -58.832435619889026 -606.9175974602326 53.0435 0.1144 3700 +3702 2 -58.73277043359098 -607.21537962691 54.3074 0.1144 3701 +3703 2 -59.026679102229515 -608.6931004568775 55.4436 0.1144 3702 +3704 2 -59.136161817918634 -610.1357233160855 56.3928 0.1144 3703 +3705 2 -59.013534800948406 -611.4019585391158 57.2228 0.1144 3704 +3706 2 -59.00524139067139 -612.720884696123 57.9919 0.1144 3705 +3707 2 -59.54859981758761 -613.4679444709036 58.6617 0.1144 3706 +3708 2 -60.426377714093285 -613.6636662431929 59.3561 0.1144 3707 +3709 2 -61.38043163333451 -614.8572759253295 60.1465 0.1144 3708 +3710 2 -62.37450588373561 -616.0478517898865 60.9874 0.1144 3709 +3711 2 -63.3667367175224 -615.2451920745536 61.8638 0.1144 3710 +3712 2 -64.3305846811341 -616.5662781880055 62.7687 0.1144 3711 +3713 2 -65.24458645585621 -616.0147418772924 63.6222 0.1144 3712 +3714 2 -66.29318580417745 -617.2210432833623 64.4487 0.1144 3713 +3715 2 -67.28818261602814 -617.7238865996308 65.3682 0.1144 3714 +3716 2 -67.7399424900222 -617.3283433102972 66.5006 0.1144 3715 +3717 2 -67.60328303761185 -618.1405804100146 69.44 0.1144 3716 +3718 2 -61.48805288222226 -603.7329679349268 49.8252 0.1144 3697 +3719 2 -62.513578894169704 -605.0249906902781 49.931 0.1144 3718 +3720 2 -63.51204640874965 -604.3797984246954 50.0864 0.1144 3719 +3721 2 -64.47287293048745 -605.7585572095712 50.2992 0.1144 3720 +3722 2 -65.46302261812684 -605.1204167081801 50.5593 0.1144 3721 +3723 2 -66.4438973052027 -606.4397605360718 50.89 0.1144 3722 +3724 2 -67.23629262844307 -607.8404542669994 51.3408 0.1144 3723 +3725 2 -67.74220226617085 -609.2188513142984 51.844 0.1144 3724 +3726 2 -68.0860139927692 -609.7907296325106 52.3099 0.1144 3725 +3727 2 -68.47138408913237 -610.4530075339075 52.7164 0.1144 3726 +3728 2 -69.14011001354709 -612.0038262589469 53.0869 0.1144 3727 +3729 2 -70.06634446709806 -612.7367166003161 53.4369 0.1144 3728 +3730 2 -71.02547242434157 -613.9232790633067 53.7673 0.1144 3729 +3731 2 -71.90886103767437 -613.6382457507898 54.1355 0.1144 3730 +3732 2 -72.3653202169004 -614.8056718368196 54.6571 0.1144 3731 +3733 2 -72.09922101695973 -615.7569782434399 55.2465 0.1144 3732 +3734 2 -72.93346930856816 -617.1836914019425 55.8998 0.1144 3733 +3735 2 -73.60727169805577 -617.5006915245051 56.6404 0.1144 3734 +3736 2 -74.4293696034742 -618.8483285264779 57.365 0.1144 3735 +3737 2 -75.27802502566192 -619.5457309009778 57.9897 0.1144 3736 +3738 2 -76.14741461160077 -621.0187311019156 58.5511 0.1144 3737 +3739 2 -77.06627974938321 -620.4568575114546 59.0554 0.1144 3738 +3740 2 -78.0268310754486 -621.8424845878374 59.5406 0.1144 3739 +3741 2 -78.95424877884894 -621.9680754524434 60.0804 0.1144 3740 +3742 2 -79.81437128836906 -622.901017883317 60.7118 0.1144 3741 +3743 2 -80.64998561390773 -623.9468180698569 61.4104 0.1144 3742 +3744 2 -81.4146244967605 -625.2604298307396 62.1102 0.1144 3743 +3745 2 -82.05660775099625 -625.0561824809479 62.7628 0.1144 3744 +3746 2 -82.69644221060858 -626.5927033533578 63.3822 0.1144 3745 +3747 2 -83.39319860588208 -628.0185752284633 63.9839 0.1144 3746 +3748 2 -84.11048950292924 -628.4437412984072 64.5708 0.1144 3747 +3749 2 -84.17675368214148 -629.7625115700125 65.3027 0.1144 3748 +3750 2 -83.36588113676171 -631.0347949428221 66.2116 0.1144 3749 +3751 2 -83.04645053792952 -632.03888703594 67.2988 0.1144 3750 +3752 2 -83.18208163759628 -633.335719874407 68.4541 0.1144 3751 +3753 2 -83.5997728794159 -634.0668793316916 69.613 0.1144 3752 +3754 2 -84.25328578046538 -634.8678402440497 70.7249 0.1144 3753 +3755 2 -85.16907633646554 -635.5628630072172 71.7119 0.1144 3754 +3756 2 -86.15818253738088 -636.8638378404424 72.5648 0.1144 3755 +3757 2 -87.21861840595288 -635.8875474262368 73.3426 0.1144 3756 +3758 2 -88.28362793334517 -636.8782641977068 74.0692 0.1144 3757 +3759 2 -89.33950179640384 -637.8411724544158 74.7552 0.1144 3758 +3760 2 -90.38513227897448 -637.1270407859353 75.3718 0.1144 3759 +3761 2 -91.38584995352093 -638.1839776736066 75.8797 0.1144 3760 +3762 2 -92.38389219571877 -637.7586722796528 76.2958 0.1144 3761 +3763 2 -93.43948247313857 -638.9602428341574 76.601 0.1144 3762 +3764 2 -94.51003446746566 -639.9537695044266 76.816 0.1144 3763 +3765 2 -95.60186849185423 -639.4199166758626 76.9821 0.1144 3764 +3766 2 -96.73897191856648 -639.5229157139634 77.1638 0.1144 3765 +3767 2 -97.87483746009323 -638.7412666752165 77.3685 0.1144 3766 +3768 2 -99.01341636592932 -638.8344227713037 77.5866 0.1144 3767 +3769 2 -100.15429231744409 -639.6007851527543 77.8112 0.1144 3768 +3770 2 -101.29525578618737 -638.8965719113565 78.0405 0.1144 3769 +3771 2 -102.39963831659337 -639.4545918735475 78.2516 0.1144 3770 +3772 2 -103.4687237855481 -640.2692597194402 78.4454 0.1144 3771 +3773 2 -104.52907573045871 -639.912547005601 78.654 0.1144 3772 +3774 2 -105.55476226829525 -640.914492210446 78.9317 0.1144 3773 +3775 2 -106.5798682324502 -640.7521779384738 79.2747 0.1144 3774 +3776 2 -107.63474026990737 -641.5016701064337 80.1402 0.1144 3775 +3777 2 -108.69916922361804 -641.8413118802503 80.745 0.1144 3776 +3778 2 -109.78951405636306 -641.4653450805229 81.3826 0.1144 3777 +3779 2 -110.85933959528205 -642.1127695454761 82.0212 0.1144 3778 +3780 2 -111.90339140773145 -641.7413263245393 82.6454 0.1144 3779 +3781 2 -112.93940614372904 -642.9689470238987 83.2451 0.1144 3780 +3782 2 -113.973915218266 -643.3549863294263 83.8048 0.1144 3781 +3783 2 -115.00754912051823 -643.4055039963157 84.3371 0.1144 3782 +3784 2 -116.05837922587513 -644.6293352125597 84.8305 0.1144 3783 +3785 2 -117.12925600114227 -645.1456794146782 85.2718 0.1144 3784 +3786 2 -118.2069215184962 -644.8816358072518 85.6727 0.1144 3785 +3787 2 -119.28510505005043 -645.1765096608634 86.0566 0.1144 3786 +3788 2 -120.36371907857638 -645.3876867677418 86.4444 0.1144 3787 +3789 2 -121.40571530404188 -646.1994099441241 86.9478 0.1144 3788 +3790 2 -122.41169282915818 -646.5054343472884 87.6117 0.1144 3789 +3791 2 -123.41943893657374 -645.9502679471644 88.3831 0.1144 3790 +3792 2 -124.40679595812072 -646.6530203777609 89.1461 0.1144 3791 +3793 2 -125.38203380542097 -646.4659670717213 89.8517 0.1144 3792 +3794 2 -126.35823434223445 -647.6239162466544 90.4949 0.1144 3793 +3795 2 -127.33443487904793 -648.995201710904 91.0734 0.1144 3794 +3796 2 -128.30958520911972 -648.641447265124 91.604 0.1144 3795 +3797 2 -129.29595714736695 -649.6795945287098 92.1105 0.1144 3796 +3798 2 -130.2971980607033 -650.7031059713663 92.6117 0.1144 3797 +3799 2 -131.30469552358514 -650.516384122441 93.1165 0.1144 3798 +3800 2 -132.2126366815774 -651.7350493641056 93.6513 0.1144 3799 +3801 2 -133.04092335247034 -652.3046614976238 94.227 0.1144 3800 +3802 2 -133.85436969625667 -652.6684490222248 94.836 0.1144 3801 +3803 2 -134.66743392421148 -654.163518157327 95.4668 0.1144 3802 +3804 2 -135.4828447831127 -655.1662469113608 96.1089 0.1144 3803 +3805 2 -136.4862189528983 -654.9230952258606 96.7361 0.1144 3804 +3806 2 -137.5769823380079 -655.893115767854 97.3372 0.1144 3805 +3807 2 -138.6687084126307 -654.9220802098528 97.9138 0.1144 3806 +3808 2 -139.75880370683026 -655.9958170995568 98.4701 0.1144 3807 +3809 2 -140.84956709193992 -656.5688140878483 99.0102 0.1144 3808 +3810 2 -141.94129316656276 -656.1007023485802 99.5372 0.1144 3809 +3811 2 -143.03138846076234 -657.072206668293 100.0527 0.1144 3810 +3812 2 -144.12215184587194 -657.7580372812074 100.5533 0.1144 3811 +3813 2 -145.21387792049475 -656.9772460037334 101.0321 0.1144 3812 +3814 2 -146.3039732146944 -657.6657010164314 101.4812 0.1144 3813 +3815 2 -147.39473659980402 -657.3819456638957 101.8942 0.1144 3814 +3816 2 -148.48588210074527 -658.0343067430773 102.2675 0.1144 3815 +3817 2 -149.3367620257725 -659.4042768963444 102.5251 0.1144 3816 +3818 2 -149.98208880326692 -659.59254812624 102.6418 0.1144 3817 +3819 2 -150.5924854271942 -660.5786388729883 102.6556 0.1144 3818 +3820 2 -151.12973738127474 -662.213617975555 102.657 0.1144 3819 +3821 2 -151.62504362516907 -663.0789541273184 102.6962 0.1144 3820 +3822 2 -152.11424862081742 -663.4987774911169 102.7902 0.1144 3821 +3823 2 -152.60499687966055 -665.0585355696885 102.9493 0.1144 3822 +3824 2 -153.39415290024627 -666.5893118762464 103.196 0.1144 3823 +3825 2 -154.31249107007702 -668.0586111190067 103.5194 0.1144 3824 +3826 2 -155.23808761505472 -667.4564531223319 103.8957 0.1144 3825 +3827 2 -156.16412883534548 -668.9137166291019 104.3101 0.1144 3826 +3828 2 -156.9420829809132 -668.8204490745507 104.7612 0.1144 3827 +3829 2 -157.64076997980283 -669.9992545842331 105.2439 0.1144 3828 +3830 2 -158.32948001464646 -671.5982444069742 105.7501 0.1144 3829 +3831 2 -159.0187222420315 -673.1981307484524 106.2762 0.1144 3830 +3832 2 -159.7833559002945 -673.8401754810595 106.8295 0.1144 3831 +3833 2 -160.8004789951437 -673.6819850738484 107.4427 0.1144 3832 +3834 2 -161.87458522530233 -674.248582129515 108.0954 0.1144 3833 +3835 2 -162.94781628317622 -674.4430007914596 108.757 0.1144 3834 +3836 2 -164.02244052753508 -674.1703828843774 109.3996 0.1144 3835 +3837 2 -165.02134273407003 -674.3004892938634 109.9543 0.1144 3836 +3838 2 -165.52894944086424 -674.984898543058 110.2984 0.1144 3837 +3839 2 -166.00942058224177 -676.6175812030823 110.4715 0.1144 3838 +3840 2 -166.48834846042453 -678.1197910292244 110.5266 0.1144 3839 +3841 2 -167.26487401258072 -679.5298579165483 110.5577 0.1144 3840 +3842 2 -168.25522738265983 -679.7034994117988 110.6378 0.1144 3841 +3843 2 -169.2461129452803 -680.5488830221027 110.7781 0.1144 3842 +3844 2 -170.23637879813086 -680.3434042637039 110.9774 0.1144 3843 +3845 2 -171.14384779802876 -681.2404628575182 111.4459 0.1144 3844 +3846 2 -172.09125213689222 -682.4081881809585 111.8678 0.1144 3845 +3847 2 -173.03869561184402 -683.3945203609316 112.0543 0.1144 3846 +3848 2 -173.9914079890808 -683.2215183337134 112.2646 0.1144 3847 +3849 2 -174.99836281024187 -684.6117636375524 112.4536 0.1144 3848 +3850 2 -176.04186526095293 -685.8995291979116 112.5916 0.1144 3849 +3851 2 -177.08536771166405 -685.1776795192005 112.6824 0.1144 3850 +3852 2 -178.12887016237514 -686.0649288105493 112.7305 0.1144 3851 +3853 2 -179.18012926927602 -685.7227386949464 112.7501 0.1144 3852 +3854 2 -180.29210420082075 -686.8423814131771 112.7538 0.1144 3853 +3855 2 -181.40679370080247 -687.2326963725106 112.7524 0.1144 3854 +3856 2 -182.52099938938287 -686.975304683322 112.7504 0.1144 3855 +3857 2 -183.63410649008136 -686.6318872886162 112.7476 0.1144 3856 +3858 2 -184.75064463126705 -687.1015620617851 112.7437 0.1144 3857 +3859 2 -185.87546789202202 -688.1552202003586 112.7381 0.1144 3858 +3860 2 -187.00260942704114 -687.3437812847775 112.7305 0.1144 3859 +3861 2 -188.12908287115016 -688.0473578262124 112.7196 0.1144 3860 +3862 2 -189.2555563152593 -688.9561571316826 112.7045 0.1144 3861 +3863 2 -190.38089759021454 -688.1551515869352 112.6835 0.1144 3862 +3864 2 -191.49331719707226 -689.0801978901087 112.6544 0.1144 3863 +3865 2 -192.58970025276057 -688.3659247805491 112.6132 0.1144 3864 +3866 2 -193.68661550099023 -689.312607066553 112.5547 0.1144 3865 +3867 2 -194.78458095596164 -690.3206531273447 112.4735 0.1144 3866 +3868 2 -195.88250727484473 -689.5885332419863 112.364 0.1144 3867 +3869 2 -196.96272833017434 -690.1158752015626 112.2173 0.1144 3868 +3870 2 -197.90917520411423 -690.3261320839206 111.974 0.1144 3869 +3871 2 -198.82241917589027 -691.6318584764376 111.6436 0.1144 3870 +3872 2 -199.7356240115779 -693.0723713881207 111.2432 0.1144 3871 +3873 2 -200.64169712543537 -692.4892527371501 110.8022 0.1144 3872 +3874 2 -201.48978242312091 -694.0327981801963 110.4594 0.1144 3873 +3875 2 -202.30772419247728 -695.5699890612459 110.164 0.1144 3874 +3876 2 -203.03324809879183 -696.7807510880758 109.6872 0.1144 3875 +3877 2 -203.63664903485227 -696.5525610590564 108.9892 0.1144 3876 +3878 2 -204.32724894383216 -697.734054709842 108.0649 0.1144 3877 +3879 2 -205.1108801325013 -697.9711329429106 106.9384 0.1144 3878 +3880 2 -205.70887253874628 -698.1459847488145 105.7874 0.1144 3879 +3881 2 -206.38941258962524 -699.7073790566325 104.6671 0.1144 3880 +3882 2 -207.2758127970688 -700.8468297211729 103.5126 0.1144 3881 +3883 2 -207.9062498367102 -702.3052655330735 102.4864 0.1144 3882 +3884 2 -208.70343864080078 -701.5101610921012 101.3947 0.1144 3883 +3885 2 -209.55477984655286 -702.5673753285523 100.1952 0.1144 3884 +3886 2 -210.4065031681366 -702.2085044958723 98.9044 0.1144 3885 +3887 2 -211.25778181440737 -702.709257229774 97.5615 0.1144 3886 +3888 2 -212.10897294344966 -703.8119313750641 96.2066 0.1144 3887 +3889 2 -213.07812255434865 -704.495048962448 94.8889 0.1144 3888 +3890 2 -214.0764936732109 -702.6883948143491 93.7311 0.1144 3889 +3891 2 -215.07503576714166 -702.6719433552079 92.715 0.1144 3890 +3892 2 -216.08204949388443 -702.8091036284154 91.8022 0.1144 3891 +3893 2 -217.10068364800978 -701.0489081556854 90.9572 0.1144 3892 +3894 2 -218.1211470404083 -701.0669784909762 90.1468 0.1144 3893 +3895 2 -219.1418566502699 -699.2825667981199 89.3402 0.1144 3894 +3896 2 -220.1621841442998 -699.3243402761257 88.5147 0.1144 3895 +3897 2 -221.18259915555817 -699.5204467770687 87.6686 0.1144 3896 +3898 2 -222.20292664958808 -698.1495202412452 86.8059 0.1144 3897 +3899 2 -223.17353563765153 -698.0155055520457 85.8446 0.1144 3898 +3900 2 -224.1034248561073 -697.4084275753726 84.7865 0.1144 3899 +3901 2 -225.0927176078965 -697.2563124153397 83.7094 0.1144 3900 +3902 2 -226.06914645466998 -698.6299697314564 82.7504 0.1144 3901 +3903 2 -227.04603970991394 -699.3306390151463 81.9 0.1144 3902 +3904 2 -228.0234509793582 -699.2990237627564 81.1465 0.1144 3903 +3905 2 -229.00077473157398 -700.1112902332763 80.4765 0.1144 3904 +3906 2 -229.97771636795815 -699.9799032508034 79.8633 0.1144 3905 +3907 2 -230.9540290495206 -701.3666827961309 79.2778 0.1144 3906 +3908 2 -231.93135280173638 -702.6185327326241 78.7016 0.1144 3907 +3909 2 -232.90829443812046 -702.0359922770697 78.1388 0.1144 3908 +3910 2 -233.8712422717003 -703.4556466886886 77.5844 0.1144 3909 +3911 2 -234.60831509216464 -705.0014370077247 77.047 0.1144 3910 +3912 2 -235.5741655028519 -704.9353395325751 76.5635 0.1144 3911 +3913 2 -236.6213414823513 -705.613678364227 76.1471 0.1144 3912 +3914 2 -237.66807278653775 -705.0371326075486 75.7924 0.1144 3913 +3915 2 -238.71529714717732 -706.1853895079398 75.1716 0.1144 3914 +3916 2 -170.21574106772863 -680.9995491580736 111.1869 0.1144 3844 +3917 2 -170.17213016346315 -682.4117415219753 111.4142 0.1144 3916 +3918 2 -170.1290998328793 -683.825450092811 111.6391 0.1144 3917 +3919 2 -170.03581268518627 -685.3109825061772 111.8485 0.1144 3918 +3920 2 -169.45728267000467 -687.4235370584149 112.0297 0.1144 3919 +3921 2 -168.58497965358538 -687.8890989595345 112.1705 0.1144 3920 +3922 2 -167.71600075749376 -689.472175189085 112.271 0.1144 3921 +3923 2 -166.90658083162992 -690.5080508064963 112.3181 0.1144 3922 +3924 2 -166.3010132174395 -691.3888970401551 112.2842 0.1144 3923 +3925 2 -165.69434701536733 -692.330445347897 112.177 0.1144 3924 +3926 2 -165.08781671166372 -693.1301980342945 112.0022 0.1144 3925 +3927 2 -164.48115050959154 -694.8428129507204 111.7637 0.1144 3926 +3928 2 -163.86911893425437 -696.7739064915442 111.4551 0.1144 3927 +3929 2 -163.2307831098551 -697.4940278878016 111.0228 0.1144 3928 +3930 2 -162.57667711180204 -698.5322922933842 110.4298 0.1144 3929 +3931 2 -161.92222813400562 -700.5734438374998 109.7365 0.1144 3930 +3932 2 -161.26870270963408 -701.1549178104632 109.0018 0.1144 3931 +3933 2 -160.6135856409277 -701.8424983345699 108.2802 0.1144 3932 +3934 2 -159.97541183784534 -702.4789302864926 107.6664 0.1144 3933 +3935 2 -159.39398297471817 -703.3013000675601 107.3565 0.1144 3934 +3936 2 -158.8125541115909 -705.6557251585886 107.2988 0.1144 3935 +3937 2 -158.2302109400906 -707.0269526774437 107.4304 0.1144 3936 +3938 2 -157.6488695941918 -707.8499676349294 107.693 0.1144 3937 +3939 2 -157.066860157383 -708.6711655366365 108.033 0.1144 3938 +3940 2 -156.4854796753959 -709.4944219070082 108.4012 0.1144 3939 +3941 2 -155.90413832949707 -710.5413467247477 108.7626 0.1144 3940 +3942 2 -155.32174677685666 -712.9199660395687 109.1146 0.1144 3941 +3943 2 -154.74031791372937 -714.0471974287168 109.4526 0.1144 3942 +3944 2 -154.15888905060217 -714.8709725445841 109.7706 0.1144 3943 +3945 2 -153.57754770470342 -716.5522216659455 110.0632 0.1144 3944 +3946 2 -152.99611884157616 -718.4944857434275 110.325 0.1144 3945 +3947 2 -152.36622446765205 -719.1931516975815 110.5342 0.1144 3946 +3948 2 -151.57651075698934 -719.6643951935966 110.6342 0.1144 3947 +3949 2 -150.78674866518648 -720.1228988650776 110.6498 0.1144 3948 +3950 2 -149.9954525552406 -721.9525573583719 110.6053 0.1144 3949 +3951 2 -149.20569046343772 -722.9299128106867 110.5247 0.1144 3950 +3952 2 -148.41588923554644 -723.6653778321718 110.43 0.1144 3951 +3953 2 -147.6261755248837 -725.7594955337399 110.3449 0.1144 3952 +3954 2 -146.8348310337977 -726.2534626777604 110.2909 0.1144 3953 +3955 2 -146.04511732313495 -726.7639957356545 110.2786 0.1144 3954 +3956 2 -145.25535523133203 -727.2230675601221 110.3192 0.1144 3955 +3957 2 -144.46555400344084 -729.4220392918046 110.4222 0.1144 3956 +3958 2 -143.67335523842877 -729.9203145103253 110.6843 0.1144 3957 +3959 2 -142.88158324122665 -731.0599109071933 111.1337 0.1144 3958 +3960 2 -142.0902950554259 -732.5603772832567 111.7273 0.1144 3959 +3961 2 -141.29847467708368 -733.0154274854311 112.4231 0.1144 3960 +3962 2 -140.50661516265308 -733.4583507912689 113.1816 0.1144 3961 +3963 2 -139.71479478431087 -734.1632752624098 113.9653 0.1144 3962 +3964 2 -138.92402461271033 -735.9519934609998 114.7395 0.1144 3963 +3965 2 -138.13211671713964 -736.3739376429502 115.4866 0.1144 3964 +3966 2 -137.34029633879737 -736.8849855691209 116.1947 0.1144 3965 +3967 2 -136.54847596045516 -737.2843984648375 116.846 0.1144 3966 +3968 2 -135.75665558211293 -739.3451956360575 117.4191 0.1144 3967 +3969 2 -134.96488358491084 -739.7166128398536 117.8892 0.1144 3968 +3970 2 -134.17306320656857 -741.143621519636 118.2325 0.1144 3969 +3971 2 -133.5616216244859 -742.6093024103122 118.3412 0.1144 3970 +3972 2 -133.30067992038744 -743.66701315459 118.0609 0.1144 3971 +3973 2 -133.0388239079159 -744.7250721020376 117.4648 0.1144 3972 +3974 2 -132.71510902427696 -745.6225934701388 116.5399 0.1144 3973 +3975 2 -132.3865467815734 -746.5810119614158 115.3765 0.1144 3974 +3976 2 -132.05934352255576 -747.5488056824023 114.0726 0.1144 3975 +3977 2 -131.7317439693653 -748.3958518469269 112.7213 0.1144 3976 +3978 2 -131.40304582829313 -749.2391235233625 111.3935 0.1144 3977 +3979 2 -131.3816778756898 -750.270055438858 110.0935 0.1144 3978 +3980 2 -131.39615811418858 -751.3257507769093 108.8598 0.1144 3979 +3981 2 -131.361517123778 -752.6593791228344 107.9652 0.1144 3980 +3982 2 -131.32691526945567 -753.9931181691699 107.3394 0.1144 3981 +3983 2 -131.25700264116244 -755.2888994823448 106.8819 0.1144 3982 +3984 2 -131.15432432769455 -756.5503405330321 106.5128 0.1144 3983 +3985 2 -131.0506349435734 -757.8118828944198 106.2062 0.1144 3984 +3986 2 -130.9479566301056 -759.0745593090936 105.9344 0.1144 3985 +3987 2 -130.75592775157577 -760.4525620823686 105.6905 0.1144 3986 +3988 2 -130.07481909561895 -762.3683522142675 105.5807 0.1144 3987 +3989 2 -129.3937979568907 -763.0019845339439 105.5883 0.1144 3988 +3990 2 -128.71215710839252 -764.1251320153582 105.6896 0.1144 3989 +3991 2 -128.03209865917748 -766.2011465355811 105.8568 0.1144 3990 +3992 2 -127.35112590158933 -766.8353062721467 106.0632 0.1144 3991 +3993 2 -126.67001724563258 -767.4693634322359 106.286 0.1144 3992 +3994 2 -125.98942660387607 -768.1021661008674 106.5072 0.1144 3993 +3995 2 -125.30831794791932 -769.4320846452918 106.7262 0.1144 3994 +3996 2 -124.62729680919105 -771.3045885211238 106.9418 0.1144 3995 +3997 2 -123.94728674111613 -771.9393174998108 107.1529 0.1144 3996 +3998 2 -123.26559751147784 -772.885500281224 107.3576 0.1144 3997 +3999 2 -122.58462475388964 -773.7830202172955 107.5533 0.1144 3998 +4000 2 -121.90456630467459 -774.966012452374 107.7367 0.1144 3999 +4001 2 -121.22345764871787 -776.4111020328057 107.9047 0.1144 4000 +4002 2 -120.54190431744816 -777.0444803692386 108.0492 0.1144 4001 +4003 2 -119.86184586823305 -778.5962779377991 108.1472 0.1144 4002 +4004 2 -119.1807855934164 -780.2500726694541 108.2029 0.1144 4003 +4005 2 -118.49976445468819 -780.8851964244391 108.2211 0.1144 4004 +4006 2 -117.76388834810476 -781.3679495762339 108.1766 0.1144 4005 +4007 2 -116.754494253438 -781.5446981776406 107.9336 0.1144 4006 +4008 2 -115.74456796622982 -782.767439288126 106.962 0.1144 4007 +4009 2 -106.66104728048857 -641.3418763612149 79.6482 0.1144 3775 +4010 2 -106.82171726125037 -642.5062001820417 81.625 0.1144 4009 +4011 2 -106.70640744974655 -643.8410398289706 82.4261 0.1144 4010 +4012 2 -106.50520377079484 -645.2210491589503 83.3361 0.1144 4011 +4013 2 -106.28042338543156 -646.5572985731717 84.4024 0.1144 4012 +4014 2 -106.00948115700409 -647.3707690382197 85.7973 0.1144 4013 +4015 2 -105.72891809300873 -648.4287745610543 87.4768 0.1144 4014 +4016 2 -105.44998580943657 -649.5026881509775 89.348 0.1144 4015 +4017 2 -105.14494876425867 -650.4884714169083 91.3464 0.1144 4016 +4018 2 -104.79781443675695 -651.1072483455949 93.3892 0.1144 4017 +4019 2 -104.70487646267091 -651.5101858673638 95.5044 0.1144 4018 +4020 2 -104.89080411695124 -652.5395869238663 97.5542 0.1144 4019 +4021 2 -105.30021798882547 -653.8087209990194 99.3485 0.1144 4020 +4022 2 -105.75730462744534 -654.2754634787774 101.0411 0.1144 4021 +4023 2 -106.22124722843795 -654.9640174477894 102.8289 0.1144 4022 +4024 2 -106.35980962845709 -654.9982923576077 104.7838 0.1144 4023 +4025 2 -106.97701989059064 -654.7482850569373 106.7296 0.1144 4024 +4026 2 -107.62856941902528 -654.5297029876888 108.5958 0.1144 4025 +4027 2 -107.5712851006898 -654.5521836520139 110.4818 0.1144 4026 +4028 2 -107.60044354571923 -654.6634627792271 114.4405 0.1144 4027 +4029 2 12.495967070904811 -530.714366322752 28.6936 0.1144 3095 +4030 2 13.35002694081819 -530.9836811217793 27.571 0.1144 4029 +4031 2 14.286945057964381 -531.1484608218393 27.0839 0.1144 4030 +4032 2 15.151664626996414 -533.0308922130158 26.5712 0.1144 4031 +4033 2 15.680881111651225 -533.9453461828917 26.1357 0.1144 4032 +4034 2 16.091152864653196 -534.908506752409 25.7882 0.1144 4033 +4035 2 16.337010393510845 -536.0336270546276 25.4649 0.1144 4034 +4036 2 16.29953345849711 -537.3616536264223 25.0939 0.1144 4035 +4037 2 16.48672915630336 -538.6561040067398 24.6162 0.1144 4036 +4038 2 16.311704155264252 -539.7869981815334 23.9604 0.1144 4037 +4039 2 15.561278530683303 -540.2904588501528 23.0655 0.1144 4038 +4040 2 14.872504365668235 -540.0202444899248 21.9758 0.1144 4039 +4041 2 14.389016541184937 -540.2902482719261 21.1096 0.1144 4040 +4042 2 13.99190835680021 -541.4952980127975 20.4102 0.1144 4041 +4043 2 14.042297553973185 -542.7996045198821 19.8617 0.1144 4042 +4044 2 14.277283213342571 -544.1252325864306 19.4754 0.1144 4043 +4045 2 14.177941716750361 -545.4395165769577 19.2511 0.1144 4044 +4046 2 14.159823957806019 -546.7764105134768 19.1306 0.1144 4045 +4047 2 14.444853798093497 -548.166301159809 19.0433 0.1144 4046 +4048 2 15.282872493663959 -549.9721290918549 18.9748 0.1144 4047 +4049 2 15.757093217731992 -550.8698200169435 18.9077 0.1144 4048 +4050 2 16.144506970106576 -551.8150886976828 18.9095 0.1144 4049 +4051 2 16.930759788172075 -553.425041370525 18.863 0.1144 4050 +4052 2 16.978514883892373 -554.7185089070188 18.621 0.1144 4051 +4053 2 16.701620994110776 -555.5914914718384 18.1827 0.1144 4052 +4054 2 16.652035334029613 -556.7634821445828 17.6057 0.1144 4053 +4055 2 16.60084501647355 -558.0047932054334 17.0164 0.1144 4054 +4056 2 16.81365643989455 -559.5691848821975 16.4831 0.1144 4055 +4057 2 16.996769010299396 -560.928250205223 16.0149 0.1144 4056 +4058 2 17.011433639905064 -562.1639556877308 15.5585 0.1144 4057 +4059 2 16.967321768676058 -563.4516575340747 15.1645 0.1144 4058 +4060 2 16.73694874332874 -564.6204084091878 14.9218 0.1144 4059 +4061 2 16.28343290832114 -565.3346537626794 14.8179 0.1144 4060 +4062 2 15.819184831355741 -566.6886551185906 14.8491 0.1144 4061 +4063 2 15.818390492617851 -567.7919270493452 15.1093 0.1144 4062 +4064 2 16.32582992950882 -568.5747068453081 15.5967 0.1144 4063 +4065 2 16.523987073244683 -569.8653713000556 16.0609 0.1144 4064 +4066 2 16.388842775834945 -570.972381950677 16.2681 0.1144 4065 +4067 2 16.37952618941089 -572.1726188055615 16.1722 0.1144 4066 +4068 2 16.230471877263454 -573.2745736272499 15.8868 0.1144 4067 +4069 2 16.223820739830046 -574.6076554012722 15.5529 0.1144 4068 +4070 2 16.347871125622127 -576.0695439945422 15.2341 0.1144 4069 +4071 2 16.64594998670372 -577.6565921088143 14.9672 0.1144 4070 +4072 2 16.902979538469218 -578.999438407008 14.749 0.1144 4071 +4073 2 17.012877090995723 -580.2371744095254 14.5244 0.1144 4072 +4074 2 17.009714328940994 -581.5468388117597 14.2647 0.1144 4073 +4075 2 17.284460331745393 -582.9088426788838 13.9739 0.1144 4074 +4076 2 17.682421172668214 -584.335724576633 13.6018 0.1144 4075 +4077 2 17.304714855081855 -585.2163075330953 13.1653 0.1144 4076 +4078 2 17.039929690367643 -586.3332690276229 12.805 0.1144 4077 +4079 2 17.101883475459445 -587.7071423283096 12.5438 0.1144 4078 +4080 2 17.120789233321347 -589.0535520353392 12.3314 0.1144 4079 +4081 2 17.225853605124286 -590.4535106407958 12.1715 0.1144 4080 +4082 2 17.87106568883887 -591.6995862376239 12.118 0.1144 4081 +4083 2 18.583734521929074 -593.2522530220923 12.1039 0.1144 4082 +4084 2 18.140924805930993 -594.1077325416722 12.0851 0.1144 4083 +4085 2 17.344085137816208 -594.7745728755165 11.9702 0.1144 4084 +4086 2 16.65750014397645 -595.7306022552095 11.8538 0.1144 4085 +4087 2 15.889343033634873 -596.1978301237864 11.8721 0.1144 4086 +4088 2 15.977300312953005 -597.1068997855815 11.7179 0.1144 4087 +4089 2 15.989722706737268 -598.4610918007461 11.6176 0.1144 4088 +4090 2 15.64088037117186 -599.8337599851657 11.5935 0.1144 4089 +4091 2 15.002342335764325 -601.3552541270296 11.5869 0.1144 4090 +4092 2 14.516138913237754 -602.5076145806438 11.4842 0.1144 4091 +4093 2 14.474728461710967 -603.6821700305994 11.3674 0.1144 4092 +4094 2 14.973713900808093 -604.7947027756113 11.4479 0.1144 4093 +4095 2 15.415534915942814 -605.554335369231 11.758 0.1144 4094 +4096 2 15.772615927190103 -606.524809473809 12.1334 0.1144 4095 +4097 2 16.53081634643162 -607.7777429013731 12.4569 0.1144 4096 +4098 2 17.26998909056138 -609.0483853774888 12.7736 0.1144 4097 +4099 2 17.41932892560034 -610.4949425943071 13.0733 0.1144 4098 +4100 2 17.322580898944707 -611.7582764098197 13.3336 0.1144 4099 +4101 2 17.44260549222696 -613.21408896556 13.584 0.1144 4100 +4102 2 17.57902262956199 -614.5495270162612 13.909 0.1144 4101 +4103 2 17.427956916587476 -615.8618923195207 14.3785 0.1144 4102 +4104 2 17.245257687592186 -617.021033679917 14.9278 0.1144 4103 +4105 2 17.40769342913751 -618.4447468890219 15.6488 0.1144 4104 +4106 2 17.685394119351386 -619.545091462157 16.5343 0.1144 4105 +4107 2 17.395921871442255 -620.7497341653909 17.5847 0.1144 4106 +4108 2 16.70251632215617 -620.9348807656673 18.7361 0.1144 4107 +4109 2 16.0158082685667 -621.7181190125468 19.9292 0.1144 4108 +4110 2 15.706080443718108 -622.7586905809976 21.1703 0.1144 4109 +4111 2 16.2604664832469 -624.0145372448377 22.2776 0.1144 4110 +4112 2 16.015139490616278 -625.1374394785868 23.3105 0.1144 4111 +4113 2 15.447126960360919 -625.9617643151375 24.4088 0.1144 4112 +4114 2 16.30692625963117 -626.3543691176069 25.3322 0.1144 4113 +4115 2 16.9897566121748 -627.672824965302 26.0738 0.1144 4114 +4116 2 16.943849705471607 -628.9271609928717 26.7382 0.1144 4115 +4117 2 16.7622438397685 -630.0433464961973 27.3028 0.1144 4116 +4118 2 16.84743624589146 -631.4822276679591 27.7572 0.1144 4117 +4119 2 16.249247343045866 -632.4994368159696 28.1173 0.1144 4118 +4120 2 15.346558383963199 -633.4356183131688 28.3982 0.1144 4119 +4121 2 14.639814575464271 -634.9292622614283 28.7056 0.1144 4120 +4122 2 14.723556384948296 -635.0866717623438 28.9523 0.1144 4121 +4123 2 15.455263342329658 -635.6299366897201 29.181 0.1144 4122 +4124 2 16.465143209646996 -636.1829082100865 29.4367 0.1144 4123 +4125 2 17.4407312977918 -637.5425633568234 29.7282 0.1144 4124 +4126 2 17.927529914166 -638.6973224117942 30.0574 0.1144 4125 +4127 2 17.900759098161785 -639.9884018858753 30.4506 0.1144 4126 +4128 2 17.618152795983335 -641.1681853775721 30.8921 0.1144 4127 +4129 2 17.214473730292454 -642.5413310094735 31.2948 0.1144 4128 +4130 2 16.920716633791486 -643.4767934046695 31.6226 0.1144 4129 +4131 2 16.898737337388297 -644.8064065190208 31.871 0.1144 4130 +4132 2 16.85910265399953 -646.119936299993 32.0244 0.1144 4131 +4133 2 16.507496339250665 -647.0263234281199 32.0776 0.1144 4132 +4134 2 16.180512878266526 -648.4034408358759 32.0421 0.1144 4133 +4135 2 16.486545357959955 -649.6040028823008 31.9063 0.1144 4134 +4136 2 16.76420588247896 -651.2050525760183 31.7122 0.1144 4135 +4137 2 16.6503815470915 -652.3673019675688 31.4656 0.1144 4136 +4138 2 16.837986377689447 -653.7358109300864 31.0915 0.1144 4137 +4139 2 17.582712503754735 -655.0508794160751 30.8182 0.1144 4138 +4140 2 17.512688873212397 -655.300001583571 28.763 0.1144 4139 +4141 2 17.242707814873782 -656.7906016393797 28.3262 0.1144 4140 +4142 2 17.326447000064732 -658.0244285567647 28.1218 0.1144 4141 +4143 2 17.531998552910935 -659.1819115505904 27.848 0.1144 4142 +4144 2 17.7908804750422 -660.4758288440757 27.5812 0.1144 4143 +4145 2 18.06435990575207 -661.7708978027158 27.3605 0.1144 4144 +4146 2 17.980921917221607 -663.1074970634227 27.2306 0.1144 4145 +4147 2 17.654770802198442 -664.4123404071845 27.177 0.1144 4146 +4148 2 17.158666123841826 -665.8537314034821 27.1553 0.1144 4147 +4149 2 16.73463128106971 -666.4974599368117 27.1308 0.1144 4148 +4150 2 16.502332876695917 -667.4648301278519 27.0483 0.1144 4149 +4151 2 15.787945586362696 -668.4248461300108 26.8927 0.1144 4150 +4152 2 14.79028023540684 -669.6101770580754 26.685 0.1144 4151 +4153 2 13.713891739326755 -670.056801167779 26.483 0.1144 4152 +4154 2 13.158269286043677 -670.2553634498008 26.3179 0.1144 4153 +4155 2 13.359142959465743 -671.8891624545208 26.1534 0.1144 4154 +4156 2 13.261552137669781 -673.0802180175676 25.9785 0.1144 4155 +4157 2 13.109016170161127 -674.2653469582749 25.8385 0.1144 4156 +4158 2 12.530670254786145 -675.8225765109748 25.7626 0.1144 4157 +4159 2 13.002965096375249 -676.0227723973992 25.8331 0.1144 4158 +4160 2 13.760693357522356 -678.0628649655205 25.9988 0.1144 4159 +4161 2 14.21689075711447 -679.38106823159 26.3218 0.1144 4160 +4162 2 14.382862422794744 -679.2691769688008 25.8621 0.1144 4161 +4163 2 15.219907904410334 -678.4665276327794 27.5547 0.1144 4162 +4164 2 16.24786274068414 -678.4936527846928 28.2341 0.1144 4163 +4165 2 17.280747694482926 -679.9927511192782 28.9226 0.1144 4164 +4166 2 18.33888562336452 -679.6211908857831 29.6738 0.1144 4165 +4167 2 19.295047780975423 -681.1783421045249 30.4368 0.1144 4166 +4168 2 20.361341087290242 -680.8326443332547 31.1245 0.1144 4167 +4169 2 21.465747078720256 -680.6093806608368 31.6949 0.1144 4168 +4170 2 22.57310000793578 -681.875696097655 32.1782 0.1144 4169 +4171 2 23.699120424396597 -681.4096711660166 32.5595 0.1144 4170 +4172 2 24.84019753331671 -680.8258856081396 32.7734 0.1144 4171 +4173 2 25.872251636582334 -682.5244629757312 32.8462 0.1144 4172 +4174 2 26.90329466919468 -682.824957745107 32.8252 0.1144 4173 +4175 2 27.934816579918945 -684.3534625705294 32.7452 0.1144 4174 +4176 2 28.96682230204445 -684.2534348255261 32.48 0.1144 4175 +4177 2 13.945564389978472 -680.0326218773586 26.7673 0.1144 4161 +4178 2 13.694909664743378 -681.058080215761 27.4373 0.1144 4177 +4179 2 14.136312127513435 -682.345798000771 28.2545 0.1144 4178 +4180 2 14.418038572605909 -682.8800205626605 29.3479 0.1144 4179 +4181 2 14.258314112160491 -684.0503717424942 30.5054 0.1144 4180 +4182 2 13.994692756733684 -684.9229758774806 31.4552 0.1144 4181 +4183 2 14.347006875900504 -686.0211524411068 32.242 0.1144 4182 +4184 2 14.714385437150597 -686.9096893642264 32.9778 0.1144 4183 +4185 2 14.469791794466687 -688.387548056945 33.5163 0.1144 4184 +4186 2 13.92255042828043 -689.0098217348647 35.2629 0.1144 4185 +4187 2 13.085362521615352 -688.3990147580361 36.9771 0.1144 4186 +4188 2 12.763168483388199 -689.5653096923324 37.7468 0.1144 4187 +4189 2 11.883264050450848 -690.8537195126396 38.5392 0.1144 4188 +4190 2 10.921230953434375 -689.8691160384019 39.3672 0.1144 4189 +4191 2 9.797996346158627 -690.6706575602432 40.3908 0.1144 4190 +4192 2 14.482849534158717 -689.2035627703289 33.9032 0.1144 4185 +4193 2 14.612147923877203 -690.430913057648 34.1698 0.1144 4192 +4194 2 14.678985504566612 -691.6682799613843 34.2199 0.1144 4193 +4195 2 14.20927781709024 -693.127610393022 34.1085 0.1144 4194 +4196 2 13.67409609415624 -694.3305256659714 33.9528 0.1144 4195 +4197 2 13.393968592131017 -695.1176466017209 33.8425 0.1144 4196 +4198 2 13.305706376628436 -696.3034016212719 33.7593 0.1144 4197 +4199 2 13.441209205590454 -697.9542614788704 33.6403 0.1144 4198 +4200 2 13.714843937599667 -699.8436066058388 33.4412 0.1144 4199 +4201 2 14.04558529285842 -700.9967883411591 33.0873 0.1144 4200 +4202 2 14.125288236360191 -702.233590738258 32.5998 0.1144 4201 +4203 2 14.117721295125875 -703.5624656070404 32.0323 0.1144 4202 +4204 2 14.41929375617579 -704.7191308673252 31.4619 0.1144 4203 +4205 2 14.174591232083387 -705.9789539796285 30.7415 0.1144 4204 +4206 2 14.03343945785221 -707.245479568157 29.9172 0.1144 4205 +4207 2 14.073534368362772 -708.4887270818818 29.0814 0.1144 4206 +4208 2 14.175276543455993 -709.4220439478995 26.927 0.1144 4207 +4209 2 14.271254679736288 -683.40308871303 32.7914 0.1144 4181 +4210 2 13.722431441715983 -682.3125077003918 33.6154 0.1144 4209 +4211 2 12.814388649781762 -680.5496509507652 33.9273 0.1144 4210 +4212 2 12.114817218625802 -679.9370149282677 34.2373 0.1144 4211 +4213 2 12.420549997086425 -678.4439178088671 34.5285 0.1144 4212 +4214 2 12.804135507154825 -676.9440702419332 34.8748 0.1144 4213 +4215 2 12.71402510263519 -675.7315482769864 35.84 0.1144 4214 +4216 2 11.972028983922243 -676.1344314491731 25.3972 0.1144 4158 +4217 2 10.972101062571298 -675.3968079426662 28.0952 0.1144 4216 +4218 2 10.099206322616098 -675.5951620306278 29.1816 0.1144 4217 +4219 2 9.723738610948146 -675.9064742422611 30.5813 0.1144 4218 +4220 2 9.70315978612767 -676.4713696491956 32.1468 0.1144 4219 +4221 2 10.059864569176838 -676.1946205153614 35.84 0.1144 4220 +4222 2 17.812462203063774 -655.5005867662045 30.8353 0.1144 4139 +4223 2 18.379905013010642 -656.4732377325637 31.2071 0.1144 4222 +4224 2 19.088153993152247 -658.2821688614647 31.8612 0.1144 4223 +4225 2 19.937815374297116 -658.71951847498 32.7541 0.1144 4224 +4226 2 20.694308839077948 -659.0110124378784 33.9198 0.1144 4225 +4227 2 21.278038905236016 -659.6751473986899 35.3223 0.1144 4226 +4228 2 22.152941782677885 -660.3795518385358 36.8136 0.1144 4227 +4229 2 23.064904575827867 -660.4553843489269 38.3256 0.1144 4228 +4230 2 23.30349071769382 -661.0860494707179 39.912 0.1144 4229 +4231 2 22.90910900872204 -661.9853257298163 41.5024 0.1144 4230 +4232 2 22.239011788156276 -662.2231916154946 43.0321 0.1144 4231 +4233 2 22.14118483151401 -662.2706970214854 44.1927 0.1144 4232 +4234 2 21.66767816605997 -662.7812945169878 45.1713 0.1144 4233 +4235 2 21.24219905610738 -664.230497159393 45.9976 0.1144 4234 +4236 2 20.56244073631528 -665.3464882240098 46.6043 0.1144 4235 +4237 2 19.61047841240064 -666.7096463058863 47.0058 0.1144 4236 +4238 2 18.638624254053752 -666.8595922979833 47.306 0.1144 4237 +4239 2 18.127617718715783 -667.79255450936 47.6557 0.1144 4238 +4240 2 17.679076187390052 -669.0865006109962 47.889 0.1144 4239 +4241 2 17.094299018239383 -670.4326178342556 48.0407 0.1144 4240 +4242 2 16.157830603773363 -670.2414376280035 48.1396 0.1144 4241 +4243 2 15.176903806395629 -671.2611074875496 48.1754 0.1144 4242 +4244 2 14.2003941624111 -672.512096075457 48.169 0.1144 4243 +4245 2 13.170810544594517 -671.7258404655697 48.1872 0.1144 4244 +4246 2 12.045469697829489 -672.2508695547622 48.2905 0.1144 4245 +4247 2 10.926576244430635 -671.2283192389684 48.4806 0.1144 4246 +4248 2 9.823393997476117 -672.1498636119013 48.7057 0.1144 4247 +4249 2 8.756411739523756 -672.6677411574008 49.0392 0.1144 4248 +4250 2 7.749216023452931 -671.9674534444941 49.4799 0.1144 4249 +4251 2 6.985346927079874 -673.4320703449469 49.9089 0.1144 4250 +4252 2 6.232741061078485 -673.8720235504354 50.3958 0.1144 4251 +4253 2 5.192016632297381 -673.8991880480078 51.0196 0.1144 4252 +4254 2 4.165889712094668 -674.7132021588827 51.8112 0.1144 4253 +4255 2 3.7209779139595156 -675.2534394580953 52.9158 0.1144 4254 +4256 2 3.6079010315976916 -675.5635842782735 54.3371 0.1144 4255 +4257 2 2.9053832037398593 -675.1191181187221 55.8281 0.1144 4256 +4258 2 1.8483731134341355 -675.049123207254 57.1418 0.1144 4257 +4259 2 0.8272482145484048 -674.831633405172 58.2134 0.1144 4258 +4260 2 0.06860418723144335 -674.6089413171597 59.2967 0.1144 4259 +4261 2 -0.718350731206371 -673.03543489157 60.3747 0.1144 4260 +4262 2 -1.6464709391726444 -672.8219325284128 61.3455 0.1144 4261 +4263 2 -2.732212434213153 -671.4982445683903 62.1216 0.1144 4262 +4264 2 -3.8455738698564943 -671.8747373149906 62.8348 0.1144 4263 +4265 2 -4.968974227611071 -672.5458047913329 63.4995 0.1144 4264 +4266 2 -6.076199436272219 -671.5674223997291 64.0951 0.1144 4265 +4267 2 -7.170306382271562 -671.7415955350012 64.675 0.1144 4266 +4268 2 -8.038865658760969 -670.5008544316775 65.4377 0.1144 4267 +4269 2 -8.745217541296228 -671.0051193209521 66.456 0.1144 4268 +4270 2 -9.662118201595078 -671.617299545499 67.4864 0.1144 4269 +4271 2 -10.728923831699092 -670.9524067598413 68.4499 0.1144 4270 +4272 2 -11.750746635973911 -670.7625784395548 69.4473 0.1144 4271 +4273 2 -12.773534829317356 -670.1805756050495 70.4586 0.1144 4272 +4274 2 -13.835279998344078 -670.1260468728908 71.4389 0.1144 4273 +4275 2 -14.85344914258286 -670.4556347122384 72.4203 0.1144 4274 +4276 2 -15.518358219148126 -671.2972872174205 73.4972 0.1144 4275 +4277 2 -16.56967563021452 -669.7936983093499 74.3859 0.1144 4276 +4278 2 -17.536128617810803 -669.847073986087 75.2626 0.1144 4277 +4279 2 -18.66721934311198 -670.4711862401978 75.9998 0.1144 4278 +4280 2 -19.740904924061965 -669.9766384366039 76.652 0.1144 4279 +4281 2 -20.759968470290403 -670.9437031153745 77.2506 0.1144 4280 +4282 2 -20.743217370688996 -671.4019558623357 77.6266 0.1144 4281 +4283 2 -20.697242801874964 -672.6842146788489 78.5957 0.1144 4282 +4284 2 -20.76291595822633 -673.9562609623231 79.0317 0.1144 4283 +4285 2 -21.270953161992253 -674.2294585397227 79.4699 0.1144 4284 +4286 2 -21.773478644945257 -675.3717890282967 79.8616 0.1144 4285 +4287 2 -22.201001863096096 -676.9039987420692 80.1615 0.1144 4286 +4288 2 -22.61734783374942 -678.2707163183034 80.3779 0.1144 4287 +4289 2 -22.993780393402247 -679.7397088312919 80.5216 0.1144 4288 +4290 2 -23.366841073114145 -681.302968604012 80.6268 0.1144 4289 +4291 2 -23.691941981395686 -682.844351795531 80.764 0.1144 4290 +4292 2 -23.99508128991991 -684.3106357271652 80.9514 0.1144 4291 +4293 2 -24.285698545601704 -685.1083352844661 81.1712 0.1144 4292 +4294 2 -24.50078656852972 -686.0696320593839 81.3593 0.1144 4293 +4295 2 -24.709105252301555 -687.1548622594765 81.5178 0.1144 4294 +4296 2 -24.88434764829998 -688.6343618792192 81.6558 0.1144 4295 +4297 2 -24.97760207498736 -690.0722746047174 81.7802 0.1144 4296 +4298 2 -25.063260371374 -691.5058930854225 81.9042 0.1144 4297 +4299 2 -25.522452182245473 -692.9534404201285 82.0921 0.1144 4298 +4300 2 -26.19350160551393 -693.6542521341003 82.3673 0.1144 4299 +4301 2 -26.868426744582436 -694.1358724235712 82.7165 0.1144 4300 +4302 2 -27.262505737469255 -695.6243892508833 83.0452 0.1144 4301 +4303 2 -27.546929003086987 -697.0880450484252 83.3235 0.1144 4302 +4304 2 -27.831439785933213 -698.6022691760205 83.5512 0.1144 4303 +4305 2 -28.037897145587777 -700.0689889189852 83.8284 0.1144 4304 +4306 2 -28.239017488659698 -701.5298036222543 84.56 0.1144 4305 +4307 2 -21.157082420348516 -670.1421308909877 77.7868 0.1144 4281 +4308 2 -22.252407382781186 -670.0237536431821 78.3619 0.1144 4307 +4309 2 -23.37592557569586 -670.376523857067 78.9135 0.1144 4308 +4310 2 -24.495699891790522 -669.8959879646198 79.4632 0.1144 4309 +4311 2 -25.60374283988118 -669.7713649353877 80.0184 0.1144 4310 +4312 2 -26.70659511893713 -668.5280796565864 80.5745 0.1144 4311 +4313 2 -27.800401911516957 -668.5972067479169 81.1222 0.1144 4312 +4314 2 -28.884708093128367 -668.9835820477552 81.6522 0.1144 4313 +4315 2 -29.982812144728555 -667.8163265569808 82.1598 0.1144 4314 +4316 2 -31.113504186417344 -668.0038778360947 82.6148 0.1144 4315 +4317 2 -32.25526878917837 -666.9993659400453 83.0144 0.1144 4316 +4318 2 -33.39905403781823 -667.4036896191274 83.393 0.1144 4317 +4319 2 -34.490412174950535 -668.4062136796844 83.8482 0.1144 4318 +4320 2 -35.49472038626672 -667.8717528349589 84.427 0.1144 4319 +4321 2 -36.55088138960495 -668.5953584646243 85.1214 0.1144 4320 +4322 2 -37.56226967827074 -669.3160953635696 85.9236 0.1144 4321 +4323 2 -38.341522209292435 -669.0683043401252 86.8098 0.1144 4322 +4324 2 -39.03826456181959 -670.2765071823749 87.7108 0.1144 4323 +4325 2 -39.91221362823748 -671.148829401955 88.494 0.1144 4324 +4326 2 -40.842648578528426 -671.1106882208057 89.1243 0.1144 4325 +4327 2 -41.92672594672723 -672.2743923860014 89.5902 0.1144 4326 +4328 2 -43.052817275004685 -672.5737915994205 89.9136 0.1144 4327 +4329 2 -44.182726984190495 -672.1106508496437 90.1398 0.1144 4328 +4330 2 -45.316247662683324 -671.8388827269226 90.3378 0.1144 4329 +4331 2 -46.44729253187862 -672.0763427475796 90.571 0.1144 4330 +4332 2 -47.57673680298758 -672.6310666612836 90.8544 0.1144 4331 +4333 2 -48.686284015074605 -672.3178661927196 91.1786 0.1144 4332 +4334 2 -49.767453581576305 -672.7660550879722 91.5312 0.1144 4333 +4335 2 -50.84049855439778 -672.3058949524739 91.905 0.1144 4334 +4336 2 -51.91423102106007 -673.4736117265568 92.2964 0.1144 4335 +4337 2 -53.02913987725033 -674.137650306646 92.7119 0.1144 4336 +4338 2 -54.15280348607006 -673.2837891429259 93.1636 0.1144 4337 +4339 2 -55.27482213612535 -674.0512374097127 93.6698 0.1144 4338 +4340 2 -56.3771969948661 -675.140720324224 94.2396 0.1144 4339 +4341 2 -57.467173424299176 -674.3409069005543 94.8895 0.1144 4340 +4342 2 -58.55496747783678 -675.3977497003236 95.6365 0.1144 4341 +4343 2 -59.46378846891847 -674.5466951144917 96.6498 0.1144 4342 +4344 2 -59.924597055097834 -675.3479002685508 98.0216 0.1144 4343 +4345 2 -60.41286748306179 -676.0777753695511 99.6565 0.1144 4344 +4346 2 -60.98553283703049 -676.7739423086864 101.4471 0.1144 4345 +4347 2 -61.493290687771946 -677.866177986356 103.2522 0.1144 4346 +4348 2 -62.103077953145096 -678.064666201883 104.9826 0.1144 4347 +4349 2 -63.0994080539237 -678.0098534996521 106.4843 0.1144 4348 +4350 2 -64.10840133050299 -677.9450405708983 107.7644 0.1144 4349 +4351 2 -65.12044693067273 -678.0169056484883 108.8606 0.1144 4350 +4352 2 -66.18255747452463 -679.1845092904696 109.723 0.1144 4351 +4353 2 -67.24622545991244 -679.4907112779558 110.4124 0.1144 4352 +4354 2 -68.30846112272684 -679.5322962108751 110.9805 0.1144 4353 +4355 2 -69.37174699228301 -680.4155259589729 111.4722 0.1144 4354 +4356 2 -70.43503286183918 -680.9914889834546 111.9112 0.1144 4355 +4357 2 -71.50877577768081 -680.736408454067 112.3195 0.1144 4356 +4358 2 -71.09110023362672 -681.5539162411953 112.6586 0.1144 4357 +4359 2 -70.58300105816107 -683.35316090873 112.9612 0.1144 4358 +4360 2 -70.07548245637696 -685.352414063773 113.2583 0.1144 4359 +4361 2 -69.56805137182133 -686.2698704576957 113.5778 0.1144 4360 +4362 2 -69.10756865781605 -687.2484637622274 114.0115 0.1144 4361 +4363 2 -68.71230970241683 -688.2981689778696 114.6522 0.1144 4362 +4364 2 -68.31705074701765 -689.2575271253124 115.4664 0.1144 4363 +4365 2 -67.7393948745144 -689.9397447939018 116.3851 0.1144 4364 +4366 2 -66.95695521276764 -691.9286200704997 117.3497 0.1144 4365 +4367 2 -66.17494604799268 -692.7988121631939 118.3445 0.1144 4366 +4368 2 -65.51631224722519 -693.3313796790695 119.4026 0.1144 4367 +4369 2 -65.02716833962683 -694.0125574655356 120.5702 0.1144 4368 +4370 2 -64.53869252293855 -694.6958630740071 121.8227 0.1144 4369 +4371 2 -64.06174066265281 -695.9144273904965 123.1286 0.1144 4370 +4372 2 -63.59877588515399 -697.9505402774984 124.4536 0.1144 4371 +4373 2 -63.130140356380956 -698.9440644720913 125.7704 0.1144 4372 +4374 2 -62.537679563697694 -699.6021455014587 127.0203 0.1144 4373 +4375 2 -61.94513125378603 -701.0562261380948 128.205 0.1144 4374 +4376 2 -61.352670461102775 -702.9377179627037 129.3359 0.1144 4375 +4377 2 -60.772576419962476 -703.60914324427 130.4201 0.1144 4376 +4378 2 -60.65134155987086 -704.7894871780053 131.469 0.1144 4377 +4379 2 -60.53048881561081 -705.968390520889 132.4795 0.1144 4378 +4380 2 -60.40925395551915 -707.1489768616141 133.4505 0.1144 4379 +4381 2 -60.28903389524267 -708.3617837285642 134.3362 0.1144 4380 +4382 2 -60.173261909002406 -709.6811590930388 135.0241 0.1144 4381 +4383 2 -60.05700611136086 -710.9994329649753 135.5791 0.1144 4382 +4384 2 -59.946740621343906 -712.3178797045946 136.0792 0.1144 4383 +4385 2 -59.85354099087937 -713.6366908342748 136.6131 0.1144 4384 +4386 2 -59.759203636444596 -714.9557626464517 137.1966 0.1144 4385 +4387 2 -59.69637724173353 -715.7818959179974 138.0613 0.1144 4386 +4388 2 -59.63867759674277 -716.5099540788864 139.1715 0.1144 4387 +4389 2 -59.75013770379661 -717.5723950955611 140.2836 0.1144 4388 +4390 2 -60.08551572954376 -719.0422956610386 141.1673 0.1144 4389 +4391 2 -60.419931065777604 -720.5126379486463 141.8315 0.1144 4390 +4392 2 -60.75584128406611 -721.9848241717106 142.2946 0.1144 4391 +4393 2 -61.090256620299954 -723.426018119751 142.5726 0.1144 4392 +4394 2 -61.55948795469875 -724.0560408711326 142.7188 0.1144 4393 +4395 2 -62.0988011861743 -724.5510651052036 142.7868 0.1144 4394 +4396 2 -62.637548022309474 -726.056189940655 142.805 0.1144 4395 +4397 2 -63.00582976607491 -726.6515416151736 142.6902 0.1144 4396 +4398 2 -63.84694909240902 -726.2656739493294 142.4102 0.1144 4397 +4399 2 -64.6874487089733 -727.4742462621638 142.0132 0.1144 4398 +4400 2 -65.52856803530739 -728.8312759326795 141.5428 0.1144 4399 +4401 2 -66.3162812841404 -730.2687149954435 141.1004 0.1144 4400 +4402 2 -67.08252449424137 -729.9642793284104 140.7249 0.1144 4401 +4403 2 -67.84976952994386 -731.3230458322323 140.4211 0.1144 4402 +4404 2 -68.616975429558 -732.7743094704406 140.1789 0.1144 4403 +4405 2 -68.8613512114612 -734.2079993553624 139.9423 0.1144 4404 +4406 2 -69.10170120085459 -735.6434940290787 139.7071 0.1144 4405 +4407 2 -69.31574424163044 -737.0242848623782 139.4862 0.1144 4406 +4408 2 -69.46307386633539 -738.2958784233649 139.3249 0.1144 4407 +4409 2 -69.61031597381178 -739.259165304886 139.2146 0.1144 4408 +4410 2 -69.66506617997936 -740.4108892457929 139.146 0.1144 4409 +4411 2 -69.57558173942569 -741.8567021506503 139.111 0.1144 4410 +4412 2 -69.48547758910217 -743.3029006322852 139.0945 0.1144 4411 +4413 2 -69.39604152968867 -744.7490906114385 139.0827 0.1144 4412 +4414 2 -69.2600065081853 -746.1586922384923 139.0665 0.1144 4413 +4415 2 -68.86924773712425 -747.2506276978149 139.0438 0.1144 4414 +4416 2 -68.47900698026356 -748.2466767752151 139.0119 0.1144 4415 +4417 2 -68.08829659034264 -749.2448663807814 138.9674 0.1144 4416 +4418 2 -67.6980558334819 -750.2413716762203 138.906 0.1144 4417 +4419 2 -67.30676486987943 -751.404378788896 138.8192 0.1144 4418 +4420 2 -66.75056289651778 -752.3960643740777 138.6955 0.1144 4419 +4421 2 -66.19123526067833 -754.2913493965601 138.5219 0.1144 4420 +4422 2 -65.63190762483877 -755.555443408845 138.2903 0.1144 4421 +4423 2 -65.07257998899925 -756.354909456232 137.9963 0.1144 4422 +4424 2 -64.36894679462192 -756.7350058664101 137.4708 0.1144 4423 +4425 2 -63.634581709683545 -757.3939202255183 136.7363 0.1144 4424 +4426 2 -62.87278543111893 -758.8002877018658 135.8694 0.1144 4425 +4427 2 -61.75856509837601 -758.2644355572825 135.0448 0.1144 4426 +4428 2 -60.64592716491616 -759.0979954993064 134.2748 0.1144 4427 +4429 2 -59.5317068321732 -758.4285859588672 133.569 0.1144 4428 +4430 2 -58.41853670617189 -757.8947319245068 132.9334 0.1144 4429 +4431 2 -57.30581125548359 -758.5920247958235 132.3428 0.1144 4430 +4432 2 -56.191678439969095 -758.0074584308175 131.7677 0.1144 4431 +4433 2 -55.078420796739294 -758.7263172239387 131.1834 0.1144 4432 +4434 2 -53.96420046399638 -757.881930385521 130.585 0.1144 4433 +4435 2 -52.851610911676644 -757.6125715661167 129.9662 0.1144 4434 +4436 2 -51.738440785675394 -758.0460059563594 129.3202 0.1144 4435 +4437 2 -50.62422045293239 -757.1728652139238 128.6412 0.1144 4436 +4438 2 -49.51158251947251 -757.625952543684 127.9256 0.1144 4437 +4439 2 -48.54746514856316 -757.1638079543746 127.0858 0.1144 4438 +4440 2 -47.61286940140549 -756.9109307143915 126.1364 0.1144 4439 +4441 2 -46.677262583594384 -756.8227877785133 125.1152 0.1144 4440 +4442 2 -45.7426668364367 -755.8389834534331 124.0624 0.1144 4441 +4443 2 -44.807020882537216 -755.0150405671874 123.0172 0.1144 4442 +4444 2 -43.87184456169794 -755.5904103205248 122.0164 0.1144 4443 +4445 2 -42.93623774388692 -754.5130640815623 121.0924 0.1144 4444 +4446 2 -41.854950342225195 -755.1879041421876 120.3818 0.1144 4445 +4447 2 -40.71727725683212 -754.6436990307213 119.8988 0.1144 4446 +4448 2 -39.57855396469736 -754.0086880791004 119.5958 0.1144 4447 +4449 2 -38.44026116953438 -754.6009626324618 119.4281 0.1144 4448 +4450 2 -37.3015862585398 -754.905761929406 119.357 0.1144 4449 +4451 2 -36.16329346337679 -754.931540371477 119.3486 0.1144 4450 +4452 2 -35.02457017124203 -754.1689046098284 119.3738 0.1144 4451 +4453 2 -33.88694546698906 -754.7130457562166 119.4382 0.1144 4452 +4454 2 -32.74939750055859 -754.3464614674469 119.5354 0.1144 4453 +4455 2 -31.762678021022197 -754.3520309954872 119.7468 0.1144 4454 +4456 2 -30.776539115167367 -755.5191065809821 120.036 0.1144 4455 +4457 2 -29.790830706284325 -756.0297643663614 120.3703 0.1144 4456 +4458 2 -28.80469180042944 -757.4051309843023 121.1722 0.1144 4457 +4459 2 -62.319297973771256 -726.832731561271 142.7068 0.1144 4396 +4460 2 -61.946140245659834 -727.7402562534639 141.2748 0.1144 4459 +4461 2 -61.57336463337997 -729.4122902334146 140.656 0.1144 4460 +4462 2 -61.23566775594921 -731.1797082506977 139.9367 0.1144 4461 +4463 2 -61.10628184900226 -732.5816346694731 139.2012 0.1144 4462 +4464 2 -60.977031840423976 -733.7836205551038 138.4818 0.1144 4463 +4465 2 -60.84927671390028 -734.9908916040959 137.8084 0.1144 4464 +4466 2 -60.71997832418184 -736.2015664880295 137.2092 0.1144 4465 +4467 2 -60.59072831560354 -737.4154707284788 136.6842 0.1144 4466 +4468 2 -60.56445846656284 -738.7149351251468 136.3054 0.1144 4467 +4469 2 -60.55070544577484 -740.0260776136653 136.068 0.1144 4468 +4470 2 -60.53700080612704 -741.337266557252 135.966 0.1144 4469 +4471 2 -60.52324778533904 -742.6487613643384 135.9949 0.1144 4470 +4472 2 -60.50954314569121 -743.9620586360207 136.1492 0.1144 4471 +4473 2 -60.429772418118446 -745.1520851874634 136.5367 0.1144 4472 +4474 2 -60.289779853997715 -746.2182734857129 137.2154 0.1144 4473 +4475 2 -60.149738908736765 -747.2850468222607 138.115 0.1144 4474 +4476 2 -60.00921415207456 -748.3506475404104 139.169 0.1144 4475 +4477 2 -59.869260724042135 -749.4179026506285 140.3139 0.1144 4476 +4478 2 -59.72768576063825 -750.4839263560448 141.4854 0.1144 4477 +4479 2 -59.58778071374593 -751.552063600014 142.6202 0.1144 4478 +4480 2 -59.44773976848505 -752.6196797053086 143.6786 0.1144 4479 +4481 2 -59.30721501182285 -753.6863183278766 144.6432 0.1144 4480 +4482 2 -59.16621137704874 -754.7623404802398 145.5003 0.1144 4481 +4483 2 -59.09355669753714 -755.9826324258403 146.022 0.1144 4482 +4484 2 -59.03737163012738 -757.2435250392944 146.2303 0.1144 4483 +4485 2 -58.981147426629306 -758.526269736225 146.2216 0.1144 4484 +4486 2 -58.92496235921958 -759.8099223471603 146.0872 0.1144 4485 +4487 2 -58.868109200899795 -761.1027257751559 145.9116 0.1144 4486 +4488 2 -59.0031049170276 -762.2934258749821 145.8173 0.1144 4487 +4489 2 -59.82912439435195 -763.6197879990408 146.0248 0.1144 4488 +4490 2 -60.6567746520995 -764.671446621004 146.4705 0.1144 4489 +4491 2 -61.48275499333546 -764.3610430022655 147.0832 0.1144 4490 +4492 2 -62.309873058541555 -765.6869621648752 147.7941 0.1144 4491 +4493 2 -63.10079812724784 -766.0177891176277 148.538 0.1144 4492 +4494 2 -63.11073022845852 -767.2897243672846 149.1885 0.1144 4493 +4495 2 -63.11899241315761 -768.5644365835134 149.73 0.1144 4494 +4496 2 -62.86354153151349 -770.1250345760128 150.1668 0.1144 4495 +4497 2 -62.37887943492886 -771.6342345666507 150.5031 0.1144 4496 +4498 2 -61.89526754508607 -772.5268341299405 150.7638 0.1144 4497 +4499 2 -61.41160727410305 -773.4194914387972 150.9715 0.1144 4498 +4500 2 -60.92799538426017 -774.8823257546275 151.1471 0.1144 4499 +4501 2 -60.44438349441728 -776.8067121495031 151.4652 0.1144 4500 +4502 2 -72.63323216818287 -680.1364874678491 112.9512 0.1144 4357 +4503 2 -73.75597208668773 -680.0282892900516 113.1178 0.1144 4502 +4504 2 -74.8777009345392 -680.2800811564737 113.3168 0.1144 4503 +4505 2 -75.9988726321022 -679.1852297975163 113.5411 0.1144 4504 +4506 2 -77.12060147995373 -679.2854499785401 113.7828 0.1144 4505 +4507 2 -78.24334139845854 -678.0987124031839 114.0356 0.1144 4506 +4508 2 -79.36498272908163 -678.2914667077436 114.2943 0.1144 4507 +4509 2 -80.42597741659597 -678.5109192414818 114.5707 0.1144 4508 +4510 2 -81.4694199081224 -676.6511378160149 114.8633 0.1144 4509 +4511 2 -82.51329289662053 -676.8083501470749 115.1685 0.1144 4510 +4512 2 -83.55562262192387 -675.2815102721029 115.4826 0.1144 4511 +4513 2 -84.59949561042205 -675.0974967213493 115.8021 0.1144 4512 +4514 2 -85.6920816870132 -675.4163035787464 116.1222 0.1144 4513 +4515 2 -86.80323475940745 -673.8879776993022 116.4402 0.1144 4514 +4516 2 -87.9144753490302 -674.341741991524 116.7586 0.1144 4515 +4517 2 -89.02524630559282 -674.6436859978327 117.0792 0.1144 4516 +4518 2 -90.13552420570234 -673.2286398383658 117.4048 0.1144 4517 +4519 2 -91.24550195239237 -673.1008718932158 117.7383 0.1144 4518 +4520 2 -92.30208873156523 -671.8763605668877 118.0981 0.1144 4519 +4521 2 -93.35689465360514 -672.0939603118153 118.4789 0.1144 4520 +4522 2 -94.41183647401363 -671.9370041510754 118.8748 0.1144 4521 +4523 2 -95.466729913282 -670.5073521107693 119.2811 0.1144 4522 +4524 2 -96.52162335255031 -670.0853640372013 119.6927 0.1144 4523 +4525 2 -97.55313481409523 -668.833297980958 120.1057 0.1144 4524 +4526 2 -98.24487252101238 -667.8087381930842 120.5014 0.1144 4525 +4527 2 -98.93187874277555 -667.14264010536 120.8883 0.1144 4526 +4528 2 -99.62109631864351 -666.4946911036233 121.2896 0.1144 4527 +4529 2 -100.30868311408825 -664.594787458847 121.6967 0.1144 4528 +4530 2 -101.03338869319171 -663.5047353811549 122.1312 0.1144 4529 +4531 2 -101.80430812769767 -662.810757811816 122.624 0.1144 4530 +4532 2 -102.57560967803533 -662.3796991589335 123.1451 0.1144 4531 +4533 2 -103.3464415953128 -660.9022498295451 124.32 0.1144 4532 +4534 2 23.09707498153071 -661.8801513568483 45.855 0.1144 4232 +4535 2 24.006058031560443 -661.4276035251952 47.2746 0.1144 4534 +4536 2 23.649373154894704 -662.4309471657086 47.9147 0.1144 4535 +4537 2 22.593595762815966 -663.0821182038114 48.5523 0.1144 4536 +4538 2 21.461750789209347 -662.1290041253749 49.1336 0.1144 4537 +4539 2 20.331722215257088 -662.5780192065547 49.6471 0.1144 4538 +4540 2 19.27484297195616 -663.7357985667852 50.1113 0.1144 4539 +4541 2 18.179887014251506 -663.2927252046368 50.4826 0.1144 4540 +4542 2 17.085285379481277 -663.571605933679 50.869 0.1144 4541 +4543 2 16.01916831045571 -663.0040425475703 51.2918 0.1144 4542 +4544 2 15.058713455370324 -664.0852946633606 51.6785 0.1144 4543 +4545 2 13.979236762951672 -664.7987396345379 51.8795 0.1144 4544 +4546 2 12.85404034011654 -664.0758441478558 52.0066 0.1144 4545 +4547 2 13.09183061018561 -665.1955039089701 52.1382 0.1144 4546 +4548 2 13.430464520002701 -666.8282236524042 52.3099 0.1144 4547 +4549 2 13.745500825049504 -668.6246810477726 52.92 0.1144 4548 +4550 2 13.891477983544462 -634.1631435755002 28.6479 0.1144 4121 +4551 2 12.773971890624793 -633.6215106819698 28.3321 0.1144 4550 +4552 2 11.754280809740237 -633.1499290871942 28.163 0.1144 4551 +4553 2 11.748882691472929 -632.6192725236947 27.9838 0.1144 4552 +4554 2 11.231080718027172 -630.9509757932661 27.7445 0.1144 4553 +4555 2 10.156310554310664 -630.8474769531584 27.5509 0.1144 4554 +4556 2 9.035202911656896 -630.8488544052825 27.489 0.1144 4555 +4557 2 7.980782834610409 -629.6244848164446 27.5097 0.1144 4556 +4558 2 6.971844758447645 -629.6494864007739 27.5743 0.1144 4557 +4559 2 5.86230646248093 -628.1874986801724 27.6754 0.1144 4558 +4560 2 4.732858462210203 -628.9934543325405 27.8123 0.1144 4559 +4561 2 3.7093678395630576 -628.6618262366625 28.0493 0.1144 4560 +4562 2 2.5797833395075145 -627.9630242777755 28.2013 0.1144 4561 +4563 2 1.8336643935198111 -628.6307272548429 28.7316 0.1144 4562 +4564 2 0.7203077542757796 -628.9076826693665 28.9635 0.1144 4563 +4565 2 -0.3728360363889607 -628.3912885953157 29.1416 0.1144 4564 +4566 2 -1.4918801679137346 -628.0190079288263 29.3474 0.1144 4565 +4567 2 -2.4580005496836463 -628.1215442317058 29.5702 0.1144 4566 +4568 2 -3.594446199070532 -628.8881886718419 29.846 0.1144 4567 +4569 2 -4.610634260413832 -628.5196174680184 30.2691 0.1144 4568 +4570 2 -5.391856935333664 -627.3657116485995 30.6785 0.1144 4569 +4571 2 -5.807117170358637 -625.3829129990486 31.0778 0.1144 4570 +4572 2 -6.574424140129736 -624.7691387906971 31.6235 0.1144 4571 +4573 2 -7.625929695461437 -623.9291589502998 32.1686 0.1144 4572 +4574 2 -8.687147468346197 -623.7850462143747 32.6222 0.1144 4573 +4575 2 -9.776249326910701 -624.0319509135076 33.0952 0.1144 4574 +4576 2 -10.865337007134045 -623.3183843188693 34.16 0.1144 4575 +4577 2 2.1828137757481016 -628.0076239151433 28.2072 0.1144 4562 +4578 2 1.1844269831168077 -627.8152669927217 28.0258 0.1144 4577 +4579 2 0.15806080032220393 -627.4181263632333 27.7121 0.1144 4578 +4580 2 -0.9423026952225797 -626.2314838974155 27.3503 0.1144 4579 +4581 2 -2.080892050238006 -626.1663794090698 27.0078 0.1144 4580 +4582 2 -3.224975956869514 -626.2989668415204 26.7078 0.1144 4581 +4583 2 -4.367636494679175 -626.3609761072912 26.4335 0.1144 4582 +4584 2 -5.509775289126736 -626.1205702367197 26.169 0.1144 4583 +4585 2 -6.63808127248052 -625.743698332622 25.8815 0.1144 4584 +4586 2 -7.713756790818607 -624.8550517156243 25.5278 0.1144 4585 +4587 2 -8.752049808611474 -624.9256669229599 25.0718 0.1144 4586 +4588 2 -9.802959544682935 -625.1534142638152 24.5369 0.1144 4587 +4589 2 -10.911900661556274 -624.2760618421394 24.0232 0.1144 4588 +4590 2 -12.043225387228588 -624.5598829828377 23.6356 0.1144 4589 +4591 2 -13.165724119523375 -624.2435870597421 23.394 0.1144 4590 +4592 2 -14.28502670571389 -624.4970207339743 23.2643 0.1144 4591 +4593 2 -15.422792532925172 -625.3522396651388 23.1827 0.1144 4592 +4594 2 -16.563982816200635 -624.159267667126 23.0756 0.1144 4593 +4595 2 -17.628946990939596 -624.1101677227289 22.8711 0.1144 4594 +4596 2 -18.559204184516958 -623.6274192754667 22.5491 0.1144 4595 +4597 2 -19.56965417633647 -622.5211111833651 22.1544 0.1144 4596 +4598 2 -20.631074136232996 -622.5198378079682 21.7569 0.1144 4597 +4599 2 -21.682857586792423 -620.9615574466433 21.4057 0.1144 4598 +4600 2 -22.745488279319716 -620.689310949414 21.1016 0.1144 4599 +4601 2 -23.85269785184299 -620.8562962577917 20.8181 0.1144 4600 +4602 2 -24.97962884751501 -620.273466473066 20.5555 0.1144 4601 +4603 2 -26.08991570137603 -619.9972685306825 20.318 0.1144 4602 +4604 2 -27.1711550508291 -619.1297432823724 20.0819 0.1144 4603 +4605 2 -28.29278593227278 -618.8774818212025 19.8925 0.1144 4604 +4606 2 -29.414102481955872 -619.3983250320458 19.8392 0.1144 4605 +4607 2 -30.476794238536563 -618.4527566007305 19.9234 0.1144 4606 +4608 2 -31.495311489144697 -617.6355021919536 20.0847 0.1144 4607 +4609 2 -32.485641937988106 -616.4235669929864 20.2815 0.1144 4608 +4610 2 -33.410279460986786 -615.5834140330952 20.5126 0.1144 4609 +4611 2 -34.23211824869555 -615.2119899094619 20.7687 0.1144 4610 +4612 2 -35.1279585441378 -614.3421489580726 21.0055 0.1144 4611 +4613 2 -36.157419177467006 -613.1531723198576 21.1742 0.1144 4612 +4614 2 -37.19497455236632 -613.2301607683748 21.2504 0.1144 4613 +4615 2 -38.19512143936664 -612.1157882017033 21.2266 0.1144 4614 +4616 2 -39.23433072678185 -611.4017254742905 21.093 0.1144 4615 +4617 2 -40.310519034730504 -611.3136604704747 20.8371 0.1144 4616 +4618 2 -41.34136090993754 -609.9600193883098 20.5004 0.1144 4617 +4619 2 -42.307350420706136 -609.8837116463825 20.171 0.1144 4618 +4620 2 -43.43385614399604 -609.44377723852 19.8777 0.1144 4619 +4621 2 -44.40135673803742 -609.7959608205861 19.6027 0.1144 4620 +4622 2 -45.18683922983479 -610.4906667335433 19.357 0.1144 4621 +4623 2 -46.0053157167668 -610.9070966668253 19.1766 0.1144 4622 +4624 2 -46.995145848055955 -612.2116660890757 19.0707 0.1144 4623 +4625 2 -48.130152454851924 -612.313585674999 19.025 0.1144 4624 +4626 2 -49.1831987483442 -611.5220594888325 19.05 0.1144 4625 +4627 2 -50.00949905012427 -610.1677565223998 19.148 0.1144 4626 +4628 2 -50.766264621758204 -609.3101748475506 19.2773 0.1144 4627 +4629 2 -51.701091744993896 -608.2892768630976 19.4101 0.1144 4628 +4630 2 -52.78779592954763 -608.2566554264555 19.5418 0.1144 4629 +4631 2 -53.9268132565006 -608.299529470804 19.6784 0.1144 4630 +4632 2 -55.062845578112466 -607.2168379612517 19.8674 0.1144 4631 +4633 2 -56.18678531424739 -607.7898976374663 20.124 0.1144 4632 +4634 2 -57.26762028967702 -607.959391854544 20.4002 0.1144 4633 +4635 2 -58.21786681827291 -606.0400232742876 20.6786 0.1144 4634 +4636 2 -59.20076539186665 -605.9466041320953 20.9956 0.1144 4635 +4637 2 -60.32993236916398 -604.56005209432 21.3199 0.1144 4636 +4638 2 -61.4662231830728 -605.2740484468715 21.6423 0.1144 4637 +4639 2 -62.567268482047396 -605.7866933716159 22.0189 0.1144 4638 +4640 2 -63.66697476405176 -604.7464264210887 22.4318 0.1144 4639 +4641 2 -64.79795035374829 -604.9266241320964 22.7864 0.1144 4640 +4642 2 -65.94151102158983 -604.4775005969934 23.0539 0.1144 4641 +4643 2 -67.08544485151157 -605.2414123638658 23.2506 0.1144 4642 +4644 2 -68.22738295437529 -604.5823877798308 23.3973 0.1144 4643 +4645 2 -69.3537323467593 -604.4447537754287 23.5167 0.1144 4644 +4646 2 -70.48642833095155 -604.0934021895328 23.6394 0.1144 4645 +4647 2 -71.62749974946064 -604.0157992971994 23.7933 0.1144 4646 +4648 2 -72.7477061948449 -603.9827396402 23.9915 0.1144 4647 +4649 2 -73.84776996516042 -603.7886453374955 24.3423 0.1144 4648 +4650 2 -74.92347100503073 -604.0257054741234 24.8417 0.1144 4649 +4651 2 -76.06021171884223 -604.1747432877405 25.3605 0.1144 4650 +4652 2 -77.1164493244082 -603.4961511595028 25.9463 0.1144 4651 +4653 2 -78.16050010725112 -604.3833844146059 26.6031 0.1144 4652 +4654 2 -79.262975495065 -603.8407187183934 27.2722 0.1144 4653 +4655 2 -80.35021037673229 -603.3312789923358 27.9139 0.1144 4654 +4656 2 -81.47518478143465 -603.7978333473758 28.523 0.1144 4655 +4657 2 -82.57757531394432 -602.842730493902 29.1768 0.1144 4656 +4658 2 -83.608845551648 -603.9728406974052 29.9051 0.1144 4657 +4659 2 -84.46418702837772 -603.6919977501059 30.8148 0.1144 4658 +4660 2 -85.25167143980156 -603.1094141232904 31.8371 0.1144 4659 +4661 2 -86.30139973156734 -603.2834035316181 32.783 0.1144 4660 +4662 2 -87.35859480205683 -602.9171845128393 34.44 0.1144 4661 +4663 2 11.555139084861935 -633.0623112562049 28.1655 0.1144 4552 +4664 2 10.593566238963916 -633.3875467921243 29.5044 0.1144 4663 +4665 2 9.618914189934827 -634.7071613979069 30.0068 0.1144 4664 +4666 2 8.7644118168148 -635.4135002448849 30.6018 0.1144 4665 +4667 2 7.812878456812939 -634.9000331604282 31.3648 0.1144 4666 +4668 2 7.165152571507548 -635.296457873912 33.6591 0.1144 4667 +4669 2 15.338096167451425 -626.003754254418 26.2448 0.1144 4113 +4670 2 14.86252335294067 -625.8879738736554 28.9243 0.1144 4669 +4671 2 14.027624201246738 -625.0222822948866 30.0166 0.1144 4670 +4672 2 13.219765714679596 -624.9508237372011 31.2586 0.1144 4671 +4673 2 12.823719215822294 -626.3874073640662 32.5366 0.1144 4672 +4674 2 12.16202541580735 -627.6732427335246 33.8909 0.1144 4673 +4675 2 11.335854328714262 -627.0368193784966 35.3772 0.1144 4674 +4676 2 10.311889314238769 -626.9606115752717 36.7951 0.1144 4675 +4677 2 9.29550532007984 -626.8480297513794 38.0993 0.1144 4676 +4678 2 8.391845380776289 -625.8780888715656 39.3786 0.1144 4677 +4679 2 8.111518316032488 -625.8347718741694 40.7711 0.1144 4678 +4680 2 7.36033848077723 -626.7950398126736 43.68 0.1144 4679 +4681 2 15.692359057131625 -596.4528384829396 12.7931 0.1144 4087 +4682 2 14.827527418612902 -597.3073778107048 14.8185 0.1144 4681 +4683 2 13.791620030964808 -596.3921700406993 15.6659 0.1144 4682 +4684 2 12.81339717832357 -597.3056179732607 16.5962 0.1144 4683 +4685 2 11.778887637965184 -597.5948768645255 17.6062 0.1144 4684 +4686 2 10.712062176740076 -597.3104492269522 18.6756 0.1144 4685 +4687 2 9.884108135669976 -597.6874771373012 19.9087 0.1144 4686 +4688 2 9.372153517350242 -598.2068699203398 21.2637 0.1144 4687 +4689 2 8.875878893531635 -598.9678723863883 22.605 0.1144 4688 +4690 2 7.991296581170133 -599.4116161104644 23.8946 0.1144 4689 +4691 2 7.853779764719235 -599.8429414488076 25.0292 0.1144 4690 +4692 2 7.358572516839118 -601.3008104835197 26.162 0.1144 4691 +4693 2 7.365794356194272 -602.383113644829 27.3692 0.1144 4692 +4694 2 7.671008532673085 -603.2794257432254 28.6919 0.1144 4693 +4695 2 7.3841053996646195 -604.2710899725585 30.2044 0.1144 4694 +4696 2 7.134996561917347 -604.5575125402078 31.9701 0.1144 4695 +4697 2 6.98846020871278 -604.4092666701008 33.9212 0.1144 4696 +4698 2 6.692850300021263 -603.2735308297301 35.7977 0.1144 4697 +4699 2 6.861473899394824 -602.1912457069865 37.5158 0.1144 4698 +4700 2 7.374324452763204 -601.2348237139295 39.1854 0.1144 4699 +4701 2 8.159406703892685 -601.5183706255608 40.7123 0.1144 4700 +4702 2 8.869068137855393 -602.7867364320534 42.1588 0.1144 4701 +4703 2 9.457611553615948 -604.1736717269717 43.4893 0.1144 4702 +4704 2 9.97956234169014 -604.8905183632434 44.9193 0.1144 4703 +4705 2 10.361945913287926 -605.3431379524542 46.4442 0.1144 4704 +4706 2 10.634990652042745 -606.3242665807376 47.887 0.1144 4705 +4707 2 10.78929088490709 -607.2648156793207 49.331 0.1144 4706 +4708 2 10.75369706638105 -608.3588360243713 50.7385 0.1144 4707 +4709 2 10.350762363601234 -609.711488195399 52.047 0.1144 4708 +4710 2 9.850307111794777 -611.2232420292225 53.1418 0.1144 4709 +4711 2 9.294489191517485 -612.3047558772084 54.0487 0.1144 4710 +4712 2 8.58743478041967 -612.916132513526 54.9273 0.1144 4711 +4713 2 7.869848818947929 -613.6372093894357 55.8522 0.1144 4712 +4714 2 7.089628937608339 -614.6376542981352 56.9136 0.1144 4713 +4715 2 6.278002685006868 -614.4030499106048 58.0866 0.1144 4714 +4716 2 6.000503128201785 -615.0907338891027 59.306 0.1144 4715 +4717 2 5.660399871496878 -616.3345703653536 60.4548 0.1144 4716 +4718 2 4.8732567471660815 -617.7727070716529 61.4678 0.1144 4717 +4719 2 4.262554745229565 -618.8828687545982 62.3333 0.1144 4718 +4720 2 3.6591590337588684 -619.9092502135902 63.1963 0.1144 4719 +4721 2 2.894987084410772 -620.1825188284486 64.0346 0.1144 4720 +4722 2 2.042870769625864 -621.5198813626481 64.8105 0.1144 4721 +4723 2 1.1900863639308739 -622.5924600350523 65.5547 0.1144 4722 +4724 2 0.3378825319173444 -623.6069775294675 66.2836 0.1144 4723 +4725 2 -0.5149018737776458 -623.6824815270664 67.0009 0.1144 4724 +4726 2 0.03421326458570206 -624.6276366806948 67.7029 0.1144 4725 +4727 2 0.772998202472678 -625.3983137525161 68.4779 0.1144 4726 +4728 2 1.4228057373779137 -626.5328767742926 69.3154 0.1144 4727 +4729 2 2.1473227063946325 -626.8523504563129 70.1974 0.1144 4728 +4730 2 2.8959345316179252 -627.3393882815119 70.9996 0.1144 4729 +4731 2 3.825555312049957 -628.6302709960953 71.5915 0.1144 4730 +4732 2 4.863110686949213 -629.2106657447207 71.9284 0.1144 4731 +4733 2 5.905124585064115 -629.1351059278295 71.9961 0.1144 4732 +4734 2 6.947719056860464 -630.77956919388 71.8724 0.1144 4733 +4735 2 7.989732954975295 -630.5923569958126 71.2449 0.1144 4734 +4736 2 7.134126760179001 -599.9115494941437 24.2362 0.1144 4690 +4737 2 6.202878227810615 -598.8809500818763 26.1512 0.1144 4736 +4738 2 5.2272437197749895 -598.630177905535 26.9204 0.1144 4737 +4739 2 4.224553878453449 -598.9238244412778 27.8244 0.1144 4738 +4740 2 3.485035064465791 -598.7447316742825 28.9629 0.1144 4739 +4741 2 2.7540541343022227 -597.7745911701227 30.1529 0.1144 4740 +4742 2 1.934262618873177 -598.1495695195675 31.3818 0.1144 4741 +4743 2 0.8433542460487047 -598.081540786279 32.4055 0.1144 4742 +4744 2 -0.2834317619084459 -597.9139859394835 33.2027 0.1144 4743 +4745 2 -1.4079861188183855 -597.3907974413356 33.7235 0.1144 4744 +4746 2 -2.5335515463815597 -596.8886222228546 34.0197 0.1144 4745 +4747 2 -3.6581059032914425 -597.1046297576993 34.2199 0.1144 4746 +4748 2 15.876261154738032 -540.18694219028 19.1816 0.1144 4040 +4749 2 16.790850298421475 -540.7805140143594 17.7932 0.1144 4748 +4750 2 17.751590272204723 -541.1598134386805 17.1824 0.1144 4749 +4751 2 18.846348237880882 -541.5572625685763 16.5824 0.1144 4750 +4752 2 19.981944837931344 -541.5295391113009 16.0322 0.1144 4751 +4753 2 21.07627856083176 -540.6367598432465 15.5414 0.1144 4752 +4754 2 22.005147754882657 -541.2259508411083 15.0902 0.1144 4753 +4755 2 22.91838597461986 -541.7117263650836 14.6271 0.1144 4754 +4756 2 23.98097393878693 -542.7001517002706 14.1474 0.1144 4755 +4757 2 25.09569152296619 -542.1478520452987 13.6919 0.1144 4756 +4758 2 26.176180819097098 -541.835484974063 13.3188 0.1144 4757 +4759 2 27.239193627456018 -543.4911653467498 13.049 0.1144 4758 +4760 2 28.31535594805112 -543.3722720943733 12.8666 0.1144 4759 +4761 2 29.422140248192328 -544.7105840508144 12.7248 0.1144 4760 +4762 2 30.492190367909508 -543.7478309733666 12.5794 0.1144 4761 +4763 2 31.530496924996235 -542.5732213824393 12.493 0.1144 4762 +4764 2 32.60853560443038 -543.3479042783559 12.4431 0.1144 4763 +4765 2 33.72560220899561 -542.788597819233 12.3743 0.1144 4764 +4766 2 34.850896598238556 -543.3526982103392 12.2816 0.1144 4765 +4767 2 35.98702119584722 -542.4906321228249 12.1954 0.1144 4766 +4768 2 37.10557852511497 -542.8119261013087 12.1539 0.1144 4767 +4769 2 38.22498014495096 -543.3687109608906 12.0974 0.1144 4768 +4770 2 39.33050309758721 -544.3293624111141 12.0437 0.1144 4769 +4771 2 40.43547622266372 -543.8493655230109 12.0774 0.1144 4770 +4772 2 41.521704054139796 -543.9311225613469 12.0733 0.1144 4771 +4773 2 42.58954481863261 -545.2644655145026 12.0009 0.1144 4772 +4774 2 43.65935617921044 -544.5760198494295 11.8921 0.1144 4773 +4775 2 44.683717314632965 -544.7120094980985 11.704 0.1144 4774 +4776 2 45.76533205990014 -544.6226743799282 11.4541 0.1144 4775 +4777 2 46.089052633950104 -546.5436170579607 10.6588 0.1144 4776 +4778 2 5.000475447981874 -473.38469380554625 46.0709 0.1144 2359 +4779 2 3.9502603915902625 -473.0888603302924 45.341 0.1144 4778 +4780 2 2.8406516496283167 -474.3034732325764 45.0335 0.1144 4779 +4781 2 1.7123305939216955 -474.05841325537057 44.746 0.1144 4780 +4782 2 0.5761992762955686 -473.944994828131 44.515 0.1144 4781 +4783 2 -0.563816710882147 -472.58209590146606 44.38 0.1144 4782 +4784 2 -1.7022595827548912 -473.62917956718 44.3663 0.1144 4783 +4785 2 -2.82067099266499 -474.9886541500718 44.4926 0.1144 4784 +4786 2 -3.9143015479555814 -473.8072860164898 44.7437 0.1144 4785 +4787 2 -4.886213041194058 -475.4966597331603 45.1601 0.1144 4786 +4788 2 -5.686509872744292 -475.05747987917795 45.7114 0.1144 4787 +4789 2 -6.518356432248705 -476.69900291721206 46.2767 0.1144 4788 +4790 2 -7.5327927139270905 -478.2700116871289 46.821 0.1144 4789 +4791 2 -8.58891667931621 -478.59872238519864 47.3508 0.1144 4790 +4792 2 -9.607192706083119 -478.5246411290987 47.9371 0.1144 4791 +4793 2 -10.686121667786008 -478.15977218840237 48.5282 0.1144 4792 +4794 2 -11.799566425674563 -478.0773546287252 49.0731 0.1144 4793 +4795 2 -12.930186488309204 -478.7445982620413 49.5474 0.1144 4794 +4796 2 -14.074720294843353 -477.8167630153259 49.9022 0.1144 4795 +4797 2 -15.214037775215782 -478.18591177622744 50.1567 0.1144 4796 +4798 2 -16.353316119499947 -476.4958250496737 50.3373 0.1144 4797 +4799 2 -17.49292819847557 -476.95828012151827 50.486 0.1144 4798 +4800 2 -18.6281234153583 -475.5085268623093 50.6556 0.1144 4799 +4801 2 -19.75075342284817 -476.32630668005635 50.8897 0.1144 4800 +4802 2 -20.87060853615381 -476.2307764730781 51.1874 0.1144 4801 +4803 2 -21.987980654323 -475.70361820913655 51.5256 0.1144 4802 +4804 2 -23.076187006029087 -475.281823652081 51.8538 0.1144 4803 +4805 2 -24.00942283785796 -476.44818962045656 52.1105 0.1144 4804 +4806 2 -25.03803658032246 -478.07648756169715 52.3247 0.1144 4805 +4807 2 -26.056811353953524 -478.19378645944306 52.3393 0.1144 4806 +4808 2 -26.05467959293217 -478.28029933756386 51.3576 0.1144 4807 +4809 2 -26.771815226311016 -478.05351837256063 51.2747 0.1144 4808 +4810 2 -27.131895873427354 -479.48155337146653 51.1736 0.1144 4809 +4811 2 -27.260143013163088 -480.84827678314997 50.9762 0.1144 4810 +4812 2 -27.279378762920135 -482.1662938889644 50.7335 0.1144 4811 +4813 2 -27.281854031133946 -483.47708703284377 50.4641 0.1144 4812 +4814 2 -27.32074911037985 -484.7976271888506 50.1637 0.1144 4813 +4815 2 -27.49050623874036 -486.1802472313434 49.8495 0.1144 4814 +4816 2 -27.812849422034446 -487.3705595681768 49.5981 0.1144 4815 +4817 2 -28.161480151015205 -487.9333263804299 49.4508 0.1144 4816 +4818 2 -28.314166195233632 -488.93028690705273 49.4113 0.1144 4817 +4819 2 -28.105017851421593 -490.61154253930135 49.4757 0.1144 4818 +4820 2 -27.527595377873304 -492.41539086637704 49.7011 0.1144 4819 +4821 2 -26.715060238710834 -492.8697923871933 50.1718 0.1144 4820 +4822 2 -25.88092817394118 -494.50216103491186 50.9502 0.1144 4821 +4823 2 -25.27557276775157 -495.1926822534667 52.0635 0.1144 4822 +4824 2 -24.88151366761356 -495.6968353727889 53.468 0.1144 4823 +4825 2 -24.565355214401936 -496.3569236472882 55.0508 0.1144 4824 +4826 2 -24.328057437001007 -497.24047264318585 56.6664 0.1144 4825 +4827 2 -23.989341700366538 -498.1127318803948 58.1997 0.1144 4826 +4828 2 -23.450910249595022 -498.8235188578276 59.5857 0.1144 4827 +4829 2 -22.795032678387138 -500.4279782223811 60.8289 0.1144 4828 +4830 2 -22.04632288675603 -501.4958583513251 61.9682 0.1144 4829 +4831 2 -21.328646304306684 -502.0266975088929 63.054 0.1144 4830 +4832 2 -20.875114353705214 -503.86070015300345 64.1197 0.1144 4831 +4833 2 -20.657588614327135 -505.45229777309396 65.156 0.1144 4832 +4834 2 -20.450822599688305 -506.7755432527864 66.1528 0.1144 4833 +4835 2 -20.32376019159517 -507.93903947313186 67.1219 0.1144 4834 +4836 2 -20.437692942569782 -509.2359797130756 68.0859 0.1144 4835 +4837 2 -20.505602080546435 -510.50633707479557 69.0458 0.1144 4836 +4838 2 -20.439673583640374 -511.71485621623145 69.984 0.1144 4837 +4839 2 -20.37930891784925 -512.9389324339985 70.8966 0.1144 4838 +4840 2 -20.329303331935805 -514.1617652420034 71.7965 0.1144 4839 +4841 2 -20.51996037452612 -515.4889040328434 72.6984 0.1144 4840 +4842 2 -21.191346523341824 -515.3203691108694 73.5834 0.1144 4841 +4843 2 -21.881284460013063 -516.3292844698428 74.4512 0.1144 4842 +4844 2 -22.412351843602423 -517.7224505039021 75.2914 0.1144 4843 +4845 2 -22.883529785612932 -518.3097455257174 76.0326 0.1144 4844 +4846 2 -23.347554777208007 -519.1332028440056 76.6142 0.1144 4845 +4847 2 -23.827275865263378 -520.659943855561 77.0473 0.1144 4846 +4848 2 -24.328238682090806 -522.1863722757071 77.3746 0.1144 4847 +4849 2 -24.8853820047821 -523.4178429180106 77.6826 0.1144 4848 +4850 2 -25.493118870129802 -524.8004709794599 78.052 0.1144 4849 +4851 2 -26.096606857597287 -525.3505081346472 78.461 0.1144 4850 +4852 2 -26.771966222799385 -526.0503193417935 78.8726 0.1144 4851 +4853 2 -27.726107193447735 -526.9016526657618 79.322 0.1144 4852 +4854 2 -28.79704176942791 -526.6794244196753 79.8095 0.1144 4853 +4855 2 -29.89363643170082 -527.5742286848181 80.283 0.1144 4854 +4856 2 -30.99630215988289 -527.7970504520416 80.7145 0.1144 4855 +4857 2 -32.09889487940434 -527.6069521247014 81.1009 0.1144 4856 +4858 2 -33.19744613264699 -527.4142819695859 81.429 0.1144 4857 +4859 2 -34.29071247960891 -528.0579468320913 81.697 0.1144 4858 +4860 2 -35.382314464875584 -529.0074294039646 81.9386 0.1144 4859 +4861 2 -36.465284291441066 -528.6121395530749 82.213 0.1144 4860 +4862 2 -37.535364127673745 -529.4652593172705 82.5499 0.1144 4861 +4863 2 -38.55591210677749 -529.1278262118138 82.9424 0.1144 4862 +4864 2 -39.5306267152878 -530.0769473694893 83.3798 0.1144 4863 +4865 2 -40.48713807050224 -531.3998726059436 83.8583 0.1144 4864 +4866 2 -41.393873720453385 -531.4617861324969 84.3923 0.1144 4865 +4867 2 -42.2211101846046 -532.241765854646 84.98 0.1144 4866 +4868 2 -42.86505422479327 -533.7293284293521 85.6008 0.1144 4867 +4869 2 -43.3933023535204 -534.2258078848741 86.2434 0.1144 4868 +4870 2 -43.924086617292254 -535.1716943477472 86.9193 0.1144 4869 +4871 2 -44.469411054751106 -536.2879114704291 87.6274 0.1144 4870 +4872 2 -45.01880966585987 -537.3462342670979 88.3571 0.1144 4871 +4873 2 -45.5685903928003 -537.7843135183264 89.1022 0.1144 4872 +4874 2 -46.118458636969166 -539.0356848731005 89.8621 0.1144 4873 +4875 2 -46.779545274532744 -540.2542612327636 90.6046 0.1144 4874 +4876 2 -47.51821346849387 -541.7509040571249 91.313 0.1144 4875 +4877 2 -48.24075506902278 -542.6899683027738 92.0214 0.1144 4876 +4878 2 -48.79727242774807 -543.2959613967219 92.822 0.1144 4877 +4879 2 -49.23626422865915 -544.5383876551186 93.7446 0.1144 4878 +4880 2 -49.66387509963322 -545.5706849039842 94.7719 0.1144 4879 +4881 2 -50.10685579069969 -546.4174186263717 95.8384 0.1144 4880 +4882 2 -50.55958513585222 -546.9941767527139 96.8982 0.1144 4881 +4883 2 -50.94551504313301 -548.4083730809348 97.9737 0.1144 4882 +4884 2 -51.102005891334805 -549.4791006717278 99.1449 0.1144 4883 +4885 2 -51.39300572866975 -550.5708521233395 100.2879 0.1144 4884 +4886 2 -51.79695224040901 -551.7139038662003 101.3172 0.1144 4885 +4887 2 -52.21657544567785 -553.2013758249664 102.2445 0.1144 4886 +4888 2 -52.48000502564113 -554.6686659714003 103.0705 0.1144 4887 +4889 2 -52.64176378415273 -555.0817713892039 103.7952 0.1144 4888 +4890 2 -53.20447513294221 -556.070846207191 104.5646 0.1144 4889 +4891 2 -53.7672348628718 -556.6684045253103 105.3982 0.1144 4890 +4892 2 -54.09716269768079 -558.1023287234384 106.2824 0.1144 4891 +4893 2 -54.376928982233 -559.467553731133 107.2044 0.1144 4892 +4894 2 -54.656782784013714 -560.6200795725968 108.1514 0.1144 4893 +4895 2 -54.82391150133271 -561.754434339778 109.1499 0.1144 4894 +4896 2 -54.95052832646658 -562.6694443406609 110.1744 0.1144 4895 +4897 2 -55.0166007678465 -563.7125497092793 111.1883 0.1144 4896 +4898 2 -54.901892428382894 -565.1406104481786 112.1434 0.1144 4897 +4899 2 -54.78871810706235 -566.5633125418238 113.0237 0.1144 4898 +4900 2 -54.22346542263498 -567.8672454275837 113.6873 0.1144 4899 +4901 2 -53.53893650559716 -568.5245908290619 114.1336 0.1144 4900 +4902 2 -52.64509865723049 -569.9489684819491 114.4284 0.1144 4901 +4903 2 -51.7405584190161 -570.1843949161291 114.6197 0.1144 4902 +4904 2 -50.83706838754347 -571.2023742415232 114.7488 0.1144 4903 +4905 2 -49.932576530469234 -572.1741312956738 114.8482 0.1144 4904 +4906 2 -49.0290864989966 -573.4567337027113 114.9473 0.1144 4905 +4907 2 -48.124546260782196 -574.391156555184 115.0492 0.1144 4906 +4908 2 -47.22005440370801 -575.2588883731463 115.1508 0.1144 4907 +4909 2 -46.316564372235334 -575.4932548910111 115.2525 0.1144 4908 +4910 2 -45.412024134020925 -576.5571105693513 115.3533 0.1144 4909 +4911 2 -44.50858248368842 -577.91563789454 115.4535 0.1144 4910 +4912 2 -43.60404224547406 -578.8783500138193 115.5529 0.1144 4911 +4913 2 -42.70055221400144 -580.2384870869054 115.6509 0.1144 4912 +4914 2 -41.79606035692716 -580.5744137655415 115.7472 0.1144 4913 +4915 2 -40.89257032545453 -581.6223440477461 115.841 0.1144 4914 +4916 2 -39.988030087240176 -582.9977455179003 115.9312 0.1144 4915 +4917 2 -39.08458843690766 -583.2329159466842 116.0163 0.1144 4916 +4918 2 -38.252679943334634 -584.387336504376 116.0953 0.1144 4917 +4919 2 -37.47845342210301 -586.0601828088057 116.1644 0.1144 4918 +4920 2 -36.70630235660764 -586.5524269325583 116.219 0.1144 4919 +4921 2 -35.93415129111221 -587.6087163240427 116.2538 0.1144 4920 +4922 2 -35.16203936170511 -589.0682467762833 116.2596 0.1144 4921 +4923 2 -34.388180777963996 -589.979009265317 116.1866 0.1144 4922 +4924 2 -33.61470431005454 -590.4589700402502 116.0485 0.1144 4923 +4925 2 -32.841276223285185 -591.408899701483 115.862 0.1144 4924 +4926 2 -32.06833194791708 -592.6453784683781 115.6428 0.1144 4925 +4927 2 -31.293941171634565 -593.8697923471401 115.4054 0.1144 4926 +4928 2 -30.520464703725104 -595.3254218795156 115.1629 0.1144 4927 +4929 2 -30.176672832244428 -596.4290764194735 114.933 0.1144 4928 +4930 2 -30.025222134542723 -597.868104422197 114.7185 0.1144 4929 +4931 2 -29.87548973449278 -599.3141325230446 114.5169 0.1144 4930 +4932 2 -29.726202009755724 -600.7634285341096 114.3257 0.1144 4931 +4933 2 -29.576382092477267 -602.2385753236929 114.1431 0.1144 4932 +4934 2 -29.425511968457137 -603.6223868433045 113.9681 0.1144 4933 +4935 2 -29.275692051178694 -604.8735187920614 113.7998 0.1144 4934 +4936 2 -29.12595965112874 -606.1250917641843 113.6402 0.1144 4935 +4937 2 -28.975089527108608 -607.3769257818633 113.4927 0.1144 4936 +4938 2 -28.82522122868999 -608.6290917988694 113.3608 0.1144 4937 +4939 2 -28.67598188509311 -609.8826185952136 113.253 0.1144 4938 +4940 2 -28.52616196781465 -611.1362304696828 113.1799 0.1144 4939 +4941 2 -28.375379361022915 -612.3896403730795 113.1525 0.1144 4940 +4942 2 -28.225511062604404 -613.6432313334153 113.1816 0.1144 4941 +4943 2 -28.075691145325948 -614.8972940494195 113.2746 0.1144 4942 +4944 2 -28.280140833315315 -616.3245981809812 113.575 0.1144 4943 +4945 2 -28.50554627499831 -617.7523807450517 114.0619 0.1144 4944 +4946 2 -28.731619807591343 -619.1822450933442 114.6726 0.1144 4945 +4947 2 -28.957025249274324 -620.6108329341757 115.3505 0.1144 4946 +4948 2 -29.203797538691894 -622.0487102181684 116.0454 0.1144 4947 +4949 2 -29.50830810573604 -623.3335225668009 116.7144 0.1144 4948 +4950 2 -29.813311729233206 -624.2645662719459 118.0197 0.1144 4949 +4951 2 -52.40087071121374 -555.9404058677039 103.0288 0.1144 4888 +4952 2 -52.22283786922222 -557.1589137051592 103.2682 0.1144 4951 +4953 2 -51.97926843229185 -558.3205703064086 103.3648 0.1144 4952 +4954 2 -51.60563285567481 -559.4547891890849 103.4933 0.1144 4953 +4955 2 -51.193116167296054 -560.8297427537617 103.6574 0.1144 4954 +4956 2 -50.89260436216715 -562.1316286633994 103.9391 0.1144 4955 +4957 2 -50.63165220888939 -563.231765624824 104.337 0.1144 4956 +4958 2 -50.37626911131616 -564.4267190998535 104.8163 0.1144 4957 +4959 2 -50.444277245307035 -565.7231473328065 105.3046 0.1144 4958 +4960 2 -50.72641241899752 -567.2253306436697 105.7574 0.1144 4959 +4961 2 -51.04004148117836 -568.6113876190949 106.1707 0.1144 4960 +4962 2 -51.49207661247243 -569.6733117823928 106.5299 0.1144 4961 +4963 2 -52.07705596863482 -571.0678366999227 106.8385 0.1144 4962 +4964 2 -52.68946026422732 -572.6160080865345 107.1213 0.1144 4963 +4965 2 -53.241667681019024 -573.3372757825077 107.5603 0.1144 4964 +4966 2 -53.784033701906566 -574.3011287634904 108.127 0.1144 4965 +4967 2 -53.898747718146595 -575.7232030044408 108.666 0.1144 4966 +4968 2 -54.007805161453646 -577.143441535842 109.1656 0.1144 4967 +4969 2 -54.1163304122192 -578.5630646977777 109.618 0.1144 4968 +4970 2 -54.23774042872792 -579.8691464766866 110.0106 0.1144 4969 +4971 2 -54.4572989194786 -581.0852642297673 110.2884 0.1144 4970 +4972 2 -54.67685741022929 -582.267023639903 110.4947 0.1144 4971 +4973 2 -54.89483350169685 -583.1908002071681 110.6722 0.1144 4972 +4974 2 -55.354237948759376 -584.0453298656394 110.8814 0.1144 4973 +4975 2 -55.854687975976184 -585.5989501048728 111.1432 0.1144 4974 +4976 2 -56.354619988992674 -587.1551119680641 111.4462 0.1144 4975 +4977 2 -56.85507001620954 -588.7103291270662 111.7777 0.1144 4976 +4978 2 -57.246333949217345 -590.2340030416728 112.1464 0.1144 4977 +4979 2 -57.59178690541822 -591.4036668271403 112.537 0.1144 4978 +4980 2 -57.93782043530068 -592.1188047744614 113.4 0.1144 4979 +4981 2 -48.828208663792545 -544.6428485770153 92.2872 0.1144 4878 +4982 2 -48.85910949291049 -546.0227938422285 92.258 0.1144 4981 +4983 2 -48.890097839256875 -547.4027986647593 92.2454 0.1144 4982 +4984 2 -48.92103780446319 -548.7834543064554 92.2314 0.1144 4983 +4985 2 -48.95193863358112 -550.1644002747173 92.2172 0.1144 4984 +4986 2 -48.98292697992751 -551.5457473399788 92.2046 0.1144 4985 +4987 2 -49.01382780904545 -552.9260407382924 92.1959 0.1144 4986 +4988 2 -49.04573046376494 -554.2672392245292 92.1931 0.1144 4987 +4989 2 -49.07671881011133 -555.6116484916528 92.1995 0.1144 4988 +4990 2 -49.107707156457764 -556.9552074349419 92.2186 0.1144 4989 +4991 2 -49.13855960443553 -558.2977576183006 92.2541 0.1144 4990 +4992 2 -49.16901575824056 -559.6386295502987 92.3087 0.1144 4991 +4993 2 -49.229881390995274 -560.964648155928 92.398 0.1144 4992 +4994 2 -49.37578391771649 -562.2456128277853 92.5596 0.1144 4993 +4995 2 -49.52318132649232 -563.522154671258 92.7749 0.1144 4994 +4996 2 -49.75101448763303 -564.8065808520882 93.021 0.1144 4995 +4997 2 -50.28683411914021 -565.4017633255291 93.263 0.1144 4996 +4998 2 -50.824236149930556 -566.7280339250866 93.4956 0.1144 4997 +4999 2 -51.35752487098256 -567.8341651130377 93.7152 0.1144 4998 +5000 2 -51.869364781887924 -569.0738808948996 93.9226 0.1144 4999 +5001 2 -52.38010610491139 -570.6195693500792 94.1251 0.1144 5000 +5002 2 -52.89127792490673 -572.0615534425121 94.3292 0.1144 5001 +5003 2 -53.40311783581208 -572.7437944379342 94.5386 0.1144 5002 +5004 2 -53.913907539975725 -574.113962817113 94.7509 0.1144 5003 +5005 2 -54.50308739287817 -575.2825522838065 94.9729 0.1144 5004 +5006 2 -55.27516188014244 -575.4108787652749 95.2286 0.1144 5005 +5007 2 -56.046273677893545 -576.6903061431448 95.5167 0.1144 5006 +5008 2 -56.779745978230196 -578.1910228075386 95.7435 0.1144 5007 +5009 2 -57.490090306856786 -579.6351270199507 95.886 0.1144 5008 +5010 2 -58.20092769193649 -579.7299708407063 96.0187 0.1144 5009 +5011 2 -58.7745228548214 -580.6088005240384 96.432 0.1144 5010 +5012 2 -59.34811801770631 -582.0000412624864 97.0519 0.1144 5011 +5013 2 -59.92171318059121 -582.4808875099934 97.8146 0.1144 5012 +5014 2 -60.496310169077745 -582.8114215974317 98.6608 0.1144 5013 +5015 2 -61.069905331962644 -584.2035135960845 100.578 0.1144 5014 +5016 2 -26.265381748377127 -477.3829103248772 52.4818 0.1144 4807 +5017 2 -26.910669968498034 -476.0746064749134 52.9066 0.1144 5016 +5018 2 -26.906804701877324 -476.04041104471503 53.2944 0.1144 5017 +5019 2 -26.717259395903582 -474.0247633822122 52.8738 0.1144 5018 +5020 2 -26.664942133783377 -472.15312917074004 52.6733 0.1144 5019 +5021 2 -26.569891176194012 -470.25608393635065 52.3743 0.1144 5020 +5022 2 -26.415874504971903 -468.60437504374727 52.0472 0.1144 5021 +5023 2 -26.2835300594936 -467.1103728267877 51.7325 0.1144 5022 +5024 2 -26.123523080646905 -465.6987828039221 51.4083 0.1144 5023 +5025 2 -25.684308660186854 -464.7087988479527 51.0608 0.1144 5024 +5026 2 -25.040200364947186 -462.7884672061538 50.7332 0.1144 5025 +5027 2 -24.532899036162206 -460.7960082624443 50.4767 0.1144 5026 +5028 2 -24.310059581634246 -458.77668060550934 50.3098 0.1144 5027 +5029 2 -24.107842146108318 -456.75999425969366 50.237 0.1144 5028 +5030 2 -23.841886880279528 -454.7186325763164 50.2729 0.1144 5029 +5031 2 -23.55210197055863 -452.68532095532885 50.4076 0.1144 5030 +5032 2 -23.159943132108552 -451.3983386701383 50.58 0.1144 5031 +5033 2 -22.58731634914792 -451.1682418287303 50.7189 0.1144 5032 +5034 2 -21.85347238215894 -449.0922820449573 50.8116 0.1144 5033 +5035 2 -21.10605615558593 -447.76105593188674 50.8298 0.1144 5034 +5036 2 -20.616167395258547 -446.9949037156074 50.678 0.1144 5035 +5037 2 -20.18362957213638 -445.1523274042695 50.3524 0.1144 5036 +5038 2 -19.699081557553498 -443.60225114146476 49.9125 0.1144 5037 +5039 2 -19.43056925832116 -441.6621774859194 49.4194 0.1144 5038 +5040 2 -19.577678336324517 -440.00890861178306 48.9751 0.1144 5039 +5041 2 -20.182708533383785 -438.45374882614016 48.6858 0.1144 5040 +5042 2 -20.966538856581263 -436.7595578862996 48.5419 0.1144 5041 +5043 2 -21.727657526699332 -435.01739051722717 48.6052 0.1144 5042 +5044 2 -21.548889213920543 -434.33148862367153 48.8429 0.1144 5043 +5045 2 -21.057965785025736 -433.2800508519499 49.2237 0.1144 5044 +5046 2 -20.504485541943392 -432.05396585362155 49.5438 0.1144 5045 +5047 2 -19.743656086247565 -430.94081592328746 49.7921 0.1144 5046 +5048 2 -19.1261705668139 -428.85401042088836 49.9705 0.1144 5047 +5049 2 -19.44630223641194 -428.18101374431114 50.1141 0.1144 5048 +5050 2 -19.86272212337218 -426.7059431561537 50.2499 0.1144 5049 +5051 2 -19.814755434701826 -424.8893968627668 50.3734 0.1144 5050 +5052 2 -19.61582269211503 -423.02874508028873 50.4358 0.1144 5051 +5053 2 -19.299493239838473 -420.98574460889677 50.3969 0.1144 5052 +5054 2 -18.98325130479032 -418.9432681680196 50.2799 0.1144 5053 +5055 2 -19.193531817756224 -417.32325027118895 50.1642 0.1144 5054 +5056 2 -18.98281812189774 -415.31825014047206 50.0766 0.1144 5055 +5057 2 -18.77085053685804 -413.3292420235762 50.0592 0.1144 5056 +5058 2 -18.56580759227375 -411.33159386015825 50.0063 0.1144 5057 +5059 2 -18.360246633489265 -409.68050657721665 49.9201 0.1144 5058 +5060 2 -18.155648364217953 -408.2254990720684 49.8028 0.1144 5059 +5061 2 -17.949555212891987 -407.0385037761656 49.6591 0.1144 5060 +5062 2 -17.643827659021 -405.7407123416346 49.5412 0.1144 5061 +5063 2 -17.287600799739657 -403.87977113894647 49.4522 0.1144 5062 +5064 2 -16.886752467696777 -401.78809648697495 49.4001 0.1144 5063 +5065 2 -16.578567342257916 -399.74438125484625 49.3749 0.1144 5064 +5066 2 -16.50727451532787 -397.8376293600911 49.3668 0.1144 5065 +5067 2 -16.510107285487457 -395.99331856430115 49.3665 0.1144 5066 +5068 2 -16.499585656843696 -394.1372234281159 49.3665 0.1144 5067 +5069 2 -18.643852279660248 -426.6955914627602 49.7683 0.1144 5048 +5070 2 -18.122097964190182 -425.2894250355801 49.7372 0.1144 5069 +5071 2 -17.324398797559617 -425.2081488710819 49.7123 0.1144 5070 +5072 2 -16.467541713642547 -423.2105696628976 49.6672 0.1144 5071 +5073 2 -15.767427616769178 -422.07607917918943 49.5701 0.1144 5072 +5074 2 -15.199576679640543 -420.7322800584933 49.4455 0.1144 5073 +5075 2 -15.064488687515965 -418.98209697090834 49.3366 0.1144 5074 +5076 2 -14.92944907653155 -417.24685997807325 49.2366 0.1144 5075 +5077 2 -14.48659247482117 -415.6676228307325 49.1126 0.1144 5076 +5078 2 -14.035820186459809 -413.96089708145007 48.8054 0.1144 5077 +5079 2 -22.208235992429877 -434.73746397181924 49.6905 0.1144 5043 +5080 2 -22.977903461372748 -433.8105639751398 52.3572 0.1144 5079 +5081 2 -23.498357406142986 -431.8586753401079 53.5102 0.1144 5080 +5082 2 -24.03911860996437 -430.8267157779933 54.707 0.1144 5081 +5083 2 -24.51666522227276 -429.8825801673171 55.9222 0.1144 5082 +5084 2 -24.43996173105213 -429.212172897899 58.9168 0.1144 5083 +5085 2 -27.247060635588607 -476.5192866017746 53.3229 0.1144 5017 +5086 2 -28.34324672885484 -475.6916293625617 53.7779 0.1144 5085 +5087 2 -29.473497358571137 -476.30805491898775 54.2559 0.1144 5086 +5088 2 -30.58634792822204 -477.5372080853324 54.7641 0.1144 5087 +5089 2 -31.687511024725538 -476.19957506035075 55.2538 0.1144 5088 +5090 2 -32.77392234095745 -477.69690602557563 55.7038 0.1144 5089 +5091 2 -33.81892116915103 -476.65752861644955 56.1518 0.1144 5090 +5092 2 -34.84874191508449 -478.17191759309304 56.6104 0.1144 5091 +5093 2 -35.883401066331245 -479.3253063771846 57.0662 0.1144 5092 +5094 2 -36.88382936686414 -478.6774701114546 57.4916 0.1144 5093 +5095 2 -37.78435535298215 -480.07057525922323 57.8617 0.1144 5094 +5096 2 -38.668047848896336 -479.9062950563149 58.179 0.1144 5095 +5097 2 -39.60457882284366 -480.9318140952305 58.4746 0.1144 5096 +5098 2 -40.55236005294908 -482.2743606228228 58.7829 0.1144 5097 +5099 2 -41.526711948558585 -482.87467361582134 59.1402 0.1144 5098 +5100 2 -42.56267979884392 -482.75960020438464 59.5851 0.1144 5099 +5101 2 -43.598995853462256 -482.9015149648099 60.1056 0.1144 5100 +5102 2 -44.59533580200403 -483.21408565937594 60.6399 0.1144 5101 +5103 2 -45.61021153440574 -483.3452546026679 61.1372 0.1144 5102 +5104 2 -46.68421397215072 -483.7006427991732 61.602 0.1144 5103 +5105 2 -47.79062656800843 -484.6493245299574 62.0922 0.1144 5104 +5106 2 -48.87712077829532 -484.1563529917485 62.6676 0.1144 5105 +5107 2 -49.95645830900482 -484.3070274936716 63.3206 0.1144 5106 +5108 2 -51.049204408032494 -483.4746952158537 63.9727 0.1144 5107 +5109 2 -52.1009804995272 -484.5013774643136 64.6422 0.1144 5108 +5110 2 -53.02414097271195 -485.4638562344037 65.4153 0.1144 5109 +5111 2 -53.71413521466837 -486.3293821877605 66.2225 0.1144 5110 +5112 2 -54.46094314992483 -485.50000496675784 67.4954 0.1144 5111 +5113 2 -55.59091168943012 -486.1509825384858 67.8689 0.1144 5112 +5114 2 -56.71986915828209 -485.403084557694 68.0271 0.1144 5113 +5115 2 -57.849789316647225 -486.32092881590256 68.2178 0.1144 5114 +5116 2 -58.97865926827067 -486.4943612297215 68.4334 0.1144 5115 +5117 2 -60.10866694386431 -486.2239428675355 68.6678 0.1144 5116 +5118 2 -61.23858710222945 -485.5987624222023 68.9172 0.1144 5117 +5119 2 -62.36685707724054 -486.13613794027987 69.1782 0.1144 5118 +5120 2 -63.49274099391657 -487.0819315907283 69.454 0.1144 5119 +5121 2 -64.61825697310212 -486.09894976486106 69.75 0.1144 5120 +5122 2 -65.74849818324546 -486.96805265539155 70.0874 0.1144 5121 +5123 2 -66.87950139131819 -485.82540882847564 70.4802 0.1144 5122 +5124 2 -68.00852188547283 -486.59948232219233 70.9257 0.1144 5123 +5125 2 -68.9872325699775 -487.7785667722587 71.4501 0.1144 5124 +5126 2 -69.921056899633 -487.1470233067517 72.044 0.1144 5125 +5127 2 -70.85584391880168 -488.4430271404555 72.6858 0.1144 5126 +5128 2 -71.78919861539701 -487.8943451017717 73.355 0.1144 5127 +5129 2 -72.7219727383108 -489.1830454082264 74.0362 0.1144 5128 +5130 2 -73.65734033116104 -488.56638934308927 74.718 0.1144 5129 +5131 2 -74.66509106175008 -489.78854564625146 75.3696 0.1144 5130 +5132 2 -75.70638365378421 -490.8801216653456 75.9864 0.1144 5131 +5133 2 -76.75215749304714 -490.41943391809434 76.5836 0.1144 5132 +5134 2 -77.79731162254015 -491.41289839930084 77.1781 0.1144 5133 +5135 2 -78.83541076802544 -490.66035532002763 77.789 0.1144 5134 +5136 2 -79.76966559465274 -491.9711008605299 78.4479 0.1144 5135 +5137 2 -80.67486843058845 -493.18833624099346 79.1526 0.1144 5136 +5138 2 -81.32064081503862 -494.18103048022465 79.9842 0.1144 5137 +5139 2 -81.82091048524521 -494.0354537582992 80.9315 0.1144 5138 +5140 2 -82.15415781720846 -494.8690618136349 81.9272 0.1144 5139 +5141 2 -81.0671903815896 -496.2934762615255 82.5614 0.1144 5140 +5142 2 -79.97969075342931 -496.0619613673068 83.0253 0.1144 5141 +5143 2 -53.8017047493715 -486.903515984123 66.8564 0.1144 5111 +5144 2 -53.85063412755507 -488.1014528750098 67.3439 0.1144 5143 +5145 2 -53.779603508449185 -489.5391531784899 67.6992 0.1144 5144 +5146 2 -53.6708329004868 -491.04073447866125 67.958 0.1144 5145 +5147 2 -53.56465576246093 -492.5350491432558 68.1472 0.1144 5146 +5148 2 -53.672436184494046 -493.60787582573533 68.29 0.1144 5147 +5149 2 -54.09249361589643 -494.02463447016794 68.3992 0.1144 5148 +5150 2 -54.65038176732029 -495.33209147375544 68.4698 0.1144 5149 +5151 2 -55.24840119052528 -496.78819458884465 68.5065 0.1144 5150 +5152 2 -55.915578627155526 -496.9428846364028 68.5132 0.1144 5151 +5153 2 -56.65218031913191 -497.9635800610559 68.4953 0.1144 5152 +5154 2 -57.412684993887716 -499.46579009269846 68.458 0.1144 5153 +5155 2 -58.1746219912168 -500.96684173019514 68.4009 0.1144 5154 +5156 2 -58.93402807809082 -501.36465663307746 68.3203 0.1144 5155 +5157 2 -59.691557167078464 -502.0340327582004 68.2111 0.1144 5156 +5158 2 -60.43218465156461 -503.4853084519959 68.0674 0.1144 5157 +5159 2 -60.9205979327682 -503.76376714227354 67.8437 0.1144 5158 +5160 2 -61.05633175761103 -504.7465799105072 67.5021 0.1144 5159 +5161 2 -61.048411509414215 -506.0038101837363 67.0692 0.1144 5160 +5162 2 -61.02279524271574 -507.3274964702033 66.6386 0.1144 5161 +5163 2 -60.992219180903234 -508.69020763847226 66.2931 0.1144 5162 +5164 2 -60.907253589312475 -510.14390769754664 66.05 0.1144 5163 +5165 2 -60.61246987034939 -511.9983207530565 65.9014 0.1144 5164 +5166 2 -60.13420917543034 -513.5774267639108 65.8288 0.1144 5165 +5167 2 -59.63505649042656 -514.4694092099788 65.8039 0.1144 5166 +5168 2 -59.19640755766061 -515.4238920478489 65.7992 0.1144 5167 +5169 2 -58.80511659405818 -517.1607284000653 65.7983 0.1144 5168 +5170 2 -58.36588708761066 -519.1805201534617 65.7978 0.1144 5169 +5171 2 -57.84319562815612 -520.2025719116895 65.7969 0.1144 5170 +5172 2 -57.38413358341732 -521.1374037186381 65.7955 0.1144 5171 +5173 2 -57.17870565410587 -522.3198482111648 65.7938 0.1144 5172 +5174 2 -57.19012741278155 -523.6776956762064 65.7913 0.1144 5173 +5175 2 -57.41042177851321 -525.1412536629886 65.788 0.1144 5174 +5176 2 -57.777825885292096 -526.6632808892059 65.7829 0.1144 5175 +5177 2 -58.16744858869735 -528.0618786135462 65.7762 0.1144 5176 +5178 2 -58.54891801151334 -528.8271234466101 65.767 0.1144 5177 +5179 2 -58.93599562612226 -529.4272945108219 65.7538 0.1144 5178 +5180 2 -59.43166980750709 -530.8422675579565 65.7353 0.1144 5179 +5181 2 -59.991188739354115 -532.3523771317157 65.7096 0.1144 5180 +5182 2 -60.30414075687346 -533.4033745677542 65.6737 0.1144 5181 +5183 2 -60.41482375601405 -534.4868482770211 65.6228 0.1144 5182 +5184 2 -60.54577501500738 -535.520701243123 65.5516 0.1144 5183 +5185 2 -60.753043492037555 -536.4784808118173 65.4536 0.1144 5184 +5186 2 -60.99948950508726 -537.7396783201141 65.3184 0.1144 5185 +5187 2 -61.264176703393666 -539.234264467921 65.1302 0.1144 5186 +5188 2 -61.70333751812391 -540.7392115726387 64.8334 0.1144 5187 +5189 2 -62.45328615057991 -542.209359529017 64.4633 0.1144 5188 +5190 2 -63.12615150768126 -543.669021374663 63.9943 0.1144 5189 +5191 2 -63.0573719801847 -544.6611879395896 63.2974 0.1144 5190 +5192 2 -63.500994774807616 -545.2239844218791 62.5332 0.1144 5191 +5193 2 -64.14389233741652 -545.5822377019074 61.8332 0.1144 5192 +5194 2 -64.67859920270071 -547.130147753483 61.2066 0.1144 5193 +5195 2 -65.17264456491156 -548.4067945988407 60.4859 0.1144 5194 +5196 2 -65.33087740664277 -549.3091225957825 59.7839 0.1144 5195 +5197 2 -65.43038838287552 -550.4057340994059 59.187 0.1144 5196 +5198 2 -65.89584196788206 -550.8235207858053 58.6183 0.1144 5197 +5199 2 -66.57681102030494 -552.3175623238728 58.0476 0.1144 5198 +5200 2 -67.22065186949618 -553.8636806464256 57.5786 0.1144 5199 +5201 2 -67.77465012677885 -555.4213544959345 57.176 0.1144 5200 +5202 2 -67.62882479006686 -556.5833351243697 56.6658 0.1144 5201 +5203 2 -67.16726830903698 -557.0244817650893 57.423 0.1144 5202 +5204 2 -66.53794825459842 -557.6390208615114 57.9953 0.1144 5203 +5205 2 -65.99184211004928 -558.3775288558091 58.1977 0.1144 5204 +5206 2 -65.38819734985105 -559.9997365867735 58.2826 0.1144 5205 +5207 2 -64.46024438779145 -560.9500274423528 58.4556 0.1144 5206 +5208 2 -63.39180275267448 -561.4459486610438 58.7306 0.1144 5207 +5209 2 -62.28974638304655 -561.8200404673033 59.0316 0.1144 5208 +5210 2 -61.16851422284631 -560.9491581316596 59.2525 0.1144 5209 +5211 2 -60.04099057199561 -561.3343309911438 59.383 0.1144 5210 +5212 2 -58.95398297068197 -561.4497960777493 59.3986 0.1144 5211 +5213 2 -58.08772536304484 -562.9948290972022 59.2634 0.1144 5212 +5214 2 -57.53306562327154 -564.3751503210229 58.9856 0.1144 5213 +5215 2 -57.131534444557914 -565.3167749388853 58.6561 0.1144 5214 +5216 2 -56.717779540766855 -566.2869302715396 58.3828 0.1144 5215 +5217 2 -56.145644808649465 -566.8040673309325 58.4858 0.1144 5216 +5218 2 -55.03720407095812 -567.0577937139607 58.6905 0.1144 5217 +5219 2 -53.90718594618516 -567.3356261387495 58.9915 0.1144 5218 +5220 2 -52.82086061412272 -568.0601518079903 59.4168 0.1144 5219 +5221 2 -51.871954132103404 -568.0499562847059 59.9301 0.1144 5220 +5222 2 -50.93079385709449 -568.7951552293869 61.147 0.1144 5221 +5223 2 -67.543995735892 -556.9895348193234 56.1658 0.1144 5202 +5224 2 -67.30398515796668 -558.0891525638266 55.5988 0.1144 5223 +5225 2 -67.1647581853423 -559.3093651756822 55.0589 0.1144 5224 +5226 2 -67.16100498820836 -560.4102690858264 54.4522 0.1144 5225 +5227 2 -67.20825194148811 -561.6127190899704 53.8392 0.1144 5226 +5228 2 -67.27588691339884 -563.0163431965452 53.3862 0.1144 5227 +5229 2 -67.60272552226292 -564.5204939938995 53.0785 0.1144 5228 +5230 2 -68.03678048563151 -566.0730965405003 52.8968 0.1144 5229 +5231 2 -68.15819572672993 -567.4014129087872 52.8007 0.1144 5230 +5232 2 -68.00668246954692 -568.7331967164182 52.7666 0.1144 5231 +5233 2 -67.80070294476327 -569.937182672717 52.7744 0.1144 5232 +5234 2 -67.92115549634842 -571.3511708547658 52.8352 0.1144 5233 +5235 2 -68.19500704589743 -572.597186962572 52.9595 0.1144 5234 +5236 2 -68.535853635907 -573.1175410626541 53.2347 0.1144 5235 +5237 2 -68.8912120429211 -573.8617123012 53.6525 0.1144 5236 +5238 2 -69.32057209326346 -575.3105096748764 54.2018 0.1144 5237 +5239 2 -70.14202836094688 -576.3370524197771 54.8128 0.1144 5238 +5240 2 -70.2220331505185 -576.380600620452 55.316 0.1144 5239 +5241 2 -70.84821861272427 -577.2737613650737 55.7698 0.1144 5240 +5242 2 -71.07233658395405 -578.7324083080382 56.1487 0.1144 5241 +5243 2 -71.17700029726075 -580.1706212748472 56.4584 0.1144 5242 +5244 2 -71.63492031144794 -581.3901288081224 56.7165 0.1144 5243 +5245 2 -72.26460832737364 -581.6237639401323 56.9394 0.1144 5244 +5246 2 -73.1896310186873 -582.6324242691918 57.0836 0.1144 5245 +5247 2 -73.57432976080011 -583.7241446064725 57.2883 0.1144 5246 +5248 2 -73.48365026138467 -585.1119980790344 57.4417 0.1144 5247 +5249 2 -73.98500564322303 -586.0094185247044 57.5347 0.1144 5248 +5250 2 -75.04815235107019 -586.6349700029508 57.6475 0.1144 5249 +5251 2 -76.13469298124794 -586.8476739267677 57.6198 0.1144 5250 +5252 2 -77.20260508574768 -586.4546222519034 57.4658 0.1144 5251 +5253 2 -78.14734817060368 -587.2634363579693 57.3317 0.1144 5252 +5254 2 -79.04266781391799 -588.139539872907 57.2723 0.1144 5253 +5255 2 -79.93550492791725 -589.1770586987775 57.2911 0.1144 5254 +5256 2 -80.82733097126311 -589.6633741906037 57.3854 0.1144 5255 +5257 2 -81.72025560249082 -591.1279464844945 57.5618 0.1144 5256 +5258 2 -82.5934531201587 -590.6103831350955 57.8124 0.1144 5257 +5259 2 -83.31718199099909 -592.0734359198267 58.1958 0.1144 5258 +5260 2 -84.34287272381884 -592.5282480983075 58.653 0.1144 5259 +5261 2 -85.39890814237303 -592.6256163552825 59.1469 0.1144 5260 +5262 2 -86.473433818908 -593.5016425473384 59.5834 0.1144 5261 +5263 2 -87.54155659834952 -593.1017622409986 59.9178 0.1144 5262 +5264 2 -88.46312212622777 -594.1453746550447 60.2042 0.1144 5263 +5265 2 -89.35022592947156 -595.6019041510478 60.4388 0.1144 5264 +5266 2 -90.15030592984745 -596.7893570740495 60.6262 0.1144 5265 +5267 2 -90.94899274373843 -596.8097466219899 60.7779 0.1144 5266 +5268 2 -91.33851375157396 -598.2124100550848 60.8717 0.1144 5267 +5269 2 -91.70197958307153 -599.7722112323062 60.9157 0.1144 5268 +5270 2 -92.0436089337744 -600.937953915912 60.9003 0.1144 5269 +5271 2 -92.3552392780415 -601.9081379461317 60.8224 0.1144 5270 +5272 2 -92.66647332813575 -602.8585565954131 60.6984 0.1144 5271 +5273 2 -93.11448266692008 -603.9853655068831 60.5828 0.1144 5272 +5274 2 -93.5716563569469 -605.5659595140233 60.4607 0.1144 5273 +5275 2 -94.08653441310169 -607.152699421304 60.3176 0.1144 5274 +5276 2 -94.83470069299689 -608.6215630786133 60.1188 0.1144 5275 +5277 2 -95.70296333437157 -608.8597343648564 59.8514 0.1144 5276 +5278 2 -96.5804097299196 -609.6185865581049 59.5235 0.1144 5277 +5279 2 -97.34279662715134 -610.3031903637402 59.1595 0.1144 5278 +5280 2 -98.01034200127214 -610.8961725491775 58.7796 0.1144 5279 +5281 2 -98.669985867083 -612.1393330234189 58.3828 0.1144 5280 +5282 2 -99.1604589302538 -613.1022730507078 57.9499 0.1144 5281 +5283 2 -99.22131560925696 -614.4483951225639 57.454 0.1144 5282 +5284 2 -99.10113198551346 -615.819753457599 56.8929 0.1144 5283 +5285 2 -98.89469448097651 -617.2105098232298 56.238 0.1144 5284 +5286 2 -98.40956218754681 -618.4041838241143 55.4148 0.1144 5285 +5287 2 -97.98892150690398 -619.1223533575758 54.474 0.1144 5286 +5288 2 -98.78432885244546 -620.1695453679222 53.6337 0.1144 5287 +5289 2 -99.62080118107198 -621.3091575572588 52.9105 0.1144 5288 +5290 2 -100.45575922471312 -622.8108082151184 52.3068 0.1144 5289 +5291 2 -100.64414747904819 -622.8536109028471 51.8641 0.1144 5290 +5292 2 -101.47725688148536 -623.3959886806747 51.5029 0.1144 5291 +5293 2 -102.25612011083648 -624.1726792555024 51.1932 0.1144 5292 +5294 2 -102.8508637948538 -625.7705112877351 50.92 0.1144 5293 +5295 2 -103.3266466076279 -627.36418376595 50.6778 0.1144 5294 +5296 2 -103.79534052489552 -628.1816929802656 50.4442 0.1144 5295 +5297 2 -104.14550154285746 -628.8579536263701 50.1743 0.1144 5296 +5298 2 -104.24248310406288 -630.059308017652 49.7952 0.1144 5297 +5299 2 -104.43521037779975 -631.331907899962 49.3035 0.1144 5298 +5300 2 -104.56187781780775 -632.7176039362137 48.7329 0.1144 5299 +5301 2 -104.50327278056429 -634.0570357003592 48.2028 0.1144 5300 +5302 2 -104.64261235012447 -635.4483804847143 47.7744 0.1144 5301 +5303 2 -105.34270704406696 -637.0387206076541 47.4258 0.1144 5302 +5304 2 -106.08228432181143 -637.44760450589 47.1257 0.1144 5303 +5305 2 -106.82788610997945 -638.2647121236286 46.8289 0.1144 5304 +5306 2 -107.52889511229503 -639.7580815462472 46.492 0.1144 5305 +5307 2 -107.88459546944608 -641.1687706145619 46.018 0.1144 5306 +5308 2 -107.65742949156913 -642.2088249441996 45.281 0.1144 5307 +5309 2 -107.58520474524433 -643.23970858864 44.2859 0.1144 5308 +5310 2 -108.0238130704906 -644.5258593124653 43.1438 0.1144 5309 +5311 2 -108.87809132863387 -644.7086058051539 42.0017 0.1144 5310 +5312 2 -109.87233655410334 -645.0252432273006 40.8856 0.1144 5311 +5313 2 -110.85324724952183 -645.4332299137541 39.7704 0.1144 5312 +5314 2 -111.70253389789633 -645.0813867672188 38.6274 0.1144 5313 +5315 2 -112.61132307561861 -646.3639709998192 37.6524 0.1144 5314 +5316 2 -113.6786608606329 -646.924293662378 36.7654 0.1144 5315 +5317 2 -114.63773297841267 -646.8107200338325 35.901 0.1144 5316 +5318 2 -115.58185112890911 -648.2461457474816 35.0871 0.1144 5317 +5319 2 -116.36486993053732 -649.2767492400947 34.0984 0.1144 5318 +5320 2 -117.31058139531758 -649.5549595409466 33.0672 0.1144 5319 +5321 2 -117.50793700084212 -650.0213023136686 31.7061 0.1144 5320 +5322 2 -117.42769145325063 -650.8362838403051 30.1008 0.1144 5321 +5323 2 -117.68186384218966 -651.4374162853818 28.3875 0.1144 5322 +5324 2 -117.77568423602709 -652.4660625193303 26.6433 0.1144 5323 +5325 2 -117.3857092928969 -653.5814267493072 24.8956 0.1144 5324 +5326 2 -116.97688124329048 -655.0796507224965 23.2269 0.1144 5325 +5327 2 -116.19100681189485 -656.0088671382382 21.8315 0.1144 5326 +5328 2 -116.41700896684979 -657.1144752181249 20.5685 0.1144 5327 +5329 2 -116.59238160843682 -658.0756500156102 19.3358 0.1144 5328 +5330 2 -117.21085164738527 -658.4441041186265 16.8294 0.1144 5329 +5331 2 -101.40691107029949 -622.0159769988893 53.3282 0.1144 5290 +5332 2 -102.48351224020172 -621.837445023916 53.5018 0.1144 5331 +5333 2 -103.62357557891313 -622.3701941501845 53.5402 0.1144 5332 +5334 2 -104.75499211476078 -621.5013896747994 53.6026 0.1144 5333 +5335 2 -105.43867620144198 -622.8802375526185 53.6861 0.1144 5334 +5336 2 -105.24738170246533 -624.1217699240063 53.7471 0.1144 5335 +5337 2 -104.95460565516746 -625.2782511254004 53.7975 0.1144 5336 +5338 2 -104.65457645731222 -626.4286245537562 53.8294 0.1144 5337 +5339 2 -104.35458639554537 -627.6074594819505 53.8398 0.1144 5338 +5340 2 -104.05560740443185 -629.2448455031008 53.8121 0.1144 5339 +5341 2 -103.6903861257353 -631.2042305866852 53.7146 0.1144 5340 +5342 2 -103.23367071194298 -632.7998506243964 53.5147 0.1144 5341 +5343 2 -102.77180256107665 -633.7677416388211 53.2213 0.1144 5342 +5344 2 -102.31156519063362 -634.73387433178 52.8511 0.1144 5343 +5345 2 -101.48507987103864 -635.4616656296607 52.3345 0.1144 5344 +5346 2 -100.56206328070006 -636.3022505879956 51.6869 0.1144 5345 +5347 2 -100.83041252900902 -637.1897361759126 50.9902 0.1144 5346 +5348 2 -101.30478914215809 -638.4107195843588 50.328 0.1144 5347 +5349 2 -101.568414654937 -639.6160951642228 49.7633 0.1144 5348 +5350 2 -101.52153323607358 -640.9815782589037 49.3892 0.1144 5349 +5351 2 -102.03758036373648 -642.1965206198706 49.184 0.1144 5350 +5352 2 -103.04665500131175 -643.5303409838291 49.11 0.1144 5351 +5353 2 -104.12766926651399 -642.6911906042478 49.1462 0.1144 5352 +5354 2 -105.20863711182531 -643.673617622338 49.3111 0.1144 5353 +5355 2 -106.31492519013665 -642.7978245223583 49.4897 0.1144 5354 +5356 2 -107.35812422408777 -643.4294232631141 49.6171 0.1144 5355 +5357 2 -108.39054589828133 -644.4348217237322 49.7521 0.1144 5356 +5358 2 -109.25287304188879 -644.2618397057644 49.9192 0.1144 5357 +5359 2 -110.16878349226188 -645.5480060351886 50.1264 0.1144 5358 +5360 2 -110.89828108078427 -646.3117828440168 50.3874 0.1144 5359 +5361 2 -111.63397895119805 -646.0805248431209 50.8329 0.1144 5360 +5362 2 -112.59125607113472 -646.6995250158936 51.2599 0.1144 5361 +5363 2 -113.70834254445225 -647.0003751420146 51.49 0.1144 5362 +5364 2 -114.77146788811928 -646.7658422478178 51.5953 0.1144 5363 +5365 2 -115.83317508755411 -647.9870247214135 51.5595 0.1144 5364 +5366 2 -116.81619771287288 -647.8867386528257 51.2963 0.1144 5365 +5367 2 -117.70932194445032 -646.3728858275196 51.0642 0.1144 5366 +5368 2 -118.74438657458919 -645.884525401659 50.4885 0.1144 5367 +5369 2 -69.9915396897145 -576.5561191847876 55.8096 0.1144 5239 +5370 2 -69.11788248600857 -576.525266519463 55.5419 0.1144 5369 +5371 2 -68.33547094609057 -577.2648417838301 55.4655 0.1144 5370 +5372 2 -67.73230247734232 -577.1029941119643 54.9567 0.1144 5371 +5373 2 -67.24717282184031 -576.0930521484097 54.1215 0.1144 5372 +5374 2 -66.96468058802898 -574.9916285299516 53.1457 0.1144 5373 +5375 2 -67.00680556399122 -573.6769531205518 52.2886 0.1144 5374 +5376 2 -67.62353951067836 -573.1016980308316 51.5376 0.1144 5375 +5377 2 -68.60974097601449 -571.7152560390423 50.895 0.1144 5376 +5378 2 -69.58845845579899 -571.1434855455898 50.3678 0.1144 5377 +5379 2 -70.44347775188518 -570.0890335338037 49.9453 0.1144 5378 +5380 2 -71.08572469901095 -568.9565191214357 49.595 0.1144 5379 +5381 2 -71.44149598161319 -567.9105677963432 49.2467 0.1144 5380 +5382 2 -71.50571696027357 -566.646800525449 48.8384 0.1144 5381 +5383 2 -71.79699093967788 -565.4834554687598 48.3255 0.1144 5382 +5384 2 -72.6573073591367 -563.6871220879483 47.8324 0.1144 5383 +5385 2 -73.71802415142331 -563.781383329366 47.5115 0.1144 5384 +5386 2 -74.28863175993635 -562.5146912260076 47.2702 0.1144 5385 +5387 2 -74.36798393514455 -561.1760094945595 47.0714 0.1144 5386 +5388 2 -73.48387032420037 -560.8710668733677 46.8062 0.1144 5387 +5389 2 -72.52092095756156 -560.5652804602443 46.377 0.1144 5388 +5390 2 -71.42489539018446 -561.0581723782448 46.0314 0.1144 5389 +5391 2 -70.5921591498275 -559.9734295795492 45.7596 0.1144 5390 +5392 2 -70.03867890674516 -559.2724675996184 45.4395 0.1144 5391 +5393 3 3.6815742747049836 -366.7726918000033 42.196 0.381 1 +5394 3 4.5531935264453045 -368.9555331773012 42.4178 0.3778 5393 +5395 3 5.126415503253513 -370.58309631838165 42.6569 0.3762 5394 +5396 3 5.591878949657813 -372.0604114759537 42.8865 0.3747 5395 +5397 3 6.080686733125102 -373.7246234615662 43.1234 0.3731 5396 +5398 3 6.388567854022446 -376.14170209887254 43.3412 0.3715 5397 +5399 3 6.42862259883824 -378.0345025395656 43.4913 0.37 5398 +5400 3 6.5126005431685785 -380.00994905427495 43.5408 0.3684 5399 +5401 3 6.988837892653361 -381.6736174716612 43.4997 0.3668 5400 +5402 3 7.8355408572269365 -382.5873145157814 43.419 0.3652 5401 +5403 3 8.85390803112529 -382.50242923235703 43.3418 0.3637 5402 +5404 3 9.921371904376159 -384.1458457231008 43.2886 0.3621 5403 +5405 3 10.95569067617612 -384.72575022179245 43.265 0.3605 5404 +5406 3 11.89995212173711 -386.7949275201866 43.2782 0.359 5405 +5407 3 12.66161343357593 -388.17677412000944 43.342 0.3574 5406 +5408 3 13.197034357474218 -389.4010171341717 43.4722 0.3558 5407 +5409 3 13.801257166319743 -390.42058893456283 43.6881 0.3543 5408 +5410 3 14.588851060568295 -391.9569782948132 43.9992 0.3527 5409 +5411 3 15.4308225399879 -393.41670705201585 44.4088 0.3511 5410 +5412 3 16.189148078192023 -394.8393196766856 44.9344 0.3495 5411 +5413 3 16.675243526956358 -397.12772320606285 45.5795 0.348 5412 +5414 3 16.88973634567474 -398.9988277339412 46.2885 0.3464 5413 +5415 3 17.063785056279084 -400.54045667440096 47.0098 0.3448 5414 +5416 3 17.391758237371082 -402.1107201701437 47.7232 0.3433 5415 +5417 3 17.832311650804755 -404.04951398419297 48.3848 0.3417 5416 +5418 3 18.18256748343228 -405.96689552086 48.9359 0.3401 5417 +5419 3 18.404605817577142 -408.0508049593466 49.3562 0.3385 5418 +5420 3 18.715037251860537 -410.1529914574105 49.6751 0.337 5419 +5421 3 19.452197099735383 -411.3386859214232 49.936 0.3354 5420 +5422 3 20.4558413158659 -412.11072851357363 50.1584 0.3338 5421 +5423 3 21.41208217254855 -412.70511638763224 50.3465 0.3323 5422 +5424 3 22.335612153913882 -413.8460835008246 50.5182 0.3307 5423 +5425 3 23.37279436673302 -415.5163157571521 50.6988 0.3291 5424 +5426 3 24.436396702524995 -416.0443746512825 50.8816 0.3276 5425 +5427 3 25.42078120442185 -417.4392854222732 51.0395 0.326 5426 +5428 3 26.30799083659077 -417.87617643763554 51.1622 0.3244 5427 +5429 3 27.131258217711093 -419.5643335479587 51.256 0.3228 5428 +5430 3 27.918794777067983 -420.77483813767094 51.3304 0.3213 5429 +5431 3 28.686112661839832 -423.2083610324443 51.3943 0.3197 5430 +5432 3 29.438982784516238 -424.1838717356303 51.4612 0.3181 5431 +5433 3 30.205782655087816 -426.24782694792884 51.5553 0.3166 5432 +5434 3 30.984929874271526 -427.0979896750605 51.6922 0.315 5433 +5435 3 31.7634573836853 -428.4415047415345 51.8633 0.3134 5434 +5436 3 32.593720918493844 -429.2854184996341 52.0554 0.3118 5435 +5437 3 33.454528335192904 -431.6315656111594 52.2673 0.3103 5436 +5438 3 34.18474563510929 -433.100826700641 52.5252 0.3087 5437 +5439 3 34.70440790306593 -434.2413471291922 52.8682 0.3071 5438 +5440 3 35.23748592517958 -436.7812437140133 53.3165 0.3056 5439 +5441 3 36.01190791340544 -438.4825510292849 53.8754 0.304 5440 +5442 3 37.01389625577085 -438.21116436733325 54.5258 0.3024 5441 +5443 3 38.04868299068194 -438.0285395399666 55.2208 0.3008 5442 +5444 3 38.95508455301362 -440.72225346287263 55.8785 0.2993 5443 +5445 3 39.035956568023565 -442.4495773167297 56.4458 0.2977 5444 +5446 3 38.50771888847584 -443.8369898114843 56.961 0.2961 5445 +5447 3 38.52280626542935 -445.74487018011126 57.4913 0.2946 5446 +5448 3 39.36849023520455 -446.62792501771594 58.0958 0.293 5447 +5449 3 40.153246675787514 -448.06236346183596 58.7602 0.2914 5448 +5450 3 40.55420772999899 -450.9149709780681 59.4378 0.2899 5449 +5451 3 40.74235193897728 -452.64476634948846 60.1124 0.2883 5450 +5452 3 41.25712052594186 -453.5279626203467 60.1605 0.2883 5451 +5453 3 41.64304984544115 -454.87543082870457 60.1182 0.2873 5452 +5454 3 41.682204460224966 -456.65191950718395 60.0852 0.2868 5453 +5455 3 41.522734898509405 -458.6006525014617 60.0645 0.2862 5454 +5456 3 41.40296984076507 -460.5060158749874 60.0944 0.2857 5455 +5457 3 41.55367943889606 -462.1503439743971 60.2003 0.2852 5456 +5458 3 41.95796461343529 -463.44557149194634 60.37 0.2847 5457 +5459 3 42.59142410056049 -464.3663214741928 60.5486 0.2842 5458 +5460 3 43.33132749508161 -466.63870794162517 60.6287 0.2837 5459 +5461 3 44.032871190976294 -468.48286552583386 60.5413 0.2832 5460 +5462 3 44.628456616530976 -469.4801366971503 60.3347 0.2826 5461 +5463 3 45.158144229673745 -471.90832595990594 60.086 0.2821 5462 +5464 3 45.67452180469124 -474.4502903836508 59.8402 0.2816 5463 +5465 3 46.1325820238285 -475.7193513024235 59.5949 0.2811 5464 +5466 3 46.36415637586826 -477.27837181054224 59.3127 0.2806 5465 +5467 3 46.32949450073353 -478.71661540951095 58.9495 0.2801 5466 +5468 3 46.13305203708579 -480.0348918989007 58.4881 0.2796 5467 +5469 3 45.91666086993561 -481.3668678385308 57.9622 0.2791 5468 +5470 3 46.01553498083621 -482.5327534692731 57.4426 0.2785 5469 +5471 3 46.4823811645462 -483.3830758703979 56.9615 0.278 5470 +5472 3 47.1429109580513 -485.4263021460468 56.5079 0.2775 5471 +5473 3 47.84083593501508 -486.351497074588 56.1019 0.277 5472 +5474 3 48.23833236746741 -487.25063257217136 55.802 0.2765 5473 +5475 3 48.42220021578405 -488.3948357987542 55.6352 0.276 5474 +5476 3 48.97812429391796 -489.14804885008857 55.5876 0.2755 5475 +5477 3 49.750487995604445 -489.7091544424292 55.6214 0.2749 5476 +5478 3 50.21920595261105 -491.82417731145006 55.6934 0.2744 5477 +5479 3 50.2692808180233 -493.2450637242519 55.778 0.2739 5478 +5480 3 50.220569300620454 -494.48733840578404 55.8667 0.2734 5479 +5481 3 50.409570483080216 -495.92315253954564 55.9664 0.2729 5480 +5482 3 51.01418315738129 -496.5903301534998 56.0734 0.2724 5481 +5483 3 51.97974067575025 -497.69921790801317 56.1705 0.2719 5482 +5484 3 53.01857307192345 -498.3532524286806 56.2512 0.2714 5483 +5485 3 53.67721881729808 -498.90992259355977 56.3175 0.2709 5484 +5486 3 53.77972765112529 -500.09542633690177 56.3746 0.2703 5485 +5487 3 53.71650058755606 -501.4181545699053 56.4295 0.2698 5486 +5488 3 53.889327086743805 -502.5691243291178 56.4928 0.2693 5487 +5489 3 54.394295375141944 -503.54197169327193 56.5779 0.2688 5488 +5490 3 55.01503584700272 -505.27320472672824 56.6983 0.2683 5489 +5491 3 55.52499261742386 -506.76304894859 56.866 0.2678 5490 +5492 3 56.0298108291122 -507.59104632397055 57.0906 0.2673 5491 +5493 3 56.70763329670197 -508.699802190715 57.3737 0.2667 5492 +5494 3 57.40019812499039 -510.40079211166847 57.7004 0.2662 5493 +5495 3 57.83874909134853 -511.46065477533824 58.0303 0.2657 5494 +5496 3 58.06093750220315 -512.5985770522111 58.3201 0.2652 5495 +5497 3 58.317454264358076 -513.6923840850642 58.5637 0.2647 5496 +5498 3 58.648666748104766 -514.7142499387719 58.7751 0.2642 5497 +5499 3 58.9325980005104 -515.7836883815434 58.9585 0.2637 5498 +5500 3 59.12000782993558 -516.9375345319155 59.1128 0.2632 5499 +5501 3 59.254335333193204 -518.134683206601 59.2516 0.2627 5500 +5502 3 59.46387101742659 -519.2729129453367 59.3992 0.2621 5501 +5503 3 59.8268615390875 -521.1417352246101 59.5708 0.2616 5502 +5504 3 60.317469582618635 -522.6004699677786 59.7649 0.2611 5503 +5505 3 60.89242030625787 -523.6326674804037 59.9718 0.2606 5504 +5506 3 61.550222226885815 -524.9325698599598 60.1784 0.2601 5505 +5507 3 62.301166970535775 -526.3206037783709 60.3655 0.2596 5506 +5508 3 63.158316532215494 -527.0342141395853 60.5228 0.2591 5507 +5509 3 64.07325378226831 -527.2321144589729 60.6648 0.2585 5508 +5510 3 64.91411772005466 -528.7029483592873 60.8154 0.258 5509 +5511 3 65.53505142517567 -529.6869534704476 60.9728 0.2575 5510 +5512 3 65.93849127954032 -530.8311613076528 61.1136 0.257 5511 +5513 3 66.21568739558893 -532.0960490192779 61.2262 0.2565 5512 +5514 3 66.39842829934142 -533.7066945806874 61.3122 0.256 5513 +5515 3 66.46791565525254 -535.1609913164166 61.3768 0.2555 5514 +5516 3 66.45336823409895 -536.4888107645642 61.4272 0.255 5515 +5517 3 66.43370721195981 -537.8133476057837 61.4771 0.2544 5516 +5518 3 66.4452972597831 -539.1787775640429 61.5465 0.2539 5517 +5519 3 66.4323322379127 -540.5083944968334 61.6448 0.2534 5518 +5520 3 66.29178613070499 -541.6448582896742 61.7613 0.2529 5519 +5521 3 65.99781639801296 -542.5256816498 61.8778 0.2524 5520 +5522 3 65.62178013253296 -543.7199553980128 61.9906 0.2519 5521 +5523 3 65.23067672541427 -544.9512891634298 62.1104 0.2514 5522 +5524 3 64.85886471029391 -546.4018734111354 62.2457 0.2509 5523 +5525 3 64.52894479962998 -547.5923006865237 62.3913 0.2503 5524 +5526 3 64.26417008409516 -548.5465680313202 62.5405 0.2498 5525 +5527 3 64.1298127423619 -549.7052071269906 62.7038 0.2493 5526 +5528 3 64.1971802818588 -551.1347919488846 62.8992 0.2488 5527 +5529 3 64.42934043216984 -552.7462211260539 63.121 0.2483 5528 +5530 3 64.7501257217412 -554.007518061873 63.3396 0.2478 5529 +5531 3 65.15498372033801 -555.0137623816814 63.5362 0.2473 5530 +5532 3 65.46637784413454 -556.3637304540742 63.7104 0.2467 5531 +5533 3 65.38786577814588 -557.6509913224288 63.8744 0.2462 5532 +5534 3 65.15218993901483 -558.8701694571373 64.0534 0.2457 5533 +5535 3 64.94767918697202 -560.1482537415723 64.276 0.2452 5534 +5536 3 64.60409427490592 -561.5847703252066 64.5621 0.2447 5535 +5537 3 63.93865826802 -562.3034625367592 64.8917 0.2442 5536 +5538 3 63.16166308280373 -563.3006134703413 65.2422 0.2437 5537 +5539 3 62.773674888983514 -564.7470377145038 65.6362 0.2432 5538 +5540 3 62.90107252719606 -565.9409106986667 66.0688 0.2426 5539 +5541 3 63.109538601756896 -567.0727089275164 66.5246 0.2421 5540 +5542 3 63.194498968758 -568.3105540981469 67.0043 0.2416 5541 +5543 3 63.36568946293283 -569.4704721064109 67.5237 0.2411 5542 +5544 3 63.64578293149926 -570.740225380038 68.0862 0.2406 5543 +5545 3 64.07720843022327 -572.321174769892 68.7504 0.2401 5544 +5546 3 64.67215324764939 -573.0948841934292 69.447 0.2396 5545 +5547 3 65.34054661750356 -574.4731410513273 70.0543 0.2391 5546 +5548 3 66.0373603236722 -576.1820284898911 70.5888 0.2385 5547 +5549 3 66.7995094673744 -576.8285114327125 71.1217 0.238 5548 +5550 3 67.57282540939474 -577.9002919195042 71.6724 0.2375 5549 +5551 3 68.37566101391752 -578.1838729397938 72.3153 0.237 5550 +5552 3 68.92496582960514 -579.7993754947898 73.0083 0.2365 5551 +5553 3 69.09449149626332 -580.9729642966213 73.8206 0.236 5552 +5554 3 69.19716980973121 -582.1837993962389 74.5702 0.2355 5553 +5555 3 69.49880855942428 -583.2170398745648 75.2612 0.235 5554 +5556 3 69.98960834078781 -584.2218126948753 75.9181 0.2344 5555 +5557 3 70.54956866061082 -586.2755133193938 76.4873 0.2339 5556 +5558 3 71.16271300217096 -587.3480894197124 76.9476 0.2334 5557 +5559 3 71.82946141326073 -588.0724767664624 77.3035 0.2329 5558 +5560 3 72.40188645103451 -590.2973810462315 77.5788 0.2324 5559 +5561 3 72.48781473213847 -591.7637732690284 77.8176 0.2319 5560 +5562 3 72.52606921689039 -593.1314190212088 78.0808 0.2314 5561 +5563 3 72.56470581747402 -594.4193327436535 78.3684 0.2308 5562 +5564 3 72.54159435191693 -595.7265986984578 78.6752 0.2303 5563 +5565 3 72.46367703795096 -597.0689442154265 78.9888 0.2298 5564 +5566 3 72.38584724121345 -598.3543131344472 79.6594 0.2293 5565 +5567 3 41.60963269876487 -452.4772472067483 60.8504 0.2883 5451 +5568 3 42.502934159606895 -452.6645875144146 61.5404 0.2873 5567 +5569 3 43.15149872033161 -453.88954354038094 62.1018 0.2868 5568 +5570 3 43.3980332938508 -456.45853142301485 62.5531 0.2863 5569 +5571 3 43.37069757793399 -458.26148837008435 62.9367 0.2858 5570 +5572 3 43.3608388156106 -460.12112407606116 63.2716 0.2853 5571 +5573 3 43.67489269798676 -462.76217046987153 63.5628 0.2848 5572 +5574 3 44.38733322111691 -463.54686195619274 63.8165 0.2842 5573 +5575 3 45.26829152833009 -465.3452404940331 64.0192 0.2837 5574 +5576 3 46.12713442991432 -467.00725677790354 64.1634 0.2832 5575 +5577 3 46.89265205462236 -467.9283013270981 64.2561 0.2827 5576 +5578 3 47.551504181991945 -471.0922162526598 64.2863 0.2822 5577 +5579 3 48.09631627166503 -472.24515894214517 64.2177 0.2817 5578 +5580 3 48.5368033964556 -473.6052126087002 64.0293 0.2812 5579 +5581 3 48.90626683301481 -474.99079533792457 63.7378 0.2807 5580 +5582 3 49.23753142706347 -476.40701397448055 63.3828 0.2802 5581 +5583 3 49.55426107201486 -477.8255866902475 62.9938 0.2797 5582 +5584 3 49.80679370278257 -478.8731712485352 62.603 0.2792 5583 +5585 3 49.890698638452285 -480.0769939726289 62.305 0.2787 5584 +5586 3 49.76228724366565 -481.422556295422 62.2138 0.2782 5585 +5587 3 49.52676521040617 -482.79513666438856 62.3622 0.2777 5586 +5588 3 49.37497257620218 -484.10169625672614 62.722 0.2772 5587 +5589 3 49.52747973484165 -485.20290638149174 63.2433 0.2767 5588 +5590 3 50.08967304543427 -486.66846748245405 63.8462 0.2762 5589 +5591 3 50.915314540282516 -487.98888959496713 64.4235 0.2757 5590 +5592 3 51.73947682684506 -488.4444016300974 64.8978 0.2752 5591 +5593 3 52.36423786662603 -490.81369685205874 65.2621 0.2747 5592 +5594 3 52.863540628339585 -491.71918331720934 65.5542 0.2742 5593 +5595 3 53.35988198262619 -492.55645313139246 65.8157 0.2737 5594 +5596 3 53.87312867057615 -493.3689544297005 66.0738 0.2732 5595 +5597 3 54.42826103426523 -494.2047278767403 66.332 0.2727 5596 +5598 3 55.06442613607589 -495.630317064783 66.5759 0.2722 5597 +5599 3 55.80476525215846 -497.1596774583161 66.7915 0.2717 5598 +5600 3 56.635130482536624 -497.5238859846797 66.9729 0.2712 5599 +5601 3 57.49376074792984 -499.5351960265063 67.1255 0.2706 5600 +5602 3 58.322974075996726 -500.05414116175245 67.2773 0.2701 5601 +5603 3 59.12757499947824 -500.45181484482754 67.4691 0.2696 5602 +5604 3 59.955302399241965 -501.11764107440575 67.7046 0.2691 5603 +5605 3 60.84727742806348 -502.7189746884697 67.9526 0.2686 5604 +5606 3 61.793866101640134 -503.1707606935902 68.2038 0.2681 5605 +5607 3 62.736327287137286 -504.7723832943612 68.4614 0.2676 5606 +5608 3 63.60233059746077 -505.28408754860476 68.7053 0.2671 5607 +5609 3 64.35958922554772 -505.77296679648714 68.9156 0.2666 5608 +5610 3 65.0268556508378 -506.82264249543056 69.1015 0.2661 5609 +5611 3 65.6313730582865 -508.7102481019249 69.2938 0.2656 5610 +5612 3 66.23512623407184 -509.47336521450177 69.517 0.2651 5611 +5613 3 66.95457336006962 -510.79409145721075 69.7715 0.2646 5612 +5614 3 67.81268038667287 -512.0857417358671 70.0521 0.2641 5613 +5615 3 68.7061934540995 -512.5585031099014 70.3646 0.2636 5614 +5616 3 69.5154044729342 -512.9572584650027 70.7146 0.2631 5615 +5617 3 70.22669309375304 -514.4404966838852 71.0777 0.2626 5616 +5618 3 71.00679777786024 -515.4712006621353 71.4062 0.2621 5617 +5619 3 71.94624022103889 -516.408746056441 71.6646 0.2616 5618 +5620 3 72.9304120867447 -517.4917672854217 71.85 0.2611 5619 +5621 3 73.76572143846789 -518.40324325809 71.9757 0.2606 5620 +5622 3 74.38246107556603 -520.3749374314406 72.06 0.2601 5621 +5623 3 74.9790680209534 -521.09623211692 72.1241 0.2596 5622 +5624 3 75.65101755025724 -521.7128704723577 72.2002 0.259 5623 +5625 3 76.35976228640735 -522.2677956630527 72.3128 0.2585 5624 +5626 3 77.08381577859645 -523.9857735977138 72.4461 0.258 5625 +5627 3 77.78004891108351 -525.229738289087 72.5651 0.2575 5626 +5628 3 78.33736365066815 -526.000611153964 72.6527 0.257 5627 +5629 3 78.81821781552364 -527.6209537497386 72.7073 0.2565 5628 +5630 3 79.4233016183127 -529.0050441226092 72.7303 0.256 5629 +5631 3 80.08305387571423 -529.6958710098863 72.7272 0.2555 5630 +5632 3 80.50881804273699 -530.9073147015807 72.7042 0.255 5631 +5633 3 80.54007637380064 -532.2030779883144 72.6662 0.2545 5632 +5634 3 80.39946770711163 -533.4940690347997 72.6124 0.254 5633 +5635 3 80.36847936076525 -534.7979612206527 72.5424 0.2535 5634 +5636 3 80.60398303433489 -536.005582703034 72.4436 0.253 5635 +5637 3 81.08493367017036 -536.8564855097744 72.2823 0.2525 5636 +5638 3 81.57119114025163 -538.1076063271696 72.0535 0.252 5637 +5639 3 81.74529466071328 -539.6825425153206 71.808 0.2515 5638 +5640 3 81.57732883866514 -540.766712833714 71.6058 0.251 5639 +5641 3 81.28528448499964 -541.6575303437357 71.4739 0.2505 5640 +5642 3 80.97553113861883 -543.0590995170077 71.4286 0.25 5641 +5643 3 80.64984965665573 -544.4914217195466 71.4683 0.2495 5642 +5644 3 80.26940548283423 -545.9422935239219 71.5476 0.249 5643 +5645 3 79.8606414641404 -547.1237241244462 71.615 0.2485 5644 +5646 3 79.51291086519157 -548.3125419930662 71.6523 0.248 5645 +5647 3 79.41049208726169 -549.6128390463424 71.6635 0.2475 5646 +5648 3 79.71265930033437 -550.920527885518 71.6542 0.2469 5647 +5649 3 80.1169851063897 -552.2042732418205 71.6299 0.2464 5648 +5650 3 80.25233785864191 -553.3999392960155 71.5971 0.2459 5649 +5651 3 80.10303447377046 -554.7747305281051 71.5585 0.2454 5650 +5652 3 79.72248860437932 -555.9982489504256 71.5137 0.2449 5651 +5653 3 79.3339302860569 -557.1272934459852 71.4462 0.2444 5652 +5654 3 79.29630327433341 -558.4169113384106 71.3272 0.2439 5653 +5655 3 79.40041913496427 -559.7503220521772 71.1861 0.2434 5654 +5656 3 79.4248313890495 -561.076146491023 71.0646 0.2429 5655 +5657 3 79.39494163058491 -562.385899763276 70.9752 0.2424 5656 +5658 3 79.44439276576509 -563.7245521584813 70.9187 0.2419 5657 +5659 3 79.56016475200536 -565.0803087141575 70.8926 0.2414 5658 +5660 3 79.48473519194413 -566.3734316455497 70.8926 0.2409 5659 +5661 3 79.2576431303741 -567.6151925352481 70.9092 0.2404 5660 +5662 3 79.04984246080244 -568.829913194128 70.9366 0.2399 5661 +5663 3 78.87960272516821 -570.0896262253953 70.9752 0.2394 5662 +5664 3 78.71396935572537 -571.4706588128165 71.0259 0.2389 5663 +5665 3 78.55443723452845 -572.8470859620755 71.0998 0.2384 5664 +5666 3 78.41797947931185 -574.208062634086 71.2149 0.2379 5665 +5667 3 78.30415141476257 -575.5547593989447 71.3712 0.2374 5666 +5668 3 78.22557678929262 -576.8828210876966 71.5495 0.2369 5667 +5669 3 78.24597742920915 -578.1562873306959 71.7228 0.2364 5668 +5670 3 78.50204951605107 -579.2519084143237 71.8561 0.2359 5669 +5671 3 78.87092864976692 -580.5111806164862 71.9334 0.2354 5670 +5672 3 79.30712001096502 -581.9932233099703 71.9354 0.2349 5671 +5673 3 79.753195594391 -582.9199338334379 71.8816 0.2343 5672 +5674 3 79.89160100046041 -584.0996780600505 71.7528 0.2338 5673 +5675 3 79.95108120998862 -585.33756639096 71.5893 0.2333 5674 +5676 3 79.54517661185184 -586.805544966641 71.5403 0.2328 5675 +5677 3 79.35403323282591 -588.1742480592264 71.6419 0.2323 5676 +5678 3 79.45760645173601 -589.3773663164015 71.8466 0.2318 5677 +5679 3 79.68521384158544 -590.5128766193263 72.0297 0.2313 5678 +5680 3 79.91686120228593 -591.6461498333349 72.182 0.2308 5679 +5681 3 79.82965964270446 -593.006882878594 72.2912 0.2303 5680 +5682 3 79.52243720677882 -594.4645002148698 72.3484 0.2298 5681 +5683 3 79.21416456411148 -595.9216778663465 72.3668 0.2293 5682 diff --git a/example_data/layer_aligned_swcs/740135032.swc b/example_data/layer_aligned_swcs/740135032.swc new file mode 100644 index 0000000..33f2d0a --- /dev/null +++ b/example_data/layer_aligned_swcs/740135032.swc @@ -0,0 +1,15913 @@ +1 1 0.0 -488.95489922056464 25.802 4.004 -1 +2 3 -2.720275584853238 -493.2794414872338 23.225 0.4665 1 +3 3 -3.21494301630527 -494.28918371758397 22.6751 0.2771 2 +4 3 -3.886552090283911 -496.7086100645881 22.2276 0.2764 3 +5 3 -4.843247467490889 -496.766436195831 21.8782 0.2758 4 +6 3 -5.806763783311134 -496.77726215311077 21.5706 0.2752 5 +7 3 -6.293099539908534 -497.63794503453886 21.3484 0.2746 6 +8 3 -6.533252382495578 -499.25163340378805 21.1794 0.274 7 +9 3 -6.810029443586291 -501.1494746025198 21.0111 0.2735 8 +10 3 -7.0332109921019015 -502.94882800919424 20.8461 0.2729 9 +11 3 -7.358375088134382 -504.29934054599005 20.704 0.2723 10 +12 3 -8.176682342961733 -504.6309420305501 20.5689 0.2717 11 +13 3 -8.947310036980086 -506.67101500057765 20.4322 0.2711 12 +14 3 -9.248899235906674 -508.2146635887475 20.2613 0.2705 13 +15 3 -9.728322752570962 -509.1349022029656 20.0099 0.2699 14 +16 3 -10.432369881617376 -509.69295140100485 19.7581 0.2693 15 +17 3 -10.840545048836674 -510.7472789974827 19.514 0.2687 16 +18 3 -10.78910148844994 -512.156850739372 19.2728 0.2682 17 +19 3 -10.584638565655727 -513.6072020090137 19.062 0.2676 18 +20 3 -10.218720566510669 -515.2021694159109 18.8517 0.267 19 +21 3 -9.935983426411639 -516.7353520489694 18.6769 0.2664 20 +22 3 -10.339247542244706 -517.6105021363902 18.5399 0.2658 21 +23 3 -11.342027243706143 -517.8590149858352 18.4376 0.2652 22 +24 3 -12.189303074351248 -519.5821897903379 18.3487 0.2647 23 +25 3 -12.885421065200422 -520.4432327583637 18.2385 0.2641 24 +26 3 -13.33146630386602 -521.3791540818726 18.1254 0.2635 25 +27 3 -13.64291124949812 -522.7190785971272 18.0367 0.2629 26 +28 3 -14.167643144715647 -524.8713899536435 17.9658 0.2624 27 +29 3 -14.760285958161017 -526.1533458271786 17.9106 0.2618 28 +30 3 -15.335593278544122 -526.9319909750975 17.8693 0.2612 29 +31 3 -15.881579537914533 -527.752731268447 17.8304 0.2606 30 +32 3 -16.543567330495726 -528.6795858446709 17.7654 0.2601 31 +33 3 -17.52518337128372 -530.3679545202914 17.6849 0.2595 32 +34 3 -18.488095228086877 -530.2832928298849 17.6363 0.2589 33 +35 3 -19.15426066658742 -531.9479838925068 17.6274 0.2583 34 +36 3 -19.938008562618634 -533.1956800873803 17.6829 0.2577 35 +37 3 -20.969627798751716 -533.1568620740244 17.775 0.2571 36 +38 3 -21.952574192795552 -533.6949514732033 17.8644 0.2565 37 +39 3 -22.80153665601125 -535.4853819421907 17.9365 0.256 38 +40 3 -23.40131524813482 -536.2026479095623 17.9743 0.2554 39 +41 3 -23.789793044785362 -537.4408882525356 18.0105 0.2548 40 +42 3 -24.28961899710459 -539.681495775092 18.1207 0.2542 41 +43 3 -24.67133132253757 -541.1996730815939 18.3782 0.2536 42 +44 3 -24.74285668893876 -542.5357922512638 18.7237 0.253 43 +45 3 -25.083446799254382 -543.5887497706956 19.0568 0.2524 44 +46 3 -25.589641889299862 -544.4582312463575 19.3179 0.2518 45 +47 3 -26.132783957589915 -545.2830645745846 19.5 0.2512 46 +48 3 -26.957060915069263 -545.7134463195823 19.6135 0.2507 47 +49 3 -27.94736042337027 -547.6386553184198 19.6706 0.2501 48 +50 3 -28.784568682360515 -547.9463715031732 19.7008 0.2495 49 +51 3 -29.454344260356763 -550.1181439193255 19.7231 0.2489 50 +52 3 -29.911305897592136 -551.6099434500586 19.7806 0.2483 51 +53 3 -30.39780903300221 -552.5207972236676 19.8624 0.2478 52 +54 3 -30.79786754659551 -553.5387706039229 19.8926 0.2472 53 +55 3 -30.933367137868125 -555.0026253597238 19.9062 0.2466 54 +56 3 -31.249039686185814 -556.636533311721 19.9347 0.246 55 +57 3 -31.354372491113963 -558.1491679281405 20.0067 0.2454 56 +58 3 -31.054839953272605 -559.1789581192633 20.1126 0.2449 57 +59 3 -30.79200830926825 -560.4348821369178 20.2633 0.2443 58 +60 3 -30.576042037401265 -561.9906410736874 20.4688 0.2437 59 +61 3 -30.16793876222801 -563.6201886979497 20.6698 0.2431 60 +62 3 -29.788930002435425 -565.2424313545012 20.8238 0.2426 61 +63 3 -29.51838724834929 -566.443914738856 20.932 0.242 62 +64 3 -29.500494760707262 -567.8219599328511 21.0083 0.2414 63 +65 3 -29.76778027408324 -569.4332675799274 21.0658 0.2408 64 +66 3 -30.412027030057903 -570.103046421005 21.0893 0.2403 65 +67 3 -30.784279942276683 -571.1607759799424 21.0664 0.2397 66 +68 3 -30.7173367938565 -572.6228319066948 21.1791 0.2391 67 +69 3 -30.57803848148064 -574.13536777668 21.4231 0.2385 68 +70 3 -30.722892061805474 -575.4291315034542 21.6821 0.2379 69 +71 3 -30.874073340606753 -576.7156718944448 21.9531 0.2374 70 +72 3 -30.61971093011965 -578.2946815437443 22.2553 0.2368 71 +73 3 -30.827493585660264 -578.6952527742911 22.6571 0.2368 72 +74 3 -31.401488375053166 -580.1976419147054 23.4274 0.2368 73 +75 3 -31.97511896545545 -581.2748842084309 24.0129 0.2366 74 +76 3 -32.239163954259794 -582.5397927676482 24.5705 0.2366 75 +77 3 -32.476961027810304 -583.9897547111683 25.1318 0.2365 76 +78 3 -32.71053049867533 -585.4519602588305 25.7486 0.2364 77 +79 3 -32.99408534261964 -586.8705844149981 26.3448 0.2363 78 +80 3 -33.48305036376496 -587.7468503641296 26.8329 0.2363 79 +81 3 -34.3087292476519 -588.5023044185757 27.2581 0.2362 80 +82 3 -35.06850832213247 -590.4806415173206 27.682 0.2361 81 +83 3 -35.03037937489007 -591.7784713518749 28.198 0.2361 82 +84 3 -34.598630730443745 -592.5776423602667 28.7465 0.236 83 +85 3 -33.875937387986895 -592.8502626408235 29.3513 0.2359 84 +86 3 -33.54235853666543 -594.3103108257283 30.0913 0.2359 85 +87 3 -34.01749388106666 -595.0877736825631 30.9546 0.2358 86 +88 3 -34.49872176609968 -596.8912453794427 31.9838 0.2357 87 +89 3 -34.84301651351009 -598.8944587090042 32.741 0.2356 88 +90 3 -35.08665355602994 -600.2239655567291 33.3729 0.2356 89 +91 3 -34.90691206759225 -601.6730349125127 33.9276 0.2355 90 +92 3 -34.556637418309265 -602.3608151971395 34.468 0.2354 91 +93 3 -33.88471221332446 -602.876338233948 34.9423 0.2353 92 +94 3 -33.501827720515934 -604.3120658500366 35.639 0.2353 93 +95 3 -34.142114858686824 -604.953210120921 36.2748 0.2352 94 +96 3 -34.62226737117291 -607.0641060340308 36.7312 0.2351 95 +97 3 -34.637388962538836 -608.512085093926 37.0723 0.235 96 +98 3 -34.79748955923457 -610.1982756647676 37.3685 0.235 97 +99 3 -35.30400430743788 -611.4734205338729 37.6555 0.2349 98 +100 3 -35.941468462465885 -612.15953601966 37.9753 0.2348 99 +101 3 -36.74240739719392 -614.1116505768326 38.4135 0.2347 100 +102 3 -37.61339706868069 -614.8767651538909 38.939 0.2347 101 +103 3 -38.30043215694243 -615.4323356435277 39.4425 0.2346 102 +104 3 -38.832211536405346 -616.2722929367355 39.8658 0.2345 103 +105 3 -39.59465511151737 -617.217947304918 40.2422 0.2345 104 +106 3 -40.520498460157995 -618.9002077136465 40.696 0.2344 105 +107 3 -41.36408437439099 -619.4339433742005 41.1421 0.2343 106 +108 3 -41.982799899297575 -621.3924444002068 41.5097 0.2343 107 +109 3 -42.08899074119369 -622.8617223642233 41.8592 0.2342 108 +110 3 -42.08023180544188 -624.2708335733046 42.2657 0.2341 109 +111 3 -42.22451246340968 -625.809963820313 42.6056 0.234 110 +112 3 -42.451607372386256 -627.2977830148548 42.9556 0.234 111 +113 3 -43.21383361191947 -627.6756350721557 43.435 0.2339 112 +114 3 -43.63868064636455 -628.6335352808744 43.9396 0.2338 113 +115 3 -44.061873182739646 -629.629689074696 44.373 0.2338 114 +116 3 -44.000324405567916 -631.0751460607634 44.8882 0.2337 115 +117 3 -43.53422822727477 -632.7309248260576 45.3698 0.2336 116 +118 3 -43.676370451785 -634.036669568656 45.7509 0.2335 117 +119 3 -44.308493293913926 -634.7428368398212 46.025 0.2335 118 +120 3 -45.05799566492541 -636.3098513127718 46.2571 0.2334 119 +121 3 -45.643012561138775 -638.1486379309829 46.5161 0.2333 120 +122 3 -46.26003525030865 -638.8795662573855 46.755 0.2333 121 +123 3 -46.6797935435172 -640.2586203080542 46.9392 0.2332 122 +124 3 -46.78437132659291 -641.6922723009302 47.0526 0.2331 123 +125 3 -47.41770478558093 -643.5959193692122 47.1324 0.233 124 +126 3 -48.32835658524659 -644.2204733089769 47.2612 0.233 125 +127 3 -48.82418768367838 -645.0668553928235 47.4827 0.2329 126 +128 3 -48.79435648326907 -646.5322336258752 47.784 0.2328 127 +129 3 -48.88837896518275 -647.8952837075578 48.0866 0.2327 128 +130 3 -49.24232712849101 -648.9725953594682 48.356 0.2327 129 +131 3 -49.9574320088894 -649.9503804137292 48.638 0.2326 130 +132 3 -50.69784837573041 -651.6202174147077 48.9454 0.2325 131 +133 3 -51.30818226901611 -652.8884143223456 49.2083 0.2325 132 +134 3 -52.16683620170768 -653.6569233142907 49.4704 0.2324 133 +135 3 -53.09834603203495 -655.3667930850261 49.7818 0.2323 134 +136 3 -53.75939980485141 -655.9788418967063 50.1088 0.2322 135 +137 3 -54.2283915508701 -656.9491542600158 50.398 0.2322 136 +138 3 -54.71685722340857 -659.1188526432555 50.6456 0.2321 137 +139 3 -55.19413610344907 -660.969513657344 50.8928 0.232 138 +140 3 -55.226552441163996 -662.3422593579315 51.1734 0.232 139 +141 3 -54.847059053447346 -663.4212878537564 51.4665 0.2319 140 +142 3 -54.82346554057175 -664.7655214359972 51.8395 0.2318 141 +143 3 -54.98383273707605 -666.5239689548811 52.2822 0.2317 142 +144 3 -55.20474370940484 -667.9639756790102 52.8217 0.2317 143 +145 3 -55.523004775557304 -669.0866243448716 53.4066 0.2316 144 +146 3 -55.82296040026264 -670.2372708942872 53.9288 0.2315 145 +147 3 -56.35482807415843 -671.0882091045016 54.4186 0.2314 146 +148 3 -56.74028027276983 -672.3200534705251 54.9914 0.2314 147 +149 3 -57.227103758874335 -673.410201806473 55.5478 0.2313 148 +150 3 -57.53324642181063 -674.5544341060219 55.993 0.2312 149 +151 3 -57.8530667958975 -676.5243658820681 56.3774 0.2312 150 +152 3 -58.09015880436183 -678.2625291498571 56.9016 0.2311 151 +153 3 -58.76569226006071 -679.29367434808 57.2376 0.231 152 +154 3 -59.311907474109674 -680.1369291754127 57.4963 0.2309 153 +155 3 -59.623300053929036 -681.6139891989476 57.7853 0.2309 154 +156 3 -59.87972153454792 -683.5449519842177 58.0835 0.2308 155 +157 3 -60.26587879824546 -685.6935655751879 58.3307 0.2307 156 +158 3 -60.41752178052358 -687.0214709286715 58.548 0.2307 157 +159 3 -60.07370387086309 -688.0436965717428 58.7594 0.2306 158 +160 3 -59.943988502218 -689.1911148772903 59.0013 0.2305 159 +161 3 -59.97412195211004 -690.6820258509416 59.3158 0.2304 160 +162 3 -59.95450518676737 -692.055451511068 59.7388 0.2304 161 +163 3 -60.40898201382019 -694.0505631884786 60.2322 0.2303 162 +164 3 -60.852544851349755 -695.0071275936848 60.6738 0.2302 163 +165 3 -61.153649422352196 -696.173037667853 61.1257 0.2302 164 +166 3 -61.5147772126349 -697.2484467351071 61.6406 0.2301 165 +167 3 -61.91114580981602 -698.3842290805633 62.1368 0.23 166 +168 3 -62.269373941622646 -699.5456510312384 62.5971 0.2299 167 +169 3 -62.690518748019564 -700.565335039914 62.9306 0.2299 168 +170 3 -62.88914994041484 -701.9956196526987 63.1509 0.2298 169 +171 3 -62.71599492528233 -703.4113837668791 63.3245 0.2297 170 +172 3 -62.68990359805142 -704.8900328912615 63.5342 0.2296 171 +173 3 -62.909518760671396 -706.2875384847878 63.7837 0.2296 172 +174 3 -62.81544053241584 -707.6683157469149 64.0802 0.2295 173 +175 3 -62.40645560329063 -709.3517773041044 64.4036 0.2294 174 +176 3 -62.283734660541455 -710.8921117410632 64.738 0.2294 175 +177 3 -62.29934398141465 -712.3472359704913 65.0082 0.2293 176 +178 3 -61.92465111874051 -714.0158035504725 65.1549 0.2292 177 +179 3 -61.51316906779648 -715.723284624522 65.1865 0.2291 178 +180 3 -61.60237389493843 -717.1320103264868 65.1722 0.2291 179 +181 3 -61.63152026671652 -718.3156421618975 65.1392 0.229 180 +182 3 -61.29683831799282 -719.667838792621 65.1022 0.2289 181 +183 3 -61.47723833522784 -720.7334698115268 65.0661 0.2289 182 +184 3 -30.52209815440219 -580.2176435821361 21.3187 0.2367 72 +185 3 -30.851630513365848 -581.3243046582363 21.1997 0.2366 184 +186 3 -31.03827303622762 -582.7828712915967 21.0678 0.2365 185 +187 3 -31.357429784478107 -584.366758245914 20.9618 0.2364 186 +188 3 -32.03393008697867 -585.4210761746339 20.8947 0.2363 187 +189 3 -32.82719555675505 -586.683076618199 20.8653 0.2361 188 +190 3 -33.71199508212159 -587.0493364020185 20.8693 0.236 189 +191 3 -34.534673701463255 -588.5145297020783 20.9023 0.2359 190 +192 3 -34.77195701947606 -590.2650347784452 20.9605 0.2358 191 +193 3 -34.6447795193628 -591.4147596718561 21.0353 0.2357 192 +194 3 -35.074456520215904 -592.968919931146 21.1823 0.2356 193 +195 3 -35.842404992920045 -593.427990914972 21.3978 0.2355 194 +196 3 -36.13554588217826 -594.714696308729 21.6126 0.2354 195 +197 3 -36.337561360973915 -596.3659517426722 21.784 0.2353 196 +198 3 -36.938899953568495 -598.5102541134097 21.8958 0.2352 197 +199 3 -37.487116042412524 -599.424011872453 21.9655 0.2351 198 +200 3 -37.958031295356385 -600.3619565266212 21.9752 0.235 199 +201 3 -38.47625339260203 -601.237403181267 21.9264 0.2349 200 +202 3 -38.76101195770272 -602.3978175327982 21.8228 0.2348 201 +203 3 -39.36052084843459 -603.3511599632267 21.5233 0.2347 202 +204 3 -40.22442710705578 -605.3675389612143 21.1464 0.2346 203 +205 3 -41.11920660218078 -605.6928145907434 20.8274 0.2345 204 +206 3 -41.39153872500697 -607.20333822874 20.5895 0.2344 205 +207 3 -40.67408298779706 -608.4723531005458 20.3931 0.2343 206 +208 3 -40.30652521126453 -610.0992940053025 20.1938 0.2341 207 +209 3 -40.381382498253295 -611.4771374965621 19.9916 0.234 208 +210 3 -40.23411671001345 -612.8840276602742 19.7279 0.2339 209 +211 3 -40.504387074715424 -614.1964524571727 19.4724 0.2338 210 +212 3 -41.13597533215396 -614.9059823717616 19.289 0.2337 211 +213 3 -41.5010188919442 -616.3929036303045 19.0931 0.2336 212 +214 3 -41.39584767625322 -617.7673879172243 18.8692 0.2335 213 +215 3 -41.51763121870854 -619.2181834204539 18.6746 0.2334 214 +216 3 -42.002389845105725 -621.2537648019213 18.5298 0.2333 215 +217 3 -42.15790415075471 -622.7828351909393 18.405 0.2332 216 +218 3 -41.76204831994374 -623.6243681499695 18.2967 0.2331 217 +219 3 -41.29128065775396 -624.4574520694131 18.1874 0.233 218 +220 3 -41.13322820462706 -625.8656518774069 18.0484 0.2329 219 +221 3 -41.2142834564097 -627.2670165069275 17.8851 0.2328 220 +222 3 -41.072362082652035 -628.7585989873828 17.7155 0.2327 221 +223 3 -40.5529876408953 -630.4452613988213 17.5338 0.2326 222 +224 3 -39.93214851503068 -631.2855749850349 17.2819 0.2325 223 +225 3 -39.125084620517335 -631.6036806450396 16.9573 0.2324 224 +226 3 -38.343335314029765 -633.1542703616768 16.64 0.2322 225 +227 3 -38.09075644275881 -634.743355073801 16.3814 0.2321 226 +228 3 -38.05820768336863 -636.1751880646559 16.1897 0.232 227 +229 3 -37.968142131266255 -637.6882236061668 16.0321 0.2319 228 +230 3 -37.71644181236415 -639.2958901787272 15.8693 0.2318 229 +231 3 -37.3469246002863 -640.9526371342513 15.6848 0.2317 230 +232 3 -36.692276319384874 -641.5801642582169 15.4954 0.2316 231 +233 3 -36.13046782405697 -642.0919060870851 15.2482 0.2315 232 +234 3 -35.829284582265274 -643.7205492755536 14.9523 0.2314 233 +235 3 -35.62663492414118 -645.2946042633604 14.6894 0.2313 234 +236 3 -35.72984332375782 -646.6338684188931 14.4324 0.2312 235 +237 3 -36.07608278603083 -647.7380525860273 14.1543 0.2311 236 +238 3 -36.4967782005872 -649.1771338244782 13.929 0.231 237 +239 3 -36.48294662935465 -650.5061847920283 13.7962 0.2309 238 +240 3 -36.3842852116355 -651.7179231464652 13.7416 0.2308 239 +241 3 -36.68294261758537 -653.6590206084225 13.7516 0.2307 240 +242 3 -37.27723923656426 -655.7387102696971 13.8088 0.2306 241 +243 3 -37.301022063532436 -657.0611179495827 13.9442 0.2305 242 +244 3 -37.235319257425324 -658.5576500153938 14.208 0.2304 243 +245 3 -37.312276640205 -659.9408335232134 14.5739 0.2303 244 +246 3 -37.191388500901695 -661.4519568101055 14.9697 0.2302 245 +247 3 -37.11998638607094 -662.7187952758065 15.3424 0.2301 246 +248 3 -37.56876390440006 -663.8945839770373 15.7716 0.2299 247 +249 3 -38.39393964556045 -664.2096128053518 16.2665 0.2298 248 +250 3 -38.812728682920785 -665.203983474494 16.7717 0.2297 249 +251 3 -38.99990889205601 -666.480955028893 17.1718 0.2296 250 +252 3 -38.907214075405705 -667.9953783182614 17.5819 0.2295 251 +253 3 -39.09007838742249 -669.2829731564713 17.9547 0.2294 252 +254 3 -39.339670411911705 -670.5111872510613 18.2044 0.2293 253 +255 3 -39.46251460623122 -671.8683257229525 18.3581 0.2292 254 +256 3 -39.51888745386062 -673.2887050563736 18.4477 0.2291 255 +257 3 -39.74411363077132 -674.5763372749118 18.4956 0.229 256 +258 3 -39.790771391940815 -676.0204193881674 18.5102 0.2289 257 +259 3 -1.6738742874174142 -485.3436554785929 28.7893 0.4865 1 +260 3 -1.6894862962829766 -484.048725498512 29.3121 0.2737 259 +261 3 -2.174189751915395 -483.14507496325865 29.6554 0.2705 260 +262 3 -3.264133949951803 -482.4507161725715 29.8836 0.2679 261 +263 3 -4.405227898268877 -483.39692654082336 30.0378 0.2653 262 +264 3 -5.376627604359033 -481.97749350371697 30.2394 0.2626 263 +265 3 -5.966200954348245 -480.3627256895215 30.4612 0.26 264 +266 3 -6.318882021970631 -478.78634579103715 30.6113 0.2574 265 +267 3 -6.782299280723244 -478.66523751177397 30.5964 0.2471 266 +268 3 -7.439985471300052 -478.0021402210186 30.4682 0.2469 267 +269 3 -8.178551810834186 -476.467654825821 30.228 0.2467 268 +270 3 -9.07032953254572 -476.8467062348789 29.8651 0.2466 269 +271 3 -9.934217152569524 -475.5289658687317 29.4599 0.2465 270 +272 3 -10.632916339981989 -473.9890988218884 29.0814 0.2464 271 +273 3 -11.201147031385462 -472.46882220636047 28.7134 0.2463 272 +274 3 -11.44058587777931 -471.04047701822316 28.355 0.2462 273 +275 3 -11.72132214308323 -469.901932485129 28.0003 0.2461 274 +276 3 -12.188443737157066 -469.5416437258152 27.5896 0.246 275 +277 3 -12.670788322169807 -468.4632629134361 27.103 0.2459 276 +278 3 -13.259735691452711 -466.96039650365503 26.5962 0.2457 277 +279 3 -13.627560067793805 -465.58087120049845 26.1802 0.2456 278 +280 3 -13.59140144785401 -464.30563764041756 25.8582 0.2455 279 +281 3 -13.37298759734388 -463.1128743042755 25.5805 0.2454 280 +282 3 -13.612102298923592 -461.8071704855472 25.3313 0.2453 281 +283 3 -14.090531114428751 -461.3831275732214 25.1448 0.2452 282 +284 3 -14.1897740667176 -460.2251651334626 24.9572 0.2451 283 +285 3 -14.122129233740363 -458.76677788430425 24.7553 0.245 284 +286 3 -14.399563398606986 -457.94256935511527 24.5546 0.2449 285 +287 3 -14.661569140143882 -456.6265459641943 24.3563 0.2447 286 +288 3 -14.654161760442813 -455.3111674838409 24.1995 0.2446 287 +289 3 -14.803621449536033 -453.8955995631543 24.074 0.2445 288 +290 3 -15.107031419218206 -452.40722493526715 23.9443 0.2444 289 +291 3 -15.556958873012022 -450.87235994748056 23.8213 0.2443 290 +292 3 -15.89658751765355 -449.38372336793304 23.7449 0.2442 291 +293 3 -16.042704359596264 -447.96868849536327 23.7063 0.2441 292 +294 3 -16.145822334679455 -446.57766410631814 23.6973 0.244 293 +295 3 -16.563801871959193 -445.2336647213196 23.7169 0.2439 294 +296 3 -16.952912746953558 -444.02679192291595 23.7785 0.2437 295 +297 3 -16.746208654532253 -442.7699640943232 23.9016 0.2436 296 +298 3 -16.719150759445597 -441.4773066242702 24.0248 0.2435 297 +299 3 -16.92095159065478 -440.2236815496573 24.1426 0.2434 298 +300 3 -17.30677577843113 -439.2396514919797 24.2505 0.2433 299 +301 3 -17.380446060402104 -438.0116992312318 24.3304 0.2432 300 +302 3 -17.05844271202484 -436.46402035111527 24.3642 0.2431 301 +303 3 -16.9223670968121 -435.1387499242435 24.3921 0.2429 302 +304 3 -17.37835185515413 -434.2242830182938 24.5158 0.2428 303 +305 3 -17.84217745726057 -433.47952231085696 24.7036 0.2427 304 +306 3 -18.239631626209267 -432.10276383908786 24.8845 0.2426 305 +307 3 -18.334823564678274 -430.7265675554356 25.0553 0.2425 306 +308 3 -18.39624950387013 -429.37122696540126 25.1953 0.2424 307 +309 3 -18.621930862196983 -427.9237156366705 25.3039 0.2423 308 +310 3 -18.673771448611603 -426.5726090766466 25.3884 0.2422 309 +311 3 -18.573382930554736 -425.33467779011454 25.479 0.2421 310 +312 3 -18.57452997722074 -424.0216135077049 25.617 0.242 311 +313 3 -18.575539465224125 -422.6967073115439 25.7781 0.2418 312 +314 3 -18.652911282706807 -421.3379911088843 25.9442 0.2417 313 +315 3 -18.777862054929496 -419.9505211730365 26.1156 0.2416 314 +316 3 -18.58342012755311 -418.8010041578549 26.3082 0.2415 315 +317 3 -18.74970975793562 -417.41749145694246 26.5688 0.2414 316 +318 3 -19.30020862278563 -415.92062159166926 26.8248 0.2413 317 +319 3 -19.241826382844685 -414.67087610533576 27.1006 0.2412 318 +320 3 -19.075882023059958 -413.5743294631276 27.3706 0.2411 319 +321 3 -19.553955251787066 -412.26285710597136 27.5728 0.2409 320 +322 3 -19.515132131215776 -410.92119761834766 27.7547 0.2408 321 +323 3 -19.27667143182888 -409.7126975505617 27.9549 0.2407 322 +324 3 -19.373951846989275 -408.3697051240381 28.1467 0.2406 323 +325 3 -19.790286788788553 -407.2308217059048 28.3562 0.2405 324 +326 3 -19.845152280705676 -405.9768178463548 28.5421 0.2404 325 +327 3 -19.52381876133101 -404.5744096233511 28.707 0.2403 326 +328 3 -19.413577598151694 -403.3478112868096 28.8196 0.2402 327 +329 3 -19.221723496073455 -402.2015288788084 28.9002 0.2401 328 +330 3 -18.889294580216717 -401.1879395155512 29.0184 0.2399 329 +331 3 -18.913590056595403 -399.9436855636661 29.1998 0.2398 330 +332 3 -19.399642380286036 -398.42317020478856 29.3768 0.2397 331 +333 3 -19.487195397350373 -397.14965753253045 29.5156 0.2396 332 +334 3 -18.97630928463272 -396.3578939177996 29.622 0.2395 333 +335 3 -18.67416767875006 -395.3674767578489 29.6993 0.2394 334 +336 3 -18.820281419109666 -393.9809407425455 29.7315 0.2393 335 +337 3 -19.038965249957453 -392.5482587501132 29.6696 0.2391 336 +338 3 -19.151795209917438 -391.1775002179251 29.5112 0.239 337 +339 3 -19.183641313267902 -389.8561169910335 29.3524 0.2389 338 +340 3 -19.13577913840549 -388.59044066454396 29.3154 0.2388 339 +341 3 -18.906630988821053 -387.47948281460503 29.3726 0.2387 340 +342 3 -18.667321462519194 -386.3543491350095 29.405 0.2386 341 +343 3 -18.88529101822775 -384.9543039697256 29.4647 0.2385 342 +344 3 -19.38270603074559 -383.43781160380246 29.5481 0.2384 343 +345 3 -19.716183565776376 -381.96486549123136 29.6086 0.2382 344 +346 3 -19.77230412068926 -380.63370911092863 29.6414 0.2381 345 +347 3 -19.607403691487598 -379.4653682832468 29.6618 0.238 346 +348 3 -19.591976470109838 -378.1799149599059 29.6635 0.2379 347 +349 3 -20.02938608561312 -376.71919183375985 29.6587 0.2378 348 +350 3 -20.60257268298745 -376.216092856387 29.7018 0.2377 349 +351 3 -20.615826513770024 -374.8988843783447 29.8262 0.2376 350 +352 3 -20.52270281553745 -373.36465223628096 29.9048 0.2375 351 +353 3 -21.15659987501248 -373.0455119740618 29.878 0.2373 352 +354 3 -21.572669933513065 -371.58028464923365 29.7811 0.2372 353 +355 3 -21.148631671806253 -370.67099808667683 29.7052 0.2371 354 +356 3 -20.83380243977386 -369.03528425197896 29.6596 0.237 355 +357 3 -20.59850869120824 -367.26998000648473 29.587 0.2369 356 +358 3 -20.48199219536515 -365.6837131572864 29.5081 0.2368 357 +359 3 -20.555624139669497 -364.4751701170356 29.3633 0.2367 358 +360 3 -20.40983343799691 -362.94523667389564 29.246 0.2366 359 +361 3 -20.01716947791055 -361.9604487518003 29.2337 0.2365 360 +362 3 -19.538812816276675 -361.1306013588795 29.1889 0.2363 361 +363 3 -18.794756489789762 -360.61405864555576 29.0629 0.2362 362 +364 3 -18.35251238641657 -359.7488682058422 28.9663 0.2361 363 +365 3 -18.77548616733378 -358.36617376116413 28.8742 0.236 364 +366 3 -19.410046852645223 -356.92272175478763 28.7851 0.2359 365 +367 3 -19.668057740294728 -355.5053433559002 28.7692 0.2358 366 +368 3 -19.694598459366254 -354.1998990417241 28.8338 0.2357 367 +369 3 -20.089810487205206 -352.78604007432165 28.9554 0.2356 368 +370 3 -21.006781959561174 -352.37478702098304 29.1085 0.2354 369 +371 3 -21.96455391126694 -351.99213125068763 29.2821 0.2353 370 +372 3 -22.541327409937857 -350.5414063609255 29.4655 0.2352 371 +373 3 -22.609871305542157 -349.20900855285913 29.6355 0.2351 372 +374 3 -22.559652669106598 -347.92043009597535 29.7609 0.235 373 +375 3 -22.84033656859777 -346.7863446164074 29.8399 0.2349 374 +376 3 -23.299849375168847 -346.41978158786895 29.9118 0.2348 375 +377 3 -23.561782235492096 -345.4105951799655 30.0104 0.2347 376 +378 3 -23.541228627747707 -344.1058215254018 30.1143 0.2345 377 +379 3 -23.34415743582337 -342.4034260941067 30.1916 0.2344 378 +380 3 -23.167315192271282 -340.67511062224986 30.2834 0.2343 379 +381 3 -23.125959713797677 -339.20388758496205 30.4651 0.2342 380 +382 3 -22.89720789770444 -337.413040304935 30.7062 0.2341 381 +383 3 -22.36516432747947 -336.5984298213848 30.9072 0.234 382 +384 3 -21.944826908747736 -335.67918141249464 31.1206 0.2339 383 +385 3 -21.560758814278152 -334.2979362608156 31.3656 0.2338 384 +386 3 -20.83758413543685 -332.4171896519074 31.5787 0.2337 385 +387 3 -20.050828463632307 -331.96242261490045 31.7447 0.2335 386 +388 3 -19.844699702614513 -330.8269058984079 31.864 0.2334 387 +389 3 -20.25965364185506 -329.42379740652984 31.9018 0.2333 388 +390 3 -20.571444550621564 -327.97614835019317 31.8766 0.2332 389 +391 3 -21.113042612379616 -326.44515113497744 31.8665 0.2331 390 +392 3 -21.874196770905634 -326.6422434806128 31.8097 0.233 391 +393 3 -22.41530400157327 -325.15188747490134 31.6686 0.2329 392 +394 3 -22.72290874690399 -323.6663948108397 31.4121 0.2328 393 +395 3 -23.09893265537061 -322.18905341885613 31.1251 0.2326 394 +396 3 -23.573853653959084 -321.57583444395124 30.8622 0.2325 395 +397 3 -23.497830290944016 -320.05287662834996 30.6194 0.2324 396 +398 3 -23.522229474974843 -318.7113141592289 30.3797 0.2323 397 +399 3 -23.928317847206962 -318.1757500733333 30.1154 0.2322 398 +400 3 -24.02342149124309 -316.954601377927 29.8752 0.2321 399 +401 3 -24.007905975432514 -315.5522064408354 29.54 0.232 400 +402 3 -24.233261472435274 -314.38496359785825 29.0772 0.2319 401 +403 3 -24.36894654373235 -312.99006474331173 28.698 0.2318 402 +404 3 -24.4196765215165 -311.6698919604604 28.4091 0.2316 403 +405 3 -24.29682922561382 -310.4548601099405 28.0958 0.2315 404 +406 3 -24.56375873862111 -308.99351591682984 27.7629 0.2314 405 +407 3 -24.71410008166628 -307.5926921502665 27.4562 0.2313 406 +408 3 -24.50415546467341 -306.45829880646386 27.1495 0.2312 407 +409 3 -24.638186730437027 -305.07298473821555 26.7578 0.2311 408 +410 3 -25.114041748790136 -303.5528908177679 26.4139 0.231 409 +411 3 -25.775773442557025 -302.01164157095786 26.1846 0.2309 410 +412 3 -26.509936283076442 -300.4825534614119 26.046 0.2308 411 +413 3 -27.199290786185884 -299.6690901930625 25.9794 0.2306 412 +414 3 -27.76850614665686 -299.32833001197906 25.9774 0.2305 413 +415 3 -28.250330867661894 -297.82584850981993 26.0494 0.2304 414 +416 3 -28.775903274212617 -296.2901284696722 26.1629 0.2303 415 +417 3 -29.34988323110599 -295.219064703317 26.2581 0.2302 416 +418 3 -30.245130432067633 -295.05837891083803 26.3316 0.2301 417 +419 3 -31.21438008560061 -293.9702902003666 26.3624 0.23 418 +420 3 -31.626513450744802 -292.53750678840686 26.4067 0.2299 419 +421 3 -31.660136890145203 -291.2065251949154 26.5374 0.2297 420 +422 3 -31.705252752055472 -289.8689623636616 26.724 0.2296 421 +423 3 -31.407923290314926 -288.8507485250706 26.9464 0.2295 422 +424 3 -30.957959180558696 -287.97206621461345 27.1392 0.2294 423 +425 3 -30.330815168848055 -287.0208247307983 27.2458 0.2293 424 +426 3 -29.53754969907162 -285.3299706013024 27.346 0.2292 425 +427 3 -29.355107054040012 -284.00695336062296 27.7836 0.229 426 +428 3 -30.101625456218812 -283.8295295722727 28.6068 0.2289 427 +429 3 -6.560359601073985 -478.89618084352674 31.3804 0.2574 266 +430 3 -7.4867312251288 -478.9872730992696 31.7976 0.2534 429 +431 3 -8.387680836397182 -477.54741813569854 32.006 0.2512 430 +432 3 -9.173952070234346 -477.9366324869101 32.2613 0.2492 431 +433 3 -9.785804507620476 -476.37277689430493 32.4783 0.2471 432 +434 3 -10.138848181518737 -476.5606951679703 33.1128 0.2469 433 +435 3 -10.971604683552906 -476.65622845230376 34.3344 0.2465 434 +436 3 -10.709847897537472 -476.71891288461575 35.5841 0.2461 435 +437 3 -11.627127018188816 -475.83341944026625 36.7214 0.2457 436 +438 3 -12.612937124403647 -477.38573983558445 37.5155 0.2455 437 +439 3 -13.465709648876194 -477.6069133728332 38.1856 0.2452 438 +440 3 -14.356620229676807 -479.7898737290132 38.7178 0.245 439 +441 3 -15.232788653342892 -479.9991256969173 39.1468 0.2447 440 +442 3 -16.145342420559437 -480.0007676054876 39.5906 0.2445 441 +443 3 -17.23949841729918 -480.8176043020095 40.0898 0.2442 442 +444 3 -18.336907250246632 -480.9829456355912 40.5871 0.244 443 +445 3 -19.369414657249663 -482.3620649743624 41.0911 0.2437 444 +446 3 -20.113717760680803 -483.1129211691907 41.5694 0.2434 445 +447 3 -20.942830195197622 -483.3791700697102 42.0599 0.2432 446 +448 3 -21.781111417688262 -483.6415723583501 42.6488 0.2429 447 +449 3 -22.73622317744023 -485.6387179723207 43.2424 0.2426 448 +450 3 -23.830761177751512 -484.8139694589081 43.8284 0.2424 449 +451 3 -24.83473708914115 -486.62082349754564 44.4662 0.2421 450 +452 3 -25.92661299786746 -485.7859712617928 45.1665 0.2419 451 +453 3 -26.954913317585707 -485.51572057386875 45.8088 0.2416 452 +454 3 -27.88982215499594 -487.61255205721415 46.3574 0.2414 453 +455 3 -28.91976155956506 -487.37968975267177 46.9294 0.2411 454 +456 3 -29.343544840562945 -489.04998936918804 47.6896 0.2408 455 +457 3 -29.715921691746093 -491.0149842575913 48.4134 0.2405 456 +458 3 -30.66305194748798 -491.2394862654763 49.0353 0.2402 457 +459 3 -31.751059936200146 -492.60498705178367 49.5692 0.24 458 +460 3 -32.83055494977308 -491.64672881439094 50.0828 0.2397 459 +461 3 -33.864861711952436 -490.42568270221875 50.5554 0.2395 460 +462 3 -34.95447804806618 -491.2606625911821 51.0303 0.2392 461 +463 3 -36.07850689724934 -490.5684313865363 51.5248 0.239 462 +464 3 -37.16781000313377 -492.0284895626274 51.9714 0.2387 463 +465 3 -38.14791289863387 -492.0336333616553 52.3681 0.2385 464 +466 3 -39.10014861689361 -492.05427294077424 52.7713 0.2382 465 +467 3 -40.165452767325576 -493.57833749019056 53.1647 0.238 466 +468 3 -41.24974380730676 -493.28093316976265 53.5044 0.2377 467 +469 3 -42.222082534375794 -495.1445828186926 53.8101 0.2375 468 +470 3 -42.8151134775476 -495.8948534422294 54.171 0.2372 469 +471 3 -43.547639434621004 -496.04832872787375 54.7095 0.2369 470 +472 3 -44.66033503634226 -495.4750005880937 55.3028 0.2366 471 +473 3 -45.658555266291465 -495.7563116906505 55.8774 0.2364 472 +474 3 -46.73643411946104 -495.5261544057143 56.3545 0.2361 473 +475 3 -47.83531304861101 -495.76286820673306 56.7308 0.2359 474 +476 3 -48.948500487710895 -494.8222789512083 57.0704 0.2356 475 +477 3 -50.060721665871355 -495.0745685200195 57.3516 0.2354 476 +478 3 -51.172518785685185 -495.55293180543987 57.612 0.2351 477 +479 3 -52.29998938926297 -496.63262545034866 57.9043 0.2349 478 +480 3 -53.407324441083155 -496.42692073486063 58.2291 0.2346 479 +481 3 -54.45161448738854 -496.2970469792353 58.6152 0.2344 480 +482 3 -55.463183773061715 -497.7177249297783 59.0668 0.2341 481 +483 3 -56.52268559965441 -497.88037962763093 59.5482 0.2339 482 +484 3 -57.60715253596476 -499.31040014665086 60.0001 0.2336 483 +485 3 -58.667715014421674 -499.0010150265534 60.4072 0.2334 484 +486 3 -59.67976892801897 -499.0548464394103 60.7513 0.2331 485 +487 3 -60.65656662149858 -500.6895772794306 61.0784 0.2329 486 +488 3 -61.62391110493011 -501.08608097115666 61.4281 0.2326 487 +489 3 -62.64149935748486 -502.6751735351431 61.8097 0.2324 488 +490 3 -63.66714648191953 -502.58188061742106 62.1732 0.2321 489 +491 3 -64.69779336062132 -502.5621916407653 62.5237 0.2318 490 +492 3 -65.70120145183554 -503.9648248934395 62.876 0.2316 491 +493 3 -66.76796499666946 -504.17868442014895 63.2114 0.2313 492 +494 3 -67.88875160477114 -505.15498254332255 63.5824 0.2311 493 +495 3 -69.0015279896972 -504.3187495158489 64.0133 0.2308 494 +496 3 -70.11878385643467 -503.3434927313114 64.5308 0.2306 495 +497 3 -71.21434177958196 -504.56423846299646 65.1445 0.2303 496 +498 3 -72.31712136679393 -504.32718497809077 65.802 0.2301 497 +499 3 -73.43647632303404 -505.14021770478973 66.3762 0.2298 498 +500 3 -74.53076585955418 -505.16320428206905 66.988 0.2295 499 +501 3 -75.61572052537173 -505.7061068714961 67.3996 0.2293 500 +502 3 -76.59305900670789 -505.65777391455276 67.8706 0.2291 501 +503 3 -10.496408166026907 -475.12213784210013 32.8031 0.2469 433 +504 3 -11.379460980975676 -473.66488036795306 33.0084 0.2466 503 +505 3 -12.307977241654223 -474.10200575681176 33.1682 0.2464 504 +506 3 -13.276789814982761 -472.8222899376242 33.308 0.2462 505 +507 3 -13.940914922916315 -472.28720501572667 33.4765 0.246 506 +508 3 -14.459892338645325 -471.7353375356995 33.6694 0.2458 507 +509 3 -15.189237524393025 -470.2035839411542 33.8486 0.2457 508 +510 3 -16.103095104276942 -468.7707372738813 34.0208 0.2455 509 +511 3 -17.1083398940241 -468.2590978211412 34.2818 0.2453 510 +512 3 -18.047537395427703 -468.00864594338225 34.6948 0.2451 511 +513 3 -18.872151016999105 -466.6485372171429 35.1809 0.2449 512 +514 3 -19.74109414277452 -467.02760196649655 35.9716 0.2446 513 +515 3 -20.662383228758863 -465.7419803928826 36.6691 0.2444 514 +516 3 -21.72183619386294 -464.6695474218186 37.2392 0.2442 515 +517 3 -22.80801249209193 -465.3918175322566 37.6832 0.244 516 +518 3 -23.68739659856604 -463.94218517419506 38.1077 0.2438 517 +519 3 -24.45121525772355 -463.3475937423017 38.551 0.2436 518 +520 3 -25.55029952456802 -463.29007764432384 38.9138 0.2434 519 +521 3 -26.644284123612938 -462.30787262846684 39.2498 0.2432 520 +522 3 -26.915756789592294 -461.11432370825764 39.7085 0.243 521 +523 3 -26.052067174013466 -460.7570670984213 40.4026 0.2428 522 +524 3 -25.36235286443757 -460.25311026755855 41.0334 0.2426 523 +525 3 -25.01673017281778 -459.20451302200564 41.4666 0.2424 524 +526 3 -24.739861715711072 -457.7156794831851 41.7718 0.2422 525 +527 3 -24.2819105913152 -455.68152603489773 41.9966 0.242 526 +528 3 -23.879845786993474 -454.42232201332286 42.2428 0.2418 527 +529 3 -23.982860054424588 -453.1048242378628 42.6479 0.2416 528 +530 3 -24.86074783158822 -453.428027558053 43.1508 0.2414 529 +531 3 -25.762075261545572 -452.3926078815485 43.9048 0.2411 530 +532 3 -25.932953592021256 -450.99791048815644 44.5536 0.2409 531 +533 3 -26.228293763260602 -449.53445925998426 45.0825 0.2407 532 +534 3 -26.64098263694396 -448.1049099109092 45.5342 0.2405 533 +535 3 -27.151975447079916 -446.91822559231036 46.0911 0.2404 534 +536 3 -27.85979277316334 -446.27706894833307 46.767 0.2401 535 +537 3 -28.805393955840145 -445.6529544122689 47.4779 0.2399 536 +538 3 -29.759373668554872 -444.88916186069554 48.0362 0.2397 537 +539 3 -30.62565539528187 -444.8453795967137 48.5988 0.2395 538 +540 3 -31.168457178196213 -443.33135832741704 49.1148 0.2393 539 +541 3 -31.456141706749623 -441.8670762794358 49.4203 0.2391 540 +542 3 -31.268496692554585 -440.7868758340326 49.6048 0.239 541 +543 3 -30.687022849341492 -440.1331861085251 49.7325 0.2388 542 +544 3 -30.545694215662582 -438.93081157795876 49.8705 0.2386 543 +545 3 -30.471093294456026 -437.65617444891797 50.104 0.2384 544 +546 3 -30.43552472660237 -436.3398765719468 50.4431 0.2382 545 +547 3 -30.750828962915186 -434.9565480119055 50.9698 0.2379 546 +548 3 -31.25615529136458 -433.451030486214 51.5886 0.2377 547 +549 3 -31.763857620162735 -432.0891158187394 52.15 0.2376 548 +550 3 -32.14179100740842 -431.54955804389397 52.6579 0.2374 549 +551 3 -32.552517343963395 -430.915118056212 53.132 0.2372 550 +552 3 -33.00631061049851 -429.41768030209283 53.7079 0.237 551 +553 3 -33.4854030518401 -427.9300173817384 54.3864 0.2367 552 +554 3 -33.72698274073812 -426.51093063613587 54.959 0.2365 553 +555 3 -33.931175269603955 -425.0895043347465 55.4084 0.2364 554 +556 3 -34.40498255797886 -423.5804746871009 55.7696 0.2362 555 +557 3 -34.9845766307461 -422.03958730875144 56.1162 0.236 556 +558 3 -35.576916803945785 -421.8528169610993 56.4802 0.2358 557 +559 3 -36.17116404687803 -420.9280741884183 56.8198 0.2356 558 +560 3 -36.76603967956314 -419.39549729128134 57.1687 0.2354 559 +561 3 -37.59367338854404 -419.2797736799895 57.633 0.2352 560 +562 3 -38.6589509093982 -418.7840777147652 58.168 0.235 561 +563 3 -39.54724443117699 -417.3864832816125 58.6572 0.2348 562 +564 3 -40.611679328282484 -417.0022455353981 59.1394 0.2346 563 +565 3 -41.58834025660354 -416.96519063110986 59.9085 0.2344 564 +566 3 -42.10895055401728 -415.48831253307253 60.6066 0.2342 565 +567 3 -43.01411235475196 -415.78237524963833 61.278 0.234 566 +568 3 -44.06504233545295 -414.9642287467401 62.0763 0.2338 567 +569 3 -44.97069868438648 -413.7781582122706 63.0882 0.2336 568 +570 3 -45.61936254195329 -412.61570131379654 64.0105 0.2333 569 +571 3 -46.36062861820246 -412.5883722551733 64.7116 0.2332 570 +572 3 -47.05526758174203 -411.3340729806046 65.2848 0.233 571 +573 3 -47.290722187059835 -409.982679317814 65.7586 0.2328 572 +574 3 -46.89083105227928 -409.07742757248815 66.2402 0.2326 573 +575 3 -46.34558509407855 -408.0284867074203 66.8976 0.2323 574 +576 3 -45.88104069537093 -406.126659277484 67.6441 0.2321 575 +577 3 -45.386986932989025 -404.8420577360206 68.523 0.2319 576 +578 3 -44.883708915237584 -404.09024057546964 69.3767 0.2317 577 +579 3 -44.87049921169728 -402.8595726535526 70.0322 0.2315 578 +580 3 -45.045870028157246 -401.46210377360313 70.4757 0.2313 579 +581 3 -44.93002025973371 -400.2565956038683 70.7577 0.2311 580 +582 3 -44.683230987075156 -399.1574512686975 70.943 0.2309 581 +583 3 -44.61139999066212 -397.91013714229587 71.1158 0.2307 582 +584 3 -44.41134394741186 -396.7719131876345 71.3686 0.2306 583 +585 3 -43.92140656883522 -395.9450162888027 71.654 0.2304 584 +586 3 -43.286205070317905 -394.9822832051895 71.9132 0.2302 585 +587 3 -42.56398223350702 -392.88507607838505 72.142 0.23 586 +588 3 -41.729632193743214 -392.5854866582708 72.3834 0.2298 587 +589 3 -40.982450355684726 -390.81433853493223 72.7124 0.2296 588 +590 3 -40.50080321271305 -389.36938022188815 72.9686 0.2294 589 +591 3 -39.80914177922794 -388.819658081493 73.1598 0.2292 590 +592 3 -39.18557646504916 -388.1686824258244 73.3986 0.229 591 +593 3 -0.07321482160881976 -492.9810397846159 20.2958 0.5042 1 +594 3 0.4642213092226728 -494.31119598477403 18.9909 0.2482 593 +595 3 0.5202987260609306 -495.51471857715154 17.7524 0.2403 594 +596 3 -0.2079333530204317 -494.68430585457446 15.7058 0.2345 595 +597 3 3.08908762002796 -488.58024816332744 29.8015 0.6022 1 +598 3 4.149665209930515 -487.308355042893 30.844 0.5362 597 +599 3 5.19844134395463 -488.3656944216033 31.7638 0.5208 598 +600 3 6.119983001601467 -487.76072200226906 32.5987 0.5056 599 +601 3 6.901389032947136 -489.2363897336104 33.3046 0.4905 600 +602 3 7.613037628224875 -490.8083461890616 33.9251 0.4753 601 +603 3 8.420729912490991 -492.3404787461132 34.4882 0.46 602 +604 3 9.416559829856691 -491.7501383451147 35.03 0.4445 603 +605 3 10.508798534815519 -492.4077434851282 35.6821 0.4279 604 +606 3 11.623229027048733 -491.44182964393883 36.2614 0.4124 605 +607 3 12.738397109631453 -492.4217264855645 36.7002 0.3972 606 +608 3 13.845001869545765 -492.82448077459946 37.037 0.382 607 +609 3 14.984764772070491 -492.3354990297896 37.2982 0.3668 608 +610 3 16.124880852326648 -491.77328783749783 37.508 0.3657 609 +611 3 17.546991172508918 -491.6126903509155 37.4548 0.3433 610 +612 3 18.623913685013704 -491.96641176570193 37.6869 0.3379 611 +613 3 19.72995062475272 -490.92035113615873 38.0038 0.333 612 +614 3 20.43291505998078 -492.4797917944947 38.4412 0.328 613 +615 3 20.777223108194985 -493.91641614143197 39.0029 0.323 614 +616 3 21.476718756709523 -493.73624668069243 39.4685 0.3183 615 +617 3 22.332330861811048 -495.2401609695876 39.858 0.3136 616 +618 3 23.19707892784934 -496.65241218387416 40.1876 0.3089 617 +619 3 23.9232535694622 -496.578205296987 38.269 0.2368 618 +620 3 24.927455020195485 -494.6682553185632 38.078 0.2368 619 +621 3 25.868902688495016 -494.55288612788064 37.9873 0.2368 620 +622 3 26.706504871929997 -492.27396724175685 37.9562 0.2368 621 +623 3 27.749143521748373 -492.4162295810199 37.8686 0.2368 622 +624 3 28.867066417679002 -493.043502353883 37.518 0.2368 623 +625 3 29.94519814428474 -491.6659727003397 36.7732 0.2368 624 +626 3 30.967570200600797 -491.81749225421805 36.0954 0.2368 625 +627 3 32.01200159968843 -490.15223197386996 35.551 0.2368 626 +628 3 33.10540567615893 -490.5221942372196 35.0098 0.2368 627 +629 3 34.116201212392994 -489.7879259852255 34.4327 0.2368 628 +630 3 35.12335548091922 -491.07376924544224 34.0421 0.2368 629 +631 3 36.14502225936482 -492.4427187911284 33.7448 0.2368 630 +632 3 37.19675521808583 -491.8410408856063 33.5566 0.2368 631 +633 3 38.294418428195065 -492.7748592170021 33.509 0.2368 632 +634 3 39.38906155089472 -492.2133421989013 33.4939 0.2368 633 +635 3 40.451332681048726 -493.38935585051746 33.4216 0.2368 634 +636 3 41.57414140154601 -494.106686668227 33.3416 0.2368 635 +637 3 42.676569208077645 -493.7653801267649 33.262 0.2368 636 +638 3 43.61078787906301 -494.56658235199177 33.1635 0.2368 637 +639 3 44.7142634222754 -495.04174210377244 33.3124 0.2367 638 +640 3 45.785460689015224 -496.0532143986883 33.4331 0.2366 639 +641 3 46.913953606790656 -495.87945049270064 33.6053 0.2366 640 +642 3 48.05372882095146 -495.5674184688061 33.8246 0.2365 641 +643 3 49.15295063448039 -494.73110500453623 34.0749 0.2365 642 +644 3 50.18293078576271 -494.5219653722209 34.3644 0.2364 643 +645 3 51.288316713075105 -495.1046474267522 34.676 0.2364 644 +646 3 52.38031895212731 -494.7305936282552 34.9888 0.2363 645 +647 3 53.37335463517885 -495.6223851613657 35.2344 0.2363 646 +648 3 54.31242619701953 -495.6299852512033 35.362 0.2362 647 +649 3 55.330849349310476 -496.61209606121804 35.3856 0.2362 648 +650 3 56.35893763129509 -497.87187242075714 35.322 0.2361 649 +651 3 57.420205577579154 -497.66700617966495 35.0759 0.236 650 +652 3 58.52990640769987 -498.0552360535424 34.6472 0.236 651 +653 3 59.55873188927112 -497.58625199592586 34.2658 0.2359 652 +654 3 60.44703703014945 -498.9922015988488 33.9766 0.2359 653 +655 3 61.31311924356328 -499.2505100858689 33.7711 0.2358 654 +656 3 62.308205758176186 -499.8945581919865 33.6417 0.2358 655 +657 3 63.369506939945325 -501.1854450397425 33.5796 0.2357 656 +658 3 64.45582218190998 -501.0558365239054 33.5563 0.2357 657 +659 3 65.39363317012526 -501.86334568069293 33.5443 0.2356 658 +660 3 66.22840575936752 -502.68442433312424 33.5068 0.2356 659 +661 3 67.20488189505807 -502.8619565974698 33.4527 0.2355 660 +662 3 68.2557136610515 -504.15547559763115 33.4222 0.2355 661 +663 3 69.364227899745 -504.3727668709028 33.4331 0.2354 662 +664 3 70.50086218911494 -504.0222727840417 33.5409 0.2353 663 +665 3 71.52985125537917 -504.1108038362935 33.745 0.2353 664 +666 3 72.61050552628686 -504.5025064293928 33.9293 0.2352 665 +667 3 73.74326339010426 -505.4401284162269 34.0654 0.2352 666 +668 3 74.83981288999995 -504.9177775703842 34.1362 0.2351 667 +669 3 75.97096690505006 -505.57286029265396 34.1541 0.2351 668 +670 3 77.1074451209551 -504.22858862197927 34.2297 0.235 669 +671 3 78.14045986754527 -505.57490941511605 34.3496 0.235 670 +672 3 79.09213686957276 -507.07411161975347 34.41 0.2349 671 +673 3 79.90491169190928 -507.17155803889966 34.4238 0.2349 672 +674 3 80.84389495931705 -508.09625712660454 34.4448 0.2348 673 +675 3 81.97861295121638 -507.3544022995628 34.4722 0.2347 674 +676 3 83.05838246658897 -508.2869391979813 34.5472 0.2347 675 +677 3 83.92303982914785 -509.86118342667396 34.655 0.2346 676 +678 3 84.7396311999961 -510.69781831819455 34.7679 0.2346 677 +679 3 85.80483583963658 -510.61606649530074 34.8835 0.2345 678 +680 3 86.90945923386846 -510.3071826398047 34.9952 0.2345 679 +681 3 87.76712147799475 -510.9905762650883 35.1235 0.2344 680 +682 3 88.57309527927848 -511.9039720765555 35.2904 0.2344 681 +683 3 89.65129928355049 -511.70810445467606 35.532 0.2343 682 +684 3 90.54942832072257 -513.1335156165683 35.7798 0.2343 683 +685 3 91.4389306658394 -514.4718740593197 36.0234 0.2342 684 +686 3 92.46130691901621 -513.8429844592863 36.2746 0.2342 685 +687 3 93.22343343497357 -515.188033458986 36.5019 0.2341 686 +688 3 94.01886114514829 -515.2885046607344 36.7178 0.234 687 +689 3 95.04022229358208 -516.099636950232 36.9074 0.234 688 +690 3 95.93034551722354 -517.5830671532045 37.0583 0.2339 689 +691 3 96.61586634209222 -518.8206956743276 37.1907 0.2339 690 +692 3 97.38146543888274 -519.1223458599613 37.3411 0.2338 691 +693 3 98.33389436117945 -520.2833322959327 37.48 0.2338 692 +694 3 99.22736112450804 -520.063786539829 37.6149 0.2337 693 +695 3 99.97389493990615 -521.5466381303094 37.8683 0.2337 694 +696 3 100.63447458579284 -522.9472415149583 38.1646 0.2336 695 +697 3 101.35094703900855 -524.5799966928 38.4611 0.2336 696 +698 3 102.11240682754638 -524.44495394145 38.8161 0.2335 697 +699 3 102.89346648216709 -525.7139919553455 39.2241 0.2334 698 +700 3 103.93235983716676 -525.451887394107 39.6396 0.2334 699 +701 3 105.00882415051892 -526.2314051427886 39.998 0.2333 700 +702 3 105.75945893650302 -527.4573047122375 40.222 0.2333 701 +703 3 106.45411572230839 -529.0574141574332 40.4135 0.2332 702 +704 3 107.09976939505535 -529.2208606698395 40.5017 0.2332 703 +705 3 107.87334999585588 -530.2995333071257 40.5104 0.2331 704 +706 3 108.91902013939904 -531.669948353774 40.493 0.2331 705 +707 3 109.98944015237569 -531.9813285387244 40.4874 0.233 706 +708 3 110.98943261619324 -532.3627660045734 40.5065 0.233 707 +709 3 112.02005325608016 -532.5386628723119 40.5028 0.2329 708 +710 3 112.92835839065226 -533.2724306111585 40.458 0.2329 709 +711 3 113.97131407679777 -534.5543605049654 40.3105 0.2328 710 +712 3 114.91745294574801 -535.2255852478073 40.1209 0.2327 711 +713 3 115.43157436903869 -536.0950928585607 39.8275 0.2327 712 +714 3 116.13533216378583 -537.240785500346 39.5153 0.2326 713 +715 3 117.21969037925166 -538.3941463840343 39.2165 0.2326 714 +716 3 118.23466766927652 -537.9682176127657 39.0085 0.2325 715 +717 3 118.98837801006596 -539.2912727807972 38.8822 0.2325 716 +718 3 119.63194251358496 -540.5623726270294 38.8203 0.2324 717 +719 3 120.4910148878835 -540.3654762662919 38.8111 0.2324 718 +720 3 121.57535597362022 -541.5944618657248 38.8354 0.2323 719 +721 3 122.52177995718142 -543.1055046421468 38.9018 0.2323 720 +722 3 123.32434413857098 -542.8126737569489 39.0046 0.2322 721 +723 3 124.10763362266528 -544.2494445495867 39.0793 0.2322 722 +724 3 125.03726359355736 -544.4424173615275 39.1269 0.2321 723 +725 3 125.85233260906465 -545.2242346174307 39.144 0.232 724 +726 3 126.4476576335903 -546.8942062568353 39.1308 0.232 725 +727 3 127.26389031607735 -548.4765869854325 39.0886 0.2319 726 +728 3 128.21267076121174 -548.365916068948 39.0205 0.2319 727 +729 3 129.00521973675913 -549.5007059473668 38.9127 0.2318 728 +730 3 129.7310016381942 -551.1533810708838 38.7562 0.2318 729 +731 3 130.5279219782559 -552.2185518995548 38.5792 0.2317 730 +732 3 131.4055842160759 -552.2465295750023 38.3849 0.2317 731 +733 3 132.39327686971845 -553.3381562843299 38.1262 0.2316 732 +734 3 133.0956006035575 -553.2147278812976 37.8053 0.2316 733 +735 3 133.5900307647494 -554.8104653947879 37.5105 0.2315 734 +736 3 134.3558088594522 -556.4302385138357 37.3425 0.2314 735 +737 3 135.40849635333882 -557.3610898608042 37.2291 0.2314 736 +738 3 136.52580558019926 -556.2919850333637 37.0339 0.2313 737 +739 3 137.57922917839488 -556.2669748568786 36.7494 0.2313 738 +740 3 138.690953416995 -556.1758545113677 36.377 0.2312 739 +741 3 139.79430293165512 -556.2222043995747 35.994 0.2312 740 +742 3 140.91734881059574 -556.1208477290272 35.5622 0.2311 741 +743 3 142.04471609728444 -556.1294994891981 35.1627 0.2311 742 +744 3 143.18123675872755 -556.5553008746152 34.8768 0.231 743 +745 3 144.29258448670078 -555.7056687977341 34.6433 0.231 744 +746 3 145.42402461067215 -556.2311982843642 34.3969 0.2309 745 +747 3 146.50958723983092 -555.5763166492085 34.2073 0.2309 746 +748 3 147.49559085185643 -556.8551185091577 34.111 0.2308 747 +749 3 148.59409978729738 -557.5041453395299 34.1309 0.2307 748 +750 3 149.73715076211334 -556.8411831013619 34.2107 0.2307 749 +751 3 150.83087488750465 -557.0783505125288 34.3291 0.2306 750 +752 3 151.48226861568844 -558.6766892868233 34.5162 0.2306 751 +753 3 152.01673530841327 -559.6278584072711 34.6707 0.2305 752 +754 3 153.13240825023234 -559.853884744701 34.813 0.2305 753 +755 3 154.1207700403409 -559.7341716388107 34.9434 0.2304 754 +756 3 155.00497490316985 -560.7503016856449 35.0311 0.2304 755 +757 3 156.01089462410124 -561.3636024539028 35.0378 0.2303 756 +758 3 157.09988969092734 -561.2428537388224 34.9765 0.2302 757 +759 3 158.15760526748375 -561.2195401371825 34.9474 0.2302 758 +760 3 159.06842734673893 -562.2053251309491 34.9037 0.2301 759 +761 3 159.74641916102115 -563.5709205874052 34.823 0.2301 760 +762 3 160.47238006036855 -564.0237819126805 34.7427 0.23 761 +763 3 161.48083454824874 -564.3753838410898 34.6662 0.23 762 +764 3 162.6181811121594 -564.0147168186481 34.5836 0.2299 763 +765 3 163.75818356448877 -564.2634747246009 34.4862 0.2299 764 +766 3 164.8951758496833 -564.9487217534294 34.3543 0.2298 765 +767 3 165.98322908374297 -564.7428881307404 34.1214 0.2298 766 +768 3 166.92073754352953 -565.2639723968928 33.8618 0.2297 767 +769 3 167.9835716934508 -565.4096879465817 33.6297 0.2297 768 +770 3 169.1164178517011 -565.7295007372381 33.4158 0.2296 769 +771 3 170.21777028568584 -566.2775423707225 33.1884 0.2295 770 +772 3 171.31450188507682 -566.6645707337116 32.9386 0.2295 771 +773 3 172.44240134740932 -567.0626677447568 32.6763 0.2294 772 +774 3 173.53219149026435 -566.3084280010575 32.3607 0.2294 773 +775 3 174.49721544074293 -565.4641809418861 32.02 0.2293 774 +776 3 175.45288470963266 -564.6587459000228 31.7234 0.2293 775 +777 3 176.5353422536314 -564.5413057801633 31.4493 0.2292 776 +778 3 177.6683331680207 -564.4440101350465 31.2749 0.2292 777 +779 3 178.6987979472271 -563.7658804023451 31.1564 0.2291 778 +780 3 179.5631888337724 -562.3321254558289 31.0321 0.2291 779 +781 3 180.34138697762683 -561.8429089692479 30.8932 0.229 780 +782 3 181.07220878163753 -561.1575451634319 30.7597 0.229 781 +783 3 181.9020608247875 -559.5431477666214 30.508 0.2289 782 +784 3 182.50543552826073 -558.1426450465877 30.2893 0.2289 783 +785 3 43.61171438759952 -494.70877013957465 31.6593 0.2368 638 +786 3 43.116555029779505 -495.2753552781849 29.2944 0.2364 785 +787 3 44.09891106996353 -493.79191196560265 28.3746 0.2362 786 +788 3 45.12810205858756 -494.76238359263516 27.6228 0.236 787 +789 3 45.920369021107135 -496.18706426949325 26.9253 0.2358 788 +790 3 46.666798436316384 -497.3922749369906 26.2497 0.2356 789 +791 3 47.70809551652041 -496.7542493759771 25.4225 0.2353 790 +792 3 47.793682882895176 -497.5786011448751 24.3898 0.2351 791 +793 3 47.20956987254449 -498.5186224846035 23.5294 0.2349 792 +794 3 47.345518128315334 -499.58648999445154 22.6863 0.2347 793 +795 3 48.206683388950395 -500.77831057326677 21.6309 0.2344 794 +796 3 48.566884558879636 -501.7095215040091 20.2709 0.2342 795 +797 3 49.624466684644936 -500.99484181813347 19.2666 0.234 796 +798 3 50.58804466532037 -501.69968006504337 18.0869 0.2337 797 +799 3 51.4303452588606 -502.96539712974925 16.9849 0.2335 798 +800 3 52.10602025729841 -503.2581016041479 15.9736 0.2333 799 +801 3 52.392573253372504 -504.02701357555156 15.0419 0.2331 800 +802 3 52.55519658432688 -505.41586204745465 14.1767 0.2329 801 +803 3 52.86073577741362 -506.82831034750353 13.4571 0.2327 802 +804 3 53.43831735628619 -508.3448383417235 12.8955 0.2325 803 +805 3 54.124683906486595 -508.5427648428776 12.4755 0.2323 804 +806 3 54.61812388798137 -509.7740865579675 12.1648 0.2321 805 +807 3 55.000026103083954 -511.3805362775964 11.9226 0.2319 806 +808 3 55.84470539010822 -512.5670308104354 11.6178 0.2317 807 +809 3 56.977307180460755 -512.5252561878742 11.2795 0.2315 808 +810 3 57.464361604721645 -512.8649764828257 10.8637 0.2312 809 +811 3 58.143375040664935 -514.2582706614553 10.4725 0.231 810 +812 3 58.79922532621276 -515.2539269861936 10.102 0.2308 811 +813 3 59.69157597028129 -515.5603500780976 9.7274 0.2306 812 +814 3 60.77516134162903 -516.1920827715592 9.2956 0.2304 813 +815 3 61.84526100391119 -515.9420441518612 8.9075 0.2302 814 +816 3 62.872949158284946 -517.353460802427 8.6032 0.23 815 +817 3 63.8346406736179 -517.9934054031067 8.3656 0.2298 816 +818 3 64.7706366806532 -518.2589576030185 8.1845 0.2296 817 +819 3 65.84235181080217 -518.9510725548224 8.0487 0.2294 818 +820 3 66.90623771628634 -518.910923321292 7.9156 0.2292 819 +821 3 68.01697147341585 -519.7261686781173 7.2918 0.229 820 +822 3 23.76479987061908 -497.2716765683102 40.404 0.3089 618 +823 3 24.862218712830536 -496.3745461514199 40.9116 0.2749 822 +824 3 25.98644638279032 -496.7948378915586 41.3686 0.2574 823 +825 3 26.74906693753104 -495.0901587026047 41.9401 0.2574 824 +826 3 27.323067125736678 -496.64684306128515 42.5382 0.2574 825 +827 3 27.643847824564702 -498.2226670135931 42.7106 0.2574 826 +828 3 27.961828873145205 -499.7915637977334 42.8663 0.2574 827 +829 3 28.46156131703294 -501.4062078291722 43.1861 0.2574 828 +830 3 28.416237010702414 -502.7407726474798 43.596 0.2574 829 +831 3 28.7601815524624 -504.315893543792 43.9446 0.2574 830 +832 3 28.81348624469763 -505.1668758377105 44.5105 0.2574 831 +833 3 28.780261826780986 -506.45007006621034 45.4588 0.2572 832 +834 3 28.27599913996197 -507.20813591095487 46.1339 0.2569 833 +835 3 27.2952524414898 -507.06830352774733 46.7606 0.2567 834 +836 3 26.959464572726745 -508.11076755618564 47.5154 0.2565 835 +837 3 26.663201273479963 -509.26765026175065 48.3123 0.2563 836 +838 3 25.954553132704174 -511.22207312941106 49.0507 0.2561 837 +839 3 25.12597838446076 -511.94216188259566 49.7893 0.2559 838 +840 3 24.39138726590636 -512.9284990842733 50.5627 0.2557 839 +841 3 24.015643950588725 -514.8546207742668 51.2604 0.2555 840 +842 3 23.867038877985916 -516.4030180038718 51.9372 0.2553 841 +843 3 23.70292870672016 -517.9083589603543 52.4905 0.2552 842 +844 3 23.596211797650277 -519.1976095540208 52.9516 0.255 843 +845 3 23.91485647206711 -520.214411346494 53.4321 0.2548 844 +846 3 24.29528698113165 -520.8693179382077 53.8437 0.2546 845 +847 3 24.393303903342066 -521.9400100242652 54.2055 0.2544 846 +848 3 23.4662797579925 -523.7411003565932 54.6314 0.2542 847 +849 3 22.44434747501597 -523.5317348993751 55.0413 0.2541 848 +850 3 21.939524177476105 -524.5752560638729 55.4764 0.2539 849 +851 3 21.81185922680171 -525.8638846954918 55.9443 0.2537 850 +852 3 21.69757496947877 -527.1725653282613 56.3427 0.2535 851 +853 3 21.454963342739564 -528.3406788656387 56.6829 0.2533 852 +854 3 20.877872483140305 -529.7120070874976 56.9545 0.2531 853 +855 3 20.282462153947915 -531.4456434909558 57.1586 0.2529 854 +856 3 20.01668668427675 -532.599748771773 57.29 0.2528 855 +857 3 20.01649175858723 -534.0031741836829 57.3658 0.2526 856 +858 3 20.096760132963 -535.4623063418447 57.4143 0.2524 857 +859 3 19.914074818858513 -536.700720651698 57.454 0.2522 858 +860 3 19.514686134267816 -537.7079084535366 57.4848 0.252 859 +861 3 19.327776319060884 -539.0044444472455 57.4893 0.2518 860 +862 3 19.257417028685953 -540.3988716309409 57.4683 0.2516 861 +863 3 19.09950551475068 -541.7807747465315 57.4154 0.2515 862 +864 3 18.884079617149638 -543.486017780343 57.3185 0.2513 863 +865 3 18.66928210930144 -545.2650168111445 57.1802 0.2511 864 +866 3 18.421236057137232 -547.00698920133 57.0074 0.2509 865 +867 3 18.031647651856286 -548.3113018520878 56.7904 0.2507 866 +868 3 17.551866139367394 -549.224139451625 56.5748 0.2505 867 +869 3 17.180368249001038 -550.3083444279048 56.4292 0.2503 868 +870 3 17.02077010249524 -551.7000030243474 56.3508 0.2502 869 +871 3 17.135292205655375 -553.0790131147644 56.3184 0.25 870 +872 3 17.485437813792316 -554.630315837494 56.3259 0.2498 871 +873 3 18.08355086946588 -556.277344601475 56.3623 0.2496 872 +874 3 19.03816207351655 -555.8142471931031 56.3926 0.2494 873 +875 3 20.106134921440614 -556.8877105894526 56.3982 0.2492 874 +876 3 21.110751321434975 -557.0034504577875 56.3774 0.2491 875 +877 3 21.942268665423 -558.4470461966326 56.3192 0.2489 876 +878 3 22.411255197443005 -559.612097198536 56.222 0.2487 877 +879 3 22.429993410416806 -560.9928370066925 56.1084 0.2485 878 +880 3 22.20204967452528 -562.4094014449367 55.998 0.2483 879 +881 3 21.948486413132766 -563.8323113597271 55.8922 0.2481 880 +882 3 21.783095152840808 -565.2525745208295 55.7729 0.2479 881 +883 3 21.804639219228292 -566.6558525137793 55.6438 0.2477 882 +884 3 21.886473104704635 -568.0413460312463 55.5285 0.2476 883 +885 3 21.77146665256631 -569.467117220114 55.4347 0.2474 884 +886 3 21.51006254740946 -570.7995256473916 55.349 0.2472 885 +887 3 21.341240145533984 -572.0805895685663 55.2574 0.247 886 +888 3 21.40444342077585 -573.5585307220141 55.1737 0.2468 887 +889 3 21.432761475897234 -575.0026573717244 55.1065 0.2466 888 +890 3 21.293343013534056 -576.3189193317563 55.0292 0.2465 889 +891 3 21.068563126880775 -577.5513950066253 54.9248 0.2463 890 +892 3 20.60735675723066 -578.4921604607547 54.8338 0.2461 891 +893 3 20.023993666550727 -580.0255516577438 54.7865 0.2459 892 +894 3 19.91400748408049 -581.4409220148408 54.7753 0.2457 893 +895 3 20.49394483198964 -582.1826189361873 54.7694 0.2455 894 +896 3 21.280665457667297 -583.832691994972 54.7114 0.2453 895 +897 3 21.4270701073561 -585.3101394368439 54.5992 0.2451 896 +898 3 21.383308903079666 -586.7133540044113 54.4891 0.2449 897 +899 3 21.63723594987234 -588.0122529732821 54.3931 0.2447 898 +900 3 21.49358678324048 -589.480892114152 54.3054 0.2445 899 +901 3 21.4162714046362 -590.919362675467 54.2206 0.2443 900 +902 3 21.67879431704564 -592.1653487753742 54.1058 0.2442 901 +903 3 22.01869335561541 -593.3241438582523 53.996 0.244 902 +904 3 22.027628880232985 -594.7244363350599 53.9092 0.2438 903 +905 3 22.08241838935341 -596.1124981072136 53.8084 0.2436 904 +906 3 22.358393159818018 -597.6844126490262 53.7306 0.2434 905 +907 3 22.505617508808104 -599.2168649702272 53.7076 0.2432 906 +908 3 22.817899248664865 -600.4392238080047 53.7471 0.243 907 +909 3 22.838955585545197 -601.830683396651 53.8975 0.2428 908 +910 3 22.896277452567915 -603.1941663502221 54.145 0.2427 909 +911 3 23.22758062552093 -604.407042223354 54.3936 0.2425 910 +912 3 23.620666531538447 -605.4828244560445 54.63 0.2423 911 +913 3 24.141551017000047 -606.5581581859909 54.8738 0.2421 912 +914 3 24.462692813235765 -607.9834598324272 55.1821 0.2419 913 +915 3 24.725127431212286 -609.2237079342772 55.4828 0.2417 914 +916 3 25.06524380536104 -610.4713163863814 55.8373 0.2416 915 +917 3 25.7997735380063 -611.0791982011194 56.425 0.2414 916 +918 3 26.609685340708445 -612.2098595711034 57.0545 0.2412 917 +919 3 26.99532983803583 -613.8338150952675 57.6064 0.241 918 +920 3 27.445242571147027 -615.2672079876613 58.2232 0.2408 919 +921 3 28.098988966784212 -616.2215930400887 58.9207 0.2406 920 +922 3 28.844267719186583 -617.0529318862153 59.6434 0.2404 921 +923 3 29.469195504000965 -617.801402319131 60.368 0.2402 922 +924 3 29.678680412973076 -619.0012164059079 61.1792 0.24 923 +925 3 29.521205979242172 -620.4067244181706 61.9562 0.2398 924 +926 3 29.371663785291652 -621.8163767015797 62.61 0.2396 925 +927 3 29.49273022997069 -623.1326481903689 63.2047 0.2395 926 +928 3 30.020464686963034 -624.4693511534562 63.7879 0.2393 927 +929 3 30.644638142461638 -625.4096595846939 64.3471 0.2391 928 +930 3 31.161203629221703 -626.1373632528787 64.8276 0.2389 929 +931 3 31.80587263290123 -627.3290029103609 65.3092 0.2387 930 +932 3 32.667653953967914 -628.06579981509 65.9296 0.2385 931 +933 3 33.557148787856505 -629.0410209739772 66.5862 0.2383 932 +934 3 34.44495458012808 -630.0299518379971 67.1933 0.2381 933 +935 3 35.2788276931527 -631.4543736598089 67.7513 0.238 934 +936 3 35.919974851769325 -631.9940396256171 68.2514 0.2378 935 +937 3 36.595154609471756 -632.6387172767011 68.8064 0.2376 936 +938 3 37.567053350416884 -633.6403348924757 69.55 0.2374 937 +939 3 38.55108211367782 -633.989570145936 70.2117 0.2372 938 +940 3 39.367047503819684 -635.0389817335207 70.7868 0.237 939 +941 3 40.365423807233796 -636.3180353699564 71.3205 0.2368 940 +942 3 39.82041330865144 -636.7823231478255 72.1179 0.2366 941 +943 3 39.45269293659353 -637.8288053955793 72.5838 0.2363 942 +944 3 40.00794167718324 -639.4317942731857 73.0075 0.2361 943 +945 3 40.759151794570826 -640.4343749323235 73.5272 0.236 944 +946 3 41.2693895828544 -640.6672043860146 74.0328 0.2358 945 +947 3 41.7394015306551 -642.2737209047468 74.6278 0.2356 946 +948 3 42.297741239269484 -643.9563792795866 75.2321 0.2354 947 +949 3 42.7350625603399 -645.0416862344705 75.7014 0.2352 948 +950 3 43.030855225002824 -646.042190837125 76.0402 0.2351 949 +951 3 43.45659652166709 -647.3591864839567 76.2308 0.2349 950 +952 3 43.864029967837794 -648.6890781513437 76.3661 0.2347 951 +953 3 44.28175142282535 -650.1759752629346 76.5237 0.2345 952 +954 3 44.835916587103426 -650.8058165614208 76.7617 0.2344 953 +955 3 45.22753078708284 -651.9217749433492 77.1134 0.2342 954 +956 3 45.35185247701618 -653.3130207018901 77.5356 0.234 955 +957 3 44.85927421479206 -654.6158849453172 78.1211 0.2338 956 +958 3 44.669361725993326 -656.1513461935033 78.6895 0.2337 957 +959 3 45.135545506182844 -657.1406395246535 79.347 0.2335 958 +960 3 45.52677088389916 -658.374376380493 80.4619 0.2333 959 +961 3 45.680157647847786 -659.6830549163931 81.6346 0.233 960 +962 3 46.00643093263174 -661.1947733577305 82.7492 0.2329 961 +963 3 46.153284281624465 -662.6813378122592 83.5817 0.2327 962 +964 3 46.25545902688994 -664.1824716774098 84.2856 0.2325 963 +965 3 46.593970859734874 -665.8168668472797 84.8243 0.2323 964 +966 3 47.07329845892119 -667.5182379090743 85.1987 0.2322 965 +967 3 47.717518763296624 -667.8370377496251 85.5201 0.232 966 +968 3 48.00613661907807 -668.9215168959661 85.827 0.2318 967 +969 3 47.907834168666184 -670.3313544448046 86.0121 0.2316 968 +970 3 47.952462301069154 -671.7831640124083 86.1112 0.2314 969 +971 3 47.584433889952926 -673.3061218008434 86.1504 0.2313 970 +972 3 47.209317247878154 -675.1517695953264 86.1381 0.2311 971 +973 3 46.975045813510086 -676.926084466651 86.018 0.2309 972 +974 3 47.019406653568005 -678.2339330751162 85.8724 0.2307 973 +975 3 47.1656086883605 -679.3812376505304 85.7354 0.2306 974 +976 3 47.60591796233989 -679.9627085811156 85.6061 0.2304 975 +977 3 47.98796083768817 -681.4756210828715 85.4493 0.2302 976 +978 3 48.095400220519416 -682.9880923825604 85.2006 0.23 977 +979 3 48.10412081860456 -684.4737059192572 84.9993 0.2298 978 +980 3 47.92727857505248 -685.8006974941301 84.8484 0.2297 979 +981 3 47.763400460048324 -687.1717525600199 84.6737 0.2295 980 +982 3 47.551138411685564 -688.514765605844 84.5516 0.2293 981 +983 3 47.87909873748807 -690.092755031301 84.5614 0.2291 982 +984 3 48.47758761125194 -691.7352013585452 84.698 0.229 983 +985 3 41.22086302859994 -635.47709757422 72.3064 0.2366 941 +986 3 42.30760503973144 -636.0854622083923 72.8062 0.2362 985 +987 3 43.364257857150776 -635.1232719641528 73.0556 0.236 986 +988 3 44.33811213855412 -634.5147077046396 73.3379 0.2357 987 +989 3 45.28139330283605 -633.2022787811208 73.7856 0.2355 988 +990 3 46.3075956340362 -632.9178224123857 74.5688 0.2352 989 +991 3 47.201699683418994 -634.2184658735683 75.3564 0.2349 990 +992 3 47.92136742783682 -635.802336905857 76.1146 0.2347 991 +993 3 48.904313609096334 -635.4371992380003 77.1476 0.2344 992 +994 3 49.951231925639405 -635.4438303229123 78.1071 0.2342 993 +995 3 50.90144673345546 -635.0393463470043 79.0754 0.2339 994 +996 3 51.422964710851616 -636.1312953522047 80.218 0.2337 995 +997 3 52.102667798661756 -637.6662944825739 81.2812 0.2334 996 +998 3 52.795907937376846 -639.2471068920255 82.2954 0.2332 997 +999 3 53.57624059677413 -639.8365980678641 83.4868 0.2329 998 +1000 3 54.525553927773956 -639.8582291292739 84.5522 0.2327 999 +1001 3 55.41538041770497 -640.7639143371969 85.4997 0.2325 1000 +1002 3 56.24309010948263 -640.7126009450379 86.3652 0.2322 1001 +1003 3 56.97205809206675 -642.2921295701609 87.2637 0.232 1002 +1004 3 57.53550567224541 -643.7362165467925 88.2675 0.2318 1003 +1005 3 58.09320157788771 -644.8796886587917 89.2875 0.2315 1004 +1006 3 58.65152587328282 -645.6553172603767 90.3028 0.2313 1005 +1007 3 59.19688844917651 -646.5044720033259 91.4396 0.2311 1006 +1008 3 59.55048401547283 -647.8923984367059 92.9802 0.2308 1007 +1009 3 59.78366014261279 -649.1876488595956 94.7142 0.2305 1008 +1010 3 60.427925603346445 -649.9384414612323 96.0411 0.2302 1009 +1011 3 61.260079540852054 -650.0109289979325 97.0589 0.23 1010 +1012 3 61.936936721071966 -651.6449106447396 97.8673 0.2298 1011 +1013 3 62.817386297503305 -652.6395440249348 98.5424 0.2295 1012 +1014 3 63.591198054387135 -651.922013262897 99.3118 0.2293 1013 +1015 3 64.30856769856898 -650.6992041375934 100.9646 0.229 1014 +1016 3 29.04663585407674 -504.7423425124759 44.3302 0.2572 831 +1017 3 29.916815936493503 -504.4935471450136 44.602 0.2566 1016 +1018 3 30.730243458103434 -505.8826317085559 44.7874 0.2562 1017 +1019 3 31.238789103186857 -506.81157064055617 44.9064 0.2559 1018 +1020 3 31.610929376646407 -507.4747063021988 45.0052 0.2555 1019 +1021 3 32.45256255023061 -508.41347044832224 45.1248 0.2551 1020 +1022 3 33.58496241822346 -507.7681620053571 45.2413 0.2548 1021 +1023 3 34.45696809463146 -508.7292940932973 45.3348 0.2544 1022 +1024 3 34.92760912472157 -510.2835008198194 45.3488 0.254 1023 +1025 3 35.410761789936025 -511.9004524295466 45.2861 0.2537 1024 +1026 3 36.180100067368315 -513.1559070492026 45.1752 0.2533 1025 +1027 3 37.16646477680153 -513.1480095030665 44.9982 0.253 1026 +1028 3 38.09537496192477 -514.1098733877607 44.7804 0.2526 1027 +1029 3 38.901375795527336 -514.1828415280481 44.5729 0.2522 1028 +1030 3 39.574381883688574 -515.6573663634624 44.3864 0.2519 1029 +1031 3 39.969644560830375 -517.1050088056946 44.1543 0.2515 1030 +1032 3 40.07820006292165 -518.5483609755871 43.857 0.2511 1031 +1033 3 40.090263508157335 -519.9415137866793 43.5736 0.2508 1032 +1034 3 39.99036271960776 -521.2648975843749 43.3415 0.2504 1033 +1035 3 39.667645788627816 -522.505899396336 43.1598 0.2501 1034 +1036 3 39.38004303244677 -523.7751482524544 43.0248 0.2497 1035 +1037 3 39.59117692885936 -525.1474694015951 42.9318 0.2494 1036 +1038 3 40.05398021676821 -526.5825827149151 42.8056 0.249 1037 +1039 3 40.792675597448344 -528.1694454701462 42.5569 0.2486 1038 +1040 3 41.27070738692578 -529.0591146567918 42.5074 0.2482 1039 +1041 3 41.45089895974061 -530.1708994254565 42.5379 0.2478 1040 +1042 3 41.36253744888395 -531.6553417186286 42.5342 0.2475 1041 +1043 3 41.39242411668906 -532.9860957178755 42.5407 0.2471 1042 +1044 3 42.09839122550886 -534.1309423337382 42.5701 0.2471 1043 +1045 3 42.989229416826205 -534.9202870050839 42.5499 0.2471 1044 +1046 3 43.97390508464231 -535.0775524950011 42.534 0.2471 1045 +1047 3 44.86341223016709 -536.3500671457573 42.5228 0.2471 1046 +1048 3 45.495978243849606 -537.766819855077 42.5079 0.2471 1047 +1049 3 46.20158425526178 -538.8094845447622 42.4872 0.2471 1048 +1050 3 47.072789753459226 -539.031777835424 42.4578 0.2471 1049 +1051 3 48.06837561667882 -539.8874665110656 42.4175 0.2471 1050 +1052 3 48.65378742650458 -540.6037314959185 42.2901 0.2471 1051 +1053 3 49.321631892215585 -542.270314480009 42.1658 0.2469 1052 +1054 3 50.38955168179037 -543.0699039025902 42.0039 0.2467 1053 +1055 3 51.50928484748233 -542.9703582908827 41.8242 0.2466 1054 +1056 3 52.51100779216663 -543.4823285265677 41.58 0.2465 1055 +1057 3 53.3648394596352 -544.0285287092092 41.174 0.2464 1056 +1058 3 54.37492552113804 -544.8842366104145 40.7425 0.2462 1057 +1059 3 55.481518661952876 -545.6957456531143 40.3292 0.2461 1058 +1060 3 56.515951363695216 -545.707075505646 39.8014 0.246 1059 +1061 3 57.314187336330114 -546.6153370847977 39.3184 0.2459 1060 +1062 3 57.80669639964335 -547.8560945016555 38.9494 0.2457 1061 +1063 3 58.59446846713217 -548.0043171298655 38.6697 0.2456 1062 +1064 3 59.68738690368326 -549.0283324662151 38.4675 0.2455 1063 +1065 3 60.80635783806834 -548.167031732131 38.3314 0.2454 1064 +1066 3 61.77578648951359 -549.2755017819675 38.2466 0.2452 1065 +1067 3 62.54049842172253 -550.823092321891 38.192 0.2451 1066 +1068 3 63.41815755795944 -550.9357546004608 38.0971 0.245 1067 +1069 3 64.42718366013467 -551.8103196172879 37.8969 0.2449 1068 +1070 3 65.35071419469227 -552.4505951080587 37.6538 0.2448 1069 +1071 3 66.0726155627033 -553.2146356758958 37.3887 0.2446 1070 +1072 3 66.7088300535482 -554.5191880867184 37.1017 0.2445 1071 +1073 3 67.5669122481497 -556.0357575410517 36.7665 0.2444 1072 +1074 3 68.64271052661898 -555.3002801157315 36.3885 0.2443 1073 +1075 3 69.5257363092489 -556.6608373266512 36.0598 0.2441 1074 +1076 3 70.28394085253251 -557.4280836088171 35.7622 0.244 1075 +1077 3 71.2295543468455 -558.18835023411 35.448 0.2439 1076 +1078 3 72.27316444877435 -558.9642923665199 35.175 0.2438 1077 +1079 3 73.33457684942374 -559.2445298124172 34.9877 0.2437 1078 +1080 3 74.33714311039334 -559.5659004797606 34.834 0.2435 1079 +1081 3 75.42044577617659 -559.4152778794337 34.7446 0.2434 1080 +1082 3 76.55223227687294 -559.287007426102 34.7707 0.2433 1081 +1083 3 77.66016018058866 -560.2242916523818 34.804 0.2432 1082 +1084 3 78.56154066889529 -560.542285062015 34.7712 0.243 1083 +1085 3 79.5614561436278 -560.9305840205693 34.69 0.2429 1084 +1086 3 80.68048424423355 -560.5287074783705 34.6237 0.2428 1085 +1087 3 81.72824286446813 -561.3297828674982 34.5909 0.2427 1086 +1088 3 82.8122430841094 -562.6015142464805 34.6262 0.2425 1087 +1089 3 83.82126298311846 -562.5789348115791 34.7544 0.2424 1088 +1090 3 84.52464467568663 -563.5549141177872 34.9286 0.2423 1089 +1091 3 85.30133365832955 -564.5525918381022 35.1422 0.2422 1090 +1092 3 86.3588802462377 -564.5537940129807 35.3427 0.242 1091 +1093 3 87.49017561407001 -564.3624793080223 35.4295 0.2419 1092 +1094 3 88.41624470969609 -565.0309530618915 35.4298 0.2418 1093 +1095 3 89.29728572328676 -566.4433976415169 35.3948 0.2417 1094 +1096 3 90.44069710297381 -566.4642633184617 35.341 0.2415 1095 +1097 3 91.57190006850183 -566.3168951922397 35.2834 0.2414 1096 +1098 3 92.57941302538923 -566.3085596321637 35.2304 0.2413 1097 +1099 3 93.43209333751415 -567.4193593969783 35.1826 0.2412 1098 +1100 3 94.28490028173859 -568.577293732519 35.0986 0.241 1099 +1101 3 94.97919597013625 -570.1790298250796 34.9969 0.2409 1100 +1102 3 95.58703573136933 -570.8127079031497 34.9079 0.2408 1101 +1103 3 96.19910309528788 -572.3663483827366 34.8348 0.2407 1102 +1104 3 96.9067623473079 -573.0875470705763 34.7763 0.2405 1103 +1105 3 97.67232000484867 -573.5629558382141 34.7304 0.2404 1104 +1106 3 97.98195775947495 -575.1533536623901 34.6948 0.2403 1105 +1107 3 97.69106452195604 -576.3316717819522 34.6632 0.2402 1106 +1108 3 97.63660115310572 -577.7090029027911 34.6147 0.2401 1107 +1109 3 98.05218107305268 -579.3783505188204 34.5005 0.2399 1108 +1110 3 98.59106467741287 -580.4263060294227 34.4142 0.2398 1109 +1111 3 98.8759933093188 -581.7234268161258 34.393 0.2397 1110 +1112 3 98.86568937272472 -583.1510739729017 34.3706 0.2396 1111 +1113 3 98.81653138815334 -584.5305052053051 34.279 0.2394 1112 +1114 3 99.11343466144677 -586.1450372062342 34.0581 0.2393 1113 +1115 3 99.33100788366409 -587.7232383106962 33.9226 0.2392 1114 +1116 3 99.34578888788059 -589.172350792153 33.8425 0.2391 1115 +1117 3 99.31387259130895 -590.5866135780326 33.7862 0.2389 1116 +1118 3 99.1695036389083 -591.8843311971116 33.6916 0.2388 1117 +1119 3 98.66567052106552 -592.7721812676803 33.5698 0.2387 1118 +1120 3 98.18731075784854 -593.9935917066772 33.4586 0.2386 1119 +1121 3 98.20680330013818 -595.3385465086488 33.3805 0.2384 1120 +1122 3 98.73926781000591 -596.7772930118501 33.3609 0.2383 1121 +1123 3 99.43084904100594 -597.9202127611019 33.3917 0.2382 1122 +1124 3 99.87960731719036 -598.6083351782652 33.4348 0.2381 1123 +1125 3 99.73313757646208 -600.0140190391236 33.4603 0.2379 1124 +1126 3 99.3897039676027 -601.8389493170147 33.455 0.2378 1125 +1127 3 99.32549578683853 -603.2496579032091 33.4132 0.2377 1126 +1128 3 99.75465350440355 -603.9446650149691 33.3326 0.2376 1127 +1129 3 100.61190779593903 -604.9215063805403 33.1775 0.2374 1128 +1130 3 101.63420296413749 -605.3910414425364 32.9778 0.2373 1129 +1131 3 102.59273063023224 -606.8475613483918 32.7687 0.2372 1130 +1132 3 102.89688571917715 -607.9009593443934 32.4148 0.2371 1131 +1133 3 102.53874278022035 -609.4285315301884 32.023 0.2369 1132 +1134 3 102.7461960649701 -610.6458538193806 31.6907 0.2368 1133 +1135 3 103.13258427880207 -611.7617141782592 31.2998 0.2366 1134 +1136 3 103.04617058439118 -613.1627831441165 31.0968 0.2363 1135 +1137 3 103.00605785727713 -614.5574304748421 30.8557 0.2361 1136 +1138 3 103.46092890540564 -616.0514293345897 30.6289 0.2359 1137 +1139 3 103.62200454752521 -617.3570586150388 30.4214 0.2357 1138 +1140 3 103.15862381579734 -618.5691264793411 30.2882 0.2356 1139 +1141 3 102.65870715999873 -619.8869746664429 30.1952 0.2354 1140 +1142 3 102.57845929588123 -621.3181696823797 30.0297 0.2352 1141 +1143 3 102.63635718684402 -622.637329519765 29.7203 0.235 1142 +1144 3 102.4066744525693 -624.1669184282572 29.3905 0.2348 1143 +1145 3 101.96783856633209 -625.7799442820915 29.09 0.2346 1144 +1146 3 101.02719208253157 -625.9984467700557 28.7745 0.2344 1145 +1147 3 100.39140294097456 -626.960840114552 28.4222 0.2342 1146 +1148 3 100.28730978582287 -628.3723700043445 28.0837 0.234 1147 +1149 3 100.58376917790531 -629.6585213140784 27.7143 0.2339 1148 +1150 3 101.23863479438572 -631.3235054904841 27.2294 0.2337 1149 +1151 3 102.20151531019239 -631.8364357523635 26.5782 0.2335 1150 +1152 3 103.22551013281915 -632.2577573312601 25.8896 0.2333 1151 +1153 3 104.33269601885524 -631.8181813799763 25.3241 0.2331 1152 +1154 3 105.41926865057546 -632.7620487396753 24.821 0.2329 1153 +1155 3 106.50835891951532 -633.3433066021643 24.326 0.2327 1154 +1156 3 107.62088852749706 -632.9853787082322 23.8381 0.2325 1155 +1157 3 108.29176810307395 -633.703670688171 23.4048 0.2324 1156 +1158 3 108.63740409549746 -635.1110286666312 23.0029 0.2322 1157 +1159 3 109.42855493875696 -635.6388292267925 22.7032 0.232 1158 +1160 3 110.24773964553293 -636.9043694042839 22.4678 0.2318 1159 +1161 3 110.94804027266616 -638.3082815213018 22.2212 0.2316 1160 +1162 3 111.5984616434186 -639.6125083078116 21.9364 0.2314 1161 +1163 3 112.23588054795643 -640.756201211687 21.6476 0.2312 1162 +1164 3 113.04846475328111 -641.461687571846 21.3788 0.231 1163 +1165 3 113.89379505273196 -642.8053480988889 21.1327 0.2309 1164 +1166 3 114.65863361704052 -642.6550572940566 20.9262 0.2307 1165 +1167 3 115.34571995300979 -644.3294737402406 20.7623 0.2305 1166 +1168 3 115.65121839938334 -645.6949827676624 20.6769 0.2303 1167 +1169 3 115.56971375576013 -647.1044911022 20.7098 0.2301 1168 +1170 3 115.44117025271692 -648.5137039162579 20.8716 0.2299 1169 +1171 3 115.72800526181888 -649.6253709398136 21.2591 0.2297 1170 +1172 3 115.93844029631144 -650.5653229067713 21.6486 0.2295 1171 +1173 3 116.1286987482446 -651.6667554479162 22.1431 0.2293 1172 +1174 3 116.12524857730082 -653.0053305220313 22.6044 0.2292 1173 +1175 3 116.56469602019263 -654.3347567007202 23.5584 0.229 1174 +1176 3 103.646200865684 -610.1258596235307 30.3719 0.2362 1134 +1177 3 104.66988315061803 -609.6110898274156 29.5795 0.2351 1176 +1178 3 105.68579446040754 -610.0647065473811 29.0875 0.2344 1177 +1179 3 106.59688452454448 -611.5964130853782 28.5432 0.2337 1178 +1180 3 106.95291905212862 -612.771860202226 27.8145 0.233 1179 +1181 3 107.16788903582854 -613.9835514583178 26.9002 0.2322 1180 +1182 3 108.0383144804533 -614.3916853041874 25.8542 0.2315 1181 +1183 3 108.9436398658811 -614.7584432430453 24.884 0.2308 1182 +1184 3 109.66263167282635 -615.805420997206 24.0045 0.2301 1183 +1185 3 109.80494527220372 -616.8377881762224 22.4367 0.2295 1184 +1186 3 49.11948929473275 -538.950801698682 40.8265 0.2467 1051 +1187 3 50.11593309395292 -538.9548153659423 40.0296 0.2461 1186 +1188 3 51.21554813938998 -538.8679130440012 39.5276 0.2457 1187 +1189 3 52.31575672925925 -538.4607402357383 39.0146 0.2454 1188 +1190 3 53.37716912990869 -538.6551457628457 38.472 0.245 1189 +1191 3 54.461444153123296 -539.0357096383608 37.8549 0.2446 1190 +1192 3 55.55990343357173 -539.6001675137045 37.1157 0.2442 1191 +1193 3 56.65474637135823 -539.0606371417682 36.3079 0.2438 1192 +1194 3 57.71336353140518 -539.3600895762953 35.476 0.2435 1193 +1195 3 58.53624015519184 -539.5931081150529 34.4893 0.2431 1194 +1196 3 58.782102505723316 -540.471929373154 33.3654 0.2426 1195 +1197 3 59.254710482586844 -541.9005159577433 32.1919 0.2422 1196 +1198 3 60.1827465249864 -542.8621484676744 31.269 0.2419 1197 +1199 3 60.50382364377315 -543.6998295197493 30.3906 0.2415 1198 +1200 3 60.883715774027614 -544.5638185135467 29.5977 0.2411 1199 +1201 3 61.09779859314601 -545.8908139241767 28.8585 0.2407 1200 +1202 3 60.83731378707113 -547.2114087649971 28.1392 0.2403 1201 +1203 3 60.70653324509976 -548.3987346954542 27.2472 0.2399 1202 +1204 3 61.23881565547219 -549.6398955243081 26.6805 0.2395 1203 +1205 3 61.65796126877818 -551.2478376967769 26.1939 0.2391 1204 +1206 3 61.690903260076446 -552.6610584684354 25.8129 0.2388 1205 +1207 3 61.40601806287613 -553.8186861044007 25.5862 0.2384 1206 +1208 3 61.145547977483915 -554.998433748803 25.496 0.238 1207 +1209 3 61.066410721996874 -556.3873309389905 25.4948 0.2376 1208 +1210 3 61.05053721036171 -557.8115907911299 25.493 0.2372 1209 +1211 3 61.1655087053624 -559.2926996219041 25.4733 0.2369 1210 +1212 3 61.33496287751975 -560.8317645178635 25.4142 0.2365 1211 +1213 3 61.22610443340916 -562.141416346613 25.2902 0.2361 1212 +1214 3 60.825641068808196 -563.2927791407621 25.0858 0.2357 1213 +1215 3 60.5112112718501 -564.6947095568596 24.7933 0.2354 1214 +1216 3 60.52295436639128 -566.0593599323121 24.3822 0.235 1215 +1217 3 60.97584884924524 -567.304311522392 23.9279 0.2346 1216 +1218 3 61.61607601624334 -568.9687876424622 23.5437 0.2342 1217 +1219 3 62.206850678342406 -570.4841752158719 23.1983 0.2338 1218 +1220 3 62.88375850786507 -570.730133621 22.7765 0.2334 1219 +1221 3 63.6279413723196 -571.7901036174653 22.2748 0.233 1220 +1222 3 64.3901914187934 -573.3783042282107 21.7153 0.2327 1221 +1223 3 65.31259662403781 -573.5999793062658 21.1081 0.2323 1222 +1224 3 66.11370892225356 -574.2971840973036 20.3202 0.2318 1223 +1225 3 67.14004410069761 -575.458614308053 19.5128 0.2314 1224 +1226 3 68.24381356583295 -574.4033619240369 18.9252 0.2311 1225 +1227 3 69.29034816229462 -574.7283397683346 18.4673 0.2307 1226 +1228 3 70.4064934204017 -574.5153643596167 18.0972 0.2303 1227 +1229 3 71.30235188138703 -575.2885097202574 17.6695 0.2299 1228 +1230 3 72.41433559933058 -576.3161254739514 17.3246 0.2295 1229 +1231 3 73.53902807435013 -575.0094610373609 16.8274 0.2292 1230 +1232 3 41.33886734452164 -533.9143042843832 41.7738 0.2398 1043 +1233 3 41.364224165301145 -535.1838915445802 40.9259 0.2368 1232 +1234 3 41.588736346018656 -536.2260457751935 40.5244 0.2368 1233 +1235 3 41.8624812870097 -537.802500615524 40.1635 0.2368 1234 +1236 3 42.257261745273844 -539.4071178385193 39.6234 0.2368 1235 +1237 3 42.59176400354868 -540.7676331421658 39.1073 0.2368 1236 +1238 3 42.7684330387641 -541.9903810399704 38.67 0.2368 1237 +1239 3 43.14873381414593 -542.5865243648493 38.2914 0.2368 1238 +1240 3 43.56435207175946 -543.645835490846 37.8347 0.2368 1239 +1241 3 43.97124783165669 -545.2670513823773 37.4058 0.2368 1240 +1242 3 44.16301942887769 -546.7990311673232 36.9608 0.2368 1241 +1243 3 44.12236591390708 -548.1518420608331 36.3364 0.2368 1242 +1244 3 44.18110953020171 -549.5923461076136 35.7851 0.2368 1243 +1245 3 44.65214689378308 -550.8385121054141 35.2814 0.2368 1244 +1246 3 45.30625818094766 -552.1818640823142 34.8076 0.2368 1245 +1247 3 46.10460027028128 -552.9650340139864 34.4459 0.2368 1246 +1248 3 47.001407471713904 -553.2699064778235 34.1796 0.2368 1247 +1249 3 47.702251295750145 -554.6731408900833 33.9839 0.2368 1248 +1250 3 48.281048907415226 -555.2321580801814 33.817 0.2368 1249 +1251 3 48.77427775649726 -556.8349855930713 33.5784 0.2368 1250 +1252 3 49.28514152548716 -558.4938097724436 33.2886 0.2368 1251 +1253 3 49.796005294477055 -559.8541433369934 32.9963 0.2368 1252 +1254 3 50.14561631792362 -561.1313122315734 32.695 0.2368 1253 +1255 3 50.29957090204759 -562.5236402709241 32.4366 0.2368 1254 +1256 3 50.553263483532206 -564.0324631793385 32.2123 0.2368 1255 +1257 3 51.412446774937436 -564.5897463797623 31.866 0.2368 1256 +1258 3 51.890660663910154 -565.7654273495788 31.5288 0.2368 1257 +1259 3 52.08269955347631 -567.0809176947597 31.1609 0.2368 1258 +1260 3 52.103176764833414 -568.4619976151149 30.819 0.2368 1259 +1261 3 52.06978876222368 -569.8558341120462 30.511 0.2368 1260 +1262 3 52.23562900076569 -571.2453241412832 30.1347 0.2368 1261 +1263 3 52.65419618108503 -572.2482854304519 29.6682 0.2368 1262 +1264 3 52.92758553529795 -573.3357528119648 29.2513 0.2368 1263 +1265 3 53.21068136375815 -574.8016295264297 28.8834 0.2368 1264 +1266 3 53.590624143315424 -576.4447851304449 28.5743 0.2368 1265 +1267 3 54.02393588981576 -578.0970008527613 28.2957 0.2368 1266 +1268 3 54.34601480739919 -579.7156567941392 28.0364 0.2368 1267 +1269 3 54.6951349997555 -581.0316738914819 27.7582 0.2368 1268 +1270 3 55.14265362616341 -582.1385460775149 27.4482 0.2368 1269 +1271 3 55.66126994448478 -582.9587015362653 27.1584 0.2368 1270 +1272 3 56.237479730851746 -584.2362022525779 26.9145 0.2368 1271 +1273 3 56.88657005581173 -585.307314069411 26.6841 0.2368 1272 +1274 3 57.60224604792525 -585.7379490732892 26.4553 0.2368 1273 +1275 3 58.28285851454275 -587.1380247797817 26.2467 0.2368 1274 +1276 3 58.63825644860932 -588.7561943161555 26.056 0.2368 1275 +1277 3 59.16706937973161 -590.0107239304589 25.7818 0.2368 1276 +1278 3 59.84595377452884 -590.6101270752373 25.4761 0.2368 1277 +1279 3 60.42265129040296 -591.6400916359167 25.1504 0.2368 1278 +1280 3 60.996686714692174 -593.32918496939 24.8583 0.2368 1279 +1281 3 61.573833622406916 -594.9189542961443 24.6168 0.2368 1280 +1282 3 62.119223923156014 -595.4488585201765 24.3631 0.2368 1281 +1283 3 62.65680930876085 -596.277136659333 24.1458 0.2368 1282 +1284 3 63.369949841388916 -597.924281471648 23.9241 0.2368 1283 +1285 3 64.1153347104899 -598.9905341669775 23.7171 0.2368 1284 +1286 3 64.92685275332077 -599.909241658452 23.5347 0.2368 1285 +1287 3 65.52191048550122 -600.7960760192223 23.3695 0.2368 1286 +1288 3 65.99963423592031 -602.4758892434974 23.2174 0.2368 1287 +1289 3 66.75214016301683 -603.8895741544172 23.0505 0.2368 1288 +1290 3 67.54130795374701 -603.653376376032 22.8175 0.2368 1289 +1291 3 68.01430785445679 -605.3208768418008 22.4479 0.2368 1290 +1292 3 68.40663563703885 -606.9772053678939 22.0713 0.2368 1291 +1293 3 68.54642167892187 -608.3989315571615 21.7249 0.2368 1292 +1294 3 68.38873060214867 -609.8146367310566 21.4005 0.2368 1293 +1295 3 68.32313900977927 -611.1962102947579 21.0311 0.2368 1294 +1296 3 68.98508493754206 -612.0936896122938 20.5899 0.2368 1295 +1297 3 69.25388118201671 -613.7487169336147 19.9469 0.2367 1296 +1298 3 69.50200349592369 -615.3404246392766 19.3426 0.2361 1297 +1299 3 69.84537132120693 -616.539494575433 18.7354 0.2358 1298 +1300 3 70.35582403602295 -617.3669267486363 18.2045 0.2355 1299 +1301 3 70.87100611117783 -619.0225739977609 17.7157 0.2352 1300 +1302 3 71.38111726736183 -620.5138916542024 17.219 0.2349 1301 +1303 3 71.76466166889831 -621.220045678278 16.7239 0.2346 1302 +1304 3 71.93130688605889 -622.2635821183871 16.2401 0.2343 1303 +1305 3 72.385701510028 -623.2774482961529 15.768 0.2339 1304 +1306 3 73.36805595235454 -624.3748609680428 15.3418 0.2336 1305 +1307 3 74.35192353996892 -624.087624105956 14.9426 0.2333 1306 +1308 3 75.2900049221125 -625.6225226809022 14.5515 0.233 1307 +1309 3 75.83500399155197 -627.2022837727045 14.1523 0.2327 1308 +1310 3 75.95416716061811 -628.7295093262012 13.7579 0.2324 1309 +1311 3 76.29298772505793 -629.9864725555868 13.312 0.2321 1310 +1312 3 76.87212930440155 -630.6127238120114 12.799 0.2318 1311 +1313 3 77.54984693063585 -631.5202558763522 12.2107 0.2314 1312 +1314 3 78.45144785610454 -632.3666079674849 11.5396 0.2311 1313 +1315 3 79.4438404287206 -632.283139944363 10.8438 0.2308 1314 +1316 3 80.43779851243725 -633.694902389028 10.1658 0.2305 1315 +1317 3 81.45660878816642 -634.4533956564978 9.5332 0.2302 1316 +1318 3 82.50062572972335 -633.5630794885333 9.0498 0.2298 1317 +1319 3 83.20194147928461 -634.3138442291837 8.8299 0.2294 1318 +1320 3 83.44648888977942 -635.6483212547196 9.5357 0.2291 1319 +1321 3 69.55048805817896 -612.2115589316301 20.2667 0.2368 1296 +1322 3 70.4423806149119 -611.1019948799536 19.1982 0.2354 1321 +1323 3 71.27481876685012 -610.6761945753005 18.6003 0.2345 1322 +1324 3 72.15544374788028 -609.2073676908082 18.0432 0.2337 1323 +1325 3 73.22085160596438 -608.820964444323 17.3868 0.2329 1324 +1326 3 74.27827666395454 -608.4564758305194 16.6316 0.232 1325 +1327 3 75.33060857106314 -609.1530021846224 16.0402 0.2312 1326 +1328 3 76.39571900290014 -609.5203390565015 15.5642 0.2304 1327 +1329 3 77.44328312301383 -608.6695112809724 14.5838 0.2296 1328 +1330 3 49.88636904920977 -564.9687697221673 32.571 0.2368 1256 +1331 3 48.82420171569724 -564.9590658080858 32.7141 0.2368 1330 +1332 3 47.76050642722495 -564.260072256934 32.8056 0.2368 1331 +1333 3 46.78358020715726 -563.6039984969412 32.8992 0.2368 1332 +1334 3 45.77806502348179 -563.5287703866311 32.9678 0.2368 1333 +1335 3 44.72545041080887 -562.9179343042222 33.0123 0.2368 1334 +1336 3 43.61444145934314 -562.3895753180543 33.0341 0.2368 1335 +1337 3 42.514907800658065 -562.4237397298123 33.0358 0.2368 1336 +1338 3 41.46389393516924 -561.9296222305572 33.0187 0.2368 1337 +1339 3 40.3983682522977 -561.8875961129522 32.9784 0.2368 1338 +1340 3 39.30568456514336 -560.8821495361377 32.9249 0.2368 1339 +1341 3 38.18305484255833 -560.3184268186642 32.8941 0.2368 1340 +1342 3 37.05571599094666 -560.9213166200935 32.8751 0.2368 1341 +1343 3 35.9252608378165 -560.4739308134808 32.837 0.2368 1342 +1344 3 34.78702510872579 -560.7605534275021 32.7729 0.2368 1343 +1345 3 33.71726440092979 -560.7357526194304 32.6712 0.2368 1344 +1346 3 33.022282352204996 -561.6050095138421 32.5153 0.2368 1345 +1347 3 32.97570057383227 -562.9414693705006 32.265 0.2368 1346 +1348 3 32.69197114162064 -564.1597206042213 31.7727 0.2368 1347 +1349 3 31.692215534472737 -564.3302717709067 31.1752 0.2368 1348 +1350 3 30.833252076682257 -563.8426103606018 30.2795 0.2364 1349 +1351 3 29.795431986956544 -563.887732720521 29.6825 0.2359 1350 +1352 3 28.73859356571767 -563.6084504841571 29.2586 0.2356 1351 +1353 3 27.664701664444408 -563.2307292385908 28.9873 0.2352 1352 +1354 3 26.57558126160267 -562.0719192879025 28.8456 0.2349 1353 +1355 3 25.453632987119775 -562.335745260882 28.8044 0.2345 1354 +1356 3 24.326508760266908 -562.5109050984541 28.8389 0.2342 1355 +1357 3 23.25899019358065 -563.7913071420958 28.9218 0.2338 1356 +1358 3 22.24641021280952 -564.1641691862405 29.0511 0.2335 1357 +1359 3 21.19440595483927 -564.4132977703919 29.2527 0.2331 1358 +1360 3 20.086492470032532 -564.9918268312281 29.4958 0.2328 1359 +1361 3 18.982407152837027 -564.8942876849877 29.8001 0.2324 1360 +1362 3 17.865623300613812 -566.0594486857786 30.2184 0.232 1361 +1363 3 16.73674156057539 -565.6079055811733 30.6606 0.2317 1362 +1364 3 15.627426149361053 -565.4324289100587 31.073 0.2313 1363 +1365 3 14.645666346744406 -566.6450634528065 31.4535 0.231 1364 +1366 3 13.877758620753347 -567.0661210069964 31.9063 0.2306 1365 +1367 3 13.548965870422851 -568.4716430908944 32.6676 0.2302 1366 +1368 3 13.016560510253658 -570.6943674736181 33.29 0.2298 1367 +1369 3 12.302122357274737 -571.5189579485977 33.9262 0.2295 1368 +1370 3 11.52367984552258 -572.0293625253985 34.7768 0.2291 1369 +1371 3 31.279795545849403 -564.9311264335206 30.9313 0.2368 1349 +1372 3 30.255689593331617 -565.6979992248903 30.1568 0.2355 1371 +1373 3 29.138745873523906 -565.8479371214938 29.6139 0.2345 1372 +1374 3 28.01207924227632 -566.3070880467524 29.1365 0.2337 1373 +1375 3 26.889193544672075 -565.572351452749 28.6653 0.2329 1374 +1376 3 25.81504916072563 -565.8790277968923 27.9836 0.232 1375 +1377 3 24.803629644383697 -565.8188531701032 27.4238 0.2312 1376 +1378 3 23.775075249277357 -565.4188470126026 26.7622 0.2304 1377 +1379 3 22.757193891131234 -565.4075377783572 25.802 0.2296 1378 +1380 3 27.25790951713125 -495.0823714251657 42.8005 0.2574 825 +1381 3 28.328978346272322 -495.56667292248994 43.0363 0.2567 1380 +1382 3 29.467372557874477 -495.4995249966322 42.9853 0.2562 1381 +1383 3 30.54260361971562 -494.78246483038953 42.8744 0.2558 1382 +1384 3 31.501478177093297 -493.67145442800097 42.7678 0.2553 1383 +1385 3 32.624241350469475 -493.6044163136313 42.8179 0.2548 1384 +1386 3 33.73135366275542 -492.92402985569686 42.978 0.2544 1385 +1387 3 34.79123159152706 -492.8547079783199 43.1267 0.254 1386 +1388 3 35.834046830211264 -493.0947797239753 43.1866 0.2535 1387 +1389 3 36.97329186932672 -492.01920662767566 43.1508 0.2531 1388 +1390 3 38.11325428516456 -492.53620817304414 43.1068 0.2527 1389 +1391 3 39.25012573297779 -491.2929468806245 43.0749 0.2523 1390 +1392 3 40.39048758388993 -491.9183914326754 43.1057 0.2518 1391 +1393 3 41.51905717699864 -492.3713674812065 43.2989 0.2514 1392 +1394 3 42.59192867568361 -491.0066008844113 43.5196 0.251 1393 +1395 3 43.6365161482361 -490.74075068232133 43.6649 0.2505 1394 +1396 3 44.73073280354265 -490.4478961159673 43.7251 0.2501 1395 +1397 3 45.78375436251805 -491.47612992463957 43.6587 0.2497 1396 +1398 3 46.91182871489141 -491.55678469311687 43.3972 0.2492 1397 +1399 3 48.03857923092677 -491.2426290821655 43.0592 0.2488 1398 +1400 3 49.11716034937301 -490.5345217981936 42.7745 0.2484 1399 +1401 3 50.03468063537165 -489.7779511065901 42.5348 0.2479 1400 +1402 3 50.957415602169895 -489.614510508515 42.3004 0.2475 1401 +1403 3 52.03728122497721 -489.75679075375473 42.0941 0.2471 1402 +1404 3 53.09750703419941 -489.5587493161254 41.918 0.2466 1403 +1405 3 54.139834330592066 -489.99245073813177 41.7508 0.2462 1404 +1406 3 55.24793372099198 -489.9870860071444 41.6094 0.2458 1405 +1407 3 56.27864907126231 -490.22450156517533 41.4498 0.2453 1406 +1408 3 57.22847526959964 -489.53937618695704 41.2454 0.2449 1407 +1409 3 58.27262465565944 -488.3690189957729 41.0382 0.2445 1408 +1410 3 59.38772938654019 -487.8648934439697 40.8724 0.2441 1409 +1411 3 60.525858998932236 -487.6523991810079 40.7523 0.2436 1410 +1412 3 61.66319935967671 -486.84554800957903 40.6731 0.2432 1411 +1413 3 62.778052211431564 -487.17599986873546 40.6305 0.2428 1412 +1414 3 63.78742690371476 -487.25758453171886 40.6333 0.2424 1413 +1415 3 64.86353892697126 -485.8658910540567 40.6543 0.2419 1414 +1416 3 65.93805502113659 -485.90673632960375 40.6476 0.2415 1415 +1417 3 67.02152015865026 -484.2517725616853 40.607 0.2411 1416 +1418 3 68.15554810791974 -484.9365719736953 40.5625 0.2407 1417 +1419 3 69.29890953084055 -485.71093494237664 40.5112 0.2402 1418 +1420 3 70.41654972120674 -484.2279247288695 40.4317 0.2398 1419 +1421 3 71.55460335080207 -484.6412682394574 40.2937 0.2394 1420 +1422 3 72.69303038944128 -483.89146173032117 40.031 0.2389 1421 +1423 3 73.68727048618574 -485.25726551524787 39.7342 0.2385 1422 +1424 3 74.81660471964786 -485.459625179226 39.3952 0.2381 1423 +1425 3 75.90783781971227 -484.4567263330011 39.0404 0.2376 1424 +1426 3 76.97709848636492 -483.76901933278475 38.64 0.2372 1425 +1427 3 78.10113243772973 -483.4182223939331 38.2399 0.2368 1426 +1428 3 78.18025416818061 -484.3714326966405 37.9201 0.2368 1427 +1429 3 78.791356685896 -485.8758666324657 37.1818 0.2368 1428 +1430 3 79.82797236192884 -486.9555751905348 36.5812 0.2368 1429 +1431 3 80.83124299544798 -486.45712874056943 36.0223 0.2368 1430 +1432 3 80.51846039811616 -486.6602084953669 35.2565 0.2368 1431 +1433 3 80.13583628482925 -488.48066904211146 35.3416 0.2359 1432 +1434 3 79.72952674809278 -490.46627940941596 35.7692 0.235 1433 +1435 3 79.38079016400098 -491.636728606406 36.2037 0.2343 1434 +1436 3 78.92742394557867 -492.53058305215603 36.881 0.2336 1435 +1437 3 79.09395452852414 -493.936059672439 37.7387 0.2328 1436 +1438 3 79.58815194091777 -495.5059668403044 38.5311 0.2322 1437 +1439 3 79.9736027196503 -495.98961387019614 39.3436 0.2315 1438 +1440 3 79.99590111535356 -497.22109767899616 40.014 0.2308 1439 +1441 3 79.53662135421172 -499.2699252308731 40.4712 0.2301 1440 +1442 3 78.67726235643401 -499.6031067587975 40.9469 0.2295 1441 +1443 3 81.62265624165538 -487.0376248986285 35.4844 0.2368 1431 +1444 3 82.73329449489744 -485.6928297698699 35.2262 0.2366 1443 +1445 3 83.81770396321342 -486.25437085804117 35.0361 0.2365 1444 +1446 3 84.9275078084496 -487.37132561011776 34.9555 0.2364 1445 +1447 3 86.03713816640311 -486.4418151257135 34.9308 0.2363 1446 +1448 3 87.1756380862559 -486.56774079993124 34.946 0.2363 1447 +1449 3 88.31045429286273 -486.0296992454355 34.9863 0.2362 1448 +1450 3 89.41362550214717 -485.855942498415 35.0504 0.2361 1449 +1451 3 90.30774427221266 -486.58519021986365 35.1464 0.236 1450 +1452 3 91.24502439284605 -487.83757355483004 35.3548 0.2359 1451 +1453 3 92.38228535545893 -487.8817991543239 35.6404 0.2358 1452 +1454 3 93.50596302750907 -487.29642128095264 35.8378 0.2357 1453 +1455 3 94.60451331321052 -486.3442377788289 35.9579 0.2357 1454 +1456 3 95.7293022864277 -486.3437314231055 36.0514 0.2356 1455 +1457 3 96.8418613357748 -487.423709671116 36.1561 0.2355 1456 +1458 3 97.96479909741817 -486.6928655274535 36.2401 0.2354 1457 +1459 3 99.09711988103116 -487.492477587633 36.2855 0.2353 1458 +1460 3 100.21111609286936 -486.6397205528185 36.2852 0.2352 1459 +1461 3 101.33792035979066 -487.6379706837281 36.3079 0.2351 1460 +1462 3 102.47767775168572 -488.33591948986077 36.3784 0.2351 1461 +1463 3 103.61164002919607 -487.41342550255615 36.3866 0.235 1462 +1464 3 104.6495631340373 -488.10493514553116 36.3474 0.2349 1463 +1465 3 105.75940531694022 -487.89132512282936 36.2891 0.2348 1464 +1466 3 106.83851120647641 -489.05559333034154 36.2037 0.2347 1465 +1467 3 107.77366389722641 -489.9934056242985 36.0497 0.2346 1466 +1468 3 108.88181393692918 -489.6024726003329 35.8081 0.2345 1467 +1469 3 110.02375120153155 -490.4436410046951 35.6504 0.2345 1468 +1470 3 111.16229186809753 -490.1684710842252 35.4648 0.2344 1469 +1471 3 112.27882284688457 -490.27632034278776 35.2794 0.2343 1470 +1472 3 113.19780681313519 -490.5562300254225 35.1025 0.2342 1471 +1473 3 114.25513606546431 -491.0140877331496 34.9286 0.2341 1472 +1474 3 115.3488272571443 -491.4524398098714 34.7197 0.234 1473 +1475 3 116.48054808608148 -490.92833940827023 34.4196 0.2339 1474 +1476 3 117.55985348893086 -491.52321260971434 34.0626 0.2338 1475 +1477 3 118.65427987959883 -492.0499266969405 33.5129 0.2338 1476 +1478 3 119.75503466127998 -490.82815890114784 33.0078 0.2337 1477 +1479 3 120.81012678569175 -490.87429659269844 32.4587 0.2336 1478 +1480 3 121.9039018621595 -489.4160435719196 31.985 0.2335 1479 +1481 3 123.02450367763066 -490.4239798131192 31.5818 0.2334 1480 +1482 3 124.15937363512343 -491.33473825395976 31.2922 0.2333 1481 +1483 3 125.25898086755865 -490.4060915165603 31.1214 0.2332 1482 +1484 3 126.28835875608604 -491.67328811196154 31.0397 0.2332 1483 +1485 3 127.33336768283934 -491.0717530387469 31.0271 0.2331 1484 +1486 3 128.38990116660295 -492.39954599864126 31.064 0.233 1485 +1487 3 129.41304275266978 -493.71302839088787 31.1419 0.2329 1486 +1488 3 130.45297524982263 -493.10375503955237 31.2628 0.2328 1487 +1489 3 131.4664048510126 -494.4844386513358 31.4465 0.2327 1488 +1490 3 132.42984087535845 -495.82674643000485 31.6999 0.2326 1489 +1491 3 132.98587066383112 -496.0211319862175 32.0412 0.2326 1490 +1492 3 133.4800533555421 -496.87163361380124 32.4624 0.2325 1491 +1493 3 134.46016324771236 -497.9561221346612 32.844 0.2324 1492 +1494 3 135.20378750204463 -497.70116768662643 33.1646 0.2323 1493 +1495 3 135.32097651488274 -499.12885037251135 33.427 0.2322 1494 +1496 3 135.3951813815441 -500.57392259280925 33.7344 0.2321 1495 +1497 3 136.1910697889072 -502.00046343987714 34.1368 0.232 1496 +1498 3 137.1944819879929 -502.2533762605881 34.4663 0.2319 1497 +1499 3 138.1865650355101 -500.4810738988264 34.7323 0.2318 1498 +1500 3 139.2998140384977 -500.88370300896776 34.9521 0.2318 1499 +1501 3 140.3995510046156 -501.8537705411162 35.1677 0.2317 1500 +1502 3 141.4653463888789 -501.2928854411191 35.4385 0.2316 1501 +1503 3 142.32928396566894 -502.84664151117283 35.6521 0.2315 1502 +1504 3 143.17331914794744 -502.8018818192853 35.8268 0.2314 1503 +1505 3 143.9900542806244 -503.95029016899906 36.0004 0.2313 1504 +1506 3 144.64074294372207 -505.53145954135715 36.143 0.2313 1505 +1507 3 145.74930303131035 -506.0860471086144 36.2208 0.2312 1506 +1508 3 146.88572508728296 -505.16861577541414 36.2426 0.2311 1507 +1509 3 147.97364107643182 -505.58456616806086 36.1928 0.231 1508 +1510 3 149.10681068695965 -505.37730782661464 36.1007 0.2309 1509 +1511 3 150.23744483800212 -506.3061714268132 36.0105 0.2308 1510 +1512 3 151.3573531955086 -505.48356068881816 35.9344 0.2307 1511 +1513 3 152.46990223559172 -505.2828316166395 35.8756 0.2306 1512 +1514 3 153.61313530990304 -506.02865892065216 35.8282 0.2306 1513 +1515 3 154.7415751693291 -505.0168105613886 35.7882 0.2305 1514 +1516 3 155.74270347430354 -504.82666615507577 35.7428 0.2304 1515 +1517 3 156.72676598760748 -503.17757095921576 35.6846 0.2303 1516 +1518 3 157.7880273279844 -503.0918008303876 35.6073 0.2302 1517 +1519 3 158.73879374925252 -502.88646268279194 35.4446 0.2301 1518 +1520 3 159.48009417909196 -502.02180165122024 35.2822 0.2301 1519 +1521 3 160.49299381802103 -500.66160473109096 35.0927 0.23 1520 +1522 3 161.52871161569365 -500.7223334295682 34.8855 0.2299 1521 +1523 3 162.61524410424803 -501.00219274869613 34.6746 0.2298 1522 +1524 3 163.72996761308315 -500.13234121118194 34.3633 0.2297 1523 +1525 3 164.8074808702107 -499.9060286884471 34.1564 0.2296 1524 +1526 3 165.9364207707801 -499.15956364691556 34.0113 0.2295 1525 +1527 3 166.93025291493382 -500.5031866098651 33.976 0.2294 1526 +1528 3 167.86714460406714 -501.59491101127355 34.0021 0.2293 1527 +1529 3 168.97290363864974 -501.1957074235044 34.0463 0.2292 1528 +1530 3 170.11503531438362 -500.9762133776547 34.0379 0.2291 1529 +1531 3 171.21737792806553 -501.197867671689 34.0178 0.2291 1530 +1532 3 172.348676006718 -501.796183893462 34.0693 0.229 1531 +1533 3 173.42973231684584 -500.842600722114 34.2157 0.2289 1532 +1534 3 79.02407563102123 -484.513042067414 38.8923 0.2364 1427 +1535 3 80.15317470663862 -484.34102628107235 39.0855 0.236 1534 +1536 3 81.12431142906127 -483.24610385053415 39.3159 0.2358 1535 +1537 3 81.62271563210854 -482.39273313467163 39.7872 0.2355 1536 +1538 3 82.32802023319722 -480.556201276795 40.3962 0.2352 1537 +1539 3 83.09686508053605 -479.384314226223 40.9108 0.2349 1538 +1540 3 83.87079556752835 -479.013858403305 41.4554 0.2347 1539 +1541 3 84.38662596711723 -478.1747876649522 41.8984 0.2344 1540 +1542 3 84.99032653191456 -477.48368914099353 42.2769 0.2341 1541 +1543 3 85.81496458680161 -475.4423073074063 42.5219 0.2339 1542 +1544 3 86.79130978685757 -475.21149246649003 42.6737 0.2336 1543 +1545 3 87.43220308287047 -474.0126947850032 42.8792 0.2333 1544 +1546 3 87.40927870646084 -472.79915849380893 43.1586 0.2331 1545 +1547 3 87.41206214998513 -471.55263656279857 43.4787 0.2328 1546 +1548 3 87.91796633070143 -469.5553828484729 43.8206 0.2325 1547 +1549 3 88.66590319061228 -468.87513898849943 44.0891 0.2323 1548 +1550 3 89.51531504566853 -468.00571486815863 44.3114 0.232 1549 +1551 3 90.36108083260889 -466.5239467354278 44.5875 0.2317 1550 +1552 3 90.72581945492395 -465.5031110266228 44.8179 0.2314 1551 +1553 3 90.48896602478167 -464.14644031212384 44.9428 0.2312 1552 +1554 3 90.49308602472806 -462.85854928950755 45.0131 0.2309 1553 +1555 3 91.07882270671027 -461.9898891596533 45.1133 0.2306 1554 +1556 3 91.15239580308969 -460.72234829874077 45.1872 0.2304 1555 +1557 3 91.33529845277309 -459.53069653407306 45.2164 0.2301 1556 +1558 3 92.13292977643421 -459.17537717054086 45.2264 0.2298 1557 +1559 3 92.65018192529504 -458.2962249513139 45.2206 0.2296 1558 +1560 3 92.92886605611834 -456.56939651323233 45.1898 0.2293 1559 +1561 3 92.66118152125867 -455.74473348077026 44.8731 0.2291 1560 +1562 3 26.135323531025513 -497.70150792709 41.6668 0.2574 824 +1563 3 26.432587901726535 -498.4901433421521 41.8314 0.2574 1562 +1564 3 26.770706502663355 -499.5409483939693 41.9294 0.2574 1563 +1565 3 26.761501555600084 -500.90035808173684 42.1134 0.2574 1564 +1566 3 26.524691560163486 -502.2914239898814 42.3486 0.2574 1565 +1567 3 26.447161255026828 -503.8035702284384 42.5684 0.2574 1566 +1568 3 26.360224595025144 -505.33442212938894 42.7644 0.2574 1567 +1569 3 26.11850624133743 -507.08280636571607 42.9587 0.2574 1568 +1570 3 25.95288602636691 -508.6875614247765 43.1953 0.2574 1569 +1571 3 26.05721392577265 -509.87777915886716 43.4566 0.2574 1570 +1572 3 26.211562434341413 -510.9876695254964 43.7046 0.2574 1571 +1573 3 26.16637878825653 -512.417145443954 43.9253 0.2574 1572 +1574 3 25.951038083505253 -514.0994476225128 44.072 0.2574 1573 +1575 3 25.976897354474644 -515.4002778988671 44.2016 0.2574 1574 +1576 3 26.339075480441384 -516.0947179095373 44.3887 0.2574 1575 +1577 3 26.426682248391657 -517.2412582131549 44.5626 0.2574 1576 +1578 3 26.02055170956745 -519.1323979540298 44.6894 0.2574 1577 +1579 3 25.432277159053253 -520.7446214617553 44.7776 0.2574 1578 +1580 3 25.413221283377474 -522.0511157110428 44.8316 0.2574 1579 +1581 3 25.70233918030234 -523.4046668771383 44.8843 0.2574 1580 +1582 3 25.873667595155244 -524.5161668505201 44.9193 0.2574 1581 +1583 3 26.16158107838711 -525.4382220569505 44.8529 0.2574 1582 +1584 3 26.853506277065613 -526.33793765907 44.7084 0.2574 1583 +1585 3 27.865513436447152 -527.6301870283016 44.562 0.2574 1584 +1586 3 28.878904699970533 -528.7068635476362 44.4858 0.2574 1585 +1587 3 29.607494863865742 -528.9988241353499 44.4102 0.2574 1586 +1588 3 29.704108551606677 -530.3962958384751 44.3134 0.2574 1587 +1589 3 29.448274021490857 -531.7037948833467 44.1767 0.2574 1588 +1590 3 29.208429910498673 -533.3458147809442 43.8925 0.2574 1589 +1591 3 28.937081764203402 -535.0341428140545 43.4913 0.2574 1590 +1592 3 28.920990224452655 -536.4028055922337 43.122 0.2574 1591 +1593 3 28.46367089316635 -537.5958383270103 42.7787 0.2574 1592 +1594 3 28.11390889329393 -538.6382507485425 42.2881 0.2571 1593 +1595 3 28.320151561184545 -540.1459086030073 41.8765 0.257 1594 +1596 3 28.740320181224643 -541.4199499946736 41.5671 0.2569 1595 +1597 3 29.231674787611084 -542.051386739631 41.3305 0.2567 1596 +1598 3 29.671984061590585 -543.314527509379 41.0934 0.2566 1597 +1599 3 29.946263587271954 -544.6813948400419 40.8666 0.2564 1598 +1600 3 29.89327502604287 -546.0741847885251 40.6896 0.2563 1599 +1601 3 30.12791024581105 -547.432222519838 40.4886 0.2561 1600 +1602 3 30.459034420851804 -548.9532807900096 40.3382 0.256 1601 +1603 3 30.79363117672571 -549.8906381180987 40.2461 0.2559 1602 +1604 3 31.31821409611594 -550.8665122794373 40.2094 0.2557 1603 +1605 3 31.720706356998424 -552.1626878775495 40.2144 0.2556 1604 +1606 3 32.13130365240737 -553.454868436917 40.2525 0.2554 1605 +1607 3 32.211304734437974 -554.9194453241623 40.3749 0.2553 1606 +1608 3 31.219436613453247 -555.571964427023 40.5034 0.2551 1607 +1609 3 30.677466131819028 -557.0176682823646 40.6563 0.255 1608 +1610 3 30.407807027140755 -558.6238973879613 40.7506 0.2549 1609 +1611 3 30.997467979026283 -559.2171503037534 40.78 0.2547 1610 +1612 3 32.029869056546325 -559.9253334390003 40.7428 0.2546 1611 +1613 3 33.084536909827094 -559.8591707098087 40.6064 0.2544 1612 +1614 3 34.05838447350632 -560.6614169477107 40.3575 0.2543 1613 +1615 3 34.9510962149826 -562.1232413076127 40.0926 0.2541 1614 +1616 3 35.50925382410154 -563.3033524085573 39.8731 0.254 1615 +1617 3 35.56947534960043 -564.6245349482203 39.7312 0.2538 1616 +1618 3 35.51738247046936 -566.0481723272655 39.6427 0.2537 1617 +1619 3 35.673117492226396 -567.2715216841372 39.538 0.2536 1618 +1620 3 35.933498869595134 -568.408959349355 39.403 0.2534 1619 +1621 3 36.207822936109345 -570.0059198079242 39.2787 0.2533 1620 +1622 3 36.311031614671926 -571.5051134363382 39.1714 0.2531 1621 +1623 3 36.1679584719802 -572.8152783572708 38.9908 0.253 1622 +1624 3 36.214854078986846 -574.2493234567346 38.7307 0.2528 1623 +1625 3 36.61587463383123 -575.6457543169209 38.4885 0.2527 1624 +1626 3 37.09176558080452 -576.5545525825719 38.2318 0.2526 1625 +1627 3 37.54672802494893 -577.3219392946361 37.9266 0.2524 1626 +1628 3 37.79409531700353 -578.6587700151616 37.6015 0.2523 1627 +1629 3 37.719543660026645 -580.0232797880453 37.27 0.2521 1628 +1630 3 37.485001831730266 -581.4320247412589 36.8883 0.252 1629 +1631 3 37.341120608836775 -582.8975845694392 36.44 0.2518 1630 +1632 3 37.55801238295199 -584.0671751134254 36.0273 0.2517 1631 +1633 3 37.99560409795066 -585.7223197513438 35.7062 0.2515 1632 +1634 3 38.408020168659235 -587.1824404816299 35.425 0.2514 1633 +1635 3 38.75567175656053 -588.3501002834411 35.1523 0.2513 1634 +1636 3 39.051422981973715 -589.591231172689 34.8883 0.2511 1635 +1637 3 39.29781791659691 -591.1703653014382 34.6055 0.251 1636 +1638 3 39.827279752873025 -592.7015462471776 34.2121 0.2508 1637 +1639 3 40.80498391924051 -593.1014627835245 33.7414 0.2507 1638 +1640 3 41.784353510241054 -593.9532626242899 33.334 0.2505 1639 +1641 3 42.696213316913045 -593.9970113130835 33.0898 0.2504 1640 +1642 3 43.46141297862921 -595.6253564733997 33.0268 0.2502 1641 +1643 3 43.82483075437246 -596.7362135082149 33.0551 0.2501 1642 +1644 3 44.06613833283229 -598.0219895301507 33.1212 0.25 1643 +1645 3 44.46778727742947 -599.4071133299581 33.2256 0.2498 1644 +1646 3 44.9923701968197 -600.5928056913874 33.3418 0.2497 1645 +1647 3 45.411028773155095 -601.738424159344 33.455 0.2495 1646 +1648 3 45.71462084233266 -602.9079537792734 33.5546 0.2494 1647 +1649 3 45.66123525507574 -604.3151036401905 33.6482 0.2492 1648 +1650 3 45.45524853937677 -605.8283194948027 33.7397 0.2491 1649 +1651 3 45.61405601435604 -607.0955220089228 33.8341 0.249 1650 +1652 3 46.115877627471704 -608.0545580473163 33.934 0.2488 1651 +1653 3 46.3639647052951 -609.6039872541485 34.062 0.2487 1652 +1654 3 46.46503495040007 -610.9508223343782 34.3073 0.2485 1653 +1655 3 46.72720227603149 -612.1850585142025 34.6503 0.2484 1654 +1656 3 47.07297962123725 -613.4827914217707 34.9188 0.2482 1655 +1657 3 47.2935705218176 -615.0833611867686 35.0602 0.2481 1656 +1658 3 47.3673845656173 -616.5831340307889 35.0375 0.248 1657 +1659 3 47.27456959897964 -617.9569518201703 34.8827 0.2478 1658 +1660 3 47.490844602441534 -619.5483252382513 34.6466 0.2477 1659 +1661 3 48.19636231942079 -621.2386347661512 34.3952 0.2475 1660 +1662 3 48.93689119608338 -621.7685508558776 34.1611 0.2474 1661 +1663 3 48.85917879145127 -623.2131994679182 33.8923 0.2472 1662 +1664 3 48.67525072598725 -624.7284908330184 33.6067 0.2471 1663 +1665 3 49.52061626152165 -625.3328506193782 33.7669 0.247 1664 +1666 3 49.98216138485163 -626.6733903087932 34.4781 0.2461 1665 +1667 3 50.062952724818146 -628.1575538031481 34.8869 0.2456 1666 +1668 3 49.85385142411056 -629.4178352385405 35.2106 0.2451 1667 +1669 3 49.85685799278938 -630.831460614905 35.4808 0.2447 1668 +1670 3 50.07798898868968 -632.3001966316695 35.6908 0.2442 1669 +1671 3 50.0748092116742 -633.6882029697572 35.7832 0.2437 1670 +1672 3 49.98319865872947 -635.1794548922795 35.7904 0.2433 1671 +1673 3 50.065605466562864 -636.4770077446872 35.7549 0.2429 1672 +1674 3 50.205171071283885 -637.7880704365305 35.6894 0.2424 1673 +1675 3 49.99882807627028 -639.3190390385334 35.572 0.2419 1674 +1676 3 49.48094753765659 -640.4376688659225 35.4278 0.2415 1675 +1677 3 49.035436883681314 -641.664440528182 35.2618 0.241 1676 +1678 3 48.5852937760128 -642.9993528373215 35.0916 0.2406 1677 +1679 3 48.391062981049124 -644.5210642551197 34.9549 0.2401 1678 +1680 3 48.59473495337072 -645.7444269030111 34.8592 0.2397 1679 +1681 3 48.697985071183155 -647.1403383815743 34.799 0.2392 1680 +1682 3 48.64152703070389 -648.5650559416438 34.7631 0.2388 1681 +1683 3 48.590853491798185 -649.9898557585178 34.743 0.2384 1682 +1684 3 48.59405688065508 -651.4178973804711 34.727 0.2379 1683 +1685 3 48.83786088839702 -652.8109395298118 34.706 0.2374 1684 +1686 3 49.26315589480381 -654.3919366753884 34.6786 0.237 1685 +1687 3 49.89798387246044 -655.1721409822089 34.6441 0.2366 1686 +1688 3 50.60199154573493 -655.7756617579242 34.589 0.2361 1687 +1689 3 50.96210481199425 -657.2724627355637 34.4859 0.2356 1688 +1690 3 51.173129898573066 -658.8814135675748 34.3748 0.2352 1689 +1691 3 51.398844083936964 -660.5059042270132 34.2933 0.2347 1690 +1692 3 51.50103354988515 -662.0489670095787 34.2552 0.2343 1691 +1693 3 51.719629086299996 -663.6591063175229 34.1984 0.2338 1692 +1694 3 52.35208657423743 -665.3499526699344 34.0533 0.2334 1693 +1695 3 53.24274817668889 -664.9985245202408 33.8363 0.2329 1694 +1696 3 54.13159100384075 -666.4023233089617 33.593 0.2325 1695 +1697 3 55.06384713769761 -666.2865717564715 33.3256 0.232 1696 +1698 3 55.939009844652404 -667.4323831249176 33.0697 0.2316 1697 +1699 3 56.80050335797295 -668.9444905585567 32.8325 0.2311 1698 +1700 3 57.62480894048599 -670.0906592962754 32.6578 0.2306 1699 +1701 3 58.37896867311605 -670.2732520840239 32.587 0.2302 1700 +1702 3 58.52333721192619 -671.8192068452914 32.6474 0.2297 1701 +1703 3 58.25804947176219 -673.0262626474878 33.094 0.2292 1702 +1704 3 49.02878873529991 -624.9752301605834 33.4303 0.2411 1664 +1705 3 49.922831522568586 -625.7592081242793 33.0702 0.2368 1704 +1706 3 50.794738984269095 -626.2607428584531 32.6178 0.2368 1705 +1707 3 51.7685711347291 -626.6374636883717 32.0566 0.2368 1706 +1708 3 52.7048744882861 -628.1415104862211 31.4563 0.2368 1707 +1709 3 53.10208428933702 -629.7258086122054 30.8518 0.2368 1708 +1710 3 53.48251169681842 -631.0576589247892 30.3349 0.2368 1709 +1711 3 54.05577496952607 -631.5402622047648 29.8729 0.2368 1710 +1712 3 54.61880570081259 -632.5892083627834 29.449 0.2368 1711 +1713 3 55.079558157160136 -634.2727862420511 29.0091 0.2368 1712 +1714 3 55.23603348008687 -635.7429801123661 28.362 0.2368 1713 +1715 3 55.00161849667452 -635.8794621429231 27.4872 0.2368 1714 +1716 3 54.391211331412286 -636.3506505501489 26.1086 0.2367 1715 +1717 3 53.91614445857961 -637.7388240074354 25.6664 0.2364 1716 +1718 3 53.599394128668564 -639.5916170490842 25.3546 0.2363 1717 +1719 3 53.21951770826436 -641.2782835022559 24.8951 0.2361 1718 +1720 3 53.03063063524635 -642.7666613931492 24.3008 0.236 1719 +1721 3 52.894319862188894 -644.0732903435979 23.6793 0.2358 1720 +1722 3 52.995788849831655 -645.5086309896154 23.137 0.2357 1721 +1723 3 53.00645726436258 -646.8526877570698 22.6352 0.2355 1722 +1724 3 52.53723036049922 -647.9145752721837 22.206 0.2354 1723 +1725 3 51.81700529690037 -648.4626264254697 21.8399 0.2352 1724 +1726 3 50.85018377905958 -648.5640153914458 21.4866 0.2351 1725 +1727 3 49.9676548298799 -650.0514885594041 21.1046 0.2349 1726 +1728 3 49.33534678667256 -651.5052084426137 20.7426 0.2348 1727 +1729 3 48.72760071868507 -652.4653160794812 20.3853 0.2346 1728 +1730 3 47.983497537015026 -653.8875104666397 20.0519 0.2345 1729 +1731 3 47.076097881020516 -655.094795620055 19.7467 0.2343 1730 +1732 3 46.03545700441412 -654.8419356754129 19.4043 0.2342 1731 +1733 3 44.93583375521227 -654.9514569053156 19.0078 0.234 1732 +1734 3 43.82792537258719 -655.8757185412036 18.4293 0.2338 1733 +1735 3 42.7178552412942 -655.8141386318806 17.8004 0.2337 1734 +1736 3 41.61335437129036 -655.8359978244498 17.3069 0.2335 1735 +1737 3 40.57100415045037 -655.461234990603 16.8505 0.2334 1736 +1738 3 39.52054758131499 -656.3389775796796 16.4831 0.2332 1737 +1739 3 38.7288859603058 -656.87413868419 16.2868 0.2331 1738 +1740 3 37.72272507402715 -657.167520786461 16.2302 0.2329 1739 +1741 3 36.79197336713534 -658.9261389111628 16.3257 0.2328 1740 +1742 3 36.119212937813096 -659.5736261552254 16.5521 0.2326 1741 +1743 3 35.48985140826508 -660.5847720715312 16.7734 0.2325 1742 +1744 3 34.75259958319893 -662.9144069261087 16.9924 0.2323 1743 +1745 3 33.78061954449101 -662.988305136641 17.2838 0.2322 1744 +1746 3 32.80412678848663 -663.3817884962086 17.5189 0.232 1745 +1747 3 32.15801130044598 -664.2034841998149 17.6854 0.2319 1746 +1748 3 31.468756995521957 -666.0183830755186 17.7998 0.2317 1747 +1749 3 30.344160024389808 -665.7241498681993 17.804 0.2316 1748 +1750 3 29.244801658486587 -667.2422653861686 17.6847 0.2314 1749 +1751 3 28.212823733992344 -667.3098610956142 17.4479 0.2313 1750 +1752 3 27.29726598512211 -669.3449814438677 17.143 0.2311 1751 +1753 3 26.394455029220893 -669.6871812227675 16.8385 0.2309 1752 +1754 3 25.331011708863755 -669.2750562185752 16.5534 0.2308 1753 +1755 3 24.201397178883724 -669.7148778040904 16.264 0.2306 1754 +1756 3 23.245961966854175 -670.1915395910112 15.9227 0.2305 1755 +1757 3 22.800747732837692 -671.2980970452375 15.4957 0.2303 1756 +1758 3 22.814271265011925 -672.7352106462687 15.0253 0.2302 1757 +1759 3 22.9527542877316 -673.9866881420992 13.8252 0.2299 1758 +1760 3 23.01713494434749 -675.3227172054094 12.7413 0.2297 1759 +1761 3 23.569852635096893 -676.5088762629108 11.3779 0.2295 1760 +1762 3 24.333550456873027 -677.1140815133873 10.389 0.2294 1761 +1763 3 24.88315294708844 -677.8782986452568 9.5659 0.2292 1762 +1764 3 24.97503968353697 -679.3709900926673 8.8981 0.2291 1763 +1765 3 24.91347507955549 -680.6825833438503 7.8529 0.2289 1764 +1766 3 55.7844543920675 -635.3965571164736 27.9877 0.2368 1714 +1767 3 56.39673598998196 -636.0900090283968 27.7148 0.2365 1766 +1768 3 56.79512728027842 -637.7347278856763 27.5641 0.2364 1767 +1769 3 56.96747800932886 -639.3166025502928 27.4461 0.2362 1768 +1770 3 57.47113242589031 -640.9806073126219 27.3802 0.2361 1769 +1771 3 58.25098525777149 -642.0533740421163 27.3366 0.2359 1770 +1772 3 58.660686871082476 -643.0573239664723 27.2341 0.2358 1771 +1773 3 58.91461391787509 -644.134903666413 27.1525 0.2356 1772 +1774 3 59.14599458492568 -645.4687202733741 27.1058 0.2355 1773 +1775 3 59.597126452412375 -647.168731366486 27.0952 0.2354 1774 +1776 3 59.91118862990225 -648.8224190292876 27.1143 0.2352 1775 +1777 3 59.90974785127004 -650.2866673962869 27.1858 0.2351 1776 +1778 3 60.179662215603315 -651.7261821056686 27.3224 0.2349 1777 +1779 3 60.326801371743585 -652.7994376081706 27.4458 0.2348 1778 +1780 3 60.442709988092034 -653.9150664617069 27.5531 0.2346 1779 +1781 3 60.272771466956584 -655.5603190677163 27.6742 0.2345 1780 +1782 3 60.02433149034769 -657.3782463873988 27.8484 0.2343 1781 +1783 3 59.863041200641675 -658.9168994032397 27.9645 0.2342 1782 +1784 3 59.678831122149774 -660.1676340438094 27.9896 0.234 1783 +1785 3 60.33326206747225 -660.477586776604 27.9698 0.2339 1784 +1786 3 61.155158822599425 -661.3564942488381 27.9195 0.2337 1785 +1787 3 61.90735601810102 -662.9443625162644 27.8353 0.2336 1786 +1788 3 62.739898777869676 -664.2511035917108 27.7245 0.2334 1787 +1789 3 63.31632589981555 -665.0869846211567 27.5971 0.2333 1788 +1790 3 63.47285669013817 -666.2064896488179 27.3921 0.2331 1789 +1791 3 63.389929604706516 -667.675538626974 27.0404 0.233 1790 +1792 3 63.572617606803504 -668.7684753127585 26.6977 0.2328 1791 +1793 3 63.96556285257539 -670.4161455266194 26.4077 0.2327 1792 +1794 3 64.4020353467309 -672.1163663287273 26.1516 0.2325 1793 +1795 3 64.45792625442873 -673.5799308531596 25.8945 0.2324 1794 +1796 3 64.51273627895002 -674.9835065642449 25.6257 0.2322 1795 +1797 3 65.03656658553435 -675.3795055291521 25.3381 0.2321 1796 +1798 3 65.48492783569097 -676.2393795717035 25.0263 0.2319 1797 +1799 3 65.80869889647457 -677.8606601255439 24.6569 0.2318 1798 +1800 3 66.29131387541557 -679.4753456158261 24.2282 0.2316 1799 +1801 3 66.82859604005512 -680.9658977750004 23.8456 0.2315 1800 +1802 3 67.52377579145119 -682.6753769155828 23.505 0.2313 1801 +1803 3 68.47784379859877 -682.3121984385956 23.2133 0.2312 1802 +1804 3 69.30352117361747 -683.8421826784164 22.975 0.231 1803 +1805 3 69.96138636210648 -684.4407928900253 22.8043 0.2309 1804 +1806 3 70.87069598861036 -685.0465808127658 22.698 0.2307 1805 +1807 3 71.98676285487417 -684.8458094512546 22.6911 0.2306 1806 +1808 3 72.97753347236863 -685.4843940955749 22.7407 0.2304 1807 +1809 3 73.93352326993141 -687.0287692286255 22.7535 0.2303 1808 +1810 3 75.03421207807979 -687.2299717552185 22.7615 0.2301 1809 +1811 3 76.17506576637061 -686.9701321047487 22.7989 0.23 1810 +1812 3 77.29586739692851 -686.0843445475504 22.9073 0.2298 1811 +1813 3 78.43785702734371 -686.4382609872677 23.0317 0.2297 1812 +1814 3 79.5139756565074 -687.5354877350148 23.1595 0.2295 1813 +1815 3 80.65410955902935 -686.7299104327582 23.3285 0.2294 1814 +1816 3 81.71037575044785 -687.7130860910374 23.5171 0.2292 1815 +1817 3 82.42693649809637 -688.095530512969 23.708 0.2291 1816 +1818 3 82.64860758931658 -689.0549041433344 24.1195 0.2289 1817 +1819 3 29.978225671719354 -536.4011549501259 43.4277 0.2467 1592 +1820 3 31.071576086293163 -536.4323252393888 43.6601 0.2462 1819 +1821 3 32.175734373691604 -536.6516837995354 43.8281 0.2458 1820 +1822 3 33.29197543745972 -535.8560836438926 44.1731 0.2454 1821 +1823 3 34.32739681517355 -535.6359707522395 44.6043 0.245 1822 +1824 3 35.35436927967178 -536.6239684997217 45.0145 0.2447 1823 +1825 3 36.34122102607556 -536.7049993601646 45.4846 0.2443 1824 +1826 3 37.434208235968875 -537.035270649273 45.9592 0.2439 1825 +1827 3 38.535990842477176 -535.8425253517551 46.4335 0.2436 1826 +1828 3 39.230385438119 -537.1919719704006 46.9608 0.2432 1827 +1829 3 39.83980812427043 -538.3930169770085 47.5096 0.2428 1828 +1830 3 40.96176321744489 -538.9343292628641 48.0421 0.2424 1829 +1831 3 42.05573240327058 -538.8130262805912 48.5901 0.242 1830 +1832 3 43.01101033474061 -539.2050335685221 49.1439 0.2417 1831 +1833 3 43.97437617100801 -539.6096952625672 49.7454 0.2413 1832 +1834 3 44.98663831109862 -540.5048727021396 50.2835 0.2409 1833 +1835 3 46.073913900632064 -540.7882895946366 50.7786 0.2405 1834 +1836 3 47.06324415308487 -539.3290921004942 51.1221 0.2402 1835 +1837 3 47.978569845693485 -538.8040232600266 51.3377 0.2398 1836 +1838 3 48.996197128451506 -537.6848618743488 51.4587 0.2395 1837 +1839 3 50.12606183873253 -538.1112699431077 51.5024 0.2391 1838 +1840 3 51.2438050442143 -537.9814591590733 51.4548 0.2387 1839 +1841 3 52.22961035002123 -536.7002994239753 51.3699 0.2384 1840 +1842 3 52.99813484666544 -535.9408784848009 51.4102 0.238 1841 +1843 3 53.798049058149516 -534.0760037238322 51.6127 0.2376 1842 +1844 3 54.850141610552626 -534.3126521930099 51.8322 0.2373 1843 +1845 3 55.90303914157436 -534.2096345675711 52.0257 0.2369 1844 +1846 3 56.85607372998277 -532.8026568539963 52.1968 0.2365 1845 +1847 3 57.56891113577749 -531.8485318432215 52.3639 0.2362 1846 +1848 3 58.074039370792576 -530.6912205235024 52.5101 0.2358 1847 +1849 3 58.81048690977671 -528.995301868475 52.6039 0.2355 1848 +1850 3 59.70941663971735 -528.3115347181235 52.673 0.2351 1849 +1851 3 60.48004433373572 -527.4406876095841 52.7209 0.2347 1850 +1852 3 61.17014025612016 -525.4226269367101 52.7335 0.2344 1851 +1853 3 61.89311811478339 -524.6319248459154 52.7464 0.234 1852 +1854 3 62.40319683983596 -523.7769188313156 52.817 0.2336 1853 +1855 3 62.911183294077404 -522.9102360488403 52.9617 0.2333 1854 +1856 3 63.62810384819238 -521.88717376621 53.2182 0.2329 1855 +1857 3 64.47765946507735 -520.0136421957666 53.6698 0.2325 1856 +1858 3 65.48782551628094 -520.261243917825 54.3007 0.2321 1857 +1859 3 66.57283734831923 -519.0973909568088 55.0883 0.2318 1858 +1860 3 67.59414124154296 -519.249215929661 56.1042 0.2313 1859 +1861 3 68.66269002441791 -519.7088663602542 56.9663 0.231 1860 +1862 3 69.76119485198745 -518.7400243291257 57.6428 0.2306 1861 +1863 3 70.8207001829043 -519.7318946236586 58.1997 0.2302 1862 +1864 3 71.9357949935104 -518.9425527304834 58.737 0.2299 1863 +1865 3 73.05540693105814 -519.2659381404363 59.0766 0.2295 1864 +1866 3 74.03082121293258 -518.924634413041 59.4569 0.2292 1865 +1867 2 16.125220924918068 -490.4688022870004 38.0766 0.1144 610 +1868 2 15.755345717015665 -489.8561001668357 38.472 0.1144 1867 +1869 2 15.206092012571752 -488.7076663902323 38.8354 0.1144 1868 +1870 2 14.841827818960175 -487.13299734093266 39.1776 0.1144 1869 +1871 2 14.923996780956372 -485.8313317325655 39.5072 0.1144 1870 +1872 2 15.39036546559326 -484.94635691228063 40.0131 0.1144 1871 +1873 2 15.409440862359716 -483.9183175474408 38.1422 0.1144 1872 +1874 2 15.368872261292946 -482.51216800370895 37.8454 0.1144 1873 +1875 2 15.521274059543092 -481.36324321373843 37.7216 0.1144 1874 +1876 2 16.018837355351604 -479.40006080691313 37.518 0.1144 1875 +1877 2 16.928323078990946 -478.29767010286304 37.2669 0.1144 1876 +1878 2 17.331643544713124 -479.4714913148132 36.619 0.1144 1877 +1879 2 17.693193280927005 -481.03879416962553 36.4011 0.1144 1878 +1880 2 17.565668990498253 -482.3095493214112 36.3334 0.1144 1879 +1881 2 17.420636412261107 -483.58409982251464 36.2639 0.1144 1880 +1882 2 17.32176103949211 -484.8988503963375 36.1796 0.1144 1881 +1883 2 17.272961743281893 -486.2539896467814 36.0212 0.1144 1882 +1884 2 17.27851849212878 -487.64570966960304 35.8453 0.1144 1883 +1885 2 17.153138838323816 -488.94825596707955 35.6765 0.1144 1884 +1886 2 17.039028068283564 -490.25780407731924 35.4236 0.1144 1885 +1887 2 16.731866192732866 -491.409742703785 35.1322 0.1144 1886 +1888 2 16.18417376201619 -492.56209469520763 34.8939 0.1144 1887 +1889 2 15.63734418636048 -494.74691523234134 34.7035 0.1144 1888 +1890 2 14.77910200037935 -495.22223006557635 34.5318 0.1144 1889 +1891 2 13.97604176192289 -496.5224845593399 34.3367 0.1144 1890 +1892 2 13.066194940875913 -497.8265565891342 34.0987 0.1144 1891 +1893 2 14.062127482594216 -497.44274616079986 33.8993 0.1144 1892 +1894 2 15.189956472759533 -497.85006712903083 33.7789 0.1144 1893 +1895 2 16.333815527777208 -496.83717530449536 33.7002 0.1144 1894 +1896 2 17.46713400231542 -497.6011735913275 33.6507 0.1144 1895 +1897 2 18.481931601891425 -498.899894425578 33.6129 0.1144 1896 +1898 2 19.157384855105136 -499.3375640772112 33.6098 0.1144 1897 +1899 2 19.606557287046517 -500.0732875738845 33.6616 0.1144 1898 +1900 2 20.044237296478098 -501.67959958372757 33.7868 0.1144 1899 +1901 2 20.604985832478334 -503.2810927980659 34.0441 0.1144 1900 +1902 2 21.515267816413573 -502.8984828699959 34.4663 0.1144 1901 +1903 2 22.590669068855032 -504.0051647037107 34.8916 0.1144 1902 +1904 2 23.693839585602856 -505.02110411911275 35.3125 0.1144 1903 +1905 2 24.80550805503356 -503.97829077487376 35.8593 0.1144 1904 +1906 2 25.893148849846153 -504.7180136777971 36.5263 0.1144 1905 +1907 2 26.987136550474155 -504.0040048931972 37.0796 0.1144 1906 +1908 2 28.10082433249107 -504.7410866542816 37.508 0.1144 1907 +1909 2 29.171685835317174 -505.40042148511844 37.8865 0.1144 1908 +1910 2 30.262738641385422 -504.947758021507 38.3373 0.1144 1909 +1911 2 31.3784615399708 -504.98713846660337 38.691 0.1144 1910 +1912 2 32.40061294634053 -505.3219595907792 38.9231 0.1144 1911 +1913 2 33.353852357885444 -505.73199929104896 39.1199 0.1144 1912 +1914 2 34.22460846424238 -506.36938596888444 39.3126 0.1144 1913 +1915 2 35.10485301673093 -507.7804996782703 39.2888 0.1144 1914 +1916 2 35.902837110239886 -509.3694762073574 39.0813 0.1144 1915 +1917 2 36.509290358284645 -509.98816447515486 38.869 0.1144 1916 +1918 2 37.05525668297382 -510.873219043942 38.635 0.1144 1917 +1919 2 37.53174319266281 -512.3588571036425 38.4238 0.1144 1918 +1920 2 38.25912343223558 -513.2331163191818 38.2676 0.1144 1919 +1921 2 39.186038945729976 -513.585293260736 38.1788 0.1144 1920 +1922 2 40.21924741091507 -514.6320896626962 38.129 0.1144 1921 +1923 2 41.33925097053532 -515.3644798699811 38.0948 0.1144 1922 +1924 2 42.46308200523019 -515.1303944113524 38.0696 0.1144 1923 +1925 2 43.552514241249995 -515.0709256323111 38.0405 0.1144 1924 +1926 2 44.604153394908536 -515.6476985759723 37.9988 0.1144 1925 +1927 2 45.67791625503567 -516.6254889316116 37.9403 0.1144 1926 +1928 2 46.766463735520475 -516.6650180477334 37.8633 0.1144 1927 +1929 2 47.857097283650106 -517.0420995540558 37.7678 0.1144 1928 +1930 2 48.86216307548497 -516.9651617667836 37.5906 0.1144 1929 +1931 2 49.813836975929355 -518.2297904331591 37.324 0.1144 1930 +1932 2 49.66934268751292 -518.814049395831 37.0546 0.1144 1931 +1933 2 49.22953444384442 -519.7765101456894 36.8892 0.1144 1932 +1934 2 48.448712546071675 -521.216308271624 36.8262 0.1144 1933 +1935 2 47.55553759225057 -522.0938070968273 36.7483 0.1144 1934 +1936 2 46.56613376604753 -523.2178283266235 36.6433 0.1144 1935 +1937 2 45.582338545088774 -524.0914293865153 36.5061 0.1144 1936 +1938 2 44.92160512296677 -524.9679919991775 36.2432 0.1144 1937 +1939 2 43.95472884795177 -524.881905802092 37.5432 0.1144 1938 +1940 2 42.97322402604408 -526.4709749014032 38.2936 0.1144 1939 +1941 2 42.18336817616188 -527.1286141626896 39.1994 0.1144 1940 +1942 2 41.44334504122895 -528.1225634593047 39.9521 0.1144 1941 +1943 2 40.771606926104354 -529.8024220652698 40.0131 0.1144 1942 +1944 2 40.1315518441951 -530.4625567230365 39.5716 0.1144 1943 +1945 2 40.32397385543799 -530.1097476475061 37.3831 0.1144 1944 +1946 2 40.71948031975789 -529.3882522369836 35.952 0.1144 1945 +1947 2 41.19316378098528 -528.0032869357547 35.2929 0.1144 1946 +1948 2 41.73639173466172 -526.0952146623586 34.7365 0.1144 1947 +1949 2 42.30168764332244 -525.336525125544 34.1062 0.1144 1948 +1950 2 42.863811090532145 -524.37970721041 33.4384 0.1144 1949 +1951 2 43.43931523109325 -522.4166116280267 32.779 0.1144 1950 +1952 2 44.03704368419218 -521.0371134412203 32.1712 0.1144 1951 +1953 2 44.64140856736244 -520.3190194469123 31.6114 0.1144 1952 +1954 2 45.178848917882334 -519.2704506527105 31.103 0.1144 1953 +1955 2 45.530664158362654 -518.1004937314526 30.6793 0.1144 1954 +1956 2 45.833907162822726 -516.9919773232563 30.3106 0.1144 1955 +1957 2 46.18363013249192 -515.9052671871083 29.9373 0.1144 1956 +1958 2 46.74045370605225 -514.193221714736 29.4465 0.1144 1957 +1959 2 47.353558216668006 -512.4841148894374 28.8268 0.1144 1958 +1960 2 47.962917343475894 -511.7211557659769 28.1005 0.1144 1959 +1961 2 48.565249217350605 -510.5476787008499 27.2894 0.1144 1960 +1962 2 49.13242547717677 -508.5734011714591 26.3981 0.1144 1961 +1963 2 49.6544199905492 -507.81326760232986 25.4374 0.1144 1962 +1964 2 50.165316005856475 -507.0435211059228 24.4409 0.1144 1963 +1965 2 50.675424172274376 -506.12683658873345 23.4231 0.1144 1964 +1966 2 51.21435474363473 -505.3033218932768 22.3872 0.1144 1965 +1967 2 51.85809153819139 -504.19810716673095 21.3341 0.1144 1966 +1968 2 52.51930138447275 -502.3578120386542 20.2825 0.1144 1967 +1969 2 53.1813959862892 -501.6719385075752 19.2427 0.1144 1968 +1970 2 53.8558786927135 -500.6435100583817 18.2474 0.1144 1969 +1971 2 54.559720797817135 -498.8226252332424 17.3477 0.1144 1970 +1972 2 55.27011103855937 -498.34124763149975 16.5117 0.1144 1971 +1973 2 55.98478124779981 -497.802193490238 15.7294 0.1144 1972 +1974 2 56.70274193837814 -497.1908363381986 14.9908 0.1144 1973 +1975 2 57.464377433288455 -495.4126248653377 14.3125 0.1144 1974 +1976 2 58.2396413751197 -494.4099277130822 13.679 0.1144 1975 +1977 2 59.01824816410161 -493.6915236304503 13.0774 0.1144 1976 +1978 2 59.833268039174285 -491.6786041949036 12.4982 0.1144 1977 +1979 2 60.86700037527105 -491.95341775422054 11.9553 0.1144 1978 +1980 2 61.905858405197904 -490.16852415203545 11.4373 0.1144 1979 +1981 2 62.72461815344901 -489.81736224840495 10.9475 0.1144 1980 +1982 2 63.52363599029845 -489.42892354196624 10.4934 0.1144 1981 +1983 2 64.3240700657902 -488.57974920031836 10.0836 0.1144 1982 +1984 2 65.43213041400874 -487.5326970144417 9.8689 0.1144 1983 +1985 2 66.56145433643321 -487.1451594900625 9.8211 0.1144 1984 +1986 2 67.68435675531873 -486.6986647305227 10.0965 0.1144 1985 +1987 2 39.97612163611821 -530.7723237363083 39.5024 0.1144 1944 +1988 2 39.50935971957324 -531.918792559683 39.4397 0.1144 1987 +1989 2 39.04486597016839 -533.1187242068329 39.6642 0.1144 1988 +1990 2 38.586032499284 -534.0571427117746 40.1523 0.1144 1989 +1991 2 38.1336916966423 -535.5784172598198 40.8279 0.1144 1990 +1992 2 37.500746053629115 -537.2961387203687 41.5691 0.1144 1991 +1993 2 36.73117831893836 -538.0925834480915 42.287 0.1144 1992 +1994 2 35.94018273281208 -539.4104563687042 42.9666 0.1144 1993 +1995 2 35.14521590978245 -540.3374534493474 43.6184 0.1144 1994 +1996 2 34.35033427960259 -540.703058328566 44.2492 0.1144 1995 +1997 2 33.63309337479312 -541.7080603716191 44.8652 0.1144 1996 +1998 2 33.044856469409 -542.8134984457487 45.4692 0.1144 1997 +1999 2 32.5122721113275 -544.6478702383547 46.0639 0.1144 1998 +2000 2 31.986591475662674 -545.8123908680475 46.6525 0.1144 1999 +2001 2 31.52641293083972 -547.0618572288963 47.238 0.1144 2000 +2002 2 31.148310744902354 -548.2378442988232 47.8229 0.1144 2001 +2003 2 30.798857476624853 -549.9340317372757 48.4078 0.1144 2002 +2004 2 30.451939667832793 -551.6061796113368 48.9941 0.1144 2003 +2005 2 30.078068186164046 -552.7595363162734 49.5754 0.1144 2004 +2006 2 29.677871421371687 -554.0574007481403 50.1508 0.1144 2005 +2007 2 29.274852365972997 -555.3735092312714 50.7256 0.1144 2006 +2008 2 28.77801057244315 -556.8410886997041 51.3111 0.1144 2007 +2009 2 28.15674555990516 -558.3626220139716 51.9184 0.1144 2008 +2010 2 27.48923435492944 -558.9605464192919 52.5535 0.1144 2009 +2011 2 26.820199078102906 -559.5445161968919 53.2221 0.1144 2010 +2012 2 26.15290831028925 -560.628290889058 53.9302 0.1144 2011 +2013 2 25.48802326827836 -562.1111580541275 54.6809 0.1144 2012 +2014 2 25.27393282611491 -563.5191387644928 55.5708 0.1144 2013 +2015 2 25.498917323120367 -564.550251256408 56.6017 0.1144 2014 +2016 2 25.76862186310285 -565.5037879899081 57.8038 0.1144 2015 +2017 2 25.89603792441745 -566.5581301677176 59.4905 0.1144 2016 +2018 2 25.54593775158473 -567.996239519135 60.5629 0.1144 2017 +2019 2 25.158690394657654 -569.5960534548274 61.4527 0.1144 2018 +2020 2 24.76378188441504 -570.8574213112746 62.1886 0.1144 2019 +2021 2 24.33082430481383 -571.9686105242221 62.7939 0.1144 2020 +2022 2 23.724682085593585 -573.3300415491165 63.3021 0.1144 2021 +2023 2 23.115858236012688 -575.1150253226843 63.7476 0.1144 2022 +2024 2 22.505521241143953 -576.0675203747485 64.1735 0.1144 2023 +2025 2 21.895313979957823 -577.3026144805756 64.5772 0.1144 2024 +2026 2 21.284136770386873 -578.4258801853439 64.9496 0.1144 2025 +2027 2 20.68703739957747 -579.1769703564569 65.2506 0.1144 2026 +2028 2 20.110701561830595 -580.5546517912317 65.627 0.1144 2027 +2029 2 45.665343999536006 -525.8165446709692 35.7266 0.1144 1938 +2030 2 46.646006298662385 -526.0800548241073 35.3128 0.1144 2029 +2031 2 47.640108836744375 -526.5765285605133 34.8351 0.1144 2030 +2032 2 48.44501647553432 -527.2413983702888 34.2471 0.1144 2031 +2033 2 48.942290135269886 -528.0716609185735 33.7212 0.1144 2032 +2034 2 49.05449101294056 -529.5302740200646 33.3113 0.1144 2033 +2035 2 48.65156266102126 -530.7113135324909 32.998 0.1144 2034 +2036 2 48.58311215688884 -532.1164227811825 32.7113 0.1144 2035 +2037 2 48.923316825470444 -533.4144436017053 32.4528 0.1144 2036 +2038 2 48.83846864216014 -534.7286548757405 32.2162 0.1144 2037 +2039 2 48.57603912122261 -536.0782716045416 31.9141 0.1144 2038 +2040 2 48.1371648973188 -537.8704539458926 31.5921 0.1144 2039 +2041 2 47.518540768428196 -539.1084269736766 31.2665 0.1144 2040 +2042 2 47.21898457879716 -540.2241552772022 30.7896 0.1144 2041 +2043 2 47.33608219561934 -541.615556137979 29.9832 0.1144 2042 +2044 2 47.81197245005602 -543.1754673373398 29.3804 0.1144 2043 +2045 2 48.06326171478433 -544.1829499129635 28.8761 0.1144 2044 +2046 2 48.26874936082251 -545.2599345771662 28.3254 0.1144 2045 +2047 2 48.610108095567924 -545.9985994997842 26.9321 0.1144 2046 +2048 2 48.497568441389745 -545.1768666225855 25.6335 0.1144 2047 +2049 2 49.48492864548602 -545.407739074351 24.8178 0.1144 2048 +2050 2 50.57780493827267 -545.3948381230725 24.1178 0.1144 2049 +2051 2 51.682981041234264 -544.5281774749633 23.5766 0.1144 2050 +2052 2 52.50675915952223 -545.008949871725 23.2242 0.1144 2051 +2053 2 52.11309029905607 -546.2464435066557 23.2341 0.1144 2052 +2054 2 51.494736564093785 -547.5086148260727 23.3661 0.1144 2053 +2055 2 50.80304230357165 -549.3104261442068 23.5344 0.1144 2054 +2056 2 49.955499180581384 -549.9791249265085 23.7114 0.1144 2055 +2057 2 49.76269013488957 -551.3044680220895 23.9434 0.1144 2056 +2058 2 49.79649567378536 -552.7024934393154 24.1355 0.1144 2057 +2059 2 49.926123440534184 -554.0806841998486 24.3346 0.1144 2058 +2060 2 49.48541641318459 -555.3927936393447 24.5407 0.1144 2059 +2061 2 48.80303470246494 -556.0365647842412 24.7092 0.1144 2060 +2062 2 48.25557673705643 -556.8529456228108 24.8781 0.1144 2061 +2063 2 47.74932928119823 -558.5798687804383 25.12 0.1144 2062 +2064 2 47.24883660145954 -559.9888234547786 25.2684 0.1144 2063 +2065 2 46.725885143875026 -561.0664522150878 25.3301 0.1144 2064 +2066 2 46.07606881285934 -562.5115256900722 25.3103 0.1144 2065 +2067 2 45.438781246697104 -564.2825076701458 25.2176 0.1144 2066 +2068 2 45.00697773325965 -564.845253165637 26.0314 0.1144 2067 +2069 2 44.14431353346146 -565.6988334403464 26.269 0.1144 2068 +2070 2 43.09320805917237 -565.5966248566031 26.2441 0.1144 2069 +2071 2 41.98538286879843 -567.1124935121899 26.398 0.1144 2070 +2072 2 42.021328740783 -567.0899239072942 27.4054 0.1144 2071 +2073 2 42.700548407763634 -565.7187801314479 29.1886 0.1144 2072 +2074 2 42.51701848643264 -565.3011590435102 30.3366 0.1144 2073 +2075 2 41.63084667683023 -564.9112062267154 31.3334 0.1144 2074 +2076 2 40.66380702990653 -564.3150944363975 32.2731 0.1144 2075 +2077 2 39.712811866744225 -563.8080122727847 33.6549 0.1144 2076 +2078 2 41.12047752220078 -566.9940570811414 26.125 0.1144 2071 +2079 2 40.182193010602944 -568.3293268169374 25.6769 0.1144 2078 +2080 2 39.22713120761722 -568.4780200894779 25.0301 0.1144 2079 +2081 2 38.2299398977728 -568.7489907983858 24.1299 0.1144 2080 +2082 2 37.82664054585621 -569.6595843780082 22.9975 0.1144 2081 +2083 2 44.65370290842074 -564.1062598686751 24.8721 0.1144 2067 +2084 2 43.55095104606423 -564.1937998707006 24.4608 0.1144 2083 +2085 2 42.45314036899588 -564.934822455166 23.9634 0.1144 2084 +2086 2 41.35840834831606 -565.2440484918235 23.4154 0.1144 2085 +2087 2 40.25693378086611 -565.9487182874662 22.8672 0.1144 2086 +2088 2 39.13923062956094 -565.5613938440416 22.3615 0.1144 2087 +2089 2 38.02152196762615 -565.4039457207841 21.9057 0.1144 2088 +2090 2 37.02098029940299 -566.8078020431327 21.5268 0.1144 2089 +2091 2 36.15583128942221 -567.5533296925906 21.2365 0.1144 2090 +2092 2 35.28908394130381 -568.8755491032234 21.0108 0.1144 2091 +2093 2 34.42032479182721 -569.3410108664916 20.8325 0.1144 2092 +2094 2 33.98752158686598 -570.1581020948522 20.6728 0.1144 2093 +2095 2 34.100618839171176 -571.6533972837267 20.5094 0.1144 2094 +2096 2 33.789595560524226 -572.8113515068313 20.3637 0.1144 2095 +2097 2 32.828349820890736 -573.5038577822447 20.3035 0.1144 2096 +2098 2 31.778989548151067 -574.5943596850204 20.3139 0.1144 2097 +2099 2 30.722666984015888 -575.134333512622 20.3572 0.1144 2098 +2100 2 29.620687965777506 -576.0417402567058 20.3221 0.1144 2099 +2101 2 28.500241921997624 -576.6010251278983 20.1838 0.1144 2100 +2102 2 27.37235236225481 -576.4426296199533 20.0299 0.1144 2101 +2103 2 26.35567130993021 -575.185865880871 19.9713 0.1144 2102 +2104 2 25.36249117251334 -574.936920338163 20.0053 0.1144 2103 +2105 2 24.548038235122718 -574.0687522151392 20.159 0.1144 2104 +2106 2 24.703047681535296 -572.7949615377538 20.4597 0.1144 2105 +2107 2 24.868451253463444 -571.5836012247264 21.3147 0.1144 2106 +2108 2 50.37219921822814 -519.232540967015 37.0835 0.1144 1931 +2109 2 51.430089081278126 -520.0170960486514 36.8354 0.1144 2108 +2110 2 52.497974238316694 -518.9393839221343 36.5879 0.1144 2109 +2111 2 53.498444120603764 -519.5195870822041 36.5005 0.1144 2110 +2112 2 54.27549730223753 -519.858290732747 36.4622 0.1144 2111 +2113 2 55.01749788493821 -521.5001865411734 36.4507 0.1144 2112 +2114 2 55.75464247520044 -522.9806469018458 36.4468 0.1144 2113 +2115 2 56.46836213335178 -524.2463340152016 36.442 0.1144 2114 +2116 2 57.161274410144195 -524.3511705080307 36.435 0.1144 2115 +2117 2 57.80363760155334 -525.8271226219453 36.4252 0.1144 2116 +2118 2 58.36443919590292 -527.1176927901004 36.4118 0.1144 2117 +2119 2 58.852142223543936 -527.6802078712489 36.3924 0.1144 2118 +2120 2 59.27396464911752 -528.8611999442294 36.3661 0.1144 2119 +2121 2 59.61572931817013 -530.4704305017059 36.3314 0.1144 2120 +2122 2 60.11300607948885 -532.0938947191921 36.2782 0.1144 2121 +2123 2 60.85602897638712 -532.2143207922558 36.1967 0.1144 2122 +2124 2 61.62029461833859 -533.2781631916139 36.0942 0.1144 2123 +2125 2 62.38492135769782 -534.9144818756682 35.9778 0.1144 2124 +2126 2 63.1493245583119 -536.2672844764816 35.8557 0.1144 2125 +2127 2 63.913590200263435 -536.3082049663493 35.735 0.1144 2126 +2128 2 64.6782169396226 -537.7333044653892 35.6227 0.1144 2127 +2129 2 65.44217384997927 -538.8372486254165 35.5312 0.1144 2128 +2130 2 66.25040141147232 -539.2554901101574 35.4721 0.1144 2129 +2131 2 67.18893528703954 -540.398743329662 35.4449 0.1144 2130 +2132 2 68.21453496472188 -541.6716152580238 35.4444 0.1144 2131 +2133 2 69.23945388683865 -541.1231775959615 35.464 0.1144 2132 +2134 2 70.28539993493966 -542.3729350688157 35.5113 0.1144 2133 +2135 2 71.35689462792658 -542.2611247233685 35.593 0.1144 2134 +2136 2 72.43292255361098 -543.0161227718362 35.6947 0.1144 2135 +2137 2 73.5079805309105 -543.8963805706076 35.7994 0.1144 2136 +2138 2 74.61365127106023 -543.3866134958425 35.8462 0.1144 2137 +2139 2 75.67065707111178 -543.7399021265967 35.7972 0.1144 2138 +2140 2 76.61213435875524 -544.0725054133984 35.6891 0.1144 2139 +2141 2 77.51793996246201 -545.6352084575542 35.5494 0.1144 2140 +2142 2 78.4238831248314 -547.1280204460918 35.3979 0.1144 2141 +2143 2 79.33071104273579 -546.7736361190348 35.2531 0.1144 2142 +2144 2 80.1506483623176 -548.2562918008264 35.1456 0.1144 2143 +2145 2 80.81243242189728 -548.8092153902952 35.1014 0.1144 2144 +2146 2 81.40953788405596 -549.5547721599469 35.1134 0.1144 2145 +2147 2 82.0057062248669 -551.1599628581218 35.166 0.1144 2146 +2148 2 82.6047711225709 -552.838256050579 35.2447 0.1144 2147 +2149 2 83.2256133500186 -554.5092706760055 35.3318 0.1144 2148 +2150 2 83.85920167789865 -555.1145192333568 35.415 0.1144 2149 +2151 2 84.49309873737369 -555.9132717786487 35.4906 0.1144 2150 +2152 2 85.1282002105416 -557.4416449091748 35.5594 0.1144 2151 +2153 2 85.76281085261925 -557.9176625150759 35.6247 0.1144 2152 +2154 2 86.39728393603437 -558.9366555097176 35.6885 0.1144 2153 +2155 2 87.0318093852622 -560.2702811823553 35.754 0.1144 2154 +2156 2 87.66628246867737 -560.7804940850756 35.8221 0.1144 2155 +2157 2 88.30089311075497 -561.9339684428047 35.8932 0.1144 2156 +2158 2 89.00565580588184 -563.2533658078783 35.971 0.1144 2157 +2159 2 89.81811097006054 -564.8820768575554 36.0581 0.1144 2158 +2160 2 90.67007769958278 -565.3172690997378 36.1542 0.1144 2159 +2161 2 91.5227580117077 -566.3146123274871 36.258 0.1144 2160 +2162 2 92.37387281273197 -566.7574683363921 36.3684 0.1144 2161 +2163 2 93.2264155661944 -567.7367708261788 36.4837 0.1144 2162 +2164 2 94.07846748856647 -568.6982811529033 36.6041 0.1144 2163 +2165 2 94.92963465540348 -570.3063658901822 36.7298 0.1144 2164 +2166 2 95.78124028751813 -570.661732306721 36.8626 0.1144 2165 +2167 2 96.63329220989019 -571.8610393426159 37.0042 0.1144 2166 +2168 2 97.48570522966995 -571.9180622265907 37.1582 0.1144 2167 +2169 2 98.34279214239271 -573.2758543529313 37.3369 0.1144 2168 +2170 2 99.20347826804814 -574.1110415412958 37.5449 0.1144 2169 +2171 2 100.06270361422858 -575.3683413743955 37.7784 0.1144 2170 +2172 2 100.92130057065609 -575.3511348619004 38.0344 0.1144 2171 +2173 2 101.70703721980287 -576.8390513079313 38.3197 0.1144 2172 +2174 2 102.24733947185194 -577.6127200157025 38.638 0.1144 2173 +2175 2 102.66403551105887 -578.9439204473649 38.9858 0.1144 2174 +2176 2 103.08104028186072 -580.6073919139595 39.3574 0.1144 2175 +2177 2 103.49746902872252 -582.0626520879546 39.7463 0.1144 2176 +2178 2 103.91492008978183 -583.1935892574161 40.147 0.1144 2177 +2179 2 104.33077281270347 -584.5983162129356 40.5546 0.1144 2178 +2180 2 104.74665836266217 -585.9689166330397 40.9668 0.1144 2179 +2181 2 105.16251108558387 -586.9490948038399 41.3834 0.1144 2180 +2182 2 105.5783114426928 -587.9393117445551 41.8062 0.1144 2181 +2183 2 105.99461045587191 -589.0571457419967 42.2372 0.1144 2182 +2184 2 106.41022871348551 -590.7039550410666 42.6798 0.1144 2183 +2185 2 106.84073460657216 -592.3543652348449 43.1393 0.1144 2184 +2186 2 107.30067657367145 -594.0125709310704 43.6234 0.1144 2185 +2187 2 107.77132001280813 -595.0691566900443 44.1406 0.1144 2186 +2188 2 108.2402158413488 -596.2192417549956 44.6978 0.1144 2187 +2189 2 108.70920547495194 -597.2039938902321 45.302 0.1144 2188 +2190 2 109.16656202579962 -598.4046466349585 45.9808 0.1144 2189 +2191 2 109.57784656402893 -599.39267252825 46.8448 0.1144 2190 +2192 2 109.95536751202759 -600.5877877692369 47.8979 0.1144 2191 +2193 2 110.32681092416576 -601.7756359960141 49.0552 0.1144 2192 +2194 2 110.69327412081238 -602.7226417740992 50.2684 0.1144 2193 +2195 2 111.0594176593012 -603.9777692423819 51.4982 0.1144 2194 +2196 2 111.42747919408556 -605.4844756443265 52.7083 0.1144 2195 +2197 2 111.7982613894338 -607.005502340111 53.8698 0.1144 2196 +2198 2 112.4977409321925 -607.8249222291502 54.8355 0.1144 2197 +2199 2 113.33802082807335 -608.8407408909962 55.6007 0.1144 2198 +2200 2 114.19967861862366 -609.5443616480646 56.2344 0.1144 2199 +2201 2 115.06654798839037 -610.9265523930877 56.7714 0.1144 2200 +2202 2 115.93806152564612 -610.5663166582141 57.2404 0.1144 2201 +2203 2 116.82537717936401 -612.082879430335 57.6744 0.1144 2202 +2204 2 117.73839144296262 -611.776432779229 58.1056 0.1144 2203 +2205 2 118.65613196531709 -613.1137418091125 58.5337 0.1144 2204 +2206 2 119.57475724320659 -614.6729119778083 58.9504 0.1144 2205 +2207 2 120.53804950572375 -614.8051793305183 59.3379 0.1144 2206 +2208 2 121.63352363307257 -615.2421325119025 59.6285 0.1144 2207 +2209 2 122.74875949468722 -614.7773257132685 59.8408 0.1144 2208 +2210 2 123.86613689134265 -615.4451413660959 59.9981 0.1144 2209 +2211 2 124.97324410144695 -616.4024839314404 60.1266 0.1144 2210 +2212 2 125.5136199272462 -617.3211173724762 60.2804 0.1144 2211 +2213 2 125.98039445205839 -618.2251404617851 60.4685 0.1144 2212 +2214 2 126.44711661105788 -619.526414120006 60.6886 0.1144 2213 +2215 2 126.53945033030048 -621.0345062325702 60.9224 0.1144 2214 +2216 2 126.33685882756482 -622.3026156130742 61.1332 0.1144 2215 +2217 2 126.11871537098301 -623.5580065909002 61.3259 0.1144 2216 +2218 2 125.9001256241437 -624.8927420423399 61.4989 0.1144 2217 +2219 2 125.68261055731469 -626.4035891818486 61.6585 0.1144 2218 +2220 2 125.46561914861307 -627.9320179908715 61.8103 0.1144 2219 +2221 2 125.24716696043637 -629.463670053554 61.9587 0.1144 2220 +2222 2 125.02857721359703 -630.9928172614882 62.1057 0.1144 2221 +2223 2 124.81012502542029 -632.543845851487 62.2516 0.1144 2222 +2224 2 124.59313361671867 -633.9633447283413 62.3946 0.1144 2223 +2225 2 124.375257452482 -635.3554458362228 62.5346 0.1144 2224 +2226 2 124.1567200714555 -636.7647869904697 62.6702 0.1144 2225 +2227 2 123.93821551746598 -638.1406237131438 62.7987 0.1144 2226 +2228 2 123.72025416037954 -639.5478967448894 62.9191 0.1144 2227 +2229 2 123.50237799614287 -640.8267207755512 63.03 0.1144 2228 +2230 2 123.35640829655804 -642.1635327348573 63.1156 0.1144 2229 +2231 2 123.24866976582707 -643.5355457927177 63.1733 0.1144 2230 +2232 2 123.1422208416389 -644.9112531281846 63.208 0.1144 2231 +2233 2 123.03511070066082 -646.2893508418426 63.2265 0.1144 2232 +2234 2 122.66979433789577 -647.3837146409815 63.2344 0.1144 2233 +2235 2 121.84761816874394 -647.758597016867 63.2358 0.1144 2234 +2236 2 121.02632675512714 -649.4243161217961 63.2358 0.1144 2235 +2237 2 120.2051729001729 -650.6112708374566 63.2358 0.1144 2236 +2238 2 12.65622241907873 -497.6679087941923 33.4471 0.1144 1892 +2239 2 11.699390791271153 -497.57336928457954 32.4786 0.1144 2238 +2240 2 10.889767003956818 -498.54281177814426 32.0449 0.1144 2239 +2241 2 10.466791803160698 -500.5253389659544 31.7503 0.1144 2240 +2242 2 10.17014378952234 -501.92142827188513 31.4121 0.1144 2241 +2243 2 9.870725851090413 -503.05378108223306 31.0545 0.1144 2242 +2244 2 9.658193408799363 -504.31394664346317 30.7115 0.1144 2243 +2245 2 9.627125939142687 -505.68510754525516 30.403 0.1144 2244 +2246 2 9.676610063984109 -507.0970925465528 30.1398 0.1144 2245 +2247 2 9.860323481861741 -508.5444383085486 29.9079 0.1144 2246 +2248 2 9.929405063739482 -509.95287059311084 29.6394 0.1144 2247 +2249 2 9.637918672551342 -511.161398917116 29.2972 0.1144 2248 +2250 2 9.323488875593306 -512.3773247881946 28.896 0.1144 2249 +2251 2 9.189678325937763 -513.7071035281135 28.4903 0.1144 2250 +2252 2 8.901626177916109 -515.264499406237 28.1347 0.1144 2251 +2253 2 8.83331702656593 -516.7358532686487 27.83 0.1144 2252 +2254 2 8.57164252748079 -518.4018978034942 27.5626 0.1144 2253 +2255 2 8.245006725410263 -520.2011503250428 27.2696 0.1144 2254 +2256 2 7.920776649142474 -521.2847256545024 26.9011 0.1144 2255 +2257 2 7.599261030272366 -522.3681382635025 26.4559 0.1144 2256 +2258 2 7.279437554602469 -523.4480246704182 25.9476 0.1144 2257 +2259 2 6.346322869219637 -523.479758800456 25.231 0.1144 2258 +2260 2 5.764547805639795 -524.4080603522676 24.5066 0.1144 2259 +2261 2 5.755345267623005 -525.7686908681712 23.9445 0.1144 2260 +2262 2 5.925862500691052 -527.0938021822337 23.4286 0.1144 2261 +2263 2 5.698928767360933 -528.4995517232602 22.8711 0.1144 2262 +2264 2 4.984208601354242 -530.418762542281 22.2505 0.1144 2263 +2265 2 4.605458113810402 -530.7677820345745 21.0406 0.1144 2264 +2266 2 4.148736736601446 -531.7820131194443 20.4067 0.1144 2265 +2267 2 4.490794031493147 -533.0945350205247 19.747 0.1144 2266 +2268 2 4.334524703991773 -534.412754023796 19.2322 0.1144 2267 +2269 2 4.367343164773544 -535.7952125805186 18.8622 0.1144 2268 +2270 2 4.554975453741852 -537.2736574024808 18.5144 0.1144 2269 +2271 2 4.511466821127973 -538.6049423862414 18.129 0.1144 2270 +2272 2 4.271043584612578 -539.8875863141078 17.7752 0.1144 2271 +2273 2 4.624611426053557 -540.9771519209444 17.2782 0.1144 2272 +2274 2 5.637179888692502 -540.9128375471273 16.7721 0.1144 2273 +2275 2 6.578968316977358 -541.7229686341811 16.3563 0.1144 2274 +2276 2 7.529296450946562 -543.1748564296773 15.797 0.1144 2275 +2277 2 7.61943798584567 -544.5817824687953 15.1013 0.1144 2276 +2278 2 7.452613357182219 -545.8281952344967 14.6033 0.1144 2277 +2279 2 7.243141056477338 -546.964137123028 14.1457 0.1144 2278 +2280 2 6.311883797812616 -547.1200363940761 13.6041 0.1144 2279 +2281 2 5.725902747932523 -548.2251806701737 13.1155 0.1144 2280 +2282 2 5.687300064523285 -549.6174571550646 12.7314 0.1144 2281 +2283 2 5.248010992325884 -551.2891822059754 12.231 0.1144 2282 +2284 2 5.521340078735033 -552.0789878119996 11.6593 0.1144 2283 +2285 2 6.0556733206687134 -553.1785940482494 11.271 0.1144 2284 +2286 2 6.679949098746299 -554.5319160902975 10.9113 0.1144 2285 +2287 2 7.143054915083884 -556.1778401766556 10.507 0.1144 2286 +2288 2 7.112075047323465 -557.5176202012535 10.1296 0.1144 2287 +2289 2 7.28584752564581 -559.0301459274554 9.7615 0.1144 2288 +2290 2 7.566228896708253 -560.6066598664811 9.4305 0.1144 2289 +2291 2 7.677278419035282 -562.0928017437619 9.1381 0.1144 2290 +2292 2 7.462516147270616 -563.2990386600882 8.7309 0.1144 2291 +2293 2 7.592501909844003 -564.792550723884 8.3383 0.1144 2292 +2294 2 8.50614456319559 -565.17777892644 7.9483 0.1144 2293 +2295 2 9.513950838458623 -565.7328394774328 7.2918 0.1144 2294 +2296 2 5.755326864637583 -523.333097257211 26.504 0.1144 2259 +2297 2 4.980161830050449 -525.1471531393853 27.1401 0.1144 2296 +2298 2 4.7230205636626685 -526.2906290700304 27.4317 0.1144 2297 +2299 2 4.678586428800598 -527.6533210647011 27.6989 0.1144 2298 +2300 2 4.560598226919417 -528.9500662125263 27.9206 0.1144 2299 +2301 2 4.385321494467924 -530.2478354450774 28.091 0.1144 2300 +2302 2 4.209055274855988 -531.6053629221466 28.2352 0.1144 2301 +2303 2 4.023349873341928 -532.9575721278587 28.3727 0.1144 2302 +2304 2 4.095724345603978 -534.3346521285371 28.4934 0.1144 2303 +2305 2 4.679363229024842 -535.7218647884814 28.5936 0.1144 2304 +2306 2 5.369778383998588 -536.5263787218915 28.67 0.1144 2305 +2307 2 5.7369360329201555 -537.3741824803689 28.7204 0.1144 2306 +2308 2 5.830923557696256 -538.7853843192377 28.7809 0.1144 2307 +2309 2 5.705540802308203 -540.1725553288528 28.95 0.1144 2308 +2310 2 5.426533911743876 -541.8576972567952 29.2916 0.1144 2309 +2311 2 5.120699980402556 -543.5615010335789 29.7508 0.1144 2310 +2312 2 4.395653467912219 -544.434260149719 30.1196 0.1144 2311 +2313 2 3.3397710855645997 -545.4662378026961 30.2098 0.1144 2312 +2314 2 2.253265629329068 -545.8225655608567 30.0773 0.1144 2313 +2315 2 1.3033096973091354 -546.7348130057082 29.8903 0.1144 2314 +2316 2 0.4832164942191035 -548.1104388492602 29.5677 0.1144 2315 +2317 2 -0.32221423395666093 -548.6774370980497 29.1698 0.1144 2316 +2318 2 -1.270753927334372 -548.9123197159782 28.8408 0.1144 2317 +2319 2 -2.3445478266843836 -550.4847472870417 28.6628 0.1144 2318 +2320 2 -3.421196843677791 -550.4510096181732 28.6068 0.1144 2319 +2321 2 17.08297293172147 -478.0994070600108 37.1546 0.1144 1877 +2322 2 17.709708298304708 -477.4426332132421 36.783 0.1144 2321 +2323 2 18.370400281177023 -476.84582914366956 36.5565 0.1144 2322 +2324 2 18.670265202402913 -475.81048573659945 36.3594 0.1144 2323 +2325 2 18.473679051993336 -474.3747601213769 36.2751 0.1144 2324 +2326 2 18.042505738950595 -472.8334725732423 36.4087 0.1144 2325 +2327 2 17.823298942511983 -471.3962450138731 36.6436 0.1144 2326 +2328 2 17.68315180322125 -469.98748340521706 36.9818 0.1144 2327 +2329 2 17.61065069885963 -468.6464164342413 37.5738 0.1144 2328 +2330 2 17.835713291077354 -467.5780597325743 38.4314 0.1144 2329 +2331 2 18.408785679805202 -466.95741876483714 39.4612 0.1144 2330 +2332 2 19.5017574764793 -466.1963173281691 40.2576 0.1144 2331 +2333 2 20.017197935699922 -466.972563782166 40.7652 0.1144 2332 +2334 2 20.635413307646118 -468.44455962870455 41.1673 0.1144 2333 +2335 2 21.234657203262433 -469.0402254133988 41.3893 0.1144 2334 +2336 2 21.79741823315732 -469.66800471313525 41.4893 0.1144 2335 +2337 2 22.282139511055437 -471.144640883585 41.5178 0.1144 2336 +2338 2 22.743335848613956 -472.6945509508565 41.5243 0.1144 2337 +2339 2 23.250283848096316 -474.2529441672287 41.5307 0.1144 2338 +2340 2 23.77839171413243 -475.81416694265033 41.54 0.1144 2339 +2341 2 24.358969763430572 -476.5198697054038 41.5537 0.1144 2340 +2342 2 24.919325067522735 -476.9796516722922 41.5722 0.1144 2341 +2343 2 25.460702692118677 -478.56018724634424 41.5954 0.1144 2342 +2344 2 25.986851122609472 -480.17894792092426 41.6231 0.1144 2343 +2345 2 26.34595369377082 -480.7984997282926 41.6856 0.1144 2344 +2346 2 26.65012178688852 -481.5308441080175 41.7785 0.1144 2345 +2347 2 26.924137121807817 -482.8380398402221 41.86 0.1144 2346 +2348 2 27.047971774770485 -484.3026442146529 41.8648 0.1144 2347 +2349 2 27.300824141552834 -485.8252947439285 41.8768 0.1144 2348 +2350 2 27.889694835502446 -487.44627981224625 41.9384 0.1144 2349 +2351 2 28.59182826608146 -489.0645933392562 41.9978 0.1144 2350 +2352 2 29.704551592658127 -488.63844745540837 42.0515 0.1144 2351 +2353 2 30.75511938067381 -488.2873982624034 42.1044 0.1144 2352 +2354 2 31.856833604602812 -487.57549903270353 42.1579 0.1144 2353 +2355 2 32.07800405627502 -486.82888728381926 41.995 0.1144 2354 +2356 2 32.324751889683824 -485.6392980086697 41.799 0.1144 2355 +2357 2 32.55287772507069 -484.43514003570573 41.5834 0.1144 2356 +2358 2 32.663604208710694 -483.1457569436092 41.305 0.1144 2357 +2359 2 32.39868408801497 -481.63960246008094 41.0402 0.1144 2358 +2360 2 31.860164682645397 -480.2380458875406 40.8038 0.1144 2359 +2361 2 31.232721953746488 -480.3021321622076 40.5863 0.1144 2360 +2362 2 30.631209890989947 -478.825634659815 40.3603 0.1144 2361 +2363 2 30.062967580486898 -477.23829424170384 40.0546 0.1144 2362 +2364 2 29.18805234301307 -477.82479178719666 39.615 0.1144 2363 +2365 2 28.100548100574702 -476.6933257137687 39.2104 0.1144 2364 +2366 2 27.13948566753116 -475.3264998230809 38.8564 0.1144 2365 +2367 2 26.364844414866354 -474.8849192756209 38.5532 0.1144 2366 +2368 2 25.75607063386864 -474.21394024853777 38.3253 0.1144 2367 +2369 2 25.29037078906671 -472.6748395535145 38.1741 0.1144 2368 +2370 2 25.04629638739646 -471.2388627910242 38.0724 0.1144 2369 +2371 2 24.906239951585075 -469.8507994394529 37.9893 0.1144 2370 +2372 2 24.8654454974229 -468.51423983739903 37.9056 0.1144 2371 +2373 2 24.681911077457514 -467.4465864996396 37.8056 0.1144 2372 +2374 2 24.413019027321837 -466.6202249700199 37.6748 0.1144 2373 +2375 2 24.11005534789712 -465.8500936152701 37.5029 0.1144 2374 +2376 2 23.607872637373763 -464.4184737347776 37.1986 0.1144 2375 +2377 2 23.16262527968918 -462.8919567589043 36.8021 0.1144 2376 +2378 2 23.22425966330129 -461.6364015731701 36.3353 0.1144 2377 +2379 2 23.191135572507637 -460.3166521033139 35.7246 0.1144 2378 +2380 2 22.810438463634597 -458.83656559629463 35.0549 0.1144 2379 +2381 2 22.54855866166067 -457.40095978080114 34.4047 0.1144 2380 +2382 2 22.95170194011236 -456.49174807284044 33.7588 0.1144 2381 +2383 2 22.749954167252504 -455.0741670267856 33.1635 0.1144 2382 +2384 2 22.533820516572803 -453.6598244327663 32.5248 0.1144 2383 +2385 2 21.990888999975873 -452.3253918238594 31.9589 0.1144 2384 +2386 2 21.47797509196121 -451.29474584020767 31.5328 0.1144 2385 +2387 2 21.203924520958395 -450.4015728686528 31.1144 0.1144 2386 +2388 2 21.2034527192284 -449.09968553165146 30.767 0.1144 2387 +2389 2 20.911620364905843 -448.20510438206935 30.5343 0.1144 2388 +2390 2 20.57657731877447 -446.81887348103976 30.3895 0.1144 2389 +2391 2 20.394373944601597 -445.4039538514072 30.2991 0.1144 2390 +2392 2 20.214364471282153 -444.09729944190866 30.2408 0.1144 2391 +2393 2 19.858158457013886 -442.85296554034613 30.2061 0.1144 2392 +2394 2 19.63804977531114 -441.5401601410594 30.1717 0.1144 2393 +2395 2 19.7508263979758 -440.31160220836466 30.1249 0.1144 2394 +2396 2 19.864540141988222 -439.009493004295 30.0658 0.1144 2395 +2397 2 19.977531691185426 -437.70277949687346 29.9818 0.1144 2396 +2398 2 19.89379073597644 -436.413166271759 29.8189 0.1144 2397 +2399 2 19.51398930920142 -435.2131540129534 29.6038 0.1144 2398 +2400 2 18.75663118378614 -434.95845745855786 29.4479 0.1144 2399 +2401 2 18.36082771878785 -433.4452000256738 29.3432 0.1144 2400 +2402 2 17.787781781659127 -431.90884680220177 29.2838 0.1144 2401 +2403 2 16.988329083695106 -430.69072608283795 29.2656 0.1144 2402 +2404 2 16.040303660413155 -430.1544091584648 29.2849 0.1144 2403 +2405 2 15.21032339244869 -429.6925040160634 29.3468 0.1144 2404 +2406 2 14.898893581089872 -428.52835697115853 29.4353 0.1144 2405 +2407 2 14.745117994878154 -427.28109387186515 29.4949 0.1144 2406 +2408 2 14.637537951801253 -426.02190002766696 29.5456 0.1144 2407 +2409 2 14.605115824510705 -424.73514132339074 29.6111 0.1144 2408 +2410 2 14.682922034205284 -423.4122820473774 29.6554 0.1144 2409 +2411 2 14.838330915692211 -422.0989640891074 29.6806 0.1144 2410 +2412 2 14.803911015189687 -420.82510869463204 29.6926 0.1144 2411 +2413 2 14.489711279037259 -419.5698727338405 29.6974 0.1144 2412 +2414 2 14.090167940860592 -418.30145165715174 29.692 0.1144 2413 +2415 2 13.723673917775397 -417.3006827049358 29.6772 0.1144 2414 +2416 2 13.464623586199114 -416.1737118036726 29.6565 0.1144 2415 +2417 2 13.220813375291002 -414.72251482712096 29.6285 0.1144 2416 +2418 2 13.0138892592982 -413.28883496327916 29.5918 0.1144 2417 +2419 2 12.903773756735916 -411.90862493739496 29.5338 0.1144 2418 +2420 2 12.75018027001958 -410.5044738761146 29.4395 0.1144 2419 +2421 2 12.42538379345535 -409.02773257257206 29.3314 0.1144 2420 +2422 2 11.95447547102005 -407.7536675606593 29.2443 0.1144 2421 +2423 2 11.41963736984993 -406.9889763289591 29.174 0.1144 2422 +2424 2 10.880219180799337 -405.56743390358633 29.1175 0.1144 2423 +2425 2 10.352557605020632 -404.61937238663916 29.071 0.1144 2424 +2426 2 9.818571432348506 -403.84212126191727 29.0293 0.1144 2425 +2427 2 9.388872926926972 -402.94193433210427 28.9722 0.1144 2426 +2428 2 9.366612868890325 -401.6664978698226 28.8705 0.1144 2427 +2429 2 9.523493456415348 -400.32385431532197 28.7504 0.1144 2428 +2430 2 9.41548115122712 -399.13582349339555 28.6476 0.1144 2429 +2431 2 9.126363254302262 -397.7224595193254 28.5608 0.1144 2430 +2432 2 8.926789150983574 -396.3237168559756 28.4864 0.1144 2431 +2433 2 8.84113019947906 -394.9851327808054 28.4029 0.1144 2432 +2434 2 8.737788685650699 -393.65829253619086 28.2918 0.1144 2433 +2435 2 8.78574225652914 -392.40213077353206 28.1772 0.1144 2434 +2436 2 8.882032905583031 -391.19859048605144 28.0784 0.1144 2435 +2437 2 8.549719037532007 -389.9234359938548 27.9951 0.1144 2436 +2438 2 7.996041602761139 -388.8366519642851 27.922 0.1144 2437 +2439 2 7.53083258904946 -387.3599706968833 27.8503 0.1144 2438 +2440 2 7.026293416952996 -385.82115639159804 27.7695 0.1144 2439 +2441 2 6.4307011000821745 -385.15218949902646 27.6615 0.1144 2440 +2442 2 6.238944223543896 -384.14783251190795 27.4887 0.1144 2441 +2443 2 6.061200508318187 -382.96586509073194 27.2432 0.1144 2442 +2444 2 6.190428561046659 -381.6772639779018 26.9026 0.1144 2443 +2445 2 6.8236682149722085 -379.811304559194 26.6077 0.1144 2444 +2446 2 7.584530865764393 -379.352822679313 26.3275 0.1144 2445 +2447 2 8.23555471205615 -378.5220152644547 26.091 0.1144 2446 +2448 2 8.263332392911636 -377.27301549273045 25.9245 0.1144 2447 +2449 2 8.569113958440234 -376.095800824926 25.8157 0.1144 2448 +2450 2 8.39365243850083 -374.8208253865052 25.7457 0.1144 2449 +2451 2 7.733213452859765 -373.61282639325947 25.6875 0.1144 2450 +2452 2 6.959365559714051 -372.11930099625846 25.6315 0.1144 2451 +2453 2 6.563565196298818 -371.0404548907237 25.5686 0.1144 2452 +2454 2 6.7252634385956185 -369.5059403676801 25.4775 0.1144 2453 +2455 2 7.249869394250204 -368.73223802541344 25.2872 0.1144 2454 +2456 2 6.969094098743014 -367.2859075371724 25.0428 0.1144 2455 +2457 2 6.473638521770482 -366.3106630619264 24.876 0.1144 2456 +2458 2 5.941303053048806 -365.934744751224 24.7576 0.1144 2457 +2459 2 5.327044889859813 -364.44513310483995 24.6239 0.1144 2458 +2460 2 4.953879200619639 -363.04391581536413 24.371 0.1144 2459 +2461 2 4.780233354396842 -361.711690502039 24.0503 0.1144 2460 +2462 2 4.374988298449978 -361.02512752039576 23.784 0.1144 2461 +2463 2 3.937631741296059 -360.59278075726553 23.5345 0.1144 2462 +2464 2 3.9570692297803873 -359.2632633518427 23.2407 0.1144 2463 +2465 2 4.147771283978422 -357.64963075945417 23.0065 0.1144 2464 +2466 2 4.090951867145577 -356.47599594780854 22.8107 0.1144 2465 +2467 2 3.879888442900125 -355.5671318399664 22.6803 0.1144 2466 +2468 2 3.8500017750950164 -354.30741741453625 22.6038 0.1144 2467 +2469 2 3.956900091123714 -352.8097575477022 22.6022 0.1144 2468 +2470 2 4.121172130572596 -351.202529821818 22.6284 0.1144 2469 +2471 2 4.0801572392483365 -349.96628184137614 22.6144 0.1144 2470 +2472 2 4.007908706549259 -348.74157051053527 22.6055 0.1144 2471 +2473 2 3.9060803380087776 -347.57481032931895 22.5849 0.1144 2472 +2474 2 3.618348954272186 -346.5093941826236 22.4881 0.1144 2473 +2475 2 3.1036515070414907 -344.97109678573304 22.3854 0.1144 2474 +2476 2 2.6745673632266787 -343.4455675480831 22.3392 0.1144 2475 +2477 2 2.466973418231319 -342.00495153947816 22.3195 0.1144 2476 +2478 2 2.5509283284901443 -340.75665009375064 22.2873 0.1144 2477 +2479 2 2.4874163216534484 -339.40395469650025 22.2265 0.1144 2478 +2480 2 2.0781117343703173 -337.89098689189615 22.1945 0.1144 2479 +2481 2 1.5202066969138315 -336.34242261834225 22.2008 0.1144 2480 +2482 2 1.1639592433957873 -334.8469163041895 22.2114 0.1144 2481 +2483 2 1.6339004223983764 -334.0416628990394 22.2117 0.1144 2482 +2484 2 2.020471149316336 -333.07884031711313 22.1446 0.1144 2483 +2485 2 1.4911181228740702 -331.56672918558723 22.0735 0.1144 2484 +2486 2 0.6212108434320811 -331.17299324685183 22.0143 0.1144 2485 +2487 2 -0.039371904037729166 -330.5126263691738 21.9672 0.1144 2486 +2488 2 -0.47219592103091657 -328.98971511813625 21.9725 0.1144 2487 +2489 2 -0.9352665012849286 -327.45695154580875 21.9922 0.1144 2488 +2490 2 -1.5470251336086278 -325.91307318544443 21.9685 0.1144 2489 +2491 2 -2.105506195005198 -324.3723497601184 21.9486 0.1144 2490 +2492 2 -1.9492289655127308 -323.4213108108016 21.9313 0.1144 2491 +2493 2 -1.7959616190665386 -322.2266328582066 21.9172 0.1144 2492 +2494 2 -1.8958305520616534 -320.84938346063734 21.907 0.1144 2493 +2495 2 -1.7866375511318537 -321.09292896174037 22.0968 0.1144 2494 +2496 2 -1.2725462617431305 -322.5085612348225 23.1794 0.1144 2495 +2497 2 -0.3335962298203512 -323.7919533327134 23.7511 0.1144 2496 +2498 2 0.7789908461557431 -322.97801914651046 24.2962 0.1144 2497 +2499 2 1.8575258139335276 -323.70807240207995 24.9749 0.1144 2498 +2500 2 1.6775005018261453 -324.2932998610024 26.4169 0.1144 2499 +2501 2 1.3033808581400166 -325.1215937425064 27.3603 0.1144 2500 +2502 2 0.4610599271774447 -326.5599204277323 28.3276 0.1144 2501 +2503 2 -0.6385383969784044 -326.5332485872269 29.078 0.1144 2502 +2504 2 -1.7536455192206901 -325.7864645443769 29.6918 0.1144 2503 +2505 2 -2.827514105283626 -326.34111271667103 30.6006 0.1144 2504 +2506 2 -3.553494726527866 -326.5811363874319 31.3698 0.1144 2505 +2507 2 -3.160065545368454 -328.03750843257257 32.0634 0.1144 2506 +2508 2 -2.5181633648994293 -328.3508496816594 32.655 0.1144 2507 +2509 2 -1.6941021502841238 -329.0013685027854 33.1794 0.1144 2508 +2510 2 -0.614454164829418 -330.0397588775362 33.6935 0.1144 2509 +2511 2 0.4758518231512028 -330.4520455231716 34.2289 0.1144 2510 +2512 2 1.4272929747973464 -330.3806486949288 34.634 0.1144 2511 +2513 2 2.3334042085160362 -331.80489315805426 34.8788 0.1144 2512 +2514 2 3.3391367277703594 -333.12590258057025 35.0134 0.1144 2513 +2515 2 4.434176183961263 -332.30761477183756 35.0507 0.1144 2514 +2516 2 5.567019933165042 -333.15682559615345 35.0078 0.1144 2515 +2517 2 6.6978330821197645 -332.4314333544673 34.8793 0.1144 2516 +2518 2 7.72153527890746 -333.53883988066724 34.6486 0.1144 2517 +2519 2 8.559418659038627 -335.00650924989833 34.3689 0.1144 2518 +2520 2 9.292109793519877 -335.2649399317475 34.1166 0.1144 2519 +2521 2 10.036248809678199 -336.18912592455 33.9251 0.1144 2520 +2522 2 10.774639252883112 -337.6348748610276 33.7971 0.1144 2521 +2523 2 11.487868079944121 -337.4621575285245 33.7277 0.1144 2522 +2524 2 12.11690914698076 -338.85319613453856 33.7056 0.1144 2523 +2525 2 12.473280131015251 -340.3320177141917 33.7126 0.1144 2524 +2526 2 12.700612193292507 -341.7759159259573 33.7338 0.1144 2525 +2527 2 12.986119950721644 -343.2471566212605 33.7655 0.1144 2526 +2528 2 13.376130301933756 -344.7381921969737 33.8103 0.1144 2527 +2529 2 13.892299455202625 -346.2583292459598 33.8733 0.1144 2528 +2530 2 14.527579926282861 -346.7844339089845 33.9598 0.1144 2529 +2531 2 15.186236065244437 -347.4190715102226 34.0724 0.1144 2530 +2532 2 15.943289253184432 -348.929815072384 34.2502 0.1144 2531 +2533 2 16.830299276890436 -348.57459865081864 34.522 0.1144 2532 +2534 2 17.75227050351358 -349.84089871464965 34.8704 0.1144 2533 +2535 2 18.69263408094345 -351.1913313230838 35.2531 0.1144 2534 +2536 2 19.689988762696572 -351.6951139609806 35.5989 0.1144 2535 +2537 2 20.722298444200547 -351.83289664190033 35.8708 0.1144 2536 +2538 2 21.8256479588607 -351.69750950163734 36.1679 0.1144 2537 +2539 2 22.77572542079855 -351.0543624151138 36.4188 0.1144 2538 +2540 2 23.68405909655769 -350.9051307305363 36.6948 0.1144 2539 +2541 2 24.612401976063587 -350.66754689297835 37.051 0.1144 2540 +2542 2 25.572713003395883 -348.88076635460203 37.4536 0.1144 2541 +2543 2 26.540327880755676 -348.8481673983849 37.8834 0.1144 2542 +2544 2 27.49871229957966 -346.9605981240443 38.3328 0.1144 2543 +2545 2 28.391943413333244 -346.782525789538 38.843 0.1144 2544 +2546 2 29.4397854386034 -347.12695124338205 39.5018 0.1144 2545 +2547 2 30.56293332637116 -346.01887394822836 40.0254 0.1144 2546 +2548 2 31.67995743862072 -346.5687160593081 40.4438 0.1144 2547 +2549 2 32.808621843080225 -345.4390982417139 40.8887 0.1144 2548 +2550 2 33.917974899424614 -345.94485978165045 41.2605 0.1144 2549 +2551 2 34.94331329226436 -345.9910880995314 41.5999 0.1144 2550 +2552 2 35.66366808954585 -343.70024499992877 42.0686 0.1144 2551 +2553 2 -2.3541101190998006 -319.6472683537946 21.9118 0.1144 2494 +2554 2 -2.917447172934807 -319.4533164813295 21.9265 0.1144 2553 +2555 2 -3.4257785840223676 -318.46910248436956 21.9473 0.1144 2554 +2556 2 -3.8022518843295288 -316.96566285224617 21.9751 0.1144 2555 +2557 2 -4.075330097901066 -315.4993034845997 22.0119 0.1144 2556 +2558 2 -4.3718394467497745 -314.09356097778056 22.0689 0.1144 2557 +2559 2 -4.787601466191987 -313.34392268857897 22.1604 0.1144 2558 +2560 2 -5.323855806004374 -312.92816619162625 22.2709 0.1144 2559 +2561 2 -5.784608262351952 -311.4505190756873 22.3685 0.1144 2560 +2562 2 -6.118893185047838 -309.96714039282625 22.4515 0.1144 2561 +2563 2 -6.751893869888264 -308.4671721009236 22.5245 0.1144 2562 +2564 2 -7.392406435585883 -306.98513579166405 22.5919 0.1144 2563 +2565 2 -7.501986660921247 -305.63922677733575 22.6605 0.1144 2564 +2566 2 -7.732006840813966 -304.357142891692 22.7587 0.1144 2565 +2567 2 -7.815893558450199 -303.1539035749445 22.9114 0.1144 2566 +2568 2 -7.9755696832086755 -301.9365655149547 23.0838 0.1144 2567 +2569 2 -8.538639444698518 -301.61961919183216 23.2872 0.1144 2568 +2570 2 -8.950030099626488 -300.65462675976613 23.4962 0.1144 2569 +2571 2 -9.281024540984589 -299.16846646261075 23.7242 0.1144 2570 +2572 2 -9.828721346540533 -297.657373287977 23.9332 0.1144 2571 +2573 2 -10.241589218136241 -296.35881765748644 24.1065 0.1144 2572 +2574 2 -10.454967664705052 -295.30496801896163 24.3039 0.1144 2573 +2575 2 -10.675919662693104 -294.2605169011237 24.478 0.1144 2574 +2576 2 -10.766795704043702 -292.9994942542516 24.6124 0.1144 2575 +2577 2 -10.838021922545238 -291.7222142507333 24.7181 0.1144 2576 +2578 2 -10.95926875020973 -290.5138805815164 24.81 0.1144 2577 +2579 2 -10.618731005706863 -288.80755695984544 24.8911 0.1144 2578 +2580 2 -10.252392328744193 -287.27625684949385 24.9717 0.1144 2579 +2581 2 -10.692157713284061 -286.3798808618865 25.1512 0.1144 2580 +2582 2 -10.904874943062993 -285.30316285280014 25.3634 0.1144 2581 +2583 2 -11.005190166315614 -284.0615362385305 25.5328 0.1144 2582 +2584 2 -11.091733873355153 -282.7972229332244 25.658 0.1144 2583 +2585 2 -11.065175326875263 -281.3951819983037 25.7425 0.1144 2584 +2586 2 -10.822616758485367 -279.78102072199897 25.79 0.1144 2585 +2587 2 -11.046732605711668 -278.69458790899444 25.8049 0.1144 2586 +2588 2 -10.965944646274224 -277.2475641037731 25.8075 0.1144 2587 +2589 2 -10.633121805972806 -275.5887312962587 25.8097 0.1144 2588 +2590 2 -10.569484138519073 -274.3586312634706 25.8128 0.1144 2589 +2591 2 -10.264552092441974 -273.3178808412436 25.8171 0.1144 2590 +2592 2 -10.023644228002496 -272.21544393737196 25.823 0.1144 2591 +2593 2 -10.260594470094091 -270.7766106743989 25.8312 0.1144 2592 +2594 2 -10.0376710038706 -269.70925327809636 25.8542 0.1144 2593 +2595 2 -9.778356067941672 -268.62866084237515 25.8774 0.1144 2594 +2596 2 -9.667323954289898 -267.4184808578004 25.9049 0.1144 2595 +2597 2 -9.891169407587867 -266.0003987916341 25.9442 0.1144 2596 +2598 2 -10.355356107101926 -264.50020079561256 26.0149 0.1144 2597 +2599 2 -10.873123598508457 -262.9678059501489 26.112 0.1144 2598 +2600 2 -11.206386207006787 -261.7653397286263 26.1936 0.1144 2599 +2601 2 -11.39459762149832 -260.6090653036249 26.2498 0.1144 2600 +2602 2 -11.577462212461057 -259.43844286774004 26.2817 0.1144 2601 +2603 2 -11.72264193305601 -258.2500538769581 26.2893 0.1144 2602 +2604 2 -11.896197075799364 -257.215604267417 26.2739 0.1144 2603 +2605 2 -12.006312578361701 -255.97200446821 26.2403 0.1144 2604 +2606 2 -11.931009001115513 -254.49270708099283 26.1951 0.1144 2605 +2607 2 -11.878737124072146 -253.00091514604532 26.1269 0.1144 2606 +2608 2 -11.774556367024203 -251.50777931081313 26.0147 0.1144 2607 +2609 2 -11.763230116232492 -250.1438505785183 25.8738 0.1144 2608 +2610 2 -11.92351239883294 -248.93549401943744 25.7321 0.1144 2609 +2611 2 -12.113683248869776 -247.911755960814 25.5978 0.1144 2610 +2612 2 -12.302969343371544 -246.79115008042254 25.4755 0.1144 2611 +2613 2 -12.49220307206059 -245.57991826752436 25.3711 0.1144 2612 +2614 2 -12.683087504700055 -244.37879761438188 25.2896 0.1144 2613 +2615 2 -12.872949623141906 -243.05581570594856 25.2314 0.1144 2614 +2616 2 -13.0628117415838 -241.6547939066752 25.1948 0.1144 2615 +2617 2 -13.221710612579074 -240.26662269469406 25.1899 0.1144 2616 +2618 2 -13.234479815437496 -238.96988090217062 25.2617 0.1144 2617 +2619 2 -13.084555316141788 -237.81583146395093 25.4449 0.1144 2618 +2620 2 -12.818239751150685 -236.532390837924 25.6571 0.1144 2619 +2621 2 -12.39398656291138 -234.7131806752148 25.7811 0.1144 2620 +2622 2 -12.028276275701572 -233.12173398327795 25.8468 0.1144 2621 +2623 2 -11.82140480446759 -231.8363613519102 25.8997 0.1144 2622 +2624 2 -11.712729152388931 -230.62868526044448 25.8978 0.1144 2623 +2625 2 -11.65412957686901 -229.38383028666505 25.8138 0.1144 2624 +2626 2 -11.47381475248379 -228.23820813093633 25.6864 0.1144 2625 +2627 2 -11.202343075671976 -227.17650557861953 25.5406 0.1144 2626 +2628 2 -11.069070212289901 -225.9682597771759 25.384 0.1144 2627 +2629 2 -11.4193948183391 -224.50413527660558 25.2513 0.1144 2628 +2630 2 -11.978236977143368 -223.00109905088706 25.1312 0.1144 2629 +2631 2 -12.41787642212023 -221.70585430163965 24.9495 0.1144 2630 +2632 2 -12.62938923820623 -220.502255446152 24.688 0.1144 2631 +2633 2 -12.493707547438262 -219.10255313694103 24.3824 0.1144 2632 +2634 2 -12.234620873651238 -217.87448622378753 24.0584 0.1144 2633 +2635 2 -12.313681732751022 -216.54607328350758 23.7236 0.1144 2634 +2636 2 -12.659459077956726 -215.3026891308299 23.445 0.1144 2635 +2637 2 -13.016910945167695 -214.40053846935086 23.249 0.1144 2636 +2638 2 -13.343752050127051 -213.67103385996262 23.1279 0.1144 2637 +2639 2 -13.376174177417639 -212.34823449392252 23.0349 0.1144 2638 +2640 2 -13.330899827853358 -210.888261898363 23.0116 0.1144 2639 +2641 2 -13.46244559089773 -209.71626455345773 23.0575 0.1144 2640 +2642 2 -13.647184424556059 -208.589289403715 23.131 0.1144 2641 +2643 2 -13.87962884505393 -207.35085475531164 23.2082 0.1144 2642 +2644 2 -14.332144124145884 -205.8671948948438 23.2611 0.1144 2643 +2645 2 -14.854191584050682 -204.36928032915327 23.2725 0.1144 2644 +2646 2 -15.199789931344128 -202.9101093902239 23.2153 0.1144 2645 +2647 2 -15.403103907841157 -201.52328560269146 23.0948 0.1144 2646 +2648 2 -15.635239596744142 -200.10997532875479 22.9719 0.1144 2647 +2649 2 -16.006727170930276 -198.64397373835135 22.8244 0.1144 2648 +2650 2 -16.50097833420979 -197.2559913453258 22.5947 0.1144 2649 +2651 2 -16.925641849280666 -196.61939993687903 22.2984 0.1144 2650 +2652 2 -17.248657888211852 -195.8926574368894 21.9718 0.1144 2651 +2653 2 -17.62410577273839 -194.68732301210997 21.6337 0.1144 2652 +2654 2 -17.84027465950163 -193.3401274827674 21.2777 0.1144 2653 +2655 2 -17.36963151699601 -192.26405347382013 20.8882 0.1144 2654 +2656 2 -16.778090102128047 -190.06595474925984 20.5276 0.1144 2655 +2657 2 -16.523947715212344 -188.88905941035128 20.2074 0.1144 2656 +2658 2 -16.220255318911725 -187.87647919662277 19.9592 0.1144 2657 +2659 2 -15.703003170050891 -187.09524242440762 19.7959 0.1144 2658 +2660 2 -15.21957558944618 -186.2755560655795 19.6809 0.1144 2659 +2661 2 -14.961279866131747 -185.21400867416014 19.5334 0.1144 2660 +2662 2 -15.043636717198865 -183.91021084896283 19.3395 0.1144 2661 +2663 2 -15.44051486220745 -182.44416045744575 19.1546 0.1144 2662 +2664 2 -15.89297777548667 -180.9589515113513 18.9909 0.1144 2663 +2665 2 -16.353873993662972 -179.47637210991286 18.8551 0.1144 2664 +2666 2 -16.84607191633468 -177.98522867609324 18.7663 0.1144 2665 +2667 2 -17.365319725992023 -176.8252648151794 18.7361 0.1144 2666 +2668 2 -17.888519233777004 -176.62688229782697 18.7584 0.1144 2667 +2669 2 -18.293722850474126 -175.4329844874172 18.8291 0.1144 2668 +2670 2 -18.433690991852572 -174.07858673185976 18.9447 0.1144 2669 +2671 2 -18.421375253900422 -172.81106660728733 19.0888 0.1144 2670 +2672 2 -18.602500153943325 -171.4508282400928 19.3399 0.1144 2671 +2673 2 -19.1432486962498 -169.983292101267 19.8206 0.1144 2672 +2674 2 -19.455298379845033 -168.56814992339932 20.1256 0.1144 2673 +2675 2 -19.531594824780825 -167.2698646206239 19.6319 0.1144 2674 +2676 2 -9.205505358276099 -271.16129428490433 25.9259 0.1144 2593 +2677 2 -8.089641106908616 -270.8863596214441 26.1243 0.1144 2676 +2678 2 -6.97163532050034 -271.93333231763035 26.2118 0.1144 2677 +2679 2 -5.853681899904842 -272.2437975136355 26.3128 0.1144 2678 +2680 2 -4.735315016088961 -272.10576064376016 26.4241 0.1144 2679 +2681 2 -3.617852426583738 -271.85527836490496 26.54 0.1144 2680 +2682 2 -2.499899005988212 -272.27480271068276 26.6548 0.1144 2681 +2683 2 -1.3818932195800073 -273.3263322115291 26.7636 0.1144 2682 +2684 2 -0.2635787015767903 -272.7858248624693 26.8648 0.1144 2683 +2685 2 0.855576031128578 -273.49095279071713 26.9567 0.1144 2684 +2686 2 1.9981595077495626 -274.31550869649936 27.0205 0.1144 2685 +2687 2 3.1419771235174636 -273.314434573801 27.0614 0.1144 2686 +2688 2 4.285709546435527 -274.0120520796452 27.085 0.1144 2687 +2689 2 5.428995679096218 -273.5404014018679 27.096 0.1144 2688 +2690 2 6.573356491767115 -273.75002460367654 27.0992 0.1144 2689 +2691 2 7.717088914685277 -274.24684088091936 27.0987 0.1144 2690 +2692 2 8.860821337603397 -274.0760799589585 27.0978 0.1144 2691 +2693 2 10.004192663113855 -273.46209191670033 27.0965 0.1144 2692 +2694 2 11.148553475784752 -273.7930901492096 27.0947 0.1144 2693 +2695 2 12.292285898702872 -274.4511637491551 27.0923 0.1144 2694 +2696 2 13.43565722421333 -273.69313077339353 27.0888 0.1144 2695 +2697 2 14.579389647131407 -274.33196000012526 27.084 0.1144 2696 +2698 2 15.723122070049541 -273.44840780818254 27.0774 0.1144 2697 +2699 2 16.866460568522882 -274.05075704325753 27.068 0.1144 2698 +2700 2 18.01076901538113 -274.8651642961625 27.0546 0.1144 2699 +2701 2 19.154501438299192 -273.7658456941907 27.036 0.1144 2700 +2702 2 20.298233861217312 -274.14213234182375 27.0108 0.1144 2701 +2703 2 21.441657552540534 -273.4846201896307 26.9776 0.1144 2702 +2704 2 22.528163008776005 -273.83630351218414 26.9219 0.1144 2703 +2705 2 23.58773771658234 -273.5105170998231 26.8452 0.1144 2704 +2706 2 24.646322937228163 -272.4083093060059 26.7515 0.1144 2705 +2707 2 25.704384499746638 -271.90774095907744 26.6445 0.1144 2706 +2708 2 26.762032599044716 -271.5231937225022 26.5268 0.1144 2707 +2709 2 27.82000896871338 -271.22177862959336 26.4009 0.1144 2708 +2710 2 28.87801816541912 -270.8198286849813 26.269 0.1144 2709 +2711 2 29.935090240777114 -270.3111520004418 26.1306 0.1144 2710 +2712 2 30.993642634385836 -269.17098332643644 25.9854 0.1144 2711 +2713 2 32.06565609610287 -269.06109880967796 25.796 0.1144 2712 +2714 2 32.93436287976664 -268.82280151488186 25.6022 0.1144 2713 +2715 2 33.80035210444966 -267.77754308533434 25.4064 0.1144 2714 +2716 2 34.66683216022291 -266.44967278967135 25.2065 0.1144 2715 +2717 2 35.53336458180894 -266.21232941148907 25.01 0.1144 2716 +2718 2 36.3993538064919 -264.441285922529 24.8226 0.1144 2717 +2719 2 37.22077495379136 -263.75485150330627 24.6469 0.1144 2718 +2720 2 37.89763635369961 -263.18576914818954 24.4745 0.1144 2719 +2721 2 38.572050588555314 -262.6310879402425 24.1195 0.1144 2720 +2722 2 -2.5160647500064144 -324.2726329008424 22.6628 0.1144 2491 +2723 2 -3.094923623785597 -324.1897088128527 23.2539 0.1144 2722 +2724 2 -3.195814178441765 -322.8376843590632 23.3587 0.1144 2723 +2725 2 -2.972726434988651 -321.3608094412839 23.4063 0.1144 2724 +2726 2 -3.0127159105321795 -320.0755434034137 23.431 0.1144 2725 +2727 2 -3.019785804666938 -318.72231536586855 23.4333 0.1144 2726 +2728 2 -2.7422506201407657 -316.89453051356566 23.4068 0.1144 2727 +2729 2 -2.4034940058075023 -315.09320926221574 23.3233 0.1144 2728 +2730 2 -2.3714894148030368 -313.7923635557702 23.2305 0.1144 2729 +2731 2 -2.646706061832205 -312.6302702593689 23.1627 0.1144 2730 +2732 2 -2.7620386542405697 -311.4944652152358 23.1224 0.1144 2731 +2733 2 -2.532708405160733 -309.9087643131439 23.1089 0.1144 2732 +2734 2 -2.180720369934363 -308.83590626332284 23.1195 0.1144 2733 +2735 2 -1.6066143616611015 -308.11492805568685 23.1573 0.1144 2734 +2736 2 -0.9863011911534727 -307.4479940192661 23.2539 0.1144 2735 +2737 2 -0.6107023302010788 -306.48044502231494 23.351 0.1144 2736 +2738 2 -0.6256099665170893 -305.16961102130483 23.4249 0.1144 2737 +2739 2 -0.8849690296883068 -303.7172302951393 23.4743 0.1144 2738 +2740 2 -1.2491425198204809 -302.2235789243663 23.5007 0.1144 2739 +2741 2 -1.7116370761344228 -300.7016189398769 23.5045 0.1144 2740 +2742 2 -2.146996552613004 -299.179365401956 23.4877 0.1144 2741 +2743 2 -2.098916349635033 -297.9197100935822 23.4606 0.1144 2742 +2744 2 -1.7090965806290228 -296.96542470644965 23.4274 0.1144 2743 +2745 2 -1.375782909237273 -295.9495000054554 23.3719 0.1144 2744 +2746 2 -1.3709109890216524 -294.6520695680483 23.2629 0.1144 2745 +2747 2 -1.752240281767243 -293.1673630582557 23.1669 0.1144 2746 +2748 2 -2.4751256263092074 -291.6533567396653 23.0939 0.1144 2747 +2749 2 -3.2670109760202024 -291.00097329467417 23.0427 0.1144 2748 +2750 2 -4.327098036606088 -291.73612054257904 22.9975 0.1144 2749 +2751 2 32.939352813456665 -488.62335116103606 42.2786 0.1144 2354 +2752 2 33.975675171113814 -488.0112900183558 42.3366 0.1144 2751 +2753 2 34.93661166459444 -489.3803577611384 42.4264 0.1144 2752 +2754 2 35.851010032334955 -490.897893384611 42.4684 0.1144 2753 +2755 2 36.93098457165038 -490.37821121999906 42.3822 0.1144 2754 +2756 2 38.061685086988476 -490.8050749952846 42.0728 0.1144 2755 +2757 2 39.162686343840235 -489.82854290401593 41.4537 0.1144 2756 +2758 2 40.19575855842478 -490.92288595108374 40.6202 0.1144 2757 +2759 2 41.19291161959185 -492.0439607787096 39.5002 0.1144 2758 +2760 2 40.49343868274032 -491.4586609756019 38.3278 0.1144 2759 +2761 2 39.486954645957766 -491.0851968119086 37.3724 0.1144 2760 +2762 2 38.66626148819189 -492.18593359195535 36.7038 0.1144 2761 +2763 2 38.29032686332575 -494.0265016719351 35.8243 0.1144 2762 +2764 2 38.248542508412456 -495.3818890020201 34.946 0.1144 2763 +2765 2 38.250969951568074 -496.6813012928777 34.1592 0.1144 2764 +2766 2 37.700318003019326 -497.5942500599498 33.4225 0.1144 2765 +2767 2 37.727263259346856 -498.84918623566875 32.4892 0.1144 2766 +2768 2 38.08088385736349 -500.33301633456665 31.7052 0.1144 2767 +2769 2 38.444028830131955 -501.16533919094155 31.2886 0.1144 2768 +2770 2 38.75118418362213 -501.9484018118987 30.9599 0.1144 2769 +2771 2 38.945635002157175 -503.1436492418262 30.716 0.1144 2770 +2772 2 39.199997412644336 -504.6973045042804 30.5256 0.1144 2771 +2773 2 39.547607561295834 -506.2187391077312 30.3486 0.1144 2772 +2774 2 39.81257763875781 -507.68548436718027 30.1272 0.1144 2773 +2775 2 39.88468240962822 -509.08964281383817 29.7713 0.1144 2774 +2776 2 39.777158112893176 -510.40794698875413 29.2379 0.1144 2775 +2777 2 39.291664980044516 -511.4162403431687 28.7073 0.1144 2776 +2778 2 38.52082235949372 -512.4527006613234 28.348 0.1144 2777 +2779 2 37.81699015697974 -514.2441785255387 28.1529 0.1144 2778 +2780 2 37.25991091017377 -515.26716031694 28.1338 0.1144 2779 +2781 2 36.737268184184174 -516.2407495786829 28.2836 0.1144 2780 +2782 2 36.122257296372425 -518.2349686999221 28.5295 0.1144 2781 +2783 2 35.47039323537846 -519.2915249794363 28.763 0.1144 2782 +2784 2 34.82641377174896 -519.962407726525 28.9369 0.1144 2783 +2785 2 34.17486936891305 -520.8151083234317 29.0494 0.1144 2784 +2786 2 34.201033577357606 -522.1467075151625 29.1133 0.1144 2785 +2787 2 34.742813738610934 -523.601323380525 29.1267 0.1144 2786 +2788 2 35.31555404572778 -525.2447169566249 29.1169 0.1144 2787 +2789 2 35.88837954569444 -526.782262585119 29.0968 0.1144 2788 +2790 2 36.227256270066675 -527.6122020958783 29.0699 0.1144 2789 +2791 2 36.24996331089734 -528.9583389639607 29.0321 0.1144 2790 +2792 2 36.255702159239675 -530.3229502812817 28.973 0.1144 2791 +2793 2 36.26152620043172 -531.6872463190837 28.8789 0.1144 2792 +2794 2 36.385360853394396 -532.8891268142503 28.791 0.1144 2793 +2795 2 36.59437413861511 -534.1858826122987 28.7165 0.1144 2794 +2796 2 36.72961973834629 -535.5001271487166 30.497 0.1144 2795 +2797 2 36.88628877986795 -537.0190941925293 30.7961 0.1144 2796 +2798 2 37.04353694691289 -538.4399224364813 30.924 0.1144 2797 +2799 2 37.20185979396803 -539.8417439597305 31.0682 0.1144 2798 +2800 2 37.24871465426159 -541.2431599411449 31.1998 0.1144 2799 +2801 2 37.187527253443555 -542.6411261876344 31.2956 0.1144 2800 +2802 2 37.126968242378325 -544.0417706469826 31.3592 0.1144 2801 +2803 2 37.066409231313095 -545.4441935820072 31.3936 0.1144 2802 +2804 2 37.00590258606059 -546.8499916270695 31.4112 0.1144 2803 +2805 2 37.189021543964024 -533.0780762530006 28.0557 0.1144 2795 +2806 2 37.69785510861046 -531.962783116152 27.3216 0.1144 2805 +2807 2 38.234734848409495 -530.1300130817218 26.36 0.1144 2806 +2808 2 38.95646795511456 -529.1674725706356 25.2701 0.1144 2807 +2809 2 39.8330580280808 -528.6805610071682 24.221 0.1144 2808 +2810 2 40.733366759981635 -528.6086815803073 23.2109 0.1144 2809 +2811 2 41.63696597322026 -527.1217921892758 22.2401 0.1144 2810 +2812 2 42.33704956654814 -528.2608189616822 21.3112 0.1144 2811 +2813 2 43.21486066837849 -528.5720935743533 20.4178 0.1144 2812 +2814 2 44.23698434989282 -528.8487634866 19.5898 0.1144 2813 +2815 2 45.275670680351226 -529.6252020105202 18.7783 0.1144 2814 +2816 2 46.34832013203851 -529.8895600621184 17.8699 0.1144 2815 +2817 2 47.228253052155345 -528.4774278302311 16.9246 0.1144 2816 +2818 2 48.09044493566554 -528.1373785703236 15.9293 0.1144 2817 +2819 2 48.95229285149729 -526.5109306542171 14.904 0.1144 2818 +2820 2 50.02260635701234 -527.3271628280539 13.9182 0.1144 2819 +2821 2 51.09720362514537 -527.8021253864453 12.9666 0.1144 2820 +2822 2 52.176039422527 -526.9858410123537 12.0495 0.1144 2821 +2823 2 53.26345636484269 -527.3057486147108 11.1864 0.1144 2822 +2824 2 54.36110446350632 -526.6254863990689 10.3911 0.1144 2823 +2825 2 55.46183121855837 -527.3700285909244 9.6422 0.1144 2824 +2826 2 56.56647684470106 -527.3108167671168 8.9192 0.1144 2825 +2827 2 57.67403954313774 -526.7398233538722 8.2449 0.1144 2826 +2828 2 58.7812428606767 -526.1226694858237 7.628 0.1144 2827 +2829 2 59.89453941138409 -526.12798019232 7.0648 0.1144 2828 +2830 2 61.01033859453976 -525.1819001086271 6.5402 0.1144 2829 +2831 2 62.081764111443434 -525.3793354363867 5.6092 0.1144 2830 +2832 2 37.711839654110186 -498.78387205480806 31.234 0.1144 2767 +2833 2 37.75163142698244 -498.1082661633397 29.5123 0.1144 2832 +2834 2 38.66943321145096 -498.18374893159614 28.7342 0.1144 2833 +2835 2 39.57424553387755 -498.99483892608464 28.2153 0.1144 2834 +2836 2 40.418012731274345 -500.38379771662346 27.7838 0.1144 2835 +2837 2 41.103747790138854 -501.9813500352661 27.3325 0.1144 2836 +2838 2 41.849567330397676 -502.2729192442849 26.8614 0.1144 2837 +2839 2 42.72116916208633 -503.2470449012531 26.4498 0.1144 2838 +2840 2 43.48248518879545 -504.10499998856966 26.0716 0.1144 2839 +2841 2 44.024620244290304 -504.39494550652745 25.6962 0.1144 2840 +2842 2 44.31408210889366 -505.949234123678 25.3064 0.1144 2841 +2843 2 44.593925793682644 -507.5041903015365 24.8336 0.1144 2842 +2844 2 45.174546590292486 -508.816920612986 23.8126 0.1144 2843 +2845 2 46.22147691669811 -509.69436310693936 22.8038 0.1144 2844 +2846 2 47.236652322984895 -508.4695195090902 21.5651 0.1144 2845 +2847 2 48.01780328463224 -509.1887635143107 20.2329 0.1144 2846 +2848 2 47.681525087358736 -508.2040206875754 18.6731 0.1144 2847 +2849 2 48.77025766224766 -508.04655630058573 18.0603 0.1144 2848 +2850 2 49.90637408820845 -507.8926955010019 17.9156 0.1144 2849 +2851 2 51.031382504277474 -508.6146170145616 17.8437 0.1144 2850 +2852 2 52.12264134057688 -508.5156488993768 17.845 0.1144 2851 +2853 2 52.98309781901727 -509.32836698728084 18.0399 0.1144 2852 +2854 2 53.90515734007322 -509.870351446202 18.2295 0.1144 2853 +2855 2 54.36541896533044 -510.6424275661165 18.2042 0.1144 2854 +2856 2 54.48159487402411 -512.1322263652548 18.1378 0.1144 2855 +2857 2 54.51049205466878 -513.5640464923575 18.0702 0.1144 2856 +2858 2 54.93137735889459 -515.1961332091274 17.9919 0.1144 2857 +2859 2 55.236534939172785 -516.8164375259895 17.9057 0.1144 2858 +2860 2 55.52457815608733 -518.385329898902 17.8392 0.1144 2859 +2861 2 55.71546258872674 -519.82410813802 17.7978 0.1144 2860 +2862 2 55.80326307527203 -521.2450010084343 17.7231 0.1144 2861 +2863 2 55.9162751347274 -522.6611876381761 17.6085 0.1144 2862 +2864 2 56.2300285806223 -524.0867679803637 17.5188 0.1144 2863 +2865 2 56.44808402171727 -525.496146561346 17.3883 0.1144 2864 +2866 2 41.53697000206293 -492.18456883967787 38.8354 0.1144 2759 +2867 2 42.35334984973549 -491.7055975583973 37.3444 0.1144 2866 +2868 2 42.886935581044966 -493.1573009756397 36.1418 0.1144 2867 +2869 2 43.396667817555574 -494.61613188642644 35.2881 0.1144 2868 +2870 2 44.015015332230966 -494.605951995122 34.715 0.1144 2869 +2871 2 44.66057760896199 -495.9024331478845 34.3064 0.1144 2870 +2872 2 45.55600690941893 -497.28199861838766 34.0612 0.1144 2871 +2873 2 46.65512951393012 -498.11815350874605 33.7977 0.1144 2872 +2874 2 47.68426393988061 -496.58258244731746 33.4432 0.1144 2873 +2875 2 48.41010311935338 -496.04623166706335 33.0543 0.1144 2874 +2876 2 49.08714110812741 -494.14410711948403 32.6427 0.1144 2875 +2877 2 49.27147661162429 -493.91838023281036 32.3439 0.1144 2876 +2878 2 50.224502090947034 -494.9327300520199 31.136 0.1144 2877 +2879 2 51.31002496770287 -495.7132893919269 30.5586 0.1144 2878 +2880 2 52.43046280771809 -494.7126607287216 30.2501 0.1144 2879 +2881 2 53.55769795167752 -495.3466896793614 29.9191 0.1144 2880 +2882 2 54.45105449043611 -494.7925138069746 29.6008 0.1144 2881 +2883 2 54.868326553583124 -496.3104792470077 29.3003 0.1144 2882 +2884 2 55.23994075986879 -497.91740596106615 28.9985 0.1144 2883 +2885 2 55.72973536578432 -499.5340501682371 28.6247 0.1144 2884 +2886 2 56.377389220789745 -500.97671067913717 28.096 0.1144 2885 +2887 2 56.985480861148716 -502.09239454553114 27.4091 0.1144 2886 +2888 2 57.79418173323994 -501.83987875120147 26.6221 0.1144 2887 +2889 2 58.89539311621618 -502.1262638305591 25.8985 0.1144 2888 +2890 2 60.00502136689683 -501.32231754432246 25.2477 0.1144 2889 +2891 2 61.06703202339713 -501.7146652316789 24.6662 0.1144 2890 +2892 2 61.659165473829106 -501.96222047285204 24.185 0.1144 2891 +2893 2 61.97985787822422 -503.457138692636 23.7799 0.1144 2892 +2894 2 62.50460817642717 -505.0623558432162 23.3138 0.1144 2893 +2895 2 63.473930711173765 -506.3171179652571 22.8309 0.1144 2894 +2896 2 64.49809391890153 -506.03767986931734 22.4798 0.1144 2895 +2897 2 65.42220668056538 -507.2213680710078 22.2554 0.1144 2896 +2898 2 66.2337247233962 -507.83852060262143 22.1316 0.1144 2897 +2899 2 66.56916720460192 -508.567144817787 22.0937 0.1144 2898 +2900 2 66.66658587096148 -510.01298327776885 22.1307 0.1144 2899 +2901 2 67.22422051448967 -511.45137236453076 22.2727 0.1144 2900 +2902 2 68.15025127244903 -512.9642034172583 22.4305 0.1144 2901 +2903 2 69.3121507966258 -511.91238611378844 21.1919 0.1144 2902 +2904 2 70.14857559868665 -510.8106863985978 20.3463 0.1144 2903 +2905 2 71.10364971330856 -510.49090674720014 19.7211 0.1144 2904 +2906 2 72.1600653722846 -509.5015099761935 18.8565 0.1144 2905 +2907 2 73.19707017235417 -510.3731531943571 17.9864 0.1144 2906 +2908 2 74.26630800354869 -511.07130500030934 17.3334 0.1144 2907 +2909 2 75.35158551809651 -510.6630841774541 16.8435 0.1144 2908 +2910 2 76.43042101370452 -510.9379703685098 16.5049 0.1144 2909 +2911 2 77.49932788139333 -511.1371210734958 16.2938 0.1144 2910 +2912 2 78.55661638700926 -512.4702145375117 16.1714 0.1144 2911 +2913 2 79.61012978336333 -512.8107096267286 16.0876 0.1144 2912 +2914 2 80.70125106100019 -512.975501305541 15.9999 0.1144 2913 +2915 2 81.83817967503417 -512.2513061808202 15.8585 0.1144 2914 +2916 2 82.97604920453554 -512.790941348914 15.7049 0.1144 2915 +2917 2 84.11148628966711 -513.8094734211384 15.5565 0.1144 2916 +2918 2 85.15541433324388 -513.2415842144354 15.4094 0.1144 2917 +2919 2 86.12654743952541 -514.538536846374 15.2029 0.1144 2918 +2920 2 87.0037219478382 -514.3964278674518 14.9283 0.1144 2919 +2921 2 88.10928416224279 -515.137056433651 14.6749 0.1144 2920 +2922 2 89.247969283174 -514.0934035693068 14.4606 0.1144 2921 +2923 2 90.3860574563163 -514.662161639933 14.209 0.1144 2922 +2924 2 91.45056323403688 -515.8835370561773 13.9625 0.1144 2923 +2925 2 92.50010229190445 -515.4505462424153 13.7053 0.1144 2924 +2926 2 93.61071421734242 -515.8472248613036 13.5037 0.1144 2925 +2927 2 94.47416716620828 -516.1453118033728 13.3442 0.1144 2926 +2928 2 95.43559379824265 -517.3573370378236 12.901 0.1144 2927 +2929 2 67.12193623204806 -512.6896728888273 22.6219 0.1144 2902 +2930 2 66.486398969617 -513.5044797249899 22.8148 0.1144 2929 +2931 2 66.4173347964144 -514.9519071974311 23.0262 0.1144 2930 +2932 2 66.10236490413641 -516.7574211196846 23.2259 0.1144 2931 +2933 2 65.78018496689332 -518.4307582528602 23.4292 0.1144 2932 +2934 2 65.85273912960427 -519.6691288193182 23.6611 0.1144 2933 +2935 2 66.11713318312617 -520.6049919620267 23.9721 0.1144 2934 +2936 2 66.12862950072305 -521.8485390221098 24.4282 0.1144 2935 +2937 2 65.4529602028716 -523.7666232836375 25.0243 0.1144 2936 +2938 2 64.88572778311301 -524.4387939558565 25.7802 0.1144 2937 +2939 2 64.62943465110354 -525.5549557304494 26.6196 0.1144 2938 +2940 2 64.39755422185563 -526.7165665685236 27.3505 0.1144 2939 +2941 2 64.15681373622883 -527.9465369298273 28.0084 0.1144 2940 +2942 2 63.91419900790659 -529.5621147392284 28.6558 0.1144 2941 +2943 2 63.66998594144661 -531.1754991702057 29.3034 0.1144 2942 +2944 2 63.38833816723479 -532.9425093529059 29.9564 0.1144 2943 +2945 2 63.04596451770308 -534.2692373714668 30.6323 0.1144 2944 +2946 2 62.68002458327822 -535.4778299046386 31.3384 0.1144 2945 +2947 2 62.47549726198119 -536.6649214069639 32.0793 0.1144 2946 +2948 2 62.56747160032603 -538.084220137436 32.8255 0.1144 2947 +2949 2 62.761416867088165 -539.5047613765364 33.5692 0.1144 2948 +2950 2 62.95478610991022 -540.8444368506628 34.314 0.1144 2949 +2951 2 63.14801779406973 -542.1876657893868 35.0571 0.1144 2950 +2952 2 63.34138703689173 -543.0963901121688 35.7977 0.1144 2951 +2953 2 63.44850296744541 -544.2238717927416 36.5218 0.1144 2952 +2954 2 63.44803695529108 -545.5409896702321 37.2151 0.1144 2953 +2955 2 63.27982822248584 -547.069937649059 37.91 0.1144 2954 +2956 2 62.91717876939876 -548.799390322619 38.6207 0.1144 2955 +2957 2 62.49727602182483 -550.0525987103921 39.3478 0.1144 2956 +2958 2 62.07831039559878 -551.0555487330372 40.091 0.1144 2957 +2959 2 61.65979105963008 -552.004595978944 40.8486 0.1144 2958 +2960 2 61.350023536515465 -553.081124774207 41.615 0.1144 2959 +2961 2 61.2186594593759 -554.3412239246212 42.3657 0.1144 2960 +2962 2 61.17417467521103 -555.6755670991873 43.1567 0.1144 2961 +2963 2 61.286055202187114 -557.1229420464372 43.9947 0.1144 2962 +2964 2 61.789374547371395 -558.7094254778898 44.7566 0.1144 2963 +2965 2 62.38909145181226 -560.2330422911302 45.4628 0.1144 2964 +2966 2 62.97999205347429 -560.7997441551764 46.149 0.1144 2965 +2967 2 63.41542992179606 -561.4530467521897 46.9946 0.1144 2966 +2968 2 63.787249844561074 -562.9995792985725 47.7943 0.1144 2967 +2969 2 64.15151334563615 -564.5891993714282 48.4674 0.1144 2968 +2970 2 64.51803950322177 -566.199961182569 49.0515 0.1144 2969 +2971 2 64.69515482869467 -567.4037339011503 49.5337 0.1144 2970 +2972 2 64.21604314520837 -568.6509408715928 49.761 0.1144 2971 +2973 2 63.72802686451047 -569.5711661546114 49.8134 0.1144 2972 +2974 2 63.23929700120988 -570.486367891497 49.7566 0.1144 2973 +2975 2 62.75065233075911 -572.2338602389095 49.6373 0.1144 2974 +2976 2 62.0530766620179 -574.0510719296359 49.5261 0.1144 2975 +2977 2 61.34613607766154 -574.7121183055824 49.4418 0.1144 2976 +2978 2 60.63990907590776 -575.3620026227296 49.3928 0.1144 2977 +2979 2 59.93296849155134 -576.7259437397443 49.3688 0.1144 2978 +2980 2 59.226656296947766 -578.4888089703676 49.3609 0.1144 2979 +2981 2 58.51971571259136 -579.16993265164 49.3606 0.1144 2980 +2982 2 49.54029689865165 -493.224635243338 32.3579 0.1144 2876 +2983 2 50.10300188043105 -492.4619200302101 31.8732 0.1144 2982 +2984 2 50.36427694444189 -491.32055410606654 31.4664 0.1144 2983 +2985 2 50.46315541879392 -489.9970005618716 31.1814 0.1144 2984 +2986 2 50.655370618279846 -488.7483228558789 30.9907 0.1144 2985 +2987 2 51.16869838542043 -487.8527074211001 30.87 0.1144 2986 +2988 2 51.67792759102154 -486.982980721809 30.8017 0.1144 2987 +2989 2 51.63950431911516 -485.6159723840665 30.7614 0.1144 2988 +2990 2 51.29354487441402 -484.04158811031044 30.7238 0.1144 2989 +2991 2 50.897474117070495 -482.4680790984886 30.6762 0.1144 2990 +2992 2 50.52883855894461 -480.8893624650263 30.6138 0.1144 2991 +2993 2 50.35305978989384 -479.3859961375299 30.4951 0.1144 2992 +2994 2 50.20187202898029 -477.8901966408824 30.3416 0.1144 2993 +2995 2 50.37033643503116 -476.7095861587998 30.1874 0.1144 2994 +2996 2 50.58639072238502 -475.55188301804424 30.0118 0.1144 2995 +2997 2 50.83091182790335 -474.43031704435697 29.7573 0.1144 2996 +2998 2 51.129251984741806 -473.3606413590761 29.5389 0.1144 2997 +2999 2 51.583496062996396 -472.46719498069444 29.3838 0.1144 2998 +3000 2 52.125381351780796 -471.42134216132274 29.2796 0.1144 2999 +3001 2 52.91601755700937 -469.32568813661095 29.2172 0.1144 3000 +3002 2 53.833611416758245 -469.1894550171096 29.192 0.1144 3001 +3003 2 54.76151041505315 -467.40859677743117 29.1939 0.1144 3002 +3004 2 55.09435107762039 -466.26678904785956 29.2043 0.1144 3003 +3005 2 55.6881076012793 -465.4326280807519 29.2188 0.1144 3004 +3006 2 56.664687959179986 -465.46214732038294 29.2393 0.1144 3005 +3007 2 57.46681417787181 -464.5962342448101 29.2676 0.1144 3006 +3008 2 57.86884615515655 -462.6981378424384 29.3084 0.1144 3007 +3009 2 58.110330043536095 -461.0635627077387 29.367 0.1144 3008 +3010 2 58.28294158281949 -459.8736446835052 29.4448 0.1144 3009 +3011 2 58.51966328382317 -458.7467166996039 29.5428 0.1144 3010 +3012 2 58.96169825538215 -457.84229920622914 29.6856 0.1144 3011 +3013 2 59.47560755709249 -456.81388955367163 30.007 0.1144 3012 +3014 2 59.935554045653745 -455.0061750188311 30.322 0.1144 3013 +3015 2 60.25408171161482 -453.50515107716535 30.5715 0.1144 3014 +3016 2 60.224377143305055 -452.18780258117795 30.7642 0.1144 3015 +3017 2 59.80153240353382 -451.4767459325222 30.9042 0.1144 3016 +3018 2 59.34750397915405 -450.69842175618163 31.0022 0.1144 3017 +3019 2 59.005824502951214 -449.19294261736025 31.0702 0.1144 3018 +3020 2 58.7221909882176 -447.7071575120227 31.1623 0.1144 3019 +3021 2 58.57972882660343 -446.2978654376358 31.3267 0.1144 3020 +3022 2 58.594580024041115 -444.9874427306815 31.4874 0.1144 3021 +3023 2 58.613479826252025 -443.6802776986159 31.6436 0.1144 3022 +3024 2 58.69712600491588 -442.4328131213398 31.8472 0.1144 3023 +3025 2 59.217001907695014 -441.6337659726137 32.146 0.1144 3024 +3026 2 59.67872573230631 -440.4208712671062 32.3764 0.1144 3025 +3027 2 60.09719441897209 -438.78120195748926 32.5833 0.1144 3026 +3028 2 60.57015740189413 -437.51470526338704 32.776 0.1144 3027 +3029 2 60.904184655888486 -436.23351854019097 32.9042 0.1144 3028 +3030 2 61.196067380567904 -434.94706693191614 32.9728 0.1144 3029 +3031 2 61.49672255972976 -433.8985088912355 32.9946 0.1144 3030 +3032 2 61.10384578552648 -432.5840410419231 32.9868 0.1144 3031 +3033 2 60.281408935079355 -431.7663515807625 32.9546 0.1144 3032 +3034 2 59.649962142239936 -431.2619917555644 32.891 0.1144 3033 +3035 2 59.18154784004032 -429.895832407146 32.7953 0.1144 3034 +3036 2 58.99201158292255 -428.4818477311388 32.6973 0.1144 3035 +3037 2 59.079650898963884 -427.23495256889566 32.6234 0.1144 3036 +3038 2 59.25636340883335 -426.05762930970445 32.5696 0.1144 3037 +3039 2 59.56307899412657 -425.01918035517804 32.5335 0.1144 3038 +3040 2 60.075962880056224 -423.52277525571805 32.5122 0.1144 3039 +3041 2 60.526470186715535 -422.2174722342101 32.4996 0.1144 3040 +3042 2 60.81406984131343 -420.91798324749277 32.4859 0.1144 3041 +3043 2 61.2247859786478 -419.5404470606893 32.466 0.1144 3042 +3044 2 61.92892140212713 -418.47358865383717 32.4391 0.1144 3043 +3045 2 62.712245932348225 -417.2683367913742 32.4047 0.1144 3044 +3046 2 63.283904775569006 -415.8694368746608 32.3509 0.1144 3045 +3047 2 63.67095461978142 -414.84814142358465 32.263 0.1144 3046 +3048 2 63.955572524636516 -413.78148203005065 32.1544 0.1144 3047 +3049 2 64.14791435622197 -412.6257867479231 32.0536 0.1144 3048 +3050 2 64.46011742528958 -411.5982837339907 31.9673 0.1144 3049 +3051 2 64.96283683291877 -410.7546153466676 31.8934 0.1144 3050 +3052 2 65.31073010072527 -409.3744950224458 31.8298 0.1144 3051 +3053 2 65.4304104458066 -408.0392817959978 31.7568 0.1144 3052 +3054 2 65.64646783474359 -406.69469630398356 31.6512 0.1144 3053 +3055 2 66.13444577777483 -405.3347606115544 31.5311 0.1144 3054 +3056 2 66.80934774213777 -404.12566829534387 31.4084 0.1144 3055 +3057 2 67.56792819764368 -403.04424631124675 31.2791 0.1144 3056 +3058 2 68.27683131912843 -401.6754705908697 31.1699 0.1144 3057 +3059 2 68.87188295995966 -400.530608631037 31.1072 0.1144 3058 +3060 2 69.28531355469173 -399.6106968270853 31.0918 0.1144 3059 +3061 2 69.3582582613183 -398.3787274742384 31.1139 0.1144 3060 +3062 2 69.55658382370173 -397.2560030544185 31.2054 0.1144 3061 +3063 2 70.09771719221685 -396.4990043039935 31.3863 0.1144 3062 +3064 2 70.4901638167243 -395.36981175299337 31.5708 0.1144 3063 +3065 2 70.62686782168987 -394.06848225306805 31.7122 0.1144 3064 +3066 2 70.3139255575797 -392.9054422607128 31.7814 0.1144 3065 +3067 2 69.7560205201232 -391.4072203832779 31.8002 0.1144 3066 +3068 2 69.34306125251155 -389.9106906731172 31.8352 0.1144 3067 +3069 2 69.47696629976619 -388.75111556134226 31.8629 0.1144 3068 +3070 2 70.25335797995709 -388.40990444352036 31.8797 0.1144 3069 +3071 2 71.06212062872036 -387.50594743556235 31.8895 0.1144 3070 +3072 2 70.90183014235512 -386.3595619141793 31.8909 0.1144 3071 +3073 2 70.335332340865 -385.2174904051547 31.8772 0.1144 3072 +3074 2 70.28523144537026 -383.94143671492594 31.8444 0.1144 3073 +3075 2 71.00751044211351 -383.030547296168 31.7923 0.1144 3074 +3076 2 71.79502113577048 -381.4237805543328 31.6968 0.1144 3075 +3077 2 72.43191477748792 -380.49027946811384 31.5904 0.1144 3076 +3078 2 72.70320745638745 -379.2728984834398 31.4986 0.1144 3077 +3079 2 72.64075920299803 -377.9821818588334 31.4289 0.1144 3078 +3080 2 73.1000413731864 -376.8830549772887 31.3818 0.1144 3079 +3081 2 73.83073344351442 -375.0617000701501 31.3418 0.1144 3080 +3082 2 74.67167847409996 -374.57005770619145 31.2872 0.1144 3081 +3083 2 75.08448378066224 -373.6617788866165 31.2418 0.1144 3082 +3084 2 75.02190579359015 -372.3265506637216 31.2402 0.1144 3083 +3085 2 74.95406696307207 -370.987479687983 31.3261 0.1144 3084 +3086 2 75.01939126309624 -369.7491152315142 31.5017 0.1144 3085 +3087 2 75.32664694370948 -368.7194531994031 31.673 0.1144 3086 +3088 2 75.70483362995995 -367.7388211246672 31.7878 0.1144 3087 +3089 2 75.91228112513411 -366.5471417537951 31.8906 0.1144 3088 +3090 2 76.11950818314622 -365.3764841251843 32.0085 0.1144 3089 +3091 2 76.58948631474226 -364.10507407004695 32.1163 0.1144 3090 +3092 2 76.93448302565574 -362.3812976784063 32.228 0.1144 3091 +3093 2 76.86522244586563 -361.23453083088083 32.375 0.1144 3092 +3094 2 76.46438399051667 -360.69302224061653 32.573 0.1144 3093 +3095 2 75.8348582955559 -359.36425568368736 32.7908 0.1144 3094 +3096 2 74.98164950721068 -357.9813824931084 33.1694 0.1144 3095 +3097 2 74.1131793902598 -356.5954164066585 33.6885 0.1144 3096 +3098 2 73.45554625803237 -356.4466763067758 34.095 0.1144 3097 +3099 2 73.27145122734618 -355.57445232786347 34.3616 0.1144 3098 +3100 2 73.38765899159431 -354.12080976319265 34.5629 0.1144 3099 +3101 2 73.5682411083247 -352.55679092825625 34.736 0.1144 3100 +3102 2 73.92339609437245 -350.71889250516887 34.8566 0.1144 3101 +3103 2 74.24931831384038 -349.4695803372629 34.9577 0.1144 3102 +3104 2 74.64073952256715 -348.53784199573704 35.1182 0.1144 3103 +3105 2 75.5317456072551 -348.57063579460197 35.4225 0.1144 3104 +3106 2 76.58082287265671 -348.7907474166466 35.5396 0.1144 3105 +3107 2 75.71159532480698 -347.6707091358651 34.7959 0.1144 3106 +3108 2 75.59257030082989 -347.81004809047397 33.5888 0.1144 3107 +3109 2 75.22976098015825 -348.63750420504294 33.0546 0.1144 3108 +3110 2 75.05020117762535 -349.78965330244756 33.038 0.1144 3109 +3111 2 74.94879034537097 -351.00180669941307 33.0025 0.1144 3110 +3112 2 75.05351527080454 -352.35254751235226 32.9389 0.1144 3111 +3113 2 75.41345805666809 -353.8190310052628 32.9042 0.1144 3112 +3114 2 75.94730667067768 -355.2979226934307 32.9395 0.1144 3113 +3115 2 76.65541221295507 -356.2692170103868 33.0294 0.1144 3114 +3116 2 77.68495748029517 -356.15780800369134 33.1288 0.1144 3115 +3117 2 78.67156776472066 -355.6146280042812 33.2248 0.1144 3116 +3118 2 79.77718785556755 -355.3561524227786 33.395 0.1144 3117 +3119 2 80.34791325974325 -356.86096711950006 33.6549 0.1144 3118 +3120 2 76.69539534617371 -347.36140089547365 34.2336 0.1144 3107 +3121 2 77.58314448678254 -345.83393685710615 34.0371 0.1144 3120 +3122 2 78.08305873353457 -345.0365812833627 34.0105 0.1144 3121 +3123 2 78.47671218078148 -344.0471609251367 34.0631 0.1144 3122 +3124 2 78.91197006202339 -342.06650040960676 34.1426 0.1144 3123 +3125 2 79.2817813198192 -340.3367023968509 34.1919 0.1144 3124 +3126 2 79.55160229268057 -339.2721369381515 34.2104 0.1144 3125 +3127 2 79.62726696733446 -338.0403613206606 34.2143 0.1144 3126 +3128 2 79.47313028371511 -336.65914464268553 34.214 0.1144 3127 +3129 2 79.17791915362181 -335.323840590163 34.2135 0.1144 3128 +3130 2 78.95584793479068 -334.4296457735058 34.2124 0.1144 3129 +3131 2 78.78064208809693 -333.4428684711509 34.2112 0.1144 3130 +3132 2 78.74973310609417 -332.20066584390787 34.2096 0.1144 3131 +3133 2 78.75572114556988 -330.86977535262287 34.207 0.1144 3132 +3134 2 78.58367914811436 -329.89474328666716 34.2034 0.1144 3133 +3135 2 78.55852184064804 -328.6665259704868 34.1986 0.1144 3134 +3136 2 78.70096659358704 -327.1179580735303 34.1916 0.1144 3135 +3137 2 78.71425227992407 -325.79935714947146 34.1824 0.1144 3136 +3138 2 78.92865586332755 -324.1773870155583 34.169 0.1144 3137 +3139 2 79.52504165153431 -322.8977702300289 34.1494 0.1144 3138 +3140 2 80.28412076311037 -322.45968883869847 34.1228 0.1144 3139 +3141 2 81.1086205667983 -322.13697493884155 34.0886 0.1144 3140 +3142 2 82.06815634096591 -320.9726064004855 34.0432 0.1144 3141 +3143 2 82.9984641666467 -320.0970303002814 33.9528 0.1144 3142 +3144 2 83.785613762896 -319.4134956274974 33.8363 0.1144 3143 +3145 2 84.25376219262935 -317.5532733907667 33.7333 0.1144 3144 +3146 2 84.54666723150628 -316.0977880673895 33.6445 0.1144 3145 +3147 2 85.08544103686519 -315.17529081101657 33.5653 0.1144 3146 +3148 2 85.41528212742372 -314.1776748048797 33.4919 0.1144 3147 +3149 2 85.43748333753544 -312.95385009388247 33.4219 0.1144 3148 +3150 2 85.47326613938495 -311.699520050642 33.3483 0.1144 3149 +3151 2 85.46927490163864 -310.4186455193515 33.1436 0.1144 3150 +3152 2 85.49298925703818 -309.1599677134386 32.935 0.1144 3151 +3153 2 85.41561743955549 -307.83405499516965 32.7729 0.1144 3152 +3154 2 85.45202863115786 -306.58340225934865 32.6542 0.1144 3153 +3155 2 85.62196715229334 -305.43741159720776 32.5752 0.1144 3154 +3156 2 86.10998343299127 -304.61806781553975 32.5321 0.1144 3155 +3157 2 86.62268521942553 -303.83019609477145 32.5203 0.1144 3156 +3158 2 86.5869240510822 -303.03292545250764 32.5142 0.1144 3157 +3159 2 86.61170526151216 -301.779560610682 32.5038 0.1144 3158 +3160 2 86.88938110628396 -300.49044535873793 32.4912 0.1144 3159 +3161 2 87.48117819439756 -298.6026520546787 32.4741 0.1144 3160 +3162 2 88.2887887952807 -297.8399405369624 32.4528 0.1144 3161 +3163 2 89.19703417660689 -296.8299449837651 32.424 0.1144 3162 +3164 2 90.05575858146557 -295.9745310753185 32.3672 0.1144 3163 +3165 2 90.65250305803356 -295.23334074801943 32.2871 0.1144 3164 +3166 2 91.05528695558755 -294.0594870625258 32.2218 0.1144 3165 +3167 2 91.5892930629409 -293.2439484743143 32.1961 0.1144 3166 +3168 2 92.51791423836619 -292.240024975683 32.23 0.1144 3167 +3169 2 93.50953969027805 -291.6303258798983 32.2938 0.1144 3168 +3170 2 94.05460665056648 -290.76126971181856 32.3347 0.1144 3169 +3171 2 94.31525573387094 -289.22194839424805 32.3322 0.1144 3170 +3172 2 94.35256260757131 -287.9056356600598 32.3459 0.1144 3171 +3173 2 93.97506458402009 -287.14402216840807 32.4117 0.1144 3172 +3174 2 93.43275293965945 -285.723579052986 32.1636 0.1144 3173 +3175 2 93.56215758125373 -284.60239383396197 31.4104 0.1144 3174 +3176 2 93.52013199483153 -283.3455882853373 30.7994 0.1144 3175 +3177 2 93.42516970357755 -282.0613479203976 30.3204 0.1144 3176 +3178 2 93.74213806160414 -281.07732427414965 29.9382 0.1144 3177 +3179 2 93.74004568982572 -279.9272520301259 29.7237 0.1144 3178 +3180 2 93.26820024604264 -278.455143625903 29.6383 0.1144 3179 +3181 2 93.07304746400447 -277.157029795462 29.5154 0.1144 3180 +3182 2 93.13779574008859 -275.9293168021347 29.2272 0.1144 3181 +3183 2 92.99632065658844 -274.676854502996 28.8576 0.1144 3182 +3184 2 93.00965940127477 -273.4210237021469 28.4413 0.1144 3183 +3185 2 93.24977390619523 -272.30910260963367 28.0213 0.1144 3184 +3186 2 93.58880091445675 -271.3414294016195 27.6674 0.1144 3185 +3187 2 93.6361291971654 -270.1330617341987 27.3885 0.1144 3186 +3188 2 93.5836187817482 -268.8419918364882 27.1513 0.1144 3187 +3189 2 93.7108343405821 -267.6850146916002 26.8519 0.1144 3188 +3190 2 94.30931781553335 -266.1233225620264 26.6464 0.1144 3189 +3191 2 94.5970643335431 -264.816674018256 26.4185 0.1144 3190 +3192 2 95.00323321003395 -263.93291182902027 26.05 0.1144 3191 +3193 2 95.0833513404688 -262.7430373442551 25.8791 0.1144 3192 +3194 2 95.04384649284935 -261.46885767937493 25.7025 0.1144 3193 +3195 2 95.05370413918602 -260.24245357300265 25.493 0.1144 3194 +3196 2 95.22658607239774 -259.13264430908157 25.2193 0.1144 3195 +3197 2 95.0546323693751 -257.79175225742347 24.9157 0.1144 3196 +3198 2 95.06703950334328 -256.56353596444757 24.5109 0.1144 3197 +3199 2 95.3072806403633 -255.48548150322188 24.1427 0.1144 3198 +3200 2 95.54200146657186 -254.35770084185924 23.8316 0.1144 3199 +3201 2 95.79418441794225 -253.02581783764936 23.587 0.1144 3200 +3202 2 96.42222411175088 -252.0800163911972 23.3705 0.1144 3201 +3203 2 97.4027264423253 -251.295580613038 23.1629 0.1144 3202 +3204 2 97.7742698798128 -250.26025493193146 22.9972 0.1144 3203 +3205 2 97.41571050555451 -249.06006946850664 22.9298 0.1144 3204 +3206 2 97.03375282305608 -248.14480346405202 22.9191 0.1144 3205 +3207 2 96.89094359218036 -246.99689553144674 22.9363 0.1144 3206 +3208 2 97.21251226939977 -245.58911013776316 22.9676 0.1144 3207 +3209 2 97.84801939792895 -244.54599585882818 23.0004 0.1144 3208 +3210 2 98.30944069411147 -243.73936154043489 23.0234 0.1144 3209 +3211 2 98.28759169024876 -242.5495790168431 23.0591 0.1144 3210 +3212 2 98.50509855331303 -241.5420438216545 23.1059 0.1144 3211 +3213 2 99.20945131237126 -239.51319540743089 23.0966 0.1144 3212 +3214 2 99.79826044757577 -238.5618360910006 23.0165 0.1144 3213 +3215 2 100.32304470860603 -237.79951942169646 22.8724 0.1144 3214 +3216 2 100.86119012421209 -237.06702169104676 22.6757 0.1144 3215 +3217 2 101.43378298719749 -236.37118738532538 22.4335 0.1144 3216 +3218 2 101.97611766782249 -234.97319731086097 22.1608 0.1144 3217 +3219 2 101.93609054714878 -233.81236238593425 21.8981 0.1144 3218 +3220 2 101.63276577031641 -232.9117316482148 21.674 0.1144 3219 +3221 2 101.6286838290907 -231.66897801364894 21.44 0.1144 3220 +3222 2 101.70367867474201 -230.36759614833966 21.1827 0.1144 3221 +3223 2 101.66462321896307 -229.14632221442406 20.8997 0.1144 3222 +3224 2 101.56894355098682 -227.95477558125464 20.5875 0.1144 3223 +3225 2 101.46395443479115 -226.77712677089244 20.2521 0.1144 3224 +3226 2 101.17706636733992 -225.42344564209657 19.9754 0.1144 3225 +3227 2 100.7966741959421 -224.01687109130114 19.7839 0.1144 3226 +3228 2 100.47263274123026 -222.61527083631964 19.6148 0.1144 3227 +3229 2 100.23911364072207 -221.25654147087081 19.4035 0.1144 3228 +3230 2 99.96394935950569 -219.84203163226096 19.155 0.1144 3229 +3231 2 99.58578391599836 -218.44059782567678 18.8936 0.1144 3230 +3232 2 99.18013090746074 -217.0224621349588 18.623 0.1144 3231 +3233 2 98.77359314338804 -216.07243433426834 18.3529 0.1144 3232 +3234 2 98.32656224648738 -215.732171864205 18.1543 0.1144 3233 +3235 2 97.86566602831107 -214.581819220125 18.034 0.1144 3234 +3236 2 97.15293895890339 -213.16324311787218 17.8987 0.1144 3235 +3237 2 96.34863026850097 -212.29764385663316 17.7141 0.1144 3236 +3238 2 95.53349347396167 -211.3226503992078 17.4818 0.1144 3237 +3239 2 94.71992219052296 -210.8046197238247 17.21 0.1144 3238 +3240 2 93.90653300657968 -209.41155440198375 16.909 0.1144 3239 +3241 2 93.0941661368339 -208.42941678288756 16.5972 0.1144 3240 +3242 2 92.28028612180032 -207.58279967134249 16.2957 0.1144 3241 +3243 2 91.58928401632353 -207.0521328746469 16.0221 0.1144 3242 +3244 2 91.3670892669759 -205.7119638213324 15.8117 0.1144 3243 +3245 2 91.21130187940614 -204.48987698236016 15.659 0.1144 3244 +3246 2 90.61264493429296 -203.56531962073922 15.5007 0.1144 3245 +3247 2 90.09255690993346 -202.68130151732194 15.3592 0.1144 3246 +3248 2 89.74886563237257 -201.81351539828486 15.2576 0.1144 3247 +3249 2 89.42763554170403 -200.56060252619807 15.1861 0.1144 3248 +3250 2 89.47353828102112 -199.36792408731745 15.1248 0.1144 3249 +3251 2 89.80066181259886 -198.0224052582874 15.073 0.1144 3250 +3252 2 90.03840582780012 -196.5310349432744 15.0497 0.1144 3251 +3253 2 90.16926986379634 -195.10873151549043 15.0592 0.1144 3252 +3254 2 90.16603364790244 -193.82763312885686 15.0173 0.1144 3253 +3255 2 90.01394779584436 -192.73090490464227 14.5838 0.1144 3254 +3256 2 87.25017640136514 -303.4213508753807 32.9031 0.1144 3157 +3257 2 88.23078174705512 -302.5769133529943 33.4488 0.1144 3256 +3258 2 89.07528765290667 -301.70379539821147 33.686 0.1144 3257 +3259 2 89.6757329724498 -300.1240560298703 33.9654 0.1144 3258 +3260 2 89.93789520104212 -299.07368225371664 34.2107 0.1144 3259 +3261 2 89.65528710208916 -297.6687107505558 34.4576 0.1144 3260 +3262 2 89.34457087333296 -296.58125062631285 34.6959 0.1144 3261 +3263 2 89.05767970429855 -295.6799895184179 34.9275 0.1144 3262 +3264 2 89.07488736330936 -294.3832578862052 35.1812 0.1144 3263 +3265 2 89.45084732166939 -292.73312679010616 35.3752 0.1144 3264 +3266 2 89.99042920723 -291.9363467260401 35.8985 0.1144 3265 +3267 2 19.40107064968206 -465.64872785544475 42.0325 0.1144 2332 +3268 2 19.575210747472617 -464.14661119706057 41.148 0.1144 3267 +3269 2 19.044423056575035 -464.48393911626613 40.74 0.1144 3268 +3270 2 18.110005564813054 -463.58123160363857 40.0907 0.1144 3269 +3271 2 17.043992543197227 -462.76592953844255 39.3915 0.1144 3270 +3272 2 16.00831818537292 -463.4977187617239 38.6638 0.1144 3271 +3273 2 15.349372712112086 -464.80439288714484 37.9243 0.1144 3272 +3274 2 14.832377953006766 -465.65293651106333 37.1053 0.1144 3273 +3275 2 13.73535583504945 -466.5750807578933 36.463 0.1144 3274 +3276 2 12.774007080300386 -466.7253254740704 35.8711 0.1144 3275 +3277 2 11.649649676657997 -466.155833426124 35.4225 0.1144 3276 +3278 2 10.51825299253499 -466.95425557419213 35.0302 0.1144 3277 +3279 2 9.386406224034875 -466.46668484130123 34.6382 0.1144 3278 +3280 2 8.251643075777324 -467.48451434305724 34.2885 0.1144 3279 +3281 2 7.117097263098797 -466.68641744646936 33.9368 0.1144 3280 +3282 2 5.986766048933004 -465.97453716494135 33.5423 0.1144 3281 +3283 2 4.877489277159019 -466.9155993391862 32.9588 0.1144 3282 +3284 2 3.969418998658024 -465.9996512890744 31.6722 0.1144 3283 +3285 2 3.0144769377759584 -466.93173344903454 30.3993 0.1144 3284 +3286 2 2.10259590548145 -465.77180354216915 29.2914 0.1144 3285 +3287 2 1.3355361062270177 -466.2258636801369 27.9441 0.1144 3286 +3288 2 0.36574846464702837 -465.4378532415468 26.6489 0.1144 3287 +3289 2 -0.13295876426631636 -465.44097124332166 24.462 0.1144 3288 +3290 2 -0.6029115623684378 -466.21510380585846 23.6309 0.1144 3289 +3291 2 -1.3040546232936032 -466.85905904780304 23.2106 0.1144 3290 +3292 2 -2.395903499701112 -467.86559760954054 22.8032 0.1144 3291 +3293 2 -3.50997259275296 -467.68314179082 22.4028 0.1144 3292 +3294 2 -4.609579825188223 -467.7187149781573 21.9739 0.1144 3293 +3295 2 -5.694857339736067 -466.5943131088314 21.4708 0.1144 3294 +3296 2 -6.582557015309032 -465.7082575943801 20.8991 0.1144 3295 +3297 2 -6.69004224703508 -464.75435984434307 20.1764 0.1144 3296 +3298 2 -7.456960995280946 -465.0491814444889 18.917 0.1144 3297 +3299 2 -8.411239128553001 -463.9758626442817 17.9589 0.1144 3298 +3300 2 -8.698294876590598 -463.5958003733261 17.0652 0.1144 3299 +3301 2 -7.857018491736439 -462.7439288509836 15.9632 0.1144 3300 +3302 2 -6.802093053600784 -462.19052424679717 15.2845 0.1144 3301 +3303 2 -5.688138985527028 -461.7365948558844 14.8769 0.1144 3302 +3304 2 -4.6043393801834025 -462.8375944771037 14.6055 0.1144 3303 +3305 2 -3.752425709010505 -463.7963661061631 14.424 0.1144 3304 +3306 2 -3.1877083451533856 -463.9305923459698 14.2923 0.1144 3305 +3307 2 -2.759070491596046 -465.42069769778516 14.17 0.1144 3306 +3308 2 -2.3253093532551397 -466.9598385257565 14.022 0.1144 3307 +3309 2 -1.8442951214982406 -468.2081047102354 13.7885 0.1144 3308 +3310 2 -1.3794416945646866 -468.5363890649534 13.3894 0.1144 3309 +3311 2 -0.9293000067750992 -469.5850797391228 12.8422 0.1144 3310 +3312 2 -0.6644182237459821 -471.05470316668925 12.4247 0.1144 3311 +3313 2 -0.3398038466771087 -472.55582355360497 12.1157 0.1144 3312 +3314 2 0.06660418371285814 -474.08237091639637 11.7793 0.1144 3313 +3315 2 0.9291004519489867 -465.98832852812825 25.0973 0.1144 3288 +3316 2 1.5546346963791144 -466.4630858984762 23.9586 0.1144 3315 +3317 2 1.7797605461667576 -467.28336310403563 23.1788 0.1144 3316 +3318 2 1.9491616599748367 -468.25239613787267 22.6008 0.1144 3317 +3319 2 2.1194615574639677 -469.5132153362305 22.1509 0.1144 3318 +3320 2 2.2918615507440485 -470.9422689654906 21.7932 0.1144 3319 +3321 2 2.4457637690552954 -472.3666930297042 21.5438 0.1144 3320 +3322 2 2.5887167617597173 -473.78827878262217 21.3757 0.1144 3321 +3323 2 2.2930380039695546 -474.8259052148129 21.2496 0.1144 3322 +3324 2 1.7380479263915785 -476.32950479609946 21.148 0.1144 3323 +3325 2 1.1528520322658542 -478.3010652035179 21.0502 0.1144 3324 +3326 2 0.5661758198893869 -479.0510228732871 20.9416 0.1144 3325 +3327 2 -0.019957195584046517 -479.8066768580953 20.8126 0.1144 3326 +3328 2 -0.5021803624959031 -480.6949289173073 20.5799 0.1144 3327 +3329 2 -0.8494976063623192 -481.7376761348056 20.1748 0.1144 3328 +3330 2 -1.4554248990501306 -483.18473998054225 19.763 0.1144 3329 +3331 2 -2.2266255154254293 -484.9207248236403 19.4577 0.1144 3330 +3332 2 -3.0083845345459452 -485.3431574469833 19.234 0.1144 3331 +3333 2 -3.7470057430712704 -487.4525841361556 19.0805 0.1144 3332 +3334 2 -3.9703279518325196 -489.08415030887204 18.9921 0.1144 3333 +3335 2 -4.166770754003993 -490.3039728899086 18.9415 0.1144 3334 +3336 2 -4.362722725085168 -491.5256997740483 18.894 0.1144 3335 +3337 2 -4.510205569957927 -492.79237782123 18.8167 0.1144 3336 +3338 2 -4.619457245976704 -494.0926822354629 18.7008 0.1144 3337 +3339 2 -4.725597438569959 -495.39583120551094 18.5608 0.1144 3338 +3340 2 -4.832313655103287 -496.69783507320903 18.4117 0.1144 3339 +3341 2 -4.694398754332649 -498.1852583894518 18.2795 0.1144 3340 +3342 2 -4.188026778790423 -499.8091666918764 18.2061 0.1144 3341 +3343 2 -4.3605007594112575 -501.0555890171332 18.1844 0.1144 3342 +3344 2 -4.53716090346799 -502.2996376364285 18.2099 0.1144 3343 +3345 2 -4.950495994312643 -503.48783971609276 18.4038 0.1144 3344 +3346 2 -5.47377021163813 -504.3245353450198 18.5815 0.1144 3345 +3347 2 -6.1896653499724765 -504.86398579669856 18.765 0.1144 3346 +3348 2 -6.346076722792643 -506.03373066258877 19.0043 0.1144 3347 +3349 2 -6.220188829222129 -507.51007100130835 19.3021 0.1144 3348 +3350 2 -5.398210989116584 -508.89437468379685 19.6627 0.1144 3349 +3351 2 -4.275108950243602 -509.92264460463343 19.9727 0.1144 3350 +3352 2 -3.171797080713536 -509.06312097508265 20.264 0.1144 3351 +3353 2 -2.134540703291763 -510.37080789827803 20.535 0.1144 3352 +3354 2 -1.0796610250616503 -509.65992034173473 20.8204 0.1144 3353 +3355 2 -0.013069179696234556 -510.8957035506581 21.138 0.1144 3354 +3356 2 1.0539689559266492 -511.8871972007353 21.4787 0.1144 3355 +3357 2 1.7582815666763691 -512.1775057421798 21.9311 0.1144 3356 +3358 2 2.276773946033382 -513.2118719016103 22.9975 0.1144 3357 +3359 2 -4.450963360369104 -502.6983504175631 18.1033 0.1144 3344 +3360 2 -4.107145450708703 -504.27825684353064 17.9494 0.1144 3359 +3361 2 -3.8868546695105683 -505.71376004669133 17.9494 0.1144 3360 +3362 2 -3.7656078418460694 -506.85988433855556 17.9494 0.1144 3361 +3363 2 -3.6599872343144835 -508.03369152767704 17.9494 0.1144 3362 +3364 2 -3.1321620738428066 -508.2732411872746 17.9494 0.1144 3363 +3365 2 -2.591013403925311 -509.863896696299 17.9494 0.1144 3364 +3366 2 -3.2802660100245298 -510.7664661674562 17.9494 0.1144 3365 +3367 2 -3.971116954261415 -513.1211058220242 17.9494 0.1144 3366 +3368 2 -4.594861266352483 -513.8242644676467 17.9494 0.1144 3367 +3369 2 -5.198638506483099 -514.5567802403882 17.9494 0.1144 3368 +3370 2 -5.802244573681346 -515.2913424783184 17.9494 0.1144 3369 +3371 2 19.74684980552969 -464.59465948942614 41.9398 0.1144 3268 +3372 2 19.841314056238765 -465.7121963922781 43.0623 0.1144 3371 +3373 2 18.99178136380129 -467.39022802124657 43.7746 0.1144 3372 +3374 2 18.064681235654955 -467.80920905617796 44.21 0.1144 3373 +3375 2 17.179611316360216 -468.0097810212226 44.5158 0.1144 3374 +3376 2 16.348874517675238 -468.55837883283436 44.742 0.1144 3375 +3377 2 15.843604929877962 -470.5588862516919 45.0156 0.1144 3376 +3378 2 16.627844148729796 -470.4386687054632 45.3558 0.1144 3377 +3379 2 17.601997342420855 -471.72895336909653 45.6761 0.1144 3378 +3380 2 18.508249236385105 -473.1870276941129 45.7943 0.1144 3379 +3381 2 19.21635477866253 -473.7845226995996 45.995 0.1144 3380 +3382 2 14.627365801222348 -482.8992779816533 38.5241 0.1144 1874 +3383 2 13.843770877073013 -484.7256122635297 38.8651 0.1144 3382 +3384 2 13.046550607585765 -485.7545144917482 39.0468 0.1144 3383 +3385 2 12.228731774802188 -486.108844361668 39.2456 0.1144 3384 +3386 2 11.393626713185926 -486.49640420375465 39.41 0.1144 3385 +3387 2 10.515425280224342 -488.4175297980283 39.468 0.1144 3386 +3388 2 9.565840649975321 -488.5475521369917 39.3448 0.1144 3387 +3389 2 8.899068863676078 -487.83438532348947 38.9486 0.1144 3388 +3390 2 8.423175507656309 -487.4805974260576 38.4182 0.1144 3389 +3391 2 7.950716394803086 -485.9080938480789 37.7689 0.1144 3390 +3392 2 7.469570712853648 -484.3449444667902 37.044 0.1144 3391 +3393 2 6.798145549012259 -482.80862007479004 36.2454 0.1144 3392 +3394 2 6.065075903305508 -481.3038186667382 35.4091 0.1144 3393 +3395 2 5.333158305478967 -481.53226485724144 34.5652 0.1144 3394 +3396 2 4.475434106702075 -480.3544097284344 33.7526 0.1144 3395 +3397 2 3.520843826500299 -480.2988745497782 33.0047 0.1144 3396 +3398 2 2.6075714806094576 -479.5942767655193 32.2932 0.1144 3397 +3399 2 2.188267100703544 -478.0701161658052 31.6865 0.1144 3398 +3400 2 1.8544260592185613 -477.00828899066227 31.1517 0.1144 3399 +3401 2 1.6315122166386784 -476.1457150402607 30.6351 0.1144 3400 +3402 2 1.5492491706340186 -474.9947817955605 30.1109 0.1144 3401 +3403 2 1.4877879953586612 -473.8006634347535 29.5924 0.1144 3402 +3404 2 2.270995796069884 -472.0961513527167 29.148 0.1144 3403 +3405 2 3.2907639213319984 -472.1205597688838 28.8795 0.1144 3404 +3406 2 4.311684094474272 -470.5197496165158 28.6068 0.1144 3405 +3407 2 15.87465708552589 -484.9891615761605 40.6778 0.1144 1872 +3408 2 16.09603265013019 -484.41108101834146 41.2628 0.1144 3407 +3409 2 17.10921740367018 -483.88146442954456 41.7992 0.1144 3408 +3410 2 18.139556243313603 -484.0720294111407 42.322 0.1144 3409 +3411 2 19.197850554630286 -483.333838601974 42.8039 0.1144 3410 +3412 2 20.20285698398225 -482.4494845722388 43.1469 0.1144 3411 +3413 2 20.466615651081067 -482.6919102210305 43.1466 0.1345 3412 +3414 2 21.565315191555865 -481.3838056755597 43.3474 0.2039 3413 +3415 2 22.54256296941262 -481.432867533765 43.657 0.2288 3414 +3416 2 23.485794176928252 -481.34493194188246 43.8614 0.2288 3415 +3417 2 24.53592729378604 -480.20312651519 44.1101 0.2288 3416 +3418 2 25.58762351269793 -479.8735803997856 44.4858 0.2288 3417 +3419 2 26.233278303550154 -478.70730981292877 45.113 0.2288 3418 +3420 2 26.453076258202017 -477.01796327584196 45.7052 0.2288 3419 +3421 2 26.541220433479708 -475.57313754292306 46.144 0.2288 3420 +3422 2 26.549832226873757 -474.26154309273096 46.4573 0.2288 3421 +3423 2 26.6340513278946 -472.8100399780049 46.6603 0.2288 3422 +3424 2 26.671975664784796 -471.4391018568361 46.7678 0.2288 3423 +3425 2 26.779714195515716 -469.9422118274166 46.8126 0.2288 3424 +3426 2 26.921006900574497 -468.6705859631808 46.839 0.2288 3425 +3427 2 27.17506099305731 -467.5159794912765 46.8695 0.2288 3426 +3428 2 27.412228984318407 -466.3532614719106 46.909 0.2288 3427 +3429 2 27.598380676089874 -465.1744504416789 46.982 0.2288 3428 +3430 2 27.6946682235607 -463.91905546468854 47.0744 0.1595 3429 +3431 2 27.967835145155753 -462.82908473525487 47.1808 0.1192 3430 +3432 2 28.44605114654396 -461.9679700581147 47.297 0.1144 3431 +3433 2 28.972433745711893 -461.16562650215184 47.4216 0.1144 3432 +3434 2 29.444501046535915 -459.9589952681839 47.5681 0.1144 3433 +3435 2 29.589495287106395 -458.4320065001452 47.7977 0.1144 3434 +3436 2 29.2997137643451 -457.60552820706386 48.1242 0.1144 3435 +3437 2 28.878916754552144 -456.10091244398063 48.4448 0.1144 3436 +3438 2 28.563344533357565 -454.60841730125964 48.7225 0.1144 3437 +3439 2 28.45461554398355 -453.21712630818524 48.9616 0.1144 3438 +3440 2 28.879982442436386 -452.30687165106144 49.175 0.1144 3439 +3441 2 29.39135318307813 -451.32171265236883 49.3898 0.1144 3440 +3442 2 29.446304281435676 -449.9500974737917 49.6728 0.1144 3441 +3443 2 29.700713960696568 -448.35857007264883 50.0416 0.1144 3442 +3444 2 29.801064141086737 -446.9454823692032 50.4398 0.1144 3443 +3445 2 29.82468779300691 -445.6304864204378 50.8628 0.1144 3444 +3446 2 30.0114740776974 -444.04138747924696 51.3013 0.1144 3445 +3447 2 30.35584239885801 -442.6640088879085 51.7723 0.1144 3446 +3448 2 30.580900984171663 -442.449337889725 51.9744 0.1144 3447 +3449 2 31.232066183245607 -441.85644425311557 52.4499 0.1144 3448 +3450 2 31.507157304302396 -440.4094963379922 52.747 0.1144 3449 +3451 2 31.97218873998066 -438.6218770625052 53.0057 0.1144 3450 +3452 2 32.55654441940411 -437.2906952380161 53.2596 0.1144 3451 +3453 2 33.12476901945834 -436.5559838759693 53.501 0.1144 3452 +3454 2 33.39005675962229 -435.31488137151416 53.772 0.1144 3453 +3455 2 33.26817913315846 -434.10093180419045 54.1276 0.1144 3454 +3456 2 33.18546359373022 -432.7372977755496 54.488 0.1144 3455 +3457 2 33.694387861855986 -431.31874205327046 54.8542 0.1144 3456 +3458 2 34.069863192291976 -429.77483196475305 55.2726 0.1144 3457 +3459 2 34.420071482421854 -428.79829503766774 55.8054 0.1144 3458 +3460 2 34.12392082193432 -427.36044061624625 56.2604 0.1144 3459 +3461 2 33.61136490974427 -426.5641081049096 56.6068 0.1144 3460 +3462 2 33.317085390369186 -425.5517863667919 56.9643 0.1144 3461 +3463 2 32.68844134936043 -424.0291937627519 57.2547 0.1144 3462 +3464 2 32.190271314990184 -422.9414456070247 57.5193 0.1144 3463 +3465 2 31.75321969531145 -422.257275540333 57.7108 0.1144 3464 +3466 2 31.60773124312165 -421.0584301150912 57.869 0.1144 3465 +3467 2 31.052722762558236 -419.9728003753408 58.0068 0.1144 3466 +3468 2 30.60526458193277 -420.1732099100896 58.2823 0.1144 3467 +3469 2 29.74576423137282 -421.5432611315303 58.97 0.1144 3468 +3470 2 28.869290177694907 -422.4074246515196 59.4121 0.1144 3469 +3471 2 28.049472879162746 -422.72841696300316 59.7512 0.1144 3470 +3472 2 27.318149317498715 -423.4027999802532 60.0127 0.1144 3471 +3473 2 26.611078999459686 -424.8519320304482 60.1787 0.1144 3472 +3474 2 25.90565156039118 -426.24124561413703 60.2487 0.1144 3473 +3475 2 25.200990069737962 -427.1218861333185 60.2224 0.1144 3474 +3476 2 24.495647823519214 -428.53527939243725 60.1166 0.1144 3475 +3477 2 23.790357943113207 -429.79800125490505 59.9528 0.1144 3476 +3478 2 23.131587058119578 -430.3994724595586 59.689 0.1144 3477 +3479 2 22.53105344414358 -431.07614621951006 59.2735 0.1144 3478 +3480 2 21.95074877853989 -432.1680536074739 58.7364 0.1144 3479 +3481 2 21.55999119564948 -433.37885118509246 58.1784 0.1144 3480 +3482 2 21.379444315002623 -434.8193639601703 57.6691 0.1144 3481 +3483 2 21.232093612859053 -436.2485391371829 57.2166 0.1144 3482 +3484 2 21.09031558733954 -437.680907198516 56.8249 0.1144 3483 +3485 2 20.992374234335283 -439.0882014414223 56.495 0.1144 3484 +3486 2 20.902902114848168 -440.4949839506887 56.2089 0.1144 3485 +3487 2 20.814091212150956 -441.8940257529132 55.9468 0.1144 3486 +3488 2 20.72519511660402 -443.14390554788554 55.6984 0.1144 3487 +3489 2 20.636927410809832 -444.3944595766769 55.4616 0.1144 3488 +3490 2 20.547094193915072 -445.6434405045698 55.2373 0.1144 3489 +3491 2 20.45838019786342 -446.8965179689684 55.027 0.1144 3490 +3492 2 20.369175370721518 -448.1785927925391 54.833 0.1144 3491 +3493 2 20.23077922255583 -449.4729101001436 54.6734 0.1144 3492 +3494 2 20.035273541732124 -450.7361655256119 54.5639 0.1144 3493 +3495 2 19.827773680745246 -451.9913582970678 54.4981 0.1144 3494 +3496 2 19.61987989531367 -453.20301740542004 54.4664 0.1144 3495 +3497 2 19.412071302731924 -454.7750756238462 54.4603 0.1144 3496 +3498 2 19.203601493360217 -456.35792229290746 54.4726 0.1144 3497 +3499 2 18.99570770792865 -457.957198147261 54.4961 0.1144 3498 +3500 2 18.788207846941813 -459.4139126590781 54.5308 0.1144 3499 +3501 2 18.579738037570106 -460.5753639263809 54.5818 0.1144 3500 +3502 2 18.41194105147531 -461.7695279975564 54.6518 0.1144 3501 +3503 2 18.441593253972407 -463.1154397930165 54.7431 0.1144 3502 +3504 2 18.509346891640725 -464.48967415908163 54.8542 0.1144 3503 +3505 2 18.683081032296403 -465.92208166575324 55.0813 0.1144 3504 +3506 2 18.883228057972115 -467.2907151108249 55.438 0.1144 3505 +3507 2 18.83496885708184 -468.6495489326737 55.7301 0.1144 3506 +3508 2 18.85482078026918 -469.976046013844 55.9658 0.1144 3507 +3509 2 18.53794381825861 -471.03809899192765 56.1526 0.1144 3508 +3510 2 18.249224942817442 -472.1188342141785 56.296 0.1144 3509 +3511 2 18.03753891839477 -473.2760360126521 56.4007 0.1144 3510 +3512 2 17.85125749294064 -474.45467395440505 56.5953 0.1144 3511 +3513 2 17.68840169213411 -475.65388302269537 56.8145 0.1144 3512 +3514 2 17.55410651455444 -476.880201195296 56.9892 0.1144 3513 +3515 2 17.588573270240182 -478.25064313438116 57.1234 0.1144 3514 +3516 2 17.428041103969647 -479.5038867345646 57.2194 0.1144 3515 +3517 2 16.79020134363566 -479.0371442281138 58.4984 0.1144 3516 +3518 2 16.043992164782118 -480.01422651374554 59.6691 0.1144 3517 +3519 2 15.406419484008973 -481.79714263870574 60.3761 0.1144 3518 +3520 2 15.51634668961661 -482.46829085792996 61.7053 0.1144 3519 +3521 2 16.486536370416815 -480.6302971689114 62.7122 0.1144 3520 +3522 2 17.449695696700836 -480.7903112135739 63.7655 0.1144 3521 +3523 2 18.40987327324199 -480.96570893832165 64.8354 0.1144 3522 +3524 2 19.060810612915063 -480.6052983724096 66.1668 0.1144 3523 +3525 2 18.681388686533055 -482.13559835511427 67.2493 0.1144 3524 +3526 2 18.277834353907426 -483.0640457605626 68.0814 0.1144 3525 +3527 2 17.868349964358526 -483.7907338839874 69.2418 0.1144 3526 +3528 2 17.957009593998848 -482.6213562408381 70.4864 0.1144 3527 +3529 2 17.89208373988138 -481.4432423612539 71.9186 0.1144 3528 +3530 2 17.166892281295393 -480.24949626755125 73.4586 0.1144 3529 +3531 2 16.363006654929425 -479.12553001910396 75.0036 0.1144 3530 +3532 2 15.939780693112567 -479.1170617416233 76.9432 0.1144 3531 +3533 2 15.103494444024502 -479.87375062877686 78.3031 0.1144 3532 +3534 2 14.929336523968187 -480.98958671959224 79.3503 0.1144 3533 +3535 2 14.785404651771893 -482.17729593230376 80.2729 0.1144 3534 +3536 2 14.638091594758379 -483.3805358606457 81.0947 0.1144 3535 +3537 2 14.490505734770036 -484.59336912627197 81.8356 0.1144 3536 +3538 2 14.341985855017063 -485.879490586326 82.5216 0.1144 3537 +3539 2 14.193072050819403 -487.47894566068146 83.1832 0.1144 3538 +3540 2 14.04379714921405 -489.08906331524884 83.8275 0.1144 3539 +3541 2 13.893819591569038 -490.7065516681414 84.4516 0.1144 3540 +3542 2 14.157388435160023 -491.4737262945361 85.1004 0.1144 3541 +3543 2 15.048628470598151 -492.48595040266594 85.6024 0.1144 3542 +3544 2 15.94405466947207 -493.01770305319087 86.0572 0.1144 3543 +3545 2 16.841570037574016 -493.5637859966877 86.4676 0.1144 3544 +3546 2 17.739405063833797 -494.9523655966143 86.8384 0.1144 3545 +3547 2 18.63941445217138 -496.4668548224804 87.1732 0.1144 3546 +3548 2 19.540904158759766 -495.9481050880532 87.481 0.1144 3547 +3549 2 20.42759383177127 -497.4257123754892 88.0636 0.1144 3548 +3550 2 17.209809352954906 -480.6966422092687 57.2782 0.1144 3516 +3551 2 16.839422071219012 -481.7502058766194 57.3359 0.1144 3550 +3552 2 16.445192600032048 -482.7690370946634 57.4067 0.1144 3551 +3553 2 16.1577041643144 -484.3442955442114 57.4616 0.1144 3552 +3554 2 15.756623336523548 -486.38954658539063 57.4361 0.1144 3553 +3555 2 15.332585074816688 -487.7958647921907 57.3804 0.1144 3554 +3556 2 14.999186210575129 -488.87349952730983 57.3289 0.1144 3555 +3557 2 14.854814849127939 -490.1421377113782 57.2824 0.1144 3556 +3558 2 14.609720821252616 -491.31511435733853 57.2471 0.1144 3557 +3559 2 14.35522043851234 -492.479143178769 57.2292 0.1144 3558 +3560 2 14.074033675240702 -494.2926180431679 57.2286 0.1144 3559 +3561 2 13.731228456134183 -496.273131516401 57.2348 0.1144 3560 +3562 2 13.389936382315504 -497.80950258591446 57.2432 0.1144 3561 +3563 2 13.078185806671573 -498.92604102657737 57.2552 0.1144 3562 +3564 2 13.1449499571794 -500.3652240228285 57.272 0.1144 3563 +3565 2 13.375754600289874 -501.89177740365835 57.2958 0.1144 3564 +3566 2 13.667407956700169 -503.0474160102913 57.328 0.1144 3565 +3567 2 13.96765717872719 -503.787443744401 57.3726 0.1144 3566 +3568 2 14.188215252270489 -504.71562610435524 57.4381 0.1144 3567 +3569 2 14.260155053374655 -505.9716596082286 57.5333 0.1144 3568 +3570 2 14.886699300366136 -507.2161930702042 57.7223 0.1144 3569 +3571 2 15.522018109113077 -508.71730681297646 57.993 0.1144 3570 +3572 2 16.10552795138788 -508.9402820243505 58.427 0.1144 3571 +3573 2 16.644678155556733 -510.28649731888197 58.9898 0.1144 3572 +3574 2 16.433628724651648 -511.3862010895525 59.8408 0.1144 3573 +3575 2 17.225004325728936 -511.78989388189194 60.5637 0.1144 3574 +3576 2 18.367097663796216 -512.6204472830588 60.5144 0.1144 3575 +3577 2 19.509176281180824 -511.451536090599 60.4794 0.1144 3576 +3578 2 20.64608096447903 -512.1555877366326 60.4206 0.1144 3577 +3579 2 21.780184594771608 -511.53069349316445 60.3896 0.1144 3578 +3580 2 22.92076858167074 -512.177665203548 60.3994 0.1144 3579 +3581 2 24.061924798390248 -512.4527620614887 60.4758 0.1144 3580 +3582 2 25.200225204929822 -511.91598674548345 60.6603 0.1144 3581 +3583 2 26.324223618437426 -511.6263743455808 60.9028 0.1144 3582 +3584 2 27.42059412042081 -512.1135497086694 61.0649 0.1144 3583 +3585 2 28.16832754910383 -513.5048500616455 61.0621 0.1144 3584 +3586 2 28.01757714734069 -514.6960366283256 60.8723 0.1144 3585 +3587 2 27.50536309041364 -515.5541556433709 60.608 0.1144 3586 +3588 2 27.027455820620347 -516.4717425007651 60.3512 0.1144 3587 +3589 2 26.619597902512396 -517.688808200239 60.1432 0.1144 3588 +3590 2 26.364466028436233 -519.0262421745138 59.9897 0.1144 3589 +3591 2 26.307610961929242 -520.5039189475272 59.8825 0.1144 3590 +3592 2 26.289287183658402 -521.9145237725912 59.7993 0.1144 3591 +3593 2 26.27751464260925 -523.3114575223492 59.7114 0.1144 3592 +3594 2 26.35425807033908 -524.5665477175286 59.5795 0.1144 3593 +3595 2 26.510439382353525 -525.989601927922 59.3782 0.1144 3594 +3596 2 26.53822285278465 -527.3863617107456 59.1452 0.1144 3595 +3597 2 26.59527742746227 -528.7838452940506 58.9039 0.1144 3596 +3598 2 26.881804397505817 -530.1845694962004 58.6611 0.1144 3597 +3599 2 27.00033917681911 -531.5926706319608 58.4623 0.1144 3598 +3600 2 27.05570470987961 -533.0386598289548 58.3108 0.1144 3599 +3601 2 27.228192997592608 -534.5555331236735 58.1879 0.1144 3600 +3602 2 27.582874940010058 -536.1578715489899 58.074 0.1144 3601 +3603 2 28.055795063803405 -537.7954102132758 57.9547 0.1144 3602 +3604 2 28.38677857859852 -539.3836409338331 57.7889 0.1144 3603 +3605 2 28.63027695632869 -540.8234265251375 57.5361 0.1144 3604 +3606 2 28.93471785242111 -541.7657121570068 57.2118 0.1144 3605 +3607 2 29.131701028858572 -542.8729400536583 56.875 0.1144 3606 +3608 2 29.293675454659184 -544.0725283892143 56.597 0.1144 3607 +3609 2 29.543810262460756 -545.477784538035 56.4032 0.1144 3608 +3610 2 29.794159996794818 -546.8563257321448 56.289 0.1144 3609 +3611 2 29.880180045707 -548.2532414481523 56.2705 0.1144 3610 +3612 2 29.604069712035756 -549.6025606620684 56.315 0.1144 3611 +3613 2 29.339501757640612 -550.9852244646318 56.3604 0.1144 3612 +3614 2 29.203332337365453 -552.3618603686992 56.3777 0.1144 3613 +3615 2 29.234635243812892 -553.79084383492 56.3539 0.1144 3614 +3616 2 29.363560354522022 -555.1880810523866 56.2652 0.1144 3615 +3617 2 29.50913399956171 -556.5912584470974 56.1151 0.1144 3616 +3618 2 29.645089464787084 -558.0076728841747 55.9432 0.1144 3617 +3619 2 30.010164147646847 -559.2721567671906 55.769 0.1144 3618 +3620 2 30.421196806750235 -560.495395217871 55.5302 0.1144 3619 +3621 2 30.50586868014076 -561.768136972269 55.167 0.1144 3620 +3622 2 30.513117572187795 -563.1378823518787 54.8512 0.1144 3621 +3623 2 30.531456350087293 -564.5139160831536 54.6059 0.1144 3622 +3624 2 30.5494012035421 -565.8777261463769 54.4163 0.1144 3623 +3625 2 30.454050777418985 -567.3481363163723 54.2724 0.1144 3624 +3626 2 30.298589530119337 -568.8652259924947 54.1677 0.1144 3625 +3627 2 30.18782470881272 -570.3517951341602 54.0173 0.1144 3626 +3628 2 30.279852798043507 -571.6398121894994 53.8636 0.1144 3627 +3629 2 30.374107615164753 -572.9396088912728 53.7211 0.1144 3628 +3630 2 30.343756829693795 -574.366298160374 53.5346 0.1144 3629 +3631 2 30.14071903670062 -575.8888115210057 53.3537 0.1144 3630 +3632 2 30.111699297022113 -577.2909084045064 53.1334 0.1144 3631 +3633 2 30.514009458409205 -578.2536546257219 52.9614 0.1144 3632 +3634 2 30.507754126588345 -579.661052039315 52.834 0.1144 3633 +3635 2 30.20651741285675 -581.2431784800057 52.7447 0.1144 3634 +3636 2 30.07248952762224 -582.7301578713793 52.6868 0.1144 3635 +3637 2 29.90728036682566 -584.2399086357914 52.6442 0.1144 3636 +3638 2 30.316226958284155 -585.2358129828283 52.6089 0.1144 3637 +3639 2 30.80442081701549 -586.5624227613243 52.5664 0.1144 3638 +3640 2 30.469731547020324 -587.2148729316148 52.4437 0.1144 3639 +3641 2 29.98051085262942 -588.8225990629642 52.316 0.1144 3640 +3642 2 29.570065109223414 -590.1925656459672 52.1867 0.1144 3641 +3643 2 29.38346092402826 -591.6547298266494 52.0654 0.1144 3642 +3644 2 29.504404530727463 -592.9745996066841 51.9501 0.1144 3643 +3645 2 29.888842205315438 -594.244270878168 51.8109 0.1144 3644 +3646 2 29.933454924499188 -595.4931380306448 51.6138 0.1144 3645 +3647 2 29.641304907474726 -596.9931586058074 51.3918 0.1144 3646 +3648 2 29.593979726349076 -598.4000099250253 51.1823 0.1144 3647 +3649 2 29.692644245651316 -599.7339464875232 51.0006 0.1144 3648 +3650 2 29.810779589890306 -601.059300497529 50.8491 0.1144 3649 +3651 2 29.92949095806942 -602.3905558164811 50.7262 0.1144 3650 +3652 2 30.048254692061253 -603.7313913070303 50.6257 0.1144 3651 +3653 2 30.166966060240252 -605.108323623893 50.5366 0.1144 3652 +3654 2 30.463654407001254 -606.7304635281635 50.4549 0.1144 3653 +3655 2 30.89002409341832 -607.8946253357648 50.3773 0.1144 3654 +3656 2 31.342178275102665 -608.7598749130813 50.2984 0.1144 3655 +3657 2 31.814599742825774 -609.8183558355374 50.2082 0.1144 3656 +3658 2 32.429742661549774 -611.3328083249604 50.0811 0.1144 3657 +3659 2 33.123462326007356 -612.0712757255917 49.9097 0.1144 3658 +3660 2 33.571338948239855 -613.4340355691254 49.6919 0.1144 3659 +3661 2 33.85386185434295 -615.0438752821735 49.4413 0.1144 3660 +3662 2 34.113038818018765 -616.6421126340742 49.173 0.1144 3661 +3663 2 34.37252451328954 -617.9926173147625 48.902 0.1144 3662 +3664 2 34.63161628411558 -619.272437493864 48.6427 0.1144 3663 +3665 2 34.83568528246499 -620.5845653531985 48.4042 0.1144 3664 +3666 2 35.051566361482145 -622.172087206934 48.2056 0.1144 3665 +3667 2 35.40210589406382 -623.8334377465835 48.0878 0.1144 3666 +3668 2 35.81907232719902 -625.02447768928 48.0522 0.1144 3667 +3669 2 36.29987473400651 -625.4436421447928 48.0488 0.1144 3668 +3670 2 36.81176391877709 -626.764064161498 48.0525 0.1144 3669 +3671 2 37.2406690646796 -628.4492932997887 48.048 0.1144 3670 +3672 2 36.78640957320578 -629.3516505785358 48.0102 0.1144 3671 +3673 2 36.17914882567893 -630.5018890082533 47.9427 0.1144 3672 +3674 2 35.47100382762963 -632.6619571319318 47.9405 0.1144 3673 +3675 2 34.59132758704681 -633.0920280724354 48.0474 0.1144 3674 +3676 2 34.12534602584804 -634.33632955847 47.5916 0.1144 3675 +3677 2 34.484827800771406 -635.5778573302024 47.2629 0.1144 3676 +3678 2 34.21409573259282 -636.8671413493997 47.0632 0.1144 3677 +3679 2 33.75797741164273 -638.2369880597734 46.8986 0.1144 3678 +3680 2 33.96756602826697 -639.5752772875323 46.8266 0.1144 3679 +3681 2 34.27432194668278 -640.9207882616488 46.8605 0.1144 3680 +3682 2 34.580992672248826 -642.5255225893569 46.9336 0.1144 3681 +3683 2 34.91826244627073 -644.1902308025319 46.9123 0.1144 3682 +3684 2 35.27634270323449 -645.5620499550253 46.7698 0.1144 3683 +3685 2 35.63583919884062 -646.2665755119613 46.5438 0.1144 3684 +3686 2 36.0455408121515 -647.076437562117 46.3221 0.1144 3685 +3687 2 36.54446896995723 -648.7645026841935 46.2162 0.1144 3686 +3688 2 37.08393952482058 -650.3673328238028 46.2039 0.1144 3687 +3689 2 37.64335770756492 -650.9283641407453 46.2664 0.1144 3688 +3690 2 38.19992859764581 -652.3061862074157 46.5559 0.1144 3689 +3691 2 31.693493894929688 -586.4524392587309 53.9804 0.1144 3639 +3692 2 32.81228583140251 -586.2718781255179 54.4354 0.1144 3691 +3693 2 33.5641886132508 -586.2544893867067 54.6353 0.1144 3692 +3694 2 33.37695224418316 -587.6734537900318 54.871 0.1144 3693 +3695 2 33.96107164765668 -588.6721510458729 55.1869 0.1144 3694 +3696 2 35.01210774505629 -589.6052247588555 55.5475 0.1144 3695 +3697 2 35.78108733412742 -590.4316087777845 55.9328 0.1144 3696 +3698 2 36.382905026895784 -591.7625328982558 56.3156 0.1144 3697 +3699 2 37.2213514267943 -591.771381197817 56.7129 0.1144 3698 +3700 2 38.32351704316246 -592.3593919316197 57.1004 0.1144 3699 +3701 2 39.454467437028 -592.4263272724247 57.5033 0.1144 3700 +3702 2 40.58255340850089 -592.2281064346488 57.9608 0.1144 3701 +3703 2 41.70845409133308 -592.7580474921672 58.462 0.1144 3702 +3704 2 42.831111148010535 -591.8493271994289 58.9988 0.1144 3703 +3705 2 43.95118037938988 -592.1477390845547 59.5661 0.1144 3704 +3706 2 45.06925734818692 -592.2435134904767 60.1586 0.1144 3705 +3707 2 46.185225608980254 -591.5564738144092 60.772 0.1144 3706 +3708 2 47.30017155557597 -591.4553733966864 61.4079 0.1144 3707 +3709 2 48.3965529721443 -591.8262104534782 62.1068 0.1144 3708 +3710 2 49.30101022235083 -591.2807422912883 62.8978 0.1144 3709 +3711 2 50.07749329855773 -590.2659826590184 63.7627 0.1144 3710 +3712 2 50.84867409206871 -589.0039643361517 64.6797 0.1144 3711 +3713 2 51.616649597091765 -587.8566966942855 65.6256 0.1144 3712 +3714 2 52.3844875434522 -586.639649608739 66.575 0.1144 3713 +3715 2 53.15473121561548 -585.8037515657671 67.5016 0.1144 3714 +3716 2 53.93027717047466 -585.4462829215015 68.3782 0.1144 3715 +3717 2 54.711348946774734 -584.6516418770875 69.1863 0.1144 3716 +3718 2 55.50007636576079 -583.2323913439649 69.9079 0.1144 3717 +3719 2 55.565830234761215 -581.9099064481619 70.4679 0.1144 3718 +3720 2 55.068682514588616 -581.0271769001283 70.6474 0.1144 3719 +3721 2 54.56164932225643 -579.9589466309687 70.6115 0.1144 3720 +3722 2 54.054883422269455 -578.4091573518436 70.427 0.1144 3721 +3723 2 53.551805029648136 -576.7403107401672 70.1557 0.1144 3722 +3724 2 53.04802398098712 -575.0676493060643 69.851 0.1144 3723 +3725 2 52.54468922258355 -574.1344155038028 69.5545 0.1144 3724 +3726 2 52.04763600001003 -573.0514525618838 68.9926 0.1144 3725 +3727 2 15.94067657363147 -511.65839105339325 60.1538 0.1144 3574 +3728 2 14.832023781965258 -512.0087900994578 60.8306 0.1144 3727 +3729 2 13.722133341121083 -512.4268853103413 61.453 0.1144 3728 +3730 2 12.620452352677054 -512.0834314565329 62.0192 0.1144 3729 +3731 2 11.522713852307712 -511.1387133817631 62.5254 0.1144 3730 +3732 2 10.60901654274936 -511.811962627435 63.2447 0.1144 3731 +3733 2 10.01569979243003 -513.0956654421417 64.5302 0.1144 3732 +3734 2 10.068869547833522 -512.8250898691949 64.9936 0.1144 3733 +3735 2 10.36522424309624 -511.6363302692893 65.8224 0.1144 3734 +3736 2 10.727768272021274 -509.7672289981865 66.3146 0.1144 3735 +3737 2 10.87174019839416 -508.1681051821506 66.5977 0.1144 3736 +3738 2 11.380793507666102 -506.78477318304107 66.7304 0.1144 3737 +3739 2 12.287066431589214 -506.57968175959195 66.9214 0.1144 3738 +3740 2 12.997334024308252 -508.1420256050657 67.3028 0.1144 3739 +3741 2 13.01593088449981 -509.49350882896965 67.9762 0.1144 3740 +3742 2 12.695298636091593 -510.5141429153885 68.8615 0.1144 3741 +3743 2 12.320412351453523 -511.36295800978314 70.1582 0.1144 3742 +3744 2 12.24402068157636 -512.4798332439389 71.5602 0.1144 3743 +3745 2 12.622784380934567 -513.9627652705902 72.5614 0.1144 3744 +3746 2 13.142137898842623 -515.535508558655 73.3452 0.1144 3745 +3747 2 12.848649626571039 -516.464182635035 74.0309 0.1144 3746 +3748 2 12.169363986057643 -517.0308334555785 74.8462 0.1144 3747 +3749 2 12.738453317976376 -517.9519244286741 74.8798 0.1144 3748 +3750 2 13.6909377076689 -518.6036419966141 75.0476 0.1144 3749 +3751 2 14.667502830328967 -518.831826838849 75.1304 0.1144 3750 +3752 2 15.643938219306367 -519.6392674179087 75.2674 0.1144 3751 +3753 2 16.618414172738408 -520.069164485623 75.4617 0.1144 3752 +3754 2 17.589547279020003 -521.1423122381175 75.7154 0.1144 3753 +3755 2 18.33358397259928 -522.7387990399047 76.0897 0.1144 3754 +3756 2 18.74551472284722 -523.7751439054075 76.5806 0.1144 3755 +3757 2 19.15507808495904 -524.2315267396348 77.1803 0.1144 3756 +3758 2 19.562857907854717 -525.4124989224439 77.8733 0.1144 3757 +3759 2 19.997538345277636 -526.9895087656672 78.605 0.1144 3758 +3760 2 20.441478274153702 -528.4995981865998 79.389 0.1144 3759 +3761 2 21.378155640301838 -527.7218062088086 80.9332 0.1144 3760 +3762 2 22.121708309504278 -528.5608029268823 82.551 0.1144 3761 +3763 2 22.6623106986206 -529.6087238465727 84.1422 0.1144 3762 +3764 2 22.698402120248126 -530.5738443671959 85.9258 0.1144 3763 +3765 2 22.009369560547984 -531.1808044383049 87.5188 0.1144 3764 +3766 2 21.19535488762871 -531.2369160242155 88.9935 0.1144 3765 +3767 2 20.376613955953644 -532.8667218514113 90.4408 0.1144 3766 +3768 2 19.56853064801965 -532.9351725513934 91.8845 0.1144 3767 +3769 2 18.935974129043124 -534.1064034082071 93.4144 0.1144 3768 +3770 2 18.37891059723001 -535.9205287409678 94.9934 0.1144 3769 +3771 2 17.82166496592161 -536.4403257857601 96.5804 0.1144 3770 +3772 2 17.18394613195826 -536.9117870822038 98.1658 0.1144 3771 +3773 2 16.249833364887223 -537.0015180130247 99.5646 0.1144 3772 +3774 2 15.273161912744163 -537.9743485390434 100.8753 0.1144 3773 +3775 2 14.2782240493573 -537.690682823391 102.102 0.1144 3774 +3776 2 13.26792725818273 -539.2191015436372 103.2419 0.1144 3775 +3777 2 12.517013750710621 -539.6908177946768 104.2306 0.1144 3776 +3778 2 12.062446220178446 -540.5927724958716 104.9132 0.1144 3777 +3779 2 11.604315405333718 -541.7189928804568 105.4522 0.1144 3778 +3780 2 11.142767477051642 -542.967717810005 105.8809 0.1144 3779 +3781 2 10.678400359746314 -544.1543685352776 106.2334 0.1144 3780 +3782 2 10.213776876658905 -545.980891130181 106.5428 0.1144 3781 +3783 2 9.748078713561178 -547.3164965153436 106.8388 0.1144 3782 +3784 2 9.284031254413797 -548.6112323419932 107.1342 0.1144 3783 +3785 2 8.819898602416636 -549.8139521843764 107.4276 0.1144 3784 +3786 2 8.354285632168676 -551.5445046163297 107.718 0.1144 3785 +3787 2 7.888639834883676 -553.0992045235253 108.0106 0.1144 3786 +3788 2 7.424592375736339 -554.0299854529339 108.2976 0.1144 3787 +3789 2 6.957957091290787 -554.9591759676032 108.5728 0.1144 3788 +3790 2 6.493463341885995 -555.9160576558976 108.8318 0.1144 3789 +3791 2 6.0274564471933445 -557.1966562858156 109.0726 0.1144 3790 +3792 2 5.566217250506188 -558.4948070962771 109.5335 0.1144 3791 +3793 2 12.120605045797703 -517.9596654896167 75.8596 0.1144 3748 +3794 2 11.76485621354415 -519.0884650571179 76.4929 0.1144 3793 +3795 2 11.197336678576104 -520.1055756393536 77.0342 0.1144 3794 +3796 2 11.222296473327734 -521.4441970239806 77.4948 0.1144 3795 +3797 2 10.893286387418318 -522.604400827718 78.0895 0.1144 3796 +3798 2 10.439435541071855 -524.5078932340057 78.7013 0.1144 3797 +3799 2 9.988446015534944 -525.9986913407483 79.1101 0.1144 3798 +3800 2 9.357163388108235 -526.9776468372811 79.4752 0.1144 3799 +3801 2 8.638410030547524 -528.3396742500742 79.8697 0.1144 3800 +3802 2 7.9124825566418355 -529.7964874160918 80.3264 0.1144 3801 +3803 2 7.219389471295251 -530.3180698479226 81.0995 0.1144 3802 +3804 2 6.581390323128943 -530.8544851391688 82.224 0.1144 3803 +3805 2 6.097121426837477 -531.8651447277106 83.3994 0.1144 3804 +3806 2 5.79737082607498 -533.0732829635178 84.4472 0.1144 3805 +3807 2 5.555102474477666 -534.6277735714389 85.3866 0.1144 3806 +3808 2 5.209029698480711 -536.3356166593586 86.2442 0.1144 3807 +3809 2 4.673622357256377 -537.5845801957823 87.0114 0.1144 3808 +3810 2 4.072820758398652 -538.5218351036343 87.7103 0.1144 3809 +3811 2 3.5523541109967276 -540.0314094092384 88.3957 0.1144 3810 +3812 2 3.1692936100420432 -541.7876592921971 89.1024 0.1144 3811 +3813 2 2.8411823078136855 -543.2029921735052 89.8316 0.1144 3812 +3814 2 2.5134649300301177 -544.2518957239316 90.5778 0.1144 3813 +3815 2 2.160615756252678 -545.2694663813164 91.3363 0.1144 3814 +3816 2 1.6280659417181518 -546.258651665004 92.1141 0.1144 3815 +3817 2 0.8461508491327763 -547.9798284328216 92.8984 0.1144 3816 +3818 2 -0.0018539773342283183 -548.6879351714111 93.6606 0.1144 3817 +3819 2 -0.8008341690536191 -549.0213096506 94.3634 0.1144 3818 +3820 2 -1.534258519045089 -550.0805500583177 94.9704 0.1144 3819 +3821 2 -2.246326182304756 -552.130268593711 95.4957 0.1144 3820 +3822 2 -2.8317157950254455 -552.8558307116939 95.9756 0.1144 3821 +3823 2 -3.1083669165531873 -553.9791257191148 96.4393 0.1144 3822 +3824 2 -3.2151745291025726 -555.3466938380506 96.8968 0.1144 3823 +3825 2 -3.3829362791137427 -556.8085738963989 97.3526 0.1144 3824 +3826 2 -3.689613526740299 -558.5681059586575 97.8146 0.1144 3825 +3827 2 -4.112627065203089 -560.5120304702481 98.2898 0.1144 3826 +3828 2 -4.572535216097787 -561.6415221791842 98.7815 0.1144 3827 +3829 2 -4.9980873156290535 -562.5986118135255 99.3283 0.1144 3828 +3830 2 -5.361403496135715 -563.6247732110223 99.9709 0.1144 3829 +3831 2 -5.701147881119514 -564.6679384916846 100.6964 0.1144 3830 +3832 2 -5.955881012657986 -565.8049187837804 101.4423 0.1144 3831 +3833 2 -6.116248901698832 -567.039117945908 102.1639 0.1144 3832 +3834 2 -6.208993396169337 -568.3337091934088 102.8622 0.1144 3833 +3835 2 -5.824310643461992 -569.8064630454115 103.581 0.1144 3834 +3836 2 -4.987021109536645 -571.3361051376767 104.2821 0.1144 3835 +3837 2 -4.584755802734154 -572.8140697232413 105.0017 0.1144 3836 +3838 2 -4.7907024642565545 -573.9890818568254 105.6821 0.1144 3837 +3839 2 -5.130752479252173 -575.0415217671208 106.3297 0.1144 3838 +3840 2 -5.41270898505892 -576.1705687780296 106.9768 0.1144 3839 +3841 2 -5.592589138286257 -577.3946777431455 107.6074 0.1144 3840 +3842 2 -5.682921703787816 -578.7117916772693 108.206 0.1144 3841 +3843 2 -5.745132111340002 -580.060647124558 108.7761 0.1144 3842 +3844 2 -5.806052912349472 -581.4091090087578 109.3252 0.1144 3843 +3845 2 -5.867420003616417 -582.7598088329606 109.8569 0.1144 3844 +3846 2 -5.947811629562629 -584.0959650819229 110.3738 0.1144 3845 +3847 2 -6.099084304379971 -585.3706435534484 110.8811 0.1144 3846 +3848 2 -6.277935940243587 -586.6202346349511 111.3767 0.1144 3847 +3849 2 -6.4602601569404285 -587.8690329543527 111.8552 0.1144 3848 +3850 2 -6.62681749325872 -589.1458210142987 112.308 0.1144 3849 +3851 2 -6.605852552394381 -590.5612754597665 112.6796 0.1144 3850 +3852 2 -6.5054435240792685 -592.0520733925077 112.9699 0.1144 3851 +3853 2 -6.397160824962768 -593.5552379545544 113.2062 0.1144 3852 +3854 2 -6.28882576003349 -595.0638491282946 113.4148 0.1144 3853 +3855 2 -5.932796334630993 -596.6728433431944 113.671 0.1144 3854 +3856 2 -5.3379761693416725 -598.3315985120546 114.0233 0.1144 3855 +3857 2 -4.686888071169761 -599.9958788885915 114.459 0.1144 3856 +3858 2 -4.03562097508555 -600.6665246100605 114.9389 0.1144 3857 +3859 2 -3.556924867235118 -601.4368287539821 115.3846 0.1144 3858 +3860 2 -3.534843807110825 -602.8150544304696 115.691 0.1144 3859 +3861 2 -3.589970801797527 -604.265430624302 115.8665 0.1144 3860 +3862 2 -3.6454065280791923 -605.7171416555049 115.9486 0.1144 3861 +3863 2 -3.700213864607953 -607.1669711064051 115.981 0.1144 3862 +3864 2 -3.7582374161877468 -608.6266419253373 116.004 0.1144 3863 +3865 2 -3.927238815975471 -610.1549805504676 116.1068 0.1144 3864 +3866 2 -4.2368509581617815 -612.0169148526479 116.3638 0.1144 3865 +3867 2 -4.562370640972297 -613.5906772426333 116.741 0.1144 3866 +3868 2 -4.885451770942964 -614.9419168113297 117.1876 0.1144 3867 +3869 2 -5.210792455841215 -616.0496993451736 117.6546 0.1144 3868 +3870 2 -5.534449609751917 -617.1526331218959 118.0967 0.1144 3869 +3871 2 -5.860278024157388 -618.2688955520968 118.4708 0.1144 3870 +3872 2 -6.11029491818217 -618.3054069484048 119.7249 0.1144 3871 +3873 2 -6.907678470588756 -618.559030060163 121.0236 0.1144 3872 +3874 2 -7.8015386666317355 -620.5123238702447 121.6572 0.1144 3873 +3875 2 -8.700701145370623 -620.8343181608032 122.2665 0.1144 3874 +3876 2 -9.596212045363991 -622.6037763953183 122.9284 0.1144 3875 +3877 2 -10.511952586266183 -623.1887911449054 123.5844 0.1144 3876 +3878 2 -11.50997861786825 -623.9971630504389 124.1397 0.1144 3877 +3879 2 -12.523904365114511 -624.4885405669395 124.5989 0.1144 3878 +3880 2 -13.54300576295715 -624.8660640891077 124.9872 0.1144 3879 +3881 2 -14.563620306087657 -625.6098526347336 125.3286 0.1144 3880 +3882 2 -15.585618260823338 -626.6677108995419 125.6478 0.1144 3881 +3883 2 -16.60761621555902 -627.0427258729976 125.9684 0.1144 3882 +3884 2 -17.628315951539292 -628.0124174833106 126.3125 0.1144 3883 +3885 2 -18.647279790719438 -628.3016330045359 126.6916 0.1144 3884 +3886 2 -19.693978664410587 -628.6795721168195 127.1211 0.1144 3885 +3887 2 -20.793437636382798 -629.6006104130344 127.6288 0.1144 3886 +3888 2 -21.870158226527842 -629.5719243508358 128.2305 0.1144 3887 +3889 2 -22.55819511358625 -631.2221103317406 129.0677 0.1144 3888 +3890 2 -23.19542451921751 -632.3704217988067 130.0253 0.1144 3889 +3891 2 -24.083362560328375 -633.1975652818902 130.8616 0.1144 3890 +3892 2 -25.032002859775062 -634.601361063159 131.5916 0.1144 3891 +3893 2 -25.986521465857763 -634.5811047417088 132.2406 0.1144 3892 +3894 2 -26.90238284414118 -634.5548568787156 133.247 0.1144 3893 +3895 2 -4.658978863738923 -618.5247220200181 118.5884 0.1144 3871 +3896 2 -3.5725148467531582 -617.0659959928881 118.4235 0.1144 3895 +3897 2 -2.4901072595205562 -616.9054364203353 118.0987 0.1144 3896 +3898 2 -1.4073293648272767 -615.7226807171902 117.6098 0.1144 3897 +3899 2 -0.3186392354764891 -616.3350481144507 116.8972 0.1144 3898 +3900 2 0.7546282949260785 -615.1729752459601 115.957 0.1144 3899 +3901 2 1.8094151800889406 -615.6921817083653 114.8832 0.1144 3900 +3902 2 2.854977809882186 -615.5949136388001 113.7553 0.1144 3901 +3903 2 3.9020090441305015 -615.0428168257736 112.6322 0.1144 3902 +3904 2 4.96150815990304 -614.906168488196 111.5904 0.1144 3903 +3905 2 6.038167487934018 -614.2114867906816 110.8136 0.1144 3904 +3906 2 7.119329914760478 -614.6459395621412 110.3452 0.1144 3905 +3907 2 8.211769837564361 -614.2012818393034 110.0999 0.1144 3906 +3908 2 9.307458802456253 -613.1751688961463 110.0406 0.1144 3907 +3909 2 10.404084888695976 -612.9390632945967 110.1338 0.1144 3908 +3910 2 11.497238394102432 -612.1388959599853 110.3514 0.1144 3909 +3911 2 12.585844638665513 -612.0144595218792 110.672 0.1144 3910 +3912 2 13.66995598819772 -610.8805285640035 111.0914 0.1144 3911 +3913 2 14.762743986551563 -610.7782602901548 111.7668 0.1144 3912 +3914 2 15.698838510067993 -611.5898462935695 113.2561 0.1144 3913 +3915 2 16.50071915376754 -611.4654323338959 115.1161 0.1144 3914 +3916 2 16.924677212989337 -612.6341771422874 116.7905 0.1144 3915 +3917 2 16.87335066105846 -613.8996243681966 117.9172 0.1144 3916 +3918 2 16.763722474412717 -615.1778240310638 118.7978 0.1144 3917 +3919 2 16.647373357382413 -616.477948401326 119.4738 0.1144 3918 +3920 2 16.530316073682776 -617.7878673860671 119.9867 0.1144 3919 +3921 2 16.412239577368794 -619.186941225874 120.3941 0.1144 3920 +3922 2 16.294515566249686 -620.6722700932935 120.755 0.1144 3921 +3923 2 16.175684048083262 -622.1638143576631 121.1092 0.1144 3922 +3924 2 16.058536060904295 -623.6567096489591 121.4685 0.1144 3923 +3925 2 15.939704542737822 -625.1436378964719 121.8358 0.1144 3924 +3926 2 15.871971415327778 -626.6060481545567 122.2124 0.1144 3925 +3927 2 15.845484033551521 -628.0275140440115 122.6028 0.1144 3926 +3928 2 15.831660660941054 -629.4330248581251 123.0149 0.1144 3927 +3929 2 15.817346457240284 -630.8405469548875 123.4624 0.1144 3928 +3930 2 15.803158885639093 -632.2435558900163 123.9599 0.1144 3929 +3931 2 15.789459043545065 -633.6376889537504 124.5199 0.1144 3930 +3932 2 15.775403614673017 -635.0097756451828 125.179 0.1144 3931 +3933 2 15.901055657862209 -636.2340183387375 126.0132 0.1144 3932 +3934 2 16.481652523736336 -637.143131395585 127.3331 0.1144 3933 +3935 2 17.179294462641252 -638.083789163226 128.9571 0.1144 3934 +3936 2 17.79332907510704 -638.2533597739466 130.8485 0.1144 3935 +3937 2 18.235491578943886 -638.3332070810568 133.247 0.1144 3936 +3938 2 9.899252282713496 -513.0450512494069 64.8707 0.1144 3733 +3939 2 9.010012216749558 -513.0745812655362 66.0618 0.1144 3938 +3940 2 7.890773688245634 -514.1088662147263 65.9498 0.1144 3939 +3941 2 6.771226428146859 -513.5515649086221 65.8832 0.1144 3940 +3942 2 5.652020726679987 -513.8743006820864 65.8143 0.1144 3941 +3943 2 4.53247346658126 -514.5071926393044 65.7544 0.1144 3942 +3944 2 3.4122978167295663 -515.4632066065967 65.7143 0.1144 3943 +3945 2 2.29300692241298 -515.463084457196 65.7051 0.1144 3944 +3946 2 1.1639910390468078 -516.5431534251655 65.7488 0.1144 3945 +3947 2 0.027379674124244247 -515.9804979473358 65.8865 0.1144 3946 +3948 2 -1.0947506998539929 -514.9478206674412 66.1352 0.1144 3947 +3949 2 -2.2121626400563823 -515.8876703956116 66.4698 0.1144 3948 +3950 2 -3.3391157709880446 -515.3772685848162 66.8503 0.1144 3949 +3951 2 -4.4717404857879774 -516.1744038810933 67.2459 0.1144 3950 +3952 2 -5.602798996950741 -515.3786109827557 67.6505 0.1144 3951 +3953 2 -6.733281484173319 -515.5369967155657 68.07 0.1144 3952 +3954 2 -7.86175217003791 -515.8601817424418 68.5157 0.1144 3953 +3955 2 -8.987111372476978 -516.7389678790175 69.0024 0.1144 3954 +3956 2 -10.070116612013184 -516.1460975033743 69.6007 0.1144 3955 +3957 2 -11.079147123833504 -515.0986885105007 70.471 0.1144 3956 +3958 2 -12.101369712591946 -515.49263091492 71.5302 0.1144 3957 +3959 2 -13.137022543020109 -514.8803082598898 72.6331 0.1144 3958 +3960 2 -14.182375046688932 -515.6368626747371 73.7262 0.1144 3959 +3961 2 -15.24937103854737 -515.2662796803722 74.6981 0.1144 3960 +3962 2 -16.33121971388404 -514.7067707921299 75.5574 0.1144 3961 +3963 2 -17.423984787790367 -515.9842425222691 76.3342 0.1144 3962 +3964 2 -18.503667304814012 -515.441125595393 77.0638 0.1144 3963 +3965 2 -19.47929071850257 -517.0652427805826 77.7862 0.1144 3964 +3966 2 -20.486968165403976 -517.1352194927302 78.5498 0.1144 3965 +3967 2 -21.558413505171952 -516.6001344739054 79.3741 0.1144 3966 +3968 2 -22.634727149014566 -518.0278614093122 80.2435 0.1144 3967 +3969 2 -23.16609758157635 -518.528682321406 81.2638 0.1144 3968 +3970 2 -23.444094469579262 -519.5989744607359 82.1696 0.1144 3969 +3971 2 -23.721909258086793 -520.7691766093225 83.0558 0.1144 3970 +3972 2 -24.001204364845123 -522.4148991839077 83.9376 0.1144 3971 +3973 2 -24.279380250760283 -524.2708506217414 84.8098 0.1144 3972 +3974 2 -24.558311158527886 -525.9763346421119 85.6671 0.1144 3973 +3975 2 -24.83911630899097 -527.058046585638 86.5038 0.1144 3974 +3976 2 -25.120048091553638 -528.1442549653452 87.3088 0.1144 3975 +3977 2 -25.803122869474993 -528.6846516136006 88.032 0.1144 3976 +3978 2 -26.607264683644612 -529.0285595914802 88.6469 0.1144 3977 +3979 2 -27.420139922093494 -530.6744396999833 89.1859 0.1144 3978 +3980 2 -28.23519813483282 -531.7788946441102 89.6594 0.1144 3979 +3981 2 -29.22661445493053 -532.5321155694511 90.0343 0.1144 3980 +3982 2 -30.297296870855014 -533.4474831882131 90.2986 0.1144 3981 +3983 2 -31.370514746265012 -534.1805123449595 90.5022 0.1144 3982 +3984 2 -32.444308645614974 -534.4409487554019 90.6744 0.1144 3983 +3985 2 -33.518102544965046 -534.5193656816707 90.8404 0.1144 3984 +3986 2 -34.5950219558867 -535.5005975942182 91.0619 0.1144 3985 +3987 2 -35.6705610567862 -535.8835265820592 91.3847 0.1144 3986 +3988 2 -36.742894869197706 -537.2756218096243 91.7913 0.1144 3987 +3989 2 -37.81064859372868 -537.2429334992327 92.2592 0.1144 3988 +3990 2 -38.87589968581131 -536.8778434682451 92.7685 0.1144 3989 +3991 2 -39.9391389765358 -538.1640894399544 93.3036 0.1144 3990 +3992 2 -41.00149351172536 -538.2397369614051 93.8493 0.1144 3991 +3993 2 -42.063580754569735 -539.5552638363312 94.3986 0.1144 3992 +3994 2 -43.12032668451494 -539.6203517992951 94.9536 0.1144 3993 +3995 2 -43.919521110230164 -539.9786072173133 95.5298 0.1144 3994 +3996 2 -44.71769322174778 -541.2752902380053 96.1271 0.1144 3995 +3997 2 -45.51550423585782 -542.4497002789697 96.7271 0.1144 3996 +3998 2 -46.31376154022533 -543.3785079710889 97.3126 0.1144 3997 +3999 2 -47.114254184695895 -544.9674164369983 97.8704 0.1144 3998 +4000 2 -47.914832022016355 -545.8577967185677 98.406 0.1144 3999 +4001 2 -48.68133892258434 -546.2902280719402 99.3706 0.1144 4000 +4002 2 14.213773090088765 -506.94286371212735 56.9876 0.1144 3569 +4003 2 14.308339047851467 -508.26661933205116 56.6418 0.1144 4002 +4004 2 14.466967524918445 -509.755870903561 56.39 0.1144 4003 +4005 2 14.317959915658252 -510.99304110949856 55.9572 0.1144 4004 +4006 2 14.082125379236139 -512.5112757368963 55.4683 0.1144 4005 +4007 2 13.971131603251026 -514.0771934740924 55.0416 0.1144 4006 +4008 2 14.153278817491477 -515.0647184531574 54.6073 0.1144 4007 +4009 2 14.080892312539225 -516.482076225956 54.0772 0.1144 4008 +4010 2 13.17808886786619 -518.2760331574001 53.5646 0.1144 4009 +4011 2 12.19456644988222 -518.2373221134254 53.3568 0.1144 4010 +4012 2 11.328483420136752 -518.8255067680066 53.3406 0.1144 4011 +4013 2 10.57511454384733 -520.230730290225 53.3369 0.1144 4012 +4014 2 9.820042597794782 -521.5964226768762 53.3288 0.1144 4013 +4015 2 9.066045331752552 -522.4353292928623 53.2874 0.1144 4014 +4016 2 9.159414387050498 -523.6934102730224 52.934 0.1144 4015 +4017 2 9.264891232753307 -525.1053255865304 52.5168 0.1144 4016 +4018 2 9.37054707636847 -526.5106681511825 52.0355 0.1144 4017 +4019 2 9.47535960369829 -527.9122837307833 51.5133 0.1144 4018 +4020 2 9.42424218358171 -529.2820355684518 51.0591 0.1144 4019 +4021 2 9.20444492146634 -530.6143914047893 50.7198 0.1144 4020 +4022 2 8.906146203877583 -531.8694357623494 50.3916 0.1144 4021 +4023 2 8.381452646326723 -533.8004092689996 50.022 0.1144 4022 +4024 2 7.558289399060868 -534.5868398553051 49.6782 0.1144 4023 +4025 2 6.610149140757521 -534.6235256651624 49.2492 0.1144 4024 +4026 2 6.938537353832073 -533.7595179619236 48.9493 0.1144 4025 +4027 2 7.618742293427431 -533.1695451560656 48.6016 0.1144 4026 +4028 2 8.56826596333602 -532.3005278645913 48.3008 0.1144 4027 +4029 2 9.689673751736047 -531.8679080941498 47.997 0.1144 4028 +4030 2 10.700749992935986 -531.9512906443582 47.7383 0.1144 4029 +4031 2 10.98816935353783 -531.1185726087957 47.8164 0.1144 4030 +4032 2 11.606344090587818 -530.1356163984068 47.9335 0.1144 4031 +4033 2 12.280978762605603 -529.3014216733608 48.0404 0.1144 4032 +4034 2 12.876115596286613 -528.5558096221143 48.2073 0.1144 4033 +4035 2 13.44464892793576 -527.4353895735959 48.4145 0.1144 4034 +4036 2 13.971789650539147 -525.2024801436162 48.61 0.1144 4035 +4037 2 14.368695241457182 -523.8471747353626 48.7749 0.1144 4036 +4038 2 14.582919826948338 -522.6403167859166 48.9342 0.1144 4037 +4039 2 14.544707687454705 -521.2241957242583 49.0633 0.1144 4038 +4040 2 14.358946539598856 -519.7038294034526 49.1296 0.1144 4039 +4041 2 14.184763007102674 -518.1889353681356 49.1478 0.1144 4040 +4042 2 14.031924542238723 -516.9963223022623 49.1305 0.1144 4041 +4043 2 13.98186439345717 -515.8051858468248 49.0669 0.1144 4042 +4044 2 14.260653948442473 -514.1206859442718 48.9177 0.1144 4043 +4045 2 14.698811488160633 -513.1647516608723 48.7337 0.1144 4044 +4046 2 14.971308580753023 -512.021932168099 48.594 0.1144 4045 +4047 2 15.259272434341762 -510.8921383770672 48.524 0.1144 4046 +4048 2 15.852414596393869 -509.2577663607863 48.5108 0.1144 4047 +4049 2 16.637155365257243 -507.95850704917746 48.5136 0.1144 4048 +4050 2 17.398505745556697 -507.2434150364436 48.5044 0.1144 4049 +4051 2 18.226707084756285 -506.8815455574739 48.4487 0.1144 4050 +4052 2 19.202746654800418 -505.51056101590626 48.3428 0.1144 4051 +4053 2 20.27578863388114 -505.18329115427133 48.2196 0.1144 4052 +4054 2 21.28093882506183 -503.80373603866866 48.0043 0.1144 4053 +4055 2 21.261937427614328 -502.66074277666894 47.6753 0.1144 4054 +4056 2 20.66706179492919 -502.48633238948435 47.3889 0.1144 4055 +4057 2 21.21590386447955 -500.3896432863406 47.2374 0.1144 4056 +4058 2 22.129936848962366 -499.6948510706969 47.117 0.1144 4057 +4059 2 10.734835437586748 -533.0071961463962 47.4068 0.1144 4030 +4060 2 10.555857169623595 -534.6050385850467 47.1674 0.1144 4059 +4061 2 10.107309298509598 -536.446917223731 46.9216 0.1144 4060 +4062 2 9.41369083852568 -537.3361050695619 46.6704 0.1144 4061 +4063 2 8.612407936119087 -538.5072948242299 46.3744 0.1144 4062 +4064 2 7.835813641031939 -539.9371868070994 45.9976 0.1144 4063 +4065 2 7.03438697679657 -540.3061922787347 45.5423 0.1144 4064 +4066 2 6.212284381394976 -540.8264921915737 45.0422 0.1144 4065 +4067 2 5.338527194161292 -542.0850391876534 44.431 0.1144 4066 +4068 2 4.635429006368465 -541.8706269664133 43.6215 0.1144 4067 +4069 2 3.917732316595579 -540.687409877808 42.7067 0.1144 4068 +4070 2 2.836449354161413 -541.5325030903589 41.9202 0.1144 4069 +4071 2 1.7651600878582805 -541.0733000188884 41.2079 0.1144 4070 +4072 2 0.7467982986487982 -542.5479503929693 40.5093 0.1144 4071 +4073 2 -0.21512578750379063 -542.862769995415 39.8793 0.1144 4072 +4074 2 -1.1322880776778277 -543.0512941769623 39.321 0.1144 4073 +4075 2 -1.9973080465126039 -544.9806736939264 38.8105 0.1144 4074 +4076 2 -2.876279222009348 -545.4721614352478 38.2841 0.1144 4075 +4077 2 -3.9132513901411414 -546.9602029834215 37.8983 0.1144 4076 +4078 2 -4.894993370491996 -547.3046431486555 37.6146 0.1144 4077 +4079 2 -5.750198339334407 -547.5817647213487 37.4018 0.1144 4078 +4080 2 -6.461242995859976 -548.1627370520091 37.2218 0.1144 4079 +4081 2 -7.1756664281561235 -550.5120672900264 37.0087 0.1144 4080 +4082 2 -7.8914318328078 -551.3382763477025 36.7606 0.1144 4081 +4083 2 -8.526942062920114 -552.0703758818141 36.5156 0.1144 4082 +4084 2 -9.285756983734117 -554.5394538486701 36.2869 0.1144 4083 +4085 2 -10.105303888338039 -554.9456896407609 36.0609 0.1144 4084 +4086 2 -10.911316151083504 -555.596086201975 35.8246 0.1144 4085 +4087 2 -11.805337522772977 -556.4689752572207 35.5379 0.1144 4086 +4088 2 -12.779153466509719 -557.5942675431654 35.1417 0.1144 4087 +4089 2 -12.933902617247341 -557.5421230779583 35.0154 0.1144 4088 +4090 2 -13.705198737510049 -557.8440039573286 34.102 0.1144 4089 +4091 2 -13.058675420673687 -559.0027091282681 33.1218 0.1144 4090 +4092 2 -12.527773498302068 -559.1302169225231 31.8906 0.1144 4091 +4093 2 -11.75288667064493 -558.0774839604745 29.953 0.1144 4092 +4094 2 -11.343052400046904 -558.1334365877603 27.8699 0.1144 4093 +4095 2 -11.784056339085609 -557.6174661221139 25.7201 0.1144 4094 +4096 2 -12.345457999927962 -559.2804328074438 24.465 0.1144 4095 +4097 2 -12.978063469382352 -560.0568943983079 23.3558 0.1144 4096 +4098 2 -13.569402961890667 -560.6755001644851 22.3465 0.1144 4097 +4099 2 -13.486976331192984 -562.0462255465025 21.3863 0.1144 4098 +4100 2 -14.172654738394765 -563.2560234307739 20.1769 0.1144 4099 +4101 2 -14.948427825312383 -562.9007632301915 19.21 0.1144 4100 +4102 2 -14.74400312836801 -562.0640084743319 18.1882 0.1144 4101 +4103 2 -15.451397993962296 -561.6518173309465 17.2654 0.1144 4102 +4104 2 -16.47679254673441 -561.9153432784689 16.7176 0.1144 4103 +4105 2 -17.607439311186674 -562.7705578768774 16.3484 0.1144 4104 +4106 2 -18.719327525242832 -561.8476728230851 15.7058 0.1144 4105 +4107 2 -13.114201637650375 -559.2701020077176 32.9333 0.1144 4091 +4108 2 -13.354043339596078 -560.4433712724659 32.4405 0.1144 4107 +4109 2 -13.598297152769184 -561.6369976227907 32.2955 0.1144 4108 +4110 2 -13.843305987794626 -563.102492296822 32.3302 0.1144 4109 +4111 2 -14.097497638940045 -564.9193521227826 32.4503 0.1144 4110 +4112 2 -14.355737894858649 -566.7824137749305 32.5788 0.1144 4111 +4113 2 -14.61491527212507 -568.372988955506 32.6721 0.1144 4112 +4114 2 -14.658191848477315 -569.7803285142815 32.7225 0.1144 4113 +4115 2 -14.427208207454594 -571.0379033274628 32.7421 0.1144 4114 +4116 2 -14.119567533503737 -571.7649513789688 32.7457 0.1144 4115 +4117 2 -13.811246103987308 -572.6457727260564 32.7449 0.1144 4116 +4118 2 -13.503605430036444 -574.1310018375759 32.744 0.1144 4117 +4119 2 -13.196849511620634 -575.7364578683744 32.7429 0.1144 4118 +4120 2 -12.888528082104195 -577.3406041242358 32.7412 0.1144 4119 +4121 2 -12.580887408153288 -578.9517420984135 32.7387 0.1144 4120 +4122 2 -12.272565978636901 -580.0621450609442 32.7356 0.1144 4121 +4123 2 -11.965895253070869 -581.16872931455 32.7312 0.1144 4122 +4124 2 -11.658254579120065 -582.6327186583721 32.7239 0.1144 4123 +4125 2 -11.476809328382604 -584.1641446820591 32.7155 0.1144 4124 +4126 2 -11.453217532016886 -585.5794489845692 32.7054 0.1144 4125 +4127 2 -11.477634543456155 -587.0219265565984 32.6875 0.1144 4126 +4128 2 -11.501081606510489 -588.4631304147169 32.653 0.1144 4127 +4129 2 -11.526094180665517 -589.9054493940354 32.594 0.1144 4128 +4130 2 -11.758048183663675 -591.1238085548663 32.473 0.1144 4129 +4131 2 -12.25084067988356 -592.4797892365292 32.2605 0.1144 4130 +4132 2 -12.811533167768374 -593.9087675384138 31.9654 0.1144 4131 +4133 2 -13.369957488512853 -594.7097721022166 31.6061 0.1144 4132 +4134 2 -13.927574421592276 -595.5512023889473 31.201 0.1144 4133 +4135 2 -14.479544411760692 -597.6841113727071 30.7647 0.1144 4134 +4136 2 -15.023439092856648 -599.2544311485103 30.3097 0.1144 4135 +4137 2 -15.562571586576695 -600.0795883661224 29.8413 0.1144 4136 +4138 2 -16.102908493989723 -600.9250786260524 29.3569 0.1144 4137 +4139 2 -16.640742768954304 -602.5001603897239 28.8512 0.1144 4138 +4140 2 -17.177789195029447 -603.7782407710221 28.3189 0.1144 4139 +4141 2 -17.714422157884236 -605.3022848221082 27.7554 0.1144 4140 +4142 2 -17.959495670358642 -606.6354809075417 27.1037 0.1144 4141 +4143 2 -18.0168562886386 -607.9745081063107 26.3639 0.1144 4142 +4144 2 -17.583751264905956 -609.1100604006513 25.4893 0.1144 4143 +4145 2 -16.934960775239553 -610.1266112085173 24.5288 0.1144 4144 +4146 2 -16.279751883617323 -610.7073293557821 23.5472 0.1144 4145 +4147 2 -15.62276255436197 -612.0972994233615 22.588 0.1144 4146 +4148 2 -14.923194024633787 -613.6608966212095 21.7162 0.1144 4147 +4149 2 -13.94164456092588 -613.008440713199 21.1972 0.1144 4148 +4150 2 -12.945893727939982 -614.469350093028 20.9109 0.1144 4149 +4151 2 -11.944785144862465 -615.0708107518221 20.8115 0.1144 4150 +4152 2 -10.94310053784477 -615.3862106396136 20.8492 0.1144 4151 +4153 2 -9.849085804897967 -616.5456379614634 20.9886 0.1144 4152 +4154 2 -8.7105526495601 -615.3881795249004 21.1878 0.1144 4153 +4155 2 -7.572019494222339 -615.9238390824764 21.4059 0.1144 4154 +4156 2 -6.434062362824648 -615.1969515388688 21.6418 0.1144 4155 +4157 2 -5.297884976523427 -616.1883350587705 21.8848 0.1144 4156 +4158 2 -4.190742530335541 -616.4573382162746 22.1268 0.1144 4157 +4159 2 -3.082001746010093 -616.4495117047005 22.3589 0.1144 4158 +4160 2 -1.9733461545343616 -616.295988191094 22.5765 0.1144 4159 +4161 2 -0.8740969179237013 -616.6989723578288 22.9975 0.1144 4160 +4162 2 -13.205323041209002 -558.0384494294372 35.6482 0.1144 4088 +4163 2 -13.850324819036047 -559.0340229530835 35.6737 0.1144 4162 +4164 2 -14.497947249198301 -561.2929385645587 35.6787 0.1144 4163 +4165 2 -15.294015470805341 -561.8915426483474 35.6661 0.1144 4164 +4166 2 -16.211970427961873 -562.2706042232381 35.6208 0.1144 4165 +4167 2 -17.132962602257116 -563.4870898795474 35.548 0.1144 4166 +4168 2 -18.05332638679956 -564.4085367462945 35.4528 0.1144 4167 +4169 2 -18.974266195282034 -564.8876388124984 35.3433 0.1144 4168 +4170 2 -19.80709998817493 -566.6724323361046 35.1926 0.1144 4169 +4171 2 -20.532977505314314 -567.516541015625 35.0356 0.1144 4170 +4172 2 -21.260866823811792 -568.0540574495429 34.921 0.1144 4171 +4173 2 -21.986829533800943 -569.3114893814464 34.7768 0.1144 4172 +4174 2 6.56660748544294 -534.7208282455945 48.9829 0.1144 4025 +4175 2 6.04298009038585 -535.8338514754428 48.704 0.1144 4174 +4176 2 5.462813675981321 -537.3549418700951 48.6567 0.1144 4175 +4177 2 5.201588568736671 -539.0508905718011 48.5974 0.1144 4176 +4178 2 5.091399771370126 -540.5786528309724 48.5164 0.1144 4177 +4179 2 5.121680363620031 -541.9285077265886 48.4058 0.1144 4178 +4180 2 5.215849987891509 -543.1987128141449 48.2566 0.1144 4179 +4181 2 5.526566216647705 -544.1549542643033 48.0197 0.1144 4180 +4182 2 5.912078571245996 -545.2964327990665 47.6806 0.1144 4181 +4183 2 6.278034908057769 -546.6198075287255 47.2598 0.1144 4182 +4184 2 6.64127368588872 -548.0739621388288 46.7858 0.1144 4183 +4185 2 7.004906388164411 -549.6690520311256 46.2829 0.1144 4184 +4186 2 8.215154307842603 -549.9004434309606 46.1045 0.1144 4185 +4187 2 9.328191077432896 -549.0135811071086 46.1462 0.1144 4186 +4188 2 10.441771043926273 -548.3245322755561 46.1902 0.1144 4187 +4189 2 11.555436203269474 -547.8591308098889 46.2266 0.1144 4188 +4190 2 12.543453516284146 -547.6669628957895 46.2056 0.1144 4189 +4191 2 13.53246031645937 -546.6720289962531 46.1353 0.1144 4190 +4192 2 14.519816412684143 -545.6582730605626 46.0256 0.1144 4191 +4193 2 15.506811411501271 -544.9638206257888 45.8881 0.1144 4192 +4194 2 16.493282752191107 -544.2350127706545 45.7318 0.1144 4193 +4195 2 17.480724041265702 -543.6877496842095 45.57 0.1144 4194 +4196 2 18.467719040082784 -543.4290568848915 45.4149 0.1144 4195 +4197 2 19.454138014959835 -541.685241375075 45.269 0.1144 4196 +4198 2 20.44220769378729 -541.4131817516212 45.1343 0.1144 4197 +4199 2 21.42564491892144 -540.2548019209823 44.8731 0.1144 4198 +4200 2 7.010382957353851 -550.1881413095434 45.8223 0.1144 4185 +4201 2 7.024265177889209 -551.5948651615943 45.3967 0.1144 4200 +4202 2 7.038775788177471 -553.0033387071064 44.9848 0.1144 4201 +4203 2 7.052211718455357 -554.4126023515655 44.5819 0.1144 4202 +4204 2 7.066361231335925 -555.8489538864402 44.1846 0.1144 4203 +4205 2 7.080425551366716 -557.2434541287283 43.7898 0.1144 4204 +4206 2 7.094575064247284 -558.655944677906 43.3972 0.1144 4205 +4207 2 7.1092677740308865 -560.0706714485572 43.0189 0.1144 4206 +4208 2 7.1239933108515885 -561.4862692020334 42.6594 0.1144 4207 +4209 2 7.137302609029948 -562.9035943422247 42.3242 0.1144 4208 +4210 2 7.148737664512822 -564.3257782061601 42.0202 0.1144 4209 +4211 2 7.12288177407256 -565.7175599874998 41.7973 0.1144 4210 +4212 2 7.087407703817991 -567.1056557042838 41.6506 0.1144 4211 +4213 2 7.051624901968452 -568.4973655341388 41.5624 0.1144 4212 +4214 2 7.014224223205666 -569.8876351705717 41.5162 0.1144 4213 +4215 2 6.978441421356123 -571.2807863992382 41.4963 0.1144 4214 +4216 2 6.942606253693906 -572.6737634126415 41.4884 0.1144 4215 +4217 2 6.907399475784501 -574.0694884532402 41.4809 0.1144 4216 +4218 2 6.871616673935005 -575.4683630931187 41.47 0.1144 4217 +4219 2 6.835781506272745 -576.8597830987374 41.4551 0.1144 4218 +4220 2 6.799946338610528 -578.2554994643069 41.4347 0.1144 4219 +4221 2 6.764163536760986 -579.6518437626651 41.4053 0.1144 4220 +4222 2 6.728328369098772 -581.0490352749941 41.3638 0.1144 4221 +4223 2 6.692545567249294 -582.4463294626319 41.3059 0.1144 4222 +4224 2 6.656710399587027 -583.8444928279525 41.2283 0.1144 4223 +4225 2 6.605769568336154 -585.2280075856519 41.1253 0.1144 4224 +4226 2 6.343789439239185 -586.4154382976375 40.9483 0.1144 4225 +4227 2 6.033102617042548 -587.6932110677119 40.7064 0.1144 4226 +4228 2 5.72197732956834 -589.1992561469851 40.4228 0.1144 4227 +4229 2 5.41110840787637 -590.703398632217 40.1195 0.1144 4228 +4230 2 5.099269537799529 -592.0478837345279 39.8174 0.1144 4229 +4231 2 4.795932728276988 -593.6148933696311 39.536 0.1144 4230 +4232 2 4.649427751465126 -595.0740584367073 39.3103 0.1144 4231 +4233 2 5.1177482486022825 -596.0586345567729 39.228 0.1144 4232 +4234 2 5.7618035832115595 -597.139714311094 39.2202 0.1144 4233 +4235 2 6.508968889945557 -598.3280183187761 39.2451 0.1144 4234 +4236 2 7.256271755342148 -599.989853954108 39.2902 0.1144 4235 +4237 2 8.003075964668447 -600.8191173776604 39.3453 0.1144 4236 +4238 2 8.74935651586739 -602.0331094128068 39.4022 0.1144 4237 +4239 2 9.495584701253605 -602.5749608005963 39.4626 0.1144 4238 +4240 2 10.2412368626998 -603.5527956857866 39.5436 0.1144 4239 +4241 2 10.987465048086023 -604.5783127496412 39.6553 0.1144 4240 +4242 2 11.733117209532175 -605.7256504755865 39.8012 0.1144 4241 +4243 2 12.456278458631992 -607.2294265034266 40.0056 0.1144 4242 +4244 2 13.03511440796374 -607.4168587446113 40.397 0.1144 4243 +4245 2 13.547761023633178 -608.5860363233396 40.8951 0.1144 4244 +4246 2 14.087575546175081 -610.2442330143936 41.3672 0.1144 4245 +4247 2 14.626006657111688 -611.3668863094805 41.8328 0.1144 4246 +4248 2 15.138783006463797 -612.6795535869841 42.2904 0.1144 4247 +4249 2 15.600918874416514 -614.3474782293001 42.7434 0.1144 4248 +4250 2 16.205179938117766 -615.1984448087553 43.1953 0.1144 4249 +4251 2 17.145259093473328 -616.2254349439127 43.668 0.1144 4250 +4252 2 18.17226890132794 -616.0496594242586 44.128 0.1144 4251 +4253 2 19.197856959910702 -616.7728880495094 44.5248 0.1144 4252 +4254 2 20.229323325129442 -617.4225995451432 44.8456 0.1144 4253 +4255 2 21.263953539586392 -618.3838045036389 45.103 0.1144 4254 +4256 2 22.300182092181064 -618.8231843043365 45.318 0.1144 4255 +4257 2 23.335303137728356 -618.9839304053941 45.512 0.1144 4256 +4258 2 24.36592377761528 -619.327311193673 45.7092 0.1144 4257 +4259 2 25.317726719205666 -619.8365230631862 45.9494 0.1144 4258 +4260 2 26.097361522971376 -620.6574914605765 46.2815 0.1144 4259 +4261 2 26.89706989418098 -622.2656517086078 46.6816 0.1144 4260 +4262 2 27.88818758093701 -622.8972596832679 47.0806 0.1144 4261 +4263 2 28.961682456182498 -622.9912848153119 47.4362 0.1144 4262 +4264 2 30.0367756695656 -623.3663423293891 47.726 0.1144 4263 +4265 2 31.115608756127017 -623.1500032361307 47.9217 0.1144 4264 +4266 2 32.196583377729155 -623.8584073032462 48.001 0.1144 4265 +4267 2 33.27973787203865 -623.8182848566476 47.9388 0.1144 4266 +4268 2 34.37280007041846 -624.6280951976954 47.5667 0.1144 4267 +4269 2 35.45175739771798 -625.280409072562 46.7466 0.1144 4268 +4270 2 36.475973965568706 -624.4132168515422 45.6324 0.1144 4269 +4271 2 37.202364735665974 -625.618421111489 44.3699 0.1144 4270 +4272 2 37.84520844712778 -626.5584583913899 43.048 0.1144 4271 +4273 2 38.48965049672732 -627.2278398559954 41.7295 0.1144 4272 +4274 2 39.14065781169449 -628.5287521278592 40.4746 0.1144 4273 +4275 2 40.17920478996932 -629.0405966463928 39.4503 0.1144 4274 +4276 2 41.28486352025649 -628.4228449996258 38.7587 0.1144 4275 +4277 2 42.40610703142683 -628.4192622108552 38.2427 0.1144 4276 +4278 2 43.515014803802075 -627.9370095119696 37.5813 0.1144 4277 +4279 2 8.880477387933663 -522.6398463000478 53.5052 0.1144 4015 +4280 2 7.891276176626911 -523.9727040214689 53.5038 0.1144 4279 +4281 2 6.862374499474615 -523.8036915631384 53.3313 0.1144 4280 +4282 2 5.809268150390405 -523.9397174582194 53.1821 0.1144 4281 +4283 2 4.706084718459142 -525.1435119804265 53.0326 0.1144 4282 +4284 2 3.5765968205785974 -525.2037024739866 52.9099 0.1144 4283 +4285 2 2.535865453277129 -524.9511673658511 52.8237 0.1144 4284 +4286 2 1.6434234131925454 -523.9277167138887 52.7755 0.1144 4285 +4287 2 1.326791232670308 -523.1088149123971 52.7624 0.1144 4286 +4288 2 0.37086239544795774 -522.6984530845234 52.7845 0.1144 4287 +4289 2 -0.4378553045988909 -521.1530381809542 52.6935 0.1144 4288 +4290 2 -0.7152530314299064 -521.033623952528 52.7089 0.1144 4289 +4291 2 -1.8183896081781121 -522.1494772294494 52.8674 0.1144 4290 +4292 2 -2.9165404588052084 -522.1767342344865 53.1532 0.1144 4291 +4293 2 -4.009206927241099 -523.7907256620229 53.543 0.1144 4292 +4294 2 -5.0989440117468074 -523.3261337268076 54.0081 0.1144 4293 +4295 2 -6.184527759853781 -522.867586390489 54.5216 0.1144 4294 +4296 2 -7.269717583516018 -524.4811930514279 55.0388 0.1144 4295 +4297 2 -8.35632364582058 -524.0250157438164 55.5436 0.1144 4296 +4298 2 -9.442844515275272 -525.6408188880035 56.0316 0.1144 4297 +4299 2 -10.567407949148873 -524.8209873607916 56.4718 0.1144 4298 +4300 2 -11.696987243045255 -524.5592830851099 56.8613 0.1144 4299 +4301 2 -12.828848732228087 -524.9746003071077 57.2135 0.1144 4300 +4302 2 -13.96168016979574 -524.991718707514 57.5386 0.1144 4301 +4303 2 -15.095139997116142 -525.1260951249283 57.846 0.1144 4302 +4304 2 -16.22953694578436 -524.2901197326861 58.1451 0.1144 4303 +4305 2 -17.362996773104808 -525.0756559969308 58.4438 0.1144 4304 +4306 2 -18.497393721773026 -524.3134016086518 58.7443 0.1144 4305 +4307 2 -19.63139674599651 -525.1393138835928 59.047 0.1144 4306 +4308 2 -20.765250497761706 -524.4631829100382 59.3538 0.1144 4307 +4309 2 -21.89862513223238 -523.8564365372507 59.67 0.1144 4308 +4310 2 -23.033993745795293 -524.6638120487165 59.9956 0.1144 4309 +4311 2 -24.167895755501803 -525.0457585159272 60.3154 0.1144 4310 +4312 2 -25.299606273401363 -525.2290853607084 60.6494 0.1144 4311 +4313 2 -26.42935425417253 -524.4910211486449 61.0226 0.1144 4312 +4314 2 -27.445180583896573 -525.5991342385809 61.6258 0.1144 4313 +4315 2 -28.42289006523002 -526.1993352913427 62.4344 0.1144 4314 +4316 2 -29.38278252716026 -527.29670691534 63.3889 0.1144 4315 +4317 2 -30.329096498935822 -528.0143851335885 64.4414 0.1144 4316 +4318 2 -31.26791428716198 -528.7203384598861 65.5483 0.1144 4317 +4319 2 -32.20228954617016 -529.3637789216933 66.6772 0.1144 4318 +4320 2 -33.13763475356321 -529.7124034796476 67.7958 0.1144 4319 +4321 2 -34.07650490760209 -529.6284253729254 68.8999 0.1144 4320 +4322 2 -35.017334497186404 -531.4250283969322 69.9868 0.1144 4321 +4323 2 -35.96208295786128 -531.4046623246253 71.0503 0.1144 4322 +4324 2 -36.90919028915582 -533.1433818920332 72.06 0.1144 4323 +4325 2 -37.856282899767706 -533.2999713013788 72.9596 0.1144 4324 +4326 2 -38.810819328116196 -533.2271768283882 73.7988 0.1144 4325 +4327 2 -39.77065803916045 -534.446883945161 74.5881 0.1144 4326 +4328 2 -40.73405452388779 -535.1637809494981 75.346 0.1144 4327 +4329 2 -41.6973658157652 -536.3220230948307 76.0934 0.1144 4328 +4330 2 -42.66067710764272 -537.1024040307364 76.8519 0.1144 4329 +4331 2 -43.20217017080731 -537.712325866138 77.8369 0.1144 4330 +4332 2 -43.80173211988858 -538.3849864573862 78.6338 0.1144 4331 +4333 2 -44.378453678315346 -539.2502354478488 79.7577 0.1144 4332 +4334 2 -44.93532210646034 -541.0203993429095 81.0729 0.1144 4333 +4335 2 -45.47895980624872 -541.9575218858088 82.4933 0.1144 4334 +4336 2 -46.016316662743705 -542.9114554907989 83.9636 0.1144 4335 +4337 2 -46.55309749529863 -544.2370864367765 85.4311 0.1144 4336 +4338 2 -47.297286970803036 -545.3654015681744 86.564 0.1144 4337 +4339 2 -48.099266734531035 -546.208985390249 87.4922 0.1144 4338 +4340 2 -48.90969860204707 -546.5049834846645 88.2997 0.1144 4339 +4341 2 -49.680699705109205 -547.5588569728676 89.108 0.1144 4340 +4342 2 -50.444741618358954 -548.7004212828077 89.9038 0.1144 4341 +4343 2 -51.21168008850174 -549.6323267270893 90.6786 0.1144 4342 +4344 2 -51.9800019702497 -551.5438383906621 91.4248 0.1144 4343 +4345 2 -52.766000211155394 -552.0804248939054 91.9293 0.1144 4344 +4346 2 -53.56019729165003 -553.0201509164634 92.2695 0.1144 4345 +4347 2 -54.357023636692475 -553.4206456501613 92.468 0.1144 4346 +4348 2 -55.31830702145607 -555.4591929575364 92.566 0.1144 4347 +4349 2 -56.40155723243735 -555.2954651769887 92.5952 0.1144 4348 +4350 2 -57.484755077605904 -556.1937570847189 92.5952 0.1144 4349 +4351 2 -58.56800528858709 -556.3751208904541 92.5952 0.1144 4350 +4352 2 -59.64616745086833 -556.492912154065 92.5952 0.1144 4351 +4353 2 -60.67461973618013 -558.0100835222082 92.5952 0.1144 4352 +4354 2 -61.70370041124468 -558.4438632556731 92.5952 0.1144 4353 +4355 2 -42.15278456457377 -537.5022503131753 77.1134 0.1144 4330 +4356 2 -41.20720120416271 -537.3301958698714 77.9926 0.1144 4355 +4357 2 -40.22061915915057 -538.3211379603645 78.3765 0.1144 4356 +4358 2 -39.23555025942635 -538.0756317381572 78.804 0.1144 4357 +4359 2 -38.25333647734544 -539.3315574823304 79.2627 0.1144 4358 +4360 2 -37.310555868764936 -540.7030858886792 80.1741 0.1144 4359 +4361 2 -0.6053078974464388 -520.1801859539867 51.0773 0.1144 4289 +4362 2 -0.7397354967013001 -518.7344588527893 51.123 0.1144 4361 +4363 2 -1.3057510793138256 -517.328391464977 51.2926 0.1144 4362 +4364 2 -2.021999993784327 -517.5477565117242 51.6298 0.1144 4363 +4365 2 -2.7329521361886364 -515.9314418004212 52.096 0.1144 4364 +4366 2 -3.449151093892951 -515.0870164325262 52.64 0.1144 4365 +4367 2 -4.245836276109892 -514.8419488669764 53.1714 0.1144 4366 +4368 2 -5.078596371457519 -513.2871969439827 53.657 0.1144 4367 +4369 2 -5.914341318131084 -511.7286194450308 54.0764 0.1144 4368 +4370 2 -6.743772594474272 -511.1581616797844 54.437 0.1144 4369 +4371 2 -7.345307581678198 -510.6793175135703 54.7509 0.1144 4370 +4372 2 -7.145518830773093 -509.4257724040231 54.9741 0.1144 4371 +4373 2 -6.94399418306776 -507.7235728383487 55.1561 0.1144 4372 +4374 2 -6.775747805132417 -506.0280841942903 55.3266 0.1144 4373 +4375 2 -6.944660496896615 -505.03911716607536 55.5212 0.1144 4374 +4376 2 -7.670357205481883 -503.9262492444704 55.7494 0.1144 4375 +4377 2 -8.394358669283971 -502.4539437061497 56.0526 0.1144 4376 +4378 2 -9.1581742268584 -502.7572120588227 56.4782 0.1144 4377 +4379 2 -10.118645915279195 -501.41533728032385 57.1357 0.1144 4378 +4380 2 -11.132086129280392 -500.3057525216514 58.0034 0.1144 4379 +4381 2 -11.872943169639269 -500.09504469617224 59.2091 0.1144 4380 +4382 2 -11.427749060260705 -498.8164079868225 61.1696 0.1144 4381 +4383 2 -10.715392476292351 -498.7263116326186 63.1554 0.1144 4382 +4384 2 -10.06229788658567 -498.72002790424654 65.2408 0.1144 4383 +4385 2 -9.863747388405773 -498.0900042328953 67.3904 0.1144 4384 +4386 2 -9.830904885071355 -497.22470305717997 69.5512 0.1144 4385 +4387 2 -9.4421483897604 -497.3506591535961 72.0087 0.1144 4386 +4388 2 -8.819762972112274 -497.5639169910364 74.0838 0.1144 4387 +4389 2 -8.21561252374407 -497.230003541423 76.127 0.1144 4388 +4390 2 -8.161419158059015 -496.2775779135447 78.0847 0.1144 4389 +4391 2 -8.128619100262666 -495.24277068900363 79.8941 0.1144 4390 +4392 2 -7.981334069878139 -494.2560382515877 81.5066 0.1144 4391 +4393 2 -7.539344254677393 -493.5093697120745 82.8834 0.1144 4392 +4394 2 -7.148278934502361 -492.8346596039955 84.6908 0.1144 4393 +4395 2 17.272177705632885 -483.9794017873689 57.6892 0.1144 3552 +4396 2 18.245273349042826 -485.4121670406198 57.6758 0.1144 4395 +4397 2 19.217878161362467 -485.7306126493893 57.6568 0.1144 4396 +4398 2 20.190397780832335 -486.2682065380307 57.6092 0.1144 4397 +4399 2 21.163002593151965 -486.698944017994 57.5184 0.1144 4398 +4400 2 22.134946188681756 -487.20898783489196 57.3703 0.1144 4399 +4401 2 23.156698159977125 -488.4925775008498 57.1147 0.1144 4400 +4402 2 24.257722341276285 -488.62441548472754 56.6398 0.1144 4401 +4403 2 25.366542511755227 -488.08758363046366 55.9661 0.1144 4402 +4404 2 26.46070641048607 -487.4887750109991 55.1622 0.1144 4403 +4405 2 27.5431105943619 -487.50941102518414 54.2732 0.1144 4404 +4406 2 28.622350928999488 -488.23961193246726 53.356 0.1144 4405 +4407 2 29.70358834431249 -487.48865261483076 52.4737 0.1144 4406 +4408 2 30.601792671744636 -488.2570409812091 51.6309 0.1144 4407 +4409 2 31.259643139550974 -489.45417824371725 50.9718 0.1144 4408 +4410 2 31.886245245299808 -489.3886823005604 49.9215 0.1144 4409 +4411 2 31.10747613541679 -419.6799025811901 58.0686 0.1144 3467 +4412 2 31.31898316192715 -418.5015289632157 58.3094 0.1144 4411 +4413 2 31.44614325336518 -417.1189513386209 58.5746 0.1144 4412 +4414 2 31.51397018583776 -415.7783322544268 58.8666 0.1144 4413 +4415 2 31.762010727372346 -414.37911455921835 59.1091 0.1144 4414 +4416 2 32.441730346507086 -412.7540661490393 59.2883 0.1144 4415 +4417 2 32.71383420719134 -411.4453695169479 59.4115 0.1144 4416 +4418 2 32.175044407893566 -410.5477591955719 59.486 0.1144 4417 +4419 2 31.795804284375954 -409.73607687604135 59.5274 0.1144 4418 +4420 2 31.73157559335347 -408.4705584946952 59.558 0.1144 4419 +4421 2 31.600167388971574 -407.2380042709662 59.5935 0.1144 4420 +4422 2 31.429994123582077 -406.03337596712834 59.6565 0.1144 4421 +4423 2 31.690375914541377 -404.62655458638903 59.7671 0.1144 4422 +4424 2 31.834471371430755 -403.2820433579971 59.8514 0.1144 4423 +4425 2 31.910444777679498 -401.96228382643625 59.9113 0.1144 4424 +4426 2 32.07672861848644 -400.4605895740834 59.9474 0.1144 4425 +4427 2 32.19222280013188 -399.07608858748523 59.9603 0.1144 4426 +4428 2 32.16314662157497 -397.8084182203298 59.9511 0.1144 4427 +4429 2 32.26238068270512 -396.4440823255276 59.9253 0.1144 4428 +4430 2 31.87623683677086 -395.6458776286661 59.8931 0.1144 4429 +4431 2 31.430589351475394 -394.5366871102689 59.8388 0.1144 4430 +4432 2 31.209688002790177 -393.3471712647865 59.7321 0.1144 4431 +4433 2 31.55864192246091 -392.0612064995227 59.6473 0.1144 4432 +4434 2 31.70318677119084 -390.76444522030124 59.5879 0.1144 4433 +4435 2 31.603180279533174 -389.4853757397375 59.5546 0.1144 4434 +4436 2 31.473370413288954 -388.2104640918739 59.547 0.1144 4435 +4437 2 31.540530618342032 -386.93148860252177 59.5664 0.1144 4436 +4438 2 32.07833206626959 -385.5871779767238 59.61 0.1144 4437 +4439 2 32.5858468967597 -383.94637349951694 59.6722 0.1144 4438 +4440 2 32.43505616187397 -382.8402028073276 59.7682 0.1144 4439 +4441 2 32.267385528932735 -381.76827427100625 59.908 0.1144 4440 +4442 2 32.33921652534576 -380.38837252921553 60.0667 0.1144 4441 +4443 2 32.506567221183076 -378.88469948319187 60.2249 0.1144 4442 +4444 2 32.68973716321168 -377.4822294261588 60.3924 0.1144 4443 +4445 2 32.86096529088991 -376.32031182820947 60.5937 0.1144 4444 +4446 2 33.02818935462766 -375.1600565371851 60.8734 0.1144 4445 +4447 2 33.33842747752035 -374.05043482964373 61.2475 0.1144 4446 +4448 2 33.85006861209036 -373.02927850142277 61.6372 0.1144 4447 +4449 2 34.0524574999298 -371.9523130850066 62.0029 0.1144 4448 +4450 2 33.954457299000595 -370.6253307614248 62.3739 0.1144 4449 +4451 2 33.98236402100216 -369.38708005995 62.7455 0.1144 4450 +4452 2 34.15127471731045 -368.26069247647627 63.1532 0.1144 4451 +4453 2 34.373877832839476 -367.1755638780799 63.6471 0.1144 4452 +4454 2 34.532288695381524 -366.0475995555607 64.183 0.1144 4453 +4455 2 34.42547839483968 -364.74191372110704 64.7066 0.1144 4454 +4456 2 34.13231258567811 -363.3359289731542 65.2448 0.1144 4455 +4457 2 33.93550599810644 -361.97490962567605 65.7712 0.1144 4456 +4458 2 33.86985865939522 -360.68118406733754 66.2763 0.1144 4457 +4459 2 33.78825993176355 -359.3896268257867 66.892 0.1144 4458 +4460 2 33.97701796363557 -358.3352590722247 67.7188 0.1144 4459 +4461 2 34.34862437974709 -357.42796195013915 68.3945 0.1144 4460 +4462 2 34.22804256299219 -356.11793349494013 68.9245 0.1144 4461 +4463 2 33.87857530137429 -354.6923806750323 69.4134 0.1144 4462 +4464 2 33.351542807885 -353.25624649176586 69.9468 0.1144 4463 +4465 2 33.23078130068121 -351.9203991720609 70.3268 0.1144 4464 +4466 2 32.84869698608327 -350.46108899080116 70.5947 0.1144 4465 +4467 2 32.93594237767985 -349.2324678050474 70.805 0.1144 4466 +4468 2 32.924377588514375 -347.92263251435827 71.0506 0.1144 4467 +4469 2 32.92385893160119 -346.61936032692006 71.2303 0.1144 4468 +4470 2 33.066718722790476 -347.34894601780854 71.8976 0.1144 4469 +4471 2 33.078687356675346 -348.48992798102216 73.225 0.1144 4470 +4472 2 32.41574392794405 -349.1295713574525 73.8676 0.1144 4471 +4473 2 32.00849967890627 -351.07585195122823 74.3632 0.1144 4472 +4474 2 31.68253060425525 -352.72572128075564 74.8306 0.1144 4473 +4475 2 30.846820077333632 -352.9873198874419 75.3267 0.1144 4474 +4476 2 30.293251056490938 -354.2716002897143 75.8542 0.1144 4475 +4477 2 30.07170859282612 -355.9064309019356 76.4302 0.1144 4476 +4478 2 29.97839117599859 -357.32737108961595 77.0826 0.1144 4477 +4479 2 29.753473038146197 -358.80286513326666 77.6686 0.1144 4478 +4480 2 29.46421337484862 -359.85722718250196 78.1746 0.1144 4479 +4481 2 28.96830629362001 -360.75720951994157 78.6111 0.1144 4480 +4482 2 28.089388176472653 -360.9793113148871 78.871 0.1144 4481 +4483 2 27.047637205793784 -360.1503277238546 79.0658 0.1144 4482 +4484 2 26.504441498434716 -359.6816240506537 79.1176 0.1144 4483 +4485 2 26.26708871968571 -358.2967126092449 79.1426 0.1144 4484 +4486 2 25.983276207039793 -356.91043952113034 79.1599 0.1144 4485 +4487 2 25.500387732587434 -355.4662155615039 79.1854 0.1144 4486 +4488 2 24.720226861647873 -355.55127420241627 79.2249 0.1144 4487 +4489 2 23.728521531852202 -354.58756474314987 79.2809 0.1144 4488 +4490 2 22.63624889887177 -353.4939977505042 79.357 0.1144 4489 +4491 2 21.533727287277614 -353.8645215799539 79.455 0.1144 4490 +4492 2 20.411332722537274 -353.2972249566111 79.6096 0.1144 4491 +4493 2 19.30339691683041 -354.09976691194095 79.8479 0.1144 4492 +4494 2 18.58030724088225 -352.74952609504453 80.1875 0.1144 4493 +4495 2 18.154260314206198 -351.2929368550012 80.5031 0.1144 4494 +4496 2 17.58793599999869 -349.791493339037 80.7702 0.1144 4495 +4497 2 16.59892530473642 -349.3002770741789 81.004 0.1144 4496 +4498 2 15.499661347443059 -349.358866997266 81.2148 0.1144 4497 +4499 2 14.405734908929098 -349.5249651031402 81.4475 0.1144 4498 +4500 2 13.401080171268148 -348.84674675795725 81.7681 0.1144 4499 +4501 2 12.460407862243336 -347.4611599434181 82.1495 0.1144 4500 +4502 2 11.493951750487888 -346.53610610931594 82.5017 0.1144 4501 +4503 2 10.536937229681058 -346.64091885360693 82.8344 0.1144 4502 +4504 2 9.608867259259945 -345.4114272305573 83.2079 0.1144 4503 +4505 2 8.667264032053538 -345.79662128652024 83.7021 0.1144 4504 +4506 2 7.705443475574512 -344.4306191730003 84.1638 0.1144 4505 +4507 2 6.705412674090326 -343.14404965076415 84.4119 0.1144 4506 +4508 2 5.544870736294548 -343.4583412743218 84.8585 0.1144 4507 +4509 2 4.548706440088267 -342.11793402350844 85.1248 0.1144 4508 +4510 2 3.4373011551313155 -343.0005387390281 85.3782 0.1144 4509 +4511 2 2.3099191477599916 -342.0298015830215 85.6302 0.1144 4510 +4512 2 1.272718237734047 -340.763267785036 85.9631 0.1144 4511 +4513 2 0.3407324978053836 -341.31435159612005 86.3688 0.1144 4512 +4514 2 -0.5811473328017343 -339.9121180301322 86.8165 0.1144 4513 +4515 2 -1.546977463850837 -338.5619246800092 87.2161 0.1144 4514 +4516 2 -2.2964985396213606 -337.63741881801616 87.656 0.1144 4515 +4517 2 -3.0248183095883547 -337.497760060325 88.1191 0.1144 4516 +4518 2 -3.753223272405144 -335.98655032586703 88.5872 0.1144 4517 +4519 2 -4.47958360682685 -335.4990527635026 89.0515 0.1144 4518 +4520 2 -5.181667080639549 -334.9138484252306 89.4975 0.1144 4519 +4521 2 -5.814089332493381 -333.38338976729517 89.8898 0.1144 4520 +4522 2 -6.456851958976799 -331.8526138541523 90.2334 0.1144 4521 +4523 2 -7.212339635816193 -330.3814021162159 90.5514 0.1144 4522 +4524 2 -8.055795692571515 -330.53798682075626 90.8592 0.1144 4523 +4525 2 -8.903840449420088 -329.35509744071555 91.1627 0.1144 4524 +4526 2 -9.751524108860913 -328.61047746582057 91.4659 0.1144 4525 +4527 2 -10.598631744361732 -328.2683237549891 91.7692 0.1144 4526 +4528 2 -11.447252525150368 -326.89157212829514 92.0662 0.1144 4527 +4529 2 -12.299216153089581 -325.42325622152714 92.349 0.1144 4528 +4530 2 -13.172377985249206 -324.97790530152946 92.6005 0.1144 4529 +4531 2 -14.044156405803662 -324.41154504642356 92.82 0.1144 4530 +4532 2 -14.882004549851246 -323.2495439500404 93.0037 0.1144 4531 +4533 2 -15.684621097053508 -323.2048391973962 93.151 0.1144 4532 +4534 2 -16.485014017948437 -321.691593105719 93.2658 0.1144 4533 +4535 2 -17.23386836629947 -320.34312842998486 93.3408 0.1144 4534 +4536 2 -17.752211881646062 -318.8737317741371 93.3346 0.1144 4535 +4537 2 -18.21778199276541 -317.6071758102455 93.2784 0.1144 4536 +4538 2 -18.42532357194797 -316.5870792601107 93.2554 0.1144 4537 +4539 2 -18.37153854961676 -315.1242554062622 93.1949 0.1144 4538 +4540 2 -18.2524342284755 -313.57392725159775 93.084 0.1144 4539 +4541 2 -18.250766904211282 -312.1905072303935 92.932 0.1144 4540 +4542 2 -18.820789652347365 -311.84008760179495 92.7408 0.1144 4541 +4543 2 -19.421097301410974 -310.75570221110166 92.5134 0.1144 4542 +4544 2 -19.870266631769297 -309.23176375989067 92.2508 0.1144 4543 +4545 2 -20.216981098322826 -307.7660690437202 91.9677 0.1144 4544 +4546 2 -20.572161696810426 -306.4419747784404 91.66 0.1144 4545 +4547 2 -20.928227050833094 -305.1081227879226 91.3385 0.1144 4546 +4548 2 -21.30171549981432 -303.6199034846735 91.0266 0.1144 4547 +4549 2 -21.777967544195192 -302.2159034031272 90.7771 0.1144 4548 +4550 2 -22.373953785510786 -301.8823660026464 90.6293 0.1144 4549 +4551 2 -22.92211401105338 -300.5807772104111 90.529 0.1144 4550 +4552 2 -23.42945593498043 -299.04103200312426 90.4322 0.1144 4551 +4553 2 -23.936850224720224 -298.0262406168961 90.3193 0.1144 4552 +4554 2 -24.483623937074555 -297.710434793842 90.1463 0.1144 4553 +4555 2 -25.151145643044536 -296.3976869135464 89.801 0.1144 4554 +4556 2 -25.629033670693197 -294.91286776390456 89.3584 0.1144 4555 +4557 2 -25.78775595282268 -293.517789822857 88.9333 0.1144 4556 +4558 2 -25.946117137544505 -292.1177371729366 88.5315 0.1144 4557 +4559 2 -26.079842773296292 -290.7295801672035 88.1689 0.1144 4558 +4560 2 -25.96210404149454 -289.55745057546585 87.88 0.1144 4559 +4561 2 -25.41830075641453 -288.78946310923106 87.6988 0.1144 4560 +4562 2 -24.875478346282378 -288.01894646147065 87.5902 0.1144 4561 +4563 2 -24.357779907164115 -286.14223077250125 87.5286 0.1144 4562 +4564 2 -24.01145215045816 -284.43393423516164 87.5008 0.1144 4563 +4565 2 -23.923005446751688 -283.0991943947765 87.4952 0.1144 4564 +4566 2 -23.83464393589506 -281.7786897035675 87.4885 0.1144 4565 +4567 2 -23.745568842435773 -280.53480880751823 87.4614 0.1144 4566 +4568 2 -23.65712213872932 -279.29001360838316 87.402 0.1144 4567 +4569 2 -23.576334179291862 -278.0405055494212 87.297 0.1144 4568 +4570 2 -23.610891638456977 -276.7208471277828 87.101 0.1144 4569 +4571 2 -23.868511703244877 -275.2770382808397 86.749 0.1144 4570 +4572 2 -24.138067379217006 -273.91773025071376 86.2658 0.1144 4571 +4573 2 -24.310544047830376 -272.6623151040861 85.6876 0.1144 4572 +4574 2 -24.26458514858085 -271.3557612110378 85.0559 0.1144 4573 +4575 2 -24.094866372070854 -270.09965993740843 84.3881 0.1144 4574 +4576 2 -23.923438322631483 -268.97984488812966 83.613 0.1144 4575 +4577 2 -23.760305326890105 -267.8893930943287 82.614 0.1144 4576 +4578 2 -23.696910328509304 -266.7457361840888 81.4747 0.1144 4577 +4579 2 -23.868511137888973 -265.4581838961527 80.311 0.1144 4578 +4580 2 -24.14838936622496 -264.0498569612659 79.4371 0.1144 4579 +4581 2 -24.464175821415466 -262.7720762333257 78.8343 0.1144 4580 +4582 2 -24.880962564101793 -261.78642026924126 78.353 0.1144 4581 +4583 2 -25.277250657024197 -261.0615840247027 77.917 0.1144 4582 +4584 2 -25.37498046402517 -259.8214171143759 77.5676 0.1144 4583 +4585 2 -25.349879595437343 -258.44219360050124 77.2859 0.1144 4584 +4586 2 -25.32465209474985 -257.0599394621322 77.0554 0.1144 4585 +4587 2 -25.401395522479717 -255.76075923079367 76.9236 0.1144 4586 +4588 2 -25.520159256471544 -254.51215299899076 76.8821 0.1144 4587 +4589 2 -25.461868412546607 -253.10479090709134 76.9264 0.1144 4588 +4590 2 -25.60059070098238 -251.88059991978827 76.9493 0.1144 4589 +4591 2 -25.78439241329295 -250.69525707250386 76.8578 0.1144 4590 +4592 2 -25.803222022282682 -249.3614506788537 76.7133 0.1144 4591 +4593 2 -25.66304233490088 -247.91001626194134 76.354 0.1144 4592 +4594 2 -25.45678763432015 -246.42322403755986 75.754 0.1144 4593 +4595 2 -25.053053611245645 -244.79059714294965 75.0201 0.1144 4594 +4596 2 -24.19871488313595 -244.29540469653415 74.2367 0.1144 4595 +4597 2 -23.311135530386323 -243.10718514118406 73.4745 0.1144 4596 +4598 2 -22.469199627567164 -242.87746565247772 72.7964 0.1144 4597 +4599 2 -21.723334114618496 -241.61708093514574 72.203 0.1144 4598 +4600 2 -21.190444126525108 -240.83761560364843 71.7346 0.1144 4599 +4601 2 -20.711202709356215 -239.66679804004747 71.3924 0.1144 4600 +4602 2 -20.23989043038462 -238.14252257374153 71.2191 0.1144 4601 +4603 2 -19.910986461173792 -237.13814223157436 71.1948 0.1144 4602 +4604 2 -19.77530477040581 -235.95729058887926 71.2681 0.1144 4603 +4605 2 -19.84956510446301 -234.62216618061177 71.3812 0.1144 4604 +4606 2 -19.994116435305088 -233.24539667802281 71.5274 0.1144 4605 +4607 2 -20.087081645883657 -231.90048568218725 71.7212 0.1144 4606 +4608 2 -20.101319453197064 -230.60692920531105 71.9555 0.1144 4607 +4609 2 -20.141185398224223 -229.29363138201944 72.184 0.1144 4608 +4610 2 -20.18264968138898 -227.9852812804176 72.3789 0.1144 4609 +4611 2 -20.298287903809225 -226.6158374654673 72.557 0.1144 4610 +4612 2 -20.595819566855425 -225.1696992708559 72.7278 0.1144 4611 +4613 2 -20.878248667896102 -223.9008125777473 72.9056 0.1144 4612 +4614 2 -21.257797523008662 -222.84290863483488 73.1284 0.1144 4613 +4615 2 -21.539368587081384 -221.72614918386017 73.5106 0.1144 4614 +4616 2 -21.578693744251964 -220.42341976440593 74.027 0.1144 4615 +4617 2 -21.674858040152344 -219.11338667340345 74.5405 0.1144 4616 +4618 2 -21.76728246287435 -217.780442141174 75.0943 0.1144 4617 +4619 2 -21.94537014577857 -216.41710638031634 75.7515 0.1144 4618 +4620 2 -22.07350769168694 -215.12387523493038 76.6657 0.1144 4619 +4621 2 -21.403706389433836 -214.3635243873366 77.6199 0.1144 4620 +4622 2 -20.35048501537156 -214.64657268022435 78.4714 0.1144 4621 +4623 2 -19.345424023944716 -214.76602208472812 79.4181 0.1144 4622 +4624 2 -18.364500949391072 -215.66893793689573 80.4118 0.1144 4623 +4625 2 -17.626215806553148 -214.74561336637203 81.2566 0.1144 4624 +4626 2 -17.479259028854273 -213.5914504590727 81.6654 0.1144 4625 +4627 2 -17.6511596735276 -212.2384053223929 81.947 0.1144 4626 +4628 2 -18.24603220462957 -211.1219976467185 82.1416 0.1144 4627 +4629 2 -19.080449207093793 -210.09332125424942 82.2475 0.1144 4628 +4630 2 -19.789729721698762 -209.21801019160347 82.3239 0.1144 4629 +4631 2 -19.97754100857935 -208.0913283886911 82.4617 0.1144 4630 +4632 2 -20.24299571396547 -207.00516657189382 82.6554 0.1144 4631 +4633 2 -20.653058424684048 -205.53054138767334 82.9111 0.1144 4632 +4634 2 -21.01424706349026 -204.07121723848175 83.1751 0.1144 4633 +4635 2 -21.415928835124546 -202.59954026746888 83.3977 0.1144 4634 +4636 2 -21.89561202108891 -201.49384203283472 83.5674 0.1144 4635 +4637 2 -22.352983292619214 -200.33180315412517 83.7085 0.1144 4636 +4638 2 -22.724024576547905 -198.85580341265444 83.8432 0.1144 4637 +4639 2 -23.022047070684422 -197.402305105069 83.9569 0.1144 4638 +4640 2 -23.25930604437096 -196.30449196951318 84.0434 0.1144 4639 +4641 2 -23.41669177007836 -195.1332545433761 84.1089 0.1144 4640 +4642 2 -23.48698086723219 -193.8340573571523 84.1582 0.1144 4641 +4643 2 -23.491154204473844 -192.4694810321343 84.1952 0.1144 4642 +4644 2 -23.530297954685636 -191.14412786378296 84.2262 0.1144 4643 +4645 2 -23.54022296646376 -189.8790267793617 84.2624 0.1144 4644 +4646 2 -23.5889520694528 -188.56642169054936 84.3119 0.1144 4645 +4647 2 -23.70766343763188 -187.34333100480853 84.3839 0.1144 4646 +4648 2 -23.817778940194188 -186.10747501480193 84.485 0.1144 4647 +4649 2 -23.899251728262897 -184.84009927392555 84.6185 0.1144 4648 +4650 2 -24.057307282972886 -183.68023658514053 84.7832 0.1144 4649 +4651 2 -24.127719910643137 -182.41379113395098 85.0864 0.1144 4650 +4652 2 -23.88885056612881 -180.8080018588428 85.7074 0.1144 4651 +4653 2 -23.989923220280332 -179.59124843311542 86.1851 0.1144 4652 +4654 2 -24.1332670358464 -178.42269044958147 86.5444 0.1144 4653 +4655 2 -24.278625754353612 -177.2501101217954 86.8059 0.1144 4654 +4656 2 -24.424199399393274 -176.08127455002418 86.9809 0.1144 4655 +4657 2 -24.569379119988227 -174.76520380594872 87.0828 0.1144 4656 +4658 2 -24.714558840583123 -173.39847981316063 87.148 0.1144 4657 +4659 2 -24.859686195365327 -172.0316963823975 87.2304 0.1144 4658 +4660 2 -25.0065166199107 -170.65826901671483 87.339 0.1144 4659 +4661 2 -25.226446303701167 -169.25383616644638 87.4938 0.1144 4660 +4662 2 -25.691834315325053 -167.7768556425239 87.7509 0.1144 4661 +4663 2 -26.181717215673473 -166.331921177124 88.0855 0.1144 4662 +4664 2 -26.67204640627925 -165.09617061919744 88.466 0.1144 4663 +4665 2 -27.1621083045399 -163.73992357362454 88.8628 0.1144 4664 +4666 2 -27.64165083025864 -162.71024036842272 89.2158 0.1144 4665 +4667 2 -28.1052615058326 -162.14537722967768 89.4681 0.1144 4666 +4668 2 -28.56806479374147 -160.88691625743255 89.6305 0.1144 4667 +4669 2 -29.032157688193024 -159.59816155983646 89.7266 0.1144 4668 +4670 2 -29.496165389794825 -158.18658260413727 89.7781 0.1144 4669 +4671 2 -29.819983305761554 -156.7285796775015 89.8064 0.1144 4670 +4672 2 -30.108026522676113 -155.2843131581799 89.8313 0.1144 4671 +4673 2 -30.395184984055646 -153.83893889176807 89.8654 0.1144 4672 +4674 2 -30.683365759632736 -152.36374940116977 89.9116 0.1144 4673 +4675 2 -30.97047185519949 -150.9198158710087 89.9721 0.1144 4674 +4676 2 -31.188133371849716 -149.73079327121332 90.0726 0.1144 4675 +4677 2 -31.385386942215447 -148.6730382434262 90.2135 0.1144 4676 +4678 2 -31.58010505309572 -147.61336468865747 90.3865 0.1144 4677 +4679 2 -31.774247140035868 -146.55744431558648 90.5825 0.1144 4678 +4680 2 -31.969359175360864 -145.50767732270967 90.7931 0.1144 4679 +4681 2 -32.16509960043871 -144.18504453533646 91.0118 0.1144 4680 +4682 2 -32.36012644291394 -142.79761437722414 91.2316 0.1144 4681 +4683 2 -32.55372533295109 -141.4275583816575 91.4511 0.1144 4682 +4684 2 -32.74938056517912 -140.0761386826817 91.67 0.1144 4683 +4685 2 -32.9435226521193 -138.72091813289745 91.8884 0.1144 4684 +4686 2 -33.13863468744427 -137.36135303181794 92.1054 0.1144 4685 +4687 2 -33.332776774384484 -135.99833680635604 92.3213 0.1144 4686 +4688 2 -33.52788880970948 -134.62161606493072 92.5347 0.1144 4687 +4689 2 -33.72291565218474 -133.2252309887597 92.7455 0.1144 4688 +4690 2 -33.918656077262554 -131.82672534807236 92.9522 0.1144 4689 +4691 2 -34.1127981642027 -130.42893958042075 93.1529 0.1144 4690 +4692 2 -34.308538589280545 -129.03032677576232 93.3467 0.1144 4691 +4693 2 -34.50325670016082 -127.63170364880453 93.5326 0.1144 4692 +4694 2 -34.72420869814887 -126.22120151497818 93.6911 0.1144 4693 +4695 2 -34.94636510982981 -124.80700115172846 93.8283 0.1144 4694 +4696 2 -35.16794549757067 -123.39503192614528 93.9509 0.1144 4695 +4697 2 -35.39103903059939 -121.9831562696459 94.0643 0.1144 4696 +4698 2 -35.61418492944088 -120.86209060373746 94.1744 0.1144 4697 +4699 2 -35.835712951369004 -119.89948277946479 94.2866 0.1144 4698 +4700 2 -35.936656564374445 -118.66549935523066 94.4126 0.1144 4699 +4701 2 -35.966937156624326 -117.2809659995901 94.5557 0.1144 4700 +4702 2 -35.99272285384342 -116.02048038265747 94.7125 0.1144 4701 +4703 2 -36.01738933021946 -114.82338288900655 94.8794 0.1144 4702 +4704 2 -36.0425466376857 -113.62678626763481 95.0536 0.1144 4703 +4705 2 -36.068641066499765 -112.43146180505249 95.2314 0.1144 4704 +4706 2 -36.10916822831682 -111.26345051833286 95.4117 0.1144 4705 +4707 2 -36.190012626632694 -110.16444122611178 95.5998 0.1144 4706 +4708 2 -36.27193170495883 -109.06691318732094 95.7886 0.1144 4707 +4709 2 -36.3543416143753 -107.96029146038765 95.9706 0.1144 4708 +4710 2 -36.455679151825464 -106.89527435138609 96.1346 0.1144 4709 +4711 2 -36.69191581131446 -106.06026658364968 96.2298 0.1144 4710 +4712 2 -36.93225344138942 -105.22960453918992 96.2727 0.1144 4711 +4713 2 -37.171601584303914 -104.26909542963098 96.2814 0.1144 4712 +4714 2 -37.42962960168258 -103.04681130550765 96.2844 0.1144 4713 +4715 2 -37.768858811249785 -101.8056022054238 96.3402 0.1144 4714 +4716 2 -38.108578851907325 -100.57546869944959 96.4404 0.1144 4715 +4717 2 -38.44874518282225 -99.34107223164995 96.5745 0.1144 4716 +4718 2 -38.77532209701951 -98.1107074310183 96.7162 0.1144 4717 +4719 2 -39.03878213077675 -96.89787687399179 96.8234 0.1144 4718 +4720 2 -39.30384050267159 -95.68781377856101 96.8786 0.1144 4719 +4721 2 -39.56636341508106 -94.48193175361182 96.8772 0.1144 4720 +4722 2 -39.831421786975895 -93.27676986321465 96.8316 0.1144 4721 +4723 2 -40.54740741600527 -93.52784629489359 96.2713 0.1144 4722 +4724 2 -41.32969199971974 -93.09201999811812 95.6418 0.1144 4723 +4725 2 -41.63563123142811 -92.5049563204849 95.4391 0.1144 4724 +4726 2 -42.27679000914429 -91.27785658771145 95.4142 0.1144 4725 +4727 2 -43.06608753355715 -91.37406792919741 95.5721 0.1144 4726 +4728 2 -43.966058584228094 -90.24671218950937 95.7202 0.1144 4727 +4729 2 -44.87191655374764 -89.13649736050748 95.8362 0.1144 4728 +4730 2 -45.96650731063458 -88.8335725741714 95.9064 0.1144 4729 +4731 2 -45.84141477203909 -87.52241912114944 96.8058 0.1144 4730 +4732 2 -45.71760642405293 -86.37025389204842 97.8874 0.1144 4731 +4733 2 -45.58629540526263 -85.3443420552999 98.4074 0.1144 4732 +4734 2 -45.45582460117457 -84.34879751507697 98.985 0.1144 4733 +4735 2 -45.30931962436277 -83.33567688254993 99.6195 0.1144 4734 +4736 2 -44.74888280972357 -82.64081910349397 100.2268 0.1144 4735 +4737 2 -44.18769097323201 -81.94547412489464 100.8143 0.1144 4736 +4738 2 -43.624624894044956 -81.08081138024701 101.3737 0.1144 4737 +4739 2 -43.200947037209204 -79.44792097263223 101.941 0.1144 4738 +4740 2 -43.044856707620085 -78.27318582161564 102.5408 0.1144 4739 +4741 2 -42.891086910984 -77.26022402297107 103.1573 0.1144 4740 +4742 2 -42.73695601694021 -76.24469335603509 103.7761 0.1144 4741 +4743 2 -42.582877488709244 -75.22679250480266 104.3753 0.1144 4742 +4744 2 -42.428300304408 -74.20715157853314 104.9633 0.1144 4743 +4745 2 -42.28160091646467 -73.23938650462381 106.013 0.1144 4744 +4746 2 -47.00893753315347 -89.15060289219312 95.9272 0.1144 4730 +4747 2 -48.12300282010753 -88.87087406416777 95.8163 0.1144 4746 +4748 2 -49.123089088987555 -88.2615267201899 95.6682 0.1144 4747 +4749 2 -50.12218587070703 -88.0924488004678 95.4993 0.1144 4748 +4750 2 -51.12172894268403 -87.08152498230919 95.3075 0.1144 4749 +4751 2 -52.12024970046336 -86.08507742481054 95.0888 0.1144 4750 +4752 2 -52.82765868319302 -86.29585120698886 96.7338 0.1144 4751 +4753 2 -53.65003836741944 -85.49359724628155 97.9264 0.1144 4752 +4754 2 -54.525311600717814 -84.49683437697104 98.8212 0.1144 4753 +4755 2 -55.46883181793149 -83.61811445009158 99.8553 0.1144 4754 +4756 2 -56.464300548900226 -84.43782844912059 100.9873 0.1144 4755 +4757 2 -57.48559352753904 -83.85414701170517 102.0743 0.1144 4756 +4758 2 -58.38633331445671 -82.87071402084568 102.9585 0.1144 4757 +4759 2 -59.254805840454026 -82.43635739602651 103.7084 0.1144 4758 +4760 2 -60.11356707411122 -81.9093044652625 104.3498 0.1144 4759 +4761 2 -60.901392199949356 -80.77340128561498 104.8863 0.1144 4760 +4762 2 -61.666054175392134 -79.63087220748059 105.3298 0.1144 4761 +4763 2 -62.43668275190376 -78.74543499314525 105.6832 0.1144 4762 +4764 2 -63.222868792891106 -78.44360955899737 105.9069 0.1144 4763 +4765 2 -63.738406454824016 -77.22990745716086 105.9822 0.1144 4764 +4766 2 -64.05037946308592 -76.0233349875848 105.9178 0.1144 4765 +4767 2 -64.55238317569695 -74.81623795441823 105.7577 0.1144 4766 +4768 2 -65.1101061136581 -73.61606484184243 105.5438 0.1144 4767 +4769 2 -65.6697032943147 -72.41321768973833 105.3128 0.1144 4768 +4770 2 -66.22836335362354 -71.71908482460753 105.0969 0.1144 4769 +4771 2 -66.71736460001999 -71.01508407067477 104.9202 0.1144 4770 +4772 2 -66.29206817373428 -69.60187135552333 104.8186 0.1144 4771 +4773 2 -65.71742207014105 -68.45808911828367 104.8211 0.1144 4772 +4774 2 -65.1403343121249 -67.71428296833852 104.9096 0.1144 4773 +4775 2 -64.70742979087302 -66.83517342922549 105.1333 0.1144 4774 +4776 2 -64.56854522066358 -65.78517370009358 105.5939 0.1144 4775 +4777 2 -64.45674336447672 -64.73746570652939 106.2622 0.1144 4776 +4778 2 -64.3581280745984 -63.80586198906486 107.6956 0.1144 4777 +4779 2 -53.014639379015094 -87.41913608803281 94.6823 0.1144 4751 +4780 2 -53.98719544166306 -87.53565625968017 94.3438 0.1144 4779 +4781 2 -54.93952186340225 -87.69592951178679 93.9621 0.1144 4780 +4782 2 -55.80485056383189 -88.93355510827065 93.5441 0.1144 4781 +4783 2 -56.5723996014618 -89.67827506472769 93.116 0.1144 4782 +4784 2 -57.25751289930827 -90.2366957962586 92.759 0.1144 4783 +4785 2 -57.876263660298406 -90.86504029633922 92.4622 0.1144 4784 +4786 2 -58.54012259399204 -91.89906445226461 92.0385 0.1144 4785 +4787 2 -59.282234205616334 -93.17576815282644 91.4091 0.1144 4786 +4788 2 -60.30859291205506 -93.02537936278675 90.9048 0.1144 4787 +4789 2 -61.44129050806863 -92.56336146094826 90.6125 0.1144 4788 +4790 2 -62.571437923914075 -93.39912114942459 90.277 0.1144 4789 +4791 2 -63.696999048712826 -92.9682435925757 89.8817 0.1144 4790 +4792 2 -64.82219907610394 -92.89618420105683 89.4555 0.1144 4791 +4793 2 -65.94517237560453 -93.40514838975852 89.0005 0.1144 4792 +4794 2 -67.06516392536223 -92.96647393082006 88.5167 0.1144 4793 +4795 2 -68.18657171376216 -93.22945053039392 88.048 0.1144 4794 +4796 2 -69.31612838498489 -93.42624355480697 87.7643 0.1144 4795 +4797 2 -70.44881297682568 -93.02462618275128 87.6473 0.1144 4796 +4798 2 -71.58246751705133 -93.69152580051248 87.6618 0.1144 4797 +4799 2 -72.71612205727695 -93.5136239332233 87.771 0.1144 4798 +4800 2 -73.84754986961212 -94.41851516158528 87.9421 0.1144 4799 +4801 2 -74.97866895035234 -94.01142363591555 88.1446 0.1144 4800 +4802 2 -76.10973566527976 -93.59639500028061 88.3532 0.1144 4801 +4803 2 -77.24085474602003 -94.51182519992743 88.5629 0.1144 4802 +4804 2 -78.37889606397917 -94.02604256412829 88.7734 0.1144 4803 +4805 2 -79.51899983259919 -93.84713373658516 88.9862 0.1144 4804 +4806 2 -80.6585275772792 -94.311494162546 89.203 0.1144 4805 +4807 2 -81.79818505564174 -93.78875589490345 89.4264 0.1144 4806 +4808 2 -82.93677567897393 -94.00983441055034 89.6591 0.1144 4807 +4809 2 -84.07585713339641 -94.06776400549661 89.9027 0.1144 4808 +4810 2 -85.21118089237478 -93.59201785264463 90.1824 0.1144 4809 +4811 2 -86.34454211422474 -94.25717876403269 90.4935 0.1144 4810 +4812 2 -87.47718975347208 -93.97130413712962 90.8267 0.1144 4811 +4813 2 -88.60832424743151 -93.50589092876572 91.1809 0.1144 4812 +4814 2 -89.73906481694631 -94.35551798211658 91.539 0.1144 4813 +4815 2 -90.87077533484586 -93.88565927739876 91.8896 0.1144 4814 +4816 2 -92.0025382185581 -93.42112143933304 92.2194 0.1144 4815 +4817 2 -93.13683656175589 -94.26825991324048 92.5282 0.1144 4816 +4818 2 -94.25166408001682 -93.80764640345004 93.1118 0.1144 4817 +4819 2 -41.6742082795698 -93.20817423120363 93.4178 0.1144 4724 +4820 2 -42.42756384991284 -93.95455248945443 92.0237 0.1144 4819 +4821 2 -43.11362658074327 -95.27846818234092 91.2419 0.1144 4820 +4822 2 -43.73636158280955 -95.82338119858164 90.3202 0.1144 4821 +4823 2 -44.45523647028824 -96.2098380473397 89.2623 0.1144 4822 +4824 2 -45.062817266735834 -96.53571353557233 87.5028 0.1144 4823 +4825 2 -39.9658754122612 -92.21210772331543 97.4408 0.1144 4722 +4826 2 -40.112653470993834 -91.04383883948034 97.3532 0.1144 4825 +4827 2 -40.25939870268931 -89.87775642013912 97.288 0.1144 4826 +4828 2 -40.33988200359755 -88.73838812705786 97.2698 0.1144 4827 +4829 2 -40.30801807283869 -87.64978423241706 97.356 0.1144 4828 +4830 2 -40.34061919804155 -86.53289369018425 97.55 0.1144 4829 +4831 2 -40.637613174814305 -85.34310802940715 97.8141 0.1144 4830 +4832 2 -41.04900693132542 -84.53858714510099 98.1075 0.1144 4831 +4833 2 -41.47037996505847 -83.9284894831476 98.3979 0.1144 4832 +4834 2 -41.89340370274192 -82.89521674252553 98.6558 0.1144 4833 +4835 2 -42.316557174108 -81.66917770405222 98.8627 0.1144 4834 +4836 2 -42.65418804553752 -80.45892830173769 98.936 0.1144 4835 +4837 2 -42.93622322213352 -79.2584335239861 98.8551 0.1144 4836 +4838 2 -43.209119336209625 -78.10827065180355 98.6544 0.1144 4837 +4839 2 -43.481662965090806 -77.23842428397776 98.378 0.1144 4838 +4840 2 -43.75821065791243 -76.36516299642848 98.0916 0.1144 4839 +4841 2 -44.041000856360796 -75.49637851592654 97.853 0.1144 4840 +4842 2 -44.326902538234606 -74.33971587421136 97.6875 0.1144 4841 +4843 2 -44.612547854326294 -73.12925912694192 97.5948 0.1144 4842 +4844 2 -44.89863163569555 -71.92091967983244 97.5652 0.1144 4843 +4845 2 -45.1838306615297 -70.7152885233783 97.5836 0.1144 4844 +4846 2 -45.00497592408294 -69.69906605479139 97.7094 0.1144 4845 +4847 2 -44.55901897985029 -68.84498345712721 97.9493 0.1144 4846 +4848 2 -44.07718973738321 -67.30975106497333 98.2694 0.1144 4847 +4849 2 -43.83815301405619 -66.06966128398848 98.5376 0.1144 4848 +4850 2 -43.78663615886518 -64.97252750237409 98.6863 0.1144 4849 +4851 2 -43.75908812522479 -63.85919172965941 98.7249 0.1144 4850 +4852 2 -43.44333038405733 -62.89625267430756 98.8299 0.1144 4851 +4853 2 -43.02757925637232 -62.00064732334166 99.0497 0.1144 4852 +4854 2 -42.62607265372489 -60.57070769920032 99.843 0.1144 4853 +4855 2 6.044276312569828 -343.87623173164764 83.8776 0.1144 4507 +4856 2 4.972300495982907 -344.44718259228597 83.9502 0.1144 4855 +4857 2 3.8580062543503217 -345.52171866743646 84.1299 0.1144 4856 +4858 2 2.7315757872357835 -345.2922873506587 84.3251 0.1144 4857 +4859 2 1.6098753729967115 -344.7322856751124 84.5454 0.1144 4858 +4860 2 0.553681850007564 -346.3279206997605 84.7935 0.1144 4859 +4861 2 -0.5568427753076861 -345.6498564240196 85.2247 0.1144 4860 +4862 2 -1.3199409561597903 -344.19659529881613 85.8306 0.1144 4861 +4863 2 -2.1561705307574357 -343.1800764642711 86.3324 0.1144 4862 +4864 2 -3.1842026528096667 -343.42165767871114 86.781 0.1144 4863 +4865 2 -4.241284435657931 -342.9991867487621 87.5028 0.1144 4864 +4866 2 27.838440767007356 -361.8592872317109 79.0877 0.1144 4482 +4867 2 27.709588532369168 -363.0536588029161 79.035 0.1144 4866 +4868 2 27.606165898756757 -364.27149489037515 79.0132 0.1144 4867 +4869 2 27.504179042562235 -365.4879467664841 78.9846 0.1144 4868 +4870 2 27.423082351529885 -366.7231160163696 78.9443 0.1144 4869 +4871 2 27.434520508595824 -368.02039031568665 78.8774 0.1144 4870 +4872 2 27.451081950445342 -369.3321961545332 78.7909 0.1144 4871 +4873 2 27.466077881194288 -370.6366051350695 78.6906 0.1144 4872 +4874 2 27.337173280743386 -372.0452805878477 78.5837 0.1144 4873 +4875 2 26.865734369672182 -373.8962808326968 78.4904 0.1144 4874 +4876 2 26.436443089499107 -375.17670173888075 78.4115 0.1144 4875 +4877 2 26.136634328205552 -376.362998064862 78.344 0.1144 4876 +4878 2 25.680069716998062 -377.42092408426697 78.2474 0.1144 4877 +4879 2 25.225695905060824 -378.84113513253345 77.9671 0.1144 4878 +4880 2 33.04898330292356 -345.80195929316017 71.3857 0.1144 4469 +4881 2 33.70040417524309 -345.1999041741426 71.5876 0.1144 4880 +4882 2 34.01781572194409 -344.1644842761988 71.759 0.1144 4881 +4883 2 33.973060957441476 -342.8342524795579 71.9068 0.1144 4882 +4884 2 33.67601151327287 -341.391904925033 72.0426 0.1144 4883 +4885 2 33.63864820069408 -340.06853285824775 72.1888 0.1144 4884 +4886 2 33.43805178317783 -338.65110707982257 72.359 0.1144 4885 +4887 2 33.42416646105937 -337.3466902050396 72.6062 0.1144 4886 +4888 2 33.52126208873188 -336.1418973013647 72.9778 0.1144 4887 +4889 2 33.26436732034239 -334.70830707014505 73.393 0.1144 4888 +4890 2 33.03731416950985 -333.3093219208104 73.9603 0.1144 4889 +4891 2 32.92243407052516 -331.95014364245003 74.398 0.1144 4890 +4892 2 32.81855556295992 -330.60633435994737 74.6995 0.1144 4891 +4893 2 32.8653954236248 -329.34272013136 74.881 0.1144 4892 +4894 2 32.92297268494711 -328.08555345460417 74.9546 0.1144 4893 +4895 2 33.05757659412173 -326.89022552800225 74.9302 0.1144 4894 +4896 2 33.173155968616996 -325.6810861799471 74.8577 0.1144 4895 +4897 2 33.12304345402272 -324.353735636957 74.8056 0.1144 4896 +4898 2 32.86102229926656 -322.91592454461 74.7816 0.1144 4897 +4899 2 32.460404281079605 -321.4246780541836 74.797 0.1144 4898 +4900 2 32.05145768962109 -320.18309631680495 74.8689 0.1144 4899 +4901 2 31.659573095713384 -319.54535798143553 74.9675 0.1144 4900 +4902 2 31.654786781938157 -318.2851429342238 75.0534 0.1144 4901 +4903 2 31.882245889905576 -316.63707639212424 75.1178 0.1144 4902 +4904 2 31.66424040557687 -315.6806220471163 75.1545 0.1144 4903 +4905 2 31.23693359781204 -314.858912925788 75.1848 0.1144 4904 +4906 2 30.949830603828275 -313.46244792637543 75.2111 0.1144 4905 +4907 2 30.80117830240018 -312.1597595571026 75.2195 0.1144 4906 +4908 2 30.798157013038725 -310.8565127133985 75.1229 0.1144 4907 +4909 2 31.075207569640767 -309.69039622649916 74.7953 0.1144 4908 +4910 2 31.093631261444067 -308.4409581756449 74.1989 0.1144 4909 +4911 2 30.97790784617402 -307.08590726448756 73.787 0.1144 4910 +4912 2 31.42724515889237 -307.3620975050677 71.64 0.1144 4911 +4913 2 32.239551068297665 -307.5116343506276 70.5438 0.1144 4912 +4914 2 33.269275333550006 -308.7500428264972 70.1943 0.1144 4913 +4915 2 34.2343480337002 -309.7773851251817 69.9149 0.1144 4914 +4916 2 34.883027304486276 -310.37395875353417 69.6679 0.1144 4915 +4917 2 35.16131950632077 -311.2464277503393 69.4677 0.1144 4916 +4918 2 36.06117282119348 -312.43655727926193 69.265 0.1144 4917 +4919 2 37.19669029876678 -311.39007622889756 69.085 0.1144 4918 +4920 2 38.33634777712936 -311.98833134399393 68.8584 0.1144 4919 +4921 2 38.898053257341715 -313.35876257909547 68.2576 0.1144 4920 +4922 2 39.49898619457504 -314.8626925877235 67.8748 0.1144 4921 +4923 2 40.104599227917554 -315.6211125544549 67.6917 0.1144 4922 +4924 2 40.72272389638447 -315.97351402753515 67.4607 0.1144 4923 +4925 2 41.418262336141716 -317.47405497062294 67.1602 0.1144 4924 +4926 2 42.19989801470249 -318.1306005323477 66.7696 0.1144 4925 +4927 2 42.97448861806441 -318.70053046824916 66.2673 0.1144 4926 +4928 2 43.15376219985924 -319.93897874805214 65.6617 0.1144 4927 +4929 2 43.37251069617779 -320.8755514436061 65.0877 0.1144 4928 +4930 2 44.38241465818532 -322.0197819922211 64.5733 0.1144 4929 +4931 2 45.33733079971116 -322.67936503871556 63.9414 0.1144 4930 +4932 2 46.2165235966368 -322.76225151262975 63.17 0.1144 4931 +4933 2 47.1486582005758 -323.94145895738615 62.3098 0.1144 4932 +4934 2 48.14077077844762 -323.1308869174136 61.1817 0.1144 4933 +4935 2 48.939247525666865 -322.89718716883016 59.7881 0.1144 4934 +4936 2 49.79414415367724 -322.99780235974634 58.3125 0.1144 4935 +4937 2 50.58455019713274 -323.3655090943865 56.6255 0.1144 4936 +4938 2 50.77939635999145 -321.954864537676 55.162 0.1144 4937 +4939 2 51.33653968069902 -321.2341235246503 53.3884 0.1144 4938 +4940 2 52.271689873413216 -321.7638595009244 51.872 0.1144 4939 +4941 2 53.19318178707821 -320.3285096258302 50.4546 0.1144 4940 +4942 2 54.04529107647723 -320.49201978258304 48.8877 0.1144 4941 +4943 2 54.90006557102249 -320.93796440539785 47.1111 0.1144 4942 +4944 2 55.5810763894148 -321.92298775427844 45.4154 0.1144 4943 +4945 2 56.28615222578165 -321.69810701858177 44.2386 0.1144 4944 +4946 2 57.18628144521216 -322.99309925491804 43.4526 0.1144 4945 +4947 2 57.840209940344806 -323.6950742913981 42.7795 0.1144 4946 +4948 2 58.630350088506326 -323.9965306923747 42.3184 0.1144 4947 +4949 2 59.668884453371305 -325.2097773886882 41.9482 0.1144 4948 +4950 2 60.733120529700166 -326.3809485587778 41.743 0.1144 4949 +4951 2 61.55622169852028 -325.9600182273064 41.5414 0.1144 4950 +4952 2 62.42301749453674 -327.3978924324474 41.3501 0.1144 4951 +4953 2 63.18968886229108 -327.9783030550941 41.1874 0.1144 4952 +4954 2 63.723898573708325 -328.6499286480539 41.0228 0.1144 4953 +4955 2 64.16625247608289 -330.0385775262023 40.7518 0.1144 4954 +4956 2 64.6031275068958 -331.4634606408944 40.3575 0.1144 4955 +4957 2 65.34694617235961 -332.92080723939074 39.8653 0.1144 4956 +4958 2 65.62245372871791 -334.3131420383661 39.1924 0.1144 4957 +4959 2 65.30513798767802 -335.1891472604798 38.0842 0.1144 4958 +4960 2 64.54010109432318 -335.3151883930018 36.6064 0.1144 4959 +4961 2 63.63205793713031 -335.1683545613446 35.1389 0.1144 4960 +4962 2 63.451346589297096 -334.83390174642017 33.6031 0.1144 4961 +4963 2 62.8528040536366 -335.37221271105994 31.8718 0.1144 4962 +4964 2 61.86781494280686 -334.55103938334344 30.5015 0.1144 4963 +4965 2 60.91704402290433 -335.7637499120001 29.3541 0.1144 4964 +4966 2 60.02139177012872 -336.06529002947076 28.5362 0.1144 4965 +4967 2 59.17641865017084 -336.29156705153224 27.8781 0.1144 4966 +4968 2 58.45806162610131 -336.7611257848769 27.3708 0.1144 4967 +4969 2 57.914613235262806 -338.71435773878477 26.957 0.1144 4968 +4970 2 57.53932000432223 -340.3632764492423 26.6069 0.1144 4969 +4971 2 57.33881456923142 -341.4916314744152 26.2867 0.1144 4970 +4972 2 57.2500974715967 -342.71317513023513 25.9403 0.1144 4971 +4973 2 57.18694994269675 -343.9381010924122 25.4069 0.1144 4972 +4974 2 56.7316241877617 -343.5983820349553 24.4015 0.1144 4973 +4975 2 55.791675559592825 -345.0737225730466 23.5919 0.1144 4974 +4976 2 55.67446461147481 -346.4323599795638 22.4367 0.1144 4975 +4977 2 50.876556150554926 -321.95265308672225 55.2796 0.1144 4938 +4978 2 51.325622465797636 -322.91235284210103 55.9348 0.1144 4977 +4979 2 51.52884504627873 -324.25042941324915 56.2811 0.1144 4978 +4980 2 51.55770629830324 -325.55150881138826 56.5222 0.1144 4979 +4981 2 51.36272117402377 -326.7375786123907 56.6955 0.1144 4980 +4982 2 51.08087319396216 -327.93080316829867 56.7862 0.1144 4981 +4983 2 50.791708028263635 -329.6749218145609 56.8025 0.1144 4982 +4984 2 50.53720764552333 -331.3864466509821 56.7829 0.1144 4983 +4985 2 50.30890281222417 -332.8396731276271 56.7647 0.1144 4984 +4986 2 50.012886289921724 -333.892160470694 56.7308 0.1144 4985 +4987 2 49.618080794794686 -334.837192923428 56.6499 0.1144 4986 +4988 2 49.192262095454794 -335.74674192406763 56.5183 0.1144 4987 +4989 2 48.76390793662945 -336.6584201690782 56.3466 0.1144 4988 +4990 2 48.336970016446436 -337.62828409768696 56.147 0.1144 4989 +4991 2 47.90999926922634 -338.7598759972581 55.9381 0.1144 4990 +4992 2 47.482582231748786 -340.7354015245736 55.7371 0.1144 4991 +4993 2 47.05462199736822 -342.2146098481458 55.5534 0.1144 4992 +4994 2 46.8859785934051 -343.3771017742159 55.4394 0.1144 4993 +4995 2 46.962722021134915 -344.7316597899417 55.4288 0.1144 4994 +4996 2 47.131206244907446 -346.1416672362502 55.4736 0.1144 4995 +4997 2 47.40775703931215 -347.30765726843237 55.4504 0.1144 4996 +4998 2 47.714821689322896 -348.0096408963346 55.3535 0.1144 4997 +4999 2 47.9015199585265 -348.96184500624554 55.2726 0.1144 4998 +5000 2 47.74098469067296 -350.54778614472764 55.37 0.1144 4999 +5001 2 47.53522933869898 -352.19162817329357 55.6399 0.1144 5000 +5002 2 47.33035564067694 -353.82637944858794 56.047 0.1144 5001 +5003 2 47.12695915932264 -354.96437230866036 56.5505 0.1144 5002 +5004 2 46.68616073595702 -355.8395477441609 57.1082 0.1144 5003 +5005 2 46.61499646696348 -357.06167516894874 57.5548 0.1144 5004 +5006 2 46.54596512079797 -358.2917075662051 57.9004 0.1144 5005 +5007 2 46.47569963548553 -359.52874046121974 58.163 0.1144 5006 +5008 2 46.40609536696302 -360.76574592074064 58.3624 0.1144 5007 +5009 2 46.812454133123424 -362.2541240592863 58.5371 0.1144 5008 +5010 2 47.23213192207323 -363.66081573159266 58.896 0.1144 5009 +5011 2 38.78855142384954 -311.98742315176287 68.6941 0.1144 4920 +5012 2 39.76284889392729 -311.8617061644791 68.5726 0.1144 5011 +5013 2 40.820858090633045 -310.3135559079077 68.4922 0.1144 5012 +5014 2 41.908118568720944 -310.1880699798262 68.4491 0.1144 5013 +5015 2 43.04253123238204 -309.63378231149267 68.4331 0.1144 5014 +5016 2 43.761684025017125 -308.8632755678837 68.4337 0.1144 5015 +5017 2 44.17662466345389 -307.94266223661754 68.4345 0.1144 5016 +5018 2 44.49216747808895 -306.91862656131485 68.4354 0.1144 5017 +5019 2 44.79233733679016 -305.87833225725467 68.4365 0.1144 5018 +5020 2 45.03640905046792 -304.26433354375433 68.439 0.1144 5019 +5021 2 45.07722994425116 -302.85646526156563 68.4435 0.1144 5020 +5022 2 44.53064624536145 -302.7052623187301 68.4471 0.1144 5021 +5023 2 43.83047225032781 -301.20195186140734 68.4474 0.1144 5022 +5024 2 43.223654803292334 -299.8497815487943 68.4412 0.1144 5023 +5025 2 42.41386173069861 -298.6211071641115 68.5076 0.1144 5024 +5026 2 41.44145012241596 -300.1650485884294 69.4534 0.1144 5025 +5027 2 40.40843957268655 -299.80143410197445 69.9104 0.1144 5026 +5028 2 39.37732679364731 -300.6048221612319 70.2069 0.1144 5027 +5029 2 38.67043797669898 -299.169853211439 70.6182 0.1144 5028 +5030 2 38.757907220792454 -298.09034183467145 71.1096 0.1144 5029 +5031 2 39.562053835370065 -297.8957152807672 72.0188 0.1144 5030 +5032 2 40.12611930430725 -295.8565868102057 72.5455 0.1144 5031 +5033 2 40.75089213376211 -294.80108005331084 72.9464 0.1144 5032 +5034 2 40.77942724551651 -293.55157945681407 73.2113 0.1144 5033 +5035 2 40.24365512458172 -292.1170619875108 73.3446 0.1144 5034 +5036 2 40.4551652526752 -290.9459317869197 73.3849 0.1144 5035 +5037 2 40.958821781652134 -290.1379568539407 73.3527 0.1144 5036 +5038 2 41.873304157975525 -289.0979565039928 73.313 0.1144 5037 +5039 2 42.49014474765001 -287.9250464196793 73.1965 0.1144 5038 +5040 2 43.12677109702233 -287.0131701591309 73.0954 0.1144 5039 +5041 2 43.510389799651364 -285.8594248176879 73.0178 0.1144 5040 +5042 2 43.982542293325125 -285.01771704211836 72.919 0.1144 5041 +5043 2 39.55158993022394 -297.9280278872905 73.3916 0.1144 5031 +5044 2 38.90475706546108 -298.5578605135279 73.6333 0.1144 5043 +5045 2 38.39085086533388 -299.35085340320677 73.7386 0.1144 5044 +5046 2 38.179611131168635 -300.4700230235659 73.8357 0.1144 5045 +5047 2 38.06777162985172 -301.6762927394507 73.9108 0.1144 5046 +5048 2 38.08339595035348 -302.97786774790274 73.9348 0.1144 5047 +5049 2 38.13332946703551 -304.30390441234135 73.9119 0.1144 5048 +5050 2 38.35392036761585 -305.7226426142527 74.0407 0.1144 5049 +5051 2 42.409424202694886 -297.34440386905993 68.4494 0.1144 5025 +5052 2 42.33053923992432 -296.0192156735464 68.3046 0.1144 5051 +5053 2 42.358748490354664 -294.75457368883747 68.1864 0.1144 5052 +5054 2 42.359613245046724 -293.477408570598 68.1027 0.1144 5053 +5055 2 42.277564433037924 -292.1469447099885 68.0532 0.1144 5054 +5056 2 41.77110726464589 -291.4422927261424 68.0509 0.1144 5055 +5057 2 41.177920673577816 -290.5921967161552 68.0918 0.1144 5056 +5058 2 40.67016528643036 -289.0888659376458 68.222 0.1144 5057 +5059 2 40.65423223433369 -287.79325613458934 68.3609 0.1144 5058 +5060 2 40.708645646417764 -286.546486367143 68.4902 0.1144 5059 +5061 2 40.530543242830916 -285.16104908237554 68.6182 0.1144 5060 +5062 2 40.36817179100248 -283.7781935252808 68.7529 0.1144 5061 +5063 2 40.310218432643794 -282.45351772599344 68.9018 0.1144 5062 +5064 2 39.952681372583 -281.2927916405199 69.106 0.1144 5063 +5065 2 39.51291529550659 -280.9094402391134 69.3795 0.1144 5064 +5066 2 39.064177534723086 -279.8934623541507 69.988 0.1144 5065 +5067 2 38.81832338795638 -278.4992618170364 70.4721 0.1144 5066 +5068 2 38.7633689090698 -277.19934030320064 70.9402 0.1144 5067 +5069 2 38.82214817503852 -276.0103247456108 71.456 0.1144 5068 +5070 2 39.26844088318502 -274.9233404669602 72.0712 0.1144 5069 +5071 2 40.27270260172219 -273.6291340571889 72.6009 0.1144 5070 +5072 2 41.38880672235314 -273.68104519087046 73.0688 0.1144 5071 +5073 2 42.50135445437425 -273.5410695939081 73.6406 0.1144 5072 +5074 2 43.60362648921463 -273.63420109683346 74.3725 0.1144 5073 +5075 2 44.702360573236376 -273.3891778438928 75.0803 0.1144 5074 +5076 2 45.17867430530008 -271.703849942741 75.9808 0.1144 5075 +5077 2 44.950458180024356 -270.63599458179635 76.5461 0.1144 5076 +5078 2 44.780786672288045 -269.6569533166795 77.0137 0.1144 5077 +5079 2 44.670004442306265 -268.5542401014753 77.3951 0.1144 5078 +5080 2 44.52603223698736 -267.50937795309505 77.7126 0.1144 5079 +5081 2 44.333814349508884 -266.58171669247247 78.0352 0.1144 5080 +5082 2 44.53895223829301 -264.8832900182384 78.3504 0.1144 5081 +5083 2 44.56418284056355 -263.4941827128296 78.6246 0.1144 5082 +5084 2 44.59579520594821 -262.3115300913637 78.939 0.1144 5083 +5085 2 45.70617367807324 -261.9865950096785 79.2414 0.1144 5084 +5086 2 46.7772147823589 -261.30070908371005 79.4618 0.1144 5085 +5087 2 47.895214353622876 -261.1618590289623 79.616 0.1144 5086 +5088 2 48.89140999082561 -261.04641618100175 79.7384 0.1144 5087 +5089 2 49.646250573153154 -260.1660558705496 79.8756 0.1144 5088 +5090 2 50.219381122411974 -258.71011874597434 79.954 0.1144 5089 +5091 2 50.3643260987528 -257.5715116654057 79.9702 0.1144 5090 +5092 2 50.26985394605259 -256.2632527892272 79.9495 0.1144 5091 +5093 2 50.51557636368072 -255.1934875761674 79.9414 0.1144 5092 +5094 2 50.81093166919328 -253.86258205444238 79.9557 0.1144 5093 +5095 2 51.19490906018348 -252.50114515111267 80.0078 0.1144 5094 +5096 2 51.92797472181384 -250.99711459196584 80.1284 0.1144 5095 +5097 2 52.85159065002742 -250.80428419844162 80.3177 0.1144 5096 +5098 2 53.77502758032868 -250.53960029265824 80.5451 0.1144 5097 +5099 2 54.739116818506005 -249.4599844761285 80.7825 0.1144 5098 +5100 2 55.76557133060574 -248.94088420631698 81.0121 0.1144 5099 +5101 2 56.85011735129589 -248.63644957245748 81.195 0.1144 5100 +5102 2 57.946255708028374 -247.79282724045976 81.3302 0.1144 5101 +5103 2 58.96767522977747 -247.94985400751955 81.4335 0.1144 5102 +5104 2 59.90880634150216 -247.5508991350261 81.5228 0.1144 5103 +5105 2 60.918632834672394 -246.09421389514108 81.6175 0.1144 5104 +5106 2 61.790647921939694 -245.7414966065561 81.7284 0.1144 5105 +5107 2 62.58137242160113 -244.4815570040741 81.8994 0.1144 5106 +5108 2 63.5698952863888 -243.90998754984116 82.1764 0.1144 5107 +5109 2 64.67118706180678 -244.23203180094146 82.5037 0.1144 5108 +5110 2 65.79657709068432 -244.01582629542486 82.8344 0.1144 5109 +5111 2 66.92162384441995 -244.0815460384668 83.2048 0.1144 5110 +5112 2 68.04694470919237 -243.74856869936775 83.6735 0.1144 5111 +5113 2 69.16403729301047 -243.56615409669678 84.2299 0.1144 5112 +5114 2 70.27548293391763 -244.11119900809769 84.8453 0.1144 5113 +5115 2 71.38277523842609 -243.68705080358268 85.4997 0.1144 5114 +5116 2 72.49267008891532 -243.2866102250078 86.161 0.1144 5115 +5117 2 73.60429101062634 -243.40521364143217 86.7787 0.1144 5116 +5118 2 74.71215834476457 -244.03369830430324 87.3253 0.1144 5117 +5119 2 75.82016703168513 -244.07157362355457 87.8116 0.1144 5118 +5120 2 76.93219149634186 -244.39697777255225 88.2552 0.1144 5119 +5121 2 78.04430115384835 -244.20877765156956 88.6855 0.1144 5120 +5122 2 79.15426927631415 -244.46212551863852 89.1526 0.1144 5121 +5123 2 80.27440628672554 -245.28657246016013 89.6448 0.1144 5122 +5124 2 81.39265573651684 -244.43007258591842 90.0928 0.1144 5123 +5125 2 82.52044428174268 -244.68113604307098 90.4599 0.1144 5124 +5126 2 83.64625797820392 -244.21577222293064 90.7402 0.1144 5125 +5127 2 84.7361624415224 -243.78247262316557 90.9432 0.1144 5126 +5128 2 85.71179164992921 -243.80310529122602 91.0958 0.1144 5127 +5129 2 86.52105605634584 -242.83701694577422 91.2257 0.1144 5128 +5130 2 87.17024709919178 -241.75358870553623 91.3811 0.1144 5129 +5131 2 87.73530785000773 -240.33854766769633 91.6342 0.1144 5130 +5132 2 88.3472924472438 -239.25598797285227 91.943 0.1144 5131 +5133 2 88.98738586681972 -238.08943597394335 92.2536 0.1144 5132 +5134 2 89.44582231167628 -237.2725458787158 92.5893 0.1144 5133 +5135 2 89.75557511410824 -236.29639405999785 92.9611 0.1144 5134 +5136 2 89.93687701660748 -235.20401706768888 93.4198 0.1144 5135 +5137 2 90.01518257490883 -234.05362004156024 93.9966 0.1144 5136 +5138 2 90.06692597573186 -232.88619635936954 94.6806 0.1144 5137 +5139 2 90.12232715846648 -231.7012345675913 95.4313 0.1144 5138 +5140 2 90.26264509704744 -230.39495545298035 96.1139 0.1144 5139 +5141 2 90.75919598124807 -229.00080881012565 96.9545 0.1144 5140 +5142 2 91.04518978648021 -228.12364181848034 98.0857 0.1144 5141 +5143 2 90.8512944764843 -226.82912569505982 98.9624 0.1144 5142 +5144 2 90.62732067457682 -225.61286671412756 99.8035 0.1144 5143 +5145 2 90.27531864601013 -224.7235544481106 100.5528 0.1144 5144 +5146 2 89.95102461963576 -223.74972058446397 101.19 0.1144 5145 +5147 2 89.76909474097425 -222.42276060612681 101.6571 0.1144 5146 +5148 2 89.66316850343082 -221.13149750490385 101.9701 0.1144 5147 +5149 2 89.6580611464245 -219.86959545172937 102.1594 0.1144 5148 +5150 2 89.8807518638498 -218.80589475511096 102.2132 0.1144 5149 +5151 2 90.03504462607665 -217.58063865080229 102.181 0.1144 5150 +5152 2 89.99710528955778 -216.34929491008353 102.1261 0.1144 5151 +5153 2 90.16125069690712 -214.96634594828566 102.0569 0.1144 5152 +5154 2 90.51252514953083 -213.44287187329584 101.9847 0.1144 5153 +5155 2 90.86602633004507 -212.29205873265113 101.9396 0.1144 5154 +5156 2 91.24433964839517 -210.97505966079365 101.9539 0.1144 5155 +5157 2 91.66199784581276 -209.83080540148654 102.065 0.1144 5156 +5158 2 91.99376003424999 -208.47146083217052 102.3313 0.1144 5157 +5159 2 92.3473296863328 -207.03142183942487 102.8471 0.1144 5158 +5160 2 93.23430088064185 -206.28846230572208 103.6367 0.1144 5159 +5161 2 94.1309556247507 -206.12484466590092 104.664 0.1144 5160 +5162 2 94.66015128678684 -205.57285742943057 105.9058 0.1144 5161 +5163 2 95.0332448221557 -204.40702931353036 107.0101 0.1144 5162 +5164 2 95.43104748024491 -202.91479674320667 107.8426 0.1144 5163 +5165 2 95.85656124210954 -201.92517848267966 108.5059 0.1144 5164 +5166 2 96.32458063069684 -200.69693380170912 109.0807 0.1144 5165 +5167 2 96.83359560230211 -199.7483712731352 109.6197 0.1144 5166 +5168 2 97.36635895829586 -199.03761241353283 110.1626 0.1144 5167 +5169 2 97.90103248560531 -198.17537499662166 110.7411 0.1144 5168 +5170 2 98.67042973990024 -196.18977421045264 111.4464 0.1144 5169 +5171 2 99.72613833319157 -196.76327612260246 112.2173 0.1144 5170 +5172 2 100.77255628913264 -197.76274280539175 113.0307 0.1144 5171 +5173 2 101.61745701960724 -197.63862054915137 113.8449 0.1144 5172 +5174 2 102.33293860058923 -198.57924666645334 114.6258 0.1144 5173 +5175 2 103.18203169766585 -199.84790776674953 115.4054 0.1144 5174 +5176 2 104.23997972124681 -200.16516362584952 116.1838 0.1144 5175 +5177 2 105.34037551279309 -199.81526117255873 116.9244 0.1144 5176 +5178 2 105.95683518219562 -199.26650652221065 117.6563 0.1144 5177 +5179 2 106.24204624071999 -198.2867379605454 118.1804 0.1144 5178 +5180 2 106.52675554159103 -197.18677983073457 118.6349 0.1144 5179 +5181 2 106.8117290332242 -195.94857448954565 119.0378 0.1144 5180 +5182 2 107.0624019408898 -194.7099648473095 119.4113 0.1144 5181 +5183 2 106.87053453800777 -193.66757377020247 119.8168 0.1144 5182 +5184 2 105.79632168249279 -193.6096549546549 120.2975 0.1144 5183 +5185 2 104.81925359508487 -193.65679012107896 120.706 0.1144 5184 +5186 2 103.83938275584639 -194.7387585195335 121.1025 0.1144 5185 +5187 2 102.8067757490627 -195.1846171097503 121.399 0.1144 5186 +5188 2 101.82367328155394 -195.08822114350056 121.6152 0.1144 5187 +5189 2 100.96940233247624 -197.1469873480882 121.9756 0.1144 5188 +5190 2 100.11953798399638 -197.38448579900108 122.4703 0.1144 5189 +5191 2 99.25489962797018 -197.53684255013928 123.2711 0.1144 5190 +5192 2 98.39555124300371 -198.08871036741357 124.3701 0.1144 5191 +5193 2 97.88614566132118 -199.12218873940694 124.9998 0.1144 5192 +5194 2 96.78614349244596 -198.75379792022383 125.4912 0.1144 5193 +5195 2 95.67109112737786 -198.9419566773616 125.76 0.1144 5194 +5196 2 94.55278972022177 -199.6082104737396 125.8785 0.1144 5195 +5197 2 93.43319009431025 -199.13285708092405 125.8925 0.1144 5196 +5198 2 92.3130144444586 -199.32078764106797 125.8704 0.1144 5197 +5199 2 91.19283879460696 -199.99337681702445 125.8734 0.1144 5198 +5200 2 90.07631231445428 -200.6096688397039 125.9527 0.1144 5199 +5201 2 88.96242912699556 -200.8841177048186 126.1252 0.1144 5200 +5202 2 87.85223344690253 -200.48967437080384 126.3716 0.1144 5201 +5203 2 86.74190803312682 -201.352343487503 126.6706 0.1144 5202 +5204 2 85.63466127573957 -201.5660853984627 127.0021 0.1144 5203 +5205 2 84.52838446673712 -201.57743816969224 127.3488 0.1144 5204 +5206 2 83.42113770934986 -202.0719867486725 127.6929 0.1144 5205 +5207 2 82.31334775505961 -202.06627753357805 128.0272 0.1144 5206 +5208 2 81.20516387632455 -202.04494449806413 128.345 0.1144 5207 +5209 2 80.09532929363918 -203.14789185532146 128.6407 0.1144 5208 +5210 2 78.9862082935564 -202.96443781345238 128.9086 0.1144 5209 +5211 2 77.87378588557281 -202.49859047664077 129.1438 0.1144 5210 +5212 2 76.74262536558285 -203.56083061636963 129.299 0.1144 5211 +5213 2 75.59944604215742 -203.0573781419236 129.3446 0.1144 5212 +5214 2 74.45698891354738 -203.0895900277301 129.3099 0.1144 5213 +5215 2 73.31362749062656 -203.47639352168966 129.2281 0.1144 5214 +5216 2 72.17111799620375 -202.77452727480488 129.1346 0.1144 5215 +5217 2 71.02874606044344 -203.2036509662454 129.0671 0.1144 5216 +5218 2 69.88538463752268 -203.2539851029968 129.0626 0.1144 5217 +5219 2 68.74292750891259 -203.19847974752042 129.1486 0.1144 5218 +5220 2 68.60403422552304 -203.2049582497471 128.7423 0.1144 5219 +5221 2 67.86052960147751 -203.6414055643586 126.9817 0.1144 5220 +5222 2 67.01608936738506 -204.39297205285536 125.6998 0.1144 5221 +5223 2 66.18162400086949 -205.1203487299626 124.7935 0.1144 5222 +5224 2 66.20068316808513 -205.7046818035853 123.3669 0.1144 5223 +5225 2 66.37517383946135 -205.2778889539449 121.2938 0.1144 5224 +5226 2 66.06219734555597 -204.55322162845727 119.803 0.1144 5225 +5227 2 65.8025477638186 -204.10375545340747 117.7921 0.1144 5226 +5228 2 67.96966315093513 -201.78787595102813 129.7856 0.1144 5219 +5229 2 67.137314802298 -201.43656232753838 130.5178 0.1144 5228 +5230 2 66.20190202865732 -200.63279350067097 131.5748 0.1144 5229 +5231 2 65.23155136730992 -201.28012999889347 132.9404 0.1144 5230 +5232 2 64.2262830495681 -201.02536858922514 134.2289 0.1144 5231 +5233 2 63.26445468008728 -200.61713186388653 135.5808 0.1144 5232 +5234 2 62.5499776977114 -200.17862223431734 137.4243 0.1144 5233 +5235 2 98.39968985871982 -198.04199556019609 124.9562 0.1144 5192 +5236 2 98.49019430166844 -197.10811062538232 126.6404 0.1144 5235 +5237 2 98.67875551336236 -195.869545708204 127.1911 0.1144 5236 +5238 2 99.19420430014276 -195.18872401338967 127.6192 0.1144 5237 +5239 2 100.15717231687834 -195.291067671851 128.2568 0.1144 5238 +5240 2 101.21704174011161 -195.39681339056864 129.1758 0.1144 5239 +5241 2 102.18565510190062 -195.1595961025244 130.319 0.1144 5240 +5242 2 103.11401969875936 -196.20612492937624 131.5322 0.1144 5241 +5243 2 103.90046651517395 -196.84294294365475 132.6623 0.1144 5242 +5244 2 103.61917914583324 -198.00898758871972 133.4962 0.1144 5243 +5245 2 103.22683342916852 -198.97612260560464 135.1806 0.1144 5244 +5246 2 40.38919162368555 -280.2624933371678 69.3591 0.1144 5065 +5247 2 41.523215163309956 -280.5999114298551 69.0259 0.1144 5246 +5248 2 42.65884455230014 -280.365643064455 68.8142 0.1144 5247 +5249 2 43.630248567067966 -279.8548292298979 68.6969 0.1144 5248 +5250 2 44.58746931891213 -279.58560618107 68.6526 0.1144 5249 +5251 2 45.69186026611952 -278.3487267620937 68.7786 0.1144 5250 +5252 2 46.77980699271757 -278.40693798242745 69.5534 0.1144 5251 +5253 2 46.04771496171057 -301.3315553507356 67.6558 0.1144 5021 +5254 2 46.533410709455545 -300.502365907381 67.4358 0.1144 5253 +5255 2 47.00236101622447 -299.2416527058413 67.2064 0.1144 5254 +5256 2 47.82407037971793 -297.8899499574886 67.006 0.1144 5255 +5257 2 48.95506041931208 -298.11620749321634 66.848 0.1144 5256 +5258 2 50.095861049253536 -298.8038636172018 66.7932 0.1144 5257 +5259 2 51.23505372255627 -297.97510928891876 66.8136 0.1144 5258 +5260 2 52.371836875936594 -297.64282299477446 66.8623 0.1144 5259 +5261 2 53.48167215115864 -297.35072042366005 66.9455 0.1144 5260 +5262 2 54.49493288749533 -297.23265591473097 67.062 0.1144 5261 +5263 2 55.510635278254995 -296.6355071816674 67.1989 0.1144 5262 +5264 2 56.545956049899836 -295.84109971519337 67.3453 0.1144 5263 +5265 2 57.61604841373817 -295.1432035499225 67.5004 0.1144 5264 +5266 2 58.692251140474056 -294.529326833117 67.6584 0.1144 5265 +5267 2 59.76908225696281 -294.8498957307042 67.8096 0.1144 5266 +5268 2 60.843366987403144 -294.1606456808427 67.9465 0.1144 5267 +5269 2 61.90486279308815 -293.49745828874813 68.0607 0.1144 5268 +5270 2 62.87657002882127 -292.68919168624404 68.1369 0.1144 5269 +5271 2 63.508931130377974 -291.4819117596445 68.1576 0.1144 5270 +5272 2 63.70386078726156 -290.28746242030843 68.1265 0.1144 5271 +5273 2 63.84732785439809 -289.00500314561094 68.0436 0.1144 5272 +5274 2 64.0002012763996 -287.7361973672102 67.9048 0.1144 5273 +5275 2 64.20061841705757 -286.46127759248293 67.6976 0.1144 5274 +5276 2 64.5020809838846 -285.43991865783323 67.4022 0.1144 5275 +5277 2 64.99915724272253 -284.6633683843078 66.978 0.1144 5276 +5278 2 65.82330826063891 -283.98620569737034 66.3664 0.1144 5277 +5279 2 66.8193142871181 -283.123313715972 65.5696 0.1144 5278 +5280 2 67.63501199415188 -283.73124758020816 64.7408 0.1144 5279 +5281 2 68.0363203567423 -284.43740493508545 64.052 0.1144 5280 +5282 2 68.25468383689562 -285.43048288443947 63.4628 0.1144 5281 +5283 2 68.18400660487272 -286.7551244313957 62.9087 0.1144 5282 +5284 2 67.37252018198434 -287.6086795084979 62.3759 0.1144 5283 +5285 2 66.2811086875549 -287.26416236019736 61.9623 0.1144 5284 +5286 2 65.20027541873495 -287.3342924019068 61.5997 0.1144 5285 +5287 2 64.09469607460122 -286.38434001582 61.2391 0.1144 5286 +5288 2 62.975192556124384 -286.12364752764654 60.8644 0.1144 5287 +5289 2 61.906967829074354 -286.1093353753124 60.4212 0.1144 5288 +5290 2 60.88878525056149 -285.42761763843595 59.8951 0.1144 5289 +5291 2 59.84366820651097 -285.6325295884272 59.29 0.1144 5290 +5292 2 59.1617108559116 -285.9620166817545 58.5586 0.1144 5291 +5293 2 58.63139466497036 -286.69757351263775 57.9376 0.1144 5292 +5294 2 58.11766436117238 -287.47099083190454 57.5551 0.1144 5293 +5295 2 58.02346288134642 -288.67276212310094 57.2855 0.1144 5294 +5296 2 57.92084763539907 -289.9211623384601 57.1245 0.1144 5295 +5297 2 57.568911965985436 -291.8469728914006 57.2132 0.1144 5296 +5298 2 31.05124447664675 -305.9797837298784 73.5003 0.1144 4911 +5299 2 31.04568772779986 -304.6779766349241 73.3538 0.1144 5298 +5300 2 30.534603521647902 -303.4062033381397 73.2332 0.1144 5299 +5301 2 30.404223834629825 -302.10696251923156 73.5669 0.1144 5300 +5302 2 30.211068825803622 -300.80675347924296 74.0905 0.1144 5301 +5303 2 29.980046847114224 -299.3985444005082 74.5251 0.1144 5302 +5304 2 29.89434955794306 -298.06729294368995 74.8684 0.1144 5303 +5305 2 29.90750861218052 -296.7939254876123 75.1332 0.1144 5304 +5306 2 29.614648433030794 -295.6519074071183 75.3136 0.1144 5305 +5307 2 29.18049337024516 -294.9769014071698 75.4393 0.1144 5306 +5308 2 28.722546074774698 -293.84633671638323 75.6224 0.1144 5307 +5309 2 28.502928224162275 -292.4319687942147 75.8038 0.1144 5308 +5310 2 28.2234808728645 -290.9785942981362 75.9293 0.1144 5309 +5311 2 28.171855212982337 -289.652002724007 75.9993 0.1144 5310 +5312 2 28.325357024736675 -288.47619688789007 76.0178 0.1144 5311 +5313 2 28.081103625154157 -287.0502486155458 75.9814 0.1144 5312 +5314 2 27.70975360963054 -285.57551994160866 75.7826 0.1144 5313 +5315 2 27.493787337763564 -284.21331074110606 75.6036 0.1144 5314 +5316 2 27.738126343786476 -283.0647305391107 75.4785 0.1144 5315 +5317 2 27.635669585493133 -281.7054976580963 75.4051 0.1144 5316 +5318 2 27.316398930369928 -280.3938779792981 75.3791 0.1144 5317 +5319 2 27.013253151449803 -279.1806119198289 75.4538 0.1144 5318 +5320 2 26.702663554793148 -277.8951833514838 75.5692 0.1144 5319 +5321 2 25.969348937641342 -277.45167395811416 75.4636 0.1144 5320 +5322 2 24.861440856789898 -277.47709971771354 75.3404 0.1144 5321 +5323 2 23.811074991133935 -278.27136501831245 75.2604 0.1144 5322 +5324 2 22.87444497760619 -279.1753159846319 75.2153 0.1144 5323 +5325 2 21.81558284611414 -278.7661129489848 75.1246 0.1144 5324 +5326 2 20.875425298915374 -277.85302775644533 75.0072 0.1144 5325 +5327 2 19.857049001807567 -278.1373080964372 74.9196 0.1144 5326 +5328 2 18.731108975020376 -277.96814582621056 74.9692 0.1144 5327 +5329 2 18.081095131290056 -279.67031444456546 75.075 0.1144 5328 +5330 2 17.520128052616286 -279.5214733124334 75.903 0.1144 5329 +5331 2 16.54746686757987 -279.1537336947316 77.1949 0.1144 5330 +5332 2 15.483587177239997 -279.32967188497975 78.0704 0.1144 5331 +5333 2 14.375843373618139 -279.3816397106193 78.6033 0.1144 5332 +5334 2 13.265352285561548 -279.2020287178745 79.1109 0.1144 5333 +5335 2 12.146793097887013 -279.53840031979627 79.613 0.1144 5334 +5336 2 11.029609810589463 -278.8925429799052 80.1458 0.1144 5335 +5337 2 9.91286119444986 -279.1815706904897 80.7265 0.1144 5336 +5338 2 8.880103819930198 -279.06246802688537 81.2759 0.1144 5337 +5339 2 7.919529116393818 -278.64404116670687 81.7225 0.1144 5338 +5340 2 6.9280941805264575 -277.76748188354986 82.0904 0.1144 5339 +5341 2 5.8686757589693315 -277.1316240676983 82.4029 0.1144 5340 +5342 2 4.758296582329606 -276.8311362319634 82.724 0.1144 5341 +5343 2 3.6329188650882003 -276.674587235821 83.174 0.1144 5342 +5344 2 2.515132521531754 -277.63986709271273 83.7581 0.1144 5343 +5345 2 2.059655013787605 -276.5892833305058 84.3371 0.1144 5344 +5346 2 2.1045330298606757 -275.3684874892281 84.7616 0.1144 5345 +5347 2 2.0329159884974928 -274.03149311530365 85.0592 0.1144 5346 +5348 2 1.9272539417161454 -272.66763482213116 85.2524 0.1144 5347 +5349 2 1.8206110199870267 -271.3020230000978 85.3656 0.1144 5348 +5350 2 1.7145964880106987 -269.93614299402134 85.4392 0.1144 5349 +5351 2 1.6080387591313894 -268.56544071401487 85.5123 0.1144 5350 +5352 2 1.465446863834586 -267.17851660423815 85.612 0.1144 5351 +5353 2 1.211125892597181 -265.74046783517275 85.7598 0.1144 5352 +5354 2 0.913318324993071 -264.2886667637363 85.9648 0.1144 5353 +5355 2 0.6099083553108926 -262.809969178989 86.2282 0.1144 5354 +5356 2 0.30742689476377905 -261.3583073366049 86.5491 0.1144 5355 +5357 2 0.006064655059802249 -259.9136749611589 86.9254 0.1144 5356 +5358 2 -0.3045601776804432 -258.5970118030432 87.4196 0.1144 5357 +5359 2 -0.6191446282244755 -257.5065364485987 88.1989 0.1144 5358 +5360 2 -0.7310251552005838 -256.39912849290204 89.0596 0.1144 5359 +5361 2 -0.6238119991069482 -254.9872249439607 89.8013 0.1144 5360 +5362 2 -0.2945698569358939 -253.66438118032403 90.678 0.1144 5361 +5363 2 0.5227452175958263 -253.455175197983 91.7039 0.1144 5362 +5364 2 1.3662558415687016 -253.27359415906068 92.6117 0.1144 5363 +5365 2 2.194252156825499 -252.2675137525875 93.4438 0.1144 5364 +5366 2 3.036869507746843 -250.91188906970285 94.2589 0.1144 5365 +5367 2 3.920224359393984 -250.4592920419944 95.1012 0.1144 5366 +5368 2 4.829469823006988 -249.63340758704663 95.954 0.1144 5367 +5369 2 5.677043079899178 -248.9648660806086 96.8005 0.1144 5368 +5370 2 5.948434364269147 -247.80337354509965 97.6676 0.1144 5369 +5371 2 5.452147782647515 -246.87141091632998 98.4116 0.1144 5370 +5372 2 4.813629888578802 -245.70864334466205 98.9366 0.1144 5371 +5373 2 4.022285326724358 -244.65128416134243 99.0864 0.1144 5372 +5374 2 3.131318094261019 -243.92313482189678 98.7078 0.1144 5373 +5375 2 2.2198669327164 -243.08817325316573 98.119 0.1144 5374 +5376 2 1.2537664077390502 -243.15061636731502 97.6839 0.1144 5375 +5377 2 0.2780477029473616 -241.81567295195794 97.414 0.1144 5376 +5378 2 -0.7026152887155916 -240.5687460945 97.3353 0.1144 5377 +5379 2 -1.6907604357818116 -240.8516565601626 97.4753 0.1144 5378 +5380 2 -2.6964898534530306 -239.78057087377465 97.8622 0.1144 5379 +5381 2 -3.6920110392238428 -238.52934039526275 98.4264 0.1144 5380 +5382 2 -4.679424088885057 -238.46190119932152 99.1063 0.1144 5381 +5383 2 -5.658238171346383 -237.95347523669972 99.8757 0.1144 5382 +5384 2 -6.654449008984059 -237.88036915335425 100.7507 0.1144 5383 +5385 2 -7.683139956464629 -237.6813200833795 101.7803 0.1144 5384 +5386 2 -8.629054280381439 -236.533952557307 102.9302 0.1144 5385 +5387 2 -9.557548610922822 -236.00065019326132 104.1384 0.1144 5386 +5388 2 -10.483953772236333 -236.0298409135418 105.3615 0.1144 5387 +5389 2 -11.460094445786751 -235.26908873971166 106.7438 0.1144 5388 +5390 2 -12.385547374306768 -235.3295911999735 108.3222 0.1144 5389 +5391 2 -13.099859374938404 -235.85688513897205 110.5003 0.1144 5390 +5392 2 17.667740821128405 -280.1995859554471 75.0184 0.1144 5329 +5393 2 17.100720634767086 -280.92854990972944 74.8101 0.1144 5392 +5394 2 16.274572536175327 -281.23284963557916 74.4856 0.1144 5393 +5395 2 15.536432853991045 -282.57973060418544 74.0267 0.1144 5394 +5396 2 14.925238514690946 -284.2403413780855 73.4387 0.1144 5395 +5397 2 14.322744772633058 -284.8781648166355 72.7944 0.1144 5396 +5398 2 13.722340199803142 -285.7392390302969 72.1462 0.1144 5397 +5399 2 13.18547277164025 -287.5443002183682 71.5616 0.1144 5398 +5400 2 12.710637955069203 -288.77791675288 71.0682 0.1144 5399 +5401 2 12.235230216141176 -289.8391077787321 70.6513 0.1144 5400 +5402 2 11.757501944260127 -290.67291838451933 70.303 0.1144 5401 +5403 2 11.279018650526737 -291.5134338199878 70.0157 0.1144 5402 +5404 2 10.798661114097769 -292.35092217526335 69.7852 0.1144 5403 +5405 2 10.081211379247733 -293.6815611052701 68.4426 0.1144 5404 +5406 2 9.195881678836002 -294.3472402241006 67.4512 0.1144 5405 +5407 2 8.27358138319569 -295.4023117710876 66.7285 0.1144 5406 +5408 2 7.4858731768241 -296.21111044305815 66.0509 0.1144 5407 +5409 2 6.763147889823415 -296.7731023097523 65.4685 0.1144 5408 +5410 2 5.98360708107694 -297.4816602436017 64.9684 0.1144 5409 +5411 2 4.997480732038952 -298.58463458749526 64.5436 0.1144 5410 +5412 2 4.083555864853366 -298.93588721838523 64.15 0.1144 5411 +5413 2 3.256562040929765 -300.3380233962394 64.0469 0.1144 5412 +5414 2 2.380754714671383 -301.3961664143416 63.9422 0.1144 5413 +5415 2 1.276028696086854 -300.8668542574397 63.4712 0.1144 5414 +5416 2 0.23848560619661896 -301.1281519326783 62.8309 0.1144 5415 +5417 2 -0.7061796622270435 -302.4930658681111 62.2278 0.1144 5416 +5418 2 -1.6266464618850023 -302.5755356557536 61.6504 0.1144 5417 +5419 2 -2.5493814286832617 -302.67772276412126 61.1108 0.1144 5418 +5420 2 -3.453578897772786 -304.6375832448752 60.6245 0.1144 5419 +5421 2 -4.265740553619025 -305.0455863610203 60.1664 0.1144 5420 +5422 2 -4.984582205612696 -306.44125931727467 59.6963 0.1144 5421 +5423 2 -5.618629247203344 -308.0956596088664 59.2256 0.1144 5422 +5424 2 -5.771753240268794 -309.18591757602564 58.8328 0.1144 5423 +5425 2 -5.5283400553884405 -310.63171274779415 58.5586 0.1144 5424 +5426 2 -5.4584096465957685 -311.9700186546406 58.333 0.1144 5425 +5427 2 -5.559608653900867 -313.1696157951411 58.1031 0.1144 5426 +5428 2 -5.661683804528238 -314.39524440415073 57.7912 0.1144 5427 +5429 2 -6.104723676466996 -315.2225625246686 57.395 0.1144 5428 +5430 2 -6.829179444334493 -315.70665783451363 56.9878 0.1144 5429 +5431 2 -7.36942564826807 -316.46484375205154 56.6314 0.1144 5430 +5432 2 -7.687198292376742 -317.6878113268724 56.3746 0.1144 5431 +5433 2 -7.971187807478984 -319.5703612396375 56.1957 0.1144 5432 +5434 2 -8.336143072836414 -321.4501227679565 56.0283 0.1144 5433 +5435 2 -8.748101961530317 -322.4063544421785 55.8289 0.1144 5434 +5436 2 -9.161317629729915 -323.3350577303828 55.587 0.1144 5435 +5437 2 -9.657797633315482 -324.4753294650828 55.2969 0.1144 5436 +5438 2 -10.227408746558005 -326.62242865322656 54.9646 0.1144 5437 +5439 2 -10.810648306721454 -327.49201057547646 54.607 0.1144 5438 +5440 2 -11.404457196193086 -328.2300055673134 54.238 0.1144 5439 +5441 2 -12.211672156121551 -328.5354104796889 53.8594 0.1144 5440 +5442 2 -13.275887219612265 -329.55220944076956 53.4926 0.1144 5441 +5443 2 -14.405423375434047 -329.32320347088586 53.1286 0.1144 5442 +5444 2 -15.492211537233963 -330.6843811331669 52.733 0.1144 5443 +5445 2 -16.376629449791835 -330.82788043220916 52.3426 0.1144 5444 +5446 2 -17.038027190286897 -331.52497370777667 51.994 0.1144 5445 +5447 2 -17.636330974789253 -332.24746081024307 51.6799 0.1144 5446 +5448 2 -18.187978205216695 -334.0334009258104 51.3775 0.1144 5447 +5449 2 -18.451576903763623 -335.8301571434918 51.0398 0.1144 5448 +5450 2 -18.425573870965543 -337.15615528912355 50.65 0.1144 5449 +5451 2 -18.491529662325682 -338.49337363151443 50.26 0.1144 5450 +5452 2 -18.777580935552216 -339.55621561096564 49.8585 0.1144 5451 +5453 2 -19.41443693213965 -340.16293628492195 49.4295 0.1144 5452 +5454 2 -20.125437740368888 -340.7296250884647 48.9121 0.1144 5453 +5455 2 -20.345947277024898 -341.70071663952376 47.8176 0.1144 5454 +5456 2 -20.863585839102292 -342.48775264525904 46.655 0.1144 5455 +5457 2 -21.608042606951834 -344.58246582744357 45.8248 0.1144 5456 +5458 2 -22.638567653962106 -344.1834745646097 44.9277 0.1144 5457 +5459 2 -23.652880927387613 -345.2215663464251 43.9443 0.1144 5458 +5460 2 -24.25580752996148 -343.8715006187953 42.975 0.1144 5459 +5461 2 -24.512475060182375 -342.4717175632046 42.0535 0.1144 5460 +5462 2 -24.37614887390572 -341.35465350354195 41.1678 0.1144 5461 +5463 2 -24.041257379777257 -340.38601534881 40.3421 0.1144 5462 +5464 2 -23.717770706262286 -339.3899374509001 39.6077 0.1144 5463 +5465 2 -23.462552946799697 -337.8579506527024 38.9752 0.1144 5464 +5466 2 -23.730207347757464 -336.9534223924592 38.3648 0.1144 5465 +5467 2 -24.630726697513055 -335.62264617331823 37.798 0.1144 5466 +5468 2 -25.696008012486907 -334.4671801194534 37.247 0.1144 5467 +5469 2 -26.793429565518444 -335.42988116687593 36.6806 0.1144 5468 +5470 2 -27.859394932740287 -335.3561788306023 36.1178 0.1144 5469 +5471 2 -28.90048589372386 -336.954456523747 35.5558 0.1144 5470 +5472 2 -29.76582621325312 -337.24519647522584 35.0045 0.1144 5471 +5473 2 -30.472012468293727 -337.75279480272013 34.4809 0.1144 5472 +5474 2 -31.15031033815651 -338.3112097071718 33.9766 0.1144 5473 +5475 2 -31.71162880674759 -340.15894735349127 33.474 0.1144 5474 +5476 2 -32.141780532935115 -341.83977263351943 32.972 0.1144 5475 +5477 2 -32.544691755125214 -342.81603414151584 32.475 0.1144 5476 +5478 2 -32.947388050782905 -343.77175315187577 31.9897 0.1144 5477 +5479 2 -33.7072431080602 -345.64350646250233 31.5286 0.1144 5478 +5480 2 -34.78175308804869 -345.13102507646533 31.227 0.1144 5479 +5481 2 -35.9125319952301 -344.4402966782784 30.9663 0.1144 5480 +5482 2 -36.93772972782419 -345.8053056146673 30.6975 0.1144 5481 +5483 2 -37.72849256515225 -346.6329744237134 30.5088 0.1144 5482 +5484 2 -38.50491027137366 -347.61878538138575 30.3783 0.1144 5483 +5485 2 -39.09812910875911 -349.73015165013464 30.2781 0.1144 5484 +5486 2 -39.55255218492596 -350.60593849155634 30.1972 0.1144 5485 +5487 2 -39.70163336793639 -351.78142362794136 30.14 0.1144 5486 +5488 2 -39.841903758797585 -352.9647193896561 30.0964 0.1144 5487 +5489 2 -40.29841600419237 -353.8316139104552 30.0199 0.1144 5488 +5490 2 -40.94293005251224 -354.4423534471022 29.7284 0.1144 5489 +5491 2 10.397023984263726 -292.6767848031531 69.5492 0.1144 5404 +5492 2 9.350200076330452 -292.7179233220185 69.2532 0.1144 5491 +5493 2 8.38970987310725 -292.00808397431706 69.2611 0.1144 5492 +5494 2 7.441505451913031 -291.4634035583395 69.4968 0.1144 5493 +5495 2 6.500386852630726 -290.2815524085077 69.9026 0.1144 5494 +5496 2 5.5692998963831855 -289.20356247373314 70.408 0.1144 5495 +5497 2 4.65619492930513 -289.265071111755 70.929 0.1144 5496 +5498 2 3.7442060814870928 -287.87462030501644 71.4241 0.1144 5497 +5499 2 2.907706112961151 -287.7848432514918 71.8561 0.1144 5498 +5500 2 2.1089177333700917 -286.8847053490997 72.2344 0.1144 5499 +5501 2 1.309423596156293 -285.4061415105935 72.5749 0.1144 5500 +5502 2 0.5121976260827807 -283.9314409983137 72.893 0.1144 5501 +5503 2 -0.15109647720161945 -283.1111461654518 73.222 0.1144 5502 +5504 2 -0.7527351720577258 -282.8354765888039 73.5613 0.1144 5503 +5505 2 -1.3349170701231543 -281.31480483403186 73.8917 0.1144 5504 +5506 2 -1.9025309908733163 -279.79571700194896 74.1958 0.1144 5505 +5507 2 -2.455491741458502 -278.28305201952605 74.4624 0.1144 5506 +5508 2 -2.6790315647446903 -276.85389791480867 74.6052 0.1144 5507 +5509 2 -2.815615419722846 -275.4880036675424 74.6329 0.1144 5508 +5510 2 -2.7895805313703335 -274.20595188800144 74.6021 0.1144 5509 +5511 2 -2.731609345603289 -272.9486492089491 74.5405 0.1144 5510 +5512 2 -2.6735857940235093 -271.69067922791703 74.4652 0.1144 5511 +5513 2 -2.615614608256422 -270.43430238162335 74.3901 0.1144 5512 +5514 2 -2.557591056676671 -269.18167021400933 74.328 0.1144 5513 +5515 2 -2.4996198709095836 -267.92543392584264 74.275 0.1144 5514 +5516 2 -2.441648685142539 -266.6697240228283 74.2269 0.1144 5515 +5517 2 -2.3842535233155786 -265.41418559443656 74.1832 0.1144 5516 +5518 2 -2.3338035231549696 -264.15475667057143 74.1454 0.1144 5517 +5519 2 -2.4250765905333935 -262.7767408465097 74.1202 0.1144 5518 +5520 2 -2.5907494502626633 -261.3781549373203 74.1098 0.1144 5519 +5521 2 -2.716276246425423 -260.007075434478 74.1135 0.1144 5520 +5522 2 -3.263808082215249 -258.4947896686586 74.1322 0.1144 5521 +5523 2 -3.9558739411393162 -257.7332778832235 74.1642 0.1144 5522 +5524 2 -4.015734369230543 -256.46396462329676 74.2244 0.1144 5523 +5525 2 -3.880105044275325 -254.96153890058878 74.31 0.1144 5524 +5526 2 -3.595126042012595 -253.55099705267384 74.4386 0.1144 5525 +5527 2 -3.31430037614858 -252.36740270124892 74.5707 0.1144 5526 +5528 2 -3.0639009639943424 -251.28249359332165 74.6376 0.1144 5527 +5529 2 -2.861706487286426 -250.14909916498573 74.6556 0.1144 5528 +5530 2 -2.690745651953364 -248.98841271237143 74.6992 0.1144 5529 +5531 2 -2.525536491156757 -247.8215113735431 74.7746 0.1144 5530 +5532 2 -2.3618733026850833 -246.65566807999892 74.8588 0.1144 5531 +5533 2 -2.1965789490386953 -245.49157548946317 74.9316 0.1144 5532 +5534 2 -2.044909940730122 -244.30982806940844 74.9414 0.1144 5533 +5535 2 -1.9591776944213564 -243.08603978377414 74.7914 0.1144 5534 +5536 2 -2.0892869875112012 -241.73838392868296 74.4257 0.1144 5535 +5537 2 -2.5041526323189203 -240.2866230917255 73.8774 0.1144 5536 +5538 2 -3.0863198097016493 -238.822752241743 73.1909 0.1144 5537 +5539 2 -3.8538598272351265 -237.44512939059666 72.3831 0.1144 5538 +5540 2 -4.840895673732817 -237.6609282079433 71.5789 0.1144 5539 +5541 2 -5.683451247982134 -236.97069895090522 70.5956 0.1144 5540 +5542 2 -5.378811419296156 -236.14238186174268 69.1023 0.1144 5541 +5543 2 -5.095337660330173 -235.00608586191018 67.587 0.1144 5542 +5544 2 -4.895753933367814 -233.6437320225541 66.6523 0.1144 5543 +5545 2 -4.8869655511080765 -232.33708606367105 66.1727 0.1144 5544 +5546 2 -5.2095266875691095 -231.24813903599158 65.9988 0.1144 5545 +5547 2 -5.673534389170911 -230.03678639704492 65.9876 0.1144 5546 +5548 2 -6.137542090772641 -228.56967129063912 66.057 0.1144 5547 +5549 2 -6.602572106572055 -227.69153505927756 66.1399 0.1144 5548 +5550 2 -7.066665001023608 -226.8149179168651 66.1878 0.1144 5549 +5551 2 -7.471745087204226 -225.76753100255684 66.2004 0.1144 5550 +5552 2 -7.740276039932297 -224.51131652024728 66.1948 0.1144 5551 +5553 2 -7.933695932057148 -223.1134262845823 66.192 0.1144 5552 +5554 2 -8.123558050499 -221.71282518554182 66.2192 0.1144 5553 +5555 2 -8.158876734682664 -220.404814877137 66.3485 0.1144 5554 +5556 2 -8.002836361859806 -219.2513898490413 66.6747 0.1144 5555 +5557 2 -7.728902799312863 -218.06455365316668 67.2902 0.1144 5556 +5558 2 -7.437903445095344 -216.7035281956066 68.0924 0.1144 5557 +5559 2 -7.49469582960937 -215.54984186095405 68.885 0.1144 5558 +5560 2 -8.345553258563172 -214.78032349137146 69.5433 0.1144 5559 +5561 2 -9.442267035688488 -213.72715812188994 69.9712 0.1144 5560 +5562 2 -10.572651308203532 -214.00347730555308 70.1873 0.1144 5561 +5563 2 -11.714626217936015 -214.02476627445853 70.1761 0.1144 5562 +5564 2 -12.852306438487517 -213.69432670514715 69.9936 0.1144 5563 +5565 2 -13.608425215899928 -214.11626798763342 69.6769 0.1144 5564 +5566 2 -13.60082411760392 -212.80846837053653 69.3605 0.1144 5565 +5567 2 -13.444028722928664 -211.33153352369288 69.069 0.1144 5566 +5568 2 -13.282471140877504 -209.6909829672726 68.7884 0.1144 5567 +5569 2 -13.156642095232016 -208.08381520449427 68.4905 0.1144 5568 +5570 2 -13.058072352474838 -206.57019458592208 68.1506 0.1144 5569 +5571 2 -12.966552503009538 -205.22411154418177 67.7606 0.1144 5570 +5572 2 -12.873285042948254 -203.89434263737547 67.3204 0.1144 5571 +5573 2 -12.825510469982163 -202.63542838250476 66.8209 0.1144 5572 +5574 2 -12.993436776168963 -201.3226135548241 66.1867 0.1144 5573 +5575 2 -13.239240966169419 -200.1414300186908 65.4413 0.1144 5574 +5576 2 -13.515112721518477 -199.2381091896448 64.6926 0.1144 5575 +5577 2 -13.813619151042516 -198.53804397902377 63.9876 0.1144 5576 +5578 2 -14.114843139547446 -197.61860340661843 63.3251 0.1144 5577 +5579 2 -14.418114858030478 -196.2320113552936 62.7082 0.1144 5578 +5580 2 -14.724817718096958 -194.81117571019354 62.1393 0.1144 5579 +5581 2 -15.030680363461315 -193.39412848084922 61.6118 0.1144 5580 +5582 2 -15.33778024955565 -191.9712840491073 61.1162 0.1144 5581 +5583 2 -15.645114600958095 -190.5450032227572 60.653 0.1144 5582 +5584 2 -15.952663878892963 -189.0854075809431 60.2263 0.1144 5583 +5585 2 -16.06950651500607 -187.7444594416009 59.9032 0.1144 5584 +5586 2 -16.113558623469046 -186.43849382123227 59.6845 0.1144 5585 +5587 2 -16.148877307652697 -185.13686757256608 59.5493 0.1144 5586 +5588 2 -16.182897773080924 -183.83452772879252 59.4742 0.1144 5587 +5589 2 -16.216970604321872 -182.5345340893233 59.4387 0.1144 5588 +5590 2 -16.252556580850694 -181.23108403897487 59.4224 0.1144 5589 +5591 2 -16.286577046278964 -179.92734093330893 59.4082 0.1144 5590 +5592 2 -16.320649877519912 -178.62717312870234 59.3883 0.1144 5591 +5593 2 -16.356321046898515 -177.32452765320426 59.3608 0.1144 5592 +5594 2 -16.39025631947696 -176.02316628220967 59.3239 0.1144 5593 +5595 2 -16.46883255065258 -174.69400920837714 59.2729 0.1144 5594 +5596 2 -16.779548779408785 -173.25784994343675 59.1917 0.1144 5595 +5597 2 -17.13931256736005 -171.7968497356794 59.0817 0.1144 5596 +5598 2 -17.499980649622017 -170.4249387242685 58.9484 0.1144 5597 +5599 2 -17.86107548336578 -169.81859709680373 58.7964 0.1144 5598 +5600 2 -18.22213749007244 -169.2066918561988 58.6295 0.1144 5599 +5601 2 -18.58217718258159 -167.85952263584016 58.4511 0.1144 5600 +5602 2 -18.943633113732986 -166.40378045596444 58.2641 0.1144 5601 +5603 2 -19.15888580299736 -165.00704237148133 58.0552 0.1144 5602 +5604 2 -19.306779980989987 -163.652892182905 57.8231 0.1144 5603 +5605 2 -19.447591438653703 -162.2914626532501 57.5708 0.1144 5604 +5606 2 -19.587198482624572 -160.9356669217349 57.3009 0.1144 5605 +5607 2 -19.72689071944518 -159.58004176378137 57.017 0.1144 5606 +5608 2 -19.86748725057646 -158.22455979446653 56.7216 0.1144 5607 +5609 2 -19.985173202974877 -156.88399136198578 56.4071 0.1144 5608 +5610 2 -20.077774214562695 -155.56812570344678 56.0666 0.1144 5609 +5611 2 -20.165219114329815 -154.25970367649543 55.7082 0.1144 5610 +5612 2 -20.252120817193955 -152.9151095914932 55.3426 0.1144 5611 +5613 2 -20.339959641405812 -151.60638712468045 54.9816 0.1144 5612 +5614 2 -20.428065757962884 -150.29351861869054 54.6412 0.1144 5613 +5615 2 -20.515149560322328 -148.97964338246663 54.336 0.1144 5614 +5616 2 -20.60343777637476 -147.6639034025567 54.0803 0.1144 5615 +5617 2 -20.69194091895966 -146.34264090480417 53.8807 0.1144 5616 +5618 2 -20.933747153489634 -144.98677798094033 53.8261 0.1144 5617 +5619 2 -21.322159166564106 -143.61236548232463 53.9694 0.1144 5618 +5620 2 -21.721614210307877 -142.14256601122153 54.2632 0.1144 5619 +5621 2 -22.118712792478505 -141.43648400294632 54.6392 0.1144 5620 +5622 2 -22.150770720778354 -140.0853101344048 54.924 0.1144 5621 +5623 2 -22.16100446415136 -138.6844436719613 55.1099 0.1144 5622 +5624 2 -22.171951790126997 -137.2865626415709 55.1894 0.1144 5623 +5625 2 -22.182452825845203 -135.88271014287682 55.1748 0.1144 5624 +5626 2 -22.353137952283973 -136.34902497628647 55.1908 0.1144 5625 +5627 2 -23.27051688550044 -137.39432608943164 55.2507 0.1144 5626 +5628 2 -24.15811916269743 -137.59886411205886 55.1393 0.1144 5627 +5629 2 -24.969384443909092 -138.10594113038553 54.9898 0.1144 5628 +5630 2 -25.625223234152458 -139.61312807227517 54.7078 0.1144 5629 +5631 2 -25.60974295442537 -138.2036498868845 54.1293 0.1144 5630 +5632 2 -25.554257271377494 -136.71060542096757 53.6486 0.1144 5631 +5633 2 -25.702277388933112 -135.61253222871653 53.0328 0.1144 5632 +5634 2 -26.138417913294575 -134.86360502544855 52.1735 0.1144 5633 +5635 2 -26.140219375743882 -133.659661260741 51.2999 0.1144 5634 +5636 2 -25.816420869050944 -131.97560430411409 50.531 0.1144 5635 +5637 2 -25.495880709195262 -130.03388522683716 49.94 0.1144 5636 +5638 2 -25.29025439836731 -128.8702514278886 49.5093 0.1144 5637 +5639 2 -25.457746033396248 -127.49269431750105 49.2022 0.1144 5638 +5640 2 -25.62198862633717 -126.11925879933794 48.979 0.1144 5639 +5641 2 -26.055479370749836 -125.61689222090305 48.7738 0.1144 5640 +5642 2 -26.77453654768054 -124.99791270617447 48.5041 0.1144 5641 +5643 2 -27.720370479155605 -123.66254745494048 48.1384 0.1144 5642 +5644 2 -28.76845696131278 -122.61587902426731 47.7179 0.1144 5643 +5645 2 -29.871441572467504 -123.9302409073136 47.1834 0.1144 5644 +5646 2 -30.958244454950076 -123.52943252031919 46.5816 0.1144 5645 +5647 2 -32.04603820966635 -123.01414059327674 45.9161 0.1144 5646 +5648 2 -33.14662120288969 -124.14680278970265 45.162 0.1144 5647 +5649 2 -34.244973674102866 -123.53943430200815 44.4262 0.1144 5648 +5650 2 -35.34390216925611 -122.8694207391904 43.7822 0.1144 5649 +5651 2 -36.460929081315086 -123.86749753575411 43.2631 0.1144 5650 +5652 2 -37.57516486064307 -122.93684799088076 42.8425 0.1144 5651 +5653 2 -38.62540588201374 -121.74524382111323 42.539 0.1144 5652 +5654 2 -39.63349417030466 -122.38040575269245 42.2943 0.1144 5653 +5655 2 -40.689798006853124 -121.23890916697054 42.0188 0.1144 5654 +5656 2 -41.6425356607448 -121.7507449955971 41.729 0.1144 5655 +5657 2 -42.52607620520075 -120.33413391855866 41.5058 0.1144 5656 +5658 2 -43.45492102033856 -119.04934567667854 41.3064 0.1144 5657 +5659 2 -44.57900462669596 -119.63508345020915 41.0155 0.1144 5658 +5660 2 -45.695397354283884 -118.97268992116891 40.6748 0.1144 5659 +5661 2 -46.68160529771558 -117.75513631984892 40.3676 0.1144 5660 +5662 2 -47.52349894495336 -116.89185169703906 40.1467 0.1144 5661 +5663 2 -48.388602597769705 -116.7785137095524 39.9918 0.1144 5662 +5664 2 -49.304117084770226 -115.57050947926139 39.9031 0.1144 5663 +5665 2 -50.24737481004668 -114.39017604225468 39.8723 0.1144 5664 +5666 2 -51.19054734247338 -114.40797656061858 39.877 0.1144 5665 +5667 2 -52.13518847935504 -113.63566135016917 39.8992 0.1144 5666 +5668 2 -53.091900471733155 -112.4748407210449 39.9283 0.1144 5667 +5669 2 -54.07024293044317 -111.51194239744251 39.9647 0.1144 5668 +5670 2 -55.05995358860997 -111.78470941426775 40.0151 0.1144 5669 +5671 2 -56.055272159484446 -110.67067869443858 40.124 0.1144 5670 +5672 2 -57.00266609143051 -109.52433171052189 40.2626 0.1144 5671 +5673 2 -57.9245466145742 -109.63797508743296 40.3371 0.1144 5672 +5674 2 -58.7073836052448 -108.65619894219746 40.4583 0.1144 5673 +5675 2 -59.17009549713768 -107.39507702017517 40.8052 0.1144 5674 +5676 2 -60.182757764839124 -106.38392068787405 41.3157 0.1144 5675 +5677 2 -61.27597944004057 -106.9931645870838 42.098 0.1144 5676 +5678 2 -62.342839181298444 -106.82716035539987 42.9904 0.1144 5677 +5679 2 -63.390658974657796 -106.49651137447448 43.9208 0.1144 5678 +5680 2 -64.26088991916173 -106.94988798257292 45.1688 0.1144 5679 +5681 2 -63.52094276702553 -105.80990948640382 45.8102 0.1144 5680 +5682 2 -62.968803699219436 -105.29394744600575 46.4036 0.1144 5681 +5683 2 -63.39592189057103 -104.17447209876394 47.4334 0.1144 5682 +5684 2 -63.87080244421992 -103.17352990723867 49.1047 0.1144 5683 +5685 2 -64.45478701182923 -102.73741460729848 50.1222 0.1144 5684 +5686 2 -65.32443451015416 -102.38890727412016 51.1557 0.1144 5685 +5687 2 -66.27207111117308 -101.37319365006745 52.0304 0.1144 5686 +5688 2 -67.16521031435268 -100.42682237954209 53.2868 0.1144 5687 +5689 2 -21.643277886587086 -134.90915402503077 55.0382 0.1144 5625 +5690 2 -21.731962436130743 -133.601327822242 54.8509 0.1144 5689 +5691 2 -21.988551574508378 -132.18192275141888 54.6286 0.1144 5690 +5692 2 -22.22135709241391 -130.7694258928887 54.3578 0.1144 5691 +5693 2 -22.466814905689418 -129.84336686718882 54.0932 0.1144 5692 +5694 2 -22.618181664515248 -128.72073667810926 53.8345 0.1144 5693 +5695 2 -22.7188548835924 -127.50251798206043 53.4545 0.1144 5694 +5696 2 -22.8063381210262 -126.27041455946326 52.9494 0.1144 5695 +5697 2 -23.073752261957637 -125.43147018543897 52.437 0.1144 5696 +5698 2 -23.46491707009646 -124.29619509377024 51.9753 0.1144 5697 +5699 2 -23.816305429593 -122.8560511951757 51.6062 0.1144 5698 +5700 2 -23.893258894457972 -122.41435903715791 51.4382 0.1144 5699 +5701 2 -24.092562603848393 -121.03920160507037 51.032 0.1144 5700 +5702 2 -24.24437565293165 -119.68154174527965 50.7466 0.1144 5701 +5703 2 -24.466625869675156 -118.28655007227086 50.5257 0.1144 5702 +5704 2 -24.719924526714976 -116.87526380070706 50.344 0.1144 5703 +5705 2 -24.789943229940476 -115.73544401681097 50.1824 0.1144 5704 +5706 2 -24.613588715895617 -114.75384679016918 50.0192 0.1144 5705 +5707 2 -24.29987560312327 -113.8765768550571 49.7896 0.1144 5706 +5708 2 -24.033077819254544 -112.96073401387717 49.4715 0.1144 5707 +5709 2 -24.001560957757277 -111.88375922730539 49.145 0.1144 5708 +5710 2 -24.186657787240108 -110.68950534762499 48.8653 0.1144 5709 +5711 2 -24.285895228899335 -109.53479134541021 48.6315 0.1144 5710 +5712 2 -24.374811834704644 -108.38358469411241 48.3818 0.1144 5711 +5713 2 -24.628992145696373 -107.16864587762211 48.1104 0.1144 5712 +5714 2 -24.94741948453435 -105.93153225491133 47.868 0.1144 5713 +5715 2 -25.15407630818197 -104.73245151127776 47.6596 0.1144 5714 +5716 2 -25.14483612503514 -103.63591209147087 47.4729 0.1144 5715 +5717 2 -24.997085987817172 -102.61737581727635 47.2889 0.1144 5716 +5718 2 -24.903118973299314 -101.56407003354079 47.075 0.1144 5717 +5719 2 -24.751937694497997 -100.55612280827894 46.8238 0.1144 5718 +5720 2 -24.23797843602148 -99.18499744714808 46.5139 0.1144 5719 +5721 2 -23.547920851303672 -97.9525528570354 46.1524 0.1144 5720 +5722 2 -23.373830710279407 -96.99068444958212 45.7783 0.1144 5721 +5723 2 -23.137508444350004 -96.04083615266055 45.3844 0.1144 5722 +5724 2 -22.775667071464625 -95.19239406471722 44.8577 0.1144 5723 +5725 2 -21.963238123273186 -94.84819876776278 44.3422 0.1144 5724 +5726 2 -20.881805995055032 -93.73732582806552 43.9491 0.1144 5725 +5727 2 -19.79609630738514 -93.96366457997097 43.5554 0.1144 5726 +5728 2 -20.35203190003233 -93.1708478639487 45.2869 0.1144 5727 +5729 2 -21.312559748385524 -92.62124644514925 45.8091 0.1144 5728 +5730 2 -22.36997660261096 -92.54527795429185 46.3086 0.1144 5729 +5731 2 -23.49873240308648 -91.99547671967582 46.7589 0.1144 5730 +5732 2 -24.630050695366236 -91.966038780755 47.108 0.1144 5731 +5733 2 -25.76596078932235 -92.01299894141717 47.3628 0.1144 5732 +5734 2 -26.89978171405042 -91.38191128440893 47.6778 0.1144 5733 +5735 2 -19.463003978476337 -93.92646219925443 43.3734 0.1144 5727 +5736 2 -18.452315654218495 -93.89116098038585 42.9696 0.1144 5735 +5737 2 -17.45128935807128 -92.72789046613732 42.7778 0.1144 5736 +5738 2 -16.840899304853195 -92.12594732300532 42.5505 0.1144 5737 +5739 2 -16.592764958256055 -91.17296232684842 42.2859 0.1144 5738 +5740 2 -16.510290366248086 -90.11258534891319 41.9642 0.1144 5739 +5741 2 -16.41430534720604 -89.06625504018554 41.5391 0.1144 5740 +5742 2 -16.38737408421889 -87.993840296945 41.0446 0.1144 5741 +5743 2 -16.8536314381586 -86.82328129794998 40.572 0.1144 5742 +5744 2 -17.256954703690155 -85.64629945265176 40.1243 0.1144 5743 +5745 2 -17.216659877080787 -84.60587810051342 39.825 0.1144 5744 +5746 2 -17.217539631401536 -83.49825120865472 39.6631 0.1144 5745 +5747 2 -17.336250999580557 -82.34058382727285 39.6186 0.1144 5746 +5748 2 -17.539256244482686 -81.15778771649927 39.6813 0.1144 5747 +5749 2 -17.808148294618434 -79.96058073151453 39.8042 0.1144 5748 +5750 2 -18.078062658951666 -78.76898703808396 39.9487 0.1144 5749 +5751 2 -18.201630019569166 -77.61663771648178 40.1008 0.1144 5750 +5752 2 -18.110592388981473 -76.55347231140352 40.2578 0.1144 5751 +5753 2 -17.862022678689925 -75.57359832104038 40.4628 0.1144 5752 +5754 2 -17.579851938887373 -74.61936202134619 40.8268 0.1144 5753 +5755 2 -16.67024847944981 -74.40515071200802 41.2471 0.1144 5754 +5756 2 -16.017802191349602 -72.76836363806538 41.5764 0.1144 5755 +5757 2 -16.201374948981652 -71.77280699459338 41.8141 0.1144 5756 +5758 2 -16.727341279977082 -71.24231071008136 41.965 0.1144 5757 +5759 2 -16.72487818714731 -70.0058368214274 42.0437 0.1144 5758 +5760 2 -16.792631824815686 -68.83369962890843 42.0664 0.1144 5759 +5761 2 -16.207650857222376 -67.43771895468079 42.0686 0.1144 5760 +5762 2 -15.821314595612563 -66.53655472943534 42.0686 0.1144 5761 +5763 2 -15.513303893146997 -65.57949883771536 42.0686 0.1144 5762 +5764 2 -23.89449253673189 -121.32912433391625 52.7629 0.1144 5699 +5765 2 -23.960360312605147 -120.04447871257548 53.3238 0.1144 5764 +5766 2 -24.025346434526497 -118.7524281308289 53.8642 0.1144 5765 +5767 2 -24.158619576854605 -117.42183033454998 54.3942 0.1144 5766 +5768 2 -24.32713903671069 -116.1687273944808 54.8915 0.1144 5767 +5769 2 -24.500068198747755 -114.99062243542147 55.3969 0.1144 5768 +5770 2 -24.658158989541334 -113.82257975486442 55.9322 0.1144 5769 +5771 2 -24.69363574778842 -112.74874049530648 56.7664 0.1144 5770 +5772 2 -24.701213194294695 -111.71921069103959 57.8248 0.1144 5771 +5773 2 -24.70623976809631 -110.74780032420972 59.124 0.1144 5772 +5774 2 -24.712178431525388 -109.9755629102585 61.1397 0.1144 5773 +5775 2 27.200335660435442 -276.6797197246252 75.7546 0.1144 5320 +5776 2 27.250648101933507 -275.3940614649316 75.8349 0.1144 5775 +5777 2 26.86910388265551 -274.224439459032 75.9122 0.1144 5776 +5778 2 26.964763040373498 -272.9077315658686 75.9923 0.1144 5777 +5779 2 26.668395044307033 -271.740100632637 74.1773 0.1144 5778 +5780 2 26.91627721000455 -270.8248908131233 72.571 0.1144 5779 +5781 2 27.25571135452526 -271.2246983410809 71.5963 0.1144 5780 +5782 2 27.360567321703414 -272.3468675603467 70.399 0.1144 5781 +5783 2 27.9499347652566 -272.04162373349124 69.4837 0.1144 5782 +5784 2 28.59151461155328 -271.31336631296847 68.7652 0.1144 5783 +5785 2 29.13955490503548 -270.8065685331772 67.6172 0.1144 5784 +5786 2 29.265500959136915 -271.8853305391087 67.0163 0.1144 5785 +5787 2 30.1118809068778 -272.83817516122167 66.575 0.1144 5786 +5788 2 31.189771367168802 -271.79155733891855 66.2693 0.1144 5787 +5789 2 32.22683423877996 -271.8057086395876 66.0279 0.1144 5788 +5790 2 33.287484319133185 -271.8150318216935 65.7171 0.1144 5789 +5791 2 34.303510162170426 -270.68867849656635 65.2957 0.1144 5790 +5792 2 35.124499739895086 -270.03551570701757 64.9172 0.1144 5791 +5793 2 35.857688932041896 -269.3561204872198 64.6156 0.1144 5792 +5794 2 36.5788894546552 -267.3727124891463 64.3633 0.1144 5793 +5795 2 37.285075017159215 -266.6529627555418 64.1525 0.1144 5794 +5796 2 37.969598262919575 -266.095105607155 63.9596 0.1144 5795 +5797 2 38.56567531953145 -265.420760952606 63.7199 0.1144 5796 +5798 2 39.04086813192704 -264.36378562838524 63.3738 0.1144 5797 +5799 2 39.381496579909296 -262.6000630698449 62.9364 0.1144 5798 +5800 2 39.57041578742782 -260.9370699561289 62.4571 0.1144 5799 +5801 2 39.7989003111759 -259.63036652602193 61.9522 0.1144 5800 +5802 2 40.24530423820265 -258.6865028298121 61.4286 0.1144 5801 +5803 2 40.97695125214422 -257.94307783833517 60.916 0.1144 5802 +5804 2 41.865632003471205 -256.93056029977095 60.431 0.1144 5803 +5805 2 42.78297018997445 -256.32106868524573 59.9642 0.1144 5804 +5806 2 43.6356044632479 -255.8515341445309 59.5014 0.1144 5805 +5807 2 44.26157929734913 -254.75781449939024 59.0316 0.1144 5806 +5808 2 44.61045654168659 -252.83847305378345 58.5589 0.1144 5807 +5809 2 44.827754272936644 -251.33749943968934 58.0832 0.1144 5808 +5810 2 45.008480151495775 -250.19991956073767 57.6072 0.1144 5809 +5811 2 45.05055541573823 -248.98277134273894 57.1276 0.1144 5810 +5812 2 44.95674447982789 -247.66880553768095 56.658 0.1144 5811 +5813 2 44.88717516844292 -246.36687434642687 56.2248 0.1144 5812 +5814 2 44.86986180632411 -245.09006166152108 55.8446 0.1144 5813 +5815 2 44.86221898983236 -243.8218505658732 55.5089 0.1144 5814 +5816 2 44.85180624854705 -242.54960949338243 55.2065 0.1144 5815 +5817 2 44.803526537398525 -241.24663542145055 54.9139 0.1144 5816 +5818 2 44.7336868320853 -239.9636980105497 54.6322 0.1144 5817 +5819 2 44.69689954344666 -238.6730803367071 54.385 0.1144 5818 +5820 2 44.70943020793126 -237.4151583136615 54.133 0.1144 5819 +5821 2 44.787142612563315 -236.20847092369362 53.8504 0.1144 5820 +5822 2 45.06178124019644 -235.17154721614412 53.5875 0.1144 5821 +5823 2 45.54993818114005 -234.29039277544786 53.3817 0.1144 5822 +5824 2 46.11454954011543 -232.82205229128323 53.2216 0.1144 5823 +5825 2 46.89030051891733 -232.28620741689105 53.072 0.1144 5824 +5826 2 47.84025645093725 -231.30657193993298 52.9189 0.1144 5825 +5827 2 48.77261200659632 -231.10154719957274 52.768 0.1144 5826 +5828 2 49.624256100172644 -230.00287026085886 52.6229 0.1144 5827 +5829 2 50.37909668250015 -229.10817363410231 52.4762 0.1144 5828 +5830 2 51.19165157025455 -227.63041764480255 52.3194 0.1144 5829 +5831 2 52.11207082219279 -227.24469222087316 52.1147 0.1144 5830 +5832 2 53.06621601923166 -227.20175469501194 51.837 0.1144 5831 +5833 2 54.020501876516164 -226.03664944210408 51.494 0.1144 5832 +5834 2 54.87585060718726 -225.06167736382014 51.1134 0.1144 5833 +5835 2 54.88350545636921 -223.90276169853024 50.5232 0.1144 5834 +5836 2 54.567716592132214 -222.50497500080596 49.8809 0.1144 5835 +5837 2 54.812303067635966 -221.53265159552996 49.1845 0.1144 5836 +5838 2 55.70326670678588 -221.4087455971906 48.482 0.1144 5837 +5839 2 56.64696271936131 -220.06383457172 47.7425 0.1144 5838 +5840 2 57.58643112925114 -219.5596380601665 46.9605 0.1144 5839 +5841 2 58.3579322734567 -219.2740906347512 46.0656 0.1144 5840 +5842 2 58.81208054605018 -218.56521572828305 44.9672 0.1144 5841 +5843 2 59.44761339883624 -217.6106658597563 43.6069 0.1144 5842 +5844 2 59.63438907071546 -216.1164554217488 42.3847 0.1144 5843 +5845 2 60.562948984026704 -215.58038160543657 41.27 0.1144 5844 +5846 2 61.55364041617389 -215.08869063058893 40.4065 0.1144 5845 +5847 2 61.58311443709029 -214.68752530902447 40.1142 0.1144 5846 +5848 2 61.69969561038225 -213.4826142048637 39.2703 0.1144 5847 +5849 2 61.88545717182866 -212.41296202314072 38.6324 0.1144 5848 +5850 2 62.12975784018492 -211.3767629738756 38.2133 0.1144 5849 +5851 2 62.38661468449831 -210.34451085647953 37.977 0.1144 5850 +5852 2 62.643832626219435 -208.92087001928076 37.8759 0.1144 5851 +5853 2 62.98120582894741 -207.36031052140376 37.8809 0.1144 5852 +5854 2 63.54818767764202 -206.55452629367232 37.9898 0.1144 5853 +5855 2 64.32963796516765 -205.7814770743854 38.1671 0.1144 5854 +5856 2 65.24234300544106 -205.3258839690449 38.348 0.1144 5855 +5857 2 66.21436138181559 -203.8962498794971 38.5025 0.1144 5856 +5858 2 67.08784748258444 -203.2648069053294 38.633 0.1144 5857 +5859 2 67.78650093291901 -202.0926018063156 38.7024 0.1144 5858 +5860 2 68.49339225304577 -201.10326095311552 38.6672 0.1144 5859 +5861 2 69.40921729426121 -200.72226932376736 38.5428 0.1144 5860 +5862 2 70.39340954124775 -200.32988022462183 38.3645 0.1144 5861 +5863 2 71.25499216533285 -198.80085918936882 38.1321 0.1144 5862 +5864 2 72.01082533640395 -197.85208957975328 37.844 0.1144 5863 +5865 2 72.44227046325388 -197.04248500285155 37.4629 0.1144 5864 +5866 2 72.35216416443835 -195.78963956548705 36.9821 0.1144 5865 +5867 2 72.05432446233381 -194.43264462657396 36.3941 0.1144 5866 +5868 2 71.36638350473143 -193.37439384731147 35.7249 0.1144 5867 +5869 2 70.41797205899587 -193.69699655578256 34.8743 0.1144 5868 +5870 2 70.3707068490431 -192.92976163375175 33.3385 0.1144 5869 +5871 2 70.22670110646555 -191.91188146081555 32.0001 0.1144 5870 +5872 2 70.06080270739263 -190.70830194711772 30.7829 0.1144 5871 +5873 2 69.61432490998459 -189.35543345530226 29.8519 0.1144 5872 +5874 2 69.03767804341324 -188.32343987021653 29.0895 0.1144 5873 +5875 2 68.18813796354262 -187.17232238701973 28.4939 0.1144 5874 +5876 2 67.24203984130547 -186.81622669717126 28.0353 0.1144 5875 +5877 2 66.24249436028202 -185.90350415006483 27.6594 0.1144 5876 +5878 2 65.82523460877113 -184.7400756569217 27.1899 0.1144 5877 +5879 2 66.19585394676866 -183.64404983999202 26.6894 0.1144 5878 +5880 2 66.29686844553183 -182.50184768153426 26.1789 0.1144 5879 +5881 2 66.27996303600378 -181.27874819730937 25.6616 0.1144 5880 +5882 2 66.28474735432317 -180.0737046123486 25.1129 0.1144 5881 +5883 2 66.5545799462841 -179.0861883631788 24.478 0.1144 5882 +5884 2 67.04212631974058 -177.88555960862624 23.7274 0.1144 5883 +5885 2 67.55372740013404 -176.3084109256031 22.8544 0.1144 5884 +5886 2 68.40361057716798 -176.23466448889727 21.6339 0.1144 5885 +5887 2 69.26752172518651 -176.4200976197304 19.9266 0.1144 5886 +5888 2 69.67828971377557 -176.84114165020603 17.3384 0.1144 5887 +5889 2 70.07842461290663 -176.44762356903658 15.0456 0.1144 5888 +5890 2 70.26284761733241 -175.0897256103703 13.6092 0.1144 5889 +5891 2 70.44680340765193 -173.60595985094307 12.3879 0.1144 5890 +5892 2 70.64068472430748 -172.19865686048837 11.469 0.1144 5891 +5893 2 70.83874058529929 -170.99129766601968 10.7827 0.1144 5892 +5894 2 71.04053872851595 -169.87990671628077 10.2734 0.1144 5893 +5895 2 71.44145458654059 -168.99571218615424 9.8433 0.1144 5894 +5896 2 72.13944130945565 -168.49716640752985 9.4154 0.1144 5895 +5897 2 72.84571826797568 -168.01381140567395 8.9937 0.1144 5896 +5898 2 73.65462157698462 -166.08370501863217 8.6493 0.1144 5897 +5899 2 74.5330934038745 -165.66942764084308 8.3636 0.1144 5898 +5900 2 75.43153609684452 -165.45677598883051 7.8529 0.1144 5899 +5901 2 61.814472392477754 -215.0555015471984 39.7712 0.1144 5846 +5902 2 62.89014774397782 -215.01175824973498 39.2862 0.1144 5901 +5903 2 63.9927934896357 -214.8911525962829 39.1555 0.1144 5902 +5904 2 65.07336758088591 -214.39588481099383 39.1558 0.1144 5903 +5905 2 66.14996423206654 -214.01470000303394 39.2633 0.1144 5904 +5906 2 67.2889190543895 -213.55612090848712 39.4355 0.1144 5905 +5907 2 68.39485467783786 -213.54654849142247 39.6071 0.1144 5906 +5908 2 69.53530482318293 -214.18770447811772 39.676 0.1144 5907 +5909 2 70.67593396644024 -214.09495660409104 39.6393 0.1144 5908 +5910 2 71.81664830254735 -213.412287379261 39.5139 0.1144 5909 +5911 2 72.95455988682389 -213.57476389666675 39.3347 0.1144 5910 +5912 2 73.99946670378255 -213.7676060744915 39.13 0.1144 5911 +5913 2 75.03447943636901 -212.667749037347 38.703 0.1144 5912 +5914 2 27.20628327779926 -272.18246914965846 76.1062 0.1144 5778 +5915 2 27.41516483388142 -270.95321313774633 76.3496 0.1144 5914 +5916 2 27.115277401798664 -269.7257836239875 76.6654 0.1144 5915 +5917 2 26.691944932520286 -268.61389114463276 76.9488 0.1144 5916 +5918 2 26.447958825282925 -267.28663652344034 77.1624 0.1144 5917 +5919 2 26.324785389110133 -265.9332433193387 77.3158 0.1144 5918 +5920 2 26.295709210553213 -264.63982783077824 77.4155 0.1144 5919 +5921 2 26.374846466040253 -263.42017173942395 77.4721 0.1144 5920 +5922 2 26.386225082644728 -262.15353926501075 77.5088 0.1144 5921 +5923 2 26.276685604022504 -260.8055836743024 77.5477 0.1144 5922 +5924 2 26.278660967345033 -259.5160321979176 77.597 0.1144 5923 +5925 2 26.429883685396135 -258.3658731718555 77.6924 0.1144 5924 +5926 2 26.339418698219447 -257.0554688563366 77.8277 0.1144 5925 +5927 2 26.027806787365222 -255.61713585246275 77.9604 0.1144 5926 +5928 2 25.822800667668034 -254.2287218468516 78.0822 0.1144 5927 +5929 2 25.623587661757014 -252.8371834838024 78.2116 0.1144 5928 +5930 2 25.577088388241535 -251.5515100364251 78.3703 0.1144 5929 +5931 2 25.65275306289537 -250.32916710647464 78.5352 0.1144 5930 +5932 2 25.809057626480325 -249.1803413256966 78.7514 0.1144 5931 +5933 2 26.13226228696746 -248.18398286659908 78.9228 0.1144 5932 +5934 2 26.251945733631857 -246.98218112925724 79.0426 0.1144 5933 +5935 2 26.389713492044677 -245.61692330373478 79.1291 0.1144 5934 +5936 2 26.64322438762447 -244.19349478439386 79.1874 0.1144 5935 +5937 2 26.68008497106733 -242.88924283707416 79.2492 0.1144 5936 +5938 2 26.556250318104702 -241.6505829338584 79.3299 0.1144 5937 +5939 2 26.350348516309495 -240.4754146514482 79.4094 0.1144 5938 +5940 2 26.231637148130474 -239.26037104182035 79.4637 0.1144 5939 +5941 2 26.279499322992876 -237.92143407097456 79.49 0.1144 5940 +5942 2 26.08143836496204 -236.75337543640202 79.4917 0.1144 5941 +5943 2 25.800340309713846 -235.43225049175578 79.4251 0.1144 5942 +5944 2 25.756916591003716 -234.1389460059306 79.3296 0.1144 5943 +5945 2 25.896249860517187 -232.97337696312283 79.2509 0.1144 5944 +5946 2 25.804797795226477 -231.65115284072215 79.1958 0.1144 5945 +5947 2 25.914677860998125 -230.3859312453932 79.1655 0.1144 5946 +5948 2 25.9612504293178 -229.0262782633048 79.161 0.1144 5947 +5949 2 25.952347731737248 -227.71395051660622 79.1801 0.1144 5948 +5950 2 25.739363209613202 -226.57135229662845 79.2126 0.1144 5949 +5951 2 25.544430172200464 -225.19050702074975 79.2515 0.1144 5950 +5952 2 25.16693455769574 -223.7118414118981 79.3251 0.1144 5951 +5953 2 24.689296000126475 -222.33625297246755 79.4973 0.1144 5952 +5954 2 25.178032066593246 -221.4463135820779 79.5735 0.1144 5953 +5955 2 25.570058527841084 -221.60991707126442 79.2798 0.1144 5954 +5956 2 26.61015690008111 -220.83338053696957 79.0723 0.1144 5955 +5957 2 27.655871104704858 -220.5320628117634 79.1126 0.1144 5956 +5958 2 28.53090317779865 -219.95810195249584 79.0174 0.1144 5957 +5959 2 29.490230228599998 -218.60597384443514 78.7402 0.1144 5958 +5960 2 30.45947678054985 -219.3124663979674 78.4745 0.1144 5959 +5961 2 31.596802420611652 -220.14474845008237 78.2583 0.1144 5960 +5962 2 32.68661548791411 -219.29686344340786 78.129 0.1144 5961 +5963 2 33.78573869597257 -219.02007019005546 78.0534 0.1144 5962 +5964 2 34.85619215721859 -218.88850574496774 77.9635 0.1144 5963 +5965 2 35.92730683525447 -217.70169172065903 77.8422 0.1144 5964 +5966 2 37.02848087487419 -218.11385385306977 77.6891 0.1144 5965 +5967 2 38.1371134529132 -218.12323240490122 77.5054 0.1144 5966 +5968 2 38.65475952621877 -216.4680430295411 77.1509 0.1144 5967 +5969 2 39.35033742174791 -215.38549151376296 76.7673 0.1144 5968 +5970 2 40.03768054906804 -214.47578159907982 76.2986 0.1144 5969 +5971 2 40.78300596669682 -213.66303360999703 75.8167 0.1144 5970 +5972 2 41.78552999491265 -213.24416005577774 75.3141 0.1144 5971 +5973 2 42.84484972200997 -213.00760394919445 74.8171 0.1144 5972 +5974 2 43.905949886740345 -211.6311853220671 74.3425 0.1144 5973 +5975 2 44.820371693486194 -211.4081992161874 73.9301 0.1144 5974 +5976 2 45.44804107983407 -210.1946910628097 73.6268 0.1144 5975 +5977 2 46.07374792905358 -209.3841086437896 73.3978 0.1144 5976 +5978 2 46.74686945578347 -208.34463666033884 73.2035 0.1144 5977 +5979 2 47.43856371630561 -207.18460676314044 73.0206 0.1144 5978 +5980 2 48.1067409561642 -206.54534864507087 72.8451 0.1144 5979 +5981 2 48.76328201168424 -205.2934400553404 72.6802 0.1144 5980 +5982 2 49.418748387194 -204.70811609701434 72.5396 0.1144 5981 +5983 2 50.070653887437615 -203.05361936164232 72.443 0.1144 5982 +5984 2 50.366935008950165 -201.61464722396465 72.49 0.1144 5983 +5985 2 50.101518641230655 -200.51340800923901 72.8095 0.1144 5984 +5986 2 50.50662036091748 -199.48187133913132 73.414 0.1144 5985 +5987 2 51.473747508770046 -199.42326748704033 73.8867 0.1144 5986 +5988 2 52.416799718373426 -199.3631896380754 74.251 0.1144 5987 +5989 2 53.39498082345824 -197.90109981048874 74.5186 0.1144 5988 +5990 2 54.4828672822525 -197.87786551349976 74.695 0.1144 5989 +5991 2 55.60839896568589 -197.95155827079947 74.8168 0.1144 5990 +5992 2 56.750354052554044 -197.3643749571875 74.9232 0.1144 5991 +5993 2 57.8835205614988 -198.28052718916575 75.0677 0.1144 5992 +5994 2 58.99555733779171 -198.69464544526647 75.2718 0.1144 5993 +5995 2 59.93013090301852 -198.76468001605878 75.5336 0.1144 5994 +5996 2 60.54584674409951 -200.14391900378808 75.8212 0.1144 5995 +5997 2 60.702121861176494 -201.36735763005368 76.0995 0.1144 5996 +5998 2 61.08438517368674 -202.4615666846734 76.4431 0.1144 5997 +5999 2 61.57836594303804 -203.6954260618005 76.8558 0.1144 5998 +6000 2 62.38823258938196 -204.93679482884068 77.3651 0.1144 5999 +6001 2 63.318834917705345 -205.27737797619778 77.7857 0.1144 6000 +6002 2 64.25736879327255 -206.2787605652856 78.1511 0.1144 6001 +6003 2 65.2073529595633 -207.14504393758892 78.4812 0.1144 6002 +6004 2 66.12805670488014 -206.90783663607635 78.7875 0.1144 6003 +6005 2 65.61790850197073 -208.36096357923304 79.5819 0.1144 6004 +6006 2 65.28742001512666 -207.87849402650093 80.4258 0.1144 6005 +6007 2 65.3685290177952 -206.76716060805114 81.2137 0.1144 6006 +6008 2 65.51432892952087 -205.64266507508964 82.0333 0.1144 6007 +6009 2 65.66085413764495 -204.31723853260326 82.8752 0.1144 6008 +6010 2 66.6427275505034 -202.98234804375477 83.7878 0.1144 6009 +6011 2 67.71615014808249 -203.00724985196223 84.6714 0.1144 6010 +6012 2 68.80288494975943 -203.07026314030304 85.5081 0.1144 6011 +6013 2 69.81148389200496 -203.62156492852296 86.2982 0.1144 6012 +6014 2 70.763359714809 -204.4970116782965 87.0615 0.1144 6013 +6015 2 71.7161726589608 -204.40347655089136 87.8237 0.1144 6014 +6016 2 72.50923198668917 -205.75883158385923 88.1748 0.1144 6015 +6017 2 73.20503771879167 -207.18311984626501 88.4584 0.1144 6016 +6018 2 73.95286975294513 -208.48649566842283 88.7687 0.1144 6017 +6019 2 74.80326786978375 -208.7989034429736 89.0736 0.1144 6018 +6020 2 75.52005687957421 -209.57103234781312 89.4824 0.1144 6019 +6021 2 76.17586030993895 -210.9973840853901 89.9909 0.1144 6020 +6022 2 76.88569323150006 -212.33265221180153 90.487 0.1144 6021 +6023 2 77.62519359079889 -212.3441675316149 90.9437 0.1144 6022 +6024 2 78.2658530199083 -213.41045898969114 91.4656 0.1144 6023 +6025 2 78.85651235525566 -214.75090577621074 92.5509 0.1144 6024 +6026 2 72.3995640704682 -203.83677125988854 88.9787 0.1144 6015 +6027 2 73.17550946040164 -203.50630351793902 89.7854 0.1144 6026 +6028 2 73.37789563742093 -202.82060887661612 91.1666 0.1144 6027 +6029 2 72.84670250394645 -203.0770463027755 92.7814 0.1144 6028 +6030 2 72.68453465618191 -203.91694165843674 94.5311 0.1144 6029 +6031 2 72.49984946159255 -204.722624995939 96.3099 0.1144 6030 +6032 2 72.7575306995052 -205.34812070735634 98.7311 0.1144 6031 +6033 2 72.45499768433432 -204.86717563854432 101.1338 0.1144 6032 +6034 2 72.12733827712499 -203.91112024683673 103.024 0.1144 6033 +6035 2 72.19424489852031 -203.2975955029239 105.2299 0.1144 6034 +6036 2 71.81838707278254 -202.5933078441962 107.3957 0.1144 6035 +6037 2 71.28980348710168 -201.98593453331603 109.275 0.1144 6036 +6038 2 70.6971197369865 -201.925613824398 111.043 0.1144 6037 +6039 2 69.75598032052969 -201.34219698779464 112.4416 0.1144 6038 +6040 2 68.69729438714049 -201.19337553979452 113.4958 0.1144 6039 +6041 2 67.61121159220036 -201.17781480144072 114.3708 0.1144 6040 +6042 2 66.57369172853114 -200.91166889918654 115.5484 0.1144 6041 +6043 2 38.66526396529369 -217.44205106369083 77.9027 0.1144 5967 +6044 2 39.74683434471093 -217.2461422109538 78.3348 0.1144 6043 +6045 2 40.86519432084597 -216.92775668883758 78.4767 0.1144 6044 +6046 2 42.00510437087105 -216.8967662395372 78.5333 0.1144 6045 +6047 2 43.1473267500844 -217.23639535668747 78.6198 0.1144 6046 +6048 2 44.21670593406114 -216.58893937624703 79.0023 0.1144 6047 +6049 2 45.19276791399473 -217.71365929151952 79.5992 0.1144 6048 +6050 2 46.24166557793676 -218.11745836956115 80.2553 0.1144 6049 +6051 2 47.34252578377992 -217.67671349229772 80.8559 0.1144 6050 +6052 2 48.40461061757773 -217.89080833126053 81.4568 0.1144 6051 +6053 2 49.47706836895364 -217.5343862401814 82.159 0.1144 6052 +6054 2 50.581335075422956 -216.92145076721587 82.8537 0.1144 6053 +6055 2 51.69203359646882 -217.1728006048021 83.4655 0.1144 6054 +6056 2 52.747640571695925 -218.22201819459474 84.0358 0.1144 6055 +6057 2 53.56770693242386 -218.89214561432073 84.5368 0.1144 6056 +6058 2 54.52819334152733 -219.03101284300908 84.8901 0.1144 6057 +6059 2 55.60996132264853 -220.14929967668152 85.1094 0.1144 6058 +6060 2 56.69739268387319 -219.84432851872566 85.2505 0.1144 6059 +6061 2 57.793237118682725 -220.49830620853137 85.2894 0.1144 6060 +6062 2 58.890060114089806 -221.58480495077552 85.2782 0.1144 6061 +6063 2 59.95758046859025 -221.2261892807868 85.4938 0.1144 6062 +6064 2 60.99032723029862 -222.03764373927038 86.0471 0.1144 6063 +6065 2 62.03244780392359 -222.28446175922159 86.7846 0.1144 6064 +6066 2 63.11297264292227 -222.46481418629295 87.5711 0.1144 6065 +6067 2 64.16385327040425 -222.42445601663917 88.342 0.1144 6066 +6068 2 65.18480598649501 -221.77341051453232 89.0487 0.1144 6067 +6069 2 66.2483272902474 -221.5830301949263 89.6717 0.1144 6068 +6070 2 67.35761226578613 -221.0169307656801 90.2056 0.1144 6069 +6071 2 68.47252708416977 -221.01014337077044 90.6209 0.1144 6070 +6072 2 69.60451520545212 -221.81777079854942 90.8975 0.1144 6071 +6073 2 70.73077829375391 -221.5406412787546 91.0832 0.1144 6072 +6074 2 71.84604799440093 -220.8543321600369 91.2318 0.1144 6073 +6075 2 72.9610058618699 -220.62862217680492 91.3405 0.1144 6074 +6076 2 74.02045152853019 -220.8847032565835 91.5183 0.1144 6075 +6077 2 75.00919172889681 -219.8814442109349 91.859 0.1144 6076 +6078 2 76.07432068751423 -219.91810139329348 92.3586 0.1144 6077 +6079 2 77.1133451909329 -220.94203996783313 92.9214 0.1144 6078 +6080 2 78.00105717814199 -220.58922455392837 93.4458 0.1144 6079 +6081 2 78.85323814166011 -221.92141236121 93.9109 0.1144 6080 +6082 2 79.66711505511066 -223.3516536602947 94.2948 0.1144 6081 +6083 2 80.24872092923594 -224.79995461731275 94.5605 0.1144 6082 +6084 2 80.60309414005846 -225.83823500230875 94.7279 0.1144 6083 +6085 2 80.75219273174405 -226.85187433706437 94.8259 0.1144 6084 +6086 2 80.9808558398138 -227.70427360155526 94.9298 0.1144 6085 +6087 2 81.08932063842575 -228.801843002157 95.0121 0.1144 6086 +6088 2 81.1090459295135 -230.07325793096103 95.0494 0.1144 6087 +6089 2 81.11544599464567 -231.36136712136692 95.0432 0.1144 6088 +6090 2 81.12118484298793 -232.64416144685026 94.9911 0.1144 6089 +6091 2 81.12700888418001 -233.94208891991616 94.89 0.1144 6090 +6092 2 80.74837280608892 -235.89022981686279 94.6943 0.1144 6091 +6093 2 80.20920197470225 -236.90344863262794 94.4124 0.1144 6092 +6094 2 79.72399395646445 -237.70169505628536 94.0607 0.1144 6093 +6095 2 79.51671143105655 -238.77597134243308 93.6258 0.1144 6094 +6096 2 79.33848818494577 -239.88269729684976 93.1496 0.1144 6095 +6097 2 79.33784076583258 -241.1171388810125 92.7044 0.1144 6096 +6098 2 79.86523194768301 -242.55209848302331 92.3902 0.1144 6097 +6099 2 80.48688156279584 -244.01521994793217 92.1824 0.1144 6098 +6100 2 81.10487959916316 -244.7259204667797 92.0618 0.1144 6099 +6101 2 81.72345365947055 -245.09101909769453 92.006 0.1144 6100 +6102 2 82.34100540558043 -246.55368933739373 91.9901 0.1144 6101 +6103 2 82.96184763302809 -247.93651473287628 91.9901 0.1144 6102 +6104 2 83.58331825022856 -248.5615203298301 91.9901 0.1144 6103 +6105 2 25.010804711315686 -220.75951165633887 79.6278 0.1144 5954 +6106 2 24.55873572248123 -219.42760312485058 79.655 0.1144 6105 +6107 2 23.994323988635898 -218.53635881469268 79.6648 0.1144 6106 +6108 2 23.505469605651285 -217.1962500472323 79.6606 0.1144 6107 +6109 2 23.521971507039282 -215.9328382496965 79.6519 0.1144 6108 +6110 2 23.624895484581586 -214.7340335137394 79.6527 0.1144 6109 +6111 2 23.64170611756451 -213.47157787600543 79.6538 0.1144 6110 +6112 2 23.589237141397064 -212.1606139590872 79.6555 0.1144 6111 +6113 2 23.464289470757492 -210.8225094560703 79.6578 0.1144 6112 +6114 2 23.127554281425958 -209.38802193093255 79.6611 0.1144 6113 +6115 2 23.044389350157118 -208.06754572349854 79.6656 0.1144 6114 +6116 2 23.103926047024743 -206.8293954457327 79.6718 0.1144 6115 +6117 2 22.992782719635287 -205.50057815604646 79.6802 0.1144 6116 +6118 2 22.639473262260083 -204.20932655478612 79.693 0.1144 6117 +6119 2 22.288751630183043 -203.30230412840402 79.7107 0.1144 6118 +6120 2 21.89023060620393 -202.50415978683063 79.7345 0.1144 6119 +6121 2 21.49259433775987 -201.38254682367022 79.763 0.1144 6120 +6122 2 21.118389204592958 -200.12508579814062 79.8098 0.1144 6121 +6123 2 20.846388772614787 -198.71331857545763 79.8986 0.1144 6122 +6124 2 20.701967175455295 -197.35398762322126 79.9901 0.1144 6123 +6125 2 20.332270965465227 -195.91854714278074 80.0607 0.1144 6124 +6126 2 19.75271523036463 -194.42980974213833 80.094 0.1144 6125 +6127 2 19.35829897109123 -193.00668463074376 80.0733 0.1144 6126 +6128 2 19.407941583586677 -191.77452629392303 80.0685 0.1144 6127 +6129 2 19.422361211449527 -190.55790690041408 80.1102 0.1144 6128 +6130 2 18.98040123351967 -189.26570055656595 80.248 0.1144 6129 +6131 2 18.576936615205824 -188.62356320576157 80.4488 0.1144 6130 +6132 2 18.40205042667003 -187.50981576208625 80.6263 0.1144 6131 +6133 2 18.15387815599682 -186.23749658509655 80.801 0.1144 6132 +6134 2 17.732055730423227 -185.06521278778993 80.9416 0.1144 6133 +6135 2 17.34421974128888 -183.82580384802202 81.0172 0.1144 6134 +6136 2 16.98864211677342 -182.38376676549467 81.0827 0.1144 6135 +6137 2 16.5732411947388 -181.59771919162603 81.1306 0.1144 6136 +6138 2 16.38159933120042 -180.53517598714453 81.1437 0.1144 6137 +6139 2 16.453609325525804 -179.11022200011786 81.1042 0.1144 6138 +6140 2 16.470240960596385 -177.74593155637288 81.0407 0.1144 6139 +6141 2 16.36106257938188 -176.54247944792402 80.9998 0.1144 6140 +6142 2 16.240785700102165 -175.34582089206285 80.9998 0.1144 6141 +6143 2 16.28669154100237 -173.94736025708707 81.0306 0.1144 6142 +6144 2 16.62201150312258 -172.23444515738763 81.0522 0.1144 6143 +6145 2 17.07104400216066 -171.29952875517654 81.0642 0.1144 6144 +6146 2 17.260636140264893 -170.055111046393 81.0743 0.1144 6145 +6147 2 17.05210817550487 -168.78218489816942 81.0972 0.1144 6146 +6148 2 16.890850433889966 -167.50716484395062 81.2151 0.1144 6147 +6149 2 16.72901976991801 -166.2072658580234 81.6175 0.1144 6148 +6150 2 16.605056075809316 -164.90892211412424 82.15 0.1144 6149 +6151 2 16.93507685681675 -163.77716802582088 82.5801 0.1144 6150 +6152 2 16.884532080111043 -162.5030254602621 82.9296 0.1144 6151 +6153 2 16.916087279275004 -161.2263067407825 83.1883 0.1144 6152 +6154 2 16.622436149652728 -159.94432221080456 83.4988 0.1144 6153 +6155 2 16.43088188801076 -158.64586030936485 83.7264 0.1144 6154 +6156 2 16.358633355311596 -157.3461641614606 83.8838 0.1144 6155 +6157 2 16.24744317273901 -156.02030537493505 83.9944 0.1144 6156 +6158 2 16.424529180641613 -155.55726568414696 84.028 0.1144 6157 +6159 2 16.87262455833192 -154.49747657809962 84.0784 0.1144 6158 +6160 2 16.882996966494687 -153.32193678108064 84.0868 0.1144 6159 +6161 2 16.692735412978436 -151.98174174035861 84.0703 0.1144 6160 +6162 2 16.74015129758341 -150.72586510656382 84.0434 0.1144 6161 +6163 2 16.80954063957347 -149.49415709065948 84.0092 0.1144 6162 +6164 2 16.780229995708467 -148.22838819938318 83.967 0.1144 6163 +6165 2 17.02245079958601 -147.1510841919352 83.8695 0.1144 6164 +6166 2 17.32506541429325 -145.32633104408023 83.75 0.1144 6165 +6167 2 17.530999764179512 -143.62402623206444 83.6506 0.1144 6166 +6168 2 17.66110877832338 -142.32943508103682 83.566 0.1144 6167 +6169 2 17.510012413425812 -140.99530990358474 83.4935 0.1144 6168 +6170 2 17.27782435871012 -139.97438576868788 83.4299 0.1144 6169 +6171 2 17.065338492656224 -138.98411279719963 83.3652 0.1144 6170 +6172 2 16.724364774076122 -138.27115937390124 83.263 0.1144 6171 +6173 2 16.370437853511078 -137.06440642084252 83.1312 0.1144 6172 +6174 2 16.51115591970293 -135.97169875584248 82.9968 0.1144 6173 +6175 2 16.90658980458278 -134.04866374608218 82.8442 0.1144 6174 +6176 2 17.130881961728875 -132.27755296076407 82.7187 0.1144 6175 +6177 2 17.20756895058028 -131.0726361388929 82.6423 0.1144 6176 +6178 2 17.368283216346157 -129.94098212634267 82.6098 0.1144 6177 +6179 2 17.5768053915306 -128.846380646845 82.6134 0.1144 6178 +6180 2 17.415677383598307 -127.51147796433352 82.6568 0.1144 6179 +6181 2 17.186523444438222 -126.12702799733876 82.7543 0.1144 6180 +6182 2 16.916033056164878 -124.72231371595555 82.8775 0.1144 6181 +6183 2 16.51372289477777 -123.8829455792569 82.9976 0.1144 6182 +6184 2 15.951898986230617 -123.60947527350056 83.0606 0.1144 6183 +6185 2 15.368063282631738 -122.15498423536192 83.1393 0.1144 6184 +6186 2 14.898987763642253 -120.72689854927269 83.3549 0.1144 6185 +6187 2 14.536233613735362 -119.41193622721781 83.6189 0.1144 6186 +6188 2 14.262221380399211 -118.59327745661197 83.9289 0.1144 6187 +6189 2 13.804277186511825 -118.22290385578238 84.2346 0.1144 6188 +6190 2 13.475382840944718 -116.90592194712931 84.5883 0.1144 6189 +6191 2 13.191528889049039 -115.66945805037568 84.9184 0.1144 6190 +6192 2 12.65549257735222 -114.39383127858171 85.2726 0.1144 6191 +6193 2 12.061691624677394 -113.11938841630207 85.5994 0.1144 6192 +6194 2 11.65283642923481 -111.87424228924652 86.0188 0.1144 6193 +6195 2 11.981320536959743 -111.6594956819599 86.5774 0.1144 6194 +6196 2 12.901302708693578 -111.5818970550119 87.061 0.1144 6195 +6197 2 13.782756285326371 -110.49980191264827 87.2245 0.1144 6196 +6198 2 14.548657028052332 -109.46096702352432 87.3303 0.1144 6197 +6199 2 15.241373602772029 -108.97403651622317 87.4056 0.1144 6198 +6200 2 15.861601580429891 -106.93726794645139 87.4516 0.1144 6199 +6201 2 16.549426234091015 -106.4058134929529 87.4712 0.1144 6200 +6202 2 17.26897295117081 -105.94474313648601 87.4667 0.1144 6201 +6203 2 17.916510188483272 -105.39051823650365 87.4527 0.1144 6202 +6204 2 18.4057832486869 -104.22009824650367 87.4297 0.1144 6203 +6205 2 18.641206730935124 -102.6551788110851 87.3933 0.1144 6204 +6206 2 18.636011079495887 -101.43602643815908 87.3729 0.1144 6205 +6207 2 18.948787070920503 -100.3284562046336 87.3424 0.1144 6206 +6208 2 19.88155127170691 -100.21106647821341 87.2029 0.1144 6207 +6209 2 20.858836694693764 -100.15466290490129 86.9814 0.1144 6208 +6210 2 21.835546093740504 -98.71807526321209 86.7177 0.1144 6209 +6211 2 21.679511236689905 -97.55043689825656 86.5889 0.1144 6210 +6212 2 21.788060256669013 -96.46097523861991 86.6023 0.1144 6211 +6213 2 21.95296068587072 -95.4642842641922 86.688 0.1144 6212 +6214 2 21.97837028605352 -94.39063092988421 86.8512 0.1144 6213 +6215 2 21.86201537944754 -93.25304478659761 87.0778 0.1144 6214 +6216 2 21.719511778583666 -92.10843984880674 87.3905 0.1144 6215 +6217 2 21.778652141960094 -91.06426778275338 87.7568 0.1144 6216 +6218 2 22.080244442469763 -90.16098662878818 88.0379 0.1144 6217 +6219 2 22.49069018587582 -89.33740077036377 88.202 0.1144 6218 +6220 2 22.87177342901944 -88.48408112160868 88.275 0.1144 6219 +6221 2 23.127117128045 -87.53356479552035 88.3002 0.1144 6220 +6222 2 23.299015084725795 -86.52357924016579 88.3075 0.1144 6221 +6223 2 23.453847942272574 -85.4273029387176 88.3168 0.1144 6222 +6224 2 23.60805241006659 -83.87731700025601 88.3392 0.1144 6223 +6225 2 23.774827081963792 -82.47220379266174 88.3663 0.1144 6224 +6226 2 23.980185407909943 -81.3654080461477 88.3758 0.1144 6225 +6227 2 24.218951737308743 -80.39984581475031 88.3512 0.1144 6226 +6228 2 24.46610210737495 -79.44254604363994 88.2938 0.1144 6227 +6229 2 24.71435998448851 -78.47786307386866 88.2109 0.1144 6228 +6230 2 24.961647913217234 -77.50997137652625 88.1096 0.1144 6229 +6231 2 25.193692619694758 -76.53244412498098 87.9928 0.1144 6230 +6232 2 25.402790818819284 -75.5355998909696 87.8615 0.1144 6231 +6233 2 25.60137515603148 -74.53152707727199 87.7223 0.1144 6232 +6234 2 25.800044686093457 -73.36715839045262 87.584 0.1144 6233 +6235 2 25.997115878017752 -71.96517502352208 87.4549 0.1144 6234 +6236 2 26.22608192810685 -70.549927815946 87.3502 0.1144 6235 +6237 2 26.517388628846135 -69.60395200365855 87.2883 0.1144 6236 +6238 2 26.927834372252192 -68.74245704121404 87.2836 0.1144 6237 +6239 2 27.534737123954386 -68.04674610061873 87.3488 0.1144 6238 +6240 2 28.13165439526847 -67.33724283166256 87.4824 0.1144 6239 +6241 2 28.524012725343 -66.26256956806144 87.6616 0.1144 6240 +6242 2 29.095313572739173 -64.82434655851698 87.85 0.1144 6241 +6243 2 29.886886899315442 -64.32917271836139 88.0124 0.1144 6242 +6244 2 30.717887888762533 -63.87847287427741 88.1426 0.1144 6243 +6245 2 31.401347381075567 -63.184506435713494 88.226 0.1144 6244 +6246 2 31.51297334093323 -61.923174306475865 88.2193 0.1144 6245 +6247 2 31.409631827104903 -60.80555724480746 88.1269 0.1144 6246 +6248 2 32.26699034085047 -60.15893669219804 88.0855 0.1144 6247 +6249 2 33.403776595813895 -60.43035848931058 88.1289 0.1144 6248 +6250 2 34.5436859533024 -60.52338682393459 88.198 0.1144 6249 +6251 2 35.6872770234383 -60.290581906109 88.1521 0.1144 6250 +6252 2 36.829085246894664 -60.08999179139914 87.9939 0.1144 6251 +6253 2 37.96791172060813 -60.26539894987317 87.7489 0.1144 6252 +6254 2 39.104649025093636 -60.66664157632961 87.4395 0.1144 6253 +6255 2 40.24416204909093 -60.154298385334094 87.2536 0.1144 6254 +6256 2 40.61335632344915 -60.134345197874424 87.1847 0.1144 6255 +6257 2 41.669009058581736 -60.08902511078216 87.0856 0.1144 6256 +6258 2 42.727144887387 -59.99718642569704 87.0537 0.1144 6257 +6259 2 43.7837347438674 -59.15537595202292 87.0492 0.1144 6258 +6260 2 44.840324600347714 -59.09422389939595 87.0537 0.1144 6259 +6261 2 45.89846042915303 -58.963174297443906 87.0514 0.1144 6260 +6262 2 46.95505028563338 -58.16612193580507 87.0461 0.1144 6261 +6263 2 48.01172533496356 -58.10927151402954 87.0411 0.1144 6262 +6264 2 49.06977597091901 -57.92407156089091 87.0363 0.1144 6263 +6265 2 50.12645102024922 -57.185086674071876 87.0316 0.1144 6264 +6266 2 51.18397799807727 -57.12122228660387 87.0274 0.1144 6265 +6267 2 52.241176705534826 -56.90171283398036 87.0237 0.1144 6266 +6268 2 53.29776656201517 -56.20328316413988 87.0209 0.1144 6267 +6269 2 54.35537873269311 -56.13398865864816 87.0195 0.1144 6268 +6270 2 55.41191622336075 -55.870052189642706 87.0195 0.1144 6269 +6271 2 56.470104417978746 -55.22057225608956 87.022 0.1144 6270 +6272 2 57.52669427445909 -55.15171875429831 87.0276 0.1144 6271 +6273 2 58.583231765126726 -54.83960931200949 87.0377 0.1144 6272 +6274 2 59.64141995974475 -54.2746344030756 87.054 0.1144 6273 +6275 2 60.698009816225095 -53.60308601503055 87.0794 0.1144 6274 +6276 2 61.754547306892704 -53.37729542323706 87.1175 0.1144 6275 +6277 2 62.81273550151073 -53.29318729365921 87.1721 0.1144 6276 +6278 2 63.8693253579911 -52.588024324915 87.246 0.1144 6277 +6279 2 64.90566844383349 -52.35320449613397 87.3617 0.1144 6278 +6280 2 65.91312203823793 -52.1587469279005 87.5384 0.1144 6279 +6281 2 66.91255820001228 -51.400493135847206 87.7685 0.1144 6280 +6282 2 67.91008729205402 -51.02443606984235 88.037 0.1144 6281 +6283 2 68.90662689693525 -50.80581215426171 88.3294 0.1144 6282 +6284 2 69.90316650181651 -50.16677487058054 88.6315 0.1144 6283 +6285 2 70.90028213063786 -49.67780948458214 88.9291 0.1144 6284 +6286 2 71.89775885686686 -49.454468657768444 89.2114 0.1144 6285 +6287 2 72.89688628704624 -48.92985420448613 89.4723 0.1144 6286 +6288 2 73.89538532747281 -48.336937284274555 89.7086 0.1144 6287 +6289 2 74.99247621877231 -48.41187528322438 89.8988 0.1144 6288 +6290 2 76.1161511800023 -48.55489655878798 89.9996 0.1144 6289 +6291 2 77.2384721709924 -48.7592602550227 90.0304 0.1144 6290 +6292 2 78.36230630727039 -49.30079218527396 90.0127 0.1144 6291 +6293 2 79.4845749324478 -49.42819065507664 89.964 0.1144 6292 +6294 2 80.607471947378 -49.71249104551236 89.9018 0.1144 6293 +6295 2 81.73010166996303 -50.2603085554523 89.8425 0.1144 6294 +6296 2 82.853935806241 -50.292558052569554 89.7985 0.1144 6295 +6297 2 83.97620443141838 -50.66650757992208 89.7778 0.1144 6296 +6298 2 85.10012376054615 -50.526103656797886 89.7879 0.1144 6297 +6299 2 86.22173116893364 -51.06770854645054 89.8349 0.1144 6298 +6300 2 87.35706964859469 -51.368250003089635 89.9606 0.1144 6299 +6301 2 88.03723625052342 -50.21868327647734 90.2124 0.1144 6300 +6302 2 88.68802873309008 -49.36563980506947 90.5702 0.1144 6301 +6303 2 89.3372666311192 -48.686158911976655 91.005 0.1144 6302 +6304 2 89.98244809939513 -48.00201993142736 91.4914 0.1144 6303 +6305 2 90.62888634717672 -47.1508109169406 92.006 0.1144 6304 +6306 2 91.29536903478868 -46.01890744329715 92.5352 0.1144 6305 +6307 2 92.41783478191775 -46.30341283986428 93.042 0.1144 6306 +6308 2 93.54367930481752 -46.59279922033161 93.5379 0.1144 6307 +6309 2 94.66949100068021 -46.254393056219364 94.0251 0.1144 6308 +6310 2 95.79635783777749 -46.54125561881228 94.5064 0.1144 6309 +6311 2 96.92319184783776 -46.745783912679066 94.9841 0.1144 6310 +6312 2 98.04966476049037 -46.4871932429201 95.4593 0.1144 6311 +6313 2 99.17649877055058 -46.785358967987676 95.9344 0.1144 6312 +6314 2 100.30328041479817 -46.84047168217771 96.4093 0.1144 6313 +6315 2 101.43069044879843 -46.738399607704736 96.8839 0.1144 6314 +6316 2 102.55752445885875 -47.018340054438646 97.358 0.1144 6315 +6317 2 103.68501968570891 -46.95246366291219 97.8306 0.1144 6316 +6318 2 104.81185369576917 -46.96538522419687 98.3027 0.1144 6317 +6319 2 105.9392637297695 -47.271863165911014 98.7728 0.1144 6318 +6320 2 107.0666737637699 -47.03914006326518 99.2412 0.1144 6319 +6321 2 108.1934554080174 -47.215264492602174 99.706 0.1144 6320 +6322 2 109.32188775621532 -46.85420073771712 100.1666 0.1144 6321 +6323 2 110.45032010441324 -47.16004518688299 100.6205 0.1144 6322 +6324 2 111.57866725976132 -47.433121352982695 101.0668 0.1144 6323 +6325 2 112.70924114299996 -47.10054833109474 101.5014 0.1144 6324 +6326 2 113.83300370612625 -47.52642082410107 101.9124 0.1144 6325 +6327 2 114.95810041662816 -47.99324027064711 102.3036 0.1144 6326 +6328 2 116.08368795822028 -47.79244561346887 102.669 0.1144 6327 +6329 2 117.17507583566581 -48.41408153484921 102.9924 0.1144 6328 +6330 2 118.12768685745792 -49.29824155116378 103.2494 0.1144 6329 +6331 2 119.08225731479533 -49.4790099401709 103.4536 0.1144 6330 +6332 2 120.03312072599144 -50.369700186666385 103.7694 0.1144 6331 +6333 2 41.11470172518975 -60.33462390489303 88.2 0.1144 6255 +6334 2 42.04471762954623 -60.52707184278648 89.7842 0.1144 6333 +6335 2 43.09245703046375 -60.412596255574044 90.8404 0.1144 6334 +6336 2 44.15393030246429 -60.32762095490058 91.8826 0.1144 6335 +6337 2 45.22556254213566 -60.6726731787019 92.8586 0.1144 6336 +6338 2 46.32157465753153 -60.651651892197116 93.6586 0.1144 6337 +6339 2 47.43251033702066 -60.606912731438975 94.3286 0.1144 6338 +6340 2 48.302682819219996 -61.15675194243352 92.9306 0.1144 6339 +6341 2 48.838662657232675 -62.14962165925371 91.8627 0.1144 6340 +6342 2 49.175382433344936 -63.25473643396292 90.9572 0.1144 6341 +6343 2 49.49820095956153 -64.29724473122121 90.015 0.1144 6342 +6344 2 50.01617037332775 -64.81273194136743 89.0814 0.1144 6343 +6345 2 50.917900339942406 -65.47254050628769 88.2437 0.1144 6344 +6346 2 51.87382476751972 -66.35034593751936 87.5146 0.1144 6345 +6347 2 52.83772759752398 -67.2417096298713 86.8538 0.1144 6346 +6348 2 52.95397948901439 -68.33166371557706 86.2428 0.1144 6347 +6349 2 52.80168449999948 -69.3437598626632 85.7371 0.1144 6348 +6350 2 52.641815959565406 -70.34194650819066 85.2715 0.1144 6349 +6351 2 52.48207715281396 -71.3501534123364 84.8375 0.1144 6350 +6352 2 52.32202961446754 -72.35748638217356 84.4348 0.1144 6351 +6353 2 52.548771624658656 -73.50708664622185 84.0543 0.1144 6352 +6354 2 53.183420604402954 -74.66584971402114 83.6965 0.1144 6353 +6355 2 53.8028287709426 -75.34481737907227 83.0155 0.1144 6354 +6356 2 46.47555276965019 -61.015948909970064 94.8676 0.1144 6339 +6357 2 45.463983483977046 -61.68993376713346 95.3299 0.1144 6356 +6358 2 44.44020509160828 -61.80646292804226 95.6245 0.1144 6357 +6359 2 43.40653812549701 -62.13372747387862 95.7466 0.1144 6358 +6360 2 42.371305648285045 -62.86456399567406 95.7457 0.1144 6359 +6361 2 41.33661636797618 -62.959247240737305 95.6572 0.1144 6360 +6362 2 40.30391935024966 -63.25650561767556 95.5142 0.1144 6361 +6363 2 39.270561115733244 -64.0256083666884 95.3534 0.1144 6362 +6364 2 38.236894149621946 -64.11607933830355 95.2078 0.1144 6363 +6365 2 37.42526658673566 -63.290985714281796 95.1446 0.1144 6364 +6366 2 36.48574563305445 -63.19470616473142 95.1734 0.1144 6365 +6367 2 35.547161800721085 -62.23555544912723 95.2739 0.1144 6366 +6368 2 34.60870770207026 -61.966500456168475 95.4268 0.1144 6367 +6369 2 33.672350597627315 -61.17336317005729 95.6318 0.1144 6368 +6370 2 32.7364843242747 -60.223290937984146 95.8894 0.1144 6369 +6371 2 31.793455553676694 -59.28881694548379 96.2094 0.1144 6370 +6372 2 30.722437977385738 -59.47262593418527 96.6792 0.1144 6371 +6373 2 29.611410901880618 -59.074741806036094 97.3134 0.1144 6372 +6374 2 28.512287995595813 -58.75390750355706 98.0916 0.1144 6373 +6375 2 27.430048088949604 -59.18824001633574 98.9918 0.1144 6374 +6376 2 26.363271841716625 -58.8416847880045 100.0017 0.1144 6375 +6377 2 25.379822908493594 -58.44528830650481 101.4014 0.1144 6376 +6378 2 25.426198053087973 -57.88953601293929 103.6174 0.1144 6377 +6379 2 25.407671771737796 -57.178051498768184 105.5992 0.1144 6378 +6380 2 25.025100118395557 -56.4696817465016 107.4959 0.1144 6379 +6381 2 24.554100098170636 -56.044659782020084 109.2342 0.1144 6380 +6382 2 23.510664584509044 -55.61254230587417 110.0896 0.1144 6381 +6383 2 22.410872150995317 -54.99192413648503 110.5003 0.1144 6382 +6384 2 37.89665542922373 -64.28772771026395 94.6865 0.1144 6364 +6385 2 37.05713214791007 -65.12344116318205 94.274 0.1144 6384 +6386 2 36.21012360961009 -66.02062477781443 94.0971 0.1144 6385 +6387 2 35.3630822442731 -66.67822968905485 93.8834 0.1144 6386 +6388 2 34.517010827320945 -67.78276639041212 93.6502 0.1144 6387 +6389 2 33.67187653171655 -68.19648909026486 93.4108 0.1144 6388 +6390 2 32.82517672501152 -68.60587911614937 93.179 0.1144 6389 +6391 2 31.97910530805936 -69.8006142666236 92.9636 0.1144 6390 +6392 2 31.138697271210702 -70.37016157950686 92.5509 0.1144 6391 +6393 2 21.905833296405774 -98.7189578853383 85.7503 0.1144 6210 +6394 2 22.805167261828757 -98.6615844415293 84.6306 0.1144 6393 +6395 2 23.559484878565485 -98.24987949276621 84.1148 0.1144 6394 +6396 2 24.123703005632763 -97.60575420517895 83.5537 0.1144 6395 +6397 2 24.821742786897147 -95.78833699242588 82.9276 0.1144 6396 +6398 2 25.825124852080933 -95.84360929354742 82.2335 0.1144 6397 +6399 2 26.91158445942162 -96.18082118821746 81.5318 0.1144 6398 +6400 2 27.998708385135302 -95.19971238628517 80.827 0.1144 6399 +6401 2 29.098703042782375 -95.64790683048257 80.1111 0.1144 6400 +6402 2 30.205949498396024 -96.24128610123009 79.4562 0.1144 6401 +6403 2 31.279338860490043 -95.19557505649485 78.8301 0.1144 6402 +6404 2 32.233193148199746 -95.11530395921636 78.2286 0.1144 6403 +6405 2 33.07615377426299 -94.82194035423979 77.8078 0.1144 6404 +6406 2 33.76121160471368 -93.98433954628511 77.5373 0.1144 6405 +6407 2 34.43010622129458 -92.46811075527435 76.9474 0.1144 6406 +6408 2 35.07816132201617 -91.96209202121237 75.9825 0.1144 6407 +6409 2 35.65340236709292 -92.0586890347562 75.3278 0.1144 6408 +6410 2 36.692417163021275 -92.21473857023355 74.5111 0.1144 6409 +6411 2 37.738429486428714 -91.14144197731484 73.7498 0.1144 6410 +6412 2 38.79254684436265 -90.96462860024788 73.0503 0.1144 6411 +6413 2 39.73254132142637 -89.95767787537466 72.3985 0.1144 6412 +6414 2 40.17824328495007 -89.21823792389604 71.778 0.1144 6413 +6415 2 40.45476467279519 -88.31686957971993 71.1802 0.1144 6414 +6416 2 41.16853609835459 -87.84543501707813 70.5874 0.1144 6415 +6417 2 42.17636620338595 -86.80152621710776 70.0389 0.1144 6416 +6418 2 43.25468754071517 -86.84851648215691 69.5094 0.1144 6417 +6419 2 44.36027508861366 -87.49192889507785 68.966 0.1144 6418 +6420 2 45.48148336370045 -86.74951226216065 68.4608 0.1144 6419 +6421 2 46.55556237766143 -86.90953997469428 68.0193 0.1144 6420 +6422 2 47.62223521901592 -87.04233164168132 67.5931 0.1144 6421 +6423 2 48.6562372565044 -85.91739058544492 67.0127 0.1144 6422 +6424 2 49.677583897039824 -85.97232886644501 66.3146 0.1144 6423 +6425 2 49.87458300125451 -86.0426705379853 65.6785 0.1144 6424 +6426 2 50.9131515069254 -86.19111814211544 64.8586 0.1144 6425 +6427 2 51.94159558847247 -85.1477192571831 64.1077 0.1144 6426 +6428 2 52.937806638894415 -85.14819686942985 63.3562 0.1144 6427 +6429 2 53.91947332898522 -85.10670724738263 62.6371 0.1144 6428 +6430 2 54.972659076200955 -84.08027107215068 61.9696 0.1144 6429 +6431 2 56.054288717133744 -84.29901515559327 61.3514 0.1144 6430 +6432 2 57.13916740015458 -84.5281893736076 60.769 0.1144 6431 +6433 2 58.22435481477032 -83.58908881774227 60.202 0.1144 6432 +6434 2 59.294568015989995 -83.76707546326736 59.6456 0.1144 6433 +6435 2 60.16069859345518 -83.47278991322389 59.0957 0.1144 6434 +6436 2 61.080784472841145 -82.27124846907161 58.3898 0.1144 6435 +6437 2 62.17367858789362 -82.54964830072372 57.6428 0.1144 6436 +6438 2 63.25955976224765 -81.71285986239316 56.917 0.1144 6437 +6439 2 64.36099158238585 -82.14020458729483 56.2218 0.1144 6438 +6440 2 65.47314398720408 -82.68026901980154 55.6175 0.1144 6439 +6441 2 66.59171378768994 -81.93762405640237 55.1113 0.1144 6440 +6442 2 67.70147548916174 -82.23317015491645 54.6431 0.1144 6441 +6443 2 68.5590328236839 -82.14389842281308 54.0389 0.1144 6442 +6444 2 69.05100121095754 -80.91955019017708 53.0471 0.1144 6443 +6445 2 70.0687302127472 -80.90653600714757 52.0895 0.1144 6444 +6446 2 71.09725096962751 -80.9565411224186 51.4178 0.1144 6445 +6447 2 70.99624488741344 -81.0200373992151 50.8936 0.1144 6446 +6448 2 70.51950800232407 -80.70123419547626 50.0559 0.1144 6447 +6449 2 70.88769248690522 -79.91269870146613 49.5603 0.1144 6448 +6450 2 71.7238729210683 -79.55028552684088 49.2167 0.1144 6449 +6451 2 72.65065580010321 -78.23614238997949 48.993 0.1144 6450 +6452 2 73.57882209074333 -77.995022057433 48.8452 0.1144 6451 +6453 2 74.50801069558105 -77.75162242385179 48.7648 0.1144 6452 +6454 2 75.43719930041874 -76.62270645089329 48.7304 0.1144 6453 +6455 2 76.36727266079146 -76.20702437566369 48.7138 0.1144 6454 +6456 2 77.29703728956918 -75.9593833904832 48.7001 0.1144 6455 +6457 2 78.22716301575468 -75.29425319012364 48.6864 0.1144 6456 +6458 2 79.1562664277426 -74.42453868244372 48.6727 0.1144 6457 +6459 2 80.08647734677783 -74.16741082336294 48.6592 0.1144 6458 +6460 2 81.01615678270585 -73.91211276088033 48.6461 0.1144 6459 +6461 2 81.94628250889133 -72.64644727608427 48.6329 0.1144 6460 +6462 2 82.87541874791623 -72.38433602949924 48.62 0.1144 6461 +6463 2 83.80554447410171 -72.11962983977887 48.6072 0.1144 6462 +6464 2 84.7347330789394 -70.95693606116386 48.5948 0.1144 6463 +6465 2 85.66543482906488 -70.60594267765984 48.5831 0.1144 6464 +6466 2 86.59582784759559 -69.4487966576441 48.5719 0.1144 6465 +6467 2 87.60258188754347 -69.28184493119578 48.5626 0.1144 6466 +6468 2 88.6722248595413 -69.3043797936018 48.5551 0.1144 6467 +6469 2 89.74254858710461 -68.44120053546077 48.5489 0.1144 6468 +6470 2 90.81219155910247 -68.41327852804369 48.5433 0.1144 6469 +6471 2 91.88254811370285 -68.43936160306853 48.5374 0.1144 6470 +6472 2 92.95287184126627 -67.5311857523664 48.5296 0.1144 6471 +6473 2 94.022514813264 -67.54960330214969 48.5195 0.1144 6472 +6474 2 95.09278617501468 -67.56933152709335 48.505 0.1144 6473 +6475 2 96.16248151282517 -66.67276033880079 48.4845 0.1144 6474 +6476 2 97.23217685063574 -66.68646990137614 48.4562 0.1144 6475 +6477 2 98.30244821238631 -66.70395834879453 48.4168 0.1144 6476 +6478 2 99.372719574137 -65.81035974161598 48.3608 0.1144 6477 +6479 2 100.44241491194748 -65.8272739055126 48.2818 0.1144 6478 +6480 2 101.51174915235035 -65.835295800178 48.174 0.1144 6479 +6481 2 102.58042217596335 -64.95539557995289 48.0323 0.1144 6480 +6482 2 103.62670689389759 -64.91490964396131 47.8097 0.1144 6481 +6483 2 104.65030628835405 -64.82168776018152 47.4799 0.1144 6482 +6484 2 105.72525054873748 -64.20415576937614 47.0361 0.1144 6483 +6485 2 106.81750776849864 -64.83024949403229 46.5352 0.1144 6484 +6486 2 107.9239533533651 -65.41257975722651 46.051 0.1144 6485 +6487 2 109.05067683708165 -64.97000339889769 45.5955 0.1144 6486 +6488 2 110.16999855783678 -65.13867348479828 45.1665 0.1144 6487 +6489 2 111.13683238731372 -64.24684434381668 44.737 0.1144 6488 +6490 2 111.82778634666616 -63.70461000074255 44.2529 0.1144 6489 +6491 2 112.38398153047359 -62.98184001649845 43.6856 0.1144 6490 +6492 2 112.99059027126361 -62.31007597174898 42.9853 0.1144 6491 +6493 2 113.66716145437925 -60.949967745146274 42.1327 0.1144 6492 +6494 2 114.36133301385584 -60.418145085124465 41.179 0.1144 6493 +6495 2 115.05248138433973 -59.853541728281 40.1831 0.1144 6494 +6496 2 115.79795125633382 -59.39922945067513 39.2266 0.1144 6495 +6497 2 116.80474774181982 -58.58648423691282 38.4177 0.1144 6496 +6498 2 117.88798733998982 -58.71939732514829 37.7541 0.1144 6497 +6499 2 118.98317185409334 -58.87879152941331 37.1952 0.1144 6498 +6500 2 120.08450196717797 -58.22432757852908 36.7088 0.1144 6499 +6501 2 121.18872863715569 -58.384330546541904 36.2642 0.1144 6500 +6502 2 122.29353133107352 -58.52400724203493 35.8322 0.1144 6501 +6503 2 123.28896953737731 -57.60647727213652 35.3662 0.1144 6502 +6504 2 124.21664879104685 -57.31421141079696 34.8628 0.1144 6503 +6505 2 125.13069649621235 -57.00799307975206 34.3305 0.1144 6504 +6506 2 126.04264720716989 -56.07569337792887 33.7576 0.1144 6505 +6507 2 126.95183891989703 -55.630057828235884 33.1604 0.1144 6506 +6508 2 127.86254377791192 -55.3660209552133 32.5606 0.1144 6507 +6509 2 128.77355736752182 -54.651356826562974 31.9774 0.1144 6508 +6510 2 129.68724397527956 -53.990801216500785 31.4222 0.1144 6509 +6511 2 129.27971342736402 -53.49720500297689 29.7284 0.1144 6510 +6512 2 71.61165940716026 -81.09304869355631 50.8326 0.1144 6446 +6513 2 72.64907997282236 -80.26316830138165 49.737 0.1144 6512 +6514 2 73.74916292490232 -80.64183127492026 49.0728 0.1144 6513 +6515 2 74.86354515919419 -81.18377841534871 48.4901 0.1144 6514 +6516 2 75.97347903988668 -80.50542235142642 47.8503 0.1144 6515 +6517 2 77.05712117471413 -80.73156498207082 47.2304 0.1144 6516 +6518 2 78.1332626393359 -80.90999026580882 46.6357 0.1144 6517 +6519 2 79.20962454111987 -79.97414235080852 46.0664 0.1144 6518 +6520 2 80.27652702968942 -80.11168849547839 45.4969 0.1144 6519 +6521 2 81.33451330194777 -80.22023772540224 44.9081 0.1144 6520 +6522 2 82.38942953003027 -79.23090996209868 44.2957 0.1144 6521 +6523 2 83.44095837012952 -79.32822179221797 43.6624 0.1144 6522 +6524 2 84.49297804131899 -79.42643664638604 43.0181 0.1144 6523 +6525 2 85.54285617746771 -78.44370659410593 42.3732 0.1144 6524 +6526 2 86.625379091452 -78.5866231742444 41.725 0.1144 6525 +6527 2 87.66669969965068 -77.67540805363637 41.0472 0.1144 6526 +6528 2 88.60383285590484 -77.50009250975299 40.4205 0.1144 6527 +6529 2 89.43735119848296 -77.1394525367844 39.8952 0.1144 6528 +6530 2 89.987758779134 -75.89673910611882 39.45 0.1144 6529 +6531 2 90.92163669013391 -75.20572050554408 39.0846 0.1144 6530 +6532 2 91.98883249707922 -75.26687459479693 38.848 0.1144 6531 +6533 2 93.06222937040141 -74.889745831245 38.7164 0.1144 6532 +6534 2 94.1365633650714 -74.37124421125756 38.682 0.1144 6533 +6535 2 95.06093741672046 -74.11401505982633 39.6357 0.1144 6534 +6536 2 96.00650457040831 -73.7726640427014 40.3242 0.1144 6535 +6537 2 96.95906063936252 -72.78976092810355 40.9704 0.1144 6536 +6538 2 97.91500409630021 -72.61908464296896 41.575 0.1144 6537 +6539 2 98.8753650803987 -72.45562049886748 42.1159 0.1144 6538 +6540 2 99.84204283641077 -71.30007282443088 42.5737 0.1144 6539 +6541 2 100.810104004028 -71.12911475129765 42.9755 0.1144 6540 +6542 2 101.78012460719054 -70.95150395493442 43.353 0.1144 6541 +6543 2 102.75179591430353 -69.83079752183892 43.7072 0.1144 6542 +6544 2 103.7987121235737 -69.82077393767739 44.0073 0.1144 6543 +6545 2 104.89525060791709 -69.94139225309054 44.2316 0.1144 6544 +6546 2 105.99834574541552 -69.15009093210145 44.3982 0.1144 6545 +6547 2 107.10237800426165 -69.2803896042055 44.5236 0.1144 6546 +6548 2 108.20792340839571 -69.438449821012 44.6242 0.1144 6547 +6549 2 109.31204086009168 -68.62466216819858 44.7154 0.1144 6548 +6550 2 110.41763863003845 -68.65393472935986 44.8132 0.1144 6549 +6551 2 111.52161852307194 -67.97288059388364 44.928 0.1144 6550 +6552 2 112.62565078191807 -68.12586663187926 45.0654 0.1144 6551 +6553 2 113.72874591941653 -67.92331003677857 45.2306 0.1144 6552 +6554 2 114.82635908377014 -67.45998116893301 45.4446 0.1144 6553 +6555 2 115.90774125522213 -67.50854388758559 45.7579 0.1144 6554 +6556 2 116.98261362870213 -67.16628799349719 46.1496 0.1144 6555 +6557 2 118.05401342134891 -66.7308253878208 46.5937 0.1144 6556 +6558 2 119.12390006870788 -66.81525579915257 47.0677 0.1144 6557 +6559 2 120.19334042580945 -66.36996536555547 47.5527 0.1144 6558 +6560 2 121.261576369218 -66.03804320976862 48.0318 0.1144 6559 +6561 2 122.37556808242184 -66.23080952660119 48.356 0.1144 6560 +6562 2 123.5095614881443 -65.96718866213916 48.6959 0.1144 6561 +6563 2 124.64240043694008 -66.07617958916562 49.072 0.1144 6562 +6564 2 125.7173251762328 -66.14186398016062 49.439 0.1144 6563 +6565 2 126.74778995543923 -65.35404919539464 49.7916 0.1144 6564 +6566 2 127.88127270720713 -65.60797524018213 50.1357 0.1144 6565 +6567 2 128.99427873934823 -66.24077302229146 50.4776 0.1144 6566 +6568 2 130.10586853284707 -66.02891026528526 50.8096 0.1144 6567 +6569 2 131.23092690568234 -66.5108177206957 51.1818 0.1144 6568 +6570 2 132.35746828990352 -66.96128245799036 51.6516 0.1144 6569 +6571 2 133.47951167751083 -66.52397899238981 52.1856 0.1144 6570 +6572 2 134.5991493393154 -66.96623161354204 52.7526 0.1144 6571 +6573 2 135.71722149001937 -66.52879012858612 53.3257 0.1144 6572 +6574 2 136.82677616694974 -66.91603348375398 53.993 0.1144 6573 +6575 2 137.84120817048375 -67.2830965195094 55.2863 0.1144 6574 +6576 2 94.61151910801306 -74.25414627943071 36.717 0.1144 6534 +6577 2 95.37460887745868 -74.06052736529318 35.1176 0.1144 6576 +6578 2 96.25587835399756 -73.29082544848173 34.2082 0.1144 6577 +6579 2 97.2406883779257 -72.80779091891843 33.3463 0.1144 6578 +6580 2 98.24039904149973 -72.83798120727957 32.361 0.1144 6579 +6581 2 99.27018447987683 -72.69592008187514 31.2889 0.1144 6580 +6582 2 100.30122498124967 -72.27304203172312 30.161 0.1144 6581 +6583 2 101.30129372963754 -72.87966828239048 28.9447 0.1144 6582 +6584 2 101.60752378168579 -72.80944530773546 27.9983 0.1144 6583 +6585 2 102.51846138849888 -72.16224382735483 27.1702 0.1144 6584 +6586 2 103.5089700286141 -71.55828209134144 26.3944 0.1144 6585 +6587 2 104.5457433759693 -71.59978567082803 25.6501 0.1144 6586 +6588 2 105.18381230376613 -71.01523755194168 24.8702 0.1144 6587 +6589 2 105.73271053324893 -69.66712143067203 24.0662 0.1144 6588 +6590 2 106.27854103290619 -68.70993471114329 23.2282 0.1144 6589 +6591 2 106.82285056229571 -68.02829869289555 22.3671 0.1144 6590 +6592 2 107.36881079563565 -67.35777870121659 21.5111 0.1144 6591 +6593 2 107.91865707302921 -66.68032376049405 20.684 0.1144 6592 +6594 2 108.51598919263682 -65.51026161994889 19.9182 0.1144 6593 +6595 2 109.13167911950427 -64.48743166919526 19.1841 0.1144 6594 +6596 2 109.70565098444979 -63.914083684408155 17.9494 0.1144 6595 +6597 2 101.3216631254711 -73.7448439016032 26.896 0.1144 6583 +6598 2 100.87265865306202 -74.37590243799916 25.8177 0.1144 6597 +6599 2 99.9416926231851 -74.06220780056627 24.885 0.1144 6598 +6600 2 99.05174019369116 -74.18790933071818 23.8498 0.1144 6599 +6601 2 98.28597751220761 -73.15071127742407 22.9608 0.1144 6600 +6602 2 97.56163277326368 -72.08294779497966 22.2341 0.1144 6601 +6603 2 96.49581106119629 -71.62876962198595 21.5592 0.1144 6602 +6604 2 95.73391068298724 -73.05236047404155 20.7539 0.1144 6603 +6605 2 49.68106028397082 -86.39986460797203 66.5731 0.1144 6424 +6606 2 49.64882363670472 -87.44445213085994 67.1801 0.1144 6605 +6607 2 49.58794358240843 -88.45358788321799 67.9846 0.1144 6606 +6608 2 50.33709876036329 -89.43990854253819 68.9478 0.1144 6607 +6609 2 51.362219515850484 -89.72799877990651 70.1142 0.1144 6608 +6610 2 34.151877299857745 -90.89067145535186 74.415 0.1144 6408 +6611 2 33.26114040714606 -91.11850226251806 73.645 0.1144 6610 +6612 2 32.34354054503723 -90.05192273909532 73.1648 0.1144 6611 +6613 2 31.431907283997248 -88.99988345835202 72.5914 0.1144 6612 +6614 2 30.567496698382683 -88.24682426328025 71.9188 0.1144 6613 +6615 2 29.954202688860306 -88.03478716896666 71.111 0.1144 6614 +6616 2 29.53414087805541 -86.8945097090766 70.135 0.1144 6615 +6617 2 28.779652289192512 -86.07862745807088 68.8542 0.1144 6616 +6618 2 28.06107823131771 -86.30559021605595 67.5335 0.1144 6617 +6619 2 27.050363176514708 -86.54343197595425 66.4065 0.1144 6618 +6620 2 25.996117380982014 -86.4301211749809 65.4668 0.1144 6619 +6621 2 24.926669423663014 -85.82214761885227 64.5282 0.1144 6620 +6622 2 23.83511696721436 -85.89484418001021 63.6964 0.1144 6621 +6623 2 22.74455879833414 -86.22247516012195 63.014 0.1144 6622 +6624 2 21.63960033272508 -85.60068411012782 62.4319 0.1144 6623 +6625 2 20.812451251668307 -84.54219414958568 61.9447 0.1144 6624 +6626 2 19.9823173192855 -84.59832836068233 61.5297 0.1144 6625 +6627 2 19.1515549971499 -83.4834537941431 61.1593 0.1144 6626 +6628 2 18.278172727828235 -82.40437034125648 60.7989 0.1144 6627 +6629 2 17.35228573169755 -81.38940906193135 60.4198 0.1144 6628 +6630 2 16.429380485309764 -81.46676164848958 60.0138 0.1144 6629 +6631 2 15.507285728170217 -80.43898550805078 59.5742 0.1144 6630 +6632 2 16.119869273793768 -79.71348249865441 59.5661 0.1144 6631 +6633 2 16.601168731978476 -78.87334052118584 58.119 0.1144 6632 +6634 2 17.02757886847772 -77.31383233672517 57.2524 0.1144 6633 +6635 2 17.543973986658926 -76.58843158634174 56.1478 0.1144 6634 +6636 2 18.301486279072435 -76.21414918493032 55.0108 0.1144 6635 +6637 2 19.14724145320153 -75.9527531608148 53.9473 0.1144 6636 +6638 2 19.96788775578429 -74.76358730039296 53.107 0.1144 6637 +6639 2 20.833894802733 -74.24377114518828 52.5395 0.1144 6638 +6640 2 21.85719777723068 -74.24168108883225 52.1326 0.1144 6639 +6641 2 22.98195151436431 -73.94735409887379 51.8126 0.1144 6640 +6642 2 24.117742487448993 -73.98652435008916 51.5239 0.1144 6641 +6643 2 25.198112247292983 -74.15023101312494 51.2439 0.1144 6642 +6644 2 26.061977759201056 -73.3067848530986 50.9779 0.1144 6643 +6645 2 26.555314144860603 -72.05537735600974 50.7086 0.1144 6644 +6646 2 26.95876546237065 -71.20129215461913 50.4347 0.1144 6645 +6647 2 27.502750846946014 -70.45027128301568 50.1847 0.1144 6646 +6648 2 27.77530099788774 -69.52108233798592 49.9472 0.1144 6647 +6649 2 27.77272910036686 -68.43504627005885 49.6588 0.1144 6648 +6650 2 27.707528051913073 -67.32373666961058 49.1789 0.1144 6649 +6651 2 27.274810151618567 -66.18912092118326 48.5719 0.1144 6650 +6652 2 26.690939211936097 -65.04813486313951 48.1032 0.1144 6651 +6653 2 26.454485216868193 -63.90366179551911 47.8022 0.1144 6652 +6654 2 26.85561600142526 -63.03248645602659 47.7291 0.1144 6653 +6655 2 27.623743472041753 -62.494224995026975 47.6983 0.1144 6654 +6656 2 28.37881611063085 -61.53215976575826 47.6221 0.1144 6655 +6657 2 28.610860817108403 -60.146097923123925 47.6196 0.1144 6656 +6658 2 28.949171141184195 -59.183956131973346 47.6067 0.1144 6657 +6659 2 29.131979985805145 -58.16520785911506 47.6888 0.1144 6658 +6660 2 29.768721661929163 -57.5552905218252 48.3361 0.1144 6659 +6661 2 30.668386590857892 -57.24626413933023 49.0986 0.1144 6660 +6662 2 31.56108922839107 -56.13434247910797 49.833 0.1144 6661 +6663 2 32.275977465747104 -55.57670680719176 50.6464 0.1144 6662 +6664 2 32.89792151734085 -54.92677576100371 51.5586 0.1144 6663 +6665 2 33.40720447382782 -54.14850306856085 52.3382 0.1144 6664 +6666 2 34.10092835797374 -53.12647842159782 53.0051 0.1144 6665 +6667 2 35.01916602069474 -52.51579123351047 53.6724 0.1144 6666 +6668 2 35.9572886641094 -51.82355567504423 54.325 0.1144 6667 +6669 2 36.89852279094967 -51.23739347413676 54.9455 0.1144 6668 +6670 2 37.90131721309379 -51.07140429001157 55.51 0.1144 6669 +6671 2 39.029966896870604 -51.04865956538051 55.9544 0.1144 6670 +6672 2 40.16388362725979 -50.97986761700312 56.3142 0.1144 6671 +6673 2 41.30184896242221 -51.30133685391273 56.5992 0.1144 6672 +6674 2 42.431314237628925 -50.97060641138798 56.835 0.1144 6673 +6675 2 43.336034672309296 -50.410871767293855 57.0657 0.1144 6674 +6676 2 44.29776744891342 -50.11005588944433 57.2911 0.1144 6675 +6677 2 45.26965988572496 -49.592803069745145 57.7744 0.1144 6676 +6678 2 15.204511038236717 -79.89744302343735 59.2166 0.1144 6631 +6679 2 14.557488674567225 -78.75201094903828 58.5738 0.1144 6678 +6680 2 13.913269062728347 -77.61813486409345 57.8953 0.1144 6679 +6681 2 12.916806345964716 -77.9123912669375 57.1724 0.1144 6680 +6682 2 11.852436126308191 -77.26367151112382 56.4068 0.1144 6681 +6683 2 11.059074660914007 -77.26714765130326 55.4403 0.1144 6682 +6684 2 10.340188278130796 -76.2186760228201 54.3656 0.1144 6683 +6685 2 9.399149769516669 -75.32681251437033 53.4061 0.1144 6684 +6686 2 8.371504060681076 -74.78998118819194 52.4983 0.1144 6685 +6687 2 7.334380832276736 -74.87096374650089 51.6477 0.1144 6686 +6688 2 6.226253415247754 -74.41329464989282 50.9488 0.1144 6687 +6689 2 5.109817940348108 -74.12612220800888 50.3622 0.1144 6688 +6690 2 3.987897390720633 -74.39995257500055 49.8557 0.1144 6689 +6691 2 2.859220674624993 -73.89786526055731 49.3984 0.1144 6690 +6692 2 1.7743512016572254 -74.18608031272721 48.9773 0.1144 6691 +6693 2 0.6892699037400973 -74.66643470086413 48.5794 0.1144 6692 +6694 2 -0.4220042504829564 -74.43242498195836 48.1961 0.1144 6693 +6695 2 -1.550947252635467 -74.7116802912905 47.8335 0.1144 6694 +6696 2 -1.2119012378412606 -74.68720161979647 46.7572 0.1144 6695 +6697 2 -0.3443288925762431 -75.07953177228634 45.5339 0.1144 6696 +6698 2 0.7224976131965661 -75.23615398677562 44.9106 0.1144 6697 +6699 2 1.7830067315304916 -75.00045547744874 44.1801 0.1144 6698 +6700 2 2.0540076847692035 -75.15383145932826 42.973 0.1144 6699 +6701 2 0.9924056733962345 -75.4129855306429 42.1165 0.1144 6700 +6702 2 -0.09870219161987848 -74.80827635999844 41.3725 0.1144 6701 +6703 2 -1.1385422864684074 -74.08764008673619 40.6314 0.1144 6702 +6704 2 -1.7503313544676757 -73.93648453168367 39.9294 0.1144 6703 +6705 2 -1.7539826314394986 -73.6278548502451 38.729 0.1144 6704 +6706 2 -2.3527365003190255 -74.50917427783787 38.0694 0.1144 6705 +6707 2 -2.246337041166697 -74.73479967944441 37.6463 0.1144 6706 +6708 2 -1.6191565914206194 -74.93647271496518 35.7003 0.1144 6707 +6709 2 -1.2271791816180553 -73.44422769640435 34.6828 0.1144 6708 +6710 2 -0.828682763790539 -72.6487003705059 33.5476 0.1144 6709 +6711 2 -0.05525742012324031 -72.26483514432229 32.5296 0.1144 6710 +6712 2 0.9049937301681155 -72.19343385720975 31.5708 0.1144 6711 +6713 2 1.8004741944859575 -71.19663603218719 30.693 0.1144 6712 +6714 2 1.9095688027296092 -70.25007198475976 29.8096 0.1144 6713 +6715 2 1.180395192655368 -70.70392619548839 28.4236 0.1144 6714 +6716 2 1.032027793053885 -70.57791873626945 25.802 0.1144 6715 +6717 2 -2.9035792438582178 -73.95837139000876 37.4503 0.1144 6706 +6718 2 -3.923258861903065 -73.16563164124761 36.6405 0.1144 6717 +6719 2 -5.007278211872091 -73.33914889708869 36.0052 0.1144 6718 +6720 2 -6.126249146257123 -72.99750812371084 35.4707 0.1144 6719 +6721 2 -7.159047462589342 -72.97584144546414 34.9597 0.1144 6720 +6722 2 -8.141562287058349 -73.91828379337866 34.4008 0.1144 6721 +6723 2 -9.192821425765885 -74.03457367832728 33.7324 0.1144 6722 +6724 2 -10.277866493289139 -73.63204233548207 32.8927 0.1144 6723 +6725 2 -11.346918418890539 -74.19179439553751 31.9729 0.1144 6724 +6726 2 -11.961921102937566 -74.94854378935106 30.9938 0.1144 6725 +6727 2 -11.720088842377095 -76.0744882618402 30.1092 0.1144 6726 +6728 2 -11.816623557555147 -76.77696724474694 28.0456 0.1144 6727 +6729 2 -2.142030859113845 -74.80634018282882 47.5149 0.1144 6695 +6730 2 -3.2718921660381284 -74.23344825393892 47.1934 0.1144 6729 +6731 2 -4.4054050517078736 -73.71788572052887 46.9216 0.1144 6730 +6732 2 -5.528648443363096 -74.06083665413428 46.6374 0.1144 6731 +6733 2 -5.2852525661905645 -74.04112732939198 45.7055 0.1144 6732 +6734 2 -4.496739381200342 -72.68719742945257 45.5193 0.1144 6733 +6735 2 -4.129066556862142 -71.71508279613103 45.5521 0.1144 6734 +6736 2 -4.143401270821187 -70.60735113691392 45.598 0.1144 6735 +6737 2 -4.27076087042974 -69.46228850086376 45.6604 0.1144 6736 +6738 2 -4.414066348329186 -68.31580068496268 45.7492 0.1144 6737 +6739 2 -4.62950113708888 -67.15189880997897 45.8867 0.1144 6738 +6740 2 -4.899861791679626 -65.98232249221444 46.0785 0.1144 6739 +6741 2 -4.98658449663148 -64.85596311188485 46.3411 0.1144 6740 +6742 2 -4.364799620085705 -64.15526368990209 46.5542 0.1144 6741 +6743 2 -4.0593236845689376 -63.22174373812109 47.117 0.1144 6742 +6744 2 -6.554169024687525 -73.51712742772362 46.4744 0.1144 6732 +6745 2 -7.69683769415829 -73.16248350233195 46.4341 0.1144 6744 +6746 2 -8.83737613393626 -73.6567523787415 46.445 0.1144 6745 +6747 2 -9.977823177698184 -73.28309867033722 46.4618 0.1144 6746 +6748 2 -11.121502542266938 -73.26094614102014 46.4738 0.1144 6747 +6749 2 -12.264644220562332 -73.39204231466991 46.4674 0.1144 6748 +6750 2 -13.402990475996774 -73.99162555699095 46.4372 0.1144 6749 +6751 2 -14.530716060283567 -73.7911930303978 46.3781 0.1144 6750 +6752 2 -15.660131378724031 -73.49796430547997 46.3016 0.1144 6751 +6753 2 -16.79901532043195 -74.17138967231563 46.2367 0.1144 6752 +6754 2 -17.940000050467347 -73.7685268322162 46.1997 0.1144 6753 +6755 2 -19.074594813623804 -73.45488855883535 46.2375 0.1144 6754 +6756 2 -20.202981614700576 -74.2035638537363 46.3285 0.1144 6755 +6757 2 -21.342494638697843 -73.81655378540425 46.2834 0.1144 6756 +6758 2 -22.462227804389812 -73.28771287198941 46.2969 0.1144 6757 +6759 2 -23.60405385011191 -73.66614284305135 46.3686 0.1144 6758 +6760 2 -24.672941800257348 -73.61983895097536 46.4257 0.1144 6759 +6761 2 -25.747360987777085 -73.89568469966763 46.4607 0.1144 6760 +6762 2 -26.886336325500963 -74.2228216286226 46.4825 0.1144 6761 +6763 2 -28.029877438870585 -73.78236824971987 46.501 0.1144 6762 +6764 2 -29.08200432203637 -73.39219476975788 46.5797 0.1144 6763 +6765 2 -29.528826299907223 -73.71292195105539 46.9983 0.1144 6764 +6766 2 -30.653796378309522 -73.12822922097486 47.2839 0.1144 6765 +6767 2 -31.79513779610747 -72.60584671944822 47.3995 0.1144 6766 +6768 2 -32.918795236845455 -73.36096899479583 47.5152 0.1144 6767 +6769 2 -34.004096279387966 -73.26429848469222 47.619 0.1144 6768 +6770 2 -35.09809861170933 -73.15078088092105 47.7098 0.1144 6769 +6771 2 -36.196326137669786 -74.04022272851371 47.7924 0.1144 6770 +6772 2 -37.289967372583476 -73.92095004847995 47.8702 0.1144 6771 +6773 2 -38.42715917109115 -73.72390611674633 47.9489 0.1144 6772 +6774 2 -39.54861971606684 -73.94005010688102 48.0726 0.1144 6773 +6775 2 -40.49565806123488 -72.94096130508609 48.2656 0.1144 6774 +6776 2 -41.35216895001753 -71.87000183097113 48.4683 0.1144 6775 +6777 2 -42.19103940826267 -71.54552420634516 48.6542 0.1144 6776 +6778 2 -43.08076699094954 -70.72862865347199 48.9059 0.1144 6777 +6779 2 -43.764904404212956 -69.63392380105194 48.9978 0.1144 6778 +6780 2 -44.69030677241949 -69.53732040406224 48.7995 0.1144 6779 +6781 2 -29.218912534613025 -73.22805242712326 46.5405 0.1144 6764 +6782 2 -29.31717692630434 -72.12194433493774 46.3674 0.1144 6781 +6783 2 -28.517762755963673 -70.98794960255977 46.221 0.1144 6782 +6784 2 -27.706988305842316 -70.52141339976903 46.2764 0.1144 6783 +6785 2 -26.982931973049148 -69.96902118514447 46.72 0.1144 6784 +6786 2 -26.180848501668947 -69.11817376462423 47.8926 0.1144 6785 +6787 2 -25.361377171413892 -68.3636632954456 49.0356 0.1144 6786 +6788 2 -24.559784531124023 -68.0305939612454 50.2186 0.1144 6787 +6789 2 -24.2861603156974 -67.24245955710883 51.3341 0.1144 6788 +6790 2 -24.397503156400063 -66.1529993274671 52.2721 0.1144 6789 +6791 2 -24.277815601864177 -65.24780071820464 53.5396 0.1144 6790 +6792 2 -23.61300723518667 -64.52803207711132 54.3449 0.1144 6791 +6793 2 -22.875807775933225 -63.18035530476846 54.7305 0.1144 6792 +6794 2 -22.31430410626362 -62.44790882377454 55.0161 0.1144 6793 +6795 2 -22.317833640533223 -61.390418020569896 55.2574 0.1144 6794 +6796 2 -21.31617826209657 -61.334675537454416 55.3106 0.1144 6795 +6797 2 -20.522325965612083 -62.09489996012844 55.5229 0.1144 6796 +6798 2 -19.53470498608857 -61.24970448046003 55.6074 0.1144 6797 +6799 2 -18.6179020768123 -60.898864243724724 55.6354 0.1144 6798 +6800 2 -17.54317105611446 -60.851305213356156 55.5702 0.1144 6799 +6801 2 -16.42117282486535 -60.647511960691936 55.4252 0.1144 6800 +6802 2 -15.36348557671161 -61.410321783517084 54.9696 0.1144 6801 +6803 2 11.387423264065887 -111.65753584017597 86.2428 0.1144 6194 +6804 2 10.313905464373079 -112.15158613770322 86.849 0.1144 6803 +6805 2 9.291625016857267 -111.2829563140527 87.3328 0.1144 6804 +6806 2 8.185671961906053 -110.65111526356115 87.731 0.1144 6805 +6807 2 7.056671100996226 -111.30266491623507 88.0474 0.1144 6806 +6808 2 6.068309310887685 -110.38958772951838 88.3604 0.1144 6807 +6809 2 5.331881404811185 -109.14352832811738 88.5136 0.1144 6808 +6810 2 4.40590301266451 -107.99390680882175 88.5634 0.1144 6809 +6811 2 3.536965681607313 -108.3037111236974 88.5629 0.1144 6810 +6812 2 2.9089469287682164 -107.03403005480952 88.5819 0.1144 6811 +6813 2 2.637073128889682 -105.81513726637263 88.5396 0.1144 6812 +6814 2 2.2818566017818966 -104.57662353628758 88.4122 0.1144 6813 +6815 2 1.6188266892595493 -103.3320188673901 88.1706 0.1144 6814 +6816 2 0.9512526174768254 -102.10034441949003 87.8284 0.1144 6815 +6817 2 0.6318529212075532 -101.02363239578007 87.3099 0.1144 6816 +6818 2 0.37606876144849366 -100.22178527890706 86.7975 0.1144 6817 +6819 2 -0.26391603825032917 -100.07289191615189 85.6702 0.1144 6818 +6820 2 -0.8326888255722622 -98.97305327681802 84.3811 0.1144 6819 +6821 2 -1.3975588475593952 -97.79667302265925 83.4464 0.1144 6820 +6822 2 -1.6894590927309707 -98.39089321600798 81.5861 0.1144 6821 +6823 2 -2.24129012147867 -98.89177583399605 80.1942 0.1144 6822 +6824 2 -2.3318201996948744 -99.85472318657975 79.1588 0.1144 6823 +6825 2 -2.9924745374370616 -101.30866157266374 78.4076 0.1144 6824 +6826 2 -3.9398498536133957 -101.70465090160374 77.4004 0.1144 6825 +6827 2 -4.953251942732294 -101.65027850145582 76.9479 0.1144 6826 +6828 2 -5.92492945301143 -102.24302411236062 76.4918 0.1144 6827 +6829 2 -6.87908937073297 -103.17530541946813 75.9265 0.1144 6828 +6830 2 -7.781057702885505 -103.32593269524006 75.3026 0.1144 6829 +6831 2 -8.563906815235555 -103.64953938173855 74.5408 0.1144 6830 +6832 2 -8.809968098360542 -104.71606006564922 73.5804 0.1144 6831 +6833 2 -8.914073565148328 -106.03358904143477 72.6032 0.1144 6832 +6834 2 -9.745031114747093 -107.12558784905978 71.5963 0.1144 6833 +6835 2 -9.586774928618667 -106.52763906948013 70.9492 0.1144 6834 +6836 2 -9.553406748873272 -105.52106337160433 70.065 0.1144 6835 +6837 2 -9.787039477308241 -104.39436154236685 69.4422 0.1144 6836 +6838 2 -10.30053251084604 -103.14276417251321 69.0973 0.1144 6837 +6839 2 -9.970908755866446 -102.27584830605927 68.9203 0.1144 6838 +6840 2 -9.851804434725238 -101.23900458367946 68.8363 0.1144 6839 +6841 2 -9.783043482487983 -100.17979942907974 68.8103 0.1144 6840 +6842 2 -9.802768773575764 -99.0615578907836 68.8153 0.1144 6841 +6843 2 -9.960645330373467 -97.8816172225842 68.8052 0.1144 6842 +6844 2 -10.426121636430253 -96.6375383016516 68.7296 0.1144 6843 +6845 2 -10.972270060614818 -95.39392999877866 68.6277 0.1144 6844 +6846 2 -11.61071438093333 -94.73175208679314 68.5454 0.1144 6845 +6847 2 -11.223270807375485 -93.97544080819696 68.4379 0.1144 6846 +6848 2 -10.418515324135655 -93.5917528683129 68.2156 0.1144 6847 +6849 2 -9.61135411509315 -92.14810318194036 68.1218 0.1144 6848 +6850 2 -8.80458683049531 -91.52824063663704 67.998 0.1144 6849 +6851 2 -7.998362742800509 -91.1333796231651 67.8308 0.1144 6850 +6852 2 -7.193607259560736 -90.73664746823526 67.6108 0.1144 6851 +6853 2 -6.33367533942598 -89.18549164854404 67.1989 0.1144 6852 +6854 2 -6.101570666918263 -88.68100465336339 69.6931 0.1144 6853 +6855 2 -5.830568506584996 -88.08854469465071 71.6363 0.1144 6854 +6856 2 -5.23830250554019 -87.64829306798302 73.0853 0.1144 6855 +6857 2 -4.491979698759849 -87.3935517745587 74.5556 0.1144 6856 +6858 2 -3.440198588771807 -86.61569931319339 75.5521 0.1144 6857 +6859 2 -2.334039817341278 -87.04048254171326 76.2513 0.1144 6858 +6860 2 -1.2038270315102864 -87.53404959664431 76.6718 0.1144 6859 +6861 2 -0.06402889290205849 -86.81907677298967 76.8667 0.1144 6860 +6862 2 1.0795091188845163 -87.31547847672577 76.9028 0.1144 6861 +6863 2 1.380194431948297 -86.48895798698543 76.6819 0.1144 6862 +6864 2 1.5174775624370227 -85.46605391112246 76.2706 0.1144 6863 +6865 2 1.6432484475516276 -84.55378010297498 75.1626 0.1144 6864 +6866 2 -5.764224004778725 -88.99997691880506 66.4703 0.1144 6853 +6867 2 -4.90922165083262 -88.72254307923016 65.7734 0.1144 6866 +6868 2 -4.08929513401867 -88.40508993832711 64.9852 0.1144 6867 +6869 2 -3.3909350020597913 -86.70041302703451 64.1973 0.1144 6868 +6870 2 -2.7530919273583265 -86.1295351343759 63.4292 0.1144 6869 +6871 2 -1.951423304271799 -85.81975739111552 62.5761 0.1144 6870 +6872 2 -0.978372302662109 -85.82250734625643 61.5731 0.1144 6871 +6873 2 -0.044396478728174316 -84.68626999010166 60.4498 0.1144 6872 +6874 2 0.6102306883676363 -84.22765923397375 59.3407 0.1144 6873 +6875 2 0.683418454830047 -83.38146501990194 57.9331 0.1144 6874 +6876 2 -0.08708689293879956 -82.50930148333653 56.467 0.1144 6875 +6877 2 -0.8839667880609738 -82.06370711363132 55.0082 0.1144 6876 +6878 2 -1.709790227280564 -82.04906050048886 53.2868 0.1144 6877 +6879 2 -12.29320580166501 -94.66999933965731 68.4846 0.1144 6846 +6880 2 -13.12900070510483 -93.49911120906728 68.4438 0.1144 6879 +6881 2 -13.945609205682246 -92.32210943944482 68.425 0.1144 6880 +6882 2 -14.74172215807883 -91.19166881771702 68.4124 0.1144 6881 +6883 2 -15.519488922315134 -91.23233871453229 68.3642 0.1144 6882 +6884 2 -16.091600839679217 -89.99131676965511 68.3659 0.1144 6883 +6885 2 -16.74077945907203 -88.76315612023794 68.4309 0.1144 6884 +6886 2 -17.593140113039055 -87.62994585943191 68.5653 0.1144 6885 +6887 2 -18.539652391033172 -87.18546686397853 68.7702 0.1144 6886 +6888 2 -18.98602407174255 -86.67294036912911 69.4383 0.1144 6887 +6889 2 -19.520126973924533 -85.51221234871272 70.3209 0.1144 6888 +6890 2 -20.275423341215514 -84.42704757348865 71.0646 0.1144 6889 +6891 2 -21.0742852945568 -83.31336939558705 71.7007 0.1144 6890 +6892 2 -21.84380016085484 -82.2967691520399 72.2036 0.1144 6891 +6893 2 -22.49591367480744 -82.09832902311513 72.492 0.1144 6892 +6894 2 -23.07881225705853 -80.91562763092995 72.5528 0.1144 6893 +6895 2 -23.654843045513246 -79.69800940081669 72.457 0.1144 6894 +6896 2 -24.20433431684836 -78.48686410839662 72.3024 0.1144 6895 +6897 2 -24.7166697918764 -77.27844865415078 72.1655 0.1144 6896 +6898 2 -25.213638514136704 -76.07312211252135 72.0742 0.1144 6897 +6899 2 -25.70833906925688 -75.27223214185521 72.0325 0.1144 6898 +6900 2 -26.236446935293003 -74.71046407582438 72.028 0.1144 6899 +6901 2 -26.710827838561528 -73.49663751736739 71.9866 0.1144 6900 +6902 2 -27.108858031450296 -72.28864993152698 71.8732 0.1144 6901 +6903 2 -27.484309017559895 -71.08670645094679 71.7147 0.1144 6902 +6904 2 -27.741347547778105 -69.89573729966631 71.682 0.1144 6903 +6905 2 -27.90871255070755 -68.73638819924636 71.8698 0.1144 6904 +6906 2 -28.064091985686503 -67.58201141395644 72.2509 0.1144 6905 +6907 2 -28.216750760101547 -66.43835042099681 72.7731 0.1144 6906 +6908 2 -28.40686545020594 -65.29899377181842 73.3692 0.1144 6907 +6909 2 -28.92739124730639 -64.14257968617424 73.9102 0.1144 6908 +6910 2 -29.379674470136734 -62.97192217549444 74.3921 0.1144 6909 +6911 2 -29.589712478601513 -61.86433541635218 74.8812 0.1144 6910 +6912 2 -29.685118651066375 -60.75870201982899 75.3469 0.1144 6911 +6913 2 -29.554163219054203 -59.65357875969167 75.6874 0.1144 6912 +6914 2 -29.686417148767816 -58.5146749265872 75.8901 0.1144 6913 +6915 2 -30.14966672693413 -57.66622582193632 76.022 0.1144 6914 +6916 2 -30.772253463394662 -56.9965018012988 76.0998 0.1144 6915 +6917 2 -31.567067504499192 -55.949562426443975 76.279 0.1144 6916 +6918 2 -32.48181224896473 -55.00125595033478 76.7712 0.1144 6917 +6919 2 -33.318631875648606 -54.0046515607773 77.1593 0.1144 6918 +6920 2 -34.132329791186834 -53.706400288032164 77.4799 0.1144 6919 +6921 2 -34.947645583638376 -52.6739416458588 77.7871 0.1144 6920 +6922 2 -35.76076747523655 -51.644568857513725 78.1222 0.1144 6921 +6923 2 -36.64335617766207 -50.70676378041459 78.6842 0.1144 6922 +6924 2 -37.555444234497855 -50.87995017378653 80.0845 0.1144 6923 +6925 2 -38.04057717011719 -50.27353855412119 82.32 0.1144 6924 +6926 2 -38.301755913909034 -49.972265545147735 84.9318 0.1144 6925 +6927 2 -38.97549050616175 -50.13330336308123 86.9772 0.1144 6926 +6928 2 -39.8783363963729 -50.23835471646191 88.3859 0.1144 6927 +6929 2 -40.805305482774656 -51.165035517433196 89.4715 0.1144 6928 +6930 2 -41.7737024143056 -51.348123132535605 90.3199 0.1144 6929 +6931 2 -42.773024948153164 -51.50598498843542 91.0498 0.1144 6930 +6932 2 -43.81091372223182 -52.298620720697514 91.6868 0.1144 6931 +6933 2 -44.91592313891729 -52.08638705586962 92.3149 0.1144 6932 +6934 2 -45.90038898238262 -52.04333451610286 93.0989 0.1144 6933 +6935 2 -46.82804100292708 -51.15719884502322 93.8392 0.1144 6934 +6936 2 -47.751239567690476 -50.291118407260655 94.6014 0.1144 6935 +6937 2 -48.60037541207882 -49.71910549273487 95.9165 0.1144 6936 +6938 2 -19.353449426599894 -87.62946685945072 68.1895 0.1144 6887 +6939 2 -20.471243281384517 -87.25807370876998 68.2559 0.1144 6938 +6940 2 -21.59101719378964 -86.88940630013997 68.2758 0.1144 6939 +6941 2 -22.67376915144169 -86.90889743919979 68.2755 0.1144 6940 +6942 2 -23.754476480698656 -86.04612576965827 68.2525 0.1144 6941 +6943 2 -24.867714569101423 -85.62001980895313 68.1982 0.1144 6942 +6944 2 -25.97948095146606 -85.7446684084837 68.0991 0.1144 6943 +6945 2 -27.052579493220264 -84.90990225935484 67.9728 0.1144 6944 +6946 2 -28.142404961148145 -84.2703948823607 67.8384 0.1144 6945 +6947 2 -29.26035768920707 -84.57011959335132 67.5727 0.1144 6946 +6948 2 -30.350420315578248 -83.85244563942506 66.9763 0.1144 6947 +6949 2 -31.397698013019067 -83.70700508182543 66.103 0.1144 6948 +6950 2 -31.786816209285007 -85.09195714835325 64.6122 0.1144 6949 +6951 2 -31.77625871186069 -86.03425050145195 63.1856 0.1144 6950 +6952 2 -32.46687940533522 -86.09051378394895 61.1397 0.1144 6951 +6953 2 -9.811803983577704 -107.24134962261833 70.7286 0.1144 6834 +6954 2 -10.09271214915637 -108.06402254098815 69.6892 0.1144 6953 +6955 2 -10.756769288101225 -109.1657613718997 68.6456 0.1144 6954 +6956 2 -10.316383729551376 -109.41663162618158 66.9166 0.1144 6955 +6957 2 -10.030565932465379 -110.5043011189859 65.6174 0.1144 6956 +6958 2 -9.883186516298764 -111.59720600591648 64.566 0.1144 6957 +6959 2 -9.937486300456015 -112.5877532237618 63.5793 0.1144 6958 +6960 2 -10.096290785669169 -113.28387751894725 61.983 0.1144 6959 +6961 2 -10.412049516004231 -112.5570324515508 60.6889 0.1144 6960 +6962 2 -10.709028079557754 -111.93689464991458 59.8167 0.1144 6961 +6963 2 -10.613392538823746 -110.58200466519057 59.1338 0.1144 6962 +6964 2 -10.319047235872631 -109.17773333125307 58.567 0.1144 6963 +6965 2 -10.613723088738908 -108.25751633303497 58.0754 0.1144 6964 +6966 2 -11.115189115076532 -107.97715106400302 57.6988 0.1144 6965 +6967 2 -11.373916686911798 -107.01837728450079 57.4129 0.1144 6966 +6968 2 -11.433509822657868 -105.87984790479605 57.2186 0.1144 6967 +6969 2 -11.124637289104669 -104.41467187924333 57.1668 0.1144 6968 +6970 2 -10.468222173147637 -103.06241955085228 57.2496 0.1144 6969 +6971 2 -10.232963660665547 -102.12517100434236 57.3378 0.1144 6970 +6972 2 -10.23722219075708 -101.01927840171714 57.4204 0.1144 6971 +6973 2 -10.322037825976281 -99.88630265597706 57.5033 0.1144 6972 +6974 2 -10.352717853300476 -98.77932865010689 57.5453 0.1144 6973 +6975 2 -9.990388750907897 -97.93143182876354 57.4991 0.1144 6974 +6976 2 -9.50647344079593 -96.35358225987342 57.3846 0.1144 6975 +6977 2 -9.1564417395318 -94.96902116020462 57.1494 0.1144 6976 +6978 2 -9.251042933378102 -93.86511883807381 56.7848 0.1144 6977 +6979 2 -9.494850042703177 -92.78878795285762 56.4878 0.1144 6978 +6980 2 -9.59275643856995 -91.70631704837713 56.2713 0.1144 6979 +6981 2 -9.85745922368676 -90.8821154202248 56.0689 0.1144 6980 +6982 2 -10.044515488714893 -89.9303245589518 55.7628 0.1144 6981 +6983 2 -10.017634182493993 -88.66990155001851 55.4372 0.1144 6982 +6984 2 -9.538610100904037 -87.37823543064127 55.1174 0.1144 6983 +6985 2 -8.962582994752069 -86.70721848829764 54.712 0.1144 6984 +6986 2 -8.703264264703535 -85.77988310625376 54.1512 0.1144 6985 +6987 2 -7.915650555930995 -85.37635672662049 53.6161 0.1144 6986 +6988 2 -6.963626662620612 -84.24571721460833 53.1054 0.1144 6987 +6989 2 -6.0084444307014735 -83.95181411579708 52.5526 0.1144 6988 +6990 2 -5.904690353831057 -83.70034726760824 49.6415 0.1144 6989 +6991 2 -5.670502715261591 -83.17889026916446 47.4093 0.1144 6990 +6992 2 -4.935747621251181 -82.97073309069798 45.7901 0.1144 6991 +6993 2 -4.100297478993866 -82.44639357614582 44.2366 0.1144 6992 +6994 2 -3.0831431160711134 -82.55896958246385 43.0332 0.1144 6993 +6995 2 -2.042027833588861 -83.00520338864474 42.0524 0.1144 6994 +6996 2 -1.0084950108052055 -82.66825778304111 41.256 0.1144 6995 +6997 2 -0.018699953292639293 -81.95227678697229 40.4905 0.1144 6996 +6998 2 0.7641614706935798 -81.60133123349972 39.6329 0.1144 6997 +6999 2 1.5354682037675786 -81.18110906420048 38.9295 0.1144 6998 +7000 2 2.5588834981300863 -80.141006808269 38.3354 0.1144 6999 +7001 2 3.6722478278693984 -80.55468029189258 37.7681 0.1144 7000 +7002 2 4.727588114298612 -80.74811786370273 37.0115 0.1144 7001 +7003 2 5.20608612871473 -79.52872411028994 36.4403 0.1144 7002 +7004 2 5.939011130099431 -78.36446137807229 36.0811 0.1144 7003 +7005 2 6.192848982280964 -78.14500142961069 34.7556 0.1144 7004 +7006 2 6.63504351965085 -77.69409135828913 32.7709 0.1144 7005 +7007 2 7.249988735703482 -77.23659675583853 31.3964 0.1144 7006 +7008 2 8.143704175607496 -76.91122538110346 30.2607 0.1144 7007 +7009 2 9.064068753653942 -76.899914838188 28.9696 0.1144 7008 +7010 2 10.075281547228144 -77.67883844425486 28.0246 0.1144 7009 +7011 2 11.110456959186678 -78.47038490396638 27.2242 0.1144 7010 +7012 2 11.96297519548682 -77.13119806502071 26.5147 0.1144 7011 +7013 2 12.184244856176804 -76.18010486087239 25.802 0.1144 7012 +7014 2 6.304599372833337 -78.52579076768588 35.9786 0.1144 7004 +7015 2 7.438599988010367 -79.11078243423233 35.8212 0.1144 7014 +7016 2 8.535664853279343 -78.6680530299931 35.8481 0.1144 7015 +7017 2 9.653716790356043 -78.58060737432243 36.0203 0.1144 7016 +7018 2 10.63545104669447 -79.44251605063948 36.2628 0.1144 7017 +7019 2 11.707764734468014 -79.29089851732388 36.6201 0.1144 7018 +7020 2 12.725891365832808 -78.79697153137946 37.1552 0.1144 7019 +7021 2 13.763674023212815 -77.94933073854514 37.564 0.1144 7020 +7022 2 14.807914112751973 -77.72819466661501 37.8694 0.1144 7021 +7023 2 15.855764341786852 -77.73873913096492 38.0909 0.1144 7022 +7024 2 16.959796600633013 -76.98916227019929 38.2466 0.1144 7023 +7025 2 18.06913183471164 -77.04993994332648 38.3505 0.1144 7024 +7026 2 19.179095458543117 -77.24898140417739 38.4322 0.1144 7025 +7027 2 20.260204134483672 -76.28622006111989 38.5678 0.1144 7026 +7028 2 21.323034087544244 -76.32168404808404 38.7565 0.1144 7027 +7029 2 22.391880598439883 -76.38990091805947 38.9486 0.1144 7028 +7030 2 23.457389772814565 -75.38557887949084 39.1922 0.1144 7029 +7031 2 24.569363481494207 -75.62383413954497 39.499 0.1144 7030 +7032 2 25.652399458479607 -75.73425038149345 39.8247 0.1144 7031 +7033 2 26.686116381357152 -74.67079031426724 40.1475 0.1144 7032 +7034 2 27.783371549886283 -74.82536482668867 40.4519 0.1144 7033 +7035 2 28.887007475241205 -75.01367233283457 40.7341 0.1144 7034 +7036 2 30.00295552240729 -74.21380791629804 40.9982 0.1144 7035 +7037 2 31.130141011374207 -74.50057486414882 41.1774 0.1144 7036 +7038 2 32.2595563298147 -74.70357007320801 41.2812 0.1144 7037 +7039 2 33.15873893319147 -73.14071482874526 41.3204 0.1144 7038 +7040 2 34.03142005534173 -72.78405318891794 41.2863 0.1144 7039 +7041 2 34.97857013394801 -72.54968153821781 41.1925 0.1144 7040 +7042 2 36.017595542687616 -71.52239672052902 41.0533 0.1144 7041 +7043 2 37.124483611713686 -71.70191067474596 40.906 0.1144 7042 +7044 2 38.259792650009416 -71.05317186968365 40.7831 0.1144 7043 +7045 2 39.39192453312046 -71.58327672442107 40.6456 0.1144 7044 +7046 2 40.472663996877884 -72.28172657625193 40.4281 0.1144 7045 +7047 2 41.568099786560055 -72.06474813028593 40.1232 0.1144 7046 +7048 2 42.690661730113106 -72.65965692618208 39.7603 0.1144 7047 +7049 2 43.80554131241314 -73.14452030597444 39.3974 0.1144 7048 +7050 2 44.91311602071235 -72.98344449624551 39.0715 0.1144 7049 +7051 2 46.02346306285159 -73.64883639466376 38.733 0.1144 7050 +7052 2 47.11317550639998 -73.67596866223599 38.2707 0.1144 7051 +7053 2 47.65178262548275 -72.21995707364107 37.8736 0.1144 7052 +7054 2 48.05577403831276 -71.3675989322131 37.5578 0.1144 7053 +7055 2 48.454192774518674 -70.50719888680248 37.2848 0.1144 7054 +7056 2 49.446735116466016 -70.43292199254617 36.9796 0.1144 7055 +7057 2 50.566619856988495 -69.75380254511451 36.6562 0.1144 7056 +7058 2 51.68765423634463 -69.99267366908587 36.3062 0.1144 7057 +7059 2 52.80771866731601 -70.26132561734332 35.9162 0.1144 7058 +7060 2 53.9268459769396 -69.58101817740072 35.4976 0.1144 7059 +7061 2 54.98754911564211 -69.61995558358196 35.0521 0.1144 7060 +7062 2 55.98966208968409 -69.51170515075265 34.5951 0.1144 7061 +7063 2 56.987638164519865 -68.44331314905475 34.1418 0.1144 7062 +7064 2 57.98757367490097 -68.32362364772588 33.7042 0.1144 7063 +7065 2 58.98718952712417 -68.19553928637582 33.2934 0.1144 7064 +7066 2 59.67399496817083 -67.0880364561194 32.9748 0.1144 7065 +7067 2 60.16191744380629 -65.86782472403114 32.7625 0.1144 7066 +7068 2 60.65278884214757 -65.06423560188865 32.6334 0.1144 7067 +7069 2 61.142370633946086 -64.12486458594566 32.5654 0.1144 7068 +7070 2 61.63261364253455 -62.61822642529244 32.5332 0.1144 7069 +7071 2 32.50416902130564 -75.0128624459131 41.7886 0.1144 7038 +7072 2 32.49498871519967 -76.09848076175804 43.0564 0.1144 7071 +7073 2 31.60026387628156 -75.8868671515661 43.9186 0.1144 7072 +7074 2 30.814141204681135 -74.95719603672556 45.1385 0.1144 7073 +7075 2 29.81079458836527 -74.11376679831389 45.8452 0.1144 7074 +7076 2 28.771055809807393 -74.29802280336604 46.2636 0.1144 7075 +7077 2 27.75681882095222 -73.38626252480978 46.578 0.1144 7076 +7078 2 26.789028561821254 -72.4263290006613 46.8126 0.1144 7077 +7079 2 25.825325245130188 -72.15859226571615 47.0033 0.1144 7078 +7080 2 24.906608571224695 -71.4434094947474 47.238 0.1144 7079 +7081 2 24.039289809617486 -70.41091914850102 47.7002 0.1144 7080 +7082 2 23.180114420203353 -69.38162063383484 48.172 0.1144 7081 +7083 2 22.1427290016355 -69.51151141408083 48.4655 0.1144 7082 +7084 2 21.027851828381927 -68.87233216028464 48.7749 0.1144 7083 +7085 2 20.015439226423467 -68.96395011285469 49.1159 0.1144 7084 +7086 2 19.19925258278795 -70.10428885892067 49.9215 0.1144 7085 +7087 2 -5.737843404267551 -83.19918456950344 52.071 0.1144 6989 +7088 2 -5.226921362929687 -82.4566334698572 51.6426 0.1144 7087 +7089 2 -4.277024283977312 -81.9069926491797 51.2733 0.1144 7088 +7090 2 -3.219899150269981 -81.2620106649151 50.9144 0.1144 7089 +7091 2 -2.4088005553344374 -80.89584727907078 50.3068 0.1144 7090 +7092 2 -3.3169995732079087 -79.88017166018265 50.3342 0.1144 7091 +7093 2 -4.194385906470046 -79.10647164174065 50.5814 0.1144 7092 +7094 2 -4.935041415232149 -78.75930790315692 50.729 0.1144 7093 +7095 2 -5.488630555570182 -77.55633303706314 50.8388 0.1144 7094 +7096 2 -6.251946764537763 -76.46479748137821 50.9135 0.1144 7095 +7097 2 -7.200548211759866 -75.45835188696327 50.9972 0.1144 7096 +7098 2 -8.154992036997754 -75.45636699440718 50.9586 0.1144 7097 +7099 2 -9.205647214125378 -74.64381967756337 50.808 0.1144 7098 +7100 2 -10.331243965770625 -74.0099422855407 50.7805 0.1144 7099 +7101 2 -11.468857822026422 -74.47232195273702 50.9074 0.1144 7100 +7102 2 -12.584454781048805 -73.78719273288078 51.1134 0.1144 7101 +7103 2 -13.511185093464746 -73.80065001779099 51.3089 0.1144 7102 +7104 2 -14.307477043773645 -72.68106890993555 51.4903 0.1144 7103 +7105 2 -15.432404676637873 -72.23425073510667 51.6426 0.1144 7104 +7106 2 -16.519571349663238 -72.8681613030248 51.7359 0.1144 7105 +7107 2 -17.626588459835403 -72.99169302251528 51.7961 0.1144 7106 +7108 2 -18.767000267513765 -72.60143106218264 51.8762 0.1144 7107 +7109 2 -19.904763680316506 -73.11175680498442 52.1651 0.1144 7108 +7110 2 -2.3341854280032237 -81.01981485010026 50.2244 0.1144 7091 +7111 2 -1.6124285143574753 -82.14571175792122 49.5127 0.1144 7110 +7112 2 -0.7241380941617308 -82.24290854897336 48.946 0.1144 7111 +7113 2 0.32459529255069697 -82.88953165716264 48.503 0.1144 7112 +7114 2 1.4352807917387906 -83.60856876932436 48.1569 0.1144 7113 +7115 2 2.5594051448093467 -83.29435556028977 47.8766 0.1144 7114 +7116 2 3.6867114711575653 -83.50531454184198 47.6403 0.1144 7115 +7117 2 4.784272269698505 -83.69901414077061 47.4222 0.1144 7116 +7118 2 5.880353158436577 -82.82769981728397 47.0123 0.1144 7117 +7119 2 6.930768377311551 -83.51862475974929 46.1686 0.1144 7118 +7120 2 7.875687419349617 -84.44960306642487 45.3043 0.1144 7119 +7121 2 8.722943918860807 -85.21183086662649 44.3526 0.1144 7120 +7122 2 9.680225027498153 -84.88805680348082 43.251 0.1144 7121 +7123 2 10.718621052174683 -85.13307095154352 42.1879 0.1144 7122 +7124 2 11.761481837980057 -85.3285119870081 41.286 0.1144 7123 +7125 2 12.81851047348971 -84.36837316286683 40.53 0.1144 7124 +7126 2 13.917027914469088 -84.27267557932157 39.8373 0.1144 7125 +7127 2 15.03811024999294 -84.07173489843481 39.293 0.1144 7126 +7128 2 15.003030618741064 -84.00370121512408 37.3223 0.1144 7127 +7129 2 14.848064824961142 -84.02574997671908 34.5898 0.1144 7128 +7130 2 14.94937804091262 -84.77934341308753 32.844 0.1144 7129 +7131 2 15.109756821710732 -85.79786372179166 31.7075 0.1144 7130 +7132 2 15.22091997196452 -86.85320780206752 30.6379 0.1144 7131 +7133 2 15.308925482452537 -87.92088191666832 29.6932 0.1144 7132 +7134 2 15.764251717139814 -89.03898593145841 28.6832 0.1144 7133 +7135 2 14.93853068948843 -88.90635321686977 27.5497 0.1144 7134 +7136 2 14.221671699261208 -90.05793084054278 26.5402 0.1144 7135 +7137 2 14.748362918207107 -90.32605926091533 25.5721 0.1144 7136 +7138 2 14.668466532996263 -91.49013231339545 24.6888 0.1144 7137 +7139 2 13.836521212746902 -92.54060461617583 23.8888 0.1144 7138 +7140 2 12.757581405939504 -92.60380051066997 23.05 0.1144 7139 +7141 2 12.207398973869289 -93.72000143914912 22.2378 0.1144 7140 +7142 2 12.425533499344084 -94.83959027875191 21.5144 0.1144 7141 +7143 2 12.687553961563651 -95.63746540621777 20.8843 0.1144 7142 +7144 2 13.247479004142917 -95.86128061880785 20.2564 0.1144 7143 +7145 2 14.17671194900717 -96.95954928349637 19.9906 0.1144 7144 +7146 2 15.137830541983192 -96.90656346539065 19.8838 0.1144 7145 +7147 2 16.05530446452906 -97.80368632221092 19.8718 0.1144 7146 +7148 2 16.842727746246396 -98.99555126018805 19.9268 0.1144 7147 +7149 2 17.94183493753829 -99.65662122325163 20.0255 0.1144 7148 +7150 2 19.071352969320685 -99.1189240994365 20.2112 0.1144 7149 +7151 2 20.201952878589793 -99.60578647285249 20.5339 0.1144 7150 +7152 2 21.333773621059464 -99.88509383614263 20.8149 0.1144 7151 +7153 2 22.467950825102207 -99.61636094033598 21.0279 0.1144 7152 +7154 2 23.55079658781679 -100.52634158926433 21.1778 0.1144 7153 +7155 2 24.692233811275827 -100.41915857119542 21.2695 0.1144 7154 +7156 2 25.725633485041982 -99.73514917006663 21.3147 0.1144 7155 +7157 2 15.448166567588657 -83.69256164695841 39.3078 0.1144 7127 +7158 2 16.094155423529656 -83.08964551098548 39.7393 0.1144 7157 +7159 2 16.720648121040085 -82.51889397670267 40.8442 0.1144 7158 +7160 2 17.373830614416676 -81.04428894213693 42.3783 0.1144 7159 +7161 2 18.070996643720207 -80.70794781299689 43.862 0.1144 7160 +7162 2 18.875882565157326 -80.70739412395928 45.4796 0.1144 7161 +7163 2 19.80150287249006 -81.17647119494198 47.1128 0.1144 7162 +7164 2 20.73360284389284 -80.43775875569834 48.7189 0.1144 7163 +7165 2 21.449370746580342 -80.46493677845835 50.615 0.1144 7164 +7166 2 21.247021012739168 -79.96665982055922 52.9004 0.1144 7165 +7167 2 20.756054926842125 -79.1593016686921 54.8814 0.1144 7166 +7168 2 20.710981510469935 -78.19444306331478 56.285 0.1144 7167 +7169 2 20.637793855824526 -77.18909282169132 57.5352 0.1144 7168 +7170 2 20.648792244693595 -76.1988982720966 58.7034 0.1144 7169 +7171 2 20.787832888367916 -75.24909664523243 59.7621 0.1144 7170 +7172 2 21.02814180441993 -74.33959333381037 60.7079 0.1144 7171 +7173 2 21.289613688608767 -73.43368236685097 61.5891 0.1144 7172 +7174 2 21.524388265703323 -72.50914630756854 62.4389 0.1144 7173 +7175 2 21.74588688107181 -71.56754946835039 63.2705 0.1144 7174 +7176 2 21.964712478292398 -70.62058614051627 64.0945 0.1144 7175 +7177 2 22.33725360670516 -69.61083541071203 64.9029 0.1144 7176 +7178 2 22.814999700851956 -68.05674967298118 65.6916 0.1144 7177 +7179 2 23.30561611848421 -67.30018538933993 66.4793 0.1144 7178 +7180 2 23.64492583231015 -66.44916126078675 67.4139 0.1144 7179 +7181 2 23.86220374069586 -65.54012024082412 68.511 0.1144 7180 +7182 2 24.039519999360834 -64.62773399216026 69.6856 0.1144 7181 +7183 2 23.809773314979452 -63.541570702749596 70.7073 0.1144 7182 +7184 2 23.34734653769752 -62.42601056607172 71.5582 0.1144 7183 +7185 2 22.892000071697964 -61.332193152301315 72.5287 0.1144 7184 +7186 2 22.290468186077135 -60.26826707462137 73.4908 0.1144 7185 +7187 2 21.69779945841819 -59.77813784771418 74.4582 0.1144 7186 +7188 2 21.354895745658126 -58.93616719142047 75.4298 0.1144 7187 +7189 2 21.114623485568615 -57.84532048848907 76.4218 0.1144 7188 +7190 2 20.875291448409996 -56.76283820090871 77.4514 0.1144 7189 +7191 2 20.437065548940268 -55.683988460097126 78.5212 0.1144 7190 +7192 2 19.335591283263938 -55.234607353948014 77.7857 0.1144 7191 +7193 2 18.239377245508393 -55.39434439457221 77.0036 0.1144 7192 +7194 2 17.138943507058343 -55.61031195986743 76.6228 0.1144 7193 +7195 2 16.04190808315471 -55.508738462612286 76.1732 0.1144 7194 +7196 2 14.951095626102102 -55.99856653067569 75.6582 0.1144 7195 +7197 2 13.922567659767225 -56.09189622335446 74.6018 0.1144 7196 +7198 2 20.564906183159536 -55.50274308420496 79.8291 0.1144 7191 +7199 2 20.97923285075254 -54.92516356380844 81.7085 0.1144 7198 +7200 2 21.36270238759755 -54.04322165160493 83.7399 0.1144 7199 +7201 2 21.728407963388662 -53.14738767320882 85.8544 0.1144 7200 +7202 2 22.08596155477389 -52.643856424766554 88.0079 0.1144 7201 +7203 2 22.23080732209698 -52.010367893864746 90.1415 0.1144 7202 +7204 2 22.071835268114427 -51.20152199240688 92.1085 0.1144 7203 +7205 2 21.82606842147038 -50.33840998718283 93.9742 0.1144 7204 +7206 2 21.575213526126362 -49.45992095971015 95.7891 0.1144 7205 +7207 2 21.319322947895017 -48.56555971041478 97.5517 0.1144 7206 +7208 2 20.609825488473945 -48.445580532679784 99.1992 0.1144 7207 +7209 2 19.633023598133605 -48.074469840203456 100.5542 0.1144 7208 +7210 2 18.616134118509564 -47.63492338706167 101.7825 0.1144 7209 +7211 2 17.58468217219982 -47.510892058046 102.9389 0.1144 7210 +7212 2 16.544314702115457 -47.39236564938182 104.0466 0.1144 7211 +7213 2 15.500868575642613 -46.9449070185593 105.1277 0.1144 7212 +7214 2 14.454801796834602 -46.68706932811513 106.2029 0.1144 7213 +7215 2 13.406118065114754 -46.74771636321151 107.2954 0.1144 7214 +7216 2 12.392589645669915 -46.648050153745835 108.4098 0.1144 7215 +7217 2 11.39446741764391 -46.73785510615961 109.5419 0.1144 7216 +7218 2 10.397813794072931 -47.32437340497101 110.6885 0.1144 7217 +7219 2 9.403610437137559 -47.491816668606766 111.846 0.1144 7218 +7220 2 8.411399342784563 -48.00842132380435 113.0125 0.1144 7219 +7221 2 7.42009254274231 -48.014726436648516 114.1865 0.1144 7220 +7222 2 6.430521639500228 -48.028860088895925 115.3681 0.1144 7221 +7223 2 5.443348637081016 -48.702562363767356 116.5601 0.1144 7222 +7224 2 4.458187436019898 -48.71436536792511 117.766 0.1144 7223 +7225 2 3.475922791851815 -48.71355361743836 118.9905 0.1144 7224 +7226 2 2.4987814324673536 -49.40268631954286 120.2365 0.1144 7225 +7227 2 1.52818610144854 -49.12724756088872 121.6396 0.1144 7226 +7228 2 0.7191593680331891 -48.409793703234264 123.1152 0.1144 7227 +7229 2 -0.036610623607657544 -47.636887750507384 124.6344 0.1144 7228 +7230 2 -0.7823544828434592 -47.480186296716965 126.1982 0.1144 7229 +7231 2 -1.553564895698429 -46.73365023357904 127.8054 0.1144 7230 +7232 2 -2.4302040201099544 -46.18807856792572 129.4241 0.1144 7231 +7233 2 -3.321757498561709 -45.67404514768995 131.0616 0.1144 7232 +7234 2 -4.207429568794424 -45.8097259099239 132.7208 0.1144 7233 +7235 2 -5.085175602412903 -45.314893902817566 134.4064 0.1144 7234 +7236 2 -5.920463557028484 -44.80412869659006 136.1909 0.1144 7235 +7237 2 -6.484967290437027 -44.23426455328147 138.341 0.1144 7236 +7238 2 -6.930973375104344 -43.84146298790076 140.6625 0.1144 7237 +7239 2 -7.360674893119722 -43.64225738996409 143.0187 0.1144 7238 +7240 2 -7.782532465787568 -43.17578367652686 145.3942 0.1144 7239 +7241 2 -8.20033050711919 -42.63655641860459 147.777 0.1144 7240 +7242 2 -8.622135713974302 -42.095290082842155 150.1531 0.1144 7241 +7243 2 -9.050056794356607 -41.552197479891554 152.5149 0.1144 7242 +7244 2 -9.538911780888554 -41.008908042015435 154.8016 0.1144 7243 +7245 2 -10.258117117314924 -40.55172812754311 156.8165 0.1144 7244 +7246 2 -11.060673005950406 -40.540383280948234 158.6665 0.1144 7245 +7247 2 -11.891249422492933 -40.014371730264855 160.4249 0.1144 7246 +7248 2 -12.75440455434881 -39.45742502775528 162.0732 0.1144 7247 +7249 2 -13.58498097089128 -38.99267408114753 163.791 0.1144 7248 +7250 2 -14.24495816406639 -39.06718951519425 165.9941 0.1144 7249 +7251 2 -11.792894736590995 -109.59720494616863 70.2268 0.1144 6955 +7252 2 -12.754200744028338 -109.43774431464131 71.3406 0.1144 7251 +7253 2 -13.318442801831395 -109.97586241088884 71.9984 0.1144 7252 +7254 2 -13.545055491930384 -110.95442925856537 71.9071 0.1144 7253 +7255 2 -13.825269897770681 -112.61775716133906 71.4347 0.1144 7254 +7256 2 -14.191121537762768 -114.19654191332046 70.8103 0.1144 7255 +7257 2 -14.687169971773471 -114.86077572328733 70.0902 0.1144 7256 +7258 2 -15.491773489419785 -115.08160631542604 69.3302 0.1144 7257 +7259 2 -16.41515156665352 -115.12376576551603 68.5849 0.1144 7258 +7260 2 -17.342975274688342 -116.77628925191415 67.856 0.1144 7259 +7261 2 -18.27187366273344 -116.80379325976959 67.1345 0.1144 7260 +7262 2 -19.21900081689236 -116.78971092431367 66.3972 0.1144 7261 +7263 2 -20.217350993308514 -118.22876575670459 65.6065 0.1144 7262 +7264 2 -21.208744388958777 -118.33556951029708 64.8449 0.1144 7263 +7265 2 -22.09092937045996 -118.49716084317916 64.2527 0.1144 7264 +7266 2 -22.950593998249502 -119.30044410700341 63.8523 0.1144 7265 +7267 2 -23.818548861643976 -120.82554868942435 63.9254 0.1144 7266 +7268 2 -24.606026018042243 -120.9959496013063 65.163 0.1144 7267 +7269 2 -25.35788385631666 -121.15694462023616 66.7078 0.1144 7268 +7270 2 -26.189382886308593 -122.24001247316346 67.8874 0.1144 7269 +7271 2 -27.049700527123264 -123.25397585752539 68.8943 0.1144 7270 +7272 2 -27.892370936393988 -123.42760857709057 69.8228 0.1144 7271 +7273 2 -28.690966413721668 -123.7298571875168 70.8058 0.1144 7272 +7274 2 -29.51653097714521 -125.45985108995839 71.9202 0.1144 7273 +7275 2 -30.406732083214592 -125.73779469176482 73.071 0.1144 7274 +7276 2 -31.44552203233586 -125.27129418311226 74.0914 0.1144 7275 +7277 2 -32.53859925317197 -125.62535639147126 74.9146 0.1144 7276 +7278 2 -33.64579575201931 -125.58142083552244 75.6137 0.1144 7277 +7279 2 -34.76441040708973 -124.81588108837269 76.1958 0.1144 7278 +7280 2 -35.89071663346624 -125.5241429682397 76.6797 0.1144 7279 +7281 2 -37.0226893415293 -125.10665597116284 77.0896 0.1144 7280 +7282 2 -38.15719750907779 -124.29696589059651 77.4432 0.1144 7281 +7283 2 -39.29447560141983 -125.38575263023209 77.7434 0.1144 7282 +7284 2 -40.43180124148162 -124.53178241536202 77.9607 0.1144 7283 +7285 2 -41.55754175495561 -125.44106032727143 78.0055 0.1144 7284 +7286 2 -42.666285640864174 -124.36617537412042 77.8607 0.1144 7285 +7287 2 -43.78080722733968 -123.35753050966917 77.6026 0.1144 7286 +7288 2 -44.8813248505775 -124.63999839256782 77.3427 0.1144 7287 +7289 2 -45.81315503159928 -124.6915456628314 77.2002 0.1144 7288 +7290 2 -46.560066475729556 -125.21746378835095 77.2153 0.1144 7289 +7291 2 -47.28973623186005 -126.74669333480668 77.3682 0.1144 7290 +7292 2 -48.10822248459972 -127.85231749886334 77.6182 0.1144 7291 +7293 2 -49.12744541236023 -127.61148435402535 77.91 0.1144 7292 +7294 2 -50.2631932296852 -127.39647452727183 78.192 0.1144 7293 +7295 2 -51.39946131946587 -127.88269745333803 78.451 0.1144 7294 +7296 2 -52.536751723444084 -127.03409671855813 78.6974 0.1144 7295 +7297 2 -53.66205786753383 -127.29317425829231 78.9673 0.1144 7296 +7298 2 -54.73885444047558 -127.86502335119465 79.3061 0.1144 7297 +7299 2 -55.76958961361028 -127.70073170601844 79.7126 0.1144 7298 +7300 2 -56.85166313575398 -128.33602694111804 80.1256 0.1144 7299 +7301 2 -57.9779871843962 -128.30365469041953 80.4748 0.1144 7300 +7302 2 -59.099987824691866 -127.30332299605946 80.7472 0.1144 7301 +7303 2 -60.22346327260868 -127.71437688185352 80.953 0.1144 7302 +7304 2 -61.34594923336495 -127.19928885864064 81.1079 0.1144 7303 +7305 2 -62.47165140917231 -126.2601489467889 81.2358 0.1144 7304 +7306 2 -63.59609680547396 -126.89875736902691 81.3627 0.1144 7305 +7307 2 -64.72014827733085 -126.07353838867289 81.5066 0.1144 7306 +7308 2 -65.84370891809748 -125.12878826062754 81.676 0.1144 7307 +7309 2 -66.97238363359463 -126.03729300017503 81.9022 0.1144 7308 +7310 2 -68.10499773558328 -125.18138494185172 82.2108 0.1144 7309 +7311 2 -69.23502642132033 -124.28839142801091 82.5916 0.1144 7310 +7312 2 -70.36233754807651 -125.29870549059372 83.0242 0.1144 7311 +7313 2 -71.46927357327029 -124.85011399617561 83.4742 0.1144 7312 +7314 2 -72.52154581612226 -126.34402206342126 83.9068 0.1144 7313 +7315 2 -73.56074781372764 -126.15294743209647 84.3206 0.1144 7314 +7316 2 -74.65376786834308 -125.7326559489913 84.7725 0.1144 7315 +7317 2 -75.77870781284348 -126.6493630229246 85.2729 0.1144 7316 +7318 2 -76.90417072293465 -125.8595215010433 85.7752 0.1144 7317 +7319 2 -78.0305553411544 -125.74703021303966 86.2565 0.1144 7318 +7320 2 -79.15764502446018 -126.32962108019602 86.6933 0.1144 7319 +7321 2 -80.28024422238038 -125.76008106067243 86.8588 0.1144 7320 +7322 2 -81.376741267474 -126.36806493007312 86.6233 0.1144 7321 +7323 2 -82.33415612867617 -126.92667931230129 85.2592 0.1144 7322 +7324 2 -2.5395198757685193 -101.25675066782031 77.6087 0.1144 6825 +7325 2 -1.8199373242005095 -102.3240040487464 76.8662 0.1144 7324 +7326 2 -1.0179108290843715 -103.5188150397307 76.5111 0.1144 7325 +7327 2 -0.13027241562556924 -104.67962864060338 76.1978 0.1144 7326 +7328 2 0.9036794523123888 -104.22499561707964 75.8792 0.1144 7327 +7329 2 2.017354620919548 -105.01459103247295 75.544 0.1144 7328 +7330 2 3.1185632930755673 -105.86649545392808 75.1467 0.1144 7329 +7331 2 4.096102489676838 -105.63036802635594 74.5825 0.1144 7330 +7332 2 4.962563214316162 -106.56288554918842 73.8251 0.1144 7331 +7333 2 5.850312846655328 -107.6725669605796 73.0414 0.1144 7332 +7334 2 6.7764024576822806 -108.76948400236256 72.3355 0.1144 7333 +7335 2 7.7200089687302125 -108.35419575613368 71.7066 0.1144 7334 +7336 2 8.668592593686554 -109.45053679646873 71.1446 0.1144 7335 +7337 2 9.622266676389359 -110.56098653578428 70.6378 0.1144 7336 +7338 2 10.68657563393191 -110.38230412873375 70.1252 0.1144 7337 +7339 2 11.805508230650304 -110.66414582121328 69.5724 0.1144 7338 +7340 2 12.92428165232073 -111.29384435509509 68.9732 0.1144 7339 +7341 2 14.037270572417668 -110.51741178499567 68.3374 0.1144 7340 +7342 2 15.150292319551681 -110.99827312127076 67.6822 0.1144 7341 +7343 2 16.261139704607984 -110.08478031687265 67.0197 0.1144 7342 +7344 2 17.37098218928446 -110.64329719305331 66.365 0.1144 7343 +7345 2 18.464706616449433 -111.05510734787939 65.7325 0.1144 7344 +7346 2 19.54753756949202 -109.86562515259642 65.1367 0.1144 7345 +7347 2 20.63031856576842 -110.18625874743704 64.6016 0.1144 7346 +7348 2 21.72835578846872 -110.59496684794986 64.027 0.1144 7347 +7349 2 22.801208156825965 -109.4297262334904 63.3063 0.1144 7348 +7350 2 23.78765416402183 -109.51136349403511 62.545 0.1144 7349 +7351 2 24.74231963351633 -109.51589217452123 61.7924 0.1144 7350 +7352 2 25.699605755346028 -108.01604806380404 61.0644 0.1144 7351 +7353 2 26.67427973605072 -108.03592892532107 60.4551 0.1144 7352 +7354 2 27.690701912579186 -108.1073178890057 60.1798 0.1144 7353 +7355 2 28.773121811447936 -106.93046602409224 60.1384 0.1144 7354 +7356 2 29.915062177633416 -107.54513550135576 60.0762 0.1144 7355 +7357 2 31.055196080155383 -108.223756232888 59.8973 0.1144 7356 +7358 2 32.18180214182544 -107.44696884408913 59.5087 0.1144 7357 +7359 2 33.263855841104885 -107.86541000780426 58.9632 0.1144 7358 +7360 2 34.30891562994529 -108.0587807940509 58.3906 0.1144 7359 +7361 2 35.34714837170242 -106.73506857300059 57.8385 0.1144 7360 +7362 2 36.38943754321278 -106.89443816478929 57.3336 0.1144 7361 +7363 2 37.43595741899176 -107.06233531845068 56.8904 0.1144 7362 +7364 2 38.49857003647335 -105.7790867058347 56.5816 0.1144 7363 +7365 2 39.571605812387986 -105.88674331001478 56.406 0.1144 7364 +7366 2 40.6460695407406 -104.73771801590036 56.3122 0.1144 7365 +7367 2 41.64046761058114 -104.74520724939096 56.1344 0.1144 7366 +7368 2 42.362402639645865 -104.33685948825635 55.5736 0.1144 7367 +7369 2 42.577762652703456 -104.4478737512339 55.288 0.1144 7368 +7370 2 43.68556971903794 -103.58536881175155 54.6669 0.1144 7369 +7371 2 44.80446467062623 -104.2754545385377 54.1677 0.1144 7370 +7372 2 45.91621563977159 -104.99542506553331 53.6799 0.1144 7371 +7373 2 47.03924920707601 -104.26804971281554 53.1899 0.1144 7372 +7374 2 48.16165948680927 -104.82158229691603 52.6772 0.1144 7373 +7375 2 49.23535688796167 -104.84551441708189 52.0744 0.1144 7374 +7376 2 50.15084175561827 -103.59299032183667 51.3629 0.1144 7375 +7377 2 51.00241055893443 -103.38763132980644 50.5568 0.1144 7376 +7378 2 52.05024066333135 -103.86443700293434 49.6115 0.1144 7377 +7379 2 53.118857616001236 -103.16959955788313 48.7133 0.1144 7378 +7380 2 54.18864064469739 -103.91015725483653 47.8324 0.1144 7379 +7381 2 55.25993681868138 -104.65911422579264 46.97 0.1144 7380 +7382 2 56.34320935056272 -103.93933897757772 46.1426 0.1144 7381 +7383 2 57.445264049824175 -104.48306155289121 45.4062 0.1144 7382 +7384 2 58.432826868816676 -104.56289108378954 44.641 0.1144 7383 +7385 2 59.149997301459024 -103.17258388026073 43.8021 0.1144 7384 +7386 2 59.84666529021777 -102.31448126574878 42.9293 0.1144 7385 +7387 2 60.6007279262455 -101.9626353638827 42.0812 0.1144 7386 +7388 2 61.55017561335734 -101.91484968826275 41.3694 0.1144 7387 +7389 2 62.50536404844263 -100.48705872855277 40.7389 0.1144 7388 +7390 2 63.467059179916674 -100.43374213434144 40.1842 0.1144 7389 +7391 2 64.43267318248141 -99.0125643052088 39.6903 0.1144 7390 +7392 2 65.40121656897625 -98.95327175189546 39.2342 0.1144 7391 +7393 2 66.36915110449397 -98.89292567482427 38.7951 0.1144 7392 +7394 2 67.36364057035047 -97.65901258002805 38.3443 0.1144 7393 +7395 2 68.36460149651222 -97.55100732446188 37.8935 0.1144 7394 +7396 2 69.36592352008165 -97.55690687054533 37.4539 0.1144 7395 +7397 2 70.36915261338365 -96.59634982999222 37.0359 0.1144 7396 +7398 2 71.37246689953548 -96.23535738266816 36.6397 0.1144 7397 +7399 2 72.35075481385553 -96.2362498465043 35.8985 0.1144 7398 +7400 2 42.47317886726779 -104.1985358701976 54.3511 0.1144 7368 +7401 2 42.94584412216906 -102.90605542063076 52.8937 0.1144 7400 +7402 2 43.97150566551275 -102.61309428028818 52.369 0.1144 7401 +7403 2 45.09919050308645 -103.05094084747917 52.2458 0.1144 7402 +7404 2 46.17900716343772 -102.45671250261728 52.4989 0.1144 7403 +7405 2 47.12593960469141 -102.05076528298612 53.8479 0.1144 7404 +7406 2 0.5384865767297242 -99.76312563223803 87.4026 0.1144 6818 +7407 2 0.9456777674181751 -98.81724026576943 87.7478 0.1144 7406 +7408 2 1.1418118379946804 -97.83617807896991 87.9194 0.1144 7407 +7409 2 1.4104838645589837 -96.90930467997639 88.2031 0.1144 7408 +7410 2 1.756681887582289 -96.04679782662966 88.6119 0.1144 7409 +7411 2 2.1063555930218456 -95.1866013405547 89.0901 0.1144 7410 +7412 2 2.345230448165779 -94.25388111196368 89.5348 0.1144 7411 +7413 2 2.2626415408370235 -93.11523626563469 89.7571 0.1144 7412 +7414 2 2.062224121233072 -91.92873234821698 89.8103 0.1144 7413 +7415 2 1.8087433646978184 -90.72775166267823 89.8559 0.1144 7414 +7416 2 1.5488082775865735 -89.5285853484535 89.9195 0.1144 7415 +7417 2 1.3287934009462958 -88.34419472758157 90.0057 0.1144 7416 +7418 2 1.2434017417869256 -87.20626483687298 90.1029 0.1144 7417 +7419 2 1.2751359388631727 -86.1161477419544 90.1914 0.1144 7418 +7420 2 1.2115715662137347 -85.02755658799131 90.2653 0.1144 7419 +7421 2 0.9667390411079566 -83.83785365668837 90.3288 0.1144 7420 +7422 2 0.6917013919911597 -82.6440567755044 90.3594 0.1144 7421 +7423 2 0.4171100331317348 -81.45119094991053 90.3286 0.1144 7422 +7424 2 -0.15455620950018556 -80.40953070173518 89.8853 0.1144 7423 +7425 2 -1.131565923592774 -80.18756809132339 88.858 0.1144 7424 +7426 2 -2.0305803318252913 -79.83083044056342 87.6215 0.1144 7425 +7427 2 -2.707127774161904 -78.8588750829643 86.2154 0.1144 7426 +7428 2 -3.3474712622218874 -77.84923959566997 84.8445 0.1144 7427 +7429 2 -4.298595164756648 -77.15500204400944 84.1103 0.1144 7428 +7430 2 -5.275065789817575 -77.0182565441191 83.7309 0.1144 7429 +7431 2 -5.719039468736696 -76.92225947994154 83.5677 0.1144 7430 +7432 2 -6.7045395352946855 -76.72137722480868 84.8683 0.1144 7431 +7433 2 -7.780643354786463 -77.17888405477807 85.5361 0.1144 7432 +7434 2 -8.784927305234419 -77.61049801548964 86.2926 0.1144 7433 +7435 2 -9.789963868488258 -77.60869045753415 86.9929 0.1144 7434 +7436 2 -10.9043673284026 -77.93717209119347 87.4224 0.1144 7435 +7437 2 -12.03972632346455 -78.01240717649074 87.6232 0.1144 7436 +7438 2 -13.182905646889935 -78.66208253114762 87.6954 0.1144 7437 +7439 2 -14.325955929169282 -78.20323158607323 87.7002 0.1144 7438 +7440 2 -15.469890966983712 -77.73756111375971 87.6725 0.1144 7439 +7441 2 -16.613790076177935 -78.37827391169161 87.6305 0.1144 7440 +7442 2 -17.754866202229266 -77.94317006107572 87.5532 0.1144 7441 +7443 2 -18.894249492543963 -77.57779012550735 87.4118 0.1144 7442 +7444 2 -20.03277543842725 -78.23590186847302 87.2323 0.1144 7443 +7445 2 -21.166573740481596 -77.88823567217658 87.0862 0.1144 7444 +7446 2 -22.294514251300882 -77.95994522650109 87.0307 0.1144 7445 +7447 2 -23.422366467687283 -78.38924932797288 87.0556 0.1144 7446 +7448 2 -24.54870553878581 -78.09440897241382 87.1402 0.1144 7447 +7449 2 -25.674992244071575 -78.49521077285608 87.2637 0.1144 7448 +7450 2 -26.797987775483023 -78.62405538173427 87.3869 0.1144 7449 +7451 2 -27.892924820105634 -78.46812553869661 87.4065 0.1144 7450 +7452 2 -28.954007162570264 -79.31607193450212 87.2421 0.1144 7451 +7453 2 -30.052428407125632 -79.33534101593769 87.1814 0.1144 7452 +7454 2 -31.178371144732978 -79.0162987856675 87.4269 0.1144 7453 +7455 2 -32.292683901167806 -79.81925164736471 87.8973 0.1144 7454 +7456 2 -33.35115721039682 -79.73749826827918 88.3008 0.1144 7455 +7457 2 -34.401901587278275 -79.70992586612773 88.6119 0.1144 7456 +7458 2 -35.455903618460496 -80.79667413121412 88.811 0.1144 7457 +7459 2 -36.51249347494084 -80.76246108196216 88.8748 0.1144 7458 +7460 2 -37.58824680983622 -80.66825824464482 88.825 0.1144 7459 +7461 2 -38.69134194733462 -81.60740170406726 88.6833 0.1144 7460 +7462 2 -39.80344469716027 -81.36438472007355 88.4635 0.1144 7461 +7463 2 -40.910299939149326 -81.14221631966116 88.1905 0.1144 7462 +7464 2 -41.968400531871 -82.224877372026 87.955 0.1144 7463 +7465 2 -43.02044002592481 -82.35824727467288 87.764 0.1144 7464 +7466 2 -44.10226848763418 -83.21506276972907 87.4924 0.1144 7465 +7467 2 -45.12469840270762 -82.9695832177232 86.3808 0.1144 7466 +7468 2 -5.579896413494026 -76.57257517110433 83.6256 0.1144 7430 +7469 2 -6.3593553209305185 -75.43985529910717 83.757 0.1144 7468 +7470 2 -7.134839889880567 -74.31877994727327 84.0468 0.1144 7469 +7471 2 -7.907212975405059 -73.6748798479078 84.427 0.1144 7470 +7472 2 -8.614152441656216 -73.08698090484965 84.868 0.1144 7471 +7473 2 -9.309514292547732 -71.94747020526947 85.3678 0.1144 7472 +7474 2 -10.003180898655984 -70.82243305886875 85.9244 0.1144 7473 +7475 2 -10.692426876020306 -69.70097384695312 86.527 0.1144 7474 +7476 2 -11.38088190291208 -68.94151136164143 87.1648 0.1144 7475 +7477 2 -11.765784293570619 -68.77436436064146 87.0302 0.1144 7476 +7478 2 -12.406314681533928 -67.73795702650037 87.0825 0.1144 7477 +7479 2 -13.027518006389272 -66.56894217468762 87.1987 0.1144 7478 +7480 2 -13.647029188044428 -65.83666309530344 87.2864 0.1144 7479 +7481 2 -14.266049538609394 -65.14815778657469 87.3751 0.1144 7480 +7482 2 -14.884932330511703 -63.98446600676415 87.4516 0.1144 7481 +7483 2 -15.505465826364428 -62.81247011359911 87.502 0.1144 7482 +7484 2 -16.12301757247431 -61.6492413077409 87.5204 0.1144 7483 +7485 2 -16.766764175488618 -60.50819675945441 87.5115 0.1144 7484 +7486 2 -17.55476899177566 -60.18403259565454 87.3513 0.1144 7485 +7487 2 -18.407933931824743 -59.240201568123865 87.0089 0.1144 7486 +7488 2 -19.307587733384167 -58.26630987121859 86.5903 0.1144 7487 +7489 2 -20.302406955651918 -57.40246555561568 86.224 0.1144 7488 +7490 2 -21.32162656904501 -57.35980837363855 85.9298 0.1144 7489 +7491 2 -22.34249688638846 -56.52513742773519 85.7072 0.1144 7490 +7492 2 -23.36644586012042 -55.68254710105111 85.5588 0.1144 7491 +7493 2 -24.39034246803959 -55.63169336243326 85.4627 0.1144 7492 +7494 2 -25.413930344363877 -54.78702429785376 85.3919 0.1144 7493 +7495 2 -26.43881643944357 -53.958734800199466 85.3269 0.1144 7494 +7496 2 -27.361898274697126 -53.404724275599754 85.2718 0.1144 7495 +7497 2 -28.240098198790577 -52.75342444587733 85.2247 0.1144 7496 +7498 2 -29.112954400938378 -51.77061324535911 85.181 0.1144 7497 +7499 2 -29.98518221333339 -50.776870054595506 85.1301 0.1144 7498 +7500 2 -30.87731862340607 -50.174131235450886 85.0788 0.1144 7499 +7501 2 -31.785797245260852 -49.540075807197255 85.0214 0.1144 7500 +7502 2 -32.69627674191074 -48.5830765992458 84.912 0.1144 7501 +7503 2 -33.60618021462051 -47.63861755071258 84.7442 0.1144 7502 +7504 2 -34.39405219564176 -47.065194539990976 84.3256 0.1144 7503 +7505 2 -35.09630304826723 -46.2232676516348 83.6004 0.1144 7504 +7506 2 -35.76397361824755 -45.221901230807724 82.5899 0.1144 7505 +7507 2 -36.3131417390787 -44.4058078842831 80.7719 0.1144 7506 +7508 2 -11.598534013845608 -69.08682198130148 87.7484 0.1144 7476 +7509 2 -12.540052349975895 -68.72694030229721 89.1047 0.1144 7508 +7510 2 -13.047111870112133 -67.87747083125467 90.2927 0.1144 7509 +7511 2 -12.992956540320165 -66.83324557371444 91.0431 0.1144 7510 +7512 2 -12.8831640764449 -65.78911475281956 91.5463 0.1144 7511 +7513 2 -12.835659897407055 -64.70609005072731 91.8722 0.1144 7512 +7514 2 -12.981453979608688 -63.55706746407495 92.0525 0.1144 7513 +7515 2 -13.257120018478389 -62.37596897323579 92.1413 0.1144 7514 +7516 2 -13.532157667595243 -61.196838790884165 92.2015 0.1144 7515 +7517 2 -13.807686147802372 -60.131848459868735 92.2645 0.1144 7516 +7518 2 -14.082362699511577 -59.179283838331195 92.332 0.1144 7517 +7519 2 -14.358337469976163 -58.23540588348471 92.4017 0.1144 7518 +7520 2 -14.63386595018332 -57.28411277970139 92.472 0.1144 7519 +7521 2 -14.89545174124504 -56.12271994243305 92.5417 0.1144 7520 +7522 2 -15.123668559057307 -54.947971854608845 92.6117 0.1144 7521 +7523 2 -15.331797088743002 -53.77678231990133 92.6814 0.1144 7522 +7524 2 -15.54023435002361 -52.6261242359931 92.7489 0.1144 7523 +7525 2 -15.749247635244359 -51.45534988894431 92.8133 0.1144 7524 +7526 2 -15.957290972080273 -50.28543236408231 92.8724 0.1144 7525 +7527 2 -16.166304257300965 -49.1171557861992 92.9242 0.1144 7526 +7528 2 -16.156972678138175 -48.01642417292115 92.9662 0.1144 7527 +7529 2 -15.602954265454912 -47.235280511916656 92.9863 0.1144 7528 +7530 2 -14.83286735929309 -45.971622461742214 92.9824 0.1144 7529 +7531 2 -14.063855133141573 -45.375513633468245 92.9564 0.1144 7530 +7532 2 -13.29434425091992 -44.33432160062933 92.9062 0.1144 7531 +7533 2 -12.526845170056305 -43.52602538589127 92.8276 0.1144 7532 +7534 2 -11.757780578092053 -42.92045198691097 92.7136 0.1144 7533 +7535 2 -10.989705473288296 -42.297890345037466 92.5574 0.1144 7534 +7536 2 -10.222515124019566 -41.17025923462049 92.351 0.1144 7535 +7537 2 -9.485221859703671 -40.45812001362886 92.0251 0.1144 7536 +7538 2 -8.777834292553194 -39.784957038913966 91.5368 0.1144 7537 +7539 2 -8.082470631019817 -39.11315627558657 90.9182 0.1144 7538 +7540 2 -7.392089594024441 -38.05476119411279 90.2079 0.1144 7539 +7541 2 -6.706297257122259 -37.247979119963624 89.4384 0.1144 7540 +7542 2 -5.857301558421597 -36.82226965954995 88.5682 0.1144 7541 +7543 2 -4.808063419147146 -37.104109884621494 87.7374 0.1144 7542 +7544 2 -3.7258125089267367 -37.03109800837177 86.9336 0.1144 7543 +7545 2 -2.6422196263508795 -37.47306613705237 86.1406 0.1144 7544 +7546 2 -1.5576567953901588 -37.91483840534236 85.3625 0.1144 7545 +7547 2 -0.4696542106333368 -37.84072934174883 84.6045 0.1144 7546 +7548 2 0.6205751020139587 -38.28301332366954 83.8712 0.1144 7547 +7549 2 1.716680312250702 -38.75549272276705 83.2146 0.1144 7548 +7550 2 2.815702310692842 -38.70091070686855 82.642 0.1144 7549 +7551 2 3.9185524767461857 -39.20509065833347 82.1288 0.1144 7550 +7552 2 5.024205394630172 -39.698447478874556 81.6536 0.1144 7551 +7553 2 6.131817748059433 -39.66382560262522 81.1964 0.1144 7552 +7554 2 7.218418708182327 -39.76544879739638 80.6411 0.1144 7553 +7555 2 8.331240942003149 -40.048330739731455 80.0954 0.1144 7554 +7556 2 9.425945326816901 -40.08417268677818 79.5841 0.1144 7555 +7557 2 10.49417246291344 -40.49797740001813 79.0056 0.1144 7556 +7558 2 11.549254063503241 -40.751591423547225 78.3479 0.1144 7557 +7559 2 12.529225704474356 -41.490146226095455 77.5698 0.1144 7558 +7560 2 13.465995863689784 -42.279516664273 76.6937 0.1144 7559 +7561 2 14.486556443150022 -42.31645169201474 75.7907 0.1144 7560 +7562 2 15.533464537644818 -42.87047382483798 74.8815 0.1144 7561 +7563 2 16.61125778951657 -43.19703032048458 73.9642 0.1144 7562 +7564 2 17.672382985967175 -42.73243755112212 73.0218 0.1144 7563 +7565 2 18.7341817108439 -42.90230762472374 72.0236 0.1144 7564 +7566 2 18.838601308039273 -43.752538233594436 70.721 0.1144 7565 +7567 2 18.5051014292807 -44.568126092295444 69.335 0.1144 7566 +7568 2 18.030514383964146 -45.21562708777526 67.7888 0.1144 7567 +7569 2 17.591906055354258 -45.83053134314046 65.627 0.1144 7568 +7570 2 15.25169683838753 -156.79984082847065 85.3196 0.1144 6157 +7571 2 14.147066234701128 -156.14414929811045 85.7338 0.1144 7570 +7572 2 13.042599908244341 -155.11012312181842 86.1017 0.1144 7571 +7573 2 11.969927833883261 -155.5842317662189 86.6841 0.1144 7572 +7574 2 11.930260603522726 -155.6402756134853 87.0873 0.1144 7573 +7575 2 11.671553737045087 -156.01499065621945 89.5448 0.1144 7574 +7576 2 11.288415163705778 -156.58321385642523 91.6667 0.1144 7575 +7577 2 10.61352071057101 -157.12978269383103 92.8332 0.1144 7576 +7578 2 9.90146435265919 -157.4993899687504 93.954 0.1144 7577 +7579 2 9.10277747931545 -159.37467430963216 94.9407 0.1144 7578 +7580 2 8.177310232853756 -159.64544100444377 95.6542 0.1144 7579 +7581 2 7.205280237379654 -159.61784559565476 96.1162 0.1144 7580 +7582 2 6.236102950502399 -160.49108773752582 96.4544 0.1144 7581 +7583 2 5.47995493936638 -161.87384320643994 96.6624 0.1144 7582 +7584 2 4.961189645217658 -162.648378436413 96.6224 0.1144 7583 +7585 2 4.486052300217921 -163.59734465131285 96.4012 0.1144 7584 +7586 2 4.012063901515219 -164.6911620907391 96.0616 0.1144 7585 +7587 2 3.7593432638713864 -165.73018368989008 95.6838 0.1144 7586 +7588 2 3.7137461545661523 -166.9603703166123 95.3277 0.1144 7587 +7589 2 3.6871321406904087 -168.20946278173818 95.0116 0.1144 7588 +7590 2 3.3248054473443176 -169.9008314704722 94.6814 0.1144 7589 +7591 2 2.7391570597949624 -171.25839055303135 94.3085 0.1144 7590 +7592 2 2.1802833472098797 -171.96781134109506 93.891 0.1144 7591 +7593 2 2.1230548716590647 -173.13124188933318 93.4522 0.1144 7592 +7594 2 2.331348371110991 -174.50109254580676 93.0191 0.1144 7593 +7595 2 2.6181481441293357 -175.90229593058942 92.57 0.1144 7594 +7596 2 3.104635138977855 -177.34337228445622 92.0237 0.1144 7595 +7597 2 3.683291397860728 -177.99101542209232 91.383 0.1144 7596 +7598 2 4.267685303134002 -178.86479085395837 90.6892 0.1144 7597 +7599 2 4.89788013456068 -180.14713515374805 90.0208 0.1144 7598 +7600 2 5.608647075886495 -181.23155725649053 89.4589 0.1144 7599 +7601 2 6.343782273837192 -182.67901669833503 89.01 0.1144 7600 +7602 2 6.877178394423126 -183.68802862584505 88.6906 0.1144 7601 +7603 2 6.872576175599178 -185.08415003929935 88.5256 0.1144 7602 +7604 2 6.765413668808378 -186.57888089175628 88.48 0.1144 7603 +7605 2 6.657760330927289 -187.7676039510558 88.5035 0.1144 7604 +7606 2 6.5481475575008545 -188.95651422429196 88.5564 0.1144 7605 +7607 2 6.439524271234873 -190.18136101160172 88.6116 0.1144 7606 +7608 2 6.26446246531583 -191.3168170976952 88.6231 0.1144 7607 +7609 2 5.974092885924335 -192.34542499901949 88.5422 0.1144 7608 +7610 2 5.665867256926319 -193.55548019743645 88.3814 0.1144 7609 +7611 2 5.356470041272402 -194.87125753060928 88.1636 0.1144 7610 +7612 2 5.04899943412677 -196.0322288947085 87.9124 0.1144 7611 +7613 2 4.710421817705807 -197.01781855703103 87.6509 0.1144 7612 +7614 2 4.296630125566125 -198.43765213693433 87.4062 0.1144 7613 +7615 2 3.874964762624998 -200.0283456787396 87.1903 0.1144 7614 +7616 2 3.450168377482669 -200.9156351091264 87.0061 0.1144 7615 +7617 2 3.0897634745518303 -201.87291313731873 86.8678 0.1144 7616 +7618 2 3.011381240917146 -203.07458510160487 86.8221 0.1144 7617 +7619 2 2.9672589392330764 -204.38454724369353 86.8546 0.1144 7618 +7620 2 3.0869597945726923 -205.66103539651112 86.9296 0.1144 7619 +7621 2 3.2873772141766295 -207.0499306335771 87.0232 0.1144 7620 +7622 2 3.4974128135949343 -208.45146728068127 87.1226 0.1144 7621 +7623 2 3.7064784646283755 -209.84095746948955 87.2169 0.1144 7622 +7624 2 3.916481237009563 -211.23868846605149 87.2981 0.1144 7623 +7625 2 4.1254945222303405 -212.63303912849182 87.3678 0.1144 7624 +7626 2 4.335582487461309 -214.02825247338015 87.4275 0.1144 7625 +7627 2 4.544201848237321 -215.1995253703526 87.4759 0.1144 7626 +7628 2 4.754237447655612 -216.33621659976916 87.507 0.1144 7627 +7629 2 4.964816243976912 -217.46865972679214 87.5143 0.1144 7628 +7630 2 5.173881895010354 -218.61284604681651 87.4894 0.1144 7629 +7631 2 5.383917494428644 -219.97528207732393 87.4264 0.1144 7630 +7632 2 5.528160093675851 -221.34691661446124 87.3068 0.1144 7631 +7633 2 5.232575833484759 -222.48852346737223 87.043 0.1144 7632 +7634 2 4.900813645047563 -224.02612681679807 86.6617 0.1144 7633 +7635 2 4.568654430582498 -225.35032851242403 86.2028 0.1144 7634 +7636 2 4.237197872157097 -226.35117378712783 85.7016 0.1144 7635 +7637 2 3.905793679544459 -227.32503827311854 85.1906 0.1144 7636 +7638 2 3.5654739631571175 -228.58036793677934 84.7028 0.1144 7637 +7639 2 3.0581158986684613 -230.02283782590087 84.3338 0.1144 7638 +7640 2 2.5454110106511223 -230.81343222017534 84.0549 0.1144 7639 +7641 2 2.0350297571698235 -231.99678871315584 83.8474 0.1144 7640 +7642 2 1.5226367023305158 -233.8637482802963 83.6965 0.1144 7641 +7643 2 1.009306526143419 -235.11769301009164 83.5884 0.1144 7642 +7644 2 0.4970510299666273 -235.91671449024068 83.5111 0.1144 7643 +7645 2 -0.01565075646763603 -236.72009768836477 83.4599 0.1144 7644 +7646 2 -0.5446211809337314 -237.4978871112615 83.4397 0.1144 7645 +7647 2 -1.182845868443735 -238.77570196336848 83.4963 0.1144 7646 +7648 2 -1.822360162496409 -240.61185358969277 83.6088 0.1144 7647 +7649 2 -2.4608521423516265 -241.28397220398938 83.7575 0.1144 7648 +7650 2 -3.0942763048189903 -241.90316997036103 84.1372 0.1144 7649 +7651 2 11.842322961055999 -155.13714821906447 86.9478 0.1144 7573 +7652 2 11.440600442708586 -153.81278070900458 87.5776 0.1144 7651 +7653 2 11.036295609692587 -152.48288655441152 88.1051 0.1144 7652 +7654 2 10.631138848178665 -151.13911728148702 88.6256 0.1144 7653 +7655 2 10.17979274669608 -149.69925485029194 89.1467 0.1144 7654 +7656 2 9.677125408248571 -148.2524427497811 89.6624 0.1144 7655 +7657 2 9.567871044237336 -146.97390524031286 90.1216 0.1144 7656 +7658 2 9.873076585825771 -145.9818728601396 90.4322 0.1144 7657 +7659 2 10.262843989019075 -145.064082878739 90.6307 0.1144 7658 +7660 2 10.658277873898982 -144.0878876869862 90.7558 0.1144 7659 +7661 2 10.942895778754064 -142.96145690247002 90.8768 0.1144 7660 +7662 2 11.151632880470913 -141.81727689768633 91.0414 0.1144 7661 +7663 2 11.372364162350891 -140.74228203765762 91.2604 0.1144 7662 +7664 2 11.608959231255 -139.4162847333598 91.5253 0.1144 7663 +7665 2 11.846215516949002 -137.64808696593275 91.8204 0.1144 7664 +7666 2 12.084047826583173 -135.88476774526544 92.1298 0.1144 7665 +7667 2 12.15632821483672 -134.67555449989993 92.4381 0.1144 7666 +7668 2 11.881649254081026 -133.55737266573246 92.7293 0.1144 7667 +7669 2 11.45774076086255 -133.04375623902672 93.0017 0.1144 7668 +7670 2 11.03471702317907 -132.1260632866152 93.27 0.1144 7669 +7671 2 10.671568948827542 -130.70909587498767 93.5547 0.1144 7670 +7672 2 10.339957044279572 -129.3199772257057 93.8647 0.1144 7671 +7673 2 10.011999820060169 -127.9465619828547 94.1987 0.1144 7672 +7674 2 9.682477084740185 -126.56468619288044 94.5549 0.1144 7673 +7675 2 9.392298535951142 -125.17038211220638 94.9346 0.1144 7674 +7676 2 9.16809198524544 -123.79967973547332 95.3414 0.1144 7675 +7677 2 8.97391156063864 -122.44587012941143 95.7678 0.1144 7676 +7678 2 8.782318961329963 -121.09234007242239 96.2041 0.1144 7677 +7679 2 8.59152592470653 -119.73996439444983 96.6417 0.1144 7678 +7680 2 8.472991145393195 -118.42612855290949 97.0662 0.1144 7679 +7681 2 8.400075885274589 -117.1361361064031 97.4655 0.1144 7680 +7682 2 8.333582128694957 -115.9747831848992 97.8331 0.1144 7681 +7683 2 8.268058320500245 -114.85120896692882 98.1635 0.1144 7682 +7684 2 8.201691196020164 -113.72408319367744 98.4553 0.1144 7683 +7685 2 8.164327883441416 -112.61141072665863 98.6597 0.1144 7684 +7686 2 8.150930290830132 -111.50913454340251 98.7526 0.1144 7685 +7687 2 8.144530225697935 -110.40909995941915 98.7532 0.1144 7686 +7688 2 8.138215353415575 -109.30855351203905 98.6922 0.1144 7687 +7689 2 7.992589342563178 -108.14500938198243 98.6807 0.1144 7688 +7690 2 7.965290500056227 -107.03374168622928 98.6975 0.1144 7689 +7691 2 8.009327608890459 -105.96050527324998 98.7305 0.1144 7690 +7692 2 8.202297830228787 -104.9845760211584 98.7798 0.1144 7691 +7693 2 8.310973482307446 -103.94799362193308 98.8434 0.1144 7692 +7694 2 8.282599959790161 -102.83400625402581 98.9192 0.1144 7693 +7695 2 8.062585083149912 -101.64120131944293 99.0038 0.1144 7694 +7696 2 7.6915437992211935 -100.42242450280145 99.1074 0.1144 7695 +7697 2 7.41209644792346 -99.21527726372373 99.2435 0.1144 7696 +7698 2 7.081997688663336 -98.00150205056084 99.5431 0.1144 7697 +7699 2 6.567482340927967 -97.34702679582695 99.8953 0.1144 7698 +7700 2 6.108025001752765 -96.88638081338392 100.2039 0.1144 7699 +7701 2 6.650630076305987 -95.03958489743638 100.4769 0.1144 7700 +7702 2 7.30578772022082 -94.29935320566409 100.7118 0.1144 7701 +7703 2 7.284869119981664 -94.36319910382025 101.3754 0.1144 7702 +7704 2 7.47543931610349 -94.9411390035126 103.616 0.1144 7703 +7705 2 8.122522249350482 -96.03511027565305 104.6539 0.1144 7704 +7706 2 8.9262785327968 -97.17466206609282 105.3083 0.1144 7705 +7707 2 9.827608371800636 -97.33664281907203 106.1908 0.1144 7706 +7708 2 10.752912827073231 -97.8133206648343 107.2534 0.1144 7707 +7709 2 11.74732781385859 -98.6786591496628 108.2785 0.1144 7708 +7710 2 12.798066485011134 -99.23589374215979 109.1748 0.1144 7709 +7711 2 13.867861825343425 -98.87498911017107 109.9781 0.1144 7710 +7712 2 14.94794827607572 -99.09466760361633 110.6907 0.1144 7711 +7713 2 16.046156985460186 -98.76166000958808 111.2994 0.1144 7712 +7714 2 17.09411333119371 -98.91295341846222 111.7785 0.1144 7713 +7715 2 17.920675585542455 -98.40694872281821 112.1882 0.1144 7714 +7716 2 18.52672951032983 -96.65460526881022 112.5429 0.1144 7715 +7717 2 19.07526525733175 -95.97767241652737 112.8632 0.1144 7716 +7718 2 19.65057567929796 -95.32404723231312 113.1432 0.1144 7717 +7719 2 20.6470016562524 -95.37047965474619 113.3955 0.1144 7718 +7720 2 21.353567020923123 -95.5985014482464 113.6117 0.1144 7719 +7721 2 21.666688975482145 -96.37074947589193 113.8318 0.1144 7720 +7722 2 21.927740181853466 -97.55651899371378 114.0955 0.1144 7721 +7723 2 22.185627538986523 -98.74232399644933 114.4156 0.1144 7722 +7724 2 22.267799881511763 -99.86165383364339 114.7726 0.1144 7723 +7725 2 22.346687253328838 -100.97281012008703 115.2869 0.1144 7724 +7726 2 22.43148816786541 -102.05582713855662 116.0124 0.1144 7725 +7727 2 22.51499327269306 -103.13661401842728 116.8661 0.1144 7726 +7728 2 22.59778169333501 -104.20892503490248 117.7826 0.1144 7727 +7729 2 22.679674431878937 -105.2770623823392 118.7133 0.1144 7728 +7730 2 22.75595236201238 -106.31981900429241 119.7568 0.1144 7729 +7731 2 22.80587145978535 -107.12453089017883 121.7185 0.1144 7730 +7732 2 7.03424899171938 -93.16037555110337 100.9162 0.1144 7702 +7733 2 7.123274820949035 -92.11585789821373 101.1595 0.1144 7732 +7734 2 7.546913647581562 -91.3102763974715 101.5168 0.1144 7733 +7735 2 7.982445024334879 -90.51335072789018 101.9712 0.1144 7734 +7736 2 8.48132784780367 -90.72518843184487 102.5352 0.1144 7735 +7737 2 9.488220529713658 -90.02651360670421 103.7529 0.1144 7736 +7738 2 10.514412549876312 -89.95987654058082 104.6576 0.1144 7737 +7739 2 11.575709534784721 -90.13885876382743 105.2856 0.1144 7738 +7740 2 12.620243948987849 -89.33913494300928 106.0091 0.1144 7739 +7741 2 13.460696840421093 -88.83017743912356 106.8404 0.1144 7740 +7742 2 14.120202924402804 -88.04058580094865 107.7672 0.1144 7741 +7743 2 14.77262628805559 -86.58947690185968 108.74 0.1144 7742 +7744 2 15.182741067955874 -85.84836491866623 109.6878 0.1144 7743 +7745 2 15.400591206162034 -84.97370785373694 110.6003 0.1144 7744 +7746 2 15.581244203507566 -84.03854743536047 111.5514 0.1144 7745 +7747 2 15.749682583527942 -83.10203863398974 112.5606 0.1144 7746 +7748 2 16.061733687002032 -82.28332871079651 113.645 0.1144 7747 +7749 2 16.487941208605008 -81.55450415520929 114.8034 0.1144 7748 +7750 2 16.912010296750367 -80.2781575051157 115.9976 0.1144 7749 +7751 2 17.311840169416882 -78.97280630767189 117.1786 0.1144 7750 +7752 2 17.6273607521411 -78.14593916880429 118.2586 0.1144 7751 +7753 2 17.90728183960576 -77.27823844788227 119.2632 0.1144 7752 +7754 2 18.18928899471527 -76.40101866676405 120.2356 0.1144 7753 +7755 2 18.02761380066096 -75.892684872484 121.9232 0.1144 7754 +7756 2 17.10245899092456 -75.52992314146685 123.5654 0.1144 7755 +7757 2 16.219409680299947 -76.2393241466275 125.3445 0.1144 7756 +7758 2 15.27349505460947 -75.70760848317467 126.8632 0.1144 7757 +7759 2 14.278405136639861 -75.04990056061807 128.0888 0.1144 7758 +7760 2 13.255110276917662 -75.01324255372838 129.1391 0.1144 7759 +7761 2 12.435814351261342 -74.38494879566632 129.9264 0.1144 7760 +7762 2 11.99894242203149 -73.20787347506997 130.3652 0.1144 7761 +7763 2 11.637486490880065 -72.0226201237677 130.562 0.1144 7762 +7764 2 11.114948199884964 -71.33062535679059 130.6189 0.1144 7763 +7765 2 10.00876239613558 -71.34381007947385 130.6654 0.1144 7764 +7766 2 8.86693124823185 -70.95101790092916 130.7376 0.1144 7765 +7767 2 7.726070048712899 -71.29912178866664 130.8574 0.1144 7766 +7768 2 6.586019338442156 -71.16561463228221 131.0282 0.1144 7767 +7769 2 5.447352039776632 -70.77817825942256 131.2366 0.1144 7768 +7770 2 4.30863237529843 -71.37890353499411 131.4681 0.1144 7769 +7771 2 3.1709873908305326 -70.98796740014474 131.7112 0.1144 7770 +7772 2 2.0332048476999773 -70.60350595306488 131.9646 0.1144 7771 +7773 2 0.9027644152525056 -71.02367013211502 132.2642 0.1144 7772 +7774 2 -0.21651866606231351 -70.39846731571959 132.6052 0.1144 7773 +7775 2 -1.3353554571196469 -69.77818449407907 132.9661 0.1144 7774 +7776 2 -2.4524477391641426 -70.12805727188399 133.327 0.1144 7775 +7777 2 -3.4628541513615403 -69.2296256175715 133.63 0.1144 7776 +7778 2 -4.2990515914587775 -68.16033628961048 133.8403 0.1144 7777 +7779 2 -5.136408904416044 -67.49727655435846 134.0587 0.1144 7778 +7780 2 7.493122131160021 -89.8014993425243 102.3039 0.1144 7735 +7781 2 6.704186396691426 -88.65891663234368 102.8045 0.1144 7780 +7782 2 5.914313540875071 -88.16527723990758 103.2984 0.1144 7781 +7783 2 5.124355492208906 -87.59860497758328 103.789 0.1144 7782 +7784 2 4.33327822269959 -86.45571201488407 104.2642 0.1144 7783 +7785 2 3.815252649000996 -85.27564376311784 104.8065 0.1144 7784 +7786 2 3.4464911513121024 -84.13069412808989 105.4099 0.1144 7785 +7787 2 2.9653478784092613 -82.94326848681678 105.9489 0.1144 7786 +7788 2 2.2874888993926845 -82.28398369680012 106.3168 0.1144 7787 +7789 2 1.5708757859314062 -81.74031495638704 106.5277 0.1144 7788 +7790 2 0.8505227992917526 -80.56486847645269 106.6047 0.1144 7789 +7791 2 0.35720875735992763 -79.35905432883335 106.5994 0.1144 7790 +7792 2 0.02158968728846844 -78.1593138401662 106.5588 0.1144 7791 +7793 2 -0.29059824750584085 -76.97040671807223 106.5067 0.1144 7792 +7794 2 -0.6831112311663503 -75.7742079611861 106.4106 0.1144 7793 +7795 2 -1.4880335906389632 -75.29909921556113 106.0464 0.1144 7794 +7796 2 -1.2807239439229363 -74.63134743179316 105.7148 0.1144 7795 +7797 2 -0.7697111991057 -73.62002852848735 105.4623 0.1144 7796 +7798 2 -0.25478268478099153 -72.83765638769448 105.4178 0.1144 7797 +7799 2 0.6223587888530062 -72.51414033733042 105.315 0.1144 7798 +7800 2 1.6552292938622202 -71.80201471171922 105.11 0.1144 7799 +7801 2 2.7610981502738525 -71.64760644182562 104.8569 0.1144 7800 +7802 2 3.8957551818326976 -72.02893439142167 104.6013 0.1144 7801 +7803 2 5.0288179831253785 -71.65023631167325 104.2924 0.1144 7802 +7804 2 6.060665961152637 -72.38171038093621 103.7593 0.1144 7803 +7805 2 7.154630044796676 -73.09635947219965 103.3477 0.1144 7804 +7806 2 8.263588164701105 -72.9532109296138 103.0492 0.1144 7805 +7807 2 9.395591699202697 -73.36401290140597 102.8426 0.1144 7806 +7808 2 10.528223925230748 -73.68044719453263 102.7141 0.1144 7807 +7809 2 11.658531824186156 -72.94293558850663 102.6556 0.1144 7808 +7810 2 12.743116182542963 -73.03077005167589 102.6474 0.1144 7809 +7811 2 13.828414123502455 -72.10896992257756 102.6474 0.1144 7810 +7812 2 14.913050847672025 -72.19129358649265 102.6474 0.1144 7811 +7813 2 -2.3282230848141126 -74.9763883001365 105.8781 0.1144 7795 +7814 2 -3.3474043605405654 -74.05729364480358 105.77 0.1144 7813 +7815 2 -3.4110419161772825 -73.27063001155669 105.2072 0.1144 7814 +7816 2 -3.5535301038219416 -72.17697053386622 104.2986 0.1144 7815 +7817 2 -3.9166480442715397 -71.08184139554622 103.2304 0.1144 7816 +7818 2 -4.398404293708012 -69.97414994043639 102.2333 0.1144 7817 +7819 2 -4.888271780837158 -69.09989217825058 101.3295 0.1144 7818 +7820 2 -5.38335394876583 -68.55538748614075 100.5256 0.1144 7819 +7821 2 -5.917237106322432 -67.53451466338242 99.825 0.1144 7820 +7822 2 -6.6534737028504765 -66.45932571142687 99.1995 0.1144 7821 +7823 2 -7.593155832178212 -65.5235464761016 98.6905 0.1144 7822 +7824 2 -8.639439644791565 -65.28981686900373 98.3433 0.1144 7823 +7825 2 -9.747926158629639 -65.09478805648669 97.9188 0.1144 7824 +7826 2 -10.85809620345512 -64.56766584203474 97.3384 0.1144 7825 +7827 2 -11.915445971185221 -64.42143299582578 96.7338 0.1144 7826 +7828 2 -12.96765124619418 -63.98393201478185 96.1428 0.1144 7827 +7829 2 -13.374502755054095 -63.50122886314148 93.996 0.1144 7828 +7830 2 -14.205649099044791 -63.40260076523217 93.1664 0.1144 7829 +7831 2 -15.065127709424274 -62.37150820579504 92.8043 0.1144 7830 +7832 2 -15.91700304293056 -61.330528701638954 92.447 0.1144 7831 +7833 2 -16.770476714574528 -60.30594544971671 92.0889 0.1144 7832 +7834 2 -17.619940119111845 -60.104138526160476 91.593 0.1144 7833 +7835 2 -18.3895032433513 -59.20542485330939 90.3073 0.1144 7834 +7836 2 -13.006979208316835 -64.84798485869779 95.9918 0.1144 7828 +7837 2 -13.108839432411827 -65.90982528841145 96.206 0.1144 7836 +7838 2 -13.219744913964064 -66.96515343124831 96.549 0.1144 7837 +7839 2 -13.331854809209318 -68.27340503325419 96.9136 0.1144 7838 +7840 2 -13.58996843302836 -69.75831823909046 97.144 0.1144 7839 +7841 2 -13.956563475773208 -70.87522303791489 97.1594 0.1144 7840 +7842 2 -14.336709597569069 -71.77784009599195 96.9996 0.1144 7841 +7843 2 -14.405109452398648 -72.86348663894353 96.8859 0.1144 7842 +7844 2 -14.851328374010535 -72.71096637411742 96.4625 0.1144 7843 +7845 2 -15.941843103042459 -72.34468258050595 95.7118 0.1144 7844 +7846 2 -17.077399610818986 -72.94436549599251 95.4089 0.1144 7845 +7847 2 -18.21228118741132 -72.41024166569836 95.1667 0.1144 7846 +7848 2 -19.342069613121993 -71.91949570720223 95.0468 0.1144 7847 +7849 2 -20.47145860375835 -72.17267751349375 95.053 0.1144 7848 +7850 2 -21.598888158849377 -71.54727560028594 95.1784 0.1144 7849 +7851 2 -22.719596783555744 -71.19044401572647 95.4229 0.1144 7850 +7852 2 -23.811868723999623 -71.18155156046033 95.8135 0.1144 7851 +7853 2 -24.872793395141827 -70.400027847996 96.3514 0.1144 7852 +7854 2 -25.923559791149813 -69.80483557973055 96.9671 0.1144 7853 +7855 2 -26.972727849020032 -69.82927496268796 97.6032 0.1144 7854 +7856 2 -27.986679723264245 -68.97587356008184 98.1691 0.1144 7855 +7857 2 -28.83137783884257 -67.94860269687265 98.5326 0.1144 7856 +7858 2 -29.566871725154442 -67.3202810592729 98.6563 0.1144 7857 +7859 2 -30.292474628677184 -66.61834710114134 98.5944 0.1144 7858 +7860 2 -31.016840291470004 -65.48708765998633 98.4124 0.1144 7859 +7861 2 -31.80974485379548 -64.3925960856335 98.191 0.1144 7860 +7862 2 -32.71042717271877 -63.483766144080654 98.0109 0.1144 7861 +7863 2 -33.65404599540287 -63.30172579027055 97.9101 0.1144 7862 +7864 2 -34.60037927548467 -62.32796592033883 97.8866 0.1144 7863 +7865 2 -35.54773486976404 -61.3703063500278 97.9325 0.1144 7864 +7866 2 -36.41849097612095 -60.82709744072676 98.0434 0.1144 7865 +7867 2 -37.21478292642982 -60.11131632001162 98.219 0.1144 7866 +7868 2 -37.99014086328023 -59.02528073251244 98.4598 0.1144 7867 +7869 2 -38.762334950892466 -57.935677723087046 98.7669 0.1144 7868 +7870 2 -39.32196667509615 -56.81675495558515 99.3331 0.1144 7869 +7871 2 -39.68001749069458 -55.86908534605922 100.2635 0.1144 7870 +7872 2 -39.99213936296681 -55.0544934640558 101.3838 0.1144 7871 +7873 2 -40.159169294519046 -54.05276945257622 102.305 0.1144 7872 +7874 2 -40.243033087707886 -52.886998443615724 103.0336 0.1144 7873 +7875 2 -40.328553788013295 -51.76471061824794 103.6087 0.1144 7874 +7876 2 -40.41393072648995 -50.65593303192696 104.3302 0.1144 7875 +7877 2 -13.40931346305453 -73.54020897112207 96.8257 0.1144 7843 +7878 2 -12.342274634895091 -73.45551153586582 96.8246 0.1144 7877 +7879 2 -11.276387854615876 -73.99961694797919 96.8856 0.1144 7878 +7880 2 -10.209925050396464 -74.08988396408462 96.9903 0.1144 7879 +7881 2 -10.288753361504263 -74.28495025481581 97.4512 0.1144 7880 +7882 2 -10.564325707128404 -74.96025799561787 99.2785 0.1144 7881 +7883 2 -10.83562118583734 -75.93930006270905 101.1013 0.1144 7882 +7884 2 -11.14551023886986 -77.30793217006706 102.4626 0.1144 7883 +7885 2 -11.694298948297217 -77.93558878935511 104.0922 0.1144 7884 +7886 2 -12.675697049958984 -77.78861375313275 105.2803 0.1144 7885 +7887 2 -13.735104467941909 -77.90420832312748 106.2048 0.1144 7886 +7888 2 -14.81639463983052 -77.22843118098724 106.9404 0.1144 7887 +7889 2 -15.775582036674592 -77.409678252527 107.3722 0.1144 7888 +7890 2 -16.645493234031306 -78.7138159959463 107.4906 0.1144 7889 +7891 2 -17.508230315043136 -79.07256452362881 107.434 0.1144 7890 +7892 2 -18.418650058447184 -79.35750245857525 107.5281 0.1144 7891 +7893 2 -19.301505561487488 -80.5601124878367 108.2567 0.1144 7892 +7894 2 -9.441046263058013 -74.14244264861009 97.1404 0.1144 7880 +7895 2 -8.335058978311565 -74.43828350493192 97.3048 0.1144 7894 +7896 2 -7.22289626245572 -74.07869487398699 97.3837 0.1144 7895 +7897 2 -6.140144304803613 -74.87570451969495 97.4137 0.1144 7896 +7898 2 -5.027688270572099 -75.49865874711561 97.5078 0.1144 7897 +7899 2 -3.976591000047705 -74.5651264083643 97.8606 0.1144 7898 +7900 2 -2.998047412482066 -74.44996427036361 98.4774 0.1144 7899 +7901 2 -1.901969625327041 -74.68610895311318 98.9901 0.1144 7900 +7902 2 -0.7788703862634918 -73.97140515214193 99.3852 0.1144 7901 +7903 2 0.34890584732619345 -74.28678915265286 99.6702 0.1144 7902 +7904 2 1.4725656971105536 -74.36806113186924 99.8438 0.1144 7903 +7905 2 2.420705955413922 -73.30802278258678 99.9432 0.1144 7904 +7906 2 3.3241336819684477 -72.99551519058485 100.0028 0.1144 7905 +7907 2 4.249709045727258 -72.71698752073385 100.0502 0.1144 7906 +7908 2 5.289668474231576 -71.67477018582848 100.0633 0.1144 7907 +7909 2 6.350662522263292 -71.68261029939069 100.0378 0.1144 7908 +7910 2 7.385139977622828 -71.6227478046952 99.9412 0.1144 7909 +7911 2 8.38381801596168 -70.49656770089696 99.7494 0.1144 7910 +7912 2 9.374514550290485 -70.33846366828507 99.503 0.1144 7911 +7913 2 10.365572182026995 -70.18409659035848 99.2569 0.1144 7912 +7914 2 11.35587169032803 -69.05476019563972 99.0643 0.1144 7913 +7915 2 12.132865420489537 -68.54801715412421 99.0508 0.1144 7914 +7916 2 12.654700758813988 -67.46462149150126 99.2746 0.1144 7915 +7917 2 12.843534773482702 -66.11325841266002 99.7716 0.1144 7916 +7918 2 13.931625954446076 -66.13758155533814 101.4546 0.1144 7917 +7919 2 14.95786282919326 -66.34692104935183 102.6077 0.1144 7918 +7920 2 15.987610622440286 -65.95711405673642 103.7313 0.1144 7919 +7921 2 17.02190567653082 -65.83046939802843 104.8286 0.1144 7920 +7922 2 18.064553927165235 -66.1227106258807 105.954 0.1144 7921 +7923 2 19.081584067034925 -66.23586030432891 107.1568 0.1144 7922 +7924 2 20.1481002313773 -66.2717843279054 108.1016 0.1144 7923 +7925 2 21.236534385708865 -66.81235247620509 108.8998 0.1144 7924 +7926 2 22.337356644648338 -66.93115487855277 109.58 0.1144 7925 +7927 2 23.446608082928435 -67.03212861376629 110.0803 0.1144 7926 +7928 2 24.54524365046899 -67.7361960361368 110.3295 0.1144 7927 +7929 2 25.61402388605825 -68.11908558404171 110.4356 0.1144 7928 +7930 2 26.62871336833703 -68.47839060758311 110.5633 0.1144 7929 +7931 2 27.769117664787217 -68.97316523975306 110.6515 0.1144 7930 +7932 2 28.8928158522383 -68.74293438328894 110.6773 0.1144 7931 +7933 2 30.016781332034526 -68.46744007926101 110.6692 0.1144 7932 +7934 2 31.13945720528801 -68.69275472593414 110.6434 0.1144 7933 +7935 2 32.26182434694661 -68.20894082825262 110.5003 0.1144 7934 +7936 2 12.51935106066773 -66.16624906000169 99.0416 0.1144 7917 +7937 2 11.702626239028376 -65.49007068728666 100.263 0.1144 7936 +7938 2 10.817717003649875 -64.7136156200562 100.8602 0.1144 7937 +7939 2 9.936547641449778 -64.4297588788442 101.523 0.1144 7938 +7940 2 9.059043886141126 -63.4527964870785 102.2507 0.1144 7939 +7941 2 8.187548171151121 -62.48973126602616 103.0072 0.1144 7940 +7942 2 7.376885756241677 -61.69883251161655 103.7481 0.1144 7941 +7943 2 6.652846647309616 -61.26157625160913 104.4364 0.1144 7942 +7944 2 5.912641222924606 -60.1937227085613 105.0652 0.1144 7943 +7945 2 5.159559964424602 -59.1307099772148 105.6457 0.1144 7944 +7946 2 4.405635389639286 -58.06489864411566 106.1956 0.1144 7945 +7947 2 3.65077369350621 -57.43217802661417 106.7312 0.1144 7946 +7948 2 3.054170681537414 -56.684695829053254 107.3106 0.1144 7947 +7949 2 2.5274085819764025 -55.555153078989676 107.9523 0.1144 7948 +7950 2 2.0025644787109798 -54.42680472387255 108.6243 0.1144 7949 +7951 2 1.3712207009870951 -53.36271008512244 109.3 0.1144 7950 +7952 2 0.40001471349197004 -52.53151607445557 109.9386 0.1144 7951 +7953 2 -0.5733328090439329 -52.41879303294229 110.553 0.1144 7952 +7954 2 -1.4953467829787428 -51.62619243788244 111.622 0.1144 7953 +7955 2 -3.390988461393192 -74.00047148416922 107.0297 0.1144 7814 +7956 2 -4.0115475925134945 -73.18804669653248 108.3096 0.1144 7955 +7957 2 -4.835045094824807 -72.66030715849742 108.7559 0.1144 7956 +7958 2 -5.663040593749997 -72.04526819253398 109.1202 0.1144 7957 +7959 2 -6.489575313200049 -70.9614666555379 109.5021 0.1144 7958 +7960 2 -7.332711711797458 -69.89873553279317 109.8451 0.1144 7959 +7961 2 -8.260519805806808 -69.41641774314682 109.9832 0.1144 7960 +7962 2 -9.213219122031774 -68.88434272329029 109.8913 0.1144 7961 +7963 2 -10.04305052598582 -67.80961480324068 109.7723 0.1144 7962 +7964 2 -10.692047045883328 -66.6528536133857 109.821 0.1144 7963 +7965 2 -11.329595684103793 -65.4978602819501 110.0268 0.1144 7964 +7966 2 -11.964820687788205 -65.06894072479746 110.3623 0.1144 7965 +7967 2 -12.598050327307135 -64.12045472762048 110.7932 0.1144 7966 +7968 2 -13.227487727834955 -62.97545813894897 111.2706 0.1144 7967 +7969 2 -13.833517610069663 -62.20580928634644 112.1831 0.1144 7968 +7970 2 30.65078924919987 -443.28022016061516 52.1797 0.1144 3447 +7971 2 30.732410901278925 -444.54178607837355 52.8724 0.1144 7970 +7972 2 30.24166234091753 -445.57236295365004 53.2683 0.1144 7971 +7973 2 29.678114735389435 -447.33663468415614 53.5293 0.1144 7972 +7974 2 29.195530471069986 -448.8966460646148 53.748 0.1144 7973 +7975 2 28.767622602502144 -449.81542434425626 53.9302 0.1144 7974 +7976 2 28.428598695823755 -450.83408312326236 54.1064 0.1144 7975 +7977 2 28.23291091550466 -451.995867089998 54.2696 0.1144 7976 +7978 2 28.166385303370582 -453.26841858995806 54.406 0.1144 7977 +7979 2 28.066443075571154 -454.5151278164854 54.549 0.1144 7978 +7980 2 27.953975184501406 -455.7524677007724 54.7039 0.1144 7979 +7981 2 27.91440014366082 -457.0495523627711 54.8411 0.1144 7980 +7982 2 27.919648160912843 -458.37871054862273 54.9531 0.1144 7981 +7983 2 27.996573688138007 -459.75480945473635 55.0404 0.1144 7982 +7984 2 28.131592032015615 -461.16881081486235 55.1102 0.1144 7983 +7985 2 28.283408182681974 -462.5942488882263 55.1729 0.1144 7984 +7986 2 28.416252164481826 -464.0067870637491 55.3112 0.1144 7985 +7987 2 28.53041317023426 -465.4037912381989 55.606 0.1144 7986 +7988 2 28.822912251976394 -466.882019295997 55.9857 0.1144 7987 +7989 2 29.24540140496944 -468.40847677578165 56.3385 0.1144 7988 +7990 2 29.75020476782802 -468.75954056863236 56.6398 0.1144 7989 +7991 2 30.242857592969912 -469.5622429316578 56.9164 0.1144 7990 +7992 2 30.719376929696004 -471.07752020343014 57.1813 0.1144 7991 +7993 2 31.186545378952946 -472.62291428460543 57.4118 0.1144 7992 +7994 2 31.495663269571512 -473.43111700097757 57.6484 0.1144 7993 +7995 2 31.719062432612088 -474.2954703368563 57.9816 0.1144 7994 +7996 2 31.85501479625432 -475.3280603469978 58.3041 0.1144 7995 +7997 2 31.998540711315737 -476.4444273396095 58.6292 0.1144 7996 +7998 2 32.306633186153675 -477.92998080202045 59.0016 0.1144 7997 +7999 2 32.758878071317355 -479.5225861733264 59.3701 0.1144 7998 +8000 2 33.2771332922311 -480.81439424099653 59.6518 0.1144 7999 +8001 2 33.3759737078625 -481.9672778685277 59.8472 0.1144 8000 +8002 2 33.36362514287322 -483.3495921515208 59.9774 0.1144 8001 +8003 2 33.30725229524383 -484.81510536210754 60.0575 0.1144 8002 +8004 2 33.359145247471176 -486.07848350838225 60.1062 0.1144 8003 +8005 2 33.488017992367624 -487.1957856681156 60.1482 0.1144 8004 +8006 2 33.43605484691916 -488.64719233135486 60.1992 0.1144 8005 +8007 2 33.454266992719134 -489.9807571201229 60.2596 0.1144 8006 +8008 2 33.605454753632635 -491.060180266901 60.3506 0.1144 8007 +8009 2 33.54235718149887 -492.53211698531084 60.569 0.1144 8008 +8010 2 32.99191436476437 -494.54983981624304 60.7894 0.1144 8009 +8011 2 32.16037017841428 -494.97644035832377 60.9025 0.1144 8010 +8012 2 31.50846467817057 -496.46458689785356 60.9081 0.1144 8011 +8013 2 31.297319441604454 -498.1734486616011 60.5489 0.1144 8012 +8014 2 31.04589151208647 -499.91954711198235 60.1362 0.1144 8013 +8015 2 30.738277143112143 -501.07199490653477 59.645 0.1144 8014 +8016 2 30.47552416989698 -502.1990808202194 58.9467 0.1144 8015 +8017 2 30.172788717808483 -503.28437719183233 57.8813 0.1144 8016 +8018 2 29.553954764567035 -504.4835769630061 56.7372 0.1144 8017 +8019 2 28.926490402161953 -506.4076509837549 55.8186 0.1144 8018 +8020 2 28.355627327506753 -507.13289850601393 55.1029 0.1144 8019 +8021 2 27.783824722457304 -507.88092341501044 54.5434 0.1144 8020 +8022 2 27.312911878560016 -508.77781331665744 54.1722 0.1144 8021 +8023 2 27.300471917554734 -510.14614049288247 54.0602 0.1144 8022 +8024 2 27.762461614632304 -511.75305572757617 54.0854 0.1144 8023 +8025 2 28.541526597624102 -513.3608644333344 54.0688 0.1144 8024 +8026 2 29.376384379716146 -513.893388119391 53.9994 0.1144 8025 +8027 2 30.21209409030613 -514.5415419364964 53.9098 0.1144 8026 +8028 2 31.034707529619027 -515.6738792744818 53.8605 0.1144 8027 +8029 2 31.811578611757344 -515.871829637474 53.9773 0.1144 8028 +8030 2 32.47949975280169 -517.2293059738187 54.3421 0.1144 8029 +8031 2 32.58088554819319 -518.498911694551 54.9889 0.1144 8030 +8032 2 31.97663257643972 -519.3909641322482 55.8547 0.1144 8031 +8033 2 31.480386629714317 -520.375622110023 56.9089 0.1144 8032 +8034 2 31.16993937500749 -522.0229454210202 58.1 0.1144 8033 +8035 2 31.291029436670524 -523.1072233907795 58.9963 0.1144 8034 +8036 2 31.898583390756087 -524.0964069196426 59.6378 0.1144 8035 +8037 2 32.39148878756049 -525.4323706537762 60.109 0.1144 8036 +8038 2 32.12225204240397 -526.5977197372683 60.4766 0.1144 8037 +8039 2 31.531119272663368 -527.6313466157058 60.7818 0.1144 8038 +8040 2 30.90800024874202 -529.4437023279374 61.0742 0.1144 8039 +8041 2 30.03084956505498 -530.2507897155563 61.5818 0.1144 8040 +8042 2 29.05042011569417 -531.2904449914754 62.312 0.1144 8041 +8043 2 28.774865894109446 -532.3400255963517 63.9542 0.1144 8042 +8044 2 28.313018130533738 -533.3567457993962 64.8757 0.1144 8043 +8045 2 27.819913801135797 -534.2313168883394 65.2646 0.1144 8044 +8046 2 27.32440374593507 -535.1105376844833 65.6379 0.1144 8045 +8047 2 26.831214223687304 -536.0524330919534 66.0576 0.1144 8046 +8048 2 26.338470991696997 -537.2512965232962 66.5095 0.1144 8047 +8049 2 25.846121684151438 -538.9769905920929 66.9813 0.1144 8048 +8050 2 25.3536871837561 -540.7054922687154 67.4598 0.1144 8049 +8051 2 24.89663415050472 -541.6283355019623 67.9358 0.1144 8050 +8052 2 24.541569867936445 -542.8479382941532 68.3973 0.1144 8051 +8053 2 24.092757113523763 -544.2217817735549 69.0119 0.1144 8052 +8054 2 23.815477602243227 -545.9799459202919 69.643 0.1144 8053 +8055 2 23.864691333156404 -547.2848269817483 70.0857 0.1144 8054 +8056 2 23.92473075915991 -548.5702432303375 70.4102 0.1144 8055 +8057 2 23.982449652210413 -549.8269315277817 70.649 0.1144 8056 +8058 2 23.981369970985895 -551.2089761553393 70.842 0.1144 8057 +8059 2 23.278077863791854 -553.0977867201624 71.1024 0.1144 8058 +8060 2 22.55919787413157 -553.6577146666403 71.4426 0.1144 8059 +8061 2 22.801881654742083 -555.0003654003447 71.855 0.1144 8060 +8062 2 23.081777705343846 -556.5858457885878 72.3744 0.1144 8061 +8063 2 23.356892029794018 -557.8503520781052 72.9254 0.1144 8062 +8064 2 23.61393296905874 -558.913818623984 73.3972 0.1144 8063 +8065 2 23.559290602296173 -560.3403478925952 73.8186 0.1144 8064 +8066 2 23.19348891907031 -562.0155121248824 74.2286 0.1144 8065 +8067 2 22.777828494864693 -563.0634372571012 74.6365 0.1144 8066 +8068 2 22.36114575646154 -564.2093563593999 75.0518 0.1144 8067 +8069 2 22.04020616153156 -565.6020359055611 75.4886 0.1144 8068 +8070 2 21.78009407196396 -567.0205218287447 75.9508 0.1144 8069 +8071 2 21.527770460347902 -568.3141369471764 76.4299 0.1144 8070 +8072 2 21.277406284277227 -569.4964538380781 76.9188 0.1144 8071 +8073 2 21.02544377006886 -570.6775795787408 77.4161 0.1144 8072 +8074 2 20.776016715345953 -571.8607813316987 77.9212 0.1144 8073 +8075 2 20.524500491395113 -573.1627283236849 78.4336 0.1144 8074 +8076 2 20.48469339429288 -574.5711553047576 78.9692 0.1144 8075 +8077 2 20.56032001022609 -575.8793653767634 79.5256 0.1144 8076 +8078 2 20.649941681117486 -577.3553061367328 80.0974 0.1144 8077 +8079 2 20.735547574272694 -578.8195567737444 80.6803 0.1144 8078 +8080 2 20.72118651538877 -580.2152776231126 81.2647 0.1144 8079 +8081 2 20.68890842887293 -581.5963582581564 81.8485 0.1144 8080 +8082 2 20.656492783694542 -582.9779140813305 82.4281 0.1144 8081 +8083 2 20.623735579884194 -584.3619579556777 83.0026 0.1144 8082 +8084 2 20.59203351730844 -585.7464282733563 83.5716 0.1144 8083 +8085 2 20.559276313498092 -587.1358166184729 84.135 0.1144 8084 +8086 2 20.527127960664924 -588.5230274170174 84.6902 0.1144 8085 +8087 2 20.49566036339728 -589.9094614180707 85.2342 0.1144 8086 +8088 2 20.36019600820825 -591.2096941755183 85.7668 0.1144 8087 +8089 2 20.03979650859822 -592.7055995366708 86.2753 0.1144 8088 +8090 2 19.693777483487214 -594.2559630736091 86.749 0.1144 8089 +8091 2 19.676158770302553 -595.5954072209363 87.1825 0.1144 8090 +8092 2 20.519432727562464 -596.4195256865067 87.5283 0.1144 8091 +8093 2 21.3536700395778 -597.953316741854 88.0636 0.1144 8092 +8094 2 22.207081401306425 -554.3309420773711 71.0475 0.1144 8060 +8095 2 21.581012762142713 -555.40190190408 70.4833 0.1144 8094 +8096 2 20.94478894942777 -556.0780802070533 70.2176 0.1144 8095 +8097 2 20.310215840663297 -557.6960328253829 69.9373 0.1144 8096 +8098 2 19.675951463493668 -558.8469195997429 69.6301 0.1144 8097 +8099 2 19.040802330789052 -559.7225747198361 69.3132 0.1144 8098 +8100 2 18.406537953619484 -561.7069370588005 69.0099 0.1144 8099 +8101 2 17.770942530657404 -562.9987289493324 68.7355 0.1144 8100 +8102 2 17.13537993473237 -563.6913894348284 68.493 0.1144 8101 +8103 2 16.498401100165108 -564.9821227032232 68.2836 0.1144 8102 +8104 2 15.743560517837533 -565.662733572413 68.1545 0.1144 8103 +8105 2 14.729811359457042 -566.8134142620939 68.4317 0.1144 8104 +8106 2 28.52260095758243 -532.1198574475496 62.5853 0.1144 8042 +8107 2 27.60169948676652 -532.2426899237927 62.8978 0.1144 8106 +8108 2 26.67745516880012 -532.5303763443706 63.0204 0.1144 8107 +8109 2 25.75130378110117 -534.0331183712227 62.9955 0.1144 8108 +8110 2 24.826122341787 -534.7146552534975 62.8538 0.1144 8109 +8111 2 23.902815145168365 -536.1021801984949 62.6475 0.1144 8110 +8112 2 22.97901711745942 -537.0317186422656 62.4336 0.1144 8111 +8113 2 22.05482516530574 -537.6244614023107 62.2331 0.1144 8112 +8114 2 21.130666040189162 -537.8264986529676 62.0511 0.1144 8113 +8115 2 20.20482338408514 -539.4833744256498 61.8946 0.1144 8114 +8116 2 19.280270334523763 -539.6984436017432 61.7722 0.1144 8115 +8117 2 18.530858666991687 -541.769604427406 61.7078 0.1144 8116 +8118 2 18.02024294820226 -543.0361018172832 61.7268 0.1144 8117 +8119 2 17.574341471365436 -543.9956779177915 61.8204 0.1144 8118 +8120 2 17.193437226134016 -545.0898620686457 62.0374 0.1144 8119 +8121 2 16.928149485970067 -546.440180571101 62.4666 0.1144 8120 +8122 2 16.724876535132168 -547.7870786279803 63.0888 0.1144 8121 +8123 2 16.6065265433068 -549.1595491692988 63.6734 0.1144 8122 +8124 2 16.811532663003987 -550.5299829437703 63.8081 0.1144 8123 +8125 2 16.748455606271193 -551.8690910455332 63.5964 0.1144 8124 +8126 2 16.2449780752065 -553.0580462156437 63.429 0.1144 8125 +8127 2 15.685801834192675 -554.068887992994 63.3494 0.1144 8126 +8128 2 15.12733917578153 -555.8879209483949 63.3744 0.1144 8127 +8129 2 14.986786079355861 -557.2765298228668 63.5256 0.1144 8128 +8130 2 15.353188706425106 -558.1798880975674 63.7694 0.1144 8129 +8131 2 15.51016578700513 -559.3559273053874 64.0713 0.1144 8130 +8132 2 15.336525730357971 -560.8994699166714 64.4003 0.1144 8131 +8133 2 14.753988133697582 -562.3697428084819 64.6545 0.1144 8132 +8134 2 13.80905006229909 -562.422837768116 64.8348 0.1144 8133 +8135 2 12.799763664448864 -564.3800479988438 65.002 0.1144 8134 +8136 2 12.029714403417113 -564.8020630864148 65.2445 0.1144 8135 +8137 2 11.36973910473057 -565.8112005431916 65.5628 0.1144 8136 +8138 2 10.772510000238494 -567.0080490286032 65.8832 0.1144 8137 +8139 2 10.493503109674219 -568.1770550176018 66.0162 0.1144 8138 +8140 2 10.278162404922945 -569.7561416267703 65.9518 0.1144 8139 +8141 2 10.0637588215195 -571.334518228222 65.7443 0.1144 8140 +8142 2 9.876455081867817 -572.8803113561515 65.6048 0.1144 8141 +8143 2 9.696663915609893 -574.42254625276 65.588 0.1144 8142 +8144 2 9.516839922314922 -575.757526611508 65.697 0.1144 8143 +8145 2 9.336704095842002 -577.2202254402459 65.926 0.1144 8144 +8146 2 8.95909343353149 -578.6806465005585 66.1567 0.1144 8145 +8147 2 8.570348344535773 -579.9773792725014 66.383 0.1144 8146 +8148 2 8.182179279480156 -581.3872351957041 66.605 0.1144 8147 +8149 2 7.793434190484447 -583.0087390192975 66.8408 0.1144 8148 +8150 2 7.900964880342411 -583.585311832585 67.2896 0.1144 8149 +8151 2 8.115535428968023 -584.7339798738868 68.1201 0.1144 8150 +8152 2 8.308763319007824 -585.889477521343 69.0894 0.1144 8151 +8153 2 8.370388771512818 -587.2316372169588 69.9308 0.1144 8152 +8154 2 8.277212014930964 -588.6267671290243 70.4858 0.1144 8153 +8155 2 8.145992392156671 -590.1214541737803 70.7834 0.1144 8154 +8156 2 8.013923942467528 -591.6122758311492 70.8716 0.1144 8155 +8157 2 7.880970737243331 -593.1020063667705 70.8145 0.1144 8156 +8158 2 7.748902287554188 -594.5951112810598 70.6863 0.1144 8157 +8159 2 7.616886203677765 -596.0289330205538 70.5558 0.1144 8158 +8160 2 7.483880632640783 -597.4817940922612 70.4715 0.1144 8159 +8161 2 7.35181218295164 -598.8760524325019 70.4572 0.1144 8160 +8162 2 7.21885897772745 -600.1933990377707 70.5289 0.1144 8161 +8163 2 7.191892478656733 -601.5978712567667 70.7552 0.1144 8162 +8164 2 7.406516085631679 -603.0755489715482 71.2662 0.1144 8163 +8165 2 7.767598607739259 -604.1472800074399 72.0916 0.1144 8164 +8166 2 8.136920716148971 -605.2873144264986 73.1226 0.1144 8165 +8167 2 8.501868358461294 -606.7738265279653 74.2599 0.1144 8166 +8168 2 8.409225180281382 -607.9699701444604 75.5756 0.1144 8167 +8169 2 7.704850491085978 -608.7017060932316 76.8877 0.1144 8168 +8170 2 7.084955885980378 -609.8248345189883 77.9562 0.1144 8169 +8171 2 6.924408999027214 -611.0807637619794 78.6349 0.1144 8170 +8172 2 6.76221992564011 -612.3618936242749 79.0628 0.1144 8171 +8173 2 6.599278931983761 -613.6558562059151 79.287 0.1144 8172 +8174 2 6.434017405374462 -614.9518331916516 79.3587 0.1144 8173 +8175 2 6.270406582715502 -616.2539724247649 79.3388 0.1144 8174 +8176 2 6.105688253009177 -617.5450515852691 79.2834 0.1144 8175 +8177 2 5.942077430350224 -618.8412080226074 79.231 0.1144 8176 +8178 2 5.776868269553582 -620.203709164995 79.1829 0.1144 8177 +8179 2 5.613172254044805 -621.7426299475567 79.0891 0.1144 8178 +8180 2 7.728209703025321 -583.2385788372588 65.6202 0.1144 8149 +8181 2 7.247640341647056 -584.2751419674081 65.5402 0.1144 8180 +8182 2 6.767679831245914 -585.2015389536948 65.506 0.1144 8181 +8183 2 6.287110469867596 -586.1289873222015 65.4654 0.1144 8182 +8184 2 5.806573935526387 -587.4863938668859 65.42 0.1144 8183 +8185 2 5.3259522083353374 -588.9988043685773 65.3724 0.1144 8184 +8186 2 4.845468039806839 -590.4174585941503 65.3232 0.1144 8185 +8187 2 4.3648463126158035 -591.9505450399066 65.2747 0.1144 8186 +8188 2 3.885875289375214 -593.0865223492051 65.2285 0.1144 8187 +8189 2 3.405338755033938 -594.6301177593504 65.1848 0.1144 8188 +8190 2 2.924717027842945 -596.1127154530868 65.1445 0.1144 8189 +8191 2 2.4442328593144538 -597.6918137306985 65.0661 0.1144 8190 +8192 2 31.10916138723594 -496.8530995318688 61.6896 0.1144 8012 +8193 2 30.15325747505954 -495.6184916703509 62.0693 0.1144 8192 +8194 2 29.139664289176466 -496.15604869247625 62.3087 0.1144 8193 +8195 2 28.04229099408616 -495.3512208016601 63.0524 0.1144 8194 +8196 2 26.98733262223922 -494.51862256148655 64.1161 0.1144 8195 +8197 2 25.94723485354654 -495.42609124172475 65.1997 0.1144 8196 +8198 2 24.909768350000284 -494.46863025857544 66.1371 0.1144 8197 +8199 2 23.86239614298233 -495.32415828986865 66.9637 0.1144 8198 +8200 2 22.80145095643919 -494.18844470130443 67.6738 0.1144 8199 +8201 2 21.696633843612325 -493.35891250957167 68.2872 0.1144 8200 +8202 2 20.576203514825348 -494.4227117191961 68.8416 0.1144 8201 +8203 2 19.45668738293869 -493.8264442605589 69.4014 0.1144 8202 +8204 2 18.34904870170528 -495.0521159816683 70.0073 0.1144 8203 +8205 2 17.245456216198583 -494.4683654007648 70.6401 0.1144 8204 +8206 2 16.141254879714815 -494.3480900797881 71.2687 0.1144 8205 +8207 2 15.02817256300331 -495.13107602944183 71.8575 0.1144 8206 +8208 2 15.492411029925506 -494.63031316872434 72.3232 0.1144 8207 +8209 2 16.25023646357902 -492.41087176165325 72.5578 0.1144 8208 +8210 2 17.011010819938292 -491.7233407020936 72.6695 0.1144 8209 +8211 2 17.772093907892526 -491.17005123726267 72.6956 0.1144 8210 +8212 2 18.533890578449387 -490.703493550192 72.6692 0.1144 8211 +8213 2 19.294036545055864 -488.8515447405479 72.6208 0.1144 8212 +8214 2 20.055748022762952 -487.714806413557 72.5771 0.1144 8213 +8215 2 20.816916303566963 -487.1228644857608 72.539 0.1144 8214 +8216 2 21.577690659926233 -484.7918124254107 72.5077 0.1144 8215 +8217 2 22.220912000120318 -484.1186516759641 72.492 0.1144 8216 +8218 2 22.63959251173546 -483.1095880169707 72.5052 0.1144 8217 +8219 2 23.056098661272898 -482.1049266031855 72.5348 0.1144 8218 +8220 2 23.472604810810285 -481.12410416767324 72.5704 0.1144 8219 +8221 2 23.93125859124576 -480.19810220156313 72.5791 0.1144 8220 +8222 2 24.432145195429193 -478.20690277277623 72.5343 0.1144 8221 +8223 2 24.932061851227765 -476.471525660602 72.4472 0.1144 8222 +8224 2 25.432469338116682 -475.62009423616246 72.3304 0.1144 8223 +8225 2 25.933014383668052 -474.780964998818 72.1991 0.1144 8224 +8226 2 26.43256994205898 -472.92106622059396 72.065 0.1144 8225 +8227 2 26.930656895994947 -471.1833419782754 71.797 0.1144 8226 +8228 2 19.103585124697766 -482.30025967635174 43.5988 0.1144 3412 +8229 2 18.034640611878906 -481.8511874324428 44.0191 0.1144 8228 +8230 2 17.282134684782335 -480.270914085811 44.31 0.1144 8229 +8231 2 16.50557233423893 -478.6802119050343 44.5074 0.1144 8230 +8232 2 15.910693599970822 -478.300829102566 44.6348 0.1144 8231 +8233 2 15.424321618122253 -477.49716146549474 44.6981 0.1144 8232 +8234 2 15.307123395231033 -476.0873643054481 44.683 0.1144 8233 +8235 2 15.50268144186746 -474.9147154798262 44.5721 0.1144 8234 +8236 2 14.861324849663028 -473.6582771105677 42.8655 0.1144 8235 +8237 2 13.95903296426547 -473.67258277264864 41.9034 0.1144 8236 +8238 2 12.898169957978379 -474.0486687439715 41.3969 0.1144 8237 +8239 2 11.852678599563149 -473.8314918606126 40.9993 0.1144 8238 +8240 2 10.80558029079759 -474.580932545987 40.6706 0.1144 8239 +8241 2 9.755552598101847 -475.3282509897455 40.402 0.1144 8240 +8242 2 8.694235790329111 -476.35546244675265 40.1884 0.1144 8241 +8243 2 7.595776208107054 -476.5658209186511 39.9988 0.1144 8242 +8244 2 6.465414558265757 -475.93163398889254 39.7914 0.1144 8243 +8245 2 5.342365577742113 -476.6392776718902 39.4974 0.1144 8244 +8246 2 4.308596501836105 -475.7127233972145 39.0457 0.1144 8245 +8247 2 3.2679181928839744 -476.36294247205564 38.5459 0.1144 8246 +8248 2 2.151127131206266 -475.5348922286539 38.0929 0.1144 8247 +8249 2 1.0506044057867596 -476.99258401458303 37.6639 0.1144 8248 +8250 2 -0.07233055604717542 -476.3144202085943 37.2406 0.1144 8249 +8251 2 -1.107147972181206 -475.14439142663934 36.6517 0.1144 8250 +8252 2 -1.9916992117351504 -475.68012737790417 36.1012 0.1144 8251 +8253 2 -3.0000048356049787 -474.3826019657086 35.5872 0.1144 8252 +8254 2 -4.093988742113284 -475.32451147049585 34.9759 0.1144 8253 +8255 2 -5.209974825172365 -474.46368425394303 34.407 0.1144 8254 +8256 2 -6.188609909721444 -473.17820387583 33.6549 0.1144 8255 +8257 2 14.942028196970302 -474.65263124506697 44.4884 0.1144 8235 +8258 2 13.816855201898079 -475.5806075873419 44.4248 0.1144 8257 +8259 2 12.685789179507202 -475.42941490273773 44.3856 0.1144 8258 +8260 2 11.555886131559447 -474.8660883834803 44.3705 0.1144 8259 +8261 2 10.428075354422809 -476.20953996184244 44.3783 0.1144 8260 +8262 2 9.284534241053155 -475.45871594718756 44.4044 0.1144 8261 +8263 2 8.14807484172404 -476.4326116786957 44.4366 0.1144 8262 +8264 2 7.140919880661262 -475.0815956806391 44.4746 0.1144 8263 +8265 2 6.152722367782362 -473.76494670065915 44.5917 0.1144 8264 +8266 2 5.889191861857987 -472.5817897828995 44.6922 0.1144 8265 +8267 2 5.736353396994094 -471.54448307290306 44.7695 0.1144 8266 +8268 2 5.908912570464753 -469.9430657459768 44.8258 0.1144 8267 +8269 2 6.30470755275228 -468.80751693958143 44.8624 0.1144 8268 +8270 2 6.5671339721067215 -467.6776843247568 44.8823 0.1144 8269 +8271 2 6.431487238476369 -466.3062036302212 44.8876 0.1144 8270 +8272 2 6.4400107374374524 -464.99819102042017 44.8935 0.1144 8271 +8273 2 6.2140053232857095 -464.20608625268346 44.8734 0.1144 8272 +8274 2 5.68589745724954 -463.3340743691416 44.8454 0.1144 8273 +8275 2 5.326579959555703 -462.6431907525417 44.8339 0.1144 8274 +8276 2 4.870900831225526 -461.4481472316171 44.8179 0.1144 8275 +8277 2 4.569268197593276 -460.07349949551235 44.795 0.1144 8276 +8278 2 4.2449594505362835 -458.6438619840937 44.7656 0.1144 8277 +8279 2 4.010682226592603 -457.1944358294053 44.7297 0.1144 8278 +8280 2 3.7270487118590463 -456.22427899497706 44.6639 0.1144 8279 +8281 2 3.3779254179195917 -455.4666689055076 44.5458 0.1144 8280 +8282 2 3.291329345067334 -454.26378720481125 44.4508 0.1144 8281 +8283 2 3.1984579395512576 -453.06619888994925 44.3766 0.1144 8282 +8284 2 3.0985890065561374 -451.6927185873259 44.3218 0.1144 8283 +8285 2 2.393482734513693 -450.54027267186547 45.3936 0.1144 8284 +8286 2 1.6031252507732425 -450.00935024190505 45.9211 0.1144 8285 +8287 2 0.8325326028817734 -449.5180912045277 46.3534 0.1144 8286 +8288 2 0.3414952456066924 -448.0019202167133 46.814 0.1144 8287 +8289 2 -0.012392644755102822 -446.5112208918608 47.2553 0.1144 8288 +8290 2 -0.5210265842714428 -444.9840470531205 47.6722 0.1144 8289 +8291 2 -0.6313594224126966 -443.60791801495907 47.9898 0.1144 8290 +8292 2 -0.6080913572706059 -442.30834577122306 48.2252 0.1144 8291 +8293 2 -0.8880264380755918 -440.8348889012866 48.4327 0.1144 8292 +8294 2 -1.2546056540106072 -439.4421360117733 48.624 0.1144 8293 +8295 2 -1.4375640500358564 -438.24646394128524 48.7754 0.1144 8294 +8296 2 -1.607018222193215 -437.25234756902694 48.911 0.1144 8295 +8297 2 -1.7799973409965126 -436.2606387747154 49.042 0.1144 8296 +8298 2 -1.9536376765896577 -435.21706431972603 49.1641 0.1144 8297 +8299 2 -2.2010580269935964 -434.13747425163666 49.252 0.1144 8298 +8300 2 -2.4609931141048165 -432.67116180098395 49.31 0.1144 8299 +8301 2 -2.7179464514732885 -431.2056164431786 49.348 0.1144 8300 +8302 2 -2.889051327581047 -429.78365288502994 49.3704 0.1144 8301 +8303 2 -3.0399303568995784 -428.3716710244239 49.3839 0.1144 8302 +8304 2 -3.123544680008976 -427.00008730753046 49.3942 0.1144 8303 +8305 2 -3.169377226104995 -425.66531128695397 49.4077 0.1144 8304 +8306 2 -3.059136062925724 -424.42436000117607 49.4259 0.1144 8305 +8307 2 -2.6284254425272735 -423.51572607905155 49.4519 0.1144 8306 +8308 2 -2.11135539316183 -422.46936662752523 49.4894 0.1144 8307 +8309 2 -1.7626164000235356 -420.7508005104597 49.5421 0.1144 8308 +8310 2 -2.0010852980325744 -419.83947272338287 49.6121 0.1144 8309 +8311 2 -2.582727100778012 -418.7179650931353 49.6964 0.1144 8310 +8312 2 -3.0613879725448285 -417.19118034606777 49.8632 0.1144 8311 +8313 2 -3.516308977439536 -416.08973484476775 50.0987 0.1144 8312 +8314 2 -3.96988800997881 -415.6033921897524 50.3712 0.1144 8313 +8315 2 -3.642974604525442 -413.9793127086685 50.5985 0.1144 8314 +8316 2 -3.591187355406227 -412.5841286806163 50.6486 0.1144 8315 +8317 2 -3.7878649018317816 -411.6342071191546 50.6178 0.1144 8316 +8318 2 -4.122514023518473 -410.77706623794927 50.5702 0.1144 8317 +8319 2 -4.281539526613326 -409.5529552119949 50.5226 0.1144 8318 +8320 2 -4.013046497961305 -408.15656225938574 50.493 0.1144 8319 +8321 2 -3.6843246282458963 -406.30652401288717 50.4804 0.1144 8320 +8322 2 -3.5723030274335876 -404.8877020539953 50.4767 0.1144 8321 +8323 2 -3.577104754428092 -403.60142591463847 50.4745 0.1144 8322 +8324 2 -3.629573730595535 -402.3292031528016 50.4714 0.1144 8323 +8325 2 -3.6544223064668806 -401.03464945920433 50.4666 0.1144 8324 +8326 2 -3.9966747050267344 -400.3117766133771 50.4605 0.1144 8325 +8327 2 -4.842489632401648 -399.48952195166714 50.4515 0.1144 8326 +8328 2 -5.850090883721975 -398.1684257153181 50.4386 0.1144 8327 +8329 2 -6.748645695750557 -397.104049184674 50.4207 0.1144 8328 +8330 2 -7.068891809888225 -396.15500988159397 50.3958 0.1144 8329 +8331 2 -7.048032572131994 -394.8257276893147 50.3667 0.1144 8330 +8332 2 -7.357685047440917 -393.979833752735 50.3079 0.1144 8331 +8333 2 -7.766185348641997 -392.82665399715523 50.2242 0.1144 8332 +8334 2 -8.100919663178438 -391.4539721459984 50.1418 0.1144 8333 +8335 2 -8.485806729607035 -389.9610705458429 50.0822 0.1144 8334 +8336 2 -9.192710959774566 -389.56914461615656 50.0497 0.1144 8335 +8337 2 -9.933328130870041 -388.83191483842967 50.0458 0.1144 8336 +8338 2 -10.659920521553293 -387.34557543272837 50.0724 0.1144 8337 +8339 2 -11.514954193668292 -385.8619867752803 50.1267 0.1144 8338 +8340 2 -12.396805696507155 -385.6095822947656 50.2034 0.1144 8339 +8341 2 -13.273707401845176 -384.88123179529083 50.3042 0.1144 8340 +8342 2 -14.016504445647993 -383.90452642226387 50.4823 0.1144 8341 +8343 2 -14.594852665472544 -383.2948244182288 50.7629 0.1144 8342 +8344 2 -15.380589314619325 -382.32480769810616 51.023 0.1144 8343 +8345 2 -16.32545088866304 -380.9403024795026 51.2688 0.1144 8344 +8346 2 -17.19508777417679 -379.89544092716295 51.5441 0.1144 8345 +8347 2 -17.96737566685145 -379.513870629042 51.8266 0.1144 8346 +8348 2 -18.40829309927149 -378.2996603526888 52.1021 0.1144 8347 +8349 2 -18.15499643768762 -377.0900811882541 52.4972 0.1144 8348 +8350 2 -17.506692559423147 -375.81791593206844 53.0174 0.1144 8349 +8351 2 -16.84349725156596 -374.3390283824668 53.66 0.1144 8350 +8352 2 -16.21484319615056 -373.7431943241927 54.3575 0.1144 8351 +8353 2 -15.546165915148578 -373.2123731356266 55.0645 0.1144 8352 +8354 2 -14.716207755299983 -372.61020384543906 55.697 0.1144 8353 +8355 2 -13.738963079026249 -371.0915856761662 56.2033 0.1144 8354 +8356 2 -12.792206232328112 -370.75655753749896 56.6213 0.1144 8355 +8357 2 -12.021219849948622 -368.8285044088583 56.9792 0.1144 8356 +8358 2 -11.522237213914742 -367.94337338260846 57.3054 0.1144 8357 +8359 2 -11.09530480436127 -367.05481389302565 57.6517 0.1144 8358 +8360 2 -10.968039288761211 -365.8933444598556 58.0832 0.1144 8359 +8361 2 -11.272873416761826 -364.4730645466471 58.5564 0.1144 8360 +8362 2 -11.876168326197877 -362.9742276099249 59.0299 0.1144 8361 +8363 2 -12.481325764533679 -362.4174235708534 59.5199 0.1144 8362 +8364 2 -13.119397368344941 -361.76944096536744 60.044 0.1144 8363 +8365 2 -13.93715001481145 -360.6424217075628 60.7566 0.1144 8364 +8366 2 -14.197733817119762 -361.4169363549576 61.7529 0.1144 8365 +8367 2 -13.583199465284324 -362.5116554880873 62.6147 0.1144 8366 +8368 2 -12.843978709966834 -363.7406200619134 63.476 0.1144 8367 +8369 2 -12.983346097458586 -362.96350960688494 64.1962 0.1144 8368 +8370 2 -13.174665201255884 -361.64836198061573 64.7702 0.1144 8369 +8371 2 -13.316322384251428 -360.3259403741629 65.2604 0.1144 8370 +8372 2 -13.037694004912595 -359.2971417864012 66.0181 0.1144 8371 +8373 2 -12.630833777729933 -357.87983693893364 67.1112 0.1144 8372 +8374 2 -12.15073462536673 -356.2614316104441 68.9926 0.1144 8373 +8375 2 -4.3568719696478375 -415.77243920583135 50.8522 0.1144 8314 +8376 2 -5.445381716013198 -415.26424489949727 51.2764 0.1144 8375 +8377 2 -6.520380029056202 -415.1527051783221 51.3934 0.1144 8376 +8378 2 -7.586462125787911 -416.6054727854555 51.5348 0.1144 8377 +8379 2 -8.40187282372224 -417.05353004553115 51.8232 0.1144 8378 +8380 2 -8.559960926523303 -418.43299128335883 52.1203 0.1144 8379 +8381 2 -8.63531686958224 -419.7808894773269 52.3432 0.1144 8380 +8382 2 -8.295280272349888 -420.87184082489875 52.5193 0.1144 8381 +8383 2 -7.936230067001265 -422.3314091609534 52.6324 0.1144 8382 +8384 2 -7.318232030633954 -423.5923203652272 52.6184 0.1144 8383 +8385 2 -6.65903269476938 -423.83804976150736 52.5476 0.1144 8384 +8386 2 -5.999301875797514 -425.018827506901 52.453 0.1144 8385 +8387 2 -5.368747663473055 -426.56082906264743 52.3292 0.1144 8386 +8388 2 -4.805540343320708 -428.10058658129867 52.1371 0.1144 8387 +8389 2 -4.252053525561639 -429.6159834996869 51.6043 0.1144 8388 +8390 2 3.1555848222980725 -451.1299048706117 44.284 0.1144 8284 +8391 2 3.2749978750341793 -449.6994795124679 44.2543 0.1144 8390 +8392 2 3.387774497698894 -448.2300580335988 44.231 0.1144 8391 +8393 2 3.5843548585329152 -446.6798945277949 44.2036 0.1144 8392 +8394 2 3.6645144282174957 -445.2641474214386 44.1722 0.1144 8393 +8395 2 4.30719567309159 -444.15093578524636 44.0586 0.1144 8394 +8396 2 3.8971776041732475 -443.8663378779313 43.8144 0.1144 8395 +8397 2 2.7703412027514567 -444.28866470878165 43.8931 0.1144 8396 +8398 2 1.7177265900785343 -443.626766560586 43.9662 0.1144 8397 +8399 2 0.8213985059403761 -443.54136867255846 44.0516 0.1144 8398 +8400 2 -0.2795014346206841 -442.4525966394865 44.1647 0.1144 8399 +8401 2 -1.366665503500247 -441.52209584050274 44.3069 0.1144 8400 +8402 2 -2.338015945360759 -441.868654789102 44.6541 0.1144 8401 +8403 2 -2.9325304806381993 -440.3485738391365 44.9593 0.1144 8402 +8404 2 -3.656543462572378 -440.99525921551077 45.2785 0.1144 8403 +8405 2 -4.778246676620897 -441.003508133318 45.7097 0.1144 8404 +8406 2 -5.8270300200994924 -439.7959566834369 46.0972 0.1144 8405 +8407 2 -6.850526500407797 -439.3977077141232 46.4008 0.1144 8406 +8408 2 -7.676383565875355 -438.9642805742714 46.634 0.1144 8407 +8409 2 -8.292909896204602 -437.51691087766187 46.8717 0.1144 8408 +8410 2 -8.481746598865842 -436.2470802524397 47.0624 0.1144 8409 +8411 2 -8.818387983134837 -435.31979640399175 47.2083 0.1144 8410 +8412 2 -9.713957943837531 -435.0072469182232 47.3382 0.1144 8411 +8413 2 -10.639181314131772 -433.5786151393048 47.5003 0.1144 8412 +8414 2 -11.287858175871342 -432.03918534349793 47.7016 0.1144 8413 +8415 2 -12.275788396405078 -431.9388764811183 47.8926 0.1144 8414 +8416 2 -12.631941955871374 -431.7261952804419 48.025 0.1144 8415 +8417 2 -13.19211205888498 -430.29752169495674 48.2835 0.1144 8416 +8418 2 -13.663869208235178 -429.0971948288188 48.5957 0.1144 8417 +8419 2 -14.113132343655952 -428.22050355517786 48.9751 0.1144 8418 +8420 2 -14.561223892420864 -427.40779981996235 49.383 0.1144 8419 +8421 2 -15.149683532196592 -426.17410743792186 49.824 0.1144 8420 +8422 2 -16.003101043908114 -424.74628286885087 50.2995 0.1144 8421 +8423 2 -16.826060859946004 -423.5984429497679 50.8528 0.1144 8422 +8424 2 -17.653392040498193 -423.20927911926736 51.3094 0.1144 8423 +8425 2 -18.24483343001675 -422.24504963572485 51.7056 0.1144 8424 +8426 2 -18.66411729452188 -420.7395316440846 52.0117 0.1144 8425 +8427 2 -19.118324716813937 -419.21982816027355 52.2441 0.1144 8426 +8428 2 -19.843081202468376 -418.5345663386052 52.4294 0.1144 8427 +8429 2 -20.761797876373826 -418.2284662454979 52.5893 0.1144 8428 +8430 2 -21.695216984673927 -416.81610007367425 52.775 0.1144 8429 +8431 2 -22.758157251293852 -416.7089646090309 53.074 0.1144 8430 +8432 2 -23.504244083897888 -416.0686396888015 53.5226 0.1144 8431 +8433 2 -23.91077874638745 -414.57095962506776 53.9305 0.1144 8432 +8434 2 -24.35081762643866 -413.0683953457589 54.3432 0.1144 8433 +8435 2 -24.93366625192353 -411.8586915740145 54.8008 0.1144 8434 +8436 2 -25.53370350705889 -411.7843841846214 55.2594 0.1144 8435 +8437 2 -26.17926578378985 -410.45438026030155 55.6433 0.1144 8436 +8438 2 -26.94691261055859 -408.98445332780545 55.9863 0.1144 8437 +8439 2 -27.67145416968054 -408.48353007985486 56.3592 0.1144 8438 +8440 2 -28.252290993807385 -407.25043567984306 56.81 0.1144 8439 +8441 2 -28.739364939158975 -406.3046070643999 57.3656 0.1144 8440 +8442 2 -29.299846182814083 -404.87147246238027 57.9527 0.1144 8441 +8443 2 -29.830166056058033 -403.3780283983474 58.5354 0.1144 8442 +8444 2 -30.147876018173676 -401.95125605792936 59.1948 0.1144 8443 +8445 2 -30.453415211260417 -401.2164457917548 59.873 0.1144 8444 +8446 2 -31.07915107627654 -400.9811287060287 60.494 0.1144 8445 +8447 2 -31.62916221161936 -399.4856023132686 61.08 0.1144 8446 +8448 2 -32.10967950381594 -398.0158654937927 61.796 0.1144 8447 +8449 2 -32.678538584972216 -397.67270686267193 62.4218 0.1144 8448 +8450 2 -33.33340179240605 -396.95942256596936 62.9434 0.1144 8449 +8451 2 -34.19861976568581 -395.565694816919 63.4133 0.1144 8450 +8452 2 -35.24406026201386 -394.34805416950695 63.8588 0.1144 8451 +8453 2 -36.32293409528846 -395.1249417285978 64.2323 0.1144 8452 +8454 2 -37.38925554672561 -393.9450564338914 64.4896 0.1144 8453 +8455 2 -38.34448962989948 -394.4951674373509 64.7198 0.1144 8454 +8456 2 -39.26338220013412 -393.11459195712064 64.9936 0.1144 8455 +8457 2 -40.28393526836621 -391.844213393362 65.347 0.1144 8456 +8458 2 -41.319934173745715 -392.1418109608145 65.8392 0.1144 8457 +8459 2 -42.26830287216961 -391.20366624775045 66.3396 0.1144 8458 +8460 2 -43.211816270691685 -391.08602593521914 66.7374 0.1144 8459 +8461 2 -44.1535663613099 -390.3766502106216 67.0211 0.1144 8460 +8462 2 -44.85529114676145 -388.89792947330017 67.2008 0.1144 8461 +8463 2 -45.35524161876469 -387.37836114613594 67.2974 0.1144 8462 +8464 2 -45.95105437279756 -386.0044950334029 67.3291 0.1144 8463 +8465 2 -46.799222660162556 -386.1056022134803 67.3238 0.1144 8464 +8466 2 -47.79943556114213 -385.0025274241885 67.3624 0.1144 8465 +8467 2 -48.65085840122475 -385.1329107067766 67.4411 0.1144 8466 +8468 2 -49.29112149684296 -383.97891011894535 67.5408 0.1144 8467 +8469 2 -49.76568139802369 -382.4687079627067 67.6676 0.1144 8468 +8470 2 -50.163135566972436 -380.9729255884272 67.8261 0.1144 8469 +8471 2 -50.76808118035889 -379.467898799919 68.0739 0.1144 8470 +8472 2 -51.45029749574367 -378.5066746871603 68.4527 0.1144 8471 +8473 2 -52.05132423803946 -378.0710607742098 68.878 0.1144 8472 +8474 2 -52.54316347235006 -376.84272369483733 69.3123 0.1144 8473 +8475 2 -53.047432250518305 -375.38149119476407 69.725 0.1144 8474 +8476 2 -53.224544474408084 -374.00440299238977 70.1204 0.1144 8475 +8477 2 -53.420417042215036 -372.9156499296536 70.6 0.1144 8476 +8478 2 -53.77620890072634 -372.1837195228538 71.146 0.1144 8477 +8479 2 -53.912960134517235 -371.0871295279045 71.7861 0.1144 8478 +8480 2 -54.25623725632111 -370.05087380745033 72.3506 0.1144 8479 +8481 2 -54.720908583759325 -368.7441192785799 72.798 0.1144 8480 +8482 2 -54.703378165007535 -367.4595931921397 73.2281 0.1144 8481 +8483 2 -54.69512746902123 -366.15949536049095 73.5658 0.1144 8482 +8484 2 -54.77970863893234 -364.8398590788415 73.8651 0.1144 8483 +8485 2 -55.03937643369848 -363.46016778646083 74.0877 0.1144 8484 +8486 2 -54.85388888232137 -363.64327020980636 73.9362 0.1144 8485 +8487 2 -53.79398962695981 -363.6227927710886 73.5661 0.1144 8486 +8488 2 -52.74432161693546 -363.3683115487033 73.5358 0.1144 8487 +8489 2 -51.87052368298855 -362.06910667017763 73.5232 0.1144 8488 +8490 2 -51.299713666682706 -360.6127534152208 73.5171 0.1144 8489 +8491 2 -51.48059109724476 -359.33436328147195 73.5182 0.1144 8490 +8492 2 -51.60815331174961 -358.016972043627 73.5274 0.1144 8491 +8493 2 -51.4372776692664 -356.85799130943695 73.5437 0.1144 8492 +8494 2 -51.18282965233882 -355.7751184397612 73.5647 0.1144 8493 +8495 2 -50.77269264052771 -354.8592907531832 73.6005 0.1144 8494 +8496 2 -50.3993205074658 -353.9022697024586 73.675 0.1144 8495 +8497 2 -50.437567883043016 -352.61696070800235 73.7419 0.1144 8496 +8498 2 -50.657764859178684 -351.1971803204323 73.7727 0.1144 8497 +8499 2 -50.92924473461253 -349.750897829401 73.7685 0.1144 8498 +8500 2 -51.37449519388018 -348.2035026882152 73.7248 0.1144 8499 +8501 2 -51.14415083436754 -347.1865299196628 73.591 0.1144 8500 +8502 2 -50.59762999030673 -346.40864447647147 73.3768 0.1144 8501 +8503 2 -50.169540022243524 -345.4701109620851 73.1914 0.1144 8502 +8504 2 -49.81007224066043 -344.4314873276244 73.0509 0.1144 8503 +8505 2 -49.571517736211035 -343.28394834695285 72.8918 0.1144 8504 +8506 2 -49.370078281355475 -341.58648873038817 72.69 0.1144 8505 +8507 2 -49.16797760971012 -339.7900268669113 72.4366 0.1144 8506 +8508 2 -49.00053861943988 -338.0704328758056 72.1059 0.1144 8507 +8509 2 -49.11527495659591 -336.9061104558689 71.6232 0.1144 8508 +8510 2 -49.36153164002002 -336.0128045974823 70.9881 0.1144 8509 +8511 2 -49.61530020430133 -335.15450351250325 70.1865 0.1144 8510 +8512 2 -50.302776356843836 -334.1283918619423 69.0659 0.1144 8511 +8513 2 -51.191661931307436 -332.8910020257716 67.9826 0.1144 8512 +8514 2 -52.0107788590514 -331.4698690418814 67.1216 0.1144 8513 +8515 2 -52.65240754400904 -330.78633226175583 66.3939 0.1144 8514 +8516 2 -53.142110753908554 -330.261643232393 65.8073 0.1144 8515 +8517 2 -53.85879744112006 -328.9002041739873 65.3176 0.1144 8516 +8518 2 -54.79932839736267 -328.5824803511376 64.9491 0.1144 8517 +8519 2 -55.296473015952216 -327.7869400450018 64.6792 0.1144 8518 +8520 2 -55.564874234997596 -326.28990922175046 64.4874 0.1144 8519 +8521 2 -55.83376628513334 -324.7922692452879 64.3359 0.1144 8520 +8522 2 -56.10274352811882 -323.2936198305269 64.1998 0.1144 8521 +8523 2 -56.3725726996023 -321.7964531922652 64.0564 0.1144 8522 +8524 2 -56.66145613121901 -320.3216888185018 63.8795 0.1144 8523 +8525 2 -57.09071927294613 -318.92736129874254 63.6188 0.1144 8524 +8526 2 -57.674593314211656 -317.459806488871 63.2402 0.1144 8525 +8527 2 -58.26634343532517 -316.74578231444536 62.7385 0.1144 8526 +8528 2 -58.72592671406335 -316.11494385298084 62.1289 0.1144 8527 +8529 2 -58.93813839206932 -314.69232141092607 61.4494 0.1144 8528 +8530 2 -58.872405446917696 -313.4498019397122 60.7653 0.1144 8529 +8531 2 -58.59334549800404 -311.95844895351155 60.0992 0.1144 8530 +8532 2 -58.31334842774267 -310.12316563866216 59.442 0.1144 8531 +8533 2 -57.9414740267494 -308.7851789556652 58.7919 0.1144 8532 +8534 2 -57.31192428923599 -308.0316832612257 58.2078 0.1144 8533 +8535 2 -56.950796498953224 -306.8487963143589 57.7279 0.1144 8534 +8536 2 -56.678426038460394 -305.7545244020334 57.3443 0.1144 8535 +8537 2 -56.33432811122806 -304.73409217074567 57.05 0.1144 8536 +8538 2 -55.96032758841331 -303.745117968062 56.7874 0.1144 8537 +8539 2 -55.95724361705882 -302.56308765352753 56.4172 0.1144 8538 +8540 2 -56.66413002496065 -301.05562907983557 55.7836 0.1144 8539 +8541 2 -57.4395639446079 -299.7725209017271 55.0771 0.1144 8540 +8542 2 -58.34892903850758 -298.58264742758934 54.5482 0.1144 8541 +8543 2 -59.310926183852416 -298.74492559401256 54.2142 0.1144 8542 +8544 2 -60.280995536686646 -297.34670594782426 54.0562 0.1144 8543 +8545 2 -61.25409118009662 -297.92661939873176 54.0518 0.1144 8544 +8546 2 -62.22473655687094 -296.52614872984526 54.1612 0.1144 8545 +8547 2 -63.19569066524021 -295.12832832860823 54.3312 0.1144 8546 +8548 2 -64.17921428517609 -294.91169222811817 54.5236 0.1144 8547 +8549 2 -65.26475668302265 -294.5740306578855 54.7604 0.1144 8548 +8550 2 -66.3847071842935 -295.1967352659599 55.0365 0.1144 8549 +8551 2 -67.46870430235171 -294.33627036398195 55.2871 0.1144 8550 +8552 2 -68.52916216783558 -293.0834103747846 55.487 0.1144 8551 +8553 2 -69.6225454094465 -293.48947229978484 55.6996 0.1144 8552 +8554 2 -70.73783673845702 -292.82182816875155 55.8729 0.1144 8553 +8555 2 -71.8569031767295 -293.2627691565537 55.9924 0.1144 8554 +8556 2 -72.97748276028979 -292.663888404886 56.0725 0.1144 8555 +8557 2 -74.04394246292605 -291.42800093212287 56.1322 0.1144 8556 +8558 2 -75.06059138075015 -291.44728855481765 56.18 0.1144 8557 +8559 2 -76.0630310096202 -290.70685005665814 56.2234 0.1144 8558 +8560 2 -77.00704375674906 -290.46075155728397 56.2755 0.1144 8559 +8561 2 -77.80231339286034 -289.2305506220312 56.3416 0.1144 8560 +8562 2 -78.54992498985177 -287.7271272830247 56.4516 0.1144 8561 +8563 2 -79.29268059440489 -286.6486931810576 56.6048 0.1144 8562 +8564 2 -80.14660365788937 -285.8279929983867 56.8316 0.1144 8563 +8565 2 -81.23753803562283 -285.64012509703076 57.2734 0.1144 8564 +8566 2 -82.17729304616418 -285.35372957652686 58.0138 0.1144 8565 +8567 2 -83.09836509834327 -285.24473516516974 59.4569 0.1144 8566 +8568 2 -55.611098836262855 -362.0941476934555 74.2577 0.1144 8485 +8569 2 -56.60778919964295 -360.7999368417748 74.4957 0.1144 8568 +8570 2 -57.73520403405129 -361.61875861504444 74.744 0.1144 8569 +8571 2 -58.603997603279794 -360.33389250266293 74.9818 0.1144 8570 +8572 2 -59.23339976772404 -359.94462705454544 75.1839 0.1144 8571 +8573 2 -59.90920860771591 -359.12580485434285 75.4004 0.1144 8572 +8574 2 -60.32653613825874 -357.70938297284977 75.5684 0.1144 8573 +8575 2 -60.6361362477549 -356.2740160195523 75.6843 0.1144 8574 +8576 2 -60.58738931735746 -355.01799248236676 75.7686 0.1144 8575 +8577 2 -60.561354429004936 -353.7431565776246 75.8377 0.1144 8576 +8578 2 -60.63070640481098 -352.4070144678369 75.9041 0.1144 8577 +8579 2 -60.69854523532911 -351.07183954654556 75.976 0.1144 8578 +8580 2 -60.778058587852485 -349.721454864863 76.0704 0.1144 8579 +8581 2 -61.01272973624085 -348.2320058028474 76.2292 0.1144 8580 +8582 2 -61.24977378339495 -346.7445000687306 76.4406 0.1144 8581 +8583 2 -60.95582951337563 -346.73829226103027 76.5559 0.1144 8582 +8584 2 -59.99659626763673 -346.72091813621176 76.9241 0.1144 8583 +8585 2 -58.938751348160636 -345.02797208774456 77.1926 0.1144 8584 +8586 2 -57.90626677661577 -346.1520589223899 77.3576 0.1144 8585 +8587 2 -57.18458343672022 -345.8840931206905 77.3654 0.1144 8586 +8588 2 -56.54191151371616 -347.2958878868971 77.2436 0.1144 8587 +8589 2 -55.93621328752379 -348.85848430437915 77.0669 0.1144 8588 +8590 2 -55.638011795474995 -350.35123199287835 77.0507 0.1144 8589 +8591 2 -55.37259232617244 -351.78910332456695 77.1985 0.1144 8590 +8592 2 -55.10855937005824 -353.2114585355967 77.4836 0.1144 8591 +8593 2 -54.81321609723585 -354.61737419341733 77.8562 0.1144 8592 +8594 2 -53.833038426033596 -354.39433284600267 78.1544 0.1144 8593 +8595 2 -52.855630679624845 -355.37022213762236 78.5282 0.1144 8594 +8596 2 -61.68085159255032 -345.3858500743375 76.8306 0.1144 8582 +8597 2 -62.026091251482605 -343.87058577486386 77.1523 0.1144 8596 +8598 2 -62.190780134681 -342.428818555163 77.5169 0.1144 8597 +8599 2 -62.382064002394685 -340.9787975586693 77.8898 0.1144 8598 +8600 2 -62.78302598826015 -340.2896495026571 78.2275 0.1144 8599 +8601 2 -63.458837237298496 -339.89256122543304 78.5019 0.1144 8600 +8602 2 -64.27690341576792 -338.36370128892787 78.7217 0.1144 8601 +8603 2 -65.07916747777523 -338.3609967811078 78.9373 0.1144 8602 +8604 2 -65.5913999376877 -337.30032043914383 79.1742 0.1144 8603 +8605 2 -65.80803603855726 -335.8298262840595 79.4128 0.1144 8604 +8606 2 -66.1555438646298 -334.3203227426269 79.686 0.1144 8605 +8607 2 -66.74649752464119 -332.75973312028697 80.0338 0.1144 8606 +8608 2 -67.40925704323523 -331.2032930669724 80.463 0.1144 8607 +8609 2 -68.06136435402166 -329.9737636842084 80.9698 0.1144 8608 +8610 2 -68.64389021976558 -329.91509291295193 81.5262 0.1144 8609 +8611 2 -69.10606442538497 -328.5774772975517 82.0929 0.1144 8610 +8612 2 -69.59136103468663 -327.0375363377024 82.5986 0.1144 8611 +8613 2 -70.1477912645219 -325.6514265817182 83.008 0.1144 8612 +8614 2 -70.67883402511784 -325.3269256595089 83.356 0.1144 8613 +8615 2 -71.11877910010651 -324.1590460997443 83.6914 0.1144 8614 +8616 2 -71.27388503957413 -322.77697985871407 84.0846 0.1144 8615 +8617 2 -71.64406828653483 -321.3970979710711 84.4603 0.1144 8616 +8618 2 -72.21199093887998 -319.90634227981803 84.7806 0.1144 8617 +8619 2 -72.79546244348809 -318.3402492272576 85.064 0.1144 8618 +8620 2 -73.38307635793205 -316.7768789342039 85.3695 0.1144 8619 +8621 2 -73.97523443163632 -316.1121278707595 85.7604 0.1144 8620 +8622 2 -74.56939338013568 -315.39660607775664 86.2212 0.1144 8621 +8623 2 -75.1598124554567 -314.08256278624447 86.7166 0.1144 8622 +8624 2 -75.75664752368712 -312.7162448493117 87.0262 0.1144 8623 +8625 2 -76.35571242139113 -312.4581964023224 87.0702 0.1144 8624 +8626 2 -76.95401919565964 -311.08628884564183 86.8787 0.1144 8625 +8627 2 -76.9454155170411 -310.59400257271 85.4605 0.1144 8626 +8628 2 -76.23960706871124 -309.9968877893353 83.5103 0.1144 8627 +8629 2 -75.26959907895848 -309.26317239894576 82.357 0.1144 8628 +8630 2 -74.21752185078533 -309.0940533466748 81.3159 0.1144 8629 +8631 2 -73.22623857873772 -309.3518661608464 80.3004 0.1144 8630 +8632 2 -72.59980075021853 -310.8486934060108 79.4671 0.1144 8631 +8633 2 -72.0599454809635 -312.32318048301306 78.7198 0.1144 8632 +8634 2 -71.58597632440552 -313.64139096828757 78.0254 0.1144 8633 +8635 2 -71.14017756605315 -314.98347385178687 76.8454 0.1144 8634 +8636 2 -77.21635650424959 -310.46228355361546 86.7322 0.1144 8626 +8637 2 -77.88085812281003 -308.89936955866096 86.6281 0.1144 8636 +8638 2 -78.75384095705738 -307.73339155001565 86.6942 0.1144 8637 +8639 2 -79.67122658517039 -307.52499216565207 86.9445 0.1144 8638 +8640 2 -80.2670359358465 -306.00721651643534 86.9056 0.1144 8639 +8641 2 -80.7921948791768 -304.4290555365058 86.8501 0.1144 8640 +8642 2 -81.40462334050312 -303.3753003156322 86.8146 0.1144 8641 +8643 2 -82.07892213679017 -303.2722961491933 86.77 0.1144 8642 +8644 2 -82.73567120601913 -301.69531192164425 86.7017 0.1144 8643 +8645 2 -83.39242027524806 -300.11752397228054 86.569 0.1144 8644 +8646 2 -84.15931208016445 -298.5737406912565 86.4147 0.1144 8645 +8647 2 -85.04191860485575 -298.2845579130801 86.3206 0.1144 8646 +8648 2 -85.94901381510526 -297.60236090620435 86.3024 0.1144 8647 +8649 2 -86.80842126078106 -296.3673214014629 86.3458 0.1144 8648 +8650 2 -86.96583811470062 -295.37970112627687 86.5015 0.1144 8649 +8651 2 -86.11101475866676 -294.65226218850347 86.917 0.1144 8650 +8652 2 -85.20561528493081 -293.8047166844137 87.519 0.1144 8651 +8653 2 -84.57262820266776 -291.9553014259137 88.2165 0.1144 8652 +8654 2 -84.33860933996229 -290.85336570690583 88.8348 0.1144 8653 +8655 2 -84.32037626517084 -289.53591643863996 89.1078 0.1144 8654 +8656 2 -84.48350273885166 -288.09026703725215 88.9571 0.1144 8655 +8657 2 -84.72308224549118 -286.6075760792032 88.7421 0.1144 8656 +8658 2 -84.9737930772329 -285.1743593428909 88.5497 0.1144 8657 +8659 2 -85.22513229872742 -284.1083420050939 88.4055 0.1144 8658 +8660 2 -85.47602522996448 -283.2007902661458 88.3319 0.1144 8659 +8661 2 -85.7269705270143 -282.2883613009161 88.3254 0.1144 8660 +8662 2 -85.9788857724489 -281.15341956133244 88.3448 0.1144 8661 +8663 2 -86.22986389653573 -279.661484657706 88.3582 0.1144 8662 +8664 2 -86.62741187054695 -278.123573118331 88.3456 0.1144 8663 +8665 2 -87.26103853609368 -276.5628994498738 88.2885 0.1144 8664 +8666 2 -88.00962008146996 -276.210696416558 88.1913 0.1144 8665 +8667 2 -88.77255467762902 -275.1142721696843 88.072 0.1144 8666 +8668 2 -89.61588410228481 -273.94482405157436 87.9752 0.1144 8667 +8669 2 -90.53878693962605 -272.499474096595 87.9354 0.1144 8668 +8670 2 -91.48436519785552 -272.3910306353963 87.9575 0.1144 8669 +8671 2 -92.43061328508757 -271.60934677893704 88.0331 0.1144 8670 +8672 2 -93.27968035613367 -270.9474436246105 88.1527 0.1144 8671 +8673 2 -93.99397293664195 -270.11798936674626 88.3033 0.1144 8672 +8674 2 -94.65009361611808 -268.98539874759433 88.4682 0.1144 8673 +8675 2 -95.30002725736334 -267.4163694279747 88.6365 0.1144 8674 +8676 2 -95.95026963020354 -265.84953201986957 88.8056 0.1144 8675 +8677 2 -96.40731814199285 -264.5063670579167 88.9588 0.1144 8676 +8678 2 -96.40654649982665 -263.11502879624624 89.0641 0.1144 8677 +8679 2 -96.2011881738805 -261.83630313656477 89.129 0.1144 8678 +8680 2 -96.04831475187899 -260.62321127967704 89.2346 0.1144 8679 +8681 2 -96.00829031919783 -259.322140313518 89.4776 0.1144 8680 +8682 2 -95.99165558254408 -258.0103251318153 89.8722 0.1144 8681 +8683 2 -95.78032996299252 -256.8795525783988 90.3854 0.1144 8682 +8684 2 -95.49249515054984 -255.8246654810966 90.9857 0.1144 8683 +8685 2 -95.20300653257365 -254.78090929716433 91.6398 0.1144 8684 +8686 2 -94.91236586671728 -253.612908867903 92.3177 0.1144 8685 +8687 2 -94.67180437900281 -252.18520454994848 93.0101 0.1144 8686 +8688 2 -94.45738607491668 -250.75016554459683 93.7138 0.1144 8687 +8689 2 -94.24663027613903 -249.46012423818422 94.4261 0.1144 8688 +8690 2 -94.05717028076397 -247.94376260103513 95.1457 0.1144 8689 +8691 2 -94.44898330151995 -246.99158210624887 95.8681 0.1144 8690 +8692 2 -95.04188477797707 -246.03493820400308 96.5815 0.1144 8691 +8693 2 -95.64356111796322 -244.8221974327746 97.2919 0.1144 8692 +8694 2 -96.24528982376212 -243.30591544406786 97.9983 0.1144 8693 +8695 2 -96.92896553354885 -241.8144702097025 98.7857 0.1144 8694 +8696 2 -97.66996362491625 -241.12433708231623 99.6646 0.1144 8695 +8697 2 -98.3800515271864 -240.48329664490555 100.5348 0.1144 8696 +8698 2 -98.99722986425245 -239.36116027894633 101.2799 0.1144 8697 +8699 2 -100.08000715539845 -239.30811182950623 101.7626 0.1144 8698 +8700 2 -101.19372987172528 -238.2194502773629 102.0326 0.1144 8699 +8701 2 -102.31141599997564 -238.07754521734233 102.1446 0.1144 8700 +8702 2 -103.42981571082858 -238.0384360686071 102.1591 0.1144 8701 +8703 2 -104.55218285248714 -237.65128738300098 102.188 0.1144 8702 +8704 2 -105.63378235951802 -239.12407144199557 102.2935 0.1144 8703 +8705 2 -106.7009422378431 -238.82352158507462 102.482 0.1144 8704 +8706 2 -107.39950188311519 -239.36838843752872 102.7768 0.1144 8705 +8707 2 -108.09151890337833 -241.2741041388786 103.1344 0.1144 8706 +8708 2 -108.78308963338401 -242.4784100907944 103.5255 0.1144 8707 +8709 2 -109.45167621090661 -243.01194338540563 104.3302 0.1144 8708 +8710 2 -79.9080081403873 -306.2197495898299 87.5344 0.1144 8639 +8711 2 -80.14062845721435 -304.74793701625117 87.9578 0.1144 8710 +8712 2 -80.4694345083486 -303.2384030904656 88.4162 0.1144 8711 +8713 2 -80.79435451542929 -301.73007572867476 88.8549 0.1144 8712 +8714 2 -81.06146302634886 -300.2397982660986 89.2321 0.1144 8713 +8715 2 -81.31075451786516 -298.75587818619664 89.556 0.1144 8714 +8716 2 -81.54395396021545 -297.6970292998799 89.8444 0.1144 8715 +8717 2 -81.72066985061397 -296.6231850904959 90.1239 0.1144 8716 +8718 2 -81.85622828981148 -295.45740399748945 90.4126 0.1144 8717 +8719 2 -82.10324068762455 -294.5502036081986 90.7189 0.1144 8718 +8720 2 -82.70065108725849 -293.3730929138923 91.0204 0.1144 8719 +8721 2 -83.45052774980712 -291.8277313046958 91.3128 0.1144 8720 +8722 2 -84.20196992345635 -290.2780241511421 91.6031 0.1144 8721 +8723 2 -84.91732625741193 -288.8168574530901 91.8999 0.1144 8722 +8724 2 -85.57474205406041 -288.9228125292233 92.2172 0.1144 8723 +8725 2 -86.06814679947165 -287.60347080631897 92.5786 0.1144 8724 +8726 2 -86.42412385906138 -286.08683166884754 92.9914 0.1144 8725 +8727 2 -86.72446068298474 -284.5918305204797 93.4503 0.1144 8726 +8728 2 -86.91244004121458 -283.15584582614053 93.9655 0.1144 8727 +8729 2 -86.96427993509258 -281.8079092057922 94.5232 0.1144 8728 +8730 2 -87.01246825022511 -280.4562761256536 95.044 0.1144 8729 +8731 2 -87.08773687033379 -279.07989779313044 95.4873 0.1144 8730 +8732 2 -87.17910064119155 -277.69006762144903 95.8633 0.1144 8731 +8733 2 -87.53899347028889 -276.5395356799743 96.2374 0.1144 8732 +8734 2 -88.39124800755722 -276.10640792928683 96.6297 0.1144 8733 +8735 2 -89.30609507460166 -275.28158928275633 97.008 0.1144 8734 +8736 2 -90.1988982120939 -273.8078474982244 97.3053 0.1144 8735 +8737 2 -91.04916969683293 -272.90926157209606 97.5358 0.1144 8736 +8738 2 -91.79129691163314 -272.154864371804 97.713 0.1144 8737 +8739 2 -92.48652972137859 -271.1952733124402 97.8544 0.1144 8738 +8740 2 -93.25253987234305 -270.3910887445714 97.9927 0.1144 8739 +8741 2 -94.07919881484608 -269.75480561320506 98.1599 0.1144 8740 +8742 2 -94.91085992066287 -268.6074767453985 98.3693 0.1144 8741 +8743 2 -95.74184027091398 -267.09451340938904 98.6196 0.1144 8742 +8744 2 -96.57229696303779 -266.1752912618469 98.9086 0.1144 8743 +8745 2 -97.41877620878569 -265.7129571488469 99.2494 0.1144 8744 +8746 2 -98.29549822367483 -264.6095018121172 99.661 0.1144 8745 +8747 2 -99.1703022422684 -264.4176866759468 100.1456 0.1144 8746 +8748 2 -100.03129330539917 -262.94431845025116 100.7121 0.1144 8747 +8749 2 -100.92880798096444 -262.08281183066674 101.3174 0.1144 8748 +8750 2 -101.88140118049087 -261.2365622915039 101.906 0.1144 8749 +8751 2 -102.79695331262141 -260.6995514666495 102.4531 0.1144 8750 +8752 2 -103.6489521766442 -259.2093970702649 102.9356 0.1144 8751 +8753 2 -104.29473799212029 -259.20559381277803 103.3306 0.1144 8752 +8754 2 -104.57053066308951 -258.1476841249799 103.5616 0.1144 8753 +8755 2 -104.91711849754344 -256.6129329582757 103.7344 0.1144 8754 +8756 2 -105.36263624915631 -255.05113412220146 103.9366 0.1144 8755 +8757 2 -105.81483187009032 -253.4883198243587 104.1737 0.1144 8756 +8758 2 -106.3360360137099 -251.9195473595197 104.4344 0.1144 8757 +8759 2 -107.11775998670352 -250.37806261867513 104.6755 0.1144 8758 +8760 2 -108.07465097699392 -250.95498562842153 104.862 0.1144 8759 +8761 2 -109.06159171036722 -249.5619477983339 105.0577 0.1144 8760 +8762 2 -110.07974757031297 -249.3425846519143 105.32 0.1144 8761 +8763 2 -111.09504831261542 -248.8067830645166 105.6448 0.1144 8762 +8764 2 -112.10820751987714 -247.54808723794218 106.0293 0.1144 8763 +8765 2 -113.11861634112103 -246.84895814236307 106.4664 0.1144 8764 +8766 2 -114.12059495905098 -246.5033096264932 106.9424 0.1144 8765 +8767 2 -115.04763331052524 -245.91178471988917 107.4592 0.1144 8766 +8768 2 -115.83786416216616 -245.07112622080137 108.0173 0.1144 8767 +8769 2 -116.58564313797031 -243.53422525048535 108.5986 0.1144 8768 +8770 2 -117.37021060950777 -242.41627584912726 109.167 0.1144 8769 +8771 2 -118.17579728735336 -241.41801442004748 109.6875 0.1144 8770 +8772 2 -118.88795384345056 -240.86639190588448 110.1153 0.1144 8771 +8773 2 -119.46995364202054 -239.36547843587428 110.425 0.1144 8772 +8774 2 -119.8378279751279 -237.8230766525711 110.6633 0.1144 8773 +8775 2 -119.97155671246274 -236.3817187831006 110.8604 0.1144 8774 +8776 2 -120.08465396476792 -234.95176002624714 111.0416 0.1144 8775 +8777 2 -120.19606768608568 -233.52354139361248 111.223 0.1144 8776 +8778 2 -120.30845135578822 -232.10197052569225 111.4145 0.1144 8777 +8779 2 -120.42253809525394 -230.6775792752511 111.6195 0.1144 8778 +8780 2 -120.54610545587144 -229.24381842437353 111.8331 0.1144 8779 +8781 2 -120.67934336211597 -227.8054658244461 112.0566 0.1144 8780 +8782 2 -120.81155895416293 -226.3673363781241 112.2943 0.1144 8781 +8783 2 -120.94416847065467 -224.97302156908762 112.551 0.1144 8782 +8784 2 -121.0777151084941 -223.66285588450938 112.8299 0.1144 8783 +8785 2 -121.26387569142432 -222.41776698030333 113.1455 0.1144 8784 +8786 2 -121.75144046786617 -221.5639736204036 113.5652 0.1144 8785 +8787 2 -122.46323282497265 -220.26663526124747 114.0703 0.1144 8786 +8788 2 -123.17016918964073 -219.39502303154507 114.588 0.1144 8787 +8789 2 -123.87671162986403 -217.84017581636357 115.0834 0.1144 8788 +8790 2 -124.60048413898755 -216.79811573885 115.5722 0.1144 8789 +8791 2 -125.37868557438179 -216.77670842498395 116.1003 0.1144 8790 +8792 2 -126.18828492838048 -215.26577678180868 116.6553 0.1144 8791 +8793 2 -126.9683191672205 -214.51593456605212 117.1318 0.1144 8792 +8794 2 -127.7244766730625 -213.34817579054868 117.4925 0.1144 8793 +8795 2 -128.49630966326703 -212.52307253513217 117.7607 0.1144 8794 +8796 2 -129.33295339362172 -211.11334860318843 117.9637 0.1144 8795 +8797 2 -130.22785662690487 -210.5630885556622 118.1281 0.1144 8796 +8798 2 -131.1337474234615 -210.14478325755005 118.2784 0.1144 8797 +8799 2 -132.04365089617124 -208.66166172843535 118.4403 0.1144 8798 +8800 2 -132.97408825472846 -207.19961363663037 118.6329 0.1144 8799 +8801 2 -133.92464603591276 -207.59966246732893 118.862 0.1144 8800 +8802 2 -134.87801207955732 -206.33607741904848 119.114 0.1144 8801 +8803 2 -135.8265252323465 -205.32868778063414 119.3662 0.1144 8802 +8804 2 -136.7674264960498 -204.71018034345474 119.6009 0.1144 8803 +8805 2 -137.70649805789046 -204.0027457431957 119.819 0.1144 8804 +8806 2 -138.64463249838334 -202.80195836177901 120.0282 0.1144 8805 +8807 2 -139.58472637442156 -203.10987347054586 120.2356 0.1144 8806 +8808 2 -140.53266350327064 -201.66700010356016 120.4728 0.1144 8807 +8809 2 -141.4983645931737 -200.8710546305912 120.7993 0.1144 8808 +8810 2 -142.47140717823427 -200.76978304208444 121.2103 0.1144 8809 +8811 2 -143.36870451822068 -199.40692136891755 121.5866 0.1144 8810 +8812 2 -144.0608970092443 -197.84116081745833 121.7588 0.1144 8811 +8813 2 -144.63047346712293 -196.53678775313455 121.6877 0.1144 8812 +8814 2 -145.18406260746096 -195.36296258867637 121.4234 0.1144 8813 +8815 2 -145.554871835128 -194.3490427644753 121.0252 0.1144 8814 +8816 2 -145.60982321243154 -192.9813136892529 120.5814 0.1144 8815 +8817 2 -145.86765751121527 -191.90938461999662 120.1768 0.1144 8816 +8818 2 -146.49148389745233 -190.78550880036425 119.9066 0.1144 8817 +8819 2 -147.1910818685459 -189.69150181232533 119.7619 0.1144 8818 +8820 2 -147.97142553151738 -189.2463423695495 119.7487 0.1144 8819 +8821 2 -148.8708619974979 -188.1762925136781 119.8915 0.1144 8820 +8822 2 -149.82365201720233 -186.74482865187966 120.1752 0.1144 8821 +8823 2 -150.7794621243163 -185.92335779884235 120.559 0.1144 8822 +8824 2 -151.77597038820105 -185.9829670807867 121.0073 0.1144 8823 +8825 2 -152.85995209304 -185.6111799321367 121.49 0.1144 8824 +8826 2 -153.97800442087964 -185.89537534791646 121.977 0.1144 8825 +8827 2 -155.05045605807865 -184.73087708272237 122.4779 0.1144 8826 +8828 2 -156.0354750010367 -183.84338409651633 122.9827 0.1144 8827 +8829 2 -156.9611330424888 -183.9490829966748 123.475 0.1144 8828 +8830 2 -157.85767536062278 -182.74843377370703 123.9456 0.1144 8829 +8831 2 -158.75078102654376 -182.93845940253146 124.4009 0.1144 8830 +8832 2 -159.64539983775256 -181.55527292228155 124.845 0.1144 8831 +8833 2 -160.53944262502128 -180.0866781817087 125.2832 0.1144 8832 +8834 2 -161.43317668069503 -179.0212872490651 125.7217 0.1144 8833 +8835 2 -162.32815658931153 -179.15526136508808 126.1697 0.1144 8834 +8836 2 -163.21966391709483 -177.82033241364462 126.6345 0.1144 8835 +8837 2 -164.11250229067056 -178.1293511128645 127.1217 0.1144 8836 +8838 2 -165.0021768150081 -176.76768022392048 127.6346 0.1144 8837 +8839 2 -165.7892438174108 -175.25611331272495 128.2182 0.1144 8838 +8840 2 -166.1657899989316 -173.77886211495291 128.9098 0.1144 8839 +8841 2 -166.47355902149192 -172.30744437631293 129.6823 0.1144 8840 +8842 2 -166.77837601976333 -170.95937522820398 130.5007 0.1144 8841 +8843 2 -167.43016849048487 -170.84448920685543 131.2802 0.1144 8842 +8844 2 -168.12007809368563 -169.81714290243255 132.0206 0.1144 8843 +8845 2 -168.81267242883007 -168.33635446871813 132.7161 0.1144 8844 +8846 2 -169.58846503683841 -167.21735373242126 133.3016 0.1144 8845 +8847 2 -170.38301178559783 -165.79377895943662 133.8064 0.1144 8846 +8848 2 -171.18041365200054 -165.73406292677646 134.26 0.1144 8847 +8849 2 -171.9684153667045 -164.20596831015993 134.6951 0.1144 8848 +8850 2 -172.72101199728036 -163.6463627499827 135.154 0.1144 8849 +8851 2 -173.47168201934807 -163.1294577584663 135.6398 0.1144 8850 +8852 2 -174.21960165539787 -161.59211392014453 136.1542 0.1144 8851 +8853 2 -174.9674689256349 -160.37837596278013 136.6904 0.1144 8852 +8854 2 -175.7131618337942 -158.89706194486592 137.2414 0.1144 8853 +8855 2 -176.45933385924803 -158.83914165848586 137.8009 0.1144 8854 +8856 2 -177.20439837765448 -157.82642638382345 138.3651 0.1144 8855 +8857 2 -177.94954808891075 -156.4825651577333 138.9343 0.1144 8856 +8858 2 -178.69475016597974 -156.41205580194983 139.5108 0.1144 8857 +8859 2 -179.4386102706933 -154.91959547410607 140.0958 0.1144 8858 +8860 2 -180.02011072065653 -153.39332998741384 140.7115 0.1144 8859 +8861 2 -180.58121725248137 -152.0722108374617 141.3499 0.1144 8860 +8862 2 -181.14018224926548 -150.5915727882135 142.0048 0.1144 8861 +8863 2 -181.69945597764448 -149.74712458284316 142.6695 0.1144 8862 +8864 2 -182.25677027047817 -149.24885009476318 143.3373 0.1144 8863 +8865 2 -182.81502168465965 -147.9097312312987 144.0037 0.1144 8864 +8866 2 -183.37434777885144 -146.40507723574206 144.6634 0.1144 8865 +8867 2 -183.93380360672583 -145.79149553654952 145.3147 0.1144 8866 +8868 2 -184.60884270418262 -145.07095670143616 145.9391 0.1144 8867 +8869 2 -185.3288722385447 -143.5419481731474 146.5349 0.1144 8868 +8870 2 -186.05104330794742 -142.10093159477438 147.1112 0.1144 8869 +8871 2 -186.77481271548783 -140.68474257766184 147.6728 0.1144 8870 +8872 2 -187.4985492959912 -140.4535007495559 148.2244 0.1144 8871 +8873 2 -188.22294709328446 -139.4969928903547 148.7704 0.1144 8872 +8874 2 -188.9467165008249 -138.05572820307077 149.3145 0.1144 8873 +8875 2 -189.67111429811814 -138.07431837081825 149.8568 0.1144 8874 +8876 2 -190.39600292650167 -136.7928569706382 150.3978 0.1144 8875 +8877 2 -191.12040072379492 -135.2700530975501 150.9374 0.1144 8876 +8878 2 -191.90750365481773 -133.86576288277095 151.473 0.1144 8877 +8879 2 -192.77527731889518 -133.2628200824392 151.9974 0.1144 8878 +8880 2 -193.64838609270552 -132.85004487299008 152.5188 0.1144 8879 +8881 2 -194.52135730785332 -131.48091526526548 153.0418 0.1144 8880 +8882 2 -195.39389005772352 -130.00404907579923 153.5713 0.1144 8881 +8883 2 -196.43050573375632 -130.44996040167723 154.1529 0.1144 8882 +8884 2 -197.52946916321952 -129.71443562022338 154.7633 0.1144 8883 +8885 2 -198.62629966985472 -130.5850830275557 155.3989 0.1144 8884 +8886 2 -199.72258697958682 -129.67870073044273 156.0465 0.1144 8885 +8887 2 -200.80767008300316 -128.59551211246327 156.693 0.1144 8886 +8888 2 -201.69342263466697 -128.88146976035247 157.2696 0.1144 8887 +8889 2 -202.58354344926192 -127.61862622201478 157.7996 0.1144 8888 +8890 2 -203.4758057988976 -127.30756984206431 158.293 0.1144 8889 +8891 2 -204.36864417247335 -126.67157830558594 158.7695 0.1144 8890 +8892 2 -205.2626869597421 -125.29169248293744 159.229 0.1144 8891 +8893 2 -206.3537928241597 -124.1663946012022 159.698 0.1144 8892 +8894 2 -207.46469806797327 -125.05131254085558 160.1572 0.1144 8893 +8895 2 -208.57560331178684 -124.67086039575528 160.6111 0.1144 8894 +8896 2 -209.64677285367134 -125.00167870255328 161.4771 0.1144 8895 +8897 2 -13.091773911184973 -431.596240951039 47.1425 0.1144 8415 +8898 2 -13.928725680597976 -430.7317363359961 46.9613 0.1144 8897 +8899 2 -14.582886924528797 -430.3346420309837 46.8978 0.1144 8898 +8900 2 -15.204803831986734 -429.010993086545 46.8798 0.1144 8899 +8901 2 -15.89147670473557 -427.4720841943114 46.9115 0.1144 8900 +8902 2 -16.686255509756585 -426.138987256868 47.0142 0.1144 8901 +8903 2 -17.55158270131804 -425.7536479486708 47.2018 0.1144 8902 +8904 2 -18.400917064709294 -424.9782568970196 47.4446 0.1144 8903 +8905 2 -19.22999034522785 -423.49550076514413 47.7142 0.1144 8904 +8906 2 -20.05749811464586 -423.5519205163023 48.0004 0.1144 8905 +8907 2 -20.886028198261407 -422.46629840387453 48.2933 0.1144 8906 +8908 2 -21.713588333492094 -421.0639614036717 48.5856 0.1144 8907 +8909 2 -22.541724492662876 -420.36377727816176 48.8737 0.1144 8908 +8910 2 -23.3926658064045 -419.9860201007559 49.1602 0.1144 8909 +8911 2 -24.369574204206458 -418.6635173082788 49.443 0.1144 8910 +8912 2 -25.456197485229474 -419.31425424251444 49.719 0.1144 8911 +8913 2 -26.56146879030485 -418.3604023073174 49.9895 0.1144 8912 +8914 2 -27.65512483489054 -418.11857429306275 50.2575 0.1144 8913 +8915 2 -28.611857342669573 -417.8087829799059 50.5224 0.1144 8914 +8916 2 -29.318038685485266 -416.33594177970906 50.7794 0.1144 8915 +8917 2 -29.936524451359762 -414.8327833636174 51.0322 0.1144 8916 +8918 2 -30.64707715868972 -415.0424306139703 51.2901 0.1144 8917 +8919 2 -31.385018210054106 -413.7111380351865 51.5592 0.1144 8918 +8920 2 -31.77421978852798 -412.2596789111224 51.8543 0.1144 8919 +8921 2 -31.681351763541002 -411.04954416956866 52.194 0.1144 8920 +8922 2 -31.652995649698884 -409.78451141990854 52.5546 0.1144 8921 +8923 2 -32.20513359939969 -408.7473302186914 52.9197 0.1144 8922 +8924 2 -32.781166796900884 -408.70871750881264 53.2941 0.1144 8923 +8925 2 -32.57156545504991 -407.02176781358355 53.6564 0.1144 8924 +8926 2 -31.913816884253862 -405.13502336697485 53.8236 0.1144 8925 +8927 2 -31.294440835093994 -404.46814408587124 53.8101 0.1144 8926 +8928 2 -31.013380703921882 -403.40490069452164 53.7009 0.1144 8927 +8929 2 -30.783838629892685 -401.92105195027926 53.5332 0.1144 8928 +8930 2 -30.36434762902933 -399.84153466337 53.3627 0.1144 8929 +8931 2 -30.25794014409086 -398.28831656239356 53.2148 0.1144 8930 +8932 2 -30.43996141876839 -397.3006011542849 53.06 0.1144 8931 +8933 2 -30.758656049951497 -396.6072297791098 52.9147 0.1144 8932 +8934 2 -31.11775862111285 -395.78137983634787 52.7974 0.1144 8933 +8935 2 -31.481932111245104 -394.2898921418857 52.7136 0.1144 8934 +8936 2 -31.845135652992475 -392.7979557636938 52.6576 0.1144 8935 +8937 2 -31.63901920361082 -391.66435119177805 52.6834 0.1144 8936 +8938 2 -31.143779542338358 -390.839916815077 52.7993 0.1144 8937 +8939 2 -30.64208244890675 -388.73305612635863 52.9729 0.1144 8938 +8940 2 -29.921060924205733 -387.60142535404117 53.2868 0.1144 8939 +8941 2 -3.213558969040136 -439.9514718986067 44.893 0.1144 8403 +8942 2 -3.9379574588700024 -439.8809112642473 44.7574 0.1144 8941 +8943 2 -4.571545786750061 -438.71760518606703 44.6986 0.1144 8942 +8944 2 -5.491642770677663 -437.29878493964213 44.6351 0.1144 8943 +8945 2 -6.469197380498173 -436.1091953237184 44.5354 0.1144 8944 +8946 2 -7.372191620161754 -436.3593767299694 44.3766 0.1144 8945 +8947 2 -8.139403083236061 -434.9137226166262 44.1893 0.1144 8946 +8948 2 -8.681183244489338 -433.82774955881115 43.979 0.1144 8947 +8949 2 -8.951276606734917 -433.03566719046984 43.7973 0.1144 8948 +8950 2 -9.195480742087828 -431.98079159580124 43.6416 0.1144 8949 +8951 2 -9.16811170635972 -430.6279222371662 43.5047 0.1144 8950 +8952 2 -9.041706636774077 -429.2081200469963 43.1894 0.1144 8951 +8953 2 -8.613837105872843 -427.427474777761 42.9528 0.1144 8952 +8954 2 -7.949493544255141 -426.4595281942087 42.7148 0.1144 8953 +8955 2 -7.503266206094125 -425.58475417442867 42.373 0.1144 8954 +8956 2 -8.071044404073906 -424.0952723812958 41.9518 0.1144 8955 +8957 2 -8.83847320272713 -423.3375166017757 41.4943 0.1144 8956 +8958 2 -9.243142234733888 -422.61251098656817 41.0455 0.1144 8957 +8959 2 -9.875870116599522 -421.5272102194213 40.577 0.1144 8958 +8960 2 -10.765994032777602 -420.10407695811557 40.1486 0.1144 8959 +8961 2 -11.290129969373808 -418.5968185098243 39.6922 0.1144 8960 +8962 2 -11.432809466566866 -417.2133247297793 39.2241 0.1144 8961 +8963 2 -11.360619781792678 -415.9783168345434 38.7198 0.1144 8962 +8964 2 -11.124242048467512 -414.885519767639 38.2175 0.1144 8963 +8965 2 -11.067243220131825 -413.636571082858 37.7546 0.1144 8964 +8966 2 -11.179717593313757 -412.2700387240416 37.3537 0.1144 8965 +8967 2 -11.115457046736871 -411.0214099600519 36.988 0.1144 8966 +8968 2 -10.880339194500419 -409.9192430017275 36.5814 0.1144 8967 +8969 2 -10.722917819118901 -408.76029666303225 36.0394 0.1144 8968 +8970 2 -10.687029593107333 -407.505480995201 35.4749 0.1144 8969 +8971 2 -10.632477929824127 -406.2661260284042 34.9247 0.1144 8970 +8972 2 -10.71483167930818 -404.9412573024011 34.279 0.1144 8971 +8973 2 -10.644598328496215 -403.71555897417477 33.7061 0.1144 8972 +8974 2 -10.628515685046835 -402.5371218134422 33.0862 0.1144 8973 +8975 2 -11.138841075226708 -401.0563659226237 32.3834 0.1144 8974 +8976 2 -11.70585263225458 -399.7231712615117 31.5608 0.1144 8975 +8977 2 -12.350556872017563 -399.29149850308323 30.8305 0.1144 8976 +8978 2 -12.8456007022796 -398.33199878734155 30.135 0.1144 8977 +8979 2 -13.221929548221464 -397.1422661045821 29.4403 0.1144 8978 +8980 2 -13.710733974439847 -395.786257962062 28.854 0.1144 8979 +8981 2 -14.495736117135138 -395.5448950637492 28.3178 0.1144 8980 +8982 2 -15.516505828409585 -394.93956049773703 27.7894 0.1144 8981 +8983 2 -16.424432043308286 -393.56393323084137 27.41 0.1144 8982 +8984 2 -17.00531813166474 -392.30983371594317 27.1627 0.1144 8983 +8985 2 -17.130847336874083 -391.14629426112236 27.005 0.1144 8984 +8986 2 -16.869172837788888 -389.6309445480707 26.9109 0.1144 8985 +8987 2 -16.952640297486504 -388.3588816664521 26.8583 0.1144 8986 +8988 2 -17.23569778828001 -387.394027949801 26.8272 0.1144 8987 +8989 2 -17.37922680492453 -386.25223155135353 26.7908 0.1144 8988 +8990 2 -17.357739177415482 -384.9615572611807 26.745 0.1144 8989 +8991 2 -17.57748676171056 -383.9365049959566 26.6522 0.1144 8990 +8992 2 -17.94215890791299 -382.7024185088704 26.5269 0.1144 8991 +8993 2 -18.49841324141906 -381.54259864369936 26.4051 0.1144 8992 +8994 2 -18.895867410367757 -380.14455786602923 26.2976 0.1144 8993 +8995 2 -18.958624395352118 -378.8085612770443 26.173 0.1144 8994 +8996 2 -19.01564063236299 -377.473001261318 26.0341 0.1144 8995 +8997 2 -19.337231820439207 -376.0050781829163 25.9195 0.1144 8996 +8998 2 -19.646831929935374 -374.54043313439115 25.8323 0.1144 8997 +8999 2 -19.516146891851438 -373.3465933212209 25.7592 0.1144 8998 +9000 2 -19.132889286630096 -372.3942267618894 25.6956 0.1144 8999 +9001 2 -18.692902045049266 -371.4542485085838 25.6363 0.1144 9000 +9002 2 -18.736017032164447 -370.1434580030245 25.5727 0.1144 9001 +9003 2 -19.334814637523287 -368.6627504609384 25.4982 0.1144 9002 +9004 2 -19.835211399783965 -367.146826841389 25.3134 0.1144 9003 +9005 2 -20.184643425318335 -365.6787715422032 25.0974 0.1144 9004 +9006 2 -20.3946814337831 -364.33102230692737 24.9239 0.1144 9005 +9007 2 -19.77075502219664 -363.6329653465837 24.7923 0.1144 9006 +9008 2 -19.450135085424584 -362.6270612354617 24.6979 0.1144 9007 +9009 2 -19.86442539882877 -361.14264504203936 24.6359 0.1144 9008 +9010 2 -20.65411925673282 -360.1219229456308 24.5995 0.1144 9009 +9011 2 -20.795770929098744 -359.0611644870049 24.5661 0.1144 9010 +9012 2 -20.520826671453825 -357.27032684336126 24.5202 0.1144 9011 +9013 2 -20.132836604310448 -356.30723977856803 24.4535 0.1144 9012 +9014 2 -19.399159682656425 -355.8278718448737 24.3631 0.1144 9013 +9015 2 -18.556831240465712 -355.4748581819444 24.246 0.1144 9014 +9016 2 -17.80154126629766 -354.20212054825214 24.0768 0.1144 9015 +9017 2 -17.299212681530065 -352.3939715629305 23.7578 0.1144 9016 +9018 2 -16.85904574950046 -351.53064949251143 23.3317 0.1144 9017 +9019 2 -16.408091460047103 -350.6948913779516 22.9732 0.1144 9018 +9020 2 -16.29148666977114 -349.4887046093891 22.7186 0.1144 9019 +9021 2 -16.272534501747515 -348.17185153284083 22.5441 0.1144 9020 +9022 2 -16.17009825371248 -346.9259122175064 22.429 0.1144 9021 +9023 2 -16.077767914998923 -345.6819228898497 22.3505 0.1144 9022 +9024 2 -15.968104492269681 -344.48394863496765 22.3336 0.1144 9023 +9025 2 -15.519518283489049 -343.5826266520736 22.4425 0.1144 9024 +9026 2 -15.196313623001963 -342.5426703669865 22.6006 0.1144 9025 +9027 2 -15.281473225899653 -341.1829917281998 22.6582 0.1144 9026 +9028 2 -15.497175307004554 -339.7241925591652 22.6323 0.1144 9027 +9029 2 -15.2415995517174 -338.63621851827816 22.5973 0.1144 9028 +9030 2 -15.506825302424957 -337.1926799355554 22.5856 0.1144 9029 +9031 2 -16.08134294559177 -335.63645745916324 22.506 0.1144 9030 +9032 2 -16.57742691231713 -334.10668507082477 22.4065 0.1144 9031 +9033 2 -16.699789859241683 -332.72783294987653 22.2618 0.1144 9032 +9034 2 -16.899631254905557 -331.3228445786922 22.1279 0.1144 9033 +9035 2 -16.791401893084313 -330.063956757872 22.0796 0.1144 9034 +9036 2 -17.096113183105018 -328.64232002419453 22.0292 0.1144 9035 +9037 2 -17.249973962166493 -327.26339877567256 21.9733 0.1144 9036 +9038 2 -17.02701595239604 -326.06659966285207 21.7961 0.1144 9037 +9039 2 -16.983786231226915 -324.76358267138187 21.5748 0.1144 9038 +9040 2 -17.030734896582928 -323.4208857094018 21.3408 0.1144 9039 +9041 2 -17.007775563035743 -322.10986554462755 21.1301 0.1144 9040 +9042 2 -16.795064122832414 -320.8927221793905 21.0207 0.1144 9041 +9043 2 -16.8463286853069 -319.5519932032115 20.9825 0.1144 9042 +9044 2 -16.727276729978477 -318.2847795542637 20.96 0.1144 9043 +9045 2 -16.576274449089368 -317.0925886020531 20.8802 0.1144 9044 +9046 2 -16.831388779845817 -315.64074527637945 20.754 0.1144 9045 +9047 2 -17.41130561235409 -314.3291837071868 20.657 0.1144 9046 +9048 2 -17.863101105677217 -312.87851861493317 20.5216 0.1144 9047 +9049 2 -17.88232394657509 -311.6155323736159 20.4971 0.1144 9048 +9050 2 -17.500215287650825 -310.6050978177099 20.614 0.1144 9049 +9051 2 -17.21403428074165 -309.4074486543768 20.8531 0.1144 9050 +9052 2 -17.27905633128313 -308.0827231032521 20.9931 0.1144 9051 +9053 2 -17.523312832448717 -306.73782316235406 21.0191 0.1144 9052 +9054 2 -17.80347376634917 -305.3619827278512 20.9147 0.1144 9053 +9055 2 -18.196474479516915 -303.8678162631547 20.7368 0.1144 9054 +9056 2 -18.358034749560552 -302.4947761323927 20.5902 0.1144 9055 +9057 2 -18.288612580533417 -301.2400260588358 20.4474 0.1144 9056 +9058 2 -19.023256947393783 -300.7533863297815 20.3454 0.1144 9057 +9059 2 -19.91370121426639 -299.8283958285078 20.2931 0.1144 9058 +9060 2 -21.043219246048743 -299.25675405975096 20.269 0.1144 9059 +9061 2 -22.155038686762715 -298.8841099385056 20.2596 0.1144 9060 +9062 2 -23.263115845251782 -298.5950114644806 20.2576 0.1144 9061 +9063 2 -24.40249061804994 -299.56814746142777 20.2781 0.1144 9062 +9064 2 -25.44181855521832 -299.6743255104658 20.3125 0.1144 9063 +9065 2 -26.577126900977397 -299.0346555540548 20.3604 0.1144 9064 +9066 2 -27.65489513881394 -300.45961954155814 20.4257 0.1144 9065 +9067 2 -28.290040264614504 -300.3020423861512 19.6659 0.1144 9066 +9068 2 -29.369242261585427 -300.3634269061738 18.8639 0.1144 9067 +9069 2 -30.495263781798954 -300.6663167198921 18.4422 0.1144 9068 +9070 2 -31.620162979586212 -299.7893531055833 17.9865 0.1144 9069 +9071 2 -32.74439685271214 -300.13597526756666 17.5693 0.1144 9070 +9072 2 -33.83541642329542 -300.09846863862475 17.188 0.1144 9071 +9073 2 -34.58420230007785 -299.34669725681977 16.8163 0.1144 9072 +9074 2 -35.03675591683647 -298.7666889410746 16.4993 0.1144 9073 +9075 2 -35.228433708994956 -297.4406446170714 16.1848 0.1144 9074 +9076 2 -35.31195973767147 -296.10311359326414 15.8936 0.1144 9075 +9077 2 -35.23174470059099 -294.77687874441716 15.6796 0.1144 9076 +9078 2 -34.86100183207702 -293.0318341087723 15.5925 0.1144 9077 +9079 2 -34.33805037449253 -291.38106736606693 15.6022 0.1144 9078 +9080 2 -34.06630830375249 -290.30940261899235 15.6531 0.1144 9079 +9081 2 -34.07635994763016 -288.9946663993414 15.723 0.1144 9080 +9082 2 -34.20371954723874 -287.5994847506299 15.7941 0.1144 9081 +9083 2 -34.57488746326693 -286.103994634326 15.8953 0.1144 9082 +9084 2 -35.145847332750755 -285.5530135066609 15.9981 0.1144 9083 +9085 2 -35.552385096823414 -284.68184811954626 16.0744 0.1144 9084 +9086 2 -35.74148909182983 -283.3840243535341 16.1219 0.1144 9085 +9087 2 -36.05751070486501 -282.1102643256368 16.1412 0.1144 9086 +9088 2 -36.6322073459441 -280.5773342548925 16.1318 0.1144 9087 +9089 2 -37.12962235846193 -279.05278434528384 16.0913 0.1144 9088 +9090 2 -37.680626775084875 -277.5185522661174 16.0226 0.1144 9089 +9091 2 -38.53307503094821 -276.8234954863482 15.9241 0.1144 9090 +9092 2 -39.337383721350655 -276.4956939240046 15.7904 0.1144 9091 +9093 2 -39.43380058891354 -275.2132935565701 15.614 0.1144 9092 +9094 2 -39.611193819542784 -273.9717447319483 15.215 0.1144 9093 +9095 2 -40.16606395991774 -273.1637615316586 14.5204 0.1144 9094 +9096 2 -40.591790535899314 -272.2128525475806 13.9533 0.1144 9095 +9097 2 -41.146928057608804 -271.4893324584626 13.4441 0.1144 9096 +9098 2 -41.75881573107854 -269.9660883268834 12.9581 0.1144 9097 +9099 2 -42.33885299252016 -268.69485215866797 12.4947 0.1144 9098 +9100 2 -42.71603135791349 -267.54443967083574 12.0277 0.1144 9099 +9101 2 -42.8647712612379 -266.25422731374346 11.5746 0.1144 9100 +9102 2 -42.76161522743406 -264.968225553419 11.0981 0.1144 9101 +9103 2 -42.49204992781825 -263.6070155175159 10.5181 0.1144 9102 +9104 2 -42.045370096233626 -262.41903116948805 9.9444 0.1144 9103 +9105 2 -41.59080566728459 -261.5672228496878 9.3336 0.1144 9104 +9106 2 -41.57375918392037 -260.32161091784815 8.5933 0.1144 9105 +9107 2 -41.32865043536239 -259.0825180660891 7.9644 0.1144 9106 +9108 2 -40.56920643225897 -257.63543717525175 7.4957 0.1144 9107 +9109 2 -40.560450184499665 -256.3871874626195 6.7309 0.1144 9108 +9110 2 -27.945795284013705 -301.2075193697618 20.5587 0.1144 9066 +9111 2 -28.721703028817046 -301.5094014938889 20.7226 0.1144 9110 +9112 2 -29.833979674373374 -302.5213386677515 20.939 0.1144 9111 +9113 2 -30.96246818250367 -302.055991135638 21.2055 0.1144 9112 +9114 2 -32.087385504330335 -301.465631331668 21.472 0.1144 9113 +9115 2 -33.21711366223717 -302.438859278011 21.6685 0.1144 9114 +9116 2 -34.34867221454328 -302.1786275522542 21.8027 0.1144 9115 +9117 2 -35.44803058044641 -303.30009601900525 21.8851 0.1144 9116 +9118 2 -36.541851505809014 -302.94375723953027 21.9408 0.1144 9117 +9119 2 -37.67700788597465 -302.7567501217293 21.998 0.1144 9118 +9120 2 -38.81895987125975 -303.32317682674795 22.0404 0.1144 9119 +9121 2 -39.954900400891354 -303.85162983234886 22.0427 0.1144 9120 +9122 2 -41.01912297561024 -303.89943164857823 21.999 0.1144 9121 +9123 2 -42.016905331851035 -304.215474658531 21.8754 0.1144 9122 +9124 2 -43.09055277623725 -304.87462149701406 21.638 0.1144 9123 +9125 2 -44.210508379689784 -304.49341174744666 21.3267 0.1144 9124 +9126 2 -45.23212450883262 -304.98317143217906 20.9965 0.1144 9125 +9127 2 -45.945068221282654 -303.70429540550776 20.676 0.1144 9126 +9128 2 -45.64271368946608 -302.83812090280884 20.3399 0.1144 9127 +9129 2 -46.015993006633096 -301.4332312156083 19.986 0.1144 9128 +9130 2 -46.543830478740986 -299.8900371995778 19.731 0.1144 9129 +9131 2 -46.80880055620296 -298.41925741075124 19.5169 0.1144 9130 +9132 2 -47.34451720974187 -296.88569011096894 19.3175 0.1144 9131 +9133 2 -48.256509159143015 -296.2577590040106 19.0597 0.1144 9132 +9134 2 -49.327950793780644 -296.2319531951349 18.813 0.1144 9133 +9135 2 -50.17511969139546 -295.0472163073922 18.5636 0.1144 9134 +9136 2 -50.29512617674686 -293.8271922883104 18.2279 0.1144 9135 +9137 2 -50.494247786641935 -292.7182348733483 17.7757 0.1144 9136 +9138 2 -50.59861402371435 -291.48001266461733 17.2775 0.1144 9137 +9139 2 -50.70426986732946 -290.23890727844537 16.8455 0.1144 9138 +9140 2 -50.9780148083205 -289.23853905818186 16.4938 0.1144 9139 +9141 2 -51.42945471486556 -288.0133761837773 16.2257 0.1144 9140 +9142 2 -52.251657100004564 -286.7958391147289 16.0084 0.1144 9141 +9143 2 -52.90247000384027 -285.4856751896823 15.7943 0.1144 9142 +9144 2 -52.9771855244562 -284.20998235430926 15.6131 0.1144 9143 +9145 2 -53.80681631411254 -283.055601881884 15.4243 0.1144 9144 +9146 2 -54.8623658213452 -283.33604803438794 15.2201 0.1144 9145 +9147 2 -55.85759609778678 -282.4795793778109 15.0231 0.1144 9146 +9148 2 -56.84288302562656 -282.2243083035614 14.8153 0.1144 9147 +9149 2 -57.912453519151796 -281.23848554960557 14.5958 0.1144 9148 +9150 2 -58.960520178444675 -280.35782878589 14.38 0.1144 9149 +9151 2 -59.70552853691871 -280.1967770939906 14.1416 0.1144 9150 +9152 2 -60.149756681988826 -278.7491008091735 13.894 0.1144 9151 +9153 2 -60.49647114854237 -277.2413634005691 13.6384 0.1144 9152 +9154 2 -60.39631978892876 -276.09524941525837 13.3207 0.1144 9153 +9155 2 -59.554516028838734 -275.238532306724 12.9874 0.1144 9154 +9156 2 -58.6907887681298 -274.2970678572669 12.6799 0.1144 9155 +9157 2 -58.256182893624725 -273.1706220120405 12.3821 0.1144 9156 +9158 2 -58.404203011180336 -271.8925162437778 12.103 0.1144 9157 +9159 2 -59.08289368738256 -270.5830098113547 11.8591 0.1144 9158 +9160 2 -60.09351984420537 -270.60654928488657 11.6589 0.1144 9159 +9161 2 -61.15841713732416 -269.36502808218387 11.4815 0.1144 9160 +9162 2 -61.565641451680584 -268.5882467442151 11.2893 0.1144 9161 +9163 2 -61.837876348966894 -267.7511308111431 11.0705 0.1144 9162 +9164 2 -61.69564893160684 -266.07584257540674 10.7254 0.1144 9163 +9165 2 -61.3280144449353 -264.3153900001727 10.2739 0.1144 9164 +9166 2 -60.96212446727665 -263.3077920982283 9.7619 0.1144 9165 +9167 2 -60.887796349044855 -262.05354425482585 9.3121 0.1144 9166 +9168 2 -60.91843493711928 -260.71887909980245 8.9433 0.1144 9167 +9169 2 -60.950710200998046 -259.3936261513087 8.4137 0.1144 9168 +9170 2 4.752975726684877 -443.37708722677905 43.9928 0.1144 8395 +9171 2 5.466823135040997 -441.9676218725744 43.9298 0.1144 9170 +9172 2 6.387363508449216 -441.0516262774538 43.8962 0.1144 9171 +9173 2 7.4112326042973535 -440.6537948354843 43.892 0.1144 9172 +9174 2 8.469602898410702 -440.65307401079883 43.9149 0.1144 9173 +9175 2 9.587058580235082 -440.0118903010598 43.9835 0.1144 9174 +9176 2 10.727306110683825 -439.5507320056573 44.0922 0.1144 9175 +9177 2 11.859183013085879 -439.5495786261191 44.2112 0.1144 9176 +9178 2 12.953949666302028 -440.4313059291348 44.3492 0.1144 9177 +9179 2 13.860906625352463 -441.38216331308746 44.4592 0.1144 9178 +9180 2 14.949741221046683 -441.25935819170263 44.4704 0.1144 9179 +9181 2 15.756344920951491 -440.35985908472946 44.4828 0.1144 9180 +9182 2 16.684150114183968 -439.11556270210497 44.457 0.1144 9181 +9183 2 17.46002772508546 -438.22753404456626 44.2338 0.1144 9182 +9184 2 17.77369348009471 -439.0381507699951 44.1339 0.1144 9183 +9185 2 18.37547283519646 -440.58337015941026 43.9631 0.1144 9184 +9186 2 19.03551238576322 -441.7729258869514 43.8276 0.1144 9185 +9187 2 19.839286491475313 -442.0783357413629 43.7214 0.1144 9186 +9188 2 20.682830842663513 -443.1376717015729 43.6405 0.1144 9187 +9189 2 21.364790792266078 -443.7057709110787 43.5697 0.1144 9188 +9190 2 21.545275683456605 -444.7120470166221 43.4669 0.1144 9189 +9191 2 20.932746504244307 -446.4990256106931 43.3731 0.1144 9190 +9192 2 20.277982784774178 -447.35002258199813 43.3098 0.1144 9191 +9193 2 19.7831042209094 -448.48263712795 43.2712 0.1144 9192 +9194 2 19.371988648500732 -449.9580257268097 43.2561 0.1144 9193 +9195 2 19.115131804187364 -451.57408790434584 43.2634 0.1144 9194 +9196 2 19.196014540169877 -452.762678100834 43.2894 0.1144 9195 +9197 2 19.536988258749968 -453.5466917588244 43.3289 0.1144 9196 +9198 2 19.985138376493804 -454.7496677170509 43.3852 0.1144 9197 +9199 2 20.61960835832583 -456.09465860355846 43.4647 0.1144 9198 +9200 2 21.42850574882148 -456.3535254937726 43.5716 0.1144 9199 +9201 2 22.143553351182188 -457.2596675445758 43.713 0.1144 9200 +9202 2 22.654778217579732 -458.71822536517357 43.941 0.1144 9201 +9203 2 23.29223545978422 -460.25274066216855 44.3142 0.1144 9202 +9204 2 24.18721226681759 -461.4318005600546 44.718 0.1144 9203 +9205 2 24.876152614170156 -461.42209098106184 45.1503 0.1144 9204 +9206 2 25.640238565672778 -462.7505551831884 45.5927 0.1144 9205 +9207 2 26.436833044410392 -463.383615697372 46.0233 0.1144 9206 +9208 2 27.236952469793877 -463.8145274849581 46.4218 0.1144 9207 +9209 2 28.066780772164893 -465.28522877734605 46.7191 0.1144 9208 +9210 2 29.137238430271598 -466.4749305247513 46.9266 0.1144 9209 +9211 2 30.26146890004079 -465.5908240780795 47.0576 0.1144 9210 +9212 2 31.293599583632524 -466.7506874513833 47.1358 0.1144 9211 +9213 2 32.209166436445784 -466.36425963132467 47.1797 0.1144 9212 +9214 2 33.03965905718974 -467.83176585631406 47.2063 0.1144 9213 +9215 2 33.689592698434964 -468.29432403443116 47.2405 0.1144 9214 +9216 2 34.22255655690958 -469.1075152802493 47.3295 0.1144 9215 +9217 2 34.59670932426371 -470.61075238016576 47.395 0.1144 9216 +9218 2 34.64329689221206 -471.95176446815947 47.4292 0.1144 9217 +9219 2 34.78651717726175 -473.3513662447008 47.4314 0.1144 9218 +9220 2 35.09104636778703 -474.81290881888674 47.3502 0.1144 9219 +9221 2 35.38113421309671 -476.29002986464513 47.234 0.1144 9220 +9222 2 35.60940339672178 -477.75997480941885 47.1192 0.1144 9221 +9223 2 35.454697171274454 -479.0065162206048 47.0187 0.1144 9222 +9224 2 35.119465503587165 -480.0764260560035 46.8569 0.1144 9223 +9225 2 34.850220554665874 -481.22131161440484 46.7342 0.1144 9224 +9226 2 34.51311464428305 -482.30868687243407 46.6516 0.1144 9225 +9227 2 34.64943120691607 -483.7784559713334 46.5982 0.1144 9226 +9228 2 34.914489578810894 -485.30909288073514 46.5623 0.1144 9227 +9229 2 35.08292143677077 -486.80431034806423 46.4856 0.1144 9228 +9230 2 35.30066814627076 -488.33009187803 46.5259 0.1144 9229 +9231 2 35.450434370696726 -488.73713436282117 46.5744 0.1144 9230 +9232 2 36.04949926840074 -490.3660329012748 46.6312 0.1144 9231 +9233 2 36.45938298120706 -491.4942629616589 46.7006 0.1144 9232 +9234 2 36.706803331610935 -492.3833254151806 46.7874 0.1144 9233 +9235 2 37.56412740277697 -492.99685768084447 46.9876 0.1144 9234 +9236 2 38.44806497326073 -493.8756459973821 47.185 0.1144 9235 +9237 2 39.44176807626834 -493.9236633955184 47.4348 0.1144 9236 +9238 2 40.549646023217925 -494.6690892507469 47.7837 0.1144 9237 +9239 2 41.650364876278886 -494.6360565153936 48.2944 0.1144 9238 +9240 2 42.72296157139046 -493.8394863490738 49.0874 0.1144 9239 +9241 2 43.70422372422531 -493.2076164911283 50.1642 0.1144 9240 +9242 2 44.317267665263614 -491.48467836792213 51.3422 0.1144 9241 +9243 2 44.28974638499601 -490.21851929194463 52.5952 0.1144 9242 +9244 2 44.72180998132414 -489.4925006989888 54.0904 0.1144 9243 +9245 2 45.3530998182054 -488.96332623594844 55.4366 0.1144 9244 +9246 2 46.08432275611527 -488.5909707754069 56.6364 0.1144 9245 +9247 2 47.01977648925342 -487.8365990693767 57.8099 0.1144 9246 +9248 2 47.964658791482414 -487.01814895067923 59.026 0.1144 9247 +9249 2 48.10173149407312 -486.3309773657127 60.893 0.1144 9248 +9250 2 47.56386549249171 -485.2607168438453 62.8835 0.1144 9249 +9251 2 46.99326400959536 -485.2590491419627 64.6509 0.1144 9250 +9252 2 46.869660596562696 -485.92445258264434 65.7376 0.1144 9251 +9253 2 46.74439967286615 -487.26651957901163 66.4936 0.1144 9252 +9254 2 46.88729409659168 -488.32520099007223 66.2368 0.1144 9253 +9255 2 47.208224067877985 -489.0205916839872 66.0696 0.1144 9254 +9256 2 47.66086597906949 -490.05323657326903 65.8899 0.1144 9255 +9257 2 48.25070662140387 -491.6509504354376 65.6821 0.1144 9256 +9258 2 48.98263963244969 -492.2573646991319 65.4371 0.1144 9257 +9259 2 49.733899706603516 -492.93090756728157 65.1515 0.1144 9258 +9260 2 50.169792761484096 -494.3786226672449 64.3496 0.1144 9259 +9261 2 49.5434143844371 -494.86336431447256 63.0823 0.1144 9260 +9262 2 48.87624714713993 -496.4894430484926 62.3104 0.1144 9261 +9263 2 48.422525341939526 -498.2093392590207 61.6748 0.1144 9262 +9264 2 48.33981559208683 -499.4932858358462 61.147 0.1144 9263 +9265 2 48.533992915110545 -500.84763661073714 60.7029 0.1144 9264 +9266 2 49.03977104444695 -501.1664151278176 60.1485 0.1144 9265 +9267 2 49.75743060364783 -500.8150401394104 59.1592 0.1144 9266 +9268 2 50.24283854364666 -499.97422314939394 58.3579 0.1144 9267 +9269 2 50.81561830653547 -499.29699398282 57.4636 0.1144 9268 +9270 2 50.30335149303272 -499.88773599997023 55.9224 0.1144 9269 +9271 2 50.808546388974506 -501.1411895214322 54.7828 0.1144 9270 +9272 2 51.63923783049506 -502.5484053691762 53.9414 0.1144 9271 +9273 2 52.676108487236874 -501.837916449413 53.2991 0.1144 9272 +9274 2 53.77557505942657 -502.4538923806399 52.8324 0.1144 9273 +9275 2 54.88368986304569 -502.13000029995686 52.5095 0.1144 9274 +9276 2 55.99390786403885 -503.2037315510112 52.2743 0.1144 9275 +9277 2 57.12492432042646 -503.2696424704443 52.0386 0.1144 9276 +9278 2 58.25637916508039 -502.86600058136275 51.7292 0.1144 9277 +9279 2 59.382516313819295 -502.0092273552085 51.338 0.1144 9278 +9280 2 60.49272740713159 -502.22056102483475 50.8665 0.1144 9279 +9281 2 61.50858897293922 -500.54029517215724 50.2684 0.1144 9280 +9282 2 62.21157614265803 -499.83513413382593 49.6877 0.1144 9281 +9283 2 62.846557896549925 -499.19552121596064 49.0176 0.1144 9282 +9284 2 62.644911931711036 -499.18236116146926 48.7738 0.1144 9283 +9285 2 61.535756689854935 -498.5339419997744 48.4411 0.1144 9284 +9286 2 60.396293622623894 -499.6813576712497 48.3627 0.1144 9285 +9287 2 59.32084901932342 -499.97008577865887 48.4159 0.1144 9286 +9288 2 58.33443004444642 -501.24801201302404 48.5349 0.1144 9287 +9289 2 57.30191512621526 -501.8738775752237 48.6534 0.1144 9288 +9290 2 56.1724998077748 -502.51685233721304 48.7343 0.1144 9289 +9291 2 55.050006034016675 -502.0685456759503 48.7866 0.1144 9290 +9292 2 53.9357976777705 -502.6104614752405 48.82 0.1144 9291 +9293 2 52.81477871163358 -502.92482068114293 48.8396 0.1144 9292 +9294 2 51.68576041922093 -504.12079884907115 48.8561 0.1144 9293 +9295 2 50.55393627339453 -503.765730016774 48.8779 0.1144 9294 +9296 2 49.419887808724184 -503.19305272996525 48.9076 0.1144 9295 +9297 2 48.28127115936152 -504.29611763010604 48.9569 0.1144 9296 +9298 2 47.13838205272867 -503.7708655871205 49.0221 0.1144 9297 +9299 2 45.99501072721826 -504.58997416721434 49.0994 0.1144 9298 +9300 2 44.86770470264363 -503.71878493466824 49.1851 0.1144 9299 +9301 2 43.731961987500284 -503.4795217262235 49.3419 0.1144 9300 +9302 2 42.613620135404624 -503.93712734484484 49.9215 0.1144 9301 +9303 2 63.22401468165762 -499.1643196231154 47.6459 0.1144 9283 +9304 2 64.0910892881515 -499.08841461463993 46.2185 0.1144 9303 +9305 2 65.18250588476255 -498.44563847867664 45.7358 0.1144 9304 +9306 2 66.2524405772785 -499.03878714631855 45.4798 0.1144 9305 +9307 2 67.3259330434774 -498.9726025872242 45.3015 0.1144 9306 +9308 2 68.44188799832438 -500.0609545926915 45.2035 0.1144 9307 +9309 2 68.97403656714272 -501.40813738820464 45.2334 0.1144 9308 +9310 2 68.39351766754315 -502.24587658188506 45.4342 0.1144 9309 +9311 2 47.142058480137294 -484.5955142307968 65.2543 0.1144 9251 +9312 2 47.53921223307273 -482.85416256588724 66.3292 0.1144 9311 +9313 2 47.91474062185799 -481.853520083649 67.0292 0.1144 9312 +9314 2 47.96114340231848 -480.563946486233 67.5738 0.1144 9313 +9315 2 47.619249692119816 -479.0201105402802 67.9694 0.1144 9314 +9316 2 47.56402861342458 -477.64867145671303 68.2606 0.1144 9315 +9317 2 47.82115275008322 -476.53879328688856 68.4827 0.1144 9316 +9318 2 47.8900902911862 -475.2712053594679 68.6846 0.1144 9317 +9319 2 47.7818075920697 -473.86949763863737 68.8862 0.1144 9318 +9320 2 47.65912498698724 -472.459285509038 69.0757 0.1144 9319 +9321 2 47.52633337100016 -471.210391640371 69.2616 0.1144 9320 +9322 2 47.31361614122119 -470.3252665600038 69.4896 0.1144 9321 +9323 2 47.21179087426379 -469.2256364096164 69.7407 0.1144 9322 +9324 2 47.19416567896697 -467.9571430894027 70.014 0.1144 9323 +9325 2 47.16491050249781 -466.7182513974061 70.3301 0.1144 9324 +9326 2 47.03278320488368 -465.6806326919261 70.6941 0.1144 9325 +9327 2 46.790577535279354 -464.6258782150685 71.1024 0.1144 9326 +9328 2 46.37848181526522 -463.1309381465009 71.7094 0.1144 9327 +9329 2 46.15673715029474 -461.71575888122663 72.3828 0.1144 9328 +9330 2 46.063560807303446 -460.36208114019263 73.0355 0.1144 9329 +9331 2 45.94824293557768 -459.00618575310415 73.7624 0.1144 9330 +9332 2 45.97210174534257 -457.74194516928253 74.485 0.1144 9331 +9333 2 46.09192344320609 -456.5452292446528 75.1556 0.1144 9332 +9334 2 46.01005742322926 -455.1947141405178 75.731 0.1144 9333 +9335 2 45.85690781772386 -453.7937932019236 76.2328 0.1144 9334 +9336 2 45.75896308419047 -452.43197712366083 76.7122 0.1144 9335 +9337 2 45.69148294203349 -451.124335572446 77.1848 0.1144 9336 +9338 2 46.14845619836844 -450.2201762654946 77.6558 0.1144 9337 +9339 2 46.92367018343345 -449.82768618030775 78.0982 0.1144 9338 +9340 2 47.489233384439316 -447.87244173489256 78.7052 0.1144 9339 +9341 2 47.949229829766885 -446.3075853814936 79.2728 0.1144 9340 +9342 2 48.41595651022833 -445.4536363673799 79.7527 0.1144 9341 +9343 2 48.8848216241475 -444.59505588923673 80.1651 0.1144 9342 +9344 2 49.3557313664617 -443.1356064941626 80.521 0.1144 9343 +9345 2 49.82623625776818 -441.461978428694 80.829 0.1144 9344 +9346 2 50.2976337295896 -440.5698610334597 81.0956 0.1144 9345 +9347 2 50.697617976896105 -439.34395148027136 81.3492 0.1144 9346 +9348 2 50.76116183928722 -438.0358355778702 81.5954 0.1144 9347 +9349 2 50.81333991126817 -436.72971434033235 81.8367 0.1144 9348 +9350 2 51.031089443405314 -435.4532466610691 82.0848 0.1144 9349 +9351 2 51.44268723469152 -434.5193597017454 82.3469 0.1144 9350 +9352 2 51.47076985302226 -433.2271290421203 82.6146 0.1144 9351 +9353 2 51.333037051746956 -431.82714878569084 82.8822 0.1144 9352 +9354 2 51.245324859634685 -430.45882254562406 83.1468 0.1144 9353 +9355 2 51.19526471085313 -429.1125601201564 83.4092 0.1144 9354 +9356 2 51.14484346466388 -427.76830625461747 83.6741 0.1144 9355 +9357 2 51.62520100109285 -426.9187254080359 84.1593 0.1144 9356 +9358 2 52.103951587171494 -426.0724581745775 84.4816 0.1144 9357 +9359 2 52.11934357246561 -424.7912087040286 84.8764 0.1144 9358 +9360 2 51.72118433843073 -423.30386989883726 85.3647 0.1144 9359 +9361 2 51.455241903537456 -421.8551113618332 85.9295 0.1144 9360 +9362 2 51.77141690204498 -420.8524933038859 86.5407 0.1144 9361 +9363 2 52.116951299231914 -419.8779520078293 87.1646 0.1144 9362 +9364 2 52.46092018531817 -418.62203865450414 87.7836 0.1144 9363 +9365 2 52.64610262124142 -417.02895446067356 88.3537 0.1144 9364 +9366 2 52.56749115398223 -415.8996805558701 88.8362 0.1144 9365 +9367 2 52.483392202948735 -414.7752122509215 89.2531 0.1144 9366 +9368 2 52.39902595956998 -413.6483488320245 89.6204 0.1144 9367 +9369 2 52.23282393108378 -412.30954159271226 89.9696 0.1144 9368 +9370 2 51.99079725939177 -410.87035392056293 90.3235 0.1144 9369 +9371 2 51.874709645130956 -409.494675975665 90.6592 0.1144 9370 +9372 2 51.96632329965883 -408.26232636028413 90.9471 0.1144 9371 +9373 2 52.05780722050394 -407.0275457317718 91.198 0.1144 9372 +9374 2 52.14954750713129 -405.7914632450355 91.4211 0.1144 9373 +9375 2 52.24031784537381 -404.555990772699 91.6255 0.1144 9374 +9376 2 52.33219569066371 -403.33089023127246 91.8229 0.1144 9375 +9377 2 52.42398834310377 -402.02151574004336 92.0282 0.1144 9376 +9378 2 52.51475868134631 -400.5846056115039 92.2505 0.1144 9377 +9379 2 52.36022475891478 -400.4808975417538 92.1371 0.1144 9378 +9380 2 51.73582234873764 -398.9731956972302 92.4851 0.1144 9379 +9381 2 51.105665162440985 -397.6506582345928 92.708 0.1144 9380 +9382 2 50.47586907355196 -397.1232443760202 92.9376 0.1144 9381 +9383 2 49.82285987750136 -395.67433194471676 93.1997 0.1144 9382 +9384 2 49.08914642882252 -394.8251746033278 93.4702 0.1144 9383 +9385 2 48.33963086368156 -393.324258329954 93.7577 0.1144 9384 +9386 2 47.59174646371534 -392.84776462908826 94.0727 0.1144 9385 +9387 2 46.98377766133625 -392.24822651967776 94.5367 0.1144 9386 +9388 2 46.50178866310158 -390.7742832301171 95.2165 0.1144 9387 +9389 2 46.042619540120356 -389.42403704581807 96.0596 0.1144 9388 +9390 2 45.56486735462438 -388.8562167669775 96.9856 0.1144 9389 +9391 2 44.60984240326472 -387.9837038234751 97.8597 0.1144 9390 +9392 2 43.61081168406726 -387.3604490937463 98.6605 0.1144 9391 +9393 2 42.58969800511435 -386.74756451958586 99.3518 0.1144 9392 +9394 2 41.61091405655489 -386.9358922991544 100.4038 0.1144 9393 +9395 2 52.73916175559899 -399.1695758930897 92.4885 0.1144 9378 +9396 2 53.01732532987798 -397.40723980135124 92.7984 0.1144 9395 +9397 2 53.29570383068944 -395.95490607022106 93.142 0.1144 9396 +9398 2 53.996061043323735 -395.4479171998694 93.5332 0.1144 9397 +9399 2 54.817264855044286 -394.75375689150167 93.9537 0.1144 9398 +9400 2 55.647208294210266 -394.1433249204199 94.3928 0.1144 9399 +9401 2 56.47621461202842 -392.6216833425204 94.8343 0.1144 9400 +9402 2 57.06529724274432 -391.9406802630714 95.2893 0.1144 9401 +9403 2 56.74839466829378 -390.50557541532584 95.7337 0.1144 9402 +9404 2 56.3888074692083 -389.04102614101157 96.15 0.1144 9403 +9405 2 56.04254239449537 -388.20005766289484 96.5166 0.1144 9404 +9406 2 56.13535736113293 -386.8120453952372 96.7005 0.1144 9405 +9407 2 56.26616903131642 -385.4584526471358 96.7232 0.1144 9406 +9408 2 56.350120839992144 -384.0755950582194 96.579 0.1144 9407 +9409 2 56.43585308630091 -382.68818836273294 96.3449 0.1144 9408 +9410 2 56.55788989295537 -381.44165257414 96.1607 0.1144 9409 +9411 2 56.81898836810039 -380.36992388641886 96.4368 0.1144 9410 +9412 2 56.82373434875308 -379.1125768397253 96.8789 0.1144 9411 +9413 2 56.65334615683102 -377.7202418641284 97.2216 0.1144 9412 +9414 2 56.59179668712275 -376.3955769194954 97.5842 0.1144 9413 +9415 2 56.70577531443388 -375.20663639098655 98.0484 0.1144 9414 +9416 2 56.89487662144779 -374.08508928584445 98.6042 0.1144 9415 +9417 2 57.08081718080649 -372.96852078969306 99.2166 0.1144 9416 +9418 2 57.266663935102706 -371.8564797579079 99.8729 0.1144 9417 +9419 2 57.44578596489461 -370.73310316144614 100.4864 0.1144 9418 +9420 2 57.62259297236312 -369.5994193212804 101.0008 0.1144 9419 +9421 2 57.79840739108808 -368.1907371974712 101.4177 0.1144 9420 +9422 2 57.97476190513294 -366.60592605165107 101.7576 0.1144 9421 +9423 2 58.15142515077278 -365.011247060388 102.0443 0.1144 9422 +9424 2 58.3284494938202 -363.41483161800045 102.2997 0.1144 9423 +9425 2 58.34775724862193 -362.0987882111173 102.5592 0.1144 9424 +9426 2 57.636788384936445 -362.34825720205504 102.7942 0.1144 9425 +9427 2 57.69970727290964 -361.24448700988245 103.0641 0.1144 9426 +9428 2 57.85391484228666 -359.7019903778944 103.32 0.1144 9427 +9429 2 57.815614408360176 -358.4902207619479 103.5577 0.1144 9428 +9430 2 57.77125356830225 -357.2853334256796 103.7954 0.1144 9429 +9431 2 57.72529439010677 -356.08326850098024 104.0418 0.1144 9430 +9432 2 57.67933521191126 -354.83026598641464 104.3036 0.1144 9431 +9433 2 57.63461327444568 -353.52316316500645 104.5842 0.1144 9432 +9434 2 57.61711781283152 -352.23347971802264 104.9177 0.1144 9433 +9435 2 57.67327332488195 -351.0026929053677 105.3676 0.1144 9434 +9436 2 57.75330385342049 -349.6336564357054 105.9092 0.1144 9435 +9437 2 57.83356884726718 -348.2025550875119 106.4809 0.1144 9436 +9438 2 57.89203938164101 -346.80852601125974 107.0174 0.1144 9437 +9439 2 57.76886904705136 -345.74321434269734 107.3293 0.1144 9438 +9440 2 57.5492480948558 -344.55665822601935 107.3713 0.1144 9439 +9441 2 57.37132779076433 -343.1582688435998 107.2294 0.1144 9440 +9442 2 57.346746507238116 -341.8464174993673 107.0628 0.1144 9441 +9443 2 57.35843385543748 -340.5605468391337 106.9264 0.1144 9442 +9444 2 57.37012120363686 -339.2728037343948 106.8463 0.1144 9443 +9445 2 57.369420447228364 -337.97664586192724 106.8418 0.1144 9444 +9446 2 57.304830658798274 -336.6398616882079 106.9169 0.1144 9445 +9447 2 57.16540261273976 -335.26133630899915 107.0588 0.1144 9446 +9448 2 57.01211785761831 -333.8732458559933 107.2422 0.1144 9447 +9449 2 56.861145023237256 -332.4896726757497 107.4542 0.1144 9448 +9450 2 56.7075515365209 -331.1145443879732 107.6866 0.1144 9449 +9451 2 56.55516246349753 -329.72986670759644 107.9308 0.1144 9450 +9452 2 56.54341936895631 -328.4660308593685 108.1746 0.1144 9451 +9453 2 57.0181627895114 -327.62486451110556 108.4084 0.1144 9452 +9454 2 57.50083844984684 -326.80866823786636 108.6683 0.1144 9453 +9455 2 57.6481891519904 -325.4017521104446 108.9726 0.1144 9454 +9456 2 57.48750743431561 -324.2741974684521 109.2146 0.1144 9455 +9457 2 57.102929099481955 -322.7967751936793 109.3448 0.1144 9456 +9458 2 56.71785993355801 -321.31649542779724 109.3862 0.1144 9457 +9459 2 56.28370487077237 -319.83454215135714 109.3537 0.1144 9458 +9460 2 55.750741012297865 -319.4899876815603 109.261 0.1144 9459 +9461 2 55.47055405236693 -318.61421847992955 109.1577 0.1144 9460 +9462 2 55.65215848329492 -317.13543760148764 109.093 0.1144 9461 +9463 2 55.61310612909911 -315.891714335179 109.0494 0.1144 9462 +9464 2 55.23771061038532 -314.67727549224026 109.0404 0.1144 9463 +9465 2 55.22900953339085 -313.6198244236052 109.2442 0.1144 9464 +9466 2 55.94843031090766 -312.01816860937777 109.7631 0.1144 9465 +9467 2 56.335497977385884 -310.66319296760156 110.3544 0.1144 9466 +9468 2 56.31944208730933 -309.41066631201585 110.9346 0.1144 9467 +9469 2 56.01535987957804 -308.22801431333875 111.4375 0.1144 9468 +9470 2 55.62628113908407 -307.55635122538064 111.8415 0.1144 9469 +9471 2 55.226740902490505 -306.62414617500565 112.1434 0.1144 9470 +9472 2 54.88741788786082 -305.15859013990377 112.3612 0.1144 9471 +9473 2 55.055141300205364 -304.0292299789721 112.4712 0.1144 9472 +9474 2 55.198790466837266 -302.8495614553585 112.5606 0.1144 9473 +9475 2 55.02728305407209 -301.46047587418036 112.6336 0.1144 9474 +9476 2 54.76569726301039 -300.0621636572337 112.6824 0.1144 9475 +9477 2 54.566302157603985 -298.7627152985307 112.7129 0.1144 9476 +9478 2 54.42362506945745 -297.462233466623 112.7333 0.1144 9477 +9479 2 54.32566320619488 -296.16588950179033 112.7524 0.1144 9478 +9480 2 54.28651945598305 -294.9288825924442 112.7689 0.1144 9479 +9481 2 54.532638899639004 -293.68943099539047 112.7655 0.1144 9480 +9482 2 54.877585653786234 -292.48382675644797 112.7484 0.1144 9481 +9483 2 55.15725927177002 -291.42650070162813 112.7888 0.1144 9482 +9484 2 55.37425068047164 -289.8943300437451 112.9075 0.1144 9483 +9485 2 55.52462147002478 -288.42045724912896 113.0856 0.1144 9484 +9486 2 55.64795649543465 -286.97201093714295 113.3048 0.1144 9485 +9487 2 55.759040974899186 -285.53557488927504 113.5467 0.1144 9486 +9488 2 55.86602448377776 -284.15407744482553 113.7903 0.1144 9487 +9489 2 55.98583456254166 -282.97172526610615 114.0132 0.1144 9488 +9490 2 56.23592524310101 -281.90078243510146 114.1762 0.1144 9489 +9491 2 56.51141269764898 -280.8553826490714 114.2789 0.1144 9490 +9492 2 56.7684485398747 -279.7874935089664 114.3173 0.1144 9491 +9493 2 57.02143577732707 -278.68953703827196 114.31 0.1144 9492 +9494 2 57.185622623926136 -277.09757202241735 114.331 0.1144 9493 +9495 2 57.27723317687085 -275.62880175365336 114.4058 0.1144 9494 +9496 2 57.253012990752325 -274.3583540698628 114.5113 0.1144 9495 +9497 2 57.205221009111 -273.1289334203578 114.6348 0.1144 9496 +9498 2 57.15591588218186 -271.907172508163 114.7667 0.1144 9497 +9499 2 57.24400148848062 -270.42811404960315 114.8801 0.1144 9498 +9500 2 57.399462735780276 -268.8303215128262 114.9632 0.1144 9499 +9501 2 57.56409587263677 -267.217092146235 115.0229 0.1144 9500 +9502 2 57.728282719235835 -265.9534820418788 115.0708 0.1144 9501 +9503 2 57.89456656004276 -264.80972507248936 115.113 0.1144 9502 +9504 2 57.963275146467325 -263.58953941161536 115.169 0.1144 9503 +9505 2 57.94734209437057 -262.31137544198594 115.2533 0.1144 9504 +9506 2 57.91585708842777 -261.0273434720431 115.3639 0.1144 9505 +9507 2 57.91832018125753 -259.7622678196661 115.467 0.1144 9506 +9508 2 57.96805659881548 -258.5115165859066 115.5291 0.1144 9507 +9509 2 57.98962941917439 -257.26020336584753 115.6534 0.1144 9508 +9510 2 58.61422325071689 -256.6404554617861 115.8601 0.1144 9509 +9511 2 58.87385001982382 -255.58277895110183 116.0662 0.1144 9510 +9512 2 58.94821647572226 -254.3790281371576 116.2672 0.1144 9511 +9513 2 59.02249773877091 -253.17047007231758 116.5212 0.1144 9512 +9514 2 59.042654320487486 -251.92252302814137 116.7538 0.1144 9513 +9515 2 59.061821415043596 -250.67488516544677 116.9582 0.1144 9514 +9516 2 59.07983646171947 -249.42450582447128 117.143 0.1144 9515 +9517 2 59.09779914258257 -248.17048425384365 117.3194 0.1144 9516 +9518 2 59.146237341385145 -246.9432005574031 117.5149 0.1144 9517 +9519 2 59.19775419657607 -245.7196978693765 117.7204 0.1144 9518 +9520 2 59.25029336596471 -244.4957839242874 117.9346 0.1144 9519 +9521 2 59.26376115179707 -243.25189484211361 118.1194 0.1144 9520 +9522 2 59.2497875352457 -241.9807907852702 118.258 0.1144 9521 +9523 2 59.234739238684 -240.72497414880075 118.3563 0.1144 9522 +9524 2 59.222278767420505 -239.45594493879952 118.421 0.1144 9523 +9525 2 59.104589713439026 -238.11818808434964 118.4845 0.1144 9524 +9526 2 58.956160950756 -236.76805487982705 118.5545 0.1144 9525 +9527 2 58.80844577067566 -235.42497049301238 118.6296 0.1144 9526 +9528 2 58.80017146284797 -234.160731669395 118.6662 0.1144 9527 +9529 2 58.79790519533884 -232.89977273656027 118.6668 0.1144 9528 +9530 2 58.79819392609086 -231.64008259958777 118.6357 0.1144 9529 +9531 2 58.796864779929535 -230.37997433356247 118.5786 0.1144 9530 +9532 2 58.79679241327386 -229.11896491070357 118.5027 0.1144 9531 +9533 2 58.79452614576478 -227.8600335017233 118.4162 0.1144 9532 +9534 2 58.79445377910916 -226.60376460384413 118.3252 0.1144 9533 +9535 2 58.84672565615254 -225.3896057319142 118.2381 0.1144 9534 +9536 2 58.90634754586995 -224.1757390308034 118.1443 0.1144 9535 +9537 2 58.76273333637566 -222.80462197400436 118.0304 0.1144 9536 +9538 2 58.36277653497858 -221.3572908886544 117.8839 0.1144 9537 +9539 2 59.0334198574331 -221.66819297682716 117.602 0.1144 9538 +9540 2 60.0791190396006 -220.43271376910155 116.5861 0.1144 9539 +9541 2 60.9592039253108 -220.11220993925946 116.0832 0.1144 9540 +9542 2 61.67145058648272 -218.9301657393953 115.6025 0.1144 9541 +9543 2 62.21307710043847 -218.07632914989713 115.1461 0.1144 9542 +9544 2 61.92814846853251 -216.69257011338834 114.8174 0.1144 9543 +9545 2 61.642822810598744 -215.36874144344276 114.5995 0.1144 9544 +9546 2 61.35678357006235 -214.2442068744316 114.4268 0.1144 9545 +9547 2 57.52553725959311 -219.71480265837147 117.644 0.1144 9538 +9548 2 57.33241238466887 -218.47369837461324 117.2746 0.1144 9547 +9549 2 57.791262985282415 -217.66804552525684 116.6623 0.1144 9548 +9550 2 58.29439413962204 -216.9241346723669 115.9656 0.1144 9549 +9551 2 58.69789851548144 -216.06706772840616 115.2836 0.1144 9550 +9552 2 59.04677886140199 -214.9671484694963 114.6516 0.1144 9551 +9553 2 59.325568416387284 -213.62967105586642 114.0919 0.1144 9552 +9554 2 59.50846865702424 -212.00294670864088 113.615 0.1144 9553 +9555 2 59.65403892153479 -210.5058293580974 113.2068 0.1144 9554 +9556 2 59.7753207063369 -209.12059190070812 112.8523 0.1144 9555 +9557 2 59.86288575609137 -207.75431982947742 112.5485 0.1144 9556 +9558 2 59.95766325985741 -206.53844712316788 112.2363 0.1144 9557 +9559 2 60.02766455440775 -205.35806034857194 111.904 0.1144 9558 +9560 2 59.98076825486446 -204.08279382260667 111.6973 0.1144 9559 +9561 2 59.843162085688746 -202.75087056136198 111.6475 0.1144 9560 +9562 2 59.637706574151025 -201.55606191165572 111.708 0.1144 9561 +9563 2 59.39755104357138 -200.52228659264733 111.8337 0.1144 9562 +9564 2 59.01070454159749 -199.86312424345363 111.9611 0.1144 9563 +9565 2 58.39025934017768 -198.96437702957297 112.0042 0.1144 9564 +9566 2 57.66567875085245 -197.52771778800593 111.9311 0.1144 9565 +9567 2 57.00135923178739 -196.070809264925 111.7959 0.1144 9566 +9568 2 56.58991310946358 -194.63617239533195 111.7088 0.1144 9567 +9569 2 56.45003877314757 -193.30877485381774 111.687 0.1144 9568 +9570 2 56.54183142558766 -192.13063667000063 111.6424 0.1144 9569 +9571 2 56.62774266980864 -190.9507269650611 111.5881 0.1144 9570 +9572 2 56.54822931728532 -189.6550017722202 111.587 0.1144 9571 +9573 2 56.40202728249284 -188.32345088122014 111.6382 0.1144 9572 +9574 2 56.213730675151524 -186.9856842857365 111.706 0.1144 9573 +9575 2 55.91507979126216 -186.06181804206898 111.7542 0.1144 9574 +9576 2 55.67019490034369 -185.0696793926184 111.7416 0.1144 9575 +9577 2 55.523416841611095 -183.96393799783954 111.6578 0.1144 9576 +9578 2 55.439408594056985 -182.74744331913462 111.5268 0.1144 9577 +9579 2 55.37633195091473 -181.5207328730589 111.3728 0.1144 9578 +9580 2 55.313307673585214 -180.28150834972325 111.2157 0.1144 9579 +9581 2 55.2512205176035 -179.0106693626071 111.0701 0.1144 9580 +9582 2 55.18756785052115 -177.7356759775333 110.9444 0.1144 9581 +9583 2 55.126503008736975 -176.46695183931564 110.8377 0.1144 9582 +9584 2 55.048502801501456 -175.20643097484805 110.8128 0.1144 9583 +9585 2 55.136012383860134 -173.99469163463948 110.8159 0.1144 9584 +9586 2 55.30064552071664 -172.46447528039766 110.81 0.1144 9585 +9587 2 55.46684416867376 -170.9404566013502 110.7999 0.1144 9586 +9588 2 55.52013835991471 -169.58206072824913 110.808 0.1144 9587 +9589 2 55.50767788865119 -168.27613807076796 110.843 0.1144 9588 +9590 2 55.460332197267334 -167.01447874558733 110.9164 0.1144 9589 +9591 2 55.33453810875939 -165.87330604366258 111.0693 0.1144 9590 +9592 2 55.17901801353477 -164.78475238853383 111.298 0.1144 9591 +9593 2 55.19627803835827 -163.44109026853633 111.5548 0.1144 9592 +9594 2 55.324375251144076 -161.92678008504092 111.806 0.1144 9593 +9595 2 55.46922883146887 -160.55447086115845 112.0434 0.1144 9594 +9596 2 55.612877998100785 -159.42512332097652 112.2629 0.1144 9595 +9597 2 55.75911499003084 -158.2974816771857 112.4617 0.1144 9596 +9598 2 55.903701278010516 -157.16878001568944 112.6443 0.1144 9597 +9599 2 56.047796734899876 -156.03830660134128 112.8165 0.1144 9598 +9600 2 56.192383022879525 -154.91020986674653 112.9806 0.1144 9599 +9601 2 56.39421640217975 -153.82862587190712 113.1315 0.1144 9600 +9602 2 56.79592561972342 -152.90507610842454 113.2538 0.1144 9601 +9603 2 57.258947663090126 -151.83714838646512 113.349 0.1144 9602 +9604 2 57.345434931251276 -150.61932330766956 113.4286 0.1144 9603 +9605 2 57.25919995580665 -149.35720339743133 113.5131 0.1144 9604 +9606 2 57.15674319751331 -148.08561488374775 113.6187 0.1144 9605 +9607 2 57.1429516804573 -146.83917662519875 113.7388 0.1144 9606 +9608 2 57.418524327855096 -145.80763872102264 113.8561 0.1144 9607 +9609 2 57.776702502895475 -143.9428813756409 113.9625 0.1144 9608 +9610 2 58.134571946340884 -142.3474895931146 114.0591 0.1144 9609 +9611 2 58.49434845951886 -141.36014727554166 114.1476 0.1144 9610 +9612 2 58.85150432036167 -140.32748372292426 114.2313 0.1144 9611 +9613 2 59.209734861214756 -139.36205305319646 114.3178 0.1144 9612 +9614 2 59.567998229104916 -138.43562380062824 114.4136 0.1144 9613 +9615 2 59.92573011388777 -137.51307510791054 114.5228 0.1144 9614 +9616 2 60.28404584759066 -136.50715216737595 114.6499 0.1144 9615 +9617 2 60.648681454790164 -134.60043826941168 114.8118 0.1144 9616 +9618 2 61.01622454544572 -133.07307879273756 115.0131 0.1144 9617 +9619 2 61.360504572173454 -132.09641067893483 115.253 0.1144 9618 +9620 2 61.112778591757746 -130.77354361265657 115.5686 0.1144 9619 +9621 2 60.79002984517173 -129.40093347316295 115.9362 0.1144 9620 +9622 2 60.580085641769415 -128.27047563707066 116.3613 0.1144 9621 +9623 2 60.32090316746401 -127.43404404003947 116.8163 0.1144 9622 +9624 2 59.97660062987947 -126.79251418913076 117.2808 0.1144 9623 +9625 2 59.61278582810843 -125.6949281282651 117.752 0.1144 9624 +9626 2 59.243668743641535 -124.31793262198038 118.2429 0.1144 9625 +9627 2 58.852234234110995 -122.95048391755353 118.8757 0.1144 9626 +9628 2 58.45759753767558 -121.59264476938617 119.5883 0.1144 9627 +9629 2 58.06296084124011 -120.23433964002146 120.3065 0.1144 9628 +9630 2 57.800058725068624 -118.9204598672772 120.8396 0.1144 9629 +9631 2 57.82639683438646 -117.72767183045619 120.8105 0.1144 9630 +9632 2 58.142659434790346 -116.78688661218469 120.4269 0.1144 9631 +9633 2 58.65406610405225 -116.12022351944555 120.1138 0.1144 9632 +9634 2 58.82129016779001 -115.14396481400046 119.9461 0.1144 9633 +9635 2 58.88336232414312 -114.09058949521834 119.9579 0.1144 9634 +9636 2 58.94008765696745 -113.0351022584734 120.1603 0.1144 9635 +9637 2 58.996154874585045 -111.98486097102464 120.5014 0.1144 9636 +9638 2 59.05212828714011 -110.93687693226866 120.9104 0.1144 9637 +9639 2 59.10774060228752 -109.69272954003318 121.3439 0.1144 9638 +9640 2 58.925193260436146 -108.73013726565247 121.8386 0.1144 9639 +9641 2 58.72754335657922 -107.56524081970322 122.3684 0.1144 9640 +9642 2 58.529447162464834 -106.40343512926911 122.9147 0.1144 9641 +9643 2 58.33237328254802 -105.2430333787632 123.4582 0.1144 9642 +9644 2 58.12763755677909 -104.07539362473372 123.9084 0.1144 9643 +9645 2 57.922943270259935 -102.90334621874023 124.2884 0.1144 9644 +9646 2 57.717182128710334 -101.73194595850292 124.6101 0.1144 9645 +9647 2 57.51209081616335 -100.57265734749845 124.894 0.1144 9646 +9648 2 57.30601001645584 -99.40149557932835 125.1578 0.1144 9647 +9649 2 56.82080100905051 -98.17409718772512 125.4294 0.1144 9648 +9650 2 56.22659520536803 -96.95658723183863 125.7203 0.1144 9649 +9651 2 55.57761480320448 -96.50385186944361 126.0353 0.1144 9650 +9652 2 54.636675201834464 -96.47694290343419 126.4136 0.1144 9651 +9653 2 54.34548294535364 -95.88901516889266 126.5734 0.1144 9652 +9654 2 53.73835986830633 -94.6742519188828 126.8803 0.1144 9653 +9655 2 53.13154552285391 -93.46402808492431 127.146 0.1144 9654 +9656 2 52.52352676370856 -92.2570194342853 127.3821 0.1144 9655 +9657 2 51.87012364321325 -91.64658568142139 127.6324 0.1144 9656 +9658 2 51.16197666168608 -91.13414616170526 127.9225 0.1144 9657 +9659 2 50.44982561621845 -89.95121718472352 128.1941 0.1144 9658 +9660 2 49.74172007394105 -88.76898953960543 128.417 0.1144 9659 +9661 2 49.03602025746639 -87.59127117846597 128.606 0.1144 9660 +9662 2 48.34070225487113 -87.00152964603542 128.7882 0.1144 9661 +9663 2 47.65620374420007 -86.42752183847374 128.9806 0.1144 9662 +9664 2 46.9716200406792 -85.28540881046611 129.1884 0.1144 9663 +9665 2 46.28774991976093 -84.11041792463298 129.4196 0.1144 9664 +9666 2 45.59755520194926 -82.94695248527832 129.6784 0.1144 9665 +9667 2 44.89261350891013 -82.02947810573629 129.9687 0.1144 9666 +9668 2 44.18010136603482 -81.75914932027996 130.2871 0.1144 9667 +9669 2 43.42527490598536 -80.62307412706967 130.6071 0.1144 9668 +9670 2 42.61812512608569 -79.51203116230096 130.9104 0.1144 9669 +9671 2 41.79559998120564 -78.41366589112334 131.1979 0.1144 9670 +9672 2 41.00398502542288 -78.1375271758987 131.4804 0.1144 9671 +9673 2 40.464487751992465 -77.2293359202817 131.7994 0.1144 9672 +9674 2 40.1326116566824 -76.05308607449874 132.1704 0.1144 9673 +9675 2 39.802333899510046 -74.88037212019775 132.5671 0.1144 9674 +9676 2 39.466624125959186 -73.71097552374816 132.9686 0.1144 9675 +9677 2 38.9592797929856 -72.54453697670918 133.2506 0.1144 9676 +9678 2 38.34133412243102 -71.38837988830709 133.3615 0.1144 9677 +9679 2 37.72080062657827 -70.35768734081327 133.3352 0.1144 9678 +9680 2 37.415963396994584 -69.50729986802952 133.3895 0.1144 9679 +9681 2 37.27457591539073 -68.45537616593121 133.6048 0.1144 9680 +9682 2 37.135459702510246 -67.402504570206 133.903 0.1144 9681 +9683 2 37.32439432324804 -66.11563046394659 133.518 0.1144 9682 +9684 2 37.383241368248775 -64.9582170375429 132.5811 0.1144 9683 +9685 2 36.962835589765376 -64.33008520046165 131.5728 0.1144 9684 +9686 2 36.330428751130825 -63.678990464134095 130.697 0.1144 9685 +9687 2 35.84804341940492 -62.56364953519914 129.8928 0.1144 9686 +9688 2 35.49381156136465 -61.43334664797231 129.2343 0.1144 9687 +9689 2 35.06722453936865 -60.285574926284966 128.8272 0.1144 9688 +9690 2 34.593058562632564 -59.6059445525009 128.6569 0.1144 9689 +9691 2 34.05978907414618 -58.79442745012044 128.457 0.1144 9690 +9692 2 33.18438139574636 -58.28893152940672 128.0644 0.1144 9691 +9693 2 32.09770445282675 -58.14318840067909 127.4342 0.1144 9692 +9694 2 31.056430297070193 -58.1625892339691 126.8134 0.1144 9693 +9695 2 30.129570943508213 -57.332547014298605 126.3363 0.1144 9694 +9696 2 29.217308600178825 -56.37503739602164 125.9899 0.1144 9695 +9697 2 28.734693621237795 -55.239908358101644 125.7424 0.1144 9696 +9698 2 28.59053931642353 -54.10992238713065 125.5542 0.1144 9697 +9699 2 27.92047974192161 -53.12921982256559 125.258 0.1144 9698 +9700 2 27.14659661269232 -52.7529310130171 124.8318 0.1144 9699 +9701 2 26.345231334366105 -51.725514383902386 124.4116 0.1144 9700 +9702 2 25.528405498209764 -50.7130107771672 124.0543 0.1144 9701 +9703 2 24.708468178627925 -49.70535039516922 123.7508 0.1144 9702 +9704 2 24.178735948423622 -48.8921564138302 124.2368 0.1144 9703 +9705 2 23.623366370452544 -48.17040501380729 124.4116 0.1144 9704 +9706 2 23.068357889889143 -47.041382651391956 124.5272 0.1144 9705 +9707 2 22.51334940932577 -45.9139689296796 124.6386 0.1144 9706 +9708 2 21.870944778666853 -44.81429897023561 124.6857 0.1144 9707 +9709 2 21.08008484473649 -43.801528903314804 124.5829 0.1144 9708 +9710 2 20.218773430911313 -43.335886727634474 124.3136 0.1144 9709 +9711 2 19.24911513225095 -42.607884749745644 124.0397 0.1144 9710 +9712 2 18.18639220120994 -41.92467297086973 123.8924 0.1144 9711 +9713 2 17.09896083998524 -41.57225232408752 123.8807 0.1144 9712 +9714 2 16.128853149484343 -41.02949311145759 123.8908 0.1144 9713 +9715 2 15.351356779176228 -40.02146604463742 123.8104 0.1144 9714 +9716 2 14.629311649336444 -38.97228053765195 123.625 0.1144 9715 +9717 2 14.243846149921268 -37.85474943550681 123.3204 0.1144 9716 +9718 2 13.95816249616297 -36.724641371786454 122.9351 0.1144 9717 +9719 2 13.99716461464655 -35.63648250236157 122.6546 0.1144 9718 +9720 2 14.352446232793824 -34.67475231736662 122.5924 0.1144 9719 +9721 2 14.723461904282544 -33.71702272547455 122.7215 0.1144 9720 +9722 2 15.08231601679546 -32.77787287413673 123.4013 0.1144 9721 +9723 2 23.54742869772454 -49.93035929579392 123.2395 0.1144 9703 +9724 2 22.418410707085542 -49.478951200751325 122.8808 0.1144 9723 +9725 2 21.291043420396903 -49.02866416275836 122.5028 0.1144 9724 +9726 2 20.164219330611303 -49.26514347244607 122.094 0.1144 9725 +9727 2 19.0393023105583 -48.81322847090907 121.6765 0.1144 9726 +9728 2 17.912478220772698 -48.46909843975677 121.2686 0.1144 9727 +9729 2 16.77908376343771 -48.6954227362259 120.8964 0.1144 9728 +9730 2 15.648486955751679 -48.4594119903447 120.5691 0.1144 9729 +9731 2 14.510312488775071 -48.335884675364305 120.3723 0.1144 9730 +9732 2 13.374196062814235 -48.5186797804653 120.2466 0.1144 9731 +9733 2 12.308780693502001 -48.586359986823815 120.057 0.1144 9732 +9734 2 11.249605420770024 -49.057773827877725 119.7974 0.1144 9733 +9735 2 10.19404028753371 -49.441219693049774 119.4749 0.1144 9734 +9736 2 9.139806200089879 -50.13615992879241 119.0991 0.1144 9735 +9737 2 8.087137623746656 -50.30626396201001 118.6833 0.1144 9736 +9738 2 7.0370045068889056 -50.39078023956845 118.2591 0.1144 9737 +9739 2 5.984335930545683 -51.117594246341916 117.8492 0.1144 9738 +9740 2 4.93166735420246 -51.25796617741592 117.4572 0.1144 9739 +9741 2 3.877976463661696 -51.3348298593511 117.0856 0.1144 9740 +9742 2 2.8759908142558572 -52.20321652414163 116.797 0.1144 9741 +9743 2 1.7616965726232934 -52.14563305997175 116.5592 0.1144 9742 +9744 2 0.6349573739138066 -51.97188700936802 116.354 0.1144 9743 +9745 2 -0.4921014829535011 -52.51374150027895 116.1661 0.1144 9744 +9746 2 -1.6198215566107592 -52.334353321005516 115.9838 0.1144 9745 +9747 2 -2.743751800323423 -52.16667552271655 115.7775 0.1144 9746 +9748 2 -3.8606728974574196 -52.763524469138254 115.519 0.1144 9747 +9749 2 -4.976624046206609 -52.62540497398748 115.2276 0.1144 9748 +9750 2 -6.032996567108029 -52.71874352117448 114.94 0.1144 9749 +9751 2 -7.0762964337163226 -53.52629471511969 114.6687 0.1144 9750 +9752 2 -8.122046566960222 -53.63596548537695 114.4212 0.1144 9751 +9753 2 -9.167220676264066 -53.89326412647012 114.2039 0.1144 9752 +9754 2 -9.435039869009415 -54.33430427288987 114.0807 0.1144 9753 +9755 2 -10.309234136447571 -55.06432870916823 113.9799 0.1144 9754 +9756 2 -11.1838746941431 -55.501667199416936 113.9348 0.1144 9755 +9757 2 -12.059124102815844 -55.92364868783685 113.9208 0.1144 9756 +9758 2 -12.948920280866275 -57.11894736891596 113.93 0.1144 9757 +9759 2 -13.883182906257929 -57.44130665848095 113.9555 0.1144 9758 +9760 2 -14.843440875240844 -58.53651889558392 113.9922 0.1144 9759 +9761 2 -15.803252553966303 -58.81264419455252 114.042 0.1144 9760 +9762 2 -16.76408654688936 -59.08785542974829 114.1076 0.1144 9761 +9763 2 -17.88141908896023 -59.42669079945998 114.2305 0.1144 9762 +9764 2 -18.924914870425653 -58.609653408976534 114.3962 0.1144 9763 +9765 2 -20.009267575261873 -57.90202110759014 114.606 0.1144 9764 +9766 2 -21.0795992938057 -57.95660791751204 114.828 0.1144 9765 +9767 2 -22.13742789474159 -57.18640128446154 115.04 0.1144 9766 +9768 2 -23.209342538203742 -56.49403516557579 115.2262 0.1144 9767 +9769 2 -24.32351084027337 -57.1237921809782 115.3429 0.1144 9768 +9770 2 -25.3626238509093 -57.23968217659074 115.407 0.1144 9769 +9771 2 -26.370799640129093 -57.42859799806002 115.4843 0.1144 9770 +9772 2 -27.368399896874536 -58.44734961973425 115.5921 0.1144 9771 +9773 2 -28.3650302052352 -58.65430482305441 115.7223 0.1144 9772 +9774 2 -29.36103212384296 -58.86363262386708 115.8646 0.1144 9773 +9775 2 -30.356458018510693 -59.8083753210932 116.0037 0.1144 9774 +9776 2 -31.344475331525416 -60.12474613525619 116.1056 0.1144 9775 +9777 2 -32.31311183054618 -60.37721990772607 116.1247 0.1144 9776 +9778 2 -33.2723803123686 -61.21567261537625 116.0589 0.1144 9777 +9779 2 -34.232191991094055 -61.7676155046193 115.9315 0.1144 9778 +9780 2 -35.19012942712405 -62.03750145448731 115.7635 0.1144 9779 +9781 2 -36.148427960561634 -62.62586460827601 115.5759 0.1144 9780 +9782 2 -37.10631303077889 -63.441211328092336 115.3886 0.1144 9781 +9783 2 -38.064611564216506 -63.70356700223788 115.2172 0.1144 9782 +9784 2 -39.024423242941936 -64.03108250053637 115.0691 0.1144 9783 +9785 2 -39.99764603300946 -65.08877025247078 114.956 0.1144 9784 +9786 2 -41.02012861566925 -65.20415631478933 114.912 0.1144 9785 +9787 2 -42.08201834579896 -65.25404109991413 114.9459 0.1144 9786 +9788 2 -43.184091861636404 -65.99827273449887 115.059 0.1144 9787 +9789 2 -44.30642036385467 -65.90685179158034 115.1654 0.1144 9788 +9790 2 -45.384231136218574 -65.6474619304498 115.0346 0.1144 9789 +9791 2 -46.429674734129804 -64.83581240413548 114.641 0.1144 9790 +9792 2 -47.486086687975444 -64.4066462586589 113.983 0.1144 9791 +9793 2 -48.54798711990574 -64.5785104533872 113.0158 0.1144 9792 +9794 2 -49.58358960280472 -64.3497208896911 111.8944 0.1144 9793 +9795 2 -50.59734597063982 -64.51564120183416 110.929 0.1144 9794 +9796 2 -51.608801628386146 -65.26925304687036 110.1204 0.1144 9795 +9797 2 -52.62836783128853 -65.30759388947682 109.4212 0.1144 9796 +9798 2 -53.65634780031236 -65.50147809530775 108.8102 0.1144 9797 +9799 2 -54.69240066936217 -66.30170157046405 108.2001 0.1144 9798 +9800 2 -55.72411540938266 -66.23801572189036 107.3027 0.1144 9799 +9801 2 -56.73268002086557 -66.35768937842369 106.4977 0.1144 9800 +9802 2 -57.72570939978354 -67.34534738638817 105.8991 0.1144 9801 +9803 2 -58.72546591225239 -67.48667459874451 105.4469 0.1144 9802 +9804 2 -59.2692754004985 -68.24608650611873 105.0476 0.1144 9803 +9805 2 -59.41610313705131 -69.25899060045217 104.3302 0.1144 9804 +9806 2 -9.690895122167888 -54.26101229859125 113.472 0.1144 9753 +9807 2 -10.736179846804731 -53.89422971802685 112.3629 0.1144 9806 +9808 2 -11.84552709074589 -53.48920250680472 111.7424 0.1144 9807 +9809 2 -12.9662401250973 -53.788710620048164 111.214 0.1144 9808 +9810 2 -14.096847243820946 -53.356860365356205 110.8243 0.1144 9809 +9811 2 -15.234804375218658 -53.674848717494896 110.5832 0.1144 9810 +9812 2 -16.375296966101757 -53.23826691259733 110.462 0.1144 9811 +9813 2 -17.516993970677817 -52.83314664603432 110.43 0.1144 9812 +9814 2 -18.659137265511333 -53.11441042555132 110.4328 0.1144 9813 +9815 2 -19.801143001682306 -52.70893652001965 110.416 0.1144 9814 +9816 2 -20.941635592565433 -52.45432940818876 110.3312 0.1144 9815 +9817 2 -22.076742015964868 -52.72134278281557 110.0686 0.1144 9816 +9818 2 -23.179905625031864 -52.574485361538166 109.5433 0.1144 9817 +9819 2 -24.259946137880007 -52.80206816327004 108.815 0.1144 9818 +9820 2 -25.3263972340105 -53.054496756334565 107.9618 0.1144 9819 +9821 2 -26.38376163343392 -52.95568299424949 107.0465 0.1144 9820 +9822 2 -27.435412695987594 -53.29164845938646 106.1178 0.1144 9821 +9823 2 -28.425742338190503 -53.721214202215954 105.3315 0.1144 9822 +9824 2 -29.424218454169704 -53.87622447705159 104.6545 0.1144 9823 +9825 2 -30.541381918602923 -53.97535017618566 104.0642 0.1144 9824 +9826 2 -31.663337704313903 -53.88222415806744 103.5423 0.1144 9825 +9827 2 -32.74609237278614 -53.46953918496803 102.6474 0.1144 9826 +9828 2 37.1078396039878 -67.11816746607117 135.3061 0.1144 9682 +9829 2 37.038659505628885 -66.45212363628039 137.3128 0.1144 9828 +9830 2 36.87915858466303 -65.47564307117125 138.1492 0.1144 9829 +9831 2 36.62127432911305 -64.54260611916189 138.5807 0.1144 9830 +9832 2 36.36263505171067 -63.39415722869236 139.0446 0.1144 9831 +9833 2 36.104709356910945 -62.24841855851153 139.5276 0.1144 9832 +9834 2 35.843749546555614 -61.10759823432894 140.021 0.1144 9833 +9835 2 35.46385982534761 -59.973897126289266 140.5158 0.1144 9834 +9836 2 34.85290927322566 -58.98325178702501 141.0116 0.1144 9835 +9837 2 34.191985659660475 -58.57080058777029 141.5313 0.1144 9836 +9838 2 33.38029782897033 -57.56498935846314 142.1025 0.1144 9837 +9839 2 32.422002911673815 -56.70163076332948 142.7409 0.1144 9838 +9840 2 31.467894157813134 -55.90705631494103 143.425 0.1144 9839 +9841 2 30.535386144830255 -55.73614741960618 144.1247 0.1144 9840 +9842 2 29.637833131598285 -54.81071488796771 144.8065 0.1144 9841 +9843 2 28.736810639116214 -53.89940636429095 145.4844 0.1144 9842 +9844 2 27.790584168269618 -53.29290703981445 146.2006 0.1144 9843 +9845 2 26.81208974396614 -53.01724893034608 146.9779 0.1144 9844 +9846 2 25.847209045900996 -52.20620728969389 147.756 0.1144 9845 +9847 2 24.89569121892154 -51.37161785973192 148.4921 0.1144 9846 +9848 2 23.953521177828094 -51.193971534766526 149.2341 0.1144 9847 +9849 2 23.19067046645688 -50.31233532516684 150.0898 0.1144 9848 +9850 2 22.876183928846785 -49.347819731161614 151.5461 0.1144 9849 +9851 2 22.669602786222242 -48.44092418447115 153.2698 0.1144 9850 +9852 2 22.288089393382734 -47.399712741332436 154.4757 0.1144 9851 +9853 2 21.77779103552166 -46.38455445098118 155.6971 0.1144 9852 +9854 2 21.586266907781607 -45.33651107951264 156.7916 0.1144 9853 +9855 2 21.43880229876521 -44.28377311075765 157.8562 0.1144 9854 +9856 2 21.006810985246062 -43.26637503815912 159.0658 0.1144 9855 +9857 2 20.84420547655745 -42.22387820762179 160.1933 0.1144 9856 +9858 2 20.38286638345855 -41.43342003723485 161.4239 0.1144 9857 +9859 2 20.24678056902519 -40.50639062263538 162.7601 0.1144 9858 +9860 2 19.8706198064107 -40.05904844548689 164.9091 0.1144 9859 +9861 2 53.62980514259826 -96.36319502592515 127.7699 0.1144 9652 +9862 2 52.592636154288414 -96.24434977385258 128.3419 0.1144 9861 +9863 2 51.511650316327746 -97.35483658715621 128.6866 0.1144 9862 +9864 2 50.39127614747315 -96.81405434354949 128.812 0.1144 9863 +9865 2 49.25513709883856 -96.23505991320513 128.6538 0.1144 9864 +9866 2 48.12338824327233 -97.0146744665764 128.4492 0.1144 9865 +9867 2 46.993115580400456 -96.60222714883824 128.2554 0.1144 9866 +9868 2 45.86258655174646 -96.63631317466351 128.0812 0.1144 9867 +9869 2 44.73432328118619 -97.12824370081589 127.9368 0.1144 9868 +9870 2 43.630649018164576 -96.8509989657051 127.7819 0.1144 9869 +9871 2 42.536919488817944 -97.33608356342172 127.5775 0.1144 9870 +9872 2 41.44572541895678 -97.71172189762927 127.2989 0.1144 9871 +9873 2 40.3575654646512 -97.47105799927894 126.947 0.1144 9872 +9874 2 39.272249701426006 -98.15275041651697 126.5295 0.1144 9873 +9875 2 38.180734588333735 -98.28704244663703 126.0442 0.1144 9874 +9876 2 37.19457460106972 -98.6114212881673 125.3619 0.1144 9875 +9877 2 36.25993977372886 -97.80071816790482 124.5152 0.1144 9876 +9878 2 35.33555461753821 -96.80401390085134 123.5875 0.1144 9877 +9879 2 34.39219557597113 -95.9608896734574 122.6537 0.1144 9878 +9880 2 33.27683857520145 -96.59093943403514 122.0425 0.1144 9879 +9881 2 32.146317750312136 -96.07936449515502 121.6404 0.1144 9880 +9882 2 31.02273078174136 -96.08072398191494 121.2674 0.1144 9881 +9883 2 29.90155574213958 -96.59599930323851 120.8827 0.1144 9882 +9884 2 28.781094285140426 -96.1941199644243 120.4784 0.1144 9883 +9885 2 27.66316828762669 -96.51741544713437 120.0497 0.1144 9884 +9886 2 26.551397193843343 -96.7455558277334 119.5799 0.1144 9885 +9887 2 25.501157960286918 -96.57403781565489 119.0566 0.1144 9886 +9888 2 24.59318228035235 -97.33383155890783 118.7309 0.1144 9887 +9889 2 23.83681452459092 -98.5426960760917 118.627 0.1144 9888 +9890 2 23.36577504859406 -99.29021125989154 118.7052 0.1144 9889 +9891 2 23.19120097218223 -100.27770330566457 118.9594 0.1144 9890 +9892 2 23.049601944575045 -101.26354194975943 119.3937 0.1144 9891 +9893 2 22.64807992870837 -101.9713475450013 120.2944 0.1144 9892 +9894 2 21.72246752336673 -102.15768720231193 121.571 0.1144 9893 +9895 2 20.89578014578663 -101.90460706041895 122.4146 0.1144 9894 +9896 2 20.319456731492835 -100.74815976770627 123.4013 0.1144 9895 +9897 2 56.905720374749535 -96.94606728684545 126.2069 0.1144 9650 +9898 2 57.85397906138769 -96.93249172370048 127.1309 0.1144 9897 +9899 2 58.83652981447693 -95.70658571006483 127.6999 0.1144 9898 +9900 2 59.82233512028381 -95.56574061225412 128.2019 0.1144 9899 +9901 2 60.782246712541706 -95.48186968042852 128.7138 0.1144 9900 +9902 2 61.70947657437071 -94.60635728304457 129.1825 0.1144 9901 +9903 2 62.633685656253505 -93.8564477067546 129.6028 0.1144 9902 +9904 2 63.55980180786895 -93.02787363103499 129.9768 0.1144 9903 +9905 2 64.48694027368194 -92.23878048356762 130.3198 0.1144 9904 +9906 2 65.40263016528132 -92.03886602977691 130.6508 0.1144 9905 +9907 2 66.19513510257573 -91.65198253151686 131.0014 0.1144 9906 +9908 2 66.68850982590197 -90.12361933549893 131.3886 0.1144 9907 +9909 2 67.12011922998153 -88.90762345302292 131.8022 0.1144 9908 +9910 2 67.55178099987384 -88.11966078045506 132.2272 0.1144 9909 +9911 2 67.97657187438656 -87.32406307728675 132.6469 0.1144 9910 +9912 2 68.35096942322909 -86.48037006122972 133.0126 0.1144 9911 +9913 2 68.6269914624674 -85.56912048374255 133.2598 0.1144 9912 +9914 2 69.01730206256374 -84.63302340358783 133.4446 0.1144 9913 +9915 2 69.95630635993038 -83.45519398675947 133.7076 0.1144 9914 +9916 2 71.0205672723159 -83.55796624702072 134.0914 0.1144 9915 +9917 2 72.08488675368037 -83.67297499159679 134.5781 0.1144 9916 +9918 2 73.1424236340981 -82.65412562747073 135.1451 0.1144 9917 +9919 2 74.19582671689281 -82.76989937936854 135.7591 0.1144 9918 +9920 2 75.24983865066469 -82.87186530920425 136.3748 0.1144 9919 +9921 2 76.3073427040454 -81.86636927694094 136.9525 0.1144 9920 +9922 2 77.3682224316137 -81.97929010966682 137.4758 0.1144 9921 +9923 2 78.43306246952238 -82.03447230586717 137.9084 0.1144 9922 +9924 2 79.49928832808286 -81.0553611860468 138.1828 0.1144 9923 +9925 2 80.58012971167824 -81.16753939183916 138.2788 0.1144 9924 +9926 2 81.70575209859103 -81.24879538094447 138.2343 0.1144 9925 +9927 2 82.84607320279005 -80.79029369217935 138.089 0.1144 9926 +9928 2 83.97258886275432 -81.10833233527494 137.8812 0.1144 9927 +9929 2 85.08372166419517 -80.85269737485548 137.6586 0.1144 9928 +9930 2 86.19600341193313 -80.47117627819694 137.471 0.1144 9929 +9931 2 87.29896099076899 -79.7191440574338 137.373 0.1144 9930 +9932 2 88.34110880949711 -79.58520464181632 137.5102 0.1144 9931 +9933 2 89.26852077082143 -79.37526753955657 137.9778 0.1144 9932 +9934 2 90.07774753210794 -78.5796411587856 138.5625 0.1144 9933 +9935 2 90.76321951831568 -77.3866722459917 139.1219 0.1144 9934 +9936 2 91.41183212817498 -76.78835381165848 139.6335 0.1144 9935 +9937 2 92.05251559983711 -76.18062889764488 140.0921 0.1144 9936 +9938 2 92.6532313133084 -75.52142108131405 140.532 0.1144 9937 +9939 2 93.19396214516613 -74.1152065616155 141.0016 0.1144 9938 +9940 2 93.76544199047456 -73.10887450984538 141.4252 0.1144 9939 +9941 2 94.44654502121449 -72.52352882882072 141.6229 0.1144 9940 +9942 2 95.14755493312217 -71.95134265808416 141.4423 0.1144 9941 +9943 2 95.49921510642588 -71.15701286774662 140.5376 0.1144 9942 +9944 2 95.40830793686317 -70.22499904100545 139.1757 0.1144 9943 +9945 2 95.7598829173171 -69.11809191890215 138.0644 0.1144 9944 +9946 2 96.23656284897004 -67.76850398349787 137.1241 0.1144 9945 +9947 2 96.78207369046945 -67.0865438621193 136.3102 0.1144 9946 +9948 2 97.4040030213805 -66.44595957793442 135.6334 0.1144 9947 +9949 2 98.00552681505354 -65.79078724137038 135.0177 0.1144 9948 +9950 2 98.40288008130219 -64.97494957284462 134.2533 0.1144 9949 +9951 2 98.62398787380906 -63.70651455062492 133.3724 0.1144 9950 +9952 2 98.79722918791853 -62.421227444204895 132.5607 0.1144 9951 +9953 2 98.98174799800535 -61.281442790077776 131.8153 0.1144 9952 +9954 2 99.23349317663477 -60.34979621468728 131.1654 0.1144 9953 +9955 2 99.58740851290597 -59.46953288096526 130.6474 0.1144 9954 +9956 2 100.0478043933079 -58.657196275487465 130.2622 0.1144 9955 +9957 2 100.58639920075447 -57.90125159181685 129.9791 0.1144 9956 +9958 2 101.28893077546658 -56.99882332169752 129.7372 0.1144 9957 +9959 2 102.20284022943287 -56.193761905808564 129.4846 0.1144 9958 +9960 2 103.15698542647175 -55.91291901202378 129.2026 0.1144 9959 +9961 2 104.10922355377804 -55.639056610858695 128.879 0.1144 9960 +9962 2 105.12097252990006 -54.803997038645804 128.4741 0.1144 9961 +9963 2 106.21570455057986 -54.910880676100646 127.9695 0.1144 9962 +9964 2 107.3216356753939 -54.91644146101922 127.4213 0.1144 9963 +9965 2 108.42449675603217 -54.51035637521561 126.8551 0.1144 9964 +9966 2 109.53247050864272 -54.34317852101563 126.2498 0.1144 9965 +9967 2 110.6415121225721 -54.47200258154641 125.592 0.1144 9966 +9968 2 111.74765958865481 -54.904711883144024 124.8993 0.1144 9967 +9969 2 112.8133149162197 -54.52398352043808 124.1514 0.1144 9968 +9970 2 113.8405545840738 -54.27845352574619 123.398 0.1144 9969 +9971 2 114.87937807045373 -54.20263496783826 122.7106 0.1144 9970 +9972 2 115.93157673955545 -53.74799440269698 122.0979 0.1144 9971 +9973 2 116.99138178711351 -53.451292573863256 121.557 0.1144 9972 +9974 2 117.4028341297242 -52.82171625846317 121.1095 0.1144 9973 +9975 2 117.21640625444888 -51.715801052535205 120.8446 0.1144 9974 +9976 2 117.1076772650749 -50.61760134339821 120.675 0.1144 9975 +9977 2 117.34528913754696 -49.668764744255405 120.5103 0.1144 9976 +9978 2 117.72441294514525 -48.79609683965605 120.3182 0.1144 9977 +9979 2 118.35573150119205 -47.91646207319708 120.0478 0.1144 9978 +9980 2 119.17997253005129 -46.95216247442889 119.6888 0.1144 9979 +9981 2 120.22807022856702 -46.932301979632854 119.2702 0.1144 9980 +9982 2 121.27579451803896 -46.82555020695105 118.8555 0.1144 9981 +9983 2 122.24955809596301 -45.94893079586986 118.4809 0.1144 9982 +9984 2 123.31002917840391 -45.864560458409684 118.2188 0.1144 9983 +9985 2 124.43899411069364 -46.276196969514814 118.1737 0.1144 9984 +9986 2 125.57344170866466 -46.0941473174934 118.3241 0.1144 9985 +9987 2 126.60339863372587 -46.29264076863619 119.4749 0.1144 9986 +9988 2 51.63672404923495 -428.57936943278736 82.8719 0.1144 9356 +9989 2 52.586143496933396 -429.06327945621763 82.1747 0.1144 9988 +9990 2 53.709391990770264 -428.76996175191573 81.8558 0.1144 9989 +9991 2 54.843366881690415 -428.6064148326943 81.6273 0.1144 9990 +9992 2 55.97918077922247 -428.3202685666297 81.4663 0.1144 9991 +9993 2 57.12029524294051 -428.88751666861003 81.3669 0.1144 9992 +9994 2 58.26454993891279 -427.8393878480647 81.3235 0.1144 9993 +9995 2 59.40667851306366 -428.56816413322775 81.319 0.1144 9994 +9996 2 60.55024665875212 -428.186576605145 81.3252 0.1144 9995 +9997 2 61.675972451543444 -428.33375751984556 81.3344 0.1144 9996 +9998 2 62.74680282615745 -428.17206895687525 81.347 0.1144 9997 +9999 2 63.7789366113322 -429.034175253953 81.3644 0.1144 9998 +10000 2 64.82095827771305 -430.3011134100417 81.3896 0.1144 9999 +10001 2 65.85755102929839 -430.10144846364346 81.4237 0.1144 10000 +10002 2 66.87464623737995 -430.87641056328994 81.4696 0.1144 10001 +10003 2 67.9300512902474 -430.53051362244145 81.5371 0.1144 10002 +10004 2 68.9634852057869 -430.67603712483935 81.6469 0.1144 10003 +10005 2 69.82447777778584 -430.4251346772005 81.7936 0.1144 10004 +10006 2 70.63182108632375 -429.18764687183614 81.9563 0.1144 10005 +10007 2 71.47852089302879 -427.8406144672837 82.1313 0.1144 10006 +10008 2 72.38996605221338 -427.2533452959915 82.313 0.1144 10007 +10009 2 73.4352202521854 -426.088858199552 82.4065 0.1144 10008 +10010 2 74.57445778007273 -426.92266403731503 82.3211 0.1144 10009 +10011 2 75.70307702817406 -427.3493570227377 82.0826 0.1144 10010 +10012 2 76.8187999267594 -426.9724486216836 81.732 0.1144 10011 +10013 2 77.9275315010318 -426.96321735695915 81.3005 0.1144 10012 +10014 2 79.03122498337046 -427.10095508105326 80.8167 0.1144 10013 +10015 2 80.13434244176895 -428.1353297748966 80.3076 0.1144 10014 +10016 2 81.18604595912468 -428.0957276957211 79.7698 0.1144 10015 +10017 2 82.18232216674781 -428.6541031684007 79.1977 0.1144 10016 +10018 2 83.16341913703215 -428.7414963333163 78.5929 0.1144 10017 +10019 2 84.1417133554858 -429.3171695836545 77.9579 0.1144 10018 +10020 2 85.11838969702613 -430.61996134691924 77.2974 0.1144 10019 +10021 2 86.14755776120266 -431.0591839185082 76.5778 0.1144 10020 +10022 2 87.19957402903542 -430.49527660534216 75.728 0.1144 10021 +10023 2 88.26238895963965 -430.0309148283357 74.7874 0.1144 10022 +10024 2 89.31818244400716 -430.0673945504716 73.8508 0.1144 10023 +10025 2 90.42487649266468 -429.92326174981713 73.1643 0.1144 10024 +10026 2 91.5051042071899 -429.5556325268005 72.8073 0.1144 10025 +10027 2 92.59134237108022 -429.627807317198 72.919 0.1144 10026 +10028 2 36.98082687029495 -493.0969268473847 46.5562 0.1144 9234 +10029 2 37.223837518517904 -494.571680985513 46.5559 0.1144 10028 +10030 2 37.45009490078489 -496.0844970992374 46.5559 0.1144 10029 +10031 2 37.49080416209725 -497.5120542781217 46.5559 0.1144 10030 +10032 2 37.529947912309076 -498.93164496695334 46.5559 0.1144 10031 +10033 2 37.66550945308971 -500.38790404217957 46.5559 0.1144 10032 +10034 2 35.20095006076377 -488.92270943354134 46.4234 0.1144 9230 +10035 2 35.11066745202841 -490.2272363875936 46.2801 0.1144 10034 +10036 2 34.66752628148407 -491.0207126057293 46.205 0.1144 10035 +10037 2 33.61917080244988 -491.0254823392791 46.0124 0.1144 10036 +10038 2 32.516578718688606 -491.3049110143726 45.6481 0.1144 10037 +10039 2 31.41129920984851 -491.4968392679151 45.0934 0.1144 10038 +10040 2 30.29967077690934 -491.6018722706381 44.5004 0.1144 10039 +10041 2 29.17275157399932 -492.66300571899944 44.0297 0.1144 10040 +10042 2 28.03610187141009 -491.9325197575773 43.7032 0.1144 10041 +10043 2 26.89522836025496 -491.1424404789774 43.5159 0.1144 10042 +10044 2 25.752518251534465 -492.2644865510826 43.475 0.1144 10043 +10045 2 24.634262302510223 -491.3977736952134 43.5758 0.1144 10044 +10046 2 23.493103676744127 -492.317790115467 43.6526 0.1144 10045 +10047 2 22.429465643481887 -492.1002558429015 43.6971 0.1144 10046 +10048 2 21.29243742966719 -491.84942615867885 43.7181 0.1144 10047 +10049 2 20.158422093807577 -492.2371465712868 43.7189 0.1144 10048 +10050 2 19.0162322575426 -492.8197637777355 43.7049 0.1144 10049 +10051 2 17.888506673255787 -492.8827482235133 43.6576 0.1144 10050 +10052 2 16.768063731058994 -492.45270732636845 43.5952 0.1144 10051 +10053 2 15.62962607960859 -493.4789925643504 43.5677 0.1144 10052 +10054 2 14.485550381548599 -492.8231587718099 43.587 0.1144 10053 +10055 2 13.343944772988538 -493.9561209797261 43.6528 0.1144 10054 +10056 2 12.201146369835014 -493.0654472963372 43.7612 0.1144 10055 +10057 2 11.075870359647269 -492.7249502538673 44.0471 0.1144 10056 +10058 2 10.463014525606864 -493.6338810745597 43.5506 0.1144 10057 +10059 2 9.40015745123818 -492.79081191897296 42.7781 0.1144 10058 +10060 2 8.287434124661516 -493.71518449748976 42.35 0.1144 10059 +10061 2 7.151618528304479 -492.78545154640847 42.0692 0.1144 10060 +10062 2 6.012956331820655 -491.96995222144625 41.8107 0.1144 10061 +10063 2 4.874784966427095 -493.0245377364212 41.5722 0.1144 10062 +10064 2 3.7561922414938578 -493.1235271540555 41.3661 0.1144 10063 +10065 2 2.64748539716807 -493.96331421459183 41.1919 0.1144 10064 +10066 2 1.5256443226833674 -494.59955360325785 40.9998 0.1144 10065 +10067 2 0.38933038400791653 -494.631416766957 40.7414 0.1144 10066 +10068 2 -0.7464581800302712 -493.8219866315332 40.42 0.1144 10067 +10069 2 -1.8810392287924358 -494.9260614601049 40.0596 0.1144 10068 +10070 2 -3.012981802953581 -494.30498584089275 39.7029 0.1144 10069 +10071 2 -4.144962714781444 -495.6131743419472 39.3604 0.1144 10070 +10072 2 -5.278955427967295 -494.8644024347701 39.034 0.1144 10071 +10073 2 -6.412587043745501 -494.2506037862944 38.7212 0.1144 10072 +10074 2 -7.537812795393483 -495.1957629629239 38.3961 0.1144 10073 +10075 2 -8.61931279163288 -494.7237787143857 38.0484 0.1144 10074 +10076 2 -9.688433893317521 -494.7806664466869 37.6737 0.1144 10075 +10077 2 -10.75587146401471 -493.5453484622623 37.2786 0.1144 10076 +10078 2 -11.784563707579194 -493.8987957038227 36.832 0.1144 10077 +10079 2 -12.59476282629705 -495.51057364070954 36.4316 0.1144 10078 +10080 2 -13.60330892297756 -495.6085569249502 35.9976 0.1144 10079 +10081 2 -14.095168091969434 -497.68728008690255 35.5401 0.1144 10080 +10082 2 -14.271343608102029 -499.35666252770113 35.1411 0.1144 10081 +10083 2 -14.445920786096954 -500.62159722033056 34.7284 0.1144 10082 +10084 2 -14.157495743589536 -500.71572846213576 35.4872 0.1144 10083 +10085 2 -13.184292675418929 -500.40091862229565 35.3825 0.1144 10084 +10086 2 -12.17276704237839 -501.5345101785963 35.1736 0.1144 10085 +10087 2 -11.102476763084404 -501.1510631726305 35.0252 0.1144 10086 +10088 2 -10.025779008397453 -502.2952909894015 34.914 0.1144 10087 +10089 2 -8.948582597640318 -503.12337407115615 34.8382 0.1144 10088 +10090 2 -7.87086252875582 -502.78304734664243 34.7939 0.1144 10089 +10091 2 -6.797485478297881 -502.3017815962113 34.7768 0.1144 10090 +10092 2 -5.893344169140768 -500.9646674623744 34.7768 0.1144 10091 +10093 2 -15.37116008416848 -500.5879670364231 33.8982 0.1144 10083 +10094 2 -16.164774322031363 -500.81777271828105 32.9795 0.1144 10093 +10095 2 -16.60495907632683 -501.8190150855146 32.1118 0.1144 10094 +10096 2 -17.015470189718297 -503.6038822767538 31.1226 0.1144 10095 +10097 2 -17.468848719776766 -505.4577027170961 30.0754 0.1144 10096 +10098 2 -17.876981139684418 -506.246013043468 28.768 0.1144 10097 +10099 2 -17.11129353567666 -505.9673262844535 27.6996 0.1144 10098 +10100 2 -16.94715234801567 -506.4860189597892 26.4702 0.1144 10099 +10101 2 -17.509960344910652 -508.3610601213584 25.674 0.1144 10100 +10102 2 -18.387204141123608 -508.5303246172765 25.0377 0.1144 10101 +10103 2 -19.19070936177564 -510.03841862226784 24.3893 0.1144 10102 +10104 2 -19.301513527037248 -511.4322189826856 23.0924 0.1144 10103 +10105 2 -18.674926834507687 -511.39453566866456 21.9691 0.1144 10104 +10106 2 -18.09423005510112 -512.7255012755311 20.8167 0.1144 10105 +10107 2 -19.113000489437965 -513.5578075682057 20.0088 0.1144 10106 +10108 2 -20.14968484982374 -514.1973713708358 19.3565 0.1144 10107 +10109 2 -21.197764726073693 -513.94818631769 18.8673 0.1144 10108 +10110 2 -22.252842129802797 -514.9713886627203 18.4861 0.1144 10109 +10111 2 -23.31018770067212 -515.4438500475397 18.1618 0.1144 10110 +10112 2 -24.365931831820642 -516.8680933538452 17.8645 0.1144 10111 +10113 2 -25.093818741271644 -517.7651168494272 17.5223 0.1144 10112 +10114 2 -25.807988909368785 -518.3016091647315 17.1582 0.1144 10113 +10115 2 -26.549107239712843 -518.7964096583083 16.8158 0.1144 10114 +10116 2 -27.365766199636326 -520.223167232209 16.5731 0.1144 10115 +10117 2 -28.18389376401488 -521.5854999460684 16.4103 0.1144 10116 +10118 2 -29.00188376973088 -522.0837245108113 16.2666 0.1144 10117 +10119 2 10.731179189756329 -493.89767907519126 44.48 0.1144 10057 +10120 2 11.032274137115172 -494.6796540027016 44.8428 0.1144 10119 +10121 2 11.428438699521113 -495.99068249798785 45.108 0.1144 10120 +10122 2 11.73942222062246 -497.50882427687515 45.2911 0.1144 10121 +10123 2 11.758571487770201 -498.91279924037184 45.3989 0.1144 10122 +10124 2 11.698012476704976 -500.27620484696735 45.4398 0.1144 10123 +10125 2 11.301247847806252 -501.0348502096449 45.4437 0.1144 10124 +10126 2 10.935355461101057 -502.49308560391114 45.4482 0.1144 10125 +10127 2 11.105875795752246 -503.5913630933361 45.4546 0.1144 10126 +10128 2 11.207841722955228 -505.06867493260944 45.4619 0.1144 10127 +10129 2 11.07038269613736 -506.3739428773852 45.4675 0.1144 10128 +10130 2 10.855670381138939 -508.0860838047958 45.4863 0.1144 10129 +10131 2 10.904132191782827 -509.38986358422517 45.5319 0.1144 10130 +10132 2 11.171458730817939 -510.5867652897726 45.5529 0.1144 10131 +10133 2 11.729234034591816 -512.0282601187499 45.5325 0.1144 10132 +10134 2 12.35537854473532 -513.5558168452435 45.4244 0.1144 10133 +10135 2 12.888075110864712 -515.1888859387251 45.2217 0.1144 10134 +10136 2 13.231625728179948 -516.8018969028494 44.9215 0.1144 10135 +10137 2 13.376356056934345 -518.2521379556879 44.6538 0.1144 10136 +10138 2 13.489814406647184 -519.4568344625865 44.4438 0.1144 10137 +10139 2 13.600238640804434 -520.6070296778715 44.2873 0.1144 10138 +10140 2 13.706253172780764 -521.7664101385587 44.179 0.1144 10139 +10141 2 13.800422797052196 -522.9511511264201 44.0535 0.1144 10140 +10142 2 13.971527673159954 -523.9812416390347 43.9373 0.1144 10141 +10143 2 14.299755291307621 -525.196794138574 43.8402 0.1144 10142 +10144 2 14.298675610083103 -526.5986722389201 43.7595 0.1144 10143 +10145 2 14.06395788545762 -527.8251038919009 43.6923 0.1144 10144 +10146 2 14.026033548567378 -529.2717887682762 43.6332 0.1144 10145 +10147 2 14.261333086708603 -530.7164827030227 43.5789 0.1144 10146 +10148 2 14.331622183862414 -532.1712054862952 43.5193 0.1144 10147 +10149 2 14.496581460988965 -533.6827505519434 43.4031 0.1144 10148 +10150 2 14.670582893989803 -535.2042321270038 43.255 0.1144 10149 +10151 2 14.856652773440576 -536.7367985199872 43.0626 0.1144 10150 +10152 2 15.299817165063413 -538.1575095201024 42.9192 0.1144 10151 +10153 2 15.853937776530604 -538.1416720895436 42.8257 0.1144 10152 +10154 2 16.499414860411733 -539.6060124069285 42.7736 0.1144 10153 +10155 2 16.85312375286128 -540.9571751873931 42.8123 0.1144 10154 +10156 2 16.858228008284524 -542.347492022813 42.8691 0.1144 10155 +10157 2 16.55208844693137 -543.6806804432185 42.9013 0.1144 10156 +10158 2 16.07716602846407 -544.6784038320004 42.8974 0.1144 10157 +10159 2 15.576312251317683 -546.150113177111 42.859 0.1144 10158 +10160 2 15.123706867151029 -547.542567109545 42.4903 0.1144 10159 +10161 2 15.416026950980743 -548.5233276774707 42.2626 0.1144 10160 +10162 2 15.698456052021418 -549.542443468367 42.1025 0.1144 10161 +10163 2 15.696533054511614 -550.9319442281277 41.9706 0.1144 10162 +10164 2 15.50199732207267 -552.5303181647189 41.8622 0.1144 10163 +10165 2 15.54578213819052 -553.8711965407339 41.767 0.1144 10164 +10166 2 15.831107796124273 -555.0026691247981 41.6139 0.1144 10165 +10167 2 15.982559747799849 -556.5325365586565 41.4232 0.1144 10166 +10168 2 16.24321702972646 -558.1189372992649 41.2188 0.1144 10167 +10169 2 16.53107814714566 -559.5739270052813 40.9872 0.1144 10168 +10170 2 16.777919372026375 -560.9014533325912 40.6871 0.1144 10169 +10171 2 16.794519151542506 -562.291365436666 40.3337 0.1144 10170 +10172 2 16.771289424067085 -563.6868572221695 39.872 0.1144 10171 +10173 2 16.755054122487667 -565.0712790207897 39.3089 0.1144 10172 +10174 2 16.83197895717633 -566.4311354458495 38.738 0.1144 10173 +10175 2 16.952417704639064 -567.7774378952221 38.1934 0.1144 10174 +10176 2 17.080749661678972 -569.1175512001126 37.6804 0.1144 10175 +10177 2 17.208772887123956 -570.5964010645193 37.1977 0.1144 10176 +10178 2 17.335327508113934 -572.0903983744261 36.745 0.1144 10177 +10179 2 17.46468488093447 -573.5863069297658 36.311 0.1144 10178 +10180 2 17.592529108467158 -575.0811551877171 35.884 0.1144 10179 +10181 2 17.720373335999895 -576.5786479652521 35.4595 0.1144 10180 +10182 2 17.849730708820427 -578.071000846603 35.0384 0.1144 10181 +10183 2 18.06622614944438 -579.2535325489354 34.6192 0.1144 10182 +10184 2 18.34621049447906 -580.198253514762 34.2034 0.1144 10183 +10185 2 18.635760653515213 -581.1056777315266 33.7946 0.1144 10184 +10186 2 18.89636246804601 -582.3585212762588 33.4057 0.1144 10185 +10187 2 18.994053937380343 -583.7401035140441 33.0683 0.1144 10186 +10188 2 19.056628822869303 -585.2019622359988 32.7648 0.1144 10187 +10189 2 19.12139760921167 -586.6702508291974 32.4831 0.1144 10188 +10190 2 19.1861992225911 -588.1420960497817 32.2162 0.1144 10189 +10191 2 19.271014857810403 -589.6268090708231 31.9558 0.1144 10190 +10192 2 19.430977482252977 -591.1594687135198 31.7008 0.1144 10191 +10193 2 19.60729944820677 -592.6501478436949 31.4462 0.1144 10192 +10194 2 19.66885201949818 -594.0006954563024 31.1744 0.1144 10193 +10195 2 19.605754447364472 -595.3885897759958 30.8736 0.1144 10194 +10196 2 19.726912980596055 -596.6744643602344 30.5539 0.1144 10195 +10197 2 20.629154607453685 -597.5750391333943 30.2817 0.1144 10196 +10198 2 20.318520151069833 -598.7183688361617 30.0275 0.1144 10197 +10199 2 20.007524597278284 -600.0474632481885 29.7917 0.1144 10198 +10200 2 19.695985846583653 -601.5730279661868 29.5772 0.1144 10199 +10201 2 19.387798555252335 -603.0878751856397 29.1676 0.1144 10200 +10202 2 14.757906140044067 -538.393372882052 41.9608 0.1144 10152 +10203 2 13.73857640304826 -538.6968958396708 40.9604 0.1144 10202 +10204 2 12.619459706235965 -539.3042650037162 40.4267 0.1144 10203 +10205 2 11.502806895757358 -538.6918950839621 39.8801 0.1144 10204 +10206 2 10.467829399254452 -539.4315414261687 39.3596 0.1144 10205 +10207 2 9.505467540360893 -540.4594579868514 38.8696 0.1144 10206 +10208 2 8.49354266790964 -541.367185694188 38.3583 0.1144 10207 +10209 2 7.461820416661038 -541.9308962772324 37.8636 0.1144 10208 +10210 2 6.402195059551849 -541.6720397384597 37.4458 0.1144 10209 +10211 2 5.309770851740868 -542.2202228415401 37.1431 0.1144 10210 +10212 2 4.375162050430493 -541.5300198474342 36.9135 0.1144 10211 +10213 2 4.306153047992714 -540.4333285874544 36.3927 0.1144 10212 +10214 2 5.312625779427506 -540.2274692769822 35.9148 0.1144 10213 +10215 2 6.2046030144522675 -540.5507063887668 35.5502 0.1144 10214 +10216 2 6.223058521861576 -541.8626629425316 35.247 0.1144 10215 +10217 2 5.2924525773971 -542.9985901620512 35.0126 0.1144 10216 +10218 2 4.17605754743699 -543.2992105210011 34.7245 0.1144 10217 +10219 2 3.8517220470071862 -544.6049522923709 34.2157 0.1144 10218 +10220 2 11.95102662268118 -500.9916549913256 46.0482 0.1144 10124 +10221 2 12.177882562572712 -502.0298535881324 47.964 0.1144 10220 +10222 2 11.856809427862347 -502.6136441456364 49.8501 0.1144 10221 +10223 2 11.680054383465517 -502.9857617269454 51.8358 0.1144 10222 +10224 2 12.541510464440385 -503.37785452267406 53.3926 0.1144 10223 +10225 2 13.122911918170214 -504.36942800036775 55.5307 0.1144 10224 +10226 2 17.405248136239692 -436.70656694404863 44.1078 0.1144 9183 +10227 2 17.11751675250315 -435.3777746085674 44.2344 0.1144 10226 +10228 2 16.710168499182274 -434.22150458356805 44.326 0.1144 10227 +10229 2 16.39254854800942 -432.89280600669883 44.4147 0.1144 10228 +10230 2 16.205850278805784 -431.6647346683395 44.5046 0.1144 10229 +10231 2 16.05006289123603 -430.5140715212531 44.599 0.1144 10230 +10232 2 15.864301743380175 -429.3900852992057 44.7126 0.1144 10231 +10233 2 15.65965672109063 -428.27476825954545 44.9294 0.1144 10232 +10234 2 15.776082513454323 -426.8823072064839 45.1802 0.1144 10233 +10235 2 15.955694681799951 -425.4410834943285 45.4255 0.1144 10234 +10236 2 16.09114190725978 -424.0375106393668 45.6551 0.1144 10235 +10237 2 16.368409799440794 -422.68517818749115 45.8354 0.1144 10236 +10238 2 16.455164359947137 -421.4445714791566 45.9592 0.1144 10237 +10239 2 16.244949762616567 -420.06728571585876 46.0855 0.1144 10238 +10240 2 15.753051959327042 -419.22807912313954 46.1712 0.1144 10239 +10241 2 15.28250473429937 -418.13190067227106 46.1653 0.1144 10240 +10242 2 15.277215277797644 -416.82577229086 46.1314 0.1144 10241 +10243 2 15.279102346687328 -415.5092302503449 46.1 0.1144 10242 +10244 2 14.93634819047422 -414.4572718306814 46.0743 0.1144 10243 +10245 2 14.711689146344913 -413.3121185652389 46.0555 0.1144 10244 +10246 2 14.361904635615602 -411.9900531690027 46.0566 0.1144 10245 +10247 2 13.723512681109845 -411.07340484614105 46.0799 0.1144 10246 +10248 2 13.280794579744505 -409.89467787247025 46.1132 0.1144 10247 +10249 2 13.438077703926972 -408.6982478856567 46.1518 0.1144 10248 +10250 2 13.559717484553616 -407.3375178943386 46.1927 0.1144 10249 +10251 2 13.20019435936971 -406.743861741945 46.3187 0.1144 10250 +10252 2 12.43271560395025 -405.23922894137445 46.4892 0.1144 10251 +10253 2 11.806656286656544 -404.1854351935045 46.5508 0.1144 10252 +10254 2 11.44483925809747 -403.2456104717255 46.5354 0.1144 10253 +10255 2 11.576784177270156 -401.8578394567213 46.4817 0.1144 10254 +10256 2 12.019703904364178 -400.2712510536699 46.3985 0.1144 10255 +10257 2 11.835773150907631 -399.1618855320186 46.2308 0.1144 10256 +10258 2 11.52225417032081 -398.1881214164991 46.0793 0.1144 10257 +10259 2 11.582273086066039 -396.83702962890465 45.911 0.1144 10258 +10260 2 11.957657020485996 -395.2426923009993 45.7856 0.1144 10259 +10261 2 12.440367916904961 -394.21764572295285 45.712 0.1144 10260 +10262 2 12.605268346106676 -393.0454255018205 45.6868 0.1144 10261 +10263 2 12.480496571796245 -391.6641230406459 45.7598 0.1144 10262 +10264 2 12.272996431863419 -390.2385922873104 45.8704 0.1144 10263 +10265 2 12.281158833416832 -388.94403758466353 45.9847 0.1144 10264 +10266 2 12.173578790339931 -387.57176057942036 46.0916 0.1144 10265 +10267 2 12.115049408041187 -386.2103661734471 46.1919 0.1144 10266 +10268 2 12.153963232091876 -384.940687989593 46.2924 0.1144 10267 +10269 2 12.252477507453172 -383.71617565252984 46.478 0.1144 10268 +10270 2 11.934411266022899 -382.4109299238853 46.6547 0.1144 10269 +10271 2 11.87298532683107 -381.1755673396927 46.8308 0.1144 10270 +10272 2 11.789156166178508 -380.6682368311172 46.6833 0.1144 10271 +10273 2 11.660732813122607 -379.5333549515205 46.5021 0.1144 10272 +10274 2 11.636460261191338 -378.25457183629135 46.4937 0.1144 10273 +10275 2 11.695996958059041 -376.8660658834116 46.4352 0.1144 10274 +10276 2 11.768582976324424 -375.45595408128065 46.3187 0.1144 10275 +10277 2 11.793234453071754 -374.10756611626 46.1538 0.1144 10276 +10278 2 11.724907893046364 -372.8962821512155 45.9463 0.1144 10277 +10279 2 11.523374354182359 -371.8974761814935 45.7257 0.1144 10278 +10280 2 11.359440492836391 -370.84557949551146 45.5213 0.1144 10279 +10281 2 11.559872354177045 -369.30525530735383 45.3443 0.1144 10280 +10282 2 12.001854959923264 -367.6679534629241 45.1623 0.1144 10281 +10283 2 11.798265487316286 -366.577138315191 45.0097 0.1144 10282 +10284 2 11.412265403210782 -365.9554788758524 44.9019 0.1144 10283 +10285 2 11.314444200193854 -364.80866059654454 44.816 0.1144 10284 +10286 2 11.047911713214397 -363.8231470556481 44.7432 0.1144 10285 +10287 2 10.860640521653757 -362.44562844030037 44.6734 0.1144 10286 +10288 2 10.77449073905894 -361.11687693002125 44.5945 0.1144 10287 +10289 2 10.772458936857966 -359.84597994129217 44.4688 0.1144 10288 +10290 2 10.884513364707288 -358.6581606158059 44.2915 0.1144 10289 +10291 2 11.019299373377272 -357.49009140762377 44.0804 0.1144 10290 +10292 2 11.409337170498851 -355.6567125834439 43.8152 0.1144 10291 +10293 2 11.875972454944318 -353.9206369998728 43.5588 0.1144 10292 +10294 2 12.073890064736993 -352.8001109267634 43.318 0.1144 10293 +10295 2 12.164169571889254 -351.58009754982754 43.1348 0.1144 10294 +10296 2 12.228468456132823 -350.3392893292201 43.034 0.1144 10295 +10297 2 12.408835646330807 -349.17831726257697 43.0576 0.1144 10296 +10298 2 12.121853773817058 -347.7187671038734 43.1483 0.1144 10297 +10299 2 11.63125418928297 -346.27229122725146 43.2589 0.1144 10298 +10300 2 11.322806127666986 -345.54950640966206 43.3773 0.1144 10299 +10301 2 11.363191657755792 -344.1189828242781 43.4932 0.1144 10300 +10302 2 10.972420774061682 -343.58747710473426 43.7567 0.1144 10301 +10303 2 10.417051196090604 -342.30531578364094 43.9653 0.1144 10302 +10304 2 10.290319986234891 -340.91903084078365 44.1333 0.1144 10303 +10305 2 9.711689060845892 -339.36023238472507 43.7307 0.1144 10304 +10306 2 8.921405150855634 -339.49962760272234 43.5042 0.1144 10305 +10307 2 8.447611890626817 -338.2219120864866 43.2642 0.1144 10306 +10308 2 8.021691596050296 -336.69867114756755 42.9856 0.1144 10307 +10309 2 7.438666381699569 -335.1624277560054 42.7994 0.1144 10308 +10310 2 6.743348379104383 -333.74860775688865 42.6868 0.1144 10309 +10311 2 6.3193875200731355 -332.2412169235514 42.6605 0.1144 10310 +10312 2 5.8450918096544555 -331.68898553974685 42.665 0.1144 10311 +10313 2 5.317921064966086 -330.9823175521057 42.6325 0.1144 10312 +10314 2 4.985859768577569 -329.4882549432054 42.5306 0.1144 10313 +10315 2 4.838274322179828 -328.08119859481917 42.3676 0.1144 10314 +10316 2 4.622445608975383 -326.6402333827092 42.1394 0.1144 10315 +10317 2 4.523602091760857 -325.2655900117738 41.8452 0.1144 10316 +10318 2 4.1046793246634365 -323.8255236323506 41.5909 0.1144 10317 +10319 2 4.179674170314719 -322.49989485371316 41.3812 0.1144 10318 +10320 2 4.406862884353835 -321.37929959393625 41.1236 0.1144 10319 +10321 2 4.570969741252178 -321.24948129072527 40.8355 0.1144 10320 +10322 2 4.642202180040634 -320.436116665272 39.2364 0.1144 10321 +10323 2 3.9336339399762466 -319.4717627789406 37.9375 0.1144 10322 +10324 2 3.0184480964242795 -320.2792301626071 36.8166 0.1144 10323 +10325 2 1.9406322218787295 -319.21935063258206 36.1388 0.1144 10324 +10326 2 0.8990876721938577 -318.0842125870838 35.4021 0.1144 10325 +10327 2 0.2534086659530459 -318.0982659774939 34.7399 0.1144 10326 +10328 2 -0.5461176057612249 -317.1200554588938 34.2437 0.1144 10327 +10329 2 -1.4154512703096032 -315.67705644097197 33.8307 0.1144 10328 +10330 2 -2.2010441576276634 -314.20115545370163 33.3463 0.1144 10329 +10331 2 -3.0459219636548625 -314.2201053003543 32.9014 0.1144 10330 +10332 2 -3.771259983878963 -313.18926320056545 32.4559 0.1144 10331 +10333 2 -4.142553839470153 -311.75779138116116 31.845 0.1144 10332 +10334 2 -4.457767372303621 -310.3757760565172 31.3009 0.1144 10333 +10335 2 -4.50728763854957 -310.0841925812646 31.1842 0.1144 10334 +10336 2 -4.652147008450029 -308.7824342688596 30.6645 0.1144 10335 +10337 2 -4.796195196565648 -307.7731950956821 30.1902 0.1144 10336 +10338 2 -5.365988990023226 -307.55537628861117 29.734 0.1144 10337 +10339 2 -5.793095876026882 -306.24349906400494 29.2555 0.1144 10338 +10340 2 -5.9673146446067165 -304.8494411319828 28.7938 0.1144 10339 +10341 2 -6.032429807674092 -303.54560636463845 28.2993 0.1144 10340 +10342 2 -5.93937968319176 -302.34194824918495 27.8094 0.1144 10341 +10343 2 -6.26349401911726 -300.9200841511233 27.3232 0.1144 10342 +10344 2 -6.801078712185472 -299.4114469833743 26.7952 0.1144 10343 +10345 2 -7.132061534444034 -297.96807541191055 26.2197 0.1144 10344 +10346 2 -7.359831369462256 -296.55441424915233 25.6617 0.1144 10345 +10347 2 -7.453762734305968 -295.2268306943779 25.0689 0.1144 10346 +10348 2 -8.019958309141018 -294.2255754255862 24.3251 0.1144 10347 +10349 2 -8.728254154678524 -294.086186223464 23.5431 0.1144 10348 +10350 2 -8.881077206323255 -292.9997987204625 22.7979 0.1144 10349 +10351 2 -8.108066018412941 -291.21701880719024 22.0622 0.1144 10350 +10352 2 -7.276289775801189 -290.70359290155943 21.6129 0.1144 10351 +10353 2 -7.366632931286318 -289.1503563613994 21.3415 0.1144 10352 +10354 2 -7.710183548601606 -287.67839182869506 21.2809 0.1144 10353 +10355 2 -8.35623665642288 -286.51564282720926 21.3593 0.1144 10354 +10356 2 -9.251445519717876 -286.67234520187947 21.5862 0.1144 10355 +10357 2 -10.215760096432575 -285.32450889155444 21.971 0.1144 10356 +10358 2 -11.17909069661637 -285.45093630377187 22.4142 0.1144 10357 +10359 2 -11.866336509407247 -284.65118118178697 22.9072 0.1144 10358 +10360 2 -12.052171231013332 -283.2697358936323 23.4393 0.1144 10359 +10361 2 -12.496486977979728 -281.78608997337324 23.8935 0.1144 10360 +10362 2 -13.078977607640056 -280.2715836249881 24.2342 0.1144 10361 +10363 2 -13.674696556610428 -278.7489469205996 24.4612 0.1144 10362 +10364 2 -14.273185430374326 -278.0203805242478 24.6028 0.1144 10363 +10365 2 -14.871621938325475 -277.4036512722031 24.6786 0.1144 10364 +10366 2 -15.493092555526019 -276.11021733617116 24.7123 0.1144 10365 +10367 2 -16.238835420451537 -275.1375792069023 24.7322 0.1144 10366 +10368 2 -17.110702135438814 -274.51319530205143 24.7538 0.1144 10367 +10369 2 -17.989839180880068 -273.2917035527964 24.784 0.1144 10368 +10370 2 -18.932826512228246 -272.2965185247611 24.8242 0.1144 10369 +10371 2 -19.921332756702128 -272.055231938449 24.8795 0.1144 10370 +10372 2 -20.868997082576428 -270.8626256793664 24.9651 0.1144 10371 +10373 2 -21.797296007676024 -270.1009981568519 25.0899 0.1144 10372 +10374 2 -22.755156946351264 -268.9726315983277 25.2382 0.1144 10373 +10375 2 -23.740672828869563 -268.65870123694265 25.3893 0.1144 10374 +10376 2 -24.71198803464648 -267.8754044675678 25.5533 0.1144 10375 +10377 2 -25.671232384926967 -267.8578544938882 25.7451 0.1144 10376 +10378 2 -26.495002690213056 -266.4065988675917 26.0031 0.1144 10377 +10379 2 -27.152994510801634 -264.8759208192594 26.3141 0.1144 10378 +10380 2 -27.978630446570563 -263.9535121674826 26.5764 0.1144 10379 +10381 2 -28.904917570312136 -263.95343063290477 26.7744 0.1144 10380 +10382 2 -29.82422119472068 -262.53685061062777 26.9183 0.1144 10381 +10383 2 -30.73666012691585 -262.2431075271033 27.0178 0.1144 10382 +10384 2 -31.606352479825432 -261.59528388280114 27.099 0.1144 10383 +10385 2 -32.41280270526855 -260.10883659908234 27.1943 0.1144 10384 +10386 2 -33.18237062991592 -258.60451029966487 27.2983 0.1144 10385 +10387 2 -33.78406169058478 -257.6279802323179 27.3899 0.1144 10386 +10388 2 -33.953462804392814 -256.45750094183046 27.4633 0.1144 10387 +10389 2 -33.765794865750365 -254.92771297743826 27.5197 0.1144 10388 +10390 2 -33.67026234013194 -253.49022976301302 27.5647 0.1144 10389 +10391 2 -33.791294241263984 -252.2385534258363 27.6072 0.1144 10390 +10392 2 -33.922702445645854 -250.9905664398521 27.6592 0.1144 10391 +10393 2 -34.20455552274642 -249.8964449143458 27.7274 0.1144 10392 +10394 2 -34.54623499894922 -249.05939228599107 27.8105 0.1144 10393 +10395 2 -34.609978369511 -247.75049824898718 27.9455 0.1144 10394 +10396 2 -34.05114230205601 -245.97633976640952 28.2453 0.1144 10395 +10397 2 -33.58272657997743 -244.7548948881065 28.5116 0.1144 10396 +10398 2 -33.638665035394936 -243.4237408069892 28.6868 0.1144 10397 +10399 2 -33.5692428663678 -242.17124564577153 28.784 0.1144 10398 +10400 2 -33.376848668969615 -241.02359869280244 28.8114 0.1144 10399 +10401 2 -32.96172593103745 -240.10659553532417 28.67 0.1144 10400 +10402 2 -32.476606207232535 -239.2709195329548 28.4612 0.1144 10401 +10403 2 -31.986757123088836 -238.28305144679427 28.2943 0.1144 10402 +10404 2 -31.450399656344004 -236.6845090912454 28.1649 0.1144 10403 +10405 2 -30.857671650048843 -235.19039153484994 28.0832 0.1144 10404 +10406 2 -30.252061606472438 -234.51387021142858 28.037 0.1144 10405 +10407 2 -29.547262557156728 -233.75664248842395 28.0193 0.1144 10406 +10408 2 -28.81113536886707 -232.17321217693913 28.009 0.1144 10407 +10409 2 -28.1154667698585 -231.0253620657419 27.9942 0.1144 10408 +10410 2 -27.66483593268272 -230.1416368136714 27.9742 0.1144 10409 +10411 2 -27.165709534820067 -229.34558477153553 27.9446 0.1144 10410 +10412 2 -26.147917974832453 -228.88113546546535 27.9026 0.1144 10411 +10413 2 -25.11531476216848 -227.68339765857337 27.8464 0.1144 10412 +10414 2 -24.237113329206792 -226.94890497170127 27.7755 0.1144 10413 +10415 2 -23.270676525757736 -226.61348207833333 27.6467 0.1144 10414 +10416 2 -23.03422892381269 -226.1593934843605 27.3085 0.1144 10415 +10417 2 -22.459155660289753 -224.9949120595196 27.1017 0.1144 10416 +10418 2 -21.46662873156164 -224.61706740019338 26.9461 0.1144 10417 +10419 2 -20.413652116160108 -223.94248567959556 26.814 0.1144 10418 +10420 2 -19.454113240409384 -223.56137759573994 26.6704 0.1144 10419 +10421 2 -19.03429878726844 -222.01500975708086 26.5592 0.1144 10420 +10422 2 -19.313960372562065 -220.94974835194063 26.4997 0.1144 10421 +10423 2 -19.732886241242625 -220.0325234066275 26.4392 0.1144 10422 +10424 2 -19.878553691344734 -218.78285863817248 26.2788 0.1144 10423 +10425 2 -19.786486448115653 -218.32440706101227 25.0433 0.1144 10424 +10426 2 -19.553088765708452 -217.0388964544785 23.7541 0.1144 10425 +10427 2 -19.18313925671349 -215.54213681485209 23.2667 0.1144 10426 +10428 2 -18.669984976855616 -214.75651145940947 22.9296 0.1144 10427 +10429 2 -18.209195172009004 -213.51071727588533 22.5961 0.1144 10428 +10430 2 -17.905408970645908 -212.1109316605082 22.276 0.1144 10429 +10431 2 -17.72558187576786 -210.932679572032 21.9883 0.1144 10430 +10432 2 -17.55003785097115 -209.79033254855366 21.7505 0.1144 10431 +10433 2 -17.355863215939948 -208.66262160860168 21.5337 0.1144 10432 +10434 2 -17.130272840038472 -207.55808555353437 21.2631 0.1144 10433 +10435 2 -17.190890699028614 -206.25800975019644 20.9636 0.1144 10434 +10436 2 -17.526867764924646 -204.81464005836983 20.7003 0.1144 10435 +10437 2 -17.675428670336785 -203.45578273849773 20.4234 0.1144 10436 +10438 2 -17.388437174179373 -202.43754278761037 20.152 0.1144 10437 +10439 2 -16.9040724722269 -200.9886187881383 19.8835 0.1144 10438 +10440 2 -16.39876213771653 -198.99460448644186 19.5913 0.1144 10439 +10441 2 -15.959708915900393 -198.0502240244315 19.2946 0.1144 10440 +10442 2 -15.589809363671705 -197.09486127420774 19.0188 0.1144 10441 +10443 2 -15.242729686696421 -196.12073438813985 18.7672 0.1144 10442 +10444 2 -14.91011867134435 -195.12757402608307 18.5339 0.1144 10443 +10445 2 -14.653261827030931 -194.05886467402348 18.3543 0.1144 10444 +10446 2 -14.251018024796892 -193.07681765395006 18.1857 0.1144 10445 +10447 2 -13.913823819981204 -191.22468185223386 17.9059 0.1144 10446 +10448 2 -13.798279681569497 -189.72644326894448 17.4355 0.1144 10447 +10449 2 -13.829444336817758 -188.41378727857045 16.84 0.1144 10448 +10450 2 -13.783934829408793 -186.94979398013112 16.215 0.1144 10449 +10451 2 -13.991472614471732 -186.0248437655092 15.5348 0.1144 10450 +10452 2 -14.087190620114626 -184.83693451600635 15.037 0.1144 10451 +10453 2 -13.91912324009158 -183.10335790481707 14.6901 0.1144 10452 +10454 2 -13.28910049375365 -182.11260052501552 14.4674 0.1144 10453 +10455 2 -12.395329284680102 -181.92692596468802 14.023 0.1144 10454 +10456 2 -19.387584291080245 -218.08905981934524 26.4132 0.1144 10424 +10457 2 -18.452445806454904 -217.74101038973578 26.8428 0.1144 10456 +10458 2 -17.40306631439823 -217.6768172136457 27.5041 0.1144 10457 +10459 2 -16.469453801254943 -218.6731352197292 28.2783 0.1144 10458 +10460 2 -15.581971461260949 -218.3786208156148 29.0746 0.1144 10459 +10461 2 -14.583063988491304 -219.5010926291841 29.832 0.1144 10460 +10462 2 -13.497210840766314 -220.22721070604518 30.6071 0.1144 10461 +10463 2 -12.668414560083193 -219.28947379942795 32.163 0.1144 10462 +10464 2 -11.806120868552 -220.15578448179917 33.3228 0.1144 10463 +10465 2 -10.84603490081119 -221.10511247966156 34.3759 0.1144 10464 +10466 2 -9.80558324416532 -220.6280297602763 35.4995 0.1144 10465 +10467 2 -8.951666875577388 -220.03239127918948 36.5826 0.1144 10466 +10468 2 -8.01656633785575 -220.3923174852365 37.9439 0.1144 10467 +10469 2 -7.167132765446709 -220.6538307934481 39.5889 0.1144 10468 +10470 2 -6.238898908558937 -220.4312288809468 41.0404 0.1144 10469 +10471 2 -5.346623945513429 -221.09025771810136 42.4007 0.1144 10470 +10472 2 -4.549779286474802 -221.19437162844906 43.8234 0.1144 10471 +10473 2 -3.9370479949461696 -221.98696057815346 45.5305 0.1144 10472 +10474 2 -3.330896973556534 -223.1777273557223 47.182 0.1144 10473 +10475 2 -2.739280693997074 -224.47761291862676 48.5601 0.1144 10474 +10476 2 -1.9487137766687823 -225.20587945965622 49.8929 0.1144 10475 +10477 2 -1.2505033250518238 -225.48192569351355 51.1087 0.1144 10476 +10478 2 -0.9451956736687634 -225.11700343900057 53.8406 0.1144 10477 +10479 2 -0.06463367126255548 -225.08119578082486 54.9548 0.1144 10478 +10480 2 0.7306418833620398 -224.7459262988309 55.559 0.1144 10479 +10481 2 1.5643046803054403 -223.5262338659202 56.3486 0.1144 10480 +10482 2 2.49756892223526 -222.59994926551278 57.134 0.1144 10481 +10483 2 3.2240443934519334 -221.89386216920352 58.2938 0.1144 10482 +10484 2 3.196538526403586 -220.78456658224695 59.8052 0.1144 10483 +10485 2 3.576311629918564 -219.72275851702727 61.3348 0.1144 10484 +10486 2 4.36127184163378 -219.6214615315835 62.7992 0.1144 10485 +10487 2 5.190285368906515 -218.47030263755977 64.0298 0.1144 10486 +10488 2 6.045303136071865 -218.2658617342608 64.9986 0.1144 10487 +10489 2 7.000293756668853 -217.74974547691542 66.0579 0.1144 10488 +10490 2 8.042376596174421 -217.57916101737942 67.0566 0.1144 10489 +10491 2 9.112743461812485 -216.79817473306926 67.8622 0.1144 10490 +10492 2 9.586785611401055 -216.0245645960878 68.5782 0.1144 10491 +10493 2 9.953574372740803 -215.10194634924972 69.1986 0.1144 10492 +10494 2 10.850380389906562 -214.85260640467396 69.7844 0.1144 10493 +10495 2 11.89427100113761 -213.3285673985675 70.3018 0.1144 10494 +10496 2 12.938564149026078 -213.56062992429202 70.7773 0.1144 10495 +10497 2 13.979687244510146 -212.9016316739105 71.2121 0.1144 10496 +10498 2 14.878978764395072 -211.7405719680889 71.6531 0.1144 10497 +10499 2 15.554239417119177 -211.19484725969883 72.119 0.1144 10498 +10500 2 16.230128459596045 -210.652226505849 72.602 0.1144 10499 +10501 2 16.902938845684517 -209.4785171469361 73.1041 0.1144 10500 +10502 2 17.576240062863263 -207.8206416260205 73.6098 0.1144 10501 +10503 2 18.239470606804105 -207.0996403481278 74.0984 0.1144 10502 +10504 2 18.88603548668523 -205.84416429377438 74.5494 0.1144 10503 +10505 2 19.5345598021117 -204.0427082111551 74.9672 0.1144 10504 +10506 2 20.16727649044641 -203.4598530131818 75.7235 0.1144 10505 +10507 2 -1.2131897564549803 -225.70795968467218 51.7006 0.1144 10477 +10508 2 -1.0658716024024102 -226.83362381901298 51.7549 0.1144 10507 +10509 2 -1.4780697568124737 -228.16407844705157 51.3517 0.1144 10508 +10510 2 -2.532495846341334 -229.0455690521096 50.6766 0.1144 10509 +10511 2 -3.605091848916331 -228.59083301927876 49.9402 0.1144 10510 +10512 2 -4.712025465063618 -228.73670180045835 49.3209 0.1144 10511 +10513 2 -5.838181128604774 -229.15086207509904 48.853 0.1144 10512 +10514 2 -6.972133095077538 -229.67802816452638 48.5092 0.1144 10513 +10515 2 -8.110456426064559 -229.61156812125023 48.2594 0.1144 10514 +10516 2 -9.250975042978183 -228.81989356077347 48.0673 0.1144 10515 +10517 2 -10.392131259697692 -229.4082621795223 47.8948 0.1144 10516 +10518 2 -11.53208616430733 -229.0388898956448 47.7114 0.1144 10517 +10519 2 -12.671773776571868 -229.2345075658555 47.5037 0.1144 10518 +10520 2 -13.810737808947863 -229.306739155307 47.2609 0.1144 10519 +10521 2 -14.924653539354978 -228.73933959796054 46.9574 0.1144 10520 +10522 2 -16.03139274437069 -229.5930505070138 46.5545 0.1144 10521 +10523 2 -17.13875762831914 -229.15546787950228 46.039 0.1144 10522 +10524 2 -18.233591054278918 -229.08544823600954 45.4661 0.1144 10523 +10525 2 -19.34910171946693 -228.82197949149975 44.9226 0.1144 10524 +10526 2 -20.474044765550445 -228.3342840136118 44.4416 0.1144 10525 +10527 2 -21.604772313207462 -228.4340161021688 44.0238 0.1144 10526 +10528 2 -22.73857851725289 -228.4892486772876 43.6738 0.1144 10527 +10529 2 -23.876306001435466 -227.75682241417934 43.4003 0.1144 10528 +10530 2 -25.014846668001454 -227.96216288017354 43.2337 0.1144 10529 +10531 2 -26.103632603013338 -228.84177634522428 43.1609 0.1144 10530 +10532 2 -26.912642028720896 -229.76925215543378 43.1334 0.1144 10531 +10533 2 -27.442009479214846 -230.5426931854419 43.164 0.1144 10532 +10534 2 -27.90819537181983 -231.40295517693943 43.2477 0.1144 10533 +10535 2 -28.29043066284362 -232.36166964311127 43.3538 0.1144 10534 +10536 2 -28.554604692794072 -233.7570302678999 43.475 0.1144 10535 +10537 2 -28.820291868032328 -235.24952955493512 43.6327 0.1144 10536 +10538 2 -29.086011870307686 -236.80450260179646 43.8396 0.1144 10537 +10539 2 -29.508628382742643 -238.37908331450433 44.1022 0.1144 10538 +10540 2 -30.38355233853919 -238.53649101634159 44.4114 0.1144 10539 +10541 2 -31.469587887533237 -239.2479370502415 44.7521 0.1144 10540 +10542 2 -32.47202121226971 -239.92581039355596 45.1976 0.1144 10541 +10543 2 -33.003148584995756 -240.63653150533156 45.7383 0.1144 10542 +10544 2 -33.42839195293213 -241.5214658257847 46.3056 0.1144 10543 +10545 2 -34.22188706992367 -242.30095974279078 46.8076 0.1144 10544 +10546 2 -35.11795927317452 -243.95392419053147 47.2136 0.1144 10545 +10547 2 -36.02161595440751 -244.34092677969122 47.5336 0.1144 10546 +10548 2 -36.84905917017163 -246.1661564056812 47.7632 0.1144 10547 +10549 2 -37.257005382712435 -247.28368483837744 47.8864 0.1144 10548 +10550 2 -37.554587416115425 -248.3327941874856 47.9175 0.1144 10549 +10551 2 -37.847407262142625 -249.38664977811743 47.882 0.1144 10550 +10552 2 -38.493880746007754 -250.00053773303057 47.7904 0.1144 10551 +10553 2 -39.44820804254196 -250.94425019541393 47.6213 0.1144 10552 +10554 2 -40.42723246391209 -251.95415831843485 47.3362 0.1144 10553 +10555 2 -41.40505557317242 -252.72696129677928 46.9675 0.1144 10554 +10556 2 -42.11444401511792 -253.5849656784348 46.5727 0.1144 10555 +10557 2 -42.687039979686425 -254.58184525649665 46.1905 0.1144 10556 +10558 2 -43.38622801471136 -255.61526359006837 45.8315 0.1144 10557 +10559 2 -44.3691775103383 -256.1171744355577 45.5118 0.1144 10558 +10560 2 -45.42955719676326 -256.4808234042598 45.2494 0.1144 10559 +10561 2 -46.507361363219914 -257.7523033655572 45.0766 0.1144 10560 +10562 2 -47.587359430530014 -257.7799987685504 44.9686 0.1144 10561 +10563 2 -48.657322060685715 -257.4837661664041 44.9081 0.1144 10562 +10564 2 -49.496528092887935 -259.02154236474496 44.8731 0.1144 10563 +10565 2 -32.64238527264976 -237.13445840987447 28.0622 0.1144 10403 +10566 2 -33.529304592876414 -235.69728926130335 27.9604 0.1144 10565 +10567 2 -34.35089571799176 -234.42645655529037 27.9231 0.1144 10566 +10568 2 -34.99254532679828 -234.0461151660922 27.8809 0.1144 10567 +10569 2 -35.39102180994452 -233.05111621519808 27.8013 0.1144 10568 +10570 2 -35.38045058100519 -231.69365529533098 27.6781 0.1144 10569 +10571 2 -35.090133367426446 -230.15745247627018 27.5682 0.1144 10570 +10572 2 -34.54445583965095 -228.2989152863314 27.4705 0.1144 10571 +10573 2 -34.15806721222833 -227.13807405897973 27.3631 0.1144 10572 +10574 2 -33.78394005731407 -226.17296070892468 27.2654 0.1144 10573 +10575 2 -33.47686647619625 -225.13649048799954 27.2153 0.1144 10574 +10576 2 -33.37554083679164 -223.91447507390365 27.2159 0.1144 10575 +10577 2 -33.03144601114242 -222.91783489381083 27.2809 0.1144 10576 +10578 2 -32.67263944634921 -221.93680877027663 27.3939 0.1144 10577 +10579 2 -32.313256857615954 -220.51554876578638 27.5354 0.1144 10578 +10580 2 -31.997138019040776 -218.7022423076905 27.6746 0.1144 10579 +10581 2 -31.99120234537787 -217.26457009493436 27.7645 0.1144 10580 +10582 2 -31.998539531857773 -215.92079460280888 27.8081 0.1144 10581 +10583 2 -31.521081653905043 -214.56634356484813 27.7907 0.1144 10582 +10584 2 -30.880087041601513 -213.93913561175853 27.7236 0.1144 10583 +10585 2 -30.24075174546111 -213.14425800942834 27.4848 0.1144 10584 +10586 2 -7.807420741840701 -289.8775313630649 19.5378 0.1144 10352 +10587 2 -8.159597571458974 -289.56499659577344 17.6438 0.1144 10586 +10588 2 -7.4912717693636495 -288.9515723524898 16.6748 0.1144 10587 +10589 2 -7.803717093913463 -287.55908501012027 15.9958 0.1144 10588 +10590 2 -7.618841193323007 -287.44109152608075 14.1513 0.1144 10589 +10591 2 -7.11528318082722 -287.1158432250927 12.2167 0.1144 10590 +10592 2 -6.949564360386262 -286.16244254084984 11.0035 0.1144 10591 +10593 2 -7.240202913827119 -284.8460554609095 9.8481 0.1144 10592 +10594 2 -6.924500231607539 -283.9265691218395 8.76 0.1144 10593 +10595 2 -6.715700453040313 -282.9893005182403 7.2918 0.1144 10594 +10596 2 -7.958897512452239 -287.2865314208841 15.8642 0.1144 10589 +10597 2 -8.570027062486503 -286.57558503121663 15.4412 0.1144 10596 +10598 2 -8.931615136367085 -285.7617449707403 15.4238 0.1144 10597 +10599 2 -8.470506981424535 -284.02220033916615 15.7678 0.1144 10598 +10600 2 -7.481308179164273 -283.6828564651214 16.242 0.1144 10599 +10601 2 -6.398832812899741 -284.11084381095844 16.7805 0.1144 10600 +10602 2 -5.312534789653526 -283.20379807290914 17.3585 0.1144 10601 +10603 2 -4.2546337102450025 -282.95455997102636 17.9341 0.1144 10602 +10604 2 -3.2472037328245023 -281.4599515507958 18.4859 0.1144 10603 +10605 2 -2.193045628177444 -281.47691982347425 19.008 0.1144 10604 +10606 2 -1.0820257621268041 -282.0822613058169 19.5087 0.1144 10605 +10607 2 0.031002803698783055 -280.94037181797654 20.014 0.1144 10606 +10608 2 0.11867156110545807 -279.69683608794026 20.3136 0.1144 10607 +10609 2 -0.1920032284010631 -278.69671829476124 20.3953 0.1144 10608 +10610 2 -0.3204789472696916 -277.58833591390925 20.2948 0.1144 10609 +10611 2 -0.01451186691087969 -276.03557116226807 19.9746 0.1144 10610 +10612 2 -1.0777950179097644 -277.02945032817456 19.1678 0.1144 10611 +10613 2 -2.161282476323592 -276.10007464053865 18.4395 0.1144 10612 +10614 2 -3.158514935622236 -275.08284063796947 17.8594 0.1144 10613 +10615 2 -3.8428197276983553 -274.76443595726164 17.6054 0.1144 10614 +10616 2 -4.434493173478543 -273.8935545499997 17.6037 0.1144 10615 +10617 2 -4.9792550844747865 -272.38074221705983 17.8413 0.1144 10616 +10618 2 -5.455594730751969 -271.2638958755434 18.3767 0.1144 10617 +10619 2 -5.4578815136620165 -270.00013195543806 19.0827 0.1144 10618 +10620 2 -5.162605292529278 -268.6861974242992 19.7806 0.1144 10619 +10621 2 -5.228199572891157 -267.4260009583293 20.5173 0.1144 10620 +10622 2 -5.65201907914016 -266.36345599794885 21.1889 0.1144 10621 +10623 2 -5.979438617086089 -265.59566565838736 21.6938 0.1144 10622 +10624 2 -6.127065502733572 -264.41292583307245 22.0058 0.1144 10623 +10625 2 -6.271346439647417 -263.2277268252464 22.2146 0.1144 10624 +10626 2 -6.0160027406219 -261.66316296332985 22.2962 0.1144 10625 +10627 2 -5.985469855655509 -260.2954482462423 22.2163 0.1144 10626 +10628 2 -6.227135429939892 -259.2185388643322 22.0608 0.1144 10627 +10629 2 -6.767978469845488 -258.32072648491067 21.8521 0.1144 10628 +10630 2 -7.438449098521303 -256.81966941514884 21.5269 0.1144 10629 +10631 2 -8.225769365123071 -255.38840047764967 21.0406 0.1144 10630 +10632 2 -9.189278963219166 -254.73577638164625 20.5597 0.1144 10631 +10633 2 -10.130127168573168 -254.63051588400583 20.1183 0.1144 10632 +10634 2 -11.125110668070477 -253.37318678047717 19.5063 0.1144 10633 +10635 2 -12.097089499683804 -253.49103236086944 19.1797 0.1144 10634 +10636 2 -12.97849161068217 -252.5391651893529 18.9936 0.1144 10635 +10637 2 -13.343868821970744 -251.0819053632825 18.8511 0.1144 10636 +10638 2 -13.293415720227031 -249.8340008651536 18.6741 0.1144 10637 +10639 2 -13.054467291332841 -248.73739559291755 18.5305 0.1144 10638 +10640 2 -12.555305657386683 -247.78851360534009 18.3968 0.1144 10639 +10641 2 -12.208493272756598 -246.28227685089496 18.2576 0.1144 10640 +10642 2 -12.572663661305725 -245.26775079553335 18.1093 0.1144 10641 +10643 2 -13.158191508104778 -243.9558709733625 17.9102 0.1144 10642 +10644 2 -13.746072714893842 -242.4471065593553 17.6614 0.1144 10643 +10645 2 -14.333771822187543 -240.94157555806368 17.3722 0.1144 10644 +10646 2 -14.639863422230391 -239.49150502944715 17.0452 0.1144 10645 +10647 2 -14.861303149725629 -238.10256053122882 16.7068 0.1144 10646 +10648 2 -15.0838175572312 -236.73094938887107 16.369 0.1144 10647 +10649 2 -15.301070428754016 -235.5929872900793 15.7058 0.1144 10648 +10650 2 -3.6267080266619587 -311.03489010926114 31.5949 0.1144 10334 +10651 2 -2.641257514129194 -310.54158641852774 31.9136 0.1144 10650 +10652 2 -1.8111619194130526 -311.8399727612234 32.0894 0.1144 10651 +10653 2 -0.8430437983593606 -313.06331934521074 32.3005 0.1144 10652 +10654 2 0.03661362564749027 -312.9138376711279 32.5044 0.1144 10653 +10655 2 0.8841981878874918 -310.91912597443013 32.6654 0.1144 10654 +10656 2 1.9753546126186166 -311.3548827050769 32.8188 0.1144 10655 +10657 2 2.69491605038111 -310.88177152803416 33.094 0.1144 10656 +10658 2 4.0733150722552836 -319.14279746087914 37.3223 0.1144 10323 +10659 2 4.908541663789364 -318.96100744536824 36.7419 0.1144 10658 +10660 2 5.683085127315266 -317.590431424325 36.5994 0.1144 10659 +10661 2 6.229788070871422 -316.1067813058973 36.4728 0.1144 10660 +10662 2 6.8394576457840515 -315.2927895203088 36.3378 0.1144 10661 +10663 2 7.131946528305491 -314.214367613541 35.3377 0.1144 10662 +10664 2 3.9580440385919786 -320.29332901227605 40.8391 0.1144 10320 +10665 2 3.5112280682237014 -319.9101636600607 40.6146 0.1144 10664 +10666 2 3.1834498419166124 -318.9450176588335 40.3808 0.1144 10665 +10667 2 2.9364788833532884 -317.4943391067373 40.129 0.1144 10666 +10668 2 2.6542647088450195 -316.0274548613787 39.8902 0.1144 10667 +10669 2 2.3108078965922942 -314.5380660087607 39.6738 0.1144 10668 +10670 2 1.924355319063082 -313.03360441107816 39.5147 0.1144 10669 +10671 2 1.5193275986952273 -311.5534549649767 39.4198 0.1144 10670 +10672 2 1.0361194660849549 -310.024776801 39.38 0.1144 10671 +10673 2 0.7461199152081832 -308.5665969008836 39.3784 0.1144 10672 +10674 2 0.6274085470290771 -307.2289381081015 39.4013 0.1144 10673 +10675 2 0.48886525650560486 -305.97291461111973 39.4778 0.1144 10674 +10676 2 0.13506806962317341 -305.36606512600713 39.5797 0.1144 10675 +10677 2 -0.36871608062091354 -304.71065587936135 39.6617 0.1144 10676 +10678 2 -0.5672647681589496 -303.2935163465495 39.7202 0.1144 10677 +10679 2 -0.845774998108979 -301.8303829690728 39.7538 0.1144 10678 +10680 2 -1.372102426512086 -300.29720136771175 39.762 0.1144 10679 +10681 2 -1.8697323655623421 -298.77079973826153 39.7477 0.1144 10680 +10682 2 -2.3948584818556355 -297.23943756425416 39.7191 0.1144 10681 +10683 2 -3.1781479659498615 -296.67243930533823 39.6819 0.1144 10682 +10684 2 -3.9047731836702155 -296.1681409641848 39.6116 0.1144 10683 +10685 2 -4.5211205160871515 -294.6387789100095 39.5032 0.1144 10684 +10686 2 -5.121122535138937 -293.7629463393043 39.4271 0.1144 10685 +10687 2 -5.759023658554355 -293.5224678048106 39.3176 0.1144 10686 +10688 2 -6.476447261263871 -292.00787045465313 39.2031 0.1144 10687 +10689 2 -6.940272863370311 -290.4904381387404 39.0958 0.1144 10688 +10690 2 -7.33420208567307 -288.99415396494356 38.9486 0.1144 10689 +10691 2 -7.884715671205683 -287.4829665083948 38.7876 0.1144 10690 +10692 2 -8.293970994259169 -286.27503379585767 38.6322 0.1144 10691 +10693 2 -8.686930268177136 -285.51510398870096 38.4238 0.1144 10692 +10694 2 -9.010034601541236 -284.60406969700045 38.3166 0.1144 10693 +10695 2 -9.10326710446492 -283.36222257411265 38.2029 0.1144 10694 +10696 2 -9.439065172448679 -282.10126905173945 37.9366 0.1144 10695 +10697 2 -9.727915777028386 -280.6436138657572 37.7177 0.1144 10696 +10698 2 -9.947660259740346 -279.2268929814467 37.4769 0.1144 10697 +10699 2 -9.822536279180994 -278.05258862843897 37.2868 0.1144 10698 +10700 2 -10.320130289611086 -276.5390575375721 37.1462 0.1144 10699 +10701 2 -10.562427355231407 -275.12282250877746 37.0653 0.1144 10700 +10702 2 -10.871718733132667 -273.90510523686726 37.0563 0.1144 10701 +10703 2 -11.191926509603647 -272.9376489704831 37.049 0.1144 10702 +10704 2 -11.5886664034131 -272.1877896863631 36.9477 0.1144 10703 +10705 2 -12.448200481188408 -271.20782922217376 36.7923 0.1144 10704 +10706 2 -13.324743498165276 -269.7826904225348 36.6864 0.1144 10705 +10707 2 -14.00357862873281 -268.26456062440343 36.6576 0.1144 10706 +10708 2 -14.462729645359602 -267.31165716816247 36.6643 0.1144 10707 +10709 2 -14.584604862776956 -266.08090527229024 36.6652 0.1144 10708 +10710 2 -14.805644462661292 -265.0269040023944 36.6131 0.1144 10709 +10711 2 -15.322122347525024 -264.2672095530672 36.472 0.1144 10710 +10712 2 -15.731644270387108 -262.9398431961258 36.2138 0.1144 10711 +10713 2 -16.041514081274983 -261.4918238311175 35.9131 0.1144 10712 +10714 2 -16.670628722061792 -260.53561043351664 35.6678 0.1144 10713 +10715 2 -17.21003459947626 -259.7528333169692 35.4886 0.1144 10714 +10716 2 -17.439634828893773 -258.31195288037156 35.3738 0.1144 10715 +10717 2 -17.817221146877927 -256.83020824355253 35.3125 0.1144 10716 +10718 2 -18.18691735686801 -255.40175734447826 35.2862 0.1144 10717 +10719 2 -18.365019760454857 -254.16226368812727 35.233 0.1144 10718 +10720 2 -18.529041916233737 -252.90272998452548 35.1865 0.1144 10719 +10721 2 -18.601023156587686 -251.60290889289058 35.1918 0.1144 10720 +10722 2 -18.757692198109368 -250.358224906884 35.2106 0.1144 10721 +10723 2 -19.135496544209033 -249.12808400037625 35.222 0.1144 10722 +10724 2 -19.506537828137724 -247.64854166483303 35.24 0.1144 10723 +10725 2 -19.869774196922137 -246.17511546343172 35.2372 0.1144 10724 +10726 2 -20.417664028536464 -245.2068118280538 35.1842 0.1144 10725 +10727 2 -20.87453044083044 -244.2512738150302 35.0941 0.1144 10726 +10728 2 -21.124665248632013 -242.8136805939409 34.9709 0.1144 10727 +10729 2 -21.237410015742256 -241.44454701845223 34.7757 0.1144 10728 +10730 2 -21.318124680375504 -240.09557208657634 34.5064 0.1144 10729 +10731 2 -21.576584959865528 -238.65871960322437 34.237 0.1144 10730 +10732 2 -21.52782330878543 -237.45075609748073 33.9368 0.1144 10731 +10733 2 -21.206310791498467 -236.43539157149888 33.6176 0.1144 10732 +10734 2 -21.176805731359266 -235.1745674535925 33.3987 0.1144 10733 +10735 2 -21.088485659752337 -233.82930156811824 33.229 0.1144 10734 +10736 2 -21.27967572240361 -232.53985007397193 33.0722 0.1144 10735 +10737 2 -21.322077126916184 -231.21944297524476 32.9428 0.1144 10736 +10738 2 -21.046374745835763 -229.82386292860014 32.8017 0.1144 10737 +10739 2 -20.844489000722774 -228.38547271320743 32.632 0.1144 10738 +10740 2 -20.705569194429742 -226.9745874977536 32.4626 0.1144 10739 +10741 2 -21.036329170479718 -225.863631047178 32.303 0.1144 10740 +10742 2 -21.727461009639143 -224.8324302936969 32.1174 0.1144 10741 +10743 2 -21.798416834212404 -223.4965108363103 31.8844 0.1144 10742 +10744 2 -21.870844364823824 -222.15720987841217 31.5991 0.1144 10743 +10745 2 -21.653734137024443 -221.51294775345212 31.2794 0.1144 10744 +10746 2 -21.594685169664004 -220.24968770990995 31.0299 0.1144 10745 +10747 2 -21.610221195732862 -218.915184753341 30.7266 0.1144 10746 +10748 2 -21.57532004783532 -217.55956440269114 30.4214 0.1144 10747 +10749 2 -21.68240074230542 -216.2957230812744 30.1378 0.1144 10748 +10750 2 -22.09677624855935 -214.87809385556778 29.8561 0.1144 10749 +10751 2 -22.63161124814637 -213.56419712149662 29.5943 0.1144 10750 +10752 2 -23.17049175092353 -212.87433877134544 29.3308 0.1144 10751 +10753 2 -23.00140956793112 -211.54025932074373 29.1348 0.1144 10752 +10754 2 -22.73058679627306 -210.01934149806732 29.0035 0.1144 10753 +10755 2 -22.801630915279247 -208.7508201856524 28.8302 0.1144 10754 +10756 2 -22.778541848049414 -207.37429153960463 28.5709 0.1144 10755 +10757 2 -22.771837124388043 -206.01135681367214 28.2738 0.1144 10756 +10758 2 -22.86346818759101 -204.74987681950148 27.9662 0.1144 10757 +10759 2 -23.218995855340196 -203.83418296201575 27.6536 0.1144 10758 +10760 2 -23.887184288729685 -202.86016881151107 27.3466 0.1144 10759 +10761 2 -24.289353097334597 -201.43360086712448 26.9967 0.1144 10760 +10762 2 -23.872881491344174 -200.570961031587 26.7558 0.1144 10761 +10763 2 -23.88333257029609 -199.299795576485 26.5835 0.1144 10762 +10764 2 -24.328583029563816 -197.8192453096245 26.4174 0.1144 10763 +10765 2 -24.90635832703134 -196.31962730355343 26.2056 0.1144 10764 +10766 2 -25.335751202441045 -195.11705108844507 25.9491 0.1144 10765 +10767 2 -25.684243005044507 -193.9266710717103 25.5951 0.1144 10766 +10768 2 -25.604389065371734 -192.60045334635305 25.2629 0.1144 10767 +10769 2 -25.700068733348004 -191.298404588412 24.9397 0.1144 10768 +10770 2 -25.846796746325026 -190.7267458444346 24.5761 0.1144 10769 +10771 2 -26.249412537723998 -189.29717427188316 24.198 0.1144 10770 +10772 2 -26.611719704836815 -188.05676098585548 23.7813 0.1144 10771 +10773 2 -26.71897698817267 -186.82345102315787 23.4203 0.1144 10772 +10774 2 -26.959978244084056 -185.7917675489838 23.0579 0.1144 10773 +10775 2 -27.296622037399644 -184.92538808992822 22.6783 0.1144 10774 +10776 2 -27.28024607557454 -183.56826257521453 22.2391 0.1144 10775 +10777 2 -26.874027242317467 -181.79759866577356 21.7793 0.1144 10776 +10778 2 -26.116272280831126 -180.99006522946348 21.352 0.1144 10777 +10779 2 -25.7509158815745 -179.9163581354153 20.9401 0.1144 10778 +10780 2 -25.78382263678914 -178.61468480305 20.5553 0.1144 10779 +10781 2 -25.684368138496964 -177.31941762500105 20.2455 0.1144 10780 +10782 2 -25.65356796118543 -176.06987124721275 19.9601 0.1144 10781 +10783 2 -25.686563010833027 -174.7760644743836 19.6709 0.1144 10782 +10784 2 -25.45099576675605 -173.70612753563245 19.4106 0.1144 10783 +10785 2 -25.029278038002175 -172.81154636003103 19.208 0.1144 10784 +10786 2 -25.315540124747116 -171.40033496433637 19.1003 0.1144 10785 +10787 2 -25.252966210740766 -170.17313929504806 18.9575 0.1144 10786 +10788 2 -25.39850702874334 -168.80811156721902 18.7967 0.1144 10787 +10789 2 -25.71555095597607 -167.36559899373992 18.6258 0.1144 10788 +10790 2 -25.89467567376053 -165.9839748377475 18.4797 0.1144 10789 +10791 2 -26.121379346284925 -164.58415519035634 18.3272 0.1144 10790 +10792 2 -26.276847075696793 -163.2169982840323 18.13 0.1144 10791 +10793 2 -26.212942115897945 -161.9871139455795 17.9499 0.1144 10792 +10794 2 -25.951717008653333 -160.92881590649566 17.8428 0.1144 10793 +10795 2 -26.093371782602375 -159.56524891673646 17.8233 0.1144 10794 +10796 2 -26.330545563439088 -158.15550997857665 17.9008 0.1144 10795 +10797 2 -26.70430130476545 -156.77136057017464 18.0316 0.1144 10796 +10798 2 -27.242876177530817 -155.49222176252945 18.191 0.1144 10797 +10799 2 -27.65239569134637 -154.0578663305564 18.4057 0.1144 10798 +10800 2 -27.700610032509374 -152.79877053654798 18.6292 0.1144 10799 +10801 2 -27.270121849871543 -151.96799598623562 18.9128 0.1144 10800 +10802 2 -27.766949219349698 -150.58490059783588 19.1923 0.1144 10801 +10803 2 -28.51197299104298 -150.58115788641294 19.378 0.1144 10802 +10804 2 -29.042116275421222 -149.33744657702405 19.5987 0.1144 10803 +10805 2 -29.424558585843712 -148.00101658842678 19.8269 0.1144 10804 +10806 2 -29.897159051479193 -146.60190993788345 19.9873 0.1144 10805 +10807 2 -30.311228927721345 -145.1165050265422 20.0672 0.1144 10806 +10808 2 -31.050520155205916 -143.74646526958438 20.1371 0.1144 10807 +10809 2 -32.10678634662433 -144.20895445025488 20.2358 0.1144 10808 +10810 2 -32.8098675113623 -142.97094831553326 20.3196 0.1144 10809 +10811 2 -32.75948729083228 -141.76338320204266 20.4187 0.1144 10810 +10812 2 -32.699506712753646 -140.51322854548468 20.567 0.1144 10811 +10813 2 -32.66795151358973 -139.24161908686781 20.7211 0.1144 10812 +10814 2 -32.61915221737955 -137.98324569884574 20.8738 0.1144 10813 +10815 2 -32.99828381515198 -136.625609843356 21.0495 0.1144 10814 +10816 2 -33.437262043339004 -135.22035815465944 21.2094 0.1144 10815 +10817 2 -33.88492132999252 -133.74305505051578 21.282 0.1144 10816 +10818 2 -34.07035971810737 -132.3578537280632 21.3666 0.1144 10817 +10819 2 -33.81269479359226 -131.31031198270117 21.7079 0.1144 10818 +10820 2 -33.903518469130134 -129.97145176050722 21.9732 0.1144 10819 +10821 2 -33.87524675463381 -129.91258156464588 20.8512 0.1144 10820 +10822 2 -33.804304532637914 -129.1929821340733 19.09 0.1144 10821 +10823 2 -34.07931514943593 -127.85490278481272 18.175 0.1144 10822 +10824 2 -34.434700771866375 -126.47164607533986 17.2117 0.1144 10823 +10825 2 -34.58096406877294 -125.18688196492448 16.2086 0.1144 10824 +10826 2 -34.34773787304988 -124.17161962122094 15.3262 0.1144 10825 +10827 2 -33.81105185184575 -123.44319697743165 14.6116 0.1144 10826 +10828 2 -33.78570661536011 -122.26456985324636 13.8962 0.1144 10827 +10829 2 -34.24565099150598 -120.83316336372157 13.2849 0.1144 10828 +10830 2 -34.52473655285952 -119.42165608395776 12.7622 0.1144 10829 +10831 2 -35.014710156687244 -117.9452589423399 12.3139 0.1144 10830 +10832 2 -35.8528108723974 -116.98723966709856 11.8552 0.1144 10831 +10833 2 -35.99739674678648 -116.03475546232626 11.4011 0.1144 10832 +10834 2 -35.551296040725006 -114.7134315791814 11.0194 0.1144 10833 +10835 2 -34.87799482354626 -114.23716071054267 10.5339 0.1144 10834 +10836 2 -34.46073606120301 -113.46371372293461 10.1145 0.1144 10835 +10837 2 -34.109141257884744 -112.63936453995801 9.5357 0.1144 10836 +10838 2 -34.47256165038036 -128.6320330344414 22.2676 0.1144 10820 +10839 2 -35.055192940286304 -127.12848413846078 22.4443 0.1144 10838 +10840 2 -35.57585698858588 -126.44231731053682 22.5348 0.1144 10839 +10841 2 -35.948805342247155 -125.85006173300879 22.5911 0.1144 10840 +10842 2 -36.03178817402059 -124.58764312741188 22.6521 0.1144 10841 +10843 2 -36.2182715166918 -123.33464522634794 22.7345 0.1144 10842 +10844 2 -36.33324301169253 -121.97983709368577 22.8637 0.1144 10843 +10845 2 -36.60840729290888 -120.54770397682508 23.062 0.1144 10844 +10846 2 -36.920689032765736 -119.10094711901816 23.2905 0.1144 10845 +10847 2 -37.181825431986866 -117.67536184970594 23.5453 0.1144 10846 +10848 2 -37.72061764033113 -116.28253257326824 23.9371 0.1144 10847 +10849 2 -38.25277652018707 -115.00856988626829 24.3731 0.1144 10848 +10850 2 -38.49016453501966 -113.81476891845043 24.896 0.1144 10849 +10851 2 -38.91500704800285 -112.56145624028213 25.2968 0.1144 10850 +10852 2 -39.398702910120306 -111.7936002148297 25.599 0.1144 10851 +10853 2 -40.22610036597894 -112.41971835534399 26.647 0.1144 10852 +10854 2 -41.26396070498059 -112.47289859879909 27.3836 0.1144 10853 +10855 2 -42.28214280374118 -113.57177462229636 28.0006 0.1144 10854 +10856 2 -43.28864195196938 -112.85596044362434 28.8232 0.1144 10855 +10857 2 -44.28370995177994 -111.82408186927128 29.5624 0.1144 10856 +10858 2 -45.35645800893775 -112.52042807624058 30.2061 0.1144 10857 +10859 2 -46.376798843772505 -111.55315104886108 30.9851 0.1144 10858 +10860 2 -47.41901012087682 -110.62287303338624 31.7568 0.1144 10859 +10861 2 -48.49094699624983 -111.33612624717499 32.5318 0.1144 10860 +10862 2 -49.58194194356075 -110.6654060011727 33.3508 0.1144 10861 +10863 2 -50.67474946300521 -110.01989721301163 34.1799 0.1144 10862 +10864 2 -50.737815001605824 -110.06468843870019 35.98 0.1144 10863 +10865 2 -50.970530330589966 -110.25358128307083 38.7164 0.1144 10864 +10866 2 -51.27140634965497 -111.15578612742824 41.116 0.1144 10865 +10867 2 -51.29988819027571 -111.47535652408072 43.7226 0.1144 10866 +10868 2 -51.93686611952208 -111.66687748648933 45.864 0.1144 10867 +10869 2 -52.85840397107113 -111.01124825447134 47.4684 0.1144 10868 +10870 2 -53.8493237543496 -110.30708649491068 48.8149 0.1144 10869 +10871 2 -54.033361228052115 -109.65241491368452 50.5742 0.1144 10870 +10872 2 -53.91170362515969 -108.66386318419178 51.2296 0.1144 10871 +10873 2 -53.77625639969986 -107.64413048552876 51.3433 0.1144 10872 +10874 2 -53.570266582417744 -106.67479575278507 51.091 0.1144 10873 +10875 2 -53.173093006618004 -105.88223554161227 50.542 0.1144 10874 +10876 2 -52.75381864879701 -105.11696019438186 49.8204 0.1144 10875 +10877 2 -52.58622427759849 -104.15454185745564 49.0963 0.1144 10876 +10878 2 -52.39974844101283 -103.21123554732851 48.2437 0.1144 10877 +10879 2 -51.87369129472107 -102.29513912091228 47.304 0.1144 10878 +10880 2 -51.04258418857532 -100.88387000239368 46.6578 0.1144 10879 +10881 2 -50.19000228111467 -100.61709824144275 46.1751 0.1144 10880 +10882 2 -49.33920701445322 -100.32961395885125 45.8315 0.1144 10881 +10883 2 -48.917665182028486 -99.38042035396758 45.995 0.1144 10882 +10884 2 -51.34436745866839 -110.19834074385656 34.9751 0.1144 10863 +10885 2 -52.27176760008689 -109.56437401259902 35.31 0.1144 10884 +10886 2 -53.244195823540764 -108.44902679998239 35.5519 0.1144 10885 +10887 2 -54.314650380064435 -107.76025154768602 35.7566 0.1144 10886 +10888 2 -55.445598364883395 -108.35181873902984 35.95 0.1144 10887 +10889 2 -56.58386863752111 -107.78487470794408 36.1362 0.1144 10888 +10890 2 -57.64521566818503 -107.37892829248966 36.3457 0.1144 10889 +10891 2 -58.652598891389786 -107.35719343117643 36.6369 0.1144 10890 +10892 2 -59.75688621993426 -106.4881619775667 36.696 0.1144 10891 +10893 2 -60.86412006213811 -105.93709374903838 36.5842 0.1144 10892 +10894 2 -61.883968065283966 -106.04610927027251 36.4272 0.1144 10893 +10895 2 -62.748176036002334 -104.85371438945612 36.2404 0.1144 10894 +10896 2 -63.48340262996905 -103.61501529466537 36.0231 0.1144 10895 +10897 2 -63.85221408442412 -102.38028405169955 35.7854 0.1144 10896 +10898 2 -64.02046074130544 -101.20669963542414 35.4413 0.1144 10897 +10899 2 -64.8384868832833 -101.48936557927135 34.8085 0.1144 10898 +10900 2 -65.96022974306045 -101.05120886038698 34.333 0.1144 10899 +10901 2 -67.07038847056003 -100.66116606117455 33.8814 0.1144 10900 +10902 2 -68.19409627651214 -101.55572022387487 33.4373 0.1144 10901 +10903 2 -69.26522576421995 -100.75510061898916 33.026 0.1144 10902 +10904 2 -70.23207820946664 -99.69771666576611 32.6388 0.1144 10903 +10905 2 -71.3176613540263 -100.13797189684212 32.2899 0.1144 10904 +10906 2 -72.44996982600314 -99.55478368823901 31.976 0.1144 10905 +10907 2 -73.5821900035471 -100.2680347183646 31.6828 0.1144 10906 +10908 2 -74.69487568499375 -99.48995972975598 31.4163 0.1144 10907 +10909 2 -75.65495344896982 -98.46006895144733 31.1724 0.1144 10908 +10910 2 -76.47974676099008 -98.34452280642935 30.9285 0.1144 10909 +10911 2 -77.36889831973683 -97.50081897282952 30.6634 0.1144 10910 +10912 2 -78.30066362250345 -96.38897144576637 30.3444 0.1144 10911 +10913 2 -79.2484569895238 -95.31618327679489 29.9404 0.1144 10912 +10914 2 -80.19887651950899 -95.59230024502811 29.4694 0.1144 10913 +10915 2 -81.14720688026622 -94.52311913694372 28.9629 0.1144 10914 +10916 2 -82.09370753916073 -93.46520480385591 28.4704 0.1144 10915 +10917 2 -83.05579538798501 -93.2986300842694 28.0403 0.1144 10916 +10918 2 -84.04322074928234 -92.69354634166247 27.6951 0.1144 10917 +10919 2 -85.04454976952191 -91.67705538290524 27.4387 0.1144 10918 +10920 2 -86.0508199750497 -90.9774897916691 27.2642 0.1144 10919 +10921 2 -87.10663367304453 -91.02953023128958 27.2176 0.1144 10920 +10922 2 -87.97780903734004 -89.98126727331083 27.3305 0.1144 10921 +10923 2 -88.59143881077614 -88.7559756752473 27.5465 0.1144 10922 +10924 2 -89.15576225018854 -87.5316330706637 27.8149 0.1144 10923 +10925 2 -89.72154646907606 -87.06867193917272 28.1014 0.1144 10924 +10926 2 -90.2873830537763 -86.29600648629557 28.3632 0.1144 10925 +10927 2 -90.86386013248844 -85.06518412888126 28.5267 0.1144 10926 +10928 2 -91.40849541138516 -83.84114052036811 28.5216 0.1144 10927 +10929 2 -91.7295489131879 -82.63735417710896 28.2904 0.1144 10928 +10930 2 -91.7201290395922 -81.5474154373356 27.8085 0.1144 10929 +10931 2 -91.22224470055258 -80.805810605318 27.2042 0.1144 10930 +10932 2 -90.56297136536907 -80.20577113527604 26.5662 0.1144 10931 +10933 2 -89.56124751536385 -79.18532812822303 25.8575 0.1144 10932 +10934 2 -88.46420557454225 -79.52385366933152 25.1341 0.1144 10933 +10935 2 -87.92468425855915 -78.88665671889272 24.3036 0.1144 10934 +10936 2 -87.64513658013831 -77.93817130734453 23.6847 0.1144 10935 +10937 2 -87.47212491324399 -76.90460902290639 23.2925 0.1144 10936 +10938 2 -87.29848795817989 -75.71881332565113 22.9975 0.1144 10937 +10939 2 -39.27810417127792 -111.2653337771915 25.7425 0.1144 10852 +10940 2 -39.38406564490491 -110.23669890573133 25.9387 0.1144 10939 +10941 2 -39.77595023881253 -109.72559207028917 26.0343 0.1144 10940 +10942 2 -40.13260254333832 -108.97462910113566 26.2135 0.1144 10941 +10943 2 -40.61509709334591 -107.70181396934825 26.3967 0.1144 10942 +10944 2 -41.09731573879576 -106.43210719446874 26.4974 0.1144 10943 +10945 2 -41.402112221666215 -105.19854472156527 26.5305 0.1144 10944 +10946 2 -40.90273566118759 -104.47778032587892 26.5507 0.1144 10945 +10947 2 -41.10252469103874 -103.27948432141872 26.5664 0.1144 10946 +10948 2 -40.420482449363206 -103.23710028093133 26.4025 0.1144 10947 +10949 2 -39.5258370975659 -101.72832430561886 25.4035 0.1144 10948 +10950 2 -38.85241024259783 -101.46609555463378 24.4014 0.1144 10949 +10951 2 -39.05380783263493 -100.70556781891513 22.8952 0.1144 10950 +10952 2 -38.57385724250844 -100.09419259657162 21.6385 0.1144 10951 +10953 2 -37.94179186837394 -99.61441380117974 20.504 0.1144 10952 +10954 2 -37.09358952919233 -98.78593618280931 19.4676 0.1144 10953 +10955 2 -36.20568672416512 -97.91051054978956 18.5453 0.1144 10954 +10956 2 -35.27419981828524 -97.82724975539737 17.7507 0.1144 10955 +10957 2 -34.157168496581164 -98.17203769562089 17.1541 0.1144 10956 +10958 2 -33.11332633839075 -97.95643357756612 16.7278 0.1144 10957 +10959 2 -32.56228668568423 -99.18983878042404 16.2666 0.1144 10958 +10960 2 -41.0573413467275 -102.49095353435244 26.6066 0.1144 10947 +10961 2 -40.9408248508844 -101.44963848031122 26.7066 0.1144 10960 +10962 2 -41.13775496897253 -100.29386652257217 26.8462 0.1144 10961 +10963 2 -41.74460765209159 -99.05583262677979 26.9989 0.1144 10962 +10964 2 -42.30287068537264 -98.58342344226703 27.1023 0.1144 10963 +10965 2 -42.3209274502443 -97.4111319900342 27.1741 0.1144 10964 +10966 2 -42.18227493629638 -95.9732349772173 27.2527 0.1144 10965 +10967 2 -42.31675869548366 -94.94347989665702 27.3039 0.1144 10966 +10968 2 -42.596291239631185 -94.1425432226652 27.3823 0.1144 10967 +10969 2 -42.76767202029686 -93.15869349327399 27.5061 0.1144 10968 +10970 2 -42.64914062151264 -91.760906158868 27.6924 0.1144 10969 +10971 2 -42.941639703254666 -90.97610620840602 27.8854 0.1144 10970 +10972 2 -43.422836034506915 -89.94830446941315 28.0428 0.1144 10971 +10973 2 -43.859940019998376 -88.70263509985665 28.2397 0.1144 10972 +10974 2 -44.634008350306146 -87.52355364942916 28.3945 0.1144 10973 +10975 2 -45.108207154079196 -86.29180847444518 28.4962 0.1144 10974 +10976 2 -45.217170608761336 -85.1340727725869 28.5564 0.1144 10975 +10977 2 -44.750450131466025 -84.35946637764975 28.6726 0.1144 10976 +10978 2 -45.21751336934523 -84.03949662900862 29.5403 0.1144 10977 +10979 2 -46.153127674582635 -83.73368805500016 31.1234 0.1144 10978 +10980 2 -47.20577302470481 -84.27672111106988 32.0989 0.1144 10979 +10981 2 -48.2752620305106 -83.99066962264651 32.9535 0.1144 10980 +10982 2 -48.94695909714849 -84.26475370375047 34.389 0.1144 10981 +10983 2 -49.933662281315506 -84.64124288730397 35.5205 0.1144 10982 +10984 2 -50.980487183559035 -84.03996979621351 36.5823 0.1144 10983 +10985 2 -51.78852905224329 -84.20727572659933 37.9789 0.1144 10984 +10986 2 -52.72521802551293 -84.70486036702839 39.3526 0.1144 10985 +10987 2 -53.30711261270527 -84.95176625569405 41.6861 0.1144 10986 +10988 2 -53.160939504720105 -84.89115040441837 44.345 0.1144 10987 +10989 2 -52.35286881019586 -83.79150498558167 46.1387 0.1144 10988 +10990 2 -51.55381914061965 -83.63140736373688 47.6568 0.1144 10989 +10991 2 -50.81335412507431 -83.31159815114138 49.0028 0.1144 10990 +10992 2 -50.381109121787375 -82.63900979129033 50.3782 0.1144 10991 +10993 2 -50.28842760594088 -81.71638232257204 51.7796 0.1144 10992 +10994 2 -50.20609946889677 -80.71632536980904 52.8374 0.1144 10993 +10995 2 -49.65395219732595 -79.14514687051442 53.6312 0.1144 10994 +10996 2 -48.85350029956845 -78.51165250069697 54.3802 0.1144 10995 +10997 2 -48.05732596126275 -78.09467110087971 55.0598 0.1144 10996 +10998 2 -47.47077879003234 -77.39810998253049 55.5853 0.1144 10997 +10999 2 -46.88148433436716 -76.20131535884735 56.0213 0.1144 10998 +11000 2 -46.291467683886594 -74.93503418200596 56.4082 0.1144 10999 +11001 2 -45.70006762180083 -74.22698179832577 56.7563 0.1144 11000 +11002 2 -45.14781963748666 -73.96584450362012 57.2863 0.1144 11001 +11003 2 -44.20412672649431 -73.7902373620278 57.8024 0.1144 11002 +11004 2 -43.152355128333 -73.31799144917635 58.0717 0.1144 11003 +11005 2 -42.04491906199581 -73.40182731747251 58.0734 0.1144 11004 +11006 2 -41.2051808541498 -72.2661372670624 58.0588 0.1144 11005 +11007 2 -40.205744692375475 -72.12719298971047 58.1507 0.1144 11006 +11008 2 -39.195829904772324 -72.01404472953396 58.3453 0.1144 11007 +11009 2 -38.61742130532704 -70.64624989966168 59.176 0.1144 11008 +11010 2 -38.008779555241574 -69.80759338897576 59.4882 0.1144 11009 +11011 2 -37.60875937931493 -68.93905978718729 59.6982 0.1144 11010 +11012 2 -37.07946791161774 -68.20002780479099 59.9432 0.1144 11011 +11013 2 -36.17300227538797 -67.76860622038858 60.1807 0.1144 11012 +11014 2 -35.177670185782716 -66.77885856501729 60.3974 0.1144 11013 +11015 2 -34.10792619926792 -66.93939546844764 60.7054 0.1144 11014 +11016 2 -33.01657846498841 -66.98212426807018 61.1461 0.1144 11015 +11017 2 -32.27736030867413 -65.66063689035155 61.5415 0.1144 11016 +11018 2 -31.787155637752363 -64.84465087729482 61.8498 0.1144 11017 +11019 2 -31.35425111650048 -63.97813785380794 62.0763 0.1144 11018 +11020 2 -30.93057395220123 -63.0932080056905 62.2294 0.1144 11019 +11021 2 -30.509751905545357 -62.198169520768495 62.3188 0.1144 11020 +11022 2 -30.071415367915023 -60.988272631814866 62.3731 0.1144 11021 +11023 2 -29.615479146460302 -59.60086850529624 62.4235 0.1144 11022 +11024 2 -29.199910118270623 -58.70646630182172 62.4887 0.1144 11023 +11025 2 -28.915377406265378 -57.72053854319598 62.5778 0.1144 11024 +11026 2 -28.67754819821431 -56.70334373103604 62.6993 0.1144 11025 +11027 2 -28.37719624001778 -55.71996719785367 62.8841 0.1144 11026 +11028 2 -28.041206448894968 -54.762845497967106 63.1462 0.1144 11027 +11029 2 -27.710287576743042 -53.80090143814233 63.4684 0.1144 11028 +11030 2 -27.493171944988376 -52.42123825721188 63.8968 0.1144 11029 +11031 2 -27.402839379486863 -51.17124424142495 64.4826 0.1144 11030 +11032 2 -27.47084248723459 -50.06533722345759 65.21 0.1144 11031 +11033 2 -28.112241524977122 -49.5646795096397 66.08 0.1144 11032 +11034 2 -28.782194982780396 -48.5174257991026 66.9808 0.1144 11033 +11035 2 -29.72467306293217 -47.704420581712974 67.8247 0.1144 11034 +11036 2 -30.773514566941742 -47.11605307975462 68.5756 0.1144 11035 +11037 2 -31.84091890215396 -47.14166241024031 69.3241 0.1144 11036 +11038 2 -32.67205933277401 -46.92344889330524 71.2362 0.1144 11037 +11039 2 -38.25661367578209 -71.16771935250762 58.5203 0.1144 11008 +11040 2 -37.16360083062122 -71.28320168092584 58.6256 0.1144 11039 +11041 2 -36.07990122779938 -71.35293346565778 58.7773 0.1144 11040 +11042 2 -34.98434061151693 -70.52570925485377 59.1231 0.1144 11041 +11043 2 -33.890078498078566 -70.75334988376073 59.7694 0.1144 11042 +11044 2 -32.82165324572006 -70.97216056998734 60.6488 0.1144 11043 +11045 2 -31.773368647300998 -70.23370088468307 61.6725 0.1144 11044 +11046 2 -30.75252475872901 -70.47521728313032 62.8648 0.1144 11045 +11047 2 -29.744107312431595 -70.71787800272361 64.129 0.1144 11046 +11048 2 -28.687146757727533 -70.07319326046283 65.1854 0.1144 11047 +11049 2 -28.269722516202734 -70.29928005419396 65.4598 0.1144 11048 +11050 2 -27.30535898901013 -71.1254568706145 65.5096 0.1144 11049 +11051 2 -26.50577414831693 -72.22529043710708 65.135 0.1144 11050 +11052 2 -25.75104149332992 -72.54423031389554 64.8682 0.1144 11051 +11053 2 -25.00668514159267 -73.46974525351898 64.4336 0.1144 11052 +11054 2 -24.272537021755966 -74.58629167335644 63.8291 0.1144 11053 +11055 2 -23.64160499074262 -75.69686629562 62.9126 0.1144 11054 +11056 2 -23.02408096948821 -76.78904735317752 61.8184 0.1144 11055 +11057 2 -22.287018878940557 -77.04340564944025 60.8572 0.1144 11056 +11058 2 -21.520988905111835 -77.84798960893438 59.978 0.1144 11057 +11059 2 -20.77197097206775 -78.93985086676655 59.1377 0.1144 11058 +11060 2 -20.124114502166037 -80.06166212104839 58.2294 0.1144 11059 +11061 2 -19.515138798808607 -81.1930510967194 57.2863 0.1144 11060 +11062 2 -18.90660938570869 -81.65729629969722 56.3478 0.1144 11061 +11063 2 -18.295671145222855 -82.32765704329978 55.4364 0.1144 11062 +11064 2 -17.305276345818783 -83.2551285727 54.8262 0.1144 11063 +11065 2 -16.28107169884123 -84.19082356099466 54.432 0.1144 11064 +11066 2 -15.248130526001319 -83.95161764549499 54.2542 0.1144 11065 +11067 2 -14.209760438365947 -84.88542453823729 54.2536 0.1144 11066 +11068 2 -13.14387675966978 -85.73164334479442 54.4659 0.1144 11067 +11069 2 -12.084458338112654 -85.80173850247195 54.8232 0.1144 11068 +11070 2 -11.083455871733747 -86.36110738724494 55.3697 0.1144 11069 +11071 2 -10.175804851171392 -86.59087478848092 56.6524 0.1144 11070 +11072 2 -28.51729674380934 -69.91263913223496 65.7524 0.1144 11048 +11073 2 -27.87802340231957 -69.29495128810936 66.4684 0.1144 11072 +11074 2 -27.177010388828762 -68.70052900422517 66.8769 0.1144 11073 +11075 2 -26.457899035443432 -67.8316223796216 67.1138 0.1144 11074 +11076 2 -25.736519514917887 -66.57833192392903 67.2316 0.1144 11075 +11077 2 -25.01362684910444 -65.98491668012058 67.2843 0.1144 11076 +11078 2 -24.290648990441213 -65.39098337410448 67.3081 0.1144 11077 +11079 2 -23.566819203280005 -64.61657571775389 67.3145 0.1144 11078 +11080 2 -22.843841344616777 -63.2877362543843 67.3168 0.1144 11079 +11081 2 -22.120896312990595 -62.686937588981195 67.3198 0.1144 11080 +11082 2 -21.396981332979635 -62.08138763346691 67.3238 0.1144 11081 +11083 2 -20.67466469110633 -61.385624897000966 67.3294 0.1144 11082 +11084 2 -19.9516868324431 -60.007174352577074 67.3369 0.1144 11083 +11085 2 -19.223849879758347 -59.3988755613888 67.3467 0.1144 11084 +11086 2 -18.47657733822041 -58.803018879391246 67.3646 0.1144 11085 +11087 2 -17.72587365509912 -58.155693855014505 67.3879 0.1144 11086 +11088 2 -16.975222337790484 -56.82152245452053 67.4131 0.1144 11087 +11089 2 -16.223633899134143 -56.228851701744006 67.4363 0.1144 11088 +11090 2 -15.47293021601277 -55.63754569047687 67.4526 0.1144 11089 +11091 2 -14.722364091553942 -54.915401405337754 67.4562 0.1144 11090 +11092 2 -13.971660408432598 -53.670054757916276 67.4391 0.1144 11091 +11093 2 -13.221009091124017 -53.07443668449882 67.3938 0.1144 11092 +11094 2 -12.470305408002645 -51.7581507296414 67.3126 0.1144 11093 +11095 2 -11.720676404891606 -51.153827211803886 67.1894 0.1144 11094 +11096 2 -10.716463335058734 -50.96393198921078 66.9463 0.1144 11095 +11097 2 -9.597603317780283 -50.653991874523 66.5714 0.1144 11096 +11098 2 -8.481857192973905 -50.62930132956412 66.0946 0.1144 11097 +11099 2 -7.369721207663247 -50.817668820818945 65.5525 0.1144 11098 +11100 2 -6.261057803185764 -50.37484413640636 64.9788 0.1144 11099 +11101 2 -5.152937595611348 -50.49607191347034 64.3972 0.1144 11100 +11102 2 -4.040966580066879 -50.70404016011546 63.8425 0.1144 11101 +11103 2 -2.931177455513307 -50.53598932785723 63.3906 0.1144 11102 +11104 2 -1.8154131176781902 -51.08196553074965 63.0204 0.1144 11103 +11105 2 -0.6951046205827822 -51.618025147292805 62.7236 0.1144 11104 +11106 2 0.4169167424908835 -51.4419594561309 62.2616 0.1144 11105 +11107 2 -46.20687116691792 -73.05640900536922 57.2132 0.1144 11001 +11108 2 -46.106705086621645 -72.10495269020575 58.0115 0.1144 11107 +11109 2 -46.05269110961186 -71.01977023907479 58.4399 0.1144 11108 +11110 2 -45.98152614808174 -69.96525877767641 59.1556 0.1144 11109 +11111 2 -45.76029172347532 -69.00324345999567 59.9525 0.1144 11110 +11112 2 -45.1902041860734 -68.35113477591189 60.7813 0.1144 11111 +11113 2 -44.21326033940355 -67.88416639757448 61.7151 0.1144 11112 +11114 2 -43.19903436610073 -67.69705244814186 62.8253 0.1144 11113 +11115 2 -42.39204253646943 -66.98706371094976 63.7644 0.1144 11114 +11116 2 -41.764322500818736 -65.77864751367959 64.5056 0.1144 11115 +11117 2 -41.37729558105363 -64.938614033229 65.2856 0.1144 11116 +11118 2 -41.30949467461156 -63.91708201875932 66.2161 0.1144 11117 +11119 2 -41.341754525271085 -62.8647762293856 67.2465 0.1144 11118 +11120 2 -41.40199587363426 -61.80475557019717 68.2786 0.1144 11119 +11121 2 -41.478547299279086 -60.73566751792262 69.2737 0.1144 11120 +11122 2 -41.5608863280805 -59.65640035961131 70.2248 0.1144 11121 +11123 2 -41.68310722968624 -58.56063483063505 71.118 0.1144 11122 +11124 2 -41.97643731607738 -57.44188574929846 71.9754 0.1144 11123 +11125 2 -42.37931118976849 -56.31552142714763 72.7964 0.1144 11124 +11126 2 -42.616246711177354 -55.17638019143041 73.4082 0.1144 11125 +11127 2 -42.56886916423906 -54.08666849280904 73.7218 0.1144 11126 +11128 2 -42.30225037828262 -53.097066162763696 74.0944 0.1144 11127 +11129 2 -42.03119795940947 -52.19447933175346 75.1626 0.1144 11128 +11130 2 -47.3161298146525 -73.14611474106073 57.8609 0.1144 11107 +11131 2 -48.39874352110547 -72.50311518719592 58.1823 0.1144 11130 +11132 2 -49.521728137932 -71.85470725424643 58.3906 0.1144 11131 +11133 2 -50.64804467534604 -72.21739213047327 58.5211 0.1144 11132 +11134 2 -51.76778094262109 -71.5581999231382 58.6519 0.1144 11133 +11135 2 -52.8850669432605 -70.89337648517528 58.896 0.1144 11134 +11136 2 -43.91479296466737 -84.3120977468896 28.6241 0.1144 10977 +11137 2 -43.06667071615388 -83.09608764018614 28.5566 0.1144 11136 +11138 2 -42.74250120946358 -81.97479681920456 28.5317 0.1144 11137 +11139 2 -42.93574761430568 -80.79693055825763 28.5746 0.1144 11138 +11140 2 -42.90048536900048 -79.70419365862534 28.658 0.1144 11139 +11141 2 -42.80651835448265 -78.63630392678535 28.7608 0.1144 11140 +11142 2 -42.73610359671193 -77.5573239696444 28.8935 0.1144 11141 +11143 2 -42.36919130485569 -76.67323668418267 29.0797 0.1144 11142 +11144 2 -42.01068967753778 -75.66248920853528 29.3241 0.1144 11143 +11145 2 -42.10266781000229 -74.55848588588617 29.5725 0.1144 11144 +11146 2 -42.00694087325235 -73.28901910376177 29.7965 0.1144 11145 +11147 2 -41.37909489803863 -71.95878179221879 29.9583 0.1144 11146 +11148 2 -40.86869341324507 -71.19007123232576 30.0521 0.1144 11147 +11149 2 -41.21520115703089 -70.10322776391574 30.0454 0.1144 11148 +11150 2 -42.19971454821598 -69.8425525089809 29.9737 0.1144 11149 +11151 2 -43.166352759466776 -69.24170692840062 29.8998 0.1144 11150 +11152 2 -43.94536227506268 -68.29778191999738 29.8416 0.1144 11151 +11153 2 -44.85312421273176 -68.07277204819343 29.8435 0.1144 11152 +11154 2 -45.893853170986745 -67.21193964437357 29.8701 0.1144 11153 +11155 2 -46.97256272703174 -66.43635441789743 29.8396 0.1144 11154 +11156 2 -48.10686897222055 -66.84026792727543 29.7746 0.1144 11155 +11157 2 -49.208271362971544 -66.14277388114954 29.7021 0.1144 11156 +11158 2 -50.30723279183621 -65.41431623205682 29.6114 0.1144 11157 +11159 2 -51.44515738028548 -65.92948023617572 29.4764 0.1144 11158 +11160 2 -52.58782915133936 -65.46036488692067 29.3633 0.1144 11159 +11161 2 -53.72962506315953 -65.30504722830227 29.2874 0.1144 11160 +11162 2 -54.87393351001775 -65.5522630888507 29.2407 0.1144 11161 +11163 2 -56.01701902838066 -65.18245743572113 29.2194 0.1144 11162 +11164 2 -57.15505965380329 -65.3895383456921 29.2233 0.1144 11163 +11165 2 -58.22604769973961 -65.77629881274963 29.2387 0.1144 11164 +11166 2 -59.15135887273638 -66.08272556426371 29.2116 0.1144 11165 +11167 2 -60.21008475362784 -66.5894945049027 29.3023 0.1144 11166 +11168 2 -61.32576240686569 -66.85403621197322 29.4613 0.1144 11167 +11169 2 -62.21849107042938 -67.21768153237771 29.601 0.1144 11168 +11170 2 -63.111580831400715 -67.82021629619035 29.7265 0.1144 11169 +11171 2 -64.00373347102429 -68.89383627166787 29.8421 0.1144 11170 +11172 2 -64.89690842484548 -69.26039805186062 29.9482 0.1144 11171 +11173 2 -65.78994582000408 -69.61000419556784 30.0367 0.1144 11172 +11174 2 -66.25069076512347 -68.54420397776062 30.3103 0.1144 11173 +11175 2 -66.68685762926712 -67.85798809180099 30.5222 0.1144 11174 +11176 2 -67.0537979426098 -66.84967376592583 30.6978 0.1144 11175 +11177 2 -67.33261690415475 -65.6544612855999 30.8358 0.1144 11176 +11178 2 -67.45382780319912 -64.49412250188034 30.9448 0.1144 11177 +11179 2 -67.42468143142109 -63.37327835537938 31.0456 0.1144 11178 +11180 2 -67.46235347559474 -62.23233596099273 31.1517 0.1144 11179 +11181 2 -67.71520274079406 -61.04530144763253 31.2449 0.1144 11180 +11182 2 -68.17199798838429 -59.85201210760729 31.3138 0.1144 11181 +11183 2 -68.83991361879902 -58.70508457540883 31.3634 0.1144 11182 +11184 2 -69.69205934623356 -57.67744656491042 31.3956 0.1144 11183 +11185 2 -70.60053796808833 -57.46011513955974 31.3986 0.1144 11184 +11186 2 -71.44960814071757 -56.44291158884502 31.3813 0.1144 11185 +11187 2 -72.27454211298341 -55.40340247436844 31.3922 0.1144 11186 +11188 2 -73.15313596152161 -54.40031115027393 31.4779 0.1144 11187 +11189 2 -74.18638306614702 -54.63591675309582 31.7106 0.1144 11188 +11190 2 -74.92899402637804 -55.21763631697583 32.0365 0.1144 11189 +11191 2 -75.67403432939587 -56.467976386018215 32.361 0.1144 11190 +11192 2 -76.21744679161422 -57.4130465457712 32.6855 0.1144 11191 +11193 2 -76.32786454365927 -58.50158850511732 32.9546 0.1144 11192 +11194 2 -76.67512632012988 -59.47583530125986 33.1601 0.1144 11193 +11195 2 -77.45956456056457 -60.01963060100249 33.315 0.1144 11194 +11196 2 -78.49466489504728 -60.72354510153556 33.4636 0.1144 11195 +11197 2 -79.5607500933621 -61.02340160923273 33.689 0.1144 11196 +11198 2 -80.6879503030117 -60.76733752243166 33.9618 0.1144 11197 +11199 2 -81.7110887874954 -60.59110274405185 34.1029 0.1144 11198 +11200 2 -81.11055177016274 -58.90089416902923 34.1737 0.1144 11199 +11201 2 -80.80896257123614 -57.901993280135095 34.1499 0.1144 11200 +11202 2 -80.42953003204293 -56.95552530488898 34.1144 0.1144 11201 +11203 2 -79.90537416076542 -56.13030821214823 34.06 0.1144 11202 +11204 2 -79.6830828784145 -55.09233907803016 34.0267 0.1144 11203 +11205 2 -79.43276865911002 -54.0531017718706 34.0052 0.1144 11204 +11206 2 -78.96199957704142 -52.94502658684317 33.9522 0.1144 11205 +11207 2 -79.01305500770172 -51.83382508213966 33.094 0.1144 11206 +11208 2 -81.86297082270524 -60.713353226943106 34.2026 0.1144 11199 +11209 2 -82.98916382960284 -60.118851627503695 34.2342 0.1144 11208 +11210 2 -84.11639656451588 -59.59855712910732 34.2552 0.1144 11209 +11211 2 -85.21771436596428 -60.35474729594788 34.3291 0.1144 11210 +11212 2 -86.21768821401209 -60.54807709477252 34.571 0.1144 11211 +11213 2 -87.05664337337676 -60.82696549324949 35.8103 0.1144 11212 +11214 2 -88.12326565441768 -61.082477478326524 36.5907 0.1144 11213 +11215 2 -89.24049889848145 -60.83172645238819 37.1487 0.1144 11214 +11216 2 -90.35110632528502 -60.66467120054069 37.5754 0.1144 11215 +11217 2 -91.46714576846705 -61.35202072050203 37.8742 0.1144 11216 +11218 2 -92.58830849643265 -61.181562754954356 38.0554 0.1144 11217 +11219 2 -93.71062327227851 -61.01089685288002 38.1783 0.1144 11218 +11220 2 -94.83280831444165 -61.700726163679064 38.3076 0.1144 11219 +11221 2 -95.95490816375508 -61.53010980315629 38.4412 0.1144 11220 +11222 2 -97.0760708917207 -61.59621028503718 38.5798 0.1144 11221 +11223 2 -98.19937515472706 -62.05281591832355 38.7251 0.1144 11222 +11224 2 -99.32053788269269 -61.85770701270847 38.8802 0.1144 11223 +11225 2 -100.4416482448456 -62.24023899159761 39.0496 0.1144 11224 +11226 2 -101.5622349488711 -62.407493033778515 39.2386 0.1144 11225 +11227 2 -102.68201426523153 -63.121933710187285 39.4503 0.1144 11226 +11228 2 -103.80223987184935 -62.94700146925326 39.685 0.1144 11227 +11229 2 -104.86333934404318 -62.98106941243098 40.014 0.1144 11228 +11230 2 -105.54351203732111 -62.239798252679506 40.6137 0.1144 11229 +11231 2 -106.19183021069951 -61.43142483980559 41.0808 0.1144 11230 +11232 2 -106.86866687551851 -60.29770257643941 41.4865 0.1144 11231 +11233 2 -107.26053605620694 -59.157697171764326 41.9028 0.1144 11232 +11234 2 -107.24487677856759 -58.04444176421618 42.4186 0.1144 11233 +11235 2 -107.37961000783424 -56.91283074906847 43.0041 0.1144 11234 +11236 2 -108.05873776424092 -55.86870720200458 43.5434 0.1144 11235 +11237 2 -108.92227831500313 -55.28914565308372 43.9874 0.1144 11236 +11238 2 -109.74858167072817 -54.61743719862264 44.3044 0.1144 11237 +11239 2 -110.56335736785975 -53.571462395664746 44.4816 0.1144 11238 +11240 2 -111.49169463062609 -52.63968236289977 44.5329 0.1144 11239 +11241 2 -112.58035332999113 -52.77712590178967 44.4662 0.1144 11240 +11242 2 -113.71467429586258 -52.30638098402788 44.3215 0.1144 11241 +11243 2 -114.83320304786166 -51.76775528990984 44.1501 0.1144 11242 +11244 2 -115.925886735016 -51.837943985320834 44.0082 0.1144 11243 +11245 2 -117.02693112994237 -51.21869286576264 43.9172 0.1144 11244 +11246 2 -118.13714672188914 -50.61355182391537 43.8682 0.1144 11245 +11247 2 -119.25470621803986 -50.78669204369848 43.8253 0.1144 11246 +11248 2 -120.38032009941432 -50.256301617428534 43.7402 0.1144 11247 +11249 2 -121.47584177448282 -49.795174476203904 43.5991 0.1144 11248 +11250 2 -122.50254354327913 -49.57232147450308 43.4157 0.1144 11249 +11251 2 -123.50797043252165 -48.762062433647394 43.2034 0.1144 11250 +11252 2 -124.51400617274129 -47.948752649794976 42.9758 0.1144 11251 +11253 2 -125.53817558363527 -47.8624678820703 42.7543 0.1144 11252 +11254 2 -126.59030246680106 -47.13773644562948 42.5541 0.1144 11253 +11255 2 -127.6448765150193 -46.43757331444689 42.3601 0.1144 11254 +11256 2 -128.69447104028274 -46.375022150909494 42.1602 0.1144 11255 +11257 2 -129.74138393518552 -45.64459421244803 41.956 0.1144 11256 +11258 2 -130.80895975708188 -44.98780977167614 41.7662 0.1144 11257 +11259 2 -131.90577965090574 -45.025498372875475 41.6122 0.1144 11258 +11260 2 -133.0174169921243 -44.67512043456828 41.491 0.1144 11259 +11261 2 -134.13724155383227 -44.612306424672916 41.3907 0.1144 11260 +11262 2 -135.2595625448224 -44.126480825101766 41.302 0.1144 11261 +11263 2 -136.38258619185217 -44.00237609094957 41.216 0.1144 11262 +11264 2 -137.50557701184488 -43.77550316354446 41.1242 0.1144 11263 +11265 2 -138.6282919272797 -43.31041296722814 41.022 0.1144 11264 +11266 2 -139.75034562592464 -43.355240493834415 40.9094 0.1144 11265 +11267 2 -140.86171567479803 -42.92047234009586 40.7756 0.1144 11266 +11268 2 -141.9500286899747 -42.32810822030657 40.6039 0.1144 11267 +11269 2 -143.04551753800618 -42.35077871503141 40.4118 0.1144 11268 +11270 2 -144.07315332656714 -41.640138370048405 40.2206 0.1144 11269 +11271 2 -145.0280325154995 -41.38546078955729 40.0221 0.1144 11270 +11272 2 -146.08161638402066 -40.74383518246311 39.7692 0.1144 11271 +11273 2 -147.16023454404973 -40.14026465230837 39.5139 0.1144 11272 +11274 2 -148.28342076948417 -40.472378605106506 39.2059 0.1144 11273 +11275 2 -149.1225976740728 -41.00057573349231 38.7598 0.1144 11274 +11276 2 -149.86573159989456 -41.66798261871061 38.1872 0.1144 11275 +11277 2 -150.8241793881055 -42.01100473012274 37.0205 0.1144 11276 +11278 2 -104.18548727270748 -63.66213481553104 38.388 0.1144 11229 +11279 2 -103.42651709476029 -64.62750075576314 37.2999 0.1144 11278 +11280 2 -103.01325529871984 -65.8175486680443 36.8141 0.1144 11279 +11281 2 -102.735103757131 -67.00831262782917 36.346 0.1144 11280 +11282 2 -102.43204937422684 -68.20713784764311 35.9251 0.1144 11281 +11283 2 -102.0916626061498 -69.05622969670374 35.5928 0.1144 11282 +11284 2 -101.58984099303413 -69.63838155436463 35.3542 0.1144 11283 +11285 2 -100.91050720639639 -70.80191274364621 35.1915 0.1144 11284 +11286 2 -100.15532515956886 -71.75851142417288 35.065 0.1144 11285 +11287 2 -99.37257577079448 -72.04173795377355 34.9465 0.1144 11286 +11288 2 -98.52525870170592 -72.92903034622368 34.7206 0.1144 11287 +11289 2 -98.23689061263487 -72.12768988112724 34.2966 0.1144 11288 +11290 2 -97.83200523421677 -71.28139192639044 34.0631 0.1144 11289 +11291 2 -97.14742962264371 -70.61321647961157 33.9688 0.1144 11290 +11292 2 -96.41871921977177 -69.16531075862702 33.094 0.1144 11291 +11293 2 -66.84419973031218 -70.6729625959565 29.9477 0.1144 11173 +11294 2 -67.87680294297623 -70.74152330935242 30.1784 0.1144 11293 +11295 2 -68.9352646331056 -70.74014653963707 30.3173 0.1144 11294 +11296 2 -70.04768773362578 -71.52845843460207 30.4763 0.1144 11295 +11297 2 -71.18689512761118 -71.14343542746313 30.6575 0.1144 11296 +11298 2 -72.32516850183201 -70.83965134267473 30.8829 0.1144 11297 +11299 2 -73.45892915875628 -71.4093408336217 31.1651 0.1144 11298 +11300 2 -74.58688198121169 -71.67199688139351 31.5017 0.1144 11299 +11301 2 -75.71073934371074 -71.80143033962206 31.8825 0.1144 11300 +11302 2 -76.83308356092188 -71.51643076638341 32.2935 0.1144 11301 +11303 2 -77.95350668025438 -72.07696168532594 32.7194 0.1144 11302 +11304 2 -79.06318008729328 -72.00309634769978 33.1531 0.1144 11303 +11305 2 -80.15777075519092 -71.83512088462078 33.5919 0.1144 11304 +11306 2 -81.24522254282725 -72.7406711550316 34.0225 0.1144 11305 +11307 2 -82.34168435183732 -72.58213830896358 34.3974 0.1144 11306 +11308 2 -83.43180374168819 -72.47457875468177 34.659 0.1144 11307 +11309 2 -84.50399620131743 -73.4611047061596 34.8166 0.1144 11308 +11310 2 -85.60548308040354 -73.16668538352796 34.918 0.1144 11309 +11311 2 -86.57203809940309 -72.31164425354987 34.9933 0.1144 11310 +11312 2 -87.07287194186821 -71.4048948017881 35.0521 0.1144 11311 +11313 2 -87.31516900748848 -70.47653680424463 35.1305 0.1144 11312 +11314 2 -87.68998850226221 -69.72904667198267 35.3217 0.1144 11313 +11315 2 -88.1931935269831 -68.54529543420009 35.6563 0.1144 11314 +11316 2 -88.77559035158095 -67.35762342783744 35.9038 0.1144 11315 +11317 2 -89.45267958806241 -66.24323529137084 35.3377 0.1144 11316 +11318 2 -26.983438546923153 -191.14945477995087 24.5742 0.1144 10769 +11319 2 -28.109305692496676 -191.12125051518439 24.4199 0.1144 11318 +11320 2 -29.216985824957973 -190.0133305265078 24.2526 0.1144 11319 +11321 2 -28.80051732055061 -189.13804157389967 23.8267 0.1144 11320 +11322 2 -28.654409369766654 -187.9856270497089 23.4966 0.1144 11321 +11323 2 -28.92026351022703 -186.58063256319176 23.1655 0.1144 11322 +11324 2 -29.469123290226193 -185.07656331965546 22.8208 0.1144 11323 +11325 2 -30.084624204774755 -184.01802308473964 22.4349 0.1144 11324 +11326 2 -30.74292165537517 -183.44258427765743 22.0098 0.1144 11325 +11327 2 -31.503173928636997 -182.52485812459398 21.6051 0.1144 11326 +11328 2 -32.35095139314032 -181.10378231563976 21.2697 0.1144 11327 +11329 2 -33.20981564191307 -179.9074002978158 21.0305 0.1144 11328 +11330 2 -34.095497721409714 -180.1584713057416 20.8641 0.1144 11329 +11331 2 -35.10295451836467 -178.89619858422347 20.7196 0.1144 11330 +11332 2 -36.22076658617796 -177.89216758339512 20.5493 0.1144 11331 +11333 2 -37.3451260970932 -178.82667377822497 20.3342 0.1144 11332 +11334 2 -38.466045854212396 -178.00408126434218 20.0285 0.1144 11333 +11335 2 -39.591599467782956 -178.97831193900947 19.5918 0.1144 11334 +11336 2 -40.71068913227644 -178.35445780571848 19.1163 0.1144 11335 +11337 2 -41.820850268822525 -178.34707585102205 18.7048 0.1144 11336 +11338 2 -42.93198066121687 -179.24260288408232 18.3739 0.1144 11337 +11339 2 -44.046274902849476 -179.129011166621 18.1194 0.1144 11338 +11340 2 -45.16409719271107 -179.35455923483192 17.947 0.1144 11339 +11341 2 -46.28096523149571 -179.646905099308 17.8766 0.1144 11340 +11342 2 -47.331582976277645 -179.82986359416066 17.905 0.1144 11341 +11343 2 -48.318363048562375 -180.4850395547953 17.9786 0.1144 11342 +11344 2 -49.38133125282204 -181.50908184796384 18.0349 0.1144 11343 +11345 2 -50.5067332025728 -180.97570299767585 18.0413 0.1144 11344 +11346 2 -51.6443627738215 -181.17409605269793 17.9948 0.1144 11345 +11347 2 -52.78484305306844 -181.43737552651675 17.9087 0.1144 11346 +11348 2 -53.914937108790966 -180.46545752898936 17.8006 0.1144 11347 +11349 2 -55.04690230562589 -181.23769192243685 17.6715 0.1144 11348 +11350 2 -56.185791047741745 -180.55004048956204 17.5116 0.1144 11349 +11351 2 -57.32308455330305 -179.69216542042142 17.3165 0.1144 11350 +11352 2 -58.44535248594387 -180.58854433210578 17.0859 0.1144 11351 +11353 2 -59.55129362002185 -179.6878101094564 16.8242 0.1144 11352 +11354 2 -60.65161822917945 -178.933026581788 16.5388 0.1144 11353 +11355 2 -61.77822739243258 -179.4303099747447 16.2529 0.1144 11354 +11356 2 -62.91642478385663 -178.87872698804128 15.9792 0.1144 11355 +11357 2 -64.03315837753998 -178.1862390054942 15.6762 0.1144 11356 +11358 2 -65.1553732518314 -179.01273750249192 15.3443 0.1144 11357 +11359 2 -66.28688425641782 -178.3916028060312 15.0151 0.1144 11358 +11360 2 -67.42060726821201 -177.71222192854165 14.6814 0.1144 11359 +11361 2 -68.5554087541362 -178.81515675178562 14.3369 0.1144 11360 +11362 2 -69.68751971339842 -178.6837966803267 13.975 0.1144 11361 +11363 2 -70.71942315882148 -178.73748223726795 13.5886 0.1144 11362 +11364 2 -71.50652608984436 -177.26332100535393 13.2119 0.1144 11363 +11365 2 -72.33893911593037 -175.78934103104905 12.874 0.1144 11364 +11366 2 -73.03812913443306 -174.95994763693147 12.5685 0.1144 11365 +11367 2 -72.8352025603202 -173.37192005063218 12.257 0.1144 11366 +11368 2 -72.61064000924587 -172.0849373609758 11.7869 0.1144 11367 +11369 2 -72.98880235117014 -170.89128377436606 11.4035 0.1144 11368 +11370 2 -73.38219698878261 -170.1359778038049 11.0723 0.1144 11369 +11371 2 -73.73991304675563 -169.21904044909704 10.7853 0.1144 11370 +11372 2 -74.02782652998752 -167.89594113357043 10.5619 0.1144 11371 +11373 2 -74.31471769902186 -166.56901658590095 10.3967 0.1144 11372 +11374 2 -74.6857066171378 -165.10745508784723 10.2426 0.1144 11373 +11375 2 -75.07287277726962 -163.59863282106838 10.073 0.1144 11374 +11376 2 -74.68260602546955 -162.66995909061237 9.5357 0.1144 11375 +11377 2 -29.638801253861388 -189.72312602463074 24.6404 0.1144 11320 +11378 2 -30.704178978043544 -190.9110157957969 25.0866 0.1144 11377 +11379 2 -31.706023967203762 -191.27124286280042 25.2524 0.1144 11378 +11380 2 -32.556551941519984 -191.64265349140078 25.5386 0.1144 11379 +11381 2 -32.89838480319521 -193.11779684763337 25.9656 0.1144 11380 +11382 2 -32.55945241632783 -193.36926763708715 26.2387 0.1144 11381 +11383 2 -31.69031316291094 -194.56275628621262 26.8328 0.1144 11382 +11384 2 -30.69529132574695 -195.48495655065705 27.5148 0.1144 11383 +11385 2 -29.750501324854895 -195.60340017531118 28.3231 0.1144 11384 +11386 2 -29.398183746001706 -196.40962946966164 29.2331 0.1144 11385 +11387 2 -28.89023295341248 -197.6760477427471 30.2896 0.1144 11386 +11388 2 -28.063617148984008 -198.94325119580247 31.4986 0.1144 11387 +11389 2 -27.242406642367015 -199.8045823692675 32.8294 0.1144 11388 +11390 2 -26.223214452055714 -199.16298853914813 33.9982 0.1144 11389 +11391 2 -25.170667707404007 -199.1062239742546 34.9073 0.1144 11390 +11392 2 -24.091831608248768 -199.32723439094764 35.6479 0.1144 11391 +11393 2 -22.998917670332077 -198.63288817670883 36.2779 0.1144 11392 +11394 2 -21.900324939092528 -198.75043486190611 36.9435 0.1144 11393 +11395 2 -21.122279275389545 -199.54170122688117 38.1402 0.1144 11394 +11396 2 -20.759620629370133 -200.81023135695858 39.1891 0.1144 11395 +11397 2 -19.802793008466622 -200.88497153015842 40.1652 0.1144 11396 +11398 2 -18.78390095522255 -201.62313673486983 41.0659 0.1144 11397 +11399 2 -17.796450260431243 -202.2920374235478 41.86 0.1144 11398 +11400 2 -16.767766824178807 -202.64290208024187 42.6034 0.1144 11399 +11401 2 -15.959634766573146 -202.80188711030075 43.507 0.1144 11400 +11402 2 -15.723031907494843 -204.09530970305076 44.4811 0.1144 11401 +11403 2 -15.537212599108074 -205.39030709368964 45.4922 0.1144 11402 +11404 2 -14.836235324280679 -206.7055772495989 46.426 0.1144 11403 +11405 2 -14.122972267424444 -208.01044568775967 47.6176 0.1144 11404 +11406 2 -14.746475011427208 -208.4025413285165 48.68 0.1144 11405 +11407 2 -15.478310925870701 -208.77366939968067 49.6966 0.1144 11406 +11408 2 -15.893094496532427 -209.45788851803627 51.1532 0.1144 11407 +11409 2 -16.219621666747784 -209.34075147649486 53.3649 0.1144 11408 +11410 2 -15.848030273092576 -208.40186272499415 54.9371 0.1144 11409 +11411 2 -15.168619598337187 -208.86810246827946 56.6292 0.1144 11410 +11412 2 -14.72957810743759 -210.12878423597857 58.0698 0.1144 11411 +11413 2 -14.242311449779322 -211.4614026869084 59.3608 0.1144 11412 +11414 2 -13.944410485560752 -212.78476986230868 60.515 0.1144 11413 +11415 2 -13.754129109180212 -214.08346898389598 61.5852 0.1144 11414 +11416 2 -13.071984366947149 -214.47339117538007 62.5716 0.1144 11415 +11417 2 -12.31235807439164 -214.99445315179975 63.2064 0.1144 11416 +11418 2 -11.564220410226312 -216.45826961174328 63.6345 0.1144 11417 +11419 2 -10.630401866851841 -217.23550006418225 63.973 0.1144 11418 +11420 2 -9.663011735331793 -217.38421388414824 64.3552 0.1144 11419 +11421 2 -8.761895437787217 -218.5909010264613 65.0661 0.1144 11420 +11422 2 -33.525947167523526 -194.12965769531547 25.1161 0.1144 11381 +11423 2 -34.57743395284754 -193.62194524810167 24.1423 0.1144 11422 +11424 2 -35.37225860676338 -192.30572538119148 23.6133 0.1144 11423 +11425 2 -35.84009378343984 -190.89399953043207 23.2123 0.1144 11424 +11426 2 -36.30756786270858 -190.21405298704377 22.8147 0.1144 11425 +11427 2 -36.840302766504635 -189.72741095256075 22.4353 0.1144 11426 +11428 2 -37.744450770558274 -188.36016667332646 21.84 0.1144 11427 +11429 2 -22.495449300907936 -221.78395874323883 31.4779 0.1144 10744 +11430 2 -23.58554206118103 -221.32350759805854 31.3491 0.1144 11429 +11431 2 -24.716709790625487 -221.2758942665003 31.2964 0.1144 11430 +11432 2 -25.859005051052492 -221.23511562120495 31.2542 0.1144 11431 +11433 2 -26.96929662579589 -221.5351347882583 31.1951 0.1144 11432 +11434 2 -28.004053472352425 -220.27863841579426 31.0447 0.1144 11433 +11435 2 -29.108009446628245 -220.08116464437023 30.9532 0.1144 11434 +11436 2 -30.23318554328361 -220.83366450489936 30.8538 0.1144 11435 +11437 2 -30.975468831548696 -219.26008025530996 30.4637 0.1144 11436 +11438 2 -31.98913800022845 -218.77826140555374 29.9748 0.1144 11437 +11439 2 -33.03198276926729 -219.02730228762866 29.318 0.1144 11438 +11440 2 -33.928765347427614 -217.7241688729991 28.3864 0.1144 11439 +11441 2 -34.89879294726035 -216.6348507599269 27.5094 0.1144 11440 +11442 2 -35.948041397572425 -217.48691095685777 26.6495 0.1144 11441 +11443 2 -36.91502387827538 -216.60786802021693 25.5596 0.1144 11442 +11444 2 -37.76144937313738 -216.826783370151 24.8412 0.1144 11443 +11445 2 -37.91204569689155 -215.67607124476623 24.1052 0.1144 11444 +11446 2 -38.01225790502865 -214.39822250293403 23.3382 0.1144 11445 +11447 2 -37.04856500034255 -212.58681301414538 22.4069 0.1144 11446 +11448 2 -36.29448764363218 -212.15033409211006 21.743 0.1144 11447 +11449 2 -35.885011156074356 -210.872804886002 21.1375 0.1144 11448 +11450 2 -35.51189469625808 -208.96944664039955 20.5285 0.1144 11449 +11451 2 -35.00351872721693 -207.75251878779807 19.6437 0.1144 11450 +11452 2 -34.31156227653125 -207.3310577882197 18.7267 0.1144 11451 +11453 2 -33.89174782339032 -206.46260638073232 18.1373 0.1144 11452 +11454 2 -33.565199623216074 -205.4762574566218 17.5729 0.1144 11453 +11455 2 -32.93390468415318 -204.58178732359278 16.8791 0.1144 11454 +11456 2 -31.922719420335113 -203.2009522862235 16.2261 0.1144 11455 +11457 2 -30.80708451440904 -203.86789318889137 15.6958 0.1144 11456 +11458 2 -29.69293913678679 -203.33684368481266 15.1581 0.1144 11457 +11459 2 -28.629467789800643 -202.91493221400896 14.5722 0.1144 11458 +11460 2 -27.637552121096178 -203.00934423480413 14.0411 0.1144 11459 +11461 2 -26.915399756452473 -201.97199028289907 13.4914 0.1144 11460 +11462 2 -26.20337043085945 -200.2795191866279 12.8708 0.1144 11461 +11463 2 -26.056088502058103 -199.23202515456273 11.2182 0.1144 11462 +11464 2 -38.48869676032366 -213.3793303046356 22.4912 0.1144 11446 +11465 2 -39.17166430344112 -211.91555517223168 21.8103 0.1144 11464 +11466 2 -39.870278298003726 -210.42269772462606 21.425 0.1144 11465 +11467 2 -40.4347167504161 -209.0500773591158 20.9618 0.1144 11466 +11468 2 -40.57939091923808 -207.80983568731506 20.4691 0.1144 11467 +11469 2 -40.32372686951804 -206.54938835352124 20.0568 0.1144 11468 +11470 2 -40.63783140355666 -205.8089009800899 19.7394 0.1144 11469 +11471 2 -41.58485192645891 -206.22459104678364 19.7239 0.1144 11470 +11472 2 -41.54247854343279 -205.11831456389055 19.9154 0.1144 11471 +11473 2 -41.06519966339229 -203.25609602006074 20.1616 0.1144 11472 +11474 2 -40.52678695544108 -201.59051232590062 20.392 0.1144 11473 +11475 2 -39.76797203462705 -201.15492514330978 20.57 0.1144 11474 +11476 2 -39.01334637883198 -200.70780437280018 20.679 0.1144 11475 +11477 2 -39.17803526203038 -199.33327948659058 20.7539 0.1144 11476 +11478 2 -30.890498537600863 -220.39707603778493 32.2767 0.1144 11436 +11479 2 -31.99047266216199 -220.2572081189901 32.9162 0.1144 11478 +11480 2 -33.062278495790395 -220.19339588556528 33.1834 0.1144 11479 +11481 2 -34.11947870697348 -218.976589871135 33.4572 0.1144 11480 +11482 2 -35.24320362496972 -218.7659813412596 33.7798 0.1144 11481 +11483 2 -36.33702765191539 -219.52381555326645 34.1004 0.1144 11482 +11484 2 -37.41453780745981 -220.53484763456186 34.5072 0.1144 11483 +11485 2 -38.50601497364836 -220.26823970165321 35.3377 0.1144 11484 +11486 2 11.44090617480336 -340.19000424949377 44.2814 0.1144 10304 +11487 2 12.415512376476073 -339.8386055076741 44.3299 0.1144 11486 +11488 2 13.389096263951231 -339.79854460493414 44.401 0.1144 11487 +11489 2 14.367850291393083 -338.929850109671 44.5701 0.1144 11488 +11490 2 15.408042468695541 -338.15772718726856 44.8658 0.1144 11489 +11491 2 16.49357315845321 -337.2890636252831 45.2194 0.1144 11490 +11492 2 17.55922058402703 -336.9302495102623 45.6257 0.1144 11491 +11493 2 18.535675002364755 -337.00201491598114 45.9883 0.1144 11492 +11494 2 19.45506642947587 -336.237895567224 46.3369 0.1144 11493 +11495 2 20.505699587477018 -335.2672944677351 46.6819 0.1144 11494 +11496 2 21.58766940196862 -334.5817068318307 46.9848 0.1144 11495 +11497 2 22.506879422120882 -333.62835443333995 47.2528 0.1144 11496 +11498 2 23.175021425895906 -333.05862708624716 47.525 0.1144 11497 +11499 2 23.499428091029493 -332.0569746057849 47.784 0.1144 11498 +11500 2 23.355505842476788 -330.6955485792244 47.9755 0.1144 11499 +11501 2 22.932928395050794 -329.18800992931403 48.0981 0.1144 11500 +11502 2 22.447184802955107 -327.66159832935153 48.1729 0.1144 11501 +11503 2 22.03338221905814 -326.1546283124119 48.2101 0.1144 11502 +11504 2 21.891636741629753 -324.77143934566914 48.2188 0.1144 11503 +11505 2 21.971978410809747 -323.5270139308777 48.2132 0.1144 11504 +11506 2 21.92058721623571 -322.19272071080127 48.204 0.1144 11505 +11507 2 21.760698858079884 -320.7884337590778 48.1953 0.1144 11506 +11508 2 21.71202212090359 -319.46786554791134 48.1698 0.1144 11507 +11509 2 21.71644464927867 -318.15152652806574 48.1242 0.1144 11508 +11510 2 21.81999701657378 -316.9246085613336 48.0931 0.1144 11509 +11511 2 22.15496449349905 -315.91748165259605 48.1043 0.1144 11510 +11512 2 22.258117425719817 -314.7064836422726 48.1816 0.1144 11511 +11513 2 22.01096746924417 -313.27358725785086 48.347 0.1144 11512 +11514 2 21.787694938303147 -311.8773733079359 48.5666 0.1144 11513 +11515 2 21.426955691337476 -310.708061766388 48.8863 0.1144 11514 +11516 2 21.09926575946328 -310.06688718375284 49.2786 0.1144 11515 +11517 2 21.34317319591139 -308.3191690172822 49.6863 0.1144 11516 +11518 2 21.728716098002188 -306.942251707903 50.1315 0.1144 11517 +11519 2 21.9060053243483 -305.80870724991183 50.6573 0.1144 11518 +11520 2 22.25202745104241 -304.836891208384 51.1795 0.1144 11519 +11521 2 22.621980061620434 -303.901842285196 51.8006 0.1144 11520 +11522 2 22.64053348710634 -302.659654613861 52.4854 0.1144 11521 +11523 2 22.290763697059717 -301.2159108493777 53.1437 0.1144 11522 +11524 2 22.242660574777034 -299.9074351130109 53.6637 0.1144 11523 +11525 2 22.273642851583986 -298.64246230490767 54.0246 0.1144 11524 +11526 2 22.06743231819378 -297.21605082028464 54.2595 0.1144 11525 +11527 2 21.97981393114398 -295.8631061905762 54.39 0.1144 11526 +11528 2 21.906360984751913 -294.5206624628083 54.453 0.1144 11527 +11529 2 21.87741143829453 -293.2032407019956 54.486 0.1144 11528 +11530 2 22.020845678394025 -292.01719493096584 54.5168 0.1144 11529 +11531 2 22.447995423526365 -291.11376375376335 54.56 0.1144 11530 +11532 2 23.067371472686247 -290.45161883472593 54.621 0.1144 11531 +11533 2 23.753278130051854 -289.6829355799919 54.7075 0.1144 11532 +11534 2 24.25003093661215 -287.5452595444555 54.8237 0.1144 11533 +11535 2 25.09984222674268 -286.8757137491959 54.9716 0.1144 11534 +11536 2 25.515022521658565 -286.5200740966733 53.9596 0.1144 11535 +11537 2 25.691483152402085 -285.2062864910378 53.496 0.1144 11536 +11538 2 25.603194936349666 -283.98208626257514 53.237 0.1144 11537 +11539 2 25.561818947617752 -282.7036988173778 52.8797 0.1144 11538 +11540 2 25.491673612292686 -281.44718390599496 52.4454 0.1144 11539 +11541 2 25.336967107899397 -280.0755880916463 52.0209 0.1144 11540 +11542 2 25.40465948859638 -278.875887339539 51.613 0.1144 11541 +11543 2 25.582183180250624 -277.48380662248337 51.0908 0.1144 11542 +11544 2 25.33366453285241 -276.37172843499826 50.4795 0.1144 11543 +11545 2 25.19634037670454 -275.06430735757755 49.8358 0.1144 11544 +11546 2 25.183175532891482 -273.81156918165624 49.0571 0.1144 11545 +11547 2 25.75375079980057 -272.3778416951135 48.2283 0.1144 11546 +11548 2 26.64600714707632 -271.78681672568865 47.5269 0.1144 11547 +11549 2 27.314502328582904 -270.6562047454125 46.8902 0.1144 11548 +11550 2 28.168966996255577 -270.4138062877438 46.3243 0.1144 11549 +11551 2 29.219062467983264 -269.45394799679787 45.8265 0.1144 11550 +11552 2 30.24346994264144 -269.18352722378745 45.3522 0.1144 11551 +11553 2 30.73858366435094 -267.700816423456 44.9422 0.1144 11552 +11554 2 31.472440276453852 -266.47178415354654 44.5141 0.1144 11553 +11555 2 32.55227406653431 -266.83845854272545 44.1062 0.1144 11554 +11556 2 33.47313479063699 -266.20583718623965 43.633 0.1144 11555 +11557 2 34.021221838334995 -264.7555466495124 43.083 0.1144 11556 +11558 2 34.72229883673808 -263.65768879617656 42.4074 0.1144 11557 +11559 2 35.38567073346111 -263.1233408573601 41.69 0.1144 11558 +11560 2 35.9087635438278 -261.879359469 41.0903 0.1144 11559 +11561 2 36.62219479582842 -260.1830122748721 40.6949 0.1144 11560 +11562 2 37.67892290350785 -260.32485566069016 40.3572 0.1144 11561 +11563 2 38.70631522949199 -260.52503539036417 40.0456 0.1144 11562 +11564 2 39.62031297789123 -258.7570762116833 39.7141 0.1144 11563 +11565 2 40.56783646554133 -258.4812466916407 39.3364 0.1144 11564 +11566 2 41.6313837953242 -257.60757318583376 38.9228 0.1144 11565 +11567 2 42.69253322428423 -257.5172266706171 38.4768 0.1144 11566 +11568 2 43.765655986569726 -257.63861445338455 37.8577 0.1144 11567 +11569 2 44.78353725572647 -256.3042426593345 36.8553 0.1144 11568 +11570 2 45.819554888692736 -256.4028924448306 36.1785 0.1144 11569 +11571 2 46.820260834145486 -255.4088904043773 35.4637 0.1144 11570 +11572 2 47.82626975483063 -255.11782310368756 34.746 0.1144 11571 +11573 2 48.86251944405849 -255.132283022911 34.0466 0.1144 11572 +11574 2 49.799438366316835 -254.3086662370264 33.3194 0.1144 11573 +11575 2 50.639461688773864 -253.64107051632396 32.5508 0.1144 11574 +11576 2 51.4125105218142 -252.41487540680032 31.7562 0.1144 11575 +11577 2 52.015291787529534 -250.9625869812383 30.9548 0.1144 11576 +11578 2 52.48282103756314 -250.17606829300473 30.1644 0.1144 11577 +11579 2 52.99483558117697 -249.46283798595113 29.3642 0.1144 11578 +11580 2 53.76441562750384 -248.98313239623008 28.4945 0.1144 11579 +11581 2 54.743831972720116 -248.0500250717484 27.6159 0.1144 11580 +11582 2 55.74173275729581 -247.60792095915832 26.8501 0.1144 11581 +11583 2 56.7027228236837 -247.23200837334048 26.1706 0.1144 11582 +11584 2 57.66571376486668 -245.7924608446108 25.5384 0.1144 11583 +11585 2 58.63632511265203 -245.83827565514366 24.9227 0.1144 11584 +11586 2 59.44258243583184 -245.59833672233037 24.2976 0.1144 11585 +11587 2 59.636426107357295 -244.57346499926803 23.6392 0.1144 11586 +11588 2 59.787546816581155 -243.30636729833597 22.9995 0.1144 11587 +11589 2 60.533363065300236 -241.32287466651184 22.4425 0.1144 11588 +11590 2 61.431408732242446 -241.17480440819998 21.9847 0.1144 11589 +11591 2 62.36782451177433 -240.0884522604812 21.5627 0.1144 11590 +11592 2 63.386083285868295 -239.74868580975644 21.1036 0.1144 11591 +11593 2 64.48083071976741 -239.9182050595016 20.6009 0.1144 11592 +11594 2 65.56265616888297 -239.90556522992992 20.176 0.1144 11593 +11595 2 66.66142008503294 -240.2915062209612 19.8305 0.1144 11594 +11596 2 67.79295881447476 -239.90235658982306 19.4987 0.1144 11595 +11597 2 68.92683789973385 -239.80434396351652 19.1299 0.1144 11596 +11598 2 70.04209939661612 -240.39756208168694 18.6643 0.1144 11597 +11599 2 71.15311105890201 -240.08090541777284 18.0742 0.1144 11598 +11600 2 72.20516026044606 -240.15330271625965 17.4121 0.1144 11599 +11601 2 73.25088856452022 -240.38243013679136 16.7456 0.1144 11600 +11602 2 74.34811230306357 -241.29158549652973 16.1314 0.1144 11601 +11603 2 75.46854573343364 -241.1297006075651 15.5771 0.1144 11602 +11604 2 76.52248168440879 -240.5566348561897 14.9828 0.1144 11603 +11605 2 77.38363584050224 -240.37386100110564 14.3691 0.1144 11604 +11606 2 78.01536545072297 -238.39182112628026 13.8006 0.1144 11605 +11607 2 78.3666515224463 -237.00083406387114 13.2731 0.1144 11606 +11608 2 78.29427705018419 -235.7326105028905 12.7847 0.1144 11607 +11609 2 78.2499193117094 -234.46586846386688 12.3901 0.1144 11608 +11610 2 78.36754641618293 -233.31065668152317 12.1243 0.1144 11609 +11611 2 78.50522898174599 -232.1631685692455 11.9688 0.1144 11610 +11612 2 78.26093414291371 -230.7980186491824 11.8519 0.1144 11611 +11613 2 78.25297166826405 -229.55104203374418 11.826 0.1144 11612 +11614 2 78.40535425917523 -228.41691024654244 11.8796 0.1144 11613 +11615 2 78.69817410520236 -227.40678246196836 11.9539 0.1144 11614 +11616 2 79.7395221364828 -228.12318818397972 12.2464 0.1144 11615 +11617 2 80.8523361665389 -228.156183708023 12.7485 0.1144 11616 +11618 2 81.86057431315037 -228.00789041852624 14.023 0.1144 11617 +11619 2 24.96413842785894 -286.45161085665444 55.0861 0.1144 11535 +11620 2 24.050048489939726 -286.2179017631275 55.4772 0.1144 11619 +11621 2 22.990930685202116 -286.9082729844272 55.9488 0.1144 11620 +11622 2 21.921760722028864 -286.57950664477204 56.3872 0.1144 11621 +11623 2 21.77451004523465 -285.59819725999097 57.0419 0.1144 11622 +11624 2 21.804194103286136 -284.339922585484 57.4244 0.1144 11623 +11625 2 21.832673747644748 -283.07436743532463 57.7858 0.1144 11624 +11626 2 21.971649021333604 -281.89715147269203 58.121 0.1144 11625 +11627 2 22.462767889155714 -281.1630712877837 58.4175 0.1144 11626 +11628 2 23.405153371339622 -281.1134001909399 58.6813 0.1144 11627 +11629 2 24.48302841841131 -279.58214047201216 58.956 0.1144 11628 +11630 2 25.552684815007908 -280.4167926225028 59.3432 0.1144 11629 +11631 2 26.408252970845837 -279.4784755608555 59.7761 0.1144 11630 +11632 2 26.781692882939694 -278.5894976955651 60.1546 0.1144 11631 +11633 2 26.942762735483612 -277.3126679619193 60.5399 0.1144 11632 +11634 2 27.070427686158013 -276.043389954981 60.9857 0.1144 11633 +11635 2 27.38268071199184 -274.75497870792015 61.4281 0.1144 11634 +11636 2 27.946713637980636 -274.0130101268363 61.8187 0.1144 11635 +11637 2 28.32571150601602 -273.0919677683717 62.2009 0.1144 11636 +11638 2 28.271870737342923 -271.7996445333187 62.5918 0.1144 11637 +11639 2 28.15699063835818 -270.45013283155225 63.0356 0.1144 11638 +11640 2 28.50493386293094 -269.4260057923904 63.3956 0.1144 11639 +11641 2 29.001507671578963 -267.7406431603558 63.6544 0.1144 11640 +11642 2 29.501606426872968 -266.62420018123936 63.8352 0.1144 11641 +11643 2 29.932134947776035 -265.5369863083788 63.9517 0.1144 11642 +11644 2 30.176080029354225 -264.1833594865194 64.0234 0.1144 11643 +11645 2 30.286268826720743 -262.8473255459579 64.0718 0.1144 11644 +11646 2 30.34112852906226 -261.5322669879121 64.1242 0.1144 11645 +11647 2 30.49560028920142 -260.01761171982594 64.195 0.1144 11646 +11648 2 30.698370789849434 -258.52920098281487 64.2891 0.1144 11647 +11649 2 30.854408061089217 -257.07678125391675 64.4479 0.1144 11648 +11650 2 30.913189736104457 -255.71002031261241 64.65 0.1144 11649 +11651 2 31.121353915464297 -254.5500053841974 64.9177 0.1144 11650 +11652 2 31.284744300961194 -253.40927876966964 65.2484 0.1144 11651 +11653 2 31.385849503203772 -252.2179484036165 65.5956 0.1144 11652 +11654 2 31.47273379739275 -251.01187216842925 65.884 0.1144 11653 +11655 2 31.427350643137316 -249.7140144632317 66.1139 0.1144 11654 +11656 2 31.31340146233414 -248.3693010679363 66.2984 0.1144 11655 +11657 2 31.137886884045457 -246.99354117460285 66.4334 0.1144 11656 +11658 2 30.815719672029118 -245.5590100132559 66.5098 0.1144 11657 +11659 2 30.64430606432643 -244.24984989943337 66.5277 0.1144 11658 +11660 2 30.572366263222236 -242.98745418565795 66.5008 0.1144 11659 +11661 2 30.51579631646885 -241.7044238098635 66.4404 0.1144 11660 +11662 2 30.459854759468215 -240.38053652453766 66.3558 0.1144 11661 +11663 2 30.478754561679082 -239.05799473364038 66.2614 0.1144 11662 +11664 2 30.767164705525303 -237.9770373496762 66.176 0.1144 11663 +11665 2 31.142857371540188 -237.03297085111217 66.1058 0.1144 11664 +11666 2 31.5621662729082 -236.1411038839576 66.0167 0.1144 11665 +11667 2 31.884475251297303 -235.14298052667885 65.91 0.1144 11666 +11668 2 31.76295562065799 -233.8082818855334 65.8249 0.1144 11667 +11669 2 31.68754323872065 -232.48578472129105 65.7695 0.1144 11668 +11670 2 32.079901568795194 -231.57414205805264 65.7364 0.1144 11669 +11671 2 32.25776612654482 -230.38912774622503 65.7437 0.1144 11670 +11672 2 32.20837580676583 -229.11047968049436 65.7952 0.1144 11671 +11673 2 32.100795763688936 -227.81178411863084 65.8454 0.1144 11672 +11674 2 31.95663835729158 -226.45731605181402 65.8462 0.1144 11673 +11675 2 31.78242199775829 -225.0870083731352 65.812 0.1144 11674 +11676 2 31.518961964001093 -223.64572006626148 65.7807 0.1144 11675 +11677 2 31.2458837504296 -222.23201788515215 65.7597 0.1144 11676 +11678 2 30.97231470576773 -220.82198068442432 65.7549 0.1144 11677 +11679 2 30.645024208967826 -219.3876244920993 65.7742 0.1144 11678 +11680 2 30.280798353022902 -217.93877326448813 65.8204 0.1144 11679 +11681 2 29.911140480699444 -216.49776815486092 65.8882 0.1144 11680 +11682 2 29.381701568870824 -215.6252476292351 66.0162 0.1144 11681 +11683 2 29.00326883301834 -215.00624312523166 66.1898 0.1144 11682 +11684 2 29.035400056122327 -213.64523822016633 66.3642 0.1144 11683 +11685 2 29.103491179357007 -212.16090914013847 66.5518 0.1144 11684 +11686 2 29.210389495385755 -210.59931635762777 66.7965 0.1144 11685 +11687 2 29.320484487689782 -209.13926279968763 67.0832 0.1144 11686 +11688 2 29.304554537176216 -207.85095183496895 67.4016 0.1144 11687 +11689 2 28.86135180788672 -207.32208787531619 67.7533 0.1144 11688 +11690 2 28.40657146323764 -206.47175778922374 68.122 0.1144 11689 +11691 2 27.95179111858853 -205.019007566711 68.4866 0.1144 11690 +11692 2 27.588392171399377 -203.8284220562109 69.0654 0.1144 11691 +11693 2 27.151109187995658 -202.60638231083436 69.2933 0.1144 11692 +11694 2 26.78403914097038 -201.46040683236362 69.3661 0.1144 11693 +11695 2 26.568519159360832 -200.23781605166545 69.414 0.1144 11694 +11696 2 26.44209668110004 -198.90175513991562 69.4462 0.1144 11695 +11697 2 26.326943086603933 -197.5579369150047 69.473 0.1144 11696 +11698 2 26.21878701958697 -196.21619077968302 69.5106 0.1144 11697 +11699 2 26.164358607874192 -194.91231050604222 69.5904 0.1144 11698 +11700 2 26.169985549942183 -193.65445299399852 69.7393 0.1144 11699 +11701 2 26.066327479539055 -192.32612208302024 69.977 0.1144 11700 +11702 2 25.69738939298442 -190.8916802414622 70.3329 0.1144 11701 +11703 2 25.233792745556528 -189.87741566853833 70.7762 0.1144 11702 +11704 2 24.808718868848388 -189.15937327056292 71.246 0.1144 11703 +11705 2 24.40989531644054 -187.7948093987786 71.6808 0.1144 11704 +11706 2 24.340631635067396 -186.500430926268 71.8124 0.1144 11705 +11707 2 24.50357262872373 -185.37223438020905 71.6086 0.1144 11706 +11708 2 24.716410701026618 -184.21314769661808 71.444 0.1144 11707 +11709 2 24.947879383564043 -182.60567736934996 71.4017 0.1144 11708 +11710 2 25.033253634048194 -181.17483475004303 71.4498 0.1144 11709 +11711 2 24.827225200153478 -180.11402022763372 71.5436 0.1144 11710 +11712 2 24.499573605945898 -179.23610949028534 71.6542 0.1144 11711 +11713 2 24.169832842510417 -177.81209354307015 71.7514 0.1144 11712 +11714 2 23.844140683848167 -176.39176603293714 71.8127 0.1144 11713 +11715 2 23.522419762089314 -174.972590163201 71.8463 0.1144 11714 +11716 2 23.219136424506658 -173.5597656732499 71.8704 0.1144 11715 +11717 2 23.002679321549394 -172.22257828916946 71.9015 0.1144 11716 +11718 2 22.898263127710763 -170.9374541398835 71.9471 0.1144 11717 +11719 2 22.83149897720287 -169.63807476836794 72.0037 0.1144 11718 +11720 2 22.764682460882327 -168.35355396393962 72.0642 0.1144 11719 +11721 2 22.672472272156114 -167.03986300704193 72.1185 0.1144 11720 +11722 2 22.49789481521519 -165.75038253530687 72.1543 0.1144 11721 +11723 2 22.24945215061375 -164.46251331988017 72.1619 0.1144 11722 +11724 2 21.988003918214616 -163.17009158391326 72.1378 0.1144 11723 +11725 2 21.774443372150415 -161.82862903435273 72.0726 0.1144 11724 +11726 2 21.622180931226566 -160.47620487812355 71.9597 0.1144 11725 +11727 2 21.49134875078481 -159.1358114313558 71.8102 0.1144 11726 +11728 2 21.40020541708904 -157.81935421967975 71.6467 0.1144 11727 +11729 2 21.44953929798963 -156.5969200835037 71.4986 0.1144 11728 +11730 2 21.6408588153775 -155.46915163191488 71.388 0.1144 11729 +11731 2 21.874915323213088 -154.27247917931837 71.318 0.1144 11730 +11732 2 22.10798234388821 -153.08961143129483 71.2816 0.1144 11731 +11733 2 22.34104936456326 -151.91774023949452 71.2701 0.1144 11732 +11734 2 22.5255503523844 -150.80818051625857 71.2746 0.1144 11733 +11735 2 22.535727656878976 -149.5743334733291 71.2894 0.1144 11734 +11736 2 22.37134440369246 -148.2297081228643 71.311 0.1144 11735 +11737 2 22.158230147885718 -146.85956138400644 71.3367 0.1144 11736 +11738 2 21.839356518790296 -145.48060050260628 71.3745 0.1144 11737 +11739 2 21.236243708849628 -144.20413649117785 71.4454 0.1144 11738 +11740 2 20.433764720309853 -143.61608177728704 71.552 0.1144 11739 +11741 2 19.934138393120804 -143.0430358423447 71.6313 0.1144 11740 +11742 2 19.849014026306605 -141.74783193350228 71.6204 0.1144 11741 +11743 2 19.37488059251899 -140.45714315751718 71.5064 0.1144 11742 +11744 2 18.446058701828576 -139.24785604798691 71.3118 0.1144 11743 +11745 2 17.39580055072878 -138.06363462286328 71.0598 0.1144 11744 +11746 2 16.285415170922846 -138.7445173362998 70.7644 0.1144 11745 +11747 2 15.834907283543913 -137.53627224577912 70.5757 0.1144 11746 +11748 2 15.70153964361677 -136.21940078481958 70.572 0.1144 11747 +11749 2 15.58536373492305 -134.90574772134738 70.7036 0.1144 11748 +11750 2 15.46838043856431 -133.58294963778013 70.9377 0.1144 11749 +11751 2 15.357383282050051 -132.27587514244456 71.2449 0.1144 11750 +11752 2 15.447304793377668 -131.06807020574743 71.6038 0.1144 11751 +11753 2 15.588454429144349 -129.90038187349927 71.9804 0.1144 11752 +11754 2 15.73282027996197 -128.7415289998732 72.3643 0.1144 11753 +11755 2 15.877676961869867 -127.60944375919561 72.7518 0.1144 11754 +11756 2 16.02204281268746 -126.48171311221358 73.1402 0.1144 11755 +11757 2 16.549412489969455 -124.55004173652358 73.519 0.1144 11756 +11758 2 17.37694710174955 -123.67377670265952 73.8693 0.1144 11757 +11759 2 18.239017455341866 -123.42912933230473 74.2011 0.1144 11758 +11760 2 18.615785493903616 -122.49856118002702 74.5679 0.1144 11759 +11761 2 18.8237706753512 -121.41836367477421 74.9636 0.1144 11760 +11762 2 19.020803529608855 -120.33672875661102 75.3808 0.1144 11761 +11763 2 19.21640060644856 -118.6957950943377 75.8111 0.1144 11762 +11764 2 19.218825361611636 -117.29584357410717 76.2082 0.1144 11763 +11765 2 19.12875980950929 -116.17231156201893 76.5607 0.1144 11764 +11766 2 19.03049231623484 -115.11651409693702 76.8776 0.1144 11765 +11767 2 18.931648799020337 -114.05823769780507 77.1758 0.1144 11766 +11768 2 18.833742403153593 -112.99629383365033 77.4707 0.1144 11767 +11769 2 18.736497224076743 -111.92971292399803 77.7734 0.1144 11768 +11770 2 18.26790702554794 -110.90931286780244 78.1676 0.1144 11769 +11771 2 17.678786168982327 -109.65702344981909 78.6478 0.1144 11770 +11772 2 17.088188095749047 -108.41909926428173 79.1823 0.1144 11771 +11773 2 16.55898124018202 -107.18106102411873 79.6984 0.1144 11772 +11774 2 16.173375080521225 -105.95598791957735 80.1069 0.1144 11773 +11775 2 15.786434773484842 -104.73145779945344 80.4269 0.1144 11774 +11776 2 15.413120007449947 -105.16940412815266 80.6669 0.1144 11775 +11777 2 14.297447065630848 -105.14252882904361 81.0723 0.1144 11776 +11778 2 13.190192708026132 -105.54579186869668 81.4654 0.1144 11777 +11779 2 12.231430576623325 -104.6785072754006 81.7289 0.1144 11778 +11780 2 11.27468575720809 -103.56258509155718 81.755 0.1144 11779 +11781 2 10.277496045221199 -102.82785757225464 81.5643 0.1144 11780 +11782 2 9.32400336947714 -102.83196337315329 81.2596 0.1144 11781 +11783 2 8.37682436406351 -101.72574162149765 80.9354 0.1144 11782 +11784 2 7.421766177218899 -100.64471859920323 80.6378 0.1144 11783 +11785 2 6.468761230982011 -100.70630351859803 80.3891 0.1144 11784 +11786 2 5.540101208474738 -99.82312916610366 80.1923 0.1144 11785 +11787 2 4.635541457710644 -98.68406483927238 80.0316 0.1144 11786 +11788 2 3.742650025785508 -97.54704595031502 79.8885 0.1144 11787 +11789 2 2.8923785410464404 -97.74402843021747 79.7555 0.1144 11788 +11790 2 2.200042288194112 -96.51361489627317 79.6342 0.1144 11789 +11791 2 1.5781777465489029 -95.2772746313042 79.5298 0.1144 11790 +11792 2 0.9563460319407397 -94.04554700380068 79.441 0.1144 11791 +11793 2 0.27199128309834464 -92.85097235259948 79.3722 0.1144 11792 +11794 2 -0.7145493226639985 -93.12029115216399 79.3498 0.1144 11793 +11795 2 -1.812394632268564 -92.27920626765861 79.3727 0.1144 11794 +11796 2 -2.919716768905232 -91.46685130729236 79.4167 0.1144 11795 +11797 2 -4.013549402356716 -91.90010626050518 79.4441 0.1144 11796 +11798 2 -5.046851672604305 -90.92988368585777 79.3834 0.1144 11797 +11799 2 -5.981640164363569 -89.86513029229157 79.2042 0.1144 11798 +11800 2 -6.781186667390102 -89.26951894713666 78.9018 0.1144 11799 +11801 2 -7.518678326913971 -88.77106387504024 78.5406 0.1144 11800 +11802 2 -8.20317373600193 -87.57417033815472 78.2057 0.1144 11801 +11803 2 -8.857781270190173 -86.37271068244837 77.9878 0.1144 11802 +11804 2 -9.522591620345565 -85.18010849563645 78.0094 0.1144 11803 +11805 2 -10.191946129761334 -84.22509536884641 78.2723 0.1144 11804 +11806 2 -10.814298400913799 -83.9694822431692 78.512 0.1144 11805 +11807 2 -11.344853432002424 -82.7770835650769 78.3835 0.1144 11806 +11808 2 -11.909176871414871 -81.56994358025719 78.0878 0.1144 11807 +11809 2 -12.1874433370144 -81.00925567327135 76.7903 0.1144 11808 +11810 2 -12.777139524983482 -80.6125064576585 76.0956 0.1144 11809 +11811 2 -13.476957933239078 -79.79207954583386 75.7686 0.1144 11810 +11812 2 -14.348865394939565 -78.72256493545753 75.3122 0.1144 11811 +11813 2 -15.249213258011054 -77.87934951769172 74.7642 0.1144 11812 +11814 2 -15.436061598319554 -77.93794028454856 73.5672 0.1144 11813 +11815 2 -16.386278815182095 -78.27681215842821 72.7692 0.1144 11814 +11816 2 -17.321953778986312 -77.28500631554526 72.1291 0.1144 11815 +11817 2 -18.03988252502083 -76.183500512641 71.5198 0.1144 11816 +11818 2 -18.783827822584158 -75.06584404328004 71.136 0.1144 11817 +11819 2 -19.616373683935905 -74.75024392618882 70.9727 0.1144 11818 +11820 2 -20.451953660843316 -73.90409346116232 70.8126 0.1144 11819 +11821 2 -21.297457447576846 -72.81300352897803 70.6586 0.1144 11820 +11822 2 -22.147103644146142 -71.72636582092707 70.5709 0.1144 11821 +11823 2 -22.781572933441566 -70.94027874412852 70.5552 0.1144 11822 +11824 2 -23.182499683223455 -70.20760750659495 70.5684 0.1144 11823 +11825 2 -23.521282602533176 -69.16692797193714 70.5914 0.1144 11824 +11826 2 -23.62774893539654 -68.028754642347 70.6154 0.1144 11825 +11827 2 -23.258105056413456 -66.7539469529361 70.6292 0.1144 11826 +11828 2 -22.671972040939977 -65.46679485352416 70.6266 0.1144 11827 +11829 2 -22.094523185516152 -64.72176175578107 70.6163 0.1144 11828 +11830 2 -21.391371738567756 -64.10846468251725 70.576 0.1144 11829 +11831 2 -20.54427800741803 -63.618679085326235 70.52 0.1144 11830 +11832 2 -19.692816013337023 -62.35131016768461 70.4894 0.1144 11831 +11833 2 -18.821030573284844 -61.93351674796055 70.5029 0.1144 11832 +11834 2 -17.933067198680163 -61.54649894246348 70.565 0.1144 11833 +11835 2 -17.213109427426417 -60.479915033815224 70.7 0.1144 11834 +11836 2 -16.708606480581153 -59.286253371528765 70.9442 0.1144 11835 +11837 2 -16.28429782494601 -58.40266700181311 71.2802 0.1144 11836 +11838 2 -15.867306354947914 -57.5168637976344 71.6652 0.1144 11837 +11839 2 -15.426960425005973 -56.65006758136051 72.1081 0.1144 11838 +11840 2 -14.966297252258926 -55.789784388492926 72.5491 0.1144 11839 +11841 2 -14.501888695703911 -54.53975519182225 72.7784 0.1144 11840 +11842 2 -14.034104464961274 -53.287579524385244 72.7577 0.1144 11841 +11843 2 -13.183755488557296 -52.852299786744474 72.7115 0.1144 11842 +11844 2 -12.191581737560739 -51.87717474844282 72.7364 0.1144 11843 +11845 2 -11.191966577874183 -51.65678940041836 72.7779 0.1144 11844 +11846 2 -10.243485453475444 -51.3227510263789 72.8213 0.1144 11845 +11847 2 -9.599996820936212 -50.07753005793267 72.7871 0.1144 11846 +11848 2 -8.970189001130706 -49.16885956118401 72.676 0.1144 11847 +11849 2 -7.837697435348247 -49.35505249226354 72.5656 0.1144 11848 +11850 2 -6.705594378077166 -49.27360232114963 72.3582 0.1144 11849 +11851 2 -12.27442935023501 -81.58712183926946 77.8571 0.1144 11808 +11852 2 -13.39153185432778 -82.37513744483816 77.7784 0.1144 11851 +11853 2 -14.507462771764693 -82.11903316446944 77.8484 0.1144 11852 +11854 2 -15.618595573205539 -82.26464315048432 78.0724 0.1144 11853 +11855 2 -16.700909355375586 -82.87807992756403 78.3751 0.1144 11854 +11856 2 -17.71154392874749 -82.9257137831707 78.7097 0.1144 11855 +11857 2 -18.62474590858119 -83.33747660537826 79.3092 0.1144 11856 +11858 2 -19.552725690080905 -84.40542087449425 80.204 0.1144 11857 +11859 2 -20.596341195964982 -83.93473603435598 81.03 0.1144 11858 +11860 2 -21.619989641866766 -83.08027774265933 81.7578 0.1144 11859 +11861 2 -22.70567169367058 -83.59098241937126 82.294 0.1144 11860 +11862 2 -23.805224470705298 -83.32321493638422 82.5255 0.1144 11861 +11863 2 -24.885307730865208 -83.20652753067289 82.4631 0.1144 11862 +11864 2 -25.999327168924452 -83.98038475284422 82.1246 0.1144 11863 +11865 2 -27.114482247334394 -83.37949044105437 81.5646 0.1144 11864 +11866 2 -28.21449711860876 -82.89766315275095 80.8808 0.1144 11865 +11867 2 -29.312114089060202 -83.28708404723345 80.1634 0.1144 11866 +11868 2 -30.41110664613703 -82.6588464122242 79.473 0.1144 11867 +11869 2 -31.531622167773804 -82.4321039678961 78.9141 0.1144 11868 +11870 2 -32.63878373231125 -83.06194835812461 78.6246 0.1144 11869 +11871 2 -33.77740448954535 -82.50309775282156 78.552 0.1144 11870 +11872 2 -34.91656672717255 -82.48229046331475 78.6341 0.1144 11871 +11873 2 -36.053821895067216 -82.45946631552637 78.8166 0.1144 11872 +11874 2 -37.190533866058786 -81.86344309683852 79.0496 0.1144 11873 +11875 2 -38.32613833000303 -82.13813821777909 79.2876 0.1144 11874 +11876 2 -39.44044017185308 -81.68429542947453 79.4906 0.1144 11875 +11877 2 -40.53903740172697 -80.90043890157536 79.6522 0.1144 11876 +11878 2 -41.6508568424409 -81.11657383859702 79.7647 0.1144 11877 +11879 2 -42.789404718461384 -80.68426454734396 79.8073 0.1144 11878 +11880 2 -43.929679973765545 -81.24278355208762 79.767 0.1144 11879 +11881 2 -45.07093068808415 -80.66525599523648 79.6267 0.1144 11880 +11882 2 -46.2083477241619 -80.1050429946998 79.4192 0.1144 11881 +11883 2 -47.33377950604091 -80.54278327912442 79.2392 0.1144 11882 +11884 2 -48.458585999750255 -79.86486235114917 79.0922 0.1144 11883 +11885 2 -49.58308376186463 -79.32718798559434 78.9768 0.1144 11884 +11886 2 -50.70922130136641 -79.6153236753733 78.8836 0.1144 11885 +11887 2 -51.83559330617635 -78.92734974932199 78.797 0.1144 11886 +11888 2 -52.96821971980114 -78.69092901265402 78.6974 0.1144 11887 +11889 2 -54.10680113308028 -78.99575104990686 78.5641 0.1144 11888 +11890 2 -55.243992931588 -78.6115820395048 78.3866 0.1144 11889 +11891 2 -56.38134459768028 -78.8617695318713 78.0752 0.1144 11890 +11892 2 -57.50507291903321 -78.87205240596437 77.6521 0.1144 11891 +11893 2 -58.546289819579755 -78.85022067958619 77.2355 0.1144 11892 +11894 2 -58.92426646869518 -78.96895153001903 77.532 0.1144 11893 +11895 2 -59.812462592098086 -80.37267899246925 76.9997 0.1144 11894 +11896 2 -60.71705639467885 -80.64689996158697 76.6816 0.1144 11895 +11897 2 -61.441688058875556 -81.19164370370207 76.4439 0.1144 11896 +11898 2 -62.083919911909035 -81.83547179932276 76.3056 0.1144 11897 +11899 2 -62.72491452421255 -83.6322820338681 76.2843 0.1144 11898 +11900 2 -58.826099967110096 -77.4811882485166 76.1765 0.1144 11893 +11901 2 -59.11119287624567 -76.32835283533984 75.4018 0.1144 11900 +11902 2 -59.521058766786226 -75.51483215531049 74.6925 0.1144 11901 +11903 2 -60.017794740248405 -75.01890555037001 73.9556 0.1144 11902 +11904 2 -60.566463210699126 -73.89057364951336 73.1354 0.1144 11903 +11905 2 -61.18336805225384 -72.75003119379289 72.273 0.1144 11904 +11906 2 -61.8449046423526 -71.65256788873089 71.3266 0.1144 11905 +11907 2 -62.58182778916449 -70.65246850627754 70.1683 0.1144 11906 +11908 2 -63.62480700330468 -71.41690977902991 69.2793 0.1144 11907 +11909 2 -64.68195306086079 -71.35905174373758 68.6666 0.1144 11908 +11910 2 -65.74991861034111 -71.29273125309923 68.2158 0.1144 11909 +11911 2 -66.74989245838891 -72.43535951176989 67.9025 0.1144 11910 +11912 2 -67.64186610010022 -72.77721801265906 67.6743 0.1144 11911 +11913 2 -68.77011875784922 -72.3781089498108 67.4159 0.1144 11912 +11914 2 -69.5264410554788 -73.26190678624073 67.216 0.1144 11913 +11915 2 -70.61227978429487 -73.37572533947466 67.1857 0.1144 11914 +11916 2 -71.67467506619754 -73.34272219426416 67.2305 0.1144 11915 +11917 2 -72.60947537786257 -74.35188464382291 67.31 0.1144 11916 +11918 2 -73.4774240380909 -75.0126499082244 67.4078 0.1144 11917 +11919 2 -74.28120957294587 -75.98197235386202 67.5206 0.1144 11918 +11920 2 -74.93503617106813 -77.18487393324432 67.6536 0.1144 11919 +11921 2 -75.46787620239526 -77.96293395837463 67.8034 0.1144 11920 +11922 2 -75.91236144058989 -78.81783042831559 67.9613 0.1144 11921 +11923 2 -76.30939366360744 -79.70177116756838 68.1388 0.1144 11922 +11924 2 -76.65897597303105 -80.6072478528204 68.332 0.1144 11923 +11925 2 -76.93735137225937 -81.78050680401029 68.5269 0.1144 11924 +11926 2 -77.36464798080357 -83.43062313000395 68.7336 0.1144 11925 +11927 2 -78.17908942288966 -83.94645593596813 68.9346 0.1144 11926 +11928 2 -79.20126637553764 -83.97383213237616 69.1127 0.1144 11927 +11929 2 -80.20676053439685 -84.6498815233722 69.2941 0.1144 11928 +11930 2 -81.01562860732214 -85.6321526811992 69.494 0.1144 11929 +11931 2 -81.50173540924101 -86.40489443505336 69.694 0.1144 11930 +11932 2 -81.70896246725307 -87.40430263984696 69.904 0.1144 11931 +11933 2 -81.78957142877827 -88.48057977442889 70.147 0.1144 11932 +11934 2 -82.03436292822484 -89.44586252949198 70.4231 0.1144 11933 +11935 2 -82.76539076246665 -89.94149922191507 70.756 0.1144 11934 +11936 2 -83.76487998259027 -91.18482124592741 71.1469 0.1144 11935 +11937 2 -84.79142589070605 -91.1574440817312 71.5817 0.1144 11936 +11938 2 -85.86814337926799 -90.93757079127535 72.0871 0.1144 11937 +11939 2 -86.9807934338681 -91.77956602675282 72.6664 0.1144 11938 +11940 2 -88.09550973324876 -91.26869782732527 73.2855 0.1144 11939 +11941 2 -89.14159252882335 -91.28888013927731 73.8178 0.1144 11940 +11942 2 -89.87336617486446 -92.89587846075631 74.1289 0.1144 11941 +11943 2 -90.53204876542523 -93.48867216484844 74.2311 0.1144 11942 +11944 2 -91.31741792404145 -93.91486829707384 74.263 0.1144 11943 +11945 2 -92.29287054358252 -94.35396403215401 74.419 0.1144 11944 +11946 2 -93.24882561961972 -95.39904638037147 75.1626 0.1144 11945 +11947 2 -68.96444895178735 -72.17043563099327 64.3378 0.1144 11913 +11948 2 -69.48277225350675 -71.81964007890407 62.991 0.1144 11947 +11949 2 -69.70729504703549 -71.00746524858164 61.6812 0.1144 11948 +11950 2 -70.13985687386511 -70.05183103331345 60.5102 0.1144 11949 +11951 2 -70.48971256698313 -69.05965257601854 58.9753 0.1144 11950 +11952 2 -69.96448123416945 -68.89352267495693 57.6752 0.1144 11951 +11953 2 -68.90148349955517 -68.60942262097578 56.9355 0.1144 11952 +11954 2 -67.87866605830251 -69.44874266976836 56.4385 0.1144 11953 +11955 2 -66.84076008319037 -70.28299563639683 56.0854 0.1144 11954 +11956 2 -65.73095793677909 -69.79323897291586 55.8177 0.1144 11955 +11957 2 -64.60519419708409 -70.06630931161733 55.5318 0.1144 11956 +11958 2 -63.50879325942515 -70.60140167991496 55.0721 0.1144 11957 +11959 2 -62.537229276105435 -70.52470823847682 54.5317 0.1144 11958 +11960 2 -61.4919448532422 -71.28188761648703 54.0134 0.1144 11959 +11961 2 -60.393821336707504 -71.63661610372668 53.4573 0.1144 11960 +11962 2 -59.340943628550136 -70.72220334410105 52.7335 0.1144 11961 +11963 2 -58.36975625682466 -70.57345389079488 52.1455 0.1144 11962 +11964 2 -57.613300206630356 -70.03768712361654 51.751 0.1144 11963 +11965 2 -56.716293983614875 -69.02300571781605 51.5007 0.1144 11964 +11966 2 -55.76338912888909 -68.48350802826242 51.3884 0.1144 11965 +11967 2 -54.896154051263395 -68.07428019199779 51.4139 0.1144 11966 +11968 2 -54.194912775630684 -67.45943344586965 51.5284 0.1144 11967 +11969 2 -53.60699932252419 -65.89415319211837 51.6533 0.1144 11968 +11970 2 -52.849027717995455 -65.21662365931094 51.7591 0.1144 11969 +11971 2 -51.894703523044285 -64.96077567644991 51.8344 0.1144 11970 +11972 2 -50.924914976143384 -64.41318256028691 51.8756 0.1144 11971 +11973 2 -50.06021535800309 -63.39335701260557 51.7658 0.1144 11972 +11974 2 -49.279778174622066 -62.91613262205425 51.0432 0.1144 11973 +11975 2 15.539862646448569 -104.4576546086177 80.9357 0.1144 11775 +11976 2 15.093369435821302 -104.03366144873874 81.3501 0.1144 11975 +11977 2 14.621523992038249 -103.04604202845931 81.501 0.1144 11976 +11978 2 14.163576696567759 -101.79802371083555 81.6668 0.1144 11977 +11979 2 13.786657106003162 -100.58018415000241 81.8894 0.1144 11978 +11980 2 13.520173883253335 -99.38243205989842 82.1576 0.1144 11979 +11981 2 13.333296616137432 -98.25808469858482 82.4149 0.1144 11980 +11982 2 13.139782918950061 -97.33226602915663 82.6613 0.1144 11981 +11983 2 12.803984850966316 -96.64623452978832 82.934 0.1144 11982 +11984 2 12.585122022206264 -95.75232281973778 83.1846 0.1144 11983 +11985 2 12.479013685167473 -94.67369694983381 83.4358 0.1144 11984 +11986 2 12.230529581316262 -93.62412557352835 83.6881 0.1144 11985 +11987 2 11.763989521812164 -92.39457941462986 83.9404 0.1144 11986 +11988 2 11.28849249928362 -91.1632269416633 84.1887 0.1144 11987 +11989 2 10.886940461331989 -89.94220350616591 84.4827 0.1144 11988 +11990 2 10.498977840098036 -88.73043145041281 84.8128 0.1144 11989 +11991 2 10.007262136303922 -87.51342025779762 85.0676 0.1144 11990 +11992 2 9.442232939268763 -86.30297570031765 85.2706 0.1144 11991 +11993 2 8.6699505572237 -86.31090986196452 85.4375 0.1144 11992 +11994 2 7.398401028081025 -85.31788351264352 85.2723 0.1144 11993 +11995 2 6.2947273686066865 -84.57072348520327 85.2748 0.1144 11994 +11996 2 5.1741892242961 -84.97851373440356 85.2813 0.1144 11995 +11997 2 4.044885426509552 -84.33137386214716 85.29 0.1144 11996 +11998 2 2.9171854774902215 -83.63953048593572 85.3014 0.1144 11997 +11999 2 1.7754884729141907 -84.22695499783721 85.3185 0.1144 11998 +12000 2 0.637607324313251 -83.60269654668474 85.3448 0.1144 11999 +12001 2 -0.4936004416227888 -82.93155727893534 85.3787 0.1144 12000 +12002 2 -1.6338787985100964 -83.49321511337314 85.4185 0.1144 12001 +12003 2 -2.7735427937905683 -82.88689564184598 85.4686 0.1144 12002 +12004 2 -3.526892037172388 -81.73176373720784 85.5935 0.1144 12003 +12005 2 -4.451357284031161 -81.63581164153875 85.82 0.1144 12004 +12006 2 8.729302142002155 -85.65243578574973 85.5719 0.1144 11993 +12007 2 8.807502276141406 -84.18042446238594 85.7254 0.1144 12006 +12008 2 8.765015678779093 -83.01892033085123 85.9396 0.1144 12007 +12009 2 8.648352040578231 -81.94560874914903 86.2445 0.1144 12008 +12010 2 8.557710464535774 -80.83559034960422 86.5612 0.1144 12009 +12011 2 8.496466624839314 -79.68594461880532 86.8174 0.1144 12010 +12012 2 8.278626110276804 -78.74029789973257 87.0464 0.1144 12011 +12013 2 7.793417102871473 -77.86180828591505 87.3085 0.1144 12012 +12014 2 7.245003613129768 -76.66819830592996 87.5714 0.1144 12013 +12015 2 6.94270735366112 -75.49124887138413 87.4742 0.1144 12014 +12016 2 6.782326163816464 -74.44328169077629 86.7241 0.1144 12015 +12017 2 5.724294947984248 -73.6512778345728 86.5578 0.1144 12016 +12018 2 4.6130286067630095 -73.90279640345985 86.9739 0.1144 12017 +12019 2 3.5355868337978507 -73.41735512067108 87.7834 0.1144 12018 +12020 2 2.577409652299508 -72.55504851245296 88.7001 0.1144 12019 +12021 2 2.0300222708750937 -71.40529755767264 89.3822 0.1144 12020 +12022 2 1.5921249258645673 -70.53071095382863 89.84 0.1144 12021 +12023 2 1.2553897365330329 -69.72251967219711 90.104 0.1144 12022 +12024 2 0.9583043637442472 -68.81968085221496 90.2258 0.1144 12023 +12025 2 0.27643511762110506 -67.68423871903046 90.216 0.1144 12024 +12026 2 -0.6961696946985683 -66.7354353405198 90.1919 0.1144 12025 +12027 2 -1.389710361243857 -65.600566916037 90.2107 0.1144 12026 +12028 2 -2.261852980789058 -65.146155906408 90.2773 0.1144 12027 +12029 2 -3.3222896206503947 -64.42781664940642 90.7323 0.1144 12028 +12030 2 -4.011012632423956 -63.29967701994687 91.0123 0.1144 12029 +12031 2 -4.782363403750907 -62.215662407110194 91.336 0.1144 12030 +12032 2 -5.579139981983872 -61.542599497380166 91.7118 0.1144 12031 +12033 2 -6.445795117754699 -60.98984576566597 92.0242 0.1144 12032 +12034 2 -7.44212438372719 -60.122303724953 92.3975 0.1144 12033 +12035 2 -8.34547902826182 -59.16353701431165 92.8598 0.1144 12034 +12036 2 -9.291130860241452 -58.97430984597841 93.312 0.1144 12035 +12037 2 -10.196269043992231 -58.08286309160786 93.6961 0.1144 12036 +12038 2 -10.89715120569511 -56.98604108345952 94.0254 0.1144 12037 +12039 2 -11.718022545041634 -55.951142258277805 94.3919 0.1144 12038 +12040 2 -12.799289792482881 -56.09786519226802 94.8508 0.1144 12039 +12041 2 -13.923166676072611 -55.65043596944384 95.3285 0.1144 12040 +12042 2 -14.886641038085145 -55.52519278874712 95.706 0.1144 12041 +12043 2 -14.898809096293888 -55.20155638572186 95.8768 0.1144 12042 +12044 2 -14.98098694944872 -54.07344785416139 96.3852 0.1144 12043 +12045 2 -15.159662275392606 -52.91216078834773 96.6916 0.1144 12044 +12046 2 -15.362526860049087 -51.77237592387704 96.9912 0.1144 12045 +12047 2 -15.679482492848905 -50.59976396659729 97.2342 0.1144 12046 +12048 2 -16.15916567881331 -49.43454500277461 97.3582 0.1144 12047 +12049 2 -16.701480424756994 -48.27676499147806 97.3666 0.1144 12048 +12050 2 -17.047171884576358 -47.13255778559469 97.3305 0.1144 12049 +12051 2 -16.55956014113437 -46.385288453575185 97.4137 0.1144 12050 +12052 2 -15.654390314613522 -45.971471167333554 97.6738 0.1144 12051 +12053 2 -14.727824771157543 -44.960420515883264 98.0851 0.1144 12052 +12054 2 -13.807052341487747 -44.59818565067663 98.607 0.1144 12053 +12055 2 -12.88119186311792 -43.62068440533776 99.1816 0.1144 12054 +12056 2 -11.922748875315023 -43.324993920124705 99.7282 0.1144 12055 +12057 2 -10.93534523137049 -43.06497778216629 100.207 0.1144 12056 +12058 2 -9.937818548375247 -42.22764779963976 100.6415 0.1144 12057 +12059 2 -9.153777546752764 -42.520780033386075 101.6137 0.1144 12058 +12060 2 -9.878457557880068 -42.73865055246708 102.9286 0.1144 12059 +12061 2 -10.858189240598534 -42.78012966174473 104.1169 0.1144 12060 +12062 2 -11.6289512679013 -41.91083260375938 105.2643 0.1144 12061 +12063 2 -11.054144290435175 -41.33424643257381 106.1144 0.1144 12062 +12064 2 -10.139790955257837 -40.36617799024214 106.561 0.1144 12063 +12065 2 -9.056989443580562 -40.30961150378292 106.6934 0.1144 12064 +12066 2 -7.992264329682541 -40.850798198947324 106.013 0.1144 12065 +12067 2 -15.899479894652387 -54.7223235129784 96.1425 0.1144 12042 +12068 2 -16.929970800856665 -53.9054946770055 96.3645 0.1144 12067 +12069 2 -17.962104586031472 -53.700687597879615 96.4636 0.1144 12068 +12070 2 -18.996250172564316 -53.0305651952923 96.5698 0.1144 12069 +12071 2 -20.023307528138673 -52.242625159464616 96.6675 0.1144 12070 +12072 2 -21.01244216236543 -51.542226033885576 96.7067 0.1144 12071 +12073 2 -22.00356905917448 -51.213331009679514 96.6977 0.1144 12072 +12074 2 -22.99403473919361 -50.3467033133098 96.651 0.1144 12073 +12075 2 -23.981997786764424 -49.480488681994395 96.4774 0.1144 12074 +12076 2 -2.745634035756325 -64.28342549601432 89.2718 0.1144 12028 +12077 2 -3.3184126805398364 -63.123429860990385 88.9834 0.1144 12076 +12078 2 -4.076220890332252 -62.02444387552188 88.7141 0.1144 12077 +12079 2 -4.853270970382852 -60.94636248383943 88.4103 0.1144 12078 +12080 2 -5.626220079847457 -60.191883221768215 88.0849 0.1144 12079 +12081 2 -6.37971549410446 -59.620658159999564 87.7498 0.1144 12080 +12082 2 -7.131284299853263 -58.530525300991954 87.4163 0.1144 12081 +12083 2 -7.8834814953548005 -57.44906527438664 87.0864 0.1144 12082 +12084 2 -8.635050301103604 -56.37463756065713 86.7577 0.1144 12083 +12085 2 -9.398651624682145 -55.86672732915471 86.4408 0.1144 12084 +12086 2 -10.197082008448632 -55.02260899430332 86.1655 0.1144 12085 +12087 2 -11.026549213411897 -53.99944836322555 85.9102 0.1144 12086 +12088 2 -12.020125684320021 -53.16724920192406 85.6072 0.1144 12087 +12089 2 -12.956876020671046 -52.83890278805437 85.1329 0.1144 12088 +12090 2 -13.268607566954671 -52.87640697218582 84.9402 0.1144 12089 +12091 2 -14.376051535282954 -52.41982118619644 84.3004 0.1144 12090 +12092 2 -15.504799131993707 -52.7002253638293 83.9174 0.1144 12091 +12093 2 -16.632865973138877 -52.235807409732175 83.5341 0.1144 12092 +12094 2 -17.76098518009681 -51.93796129728922 83.1435 0.1144 12093 +12095 2 -18.88701831940986 -52.046169358368374 82.7305 0.1144 12094 +12096 2 -20.00134549475385 -51.547882553326005 82.2483 0.1144 12095 +12097 2 -21.03148660889832 -50.99688108390584 81.6301 0.1144 12096 +12098 2 -21.852125199446647 -50.570110707506586 80.8889 0.1144 12097 +12099 2 -22.51546134552811 -50.04633303861046 79.4545 0.1144 12098 +12100 2 -23.159411681544015 -50.71179439644758 78.6509 0.1144 12099 +12101 2 -23.804161580245164 -51.37836900318165 77.8476 0.1144 12100 +12102 2 -24.475247688632976 -52.56537211071161 77.0958 0.1144 12101 +12103 2 -25.161078363201824 -53.37173748732477 76.405 0.1144 12102 +12104 2 -25.84926239776067 -54.005566156544816 75.7484 0.1144 12103 +12105 2 -26.494796759679474 -54.600439223933655 74.6018 0.1144 12104 +12106 2 -12.71252730715787 -52.2763201064145 83.8597 0.1144 12089 +12107 2 -12.25625562356305 -51.48582589415694 81.8888 0.1144 12106 +12108 2 -11.693990415123153 -50.86154590051627 80.5921 0.1144 12107 +12109 2 -11.024507462966 -50.252718879195236 79.6295 0.1144 12108 +12110 2 -10.289558348587036 -49.67439398113101 78.8376 0.1144 12109 +12111 2 -9.461882384024705 -48.522678620026454 78.1659 0.1144 12110 +12112 2 -8.563615587383879 -48.14045707176849 77.5835 0.1144 12111 +12113 2 -8.099647212616361 -47.30386472380573 76.9782 0.1144 12112 +12114 2 -7.702902797344876 -46.41986097762513 76.2056 0.1144 12113 +12115 2 -7.434534009430962 -45.61942021631642 74.6018 0.1144 12114 +12116 2 28.397542435331218 -204.88528877170268 68.7618 0.1144 11691 +12117 2 29.255911253411853 -202.95883461119158 68.9489 0.1144 12116 +12118 2 30.10849246833591 -202.51169806716362 69.0788 0.1144 12117 +12119 2 30.850459625594837 -202.0501513389897 69.1863 0.1144 12118 +12120 2 31.43342879183008 -201.36355237512186 69.3031 0.1144 12119 +12121 2 32.00120400004376 -199.62322872440745 69.4134 0.1144 12120 +12122 2 32.599419490113235 -198.11369649139513 69.5083 0.1144 12121 +12123 2 33.308716536042795 -197.6009090711857 69.5901 0.1144 12122 +12124 2 34.20060188332117 -197.04921381491528 69.664 0.1144 12123 +12125 2 35.152120224858635 -195.6977171728077 69.7337 0.1144 12124 +12126 2 36.105909835119434 -195.43166369813966 69.8048 0.1144 12125 +12127 2 37.10338345976537 -195.4058396582444 69.9028 0.1144 12126 +12128 2 38.19849950230031 -194.40789103472667 70.0823 0.1144 12127 +12129 2 39.31471484181148 -194.2498033282694 70.3206 0.1144 12128 +12130 2 40.40835917830833 -194.2459023408409 70.5051 0.1144 12129 +12131 2 41.48754675637022 -193.51658613885172 70.5916 0.1144 12130 +12132 2 42.561519653632544 -193.37135175807717 70.5872 0.1144 12131 +12133 2 43.60370581002729 -191.93868846556472 70.5009 0.1144 12132 +12134 2 44.57786572144258 -191.66546743808783 70.3461 0.1144 12133 +12135 2 45.513473420772755 -191.23106313069792 70.1448 0.1144 12134 +12136 2 46.35210101998835 -190.22816642723143 69.9152 0.1144 12135 +12137 2 46.94274295863863 -189.0428473516731 69.6592 0.1144 12136 +12138 2 47.50201679883466 -188.28478174654907 69.3776 0.1144 12137 +12139 2 48.43677877283302 -187.6484512658937 69.0385 0.1144 12138 +12140 2 49.466273603654585 -187.18268519815103 68.6739 0.1144 12139 +12141 2 50.49441784990802 -186.1321389758429 68.2906 0.1144 12140 +12142 2 51.524127607262045 -186.30058130398402 67.9064 0.1144 12141 +12143 2 52.56293257883962 -186.01495440149634 67.5427 0.1144 12142 +12144 2 53.64383012236742 -184.99825495536854 67.23 0.1144 12143 +12145 2 54.76851297888595 -185.46716877584225 66.9939 0.1144 12144 +12146 2 55.90477316667548 -184.8258107981997 66.8441 0.1144 12145 +12147 2 57.04680182729386 -185.09540415139622 66.8108 0.1144 12146 +12148 2 58.1870387449314 -185.78901238154873 66.8968 0.1144 12147 +12149 2 59.32326918958201 -185.08204032045344 67.0547 0.1144 12148 +12150 2 60.454658362476835 -185.5700530689739 67.2062 0.1144 12149 +12151 2 61.5321456825631 -186.41262019547673 67.1947 0.1144 12150 +12152 2 62.50759399342655 -186.61541830449943 66.8377 0.1144 12151 +12153 2 63.411978060645836 -186.74832268915395 66.3132 0.1144 12152 +12154 2 64.19396913602793 -185.87445900341265 65.8647 0.1144 12153 +12155 2 64.94422101826221 -185.44996675592012 65.494 0.1144 12154 +12156 2 65.69733663035255 -183.49249100831292 65.2002 0.1144 12155 +12157 2 66.45178328823533 -182.77121224026916 64.9905 0.1144 12156 +12158 2 67.20858330610818 -181.81320506166665 64.8438 0.1144 12157 +12159 2 67.94168420382206 -180.58040450764202 64.7284 0.1144 12158 +12160 2 68.577012334439 -179.8901520530573 64.6428 0.1144 12159 +12161 2 69.16034259808184 -178.80153920400411 64.5887 0.1144 12160 +12162 2 69.73564991846497 -178.08715169234543 64.5602 0.1144 12161 +12163 2 70.31144806993838 -176.73642387151995 64.5509 0.1144 12162 +12164 2 70.88675539032148 -175.03895598320955 64.5534 0.1144 12163 +12165 2 71.63456561813287 -174.46295377070075 64.5747 0.1144 12164 +12166 2 72.53148354671548 -174.29251942803538 64.6167 0.1144 12165 +12167 2 73.33993746388386 -173.4000223889537 64.6576 0.1144 12166 +12168 2 73.79939932452105 -171.6405241914119 64.6596 0.1144 12167 +12169 2 74.11802079554454 -170.4360264346988 64.6103 0.1144 12168 +12170 2 74.42415725531461 -169.38924009222006 64.5106 0.1144 12169 +12171 2 74.73078454617497 -168.39583043505553 64.3622 0.1144 12170 +12172 2 75.03638952283772 -167.41902041140312 64.1729 0.1144 12171 +12173 2 75.36872463363197 -166.4345519139202 63.9027 0.1144 12172 +12174 2 75.71773402069857 -165.3098829841634 63.5482 0.1144 12173 +12175 2 76.06918506218807 -164.03407420574922 63.1383 0.1144 12174 +12176 2 76.42024217923284 -162.3002598722789 62.697 0.1144 12175 +12177 2 76.68450450361618 -160.8662898918802 62.3445 0.1144 12176 +12178 2 76.89185819372778 -159.79889101029477 62.1102 0.1144 12177 +12179 2 77.08892938565214 -158.7225216151393 61.9615 0.1144 12178 +12180 2 77.28448743228857 -157.645060619755 61.8444 0.1144 12179 +12181 2 77.94830872085214 -157.1440161495572 61.3063 0.1144 12180 +12182 2 78.59928741078565 -156.59987598475655 60.2067 0.1144 12181 +12183 2 79.00730209489501 -155.3760430410523 59.1738 0.1144 12182 +12184 2 79.64154354761722 -153.63924493094504 58.3156 0.1144 12183 +12185 2 80.40308833904814 -153.19736440375513 57.5677 0.1144 12184 +12186 2 81.17319306747574 -152.6304333889633 56.9349 0.1144 12185 +12187 2 81.98049562930049 -152.2832387847841 56.4096 0.1144 12186 +12188 2 82.88602724576559 -150.63481046934098 55.9524 0.1144 12187 +12189 2 83.88261680741304 -150.5396380240661 55.5254 0.1144 12188 +12190 2 84.9064865957978 -150.59321547714043 55.1093 0.1144 12189 +12191 2 85.87179186676757 -148.94791614392776 54.7008 0.1144 12190 +12192 2 86.62758429112552 -148.43192511680041 54.3144 0.1144 12191 +12193 2 87.20271571517945 -147.76954330993226 53.9619 0.1144 12192 +12194 2 87.75405421401196 -147.07563355949924 53.6326 0.1144 12193 +12195 2 88.47503499199982 -146.17472531739128 53.312 0.1144 12194 +12196 2 89.4420738454195 -144.8579620407858 53.0032 0.1144 12195 +12197 2 90.4633136767197 -144.33023533060592 52.7136 0.1144 12196 +12198 2 91.4800445848431 -143.31527040872828 52.439 0.1144 12197 +12199 2 92.5083733396384 -143.4629156759158 52.1674 0.1144 12198 +12200 2 93.54266628645607 -143.14426465399802 51.8484 0.1144 12199 +12201 2 94.08942949781604 -141.46879084200097 51.3503 0.1144 12200 +12202 2 93.99892927455576 -140.25034418705366 50.6982 0.1144 12201 +12203 2 94.35150874694153 -139.29812413428175 50.0993 0.1144 12202 +12204 2 95.00195416024664 -138.71490022520481 49.6384 0.1144 12203 +12205 2 95.71887471436163 -138.23313128783013 49.2551 0.1144 12204 +12206 2 96.40411464430768 -137.3685166980263 48.9353 0.1144 12205 +12207 2 96.92890200692108 -135.32129427603104 48.6786 0.1144 12206 +12208 2 97.39156295288011 -134.43337415487673 48.4613 0.1144 12207 +12209 2 97.84143876820349 -133.60296230180447 48.2608 0.1144 12208 +12210 2 98.27844426004135 -132.77510672040398 48.0757 0.1144 12209 +12211 2 98.83307324021172 -132.05822025262702 47.8946 0.1144 12210 +12212 2 99.6870385592776 -130.8340716466308 47.6832 0.1144 12211 +12213 2 100.62866832707246 -130.0074997917246 47.4312 0.1144 12212 +12214 2 101.56904441694473 -129.8377170108399 47.1226 0.1144 12213 +12215 2 102.50684050649878 -129.61518812239294 46.7597 0.1144 12214 +12216 2 103.37729249171201 -127.8998988104984 46.3414 0.1144 12215 +12217 2 103.90925156162376 -127.21112882884742 45.8405 0.1144 12216 +12218 2 104.26699196392315 -126.28667287989802 45.3121 0.1144 12217 +12219 2 104.58739146353314 -125.33029133245887 44.7871 0.1144 12218 +12220 2 104.90410345577757 -124.40852637335851 44.2848 0.1144 12219 +12221 2 105.38494631266718 -123.65201843608104 43.8631 0.1144 12220 +12222 2 106.0822687172093 -121.42196201394904 43.5728 0.1144 12221 +12223 2 106.81220576568496 -120.95763728354457 43.3908 0.1144 12222 +12224 2 107.54347385995311 -120.51055565096435 43.2771 0.1144 12223 +12225 2 108.27474195422128 -120.06334215742196 43.1964 0.1144 12224 +12226 2 109.00592485563968 -118.14156548635519 43.1189 0.1144 12225 +12227 2 109.78755414107748 -117.49479083132712 42.952 0.1144 12226 +12228 2 110.59440972010825 -117.17704549160459 42.6661 0.1144 12227 +12229 2 111.4022383491069 -116.8660850177636 42.2957 0.1144 12228 +12230 2 112.20722278702516 -115.00234850620306 41.8785 0.1144 12229 +12231 2 112.83413715152071 -114.47437659044127 41.4896 0.1144 12230 +12232 2 113.17614590952509 -113.6494137469459 41.1967 0.1144 12231 +12233 2 113.50972687326194 -112.3343525675111 40.99 0.1144 12232 +12234 2 113.84113347492116 -110.66166886366868 40.85 0.1144 12233 +12235 2 114.23014275467895 -109.67457937898263 40.7473 0.1144 12234 +12236 2 114.85000963492908 -109.12072437154004 40.6395 0.1144 12235 +12237 2 115.47709989575387 -108.56463296257289 40.5166 0.1144 12236 +12238 2 115.99595038275233 -107.89200281265995 40.3542 0.1144 12237 +12239 2 116.44676331942348 -106.63434884784034 40.1811 0.1144 12238 +12240 2 117.0394061328688 -105.11528386952625 40.0714 0.1144 12239 +12241 2 117.63204894631416 -104.50965457408532 40.007 0.1144 12240 +12242 2 117.94389031442678 -104.20367026156195 40.1915 0.1144 12241 +12243 2 118.54472955841457 -103.61976601442568 39.9294 0.1144 12242 +12244 2 119.1701691152889 -103.04905928581236 39.7715 0.1144 12243 +12245 2 119.9170422217525 -101.26233494023175 39.6606 0.1144 12244 +12246 2 120.82872184624527 -101.09843953335213 39.6634 0.1144 12245 +12247 2 121.69685019692245 -100.85917911407965 39.7832 0.1144 12246 +12248 2 121.94658088105865 -100.05906432119161 40.0095 0.1144 12247 +12249 2 121.80163321672528 -98.9433948634021 40.476 0.1144 12248 +12250 2 121.7617289340315 -97.86639543220014 40.8892 0.1144 12249 +12251 2 121.75741803812733 -96.79505949320573 40.9542 0.1144 12250 +12252 2 121.85375795141091 -95.77665677093961 40.8554 0.1144 12251 +12253 2 121.39999992095935 -94.58072113359368 40.7431 0.1144 12252 +12254 2 120.50977058061916 -93.49768022470217 40.6454 0.1144 12253 +12255 2 119.8116997829596 -92.32925974025572 40.5471 0.1144 12254 +12256 2 119.55884741617724 -91.16965319937798 40.4578 0.1144 12255 +12257 2 119.4539849320811 -90.06263143241992 40.3326 0.1144 12256 +12258 2 119.51133865465832 -89.03247783457851 40.112 0.1144 12257 +12259 2 119.59720063464968 -88.02005476022795 39.8269 0.1144 12258 +12260 2 119.80327564478156 -87.0778430071122 39.5399 0.1144 12259 +12261 2 120.19536668251092 -86.27042888428208 39.2997 0.1144 12260 +12262 2 120.72847400618318 -85.61905322273178 39.0942 0.1144 12261 +12263 2 121.36202169916703 -84.61656222295785 38.9152 0.1144 12262 +12264 2 121.9908923976248 -83.26071276712715 38.7503 0.1144 12263 +12265 2 122.56348526061021 -82.60243599567947 38.547 0.1144 12264 +12266 2 122.95027091406061 -81.76863953341048 38.3272 0.1144 12265 +12267 2 123.21225104315761 -80.84020552278263 38.1836 0.1144 12266 +12268 2 123.55354621855938 -79.97113194007262 38.0786 0.1144 12267 +12269 2 124.14841886147832 -79.04317862518603 37.9823 0.1144 12268 +12270 2 124.8653886798229 -77.74144883423587 37.8868 0.1144 12269 +12271 2 125.35158928680428 -76.98701949133768 37.8132 0.1144 12270 +12272 2 125.53925412386363 -76.01230838141383 37.7731 0.1144 12271 +12273 2 125.65679293390426 -75.0000501693099 37.7602 0.1144 12272 +12274 2 125.80213424373625 -74.00064812537576 37.7804 0.1144 12273 +12275 2 125.95443164179761 -73.00523682417453 37.835 0.1144 12274 +12276 2 126.26307142655264 -72.12396388406849 37.9316 0.1144 12275 +12277 2 127.05554182030016 -71.14029572594092 38.0943 0.1144 12276 +12278 2 128.09728168643744 -70.72392763958551 38.3096 0.1144 12277 +12279 2 129.12708214727087 -70.68210391699851 38.5622 0.1144 12278 +12280 2 130.15152175642947 -70.03733521409103 38.859 0.1144 12279 +12281 2 131.20919008703981 -69.68806651909054 39.2171 0.1144 12280 +12282 2 132.29137723711042 -69.7690264307407 39.5875 0.1144 12281 +12283 2 133.37877906798045 -69.25724360846827 39.9319 0.1144 12282 +12284 2 134.46774640995113 -69.04929846996552 40.2363 0.1144 12283 +12285 2 135.55906711191184 -68.24082324531877 40.4818 0.1144 12284 +12286 2 136.65069344388442 -68.32635593104725 40.6358 0.1144 12285 +12287 2 137.7396077275058 -68.41997775199373 40.6588 0.1144 12286 +12288 2 138.8188507729635 -67.55334557935501 40.5118 0.1144 12287 +12289 2 139.88453653620402 -67.59308931425836 40.178 0.1144 12288 +12290 2 140.8168137000198 -67.38347086439032 39.7426 0.1144 12289 +12291 2 141.59961216306706 -66.31103908156517 39.2986 0.1144 12290 +12292 2 142.4008043619942 -65.57803384396917 38.859 0.1144 12291 +12293 2 143.2147074252703 -65.14577020570066 38.4661 0.1144 12292 +12294 2 144.0058672886262 -64.6770758207019 38.157 0.1144 12293 +12295 2 144.79160064623312 -63.38414443443442 37.9215 0.1144 12294 +12296 2 145.5793786322353 -62.85407548630518 37.7362 0.1144 12295 +12297 2 146.42665446288038 -62.44029733669049 37.5838 0.1144 12296 +12298 2 147.34178634219785 -61.96878231086774 37.4578 0.1144 12297 +12299 2 148.27920341738218 -61.01696219187029 37.3484 0.1144 12298 +12300 2 149.22649184188384 -60.75255950452121 37.2095 0.1144 12299 +12301 2 150.21259037137017 -60.55784378189424 37.1269 0.1144 12300 +12302 2 151.22791995092638 -59.610377341598 37.2058 0.1144 12301 +12303 2 152.25152485601245 -59.49555420353734 37.4368 0.1144 12302 +12304 2 153.2860522681382 -59.40958089228591 37.7815 0.1144 12303 +12305 2 154.25221576546838 -58.402258751690354 38.1142 0.1144 12304 +12306 2 155.1913311870191 -58.11903309112528 38.3729 0.1144 12305 +12307 2 156.2536857222086 -57.360537780351656 38.7296 0.1144 12306 +12308 2 157.3481856866268 -57.47474168464446 39.207 0.1144 12307 +12309 2 158.43703009592144 -57.585309865058385 39.7698 0.1144 12308 +12310 2 159.52103962601888 -56.93038685663333 40.3872 0.1144 12309 +12311 2 160.60331247208342 -57.03692064872035 41.0264 0.1144 12310 +12312 2 161.69447500528446 -57.16124843440542 41.5996 0.1144 12311 +12313 2 162.81114353075597 -56.62931532343019 41.9846 0.1144 12312 +12314 2 163.93539732144245 -56.780505473110104 42.2229 0.1144 12313 +12315 2 165.06760048163838 -56.87223494561014 42.3304 0.1144 12314 +12316 2 166.20167448117317 -56.736313614669335 42.2181 0.1144 12315 +12317 2 167.29917421897065 -57.20826379058942 41.5078 0.1144 12316 +12318 2 118.71137757538463 -105.0297745745987 39.8563 0.1144 12241 +12319 2 119.85205977699133 -104.47882339899316 39.6987 0.1144 12318 +12320 2 120.99180485725016 -104.70016927059244 39.4982 0.1144 12319 +12321 2 122.12261900051513 -105.17896373080062 39.2532 0.1144 12320 +12322 2 123.2267926121435 -104.10028543052981 38.967 0.1144 12321 +12323 2 124.31085090332645 -104.33959353214532 38.6618 0.1144 12322 +12324 2 125.39481538944695 -104.58933297596236 38.36 0.1144 12323 +12325 2 126.48105114429076 -103.43208858476956 38.0666 0.1144 12324 +12326 2 127.56796765470014 -103.67966921855988 37.781 0.1144 12325 +12327 2 128.6548317992968 -103.93276918603874 37.5052 0.1144 12326 +12328 2 129.74334664784382 -102.78058586501926 37.2394 0.1144 12327 +12329 2 130.83021079244048 -103.03008563435924 36.9852 0.1144 12328 +12330 2 131.92068817811594 -103.27991544519392 36.7382 0.1144 12329 +12331 2 133.00086283429178 -102.11373310605143 36.4946 0.1144 12330 +12332 2 134.020634061137 -102.1670741519269 36.2804 0.1144 12331 +12333 2 134.97432986633532 -102.07450201279231 36.1267 0.1144 12332 +12334 2 135.9122580986185 -100.58636069769474 36.0304 0.1144 12333 +12335 2 136.85076235484178 -100.45376403069585 35.9803 0.1144 12334 +12336 2 137.788723414162 -98.97796848112908 35.9663 0.1144 12335 +12337 2 138.7317780328118 -98.84502345553416 35.9786 0.1144 12336 +12338 2 139.6690778753421 -98.70522352415124 36.0086 0.1144 12337 +12339 2 140.58881327013177 -97.74730838549438 36.0517 0.1144 12338 +12340 2 141.50507298250506 -97.02746942664551 36.1127 0.1144 12339 +12341 2 142.420225187831 -96.84025119636729 36.2001 0.1144 12340 +12342 2 143.33488656206663 -96.57979124341568 36.3219 0.1144 12341 +12343 2 144.33250464107786 -95.36151469544421 36.4868 0.1144 12342 +12344 2 145.44408132372965 -95.67546982541033 36.701 0.1144 12343 +12345 2 146.5121529899086 -95.82036390658507 37.0955 0.1144 12344 +12346 2 147.56377632760686 -94.80095948439491 37.7157 0.1144 12345 +12347 2 148.67202047414577 -95.2742537978274 38.3228 0.1144 12346 +12348 2 149.75919435662553 -95.4695665837405 38.9791 0.1144 12347 +12349 2 150.79361124240762 -94.49043031277108 39.7149 0.1144 12348 +12350 2 151.84818109376525 -94.68880792834848 40.4239 0.1144 12349 +12351 2 152.85372520939057 -94.67710669330623 40.7817 0.1144 12350 +12352 2 153.9057647034444 -93.52372627509078 40.9542 0.1144 12351 +12353 2 154.97037509413798 -93.64284053828574 41.1093 0.1144 12352 +12354 2 156.03467675323668 -93.71054970878198 41.251 0.1144 12353 +12355 2 157.0580964572443 -92.52461584584383 41.3372 0.1144 12354 +12356 2 158.07735972326998 -92.23839059806927 41.4 0.1144 12355 +12357 2 159.09695125966633 -91.28823498286573 41.4812 0.1144 12356 +12358 2 160.11621452569204 -91.28307703278368 41.5663 0.1144 12357 +12359 2 160.67438597300037 -90.9328608224314 41.683 0.1144 12358 +12360 2 161.5012007990117 -89.76252841282881 41.8978 0.1144 12359 +12361 2 162.35730455153524 -89.09173218386654 42.2517 0.1144 12360 +12362 2 163.3203307288017 -88.99775584283861 42.7672 0.1144 12361 +12363 2 164.22920579025777 -88.70456852544223 43.5336 0.1144 12362 +12364 2 165.05323938612764 -87.39542289125067 44.3761 0.1144 12363 +12365 2 165.54965201912916 -86.7222597161309 45.1592 0.1144 12364 +12366 2 166.06382851848844 -86.10991796491669 45.799 0.1144 12365 +12367 2 166.76237945685162 -85.6239127976942 45.8934 0.1144 12366 +12368 2 167.57187160458096 -84.41873984519829 44.8291 0.1144 12367 +12369 2 168.39263013233233 -84.00984634125507 43.6489 0.1144 12368 +12370 2 169.29468666422156 -83.82961894241494 42.8641 0.1144 12369 +12371 2 170.23224509218818 -83.48261380611544 42.3886 0.1144 12370 +12372 2 171.19708074000516 -82.40512227173497 42.1957 0.1144 12371 +12373 2 172.2027625089893 -82.33930044517142 42.2237 0.1144 12372 +12374 2 173.23183457184115 -82.32108954926917 42.3746 0.1144 12373 +12375 2 174.26373281411526 -81.21981335455786 42.5603 0.1144 12374 +12376 2 175.2909392464843 -81.19446838653631 42.7291 0.1144 12375 +12377 2 176.29950034793615 -81.12853815957097 42.8949 0.1144 12376 +12378 2 177.30272013648892 -79.96849282325145 43.0819 0.1144 12377 +12379 2 178.17517841243063 -79.68144520993467 43.2622 0.1144 12378 +12380 2 178.7687645503899 -79.04543526639203 43.2911 0.1144 12379 +12381 2 179.70356777424564 -78.57191228696453 43.0786 0.1144 12380 +12382 2 180.4577088021166 -77.37364829751519 42.8809 0.1144 12381 +12383 2 181.007649073965 -76.6879986152014 42.707 0.1144 12382 +12384 2 181.5179451345965 -75.63794258013118 42.4883 0.1144 12383 +12385 2 182.0080615110854 -74.2140345816084 42.2601 0.1144 12384 +12386 2 182.50225853215176 -73.47255627101949 42.0221 0.1144 12385 +12387 2 183.0470434794124 -72.77243686817621 41.7883 0.1144 12386 +12388 2 183.67102304404443 -72.14384639426447 41.6304 0.1144 12387 +12389 2 184.3701313968491 -71.36987892737056 41.5727 0.1144 12388 +12390 2 185.18736327912967 -70.22947641912324 41.5906 0.1144 12389 +12391 2 186.04563519056467 -69.86594406254525 41.6503 0.1144 12390 +12392 2 186.90382190914994 -69.49858094203445 41.722 0.1144 12391 +12393 2 187.7616029894947 -68.47978738783766 41.7696 0.1144 12392 +12394 2 188.61846727450018 -67.83959282380049 41.7606 0.1144 12393 +12395 2 189.43084006275922 -67.40793651623787 41.6609 0.1144 12394 +12396 2 190.19252260224505 -66.9109842790835 41.4464 0.1144 12395 +12397 2 190.79108506688 -65.63595462781612 41.0413 0.1144 12396 +12398 2 191.2692806475635 -64.63148790104093 40.427 0.1144 12397 +12399 2 191.80610181838364 -63.971697853325104 39.5657 0.1144 12398 +12400 2 192.5174270851789 -63.59816252792893 38.1738 0.1144 12399 +12401 2 193.31601634165537 -63.4094979925857 36.6206 0.1144 12400 +12402 2 194.14664352558873 -63.228582693944524 35.1834 0.1144 12401 +12403 2 194.95427304972213 -62.435839258993276 33.9752 0.1144 12402 +12404 2 195.74529256658417 -61.723830317473244 32.8894 0.1144 12403 +12405 2 196.51147661271494 -61.312436270052196 31.852 0.1144 12404 +12406 2 197.26769870074537 -60.87149581543667 30.9058 0.1144 12405 +12407 2 198.11067163844473 -60.52832108429101 30.0852 0.1144 12406 +12408 2 199.06689090524404 -60.345725450034855 29.3821 0.1144 12407 +12409 2 200.06499661906628 -60.22470961358028 28.7602 0.1144 12408 +12410 2 201.05846057444592 -59.2740225220119 28.189 0.1144 12409 +12411 2 201.99923359564983 -59.03140682462425 27.6504 0.1144 12410 +12412 2 202.91704460158525 -58.744976597233894 27.1071 0.1144 12411 +12413 2 203.9340838448337 -58.91200179391375 26.4523 0.1144 12412 +12414 2 205.0207030179853 -58.84974340083161 25.6913 0.1144 12413 +12415 2 206.109135473492 -58.968997581059675 24.9114 0.1144 12414 +12416 2 207.1310524379455 -58.96974598675507 24.1255 0.1144 12415 +12417 2 208.0292018125399 -58.70435616473341 23.3207 0.1144 12416 +12418 2 208.49187867486233 -58.01172271215961 22.3275 0.1144 12417 +12419 2 209.3990586929056 -57.5075811550139 21.2625 0.1144 12418 +12420 2 210.4028974540807 -57.32438169654555 20.19 0.1144 12419 +12421 2 211.45299092520986 -57.422541770411414 19.3 0.1144 12420 +12422 2 212.56966735267247 -57.796617532788154 18.6913 0.1144 12421 +12423 2 213.70175738808587 -57.811897671862624 18.288 0.1144 12422 +12424 2 214.8162172093031 -57.95365526238685 17.9494 0.1144 12423 +12425 2 159.83580121008583 -91.67207528674118 41.2658 0.1144 12358 +12426 2 159.32693310189245 -92.37368433331264 41.2143 0.1144 12425 +12427 2 158.81640567753593 -93.07184528214721 41.2619 0.1144 12426 +12428 2 158.4437916679095 -94.46992825490429 41.225 0.1144 12427 +12429 2 158.4010496762475 -95.68052695694888 41.034 0.1144 12428 +12430 2 158.90323238677092 -96.06816003684477 40.9632 0.1144 12429 +12431 2 159.39735691795096 -97.25380265455681 40.8456 0.1144 12430 +12432 2 159.8707507431054 -98.42267052346843 40.3858 0.1144 12431 +12433 2 11.423441983881617 -381.15380326882774 47.1624 0.1144 10271 +12434 2 10.903004481214062 -379.9891400732375 47.5546 0.1144 12433 +12435 2 10.514413470227275 -378.6037826586933 47.8419 0.1144 12434 +12436 2 10.055138230547449 -377.36590391402734 48.1586 0.1144 12435 +12437 2 9.459774868355147 -377.0657235901454 48.5313 0.1144 12436 +12438 2 9.260309983318187 -376.1182664504353 48.9135 0.1144 12437 +12439 2 9.266025219819127 -374.8161581321136 49.2554 0.1144 12438 +12440 2 8.917225378157312 -373.447461022438 49.5547 0.1144 12439 +12441 2 8.377140461687212 -372.0335109893174 49.8744 0.1144 12440 +12442 2 8.144388002130981 -370.7428009152964 50.2076 0.1144 12441 +12443 2 7.769480905461016 -369.43853133148446 50.5862 0.1144 12442 +12444 2 7.106903486362313 -367.9469767142879 50.9188 0.1144 12443 +12445 2 6.235301654673627 -367.6085843330692 51.2201 0.1144 12444 +12446 2 5.670416912003816 -366.7122950564334 51.6622 0.1144 12445 +12447 2 5.610160150421336 -365.42218366357656 52.1332 0.1144 12446 +12448 2 5.468414672992957 -364.07205643423384 52.5067 0.1144 12447 +12449 2 5.198503410242772 -362.65841296607465 52.8464 0.1144 12448 +12450 2 4.9501076008244524 -361.28871242248255 53.1832 0.1144 12449 +12451 2 5.254329165882069 -360.2444156274852 53.4447 0.1144 12450 +12452 2 5.7002861101147815 -359.3855522825109 53.6567 0.1144 12451 +12453 2 5.669788182285949 -358.1098203096367 53.9694 0.1144 12452 +12454 2 5.237680849478551 -356.646751681847 54.2892 0.1144 12453 +12455 2 4.87613111326467 -355.2156495400782 54.5664 0.1144 12454 +12456 2 4.371721674850789 -354.30986345061723 54.8397 0.1144 12455 +12457 2 3.7774744319185416 -354.1246768493012 55.1947 0.1144 12456 +12458 2 3.2200218878857356 -352.6495166903543 55.5472 0.1144 12457 +12459 2 2.8703201609597215 -351.2221568226194 55.9115 0.1144 12458 +12460 2 2.6207760977808974 -349.85407115776223 56.4133 0.1144 12459 +12461 2 2.180164295372684 -348.34210930657105 56.7955 0.1144 12460 +12462 2 2.197710127343697 -347.11661573345515 57.136 0.1144 12461 +12463 2 2.6421570278716473 -346.22984993693973 57.5162 0.1144 12462 +12464 2 2.9059675513679295 -345.15579917373145 57.9788 0.1144 12463 +12465 2 2.6004461805469674 -343.77613592646526 58.4895 0.1144 12464 +12466 2 2.0537224249588846 -342.25436040189817 58.9646 0.1144 12465 +12467 2 2.102590192737644 -341.0663645581179 59.4507 0.1144 12466 +12468 2 2.1545156930560196 -339.8280312900343 59.9614 0.1144 12467 +12469 2 1.7008107209538252 -338.33491117746945 60.3865 0.1144 12468 +12470 2 1.114316027353027 -336.84559609535273 60.7261 0.1144 12469 +12471 2 0.5188120049151195 -336.845520668885 61.0487 0.1144 12470 +12472 2 0.06942223739478948 -335.69474481670557 61.4188 0.1144 12471 +12473 2 -0.1551782377556279 -334.2582308845772 61.7901 0.1144 12472 +12474 2 -0.3549313389865887 -332.8284311439655 62.109 0.1144 12473 +12475 2 -0.6830706627013754 -331.34297228772294 62.3837 0.1144 12474 +12476 2 -1.1687259603641778 -329.82204950902593 62.6321 0.1144 12475 +12477 2 -1.6319231727177481 -328.2954477082092 62.8653 0.1144 12476 +12478 2 -2.17263647894071 -326.7872844695377 63.1599 0.1144 12477 +12479 2 -2.4712343044807312 -325.842372000404 63.6185 0.1144 12478 +12480 2 -2.6756058312589204 -324.91474946061663 64.1248 0.1144 12479 +12481 2 -2.9170948166774977 -324.0434702397715 64.6699 0.1144 12480 +12482 2 -3.450005616802784 -322.90117300456194 65.1678 0.1144 12481 +12483 2 -4.210301738360805 -321.4740104484587 65.7866 0.1144 12482 +12484 2 -4.8037908578576065 -321.12392112614776 66.1982 0.1144 12483 +12485 2 -5.398666490542723 -320.32615207295316 66.5428 0.1144 12484 +12486 2 -5.99595095061369 -318.7898598685053 66.7383 0.1144 12485 +12487 2 -6.595015848317701 -317.2482935131827 66.8136 0.1144 12486 +12488 2 -7.342966914353276 -316.3017378217581 66.7097 0.1144 12487 +12489 2 -8.117120437510799 -316.00189706414926 66.488 0.1144 12488 +12490 2 -8.731326234887042 -315.2079763625457 66.2494 0.1144 12489 +12491 2 -9.30985655420698 -313.6752087226783 66.0108 0.1144 12490 +12492 2 -9.745615465759862 -312.1982536903133 65.756 0.1144 12491 +12493 2 -9.980377317627642 -311.09063520004526 65.506 0.1144 12492 +12494 2 -10.510482956875734 -310.6860994855502 65.2484 0.1144 12493 +12495 2 -11.208033197991078 -309.6167618997986 64.9132 0.1144 12494 +12496 2 -11.754128563826335 -308.1660754856734 64.6332 0.1144 12495 +12497 2 -12.02226249052655 -306.70920241370874 64.3821 0.1144 12496 +12498 2 -12.310302605858027 -305.249024323444 64.1178 0.1144 12497 +12499 2 -12.496818775566204 -303.83419675560725 63.8957 0.1144 12498 +12500 2 -12.533823399783849 -302.5250483132015 63.7098 0.1144 12499 +12501 2 -12.39675760487409 -301.3557284529379 63.5373 0.1144 12500 +12502 2 -12.743562774906962 -299.87690839252787 63.2814 0.1144 12501 +12503 2 -13.212640702943013 -298.3798710868378 62.9087 0.1144 12502 +12504 2 -13.355446832235629 -297.011782551166 62.627 0.1144 12503 +12505 2 -13.40559768449657 -295.7051123520293 62.41 0.1144 12504 +12506 2 -13.694448289076263 -294.7719182047965 62.2499 0.1144 12505 +12507 2 -14.047129356698633 -293.93064595087367 62.1292 0.1144 12506 +12508 2 -14.22910067460991 -292.9048429313126 62.0172 0.1144 12507 +12509 2 -14.055281620050437 -291.24801315948844 61.9136 0.1144 12508 +12510 2 -13.78862449642736 -289.5716302012874 61.8374 0.1144 12509 +12511 2 -13.678562331160379 -288.0828881637994 61.7873 0.1144 12510 +12512 2 -13.70844899896548 -286.7572044807069 61.7635 0.1144 12511 +12513 2 -13.82109996101326 -285.5375165482109 61.7492 0.1144 12512 +12514 2 -13.827590729624802 -284.1873909342909 61.7408 0.1144 12513 +12515 2 -13.58578718308732 -282.8131144176924 61.7957 0.1144 12514 +12516 2 -13.37004945230828 -281.68947116698257 61.9153 0.1144 12515 +12517 2 -13.513216679008565 -280.3255652693487 62.0298 0.1144 12516 +12518 2 -13.883896865529593 -278.9743896161736 62.1348 0.1144 12517 +12519 2 -14.278945308675489 -278.1527292068401 62.2182 0.1144 12518 +12520 2 -14.700406636841436 -277.3951310653031 62.2378 0.1144 12519 +12521 2 -15.098351636880452 -276.20873061037867 62.1874 0.1144 12520 +12522 2 -15.572026782526194 -274.7898828826604 62.088 0.1144 12521 +12523 2 -16.18578628964498 -273.5986803390994 61.9833 0.1144 12522 +12524 2 -17.097812782593067 -273.2345201961072 61.9007 0.1144 12523 +12525 2 -18.138991132688602 -272.322310645491 61.8554 0.1144 12524 +12526 2 -19.227122048369893 -271.44643854442154 61.8481 0.1144 12525 +12527 2 -20.252043379533134 -271.4751093024289 61.8965 0.1144 12526 +12528 2 -21.110819333872968 -270.13033733099957 61.9676 0.1144 12527 +12529 2 -21.805476119678303 -269.1535028392004 62.0298 0.1144 12528 +12530 2 -22.521281845474462 -267.64636695210453 62.1382 0.1144 12529 +12531 2 -23.183280831586572 -266.9895047206794 62.2913 0.1144 12530 +12532 2 -23.8137053102284 -265.8650536752866 62.4548 0.1144 12531 +12533 2 -24.618862827545726 -264.6937339624824 62.6184 0.1144 12532 +12534 2 -25.556239144603126 -264.9204234514231 62.8513 0.1144 12533 +12535 2 -26.268739668378828 -263.44058668371423 63.2912 0.1144 12534 +12536 2 -26.864637615261458 -261.9151344125544 63.6202 0.1144 12535 +12537 2 -27.29813146125717 -260.40698412024705 63.8019 0.1144 12536 +12538 2 -27.86348031645025 -259.17573636404285 63.8613 0.1144 12537 +12539 2 -28.460585778608888 -258.558077218305 63.8722 0.1144 12538 +12540 2 -28.75161074526639 -257.5144603988117 63.9498 0.1144 12539 +12541 2 -29.4581121370029 -255.96470648308343 64.1245 0.1144 12540 +12542 2 -30.0403823295012 -254.4389203468573 64.2608 0.1144 12541 +12543 2 -30.652810790827417 -253.4281337018678 64.409 0.1144 12542 +12544 2 -31.405724670514772 -253.04368324275129 64.5411 0.1144 12543 +12545 2 -32.15831889204419 -251.84009963309268 64.6556 0.1144 12544 +12546 2 -32.737607334799605 -250.31052675238737 64.7833 0.1144 12545 +12547 2 -33.23667305126783 -248.79020716427777 64.9247 0.1144 12546 +12548 2 -33.73497281932069 -247.27510536450302 65.0756 0.1144 12547 +12549 2 -34.234975657136616 -246.40829464445864 65.2305 0.1144 12548 +12550 2 -34.75537241309107 -245.80314085775797 65.3836 0.1144 12549 +12551 2 -35.46284956561567 -244.65950717353604 65.5354 0.1144 12550 +12552 2 -36.26987271341579 -243.73316926286148 65.672 0.1144 12551 +12553 2 -36.85597658415493 -243.28695952453518 65.7446 0.1144 12552 +12554 2 -37.31463746222802 -242.07840717831567 65.742 0.1144 12553 +12555 2 -37.77864516382979 -240.56777674342618 65.6824 0.1144 12554 +12556 2 -38.27178020784933 -239.0501552478297 65.5816 0.1144 12555 +12557 2 -38.79931204994537 -237.52975420752895 65.4553 0.1144 12556 +12558 2 -39.336057220848076 -236.02225303409227 65.3187 0.1144 12557 +12559 2 -39.88171481394231 -235.13404992180364 65.1762 0.1144 12558 +12560 2 -40.49124671837549 -234.82264971725232 65.0647 0.1144 12559 +12561 2 -41.173383256843806 -233.39255827393686 65.0261 0.1144 12560 +12562 2 -41.8843329902016 -232.3012262690568 65.0292 0.1144 12561 +12563 2 -42.7369250078936 -231.3952742359577 65.0619 0.1144 12562 +12564 2 -43.722355697562136 -230.8025750687438 65.1176 0.1144 12563 +12565 2 -44.68814818348113 -229.64954003068362 65.1384 0.1144 12564 +12566 2 -45.49461892432518 -228.9334674055225 65.0952 0.1144 12565 +12567 2 -45.65765330945342 -227.71190604237285 65.0124 0.1144 12566 +12568 2 -45.16520408837542 -226.26553878500965 64.8995 0.1144 12567 +12569 2 -44.71602233456399 -225.45861601173146 64.7335 0.1144 12568 +12570 2 -45.13922817174284 -224.00953682946636 64.589 0.1144 12569 +12571 2 -45.62403464249074 -223.03581403435828 64.4728 0.1144 12570 +12572 2 -46.10776643322839 -221.82347697048152 64.372 0.1144 12571 +12573 2 -46.59248771112652 -220.29854683942932 64.2779 0.1144 12572 +12574 2 -47.09053111339718 -219.36034967488325 64.1729 0.1144 12573 +12575 2 -47.626785453209564 -218.69847460273823 64.02 0.1144 12574 +12576 2 -48.17471121344403 -217.66109966110247 63.8061 0.1144 12575 +12577 2 -48.60111923752781 -216.16159088874494 63.5793 0.1144 12576 +12578 2 -48.888010406562145 -214.70024898249602 63.3791 0.1144 12577 +12579 2 -49.17396445424873 -213.23664930681548 63.2066 0.1144 12578 +12580 2 -49.471496117295004 -211.76654312201313 63.0664 0.1144 12579 +12581 2 -49.83509358348708 -210.27440815490422 62.9793 0.1144 12580 +12582 2 -50.273349616858724 -208.79081861482905 62.9527 0.1144 12581 +12583 2 -50.75851718501431 -208.0233850122632 62.9283 0.1144 12582 +12584 2 -51.30916050422961 -207.22603194410652 62.8527 0.1144 12583 +12585 2 -51.86220954924771 -206.12197320288513 62.729 0.1144 12584 +12586 2 -52.413660256128125 -204.59134205762282 62.5626 0.1144 12585 +12587 2 -52.96644200880101 -203.0677428015689 62.3596 0.1144 12586 +12588 2 -53.569337483162755 -201.95275489549854 62.1258 0.1144 12587 +12589 2 -54.250396240037716 -201.62421207194103 61.8708 0.1144 12588 +12590 2 -54.87908172029627 -200.44697760352477 61.6042 0.1144 12589 +12591 2 -55.40028586391581 -198.93402970830954 61.3306 0.1144 12590 +12592 2 -55.90143764802889 -197.4184095432387 61.0498 0.1144 12591 +12593 2 -56.40192821535207 -195.90178019364023 60.76 0.1144 12592 +12594 2 -56.90272751427018 -194.5545344685762 60.4587 0.1144 12593 +12595 2 -57.4032509086305 -193.78077405725108 60.144 0.1144 12594 +12596 2 -57.94855291494663 -193.2834642117611 59.8046 0.1144 12595 +12597 2 -58.65754252022255 -191.80685185004813 59.4124 0.1144 12596 +12598 2 -59.44358169779801 -190.8104272992449 58.9666 0.1144 12597 +12599 2 -60.15613217833996 -189.44470611427403 58.4982 0.1144 12598 +12600 2 -60.859331771412755 -188.44878573593024 58.011 0.1144 12599 +12601 2 -61.400297649298196 -187.79039461913874 57.5053 0.1144 12600 +12602 2 -61.73016745387976 -186.3348681150855 56.9834 0.1144 12601 +12603 2 -62.027073136219684 -184.89033284300442 56.4561 0.1144 12602 +12604 2 -62.18395641173724 -183.5242016646037 55.9272 0.1144 12603 +12605 2 -62.18023894844832 -182.2481125957248 55.4014 0.1144 12604 +12606 2 -62.169576323493004 -180.97422451064313 54.892 0.1144 12605 +12607 2 -62.1733909723735 -179.68997548916713 54.4118 0.1144 12606 +12608 2 -62.43032648747614 -178.28776032553066 53.9966 0.1144 12607 +12609 2 -63.08354991752259 -177.0793801270542 53.692 0.1144 12608 +12610 2 -63.89169228616589 -175.80871351140763 53.4965 0.1144 12609 +12611 2 -64.6892738430175 -175.10826911610388 53.3842 0.1144 12610 +12612 2 -65.38107551117953 -174.63985573499946 53.3324 0.1144 12611 +12613 2 -65.84426962194996 -173.21496251843712 53.3196 0.1144 12612 +12614 2 -66.17753533203144 -171.72237206603734 53.3268 0.1144 12613 +12615 2 -66.51124733237032 -170.22996647844565 53.3428 0.1144 12614 +12616 2 -66.84562054949909 -168.73807898852743 53.3646 0.1144 12615 +12617 2 -67.16930090680326 -167.25213472689757 53.396 0.1144 12616 +12618 2 -67.43984366088942 -165.78501795027174 53.4411 0.1144 12617 +12619 2 -67.62551961589548 -164.35973018164708 53.5024 0.1144 12618 +12620 2 -67.78695394637614 -162.94579863116604 53.5816 0.1144 12619 +12621 2 -68.06413002895063 -161.61503044013716 53.6976 0.1144 12620 +12622 2 -68.65035983925272 -161.382604880188 53.9003 0.1144 12621 +12623 2 -69.385404333724 -160.41562031094946 54.1797 0.1144 12622 +12624 2 -69.96682810835398 -158.89386897901335 54.4132 0.1144 12623 +12625 2 -70.45996315237349 -158.09348770153454 54.5504 0.1144 12624 +12626 2 -70.98931687135234 -157.52847533056934 54.6216 0.1144 12625 +12627 2 -71.84531299830894 -156.40253530129246 54.7901 0.1144 12626 +12628 2 -72.95742054854261 -155.70202429777166 55.1177 0.1144 12627 +12629 2 -74.08098429089229 -156.13012100050605 55.1824 0.1144 12628 +12630 2 -75.03101499861442 -155.3771688437189 55.0186 0.1144 12629 +12631 2 -75.36832551934948 -153.9018909671011 54.9564 0.1144 12630 +12632 2 -75.50668671037756 -152.50568841120628 55.0637 0.1144 12631 +12633 2 -76.08135942072094 -151.0645622056626 55.3115 0.1144 12632 +12634 2 -76.517193622534 -149.71925450852103 55.5234 0.1144 12633 +12635 2 -76.55865790569877 -148.3737840211108 55.5492 0.1144 12634 +12636 2 -76.59939999404826 -147.02537581386883 55.5979 0.1144 12635 +12637 2 -76.65223006762336 -145.67531626791427 55.7318 0.1144 12636 +12638 2 -76.70545406564315 -144.3260467584385 55.9549 0.1144 12637 +12639 2 -77.19190272282498 -143.1273777235704 56.2481 0.1144 12638 +12640 2 -77.9315851816192 -143.20460931119155 56.5995 0.1144 12639 +12641 2 -78.70034812764796 -141.70805859334158 56.9934 0.1144 12640 +12642 2 -79.46955736393419 -140.2140748070914 57.4112 0.1144 12641 +12643 2 -80.21591148888338 -138.77771035879994 57.9538 0.1144 12642 +12644 2 -80.91339395096676 -138.38569499843103 58.7941 0.1144 12643 +12645 2 -80.86003529506127 -138.04634612882694 59.631 0.1144 12644 +12646 2 -80.5767706679095 -136.24113076065146 60.7485 0.1144 12645 +12647 2 -80.3315527010698 -135.16319774197314 61.8153 0.1144 12646 +12648 2 -80.1342870980139 -134.0364921272121 62.6766 0.1144 12647 +12649 2 -79.9489280732249 -132.91630715296677 63.3898 0.1144 12648 +12650 2 -79.80281702085782 -131.75300379167004 64.0072 0.1144 12649 +12651 2 -79.77521592886812 -130.4877656848588 64.5714 0.1144 12650 +12652 2 -79.80487054041163 -129.17787587000052 65.1036 0.1144 12651 +12653 2 -79.8406707509363 -127.86449438718137 65.6452 0.1144 12652 +12654 2 -79.87722598331338 -126.55454686598213 66.2236 0.1144 12653 +12655 2 -79.90799361253382 -125.25592884740412 66.8758 0.1144 12654 +12656 2 -80.00441288914325 -123.95974546405301 67.7634 0.1144 12655 +12657 2 -80.54071307785041 -122.58508047773988 68.8125 0.1144 12656 +12658 2 -81.35510305430202 -121.68850322436955 69.7942 0.1144 12657 +12659 2 -82.18064849937596 -122.71886935150775 71.0898 0.1144 12658 +12660 2 -82.08717552364155 -122.95929007792232 72.1966 0.1144 12659 +12661 2 -81.86791986571441 -123.52374365870907 74.8017 0.1144 12660 +12662 2 -81.60885321559796 -123.40370798816897 77.4281 0.1144 12661 +12663 2 -81.1449658368195 -122.19075537565851 79.5514 0.1144 12662 +12664 2 -80.6404786049671 -121.61893121563911 81.1664 0.1144 12663 +12665 2 -80.68312467915106 -120.53350277730972 82.7548 0.1144 12664 +12666 2 -81.63025402957207 -120.55608201136454 84.1103 0.1144 12665 +12667 2 -82.4552666777698 -120.11346140003155 85.213 0.1144 12666 +12668 2 -83.32239343729204 -118.76979195084327 86.1288 0.1144 12667 +12669 2 -84.12948094878931 -117.35584595343975 86.9912 0.1144 12668 +12670 2 -84.7491940528042 -116.34130985526356 87.8763 0.1144 12669 +12671 2 -85.56079048747831 -116.47970216320033 88.6558 0.1144 12670 +12672 2 -86.38409116961164 -115.27982887825841 89.4149 0.1144 12671 +12673 2 -86.6924386251585 -114.09083438090599 90.2166 0.1144 12672 +12674 2 -86.9060720524364 -112.9287967460737 91.0493 0.1144 12673 +12675 2 -87.24777445308656 -111.74297696447115 91.9876 0.1144 12674 +12676 2 -87.64248713231878 -110.56305629096474 93.0213 0.1144 12675 +12677 2 -88.03523417283945 -109.39961551791977 94.1256 0.1144 12676 +12678 2 -88.04840743320163 -109.30403174459651 94.6915 0.1144 12677 +12679 2 -87.44926063418758 -108.98972003356124 96.1853 0.1144 12678 +12680 2 -86.74768800428619 -108.72353126214605 97.5472 0.1144 12679 +12681 2 -86.68650811469628 -107.77260386758637 98.8319 0.1144 12680 +12682 2 -86.81739776313246 -106.70432173051974 100.0392 0.1144 12681 +12683 2 -87.08086600065438 -105.57985632668245 101.1903 0.1144 12682 +12684 2 -87.52198845701717 -104.4081046307105 102.2605 0.1144 12683 +12685 2 -87.966991446804 -103.2301446185257 103.2763 0.1144 12684 +12686 2 -88.22710583360121 -102.30106543671548 104.8281 0.1144 12685 +12687 2 -88.48196279228712 -101.247155193245 106.2555 0.1144 12686 +12688 2 -88.4336932803593 -100.3382894782856 107.6452 0.1144 12687 +12689 2 -88.09404849515616 -99.58272553570373 108.9068 0.1144 12688 +12690 2 -87.80373879280558 -98.78272472109273 110.1422 0.1144 12689 +12691 2 -87.87477570235723 -97.79819016640668 111.4688 0.1144 12690 +12692 2 -88.29894358592976 -96.73632777015534 112.9285 0.1144 12691 +12693 2 -88.94388018372806 -96.04113041368751 114.6169 0.1144 12692 +12694 2 -89.84526407539141 -96.36497540012137 116.0726 0.1144 12693 +12695 2 -90.68389457538387 -95.39054944560019 117.3348 0.1144 12694 +12696 2 -91.44678672600485 -94.3252326935163 118.4952 0.1144 12695 +12697 2 -92.19640119838994 -93.32163818278337 119.5832 0.1144 12696 +12698 2 -92.7514202917646 -93.16149027543337 120.6976 0.1144 12697 +12699 2 -93.04229090146707 -92.29984985204014 121.8339 0.1144 12698 +12700 2 -93.24147377347617 -91.19341753859528 122.9536 0.1144 12699 +12701 2 -93.4314847559284 -90.09237030762156 124.0761 0.1144 12700 +12702 2 -93.64947413450132 -88.98836049497032 125.2222 0.1144 12701 +12703 2 -94.27051107485411 -87.992015972788 126.5331 0.1144 12702 +12704 2 -94.99096737838298 -87.03861556246986 128.0434 0.1144 12703 +12705 2 -95.19545083426304 -86.11609144140513 129.7789 0.1144 12704 +12706 2 -95.26500983461041 -85.15209149498041 131.2956 0.1144 12705 +12707 2 -95.28038909467783 -84.1257946750736 132.4212 0.1144 12706 +12708 2 -95.29224410063588 -83.07340075538416 133.3984 0.1144 12707 +12709 2 -95.31663097303057 -82.00106927395466 134.2788 0.1144 12708 +12710 2 -95.38356180981452 -80.91077740848984 135.1442 0.1144 12709 +12711 2 -95.93521133747157 -79.77741781810872 136.0892 0.1144 12710 +12712 2 -96.5023135979788 -79.3749855008202 137.0673 0.1144 12711 +12713 2 -97.06829663764289 -78.62395835685562 138.0582 0.1144 12712 +12714 2 -97.62590114726919 -77.5098065673655 139.1158 0.1144 12713 +12715 2 -98.11121347156372 -76.54371512830906 140.7896 0.1144 12714 +12716 2 -87.26597863411942 -104.02479945101013 103.8237 0.1144 12685 +12717 2 -86.58771201626382 -105.15943641721195 104.7766 0.1144 12716 +12718 2 -86.42692148875524 -106.29267932588196 105.4206 0.1144 12717 +12719 2 -86.4763498672548 -107.35404606361564 106.006 0.1144 12718 +12720 2 -86.45965938425927 -108.45612631451903 106.5333 0.1144 12719 +12721 2 -86.10983412681679 -109.68568677445852 106.9827 0.1144 12720 +12722 2 -85.59683192436928 -110.89637749694306 107.319 0.1144 12721 +12723 2 -85.06123880134683 -111.08849865184966 107.548 0.1144 12722 +12724 2 -84.52534555894216 -111.97064870999164 107.6771 0.1144 12723 +12725 2 -84.09216044454134 -113.24162914024718 107.595 0.1144 12724 +12726 2 -83.76705833796528 -114.48046672072661 107.2198 0.1144 12725 +12727 2 -83.47648345568501 -115.6939161849381 106.5795 0.1144 12726 +12728 2 -83.02259707662395 -116.9444361135848 105.7636 0.1144 12727 +12729 2 -83.19220394171711 -118.04491836160105 104.8603 0.1144 12728 +12730 2 -83.86944185225227 -118.56737830464856 104.0592 0.1144 12729 +12731 2 -84.54845709883739 -119.23383394722016 103.3012 0.1144 12730 +12732 2 -85.18507042635198 -121.49242588225151 102.0866 0.1144 12731 +12733 2 -88.42537416874491 -109.25846289609193 93.5158 0.1144 12677 +12734 2 -89.08720717880249 -109.11717761993627 92.3213 0.1144 12733 +12735 2 -89.78152269006445 -107.92069727014456 91.4816 0.1144 12734 +12736 2 -90.49420221175247 -106.69783007083993 90.8219 0.1144 12735 +12737 2 -91.22430172681587 -105.48597424198942 90.1802 0.1144 12736 +12738 2 -92.00624303538847 -105.12776794178042 89.7058 0.1144 12737 +12739 2 -92.81362728059634 -104.53070967828641 89.425 0.1144 12738 +12740 2 -93.62665846871504 -103.3132363035585 89.3183 0.1144 12739 +12741 2 -94.43934809820179 -102.10293541803487 89.3402 0.1144 12740 +12742 2 -95.25300767607335 -101.46455545386576 89.4387 0.1144 12741 +12743 2 -96.07490753278364 -101.11518109141463 89.5698 0.1144 12742 +12744 2 -96.94882748837881 -99.9442102311752 89.7148 0.1144 12743 +12745 2 -97.81776481943598 -98.76636648968089 89.8234 0.1144 12744 +12746 2 -98.66149127011953 -98.24181583488829 89.8652 0.1144 12745 +12747 2 -99.49728617355935 -97.78792548325488 89.8456 0.1144 12746 +12748 2 -100.33205876280155 -96.60460746774943 89.7831 0.1144 12747 +12749 2 -101.16683135204381 -96.78045965003113 89.6983 0.1144 12748 +12750 2 -102.00262625548363 -95.59394945817054 89.6274 0.1144 12749 +12751 2 -102.83802723447874 -94.41470917046297 89.5868 0.1144 12750 +12752 2 -103.67279982372096 -93.24538657529952 89.5812 0.1144 12751 +12753 2 -104.4920704158833 -93.37633977967879 89.6333 0.1144 12752 +12754 2 -105.57027713097553 -92.81449632218704 89.801 0.1144 12753 +12755 2 -106.581995671422 -92.60012009065673 90.8681 0.1144 12754 +12756 2 -82.82086945122968 -121.69473918416972 71.629 0.1144 12659 +12757 2 -83.76630394763043 -120.32779020000487 71.4762 0.1144 12756 +12758 2 -84.83248094470227 -120.1370981728005 71.1418 0.1144 12757 +12759 2 -85.96180766693625 -120.16752385236903 70.8341 0.1144 12758 +12760 2 -87.08290642196764 -119.19585575027105 70.5261 0.1144 12759 +12761 2 -88.10198709162505 -118.93807075705908 70.091 0.1144 12760 +12762 2 -88.85487152994698 -118.44761082550647 69.3874 0.1144 12761 +12763 2 -89.16373884950161 -117.05817882213117 68.357 0.1144 12762 +12764 2 -89.37495423934054 -115.90616718454362 67.2151 0.1144 12763 +12765 2 -89.72864771857076 -114.71157068433983 66.2978 0.1144 12764 +12766 2 -90.20390958325464 -113.45727268981024 65.6914 0.1144 12765 +12767 2 -90.70609229377796 -112.18372366510356 65.3635 0.1144 12766 +12768 2 -91.21539365325036 -110.90652639251688 65.3187 0.1144 12767 +12769 2 -91.73828994007002 -110.51147636521864 65.6177 0.1144 12768 +12770 2 -92.25066616181124 -109.92773522167629 66.2049 0.1144 12769 +12771 2 -92.66360760715712 -108.70299509965265 66.9312 0.1144 12770 +12772 2 -92.93217310343216 -107.51207759679623 67.6735 0.1144 12771 +12773 2 -93.0870877333513 -106.39736278488328 68.5952 0.1144 12772 +12774 2 -93.03863681446467 -105.46324372070364 69.9924 0.1144 12773 +12775 2 -92.66178319229017 -104.9475014445155 71.2754 0.1144 12774 +12776 2 -91.53870377609095 -104.01934728061575 71.6234 0.1144 12775 +12777 2 -90.40183743045938 -104.61538453530603 71.358 0.1144 12776 +12778 2 -89.27467006553191 -105.29306027895483 70.9276 0.1144 12777 +12779 2 -88.14782815348055 -104.58007924022505 70.6342 0.1144 12778 +12780 2 -87.01683841566003 -105.35043830108414 70.5331 0.1144 12779 +12781 2 -85.88571894415685 -106.13154219378734 70.6507 0.1144 12780 +12782 2 -84.75891536977214 -105.42061512811588 70.9223 0.1144 12781 +12783 2 -83.63621276597347 -106.19192380899723 71.2715 0.1144 12782 +12784 2 -82.55724753668288 -107.0259705011194 71.5873 0.1144 12783 +12785 2 -81.50307051449238 -106.63383881569787 71.8368 0.1144 12784 +12786 2 -80.44716542048164 -107.63605049713586 72.035 0.1144 12785 +12787 2 -79.3919629825105 -108.65236609818785 72.1991 0.1144 12786 +12788 2 -78.33524739925156 -108.14116799103002 72.3486 0.1144 12787 +12789 2 -77.27973622968544 -109.15445784806589 72.5063 0.1144 12788 +12790 2 -76.22422506011944 -110.17405749091617 72.6956 0.1144 12789 +12791 2 -75.10880238759063 -109.07869466303104 72.8966 0.1144 12790 +12792 2 -74.00423244247104 -109.42345473110606 73.127 0.1144 12791 +12793 2 -72.87478699012863 -109.98495142443171 73.5134 0.1144 12792 +12794 2 -71.76623241316996 -109.17360082570833 74.1482 0.1144 12793 +12795 2 -70.6809628006132 -109.4682532349267 74.9834 0.1144 12794 +12796 2 -69.6153984783013 -109.06567166083892 75.9685 0.1144 12795 +12797 2 -68.56844522744828 -109.75567221990579 77.0661 0.1144 12796 +12798 2 -69.43924408111688 -108.69978785939297 78.7346 0.1144 12797 +12799 2 -70.21366760743973 -107.76424608554792 80.3466 0.1144 12798 +12800 2 -70.97471905262385 -108.35284117598965 82.0106 0.1144 12799 +12801 2 -71.46257124604885 -107.45518667580973 83.7869 0.1144 12800 +12802 2 -71.14614707923553 -106.83791002827408 85.3742 0.1144 12801 +12803 2 -71.04346435602987 -106.09361158879534 87.0531 0.1144 12802 +12804 2 -71.94096902233123 -105.4430939382058 88.4551 0.1144 12803 +12805 2 -72.77852414977677 -105.35187380031762 89.7333 0.1144 12804 +12806 2 -72.51545902963191 -103.91492829002578 90.8684 0.1144 12805 +12807 2 -72.11902506246525 -102.95337757116312 91.9492 0.1144 12806 +12808 2 -71.57229198500723 -102.36096786945383 93.0143 0.1144 12807 +12809 2 -72.05157494239323 -102.1130943881378 94.9312 0.1144 12808 +12810 2 -72.97034518920603 -103.13370125956335 96.0299 0.1144 12809 +12811 2 -74.01127357178488 -103.1918004249533 96.845 0.1144 12810 +12812 2 -74.94615106819863 -102.2496372937589 97.5344 0.1144 12811 +12813 2 -75.55241300669488 -101.03910845762564 98.1098 0.1144 12812 +12814 2 -76.02420539212864 -100.2236196198732 98.6815 0.1144 12813 +12815 2 -76.56481568323603 -99.99378725479703 99.4207 0.1144 12814 +12816 2 -77.16720870740795 -98.76530916970886 100.06 0.1144 12815 +12817 2 -77.77936367322286 -97.52587826209782 100.5309 0.1144 12816 +12818 2 -78.39606900146437 -96.27853890843548 100.8742 0.1144 12817 +12819 2 -79.01419366993119 -95.03769369096078 101.1142 0.1144 12818 +12820 2 -79.71642090557265 -94.5783785656417 101.3197 0.1144 12819 +12821 2 -80.47039853870731 -93.9361212943095 101.5406 0.1144 12820 +12822 2 -81.10411349868693 -92.69295548826807 101.6977 0.1144 12821 +12823 2 -81.96570081707004 -91.55299647756259 101.8189 0.1144 12822 +12824 2 -83.04666071798954 -91.38286615640088 102.0116 0.1144 12823 +12825 2 -84.15117700121252 -91.18186867865069 102.2795 0.1144 12824 +12826 2 -85.26502875868542 -90.43914475558176 102.6312 0.1144 12825 +12827 2 -86.38118632842864 -90.57566568831312 103.0632 0.1144 12826 +12828 2 -87.49328436683561 -90.30469958936669 103.5591 0.1144 12827 +12829 2 -88.60400681861725 -89.61039654210839 104.0785 0.1144 12828 +12830 2 -89.71610485702418 -89.93300119614725 104.5867 0.1144 12829 +12831 2 -90.79769245515989 -89.3549148488851 105.0692 0.1144 12830 +12832 2 -91.69979342177197 -88.27209866261546 105.5166 0.1144 12831 +12833 2 -92.77003374429974 -88.0086115257891 105.8291 0.1144 12832 +12834 2 -93.88821852862027 -87.89020312642018 105.999 0.1144 12833 +12835 2 -93.94266356064682 -87.83580632554307 106.6685 0.1144 12834 +12836 2 -94.78865468612456 -87.0109786380118 108.2066 0.1144 12835 +12837 2 -95.75722530060187 -86.18131115727209 109.0001 0.1144 12836 +12838 2 -96.72057572365006 -86.34738020006834 109.8628 0.1144 12837 +12839 2 -97.67756562118463 -85.41760066044293 110.7646 0.1144 12838 +12840 2 -98.62407138226075 -84.49179960586423 111.7323 0.1144 12839 +12841 2 -99.46101725028129 -84.5041000673792 113.3048 0.1144 12840 +12842 2 -95.0386069027005 -87.12656207560994 105.9103 0.1144 12834 +12843 2 -95.93086684328969 -86.44820870631497 105.7171 0.1144 12842 +12844 2 -96.90488109324498 -86.27569681413699 105.4449 0.1144 12843 +12845 2 -97.97329603456585 -86.13724764093405 105.1414 0.1144 12844 +12846 2 -99.09464125278984 -85.84983690402751 104.6755 0.1144 12845 +12847 2 -100.17587866810277 -86.34786247390706 103.8579 0.1144 12846 +12848 2 -101.20681987146858 -86.90239297794362 103.1484 0.1144 12847 +12849 2 -102.28129080927572 -87.20545021757847 102.6228 0.1144 12848 +12850 2 -103.4020569019765 -86.5990928876112 102.1686 0.1144 12849 +12851 2 -104.5275091992564 -86.79443647544387 101.8133 0.1144 12850 +12852 2 -105.66311366320068 -86.55148157876935 101.5686 0.1144 12851 +12853 2 -106.80245179715708 -85.95306283366078 101.4034 0.1144 12852 +12854 2 -107.94325001805205 -86.56834745130205 101.2788 0.1144 12853 +12855 2 -109.0752333389264 -86.16969282208134 101.2057 0.1144 12854 +12856 2 -110.17908659986027 -85.9565521180998 101.2035 0.1144 12855 +12857 2 -111.26866210027153 -87.01663880168465 101.2463 0.1144 12856 +12858 2 -112.39003396005137 -86.63026760747411 101.1998 0.1144 12857 +12859 2 -113.47490042042531 -85.86476447396672 100.8759 0.1144 12858 +12860 2 -114.59261629181465 -86.54815759354491 100.4475 0.1144 12859 +12861 2 -115.70539808069594 -86.25536995352898 100.0835 0.1144 12860 +12862 2 -116.81894040205918 -85.9695087008578 99.7704 0.1144 12861 +12863 2 -117.93609286291822 -86.90351584160628 99.5168 0.1144 12862 +12864 2 -119.0541300793123 -86.61393737902854 99.3322 0.1144 12863 +12865 2 -120.17426428991419 -86.61754738545113 99.2006 0.1144 12864 +12866 2 -121.2938670174088 -87.26753770558373 99.0844 0.1144 12865 +12867 2 -122.41386366934817 -86.97714071191 98.9696 0.1144 12866 +12868 2 -123.5341799794454 -87.3055743999012 98.8548 0.1144 12867 +12869 2 -124.65417663138477 -87.62731841810614 98.7403 0.1144 12868 +12870 2 -125.77386455172922 -87.34519505158441 98.6255 0.1144 12869 +12871 2 -126.89391356948133 -87.97596013533567 98.5107 0.1144 12870 +12872 2 -128.01391022142064 -87.99283120738441 98.3959 0.1144 12871 +12873 2 -129.13417416570516 -87.70760964129789 98.2814 0.1144 12872 +12874 2 -130.25422318345727 -88.64582678798678 98.1669 0.1144 12873 +12875 2 -131.37391110380173 -88.35807992159599 98.0521 0.1144 12874 +12876 2 -132.4945361454939 -89.30696029403686 97.9376 0.1144 12875 +12877 2 -133.6145327974333 -89.01411430635048 97.823 0.1144 12876 +12878 2 -134.73422071777767 -88.81981449268028 97.7088 0.1144 12877 +12879 2 -135.85426973552973 -89.67525323645124 97.5946 0.1144 12878 +12880 2 -136.9739576558742 -89.38508494383954 97.4809 0.1144 12879 +12881 2 -138.09453033175367 -89.49644698142015 97.3675 0.1144 12880 +12882 2 -139.21457934950578 -90.04697608387802 97.2544 0.1144 12881 +12883 2 -140.33426726985016 -89.75223025258788 97.1418 0.1144 12882 +12884 2 -141.45426392178956 -90.17565706256943 97.0306 0.1144 12883 +12885 2 -142.573951842134 -90.4152181660407 96.9206 0.1144 12884 +12886 2 -143.69457688382613 -91.38193491332524 96.8125 0.1144 12885 +12887 2 -144.81462590157827 -91.08086879485458 96.707 0.1144 12886 +12888 2 -145.93525094327043 -90.77817881941854 96.605 0.1144 12887 +12889 2 -147.05488649780216 -91.74843193365255 96.5087 0.1144 12888 +12890 2 -148.17493551555424 -91.44429906642227 96.42 0.1144 12889 +12891 2 -149.29556055724646 -91.14080000195139 96.341 0.1144 12890 +12892 2 -150.4162707917884 -92.11295329760434 96.2746 0.1144 12891 +12893 2 -151.53202822194262 -92.22670126675216 96.2242 0.1144 12892 +12894 2 -152.54158191213807 -93.16325959409961 96.22 0.1144 12893 +12895 2 -153.53972536578655 -93.22900724220196 96.2536 0.1144 12894 +12896 2 -154.5379540122848 -93.41217657687922 96.3124 0.1144 12895 +12897 2 -155.5361498317461 -94.67126721337964 96.3819 0.1144 12896 +12898 2 -156.53437847824438 -94.99511056680619 96.448 0.1144 12897 +12899 2 -157.5325219318929 -96.12228492396339 96.4956 0.1144 12898 +12900 2 -158.53075057839118 -96.17295968027672 96.5124 0.1144 12899 +12901 2 -159.52889403203963 -96.22751296657466 96.4919 0.1144 12900 +12902 2 -160.55640919600367 -97.55920984761757 96.3634 0.1144 12901 +12903 2 -161.58829882606506 -97.74640614620505 96.1293 0.1144 12902 +12904 2 -162.61737709208316 -98.84589823493951 95.8157 0.1144 12903 +12905 2 -163.64446309551886 -98.79674941879632 95.4467 0.1144 12904 +12906 2 -164.6705596117941 -98.8132929681885 95.0454 0.1144 12905 +12907 2 -165.69469669252396 -100.08301918220491 94.6322 0.1144 12906 +12908 2 -166.7202171848591 -100.35174060050088 94.2276 0.1144 12907 +12909 2 -167.74537657978652 -101.39170646558462 93.8384 0.1144 12908 +12910 2 -168.77246258322225 -101.32651244769563 93.469 0.1144 12909 +12911 2 -169.80051853504276 -101.38016614099568 93.1232 0.1144 12910 +12912 2 -170.8607192235554 -102.54612207600903 92.8404 0.1144 12911 +12913 2 -171.9367429523791 -102.34936804935994 92.6274 0.1144 12912 +12914 2 -173.01490821624338 -102.35200365032698 92.4692 0.1144 12913 +12915 2 -174.0925826490174 -103.39881761550437 92.3504 0.1144 12914 +12916 2 -175.17110901028946 -103.86600677130089 92.258 0.1144 12915 +12917 2 -176.2502965883513 -104.45479055367555 92.1799 0.1144 12916 +12918 2 -177.32953653222592 -104.24471567155149 92.1043 0.1144 12917 +12919 2 -178.40872411028784 -104.83672395027472 92.0284 0.1144 12918 +12920 2 -179.4873356644096 -105.30151394450785 91.9512 0.1144 12919 +12921 2 -180.56652324247148 -106.38172910211696 91.8719 0.1144 12920 +12922 2 -181.6457108205334 -106.3633666020789 91.7902 0.1144 12921 +12923 2 -182.72392845021045 -106.14386706439213 91.705 0.1144 12922 +12924 2 -183.80248763851944 -107.35666204117227 91.6143 0.1144 12923 +12925 2 -184.88172758239412 -107.20673082467543 91.5166 0.1144 12924 +12926 2 -185.95989284625847 -108.50850423539235 91.4105 0.1144 12925 +12927 2 -187.02922708666134 -108.30489058760607 91.2909 0.1144 12926 +12928 2 -188.03387482765214 -108.27794054222367 91.1445 0.1144 12927 +12929 2 -189.03430047658694 -109.80082180458552 90.9731 0.1144 12928 +12930 2 -190.03533497649894 -109.77361823964124 90.7774 0.1144 12929 +12931 2 -191.03383401692548 -111.31390845666809 90.5598 0.1144 12930 +12932 2 -192.032333057352 -111.27923902062791 90.3106 0.1144 12931 +12933 2 -193.0304381733339 -111.24408739319152 90.0421 0.1144 12932 +12934 2 -193.63395663863582 -112.61957498297551 89.7042 0.1144 12933 +12935 2 -194.07225483859955 -114.19895845262918 89.329 0.1144 12934 +12936 2 -194.5085412372052 -114.96767128238984 88.9246 0.1144 12935 +12937 2 -194.92987735315054 -115.70329871457581 88.0785 0.1144 12936 +12938 2 -68.25954656689719 -109.86492981117247 76.0735 0.1144 12797 +12939 2 -67.4331286779244 -109.67184077035435 74.1994 0.1144 12938 +12940 2 -66.44106885662836 -108.98877876343232 72.9739 0.1144 12939 +12941 2 -65.39927623391534 -109.42969975202253 71.8794 0.1144 12940 +12942 2 -64.3702742524676 -109.68302469343494 70.7109 0.1144 12941 +12943 2 -63.33770347607772 -108.75706149918155 69.5738 0.1144 12942 +12944 2 -62.30251204735262 -109.17297059674416 68.4536 0.1144 12943 +12945 2 -61.27843583797379 -109.67082799724467 67.2269 0.1144 12944 +12946 2 -60.25893119895912 -108.65634786718924 65.9672 0.1144 12945 +12947 2 -59.236582368864006 -109.16766715821181 64.7195 0.1144 12946 +12948 2 -58.18069718670688 -109.66703189275152 63.6703 0.1144 12947 +12949 2 -57.10436572059858 -108.63124868795295 62.7598 0.1144 12948 +12950 2 -56.82957813996576 -108.2130359685015 61.9867 0.1144 12949 +12951 2 -56.525924081331866 -107.33906618588726 61.4048 0.1144 12950 +12952 2 -56.088959336207125 -106.58460322454452 61.0481 0.1144 12951 +12953 2 -55.43286457094452 -106.034645404137 61.087 0.1144 12952 +12954 2 -54.75573277710801 -104.8497153874074 61.4261 0.1144 12953 +12955 2 -54.0522609794651 -103.58725824485329 62.0138 0.1144 12954 +12956 2 -53.3180285492719 -103.1803252673871 62.7592 0.1144 12955 +12957 2 -52.54008848770955 -102.82555757540187 63.4315 0.1144 12956 +12958 2 -51.74142864668465 -101.89571478074745 63.9719 0.1144 12957 +12959 2 -50.93523979507343 -100.71334377835274 64.3952 0.1144 12958 +12960 2 -50.125399364716756 -100.36472326112661 64.7242 0.1144 12959 +12961 2 -49.31359949881471 -100.01037226560194 64.9821 0.1144 12960 +12962 2 -48.500553779970005 -98.6548565014162 65.1991 0.1144 12961 +12963 2 -47.68773159987046 -97.9053827178011 65.408 0.1144 12962 +12964 2 -46.832165533620426 -97.60340072506762 65.5892 0.1144 12963 +12965 2 -45.944563256423365 -97.35552982443991 65.7395 0.1144 12964 +12966 2 -45.05120620310687 -95.761132672201 65.8871 0.1144 12965 +12967 2 -44.16462624010741 -95.50537556577963 66.0806 0.1144 12966 +12968 2 -43.361151845893886 -95.14098042167298 66.5384 0.1144 12967 +12969 2 -42.609856725613184 -94.25478867324945 67.3081 0.1144 12968 +12970 2 -41.891123190916744 -92.98702148528415 68.2637 0.1144 12969 +12971 2 -41.24060930604304 -92.49528355622999 69.2902 0.1144 12970 +12972 2 -41.033187836899444 -91.50931512863497 70.196 0.1144 12971 +12973 2 -40.985448500016886 -90.2443817665379 70.8949 0.1144 12972 +12974 2 -40.9375709119352 -89.00877143362796 71.797 0.1144 12973 +12975 2 -56.52892546398233 -108.99944164961819 62.2107 0.1144 12949 +12976 2 -55.42148459723717 -109.71454317436356 62.5411 0.1144 12975 +12977 2 -54.28971381153379 -109.28658520827315 62.8463 0.1144 12976 +12978 2 -53.15540756634495 -109.64341284280134 63.1266 0.1144 12977 +12979 2 -52.02269965929378 -110.37950168558258 63.4192 0.1144 12978 +12980 2 -50.88389170038268 -109.42604088489009 63.6289 0.1144 12979 +12981 2 -49.77263226684232 -109.80006572182067 63.686 0.1144 12980 +12982 2 -48.6665522780179 -110.14538396222343 63.6054 0.1144 12981 +12983 2 -47.56742906995947 -108.92062930313531 63.5337 0.1144 12982 +12984 2 -46.47655224920972 -109.19839185591913 63.5975 0.1144 12983 +12985 2 -45.38875408484837 -109.47546742753705 63.7857 0.1144 12984 +12986 2 -44.33494235692632 -108.21522589641731 64.5053 0.1144 12985 +12987 2 -81.03513112996933 -138.34055968895348 58.8235 0.1144 12644 +12988 2 -81.60510151229265 -137.35413992063653 58.6659 0.1144 12987 +12989 2 -82.1757002843688 -135.81994580410048 58.5578 0.1144 12988 +12990 2 -82.74786456754558 -134.38549354707845 58.4545 0.1144 12989 +12991 2 -83.31895417071203 -132.86953790720506 58.3408 0.1144 12990 +12992 2 -83.89018133254105 -131.31614920432006 58.2246 0.1144 12991 +12993 2 -84.46140849437009 -130.82680210637048 58.1118 0.1144 12992 +12994 2 -85.03352041173409 -130.05740843207906 58.0084 0.1144 12993 +12995 2 -85.5230976820706 -128.52643029965583 57.9208 0.1144 12994 +12996 2 -85.95788113460908 -127.02954136327847 57.8584 0.1144 12995 +12997 2 -86.46781088383436 -125.53695299188543 57.8416 0.1144 12996 +12998 2 -86.99489643567291 -123.99344091707992 57.8542 0.1144 12997 +12999 2 -87.41029735770753 -122.46481830240675 57.8438 0.1144 12998 +13000 2 -87.06953065852615 -121.48966188295273 57.6366 0.1144 12999 +13001 2 -86.62312432245285 -120.59667261446471 57.2499 0.1144 13000 +13002 2 -86.53457080951122 -119.41906287928552 56.9388 0.1144 13001 +13003 2 -86.59246870047402 -118.06870991774032 56.6149 0.1144 13002 +13004 2 -86.7343962773978 -116.69496448216964 56.2654 0.1144 13003 +13005 2 -86.94973415951196 -115.48414719267667 56.037 0.1144 13004 +13006 2 -87.17795097732427 -114.26609136453946 55.93 0.1144 13005 +13007 2 -87.40616779513658 -113.04984430010545 55.8978 0.1144 13006 +13008 2 -87.53566892978584 -111.87597909636031 55.9056 0.1144 13007 +13009 2 -87.33543388862326 -110.9011641941918 55.9647 0.1144 13008 +13010 2 -86.11577001326407 -111.67596748926864 55.8575 0.1144 13009 +13011 2 -84.97529283560021 -110.98508139083377 55.6492 0.1144 13010 +13012 2 -83.83820915438974 -111.39327477249739 55.3554 0.1144 13011 +13013 2 -82.70434478981332 -112.00835460652084 54.994 0.1144 13012 +13014 2 -81.6710977741772 -110.62510443940548 54.5672 0.1144 13013 +13015 2 -80.95189433223932 -110.21184875727526 54.0882 0.1144 13014 +13016 2 -80.56340491648919 -109.41438601229929 53.536 0.1144 13015 +13017 2 -80.25962112417263 -108.54024124449913 52.9357 0.1144 13016 +13018 2 -80.12028716212254 -107.53625028232555 52.3516 0.1144 13017 +13019 2 -80.45376710619988 -106.30491648320614 51.8893 0.1144 13018 +13020 2 -80.94150847150752 -105.04256789970383 51.5278 0.1144 13019 +13021 2 -81.73650771369054 -103.83026027760441 51.2134 0.1144 13020 +13022 2 -82.56931776580439 -103.68209335114177 50.9345 0.1144 13021 +13023 2 -83.40400206061375 -102.88054056693404 50.6752 0.1144 13022 +13024 2 -84.22589881574093 -101.6771785052194 50.3835 0.1144 13023 +13025 2 -84.89480393331611 -100.43915805489503 50.0178 0.1144 13024 +13026 2 -85.3525806474234 -100.1596519484563 49.8618 0.1144 13025 +13027 2 -86.45749326413764 -100.73977192528223 49.6171 0.1144 13026 +13028 2 -87.49973226609741 -99.74847582849164 49.4788 0.1144 13027 +13029 2 -88.47879691962274 -98.6737119551061 49.4001 0.1144 13028 +13030 2 -89.33467941865251 -98.70853477704378 49.3702 0.1144 13029 +13031 2 -90.10985835759072 -97.66716608910471 49.3587 0.1144 13030 +13032 2 -90.88566568628173 -96.45468121246793 49.331 0.1144 13031 +13033 2 -91.72743270142 -95.28313904191177 49.3511 0.1144 13032 +13034 2 -92.56745520754535 -95.00805107301294 49.4253 0.1144 13033 +13035 2 -93.27106585479203 -94.21709934757627 49.5197 0.1144 13034 +13036 2 -93.73987408143643 -92.97417128077376 49.6255 0.1144 13035 +13037 2 -93.97357217985686 -91.77429950999596 49.845 0.1144 13036 +13038 2 -94.16298490645818 -90.58641627103535 50.0909 0.1144 13037 +13039 2 -94.55758395776355 -89.3573757724832 50.286 0.1144 13038 +13040 2 -95.3450096485274 -88.20288980226265 50.4409 0.1144 13039 +13041 2 -96.24854708509395 -88.19752418351666 50.5618 0.1144 13040 +13042 2 -97.28073013449841 -87.38424654689814 50.6601 0.1144 13041 +13043 2 -98.03902607379801 -86.2071034665065 50.7424 0.1144 13042 +13044 2 -98.75875067068485 -85.01752868006531 50.8603 0.1144 13043 +13045 2 -99.56471006503762 -84.87829655202921 51.0306 0.1144 13044 +13046 2 -100.43105957079668 -83.94708771041319 51.235 0.1144 13045 +13047 2 -101.23661411414177 -83.20490183136731 51.4478 0.1144 13046 +13048 2 -101.84659230883244 -82.75149133855122 51.6354 0.1144 13047 +13049 2 -102.35923651545541 -81.51873215530983 51.8045 0.1144 13048 +13050 2 -102.68568369597 -80.29886747787396 52.0019 0.1144 13049 +13051 2 -102.97448193473691 -79.08695147009796 52.2222 0.1144 13050 +13052 2 -102.99848719432299 -77.95157267273085 52.4014 0.1144 13051 +13053 2 -102.91359826429955 -76.86077533470316 52.5274 0.1144 13052 +13054 2 -102.79771015820936 -75.78314978371132 52.6078 0.1144 13053 +13055 2 -102.78089952522645 -74.65765742997877 52.6453 0.1144 13054 +13056 2 -102.62138967315349 -73.59920826525361 52.645 0.1144 13055 +13057 2 -102.47439765937104 -72.53041582178852 52.621 0.1144 13056 +13058 2 -102.55132318659624 -71.36622655611313 52.5868 0.1144 13057 +13059 2 -102.70421401727292 -70.18047190316165 52.5157 0.1144 13058 +13060 2 -102.86667066195115 -68.99369613101976 52.4082 0.1144 13059 +13061 2 -102.97416551217825 -67.82072442381401 52.3183 0.1144 13060 +13062 2 -103.06387306845609 -66.65292741256306 52.2508 0.1144 13061 +13063 2 -103.24869709496417 -65.4622354297822 52.204 0.1144 13062 +13064 2 -103.48297431890782 -64.2635469763564 52.1766 0.1144 13063 +13065 2 -103.91642672565379 -63.057389224476005 52.166 0.1144 13064 +13066 2 -104.62662143715917 -61.92351279029855 52.1651 0.1144 13065 +13067 2 -105.63102050157451 -61.64827608821194 52.1651 0.1144 13066 +13068 2 -106.54577996672269 -60.90613632355141 52.1651 0.1144 13067 +13069 2 -85.10808267913683 -100.15077751717561 49.3511 0.1144 13025 +13070 2 -85.76117606174894 -99.65947715944407 48.1698 0.1144 13069 +13071 2 -86.48026847476324 -99.24224710535997 47.6073 0.1144 13070 +13072 2 -87.33516389567906 -98.08375218799385 47.1859 0.1144 13071 +13073 2 -87.98629033151762 -96.86337104821612 46.7292 0.1144 13072 +13074 2 -87.79285530511957 -95.92638836292917 46.1874 0.1144 13073 +13075 2 -87.51188587742683 -94.99867046812746 45.747 0.1144 13074 +13076 2 -87.41198508887719 -93.94056409667786 45.4507 0.1144 13075 +13077 2 -87.58767866507819 -92.75460228543254 45.2088 0.1144 13076 +13078 2 -87.50212851826487 -91.6815075099542 45.1167 0.1144 13077 +13079 2 -86.99455001661418 -90.92344150357384 45.213 0.1144 13078 +13080 2 -86.56854921777891 -89.9256659781319 45.453 0.1144 13079 +13081 2 -86.17896081249792 -88.26149395026079 45.7744 0.1144 13080 +13082 2 -85.71540108285772 -87.18326750028152 46.1664 0.1144 13081 +13083 2 -85.17339805827513 -86.52324958726888 47.117 0.1144 13082 +13084 2 -87.88267750821902 -109.6720073793441 56.4334 0.1144 13009 +13085 2 -88.28333696565572 -108.5880673686628 56.5278 0.1144 13084 +13086 2 -88.56189956141847 -107.84967329794362 56.588 0.1144 13085 +13087 2 -88.82789505466111 -107.08124589419526 56.6829 0.1144 13086 +13088 2 -89.05650579691816 -106.24063048371163 56.8523 0.1144 13087 +13089 2 -89.26530415560643 -105.04204303109417 57.0119 0.1144 13088 +13090 2 -89.47316539294691 -103.83328226928597 56.9237 0.1144 13089 +13091 2 -89.67259263285382 -102.65018155287835 56.3926 0.1144 13090 +13092 2 -90.14741061632672 -101.4299286286558 55.6982 0.1144 13091 +13093 2 -90.79965006984223 -100.21278334827196 55.0572 0.1144 13092 +13094 2 -91.18207525053562 -98.99878269098032 54.4779 0.1144 13093 +13095 2 -91.18669728708126 -97.90369397691524 54.0445 0.1144 13094 +13096 2 -91.44636198026429 -96.69957230079565 53.7541 0.1144 13095 +13097 2 -91.95165617421316 -95.45861100787883 53.536 0.1144 13096 +13098 2 -92.62064958622123 -95.24431343765819 53.305 0.1144 13097 +13099 2 -93.35556744859304 -94.34457784806641 53.0788 0.1144 13098 +13100 2 -94.17960573876091 -93.17114457060276 52.8917 0.1144 13099 +13101 2 -95.22874777060068 -92.23905837772182 52.7414 0.1144 13100 +13102 2 -95.5284062480049 -91.19225186373593 52.6201 0.1144 13101 +13103 2 -95.5567274047095 -90.02071549324548 52.5392 0.1144 13102 +13104 2 -95.64426059890953 -88.93197605155083 52.4087 0.1144 13103 +13105 2 -96.20488009376369 -88.62111366396849 52.1651 0.1144 13104 +13106 2 -86.51393853097758 -120.64667979303718 56.6328 0.1144 13001 +13107 2 -85.45161202241711 -121.17005578475997 55.7519 0.1144 13106 +13108 2 -84.33561332594823 -119.82398151426152 55.3515 0.1144 13107 +13109 2 -83.25074385298045 -120.2158981321804 54.9214 0.1144 13108 +13110 2 -82.20739092802285 -120.44027734321105 54.4771 0.1144 13109 +13111 2 -81.18325384729293 -118.67700005731149 54.0436 0.1144 13110 +13112 2 -80.22495772290182 -118.65278506851742 53.6556 0.1144 13111 +13113 2 -79.22823601852518 -118.72990669919113 53.3226 0.1144 13112 +13114 2 -78.17948700580922 -117.08178740890915 53.0286 0.1144 13113 +13115 2 -77.12856363101545 -117.26236120207156 52.7629 0.1144 13114 +13116 2 -76.07607474512113 -117.5001104258306 52.5168 0.1144 13115 +13117 2 -75.01721913054702 -116.02710890093067 52.2824 0.1144 13116 +13118 2 -74.05045497973326 -117.15934433880305 51.9445 0.1144 13117 +13119 2 -73.1307820541523 -118.46441890188851 51.0432 0.1144 13118 +13120 2 -28.38110253715982 -256.703192620574 62.9773 0.1144 12540 +13121 2 -27.69263849017169 -255.3662356160769 61.668 0.1144 13120 +13122 2 -26.85533203415889 -255.16616281936683 60.8199 0.1144 13121 +13123 2 -25.93262068434467 -255.13467358228849 60.027 0.1144 13122 +13124 2 -24.983530300520783 -253.72423097812157 59.1968 0.1144 13123 +13125 2 -23.972080437492693 -253.572204473508 58.2439 0.1144 13124 +13126 2 -23.233150799146046 -252.51223559792027 56.9246 0.1144 13125 +13127 2 -23.01041033773889 -252.2072101423181 54.7845 0.1144 13126 +13128 2 -22.238242466113846 -251.9088594721295 53.8328 0.1144 13127 +13129 2 -21.7389771245155 -250.69772716387877 53.3383 0.1144 13128 +13130 2 -22.0003185476794 -249.59966329757486 52.449 0.1144 13129 +13131 2 -22.636518619615316 -248.67771910434266 50.9617 0.1144 13130 +13132 2 -22.771465502158136 -249.5852304927402 49.677 0.1144 13131 +13133 2 -22.09086914129648 -250.93229881749147 48.7236 0.1144 13132 +13134 2 -21.388078193351078 -251.65096047118965 47.9503 0.1144 13133 +13135 2 -20.81789357703191 -253.15221097015677 47.416 0.1144 13134 +13136 2 -20.263549414841492 -254.25009013603557 47.0716 0.1144 13135 +13137 2 -19.520840665471596 -254.99854565191242 46.7208 0.1144 13136 +13138 2 -18.491154737885935 -255.88259104526458 46.3523 0.1144 13137 +13139 2 -17.45618055575042 -256.7319968904099 45.9603 0.1144 13138 +13140 2 -16.388079359216846 -256.71182711897643 45.5487 0.1144 13139 +13141 2 -15.327249588414716 -256.6875066414828 45.1248 0.1144 13140 +13142 2 -14.299201840358975 -255.37019513035438 44.3122 0.1144 13141 +13143 2 -23.704431435347544 -252.52391843989375 56.287 0.1144 13126 +13144 2 -24.428379840800247 -251.2412009030038 55.7606 0.1144 13143 +13145 2 -25.00097948767153 -250.12016014608173 55.5307 0.1144 13144 +13146 2 -25.58155753696967 -249.606723091098 55.5601 0.1144 13145 +13147 2 -26.0956789602603 -248.617232722016 55.8522 0.1144 13146 +13148 2 -26.1911227778553 -247.31863224396977 56.6387 0.1144 13147 +13149 2 -26.017955037496037 -246.2071558418756 57.6279 0.1144 13148 +13150 2 -25.939252453166887 -244.82432233504323 58.2263 0.1144 13149 +13151 2 -25.944850641263557 -243.48673603423958 58.4892 0.1144 13150 +13152 2 -25.609474519210934 -241.98660104383967 58.5796 0.1144 13151 +13153 2 -24.860459877706646 -240.38157606956418 58.5698 0.1144 13152 +13154 2 -23.864944996069426 -240.00918373034358 58.5178 0.1144 13153 +13155 2 -22.757390199623842 -239.8876401503164 58.4926 0.1144 13154 +13156 2 -21.630114007177568 -239.55813557973843 58.5208 0.1144 13155 +13157 2 -20.491409063382008 -239.60016829403904 58.6174 0.1144 13156 +13158 2 -19.349739783661363 -239.95091680166757 58.7121 0.1144 13157 +13159 2 -18.25655034963468 -239.45548586060622 58.7924 0.1144 13158 +13160 2 -17.362564515802404 -239.15553973177538 59.1321 0.1144 13159 +13161 2 -16.754904445018212 -240.0939420629502 59.3737 0.1144 13160 +13162 2 -15.877779893471654 -241.30564803692153 59.4908 0.1144 13161 +13163 2 -14.873562928551678 -240.89101434298078 59.5851 0.1144 13162 +13164 2 -13.85451921148777 -242.18029569678657 59.6635 0.1144 13163 +13165 2 -12.827409490100678 -243.45764212609993 59.7307 0.1144 13164 +13166 2 -11.813081105229557 -243.18348550577355 59.8349 0.1144 13165 +13167 2 -10.85045246854881 -244.18752190617755 60.0135 0.1144 13166 +13168 2 -9.87624380746189 -244.97210824028747 60.2174 0.1144 13167 +13169 2 -8.841613593004922 -244.873294287663 60.4128 0.1144 13168 +13170 2 -7.726281925729168 -245.773979965237 60.5377 0.1144 13169 +13171 2 -6.694324516635788 -245.57892835806513 60.6057 0.1144 13170 +13172 2 -5.643092410247121 -244.3096384030345 60.5374 0.1144 13171 +13173 2 -4.532576379459556 -244.1427876580113 60.2182 0.1144 13172 +13174 2 -3.4246858191002048 -243.45385907149648 59.6966 0.1144 13173 +13175 2 -2.3302056775462603 -243.99027169924423 59.0366 0.1144 13174 +13176 2 -1.2424885981633338 -243.7996640250571 58.2985 0.1144 13175 +13177 2 -0.15950087911929245 -243.14667848830155 57.5274 0.1144 13176 +13178 2 0.9260746652229699 -243.68735294164208 56.7736 0.1144 13177 +13179 2 2.017264325439058 -243.3782296125811 56.0703 0.1144 13178 +13180 2 3.111433326351573 -242.8664900209502 55.4322 0.1144 13179 +13181 2 4.053244679083846 -243.37962026454454 54.924 0.1144 13180 +13182 2 4.5360034198535715 -244.57641656842682 54.6627 0.1144 13181 +13183 2 4.938528507773114 -246.05166212287156 54.5485 0.1144 13182 +13184 2 5.2471586688844525 -247.45379234760043 54.5664 0.1144 13183 +13185 2 5.746326394179945 -248.26796787352828 54.558 0.1144 13184 +13186 2 6.665775378274674 -248.50887035567075 53.9174 0.1144 13185 +13187 2 7.394316893465657 -249.11807027283805 53.0074 0.1144 13186 +13188 2 8.116248697152301 -249.95983182983838 52.0318 0.1144 13187 +13189 2 8.911016699405351 -249.15456403601178 51.0983 0.1144 13188 +13190 2 9.175165395861882 -247.53370928729407 50.1421 0.1144 13189 +13191 2 9.003241826741174 -246.52768929857712 49.0857 0.1144 13190 +13192 2 9.330105275428295 -245.12192212051002 48.0872 0.1144 13191 +13193 2 9.579981509207414 -244.71949550306934 46.3529 0.1144 13192 +13194 2 9.77365668381492 -245.72679962772753 44.8879 0.1144 13193 +13195 2 10.605687090804068 -247.05381679508764 43.9396 0.1144 13194 +13196 2 11.607159464424413 -248.22276303129263 43.1864 0.1144 13195 +13197 2 12.585850708905895 -248.1108180620721 42.5762 0.1144 13196 +13198 2 13.34792416651392 -249.04829862175376 41.9602 0.1144 13197 +13199 2 13.269041891735867 -250.21778183743675 41.3126 0.1144 13198 +13200 2 13.79552197826905 -251.63902793167256 40.6445 0.1144 13199 +13201 2 14.789434816638163 -251.5789443486649 39.2641 0.1144 13200 +13202 2 -6.7121144594500635 -316.2396214399298 68.3337 0.1144 12487 +13203 2 -7.375878469975952 -314.77611355302986 68.8201 0.1144 13202 +13204 2 -8.203171312861471 -314.63592688009146 69.1634 0.1144 13203 +13205 2 -8.699290515670413 -313.72844884533697 69.4966 0.1144 13204 +13206 2 -9.160886288303224 -312.2453330202431 69.8874 0.1144 13205 +13207 2 -9.662619606985999 -310.7342719027155 70.3035 0.1144 13206 +13208 2 -10.417302305206768 -310.4758027229146 70.7638 0.1144 13207 +13209 2 -11.21323246557138 -309.6685816615421 71.2678 0.1144 13208 +13210 2 -11.846715369289427 -308.2138221402056 71.7959 0.1144 13209 +13211 2 -12.346885585918109 -306.72184282078615 72.4052 0.1144 13210 +13212 2 -12.675688535469298 -305.2646488714387 72.9529 0.1144 13211 +13213 2 -12.90077674012688 -303.8483759856338 73.4012 0.1144 13212 +13214 2 -12.895998624973757 -302.5560958404846 73.7307 0.1144 13213 +13215 2 -12.816018053201425 -301.31309576619833 73.9505 0.1144 13214 +13216 2 -12.891736065150603 -299.95684410148203 74.088 0.1144 13215 +13217 2 -13.296005662083012 -298.4535459627851 74.1891 0.1144 13216 +13218 2 -13.699146828119261 -297.70238138691775 74.2913 0.1144 13217 +13219 2 -13.39403268254678 -295.97302546232874 74.366 0.1144 13218 +13220 2 -13.26306563143497 -294.806781107993 74.3719 0.1144 13219 +13221 2 -13.549733261724214 -293.53230097898927 74.3618 0.1144 13220 +13222 2 -13.856221887794845 -292.62006184308393 74.4047 0.1144 13221 +13223 2 -13.873306295235153 -291.2979712068341 74.5195 0.1144 13222 +13224 2 -13.947551908609654 -290.07043864639775 74.6208 0.1144 13223 +13225 2 -14.141947259748946 -288.9794802191866 74.65 0.1144 13224 +13226 2 -14.37239321449826 -288.0108216848151 74.5721 0.1144 13225 +13227 2 -14.830701607376355 -286.8060352534113 74.4313 0.1144 13226 +13228 2 -15.023712854373827 -285.5021085198404 74.333 0.1144 13227 +13229 2 -15.1388633472868 -284.1355636977788 74.3453 0.1144 13228 +13230 2 -15.28595013761435 -282.7437596313563 74.4142 0.1144 13229 +13231 2 -15.444901374422358 -281.3411101154755 74.4965 0.1144 13230 +13232 2 -15.651379200157635 -279.9155464115153 74.5833 0.1144 13231 +13233 2 -15.614824246726599 -278.65749121295795 74.655 0.1144 13232 +13234 2 -15.544197664006504 -277.414852166488 74.7222 0.1144 13233 +13235 2 -15.666698169593616 -276.0432000246789 74.8023 0.1144 13234 +13236 2 -15.896428132693757 -274.63172148415305 74.8552 0.1144 13235 +13237 2 -15.995538942253475 -273.2730256554353 74.8756 0.1144 13236 +13238 2 -16.034649865428207 -271.94408703521077 74.8689 0.1144 13237 +13239 2 -15.807190757460774 -270.84657336570814 74.9535 0.1144 13238 +13240 2 -15.673341870138586 -269.65467369079823 75.1117 0.1144 13239 +13241 2 -15.534763622477541 -268.4678190295047 75.3234 0.1144 13240 +13242 2 -15.72555976068405 -267.0668208407589 75.5353 0.1144 13241 +13243 2 -16.088581202936098 -265.5884443282524 75.7117 0.1144 13242 +13244 2 -16.26289136753185 -264.22221645449275 75.8988 0.1144 13243 +13245 2 -16.628809366676933 -263.2832813157184 76.0578 0.1144 13244 +13246 2 -17.037755958135463 -262.4056660497415 76.1734 0.1144 13245 +13247 2 -17.417393107680866 -260.92622114256255 76.2538 0.1144 13246 +13248 2 -17.36841171197534 -259.6564053587918 76.3157 0.1144 13247 +13249 2 -17.75232883001908 -258.16056050067215 76.3652 0.1144 13248 +13250 2 -17.67184960217655 -256.9174932655428 76.4086 0.1144 13249 +13251 2 -18.1589766058775 -255.42036997665014 76.4604 0.1144 13250 +13252 2 -18.053911093294502 -254.18109943193997 76.531 0.1144 13251 +13253 2 -18.050425686267204 -252.87931903409185 76.6256 0.1144 13252 +13254 2 -17.8601165622036 -251.42465816556103 76.634 0.1144 13253 +13255 2 -17.64887682803844 -250.29291752630695 76.7931 0.1144 13254 +13256 2 -17.157429405757043 -249.0683408630718 76.9507 0.1144 13255 +13257 2 -16.871160796951557 -247.53291834972356 77.1131 0.1144 13256 +13258 2 -16.746803457344143 -246.1053504314429 77.2878 0.1144 13257 +13259 2 -16.814374995517085 -244.79830008810114 77.5074 0.1144 13258 +13260 2 -17.053634843998708 -243.66788227055235 77.7932 0.1144 13259 +13261 2 -16.834835183819322 -243.04459426058565 78.0363 0.1144 13260 +13262 2 -16.610434500928136 -241.97719749414443 78.5708 0.1144 13261 +13263 2 -16.93704595867237 -240.60037363751525 79.0885 0.1144 13262 +13264 2 -17.41085324704723 -239.72619061696292 79.5847 0.1144 13263 +13265 2 -17.783263914435054 -238.64409046647523 80.0058 0.1144 13264 +13266 2 -18.43920490346231 -237.1638361730043 80.3426 0.1144 13265 +13267 2 -19.34428761981721 -236.66715281510892 80.6854 0.1144 13266 +13268 2 -19.888869840364606 -235.20464788415515 81.0247 0.1144 13267 +13269 2 -19.79084019292739 -234.00432066790603 81.289 0.1144 13268 +13270 2 -19.64812814764329 -232.8285719743791 81.541 0.1144 13269 +13271 2 -19.65096733750937 -231.54099132364024 81.7981 0.1144 13270 +13272 2 -19.715322660631372 -230.21830721490653 82.0372 0.1144 13271 +13273 2 -20.207038364425514 -228.72271018951122 82.2114 0.1144 13272 +13274 2 -20.608987428404944 -227.24171787368311 82.3273 0.1144 13273 +13275 2 -20.964171128475655 -226.11451187516764 82.4015 0.1144 13274 +13276 2 -21.217651885010866 -224.94541298666056 82.4401 0.1144 13275 +13277 2 -21.472102589930955 -223.75935693962782 82.4547 0.1144 13276 +13278 2 -21.91780244103917 -222.280780916771 82.4578 0.1144 13277 +13279 2 -22.502214168578163 -221.11367699516842 82.4592 0.1144 13278 +13280 2 -23.055891603349096 -220.2943410400933 82.4611 0.1144 13279 +13281 2 -23.52737594972446 -218.8013505620185 82.4639 0.1144 13280 +13282 2 -23.93342598428994 -217.31785953474235 82.4678 0.1144 13281 +13283 2 -24.391555379255735 -215.96376686019184 82.4732 0.1144 13282 +13284 2 -24.83083372682495 -214.91243729825965 82.4802 0.1144 13283 +13285 2 -25.206552005279747 -213.6749008506078 82.4902 0.1144 13284 +13286 2 -25.44185154342098 -212.24389246562183 82.5054 0.1144 13285 +13287 2 -25.663038006717073 -210.81631649837152 82.5261 0.1144 13286 +13288 2 -25.393164668043013 -209.75012659950698 82.5538 0.1144 13287 +13289 2 -24.90015173466101 -208.54271826345067 82.5871 0.1144 13288 +13290 2 -24.433081086521014 -207.2955268904836 82.6414 0.1144 13289 +13291 2 -24.100652170664333 -206.2965966031192 82.7579 0.1144 13290 +13292 2 -24.09876510177463 -205.0155918435376 82.8517 0.1144 13291 +13293 2 -24.38529517340136 -203.5769577145814 82.9226 0.1144 13292 +13294 2 -24.223249861842987 -202.4185951464121 82.9724 0.1144 13293 +13295 2 -23.938814056483253 -201.38329786742287 83.0024 0.1144 13294 +13296 2 -23.49352143062353 -200.2433999179181 83.0155 0.1144 13295 +13297 2 -17.258382188867188 -242.47377996825037 76.4837 0.1144 13260 +13298 2 -17.055958064944193 -241.03901177050636 75.9072 0.1144 13297 +13299 2 -17.168738068137998 -239.8028590964072 75.4034 0.1144 13298 +13300 2 -17.122561833309533 -238.40766679439344 74.9081 0.1144 13299 +13301 2 -17.200024354271605 -237.13144524674476 74.4876 0.1144 13300 +13302 2 -17.41295891962949 -235.96285640738728 73.9906 0.1144 13301 +13303 2 -16.701682206842335 -235.05705388341786 73.5305 0.1144 13302 +13304 2 -15.813400890589634 -234.24636081797453 72.919 0.1144 13303 +13305 2 -18.22582243976838 -252.2504425561803 76.7071 0.1144 13253 +13306 2 -18.52504624601474 -251.09498321202665 76.9157 0.1144 13305 +13307 2 -18.852824472321842 -249.97021377939012 77.1826 0.1144 13306 +13308 2 -19.26110674540743 -248.64750211033635 77.5099 0.1144 13307 +13309 2 -19.68715367208347 -247.16520280006705 77.8786 0.1144 13308 +13310 2 -20.114007986424696 -245.81970278109242 78.2698 0.1144 13309 +13311 2 -20.532396168831795 -244.89588041056737 78.6649 0.1144 13310 +13312 2 -20.899195821928828 -243.80367884950257 79.0322 0.1144 13311 +13313 2 -21.219761594224366 -242.3397227615215 79.3618 0.1144 13312 +13314 2 -21.529901799040474 -240.8746881510077 79.6673 0.1144 13313 +13315 2 -21.850597305018724 -239.52321492729067 79.9688 0.1144 13314 +13316 2 -22.244438232888598 -238.50495540071574 80.3009 0.1144 13315 +13317 2 -22.738780099647528 -237.35676932963972 80.7089 0.1144 13316 +13318 2 -23.155960766778605 -235.89091672680416 81.2162 0.1144 13317 +13319 2 -23.4255547804174 -234.48356526853476 81.8082 0.1144 13318 +13320 2 -23.594561969780713 -233.118934097077 82.3665 0.1144 13319 +13321 2 -23.722532829412927 -231.7696332749516 82.864 0.1144 13320 +13322 2 -24.015825270674043 -230.64800168043723 83.4243 0.1144 13321 +13323 2 -25.022742682530648 -230.25253087248586 84.201 0.1144 13322 +13324 2 -25.7874392015204 -229.56984694958032 84.9358 0.1144 13323 +13325 2 -26.408806803605344 -229.0293799965673 85.6086 0.1144 13324 +13326 2 -27.159476133136394 -227.82961338504174 86.2523 0.1144 13325 +13327 2 -28.058503953989586 -226.43023301258705 86.8353 0.1144 13326 +13328 2 -28.976282814010688 -225.72095540860843 87.358 0.1144 13327 +13329 2 -29.862179127503154 -225.42558833146984 87.8284 0.1144 13328 +13330 2 -30.721569443449738 -224.14689067256256 88.2734 0.1144 13329 +13331 2 -31.58194924655683 -223.05523825565476 88.704 0.1144 13330 +13332 2 -32.44700294260693 -223.10134436875578 89.1201 0.1144 13331 +13333 2 -33.35012932499963 -221.8156333563477 89.5084 0.1144 13332 +13334 2 -34.295742819312636 -220.4460022989005 89.8484 0.1144 13333 +13335 2 -35.12762126070828 -219.52514465538525 90.1505 0.1144 13334 +13336 2 -35.71411595430905 -219.21426811801825 90.4428 0.1144 13335 +13337 2 -36.10747466330133 -217.94651728244574 90.8323 0.1144 13336 +13338 2 -36.37817928557058 -216.52117437478734 91.3651 0.1144 13337 +13339 2 -36.69927112504001 -215.0852500337281 91.9444 0.1144 13338 +13340 2 -37.053773377008554 -213.80177505521465 92.5168 0.1144 13339 +13341 2 -37.40757297293747 -212.83722286172008 93.0574 0.1144 13340 +13342 2 -37.76439024722944 -212.19918973262213 93.5329 0.1144 13341 +13343 2 -38.12575788394794 -211.18325560735906 93.8865 0.1144 13342 +13344 2 -38.4967991678766 -209.70244598439018 94.0276 0.1144 13343 +13345 2 -38.8738484921239 -208.21464889041243 93.9403 0.1144 13344 +13346 2 -39.249563668995606 -206.73731711432197 93.6821 0.1144 13345 +13347 2 -39.71815386752441 -205.24969421722665 93.3229 0.1144 13346 +13348 2 -40.46503405964749 -203.79805863110238 92.9552 0.1144 13347 +13349 2 -41.43487445780316 -204.25267460596916 92.6503 0.1144 13348 +13350 2 -42.47729245767523 -203.14847999548994 92.3983 0.1144 13349 +13351 2 -43.5802302256249 -202.88165490968626 92.1264 0.1144 13350 +13352 2 -44.58590557865848 -202.66515665698694 91.709 0.1144 13351 +13353 2 -45.00578528996803 -201.5877404737472 91.175 0.1144 13352 +13354 2 -45.14775120455846 -200.2345318041866 90.6637 0.1144 13353 +13355 2 -45.23968789777325 -198.90135144690993 90.1992 0.1144 13354 +13356 2 -45.25926942703232 -197.60935967377065 89.7907 0.1144 13355 +13357 2 -45.247940074657535 -196.33416278059252 89.4482 0.1144 13356 +13358 2 -45.24400527578969 -195.04989405678532 89.175 0.1144 13357 +13359 2 -45.39991929545897 -193.66726904302118 88.9907 0.1144 13358 +13360 2 -45.63615595494791 -192.2392920427528 88.8866 0.1144 13359 +13361 2 -45.98630156308488 -190.74657556877432 88.8516 0.1144 13360 +13362 2 -46.464962434851685 -189.3196434765975 88.8787 0.1144 13361 +13363 2 -46.98620250709136 -188.19545178452773 88.9532 0.1144 13362 +13364 2 -47.51075259944453 -186.81229024155982 89.0574 0.1144 13363 +13365 2 -47.80409499747189 -185.35938059937627 89.1635 0.1144 13364 +13366 2 -47.963930989814926 -184.11014040890836 89.2592 0.1144 13365 +13367 2 -48.11418162938068 -182.91460657469298 89.3474 0.1144 13366 +13368 2 -48.551685049946414 -182.21112681071293 89.4566 0.1144 13367 +13369 2 -49.119963289069645 -181.23903686515342 89.5947 0.1144 13368 +13370 2 -49.6801888594791 -179.9555754662148 89.7383 0.1144 13369 +13371 2 -50.230341347604096 -178.4326867759341 89.8794 0.1144 13370 +13372 2 -50.780408642879294 -176.9071977903221 90.0183 0.1144 13371 +13373 2 -51.329899914214366 -175.38207178433152 90.1572 0.1144 13372 +13374 2 -51.879030088141846 -174.72481997701385 90.2969 0.1144 13373 +13375 2 -52.4286065523267 -173.8960048062097 90.4425 0.1144 13374 +13376 2 -53.01377330171813 -172.7251953374128 90.6153 0.1144 13375 +13377 2 -53.657646536831976 -171.22162989397162 90.837 0.1144 13376 +13378 2 -54.320676449354366 -169.70342731246612 91.105 0.1144 13377 +13379 2 -55.102218322852636 -169.09534997485525 91.3822 0.1144 13378 +13380 2 -55.970077872316395 -168.7117835172396 91.6454 0.1144 13379 +13381 2 -56.61091940092119 -167.20985277060066 91.9271 0.1144 13380 +13382 2 -57.12904488815229 -165.69970131236997 92.2396 0.1144 13381 +13383 2 -57.57180132718425 -164.20294040731818 92.5994 0.1144 13382 +13384 2 -57.9912118237889 -162.74135942644213 93.0006 0.1144 13383 +13385 2 -58.40643615695774 -161.53606279345172 93.4307 0.1144 13384 +13386 2 -58.84206533482798 -161.06878015547693 93.8689 0.1144 13385 +13387 2 -59.376844867019116 -160.16552213347143 94.2757 0.1144 13386 +13388 2 -59.97434976425214 -158.65354944549642 94.6386 0.1144 13387 +13389 2 -60.654565204841845 -157.3538456636824 94.948 0.1144 13388 +13390 2 -61.3600829218211 -155.9647013105908 95.2227 0.1144 13389 +13391 2 -62.06596173620804 -154.9378086622609 95.489 0.1144 13390 +13392 2 -62.692772973771056 -154.5427283780104 95.8272 0.1144 13391 +13393 2 -63.198998085901465 -153.02641772967002 96.3194 0.1144 13392 +13394 2 -63.66918903161448 -151.54993953855038 96.9489 0.1144 13393 +13395 2 -64.22138003966462 -150.2523645869142 97.631 0.1144 13394 +13396 2 -64.83891396350872 -148.86250946392704 98.3161 0.1144 13395 +13397 2 -65.46817167358768 -147.74820504290227 98.9934 0.1144 13396 +13398 2 -66.09858143154685 -147.636006808436 99.6526 0.1144 13397 +13399 2 -66.728991189506 -146.32700913140533 100.2971 0.1144 13398 +13400 2 -67.47472243533197 -144.85301254828195 100.931 0.1144 13399 +13401 2 -68.23573213949268 -143.38525323741348 101.5753 0.1144 13400 +13402 2 -68.97642529338486 -142.49925629789846 102.2473 0.1144 13401 +13403 2 -69.78093659868357 -142.33198774386696 102.965 0.1144 13402 +13404 2 -70.54304770142166 -141.00076543986336 103.8377 0.1144 13403 +13405 2 -71.0611813924175 -140.2099473041786 104.9462 0.1144 13404 +13406 2 -71.52631272450749 -139.90887829614283 106.1976 0.1144 13405 +13407 2 -72.68559028258015 -139.14747603734534 106.1259 0.1144 13406 +13408 2 -73.79776771911862 -138.0641470095347 105.9738 0.1144 13407 +13409 2 -74.88595410219574 -138.6748103354783 105.9629 0.1144 13408 +13410 2 -75.97133222281268 -137.66362524945364 106.0713 0.1144 13409 +13411 2 -77.03846175445149 -136.4930001257926 106.2625 0.1144 13410 +13412 2 -77.90658859626045 -136.39370630888104 106.4504 0.1144 13411 +13413 2 -78.94517912105782 -135.65651094630488 106.6439 0.1144 13412 +13414 2 -80.06010935266073 -134.58777841119576 106.8256 0.1144 13413 +13415 2 -81.17579460611599 -134.93367954837956 106.9844 0.1144 13414 +13416 2 -82.29286327117647 -134.4226842578115 107.1291 0.1144 13415 +13417 2 -83.40984674338716 -133.48374792592958 107.2672 0.1144 13416 +13418 2 -84.52655431103997 -133.91483776411596 107.4038 0.1144 13417 +13419 2 -85.64411380719076 -133.1802007687918 107.5312 0.1144 13418 +13420 2 -86.76175849619132 -132.2216486293902 107.6429 0.1144 13419 +13421 2 -87.87940318519192 -132.96429510707517 107.7339 0.1144 13420 +13422 2 -88.99696268134268 -132.03453333526411 107.7986 0.1144 13421 +13423 2 -90.12871054259871 -131.0336865033239 107.8148 0.1144 13422 +13424 2 -91.27269794622583 -132.1606920621148 107.7773 0.1144 13423 +13425 2 -92.41001637683307 -131.52135113893132 107.6382 0.1144 13424 +13426 2 -93.5457364693027 -130.95346848553362 107.4276 0.1144 13425 +13427 2 -94.68082817201946 -132.10775604819372 107.1717 0.1144 13426 +13428 2 -95.7936048587191 -131.43167907315805 106.5739 0.1144 13427 +13429 2 -70.53808858205075 -138.83440283356515 108.0374 0.1144 13406 +13430 2 -69.5402264369154 -139.01762035037683 109.3422 0.1144 13429 +13431 2 -69.12391740932972 -137.22814860533023 110.6325 0.1144 13430 +13432 2 -68.96071112392671 -135.74016734350712 111.8902 0.1144 13431 +13433 2 -68.81899436052133 -134.63919567956603 112.9834 0.1144 13432 +13434 2 -68.68406940811565 -133.4905623004006 113.8099 0.1144 13433 +13435 2 -68.59391273894332 -132.28962338466397 114.5122 0.1144 13434 +13436 2 -68.644586556795 -130.98745817991377 115.2231 0.1144 13435 +13437 2 -68.73931369020426 -129.68950000467328 116.1504 0.1144 13436 +13438 2 -68.73444928121675 -128.53472266030602 117.4589 0.1144 13437 +13439 2 -68.79635504792473 -127.40610531739648 118.9818 0.1144 13438 +13440 2 -69.3128684706457 -126.23009908259971 120.6131 0.1144 13439 +13441 2 -70.20732020481547 -126.98770792935291 121.9814 0.1144 13440 +13442 2 -71.19046320625301 -125.93658741736292 123.0928 0.1144 13441 +13443 2 -72.20496337958186 -126.68829880503662 124.0383 0.1144 13442 +13444 2 -73.24355831402436 -125.63536519324666 124.8792 0.1144 13443 +13445 2 -74.12779602157536 -124.42891566585502 125.7214 0.1144 13444 +13446 2 -74.50776172558004 -123.01328005697852 126.6252 0.1144 13445 +13447 2 -74.71265862699549 -121.64747024605452 127.514 0.1144 13446 +13448 2 -74.91613618818555 -120.57584276176907 128.4399 0.1144 13447 +13449 2 -75.11880326012741 -119.63814378210786 129.3858 0.1144 13448 +13450 2 -75.32201352897228 -118.70350984079099 130.3288 0.1144 13449 +13451 2 -75.51937831821833 -117.75530494698968 131.2486 0.1144 13450 +13452 2 -75.50767796584621 -116.43793957080821 132.1446 0.1144 13451 +13453 2 -75.23110041806866 -114.81131790244336 133.0003 0.1144 13452 +13454 2 -74.91519822253589 -113.60140906581928 133.7168 0.1144 13453 +13455 2 -74.6294111400714 -112.71507362603116 134.2457 0.1144 13454 +13456 2 -74.35236368505242 -111.80834938598021 134.6307 0.1144 13455 +13457 2 -74.14272779965451 -110.84739186436528 135.0177 0.1144 13456 +13458 2 -74.01774447934073 -109.83070555988309 135.5446 0.1144 13457 +13459 2 -73.94522893324243 -108.7946043113897 136.2396 0.1144 13458 +13460 2 -74.21311849204494 -107.63773025712979 137.0656 0.1144 13459 +13461 2 -74.78747936921025 -106.44858144556211 138.0445 0.1144 13460 +13462 2 -75.49232314931551 -105.34373192017733 139.2779 0.1144 13461 +13463 2 -75.83949451893774 -104.765012941841 140.4634 0.1144 13462 +13464 2 -76.5832529165977 -104.65721157635966 141.7965 0.1144 13463 +13465 2 -77.30134593986183 -103.50299987585221 142.8154 0.1144 13464 +13466 2 -77.80912184241018 -102.28622680210137 143.624 0.1144 13465 +13467 2 -78.16197269789178 -101.08749453205529 144.4324 0.1144 13466 +13468 2 -78.54132163124322 -99.8906185251294 145.2354 0.1144 13467 +13469 2 -79.00727335517105 -98.69285848720469 146.0827 0.1144 13468 +13470 2 -79.4742888325462 -98.17983998818666 146.9628 0.1144 13469 +13471 2 -79.93751989591017 -97.69110619078648 147.8873 0.1144 13470 +13472 2 -80.39914169457349 -96.50286735920564 148.8404 0.1144 13471 +13473 2 -80.86120978349425 -95.3179377153203 149.7958 0.1144 13472 +13474 2 -81.32171236131445 -94.14051367765704 150.7621 0.1144 13473 +13475 2 -81.78244940444276 -92.96696383363148 151.7155 0.1144 13474 +13476 2 -82.2475023446895 -91.79082757540627 152.6372 0.1144 13475 +13477 2 -82.7151462118175 -90.65212433100318 153.5117 0.1144 13476 +13478 2 -83.2107099060872 -90.29831349951878 154.4085 0.1144 13477 +13479 2 -83.68249749111294 -89.6610384840797 155.9345 0.1144 13478 +13480 2 13.856364894644674 -406.62114190105416 45.521 0.1144 10250 +13481 2 14.014717188207793 -405.2739830681571 45.8766 0.1144 13480 +13482 2 14.370809295603312 -404.13463724879466 46.0118 0.1144 13481 +13483 2 15.292647887766915 -402.918607612204 46.2274 0.1144 13482 +13484 2 16.379432947983705 -402.5266489925525 46.6189 0.1144 13483 +13485 2 17.504913680340692 -402.2670842504196 47.0548 0.1144 13484 +13486 2 18.609228644751266 -402.7764413738236 47.5107 0.1144 13485 +13487 2 19.691560249187113 -402.37224063440647 48.0278 0.1144 13486 +13488 2 20.779029859089196 -401.57840306364005 48.5464 0.1144 13487 +13489 2 21.910896450453617 -401.26948786557114 48.9401 0.1144 13488 +13490 2 23.0090404823892 -401.15603929651445 49.1347 0.1144 13489 +13491 2 23.94157503596052 -401.01454251864703 49.1596 0.1144 13490 +13492 2 24.883640167449826 -400.0847041629715 49.0893 0.1144 13491 +13493 2 25.825396567344267 -398.9635717196903 48.9336 0.1144 13492 +13494 2 26.770319918060064 -398.14520021949556 48.7113 0.1144 13493 +13495 2 27.71975219195264 -396.9143050618629 48.4355 0.1144 13494 +13496 2 28.686788636325794 -396.9447046347548 48.0245 0.1144 13495 +13497 2 29.727277938101746 -397.11709743081474 47.1593 0.1144 13496 +13498 2 30.793187944602 -396.509293313488 46.2543 0.1144 13497 +13499 2 31.848974521288703 -396.3305443395643 45.4765 0.1144 13498 +13500 2 32.82141626347329 -395.07832029986133 44.8423 0.1144 13499 +13501 2 33.85801232942612 -394.76440300747294 44.3355 0.1144 13500 +13502 2 34.9791675461636 -395.3190158248617 44.0028 0.1144 13501 +13503 2 35.95931267441749 -395.3459022685363 43.792 0.1144 13502 +13504 2 36.72348692035297 -396.61677611377644 43.587 0.1144 13503 +13505 2 37.59731547993216 -396.6340992060419 43.3779 0.1144 13504 +13506 2 38.69693642676178 -397.10417099825895 43.1332 0.1144 13505 +13507 2 39.83008341461585 -397.2580237128978 42.8033 0.1144 13506 +13508 2 40.88718562387574 -396.52851493207453 42.2106 0.1144 13507 +13509 2 41.71230299172089 -397.2591733232738 41.585 0.1144 13508 +13510 2 42.51772469980028 -397.48552915674236 41.2636 0.1144 13509 +13511 2 43.46168749016289 -398.17876094926226 41.0374 0.1144 13510 +13512 2 44.424316126843664 -398.950059667155 40.8937 0.1144 13511 +13513 2 45.3465163081453 -400.1927684680357 40.8103 0.1144 13512 +13514 2 46.3740490815907 -400.26636472908285 40.7324 0.1144 13513 +13515 2 47.49834522311903 -400.30643965395626 40.6207 0.1144 13514 +13516 2 48.592673097305834 -400.09041678013875 40.5065 0.1144 13515 +13517 2 49.59614055100303 -400.89740036179717 40.4135 0.1144 13516 +13518 2 50.560240893721954 -401.8637452183906 40.336 0.1144 13517 +13519 2 51.56726612110212 -402.17599002390574 40.2657 0.1144 13518 +13520 2 52.59731383863205 -402.95736393699354 40.1988 0.1144 13519 +13521 2 53.691631100007584 -402.65944423147147 40.1226 0.1144 13520 +13522 2 54.829356175143694 -403.02988547525683 40.017 0.1144 13521 +13523 2 55.95575140617464 -402.77951326458094 39.846 0.1144 13522 +13524 2 57.05643771628719 -402.61790507055906 39.6318 0.1144 13523 +13525 2 58.18350447514568 -401.91082829172746 39.4036 0.1144 13524 +13526 2 59.31394111347346 -402.3866317038119 39.0368 0.1144 13525 +13527 2 60.41661228161454 -402.6245832757432 38.5442 0.1144 13526 +13528 2 61.48920837317886 -402.6462028614858 38.1436 0.1144 13527 +13529 2 62.56198415519205 -403.01107935976324 37.8431 0.1144 13528 +13530 2 63.67389119780234 -402.96723266248614 37.6205 0.1144 13529 +13531 2 64.8153790705642 -403.74616391615314 37.4584 0.1144 13530 +13532 2 65.89648774650472 -403.20839443537244 37.3425 0.1144 13531 +13533 2 66.9628785748314 -402.42592066342166 37.2378 0.1144 13532 +13534 2 67.89866527207383 -401.4334798594266 37.1087 0.1144 13533 +13535 2 68.12090969924168 -399.9956112081555 36.9499 0.1144 13534 +13536 2 68.40952125088957 -399.7732744907361 36.8379 0.1144 13535 +13537 2 69.51636386178387 -400.4934689430545 36.3947 0.1144 13536 +13538 2 70.56077894233124 -401.3771150086646 35.9629 0.1144 13537 +13539 2 71.55448204533886 -401.38385327092465 35.5692 0.1144 13538 +13540 2 72.58785478775364 -401.98700966018924 35.2131 0.1144 13539 +13541 2 73.69743959858599 -401.2766300902596 34.9236 0.1144 13540 +13542 2 74.81766830678697 -401.81352883117665 34.7172 0.1144 13541 +13543 2 75.9346386681506 -401.90773219749514 34.5626 0.1144 13542 +13544 2 77.0471025153839 -400.886838178351 34.4114 0.1144 13543 +13545 2 78.15728416733091 -400.6729991877839 34.2185 0.1144 13544 +13546 2 79.26125555482596 -400.32513575517476 33.9979 0.1144 13545 +13547 2 80.38257715606592 -401.2812610779631 33.7196 0.1144 13546 +13548 2 81.46519077352957 -400.7896962664627 33.3749 0.1144 13547 +13549 2 81.87037667977785 -399.29417798473423 32.9426 0.1144 13548 +13550 2 81.64513720206337 -398.3859505272806 32.4386 0.1144 13549 +13551 2 82.76917326070101 -398.7150575308384 32.0835 0.1144 13550 +13552 2 83.8942326278465 -397.6042587280557 31.7705 0.1144 13551 +13553 2 84.9229169694199 -397.6033366262607 31.4569 0.1144 13552 +13554 2 85.97257746821607 -398.2728969639599 31.1268 0.1144 13553 +13555 2 86.79661575838395 -398.52108485951203 30.9042 0.1144 13554 +13556 2 87.56832211648896 -399.31823368698565 30.7168 0.1144 13555 +13557 2 88.30279058702016 -400.64977888301945 30.5231 0.1144 13556 +13558 2 89.23610978178783 -400.25664042099766 30.3489 0.1144 13557 +13559 2 90.35213831038499 -401.0648039995346 30.2131 0.1144 13558 +13560 2 91.49393422220517 -401.218219610236 30.0905 0.1144 13559 +13561 2 92.62057862154191 -400.9757151456069 29.9426 0.1144 13560 +13562 2 93.67479708298212 -401.63708244466375 29.7674 0.1144 13561 +13563 2 94.62255211233582 -401.65207973006744 29.5926 0.1144 13562 +13564 2 95.51366310662785 -402.9863327914415 29.3978 0.1144 13563 +13565 2 96.52196632145123 -403.55325329325734 29.1858 0.1144 13564 +13566 2 97.62648570625733 -403.5460290132342 28.9918 0.1144 13565 +13567 2 98.68291307332227 -404.52629481481154 28.7935 0.1144 13566 +13568 2 99.61548886533711 -404.2030023197696 28.5295 0.1144 13567 +13569 2 100.58799376412432 -405.5164350454442 28.2251 0.1144 13568 +13570 2 101.68124557322764 -405.6028757504437 27.9564 0.1144 13569 +13571 2 102.81133682914074 -405.14966414239666 27.6881 0.1144 13570 +13572 2 103.9291180705155 -405.65789228665125 27.4275 0.1144 13571 +13573 2 104.96720614512299 -405.33700921170316 27.1945 0.1144 13572 +13574 2 105.89291414334141 -406.7394589088227 26.9387 0.1144 13573 +13575 2 106.890305777688 -406.97524082651285 26.5947 0.1144 13574 +13576 2 108.01330169986237 -406.9608624347784 26.2409 0.1144 13575 +13577 2 109.13444430319004 -407.3914675456461 25.9338 0.1144 13576 +13578 2 110.20311911461714 -407.17031417486646 25.6745 0.1144 13577 +13579 2 111.10081037904826 -408.5790335327847 25.4899 0.1144 13578 +13580 2 111.74628746292944 -410.09661182918757 25.3865 0.1144 13579 +13581 2 112.32098720559165 -411.0184465136236 25.3158 0.1144 13580 +13582 2 113.03799424349762 -411.4235299748666 25.3083 0.1144 13581 +13583 2 113.82502360077025 -412.65059510183056 25.3998 0.1144 13582 +13584 2 114.62813097906282 -412.9776722596468 25.5207 0.1144 13583 +13585 2 115.53420077353178 -413.704991666001 25.6234 0.1144 13584 +13586 2 116.48418563235906 -415.09991636225675 25.7011 0.1144 13585 +13587 2 117.48119634643363 -415.701048290841 25.7552 0.1144 13586 +13588 2 118.49138542305211 -415.83243895214366 25.781 0.1144 13587 +13589 2 119.48758874946164 -416.3548403171865 25.7843 0.1144 13588 +13590 2 120.50366164334561 -417.59932420528446 25.7784 0.1144 13589 +13591 2 121.57163449126972 -417.8373302403964 25.769 0.1144 13590 +13592 2 122.68345083040063 -417.97419591516643 25.7559 0.1144 13591 +13593 2 123.77960399680504 -418.05982965505484 25.7373 0.1144 13592 +13594 2 124.88946400197365 -418.26627407821417 25.7115 0.1144 13593 +13595 2 126.0018594666277 -419.3766465215575 25.6758 0.1144 13594 +13596 2 127.11986525303598 -419.2391474837856 25.6252 0.1144 13595 +13597 2 128.20724114686482 -419.48458784239665 25.5528 0.1144 13596 +13598 2 129.21502139609737 -419.6028922008891 25.453 0.1144 13597 +13599 2 130.16705949553247 -420.45618324123046 25.3208 0.1144 13598 +13600 2 130.92833718457499 -421.979732892244 25.1391 0.1144 13599 +13601 2 131.66418906671137 -422.94529215229716 24.811 0.1144 13600 +13602 2 132.5583584860797 -423.16524016179415 24.3825 0.1144 13601 +13603 2 133.55046014936656 -424.333933286311 23.9314 0.1144 13602 +13604 2 134.5325856370146 -424.86887212708655 23.4265 0.1144 13603 +13605 2 135.6378644533181 -424.66507050275465 22.9155 0.1144 13604 +13606 2 136.76073443592952 -425.18798637938363 22.4788 0.1144 13605 +13607 2 137.8552331042639 -424.7750686447763 22.1183 0.1144 13606 +13608 2 138.97816365645275 -425.5925277880534 21.6523 0.1144 13607 +13609 2 140.10511368580129 -425.1234144944796 21.2167 0.1144 13608 +13610 2 141.23840512802073 -424.97986158187507 20.8452 0.1144 13609 +13611 2 142.36944822596422 -425.21593558961 20.4939 0.1144 13610 +13612 2 143.42602245644096 -425.7167654252482 20.1718 0.1144 13611 +13613 2 144.4298283671871 -426.19778407663415 19.8093 0.1144 13612 +13614 2 145.43694429804665 -426.3960705339332 19.5031 0.1144 13613 +13615 2 146.4284206731638 -426.8346651107755 19.0711 0.1144 13614 +13616 2 68.18713969062793 -399.18983494974754 37.3391 0.1144 13535 +13617 2 68.31412078415366 -397.81507016081616 37.532 0.1144 13616 +13618 2 68.23626123716375 -396.61323070171363 37.5085 0.1144 13617 +13619 2 68.17577241931966 -395.3927302336672 37.5015 0.1144 13618 +13620 2 68.55271945579372 -393.8453755757711 37.6474 0.1144 13619 +13621 2 68.56307334915405 -392.5702782851361 37.9226 0.1144 13620 +13622 2 67.46452646680937 -393.2595453949766 38.3664 0.1144 13621 +13623 2 66.38659666256339 -393.4844186498405 39.2641 0.1144 13622 +13624 2 7.24246400172032 -466.07538878184585 44.9028 0.1144 8272 +13625 2 8.132332244652845 -467.5470370396309 44.9148 0.1144 13624 +13626 2 9.02277651152534 -467.62517370309814 44.9313 0.1144 13625 +13627 2 9.878841110050555 -468.60750321233 44.9546 0.1144 13626 +13628 2 10.625069295436775 -469.6094794372515 44.9868 0.1144 13627 +13629 2 11.417976959345342 -469.76024854058005 45.0316 0.1144 13628 +13630 2 12.10754328740423 -471.19248408511083 45.0996 0.1144 13629 +13631 2 12.58972910581696 -472.7393477154359 45.1942 0.1144 13630 +13632 2 13.150530700166534 -474.3006888754089 45.3107 0.1144 13631 +13633 2 13.736273473497986 -475.6148466282578 45.4689 0.1144 13632 +13634 2 14.432821223280037 -475.3851377945733 45.7822 0.1144 13633 +13635 2 15.445486095127322 -475.79920052308523 46.4822 0.1144 13634 +13636 2 16.379601573018515 -473.85948377083787 47.1246 0.1144 13635 +13637 2 17.432080538638193 -474.2070998154493 47.705 0.1144 13636 +13638 2 18.5341955057035 -475.16682748139806 48.2135 0.1144 13637 +13639 2 19.638608773810915 -474.31108720003306 48.652 0.1144 13638 +13640 2 20.726835903601273 -475.41763064280036 48.9731 0.1144 13639 +13641 2 21.67360385484096 -474.8713322845912 49.1831 0.1144 13640 +13642 2 22.624790025778125 -476.2557697245921 49.3192 0.1144 13641 +13643 2 23.715282522899148 -477.06104475648465 49.4147 0.1144 13642 +13644 2 24.85353807485422 -475.80388011103423 49.4771 0.1144 13643 +13645 2 25.990142230322235 -476.44864919975845 49.5256 0.1144 13644 +13646 2 27.11398107801886 -475.0455685990785 49.6098 0.1144 13645 +13647 2 28.150415559877295 -475.23349114639734 49.7277 0.1144 13646 +13648 2 29.063247232250212 -475.0924827553735 49.8406 0.1144 13647 +13649 2 29.951210606854897 -473.0729999535299 49.9394 0.1144 13648 +13650 2 30.81234934972905 -472.658900265336 50.0301 0.1144 13649 +13651 2 31.644863484464 -471.3199203172412 50.1214 0.1144 13650 +13652 2 32.735474019156946 -470.9227467184129 50.2205 0.1144 13651 +13653 2 33.86627313996559 -470.3234010736004 50.335 0.1144 13652 +13654 2 35.00446742980655 -470.7805478141251 50.4748 0.1144 13653 +13655 2 36.14216237104072 -471.4744834721123 50.759 0.1144 13654 +13656 2 37.20976421896755 -470.6905746244911 51.233 0.1144 13655 +13657 2 37.19577187482952 -470.33276356194284 51.4097 0.1144 13656 +13658 2 37.266274927033116 -469.05755989207074 51.7698 0.1144 13657 +13659 2 37.51921290025585 -467.9239114945566 51.9658 0.1144 13658 +13660 2 37.81742332341176 -466.8536026534001 52.0825 0.1144 13659 +13661 2 37.997429416202124 -465.67125885679417 52.1284 0.1144 13660 +13662 2 38.207464736674396 -464.5142365036443 52.1268 0.1144 13661 +13663 2 38.415934546046095 -463.3563871254272 52.1108 0.1144 13662 +13664 2 38.26978246801974 -461.9553032352469 52.0887 0.1144 13663 +13665 2 38.01786722258517 -460.4800974006557 52.0607 0.1144 13664 +13666 2 38.03908204711947 -459.18029518670585 52.0257 0.1144 13665 +13667 2 38.47680732472616 -458.2868264916484 51.945 0.1144 13666 +13668 2 38.791363753783834 -456.61443740995986 51.8465 0.1144 13667 +13669 2 38.898708360070025 -455.17078268816886 51.7658 0.1144 13668 +13670 2 38.975789273366125 -453.7655208529939 51.7096 0.1144 13669 +13671 2 39.097343861142996 -452.3153799674806 51.6768 0.1144 13670 +13672 2 39.32630991123207 -450.8092111029832 51.6676 0.1144 13671 +13673 2 39.72611205904313 -449.87184292217637 51.6813 0.1144 13672 +13674 2 40.15642565341376 -448.8704217015623 51.7098 0.1144 13673 +13675 2 40.011569385096394 -447.6015968669808 51.7485 0.1144 13674 +13676 2 39.494284112567584 -446.088630061418 51.7992 0.1144 13675 +13677 2 38.53559216924319 -446.2298779874785 51.9198 0.1144 13676 +13678 2 38.758619343118816 -444.831291545373 52.0458 0.1144 13677 +13679 2 39.2125961290282 -443.11397066552473 52.1492 0.1144 13678 +13680 2 39.64345292030191 -441.98831146406195 52.2399 0.1144 13679 +13681 2 39.941610977645034 -440.9667395072561 52.3194 0.1144 13680 +13682 2 40.209342781278416 -439.77137487030524 52.3891 0.1144 13681 +13683 2 39.961977898270355 -438.45352074406946 52.5353 0.1144 13682 +13684 2 39.641047926984044 -436.9851766395892 52.7187 0.1144 13683 +13685 2 39.55646365548982 -435.62859810515437 52.8041 0.1144 13684 +13686 2 39.80391214433973 -434.6726310006743 52.8864 0.1144 13685 +13687 2 39.890666704846005 -433.4400868607405 52.9609 0.1144 13686 +13688 2 39.703574511197644 -432.03340141007993 53.0368 0.1144 13687 +13689 2 39.26932874493267 -430.63601505916154 53.1233 0.1144 13688 +13690 2 38.43597549591577 -430.3064983401403 53.3075 0.1144 13689 +13691 2 37.73803133035569 -428.782776941872 53.6029 0.1144 13690 +13692 2 37.29795721422096 -427.72202496331846 53.8602 0.1144 13691 +13693 2 37.45606003770461 -426.3988381806594 54.0453 0.1144 13692 +13694 2 38.18795652172568 -425.6662578593605 54.1559 0.1144 13693 +13695 2 38.990314796679144 -424.70094143571436 54.1943 0.1144 13694 +13696 2 39.9761232040691 -424.2647683003974 54.1626 0.1144 13695 +13697 2 40.841875270308805 -423.3427626266383 54.0736 0.1144 13696 +13698 2 41.94364005455136 -423.6202197368439 53.9431 0.1144 13697 +13699 2 42.98685162672673 -422.05353542558834 53.7242 0.1144 13698 +13700 2 44.06262278388787 -422.0664794630037 53.4204 0.1144 13699 +13701 2 45.16853849548262 -421.8117699270515 53.125 0.1144 13700 +13702 2 46.18866290005943 -421.14043610172536 52.8223 0.1144 13701 +13703 2 46.814887612688 -420.5898624525611 52.4695 0.1144 13702 +13704 2 47.19633264577592 -419.4839901671643 51.9985 0.1144 13703 +13705 2 47.801414213131956 -417.3592241256448 51.4324 0.1144 13704 +13706 2 48.62299384294275 -416.782443970159 50.8654 0.1144 13705 +13707 2 49.65843063387585 -416.36046549609233 50.318 0.1144 13706 +13708 2 50.6508135166866 -415.93260194909163 49.7882 0.1144 13707 +13709 2 51.32335730296643 -414.7701432640447 49.3363 0.1144 13708 +13710 2 51.87924616422558 -414.02980072802865 48.9516 0.1144 13709 +13711 2 52.353543294523156 -413.1802099548971 48.6604 0.1144 13710 +13712 2 52.73800531343751 -411.31010176939844 48.4635 0.1144 13711 +13713 2 53.18944663986145 -409.39997415693426 48.3423 0.1144 13712 +13714 2 53.86733345555034 -408.8312435635378 48.2756 0.1144 13713 +13715 2 54.61918918655191 -408.12343458300035 48.2471 0.1144 13714 +13716 2 55.2577335322198 -406.85862533756597 48.2434 0.1144 13715 +13717 2 55.703423184107386 -405.81052527483007 48.2552 0.1144 13716 +13718 2 56.47516458833923 -404.52890374244646 48.2345 0.1144 13717 +13719 2 57.49327890806786 -404.6575066361251 48.2177 0.1144 13718 +13720 2 58.586291753228736 -403.12163695616516 48.2401 0.1144 13719 +13721 2 59.64444161018008 -403.377529225817 48.4011 0.1144 13720 +13722 2 60.56070752571954 -402.43952529187953 48.7018 0.1144 13721 +13723 2 61.283112462025834 -401.13235595375727 48.9625 0.1144 13722 +13724 2 62.42043810208756 -400.94836790195984 49.177 0.1144 13723 +13725 2 63.25505814501667 -399.41306389541535 49.4589 0.1144 13724 +13726 2 64.14823620042095 -398.9253287904974 49.5379 0.1144 13725 +13727 2 65.22591063319499 -398.9928365229709 49.6222 0.1144 13726 +13728 2 66.13377509424926 -398.05655485890924 49.7283 0.1144 13727 +13729 2 66.06942046366385 -396.868413080834 49.8624 0.1144 13728 +13730 2 65.41649956204608 -395.95047290720873 50.0682 0.1144 13729 +13731 2 64.69278011127193 -394.88803347928916 50.2334 0.1144 13730 +13732 2 64.47240413722403 -393.45895172950713 50.3569 0.1144 13731 +13733 2 64.42309901029479 -392.1237126538188 50.4423 0.1144 13732 +13734 2 64.42511581286715 -390.8256550659412 50.4986 0.1144 13733 +13735 2 64.3404377363104 -389.47118158301396 50.5327 0.1144 13734 +13736 2 64.55128113698439 -388.3637068242273 50.5551 0.1144 13735 +13737 2 65.14823984754825 -387.5694080703046 50.5859 0.1144 13736 +13738 2 65.88604787369017 -386.7328771382887 50.6296 0.1144 13737 +13739 2 66.97140197458205 -385.73331626098815 50.6836 0.1144 13738 +13740 2 67.98710436534168 -385.2802409444986 50.7573 0.1144 13739 +13741 2 68.97870278493477 -383.9969313558044 50.8987 0.1144 13740 +13742 2 69.87790290880372 -383.83023795232253 51.1062 0.1144 13741 +13743 2 70.87247997655658 -383.5305912260972 51.2641 0.1144 13742 +13744 2 71.91898513165285 -382.1954213024766 51.3705 0.1144 13743 +13745 2 72.95002834384584 -381.9693122300865 51.4282 0.1144 13744 +13746 2 73.86447307503911 -380.39782935359705 51.4374 0.1144 13745 +13747 2 74.55341694954342 -379.77221312631116 51.392 0.1144 13746 +13748 2 75.05975269983452 -378.9752871384016 51.2921 0.1144 13747 +13749 2 75.31054913801655 -377.89075124640704 51.1756 0.1144 13748 +13750 2 75.44578143694395 -376.69714206496576 51.0756 0.1144 13749 +13751 2 75.74194172107514 -375.62454468101595 50.988 0.1144 13750 +13752 2 76.22091274431578 -374.5558919873474 50.9082 0.1144 13751 +13753 2 76.55267493275296 -373.11874177506496 50.832 0.1144 13752 +13754 2 76.84268651631997 -371.50485005062245 50.7377 0.1144 13753 +13755 2 77.33582918338453 -370.0508143032234 50.5904 0.1144 13754 +13756 2 77.83405369598299 -369.1961040602217 50.4078 0.1144 13755 +13757 2 78.28112675947575 -368.15203995156475 50.2505 0.1144 13756 +13758 2 78.74200726780181 -366.48733025821724 50.1435 0.1144 13757 +13759 2 79.35095774948223 -364.9248106444989 50.0858 0.1144 13758 +13760 2 80.1500108224152 -364.55816255864613 50.0758 0.1144 13759 +13761 2 80.9803505950724 -364.2476074790195 50.1077 0.1144 13760 +13762 2 81.77186845425288 -363.31073240551024 50.176 0.1144 13761 +13763 2 82.7322862908204 -362.02762469319487 50.2967 0.1144 13762 +13764 2 83.86289781918909 -361.9450306685489 50.4526 0.1144 13763 +13765 2 84.76922380146158 -360.85751087618775 50.6688 0.1144 13764 +13766 2 85.39475165276875 -360.22038133548 50.9146 0.1144 13765 +13767 2 86.08391045380549 -359.6742070657394 51.1053 0.1144 13766 +13768 2 86.84188205833414 -359.0899165850133 51.2184 0.1144 13767 +13769 2 87.7978600588188 -357.29078744945167 51.2562 0.1144 13768 +13770 2 88.90264803205395 -357.4476012638197 51.2299 0.1144 13769 +13771 2 89.94470755634912 -356.04057563614106 51.116 0.1144 13770 +13772 2 90.6314222939164 -355.48852401172417 50.8539 0.1144 13771 +13773 2 91.13351641337587 -354.6446460943015 50.5548 0.1144 13772 +13774 2 91.7843581601722 -354.03913836127407 50.3297 0.1144 13773 +13775 2 92.55128121709578 -352.3850644567553 50.1766 0.1144 13774 +13776 2 93.25879782539229 -351.25548797675305 50.0912 0.1144 13775 +13777 2 93.75648775330036 -350.4417869613879 50.069 0.1144 13776 +13778 2 93.67817069969448 -349.9104296714343 50.6962 0.1144 13777 +13779 2 93.44992344620661 -348.7072664482148 52.122 0.1144 13778 +13780 2 92.60544617053137 -348.657194547249 53.7883 0.1144 13779 +13781 2 91.88813778846352 -350.09576514386646 55.5643 0.1144 13780 +13782 2 91.2730159835451 -350.4824054253494 57.1007 0.1144 13781 +13783 2 90.52274027668516 -349.38084994130116 58.511 0.1144 13782 +13784 2 91.12970019460812 -348.9171308766752 59.8186 0.1144 13783 +13785 2 92.06026780140594 -348.96117203494913 60.73 0.1144 13784 +13786 2 92.72400148807321 -346.7997240872238 61.5104 0.1144 13785 +13787 2 93.0851761335391 -345.59597768611206 62.1328 0.1144 13786 +13788 2 93.29553180470592 -344.5013765394574 62.6833 0.1144 13787 +13789 2 93.21812234209314 -343.19863234878807 63.1719 0.1144 13788 +13790 2 92.72811591122833 -342.02326931092574 63.5575 0.1144 13789 +13791 2 92.11898103282293 -342.0433500652488 63.8224 0.1144 13790 +13792 2 91.642728988442 -340.6226359648878 64.0136 0.1144 13791 +13793 2 91.37745017938508 -339.19272860302897 64.1589 0.1144 13792 +13794 2 91.37189653212131 -337.9094146633985 64.2894 0.1144 13793 +13795 2 91.6678747167571 -336.8803363793417 64.4398 0.1144 13794 +13796 2 92.11450148999242 -335.98226802773036 64.6363 0.1144 13795 +13797 2 92.49856958446199 -334.114752137917 64.8962 0.1144 13796 +13798 2 92.70148143789223 -332.52237853046586 65.2974 0.1144 13797 +13799 2 92.95852379703581 -331.1566042101388 66.2284 0.1144 13798 +13800 2 93.76388543811765 -330.90597089140647 67.1538 0.1144 13799 +13801 2 94.67746082699514 -329.5428774402246 68.0243 0.1144 13800 +13802 2 93.85266700041691 -330.7682683563207 69.0642 0.1144 13801 +13803 2 92.86924038809397 -330.6222869207085 69.9706 0.1144 13802 +13804 2 92.74857627926612 -331.07534490837287 70.2204 0.1144 13803 +13805 2 92.64174604404296 -332.3036347355353 71.4087 0.1144 13804 +13806 2 93.33911348114825 -332.68427133352543 73.1556 0.1144 13805 +13807 2 93.38119984993233 -332.8249373240879 73.5666 0.1144 13806 +13808 2 93.77002080990783 -334.0106367943217 72.3598 0.1144 13807 +13809 2 94.59027127072966 -334.1601894600026 71.3899 0.1144 13808 +13810 2 95.08089377971118 -334.9421174228436 70.5312 0.1144 13809 +13811 2 95.18810041374425 -336.2332502489447 69.7119 0.1144 13810 +13812 2 94.81903496774774 -337.21111514794865 68.9564 0.1144 13811 +13813 2 94.95038631966061 -338.43749559527686 68.15 0.1144 13812 +13814 2 95.29762305926832 -339.83798344127393 67.3392 0.1144 13813 +13815 2 96.3103582081834 -340.93040238397595 66.6061 0.1144 13814 +13816 2 97.35328686201008 -341.93295812730196 65.9291 0.1144 13815 +13817 2 98.19853086762657 -341.54022412150994 64.9998 0.1144 13816 +13818 2 99.13105730642245 -342.18240574909674 63.3833 0.1144 13817 +13819 2 93.12441078979353 -331.3591263512544 74.349 0.1144 13806 +13820 2 92.91239042133601 -330.06186641821665 75.4211 0.1144 13819 +13821 2 92.70028175844561 -329.1777709426202 76.4537 0.1144 13820 +13822 2 92.46317644917747 -328.45346742881094 77.4939 0.1144 13821 +13823 2 92.1140480530564 -327.94054823873364 78.6758 0.1144 13822 +13824 2 91.51605411825426 -326.6313334508115 79.9428 0.1144 13823 +13825 2 90.6016253148382 -325.6190006748276 81.1272 0.1144 13824 +13826 2 89.69021970041476 -324.46174358594175 82.3091 0.1144 13825 +13827 2 88.826683257524 -324.9346953096381 83.4898 0.1144 13826 +13828 2 88.14271802348122 -323.60443664722885 84.6846 0.1144 13827 +13829 2 88.03503086939548 -322.5201168396828 85.869 0.1144 13828 +13830 2 88.63633802002614 -321.90971933305747 86.7905 0.1144 13829 +13831 2 89.11323528725808 -320.62424421298783 87.5428 0.1144 13830 +13832 2 89.29654658206894 -319.12395066624146 88.1185 0.1144 13831 +13833 2 89.20448325675454 -318.00562445086246 88.6043 0.1144 13832 +13834 2 89.11045498526525 -316.90333164390546 89.0641 0.1144 13833 +13835 2 89.35310805125427 -315.3222978828051 89.5406 0.1144 13834 +13836 2 89.70657399568493 -313.80749933847704 90.0284 0.1144 13835 +13837 2 90.03311909427606 -312.83076045818734 90.503 0.1144 13836 +13838 2 90.29991997972789 -311.79368091814496 90.9412 0.1144 13837 +13839 2 90.5323202729835 -310.71582670972003 91.3214 0.1144 13838 +13840 2 90.76761712313217 -309.53842589415393 91.6387 0.1144 13839 +13841 2 91.00269904674845 -308.35180540163043 91.9128 0.1144 13840 +13842 2 91.23875091874947 -307.16456262378773 92.1715 0.1144 13841 +13843 2 91.46024032406496 -306.072274519787 92.4468 0.1144 13842 +13844 2 91.63400701281171 -304.9363483062338 92.7727 0.1144 13843 +13845 2 91.76857258431963 -303.77270520697044 93.1661 0.1144 13844 +13846 2 92.09513860675962 -302.69240679069236 93.7182 0.1144 13845 +13847 2 93.02069825552562 -301.1376825528663 94.5062 0.1144 13846 +13848 2 94.07643487544607 -301.3792316737324 95.2851 0.1144 13847 +13849 2 94.98010456085183 -299.9182558241035 95.9916 0.1144 13848 +13850 2 95.52286811791646 -299.24085013322366 96.6395 0.1144 13849 +13851 2 96.40034705428907 -298.96656804205753 97.487 0.1144 13850 +13852 2 97.2268820755128 -300.06670030721176 98.1064 0.1144 13851 +13853 2 97.26160422549808 -298.81464298713786 98.471 0.1144 13852 +13854 2 97.41514196587259 -297.36100647742916 98.6132 0.1144 13853 +13855 2 97.79577891875874 -295.6740681034889 98.707 0.1144 13854 +13856 2 98.19307843412145 -294.3651330045255 98.7935 0.1144 13855 +13857 2 98.42165055976582 -293.2845842834009 98.884 0.1144 13856 +13858 2 98.63244400367354 -292.1894375048014 98.9923 0.1144 13857 +13859 2 99.005953695398 -291.06147423426006 99.1068 0.1144 13858 +13860 2 99.44455752537357 -289.503881880169 99.2006 0.1144 13859 +13861 2 99.71639340117605 -287.96647826659057 99.2653 0.1144 13860 +13862 2 99.80857997806086 -286.5870780752236 99.3068 0.1144 13861 +13863 2 99.85768800586598 -285.26926692509596 99.3348 0.1144 13862 +13864 2 99.95397555333682 -283.8958738465461 99.3616 0.1144 13863 +13865 2 100.13126408714636 -282.7311891183748 99.4003 0.1144 13864 +13866 2 100.3412994076186 -281.6336228275046 99.4504 0.1144 13865 +13867 2 100.54349388432654 -280.53057013404833 99.4969 0.1144 13866 +13868 2 100.71850332443286 -279.40412283479793 99.5109 0.1144 13867 +13869 2 100.87650003121793 -278.2970104038756 99.4804 0.1144 13868 +13870 2 101.05062471578918 -277.1711336233432 99.4294 0.1144 13869 +13871 2 101.2423905234346 -276.0607207154206 99.3812 0.1144 13870 +13872 2 101.43825730166596 -274.9534687134412 99.3429 0.1144 13871 +13873 2 101.63376298248966 -273.8485065814273 99.3182 0.1144 13872 +13874 2 101.84638612826011 -272.71747588088664 99.3096 0.1144 13873 +13875 2 102.14352187140571 -271.43036169461743 99.316 0.1144 13874 +13876 2 102.49858856302052 -269.8693221106916 99.3297 0.1144 13875 +13877 2 102.77259569931769 -268.378636435138 99.3415 0.1144 13876 +13878 2 102.98111787450213 -266.9336243792343 99.3569 0.1144 13877 +13879 2 103.14120375051513 -265.6700135578903 99.4081 0.1144 13878 +13880 2 103.212767454583 -264.47049084800864 99.5434 0.1144 13879 +13881 2 103.23760103082569 -263.24006854860687 99.7766 0.1144 13880 +13882 2 103.25601310352937 -262.00898155765555 100.0938 0.1144 13881 +13883 2 103.12251642245616 -260.709987824176 100.4752 0.1144 13882 +13884 2 102.66658162088032 -259.76940396142544 100.8885 0.1144 13883 +13885 2 102.15242496150613 -259.2522859554373 101.3726 0.1144 13884 +13886 2 101.82464742773561 -258.1995662046869 101.9623 0.1144 13885 +13887 2 101.67818971969754 -257.018996052585 102.5217 0.1144 13886 +13888 2 101.47176495231156 -255.65738937576612 103.0014 0.1144 13887 +13889 2 101.14763589570342 -254.26076592477455 103.5034 0.1144 13888 +13890 2 101.20946469044705 -253.14121991687642 104.1314 0.1144 13889 +13891 2 101.9684011411789 -252.59399155278982 104.6996 0.1144 13890 +13892 2 102.90107704753245 -250.92978031347542 105.1708 0.1144 13891 +13893 2 103.54229889800459 -250.36809020770028 105.6135 0.1144 13892 +13894 2 103.43947524758535 -249.15602020525125 106.0679 0.1144 13893 +13895 2 103.16475794916303 -247.79650685612683 106.6439 0.1144 13894 +13896 2 103.34161560593434 -246.7482486880736 107.3288 0.1144 13895 +13897 2 103.64879530375082 -245.81034025496712 108.1161 0.1144 13896 +13898 2 103.85127558760622 -244.7875634697989 109.0429 0.1144 13897 +13899 2 103.72626424580608 -243.59441042747596 110.1649 0.1144 13898 +13900 2 103.67414575423506 -242.47365690726366 111.3988 0.1144 13899 +13901 2 104.10360611204574 -241.57871178007161 112.6042 0.1144 13900 +13902 2 104.88148291089547 -240.48147004592437 113.9673 0.1144 13901 +13903 2 105.79532157323601 -240.24859589174264 115.5655 0.1144 13902 +13904 2 106.48579690702427 -241.21782540340797 117.4074 0.1144 13903 +13905 2 106.67670456588475 -242.17498787398443 119.3738 0.1144 13904 +13906 2 106.50903692270968 -242.95264386864494 121.273 0.1144 13905 +13907 2 106.11050757117076 -243.2812923594784 123.1093 0.1144 13906 +13908 2 105.14212665640632 -243.02249922702788 124.5154 0.1144 13907 +13909 2 104.09282725501781 -243.7581200129763 125.6072 0.1144 13908 +13910 2 103.37333148901448 -244.01569995047166 126.686 0.1144 13909 +13911 2 103.09301337552198 -244.9446958800254 127.6369 0.1144 13910 +13912 2 103.1779816688713 -246.1639538689564 128.5441 0.1144 13911 +13913 2 103.44315125964646 -247.48424177610178 129.4328 0.1144 13912 +13914 2 103.34411912087603 -248.56053613271223 130.3994 0.1144 13913 +13915 2 102.45442866876125 -249.05420329387061 131.3665 0.1144 13914 +13916 2 101.4285922353767 -249.97374075229294 132.33 0.1144 13915 +13917 2 100.40284960705462 -249.63618800866186 133.2968 0.1144 13916 +13918 2 99.37554146763199 -249.63765362352973 134.2611 0.1144 13917 +13919 2 98.34729620686154 -250.8056834198548 135.2154 0.1144 13918 +13920 2 97.32931843950712 -250.90866709153312 136.1371 0.1144 13919 +13921 2 96.31507813628457 -251.37022468826365 137.0298 0.1144 13920 +13922 2 95.30107229837013 -251.86218857784115 137.9238 0.1144 13921 +13923 2 94.21538994479265 -251.43618489733683 138.7193 0.1144 13922 +13924 2 93.10747435271304 -251.61979772382466 139.4117 0.1144 13923 +13925 2 91.99172032591558 -252.03471116665042 140.019 0.1144 13924 +13926 2 91.05168340331376 -252.55696049183507 140.9912 0.1144 13925 +13927 2 90.39101905630758 -253.3130340769913 143.0332 0.1144 13926 +13928 2 92.63716886208195 -331.17351784740146 69.554 0.1144 13803 +13929 2 91.58352382043594 -332.064461324858 68.9296 0.1144 13928 +13930 2 90.84543149601471 -330.77308374288066 68.7431 0.1144 13929 +13931 2 90.40539812659314 -329.3889256867334 68.6381 0.1144 13930 +13932 2 90.11983800335123 -327.95817278764684 68.5692 0.1144 13931 +13933 2 89.90316597386152 -326.55209953198175 68.5353 0.1144 13932 +13934 2 89.7341057261489 -325.1728613887938 68.5353 0.1144 13933 +13935 2 89.42988526721848 -324.2130345232645 68.57 0.1144 13934 +13936 2 89.17797002178386 -323.3530369389311 68.6263 0.1144 13935 +13937 2 88.92511765500149 -322.48641461965127 68.7033 0.1144 13936 +13938 2 88.5644167457024 -321.123483121927 68.8041 0.1144 13937 +13939 2 88.07728974200155 -319.6403274049171 68.9542 0.1144 13938 +13940 2 87.59346414620138 -318.43637121301714 69.1972 0.1144 13939 +13941 2 86.84108795278753 -318.5719972029724 69.5131 0.1144 13940 +13942 2 85.87659127657741 -317.2423700139145 69.8642 0.1144 13941 +13943 2 84.85354108652659 -316.03502178963805 70.173 0.1144 13942 +13944 2 83.81250339667668 -316.2796257047905 70.4001 0.1144 13943 +13945 2 82.88318215737951 -315.26611703903484 70.5488 0.1144 13944 +13946 2 81.8705459157085 -315.1155056820905 70.6303 0.1144 13945 +13947 2 80.77590279300885 -314.7540280648924 70.6656 0.1144 13946 +13948 2 79.92925845369969 -315.03826718629045 70.6754 0.1144 13947 +13949 2 93.53838375249047 -349.5332221198442 50.0984 0.1144 13777 +13950 2 93.80473214451867 -348.4623568017808 50.1626 0.1144 13949 +13951 2 93.86641037642701 -347.21443064546736 50.3098 0.1144 13950 +13952 2 94.09226503207987 -346.7004873249543 50.421 0.1144 13951 +13953 2 94.77983539756855 -344.55176086728625 50.6302 0.1144 13952 +13954 2 95.84110945802958 -344.8490402037618 50.7937 0.1144 13953 +13955 2 96.89547428544435 -345.27095452847703 50.888 0.1144 13954 +13956 2 97.81508304813434 -343.83174169063193 51.0003 0.1144 13955 +13957 2 98.77388162271534 -343.27582423572034 51.1832 0.1144 13956 +13958 2 99.87170971360146 -342.20734082752205 51.394 0.1144 13957 +13959 2 100.87592898660056 -341.94110642840144 51.6314 0.1144 13958 +13960 2 101.65399808930896 -341.5558432285977 51.8328 0.1144 13959 +13961 2 102.09403838923902 -340.6562822861866 51.9744 0.1144 13960 +13962 2 102.34127395215506 -339.5512242762007 52.0542 0.1144 13961 +13963 2 102.59261048565708 -338.2710402163376 52.0848 0.1144 13962 +13964 2 102.787179045133 -336.69219720732764 52.0783 0.1144 13963 +13965 2 102.95907700181381 -335.15108146394994 52.0478 0.1144 13964 +13966 2 103.2655776605746 -333.43498826977634 52.0075 0.1144 13965 +13967 2 103.48136224653679 -332.27247754158253 51.9347 0.1144 13966 +13968 2 103.84766637995246 -331.37010244141436 51.8263 0.1144 13967 +13969 2 104.41878753689977 -330.6538212374717 51.6816 0.1144 13968 +13970 2 105.13419494572689 -328.70224529104394 51.5231 0.1144 13969 +13971 2 105.72897688516642 -327.6062469058101 51.6393 0.1144 13970 +13972 2 106.95858471267468 -327.87378173012485 51.6684 0.1144 13971 +13973 2 108.0195528236652 -328.2358318593978 51.6211 0.1144 13972 +13974 2 109.08333881561697 -328.1387299187579 51.4716 0.1144 13973 +13975 2 110.09306618875863 -328.6026899435588 51.1988 0.1144 13974 +13976 2 110.85688174633303 -329.07370226699237 50.8696 0.1144 13975 +13977 2 111.6447013615416 -330.3605023187922 50.5182 0.1144 13976 +13978 2 112.67761991170777 -331.36579352079843 50.0914 0.1144 13977 +13979 2 113.71885222547358 -329.94363258283647 49.6605 0.1144 13978 +13980 2 114.63280922715963 -329.66627366055394 49.0974 0.1144 13979 +13981 2 115.39917167336235 -328.347486524169 48.3493 0.1144 13980 +13982 2 115.94329910325645 -326.883186745273 47.5168 0.1144 13981 +13983 2 116.02045089716773 -325.72265304114126 46.6497 0.1144 13982 +13984 2 116.7203765402272 -325.1118424525166 45.8553 0.1144 13983 +13985 2 117.11983610543302 -324.2675720849389 45.064 0.1144 13984 +13986 2 117.97465635988374 -324.06057261299424 44.4016 0.1144 13985 +13987 2 118.68994093073094 -322.6166135244811 43.6842 0.1144 13986 +13988 2 119.29841840358685 -321.2625619948318 42.9915 0.1144 13987 +13989 2 119.61673252808862 -320.21524734635346 42.1826 0.1144 13988 +13990 2 119.98878592699415 -319.27101427416125 41.4159 0.1144 13989 +13991 2 120.5769813931285 -317.956414826013 40.7683 0.1144 13990 +13992 2 120.93891726361295 -316.3024558544431 40.1598 0.1144 13991 +13993 2 120.93578406283459 -315.1013591346775 39.4604 0.1144 13992 +13994 2 120.83517552120631 -313.96373005413164 38.57 0.1144 13993 +13995 2 120.89262133233612 -312.677659478678 37.856 0.1144 13994 +13996 2 120.96517211451791 -311.34852188923986 37.3604 0.1144 13995 +13997 2 121.19183786296628 -310.2092218089351 36.8948 0.1144 13996 +13998 2 121.49231404421587 -309.21051059282706 36.4585 0.1144 13997 +13999 2 121.69990219963566 -308.11724349373526 36.1628 0.1144 13998 +14000 2 122.06259239943589 -307.18094877841133 35.8436 0.1144 13999 +14001 2 122.62894585837768 -306.3225877535329 35.4774 0.1144 14000 +14002 2 123.3805842538003 -305.7221454587082 35.1383 0.1144 14001 +14003 2 123.91749001962984 -304.17377827096686 34.865 0.1144 14002 +14004 2 124.70990425344488 -303.1057701812703 34.6567 0.1144 14003 +14005 2 125.38703604728141 -302.5619623511874 34.4229 0.1144 14004 +14006 2 126.07896477311165 -300.6158711689604 34.2364 0.1144 14005 +14007 2 126.60022408749603 -299.3998803051058 34.0861 0.1144 14006 +14008 2 127.23207963727972 -298.777954692344 33.8887 0.1144 14007 +14009 2 128.0988300869813 -298.5575525786975 33.7156 0.1144 14008 +14010 2 128.76932234916325 -297.8574446557895 33.565 0.1144 14009 +14011 2 129.22842552143936 -295.92948088766525 33.3886 0.1144 14010 +14012 2 129.81968492327948 -294.6259861674122 33.241 0.1144 14011 +14013 2 130.473999250909 -294.0394962584644 33.1226 0.1144 14012 +14014 2 130.40202111213816 -292.74878412488295 33.0408 0.1144 14013 +14015 2 130.49995936355936 -291.56472685022567 32.9666 0.1144 14014 +14016 2 131.09001435170657 -290.40255315993085 32.8994 0.1144 14015 +14017 2 131.88095618694692 -288.96584346198136 32.8238 0.1144 14016 +14018 2 132.5621006569366 -288.07803651466077 32.699 0.1144 14017 +14019 2 132.97882173300644 -287.1945241484635 32.513 0.1144 14018 +14020 2 133.36725809040723 -286.2808257771271 32.3288 0.1144 14019 +14021 2 133.4005054327713 -285.05012879104305 32.2014 0.1144 14020 +14022 2 133.4014553803132 -283.7977333597644 32.1364 0.1144 14021 +14023 2 133.35776436925792 -282.5147414781123 32.0698 0.1144 14022 +14024 2 133.15249095721558 -281.14898387075806 32.0191 0.1144 14023 +14025 2 133.1394020961992 -279.89240092577955 31.9799 0.1144 14024 +14026 2 133.07815825650272 -278.6412781454817 31.9435 0.1144 14025 +14027 2 132.71941678274902 -277.2106447859948 31.9634 0.1144 14026 +14028 2 132.4452724066837 -275.88842069337386 31.9707 0.1144 14027 +14029 2 132.67878881919933 -274.7777423388234 31.7268 0.1144 14028 +14030 2 132.68304707034483 -273.5744037947989 31.4031 0.1144 14029 +14031 2 132.40632037961092 -272.2842726813642 31.1212 0.1144 14030 +14032 2 132.4070037273442 -271.0801812825006 30.8286 0.1144 14031 +14033 2 132.76326932202238 -270.03512545564246 30.6144 0.1144 14032 +14034 2 132.9812485013746 -269.0020684098537 30.6415 0.1144 14033 +14035 2 133.2122301469414 -267.9617990832167 30.8266 0.1144 14034 +14036 2 133.76682630007468 -267.24489538855465 30.9019 0.1144 14035 +14037 2 134.3383413814667 -266.10031000352825 30.9355 0.1144 14036 +14038 2 134.60652567852375 -264.67035266194745 31.0293 0.1144 14037 +14039 2 134.69105351113956 -263.37477591082865 31.1777 0.1144 14038 +14040 2 135.09615553260002 -262.16042329041693 31.4426 0.1144 14039 +14041 2 135.76677752846462 -261.08329835743183 31.771 0.1144 14040 +14042 2 135.70959942327062 -259.8293752345834 32.1678 0.1144 14041 +14043 2 135.52067201713 -258.6153905220346 32.4887 0.1144 14042 +14044 2 135.8531892274196 -257.5337079212048 32.7662 0.1144 14043 +14045 2 135.89423907588142 -256.3346804868589 33.1173 0.1144 14044 +14046 2 135.6572090568734 -254.98083661795079 33.3892 0.1144 14045 +14047 2 135.13952985989977 -254.05504621660953 33.5972 0.1144 14046 +14048 2 134.98599933412243 -253.01486565874325 33.7588 0.1144 14047 +14049 2 135.8421414243126 -252.03444602738824 33.9128 0.1144 14048 +14050 2 136.56150093971533 -250.92993622793006 34.1183 0.1144 14049 +14051 2 136.57933698847893 -249.69069869114736 34.2843 0.1144 14050 +14052 2 136.51230313657936 -248.51530000715996 34.3871 0.1144 14051 +14053 2 136.71356049193955 -247.16853448072817 34.4336 0.1144 14052 +14054 2 136.85694236622626 -245.91195298137956 34.4067 0.1144 14053 +14055 2 136.87470484123963 -244.7603332623134 34.2642 0.1144 14054 +14056 2 136.50001197856548 -243.65296703916707 34.0668 0.1144 14055 +14057 2 136.52054266186246 -242.48672006852962 33.9111 0.1144 14056 +14058 2 137.19718672619177 -241.70599989860997 33.81 0.1144 14057 +14059 2 137.75028273820993 -241.07930713308622 33.7663 0.1144 14058 +14060 2 137.76009894529687 -239.86559727942918 33.7464 0.1144 14059 +14061 2 137.7205971992605 -238.63284537910386 33.726 0.1144 14060 +14062 2 137.9500126411901 -237.59004266150453 33.717 0.1144 14061 +14063 2 138.03730798955297 -236.4525840701424 33.7128 0.1144 14062 +14064 2 138.05135179932546 -235.2340976397207 33.7148 0.1144 14063 +14065 2 138.09445178681196 -234.0420423311893 33.7254 0.1144 14064 +14066 2 138.11063403004204 -232.83034569501018 33.7484 0.1144 14065 +14067 2 138.25865145960518 -231.5707036667723 33.7837 0.1144 14066 +14068 2 138.51782883687156 -230.19111870054826 33.8456 0.1144 14067 +14069 2 138.75312258543715 -228.8128268055624 33.9324 0.1144 14068 +14070 2 138.86963908128018 -227.61903177799928 34.015 0.1144 14069 +14071 2 138.9421399066958 -226.44791029631756 34.0774 0.1144 14070 +14072 2 139.09603564289483 -225.2940026532103 34.1166 0.1144 14071 +14073 2 138.97870837885762 -224.0610436544011 34.1149 0.1144 14072 +14074 2 138.66001374767447 -222.80400191759753 34.0827 0.1144 14073 +14075 2 138.53728970334225 -221.66821935628752 34.0701 0.1144 14074 +14076 2 138.5524496323748 -220.42214087556215 34.0978 0.1144 14075 +14077 2 138.61207152209224 -219.14467871465996 34.1639 0.1144 14076 +14078 2 138.7702503283727 -217.9221048760652 34.272 0.1144 14077 +14079 2 138.79761936410083 -216.66859120513797 34.3885 0.1144 14078 +14080 2 138.64860596526503 -215.55373392112074 34.4702 0.1144 14079 +14081 2 138.44565308617567 -214.4986893787024 34.5052 0.1144 14080 +14082 2 138.36475632204707 -213.3340916178191 34.4826 0.1144 14081 +14083 2 138.48310562133588 -212.01564468352007 34.3932 0.1144 14082 +14084 2 138.6880176570246 -210.63158302945368 34.2499 0.1144 14083 +14085 2 138.91439588181547 -209.39939193947538 34.0844 0.1144 14084 +14086 2 139.18685704578775 -208.1239345114958 33.9433 0.1144 14085 +14087 2 139.4849299102811 -206.85135972106013 33.847 0.1144 14086 +14088 2 139.64889321813507 -205.6807030680721 33.7966 0.1144 14087 +14089 2 139.62935002654262 -204.46398513892592 33.7856 0.1144 14088 +14090 2 139.7284926916568 -203.327251708341 33.8173 0.1144 14089 +14091 2 139.94636885589344 -202.17482300924172 33.8836 0.1144 14090 +14092 2 140.1872767203329 -200.78784060052033 33.971 0.1144 14091 +14093 2 140.27243294270153 -199.45596870768662 34.0631 0.1144 14092 +14094 2 140.1376818911691 -198.3597964379657 34.1457 0.1144 14093 +14095 2 139.88571427992179 -197.42085546400423 34.1762 0.1144 14094 +14096 2 139.75385978528246 -196.20241814116645 34.2073 0.1144 14095 +14097 2 139.84787916561302 -194.98867337740592 34.288 0.1144 14096 +14098 2 140.33073382386073 -193.39585218399037 34.4154 0.1144 14097 +14099 2 140.91156145505528 -192.21144412897593 34.568 0.1144 14098 +14100 2 141.30244807909168 -191.02886922952632 34.6864 0.1144 14099 +14101 2 141.69948030210924 -190.1074007503043 34.8177 0.1144 14100 +14102 2 142.15996688599054 -189.3054090752366 35.0048 0.1144 14101 +14103 2 142.65604986354822 -188.48064593811034 35.245 0.1144 14102 +14104 2 143.48376657482373 -186.6086379446895 35.5085 0.1144 14103 +14105 2 144.40328153245127 -186.37152560674258 35.7806 0.1144 14104 +14106 2 145.2817533593412 -186.17273494251356 36.0704 0.1144 14105 +14107 2 145.21816847129082 -184.99839041821434 36.4316 0.1144 14106 +14108 2 146.29526006143317 -184.58260134223116 36.7758 0.1144 14107 +14109 2 147.40376669990923 -184.06502718371843 37.1134 0.1144 14108 +14110 2 148.26592534793437 -183.5884804070359 37.485 0.1144 14109 +14111 2 149.1222440269903 -183.07189122889196 37.8717 0.1144 14110 +14112 2 149.48560104319944 -182.399650010699 38.0736 0.1144 14111 +14113 2 150.18015352294793 -181.07155373723475 38.4129 0.1144 14112 +14114 2 150.87412997875643 -180.57586132581736 38.7041 0.1144 14113 +14115 2 151.5700658701102 -179.8034289226256 38.96 0.1144 14114 +14116 2 152.26724761440664 -179.0641326214447 39.1779 0.1144 14115 +14117 2 153.0239210001799 -177.41827403583085 39.3288 0.1144 14116 +14118 2 153.84627926882712 -176.6411137510068 39.3926 0.1144 14117 +14119 2 154.6867749075721 -176.331104508809 39.3834 0.1144 14118 +14120 2 155.52847496001 -175.74461771798047 39.326 0.1144 14119 +14121 2 156.19224559927068 -173.77255123427426 39.2938 0.1144 14120 +14122 2 156.6103531885289 -172.94032969031025 39.345 0.1144 14121 +14123 2 157.03023811383696 -172.09889042362897 39.424 0.1144 14122 +14124 2 157.5107746481782 -171.3324068390545 39.4836 0.1144 14123 +14125 2 158.0031591918073 -170.57506825545306 39.5195 0.1144 14124 +14126 2 158.34333514636597 -169.66636445834087 39.5492 0.1144 14125 +14127 2 158.7703582593988 -168.14148616925112 39.6001 0.1144 14126 +14128 2 159.32748987201742 -166.39968967561256 39.6875 0.1144 14127 +14129 2 159.623832255644 -165.46327682869725 39.8138 0.1144 14128 +14130 2 159.53461001982689 -164.24342061212622 39.9627 0.1144 14129 +14131 2 159.31468033603647 -162.95042052554356 40.1215 0.1144 14130 +14132 2 159.08249228132075 -161.75901514337158 40.2816 0.1144 14131 +14133 2 158.86443684022584 -160.88668184978505 40.4275 0.1144 14132 +14134 2 158.65955735262816 -160.0291949811311 40.5684 0.1144 14133 +14135 2 158.4647540488981 -159.14377987159466 40.7198 0.1144 14134 +14136 2 158.2711106180281 -158.16159203564482 40.8859 0.1144 14135 +14137 2 158.07884277378344 -156.94951994469142 41.0642 0.1144 14136 +14138 2 157.88577536685358 -155.70243649277995 41.251 0.1144 14137 +14139 2 157.69350752260894 -154.42566042509043 41.4434 0.1144 14138 +14140 2 157.50137723702682 -153.15256386070962 41.636 0.1144 14139 +14141 2 157.3081722714344 -151.87679531552695 41.8253 0.1144 14140 +14142 2 157.37020609012077 -150.75536765756496 42.0059 0.1144 14141 +14143 2 157.75472357643093 -149.8310877214315 42.1697 0.1144 14142 +14144 2 158.23926727629572 -148.91958946290814 42.3212 0.1144 14143 +14145 2 158.73285623361778 -146.96968401114563 42.4684 0.1144 14144 +14146 2 159.2259019940368 -145.84601635931244 42.6208 0.1144 14145 +14147 2 159.71789261322124 -145.09773834297226 42.784 0.1144 14146 +14148 2 160.21896131690005 -143.899290896233 42.9682 0.1144 14147 +14149 2 160.79864000179742 -141.99696954689495 43.2247 0.1144 14148 +14150 2 161.41120062297355 -141.39782979368672 43.5501 0.1144 14149 +14151 2 162.0271071928833 -140.80739839735685 43.9074 0.1144 14150 +14152 2 162.64287620413066 -140.2189723384894 44.2618 0.1144 14151 +14153 2 163.25820675010033 -139.27465699144648 44.5866 0.1144 14152 +14154 2 163.87638148715035 -137.31248430870372 44.8608 0.1144 14153 +14155 2 164.81845823773926 -137.26800860575915 44.8356 0.1144 14154 +14156 2 165.74847754545243 -137.4168371109746 44.3638 0.1144 14155 +14157 2 166.30600618409886 -136.610152970146 44.0765 0.1144 14156 +14158 2 166.8556056845482 -134.5318412895454 43.8726 0.1144 14157 +14159 2 167.20158947357564 -133.49383350839935 43.8024 0.1144 14158 +14160 2 167.26597665225205 -132.36137283741 43.9396 0.1144 14159 +14161 2 167.4821606732886 -131.35901969734613 44.1907 0.1144 14160 +14162 2 167.7343928888886 -130.38562902092673 44.3775 0.1144 14161 +14163 2 168.02716036910294 -129.44522035256287 44.3971 0.1144 14162 +14164 2 168.47552614072163 -128.606007926821 44.3299 0.1144 14163 +14165 2 169.23572516567737 -128.19038384687929 44.3153 0.1144 14164 +14166 2 170.1100046259653 -126.37719213162984 44.4133 0.1144 14165 +14167 2 170.97020624749166 -126.15096061970782 44.6163 0.1144 14166 +14168 2 171.82523221842177 -125.87114285725832 44.905 0.1144 14167 +14169 2 172.67937343381686 -124.85110946233551 45.2432 0.1144 14168 +14170 2 173.40231605639656 -123.53957882250378 45.54 0.1144 14169 +14171 2 173.64568580657118 -122.57288894622431 45.5753 0.1144 14170 +14172 2 173.8074223865346 -121.5253826264645 45.5297 0.1144 14171 +14173 2 174.11525409108796 -120.60229554068947 45.7579 0.1144 14172 +14174 2 174.40584169859494 -119.68328315211048 46.0496 0.1144 14173 +14175 2 174.4768324803058 -118.59122308462112 46.3215 0.1144 14174 +14176 2 174.4751562648829 -117.45702227298149 46.6567 0.1144 14175 +14177 2 174.63671694851718 -116.46547626132393 47.0714 0.1144 14176 +14178 2 174.8597663543036 -115.56634045229598 47.5132 0.1144 14177 +14179 2 175.17597658889468 -114.72057932347928 47.9548 0.1144 14178 +14180 2 175.55153711218048 -113.03986390608864 48.3988 0.1144 14179 +14181 2 175.89310268151047 -111.64006799276213 48.8373 0.1144 14180 +14182 2 176.09628423633237 -110.73036301529345 49.2422 0.1144 14181 +14183 2 176.17520105465735 -109.73109688813373 49.5984 0.1144 14182 +14184 2 176.3211332038084 -108.77828606195587 49.91 0.1144 14183 +14185 2 176.59664408594796 -107.90768624484228 50.1861 0.1144 14184 +14186 2 176.88452274668688 -107.04382640398697 50.4375 0.1144 14185 +14187 2 177.07605640337437 -106.10898470804655 50.6766 0.1144 14186 +14188 2 177.19469410824973 -105.12525482575211 50.9118 0.1144 14187 +14189 2 177.30569339486442 -104.13514960626443 51.1476 0.1144 14188 +14190 2 177.41694826002862 -103.14460756151605 51.3856 0.1144 14189 +14191 2 177.52823595222975 -102.15294812262333 51.6258 0.1144 14190 +14192 2 177.63989645563447 -101.1808306831086 51.8675 0.1144 14191 +14193 2 177.75081054939938 -100.02578203634597 52.1094 0.1144 14192 +14194 2 177.86180983601417 -98.73164605130931 52.3513 0.1144 14193 +14195 2 177.9726715639664 -97.42939402086486 52.5935 0.1144 14194 +14196 2 178.0838412362807 -96.14667123720453 52.8368 0.1144 14195 +14197 2 178.1906543594596 -94.92110071926977 53.0813 0.1144 14196 +14198 2 178.27194486378315 -93.92455545673518 53.3215 0.1144 14197 +14199 2 178.32386735721462 -92.9076362936465 53.5584 0.1144 14198 +14200 2 178.38817795525404 -91.89668728491446 53.8112 0.1144 14199 +14201 2 178.47368666281767 -90.89756482862427 54.0943 0.1144 14200 +14202 2 178.56444838884744 -89.9031118969914 54.409 0.1144 14201 +14203 2 178.6832799070139 -88.92338371962052 54.7674 0.1144 14202 +14204 2 178.84791924703654 -87.97202199165677 55.1846 0.1144 14203 +14205 2 179.01864242078221 -87.02615592515966 55.6461 0.1144 14204 +14206 2 179.1654288127815 -86.13591543979366 56.1235 0.1144 14205 +14207 2 179.30246807851665 -85.1681305771356 56.6034 0.1144 14206 +14208 2 179.41194009700126 -84.18655654302695 57.0872 0.1144 14207 +14209 2 179.3757053100149 -83.1439102472477 57.605 0.1144 14208 +14210 2 179.00402373314512 -82.03900616310314 58.1613 0.1144 14209 +14211 2 178.21552007139553 -80.9991296363143 58.6569 0.1144 14210 +14212 2 177.1777266055406 -80.17570829604091 59.0204 0.1144 14211 +14213 2 176.0578241551336 -80.69911671607338 59.2651 0.1144 14212 +14214 2 174.9338142292008 -80.40228325988622 59.4222 0.1144 14213 +14215 2 173.82445866911365 -80.28314776171608 59.5288 0.1144 14214 +14216 2 172.78368805882462 -81.23909197356906 59.5885 0.1144 14215 +14217 2 171.87581238711869 -81.48603430180516 59.5826 0.1144 14216 +14218 2 171.05854846503394 -81.86855587802006 59.5384 0.1144 14217 +14219 2 170.13836067151692 -83.09178470433164 59.4737 0.1144 14218 +14220 2 169.0464757541081 -82.98407644578984 59.3922 0.1144 14219 +14221 2 167.91015019633303 -82.52804466341532 59.3261 0.1144 14220 +14222 2 166.76913163297232 -83.07682288577097 59.318 0.1144 14221 +14223 2 165.62822839636323 -82.60167829891553 59.3942 0.1144 14222 +14224 2 164.4952937366026 -82.249480735778 59.5328 0.1144 14223 +14225 2 163.38994224045598 -83.13340833054717 59.7041 0.1144 14224 +14226 2 162.63459250162822 -83.48579076691307 59.9102 0.1144 14225 +14227 2 162.0256982745764 -84.10605806298726 60.1454 0.1144 14226 +14228 2 161.04487210096144 -84.15390313119518 60.5615 0.1144 14227 +14229 2 160.28541679194592 -83.96932084024847 61.1828 0.1144 14228 +14230 2 160.2687189933858 -83.97148006844553 61.5513 0.1144 14229 +14231 2 159.86867209262093 -83.83927013758105 64.0612 0.1144 14230 +14232 2 159.00316049919184 -83.15649037078398 65.4058 0.1144 14231 +14233 2 158.48939196954413 -82.10573206786896 66.2502 0.1144 14232 +14234 2 158.1260655898169 -80.98753145542537 66.9127 0.1144 14233 +14235 2 157.6754745101867 -79.95735432262096 67.3896 0.1144 14234 +14236 2 157.20087316975616 -79.42592088265697 67.7062 0.1144 14235 +14237 2 156.7647063056125 -78.62786985577202 67.8784 0.1144 14236 +14238 2 156.36027493519316 -77.47728576936429 67.9689 0.1144 14237 +14239 2 155.9634374422015 -76.33239554113285 68.0266 0.1144 14238 +14240 2 155.71739189119015 -75.20517387765277 68.0957 0.1144 14239 +14241 2 155.6019623921362 -74.11612114466605 68.1937 0.1144 14240 +14242 2 155.51695215639296 -73.03635420087818 68.3183 0.1144 14241 +14243 2 155.33671993156122 -71.93214612770889 68.4639 0.1144 14242 +14244 2 155.0207631853674 -70.89574497217637 68.6241 0.1144 14243 +14245 2 154.65113735284817 -70.16380299646326 68.7912 0.1144 14244 +14246 2 154.27602713813775 -69.41331645776754 68.9573 0.1144 14245 +14247 2 153.90100211627708 -68.34642865444104 69.1163 0.1144 14246 +14248 2 153.52572151586708 -67.20528359395374 69.2656 0.1144 14247 +14249 2 153.39237809076425 -66.11165000408985 69.3893 0.1144 14248 +14250 2 153.44141263951533 -65.0745130489693 69.4764 0.1144 14249 +14251 2 153.5239896487985 -64.04809418339259 69.5338 0.1144 14250 +14252 2 153.6092193502212 -63.025646785177365 69.5727 0.1144 14251 +14253 2 154.22154230980993 -61.72215085738635 69.6074 0.1144 14252 +14254 2 154.80096231457483 -60.828786989644776 69.631 0.1144 14253 +14255 2 154.89999946083068 -59.819285186177865 69.641 0.1144 14254 +14256 2 154.43501398586423 -58.70704268673194 69.6598 0.1144 14255 +14257 2 154.84755591285344 -58.64780114607778 68.2744 0.1144 14256 +14258 2 155.58412518312602 -58.29923935640846 66.3628 0.1144 14257 +14259 2 156.6093072007272 -57.871492627117995 65.5029 0.1144 14258 +14260 2 157.71952449720573 -58.06515498881692 64.9925 0.1144 14259 +14261 2 158.84952245120047 -58.10283405644712 64.6271 0.1144 14260 +14262 2 159.90948848501256 -57.62395136995531 64.1998 0.1144 14261 +14263 2 160.97281838452028 -57.65385111916313 63.6132 0.1144 14262 +14264 2 162.07102969234367 -57.53829703900436 62.937 0.1144 14263 +14265 2 163.1484711692421 -57.301982069074086 62.116 0.1144 14264 +14266 2 164.09483859012985 -57.49009829034654 60.5788 0.1144 14265 +14267 2 154.18785862543328 -57.97794021865099 69.7724 0.1144 14256 +14268 2 153.810545110424 -57.0825569622015 70.019 0.1144 14267 +14269 2 153.15376390669454 -56.57418298133324 70.3231 0.1144 14268 +14270 2 152.2591013418857 -55.686100400211465 70.6104 0.1144 14269 +14271 2 151.52932157967635 -54.65573915651098 70.856 0.1144 14270 +14272 2 151.20079143309994 -53.555905204339034 71.0175 0.1144 14271 +14273 2 151.03697170282496 -52.45787638953198 71.1054 0.1144 14272 +14274 2 150.8996211121986 -51.37019303293864 71.2082 0.1144 14273 +14275 2 150.94703699680355 -50.33449658029438 71.328 0.1144 14274 +14276 2 151.3175649387851 -49.45396894950483 71.4521 0.1144 14275 +14277 2 151.10688052890933 -48.37922918271757 71.659 0.1144 14276 +14278 2 150.90150159800868 -47.28331322125462 71.8852 0.1144 14277 +14279 2 150.85944096489533 -46.2190567533686 72.109 0.1144 14278 +14280 2 151.04352770226325 -45.230806982399 72.3164 0.1144 14279 +14281 2 152.3016391881482 -45.087069642472684 72.5822 0.1144 14280 +14282 2 153.26743538490442 -44.39804959637789 72.3506 0.1144 14281 +14283 2 154.23310184797813 -43.87392392952251 72.0994 0.1144 14282 +14284 2 155.18501721554344 -43.19946339041036 71.9102 0.1144 14283 +14285 2 155.85382353769143 -42.557711138989404 71.6223 0.1144 14284 +14286 2 156.0944757288853 -41.61598304628528 71.1586 0.1144 14285 +14287 2 155.3521293673 -40.708615097102594 70.6031 0.1144 14286 +14288 2 155.3317607763843 -39.66671082028352 70.152 0.1144 14287 +14289 2 155.26255256240702 -38.60772964810541 69.7287 0.1144 14288 +14290 2 155.05876636431822 -37.56065793989736 68.9926 0.1144 14289 +14291 2 151.03837568633588 -44.98868911146322 72.8031 0.1144 14280 +14292 2 151.01764891020315 -43.99307541485947 73.7531 0.1144 14291 +14293 2 150.99649325763082 -42.94343324223786 74.1782 0.1144 14292 +14294 2 150.9095211772958 -41.88112227240213 74.6861 0.1144 14293 +14295 2 150.79138883994366 -40.8295088107574 75.3584 0.1144 14294 +14296 2 150.2930106800476 -39.80504162810992 76.1858 0.1144 14295 +14297 2 149.29305264739585 -39.214784428370265 77.1039 0.1144 14296 +14298 2 148.23292364441608 -39.72173193227114 77.9192 0.1144 14297 +14299 2 147.19872740287346 -39.54301482911397 79.0891 0.1144 14298 +14300 2 160.13148493717 -83.42767157724357 61.6258 0.1144 14229 +14301 2 159.83315760025442 -82.29139483796712 61.9632 0.1144 14300 +14302 2 159.70046289091295 -81.19481892183649 62.2042 0.1144 14301 +14303 2 159.1959120050207 -80.04218493449254 62.3574 0.1144 14302 +14304 2 158.60849820173036 -78.89865104723584 62.4932 0.1144 14303 +14305 2 157.92501029146098 -77.7824082940116 62.5892 0.1144 14304 +14306 2 157.2058500047185 -77.15091093334267 62.6598 0.1144 14305 +14307 2 156.4861988868857 -76.59787603097536 62.6923 0.1144 14306 +14308 2 155.76641021039038 -75.49265106115993 62.6738 0.1144 14307 +14309 2 155.0472499236479 -74.86103053381109 62.5923 0.1144 14308 +14310 2 154.3289736052076 -74.2860759688967 62.4375 0.1144 14309 +14311 2 154.22154932240812 -74.6951117987242 62.1261 0.1144 14310 +14312 2 153.97986620480407 -75.61312332103104 61.591 0.1144 14311 +14313 2 153.74210746892015 -76.52005489422127 60.9076 0.1144 14312 +14314 2 153.50564385020857 -77.4168290442519 60.1401 0.1144 14313 +14315 2 153.2693068635965 -78.30787399615006 59.3421 0.1144 14314 +14316 2 153.01702089711057 -79.18022376771684 58.522 0.1144 14315 +14317 2 152.70025825556337 -80.003294807289 57.6425 0.1144 14316 +14318 2 152.17644565942783 -81.30478844486765 57.0786 0.1144 14317 +14319 2 151.58295952969723 -82.41483225550738 57.0072 0.1144 14318 +14320 2 151.00987893720463 -83.08552495958945 57.0433 0.1144 14319 +14321 2 150.3582821685559 -83.67152689618129 57.0744 0.1144 14320 +14322 2 149.7871610116086 -84.3316116133922 56.9926 0.1144 14321 +14323 2 148.97231843562332 -85.55918505997374 56.7008 0.1144 14322 +14324 2 148.21941617503552 -84.5593385700393 56.551 0.1144 14323 +14325 2 147.57889809870832 -83.45106676799793 56.6524 0.1144 14324 +14326 2 146.5204329042548 -82.70030037875225 56.856 0.1144 14325 +14327 2 145.3805341595775 -83.2990690420959 57.055 0.1144 14326 +14328 2 144.23863213105875 -82.80441398199541 57.241 0.1144 14327 +14329 2 143.09606888574996 -82.31061640343039 57.3854 0.1144 14328 +14330 2 141.9531445430336 -82.92551297138286 57.4759 0.1144 14329 +14331 2 140.80865468921655 -82.43038587037775 57.528 0.1144 14330 +14332 2 139.6651543225601 -82.09759992963976 57.5621 0.1144 14331 +14333 2 138.5212576224123 -82.57208181993634 57.582 0.1144 14332 +14334 2 137.37982350053642 -82.13984861054607 57.5786 0.1144 14333 +14335 2 136.24147724510198 -82.23549331238173 57.547 0.1144 14334 +14336 2 135.10402977334866 -82.49359036053112 57.4907 0.1144 14335 +14337 2 133.96818063973302 -83.11524382732813 57.4165 0.1144 14336 +14338 2 132.83073316797976 -82.85700880450361 57.3308 0.1144 14337 +14339 2 131.6945229369564 -82.48537715756692 57.2373 0.1144 14338 +14340 2 130.558944197269 -83.24055453342119 57.1346 0.1144 14339 +14341 2 129.42444323917502 -82.87891292719387 57.0268 0.1144 14340 +14342 2 128.2905183050211 -82.51740827701603 56.9293 0.1144 14341 +14343 2 127.16475525786271 -83.33488134020219 56.8744 0.1144 14342 +14344 2 126.08913096411337 -83.19892400122315 56.9234 0.1144 14343 +14345 2 125.0976239405363 -83.29322866023912 57.1245 0.1144 14344 +14346 2 124.15363460958523 -84.59781864797543 57.4588 0.1144 14345 +14347 2 123.21824424583397 -84.77859156386943 57.871 0.1144 14346 +14348 2 122.28544170738084 -84.96149237781857 58.3055 0.1144 14347 +14349 2 121.34974261203467 -86.23022695635079 58.7146 0.1144 14348 +14350 2 120.3106220011814 -85.8331991031935 58.9966 0.1144 14349 +14351 2 119.70132284554634 -84.69740047245885 58.9302 0.1144 14350 +14352 2 118.98003583914203 -83.55083553509387 58.6726 0.1144 14351 +14353 2 118.07441543651368 -83.24508271679305 58.3719 0.1144 14352 +14354 2 117.1585429536886 -82.62091310081273 58.0745 0.1144 14353 +14355 2 116.11919740703877 -81.7341838424334 57.8642 0.1144 14354 +14356 2 115.01200500408473 -81.2972928905363 57.7917 0.1144 14355 +14357 2 113.90187460498788 -81.3655711602577 57.8385 0.1144 14356 +14358 2 112.79388574093164 -80.64553600400873 57.9642 0.1144 14357 +14359 2 111.6862056084704 -80.25164475420108 58.1398 0.1144 14358 +14360 2 110.58080456971237 -80.28182862956706 58.3456 0.1144 14359 +14361 2 109.46053130870044 -80.28673127574048 58.5749 0.1144 14360 +14362 2 108.32946489554666 -80.0801430122263 58.8269 0.1144 14361 +14363 2 107.19915660582828 -79.46376294428059 59.0979 0.1144 14362 +14364 2 106.0708405786923 -79.76286112217501 59.3846 0.1144 14363 +14365 2 104.99459531742897 -79.1300506790189 59.6504 0.1144 14364 +14366 2 103.88998522914352 -78.4254222977058 59.9525 0.1144 14365 +14367 2 102.7877511412068 -78.56350367592417 60.2792 0.1144 14366 +14368 2 101.68452756610961 -78.06084421263468 60.6228 0.1144 14367 +14369 2 100.58166508842012 -77.3409260009481 60.9756 0.1144 14368 +14370 2 99.53933538298094 -77.25559364361855 61.3141 0.1144 14369 +14371 2 98.50132398370681 -76.67993491913829 61.6386 0.1144 14370 +14372 2 97.4633125844326 -75.8235321674848 61.9447 0.1144 14371 +14373 2 96.42378803987054 -75.39235881630644 62.2381 0.1144 14372 +14374 2 97.15470435345838 -74.85602953876482 62.5797 0.1144 14373 +14375 2 98.14166411619203 -74.725016819298 62.9367 0.1144 14374 +14376 2 99.15318034351586 -74.64507252513398 63.1963 0.1144 14375 +14377 2 100.17918546377507 -73.57850788602964 63.4726 0.1144 14376 +14378 2 101.20826683137628 -73.54662374274571 63.8235 0.1144 14377 +14379 2 102.20681893015214 -73.44311003822503 64.2678 0.1144 14378 +14380 2 103.19949272229209 -72.35729863232392 64.8088 0.1144 14379 +14381 2 104.25905991887026 -72.48724886821816 65.4511 0.1144 14380 +14382 2 105.36503589826884 -72.86641806062197 66.1172 0.1144 14381 +14383 2 106.46069442748518 -72.18847029997579 66.8021 0.1144 14382 +14384 2 107.4440679814588 -72.12731015370106 67.475 0.1144 14383 +14385 2 108.33436420065266 -71.85439334835903 68.0896 0.1144 14384 +14386 2 109.20909684690076 -70.57897162560408 68.6482 0.1144 14385 +14387 2 110.1079006372785 -70.29148513122915 69.1351 0.1144 14386 +14388 2 111.0366929086249 -69.14295960367524 69.5372 0.1144 14387 +14389 2 111.97720655715975 -68.84662059357608 69.8625 0.1144 14388 +14390 2 112.92168361761804 -68.59766960729381 70.128 0.1144 14389 +14391 2 113.86326101960023 -67.8682676983049 70.3483 0.1144 14390 +14392 2 114.77997012381411 -67.15031980218228 70.5267 0.1144 14391 +14393 2 115.66513074658812 -66.76963637425163 70.6647 0.1144 14392 +14394 2 116.54056225475625 -66.43679132205133 70.7728 0.1144 14393 +14395 2 117.41640722614477 -65.1538770997223 70.8596 0.1144 14394 +14396 2 118.29282822147337 -64.79848147050842 70.931 0.1144 14395 +14397 2 119.16919685098924 -64.43753891255508 70.9929 0.1144 14396 +14398 2 120.04570303916765 -63.50146259662784 71.0494 0.1144 14397 +14399 2 120.92212403449628 -62.83655334232766 71.1032 0.1144 14398 +14400 2 121.78935911212193 -62.43776545511069 71.1539 0.1144 14399 +14401 2 122.57276883519285 -61.9338211340754 71.1987 0.1144 14400 +14402 2 123.25773837121062 -60.560247129458226 71.2348 0.1144 14401 +14403 2 123.85903251766857 -59.80621850892143 71.2639 0.1144 14402 +14404 2 124.33136711083776 -58.98954404418922 71.2908 0.1144 14403 +14405 2 124.71182196422853 -58.10562822395401 71.3199 0.1144 14404 +14406 2 125.07316398850713 -57.21235767154632 71.3558 0.1144 14405 +14407 2 125.35247650908326 -56.27642470588924 71.4031 0.1144 14406 +14408 2 125.20450875734039 -55.228611455805904 71.4669 0.1144 14407 +14409 2 125.14196980047163 -54.133591010489184 71.5722 0.1144 14408 +14410 2 125.56953370136097 -52.780052884667285 71.727 0.1144 14409 +14411 2 126.13914171302045 -51.84679569047839 71.9169 0.1144 14410 +14412 2 126.71863829842246 -51.106559521805075 72.1213 0.1144 14411 +14413 2 127.2978675914793 -50.374766078551104 72.3223 0.1144 14412 +14414 2 127.87830129822908 -49.63963798240632 72.5077 0.1144 14413 +14415 2 128.31748115214472 -48.34248645384909 72.6258 0.1144 14414 +14416 2 128.22461043916528 -47.26648144886739 72.5528 0.1144 14415 +14417 2 128.28000472619712 -46.095180905498005 72.3593 0.1144 14416 +14418 2 128.92210994713116 -45.31567562910468 72.2714 0.1144 14417 +14419 2 129.4325850056749 -44.51515943237633 72.2921 0.1144 14418 +14420 2 129.56941564273998 -43.49625608688893 72.4164 0.1144 14419 +14421 2 129.7016138261118 -42.46608962443423 72.6247 0.1144 14420 +14422 2 129.83350327788867 -41.43554180065043 72.8938 0.1144 14421 +14423 2 129.96303696062898 -40.42304450683922 73.4798 0.1144 14422 +14424 2 95.79845890837254 -75.58794769576564 62.5887 0.1144 14373 +14425 2 94.73511410449666 -74.90223362177696 63.364 0.1144 14424 +14426 2 93.65911390366773 -74.21067737306548 63.9828 0.1144 14425 +14427 2 92.564215800259 -74.5213060826985 64.4221 0.1144 14426 +14428 2 91.47404705718921 -73.8223249009368 64.9228 0.1144 14427 +14429 2 90.38704216335765 -73.1296907829852 65.4612 0.1144 14428 +14430 2 89.30003726952603 -73.43717045392079 66.0167 0.1144 14429 +14431 2 88.21396949704223 -72.74290039673585 66.5703 0.1144 14430 +14432 2 87.1269122373979 -72.05565942550734 67.1115 0.1144 14431 +14433 2 86.04057407098583 -72.34295056109809 67.636 0.1144 14432 +14434 2 84.95704106545088 -71.63212387971154 68.1386 0.1144 14433 +14435 2 83.88396034596241 -71.86162401720759 68.6036 0.1144 14434 +14436 2 82.82765340783084 -71.06576589905615 69.0144 0.1144 14435 +14437 2 81.7775773562264 -70.26319469576178 69.365 0.1144 14436 +14438 2 80.72616715724635 -70.40111067685181 69.6545 0.1144 14437 +14439 2 79.67159310902801 -69.58966243864195 69.8807 0.1144 14438 +14440 2 78.61608193946202 -68.77790585721658 70.0414 0.1144 14439 +14441 2 77.54063003771773 -68.82111298936903 70.1151 0.1144 14440 +14442 2 76.42103581576151 -68.35875170437454 70.0218 0.1144 14441 +14443 2 75.28385152848199 -67.89952911109738 69.741 0.1144 14442 +14444 2 74.15201948066448 -68.39049412077857 69.3311 0.1144 14443 +14445 2 73.02517315896807 -67.94533548129161 68.8523 0.1144 14444 +14446 2 72.02414707560519 -67.13864756888746 68.4351 0.1144 14445 +14447 2 71.11125634252295 -66.77436971281745 68.1397 0.1144 14446 +14448 2 70.21288362998968 -66.07004858757016 67.9602 0.1144 14447 +14449 2 69.22518787476409 -65.16930666811277 67.8748 0.1144 14448 +14450 2 68.11197992026328 -64.77748028384914 67.8572 0.1144 14449 +14451 2 66.96851478969029 -65.0708902191494 67.8835 0.1144 14450 +14452 2 65.82411563935273 -64.64361035746737 67.9336 0.1144 14451 +14453 2 64.68122963430298 -64.62336873369749 68.005 0.1144 14452 +14454 2 63.54207049825885 -64.60404418030546 68.1055 0.1144 14453 +14455 2 62.419402438007126 -64.0044531584913 68.248 0.1144 14454 +14456 2 61.3035381866396 -63.918495501789415 68.446 0.1144 14455 +14457 2 60.189633370817376 -63.62489675117516 68.7109 0.1144 14456 +14458 2 59.081298130036174 -63.813740696323855 69.0721 0.1144 14457 +14459 2 57.9982651656446 -63.234483455478404 69.704 0.1144 14458 +14460 2 56.94494177077698 -62.61095817464696 70.5908 0.1144 14459 +14461 2 55.913550394044734 -62.67207972428789 71.6288 0.1144 14460 +14462 2 54.895914096333 -62.26316215123202 72.7527 0.1144 14461 +14463 2 53.880471699474725 -61.670412523937 73.8931 0.1144 14462 +14464 2 52.87107498806512 -61.387797019308614 74.9759 0.1144 14463 +14465 2 52.00051398537636 -60.95787728858292 75.8184 0.1144 14464 +14466 2 51.19404014294926 -59.94386530502289 76.4859 0.1144 14465 +14467 2 50.41024310648345 -58.96577338275317 77.4063 0.1144 14466 +14468 2 154.21525126039631 -74.12376508093337 62.6878 0.1144 14310 +14469 2 153.5433802147454 -73.16378319998587 63.9453 0.1144 14468 +14470 2 152.79291340541442 -72.09201068801605 64.4098 0.1144 14469 +14471 2 152.0509159242968 -71.0239250153822 64.6489 0.1144 14470 +14472 2 151.32201702880664 -70.58901859660824 64.8642 0.1144 14471 +14473 2 150.42502772787861 -69.90181352004703 65.0577 0.1144 14472 +14474 2 149.52469557980007 -68.91279432690159 65.221 0.1144 14473 +14475 2 148.72209065169733 -67.89511567089336 65.3414 0.1144 14474 +14476 2 148.2231624938916 -66.89726810621754 65.3951 0.1144 14475 +14477 2 147.61785819214398 -66.4615980298051 65.3932 0.1144 14476 +14478 2 146.91514873762492 -65.45599415858972 65.347 0.1144 14477 +14479 2 146.19051578248704 -64.37473292696349 65.2736 0.1144 14478 +14480 2 145.42870040717108 -63.32659570362949 65.1599 0.1144 14479 +14481 2 144.61552304817712 -62.473152887804574 64.9004 0.1144 14480 +14482 2 143.88297877710767 -62.10120954452675 64.491 0.1144 14481 +14483 2 143.41809011409052 -60.99948337068482 63.9873 0.1144 14482 +14484 2 143.27154170257302 -59.932246488827175 63.3884 0.1144 14483 +14485 2 143.36878109207424 -58.94170756983097 62.6954 0.1144 14484 +14486 2 143.52954290555985 -57.97908947206832 62.018 0.1144 14485 +14487 2 143.84323249604446 -56.79871171574148 61.4723 0.1144 14486 +14488 2 144.30162750165124 -55.566600545239694 61.0308 0.1144 14487 +14489 2 144.71573713543899 -54.76238171208148 60.5018 0.1144 14488 +14490 2 144.47594640169044 -53.708248504378 59.9245 0.1144 14489 +14491 2 144.26525337960194 -52.6337382813224 59.4205 0.1144 14490 +14492 2 144.25804273052537 -51.59814797748698 58.8986 0.1144 14491 +14493 2 144.35319924866104 -50.596778618344246 58.3596 0.1144 14492 +14494 2 144.48425468890196 -49.60522255913151 57.822 0.1144 14493 +14495 2 144.62872054794826 -48.61577212009728 57.302 0.1144 14494 +14496 2 144.78611849573826 -47.630565309399245 56.7988 0.1144 14495 +14497 2 144.9501200465626 -46.64373029666948 56.3119 0.1144 14496 +14498 2 145.1155698758335 -45.65487255532366 55.8446 0.1144 14497 +14499 2 145.28107285815003 -44.662730459765356 55.3986 0.1144 14498 +14500 2 145.4390960941097 -43.6645731875608 54.9749 0.1144 14499 +14501 2 145.49846860844397 -42.550796924897696 54.5754 0.1144 14500 +14502 2 145.36432872223904 -41.498665080477586 54.2357 0.1144 14501 +14503 2 145.2848184712988 -40.38027775371685 53.9787 0.1144 14502 +14504 2 145.51375789751694 -39.17436798126063 53.7832 0.1144 14503 +14505 2 146.31588461935294 -38.51028049182485 53.599 0.1144 14504 +14506 2 147.38077711777058 -38.404192861465624 53.4652 0.1144 14505 +14507 2 148.03103260716478 -39.29200548735388 53.2868 0.1144 14506 +14508 2 148.91638236836104 -182.35448833745772 37.5547 0.1144 14111 +14509 2 148.53684823393115 -181.1091134236781 36.8264 0.1144 14508 +14510 2 148.15476702091632 -179.97846585910963 36.4333 0.1144 14509 +14511 2 147.80003271268606 -178.83859152836826 36.1424 0.1144 14510 +14512 2 147.46143189287173 -177.48919446906666 35.9744 0.1144 14511 +14513 2 147.12424731169966 -176.14463687450097 35.8798 0.1144 14512 +14514 2 146.80234739202848 -174.78874216067234 35.6899 0.1144 14513 +14515 2 146.51274486717955 -173.67423394062286 35.2696 0.1144 14514 +14516 2 146.2480951404121 -172.87020021386036 34.6164 0.1144 14515 +14517 2 145.99200604317778 -172.16225116764218 33.794 0.1144 14516 +14518 2 145.73961848145518 -171.2539140294384 32.8762 0.1144 14517 +14519 2 145.48741301922806 -170.12519866889264 31.9332 0.1144 14518 +14520 2 145.24754019421283 -168.90613476989577 31.0274 0.1144 14519 +14521 2 145.11190577221862 -167.69122423250474 30.2358 0.1144 14520 +14522 2 145.16980338423537 -166.55126939321224 29.6363 0.1144 14521 +14523 2 145.30458388227572 -165.46320213211942 29.2146 0.1144 14522 +14524 2 145.22758857542001 -164.2928441231917 28.8859 0.1144 14523 +14525 2 144.45510116943206 -162.99993759037022 28.5415 0.1144 14524 +14526 2 143.50308330130926 -161.76526014416953 28.2038 0.1144 14525 +14527 2 143.24151703133822 -160.66664587995166 27.9936 0.1144 14526 +14528 2 143.19979776746442 -159.50931335507514 27.9238 0.1144 14527 +14529 2 142.7221623114783 -158.9384296708405 27.8492 0.1144 14528 +14530 2 142.14033840923742 -158.33991050728432 27.7402 0.1144 14529 +14531 2 141.56096477363224 -157.11185921472577 27.5957 0.1144 14530 +14532 2 141.01494608313038 -155.73170965479017 27.4024 0.1144 14531 +14533 2 140.60822932114536 -154.37097040867343 27.1413 0.1144 14532 +14534 2 140.36915157215918 -153.0683890689279 26.8453 0.1144 14533 +14535 2 140.1914985604129 -151.8292636093284 26.5507 0.1144 14534 +14536 2 139.97486245954332 -150.53041505900785 26.2699 0.1144 14535 +14537 2 139.7163990784702 -149.46798438259407 26.0036 0.1144 14536 +14538 2 139.29315490362464 -149.0493148543729 25.7558 0.1144 14537 +14539 2 138.6425545349599 -148.1470907251388 25.5321 0.1144 14538 +14540 2 137.9340550682378 -146.80551480340398 25.304 0.1144 14539 +14541 2 137.2959663346973 -146.55402215299992 25.0045 0.1144 14540 +14542 2 136.73597833117907 -145.77398405172505 24.6266 0.1144 14541 +14543 2 136.50241848395774 -144.50063778711 24.2597 0.1144 14542 +14544 2 136.4302582456915 -143.28264785070468 23.9311 0.1144 14543 +14545 2 136.35686076669535 -142.067095804047 23.6329 0.1144 14544 +14546 2 136.21524192136647 -140.8112995847185 23.3522 0.1144 14545 +14547 2 135.96600279566286 -139.50580468772867 23.0714 0.1144 14546 +14548 2 135.68080687141173 -138.18787271253834 22.7868 0.1144 14547 +14549 2 135.41272531052425 -136.8749580294893 22.5076 0.1144 14548 +14550 2 135.2736942904935 -135.6259880914059 22.2842 0.1144 14549 +14551 2 135.19632247301087 -134.4018951422808 22.1343 0.1144 14550 +14552 2 135.06036700778554 -133.12685955070603 22.0651 0.1144 14551 +14553 2 134.69040350545026 -131.7869836764802 22.0702 0.1144 14552 +14554 2 134.09471738351698 -130.41237253371216 22.0888 0.1144 14553 +14555 2 133.28524707066424 -130.80351403585092 22.0818 0.1144 14554 +14556 2 132.46757481663957 -129.4849760502413 22.0201 0.1144 14555 +14557 2 131.85729099193708 -128.11673513101064 21.8891 0.1144 14556 +14558 2 131.31560463574624 -126.78313950460694 21.7048 0.1144 14557 +14559 2 130.76433602836119 -125.43481648142581 21.4843 0.1144 14558 +14560 2 130.18972458013195 -125.07443719065554 21.211 0.1144 14559 +14561 2 129.59774550433985 -124.35711575849079 20.8756 0.1144 14560 +14562 2 128.95618729154938 -122.99434416709819 20.4721 0.1144 14561 +14563 2 128.30199081153495 -121.63813859523125 19.9907 0.1144 14562 +14564 2 127.85206405027776 -120.30875436271909 19.4891 0.1144 14563 +14565 2 127.35849123351727 -118.96767370176757 18.9867 0.1144 14564 +14566 2 126.61979895442018 -118.95172672447889 18.434 0.1144 14565 +14567 2 125.61132905332072 -118.2708985665223 17.8602 0.1144 14566 +14568 2 124.66696992946687 -117.04839779647915 17.3734 0.1144 14567 +14569 2 124.3260577867526 -115.86145340935803 16.9236 0.1144 14568 +14570 2 123.61284368037427 -115.04732470583812 16.4969 0.1144 14569 +14571 2 122.68073200088261 -115.11106854803039 15.934 0.1144 14570 +14572 2 121.79817072153891 -114.35145355565122 15.5463 0.1144 14571 +14573 2 121.65382861150032 -113.8649594883638 15.3242 0.1144 14572 +14574 2 121.31989927558246 -112.6722415866347 14.9152 0.1144 14573 +14575 2 120.96899864559309 -111.46652948505752 14.7431 0.1144 14574 +14576 2 120.46989148987514 -110.23874519387701 14.6372 0.1144 14575 +14577 2 119.91452191190412 -109.81028677090384 14.5702 0.1144 14576 +14578 2 119.45207972140288 -109.26422406461002 14.5155 0.1144 14577 +14579 2 118.9135079502206 -108.04028606169294 14.4675 0.1144 14578 +14580 2 118.0995403332907 -106.87169602312021 14.4177 0.1144 14579 +14581 2 117.10831963141916 -105.82119365279938 14.3555 0.1144 14580 +14582 2 116.16707129845426 -106.13897093722547 14.2623 0.1144 14581 +14583 2 115.47843968269665 -104.96776397443014 14.11 0.1144 14582 +14584 2 115.0129219373901 -103.75488574079614 13.9115 0.1144 14583 +14585 2 114.63252976599229 -102.55791468893733 13.7154 0.1144 14584 +14586 2 114.11418384159919 -101.37440230805497 13.5514 0.1144 14585 +14587 2 113.59975678829672 -100.1754604502344 13.4137 0.1144 14586 +14588 2 113.29161745827568 -98.9979767321131 13.3036 0.1144 14587 +14589 2 113.22837274378415 -97.91568976876141 13.2112 0.1144 14588 +14590 2 113.23038954635645 -96.85843701544256 13.0765 0.1144 14589 +14591 2 113.0169172947251 -95.80282694404778 12.8843 0.1144 14590 +14592 2 112.6571120675241 -95.16641247112307 12.6985 0.1144 14591 +14593 2 112.12200977559195 -94.62639132458312 12.5568 0.1144 14592 +14594 2 111.52490431343327 -93.43641254625902 12.4654 0.1144 14593 +14595 2 110.82740333654755 -92.31124184466232 12.3831 0.1144 14594 +14596 2 109.97655582786842 -92.39329823049007 12.338 0.1144 14595 +14597 2 109.12022393699803 -91.28282136870571 12.3896 0.1144 14596 +14598 2 108.64976259735678 -90.10248386675022 12.5196 0.1144 14597 +14599 2 108.35829134044192 -88.93235956585228 12.6879 0.1144 14598 +14600 2 108.01883859212953 -87.75128394100163 12.8556 0.1144 14599 +14601 2 107.6561782472852 -86.57568081995252 13.0176 0.1144 14600 +14602 2 107.36567693875514 -85.47191513930204 13.1734 0.1144 14601 +14603 2 107.15889038142492 -84.33477955705453 13.3263 0.1144 14602 +14604 2 107.13449119739408 -83.26080055110288 13.5128 0.1144 14603 +14605 2 107.09227189237691 -82.1764657893635 13.795 0.1144 14604 +14606 2 106.69834026102765 -81.16570210231691 14.1739 0.1144 14605 +14607 2 106.23113347410401 -80.62895790684556 14.6097 0.1144 14606 +14608 2 105.82562112581203 -79.79385835028286 15.0102 0.1144 14607 +14609 2 105.43186539079193 -78.62081140009715 15.3701 0.1144 14608 +14610 2 105.05129422148181 -77.45478365268615 15.6599 0.1144 14609 +14611 2 104.68088132730603 -76.29093032230213 15.8694 0.1144 14610 +14612 2 104.32240714589747 -75.12798040810065 16.0758 0.1144 14611 +14613 2 103.98232910941542 -73.98245366183518 16.3973 0.1144 14612 +14614 2 103.64876087090519 -72.83973465431025 16.8321 0.1144 14613 +14615 2 103.18623107850775 -71.6941736583277 17.3148 0.1144 14614 +14616 2 102.61233941604726 -70.85393333527898 17.7978 0.1144 14615 +14617 2 102.02753135501703 -70.38751679533583 18.2662 0.1144 14616 +14618 2 101.49826903205414 -69.2550596396325 18.6997 0.1144 14617 +14619 2 101.31126823442182 -68.13892746934945 19.136 0.1144 14618 +14620 2 101.13882680189192 -67.02468534679006 19.5627 0.1144 14619 +14621 2 101.34318984595939 -66.11644992976919 19.863 0.1144 14620 +14622 2 101.60535207455177 -65.1601115979204 20.0833 0.1144 14621 +14623 2 101.86889771474935 -63.820062858808214 20.2391 0.1144 14622 +14624 2 102.13283727939168 -62.443818458114905 20.3496 0.1144 14623 +14625 2 102.39834235513456 -61.44952376308686 20.4316 0.1144 14624 +14626 2 102.76935802662328 -60.57175837019958 20.5441 0.1144 14625 +14627 2 103.21335243372761 -59.729352189075044 20.7076 0.1144 14626 +14628 2 103.65720928216942 -58.88168587442016 20.8811 0.1144 14627 +14629 2 104.10054247248382 -58.03880688862724 21.0563 0.1144 14628 +14630 2 104.50884668084913 -56.877170648219604 21.2131 0.1144 14629 +14631 2 104.8839109571112 -55.520568001559276 21.3394 0.1144 14630 +14632 2 105.2565249667376 -54.649580808286316 21.4423 0.1144 14631 +14633 2 105.62856295242392 -53.74079787898825 21.5365 0.1144 14632 +14634 2 106.00211408339814 -52.8444090156161 21.6373 0.1144 14633 +14635 2 106.35365582836701 -51.94059898818929 21.7672 0.1144 14634 +14636 2 106.63257442449844 -50.986632112233906 21.9758 0.1144 14635 +14637 2 106.90796807398394 -49.852046685981186 22.2458 0.1144 14636 +14638 2 107.18354382296482 -48.53435024968208 22.5565 0.1144 14637 +14639 2 107.45974796169847 -47.4185521401345 22.889 0.1144 14638 +14640 2 107.73914877670754 -46.47055454333499 23.2254 0.1144 14639 +14641 2 108.25248205447772 -45.68410575096705 23.5224 0.1144 14640 +14642 2 108.81205532151932 -44.41637159571071 23.775 0.1144 14641 +14643 2 109.37475961076217 -43.4958076249797 23.9916 0.1144 14642 +14644 2 110.15018782982304 -42.94200433201009 24.1696 0.1144 14643 +14645 2 110.94224888590657 -42.37634076814863 24.3195 0.1144 14644 +14646 2 111.73439513483987 -41.356515650694156 24.452 0.1144 14645 +14647 2 112.52546670376282 -40.70224573340753 24.5775 0.1144 14646 +14648 2 113.31355342135987 -40.090953043326145 24.7013 0.1144 14647 +14649 2 113.9716599879805 -39.39040086134959 24.8145 0.1144 14648 +14650 2 114.62869187459086 -38.33032499257282 24.9319 0.1144 14649 +14651 2 115.28617005145864 -37.44857898523667 25.0672 0.1144 14650 +14652 2 115.94226481672123 -36.736733805255405 25.2333 0.1144 14651 +14653 2 116.5983595819838 -36.05484180552618 25.4415 0.1144 14652 +14654 2 116.05236221807178 -35.69121085108713 23.0764 0.1144 14653 +14655 2 116.86310212464619 -35.19472061154511 22.6366 0.1144 14654 +14656 2 117.92362316385328 -34.584091303034015 22.2182 0.1144 14655 +14657 2 119.03583203037763 -34.690644658503864 21.799 0.1144 14656 +14658 2 120.15027072637551 -34.75223312902631 21.3981 0.1144 14657 +14659 2 121.2678732716117 -34.38610376403687 21.0332 0.1144 14658 +14660 2 121.63885060543373 -33.47608641751859 20.7285 0.1144 14659 +14661 2 121.89892125575165 -32.505982937987376 20.193 0.1144 14660 +14662 2 116.53159962833666 -35.68430924345782 25.6707 0.1144 14653 +14663 2 116.33287504446943 -34.590355654418836 26.1968 0.1144 14662 +14664 2 116.13630292220591 -33.50238138262348 26.7995 0.1144 14663 +14665 2 116.0884318561848 -32.454468742938715 27.5284 0.1144 14664 +14666 2 116.34334398563553 -31.51119074088285 28.2475 0.1144 14665 +14667 2 116.8582403654598 -30.50080381434267 28.7801 0.1144 14666 +14668 2 117.66259641362524 -29.669466460579937 29.213 0.1144 14667 +14669 2 118.4766261090009 -29.14034546713789 29.552 0.1144 14668 +14670 2 119.29457467546709 -28.55867186741271 29.8178 0.1144 14669 +14671 2 120.16047870730031 -27.67978686604463 30.0191 0.1144 14670 +14672 2 121.14912441006783 -27.354646574999787 30.1512 0.1144 14671 +14673 2 122.05161501527456 -26.869517028460546 30.2448 0.1144 14672 +14674 2 122.95561876576915 -26.184833009079135 30.3052 0.1144 14673 +14675 2 123.85967488207643 -25.583386343876516 30.3447 0.1144 14674 +14676 2 124.76318780148077 -25.09562242907963 30.3755 0.1144 14675 +14677 2 125.66719155197538 -24.533430941053716 30.4102 0.1144 14676 +14678 2 126.57053408568004 -23.824451751420224 30.459 0.1144 14677 +14679 2 127.4724689929551 -23.35748470590701 30.5256 0.1144 14678 +14680 2 128.37467197980826 -22.8623006300866 30.6144 0.1144 14679 +14681 2 129.00808361785516 -22.623689619698368 30.7406 0.1144 14680 +14682 2 130.13764269812435 -22.671399390011604 30.9397 0.1144 14681 +14683 2 131.19142429214452 -22.148888377089804 31.1928 0.1144 14682 +14684 2 132.14859809410945 -21.776876475088617 31.4958 0.1144 14683 +14685 2 133.09766065838167 -21.354836860494533 31.8352 0.1144 14684 +14686 2 134.0456485426436 -20.696188027840417 32.1978 0.1144 14685 +14687 2 134.99317763561947 -20.268025119582905 32.5699 0.1144 14686 +14688 2 135.76973049145693 -19.642058138686263 32.9812 0.1144 14687 +14689 2 136.52578169064358 -18.947357029229416 33.411 0.1144 14688 +14690 2 137.3108803606353 -18.116679482179062 33.8268 0.1144 14689 +14691 2 138.18275719670353 -17.598432754477752 34.1776 0.1144 14690 +14692 2 139.07798298208598 -17.095371973078105 34.4719 0.1144 14691 +14693 2 140.02027396667074 -16.444803760331435 34.7175 0.1144 14692 +14694 2 140.93267657321164 -15.949477815812418 34.8331 0.1144 14693 +14695 2 141.82902709006683 -15.43615970485462 34.8547 0.1144 14694 +14696 2 142.72546279977183 -14.8147271236063 34.846 0.1144 14695 +14697 2 143.62176095081426 -14.204706902206224 34.825 0.1144 14696 +14698 2 144.51877268445932 -13.682886298879028 34.8009 0.1144 14697 +14699 2 145.41520839416435 -13.152639529726766 34.7768 0.1144 14698 +14700 2 128.18098899219893 -22.485377749558733 31.3466 0.1144 14680 +14701 2 127.57058983503782 -21.98575337976114 33.4746 0.1144 14700 +14702 2 126.90209406710468 -21.429300293087643 35.3536 0.1144 14701 +14703 2 126.83546354536654 -21.34017863488172 38.1422 0.1144 14702 +14704 2 100.24334624858486 -66.54231071500246 19.9099 0.1144 14620 +14705 2 99.14323656595971 -65.9824310700278 19.7691 0.1144 14704 +14706 2 98.32568584185287 -65.82467474436228 19.697 0.1144 14705 +14707 2 97.89749738013612 -64.67290544440276 19.5637 0.1144 14706 +14708 2 97.65146354292054 -63.53051994088296 19.6377 0.1144 14707 +14709 2 97.49894542875111 -62.43523412381313 20.2078 0.1144 14708 +14710 2 97.035288300735 -61.97739182548181 20.6683 0.1144 14709 +14711 2 96.16030018204756 -61.1202374189177 21.7286 0.1144 14710 +14712 2 95.24877303770623 -60.64058937522847 22.4924 0.1144 14711 +14713 2 94.310204618592 -60.17613719590319 23.1598 0.1144 14712 +14714 2 93.38452365269245 -59.323859421361746 24.0214 0.1144 14713 +14715 2 92.4698864099988 -58.49337987289336 25.0116 0.1144 14714 +14716 2 91.49971304773877 -58.6041866178184 26.1371 0.1144 14715 +14717 2 90.508620783466 -58.276206516416444 27.4697 0.1144 14716 +14718 2 89.49055702405087 -57.88284339615968 28.7286 0.1144 14717 +14719 2 88.45780996056882 -57.95420786531231 29.8808 0.1144 14718 +14720 2 87.41535332125653 -57.70538608286776 30.9722 0.1144 14719 +14721 2 86.36428988976445 -57.21618378770524 32.011 0.1144 14720 +14722 2 85.30450085897294 -57.125393039826605 32.993 0.1144 14721 +14723 2 84.23650988700942 -56.99837885514484 33.9195 0.1144 14722 +14724 2 83.16147763396677 -57.07822532924434 34.802 0.1144 14723 +14725 2 82.09341819043465 -56.69202441946908 35.609 0.1144 14724 +14726 2 81.10444273125592 -55.89104816419317 36.258 0.1144 14725 +14727 2 80.13840077525748 -55.26416586316902 36.7786 0.1144 14726 +14728 2 79.16958579288243 -54.923021199268625 37.2193 0.1144 14727 +14729 2 78.0724298333711 -54.499845168962636 37.7594 0.1144 14728 +14730 2 76.96579874565259 -54.242304562647874 38.4152 0.1144 14729 +14731 2 75.86986982250798 -54.71641449566471 39.1681 0.1144 14730 +14732 2 74.82997907835662 -54.08001553084297 39.9462 0.1144 14731 +14733 2 73.86305065031323 -53.27078862765438 40.6935 0.1144 14732 +14734 2 72.90239996398014 -53.17536779571333 41.4109 0.1144 14733 +14735 2 71.93751857337838 -52.346679821589724 42.0851 0.1144 14734 +14736 2 70.96875975093573 -51.52357269727019 42.7227 0.1144 14735 +14737 2 69.85695983131248 -51.57047888761564 43.3434 0.1144 14736 +14738 2 68.82665932933571 -51.937898616190985 43.9228 0.1144 14737 +14739 2 67.79801263289238 -52.04417377592669 44.478 0.1144 14738 +14740 2 66.76842881510132 -52.54819499644872 45.0198 0.1144 14739 +14741 2 65.73617197916232 -52.967540576023445 45.5409 0.1144 14740 +14742 2 64.70369160447817 -53.06927612398811 46.0334 0.1144 14741 +14743 2 63.66675777401298 -53.54637718684544 46.4937 0.1144 14742 +14744 2 62.58625966555954 -53.86678331515573 46.9235 0.1144 14743 +14745 2 61.48490382821808 -53.52449225192422 47.6778 0.1144 14744 +14746 2 97.51464693914411 -62.37248461361794 20.7484 0.1144 14709 +14747 2 97.75587515427813 -61.42821823019794 21.3462 0.1144 14746 +14748 2 97.99697673731256 -60.48691263938895 21.9883 0.1144 14747 +14749 2 98.19699513543273 -59.29384407738447 22.63 0.1144 14748 +14750 2 97.85100045464807 -58.39894630176964 23.1423 0.1144 14749 +14751 2 97.44410469475085 -57.26307685896748 23.5679 0.1144 14750 +14752 2 96.9642924676404 -56.14586830311891 24.0062 0.1144 14751 +14753 2 96.08643071650727 -55.2412324880263 24.7574 0.1144 14752 +14754 2 95.32356389938016 -54.281920825224596 25.4932 0.1144 14753 +14755 2 95.03199853562916 -53.43608794897031 26.4596 0.1144 14754 +14756 2 95.87290592108462 -53.00598132291187 26.9891 0.1144 14755 +14757 2 96.72428031326928 -52.56475770115774 27.407 0.1144 14756 +14758 2 97.5786036281597 -51.814607157530496 27.7683 0.1144 14757 +14759 2 98.43229855329727 -50.978405675096106 28.1148 0.1144 14758 +14760 2 99.28665469522483 -50.53879133821301 28.476 0.1144 14759 +14761 2 100.07591059043122 -50.02071552545636 28.9019 0.1144 14760 +14762 2 100.8515708657537 -48.88268383554021 29.3804 0.1144 14761 +14763 2 101.62375856024303 -48.26715116050629 29.899 0.1144 14762 +14764 2 102.39612835422776 -47.722214774269915 30.4461 0.1144 14763 +14765 2 103.1659103229143 -47.1684694161308 31.0114 0.1144 14764 +14766 2 103.93475517025314 -46.009314377854984 31.5854 0.1144 14765 +14767 2 104.70422840734477 -45.44173503714985 32.1616 0.1144 14766 +14768 2 105.47298806183375 -44.892678171692374 32.7382 0.1144 14767 +14769 2 106.24246129892538 -44.35879787307119 33.3155 0.1144 14768 +14770 2 107.01130614626416 -43.17700269532054 33.8929 0.1144 14769 +14771 2 107.78015099360294 -42.633816877294294 34.4702 0.1144 14770 +14772 2 108.54962423069458 -41.64786803074463 35.0498 0.1144 14771 +14773 2 109.31838388518361 -40.92386679264756 35.6306 0.1144 14772 +14774 2 110.08722873252233 -40.3963482166276 36.2135 0.1144 14773 +14775 2 110.8557648482662 -39.81074056805251 36.7993 0.1144 14774 +14776 2 111.62421577116027 -38.715795980789316 37.3895 0.1144 14775 +14777 2 112.39261432824156 -38.17766333343156 37.9845 0.1144 14776 +14778 2 113.2011767711551 -37.60643379555095 38.5916 0.1144 14777 +14779 2 114.14325421428066 -37.192243737261535 39.2129 0.1144 14778 +14780 2 115.09140609168352 -36.48405021651496 39.8493 0.1144 14779 +14781 2 116.03848328907617 -36.167829928124384 40.4984 0.1144 14780 +14782 2 116.98297266117069 -35.87363964039993 41.1592 0.1144 14781 +14783 2 117.92809042301792 -35.0510803914607 41.83 0.1144 14782 +14784 2 118.87036399378496 -34.76529054579865 42.5365 0.1144 14783 +14785 2 119.8106257631938 -34.42787010409417 43.2572 0.1144 14784 +14786 2 120.75128145704744 -33.67920884804857 43.9751 0.1144 14785 +14787 2 121.69350266200172 -33.34241998087073 44.674 0.1144 14786 +14788 2 122.57033030185909 -32.98455946454006 45.7257 0.1144 14787 +14789 2 123.38974586294472 -32.7141785413816 47.4681 0.1144 14788 +14790 2 121.34334121362758 -114.09161066467185 15.1446 0.1144 14572 +14791 2 120.21098999433896 -114.17553516086085 14.7488 0.1144 14790 +14792 2 119.08161301356513 -114.55044617783817 14.5607 0.1144 14791 +14793 2 117.95428376276949 -114.07183689698532 14.3243 0.1144 14792 +14794 2 116.82825273072936 -114.68892136026723 14.0577 0.1144 14793 +14795 2 115.95397016885833 -115.33118318289058 13.7709 0.1144 14794 +14796 2 115.1312563134331 -115.5980167565857 13.4805 0.1144 14795 +14797 2 114.32078680078692 -115.85673131371398 12.901 0.1144 14796 +14798 2 123.05340326571908 -115.03821526060611 15.3671 0.1144 14571 +14799 2 123.95291212118296 -113.35949176507556 15.4782 0.1144 14798 +14800 2 124.85700106452735 -113.21038898429774 15.5274 0.1144 14799 +14801 2 125.89419607886768 -113.3414452257096 15.5478 0.1144 14800 +14802 2 126.97687026590886 -112.07687442488461 15.5417 0.1144 14801 +14803 2 128.0606965008302 -112.33451437867885 15.5175 0.1144 14802 +14804 2 129.1450987596916 -112.59719649514736 15.4833 0.1144 14803 +14805 2 130.22798787326525 -111.33885202707016 15.4475 0.1144 14804 +14806 2 131.31868259451957 -111.61791614078548 15.4382 0.1144 14805 +14807 2 132.42213572784254 -111.94497550281326 15.4799 0.1144 14806 +14808 2 133.52482291275018 -110.76469624757308 15.5613 0.1144 14807 +14809 2 134.6260493181827 -111.0845730740452 15.6706 0.1144 14808 +14810 2 135.73926818726838 -111.40196011110085 15.8142 0.1144 14809 +14811 2 136.846822983714 -110.30426255053635 15.9792 0.1144 14810 +14812 2 137.72408729532785 -109.89982052331403 16.1016 0.1144 14811 +14813 2 138.60322584963725 -108.42857322782824 16.1852 0.1144 14812 +14814 2 139.48142728259887 -108.2193582025474 16.2666 0.1144 14813 +14815 2 105.65542692601876 -327.7249973864629 52.402 0.1144 13971 +14816 2 105.38015981964352 -328.08583200809596 54.8313 0.1144 14815 +14817 2 104.79447019365068 -328.5818276067526 56.0734 0.1144 14816 +14818 2 104.13086494972484 -327.72436344239907 56.6364 0.1144 14817 +14819 2 103.49270815306377 -326.25601895086436 57.1847 0.1144 14818 +14820 2 103.10497517904491 -325.30550346433455 57.7343 0.1144 14819 +14821 2 103.19793460004789 -323.9465511322304 58.2313 0.1144 14820 +14822 2 103.3958107705908 -322.5670763206881 58.6765 0.1144 14821 +14823 2 103.26561077402157 -321.382611036504 59.1248 0.1144 14822 +14824 2 102.75853683497624 -321.02864244311667 59.5633 0.1144 14823 +14825 2 102.02843972895931 -320.12409472945694 59.9833 0.1144 14824 +14826 2 101.09324939307925 -318.89911928755697 60.4394 0.1144 14825 +14827 2 100.21497589523563 -317.5152085471168 60.886 0.1144 14826 +14828 2 99.53578587042657 -317.26767792449016 61.2136 0.1144 14827 +14829 2 98.92954754891426 -316.3440953167994 61.5017 0.1144 14828 +14830 2 98.29262730044661 -314.96482397798275 61.7674 0.1144 14829 +14831 2 97.47251098295249 -314.87664332771584 62.0144 0.1144 14830 +14832 2 96.78663216225925 -313.7085448821083 62.288 0.1144 14831 +14833 2 96.18177725235219 -312.2241660381672 62.5576 0.1144 14832 +14834 2 95.58873442311284 -311.00107803689554 62.944 0.1144 14833 +14835 2 94.99684364175374 -309.55702820733876 63.3693 0.1144 14834 +14836 2 94.53671647357594 -308.63516761816544 63.7316 0.1144 14835 +14837 2 94.64138565266767 -307.25347736052277 64.0483 0.1144 14836 +14838 2 94.8112303687407 -305.78757257241466 64.3224 0.1144 14837 +14839 2 94.98104225777661 -304.65659204837607 64.5652 0.1144 14838 +14840 2 94.97762704397036 -303.39182127011117 64.7956 0.1144 14839 +14841 2 94.95362178438431 -302.11303449606476 65.0359 0.1144 14840 +14842 2 94.64058502267508 -300.9817582544303 65.2674 0.1144 14841 +14843 2 94.24375924347925 -300.2969378625602 65.4836 0.1144 14842 +14844 2 93.99193229247746 -299.331150164803 65.7622 0.1144 14843 +14845 2 93.88925819860523 -298.01271963442525 66.2088 0.1144 14844 +14846 2 93.65401171881334 -296.6328593309129 66.6873 0.1144 14845 +14847 2 92.99575260587957 -295.2066762571234 66.9609 0.1144 14846 +14848 2 92.39432883755597 -294.76445487700926 67.0998 0.1144 14847 +14849 2 92.23208711941015 -293.70246082720007 67.1754 0.1144 14848 +14850 2 92.311309567747 -292.3298412004995 67.2277 0.1144 14849 +14851 2 92.31168659293189 -291.03735358647174 67.296 0.1144 14850 +14852 2 91.95472555681124 -290.2516826900708 67.4831 0.1144 14851 +14853 2 91.48332950486869 -288.78627289126945 67.7765 0.1144 14852 +14854 2 91.00065595694876 -287.48076636815057 68.0593 0.1144 14853 +14855 2 90.51126078610761 -286.32696028162036 68.2867 0.1144 14854 +14856 2 90.06734137263244 -284.87250857609695 68.4634 0.1144 14855 +14857 2 89.8072796534216 -283.4817968680413 68.6059 0.1144 14856 +14858 2 89.74772795692525 -282.1856452128813 68.7319 0.1144 14857 +14859 2 89.67650173842372 -280.87970318035065 68.852 0.1144 14858 +14860 2 89.54205941848625 -279.5429006177862 68.9668 0.1144 14859 +14861 2 89.27018561860766 -278.27607107044093 69.0656 0.1144 14860 +14862 2 88.69992261044526 -277.8619129443969 69.2076 0.1144 14861 +14863 2 87.72675408582164 -277.10278244712026 69.3938 0.1144 14862 +14864 2 86.9953088042831 -276.45458491864525 69.4473 0.1144 14863 +14865 2 86.36475459195859 -275.78631836027466 69.3748 0.1144 14864 +14866 2 85.78956711978915 -274.30437353613115 69.2362 0.1144 14865 +14867 2 85.36850281765105 -272.85069045749964 69.1046 0.1144 14866 +14868 2 85.06687018401885 -271.43008081941974 69.0264 0.1144 14867 +14869 2 84.81944983361493 -270.0574057252906 69.0376 0.1144 14868 +14870 2 84.64197581978095 -268.8439159597129 69.1779 0.1144 14869 +14871 2 84.52718642427556 -267.61378639290126 69.4464 0.1144 14870 +14872 2 84.42758788520867 -266.3858231581583 69.8012 0.1144 14871 +14873 2 84.39369164283349 -265.14423754259843 70.1991 0.1144 14872 +14874 2 84.5418528342253 -263.8688012405955 70.611 0.1144 14873 +14875 2 84.84371242708016 -262.63375179067555 71.0094 0.1144 14874 +14876 2 85.02185048034116 -261.5278076253363 71.3194 0.1144 14875 +14877 2 84.93120890429867 -260.2220559487564 71.4512 0.1144 14876 +14878 2 85.04533129343852 -259.08198933479656 71.4776 0.1144 14877 +14879 2 85.41357704013376 -258.14216506745737 71.4843 0.1144 14878 +14880 2 85.5002963645565 -256.9365631379062 71.4053 0.1144 14879 +14881 2 85.36460819167633 -255.60098920741626 71.2096 0.1144 14880 +14882 2 85.19648816689457 -254.25087512862126 70.9282 0.1144 14881 +14883 2 85.02863543445794 -252.90443945788326 70.5849 0.1144 14882 +14884 2 84.8610499943665 -251.5669216063527 70.1904 0.1144 14883 +14885 2 84.69364665377047 -250.25647861665692 69.7648 0.1144 14884 +14886 2 84.52726562737192 -249.0853804589683 69.3356 0.1144 14885 +14887 2 84.36030857703334 -247.936628761228 68.9153 0.1144 14886 +14888 2 84.19335152669477 -246.7795227592943 68.5101 0.1144 14887 +14889 2 83.91885156385133 -245.62205997222839 68.126 0.1144 14888 +14890 2 83.46932423766846 -244.39534879229907 67.7732 0.1144 14889 +14891 2 82.94491480556091 -243.64138735083822 67.4559 0.1144 14890 +14892 2 82.38037643961611 -242.34941532915673 67.2017 0.1144 14891 +14893 2 81.78598853643821 -240.88659196618852 67.0289 0.1144 14892 +14894 2 81.17917108940269 -240.08349047505862 66.9329 0.1144 14893 +14895 2 80.51333842504978 -239.8171949440004 66.897 0.1144 14894 +14896 2 79.61733620223572 -238.4639037858695 66.8861 0.1144 14895 +14897 2 78.59148326035427 -237.23332424801265 66.9166 0.1144 14896 +14898 2 77.51090566477994 -237.76697366086583 67.0401 0.1144 14897 +14899 2 76.42690544513869 -236.85449560235824 67.265 0.1144 14898 +14900 2 75.37700839144652 -236.58751393247482 67.5844 0.1144 14899 +14901 2 74.98751280206042 -235.36122571377544 67.8863 0.1144 14900 +14902 2 74.9478289565287 -234.1062698874316 68.1153 0.1144 14901 +14903 2 74.97983044595007 -232.8036495114135 68.2973 0.1144 14902 +14904 2 74.79174876514121 -231.6585108422969 68.3346 0.1144 14903 +14905 2 74.5433584663525 -230.56721071316224 68.2366 0.1144 14904 +14906 2 74.29361758299561 -229.4828196935867 68.0546 0.1144 14905 +14907 2 73.81166622989103 -228.1345512118651 67.9039 0.1144 14906 +14908 2 73.21411447747488 -226.67041129625517 67.8264 0.1144 14907 +14909 2 72.6043152806965 -225.21577245384987 67.8191 0.1144 14908 +14910 2 71.98386697769361 -224.4210707432539 67.8628 0.1144 14909 +14911 2 71.23915193759521 -223.74818364362983 67.944 0.1144 14910 +14912 2 70.27513988930924 -223.11017998634492 68.0702 0.1144 14911 +14913 2 69.20182642102259 -222.55796269136636 68.1708 0.1144 14912 +14914 2 68.10509723067807 -222.06228295727374 68.224 0.1144 14913 +14915 2 66.96362987331706 -221.91087709715916 68.2654 0.1144 14914 +14916 2 65.8433659290326 -222.98550602796655 68.2746 0.1144 14915 +14917 2 64.7559233514493 -223.17471636291563 68.1747 0.1144 14916 +14918 2 63.674726381075914 -223.26092144559345 67.9787 0.1144 14917 +14919 2 62.594945649344766 -223.91419791279242 67.6964 0.1144 14918 +14920 2 61.50549608849643 -224.00216769364044 67.3546 0.1144 14919 +14921 2 60.41599106025227 -224.0339199504294 66.978 0.1144 14920 +14922 2 59.32711442176104 -225.29393996253617 66.5949 0.1144 14921 +14923 2 58.512993330369426 -225.81659329296093 66.1329 0.1144 14922 +14924 2 57.8651970044765 -226.30548756882015 65.0661 0.1144 14923 +14925 2 93.20126915175518 -346.4984536790088 50.3992 0.1144 13951 +14926 2 92.49610502095545 -345.9930897134686 49.2551 0.1144 14925 +14927 2 92.46774621912081 -344.8071025034779 48.715 0.1144 14926 +14928 2 92.97627346121881 -343.09676524129105 48.1194 0.1144 14927 +14929 2 93.90875054679576 -343.120427129768 47.252 0.1144 14928 +14930 2 94.66736044366695 -341.32649875584303 46.4576 0.1144 14929 +14931 2 95.20347044093097 -340.2113421053549 45.6907 0.1144 14930 +14932 2 95.6936405683058 -339.41192498628135 44.9336 0.1144 14931 +14933 2 96.39957115010077 -338.90335043778765 44.2355 0.1144 14932 +14934 2 96.78374536126898 -338.01315392423504 43.5904 0.1144 14933 +14935 2 96.40589585881115 -336.72212157977384 42.8921 0.1144 14934 +14936 2 95.33007534843105 -335.79704581987784 42.3531 0.1144 14935 +14937 2 94.2014831326486 -336.4873676909236 42.0017 0.1144 14936 +14938 2 93.16193876522225 -335.5914706226348 41.79 0.1144 14937 +14939 2 92.40373422193862 -335.3210590340647 41.7141 0.1144 14938 +14940 2 91.90867256941084 -334.5385691246016 41.7124 0.1144 14939 +14941 2 91.35103792588266 -333.0401907391846 41.7082 0.1144 14940 +14942 2 90.62770318950007 -331.65305106191227 41.6679 0.1144 14941 +14943 2 89.82549149330552 -330.2384581658517 41.5792 0.1144 14942 +14944 2 88.86545447604263 -330.6756471282313 41.3991 0.1144 14943 +14945 2 87.78614877141956 -329.9629806137587 41.0659 0.1144 14944 +14946 2 86.68156341308067 -331.31049867547256 40.6353 0.1144 14945 +14947 2 85.55671897246766 -330.67622328714106 40.224 0.1144 14946 +14948 2 84.47893532141188 -330.39101888291333 39.888 0.1144 14947 +14949 2 83.42283560348527 -331.93044534033527 39.5371 0.1144 14948 +14950 2 82.30667773196839 -331.5911456728375 39.2118 0.1144 14949 +14951 2 81.16717291173586 -332.3695644010197 38.9866 0.1144 14950 +14952 2 80.08917433414766 -331.99533709276153 38.8368 0.1144 14951 +14953 2 78.96293106871018 -331.90420056105984 38.7394 0.1144 14952 +14954 2 77.8594370996847 -332.1263261074967 38.6814 0.1144 14953 +14955 2 76.8390130725987 -331.7413313484184 38.6072 0.1144 14954 +14956 2 75.85425221193279 -331.28830746993026 38.6005 0.1144 14955 +14957 2 75.81891370488484 -330.052486951233 38.6425 0.1144 14956 +14958 2 76.36543454894559 -329.2990017995551 38.663 0.1144 14957 +14959 2 76.68837191708752 -327.73616707911395 38.6579 0.1144 14958 +14960 2 76.67207776758318 -326.4682102826698 38.7565 0.1144 14959 +14961 2 76.57586351491659 -325.32949513162504 38.9558 0.1144 14960 +14962 2 76.7105048564369 -324.81614489985344 39.2722 0.1144 14961 +14963 2 77.21483973193295 -322.92390548386635 39.7158 0.1144 14962 +14964 2 77.84148370250017 -322.2859057220001 39.9062 0.1144 14963 +14965 2 78.91841852664109 -321.3716480255381 40.1517 0.1144 14964 +14966 2 79.19511039488198 -319.7211688115484 40.3483 0.1144 14965 +14967 2 79.53818290633366 -318.73589994976146 40.5292 0.1144 14966 +14968 2 79.98262980686161 -317.8766570919956 40.9469 0.1144 14967 +14969 2 76.32993658790363 -325.44482601016864 39.1222 0.1144 14961 +14970 2 75.1890476635293 -324.73123780143595 39.2692 0.1144 14969 +14971 2 74.06736257352017 -323.6330840237046 39.4246 0.1144 14970 +14972 2 72.97464054869918 -324.2248606259762 39.5587 0.1144 14971 +14973 2 71.83605743659513 -323.86818505929415 39.7242 0.1144 14972 +14974 2 70.69491353151176 -324.4613911765283 39.8997 0.1144 14973 +14975 2 69.5626653273388 -323.7658529957944 40.0747 0.1144 14974 +14976 2 68.50201214540246 -324.25573156225784 40.2791 0.1144 14975 +14977 2 67.51717919702693 -325.3134472748586 40.6325 0.1144 14976 +14978 2 66.41159955111955 -325.5844300523172 40.9581 0.1144 14977 +14979 2 65.33855647676114 -325.3284513823098 41.2014 0.1144 14978 +14980 2 64.26230880645136 -324.2257247519874 41.379 0.1144 14979 +14981 2 63.132608675173586 -324.3209590341311 41.5016 0.1144 14980 +14982 2 62.031346944668236 -324.04126756269176 41.5769 0.1144 14981 +14983 2 60.99475419308281 -324.08766061442725 41.6217 0.1144 14982 +14984 2 60.07911686810242 -323.3252558523309 41.6685 0.1144 14983 +14985 2 59.425977938369144 -321.81995142390224 41.734 0.1144 14984 +14986 2 58.91038480904046 -320.31561269527015 41.8236 0.1144 14985 +14987 2 58.50843574506097 -318.8333071714091 41.942 0.1144 14986 +14988 2 58.087817733180295 -317.7591026094561 42.1137 0.1144 14987 +14989 2 57.505512304598476 -317.74388053144435 42.4012 0.1144 14988 +14990 2 56.83963889353235 -316.2959924328526 42.7932 0.1144 14989 +14991 2 56.410825143645816 -314.82445192822337 43.1746 0.1144 14990 +14992 2 56.065943480538074 -313.73786770141163 43.5196 0.1144 14991 +14993 2 55.71531014289391 -312.9119138590053 43.8231 0.1144 14992 +14994 2 55.32708022931484 -312.084298171537 44.07 0.1144 14993 +14995 2 54.86422457559324 -310.6134616035502 44.2487 0.1144 14994 +14996 2 54.32890735712865 -309.35050393412257 44.3786 0.1144 14995 +14997 2 53.73345259892033 -307.87945485693433 44.4931 0.1144 14996 +14998 2 53.125166547429814 -306.3754314516665 44.6018 0.1144 14997 +14999 2 52.58209677963372 -305.4668174044349 44.6984 0.1144 14998 +15000 2 52.15376765767135 -304.8311793526263 44.7734 0.1144 14999 +15001 2 51.79957344476111 -303.4741007554308 44.8263 0.1144 15000 +15002 2 51.466883758619765 -302.1490531315923 44.8613 0.1144 15001 +15003 2 51.12903796065778 -300.8718940968197 44.8823 0.1144 15002 +15004 2 50.74200935918856 -299.5637984666128 44.8944 0.1144 15003 +15005 2 50.28886569034375 -298.9502344192248 44.9022 0.1144 15004 +15006 2 49.86963109006829 -297.9862182469288 44.9145 0.1144 15005 +15007 2 49.574058862567405 -296.53779661663117 44.9408 0.1144 15006 +15008 2 49.36851815817987 -295.1163829907422 44.9719 0.1144 15007 +15009 2 49.26316484299347 -293.7662733208605 44.9672 0.1144 15008 +15010 2 49.17991471887479 -292.4290266126696 44.898 0.1144 15009 +15011 2 48.82955177515892 -290.97942062608666 44.7916 0.1144 15010 +15012 2 48.34175494245544 -289.6103692874335 44.6628 0.1144 15011 +15013 2 47.986805707692824 -288.38062577057394 44.5001 0.1144 15012 +15014 2 47.69087238278425 -287.07222173170527 44.3114 0.1144 15013 +15015 2 47.39334071973799 -285.64024640982996 44.1146 0.1144 15014 +15016 2 47.09393481399623 -284.66096474912575 43.9286 0.1144 15015 +15017 2 46.801920360178315 -283.72865413545816 43.7674 0.1144 15016 +15018 2 46.556641544815136 -282.71830232404153 43.6262 0.1144 15017 +15019 2 46.374044246197556 -281.34289935019183 43.491 0.1144 15018 +15020 2 46.21933153863806 -279.9654304300503 43.3544 0.1144 15019 +15021 2 46.042166256398986 -278.57657996254994 43.2132 0.1144 15020 +15022 2 45.791094327249624 -277.1562172931975 43.0634 0.1144 15021 +15023 2 45.47600983556221 -275.7369471813741 42.9047 0.1144 15022 +15024 2 45.11196607911265 -274.33263633356677 42.7423 0.1144 15023 +15025 2 44.65371005204726 -273.9902454980441 42.5886 0.1144 15024 +15026 2 44.283300259454535 -273.23190925385325 42.4449 0.1144 15025 +15027 2 43.79039486265013 -271.7808538207916 42.2948 0.1144 15026 +15028 2 43.0467021367493 -270.41566058535363 42.124 0.1144 15027 +15029 2 42.282257496885464 -269.4605622759852 41.9241 0.1144 15028 +15030 2 41.49504914170056 -268.4400065347338 41.6828 0.1144 15029 +15031 2 40.672706096315935 -267.8315461788854 41.3854 0.1144 15030 +15032 2 39.83316891065128 -266.4985311865659 41.032 0.1144 15031 +15033 2 38.996486842629935 -266.7738470834447 40.633 0.1144 15032 +15034 2 38.2007356801776 -265.4356385352718 40.1862 0.1144 15033 +15035 2 37.54840793222915 -263.9741613789626 39.683 0.1144 15034 +15036 2 37.00578514722713 -262.51221855848536 39.1269 0.1144 15035 +15037 2 36.35519949924506 -261.3964172884962 38.5 0.1144 15036 +15038 2 35.42658984195195 -261.7177549508955 37.8073 0.1144 15037 +15039 2 34.373286269948665 -260.6272217774803 37.0737 0.1144 15038 +15040 2 33.289052999735546 -261.23568045570727 36.3112 0.1144 15039 +15041 2 32.20499060068116 -261.145117312499 35.6042 0.1144 15040 +15042 2 31.109626697902442 -260.2907848920375 34.9334 0.1144 15041 +15043 2 30.476738522883565 -261.70153189784315 34.1902 0.1144 15042 +15044 2 29.62644721528021 -261.3021349878601 33.7355 0.1144 15043 +15045 2 28.674731875586104 -260.51629533710866 33.427 0.1144 15044 +15046 2 27.63520733102405 -259.89419039128364 33.1486 0.1144 15045 +15047 2 26.59327706065922 -259.2908594789787 32.8983 0.1144 15046 +15048 2 25.56127300916704 -258.4012036168849 32.7359 0.1144 15047 +15049 2 24.53065236928012 -258.05369627141727 32.5332 0.1144 15048 +15050 2 74.99988569794866 -325.331857954776 39.0037 0.1144 14970 +15051 2 74.74885789604154 -326.41576222561065 38.85 0.1144 15050 +15052 2 74.64695623269688 -327.62279443945295 38.7976 0.1144 15051 +15053 2 74.5414444298564 -328.83364747688205 38.7576 0.1144 15052 +15054 2 74.4203806731699 -330.0280392260659 38.7293 0.1144 15053 +15055 2 74.2978037711955 -331.2215362870369 38.7114 0.1144 15054 +15056 2 74.88163947479438 -332.7189139992692 38.703 0.1144 15055 +15057 2 75.53175521553504 -334.11511536168507 38.703 0.1144 15056 +15058 2 76.18328719491792 -335.62449840651885 38.703 0.1144 15057 +15059 2 63.38838744727721 -400.592273281384 48.7449 0.1144 13724 +15060 2 64.43129378020379 -401.0833738020486 47.8374 0.1144 15059 +15061 2 64.77521651562158 -400.60655107357445 46.6088 0.1144 15060 +15062 2 65.32439916717871 -399.570435476413 45.7204 0.1144 15061 +15063 2 65.62705932900708 -398.437797400946 44.3122 0.1144 15062 +15064 2 39.919959011887286 -436.0698699356669 52.4964 0.1144 13685 +15065 2 40.78312955696244 -436.5299863488142 50.9779 0.1144 15064 +15066 2 41.746005964897755 -437.6514253584167 49.8859 0.1144 15065 +15067 2 42.778325566676386 -436.8156903249107 48.9964 0.1144 15066 +15068 2 42.98468976448489 -438.35237349900797 48.2171 0.1144 15067 +15069 2 43.23669261181583 -439.8007490013496 47.7534 0.1144 15068 +15070 2 43.65538952581784 -441.285982351523 47.3816 0.1144 15069 +15071 2 44.24848472086991 -442.001809565482 47.0834 0.1144 15070 +15072 2 45.01096992518837 -442.90648065820045 46.8737 0.1144 15071 +15073 2 45.887025212658045 -443.84480597997117 46.7368 0.1144 15072 +15074 2 46.91282819777318 -445.1313068773943 46.6416 0.1144 15073 +15075 2 48.0307456897486 -444.2382407442757 46.5858 0.1144 15074 +15076 2 49.14028224263963 -445.0721506295601 46.5626 0.1144 15075 +15077 2 50.12565987395878 -445.1708970190784 46.5584 0.1144 15076 +15078 2 50.95811193024803 -446.1823983817248 46.5592 0.1144 15077 +15079 2 51.68109107985253 -447.7108462034605 46.5606 0.1144 15078 +15080 2 52.190262705642226 -449.19777719192314 46.5626 0.1144 15079 +15081 2 52.53836368538403 -449.85358609145084 46.5651 0.1144 15080 +15082 2 52.749515404062365 -450.7380978615664 46.569 0.1144 15081 +15083 2 52.76709916010948 -452.004924602433 46.5741 0.1144 15082 +15084 2 52.661948454676775 -453.49342014632253 46.5819 0.1144 15083 +15085 2 52.49668692806737 -455.08655830956627 46.592 0.1144 15084 +15086 2 52.284116148109646 -456.7590448311191 46.6032 0.1144 15085 +15087 2 52.06401325598251 -458.25711004675617 46.6222 0.1144 15086 +15088 2 51.973871307492836 -459.52415124066704 46.6642 0.1144 15087 +15089 2 51.991945894630206 -460.85513123136604 46.7107 0.1144 15088 +15090 2 51.98284637172904 -462.17653027330766 46.73 0.1144 15089 +15091 2 51.9556070696836 -463.4898285261688 46.6852 0.1144 15090 +15092 2 52.105193390876394 -464.8509556543329 46.5402 0.1144 15091 +15093 2 52.43618783223448 -465.47824576161514 46.3585 0.1144 15092 +15094 2 52.7695801744154 -466.14582769106346 46.1969 0.1144 15093 +15095 2 53.043104678244454 -467.45148339623677 46.0681 0.1144 15094 +15096 2 53.290833760243245 -468.925277847578 45.9721 0.1144 15095 +15097 2 53.431912510252126 -470.3469510923202 45.9029 0.1144 15096 +15098 2 53.40997549090254 -471.6564544311459 45.8483 0.1144 15097 +15099 2 53.321346687700725 -472.9196422710594 45.7895 0.1144 15098 +15100 2 53.30962651246429 -474.24389505392816 45.7125 0.1144 15099 +15101 2 53.39679550767359 -475.62888827958665 45.5882 0.1144 15100 +15102 2 53.73112186961926 -477.13348062938405 45.4003 0.1144 15101 +15103 2 54.15855530948362 -478.1270634275365 45.1996 0.1144 15102 +15104 2 54.68585509531807 -478.28869677912974 44.9705 0.1144 15103 +15105 2 55.59033916505918 -479.48187885382015 44.5012 0.1144 15104 +15106 2 55.7411832600678 -480.64417618945464 43.9925 0.1144 15105 +15107 2 55.65277489402804 -481.95761263335294 43.6187 0.1144 15106 +15108 2 55.53580900634445 -483.25240736856887 43.3353 0.1144 15107 +15109 2 55.653673956655126 -484.717969511968 43.0909 0.1144 15108 +15110 2 56.2389283079428 -486.3032859214866 42.9052 0.1144 15109 +15111 2 56.87086593187247 -487.8840355471002 42.7888 0.1144 15110 +15112 2 57.45567158385626 -488.3851871516059 42.712 0.1144 15111 +15113 2 57.73605295491866 -489.1803259799471 42.6569 0.1144 15112 +15114 2 57.462348347050245 -490.9601667091301 42.6222 0.1144 15113 +15115 2 56.79929439197528 -492.80806681806496 42.572 0.1144 15114 +15116 2 56.552725556478784 -493.9829124421807 42.5673 0.1144 15115 +15117 2 56.478265295517836 -495.32667964015144 42.5793 0.1144 15116 +15118 2 56.43989466837012 -496.6944342027426 42.5905 0.1144 15117 +15119 2 56.67613132785907 -498.2063542370246 42.5998 0.1144 15118 +15120 2 56.99437966878478 -499.43867950316434 42.607 0.1144 15119 +15121 2 57.054559755033935 -500.6814041304916 42.6121 0.1144 15120 +15122 2 56.960361376791084 -502.18307304668076 42.6079 0.1144 15121 +15123 2 56.98267449317707 -503.4936451799066 42.5995 0.1144 15122 +15124 2 56.93703904620509 -504.9131313316604 42.5877 0.1144 15123 +15125 2 56.7966834624941 -506.4741275179196 42.5704 0.1144 15124 +15126 2 56.89922541363721 -507.6479416120481 42.546 0.1144 15125 +15127 2 57.02106780401752 -508.79858234241567 42.5144 0.1144 15126 +15128 2 57.01918073512783 -510.15212772876646 42.4757 0.1144 15127 +15129 2 56.977731451591715 -511.56844016527 42.4054 0.1144 15128 +15130 2 57.23000779443399 -512.4984081631759 42.2817 0.1144 15129 +15131 2 57.93067262055793 -513.6019533973742 42.1781 0.1144 15130 +15132 2 58.4174385268512 -515.0375584127253 42.0918 0.1144 15131 +15133 2 58.295599232911385 -516.4776115262989 42.0106 0.1144 15132 +15134 2 57.97956558718605 -517.7117656323124 41.9476 0.1144 15133 +15135 2 57.62009780560297 -518.9454387183528 41.8858 0.1144 15134 +15136 2 57.41455738016144 -520.1899972405961 41.8118 0.1144 15135 +15137 2 57.338498781062825 -521.5444286563978 41.7155 0.1144 15136 +15138 2 57.22331333101225 -522.8562206456942 41.5797 0.1144 15137 +15139 2 57.27436296695435 -524.3027209388455 41.3395 0.1144 15138 +15140 2 57.44701622443348 -525.8110992797042 41.0273 0.1144 15139 +15141 2 57.97619025296348 -527.1594980981954 40.6882 0.1144 15140 +15142 2 58.70972160214696 -527.7473614254756 40.3676 0.1144 15141 +15143 2 59.27960609908392 -528.6090460895714 40.0548 0.1144 15142 +15144 2 59.547111636031275 -530.1825176725303 39.7886 0.1144 15143 +15145 2 59.65107533644624 -531.6574825141025 39.5727 0.1144 15144 +15146 2 59.412291877318324 -532.8407308258868 39.3492 0.1144 15145 +15147 2 59.044621462026655 -533.8749073231386 39.058 0.1144 15146 +15148 2 59.01083643338909 -535.2526757458334 38.75 0.1144 15147 +15149 2 58.954325334560586 -536.6048222676325 38.4544 0.1144 15148 +15150 2 58.64055985597548 -538.1668532362183 38.2057 0.1144 15149 +15151 2 58.33745751176105 -539.8568042451064 38.0022 0.1144 15150 +15152 2 58.147871576822986 -541.4139983885044 37.8087 0.1144 15151 +15153 2 58.25473183413114 -542.6219063834866 37.6076 0.1144 15152 +15154 2 58.64857276200099 -543.4156809786082 37.4013 0.1144 15153 +15155 2 59.14376104662833 -544.8601865841567 37.175 0.1144 15154 +15156 2 59.39339340424007 -546.4014184754883 36.9729 0.1144 15155 +15157 2 59.3753783575642 -547.8084407088841 36.7718 0.1144 15156 +15158 2 59.290762230515476 -549.1535254960669 36.554 0.1144 15157 +15159 2 58.994114216877115 -550.293052071622 36.3457 0.1144 15158 +15160 2 58.55430597320861 -551.350878115644 36.1337 0.1144 15159 +15161 2 58.139362233188706 -553.0785430052606 35.8954 0.1144 15160 +15162 2 58.028136400941904 -554.5158745067047 35.6213 0.1144 15161 +15163 2 58.402902837366284 -555.3658005407198 35.2993 0.1144 15162 +15164 2 58.81113205210251 -556.7881179667046 34.9896 0.1144 15163 +15165 2 58.8365918879976 -558.1988091026766 34.7332 0.1144 15164 +15166 2 58.75375619858188 -559.5526022220837 34.5013 0.1144 15165 +15167 2 58.87554001998329 -561.0518367250404 34.2502 0.1144 15166 +15168 2 59.199184448667296 -562.6638861227001 33.9786 0.1144 15167 +15169 2 59.63445563071301 -564.0673185463309 33.728 0.1144 15168 +15170 2 59.97122915771115 -565.0524643449617 33.4869 0.1144 15169 +15171 2 60.176948860011024 -566.1010029586726 33.2503 0.1144 15170 +15172 2 60.35228133880432 -567.4235771792848 33.0498 0.1144 15171 +15173 2 60.48410300640658 -568.798946826465 32.8801 0.1144 15172 +15174 2 60.73089186547452 -570.100246095613 32.6906 0.1144 15173 +15175 2 61.34263818616209 -571.6320335997822 32.4363 0.1144 15174 +15176 2 62.36571130066032 -572.579004399967 32.2062 0.1144 15175 +15177 2 63.141885521477235 -572.440726070875 32.0326 0.1144 15176 +15178 2 63.182091640063135 -573.7762982109207 31.892 0.1144 15177 +15179 2 62.51992174798656 -575.6188182893969 31.789 0.1144 15178 +15180 2 61.84146200994068 -577.1499337520894 31.6812 0.1144 15179 +15181 2 61.407353074995875 -578.1366354926806 31.5241 0.1144 15180 +15182 2 61.14100468296766 -579.3204852175958 31.3544 0.1144 15181 +15183 2 61.058075188489525 -580.6922312979488 31.2309 0.1144 15182 +15184 2 61.217335156892446 -582.2374835914313 31.1671 0.1144 15183 +15185 2 61.568056788969514 -583.8785345566954 31.1696 0.1144 15184 +15186 2 61.989879214543095 -585.2309699003583 31.2402 0.1144 15185 +15187 2 62.52386538721525 -585.609749017992 31.337 0.1144 15186 +15188 2 63.313650641135325 -586.7404618378325 31.5319 0.1144 15187 +15189 2 64.0838821916191 -588.2528015935926 31.9505 0.1144 15188 +15190 2 64.80222268436411 -588.9255508835535 32.4612 0.1144 15189 +15191 2 65.47411506231185 -589.8635710235541 32.9616 0.1144 15190 +15192 2 66.1430585175537 -591.2203905653078 33.4718 0.1144 15191 +15193 2 66.8107975591026 -592.8741501986983 34.0012 0.1144 15192 +15194 2 67.09039067282768 -593.8938441483436 35.1389 0.1144 15193 +15195 2 67.47393948400926 -594.233497004109 36.4711 0.1144 15194 +15196 2 68.1994640133738 -595.1774102476679 37.6155 0.1144 15195 +15197 2 68.86756925451203 -596.5837759631727 38.6761 0.1144 15196 +15198 2 68.99671680298182 -597.7088838140751 39.699 0.1144 15197 +15199 2 68.86873080907633 -599.0958286931435 40.6375 0.1144 15198 +15200 2 68.8427188451712 -600.4254132272597 41.5797 0.1144 15199 +15201 2 69.26481607431813 -601.3384165649755 42.5536 0.1144 15200 +15202 2 69.91200512426377 -602.7438009703638 43.5602 0.1144 15201 +15203 2 70.57482280338877 -603.3999344654478 44.5973 0.1144 15202 +15204 2 71.52301280567403 -604.2785955039752 45.5874 0.1144 15203 +15205 2 72.59708400663322 -603.345094741197 46.531 0.1144 15204 +15206 2 73.67570246843589 -603.9507637461238 47.446 0.1144 15205 +15207 2 74.75743241366402 -602.9308898161229 48.3344 0.1144 15206 +15208 2 75.84326332947822 -603.7538389735726 49.1999 0.1144 15207 +15209 2 76.93065975639304 -604.4515295353334 50.0466 0.1144 15208 +15210 2 77.87004226321153 -603.1647029128732 51.0577 0.1144 15209 +15211 2 78.24064177834475 -601.857482438314 52.0075 0.1144 15210 +15212 2 78.29159181964872 -600.5122756021734 52.8007 0.1144 15211 +15213 2 78.26194341127132 -599.0857791724883 53.4649 0.1144 15212 +15214 2 78.22996826677483 -597.7107443528896 54.031 0.1144 15213 +15215 2 78.19787200080839 -596.303980386583 54.5079 0.1144 15214 +15216 2 78.14624944250924 -594.9345128253228 54.8761 0.1144 15215 +15217 2 78.06402163258817 -593.5892970060842 55.1177 0.1144 15216 +15218 2 77.98001338503408 -592.238168221795 55.2779 0.1144 15217 +15219 2 77.89537674772714 -590.9111212848653 55.3837 0.1144 15218 +15220 2 77.81136850017299 -589.7342642279698 55.4523 0.1144 15219 +15221 2 77.60230284913955 -588.7339490188727 55.5136 0.1144 15220 +15222 2 77.03625133790683 -587.5859112465027 55.6147 0.1144 15221 +15223 2 76.45820874809414 -585.9003810807117 55.7432 0.1144 15222 +15224 2 75.84520426282775 -584.2055380831426 55.8317 0.1144 15223 +15225 2 75.19892220032798 -582.6887655264782 55.8286 0.1144 15224 +15226 2 74.55233140623325 -582.5090877420587 55.7474 0.1144 15225 +15227 2 73.90574061213857 -581.2763052587695 55.603 0.1144 15226 +15228 2 73.26035423173684 -579.7142815835583 55.4072 0.1144 15227 +15229 2 72.61491548552232 -579.6633044220415 55.1877 0.1144 15228 +15230 2 71.97015749487336 -578.35508860102 54.9682 0.1144 15229 +15231 2 71.32516503891631 -576.7415527902849 54.7618 0.1144 15230 +15232 2 70.67977865851456 -575.7867504885104 54.5703 0.1144 15231 +15233 2 70.03795315337884 -574.4292917083476 54.2021 0.1144 15232 +15234 2 58.51880540469932 -515.323017392539 42.371 0.1144 15132 +15235 2 58.996158847657654 -515.9090193560165 43.1024 0.1144 15234 +15236 2 59.18366450452633 -516.8873837461301 43.3325 0.1144 15235 +15237 2 59.63910916754844 -518.3615249641794 43.5064 0.1144 15236 +15238 2 60.26290031770189 -520.0187191012594 43.6299 0.1144 15237 +15239 2 61.004900900402575 -520.2540078991592 43.708 0.1144 15238 +15240 2 61.68734617046587 -521.2323513668825 43.745 0.1144 15239 +15241 2 61.89186456065583 -522.7646637361626 43.7455 0.1144 15240 +15242 2 62.12261683795353 -524.3279243837379 43.7433 0.1144 15241 +15243 2 62.36656460752425 -525.8963755539261 43.7399 0.1144 15242 +15244 2 62.509784892573876 -527.412470606567 43.7354 0.1144 15243 +15245 2 62.647338695936824 -528.9187474009441 43.7293 0.1144 15244 +15246 2 63.080653544020365 -530.4069809464303 43.7203 0.1144 15245 +15247 2 63.59998654652746 -531.2724270068973 43.708 0.1144 15246 +15248 2 64.13201328365419 -531.7860616458582 43.6906 0.1144 15247 +15249 2 64.73201530270597 -533.4513093563627 43.666 0.1144 15248 +15250 2 65.46051476312185 -534.7052912425539 43.6318 0.1144 15249 +15251 2 66.2850876379801 -534.9814666199771 43.5856 0.1144 15250 +15252 2 67.13403117850973 -536.219276432256 43.5204 0.1144 15251 +15253 2 67.98469968927661 -537.8167511349902 43.4249 0.1144 15252 +15254 2 68.86801979657054 -537.802442603246 43.2894 0.1144 15253 +15255 2 69.81408578430718 -538.8038129227813 43.1122 0.1144 15254 +15256 2 70.5383234002641 -539.6193662112888 43.6778 0.1144 15255 +15257 2 71.22148776355965 -540.2756063820573 43.6159 0.1144 15256 +15258 2 71.57567887488675 -541.7052640076278 43.5495 0.1144 15257 +15259 2 71.66610862597986 -543.1173517370572 43.4664 0.1144 15258 +15260 2 71.63286128361581 -544.5167687792718 43.3398 0.1144 15259 +15261 2 71.56066918979515 -545.9176892119447 43.1768 0.1144 15260 +15262 2 71.44674051925023 -547.32121816679 42.9898 0.1144 15261 +15263 2 71.3166315051064 -548.7216772451101 42.791 0.1144 15262 +15264 2 71.18594646702243 -550.1172143388454 42.5897 0.1144 15263 +15265 2 71.05583745287859 -551.4988684937961 42.3956 0.1144 15264 +15266 2 71.20662818776431 -552.9071721839946 42.2192 0.1144 15265 +15267 2 71.73642819700063 -554.1187758935672 42.0893 0.1144 15266 +15268 2 72.27678350739903 -555.7046521221384 41.9891 0.1144 15267 +15269 2 72.81713881779737 -557.3784321176922 41.9082 0.1144 15268 +15270 2 73.35851644239331 -558.0638822285005 41.8379 0.1144 15269 +15271 2 73.89892411860444 -558.5976560204818 41.7684 0.1144 15270 +15272 2 74.4402165503506 -560.2761763217765 41.6926 0.1144 15271 +15273 2 74.97994347099613 -561.6680359509602 41.603 0.1144 15272 +15274 2 75.3445632513858 -562.3150258241322 41.4795 0.1144 15273 +15275 2 75.5782644513894 -563.2856321151002 41.3199 0.1144 15274 +15276 2 75.80888699500443 -564.6204333179109 41.1387 0.1144 15275 +15277 2 76.03937197995695 -566.2025300186057 40.9497 0.1144 15276 +15278 2 75.6561112731525 -567.3140263142338 40.6515 0.1144 15277 +15279 2 70.53126922112223 -537.9914248863695 42.8551 0.1144 15255 +15280 2 71.2776193619951 -536.4087539664081 42.2626 0.1144 15279 +15281 2 72.13147105313413 -535.7861278695717 41.4764 0.1144 15280 +15282 2 73.19751451042555 -536.3888601906251 40.887 0.1144 15281 +15283 2 74.30802342074793 -535.4218215821081 40.5378 0.1144 15282 +15284 2 75.29473140532298 -536.8194607526881 40.3836 0.1144 15283 +15285 2 76.22560412757471 -536.3514854180262 40.579 0.1144 15284 +15286 2 77.06736804112984 -537.8325949276781 40.8075 0.1144 15285 +15287 2 77.8889591662452 -539.4476037866143 40.9024 0.1144 15286 +15288 2 78.71010400110309 -540.7215021423724 40.8534 0.1144 15287 +15289 2 79.61822514169125 -539.0890679590344 40.6022 0.1144 15288 +15290 2 80.5393056104194 -538.90950556666 40.3511 0.1144 15289 +15291 2 81.50616236434374 -537.0075373006558 40.0481 0.1144 15290 +15292 2 82.56596671936518 -537.1456791158852 39.697 0.1144 15291 +15293 2 83.66706477618821 -537.6631643041956 39.2963 0.1144 15292 +15294 2 84.78638890598977 -536.4724071389161 38.8721 0.1144 15293 +15295 2 85.91563243597255 -536.6851711608415 38.4367 0.1144 15294 +15296 2 86.48222154448936 -536.3891597863707 37.4226 0.1144 15295 +15297 2 86.19137955982055 -537.4637542669311 36.5319 0.1144 15296 +15298 2 85.7826488840621 -539.1451185304974 35.8686 0.1144 15297 +15299 2 85.61765705884443 -540.6674584174077 35.8324 0.1144 15298 +15300 2 85.71128348621284 -541.9007232102006 35.8061 0.1144 15299 +15301 2 85.87976770998537 -543.0425074846293 35.7686 0.1144 15300 +15302 2 85.96733373122251 -544.2931871526919 35.7157 0.1144 15301 +15303 2 85.89296727532404 -545.7322615078497 35.6437 0.1144 15302 +15304 2 85.74539923760156 -547.252505045604 35.551 0.1144 15303 +15305 2 85.54302266139823 -548.8128604397438 35.3998 0.1144 15304 +15306 2 85.29970596957287 -550.2902716950288 35.1742 0.1144 15305 +15307 2 85.05358652591693 -551.4877982004722 34.8972 0.1144 15306 +15308 2 84.84506124914942 -552.7221538191184 34.5982 0.1144 15307 +15309 2 84.76102114604083 -554.070796543394 34.3227 0.1144 15308 +15310 2 84.7403409061969 -555.5033329505056 34.0875 0.1144 15309 +15311 2 84.71764886499489 -556.9101402125676 33.8906 0.1144 15310 +15312 2 84.6961612374858 -558.305031943277 33.7232 0.1144 15311 +15313 2 84.67396002737414 -559.7143628725493 33.5726 0.1144 15312 +15314 2 84.65247239986506 -561.1263750765193 33.4275 0.1144 15313 +15315 2 84.6304087484159 -562.5370455878652 33.2763 0.1144 15314 +15316 2 84.60892112090687 -563.9497448776388 33.1069 0.1144 15315 +15317 2 84.58779459080549 -565.3631837214303 32.9084 0.1144 15316 +15318 2 84.92122147653343 -566.8422949052685 32.7141 0.1144 15317 +15319 2 85.4947168055027 -567.4995845371969 32.5304 0.1144 15318 +15320 2 85.56988171795918 -568.7188126222181 32.1219 0.1144 15319 +15321 2 85.36847990823372 -570.2015441629228 31.4143 0.1144 15320 +15322 2 85.1730885478734 -571.6581023566894 30.5449 0.1144 15321 +15323 2 85.01142554166019 -573.1294996863719 29.9068 0.1144 15322 +15324 2 84.84857214990014 -574.6008227088535 29.3756 0.1144 15323 +15325 2 84.68473237256269 -576.0642171411672 28.9439 0.1144 15324 +15326 2 84.66493378667062 -577.4390667357203 28.5628 0.1144 15325 +15327 2 84.89399632981474 -578.5922382808337 28.1467 0.1144 15326 +15328 2 85.12830878984195 -579.7431665373454 27.6543 0.1144 15327 +15329 2 85.36151064123865 -581.0172743545796 27.0886 0.1144 15328 +15330 2 85.59154554181407 -582.2649105742413 26.445 0.1144 15329 +15331 2 85.81988519760625 -583.5019276803215 25.7533 0.1144 15330 +15332 2 86.04742297636291 -584.801757442489 25.0236 0.1144 15331 +15333 2 86.25541835703112 -586.1777655923715 23.7135 0.1144 15332 +15334 2 85.76475039406013 -536.2465341779539 36.5355 0.1144 15296 +15335 2 85.37693153465494 -534.719568569959 36.1735 0.1144 15334 +15336 2 85.08745254032239 -533.2036873903888 35.9912 0.1144 15335 +15337 2 84.67552419912099 -531.8289404806195 35.9083 0.1144 15336 +15338 2 84.25218862825952 -531.2007378282309 35.9016 0.1144 15337 +15339 2 83.85705499226376 -530.3193824675752 35.9027 0.1144 15338 +15340 2 83.4893565554857 -528.6971788212495 35.9041 0.1144 15339 +15341 2 83.25659247682987 -527.1349083344257 35.9066 0.1144 15340 +15342 2 83.15003474795054 -525.6420805519973 35.91 0.1144 15341 +15343 2 83.12011525310828 -524.2051059928243 35.9145 0.1144 15342 +15344 2 83.5086813441918 -523.1806563807821 35.9212 0.1144 15343 +15345 2 84.31375648558944 -522.346112503612 35.9299 0.1144 15344 +15346 2 85.06935208976938 -520.4197950602594 35.943 0.1144 15345 +15347 2 85.68592538709862 -519.4970204732978 35.9612 0.1144 15346 +15348 2 86.43226080728883 -518.3854325051049 35.9859 0.1144 15347 +15349 2 87.26241848045063 -516.7237408952235 36.0167 0.1144 15348 +15350 2 87.99360138186901 -516.0087507120322 36.0634 0.1144 15349 +15351 2 88.35578672243288 -514.7266980935301 36.1547 0.1144 15350 +15352 2 88.57531359061988 -513.0839618732551 36.2544 0.1144 15351 +15353 2 88.78378339999159 -511.4446759616009 36.3345 0.1144 15352 +15354 2 88.99065487122557 -509.80468381391483 36.3924 0.1144 15353 +15355 2 89.27816933297376 -508.24529017697904 36.4302 0.1144 15354 +15356 2 89.47158584456955 -506.94574959674674 36.4493 0.1144 15355 +15357 2 89.5089341575196 -505.5579613838563 36.454 0.1144 15356 +15358 2 89.44817804733037 -504.12480081674005 36.4526 0.1144 15357 +15359 2 89.33048899334887 -502.66837426413616 36.4498 0.1144 15358 +15360 2 89.25097564082547 -501.3891775562347 36.4465 0.1144 15359 +15361 2 89.29179653460875 -499.97699357909477 36.442 0.1144 15360 +15362 2 89.2895826329124 -498.64645251425134 36.4344 0.1144 15361 +15363 2 89.39509443575281 -497.1323892169792 36.4199 0.1144 15362 +15364 2 89.50844708235759 -495.72868469007074 36.4006 0.1144 15363 +15365 2 89.87295295587447 -494.6055301627756 36.409 0.1144 15364 +15366 2 90.24182709232252 -493.4996478376221 36.3888 0.1144 15365 +15367 2 90.5059487564602 -492.3367590661941 36.2692 0.1144 15366 +15368 2 90.55755080450102 -490.9791252991146 36.0718 0.1144 15367 +15369 2 90.64056859341201 -489.65544570568215 35.7221 0.1144 15368 +15370 2 90.7605193324216 -488.36670821134635 35.3486 0.1144 15369 +15371 2 91.0066942434734 -487.19789942952076 34.96 0.1144 15370 +15372 2 91.29416795850838 -486.09404824572727 34.5598 0.1144 15371 +15373 2 91.09429132676092 -484.589980721759 34.1172 0.1144 15372 +15374 2 90.89928299908811 -483.1506499629361 33.7663 0.1144 15373 +15375 2 91.34252548592315 -482.21013084478426 33.4799 0.1144 15374 +15376 2 91.52819254977051 -480.9867231637339 33.1766 0.1144 15375 +15377 2 91.49257133715813 -479.58536386856446 32.6984 0.1144 15376 +15378 2 91.43653907667809 -478.16275605406855 32.3134 0.1144 15377 +15379 2 91.61494442228425 -476.98101672536365 31.8035 0.1144 15378 +15380 2 91.7553945035944 -475.7794173333122 31.2886 0.1144 15379 +15381 2 91.74843141869484 -474.52666934031345 30.2893 0.1144 15380 +15382 2 43.42651801327621 -437.3296597783338 48.05 0.1144 15067 +15383 2 44.53989024500659 -436.92575663783595 48.587 0.1144 15382 +15384 2 45.63268825262433 -437.60098405856087 48.9457 0.1144 15383 +15385 2 46.66575226344413 -438.64954168673734 49.408 0.1144 15384 +15386 2 47.70211295876795 -438.1999692083598 49.7266 0.1144 15385 +15387 2 48.75807041859142 -439.2125146549262 49.6885 0.1144 15386 +15388 2 49.80906956339758 -439.0632204068273 49.2915 0.1144 15387 +15389 2 50.88044892963278 -439.66633440001976 48.6674 0.1144 15388 +15390 2 51.96847544512534 -440.6657065555057 48.0656 0.1144 15389 +15391 2 52.9857763696863 -440.02620035338407 47.5804 0.1144 15390 +15392 2 53.99983125904601 -441.274509929652 47.236 0.1144 15391 +15393 2 55.1042099836065 -440.99817035704507 47.0501 0.1144 15392 +15394 2 56.19408540830068 -441.591438958921 46.8734 0.1144 15393 +15395 2 57.27973633189234 -442.72566066531135 46.6838 0.1144 15394 +15396 2 58.36515279017594 -441.9828274385602 46.4537 0.1144 15395 +15397 2 59.373294136816135 -443.31541013156664 46.2367 0.1144 15396 +15398 2 60.34198007804515 -443.25836448796565 46.053 0.1144 15397 +15399 2 61.338938426307 -444.098342199105 45.9001 0.1144 15398 +15400 2 62.41719859051149 -443.7559242519561 45.7792 0.1144 15399 +15401 2 63.516732941733125 -444.4840666157421 45.6537 0.1144 15400 +15402 2 64.45932634863661 -445.8936117710423 45.4742 0.1144 15401 +15403 2 65.48478536607331 -445.67164448970505 45.29 0.1144 15402 +15404 2 66.53339040417626 -446.5094640846486 45.1013 0.1144 15403 +15405 2 67.57688618564168 -446.1404793549283 44.8806 0.1144 15404 +15406 2 68.55157947465268 -447.1909111542509 44.5222 0.1144 15405 +15407 2 69.54938354824635 -448.5302584012705 44.1902 0.1144 15406 +15408 2 70.50109578635735 -448.7174571477322 43.8259 0.1144 15407 +15409 2 71.44782539993044 -449.35521870588263 43.428 0.1144 15408 +15410 2 72.39196718820534 -449.73615909517235 43.006 0.1144 15409 +15411 2 73.33691636414541 -450.1779653431837 42.5692 0.1144 15410 +15412 2 74.27940744846985 -451.5697404180096 42.1218 0.1144 15411 +15413 2 75.22025565382391 -452.6869342303572 41.6377 0.1144 15412 +15414 2 76.15433297202703 -452.407607329501 41.1345 0.1144 15413 +15415 2 76.99849099228538 -453.84179861188153 40.558 0.1144 15414 +15416 2 77.83815411751301 -453.4661582682327 39.9552 0.1144 15415 +15417 2 78.67589924644508 -454.77936854335053 39.3224 0.1144 15416 +15418 2 79.4558886307005 -456.12954170284365 38.1422 0.1144 15417 +15419 2 37.83569139353214 -472.24128878059616 52.1668 0.1144 13656 +15420 2 38.50990189538631 -473.5278856697812 52.2046 0.1144 15419 +15421 2 38.7431537035493 -474.38291447482044 52.2214 0.1144 15420 +15422 2 38.564928048392 -475.9883966776716 52.2444 0.1144 15421 +15423 2 38.37164909545877 -477.6270546912099 52.2735 0.1144 15422 +15424 2 38.14642291854807 -478.8079082315804 52.3116 0.1144 15423 +15425 2 37.88755427287656 -479.96871335522223 52.3872 0.1144 15424 +15426 2 37.83314086079249 -481.31636836250317 52.4916 0.1144 15425 +15427 2 37.87402912001719 -482.72957668492677 52.5806 0.1144 15426 +15428 2 37.67277176465703 -483.9594917444649 52.6478 0.1144 15427 +15429 2 37.503409267461706 -485.22435580476133 52.6943 0.1144 15428 +15430 2 37.39313527724534 -486.5398412406922 52.7223 0.1144 15429 +15431 2 37.3862624822346 -487.93610332596506 52.7352 0.1144 15430 +15432 2 37.47178387507659 -489.38259285419736 52.7405 0.1144 15431 +15433 2 37.60230732392344 -490.84989212971203 52.7464 0.1144 15432 +15434 2 37.68751998517046 -492.29242409316805 52.7542 0.1144 15433 +15435 2 37.72252993775924 -493.7050756964572 52.766 0.1144 15434 +15436 2 37.659829391653304 -495.0603799627299 52.7828 0.1144 15435 +15437 2 37.46173588553148 -496.32563354193707 52.8052 0.1144 15436 +15438 2 37.37105935235144 -497.6701839541562 52.8335 0.1144 15437 +15439 2 37.68810327958411 -499.1787700009036 52.8724 0.1144 15438 +15440 2 38.19456044797622 -500.5947765154343 52.9564 0.1144 15439 +15441 2 38.63419989295306 -501.11315288973094 53.0533 0.1144 15440 +15442 2 38.93770676928086 -502.04753190716497 53.1278 0.1144 15441 +15443 2 39.15322675089037 -503.5878533025098 53.1768 0.1144 15442 +15444 2 39.55744398201006 -505.1295090086829 53.2008 0.1144 15443 +15445 2 40.11311918999293 -506.5839294602139 53.2003 0.1144 15444 +15446 2 40.335903991426704 -508.1146552690801 53.1754 0.1144 15445 +15447 2 40.57054231277803 -509.6545619976964 53.1314 0.1144 15446 +15448 2 40.98081995002909 -511.26265997642986 53.0687 0.1144 15447 +15449 2 41.55008767631276 -512.1056207147133 52.9816 0.1144 15448 +15450 2 42.16839444427501 -512.793521362605 52.8662 0.1144 15449 +15451 2 42.78531710809543 -514.3205824033164 52.6946 0.1144 15450 +15452 2 42.94536492538782 -515.7548752120437 52.4317 0.1144 15451 +15453 2 43.06630853208697 -517.1950639368773 52.0649 0.1144 15452 +15454 2 43.13436469818414 -518.4180963741 51.6404 0.1144 15453 +15455 2 43.289832427595904 -519.4568895413652 51.4077 0.1144 15454 +15456 2 43.51689719752805 -520.422768588666 51.2529 0.1144 15455 +15457 2 43.885923578515595 -521.4635570511631 51.1003 0.1144 15456 +15458 2 44.40984528111592 -523.1128102599844 50.9242 0.1144 15457 +15459 2 44.725989732130934 -524.5833793403021 50.7452 0.1144 15458 +15460 2 44.38721770457843 -525.6868803869345 50.4932 0.1144 15459 +15461 2 43.84495969928682 -526.4883728062562 50.192 0.1144 15460 +15462 2 43.61496513183397 -527.785468536356 49.9078 0.1144 15461 +15463 2 43.58826592510847 -529.1846917359555 49.663 0.1144 15462 +15464 2 43.63992441202771 -530.5187638381487 49.4371 0.1144 15463 +15465 2 43.61024035397616 -531.8987654711527 49.0983 0.1144 15464 +15466 2 43.484319912314646 -533.3869681489343 48.5803 0.1144 15465 +15467 2 43.401522560565645 -534.8462542128261 48.1149 0.1144 15466 +15468 2 43.29769979934226 -536.3236588210208 47.7333 0.1144 15467 +15469 2 43.27536575396485 -537.7070797821119 47.378 0.1144 15468 +15470 2 43.39978194149716 -538.9035935703496 47.0361 0.1144 15469 +15471 2 43.457103808519946 -540.1951019631883 46.7152 0.1144 15470 +15472 2 43.6464282406884 -541.7094159555526 46.3898 0.1144 15471 +15473 2 44.03456985983456 -543.3324057590424 46.0435 0.1144 15472 +15474 2 44.8008678185451 -544.5224424695235 45.6154 0.1144 15473 +15475 2 45.10862212042273 -545.783894093047 44.9971 0.1144 15474 +15476 2 45.471772603820774 -547.3714338717215 44.4752 0.1144 15475 +15477 2 45.701229071409585 -548.90892593786 44.0328 0.1144 15476 +15478 2 45.82047743332556 -550.1927278611765 43.6024 0.1144 15477 +15479 2 45.78254147733578 -551.5668832812592 42.9901 0.1144 15478 +15480 2 45.93689239495097 -552.7314586609878 42.4144 0.1144 15479 +15481 2 46.26311062078714 -553.6211421879503 41.9479 0.1144 15480 +15482 2 46.76112388915587 -554.4627878179517 41.0987 0.1144 15481 +15483 2 47.15940975529023 -555.8715134283512 40.5418 0.1144 15482 +15484 2 47.33968582841822 -557.3772417261162 40.0733 0.1144 15483 +15485 2 47.30795404038855 -558.7302238629994 39.6217 0.1144 15484 +15486 2 47.2080501502558 -560.0486665406678 39.1896 0.1144 15485 +15487 2 47.028925711417386 -561.299509617119 38.8534 0.1144 15486 +15488 2 46.6985500361685 -562.6181112345791 38.6042 0.1144 15487 +15489 2 46.17310145676525 -563.9417419572541 38.3743 0.1144 15488 +15490 2 45.54467704856496 -565.7748560674147 38.136 0.1144 15489 +15491 2 44.996375766871154 -566.8610839592009 37.905 0.1144 15490 +15492 2 44.68626186703151 -568.0605550969512 37.6751 0.1144 15491 +15493 2 44.61309672324294 -569.4622731355179 37.394 0.1144 15492 +15494 2 44.72285353744407 -570.8054452593739 36.967 0.1144 15493 +15495 2 44.89840335181633 -572.3209462053369 36.4633 0.1144 15494 +15496 2 45.20622543272597 -573.8954353394595 35.945 0.1144 15495 +15497 2 45.63646403346752 -574.8403811570874 35.4564 0.1144 15496 +15498 2 45.92872864990144 -575.8218455666694 35.0199 0.1144 15497 +15499 2 46.02009242075922 -577.1872391553757 34.6766 0.1144 15498 +15500 2 46.323235098096234 -578.4335597653819 34.4417 0.1144 15499 +15501 2 47.214022640110734 -579.3344778480825 34.291 0.1144 15500 +15502 2 48.31609485986427 -579.6274872447173 34.2059 0.1144 15501 +15503 2 48.872169502921516 -581.2863176060321 34.1502 0.1144 15502 +15504 2 48.40262285191092 -581.4207901092204 34.2647 0.1144 15503 +15505 2 47.52928051297081 -581.9999541102818 34.454 0.1144 15504 +15506 2 46.655086245532644 -583.0760262482383 34.5635 0.1144 15505 +15507 2 45.781435174997625 -584.2066807033319 34.6483 0.1144 15506 +15508 2 44.90773173864977 -585.6860863406916 34.7402 0.1144 15507 +15509 2 44.0347418849046 -586.4165547377356 34.832 0.1144 15508 +15510 2 43.17504202103149 -587.218923466942 34.9059 0.1144 15509 +15511 2 42.323580026950594 -587.8838361727228 34.9563 0.1144 15510 +15512 2 41.54101362016491 -590.0417296174145 34.9866 0.1144 15511 +15513 2 40.84009200269008 -590.6891120657838 35.002 0.1144 15512 +15514 2 40.15747892824547 -591.8869994043695 35.0095 0.1144 15513 +15515 2 39.47750604491168 -593.0205073085565 35.0171 0.1144 15514 +15516 2 38.79489297046706 -593.8345743078207 35.0347 0.1144 15515 +15517 2 38.11486772132051 -595.3222887550907 35.0694 0.1144 15516 +15518 2 37.433329326886096 -595.9957030176532 35.124 0.1144 15517 +15519 2 36.75236695639188 -597.4825148067039 35.1968 0.1144 15518 +15520 2 36.19532914883567 -599.342272666189 35.3346 0.1144 15519 +15521 2 36.07635076725744 -600.778713834074 35.658 0.1144 15520 +15522 2 36.29057804074111 -602.0151078901694 35.9817 0.1144 15521 +15523 2 36.647539076861754 -602.8159353335446 36.1659 0.1144 15522 +15524 2 37.01372436835208 -603.7568714872484 36.2328 0.1144 15523 +15525 2 37.38048568378244 -605.2706011929946 36.1962 0.1144 15524 +15526 2 37.746618609459986 -606.9234846805687 36.0718 0.1144 15525 +15527 2 38.11311263254512 -608.2664135600602 35.8868 0.1144 15526 +15528 2 38.480990067235545 -609.3393528341462 35.6541 0.1144 15527 +15529 2 38.84926142637066 -610.6591515902091 35.3968 0.1144 15528 +15530 2 39.31932643252073 -612.33233725755 35.161 0.1144 15529 +15531 2 39.91130860989581 -613.2903336869895 34.9913 0.1144 15530 +15532 2 40.50886036231192 -614.8329168880625 34.8776 0.1144 15531 +15533 2 41.10690294581838 -616.4007572075537 34.8099 0.1144 15532 +15534 2 41.70503072217462 -616.4621993533245 34.7766 0.1144 15533 +15535 2 42.357414630055516 -617.8013392491675 34.7561 0.1144 15534 +15536 2 43.296753484241364 -618.8812789581337 34.7584 0.1144 15535 +15537 2 44.24535493146338 -619.524969543163 34.769 0.1144 15536 +15538 2 45.18728161094741 -620.0337569625257 34.7696 0.1144 15537 +15539 2 46.08119535707008 -620.5886360768445 34.6702 0.1144 15538 +15540 2 46.96326109390478 -621.3709653347443 34.2157 0.1144 15539 +15541 2 48.949564546625226 -582.3233277250531 34.1124 0.1144 15503 +15542 2 48.86877658718779 -583.6953006220781 34.0698 0.1144 15541 +15543 2 48.82162799492797 -585.0965680439665 34.0124 0.1144 15542 +15544 2 49.07902762255385 -586.5557537197246 33.9349 0.1144 15543 +15545 2 49.417234517923475 -587.7391098716251 33.789 0.1144 15544 +15546 2 49.780831984115586 -588.9582475911906 33.6515 0.1144 15545 +15547 2 49.94685501468953 -590.4903311306537 33.4706 0.1144 15546 +15548 2 49.60818910383569 -591.6621527113014 33.0996 0.1144 15547 +15549 2 49.14890383206423 -593.1562766259256 32.8003 0.1144 15548 +15550 2 48.611119513865845 -594.443637694265 32.576 0.1144 15549 +15551 2 48.06490429981688 -595.276130306926 32.3845 0.1144 15550 +15552 2 47.82550958066525 -596.4965831302825 32.3226 0.1144 15551 +15553 2 47.65147008894378 -597.7890315661948 32.3106 0.1144 15552 +15554 2 47.545114969818094 -599.1415048133096 32.2188 0.1144 15553 +15555 2 47.637771448801736 -600.6493347556084 32.1 0.1144 15554 +15556 2 47.8138620510305 -602.2150750849228 31.9883 0.1144 15555 +15557 2 47.994499914102796 -603.7837963731978 31.8864 0.1144 15556 +15558 2 48.378333839895284 -605.2983448673014 31.792 0.1144 15557 +15559 2 49.322497860081036 -605.6544042364593 31.7878 0.1144 15558 +15560 2 49.78333861086148 -606.8412239536684 32.0208 0.1144 15559 +15561 2 50.09022116137687 -608.0448403886803 32.1202 0.1144 15560 +15562 2 50.3198628300441 -609.4533336290391 31.8819 0.1144 15561 +15563 2 50.24459448888145 -610.8160253253188 31.5227 0.1144 15562 +15564 2 50.511200549611154 -612.3455053987932 31.0962 0.1144 15563 +15565 2 51.485717249756384 -612.393468920917 30.8042 0.1144 15564 +15566 2 51.90347704241062 -613.506450140466 30.5189 0.1144 15565 +15567 2 52.30810773675077 -615.0434779953953 30.2596 0.1144 15566 +15568 2 52.71174894393032 -616.7100668792945 29.9992 0.1144 15567 +15569 2 53.11575124851756 -618.3779463282395 29.715 0.1144 15568 +15570 2 53.496322417827685 -620.0379649906998 29.4048 0.1144 15569 +15571 2 53.68194290543791 -621.3978890707604 29.0839 0.1144 15570 +15572 2 53.865080299375514 -622.6114190534064 28.7678 0.1144 15571 +15573 2 54.04722820615252 -623.8196459421338 28.4536 0.1144 15572 +15574 2 54.23094162403015 -624.8593877029658 28.138 0.1144 15573 +15575 2 54.41402665215497 -626.1389984624618 27.8179 0.1144 15574 +15576 2 54.595598534991915 -627.477280648456 27.4897 0.1144 15575 +15577 2 54.77810753917665 -628.8827530456884 27.1486 0.1144 15576 +15578 2 55.073900203839585 -630.5164406990764 26.7789 0.1144 15577 +15579 2 55.50075451818078 -631.844837508929 26.3754 0.1144 15578 +15580 2 55.92791756411688 -632.5696840773007 25.9484 0.1144 15579 +15581 2 56.35547453449774 -633.4986195438067 25.5081 0.1144 15580 +15582 2 56.651904307236265 -633.3441656186565 24.6768 0.1144 15581 +15583 2 56.43946256842466 -634.6040606607563 24.1706 0.1144 15582 +15584 2 56.21245285229781 -635.9947031318409 23.8177 0.1144 15583 +15585 2 56.723900156455954 -637.3466209454891 23.4998 0.1144 15584 +15586 2 57.57982409473554 -638.8956987622125 23.214 0.1144 15585 +15587 2 58.441763898313596 -639.8418263496787 22.9391 0.1144 15586 +15588 2 58.838577365873306 -640.6715539484773 22.5609 0.1144 15587 +15589 2 59.00914455570761 -641.8531329565074 22.1593 0.1144 15588 +15590 2 59.16394796674649 -643.1801876926852 21.7594 0.1144 15589 +15591 2 59.33156623387497 -644.746699935384 21.3676 0.1144 15590 +15592 2 59.526642340579784 -646.3293802114663 20.9931 0.1144 15591 +15593 2 59.7292396328911 -647.9217308931761 20.6387 0.1144 15592 +15594 2 59.92293232799074 -649.5095545541046 20.3049 0.1144 15593 +15595 2 59.761677274368374 -650.8087910995891 19.9917 0.1144 15594 +15596 2 59.51492944095952 -652.0388158921232 19.6889 0.1144 15595 +15597 2 59.268266800400596 -653.2698912308127 19.3863 0.1144 15596 +15598 2 59.02254128118933 -654.5012865533918 19.0781 0.1144 15597 +15599 2 58.77579344778059 -655.7357462923576 18.7646 0.1144 15598 +15600 2 58.17703957890103 -657.5172170752403 18.3432 0.1144 15599 +15601 2 57.477845340709976 -658.8162181397781 17.8328 0.1144 15600 +15602 2 56.77869254176863 -659.7877156605507 17.2854 0.1144 15601 +15603 2 56.23943341594901 -660.6416674171722 16.8912 0.1144 15602 +15604 2 55.78639375138734 -661.6315363387331 16.7059 0.1144 15603 +15605 2 55.33464369336843 -662.766349917131 16.8274 0.1144 15604 +15606 2 45.9237531635778 -554.0210216099651 41.9846 0.1144 15481 +15607 2 44.78247031475877 -553.7534650339122 42.1128 0.1144 15606 +15608 2 43.65092166504231 -553.5199073680957 42.2416 0.1144 15607 +15609 2 42.55242684673672 -554.6404968770597 42.3382 0.1144 15608 +15610 2 41.47643904653322 -554.8355948430724 42.4063 0.1144 15609 +15611 2 40.43117974437963 -556.0176297744393 42.4435 0.1144 15610 +15612 2 39.54383003884509 -556.1910167437118 42.4469 0.1144 15611 +15613 2 38.885861030887014 -557.4364211147022 42.4147 0.1144 15612 +15614 2 38.3138965576544 -558.3539320017345 42.3478 0.1144 15613 +15615 2 37.9266646139466 -559.5276968418311 42.2444 0.1144 15614 +15616 2 37.3197197184799 -560.9095981681326 42.0207 0.1144 15615 +15617 2 36.28770755221226 -561.1814351933336 41.7217 0.1144 15616 +15618 2 35.29429345890264 -562.412843921077 41.473 0.1144 15617 +15619 2 34.30082699978024 -562.3869633260105 41.2555 0.1144 15618 +15620 2 33.306338226460305 -563.0781709727603 41.076 0.1144 15619 +15621 2 32.50759009100255 -564.0532882159498 40.9422 0.1144 15620 +15622 2 32.168204394379856 -565.6762731060331 40.8859 0.1144 15621 +15623 2 31.968460184307638 -567.1062271951891 40.885 0.1144 15622 +15624 2 31.767916411550104 -568.528406522192 40.9245 0.1144 15623 +15625 2 31.563495206951742 -569.9620000509146 41.0094 0.1144 15624 +15626 2 31.348206868013246 -571.4019704045975 41.1578 0.1144 15625 +15627 2 31.126899562193174 -572.8374845244898 41.3655 0.1144 15626 +15628 2 30.905986180817784 -574.1310300376258 41.6189 0.1144 15627 +15629 2 30.685486262662877 -575.4179571869255 41.9084 0.1144 15628 +15630 2 30.46493397869513 -576.954610683136 42.2285 0.1144 15629 +15631 2 30.24411440238223 -578.4920187536657 42.5732 0.1144 15630 +15632 2 30.02436950607969 -580.0213534459929 42.94 0.1144 15631 +15633 2 29.969906137229373 -581.4377697080187 43.3586 0.1144 15632 +15634 2 30.3248930171221 -582.4345057264162 43.846 0.1144 15633 +15635 2 30.794332042565745 -583.659936219292 44.3909 0.1144 15634 +15636 2 31.263536602701326 -584.8526857701174 44.973 0.1144 15635 +15637 2 31.731589114956698 -585.9295367180923 45.5694 0.1144 15636 +15638 2 32.19964162721214 -586.8302336707545 46.1608 0.1144 15637 +15639 2 32.668537455752755 -588.1001475546435 46.7261 0.1144 15638 +15640 2 31.839271960364854 -588.3873269209818 47.1962 0.1144 15639 +15641 2 30.720129539295648 -588.5542148020148 47.5591 0.1144 15640 +15642 2 29.596979952702952 -588.5573833399915 47.8492 0.1144 15641 +15643 2 28.47292607179949 -588.6081058849868 48.0903 0.1144 15642 +15644 2 27.63836930926801 -589.7668448132099 48.2174 0.1144 15643 +15645 2 27.21049977836682 -590.7424138220914 48.3672 0.1144 15644 +15646 2 26.83824686614804 -591.8048630693839 48.5764 0.1144 15645 +15647 2 26.466781802818783 -592.8638482569838 48.8379 0.1144 15646 +15648 2 26.094740715549346 -594.07605812988 49.1431 0.1144 15647 +15649 2 25.723689115440404 -595.6089613004244 49.4819 0.1144 15648 +15650 2 25.353340171371183 -597.1251301912116 49.8467 0.1144 15649 +15651 2 24.98317332679728 -598.5115456711787 50.211 0.1144 15650 +15652 2 24.67627564200872 -600.0288282199226 50.5772 0.1144 15651 +15653 2 24.467844170303675 -601.5185188602034 50.9466 0.1144 15652 +15654 2 24.269480270253503 -602.821123911807 51.315 0.1144 15653 +15655 2 23.846555026223577 -604.1087242326704 51.6438 0.1144 15654 +15656 2 23.392128848473643 -605.6966888249866 51.9378 0.1144 15655 +15657 2 22.936817915188726 -607.1782133882482 52.2035 0.1144 15656 +15658 2 22.480432301893423 -608.6929956310871 52.4468 0.1144 15657 +15659 2 22.024046688598176 -609.7737459098183 52.6753 0.1144 15658 +15660 2 21.5677134411156 -611.2388234235653 52.8962 0.1144 15659 +15661 2 21.11195621757321 -612.8603469150548 53.1152 0.1144 15660 +15662 2 20.655209506870328 -613.9074023335812 53.3336 0.1144 15661 +15663 2 20.199452283327886 -614.8790275024335 53.5506 0.1144 15662 +15664 2 19.743695059785495 -615.986531606916 53.7692 0.1144 15663 +15665 2 19.287309446490198 -617.4496056312457 53.9851 0.1144 15664 +15666 2 18.830529908750215 -618.6355317393495 54.1937 0.1144 15665 +15667 2 18.634392736590513 -619.8930864957198 54.4124 0.1144 15666 +15668 2 19.311714721870253 -621.2598628617965 54.5997 0.1144 15667 +15669 2 19.985475831883875 -622.4457086870119 54.9696 0.1144 15668 +15670 2 5.964795251570173 -474.15227684063336 44.8717 0.1144 8265 +15671 2 5.492856991892152 -476.1893021970806 45.3855 0.1144 15670 +15672 2 5.518001987722306 -477.40624938160886 45.638 0.1144 15671 +15673 2 5.757220396954157 -478.26831385768713 45.8304 0.1144 15672 +15674 2 5.9951491996433 -479.1787954118819 46.0502 0.1144 15673 +15675 2 6.23410031652994 -480.70675648945837 46.2994 0.1144 15674 +15676 2 6.31213886143214 -482.13401044306937 46.6077 0.1144 15675 +15677 2 6.04132770887368 -483.2681276624067 47.0028 0.1144 15676 +15678 2 5.670262080618671 -485.12530751345906 47.4807 0.1144 15677 +15679 2 5.301654543979179 -487.1039139896491 48.0228 0.1144 15678 +15680 2 4.932460056836687 -488.3097523773437 48.6086 0.1144 15679 +15681 2 4.565277371052173 -489.314118424763 49.2218 0.1144 15680 +15682 2 4.1975514883646365 -490.3611439191633 49.8467 0.1144 15681 +15683 2 3.8307627270248195 -491.838684669367 50.4736 0.1144 15682 +15684 2 3.4638887728352765 -493.80589018676034 51.1011 0.1144 15683 +15685 2 3.0971000114955083 -495.38416088515436 51.7289 0.1144 15684 +15686 2 2.7293741288079714 -496.3891028662652 52.3564 0.1144 15685 +15687 2 2.36250017461838 -497.4020240144868 52.9861 0.1144 15686 +15688 2 1.9961053377234075 -498.40606677430935 53.6225 0.1144 15687 +15689 2 1.5189523972458314 -500.4437569184958 54.245 0.1144 15688 +15690 2 0.9883274747096471 -501.9493369349514 54.8559 0.1144 15689 +15691 2 0.509394096599113 -502.94083518660193 55.5108 0.1144 15690 +15692 2 1.20835236061387 -503.98372886875416 56.289 0.1144 15691 +15693 2 2.18814120955308 -503.46422653524166 57.171 0.1144 15692 +15694 2 3.0962341107278974 -504.866619089934 58.0577 0.1144 15693 +15695 2 3.9769393604047987 -504.39489452073104 58.9252 0.1144 15694 +15696 2 4.860767020070256 -505.68833653598796 59.757 0.1144 15695 +15697 2 5.750338529292234 -505.74237839746223 60.5307 0.1144 15696 +15698 2 6.6467394946439775 -506.54471797617117 61.2245 0.1144 15697 +15699 2 6.656525053271016 -506.5102467866391 61.7865 0.1144 15698 +15700 2 6.895187373243981 -505.6037664564208 62.9188 0.1144 15699 +15701 2 7.188451100482096 -504.49617160450555 63.3536 0.1144 15700 +15702 2 7.1169223535518205 -503.0715827077896 63.6787 0.1144 15701 +15703 2 6.779558774467435 -501.49190291328784 63.873 0.1144 15702 +15704 2 6.424342247359613 -499.94993474818295 63.9719 0.1144 15703 +15705 2 6.070095668636707 -498.43979558672385 64.001 0.1144 15704 +15706 2 6.044577263762727 -497.0236011977189 64.0452 0.1144 15705 +15707 2 6.170894038915518 -495.7047699569626 64.1528 0.1144 15706 +15708 2 6.301940174407121 -494.3938842172724 64.3334 0.1144 15707 +15709 2 6.150840707926426 -492.9341900969511 64.5826 0.1144 15708 +15710 2 5.6221599195332725 -492.2505246516235 64.8519 0.1144 15709 +15711 2 5.092627202642175 -491.67308512774156 65.1294 0.1144 15710 +15712 2 4.5634032173459405 -490.05347101345274 65.3937 0.1144 15711 +15713 2 4.033209283664885 -488.4915752644744 65.6342 0.1144 15712 +15714 2 3.4492445389199626 -488.3509210032045 65.8437 0.1144 15713 +15715 2 2.348955165845951 -487.69385144892703 66.0114 0.1144 15714 +15716 2 1.2483570611770267 -488.45784756662374 66.1242 0.1144 15715 +15717 2 0.24396589875274088 -487.3681660667602 66.1548 0.1144 15716 +15718 2 0.6541060121469707 -486.3615468982697 65.9501 0.1144 15717 +15719 2 1.2451449768250462 -485.5903531162882 65.5984 0.1144 15718 +15720 2 1.8316921480555115 -483.3922736413088 65.0908 0.1144 15719 +15721 2 2.4914278792523055 -482.3900154774785 64.244 0.1144 15720 +15722 2 3.3232544693932455 -482.29284489889864 62.6416 0.1144 15721 +15723 2 4.090478444909872 -480.5084780065677 60.879 0.1144 15722 +15724 2 4.582973213109085 -479.86251648734265 59.3872 0.1144 15723 +15725 2 4.8732247549287315 -479.0037082731479 57.7744 0.1144 15724 +15726 2 6.962796947310004 -507.38657555013305 61.6661 0.1144 15698 +15727 2 7.573891261260719 -509.0144738909924 61.9679 0.1144 15726 +15728 2 8.188364350982118 -510.65032701363106 62.1379 0.1144 15727 +15729 2 8.802391150446049 -511.1976028753893 62.2177 0.1144 15728 +15730 2 9.349253157233242 -512.0775121086026 62.2401 0.1144 15729 +15731 2 9.040666430827557 -513.3825824620384 62.2303 0.1144 15730 +15732 2 8.733592849709716 -515.202955830243 62.2174 0.1144 15731 +15733 2 8.425006123304092 -516.9406555500888 62.2017 0.1144 15732 +15734 2 8.118017735036025 -518.4095437822419 62.1832 0.1144 15733 +15735 2 7.809431008630341 -519.5245927277808 62.1622 0.1144 15734 +15736 2 7.502357427512559 -520.64148786133 62.1387 0.1144 15735 +15737 2 7.193770701106826 -521.7576315583927 62.1116 0.1144 15736 +15738 2 6.885759998641274 -522.8751583424431 62.0791 0.1144 15737 +15739 2 6.577120906422866 -523.991575514906 62.0399 0.1144 15738 +15740 2 6.270184883967524 -525.2711922503325 61.9948 0.1144 15739 +15741 2 6.8365098017223165 -526.0242547011985 60.8703 0.1144 15740 +15742 2 7.26458183570287 -527.3715204657564 59.9206 0.1144 15741 +15743 2 7.06408191124156 -528.5745137229961 59.5148 0.1144 15742 +15744 2 6.76390895095731 -529.6944742615823 59.2301 0.1144 15743 +15745 2 6.4629809688206326 -530.8684961148298 59.0153 0.1144 15744 +15746 2 5.746033382386802 -531.7304985864912 58.7779 0.1144 15745 +15747 2 4.656055948865424 -532.21906465319 58.5435 0.1144 15746 +15748 2 3.5590187194625713 -532.0227726773605 58.2436 0.1144 15747 +15749 2 2.4509070174264806 -531.9653840683136 57.8656 0.1144 15748 +15750 2 2.0531550086401147 -532.9624347138619 57.4904 0.1144 15749 +15751 2 1.6575030956447048 -534.3220674381596 57.1113 0.1144 15750 +15752 2 1.2626507453345148 -536.1171129028589 56.7342 0.1144 15751 +15753 2 0.8669988323391031 -537.6713475311354 56.3573 0.1144 15752 +15754 2 0.4728076988187624 -538.9405489183408 55.9714 0.1144 15753 +15755 2 0.1496937418110349 -540.1627217379705 55.5338 0.1144 15754 +15756 2 0.026223566785141372 -541.44428082386 55.0099 0.1144 15755 +15757 2 -0.09230542295259525 -542.7257567420892 54.4407 0.1144 15756 +15758 2 -0.20981209849267657 -544.0080464474637 53.858 0.1144 15757 +15759 2 -0.32860838057551334 -545.2874070606961 53.2616 0.1144 15758 +15760 2 -0.44021072344923695 -546.4943416173825 52.1651 0.1144 15759 +15761 2 5.4952827320805735 -526.606073507508 61.8612 0.1144 15740 +15762 2 4.710574790254192 -528.0359968593339 61.745 0.1144 15761 +15763 2 3.92583402139082 -528.7707397234442 61.6207 0.1144 15762 +15764 2 3.048517343964173 -530.7754113864032 61.5689 0.1144 15763 +15765 2 2.1387588173501086 -530.9390067464961 61.605 0.1144 15764 +15766 2 1.2274957576607903 -532.3947037485669 61.712 0.1144 15765 +15767 2 0.31684154894870886 -533.3216736395193 61.8666 0.1144 15766 +15768 2 -0.59496470764363 -533.4926690989533 62.0382 0.1144 15767 +15769 2 -1.5052578189480172 -534.3217888369368 62.1981 0.1144 15768 +15770 2 -2.4168819760449693 -535.889678147368 62.3199 0.1144 15769 +15771 2 -3.3094285401133163 -536.2564594059306 62.3882 0.1144 15770 +15772 2 -3.6133061374924154 -538.1637836479786 62.2905 0.1144 15771 +15773 2 -3.855109684029909 -540.0013257408239 62.0539 0.1144 15772 +15774 2 -4.095083528704649 -541.6463194713882 61.7266 0.1144 15773 +15775 2 -4.334748641784582 -542.8300769381401 61.3539 0.1144 15774 +15776 2 -4.574105023269542 -544.0128480492682 60.9756 0.1144 15775 +15777 2 -4.832348380771226 -545.1811568208385 60.6612 0.1144 15776 +15778 2 -5.1421395208698435 -546.303327282585 60.5116 0.1144 15777 +15779 2 -5.452291758376159 -547.4249379033768 60.485 0.1144 15778 +15780 2 -5.760878484781841 -548.5525453614847 60.5461 0.1144 15779 +15781 2 -6.07169193907805 -549.6742716677852 60.6612 0.1144 15780 +15782 2 -6.379397011531722 -550.7912895449847 60.9773 0.1144 15781 +15783 2 15.049775568062014 -484.88942911522264 42.2103 0.1144 3407 +15784 2 13.942438408969036 -485.1745903429266 42.7784 0.1144 15783 +15785 2 12.959869833614002 -485.9399185264203 43.1964 0.1144 15784 +15786 2 12.044006454731983 -486.0712010866539 43.5898 0.1144 15785 +15787 2 11.131610146053504 -486.35900310112976 43.9306 0.1144 15786 +15788 2 10.260494535003822 -488.50129649052263 44.1067 0.1144 15787 +15789 2 9.439073387704413 -488.9182431859474 44.0468 0.1144 15788 +15790 2 8.631280687325944 -490.728652530862 43.7898 0.1144 15789 +15791 2 7.828396345198595 -491.6460266948616 43.4101 0.1144 15790 +15792 2 7.027151780458613 -492.0139689981664 42.9719 0.1144 15791 +15793 2 6.226535605471549 -492.44549385261536 42.5306 0.1144 15792 +15794 2 5.469412827857692 -494.24900129794753 42.2223 0.1144 15793 +15795 2 4.719783824746637 -495.3908989173217 42.061 0.1144 15794 +15796 2 3.971935259268648 -496.01998369896694 42.0274 0.1144 15795 +15797 2 3.224001500940835 -498.42793439158896 42.0972 0.1144 15796 +15798 2 2.547534025477261 -499.050019770246 42.3069 0.1144 15797 +15799 2 1.9633987832158586 -499.86925243952726 42.6857 0.1144 15798 +15800 2 1.3798888291240652 -502.02993082830034 43.1598 0.1144 15799 +15801 2 0.6279831413562889 -502.9677010599326 43.596 0.1144 15800 +15802 2 -0.1295890280981178 -503.5124513036299 43.9799 0.1144 15801 +15803 2 -0.8893769988800369 -503.9747979314735 44.2837 0.1144 15802 +15804 2 -1.5551454113527452 -505.6279563833098 44.4312 0.1144 15803 +15805 2 -2.126084468804623 -507.4506660874798 44.3876 0.1144 15804 +15806 2 -2.6946701662665467 -508.2291492472675 44.186 0.1144 15805 +15807 2 -3.2615965475653255 -509.26005214362783 43.86 0.1144 15806 +15808 2 -3.737757005973564 -510.95972711064957 43.3913 0.1144 15807 +15809 2 -4.457459796518223 -511.93369973549335 42.5838 0.1144 15808 +15810 2 -5.330979132772081 -512.0359591156376 41.622 0.1144 15809 +15811 2 -6.190938085225686 -512.1809029994392 40.6826 0.1144 15810 +15812 2 -6.987597743992069 -514.1596536776667 39.919 0.1144 15811 +15813 2 -7.793839653952579 -514.9115433840706 39.277 0.1144 15812 +15814 2 -8.608589135096999 -515.9026019054783 38.7668 0.1144 15813 +15815 2 -9.962512437394281 -516.1019064934525 38.3522 0.1144 15814 +15816 2 -11.092873785461954 -515.2555048283449 38.1962 0.1144 15815 +15817 2 -12.180023133658846 -515.7118683479869 38.1004 0.1144 15816 +15818 2 -13.016739745227156 -514.4044109487896 38.0372 0.1144 15817 +15819 2 -13.787729419146451 -513.5039555707576 37.9845 0.1144 15818 +15820 2 -14.737176591700301 -513.376942516846 37.9221 0.1144 15819 +15821 2 -15.74642854697095 -511.9843051342012 37.8417 0.1144 15820 +15822 2 -16.74513140424574 -510.96731278974926 37.718 0.1144 15821 +15823 2 -17.82244723764791 -511.55182444155884 37.4965 0.1144 15822 +15824 2 -18.926673907625606 -511.6841753614581 37.2333 0.1144 15823 +15825 2 -20.04355666709299 -512.4214850143667 36.9919 0.1144 15824 +15826 2 -21.035525394146763 -512.3678949198387 36.729 0.1144 15825 +15827 2 -21.605671784616195 -513.1393193113965 36.4736 0.1144 15826 +15828 2 -22.100071231186522 -514.8771871873097 36.2496 0.1144 15827 +15829 2 -22.501110619727562 -516.9150390198399 36.0405 0.1144 15828 +15830 2 -22.326101593211845 -517.9116830449115 35.7865 0.1144 15829 +15831 2 -21.845029485012653 -518.2669712537187 35.4133 0.1144 15830 +15832 2 -22.120132225169023 -520.1049726716421 35.0224 0.1144 15831 +15833 2 -22.36715045250607 -521.9070906368631 34.5881 0.1144 15832 +15834 2 -22.31847440786631 -523.2108026272465 34.0225 0.1144 15833 +15835 2 -22.241913772168424 -524.4629594604771 33.3931 0.1144 15834 +15836 2 -22.220995686487253 -525.8036904980115 32.8065 0.1144 15835 +15837 2 -22.20265449954128 -527.1490817587666 32.2557 0.1144 15836 +15838 2 -21.737101518151157 -527.716310871092 31.7419 0.1144 15837 +15839 2 -21.455425029916377 -529.1099620634346 31.2704 0.1144 15838 +15840 2 -21.423061471604726 -530.5002994347424 30.8372 0.1144 15839 +15841 2 -21.40191443124506 -531.9046068717108 30.4284 0.1144 15840 +15842 2 -21.379562977192464 -533.3127684134718 30.0336 0.1144 15841 +15843 2 -21.35783991289267 -534.7198428993845 29.6531 0.1144 15842 +15844 2 -21.233156433015147 -536.2019771247491 29.3056 0.1144 15843 +15845 2 -20.967164041355623 -537.7659150113066 29.0086 0.1144 15844 +15846 2 -20.696494655169957 -539.3322942315078 28.7451 0.1144 15845 +15847 2 -20.426847583181903 -540.8994123462219 28.499 0.1144 15846 +15848 2 -20.15720051119378 -542.4674353569985 28.2554 0.1144 15847 +15849 2 -20.4093834625642 -543.6381787238505 27.9558 0.1144 15848 +15850 2 -20.69881902219097 -544.7711318445696 27.5988 0.1144 15849 +15851 2 -21.035525497499556 -545.84651328734 27.1915 0.1144 15850 +15852 2 -21.417276160599243 -546.8811785003536 26.7493 0.1144 15851 +15853 2 -21.80562181452065 -548.1960374851135 26.3026 0.1144 15852 +15854 2 -22.49688381293137 -550.37861594796 25.9018 0.1144 15853 +15855 2 -23.25147492517948 -550.9844734499715 25.2412 0.1144 15854 +15856 2 -8.640082859362568 -516.1553610927292 38.5669 0.1144 15814 +15857 2 -8.855166174358228 -517.8034733030195 37.7048 0.1144 15856 +15858 2 -9.082410355793183 -519.6110226530081 37.3436 0.1144 15857 +15859 2 -9.310621384029929 -521.0115571408244 37.0944 0.1144 15858 +15860 2 -9.538386122009154 -522.2048081630209 36.8001 0.1144 15859 +15861 2 -9.766470518146267 -523.3947789873456 36.4672 0.1144 15860 +15862 2 -10.036614250748658 -524.5391560967573 36.0892 0.1144 15861 +15863 2 -10.384592711404986 -525.5906967461117 35.6552 0.1144 15862 +15864 2 -10.766164376592428 -526.7229099684421 35.1688 0.1144 15863 +15865 2 -11.147479675997683 -527.9531377845916 34.6408 0.1144 15864 +15866 2 -11.527050466390017 -529.0908697958539 34.0788 0.1144 15865 +15867 2 -11.907740477625495 -530.8009645739004 33.4916 0.1144 15866 +15868 2 -12.252337753464657 -532.5737925127432 32.87 0.1144 15867 +15869 2 -12.552960798126067 -533.8263879832193 32.193 0.1144 15868 +15870 2 -13.163104388151657 -534.4161392399924 31.4278 0.1144 15869 +15871 2 -14.170300308711909 -535.6119791340576 30.7003 0.1144 15870 +15872 2 -15.248760589776865 -535.7233758751244 30.0224 0.1144 15871 +15873 2 -16.300292531459114 -535.5734497769167 29.3768 0.1144 15872 +15874 2 -17.13087667201409 -537.005403919153 28.7899 0.1144 15873 +15875 2 -17.73346111755135 -538.4104521678888 28.3032 0.1144 15874 +15876 2 -18.38376587061086 -539.0537566675117 27.8902 0.1144 15875 +15877 2 -19.39818586428229 -540.2506001950937 27.5325 0.1144 15876 +15878 2 -20.526610701252032 -539.8414502768596 27.2648 0.1144 15877 +15879 2 -21.594582856639548 -538.6921663609018 27.0266 0.1144 15878 +15880 2 -22.690317368652714 -540.0294248686972 26.7394 0.1144 15879 +15881 2 -23.82087142902698 -539.3967727630645 26.3973 0.1144 15880 +15882 2 -24.830469761022655 -539.816201137359 26.0 0.1144 15881 +15883 2 -25.939991895004642 -539.0873215154393 25.4756 0.1144 15882 +15884 2 -27.004541023584174 -538.8956442567603 24.8733 0.1144 15883 +15885 2 -28.100457635092663 -540.1572703485313 24.2362 0.1144 15884 +15886 2 -29.148867569527447 -539.5604600425197 23.5927 0.1144 15885 +15887 2 -30.11979905522297 -539.7891446865005 22.4367 0.1144 15886 +15888 2 -3.6372776954480273 -510.09932458973447 45.1665 0.1144 15807 +15889 2 -4.50660064621777 -510.45657609741494 46.8664 0.1144 15888 +15890 2 -5.5616476142713065 -509.92643512612614 47.7128 0.1144 15889 +15891 2 -6.6555510393485475 -510.121953978181 48.3451 0.1144 15890 +15892 2 -7.738561682840015 -510.9361267719188 48.9807 0.1144 15891 +15893 2 -8.718715227642967 -511.787520775398 49.6398 0.1144 15892 +15894 2 -9.661603160016647 -512.9013721962998 50.2818 0.1144 15893 +15895 2 -10.578853052087094 -513.0200067687102 50.6948 0.1144 15894 +15896 2 -11.655432289449887 -513.234042518191 51.002 0.1144 15895 +15897 2 -12.767408407175967 -514.1471832279988 51.2324 0.1144 15896 +15898 2 -13.881919984387498 -514.5294374257659 51.3828 0.1144 15897 +15899 2 -14.97333138982761 -515.2780870050965 51.3075 0.1144 15898 +15900 2 -16.046194370996083 -514.9275281611174 50.995 0.1144 15899 +15901 2 -17.110599045210343 -515.9463233847193 50.521 0.1144 15900 +15902 2 -18.198051525383235 -516.1801642649752 50.0035 0.1144 15901 +15903 2 -19.295820763201775 -517.1031342509224 49.495 0.1144 15902 +15904 2 -20.397010216040798 -517.2109668320265 49.0162 0.1144 15903 +15905 2 -21.500839859990666 -516.6769708206359 48.5887 0.1144 15904 +15906 2 -22.6064913808234 -518.2173943510784 48.2059 0.1144 15905 +15907 2 -23.714763553991244 -517.7665151910206 47.8568 0.1144 15906 +15908 2 -24.82402521431969 -519.223397960627 47.53 0.1144 15907 +15909 2 -25.9342568230329 -518.6873982870903 47.2262 0.1144 15908 +15910 2 -27.047131724440142 -518.3282210941044 46.9577 0.1144 15909 +15911 2 -28.16998418655941 -519.6168383150282 46.7743 0.1144 15910 +15912 2 -29.29503054953211 -519.9411232392074 46.6567 0.1144 15911 +15913 2 -30.42047083694954 -520.4897956158178 46.5559 0.1144 15912 diff --git a/example_data/upright_only_740135032.swc b/example_data/upright_only_740135032.swc new file mode 100644 index 0000000..50135c1 --- /dev/null +++ b/example_data/upright_only_740135032.swc @@ -0,0 +1,15913 @@ +1 1 -84.3510406491921 -1150.8209603699775 25.802 4.004 -1 +2 3 -87.0713162340453 -1154.3649132086098 23.225 0.4665 1 +3 3 -87.56598366549741 -1155.3645706010502 22.6751 0.2771 2 +4 3 -88.23759273947604 -1156.2621735710484 22.2276 0.2764 3 +5 3 -89.19428811668303 -1156.848937966041 21.8782 0.2758 4 +6 3 -90.15780443250321 -1157.4505766608968 21.5706 0.2752 5 +7 3 -90.64414018910065 -1158.4530946816103 21.3484 0.2746 6 +8 3 -90.88429303168766 -1159.5675755213724 21.1794 0.274 7 +9 3 -91.16107009277835 -1160.6749883614884 21.0111 0.2735 8 +10 3 -91.38425164129404 -1161.7951185532083 20.8461 0.2729 9 +11 3 -91.70941573732648 -1162.8893122840673 20.704 0.2723 10 +12 3 -92.52772299215383 -1163.6662709681023 20.5689 0.2717 11 +13 3 -93.29835068617223 -1164.4944454649394 20.4322 0.2711 12 +14 3 -93.59993988509876 -1165.594337811986 20.2613 0.2705 13 +15 3 -94.07936340176309 -1166.6208958189532 20.0099 0.2699 14 +16 3 -94.78341053080948 -1167.511557421405 19.7581 0.2693 15 +17 3 -95.1915856980288 -1168.5560632054317 19.514 0.2687 16 +18 3 -95.14014213764204 -1169.6927327308854 19.2728 0.2682 17 +19 3 -94.93567921484782 -1170.8117601269764 19.062 0.2676 18 +20 3 -94.56976121570278 -1171.8921137810644 18.8517 0.267 19 +21 3 -94.28702407560371 -1172.972535906721 18.6769 0.2664 20 +22 3 -94.69028819143682 -1173.9200010210561 18.5399 0.2658 21 +23 3 -95.69306789289823 -1174.4491695389565 18.4376 0.2652 22 +24 3 -96.54034372354334 -1175.211654743275 18.3487 0.2647 23 +25 3 -97.23646171439253 -1176.1108239169102 18.2385 0.2641 24 +26 3 -97.68250695305812 -1177.1504360633685 18.1254 0.2635 25 +27 3 -97.99395189869023 -1178.2428876942613 18.0367 0.2629 26 +28 3 -98.51868379390771 -1179.257033979637 17.9658 0.2624 27 +29 3 -99.11132660735313 -1180.2349825139022 17.9106 0.2618 28 +30 3 -99.68663392773624 -1181.2237560507215 17.8693 0.2612 29 +31 3 -100.23262018710659 -1182.2294861609294 17.8304 0.2606 30 +32 3 -100.8946079796878 -1183.131856828933 17.7654 0.2601 31 +33 3 -101.87622402047583 -1183.6801789226588 17.6849 0.2595 32 +34 3 -102.83913587727898 -1184.2022140709273 17.6363 0.2589 33 +35 3 -103.50530131577949 -1185.1260509280332 17.6274 0.2583 34 +36 3 -104.28904921181072 -1185.8870490130944 17.6829 0.2577 35 +37 3 -105.32066844794383 -1186.380184057114 17.775 0.2571 36 +38 3 -106.30361484198767 -1186.954795505343 17.8644 0.2565 37 +39 3 -107.15257730520335 -1187.7103355479953 17.9365 0.256 38 +40 3 -107.75235589732694 -1188.6657900683313 17.9743 0.2554 39 +41 3 -108.14083369397747 -1189.7398585584701 18.0105 0.2548 40 +42 3 -108.64065964629668 -1190.7574767321425 18.1207 0.2542 41 +43 3 -109.02237197172963 -1191.809896933684 18.3782 0.2536 42 +44 3 -109.09389733813083 -1192.9388119092075 18.7237 0.253 43 +45 3 -109.43448744844648 -1194.0035172002413 19.0568 0.2524 44 +46 3 -109.94068253849196 -1195.023759127832 19.3179 0.2518 45 +47 3 -110.48382460678204 -1196.027623607557 19.5 0.2512 46 +48 3 -111.30810156426134 -1196.7948703067145 19.6135 0.2507 47 +49 3 -112.29840107256234 -1197.361911305108 19.6706 0.2501 48 +50 3 -113.13560933155264 -1198.1275986963315 19.7008 0.2495 49 +51 3 -113.80538490954888 -1199.0522460426855 19.7231 0.2489 50 +52 3 -114.26234654678422 -1200.0958684562506 19.7806 0.2483 51 +53 3 -114.7488496821943 -1201.1307690646358 19.8624 0.2478 52 +54 3 -115.14890819578761 -1202.2012742704624 19.8926 0.2472 53 +55 3 -115.28440778706022 -1203.3332418763434 19.9062 0.2466 54 +56 3 -115.60008033537792 -1204.4297006727597 19.9347 0.246 55 +57 3 -115.70541314030606 -1205.5647236021346 20.0067 0.2454 56 +58 3 -115.40588060246472 -1206.6615848462188 20.1126 0.2449 57 +59 3 -115.14304895846033 -1207.7730232776714 20.2633 0.2443 58 +60 3 -114.92708268659334 -1208.8931965184765 20.4688 0.2437 59 +61 3 -114.5189794114201 -1209.957010448068 20.6698 0.2431 60 +62 3 -114.13997065162755 -1211.0345996879923 20.8238 0.2426 61 +63 3 -113.86942789754136 -1212.145406628109 20.932 0.242 62 +64 3 -113.85153540989938 -1213.286500576426 21.0083 0.2414 63 +65 3 -114.11882092327534 -1214.3961784820995 21.0658 0.2408 64 +66 3 -114.76306767925001 -1215.3360050657925 21.0893 0.2403 65 +67 3 -115.13532059146877 -1216.4148905181664 21.0664 0.2397 66 +68 3 -115.06837744304858 -1217.552714500547 21.1791 0.2391 67 +69 3 -114.92907913067273 -1218.6837428778076 21.4231 0.2385 68 +70 3 -115.07393271099761 -1219.8134782451689 21.6821 0.2379 69 +71 3 -115.22511398979884 -1220.9417035688257 21.9531 0.2374 70 +72 3 -114.9707515793117 -1222.0502485449683 22.2553 0.2368 71 +73 3 -115.17853423485235 -1222.5029943765962 22.6571 0.2368 72 +74 3 -115.75252902424529 -1223.4238193500573 23.4274 0.2368 73 +75 3 -116.32615961464751 -1224.3498199741148 24.0129 0.2366 74 +76 3 -116.59020460345192 -1225.438607714626 24.5705 0.2366 75 +77 3 -116.82800167700242 -1226.5328596060162 25.1318 0.2365 76 +78 3 -117.06157114786748 -1227.6231043318826 25.7486 0.2364 77 +79 3 -117.34512599181176 -1228.6998212168974 26.3448 0.2363 78 +80 3 -117.83409101295706 -1229.7066551347289 26.8329 0.2363 79 +81 3 -118.65976989684401 -1230.4103215334603 27.2581 0.2362 80 +82 3 -119.41954897132456 -1231.1753675307582 27.682 0.2361 81 +83 3 -119.38142002408216 -1232.189928575438 28.198 0.2361 82 +84 3 -118.94967137963584 -1233.2244183424336 28.7465 0.236 83 +85 3 -118.22697803717898 -1234.033119729083 29.3513 0.2359 84 +86 3 -117.8933991858575 -1234.9909685689063 30.0913 0.2359 85 +87 3 -118.36853453025873 -1235.9087785571396 30.9546 0.2358 86 +88 3 -118.84976241529176 -1236.8518141464292 31.9838 0.2357 87 +89 3 -119.19405716270222 -1237.8973159048714 32.741 0.2356 88 +90 3 -119.43769420522204 -1238.984358443833 33.3729 0.2356 89 +91 3 -119.25795271678436 -1240.0851279461967 33.9276 0.2355 90 +92 3 -118.90767806750137 -1241.1509167245526 34.468 0.2354 91 +93 3 -118.23575286251656 -1242.0538574141365 34.9423 0.2353 92 +94 3 -117.852868369708 -1242.9586275038096 35.639 0.2353 93 +95 3 -118.49315550787895 -1243.8678488358805 36.2748 0.2352 94 +96 3 -118.97330802036504 -1244.8344038548798 36.7312 0.2351 95 +97 3 -118.98842961173091 -1245.9676193143027 37.0723 0.235 96 +98 3 -119.14853020842668 -1247.0637652712526 37.3685 0.235 97 +99 3 -119.65504495662998 -1248.081386546508 37.6555 0.2349 98 +100 3 -120.29250911165798 -1249.0171614238448 37.9753 0.2348 99 +101 3 -121.09344804638602 -1249.8048075517706 38.4135 0.2347 100 +102 3 -121.96443771787278 -1250.513436059639 38.939 0.2347 101 +103 3 -122.65147280613456 -1251.3815505898115 39.4425 0.2346 102 +104 3 -123.18325218559744 -1252.3798392913295 39.8658 0.2345 103 +105 3 -123.94569576070944 -1253.1667125751374 40.2422 0.2345 104 +106 3 -124.87153910935012 -1253.8124538497805 40.696 0.2344 105 +107 3 -125.71512502358308 -1254.5591721737205 41.1421 0.2343 106 +108 3 -126.33384054848966 -1255.4968041640232 41.5097 0.2343 107 +109 3 -126.4400313903858 -1256.5933840995945 41.8592 0.2342 108 +110 3 -126.43127245463398 -1257.7240110411826 42.2657 0.2341 109 +111 3 -126.57555311260177 -1258.8479947340074 42.6056 0.234 110 +112 3 -126.80264802157836 -1259.9598487182684 42.9556 0.234 111 +113 3 -127.56487426111158 -1260.731798437983 43.435 0.2339 112 +114 3 -127.98972129555665 -1261.7489901442623 43.9396 0.2338 113 +115 3 -128.41291383193175 -1262.7973271974834 44.373 0.2338 114 +116 3 -128.35136505476004 -1263.9023136897213 44.8882 0.2337 115 +117 3 -127.88526887646691 -1264.9250813869921 45.3698 0.2336 116 +118 3 -128.02741110097708 -1266.043759695538 45.7509 0.2335 117 +119 3 -128.65953394310606 -1266.9882242435538 46.025 0.2335 118 +120 3 -129.4090363141175 -1267.846374909724 46.2571 0.2334 119 +121 3 -129.9940532103309 -1268.8237443184662 46.5161 0.2333 120 +122 3 -130.61107589950075 -1269.7816990622039 46.755 0.2333 121 +123 3 -131.03083419270928 -1270.8400153926468 46.9392 0.2332 122 +124 3 -131.13541197578502 -1271.9718744727832 47.0526 0.2331 123 +125 3 -131.768745434773 -1272.9010019934854 47.1324 0.233 124 +126 3 -132.67939723443868 -1273.5735586898063 47.2612 0.233 125 +127 3 -133.17522833287046 -1274.543060222465 47.4827 0.2329 126 +128 3 -133.1453971324612 -1275.6795155139225 47.784 0.2328 127 +129 3 -133.23941961437487 -1276.80887747224 48.0866 0.2327 128 +130 3 -133.5933677776831 -1277.8738117179523 48.356 0.2327 129 +131 3 -134.30847265808154 -1278.7376993379762 48.638 0.2326 130 +132 3 -135.04888902492252 -1279.5714841565682 48.9454 0.2325 131 +133 3 -135.65922291820823 -1280.5294357987227 49.2083 0.2325 132 +134 3 -136.51787685089977 -1281.2384637416653 49.4704 0.2324 133 +135 3 -137.44938668122705 -1281.8835797281386 49.7818 0.2323 134 +136 3 -138.11044045404356 -1282.7786855763181 50.1088 0.2322 135 +137 3 -138.57943220006217 -1283.813621420787 50.398 0.2322 136 +138 3 -139.06789787260067 -1284.843037646981 50.6456 0.2321 137 +139 3 -139.54517675264117 -1285.8776678614379 50.8928 0.232 138 +140 3 -139.57759309035606 -1286.9718618940706 51.1734 0.232 139 +141 3 -139.1980997026394 -1288.037063029387 51.4665 0.2319 140 +142 3 -139.17450618976386 -1289.1372082498692 51.8395 0.2318 141 +143 3 -139.33487338626816 -1290.254881373947 52.2822 0.2317 142 +144 3 -139.55578435859695 -1291.3548349831071 52.8217 0.2317 143 +145 3 -139.8740454247494 -1292.4274132524058 53.4066 0.2316 144 +146 3 -140.17400104945472 -1293.5101029416555 53.9288 0.2315 145 +147 3 -140.70586872335053 -1294.5017552131017 54.4186 0.2314 146 +148 3 -141.09132092196194 -1295.5524832714432 54.9914 0.2314 147 +149 3 -141.5781444080664 -1296.56070060088 55.5478 0.2313 148 +150 3 -141.88428707100275 -1297.6486018693463 55.993 0.2312 149 +151 3 -142.20410744508956 -1298.7341114401556 56.3774 0.2312 150 +152 3 -142.4411994535539 -1299.8077404587289 56.9016 0.2311 151 +153 3 -143.11673290925285 -1300.7184372909578 57.2376 0.231 152 +154 3 -143.66294812330176 -1301.710809348173 57.4963 0.2309 153 +155 3 -143.97434070312113 -1302.8033461719153 57.7853 0.2309 154 +156 3 -144.23076218374 -1303.9089286176322 58.0835 0.2308 155 +157 3 -144.61691944743757 -1304.9802795487903 58.3307 0.2307 156 +158 3 -144.76856242971564 -1306.0510373439643 58.548 0.2307 157 +159 3 -144.42474452005519 -1307.1368760727805 58.7594 0.2306 158 +160 3 -144.29502915141006 -1308.2523141585284 59.0013 0.2305 159 +161 3 -144.32516260130217 -1309.3786758523006 59.3158 0.2304 160 +162 3 -144.3055458359595 -1310.491829742164 59.7388 0.2304 161 +163 3 -144.7600226630123 -1311.4936632131921 60.2322 0.2303 162 +164 3 -145.20358550054186 -1312.5088602478422 60.6738 0.2302 163 +165 3 -145.5046900715443 -1313.5963644902806 61.1257 0.2302 164 +166 3 -145.865817861827 -1314.6603123504156 61.6406 0.2301 165 +167 3 -146.26218645900815 -1315.7150506758635 62.1368 0.23 166 +168 3 -146.62041459081473 -1316.7839068942494 62.5971 0.2299 167 +169 3 -147.04155939721164 -1317.837675963849 62.9306 0.2299 168 +170 3 -147.24019058960693 -1318.9521061543085 63.1509 0.2298 169 +171 3 -147.0670355744744 -1320.0704229746839 63.3245 0.2297 170 +172 3 -147.0409442472435 -1321.2051861229413 63.5342 0.2296 171 +173 3 -147.2605594098635 -1322.3204243936025 63.7837 0.2296 172 +174 3 -147.16648118160794 -1323.445677479343 64.0802 0.2295 173 +175 3 -146.75749625248272 -1324.5021413962604 64.4036 0.2294 174 +176 3 -146.63477530973353 -1325.6258697176136 64.738 0.2294 175 +177 3 -146.65038463060677 -1326.7647844857597 65.0082 0.2293 176 +178 3 -146.27569176793259 -1327.839744461136 65.1549 0.2292 177 +179 3 -145.86420971698857 -1328.9067636792156 65.1865 0.2291 178 +180 3 -145.9534145441305 -1330.0439633797141 65.1722 0.2291 179 +181 3 -145.98256091590866 -1331.1872080731255 65.1392 0.229 180 +182 3 -145.64787896718497 -1332.2799536259408 65.1022 0.2289 181 +183 3 -145.8282789844199 -1333.4087665926372 65.0661 0.2289 182 +184 3 -114.87313880359432 -1223.5372093400188 21.3187 0.2367 72 +185 3 -115.20267116255792 -1224.6286886134799 21.1997 0.2366 184 +186 3 -115.38931368541972 -1225.7559391706586 21.0678 0.2365 185 +187 3 -115.70847043367024 -1226.8249596662745 20.9618 0.2364 186 +188 3 -116.38497073617077 -1227.7430588769898 20.8947 0.2363 187 +189 3 -117.17823620594714 -1228.5649587337002 20.8653 0.2361 188 +190 3 -118.06303573131368 -1229.2860667421924 20.8693 0.236 189 +191 3 -118.88571435065535 -1230.053622172945 20.9023 0.2359 190 +192 3 -119.12299766866818 -1231.0790079184053 20.9605 0.2358 191 +193 3 -118.99582016855487 -1232.2120871272273 21.0353 0.2357 192 +194 3 -119.425497169408 -1233.169096847626 21.1823 0.2356 193 +195 3 -120.19344564211218 -1234.010414470924 21.3978 0.2355 194 +196 3 -120.48658653137039 -1235.0648522685415 21.6126 0.2354 195 +197 3 -120.68860201016605 -1236.1867622053578 21.784 0.2353 196 +198 3 -121.28994060276062 -1237.1310854005915 21.8958 0.2352 197 +199 3 -121.83815669160464 -1238.1287956691226 21.9655 0.2351 198 +200 3 -122.30907194454846 -1239.1714871645063 21.9752 0.235 199 +201 3 -122.82729404179412 -1240.1897313188847 21.9264 0.2349 200 +202 3 -123.11205260689479 -1241.2885513949673 21.8228 0.2348 201 +203 3 -123.71156149762669 -1242.2291675440597 21.5233 0.2347 202 +204 3 -124.57546775624786 -1242.9602048730071 21.1464 0.2346 203 +205 3 -125.47024725137288 -1243.660684498053 20.8274 0.2345 204 +206 3 -125.74257937419907 -1244.749166608552 20.5895 0.2344 205 +207 3 -125.02512363698918 -1245.6148477941767 20.3931 0.2343 206 +208 3 -124.65756586045666 -1246.6913763822367 20.1938 0.2341 207 +209 3 -124.73242314744539 -1247.8278562969667 19.9916 0.234 208 +210 3 -124.58515735920554 -1248.9565696519044 19.7279 0.2339 209 +211 3 -124.85542772390755 -1250.061391565139 19.4724 0.2338 210 +212 3 -125.48701598134608 -1251.010927032126 19.289 0.2337 211 +213 3 -125.85205954113633 -1252.0839725155306 19.0931 0.2336 212 +214 3 -125.7468883254453 -1253.2184881943072 18.8692 0.2335 213 +215 3 -125.86867186790062 -1254.3420249043381 18.6746 0.2334 214 +216 3 -126.35343049429781 -1255.3732708323948 18.5298 0.2333 215 +217 3 -126.50894479994679 -1256.4812703092625 18.405 0.2332 216 +218 3 -126.11308896913579 -1257.551321233851 18.2967 0.2331 217 +219 3 -125.64232130694603 -1258.5858900852263 18.1874 0.233 218 +220 3 -125.48426885381912 -1259.7080905406087 18.0484 0.2329 219 +221 3 -125.5653241056018 -1260.8455630440824 17.8851 0.2328 220 +222 3 -125.42340273184413 -1261.9588979324565 17.7155 0.2327 221 +223 3 -124.90402829008741 -1262.9743884982668 17.5338 0.2326 222 +224 3 -124.28318916422279 -1263.9275113811082 17.2819 0.2325 223 +225 3 -123.47612526970943 -1264.7031333187638 16.9573 0.2324 224 +226 3 -122.69437596322189 -1265.4419636591033 16.64 0.2322 225 +227 3 -122.44179709195089 -1266.540923282469 16.3814 0.2321 226 +228 3 -122.40924833256076 -1267.6796991068795 16.1897 0.232 227 +229 3 -122.31918278045833 -1268.8114096247791 16.0321 0.2319 228 +230 3 -122.06748246155627 -1269.9244080567028 15.8693 0.2318 229 +231 3 -121.69796524947839 -1270.9997322310696 15.6848 0.2317 230 +232 3 -121.04331696857696 -1271.905310702718 15.4954 0.2316 231 +233 3 -120.48150847324905 -1272.8410751680499 15.2482 0.2315 232 +234 3 -120.18032523145735 -1273.938330336579 14.9523 0.2314 233 +235 3 -119.97767557333327 -1275.0545987344394 14.6894 0.2313 234 +236 3 -120.08088397294989 -1276.173408493178 14.4324 0.2312 235 +237 3 -120.42712343522288 -1277.2550850782832 14.1543 0.2311 236 +238 3 -120.84781884977929 -1278.3139774326664 13.929 0.231 237 +239 3 -120.83398727854677 -1279.4026333322222 13.7962 0.2309 238 +240 3 -120.73532586082757 -1280.5330511419957 13.7416 0.2308 239 +241 3 -121.03398326677745 -1281.6136516620177 13.7516 0.2307 240 +242 3 -121.62827988575634 -1282.5845174759538 13.8088 0.2306 241 +243 3 -121.6520627127245 -1283.6425335803406 13.9442 0.2305 242 +244 3 -121.58635990661742 -1284.7718468899538 14.208 0.2304 243 +245 3 -121.66331728939707 -1285.9028095954554 14.5739 0.2303 244 +246 3 -121.54242915009382 -1287.0235561670656 14.9697 0.2302 245 +247 3 -121.47102703526303 -1288.1533572061862 15.3424 0.2301 246 +248 3 -121.91980455359214 -1289.155678406721 15.7716 0.2299 247 +249 3 -122.74498029475257 -1289.912678536312 16.2665 0.2298 248 +250 3 -123.1637693321129 -1290.9462186575392 16.7717 0.2297 249 +251 3 -123.3509495412481 -1292.061709499863 17.1718 0.2296 250 +252 3 -123.2582547245978 -1293.189104120644 17.5819 0.2295 251 +253 3 -123.44111903661457 -1294.3072242275157 17.9547 0.2294 252 +254 3 -123.6907110611038 -1295.4195251945707 18.2044 0.2293 253 +255 3 -123.8135552554233 -1296.5545128878616 18.3581 0.2292 254 +256 3 -123.86992810305276 -1297.6970032519566 18.4477 0.2291 255 +257 3 -124.09515427996342 -1298.8183902231822 18.4956 0.229 256 +258 3 -124.14181204113288 -1299.9615996805096 18.5102 0.2289 257 +259 3 -86.02491493660949 -1147.7568979146863 28.7893 0.4865 1 +260 3 -86.04052694547511 -1146.6653454582379 29.3121 0.2737 259 +261 3 -86.52523040110754 -1145.671504897535 29.6554 0.2705 260 +262 3 -87.61517459914393 -1145.5411631345928 29.8836 0.2679 261 +263 3 -88.75626854746099 -1145.559055622235 30.0378 0.2653 262 +264 3 -89.72766825355114 -1144.9837507108982 30.2394 0.2626 263 +265 3 -90.31724160354037 -1144.0114095747826 30.4612 0.26 264 +266 3 -90.66992267116274 -1142.924328094607 30.6113 0.2574 265 +267 3 -91.13333992991534 -1142.207451282114 30.5964 0.2471 266 +268 3 -91.79102612049218 -1141.2728689985647 30.4682 0.2469 267 +269 3 -92.52959246002632 -1140.4121820565774 30.228 0.2467 268 +270 3 -93.42137018173787 -1139.7128119220574 29.8651 0.2466 269 +271 3 -94.28525780176165 -1138.997707041659 29.4599 0.2465 270 +272 3 -94.98395698917409 -1138.105824103427 29.0814 0.2464 271 +273 3 -95.55218768057756 -1137.1485355725508 28.7134 0.2463 272 +274 3 -95.79162652697141 -1136.040207931987 28.355 0.2462 273 +275 3 -96.07236279227533 -1134.9544475950142 28.0003 0.2461 274 +276 3 -96.53948438634916 -1133.925619491612 27.5896 0.246 275 +277 3 -97.02182897136191 -1132.9182387784213 27.103 0.2459 276 +278 3 -97.6107763406448 -1131.9642937872322 26.5962 0.2457 277 +279 3 -97.97860071698591 -1130.9092923662997 26.1802 0.2456 278 +280 3 -97.94244209704607 -1129.7994166461383 25.8582 0.2455 279 +281 3 -97.72402824653597 -1128.688907735816 25.5805 0.2454 280 +282 3 -97.96314294811572 -1127.638014796698 25.3313 0.2453 281 +283 3 -98.4415717636208 -1126.621536460237 25.1448 0.2452 282 +284 3 -98.54081471590968 -1125.5008665639602 24.9572 0.2451 283 +285 3 -98.4731698829325 -1124.3635378223153 24.7553 0.245 284 +286 3 -98.75060404779907 -1123.302627960845 24.5546 0.2449 285 +287 3 -99.01260978933601 -1122.2538327084712 24.3563 0.2447 286 +288 3 -99.00520240963493 -1121.1145599445003 24.1995 0.2446 287 +289 3 -99.15466209872812 -1119.984377985108 24.074 0.2445 288 +290 3 -99.45807206841027 -1118.8857917707865 23.9443 0.2444 289 +291 3 -99.90799952220408 -1117.8370044204037 23.8213 0.2443 290 +292 3 -100.24762816684563 -1116.7579811195715 23.7449 0.2442 291 +293 3 -100.39374500878836 -1115.6244532114451 23.7063 0.2441 292 +294 3 -100.49686298387155 -1114.4846845142024 23.6973 0.244 293 +295 3 -100.91484252115129 -1113.465911670819 23.7169 0.2439 294 +296 3 -101.30395339614569 -1112.4266942599943 23.7785 0.2437 295 +297 3 -101.09724930372437 -1111.3341820595242 23.9016 0.2436 296 +298 3 -101.0701914086377 -1110.213701773971 24.0248 0.2435 297 +299 3 -101.2719922398469 -1109.090220922099 24.1426 0.2434 298 +300 3 -101.65781642762323 -1108.0168209471935 24.2505 0.2433 299 +301 3 -101.73148670959421 -1106.8898226599035 24.3304 0.2432 300 +302 3 -101.40948336121693 -1105.8015627030763 24.3642 0.2431 301 +303 3 -101.27340774600418 -1104.6705322185426 24.3921 0.2429 302 +304 3 -101.72939250434621 -1103.6294590798248 24.5158 0.2428 303 +305 3 -102.19321810645266 -1102.5865147999946 24.7036 0.2427 304 +306 3 -102.5906722754014 -1101.516155143811 24.8845 0.2426 305 +307 3 -102.68586421387039 -1100.378205221868 25.0553 0.2425 306 +308 3 -102.74729015306224 -1099.2382811436967 25.1953 0.2424 307 +309 3 -102.97297151138906 -1098.1173888096594 25.3039 0.2423 308 +310 3 -103.0248120978037 -1096.975681192272 25.3884 0.2422 309 +311 3 -102.92442357974681 -1095.8370066841521 25.479 0.2421 310 +312 3 -102.92557062641282 -1094.6948928306838 25.617 0.242 311 +313 3 -102.9265801144162 -1093.5528118042525 25.7781 0.2418 312 +314 3 -103.00395193189894 -1092.4132987802554 25.9442 0.2417 313 +315 3 -103.12890270412157 -1091.281550617226 26.1156 0.2416 314 +316 3 -102.9344607767452 -1090.1603049987825 26.3082 0.2415 315 +317 3 -103.10075040712769 -1089.0552579369669 26.5688 0.2414 316 +318 3 -103.65124927197775 -1088.0897698739652 26.8248 0.2413 317 +319 3 -103.59286703203674 -1086.9635341197559 27.1006 0.2412 318 +320 3 -103.42692267225203 -1085.9053489377316 27.3706 0.2411 319 +321 3 -103.90499590097915 -1084.8980424908277 27.5728 0.2409 320 +322 3 -103.86617278040791 -1083.766339484156 27.7547 0.2408 321 +323 3 -103.627712081021 -1082.6555985175723 27.9549 0.2407 322 +324 3 -103.72499249618136 -1081.5404130034867 28.1467 0.2406 323 +325 3 -104.14132743798064 -1080.4830674326172 28.3562 0.2405 324 +326 3 -104.19619292989779 -1079.388762873641 28.5421 0.2404 325 +327 3 -103.87485941052313 -1078.303614400239 28.707 0.2403 326 +328 3 -103.7646182473438 -1077.1656918123886 28.8196 0.2402 327 +329 3 -103.57276414526555 -1076.0446282934404 28.9002 0.2401 328 +330 3 -103.2403352294088 -1074.9513685823463 29.0184 0.2399 329 +331 3 -103.26463070578751 -1073.8785350305648 29.1998 0.2398 330 +332 3 -103.75068302947813 -1072.845261988898 29.3768 0.2397 331 +333 3 -103.83823604654248 -1071.783139811744 29.5156 0.2396 332 +334 3 -103.32734993382482 -1070.7749217897704 29.622 0.2395 333 +335 3 -103.02520832794215 -1069.7217595705492 29.6993 0.2394 334 +336 3 -103.17132206830175 -1068.5949204583076 29.7315 0.2393 335 +337 3 -103.39000589914951 -1067.4724266845492 29.6696 0.2391 336 +338 3 -103.50283585910955 -1066.3386276899585 29.5112 0.239 337 +339 3 -103.53468196246001 -1065.1966028234597 29.3524 0.2389 338 +340 3 -103.48681978759763 -1064.0553528016776 29.3154 0.2388 339 +341 3 -103.25767163801314 -1062.9382457989504 29.3726 0.2387 340 +342 3 -103.0183621117113 -1061.8202923783551 29.405 0.2386 341 +343 3 -103.23633166741982 -1060.7228311795948 29.4647 0.2385 342 +344 3 -103.7337466799377 -1059.6951339161355 29.5481 0.2384 343 +345 3 -104.06722421496849 -1058.604347798865 29.6086 0.2382 344 +346 3 -104.12334476988138 -1057.4665621541515 29.6414 0.2381 345 +347 3 -103.95844434067968 -1056.3365947305285 29.6618 0.238 346 +348 3 -103.94301711930191 -1055.195092137084 29.6635 0.2379 347 +349 3 -104.38042673480524 -1054.149292047074 29.6587 0.2378 348 +350 3 -104.95361333217954 -1053.1600703203662 29.7018 0.2377 349 +351 3 -104.9668671629621 -1052.0309150848166 29.8262 0.2376 350 +352 3 -104.87374346472956 -1050.8913065569318 29.9048 0.2375 351 +353 3 -105.50764052420456 -1049.9408105295918 29.878 0.2373 352 +354 3 -105.92371058270516 -1048.9033742489369 29.7811 0.2372 353 +355 3 -105.49967232099834 -1047.84113594582 29.7052 0.2371 354 +356 3 -105.18484308896598 -1046.7412045685705 29.6596 0.237 355 +357 3 -104.94954934040035 -1045.6230197842501 29.587 0.2369 356 +358 3 -104.83303284455727 -1044.4865220472543 29.5081 0.2368 357 +359 3 -104.9066647888616 -1043.348701166457 29.3633 0.2367 358 +360 3 -104.76087408718902 -1042.2183897751556 29.246 0.2366 359 +361 3 -104.36821012710266 -1041.144447917116 29.2337 0.2365 360 +362 3 -103.88985346546875 -1040.1159633016402 29.1889 0.2363 361 +363 3 -103.14579713898186 -1039.2489525790913 29.0629 0.2362 362 +364 3 -102.70355303560865 -1038.2883265160308 28.9663 0.2361 363 +365 3 -103.12652681652588 -1037.248443070323 28.8742 0.236 364 +366 3 -103.7610875018373 -1036.3144361181771 28.7851 0.2359 365 +367 3 -104.01909838948686 -1035.21752422479 28.7692 0.2358 366 +368 3 -104.04563910855833 -1034.0776377917487 28.8338 0.2357 367 +369 3 -104.4408511363973 -1033.0676422209408 28.9554 0.2356 368 +370 3 -105.35782260875325 -1032.414746541 29.1085 0.2354 369 +371 3 -106.31559456045906 -1031.8243743037415 29.2821 0.2353 370 +372 3 -106.89236805912995 -1030.892526300454 29.4655 0.2352 371 +373 3 -106.96091195473429 -1029.7717674172077 29.6355 0.2351 372 +374 3 -106.91069331829868 -1028.6343510736665 29.7609 0.235 373 +375 3 -107.19137721778989 -1027.5486759295436 29.8399 0.2349 374 +376 3 -107.65089002436093 -1026.501672118377 29.9118 0.2348 375 +377 3 -107.9128228846842 -1025.4004802564916 30.0104 0.2347 376 +378 3 -107.89226927693977 -1024.2652170670908 30.1143 0.2345 377 +379 3 -107.69519808501548 -1023.139655551529 30.1916 0.2344 378 +380 3 -107.5183558414634 -1022.0117382669308 30.2834 0.2343 379 +381 3 -107.4770003629898 -1020.8730791720301 30.4651 0.2342 380 +382 3 -107.24824854689652 -1019.7749967039823 30.7062 0.2341 381 +383 3 -106.71620497667155 -1018.7725546660656 30.9072 0.234 382 +384 3 -106.29586755793983 -1017.7218642528545 31.1206 0.2339 383 +385 3 -105.91179946347026 -1016.6492151029408 31.3656 0.2338 384 +386 3 -105.18862478462896 -1015.8005566770221 31.5787 0.2337 385 +387 3 -104.40186911282441 -1014.974558951309 31.7447 0.2335 386 +388 3 -104.19574035180662 -1013.905172256104 31.864 0.2334 387 +389 3 -104.61069429104717 -1012.8630589809229 31.9018 0.2333 388 +390 3 -104.92248519981368 -1011.7682157413627 31.8766 0.2332 389 +391 3 -105.46408326157174 -1010.7690852096002 31.8665 0.2331 390 +392 3 -106.22523742009773 -1009.9195826510646 31.8097 0.233 391 +393 3 -106.7663446507654 -1008.9214416064626 31.6686 0.2329 392 +394 3 -107.07394939609605 -1007.8267249990021 31.4121 0.2328 393 +395 3 -107.44997330456269 -1006.7539917515162 31.1251 0.2326 394 +396 3 -107.92489430315118 -1005.7191587093786 30.8622 0.2325 395 +397 3 -107.8488709401361 -1004.5954608237012 30.6194 0.2324 396 +398 3 -107.87327012416694 -1003.4569578022653 30.3797 0.2323 397 +399 3 -108.27935849639906 -1002.3987134477148 30.1154 0.2322 398 +400 3 -108.37446214043521 -1001.2673999558431 29.8752 0.2321 399 +401 3 -108.35894662462465 -1000.13253379247 29.54 0.232 400 +402 3 -108.58430212162736 -999.0276397025362 29.0772 0.2319 401 +403 3 -108.7199871929244 -997.9024896319114 28.698 0.2318 402 +404 3 -108.7707171707086 -996.7667900548428 28.4091 0.2316 403 +405 3 -108.6478698748059 -995.6384911574359 28.0958 0.2315 404 +406 3 -108.91479938781316 -994.5335625239551 27.7629 0.2314 405 +407 3 -109.06514073085839 -993.4107305772367 27.4562 0.2313 406 +408 3 -108.8551961138655 -992.2973282116044 27.1495 0.2312 407 +409 3 -108.98922737962911 -991.1792608613084 26.7578 0.2311 408 +410 3 -109.46508239798223 -990.1516926389951 26.4139 0.231 409 +411 3 -110.12681409174911 -989.2237053462673 26.1846 0.2309 410 +412 3 -110.86097693226856 -988.3482214722865 26.046 0.2308 411 +413 3 -111.55033143537796 -987.4385043849221 25.9794 0.2306 412 +414 3 -112.11954679584895 -986.4469590236783 25.9774 0.2305 413 +415 3 -112.60137151685399 -985.4096788164883 26.0494 0.2304 414 +416 3 -113.1269439234047 -984.3951808394215 26.1629 0.2303 415 +417 3 -113.70092388029806 -983.4199455554593 26.2581 0.2302 416 +418 3 -114.59617108125974 -982.7281075331085 26.3316 0.2301 417 +419 3 -115.56542073479272 -982.175778854579 26.3624 0.23 418 +420 3 -115.97755409993692 -981.1775929553924 26.4067 0.2299 419 +421 3 -116.0111775393373 -980.0393603278848 26.5374 0.2297 420 +422 3 -116.05629340124756 -978.904200846136 26.724 0.2296 421 +423 3 -115.758963939507 -977.832515849889 26.9464 0.2295 422 +424 3 -115.30899982975077 -976.7904948760447 27.1392 0.2294 423 +425 3 -114.68185581804016 -975.8839527652879 27.2458 0.2293 424 +426 3 -113.88859034826373 -975.0620529085776 27.346 0.2292 425 +427 3 -113.70614770323215 -974.0501868002046 27.7836 0.229 426 +428 3 -114.45266610541094 -973.2508479201241 28.6068 0.2289 427 +429 3 -90.91140025026607 -1142.7585297870455 31.3804 0.2574 266 +430 3 -91.83777187432088 -1142.1166942675031 31.7976 0.2534 429 +431 3 -92.73872148558928 -1141.4176797197608 32.006 0.2512 430 +432 3 -93.52499271942645 -1140.5930064287902 32.2613 0.2492 431 +433 3 -94.13684515681257 -1139.6302513379885 32.4783 0.2471 432 +434 3 -94.48988883071087 -1140.0084217946883 33.1128 0.2469 433 +435 3 -95.32264533274497 -1140.602227157008 34.3344 0.2465 434 +436 3 -95.06088854672959 -1140.4950924988675 35.5841 0.2461 435 +437 3 -95.97816766738094 -1140.1846681686084 36.7214 0.2457 436 +438 3 -96.96397777359573 -1140.5449419179777 37.5155 0.2455 437 +439 3 -97.81675029806826 -1141.2570454157253 38.1856 0.2452 438 +440 3 -98.70766087886892 -1141.9376571898063 38.7178 0.245 439 +441 3 -99.58382930253498 -1142.639961100781 39.1468 0.2447 440 +442 3 -100.49638306975152 -1143.2022925616998 39.5906 0.2445 441 +443 3 -101.59053906649126 -1143.451801388795 40.0898 0.2442 442 +444 3 -102.68794789943871 -1143.6698561373532 40.5871 0.244 443 +445 3 -103.72045530644175 -1144.030544735016 41.0911 0.2437 444 +446 3 -104.4647584098729 -1144.8425381957181 41.5694 0.2434 445 +447 3 -105.29387084438969 -1145.5602879438404 42.0599 0.2432 446 +448 3 -106.1321520668804 -1146.2850820746248 42.6488 0.2429 447 +449 3 -107.0872638266323 -1146.8371847882422 43.2424 0.2426 448 +450 3 -108.18180182694363 -1146.823878178056 43.8284 0.2424 449 +451 3 -109.18577773833323 -1147.2462612143509 44.4662 0.2421 450 +452 3 -110.27765364705954 -1147.2285011483837 45.1665 0.2419 451 +453 3 -111.30595396677785 -1147.6376643828849 45.8088 0.2416 452 +454 3 -112.240862804188 -1148.255289702745 46.3574 0.2414 453 +455 3 -113.27080220875717 -1148.692340629887 46.9294 0.2411 454 +456 3 -113.69458548975507 -1149.7047701487902 47.6896 0.2408 455 +457 3 -114.06696234093823 -1150.6937007533843 48.4134 0.2405 456 +458 3 -115.01409259668009 -1151.2543962310353 49.0353 0.2402 457 +459 3 -116.10210058539224 -1151.4854534458082 49.5692 0.24 458 +460 3 -117.18159559896515 -1151.3043189221216 50.0828 0.2397 459 +461 3 -118.21590236114451 -1150.8604121169137 50.5554 0.2395 460 +462 3 -119.30551869725826 -1150.6278649602464 51.0303 0.2392 461 +463 3 -120.42954754644143 -1150.6473581950725 51.5248 0.239 462 +464 3 -121.51885065232591 -1150.8871933749574 51.9714 0.2387 463 +465 3 -122.49895354782598 -1151.4358765660909 52.3681 0.2385 464 +466 3 -123.45118926608569 -1152.0386806444367 52.7713 0.2382 465 +467 3 -124.51649341651768 -1152.376567189112 53.1647 0.238 466 +468 3 -125.6007844564989 -1152.6791721801756 53.5044 0.2377 467 +469 3 -126.57312318356787 -1153.2513716994358 53.8101 0.2375 468 +470 3 -127.16615412673974 -1154.1435187223196 54.171 0.2372 469 +471 3 -127.89868008381313 -1154.6798233206719 54.7095 0.2369 470 +472 3 -129.0113756855344 -1154.6237999513507 55.3028 0.2366 471 +473 3 -130.00959591548354 -1154.175201430934 55.8774 0.2364 472 +474 3 -131.08747476865312 -1154.0360348476966 56.3545 0.2361 473 +475 3 -132.1863536978031 -1153.8145806784646 56.7308 0.2359 474 +476 3 -133.29954113690297 -1153.6070863281075 57.0704 0.2356 475 +477 3 -134.4117623150634 -1153.7617045380678 57.3516 0.2354 476 +478 3 -135.5235594348773 -1154.008675496631 57.612 0.2351 477 +479 3 -136.65103003845508 -1154.147078126909 57.9043 0.2349 478 +480 3 -137.75836509027528 -1154.3927149380966 58.2291 0.2346 479 +481 3 -138.8026551365806 -1154.8237968551234 58.6152 0.2344 480 +482 3 -139.81422442225386 -1155.3233886387657 59.0668 0.2341 481 +483 3 -140.87372624884648 -1155.7033697559896 59.5482 0.2339 482 +484 3 -141.95819318515686 -1156.0167645135234 60.0001 0.2336 483 +485 3 -143.01875566361377 -1156.4081966140072 60.4072 0.2334 484 +486 3 -144.03080957721107 -1156.9201765022572 60.7513 0.2331 485 +487 3 -145.00760727069064 -1157.500398964777 61.0784 0.2329 486 +488 3 -145.97495175412217 -1158.0937090863617 61.4281 0.2326 487 +489 3 -146.99254000667696 -1158.5901924881614 61.8097 0.2324 488 +490 3 -148.01818713111163 -1159.0756656863289 62.1732 0.2321 489 +491 3 -149.04883400981345 -1159.5507133170167 62.5237 0.2318 490 +492 3 -150.05224210102767 -1160.0788595207198 62.876 0.2316 491 +493 3 -151.1190056458616 -1160.4645954140633 63.2114 0.2313 492 +494 3 -152.23979225396323 -1160.4217620263853 63.5824 0.2311 493 +495 3 -153.3525686388893 -1160.2302135543187 64.0133 0.2308 494 +496 3 -154.46982450562678 -1160.0991698278735 64.5308 0.2306 495 +497 3 -155.56538242877406 -1160.2850983545422 65.1445 0.2303 496 +498 3 -156.668162015986 -1160.424522606481 65.802 0.2301 497 +499 3 -157.78751697222617 -1160.4384431646831 66.3762 0.2298 498 +500 3 -158.88180650874625 -1160.235531311253 66.988 0.2295 499 +501 3 -159.96676117456383 -1160.5546253775105 67.3996 0.2293 500 +502 3 -160.9440996559 -1161.1163993292912 67.8706 0.2291 501 +503 3 -94.84744881521902 -1138.994180798929 32.8031 0.2469 433 +504 3 -95.73050163016774 -1138.271957962118 33.0084 0.2466 503 +505 3 -96.65901789084631 -1137.6220502350866 33.1682 0.2464 504 +506 3 -97.62783046417485 -1137.0225005976413 33.308 0.2462 505 +507 3 -98.2919555721084 -1136.149627473406 33.4765 0.246 506 +508 3 -98.81093298783742 -1135.1391749995296 33.6694 0.2458 507 +509 3 -99.54027817358514 -1134.27152886773 33.8486 0.2457 508 +510 3 -100.45413575346907 -1133.601929186063 34.0208 0.2455 509 +511 3 -101.45938054321618 -1133.067617448698 34.2818 0.2453 510 +512 3 -102.3985780446198 -1132.4484556335337 34.6948 0.2451 511 +513 3 -103.22319166619121 -1131.6836210533015 35.1809 0.2449 512 +514 3 -104.0921347919666 -1131.0280837971768 35.9716 0.2446 513 +515 3 -105.01342387795097 -1130.4139953100303 36.6691 0.2444 514 +516 3 -106.07287684305504 -1130.0513958137094 37.2392 0.2442 515 +517 3 -107.15905314128406 -1129.741375718932 37.6832 0.244 516 +518 3 -108.03843724775811 -1129.0318051774912 38.1077 0.2438 517 +519 3 -108.80225590691566 -1128.2041299054654 38.551 0.2436 518 +520 3 -109.9013401737601 -1127.9235246767635 38.9138 0.2434 519 +521 3 -110.99532477280508 -1127.6882630626983 39.2498 0.2432 520 +522 3 -111.26679743878441 -1126.7418912321655 39.7085 0.243 521 +523 3 -110.40310782320552 -1126.049840093924 40.4026 0.2428 522 +524 3 -109.71339351362968 -1125.1948686902115 41.0334 0.2426 523 +525 3 -109.3677708220099 -1124.1404514079948 41.4666 0.2424 524 +526 3 -109.09090236490317 -1123.0463637938342 41.7718 0.2422 525 +527 3 -108.63295124050728 -1122.002250549179 41.9966 0.242 526 +528 3 -108.23088643618559 -1120.941311157354 42.2428 0.2418 527 +529 3 -108.33390070361668 -1119.8672119297657 42.6479 0.2416 528 +530 3 -109.21178848078034 -1119.2668247707538 43.1508 0.2414 529 +531 3 -110.11311591073769 -1118.6525565931584 43.9048 0.2411 530 +532 3 -110.28399424121335 -1117.553029842154 44.5536 0.2409 531 +533 3 -110.57933441245274 -1116.4696728219376 45.0825 0.2407 532 +534 3 -110.99202328613603 -1115.4180679990418 45.5342 0.2405 533 +535 3 -111.503016096272 -1114.4228970850832 46.0911 0.2404 534 +536 3 -112.21083342235545 -1113.579580179705 46.767 0.2401 535 +537 3 -113.15643460503225 -1113.004616134464 47.4779 0.2399 536 +538 3 -114.11041431774697 -1112.4160212332554 48.0362 0.2397 537 +539 3 -114.97669604447401 -1111.7319678947365 48.5988 0.2395 538 +540 3 -115.5194978273883 -1110.7549405540417 49.1148 0.2393 539 +541 3 -115.80718235594168 -1109.6641780537552 49.4203 0.2391 540 +542 3 -115.6195373417467 -1108.6128435357982 49.6048 0.239 541 +543 3 -115.03806349853357 -1107.6713402221244 49.7325 0.2388 542 +544 3 -114.8967348648547 -1106.5423629781985 49.8705 0.2386 543 +545 3 -114.82213394364811 -1105.407566594456 50.104 0.2384 544 +546 3 -114.78656537579445 -1104.2858459665895 50.4431 0.2382 545 +547 3 -115.1018696121073 -1103.220042467551 50.9698 0.2379 546 +548 3 -115.60719594055666 -1102.225496841762 51.5886 0.2377 547 +549 3 -116.11489826935485 -1101.2268947862199 52.15 0.2376 548 +550 3 -116.49283165660052 -1100.1728249760058 52.6579 0.2374 549 +551 3 -116.90355799315552 -1099.126704535301 53.132 0.2372 550 +552 3 -117.35735125969063 -1098.104473831767 53.7079 0.237 551 +553 3 -117.83644370103224 -1097.1044845705 54.3864 0.2367 552 +554 3 -118.0780233899302 -1096.018836144944 54.959 0.2365 553 +555 3 -118.28221591879606 -1094.9090330042227 55.4084 0.2364 554 +556 3 -118.75602320717093 -1093.886896798288 55.7696 0.2362 555 +557 3 -119.33561727993822 -1092.9111214190057 56.1162 0.236 556 +558 3 -119.92795745313788 -1091.9430633529716 56.4802 0.2358 557 +559 3 -120.52220469607016 -1090.9762948934804 56.8198 0.2356 558 +560 3 -121.11708032875526 -1090.0085041197913 57.1687 0.2354 559 +561 3 -121.94471403773616 -1089.256324936512 57.633 0.2352 560 +562 3 -123.00999155859029 -1088.945549127346 58.168 0.235 561 +563 3 -123.89828508036908 -1088.2736172936266 58.6572 0.2348 562 +564 3 -124.96271997747462 -1087.9422514386806 59.1394 0.2346 563 +565 3 -125.93938090579564 -1087.4697193327966 59.9085 0.2344 564 +566 3 -126.45999120320937 -1086.5005321433296 60.6066 0.2342 565 +567 3 -127.36515300394407 -1085.864557800694 61.278 0.234 566 +568 3 -128.41608298464504 -1085.5530622057593 62.0763 0.2338 567 +569 3 -129.32173933357856 -1085.0757384711342 63.0882 0.2336 568 +570 3 -129.9704031911454 -1084.2148423973329 64.0105 0.2333 569 +571 3 -130.71166926739454 -1083.3934941312473 64.7116 0.2332 570 +572 3 -131.40630823093412 -1082.5299866151636 65.2848 0.233 571 +573 3 -131.64176283625196 -1081.4957422103757 65.7586 0.2328 572 +574 3 -131.24187170147135 -1080.4576195922214 66.2402 0.2326 573 +575 3 -130.69662574327066 -1079.490023744222 66.8976 0.2323 574 +576 3 -130.23208134456303 -1078.4913924600987 67.6441 0.2321 575 +577 3 -129.7380275821811 -1077.525683166431 68.523 0.2319 576 +578 3 -129.23474956442968 -1076.5597034788352 69.3767 0.2317 577 +579 3 -129.22153986088938 -1075.462525287413 70.0322 0.2315 578 +580 3 -129.39691067734933 -1074.3470964117178 70.4757 0.2313 579 +581 3 -129.2810609089258 -1073.2203989540317 70.7577 0.2311 580 +582 3 -129.03427163626725 -1072.1058298198368 70.943 0.2309 581 +583 3 -128.9624406398542 -1070.9686277102915 71.1158 0.2307 582 +584 3 -128.76238459660397 -1069.847922187168 71.3686 0.2306 583 +585 3 -128.27244721802734 -1068.8230008560047 71.654 0.2304 584 +586 3 -127.63724571951002 -1067.879343695654 71.9132 0.2302 585 +587 3 -126.91502288269913 -1066.9962908807051 72.142 0.23 586 +588 3 -126.08067284293531 -1066.2215613336075 72.3834 0.2298 587 +589 3 -125.33349100487683 -1065.3661282264184 72.7124 0.2296 588 +590 3 -124.85184386190514 -1064.334212469359 72.9686 0.2294 589 +591 3 -124.16018242842003 -1063.4256924082545 73.1598 0.2292 590 +592 3 -123.53661711424127 -1062.4716979748573 73.3986 0.229 591 +593 3 -84.42425547080092 -1154.1840824432743 20.2958 0.5042 1 +594 3 -83.8868193399694 -1154.9709644454047 18.9909 0.2482 593 +595 3 -83.8307419231312 -1155.9383397672527 17.7524 0.2403 594 +596 3 -84.55897400221255 -1155.668885988291 15.7058 0.2345 595 +597 3 -81.26195302916415 -1150.3039852489221 29.8015 0.6022 1 +598 3 -80.2013754392616 -1150.2643339463389 30.844 0.5362 597 +599 3 -79.15259930523746 -1150.5221018859697 31.7638 0.5208 598 +600 3 -78.23105764759066 -1151.1037554196314 32.5987 0.5056 599 +601 3 -77.44965161624492 -1151.8857581141133 33.3046 0.4905 600 +602 3 -76.7380030209672 -1152.744092388647 33.9251 0.4753 601 +603 3 -75.93031073670113 -1153.5207366405002 34.4882 0.46 602 +604 3 -74.93448081933542 -1154.0311381252936 35.03 0.4445 603 +605 3 -73.84224211437657 -1154.2219291664615 35.6821 0.4279 604 +606 3 -72.7278116221434 -1154.127812600539 36.2614 0.4124 605 +607 3 -71.61264353956068 -1154.305683361455 36.7002 0.3972 606 +608 3 -70.50603877964636 -1154.5614764523211 37.037 0.382 607 +609 3 -69.36627587712161 -1154.5458106925696 37.2982 0.3668 608 +610 3 -68.22615979686543 -1154.556690653104 37.508 0.3657 609 +611 3 -66.80404947668319 -1154.065217920156 37.4548 0.3433 610 +612 3 -65.72712696417841 -1153.6960094396732 37.6869 0.3379 611 +613 3 -64.62109002443935 -1153.8460393631312 38.0038 0.333 612 +614 3 -63.91812558921134 -1154.6990299157192 38.4412 0.328 613 +615 3 -63.57381754099714 -1155.7617955050825 39.0029 0.323 614 +616 3 -62.874321892482556 -1156.646380796453 39.4685 0.3183 615 +617 3 -62.018709787381056 -1157.3894616639254 39.858 0.3136 616 +618 3 -61.153961721342796 -1158.1256357073985 40.1876 0.3089 617 +619 3 -60.42778707972991 -1157.6336140718186 38.269 0.2368 618 +620 3 -59.42358562899659 -1157.0914814253706 38.078 0.2368 619 +621 3 -58.48213796069706 -1156.4470649933537 37.9873 0.2368 620 +622 3 -57.64453577726215 -1155.6797268981795 37.9562 0.2368 621 +623 3 -56.60189712744369 -1155.2241884300952 37.8686 0.2368 622 +624 3 -55.483974231513116 -1155.052684118913 37.518 0.2368 623 +625 3 -54.405842504907355 -1154.866667990348 36.7732 0.2368 624 +626 3 -53.38347044859131 -1154.4436589733473 36.0954 0.2368 625 +627 3 -52.3390390495037 -1154.043361305855 35.551 0.2368 626 +628 3 -51.245634973033134 -1153.803705123882 35.0098 0.2368 627 +629 3 -50.23483943679912 -1154.1438612555762 34.4327 0.2368 628 +630 3 -49.2276851682729 -1154.65950955567 34.0421 0.2368 629 +631 3 -48.20601838982731 -1155.1594293130515 33.7448 0.2368 630 +632 3 -47.154285431106246 -1155.603423720156 33.5566 0.2368 631 +633 3 -46.05662222099704 -1155.921055704019 33.509 0.2368 632 +634 3 -44.96197909829738 -1156.2513430848348 33.4939 0.2368 633 +635 3 -43.89970796814339 -1156.6752437878793 33.4216 0.2368 634 +636 3 -42.7768992476461 -1156.8875058362419 33.3416 0.2368 635 +637 3 -41.674471441114406 -1157.1888277428234 33.262 0.2368 636 +638 3 -40.74025277012913 -1157.8459119952465 33.1635 0.2368 637 +639 3 -39.636777226916706 -1158.668934191504 33.3124 0.2367 638 +640 3 -38.565579960176876 -1158.971962961968 33.4331 0.2366 639 +641 3 -37.43708704240146 -1158.8329319419372 33.6053 0.2366 640 +642 3 -36.29731182824065 -1158.8696104258847 33.8246 0.2365 641 +643 3 -35.19809001471174 -1158.731081856044 34.0749 0.2365 642 +644 3 -34.168109863429436 -1158.2658345046657 34.3644 0.2364 643 +645 3 -33.06272393611698 -1158.191949988699 34.676 0.2364 644 +646 3 -31.97072169706479 -1158.4982716495474 34.9888 0.2363 645 +647 3 -30.977686014013216 -1159.0279977884024 35.2344 0.2363 646 +648 3 -30.038614452172567 -1159.6754083936153 35.362 0.2362 647 +649 3 -29.020191299881674 -1160.189529520275 35.3856 0.2362 648 +650 3 -27.992103017897023 -1160.686910716588 35.322 0.2361 649 +651 3 -26.930835071612933 -1161.0108327537976 35.0759 0.236 650 +652 3 -25.821134241492246 -1161.208262634083 34.6472 0.236 651 +653 3 -24.792308759920957 -1161.6608207723039 34.2658 0.2359 652 +654 3 -23.904003619042612 -1162.3610342231093 33.9766 0.2359 653 +655 3 -23.037921405628822 -1163.1016703345758 33.7711 0.2358 654 +656 3 -22.0428348910159 -1163.6435172856936 33.6417 0.2358 655 +657 3 -20.981533709246776 -1164.0681315713405 33.5796 0.2357 656 +658 3 -19.89521846728212 -1164.4263097463809 33.5563 0.2357 657 +659 3 -18.95740747906683 -1165.0409243007011 33.5443 0.2356 658 +660 3 -18.12263488982461 -1165.8222862937941 33.5068 0.2356 659 +661 3 -17.146158754134035 -1166.3863715855955 33.4527 0.2355 660 +662 3 -16.095326988140584 -1166.8374932538618 33.4222 0.2355 661 +663 3 -14.986812749447154 -1167.0746229074562 33.4331 0.2354 662 +664 3 -13.850178460077188 -1167.0406907364606 33.5409 0.2353 663 +665 3 -12.821189393812915 -1167.4301148645122 33.745 0.2353 664 +666 3 -11.740535122905271 -1167.776982716538 33.9293 0.2352 665 +667 3 -10.607777259087868 -1167.891807069181 34.0654 0.2352 666 +668 3 -9.511227759192138 -1168.1967422168414 34.1362 0.2351 667 +669 3 -8.380073744142067 -1168.3219428727339 34.1541 0.2351 668 +670 3 -7.243595528236995 -1168.2222560392338 34.2297 0.235 669 +671 3 -6.210580781646797 -1168.6816296054385 34.3496 0.235 670 +672 3 -5.258903779619345 -1169.3146012744821 34.41 0.2349 671 +673 3 -4.446128957282781 -1170.1189925587312 34.4238 0.2349 672 +674 3 -3.507145689875017 -1170.7597667338728 34.4448 0.2348 673 +675 3 -2.372427697975752 -1170.8974492994357 34.4722 0.2347 674 +676 3 -1.2926581826031338 -1171.2449783682514 34.5472 0.2347 675 +677 3 -0.42800082004424667 -1171.9918898123817 34.655 0.2346 676 +678 3 0.38859055080399685 -1172.7763280528163 34.7679 0.2346 677 +679 3 1.4537951904444526 -1173.139500471494 34.8835 0.2345 678 +680 3 2.558418584676417 -1173.1976684774393 34.9952 0.2345 679 +681 3 3.4160808288026487 -1173.9288075305612 35.1235 0.2344 680 +682 3 4.222054630086404 -1174.6459396255373 35.2904 0.2344 681 +683 3 5.300258634358386 -1174.9930224040954 35.532 0.2343 682 +684 3 6.198387671530497 -1175.6481095758431 35.7798 0.2343 683 +685 3 7.087890016647293 -1176.18642337655 36.0234 0.2342 684 +686 3 8.110266269824137 -1176.5301427925572 36.2746 0.2342 685 +687 3 8.872392785781472 -1177.361557937761 36.5019 0.2341 686 +688 3 9.66782049595622 -1178.1268426023703 36.7178 0.234 687 +689 3 10.689181644389976 -1178.635049493774 36.9074 0.234 688 +690 3 11.579304868031443 -1179.3032742813523 37.0583 0.2339 689 +691 3 12.26482569290016 -1180.2153478302898 37.1907 0.2339 690 +692 3 13.030424789690642 -1181.0459196592087 37.3411 0.2338 691 +693 3 13.982853711987389 -1181.6690386831299 37.48 0.2338 692 +694 3 14.876320475315936 -1182.3579801485876 37.6149 0.2337 693 +695 3 15.622854290714088 -1183.2163520682514 37.8683 0.2337 694 +696 3 16.283433936600716 -1184.1424651182838 38.1646 0.2336 695 +697 3 16.99990638981643 -1185.0220147267669 38.4611 0.2336 696 +698 3 17.76136617835425 -1185.8632301512807 38.8161 0.2335 697 +699 3 18.54242583297497 -1186.6817164040203 39.2241 0.2334 698 +700 3 19.581319187974657 -1186.8447289708286 39.6396 0.2334 699 +701 3 20.657783501326833 -1187.1607187682575 39.998 0.2333 700 +702 3 21.40841828731095 -1188.0192696858335 40.222 0.2333 701 +703 3 22.10307507311626 -1188.9244364107712 40.4135 0.2332 702 +704 3 22.748728745863275 -1189.8677059559536 40.5017 0.2332 703 +705 3 23.522309346663803 -1190.7068705489062 40.5104 0.2331 704 +706 3 24.567979490206994 -1191.16926420252 40.493 0.2331 705 +707 3 25.638399503183564 -1191.569375081926 40.4874 0.233 706 +708 3 26.638391967001155 -1192.1256962052967 40.5065 0.233 707 +709 3 27.66901260688803 -1192.6161213133803 40.5028 0.2329 708 +710 3 28.57731774146015 -1193.30533248023 40.458 0.2329 709 +711 3 29.620273427605696 -1193.7720943967747 40.3105 0.2328 710 +712 3 30.56641229655594 -1194.3588181568712 40.1209 0.2327 711 +713 3 31.080533719846585 -1195.3722554820736 39.8275 0.2327 712 +714 3 31.78429151459369 -1196.2112595919161 39.5153 0.2326 713 +715 3 32.86864973005959 -1196.5532683499205 39.2165 0.2326 714 +716 3 33.883627020084475 -1197.0291285822723 39.0085 0.2325 715 +717 3 34.63733736087386 -1197.8817980916292 38.8822 0.2325 716 +718 3 35.28090186439283 -1198.823769418056 38.8203 0.2324 717 +719 3 36.13997423869142 -1199.5136627255442 38.8111 0.2324 718 +720 3 37.224315324428176 -1199.8380749013072 38.8354 0.2323 719 +721 3 38.17073930798932 -1200.4689933297432 38.9018 0.2323 720 +722 3 38.97330348937885 -1201.280834634895 39.0046 0.2322 721 +723 3 39.756592973473175 -1202.1073407293115 39.0793 0.2322 722 +724 3 40.68622294436523 -1202.7699452925458 39.1269 0.2321 723 +725 3 41.50129195987256 -1203.508366987758 39.144 0.232 724 +726 3 42.09661698439817 -1204.4812810462304 39.1308 0.232 725 +727 3 42.91284966688522 -1205.2498586012243 39.0886 0.2319 726 +728 3 43.86163011201961 -1205.8846107079007 39.0205 0.2319 727 +729 3 44.654179087567 -1206.6933350189977 38.9127 0.2318 728 +730 3 45.379960989002086 -1207.5725618677398 38.7562 0.2318 729 +731 3 46.176881329063804 -1208.3906894321185 38.5792 0.2317 730 +732 3 47.05454356688381 -1209.1108262012845 38.3849 0.2317 731 +733 3 48.04223622052638 -1209.6732991268022 38.1262 0.2316 732 +734 3 48.74455995436546 -1210.4729231214937 37.8053 0.2316 733 +735 3 49.23899011555727 -1211.4957643925147 37.5105 0.2315 734 +736 3 50.00476821026007 -1212.3222352508474 37.3425 0.2314 735 +737 3 51.05745570414672 -1212.7064830357658 37.2291 0.2314 736 +738 3 52.17476493100719 -1212.5689268233564 37.0339 0.2313 737 +739 3 53.22818852920278 -1212.148311913059 36.7494 0.2313 738 +740 3 54.3399127678029 -1211.953737564007 36.377 0.2312 739 +741 3 55.443262282463024 -1212.1954504070654 35.994 0.2312 740 +742 3 56.56630816140364 -1212.3162444623604 35.5622 0.2311 741 +743 3 57.693675448092336 -1212.428982747358 35.1627 0.2311 742 +744 3 58.83019610953545 -1212.475643610111 34.8768 0.231 743 +745 3 59.941543837508675 -1212.223549366764 34.6433 0.231 744 +746 3 61.07298396148002 -1212.124259559292 34.3969 0.2309 745 +747 3 62.15854659063882 -1212.4682277528416 34.2073 0.2309 746 +748 3 63.144550202664334 -1213.041129347422 34.111 0.2308 747 +749 3 64.24305913810525 -1213.344860081389 34.1309 0.2307 748 +750 3 65.38611011292124 -1213.3431370107833 34.2107 0.2307 749 +751 3 66.4798342383126 -1213.422911866076 34.3291 0.2306 750 +752 3 67.13122796649634 -1214.3384727165294 34.5162 0.2306 751 +753 3 67.66569465922117 -1215.1795317658048 34.6707 0.2305 752 +754 3 68.7813676010403 -1215.369299800238 34.813 0.2305 753 +755 3 69.76972939114881 -1215.9045986157173 34.9434 0.2304 754 +756 3 70.65393425397775 -1216.6286956952238 35.0311 0.2304 755 +757 3 71.65985397490908 -1217.0483811072186 35.0378 0.2303 756 +758 3 72.7488490417353 -1216.8342068920842 34.9765 0.2302 757 +759 3 73.80656461829159 -1216.7547620111295 34.9474 0.2302 758 +760 3 74.71738669754683 -1217.3779840501666 34.9037 0.2301 759 +761 3 75.39537851182911 -1218.2932769157378 34.823 0.2301 760 +762 3 76.12133941117645 -1219.168402793894 34.7427 0.23 761 +763 3 77.12979389905661 -1219.5637582869308 34.6662 0.23 762 +764 3 78.26714046296729 -1219.6730623287622 34.5836 0.2299 763 +765 3 79.40714291529667 -1219.7645353230446 34.4862 0.2299 764 +766 3 80.54413520049121 -1219.7224012108773 34.3543 0.2298 765 +767 3 81.63218843455087 -1219.9371282465581 34.1214 0.2298 766 +768 3 82.56969689433743 -1220.566718730785 33.8618 0.2297 767 +769 3 83.63253104425871 -1220.9151496848647 33.6297 0.2297 768 +770 3 84.765377202509 -1221.036610467579 33.4158 0.2296 769 +771 3 85.8667296364938 -1221.3144129444504 33.1884 0.2295 770 +772 3 86.96346123588478 -1221.6219359174088 32.9386 0.2295 771 +773 3 88.09136069821722 -1221.7571189521063 32.6763 0.2294 772 +774 3 89.18115084107228 -1221.4875218368848 32.3607 0.2294 773 +775 3 90.14617479155083 -1220.8969292742809 32.02 0.2293 774 +776 3 91.10184406044061 -1220.280041846544 31.7234 0.2293 775 +777 3 92.18430160443933 -1219.9503924791247 31.4493 0.2292 776 +778 3 93.31729251882854 -1219.81657854894 31.2749 0.2292 777 +779 3 94.34775729803499 -1219.338943092954 31.1564 0.2291 778 +780 3 95.21214818458026 -1218.5955176593984 31.0321 0.2291 779 +781 3 95.99034632843478 -1217.7599900483037 30.8932 0.229 780 +782 3 96.72116813244543 -1216.882333321113 30.7597 0.229 781 +783 3 97.5510201755954 -1216.1023866841695 30.508 0.2289 782 +784 3 98.1543948790686 -1215.1352138882285 30.2893 0.2289 783 +785 3 -40.739326261592566 -1157.9675358480958 31.6593 0.2368 638 +786 3 -41.234485619412624 -1158.2061641162522 29.2944 0.2364 785 +787 3 -40.25212957922861 -1157.9124555186356 28.3746 0.2362 786 +788 3 -39.22293859060454 -1158.2279230430104 27.6228 0.236 787 +789 3 -38.43067162808495 -1158.9991414816518 26.9253 0.2358 788 +790 3 -37.684242212875745 -1159.7677813050477 26.2497 0.2356 789 +791 3 -36.64294513267174 -1160.046227584891 25.4225 0.2353 790 +792 3 -36.55735776629689 -1160.67700995839 24.3898 0.2351 791 +793 3 -37.141470776647566 -1161.5531110947545 23.5294 0.2349 792 +794 3 -37.00552252087675 -1162.5236263351053 22.6863 0.2347 793 +795 3 -36.14435726024169 -1163.055177766178 21.6309 0.2344 794 +796 3 -35.78415609031248 -1163.800636723587 20.2709 0.2342 795 +797 3 -34.726573964547185 -1163.8783293053548 19.2666 0.234 796 +798 3 -33.76299598387169 -1163.9319893944116 18.0869 0.2337 797 +799 3 -32.9206953903315 -1164.5596505769945 16.9849 0.2335 798 +800 3 -32.24502039189366 -1165.3180209063762 15.9736 0.2333 799 +801 3 -31.958467395819582 -1166.3544273616053 15.0419 0.2331 800 +802 3 -31.795844064865264 -1167.4294482973219 14.1767 0.2329 801 +803 3 -31.490304871778505 -1168.47707367955 13.4571 0.2327 802 +804 3 -30.912723292905923 -1169.4299056530622 12.8955 0.2325 803 +805 3 -30.22635674270549 -1170.3280779521037 12.4755 0.2323 804 +806 3 -29.73291676121073 -1171.327347427602 12.1648 0.2321 805 +807 3 -29.35101454610816 -1172.396467434009 11.9226 0.2319 806 +808 3 -28.50633525908387 -1172.9340440351295 11.6178 0.2317 807 +809 3 -27.373733468731302 -1172.9831137252681 11.2795 0.2315 808 +810 3 -26.88667904447044 -1173.7754924212259 10.8637 0.2312 809 +811 3 -26.20766560852718 -1174.6660942704314 10.4725 0.231 810 +812 3 -25.551815322979337 -1175.5910060083538 10.102 0.2308 811 +813 3 -24.65946467891081 -1176.2846244683378 9.7274 0.2306 812 +814 3 -23.57587930756307 -1176.5881378667261 9.2956 0.2304 813 +815 3 -22.50577964528088 -1176.9615654671838 8.9075 0.2302 814 +816 3 -21.478091490907104 -1177.447219775679 8.6032 0.23 815 +817 3 -20.516399975574245 -1178.0592458121648 8.3656 0.2298 816 +818 3 -19.58040396853886 -1178.7125378255969 8.1845 0.2296 817 +819 3 -18.508688838389958 -1179.1038707398907 8.0487 0.2294 818 +820 3 -17.44480293290576 -1179.521614130158 7.9156 0.2292 819 +821 3 -16.33406917577628 -1179.5962157439012 7.2918 0.229 820 +822 3 -60.58624077857303 -1158.2802359051361 40.404 0.3089 618 +823 3 -59.488821936361546 -1158.5254767964234 40.9116 0.2749 822 +824 3 -58.36459426640181 -1158.4253381620365 41.3686 0.2574 823 +825 3 -57.60197371166106 -1157.9685481233023 41.9401 0.2574 824 +826 3 -57.027973523455444 -1158.9680687853897 42.5382 0.2574 825 +827 3 -56.707192824627384 -1160.0599686128737 42.7106 0.2574 826 +828 3 -56.389211776046864 -1161.1562890691016 42.8663 0.2574 827 +829 3 -55.88947933215911 -1162.1745799776959 43.1861 0.2574 828 +830 3 -55.93480363848971 -1163.2981888764039 43.596 0.2574 829 +831 3 -55.59085909672973 -1164.3798414417843 43.9446 0.2574 830 +832 3 -55.53755440449447 -1165.0453744836277 44.5105 0.2574 831 +833 3 -55.570778822411114 -1166.118584546036 45.4588 0.2572 832 +834 3 -56.075041509230175 -1167.0503074032645 46.1339 0.2569 833 +835 3 -57.05578820770228 -1167.538935240617 46.7606 0.2567 834 +836 3 -57.391576076465356 -1168.5524452342488 47.5154 0.2565 835 +837 3 -57.687839375712144 -1169.6019942123912 48.3123 0.2563 836 +838 3 -58.39648751648792 -1170.445831881955 49.0507 0.2561 837 +839 3 -59.22506226473138 -1171.1753413449323 49.7893 0.2559 838 +840 3 -59.95965338328568 -1171.9813651029822 50.5627 0.2557 839 +841 3 -60.335396698603404 -1173.0194346627875 51.2604 0.2555 840 +842 3 -60.48400177120618 -1174.1191962698626 51.9372 0.2553 841 +843 3 -60.64811194247193 -1175.2284884548558 52.4905 0.2552 842 +844 3 -60.754828851541845 -1176.341590292658 52.9516 0.255 843 +845 3 -60.43618417712497 -1177.421421673692 53.4321 0.2548 844 +846 3 -60.05575366806045 -1178.4860467850685 53.8437 0.2546 845 +847 3 -59.95773674585001 -1179.5323466144482 54.2055 0.2544 846 +848 3 -60.88476089119956 -1180.1303354470688 54.6314 0.2542 847 +849 3 -61.906693174176155 -1180.4119824939382 55.0413 0.2541 848 +850 3 -62.41151647171597 -1181.4018012694023 55.4764 0.2539 849 +851 3 -62.53918142239036 -1182.5222624246278 55.9443 0.2537 850 +852 3 -62.65346567971335 -1183.6494061725712 56.3427 0.2535 851 +853 3 -62.896077306452526 -1184.7425091176642 56.6829 0.2533 852 +854 3 -63.47316816605178 -1185.721697301706 56.9545 0.2531 853 +855 3 -64.0685784952442 -1186.6798662794395 57.1586 0.2529 854 +856 3 -64.33435396491535 -1187.7832164866363 57.29 0.2528 855 +857 3 -64.33454889060482 -1188.9233380775222 57.3658 0.2526 856 +858 3 -64.25428051622913 -1190.0610706638863 57.4143 0.2524 857 +859 3 -64.43696583033358 -1191.175089800172 57.454 0.2522 858 +860 3 -64.83635451492427 -1192.242483522573 57.4848 0.252 859 +861 3 -65.02326433013121 -1193.3671986202662 57.4893 0.2518 860 +862 3 -65.09362362050615 -1194.5088956248424 57.4683 0.2516 861 +863 3 -65.25153513444144 -1195.641257847705 57.4154 0.2515 862 +864 3 -65.46696103204243 -1196.76331154635 57.3185 0.2513 863 +865 3 -65.68175853989067 -1197.8863875591924 57.1802 0.2511 864 +866 3 -65.9298045920549 -1198.9989120649925 57.0074 0.2509 865 +867 3 -66.3193929973358 -1200.066972514813 56.7904 0.2507 866 +868 3 -66.7991745098247 -1201.1017324629524 56.5748 0.2505 867 +869 3 -67.17067240019105 -1202.1774540660886 56.4292 0.2503 868 +870 3 -67.33027054669685 -1203.302871127285 56.3508 0.2502 869 +871 3 -67.21574844353671 -1204.4329302486976 56.3184 0.25 870 +872 3 -66.86560283539978 -1205.5202790212184 56.3259 0.2498 871 +873 3 -66.26748977972619 -1206.460490833861 56.3623 0.2496 872 +874 3 -65.31287857567554 -1207.0567968451514 56.3926 0.2494 873 +875 3 -64.24490572775147 -1207.463811446974 56.3982 0.2492 874 +876 3 -63.240289327757125 -1207.9971008701418 56.3774 0.2491 875 +877 3 -62.4087719837691 -1208.7643826154263 56.3192 0.2489 876 +878 3 -61.93978545174912 -1209.7719922832957 56.222 0.2487 877 +879 3 -61.921047238775316 -1210.899184981717 56.1084 0.2485 878 +880 3 -62.14899097466679 -1212.0182514199896 55.998 0.2483 879 +881 3 -62.4025542360593 -1213.1328760215806 55.8922 0.2481 880 +882 3 -62.567945496351285 -1214.261853958043 55.7729 0.2479 881 +883 3 -62.546401429963794 -1215.398003619489 55.6438 0.2477 882 +884 3 -62.464567544487466 -1216.5361824961105 55.5285 0.2476 883 +885 3 -62.57957399662581 -1217.6663525346298 55.4347 0.2474 884 +886 3 -62.84097810178264 -1218.7791059951082 55.349 0.2472 885 +887 3 -63.00980050365814 -1219.9047934502332 55.2574 0.247 886 +888 3 -62.94659722841624 -1221.0409252894133 55.1737 0.2468 887 +889 3 -62.91827917329488 -1222.1770194834633 55.1065 0.2466 888 +890 3 -63.05769763565803 -1223.3113959167304 55.0292 0.2465 889 +891 3 -63.28247752231135 -1224.4312173768553 54.9248 0.2463 890 +892 3 -63.74368389196144 -1225.4612503737026 54.8338 0.2461 891 +893 3 -64.32704698264138 -1226.4457025027737 54.7865 0.2459 892 +894 3 -64.43703316511164 -1227.5338163064107 54.7753 0.2457 893 +895 3 -63.857095817202435 -1228.4664193315507 54.7694 0.2455 894 +896 3 -63.07037519152476 -1229.2962159073047 54.7114 0.2453 895 +897 3 -62.92397054183601 -1230.3797974725549 54.5992 0.2451 896 +898 3 -62.96773174611246 -1231.5212264922488 54.4891 0.2449 897 +899 3 -62.713804699319724 -1232.635555969965 54.3931 0.2447 898 +900 3 -62.857453865951584 -1233.7672507728719 54.3054 0.2445 899 +901 3 -62.93476924455592 -1234.9064154195455 54.2206 0.2443 900 +902 3 -62.67224633214647 -1236.0194521891358 54.1058 0.2442 901 +903 3 -62.33234729357673 -1237.1076997453379 53.996 0.244 902 +904 3 -62.32341176895909 -1238.2515995470685 53.9092 0.2438 903 +905 3 -62.26862225983871 -1239.3916119196724 53.8084 0.2436 904 +906 3 -61.992647489374065 -1240.5003711298114 53.7306 0.2434 905 +907 3 -61.845423140384014 -1241.6332182823717 53.7076 0.2432 906 +908 3 -61.5331414005272 -1242.7290510090922 53.7471 0.243 907 +909 3 -61.51208506364691 -1243.8708999792618 53.8975 0.2428 908 +910 3 -61.454763196624185 -1245.0039562636366 54.145 0.2427 909 +911 3 -61.123460023671214 -1246.0934965279644 54.3936 0.2425 910 +912 3 -60.73037411765364 -1247.16114172675 54.63 0.2423 911 +913 3 -60.20948963219206 -1248.170304594084 54.8738 0.2421 912 +914 3 -59.88834783595638 -1249.2606912762799 55.1821 0.2419 913 +915 3 -59.625913217979814 -1250.3670916157987 55.4828 0.2417 914 +916 3 -59.285796843831065 -1251.4404156079072 55.8373 0.2416 915 +917 3 -58.55126711118578 -1252.2269341212686 56.425 0.2414 916 +918 3 -57.741355308483605 -1252.8410503332707 57.0545 0.2412 917 +919 3 -57.35571081115626 -1253.894488652149 57.6064 0.241 918 +920 3 -56.90579807804505 -1254.9083055895617 58.2232 0.2408 919 +921 3 -56.25205168240791 -1255.7969486957584 58.9207 0.2406 920 +922 3 -55.50677293000547 -1256.611839529685 59.6434 0.2404 921 +923 3 -54.88184514519111 -1257.5127971667396 60.368 0.2402 922 +924 3 -54.67236023621905 -1258.5483318706065 61.1792 0.24 923 +925 3 -54.829834669949946 -1259.6334731345537 61.9562 0.2398 924 +926 3 -54.979376863900484 -1260.7338107655692 62.61 0.2396 925 +927 3 -54.858310419221425 -1261.8263937399802 63.2047 0.2395 926 +928 3 -54.330575962229034 -1262.7897933262907 63.7879 0.2393 927 +929 3 -53.70640250673051 -1263.7179774391966 64.3471 0.2391 928 +930 3 -53.18983701997041 -1264.7178222460984 64.8276 0.2389 929 +931 3 -52.54516801629086 -1265.6268349609131 65.3092 0.2387 930 +932 3 -51.683386695224215 -1266.3230450403148 65.9296 0.2385 931 +933 3 -50.79389186133557 -1266.9902475136955 66.5862 0.2383 932 +934 3 -49.90608606906403 -1267.6678786561388 67.1933 0.2381 933 +935 3 -49.07221295603938 -1268.4149314530514 67.7513 0.238 934 +936 3 -48.431065797422775 -1269.3313910871857 68.2514 0.2378 935 +937 3 -47.75588603972034 -1270.2243493979645 68.8064 0.2376 936 +938 3 -46.78398729877523 -1270.6958177504011 69.55 0.2374 937 +939 3 -45.79995853551429 -1271.210890719091 70.2117 0.2372 938 +940 3 -44.98399314537238 -1271.9769328145992 70.7868 0.237 939 +941 3 -43.98561684195829 -1272.4912859975207 71.3205 0.2368 940 +942 3 -44.530627340540605 -1273.1928697319636 72.1179 0.2366 941 +943 3 -44.898347712598536 -1274.2353982581794 72.5838 0.2363 942 +944 3 -44.343098972008875 -1275.1496058309294 73.0075 0.2361 943 +945 3 -43.59188885462129 -1275.98503124324 73.5272 0.236 944 +946 3 -43.081651066337656 -1276.9833660064369 74.0328 0.2358 945 +947 3 -42.61163911853697 -1277.9970360804377 74.6278 0.2356 946 +948 3 -42.05329940992266 -1278.9643952845518 75.2321 0.2354 947 +949 3 -41.615978088852216 -1280.0035589444906 75.7014 0.2352 948 +950 3 -41.320185424189276 -1281.0987280453746 76.0402 0.2351 949 +951 3 -40.89444412752499 -1282.158391047614 76.2308 0.2349 950 +952 3 -40.48701068135432 -1283.225316460631 76.3661 0.2347 951 +953 3 -40.06928922636678 -1284.287209292344 76.5237 0.2345 952 +954 3 -39.51512406208872 -1285.2827234814445 76.7617 0.2344 953 +955 3 -39.123509862109245 -1286.3458737851995 77.1134 0.2342 954 +956 3 -38.999188172175934 -1287.4525370074184 77.5356 0.234 955 +957 3 -39.491766434400006 -1288.4534926186143 78.1211 0.2338 956 +958 3 -39.681678923198774 -1289.5316925150146 78.6895 0.2337 957 +959 3 -39.215495143009264 -1290.537034015744 79.347 0.2335 958 +960 3 -38.82426976529291 -1291.4903201815046 80.4619 0.2333 959 +961 3 -38.67088300134435 -1292.5132672674508 81.6346 0.233 960 +962 3 -38.3446097165604 -1293.4983785117456 82.7492 0.2329 961 +963 3 -38.19775636756765 -1294.563020735166 83.5817 0.2327 962 +964 3 -38.09558162230218 -1295.6643988044184 84.2856 0.2325 963 +965 3 -37.75706978945726 -1296.7240364731636 84.8243 0.2323 964 +966 3 -37.277742190270885 -1297.7507613791918 85.1987 0.2322 965 +967 3 -36.633521885895505 -1298.678713435836 85.5201 0.232 966 +968 3 -36.34490403011404 -1299.738148489685 85.827 0.2318 967 +969 3 -36.44320648052593 -1300.8714324206762 86.0121 0.2316 968 +970 3 -36.39857834812295 -1302.0122912111487 86.1112 0.2314 969 +971 3 -36.76660675923921 -1303.0804807021152 86.1504 0.2313 970 +972 3 -37.141723401313925 -1304.1610090334598 86.1381 0.2311 971 +973 3 -37.375994835682036 -1305.2785654280274 86.018 0.2309 972 +974 3 -37.33163399562409 -1306.4168887590145 85.8724 0.2307 973 +975 3 -37.18543196083158 -1307.550364301328 85.7354 0.2306 974 +976 3 -36.7451226868522 -1308.601072749589 85.6061 0.2304 975 +977 3 -36.36307981150395 -1309.6769143789174 85.4493 0.2302 976 +978 3 -36.25564042867262 -1310.8086273058634 85.2006 0.23 977 +979 3 -36.24691983058756 -1311.950076840959 84.9993 0.2298 978 +980 3 -36.42376207413963 -1313.0779941255569 84.8484 0.2297 979 +981 3 -36.58764018914377 -1314.207333159427 84.6737 0.2295 980 +982 3 -36.79990223750656 -1315.3301418799242 84.5516 0.2293 981 +983 3 -36.47194191170399 -1316.4230280929855 84.5614 0.2291 982 +984 3 -35.87345303794012 -1317.3966971733107 84.698 0.229 983 +985 3 -43.13017762059218 -1272.6422872840994 72.3064 0.2366 941 +986 3 -42.04343560946069 -1272.7826966186963 72.8062 0.2362 985 +987 3 -40.98678279204131 -1272.439328793413 73.0556 0.236 986 +988 3 -40.012928510638005 -1271.8501165408313 73.3379 0.2357 987 +989 3 -39.06964734635602 -1271.2327444851703 73.7856 0.2355 988 +990 3 -38.043445015155896 -1271.0934379690298 74.5688 0.2352 989 +991 3 -37.14934096577315 -1271.7026383292377 75.3564 0.2349 990 +992 3 -36.4296732213553 -1272.5346801476844 76.1146 0.2347 991 +993 3 -35.446727040095766 -1272.8623746010207 77.1476 0.2344 992 +994 3 -34.39980872355267 -1272.6956619185798 78.1071 0.2342 993 +995 3 -33.44959391573667 -1273.0770463820904 79.0754 0.2339 994 +996 3 -32.9280759383405 -1273.9757167216771 80.218 0.2337 995 +997 3 -32.24837285053036 -1274.7866626584823 81.2812 0.2334 996 +998 3 -31.555132711815247 -1275.5932786700234 82.2954 0.2332 997 +999 3 -30.77480005241796 -1276.2335582969663 83.4868 0.2329 998 +1000 3 -29.825486721418144 -1276.698837202125 84.5522 0.2327 999 +1001 3 -28.935660231487134 -1277.2945857042778 85.4997 0.2325 1000 +1002 3 -28.107950539709464 -1278.0010570739296 86.3652 0.2322 1001 +1003 3 -27.37898255712537 -1278.7871206848206 87.2637 0.232 1002 +1004 3 -26.815534976946708 -1279.694997457511 88.2675 0.2318 1003 +1005 3 -26.257839071304375 -1280.6023013078443 89.2875 0.2315 1004 +1006 3 -25.69951477590928 -1281.5106274723753 90.3028 0.2313 1005 +1007 3 -25.15415220001563 -1282.4001580569056 91.4396 0.2311 1006 +1008 3 -24.800556633719225 -1283.263771387914 92.9802 0.2308 1007 +1009 3 -24.567380506579298 -1284.1302706630045 94.7142 0.2305 1008 +1010 3 -23.923115045845634 -1284.8944488268546 96.0411 0.2302 1009 +1011 3 -23.090961108340025 -1285.5579268402762 97.0589 0.23 1010 +1012 3 -22.414103928120085 -1286.4121748649065 97.8673 0.2298 1011 +1013 3 -21.533654351688767 -1287.0755467616295 98.5424 0.2295 1012 +1014 3 -20.759842594804923 -1286.4883932426005 99.3118 0.2293 1013 +1015 3 -20.042472950623107 -1285.9077618331794 100.9646 0.229 1014 +1016 3 -55.30440479511532 -1164.629505442166 44.3302 0.2572 831 +1017 3 -54.43422471269855 -1165.3636317556607 44.602 0.2566 1016 +1018 3 -53.620797191088684 -1166.1473149742428 44.7874 0.2562 1017 +1019 3 -53.11225154600527 -1167.149389610618 44.9064 0.2559 1018 +1020 3 -52.740111272545676 -1168.2070202960983 45.0052 0.2555 1019 +1021 3 -51.898478098961505 -1168.820419131378 45.1248 0.2551 1020 +1022 3 -50.766078230968674 -1168.9434454251932 45.2413 0.2548 1021 +1023 3 -49.89407255456064 -1169.5166944027867 45.3348 0.2544 1022 +1024 3 -49.423431524470516 -1170.555449417598 45.3488 0.254 1023 +1025 3 -48.94027885925607 -1171.5838141010136 45.2861 0.2537 1024 +1026 3 -48.1709405818238 -1172.3920154465195 45.1752 0.2533 1025 +1027 3 -47.18457587239055 -1172.963403895812 44.9982 0.253 1026 +1028 3 -46.25566568726731 -1173.611660918893 44.7804 0.2526 1027 +1029 3 -45.44966485366473 -1174.4161076705382 44.5729 0.2522 1028 +1030 3 -44.7766587655035 -1175.3318827549874 44.3864 0.2519 1029 +1031 3 -44.381396088361726 -1176.3833999759868 44.1543 0.2515 1030 +1032 3 -44.27284058627043 -1177.5104359084066 43.857 0.2511 1031 +1033 3 -44.26077714103474 -1178.6485394947683 43.5736 0.2508 1032 +1034 3 -44.36067792958431 -1179.7815146941648 43.3415 0.2504 1033 +1035 3 -44.683394860564306 -1180.8688047026071 43.1598 0.2501 1034 +1036 3 -44.97099761674531 -1181.9694904091725 43.0248 0.2497 1035 +1037 3 -44.75986372033276 -1183.046855494826 42.9318 0.2494 1036 +1038 3 -44.297060432423905 -1184.0904281644093 42.8056 0.249 1037 +1039 3 -43.558365051743806 -1184.9295551122318 42.5569 0.2486 1038 +1040 3 -43.08033326226632 -1185.9409953567588 42.5074 0.2482 1039 +1041 3 -42.900141689451516 -1187.0709507705192 42.5379 0.2478 1040 +1042 3 -42.98850320030812 -1188.2116230518513 42.5342 0.2475 1041 +1043 3 -42.95861653250307 -1189.3548523320428 42.5407 0.2471 1042 +1044 3 -42.25264942368324 -1190.2543580859235 42.5701 0.2471 1043 +1045 3 -41.36181123236588 -1190.9716780751128 42.5499 0.2471 1044 +1046 3 -40.3771355645498 -1191.5534951934678 42.534 0.2471 1045 +1047 3 -39.487628419024986 -1192.2730419105478 42.5228 0.2471 1046 +1048 3 -38.855062405342494 -1193.2257646657781 42.5079 0.2471 1047 +1049 3 -38.149456393930336 -1194.126783564947 42.4872 0.2471 1048 +1050 3 -37.27825089573287 -1194.8669702845727 42.4578 0.2471 1049 +1051 3 -36.28266503251331 -1195.4313995440525 42.4175 0.2471 1050 +1052 3 -35.69725322268749 -1196.5083025354666 42.2901 0.2471 1051 +1053 3 -35.029408756976466 -1197.4353496052636 42.1658 0.2469 1052 +1054 3 -33.96148896740175 -1197.8182163876236 42.0039 0.2467 1053 +1055 3 -32.84175580170978 -1198.0363598442052 41.8242 0.2466 1054 +1056 3 -31.84003285702545 -1198.57811850089 41.58 0.2465 1055 +1057 3 -30.986201189556937 -1199.3183028114695 41.174 0.2464 1056 +1058 3 -29.97611512805406 -1199.8146592845387 40.7425 0.2462 1057 +1059 3 -28.86952198723924 -1200.0421707583187 40.3292 0.2461 1058 +1060 3 -27.83508928549685 -1200.457828773478 39.8014 0.246 1059 +1061 3 -27.03685331286198 -1201.2146965703828 39.3184 0.2459 1060 +1062 3 -26.54434424954877 -1202.2279196615896 38.9494 0.2457 1061 +1063 3 -25.756572182059983 -1203.0006098062686 38.6697 0.2456 1062 +1064 3 -24.66365374550884 -1203.2580074384387 38.4675 0.2455 1063 +1065 3 -23.54468281112372 -1203.3154556586146 38.3314 0.2454 1064 +1066 3 -22.57525415967848 -1203.8636833665582 38.2466 0.2452 1065 +1067 3 -21.81054222746957 -1204.712290242996 38.192 0.2451 1066 +1068 3 -20.932883091232668 -1205.4257382162778 38.0971 0.245 1067 +1069 3 -19.923856989057413 -1205.9576082992198 37.8969 0.2449 1068 +1070 3 -19.000326454499827 -1206.6079982451292 37.6538 0.2448 1069 +1071 3 -18.278425086488767 -1207.4788113277502 37.3887 0.2446 1070 +1072 3 -17.642210595643917 -1208.419901000225 37.1017 0.2445 1071 +1073 3 -16.78412840104238 -1209.0862225121905 36.7665 0.2444 1072 +1074 3 -15.708330122573159 -1209.4360752155426 36.3885 0.2443 1073 +1075 3 -14.825304339943159 -1210.0709833956842 36.0598 0.2441 1074 +1076 3 -14.06709979665959 -1210.8981185723899 35.7622 0.244 1075 +1077 3 -13.121486302346625 -1211.5254268613303 35.448 0.2439 1076 +1078 3 -12.077876200417734 -1211.9300442548665 35.175 0.2438 1077 +1079 3 -11.01646379976836 -1212.2914393374945 34.9877 0.2437 1078 +1080 3 -10.013897538798744 -1212.8366705750127 34.834 0.2435 1079 +1081 3 -8.93059487301548 -1213.078615474332 34.7446 0.2434 1080 +1082 3 -7.798808372319172 -1212.9428421086022 34.7707 0.2433 1081 +1083 3 -6.690880468603439 -1213.008486759321 34.804 0.2432 1082 +1084 3 -5.789499980296796 -1213.6469027563794 34.7712 0.243 1083 +1085 3 -4.789584505564278 -1214.0984501995022 34.69 0.2429 1084 +1086 3 -3.6705564049585178 -1214.3372165289006 34.6237 0.2428 1085 +1087 3 -2.622797784724014 -1214.776845774657 34.5909 0.2427 1086 +1088 3 -1.5387975650826888 -1215.1270564738334 34.6262 0.2425 1087 +1089 3 -0.5297776660736417 -1215.6455489650073 34.7544 0.2424 1088 +1090 3 0.1736040264945018 -1216.5278629876545 34.9286 0.2423 1089 +1091 3 0.9502930091374537 -1217.3610086137255 35.1422 0.2422 1090 +1092 3 2.0078395970456313 -1217.7489603432023 35.3427 0.242 1091 +1093 3 3.1391349648779396 -1217.9049452486292 35.4295 0.2419 1092 +1094 3 4.065204060504016 -1218.5617566980775 35.4298 0.2418 1093 +1095 3 4.946245074094634 -1219.2850987557313 35.3948 0.2417 1094 +1096 3 6.089656453781686 -1219.2577999132245 35.341 0.2415 1095 +1097 3 7.220859419309761 -1219.2499780988205 35.2834 0.2414 1096 +1098 3 8.228372376197171 -1219.781487084355 35.2304 0.2413 1097 +1099 3 9.081052688322018 -1220.543859778852 35.1826 0.2412 1098 +1100 3 9.9338596325465 -1221.302046309913 35.0986 0.241 1099 +1101 3 10.628155320944188 -1222.208726180139 34.9969 0.2409 1100 +1102 3 11.235995082177226 -1223.1779387030997 34.9079 0.2408 1101 +1103 3 11.84806244609581 -1224.143144060537 34.8348 0.2407 1102 +1104 3 12.555721698115804 -1225.0389099412394 34.7763 0.2405 1103 +1105 3 13.321279355656543 -1225.8736155677811 34.7304 0.2404 1104 +1106 3 13.630917110282837 -1226.93879377865 34.6948 0.2403 1105 +1107 3 13.340023872763936 -1228.0429106267989 34.6632 0.2402 1106 +1108 3 13.285560503913587 -1229.1667375536222 34.6147 0.2401 1107 +1109 3 13.70114042386058 -1230.22724697373 34.5005 0.2399 1108 +1110 3 14.24002402822083 -1231.2307457684237 34.4142 0.2398 1109 +1111 3 14.5249526601267 -1232.330010329264 34.393 0.2397 1110 +1112 3 14.514648723532616 -1233.4710635308684 34.3706 0.2396 1111 +1113 3 14.46549073896125 -1234.5970288911492 34.279 0.2394 1112 +1114 3 14.762394012254731 -1235.6982060323521 34.0581 0.2393 1113 +1115 3 14.979967234471985 -1236.8146917657916 33.9226 0.2392 1114 +1116 3 14.994748238688487 -1237.9551158851064 33.8425 0.2391 1115 +1117 3 14.96283194211685 -1239.0959548527144 33.7862 0.2389 1116 +1118 3 14.818462989716181 -1240.2133021154677 33.6916 0.2388 1117 +1119 3 14.314629871873422 -1241.2266926864545 33.5698 0.2387 1118 +1120 3 13.836270108656436 -1242.2484885060462 33.4586 0.2386 1119 +1121 3 13.855762650946076 -1243.3484547286162 33.3805 0.2384 1120 +1122 3 14.38822716081387 -1244.3371182536494 33.3609 0.2383 1121 +1123 3 15.079808391813856 -1245.2481663868066 33.3917 0.2382 1122 +1124 3 15.528566667998234 -1246.2774829122523 33.4348 0.2381 1123 +1125 3 15.38209692726997 -1247.3652503391645 33.4603 0.2379 1124 +1126 3 15.038663318410613 -1248.455883887294 33.455 0.2378 1125 +1127 3 14.97445513764643 -1249.585818075432 33.4132 0.2377 1126 +1128 3 15.403612855211463 -1250.613801146039 33.3326 0.2376 1127 +1129 3 16.260867146746932 -1251.3356831167544 33.1775 0.2374 1128 +1130 3 17.283162314945343 -1251.8366251883335 32.9778 0.2373 1129 +1131 3 18.241689981040167 -1252.447896202967 32.7687 0.2372 1130 +1132 3 18.54584506998509 -1253.4736004936226 32.4148 0.2371 1131 +1133 3 18.18770213102823 -1254.5424043461958 32.023 0.2369 1132 +1134 3 18.395155415777992 -1255.6556026998805 31.6907 0.2368 1133 +1135 3 18.781543629609928 -1256.8040144196968 31.2998 0.2366 1134 +1136 3 18.695129935199077 -1257.9152006702498 31.0968 0.2363 1135 +1137 3 18.65501720808504 -1259.0449966071888 30.8557 0.2361 1136 +1138 3 19.109888256213537 -1260.0733729097037 30.6289 0.2359 1137 +1139 3 19.27096389833315 -1261.1896067640173 30.4214 0.2357 1138 +1140 3 18.80758316660524 -1262.218393907922 30.2882 0.2356 1139 +1141 3 18.307666510806655 -1263.2467494822517 30.1952 0.2354 1140 +1142 3 18.227418646689102 -1264.3811433293367 30.0297 0.2352 1141 +1143 3 18.28531653765191 -1265.5151367350595 29.7203 0.235 1142 +1144 3 18.05563380337719 -1266.6271728188158 29.3905 0.2348 1143 +1145 3 17.616797917140048 -1267.6609449963048 29.09 0.2346 1144 +1146 3 16.6761514333395 -1268.2889051801649 28.7745 0.2344 1145 +1147 3 16.040362291782458 -1269.203343602082 28.4222 0.2342 1146 +1148 3 15.936269136630813 -1270.3228145776102 28.0837 0.234 1147 +1149 3 16.23272852871321 -1271.408183399185 27.7143 0.2339 1148 +1150 3 16.887594145193646 -1272.29883830674 27.2294 0.2337 1149 +1151 3 17.85047466100025 -1272.8537907391878 26.5782 0.2335 1150 +1152 3 18.874469483627024 -1273.2221042649148 25.8896 0.2333 1151 +1153 3 19.981655369663144 -1273.3673196351842 25.3241 0.2331 1152 +1154 3 21.068228001383375 -1273.6583151952818 24.821 0.2329 1153 +1155 3 22.15731827032323 -1273.9073842541802 24.326 0.2327 1154 +1156 3 23.269847878304972 -1274.0439154643996 23.8381 0.2325 1155 +1157 3 23.940727453881834 -1274.7005297918963 23.4048 0.2324 1156 +1158 3 24.28636344630536 -1275.7543798574852 23.0029 0.2322 1157 +1159 3 25.077514289564874 -1276.5302752906523 22.7032 0.232 1158 +1160 3 25.89669899634083 -1277.3038463967468 22.4678 0.2318 1159 +1161 3 26.596999623474062 -1278.202726862458 22.2212 0.2316 1160 +1162 3 27.247420994226502 -1279.136375126243 21.9364 0.2314 1161 +1163 3 27.88483989876437 -1280.0794242342631 21.6476 0.2312 1162 +1164 3 28.69742410408901 -1280.859634872012 21.3788 0.231 1163 +1165 3 29.542754403539902 -1281.621125912557 21.1327 0.2309 1164 +1166 3 30.30759296784845 -1282.465546625559 20.9262 0.2307 1165 +1167 3 30.99467930381769 -1283.3780664647538 20.7623 0.2305 1166 +1168 3 31.300177750191267 -1284.4538882712177 20.6769 0.2303 1167 +1169 3 31.21867310656802 -1285.5862374899077 20.7098 0.2301 1168 +1170 3 31.090129603524815 -1286.7207374536915 20.8716 0.2299 1169 +1171 3 31.37696461262675 -1287.7946497813764 21.2591 0.2297 1170 +1172 3 31.587399647119355 -1288.9060153316154 21.6486 0.2295 1171 +1173 3 31.777658099052474 -1290.0151103056678 22.1431 0.2293 1172 +1174 3 31.77420792810875 -1291.1411516487456 22.6044 0.2292 1173 +1175 3 32.21365537100053 -1292.1226656807062 23.5584 0.229 1174 +1176 3 19.295160216491865 -1255.2649656577405 30.3719 0.2362 1134 +1177 3 20.318842501425934 -1255.1849594735281 29.5795 0.2351 1176 +1178 3 21.33475381121542 -1255.6535548860556 29.0875 0.2344 1177 +1179 3 22.24584387535242 -1256.3033750111908 28.5432 0.2337 1178 +1180 3 22.601878402936507 -1257.2649106658434 27.8145 0.233 1179 +1181 3 22.816848386636423 -1258.322545459195 26.9002 0.2322 1180 +1182 3 23.687273831261166 -1258.860377733561 25.8542 0.2315 1181 +1183 3 24.592599216688996 -1259.4332180660274 24.884 0.2308 1182 +1184 3 25.311591023634264 -1260.2294047159694 24.0045 0.2301 1183 +1185 3 25.453904623011624 -1261.1665447799044 22.4367 0.2295 1184 +1186 3 -35.23155135445933 -1194.8913023159462 40.8265 0.2467 1051 +1187 3 -34.23510755523915 -1194.4654498004018 40.0296 0.2461 1186 +1188 3 -33.135492509802134 -1194.3012078999973 39.5276 0.2457 1187 +1189 3 -32.03528391993285 -1194.4723100881129 39.0146 0.2454 1188 +1190 3 -30.97387151928342 -1194.8337051707406 38.472 0.245 1189 +1191 3 -29.889596496068805 -1195.0575626567288 37.8549 0.2446 1190 +1192 3 -28.791137215620324 -1195.0510866087998 37.1157 0.2442 1191 +1193 3 -27.69629427783383 -1195.032043458351 36.3079 0.2438 1192 +1194 3 -26.63767711778695 -1195.2622817011647 35.476 0.2435 1193 +1195 3 -25.81480049400028 -1195.901882289052 34.4893 0.2431 1194 +1196 3 -25.568938143468756 -1196.8894677307183 33.3654 0.2426 1195 +1197 3 -25.09633016660524 -1197.798129659163 32.1919 0.2422 1196 +1198 3 -24.168294124205715 -1198.3248480222446 31.269 0.2419 1197 +1199 3 -23.847217005418997 -1199.3628052678919 30.3906 0.2415 1198 +1200 3 -23.46732487516448 -1200.3916080377999 29.5977 0.2411 1199 +1201 3 -23.253242056046133 -1201.4672778786703 28.8585 0.2407 1200 +1202 3 -23.51372686212096 -1202.5377961063548 28.1392 0.2403 1201 +1203 3 -23.644507404092337 -1203.5004171428182 27.2472 0.2399 1202 +1204 3 -23.112224993719906 -1204.4864928425532 26.6805 0.2395 1203 +1205 3 -22.693079380413906 -1205.518047714989 26.1939 0.2391 1204 +1206 3 -22.660137389115675 -1206.6311102088362 25.8129 0.2388 1205 +1207 3 -22.94502258631593 -1207.7341164483546 25.5862 0.2384 1206 +1208 3 -23.205492671708214 -1208.8396050890087 25.496 0.238 1207 +1209 3 -23.28462992719517 -1209.9800069764126 25.4948 0.2376 1208 +1210 3 -23.30050343883039 -1211.1230750809577 25.493 0.2372 1209 +1211 3 -23.185531943829687 -1212.258257487154 25.4733 0.2369 1210 +1212 3 -23.01607777167237 -1213.3881221974348 25.4142 0.2365 1211 +1213 3 -23.124936215782895 -1214.4998406236318 25.2902 0.2361 1212 +1214 3 -23.52539958038392 -1215.5677775429358 25.0858 0.2357 1213 +1215 3 -23.83982937734197 -1216.6553731813901 24.7933 0.2354 1214 +1216 3 -23.828086282800825 -1217.7667934888034 24.3822 0.235 1215 +1217 3 -23.375191799946833 -1218.7787776227701 23.9279 0.2346 1216 +1218 3 -22.73496463294873 -1219.7134098630859 23.5437 0.2342 1217 +1219 3 -22.14418997084971 -1220.6810216388626 23.1983 0.2338 1218 +1220 3 -21.46728214132702 -1221.5767913136847 22.7765 0.2334 1219 +1221 3 -20.72309927687246 -1222.4206445202628 22.2748 0.233 1220 +1222 3 -19.960849230398708 -1223.241184706147 21.7153 0.2327 1221 +1223 3 -19.038444025154263 -1223.8505961987676 21.1081 0.2323 1222 +1224 3 -18.23733172693852 -1224.5813981799138 20.3202 0.2318 1223 +1225 3 -17.21099654849445 -1224.8704497176857 19.5128 0.2314 1224 +1226 3 -16.107227083359135 -1225.047345019587 18.9252 0.2311 1225 +1227 3 -15.060692486897437 -1224.659253357207 18.4673 0.2307 1226 +1228 3 -13.944547228790384 -1224.7842890433335 18.0972 0.2303 1227 +1229 3 -13.04868876780506 -1225.4595527976408 17.6695 0.2299 1228 +1230 3 -11.93670504986153 -1225.6891503390657 17.3246 0.2295 1229 +1231 3 -10.812012574841958 -1225.6531680290457 16.8274 0.2292 1230 +1232 3 -43.012173304670455 -1190.0672893974424 41.7738 0.2398 1043 +1233 3 -42.98681648389095 -1191.1527345925765 40.9259 0.2368 1232 +1234 3 -42.76230430317344 -1192.2541561016772 40.5244 0.2368 1233 +1235 3 -42.4885593621824 -1193.3548954701391 40.1635 0.2368 1234 +1236 3 -42.09377890391829 -1194.4014269650174 39.6234 0.2368 1235 +1237 3 -41.75927664564341 -1195.4742108618061 39.1073 0.2368 1236 +1238 3 -41.582607610428 -1196.587550568273 38.67 0.2368 1237 +1239 3 -41.202306835046215 -1197.649673047201 38.2914 0.2368 1238 +1240 3 -40.78668857743264 -1198.6993598738013 37.8347 0.2368 1239 +1241 3 -40.37979281753536 -1199.7545255719633 37.4058 0.2368 1240 +1242 3 -40.1880212203144 -1200.8639816434234 36.9608 0.2368 1241 +1243 3 -40.22867473528504 -1201.975329069623 36.3364 0.2368 1242 +1244 3 -40.169931118990405 -1203.0954212254496 35.7851 0.2368 1243 +1245 3 -39.69889375540902 -1204.1151517055819 35.2814 0.2368 1244 +1246 3 -39.04478246824448 -1205.033033088988 34.8076 0.2368 1245 +1247 3 -38.24644037891079 -1205.8381965248186 34.4459 0.2368 1246 +1248 3 -37.34963317747821 -1206.5411658722717 34.1796 0.2368 1247 +1249 3 -36.64878935344194 -1207.4411210179928 33.9839 0.2368 1248 +1250 3 -36.069991741776846 -1208.4241940441361 33.817 0.2368 1249 +1251 3 -35.57676289269483 -1209.4517646754962 33.5784 0.2368 1250 +1252 3 -35.065899123704924 -1210.4684955836196 33.2886 0.2368 1251 +1253 3 -34.55503535471502 -1211.485226491743 32.9963 0.2368 1252 +1254 3 -34.20542433126849 -1212.567504345293 32.695 0.2368 1253 +1255 3 -34.051469747144495 -1213.6962145986472 32.4366 0.2368 1254 +1256 3 -33.79777716565991 -1214.8078710582154 32.2123 0.2368 1255 +1257 3 -32.93859387425465 -1215.7272929210021 31.866 0.2368 1256 +1258 3 -32.46037998528192 -1216.7413209908273 31.5288 0.2368 1257 +1259 3 -32.268341095715755 -1217.8533125217728 31.1609 0.2368 1258 +1260 3 -32.24786388435871 -1218.9875355747104 30.819 0.2368 1259 +1261 3 -32.28125188696839 -1220.1238796472876 30.511 0.2368 1260 +1262 3 -32.1154116484264 -1221.2238034243196 30.1347 0.2368 1261 +1263 3 -31.696844468107088 -1222.271795006137 29.6682 0.2368 1262 +1264 3 -31.423455113894136 -1223.3633624850418 29.2513 0.2368 1263 +1265 3 -31.14035928543393 -1224.4596452961396 28.8834 0.2368 1264 +1266 3 -30.76041650587672 -1225.5299697162395 28.5743 0.2368 1265 +1267 3 -30.32710475937631 -1226.5822796042216 28.2957 0.2368 1266 +1268 3 -30.00502584179293 -1227.6720902624775 28.0364 0.2368 1267 +1269 3 -29.65590564943659 -1228.7533786288668 27.7582 0.2368 1268 +1270 3 -29.20838702302865 -1229.798247108159 27.4482 0.2368 1269 +1271 3 -28.689770704707314 -1230.8102127273232 27.1584 0.2368 1270 +1272 3 -28.113560918340397 -1231.7934678529623 26.9145 0.2368 1271 +1273 3 -27.464470593380327 -1232.7293428446374 26.6841 0.2368 1272 +1274 3 -26.748794601266866 -1233.6161900999823 26.4553 0.2368 1273 +1275 3 -26.068182134649362 -1234.531163307396 26.2467 0.2368 1274 +1276 3 -25.712784200582746 -1235.5965026939114 26.056 0.2368 1275 +1277 3 -25.18397126946047 -1236.590110505816 25.7818 0.2368 1276 +1278 3 -24.505086874663277 -1237.5022723491863 25.4761 0.2368 1277 +1279 3 -23.928389358789104 -1238.4798281661015 25.1504 0.2368 1278 +1280 3 -23.354353934499954 -1239.4618374387974 24.8583 0.2368 1279 +1281 3 -22.777207026785163 -1240.4445165404964 24.6168 0.2368 1280 +1282 3 -22.231816726036072 -1241.4454244083086 24.3631 0.2368 1281 +1283 3 -21.69423134043126 -1242.4510123722303 24.1458 0.2368 1282 +1284 3 -20.981090807803184 -1243.3381269199201 23.9241 0.2368 1283 +1285 3 -20.23570593870221 -1244.2013133927726 23.7171 0.2368 1284 +1286 3 -19.42418789587134 -1245.0036600486264 23.5347 0.2368 1285 +1287 3 -18.829130163690877 -1245.9740386476133 23.3695 0.2368 1286 +1288 3 -18.35140641327183 -1247.0111398568915 23.2174 0.2368 1287 +1289 3 -17.59890048617524 -1247.861849930703 23.0505 0.2368 1288 +1290 3 -16.809732695445064 -1248.6847427840405 22.8175 0.2368 1289 +1291 3 -16.336732794735326 -1249.7099576463638 22.4479 0.2368 1290 +1292 3 -15.944405012153254 -1250.7740778985035 22.0713 0.2368 1291 +1293 3 -15.804618970270212 -1251.8994069670407 21.7249 0.2368 1292 +1294 3 -15.962310047043445 -1253.0235344216944 21.4005 0.2368 1293 +1295 3 -16.02790163941279 -1254.155610144873 21.0311 0.2368 1294 +1296 3 -15.365955711650031 -1255.0619850776234 20.5899 0.2368 1295 +1297 3 -15.097159467175402 -1256.2946503358976 19.9469 0.2367 1296 +1298 3 -14.849037153268398 -1257.384259071794 19.3426 0.2361 1297 +1299 3 -14.505669327985174 -1258.440911889213 18.7354 0.2358 1298 +1300 3 -13.995216613169134 -1259.441696919046 18.2045 0.2355 1299 +1301 3 -13.480034538014252 -1260.4436832609886 17.7157 0.2352 1300 +1302 3 -12.969923381830256 -1261.446204187621 17.219 0.2349 1301 +1303 3 -12.586378980293773 -1262.4941252972712 16.7239 0.2346 1302 +1304 3 -12.419733763133252 -1263.6083442486433 16.2401 0.2343 1303 +1305 3 -11.965339139164087 -1264.544282609706 15.768 0.2339 1304 +1306 3 -10.982984696837605 -1265.1047546604286 15.3418 0.2336 1305 +1307 3 -9.999117109223164 -1265.665587808559 14.9426 0.2333 1306 +1308 3 -9.06103572707957 -1266.289426618249 14.5515 0.233 1307 +1309 3 -8.516036657640086 -1267.197844178796 14.1523 0.2327 1308 +1310 3 -8.396873488573988 -1268.3224681822471 13.7579 0.2324 1309 +1311 3 -8.058052924134131 -1269.3805075128546 13.312 0.2321 1310 +1312 3 -7.478911344790504 -1270.344470811469 12.799 0.2318 1311 +1313 3 -6.801193718556249 -1271.2197879991736 12.2107 0.2314 1312 +1314 3 -5.89959279308755 -1271.849969228023 11.5396 0.2311 1313 +1315 3 -4.907200220471509 -1272.3437026397105 10.8438 0.2308 1314 +1316 3 -3.913242136754832 -1272.8378823416551 10.1658 0.2305 1315 +1317 3 -2.89443186102568 -1273.2873234858207 9.5332 0.2302 1316 +1318 3 -1.850414919468733 -1273.1571389024707 9.0498 0.2298 1317 +1319 3 -1.1490991699075153 -1273.6755513149546 8.8299 0.2294 1318 +1320 3 -0.9045517594126977 -1274.7484591507077 9.5357 0.2291 1319 +1321 3 -14.800552591013172 -1254.909181245296 20.2667 0.2368 1296 +1322 3 -13.908660034280217 -1254.3569673127981 19.1982 0.2354 1321 +1323 3 -13.076221882341997 -1253.6182750337011 18.6003 0.2345 1322 +1324 3 -12.19559690131183 -1252.9253220101955 18.0432 0.2337 1323 +1325 3 -11.130189043227745 -1252.6531049351752 17.3868 0.2329 1324 +1326 3 -10.072763985237543 -1252.933727986143 16.6316 0.232 1325 +1327 3 -9.020432078128977 -1253.3088038815044 16.0402 0.2312 1326 +1328 3 -7.955321646291964 -1252.9400478944453 15.5642 0.2304 1327 +1329 3 -6.907757526178273 -1252.7151869279562 14.5838 0.2296 1328 +1330 3 -34.46467159998235 -1215.6717049273534 32.571 0.2368 1256 +1331 3 -35.526838933494844 -1215.9230318372115 32.7141 0.2368 1330 +1332 3 -36.59053422196712 -1215.5294690934443 32.8056 0.2368 1331 +1333 3 -37.56746044203487 -1214.9361978902461 32.8992 0.2368 1332 +1334 3 -38.57297562571034 -1214.392661897511 32.9678 0.2368 1333 +1335 3 -39.62559023838321 -1213.956017503081 33.0123 0.2368 1334 +1336 3 -40.73659918984896 -1213.6909587175955 33.0341 0.2368 1335 +1337 3 -41.83613284853402 -1213.40523020411 33.0358 0.2368 1336 +1338 3 -42.88714671402289 -1212.951520710546 33.0187 0.2368 1337 +1339 3 -43.9526723968944 -1212.5376023863068 32.9784 0.2368 1338 +1340 3 -45.04535608404876 -1212.2061105917978 32.9249 0.2368 1339 +1341 3 -46.167985806633794 -1211.989747572849 32.8941 0.2368 1340 +1342 3 -47.29532465824548 -1211.7964686199157 32.8751 0.2368 1341 +1343 3 -48.425779811375605 -1211.6372674994377 32.837 0.2368 1342 +1344 3 -49.5640155404663 -1211.6642021429539 32.7729 0.2368 1343 +1345 3 -50.633776248262336 -1211.9927378001598 32.6712 0.2368 1344 +1346 3 -51.328758296987075 -1212.8106855502945 32.5153 0.2368 1345 +1347 3 -51.375340075359816 -1213.9081871939943 32.265 0.2368 1346 +1348 3 -51.65906950757147 -1214.853427581037 31.7727 0.2368 1347 +1349 3 -52.65882511471932 -1214.498386222916 31.1752 0.2368 1348 +1350 3 -53.51778857250986 -1214.1562251085552 30.2795 0.2364 1349 +1351 3 -54.55560866223556 -1213.7413580438688 29.6825 0.2359 1350 +1352 3 -55.61244708347442 -1213.3394722374592 29.2586 0.2356 1351 +1353 3 -56.68633898474769 -1212.9642673009516 28.9873 0.2352 1352 +1354 3 -57.77545938758942 -1212.6211947895 28.8456 0.2349 1353 +1355 3 -58.89740766207234 -1212.4300019042116 28.8044 0.2345 1354 +1356 3 -60.024531888925196 -1212.5319209762315 28.8389 0.2342 1355 +1357 3 -61.0920504556114 -1212.920820718813 28.9218 0.2338 1356 +1358 3 -62.10463043638259 -1213.449322509294 29.0511 0.2335 1357 +1359 3 -63.156634694352874 -1213.8743471217726 29.2527 0.2331 1358 +1360 3 -64.26454817915953 -1214.1364206423414 29.4958 0.2328 1359 +1361 3 -65.36863349635507 -1214.4068227361818 29.8001 0.2324 1360 +1362 3 -66.48541734857827 -1214.5037944197475 30.2184 0.232 1361 +1363 3 -67.61429908861675 -1214.5329613017839 30.6606 0.2317 1362 +1364 3 -68.72361449983106 -1214.731454521926 31.073 0.2313 1363 +1365 3 -69.7053743024477 -1215.2663661968463 31.4535 0.231 1364 +1366 3 -70.47328202843875 -1216.079487395908 31.9063 0.2306 1365 +1367 3 -70.80207477876928 -1217.1087697805478 32.6676 0.2302 1366 +1368 3 -71.33448013893849 -1218.088662337139 33.29 0.2298 1367 +1369 3 -72.04891829191735 -1218.942749677853 33.9262 0.2295 1368 +1370 3 -72.82736080366954 -1219.705886196372 34.7768 0.2291 1369 +1371 3 -53.071245103342676 -1214.9197444469773 30.9313 0.2368 1349 +1372 3 -54.095351055860476 -1215.224208267517 30.1568 0.2355 1371 +1373 3 -55.21229477566823 -1215.224673866081 29.6139 0.2345 1372 +1374 3 -56.33896140691576 -1215.2268901768239 29.1365 0.2337 1373 +1375 3 -57.46184710452002 -1215.3290210737928 28.6653 0.2329 1374 +1376 3 -58.535991488466436 -1215.595809234018 27.9836 0.232 1375 +1377 3 -59.54741100480845 -1215.1190533195681 27.4238 0.2312 1376 +1378 3 -60.575965399914764 -1214.6997820633305 26.7622 0.2304 1377 +1379 3 -61.59384675806086 -1214.3545909412853 25.802 0.2296 1378 +1380 3 -57.093131132060876 -1157.7216265179577 42.8005 0.2574 825 +1381 3 -56.02206230291978 -1157.460719765952 43.0363 0.2567 1380 +1382 3 -54.883668091317645 -1157.4821659542113 42.9853 0.2562 1381 +1383 3 -53.80843702947652 -1157.1407599735198 42.8744 0.2558 1382 +1384 3 -52.849562472098796 -1156.5204937700123 42.7678 0.2553 1383 +1385 3 -51.7267992987226 -1156.5797193262383 42.8179 0.2548 1384 +1386 3 -50.61968698643665 -1156.7532686794061 42.978 0.2544 1385 +1387 3 -49.55980905766506 -1156.3299776493775 43.1267 0.254 1386 +1388 3 -48.516993818980836 -1155.8877120414359 43.1866 0.2535 1387 +1389 3 -47.377748779865385 -1155.7837421378545 43.1508 0.2531 1388 +1390 3 -46.2377863640275 -1155.7114936051555 43.1068 0.2527 1389 +1391 3 -45.10091491621432 -1155.5860934410923 43.0749 0.2523 1390 +1392 3 -43.96055306530218 -1155.5015091695982 43.1057 0.2518 1391 +1393 3 -42.831983472193485 -1155.3408329625527 43.2989 0.2514 1392 +1394 3 -41.75911197350848 -1154.9889045077366 43.5196 0.251 1393 +1395 3 -40.71452450095603 -1154.6543615027483 43.6649 0.2505 1394 +1396 3 -39.62030784564945 -1154.9096699656902 43.7251 0.2501 1395 +1397 3 -38.567286286674005 -1155.2050899486517 43.6587 0.2497 1396 +1398 3 -37.439211934300715 -1155.179001723004 43.3972 0.2492 1397 +1399 3 -36.312461418265286 -1155.3189993108904 43.0592 0.2488 1398 +1400 3 -35.23388029981908 -1155.138106467109 42.7745 0.2484 1399 +1401 3 -34.31636001382043 -1154.4855083252323 42.5348 0.2479 1400 +1402 3 -33.39362504702217 -1153.8457860174708 42.3004 0.2475 1401 +1403 3 -32.31375942421488 -1153.7783150853668 42.0941 0.2471 1402 +1404 3 -31.253533614992705 -1154.1794099413037 41.918 0.2466 1403 +1405 3 -30.211206318600034 -1154.6451495436513 41.7508 0.2462 1404 +1406 3 -29.103106928200077 -1154.8355818964576 41.6094 0.2458 1405 +1407 3 -28.072391577929807 -1154.4437151248158 41.4498 0.2453 1406 +1408 3 -27.12256537959246 -1153.812929548766 41.2454 0.2449 1407 +1409 3 -26.078415993532644 -1153.3751260088181 41.0382 0.2445 1408 +1410 3 -24.96331126265187 -1153.1423204909124 40.8724 0.2441 1409 +1411 3 -23.82518165025988 -1153.0670902084707 40.7523 0.2436 1410 +1412 3 -22.687841289515404 -1153.1630166585337 40.6731 0.2432 1411 +1413 3 -21.5729884377605 -1152.986708720726 40.6305 0.2428 1412 +1414 3 -20.563613745477312 -1152.4615857060157 40.6333 0.2424 1413 +1415 3 -19.487501722220827 -1152.0887670860373 40.6543 0.2419 1414 +1416 3 -18.41298562805548 -1151.6982659037349 40.6476 0.2415 1415 +1417 3 -17.329520490541825 -1151.3330177335924 40.607 0.2411 1416 +1418 3 -16.19549254127236 -1151.2335458266248 40.5625 0.2407 1417 +1419 3 -15.052131118351554 -1151.1887879605392 40.5112 0.2402 1418 +1420 3 -13.934490927985394 -1150.9557151502886 40.4317 0.2398 1419 +1421 3 -12.796437298390003 -1150.9261926814743 40.2937 0.2394 1420 +1422 3 -11.658010259750824 -1150.947501311071 40.031 0.2389 1421 +1423 3 -10.663770163006348 -1151.4791868854713 39.7342 0.2385 1422 +1424 3 -9.534435929544259 -1151.4618320841028 39.3952 0.2381 1423 +1425 3 -8.443202829479787 -1151.1508516645845 39.0404 0.2376 1424 +1426 3 -7.373942162827177 -1150.7756710724032 38.64 0.2372 1425 +1427 3 -6.249908211462355 -1150.6446629956322 38.2399 0.2368 1426 +1428 3 -6.170786481011476 -1151.3762587390386 37.9201 0.2368 1427 +1429 3 -5.559683963296095 -1152.2306628371339 37.1818 0.2368 1428 +1430 3 -4.523068287263243 -1152.643570466275 36.5812 0.2368 1429 +1431 3 -3.5197976537440923 -1153.144116204363 36.0223 0.2368 1430 +1432 3 -3.8325802510759672 -1153.4894399608675 35.2565 0.2368 1431 +1433 3 -4.215204364362819 -1154.4552067225295 35.3416 0.2359 1432 +1434 3 -4.62151390109932 -1155.502556697637 35.7692 0.235 1433 +1435 3 -4.970250485191116 -1156.57367798158 36.2037 0.2343 1434 +1436 3 -5.4236167036134475 -1157.5815194929266 36.881 0.2336 1435 +1437 3 -5.257086120667964 -1158.6258499841715 37.7387 0.2328 1436 +1438 3 -4.7628887082743745 -1159.6045817797026 38.5311 0.2322 1437 +1439 3 -4.377437929541827 -1160.6271506561966 39.3436 0.2315 1438 +1440 3 -4.355139533838553 -1161.736073841791 40.014 0.2308 1439 +1441 3 -4.814419294980382 -1162.765039983608 40.4712 0.2301 1440 +1442 3 -5.673778292758072 -1163.4946907993676 40.9469 0.2295 1441 +1443 3 -2.728384407536737 -1153.131756037395 35.4844 0.2368 1431 +1444 3 -1.6177461542947071 -1153.035862135423 35.2262 0.2366 1443 +1445 3 -0.5333366859786679 -1152.8338970269842 35.0361 0.2365 1444 +1446 3 0.5764671592575041 -1153.0729337503112 34.9555 0.2364 1445 +1447 3 1.686097517211067 -1153.3053864093795 34.9308 0.2363 1446 +1448 3 2.824597437063801 -1153.2742984294646 34.946 0.2363 1447 +1449 3 3.9594136436706435 -1153.2723549216962 34.9863 0.2362 1448 +1450 3 5.062584852955069 -1153.5422313619536 35.0504 0.2361 1449 +1451 3 5.956703623020587 -1154.1864021351314 35.1464 0.236 1450 +1452 3 6.893983743653962 -1154.6363056753103 35.3548 0.2359 1451 +1453 3 8.031244706266875 -1154.6448322758545 35.6404 0.2358 1452 +1454 3 9.15492237831694 -1154.4805896829134 35.8378 0.2357 1453 +1455 3 10.253472664018375 -1154.1706284760098 35.9579 0.2357 1454 +1456 3 11.378261637235596 -1154.0364565500004 36.0514 0.2356 1455 +1457 3 12.490820686582708 -1154.2429285861604 36.1561 0.2355 1456 +1458 3 13.613758448226122 -1154.4336306403584 36.2401 0.2354 1457 +1459 3 14.746079231839019 -1154.5956759519167 36.2855 0.2353 1458 +1460 3 15.86007544367726 -1154.8482168991118 36.2852 0.2352 1459 +1461 3 16.986879710598544 -1155.036424933074 36.3079 0.2351 1460 +1462 3 18.126637102493646 -1155.0314442081672 36.3784 0.2351 1461 +1463 3 19.26059938000401 -1155.1482279963554 36.3866 0.235 1462 +1464 3 20.298522484845194 -1155.6047019040834 36.3474 0.2349 1463 +1465 3 21.408364667748117 -1155.8329160339035 36.2891 0.2348 1464 +1466 3 22.487470557284325 -1156.1969341779131 36.2037 0.2347 1465 +1467 3 23.422623248034313 -1156.8467536105118 36.0497 0.2346 1466 +1468 3 24.530773287737077 -1157.07870761351 35.8081 0.2345 1467 +1469 3 25.672710552339424 -1157.0642877067012 35.6504 0.2345 1468 +1470 3 26.811251218905454 -1157.00500330255 35.4648 0.2344 1469 +1471 3 27.927782197692466 -1157.2332143307867 35.2794 0.2343 1470 +1472 3 28.846766163943073 -1157.9090534164975 35.1025 0.2342 1471 +1473 3 29.90409541627224 -1158.3119287100671 34.9286 0.2341 1472 +1474 3 30.997786607952207 -1157.9982635586052 34.7197 0.234 1473 +1475 3 32.12950743688941 -1158.0787458880309 34.4196 0.2339 1474 +1476 3 33.208812839738755 -1158.386181259093 34.0626 0.2338 1475 +1477 3 34.303239230406746 -1158.1458966873674 33.5129 0.2338 1476 +1478 3 35.40399401208788 -1157.9311847859594 33.0078 0.2337 1477 +1479 3 36.45908613649965 -1157.5526230089608 32.4587 0.2336 1478 +1480 3 37.5528612129674 -1157.381171756128 31.985 0.2335 1479 +1481 3 38.67346302843856 -1157.5155583297237 31.5818 0.2334 1480 +1482 3 39.808332985931315 -1157.5618252680315 31.2922 0.2333 1481 +1483 3 40.90794021836655 -1157.8192197986186 31.1214 0.2332 1482 +1484 3 41.93731810689394 -1158.3185080646645 31.0397 0.2332 1483 +1485 3 42.98232703364721 -1158.780016962743 31.0271 0.2331 1484 +1486 3 44.03886051741085 -1159.2142525297877 31.064 0.233 1485 +1487 3 45.06200210347765 -1159.7253559780843 31.1419 0.2329 1486 +1488 3 46.10193460063056 -1160.198084495698 31.2628 0.2328 1487 +1489 3 47.11536420182051 -1160.7151576466465 31.4465 0.2327 1488 +1490 3 48.07880022616632 -1161.3235290028038 31.6999 0.2326 1489 +1491 3 48.63483001463902 -1162.1714058891093 32.0412 0.2326 1490 +1492 3 49.12901270635001 -1163.11516727167 32.4624 0.2325 1491 +1493 3 50.10912259852023 -1163.6326490677461 32.844 0.2324 1492 +1494 3 50.85274685285253 -1164.4163945547307 33.1646 0.2323 1493 +1495 3 50.969935865690616 -1165.5072525589044 33.427 0.2322 1494 +1496 3 51.04414073235199 -1166.6393217651653 33.7344 0.2321 1495 +1497 3 51.840029139715114 -1167.3115924643816 34.1368 0.232 1496 +1498 3 52.8434413388008 -1166.9406165504383 34.4663 0.2319 1497 +1499 3 53.83552438631801 -1166.3831609048225 34.7323 0.2318 1498 +1500 3 54.948773389305586 -1166.2172292702649 34.9521 0.2318 1499 +1501 3 56.0485103554235 -1166.4771264332999 35.1677 0.2317 1500 +1502 3 57.11430573968681 -1166.8762063862955 35.4385 0.2316 1501 +1503 3 57.978243316476835 -1167.6087702902728 35.6521 0.2315 1502 +1504 3 58.82227849875534 -1168.37903929593 35.8268 0.2314 1503 +1505 3 59.639013631432306 -1169.17688795517 36.0004 0.2313 1504 +1506 3 60.289702294529945 -1170.1130716784403 36.143 0.2313 1505 +1507 3 61.39826238211822 -1170.2104900658537 36.2208 0.2312 1506 +1508 3 62.534684438090835 -1170.079966617007 36.2426 0.2311 1507 +1509 3 63.62260042723972 -1170.4210796929133 36.1928 0.231 1508 +1510 3 64.75577003776755 -1170.57591255046 36.1007 0.2309 1509 +1511 3 65.88640418880999 -1170.731012700352 36.0105 0.2308 1510 +1512 3 67.00631254631651 -1170.4951371382708 35.9344 0.2307 1511 +1513 3 68.11886158639965 -1170.2383135345851 35.8756 0.2306 1512 +1514 3 69.26209466071094 -1170.2391782892773 35.8282 0.2306 1513 +1515 3 70.39053452013701 -1170.0759994497835 35.7882 0.2305 1514 +1516 3 71.39166282511144 -1169.5223743808256 35.7428 0.2304 1515 +1517 3 72.37572533841535 -1168.94308593807 35.6846 0.2303 1516 +1518 3 73.43698667879227 -1168.5176533730005 35.6073 0.2302 1517 +1519 3 74.38775310006042 -1167.8929805688954 35.4446 0.2301 1518 +1520 3 75.12905352989986 -1167.0344719069008 35.2822 0.2301 1519 +1521 3 76.14195316882893 -1166.5085907687549 35.0927 0.23 1520 +1522 3 77.17767096650158 -1166.0330085533765 34.8855 0.2299 1521 +1523 3 78.26420345505596 -1165.7667050210757 34.6746 0.2298 1522 +1524 3 79.3789269638911 -1165.9047048357502 34.3633 0.2297 1523 +1525 3 80.45644022101857 -1165.571403889585 34.1564 0.2296 1524 +1526 3 81.585380121588 -1165.454869985067 34.0113 0.2295 1525 +1527 3 82.57921226574172 -1165.9772984770607 33.976 0.2294 1526 +1528 3 83.51610395487506 -1166.6341482641756 34.0021 0.2293 1527 +1529 3 84.62186298945761 -1166.9038426049374 34.0463 0.2292 1528 +1530 3 85.76399466519155 -1166.9443547671258 34.0379 0.2291 1529 +1531 3 86.8663372788734 -1167.24572903952 34.0178 0.2291 1530 +1532 3 87.9976353575259 -1167.0915923559005 34.0693 0.229 1531 +1533 3 89.07869166765374 -1166.7224253146674 34.2157 0.2289 1532 +1534 3 -5.326965018170881 -1150.9730864447902 38.8923 0.2364 1427 +1535 3 -4.197865942553449 -1150.9289959986604 39.0855 0.236 1534 +1536 3 -3.226729220130835 -1150.337463213126 39.3159 0.2358 1535 +1537 3 -2.7283250170835345 -1149.3328091680019 39.7872 0.2355 1536 +1538 3 -2.0230204159948926 -1148.4682548205583 40.3962 0.2352 1537 +1539 3 -1.2541755686560236 -1147.6545575975567 40.9108 0.2349 1538 +1540 3 -0.4802450816637247 -1146.875296202835 41.4554 0.2347 1539 +1541 3 0.03558531792515396 -1145.8707297596068 41.8984 0.2344 1540 +1542 3 0.6392858827224472 -1144.9195552077692 42.2769 0.2341 1541 +1543 3 1.463923937609536 -1144.1507953633236 42.5219 0.2339 1542 +1544 3 2.440269137665439 -1143.5587608201358 42.6737 0.2336 1543 +1545 3 3.081162433678344 -1142.7444800619658 42.8792 0.2333 1544 +1546 3 3.0582380572687384 -1141.617160731445 43.1586 0.2331 1545 +1547 3 3.0610215007930606 -1140.5009196676767 43.4787 0.2328 1546 +1548 3 3.5669256815093604 -1139.523935287078 43.8206 0.2325 1547 +1549 3 4.3148625414202115 -1138.6653383306505 44.0891 0.2323 1548 +1550 3 5.164274396476401 -1137.914921572782 44.3114 0.232 1549 +1551 3 6.010040183416777 -1137.15876406694 44.5875 0.2317 1550 +1552 3 6.374778805731864 -1136.11806834417 44.8179 0.2314 1551 +1553 3 6.137925375589589 -1135.0269324348396 44.9428 0.2312 1552 +1554 3 6.142045375535986 -1133.8977796083364 45.0131 0.2309 1553 +1555 3 6.727782057518198 -1132.9347577397475 45.1133 0.2306 1554 +1556 3 6.801355153897589 -1131.8112747806026 45.1872 0.2304 1555 +1557 3 6.984257803580988 -1130.6823320802237 45.2164 0.2301 1556 +1558 3 7.781889127242096 -1129.88052051164 45.2264 0.2298 1557 +1559 3 8.299141276102944 -1128.8629899398638 45.2206 0.2296 1558 +1560 3 8.577825406926252 -1127.754287493205 45.1898 0.2293 1559 +1561 3 8.31014087206654 -1126.6525227089628 44.8731 0.2291 1560 +1562 3 -58.215717118166594 -1159.4147865410505 41.6668 0.2574 824 +1563 3 -57.91845274746555 -1160.5144505369653 41.8314 0.2574 1562 +1564 3 -57.58033414652874 -1161.5998015362743 41.9294 0.2574 1563 +1565 3 -57.58953909359201 -1162.718581161111 42.1134 0.2574 1564 +1566 3 -57.82634908902861 -1163.8297160521397 42.3486 0.2574 1565 +1567 3 -57.9038793941653 -1164.9664304321777 42.5684 0.2574 1566 +1568 3 -57.99081605416694 -1166.1008273808459 42.7644 0.2574 1567 +1569 3 -58.2325344078547 -1167.2148619303507 42.9587 0.2574 1568 +1570 3 -58.39815462282519 -1168.3304818138204 43.1953 0.2574 1569 +1571 3 -58.29382672341944 -1169.4615249117642 43.4566 0.2574 1570 +1572 3 -58.13947821485067 -1170.588584461168 43.7046 0.2574 1571 +1573 3 -58.184661860935535 -1171.7189149827973 43.9253 0.2574 1572 +1574 3 -58.40000256568686 -1172.8409163156293 44.072 0.2574 1573 +1575 3 -58.37414329471744 -1173.95563261501 44.2016 0.2574 1574 +1576 3 -58.01196516875069 -1175.0342941258982 44.3887 0.2574 1575 +1577 3 -57.92435840080043 -1176.1446267491283 44.5626 0.2574 1576 +1578 3 -58.33048893962467 -1177.1878757536495 44.6894 0.2574 1577 +1579 3 -58.91876349013887 -1178.1685387453124 44.7776 0.2574 1578 +1580 3 -58.93781936581462 -1179.2451299925378 44.8316 0.2574 1579 +1581 3 -58.648701468889726 -1180.351209981362 44.8843 0.2574 1580 +1582 3 -58.47737305403683 -1181.479922643763 44.9193 0.2574 1581 +1583 3 -58.18945957080496 -1182.5840431970419 44.8529 0.2574 1582 +1584 3 -57.497534372126495 -1183.47598160267 44.7084 0.2574 1583 +1585 3 -56.485527212744955 -1183.981956255553 44.562 0.2574 1584 +1586 3 -55.47213594922158 -1184.509852000009 44.4858 0.2574 1585 +1587 3 -54.743545785326376 -1185.3806619810468 44.4102 0.2574 1586 +1588 3 -54.64693209758548 -1186.505647774442 44.3134 0.2574 1587 +1589 3 -54.90276662770128 -1187.6163863319794 44.1767 0.2574 1588 +1590 3 -55.14261073869346 -1188.7292688336042 43.8925 0.2574 1589 +1591 3 -55.41395888498869 -1189.827945147858 43.4913 0.2574 1590 +1592 3 -55.43005042473942 -1190.961874189883 43.122 0.2574 1591 +1593 3 -55.88736975602575 -1191.7209507863026 42.7787 0.2574 1592 +1594 3 -56.23713175589819 -1192.7860116641145 42.2881 0.2571 1593 +1595 3 -56.03088908800754 -1193.8838729904855 41.8765 0.257 1594 +1596 3 -55.6107204679675 -1194.938862099782 41.5671 0.2569 1595 +1597 3 -55.11936586158106 -1195.9675847790218 41.3305 0.2567 1596 +1598 3 -54.67905658760151 -1197.0182932272833 41.0934 0.2566 1597 +1599 3 -54.40477706192013 -1198.124103514716 40.8666 0.2564 1598 +1600 3 -54.457765623149214 -1199.2591141324542 40.6896 0.2563 1599 +1601 3 -54.22313040338105 -1200.3705118171938 40.4886 0.2561 1600 +1602 3 -53.89200622834028 -1201.4641530521076 40.3382 0.256 1601 +1603 3 -53.55740947246636 -1202.5569509707357 40.2461 0.2559 1602 +1604 3 -53.03282655307612 -1203.571939778893 40.2094 0.2557 1603 +1605 3 -52.63033429219371 -1204.6419024090487 40.2144 0.2556 1604 +1606 3 -52.21973699678472 -1205.709582843918 40.2525 0.2554 1605 +1607 3 -52.13973591475411 -1206.844779970797 40.3749 0.2553 1606 +1608 3 -53.13160403573886 -1207.4046858830484 40.5034 0.2551 1607 +1609 3 -53.67357451737303 -1208.4106473569814 40.6563 0.255 1608 +1610 3 -53.943233622051366 -1209.4988950021725 40.7506 0.2549 1609 +1611 3 -53.35357267016582 -1210.4538099417464 40.78 0.2547 1610 +1612 3 -52.321171592645726 -1210.9471316067234 40.7428 0.2546 1611 +1613 3 -51.26650373936502 -1211.3785229826872 40.6064 0.2544 1612 +1614 3 -50.29265617568575 -1211.9709867982203 40.3575 0.2543 1613 +1615 3 -49.39994443420949 -1212.6630921129163 40.0926 0.2541 1614 +1616 3 -48.841786825090594 -1213.6278634917326 39.8731 0.254 1615 +1617 3 -48.78156529959165 -1214.7658281343583 39.7312 0.2538 1616 +1618 3 -48.833658178722715 -1215.9043965257797 39.6427 0.2537 1617 +1619 3 -48.677923156965676 -1217.036003336027 39.538 0.2536 1618 +1620 3 -48.417541779597 -1218.147656694012 39.403 0.2534 1619 +1621 3 -48.14321771308278 -1219.256021979706 39.2787 0.2533 1620 +1622 3 -48.04000903452015 -1220.3850532762913 39.1714 0.2531 1621 +1623 3 -48.18308217721187 -1221.5176852005457 38.9908 0.253 1622 +1624 3 -48.13618657020521 -1222.6316786125744 38.7307 0.2528 1623 +1625 3 -47.735166015360846 -1223.6971463476993 38.4885 0.2527 1624 +1626 3 -47.25927506838758 -1224.7312658072344 38.2318 0.2526 1625 +1627 3 -46.80431262424315 -1225.772967335705 37.9266 0.2524 1626 +1628 3 -46.55694533218855 -1226.8657399208396 37.6015 0.2523 1627 +1629 3 -46.63149698916544 -1227.9939327015477 37.27 0.2521 1628 +1630 3 -46.866038817461856 -1229.1022648407459 36.8883 0.252 1629 +1631 3 -47.009920040355325 -1230.2139127947758 36.44 0.2518 1630 +1632 3 -46.79302826624007 -1231.305228394555 36.0273 0.2517 1631 +1633 3 -46.35543655124144 -1232.353616309863 35.7062 0.2515 1632 +1634 3 -45.94302048053288 -1233.4133707081182 35.425 0.2514 1633 +1635 3 -45.5953688926316 -1234.496852975361 35.1523 0.2513 1634 +1636 3 -45.2996176672184 -1235.5961558738686 34.8883 0.2511 1635 +1637 3 -45.0532227325952 -1236.7070158723345 34.6055 0.251 1636 +1638 3 -44.52376089631906 -1237.6491641960752 34.2121 0.2508 1637 +1639 3 -43.5460567299516 -1238.1694159169447 33.7414 0.2507 1638 +1640 3 -42.56668713895107 -1238.7250319752288 33.334 0.2505 1639 +1641 3 -41.65482733227907 -1239.406658664096 33.0898 0.2504 1640 +1642 3 -40.8896276705629 -1240.2495662318101 33.0268 0.2502 1641 +1643 3 -40.52620989481966 -1241.312675788852 33.0551 0.2501 1642 +1644 3 -40.28490231635982 -1242.4305364163802 33.1212 0.25 1643 +1645 3 -39.883253371762635 -1243.4970264657027 33.2256 0.2498 1644 +1646 3 -39.358670452372394 -1244.5120152738598 33.3418 0.2497 1645 +1647 3 -38.94001187603703 -1245.5733320816325 33.455 0.2495 1646 +1648 3 -38.63641980685941 -1246.6745061212523 33.5546 0.2494 1647 +1649 3 -38.68980539411638 -1247.8044786470568 33.6482 0.2492 1648 +1650 3 -38.89579210981532 -1248.9287122184091 33.7397 0.2491 1649 +1651 3 -38.73698463483606 -1250.0477488245533 33.8341 0.249 1650 +1652 3 -38.23516302172044 -1251.067337951903 33.934 0.2488 1651 +1653 3 -37.98707594389697 -1252.174458077191 34.062 0.2487 1652 +1654 3 -37.88600569879202 -1253.3087947580552 34.3073 0.2485 1653 +1655 3 -37.62383837316065 -1254.4126596380888 34.6503 0.2484 1654 +1656 3 -37.27806102795489 -1255.4972939532117 34.9188 0.2482 1655 +1657 3 -37.05747012737447 -1256.6184981204271 35.0602 0.2481 1656 +1658 3 -36.98365608357483 -1257.7589068265224 35.0375 0.248 1657 +1659 3 -37.07647105021243 -1258.8969170162695 34.8827 0.2478 1658 +1660 3 -36.86019604675056 -1260.0154919189367 34.6466 0.2477 1659 +1661 3 -36.154678329771286 -1260.909874388034 34.3952 0.2475 1660 +1662 3 -35.414149453108735 -1261.7760457122126 34.1611 0.2474 1661 +1663 3 -35.49186185774079 -1262.9101722669525 33.8923 0.2472 1662 +1664 3 -35.67578992320483 -1264.0330545612 33.6067 0.2471 1663 +1665 3 -34.830424387670405 -1264.7770342123536 33.7669 0.247 1664 +1666 3 -34.36887926434048 -1265.7704370003153 34.4781 0.2461 1665 +1667 3 -34.28808792437394 -1266.8849588885646 34.8869 0.2456 1666 +1668 3 -34.49718922508157 -1268.00183383503 35.2106 0.2451 1667 +1669 3 -34.4941826564027 -1269.107825227648 35.4808 0.2447 1668 +1670 3 -34.273051660502404 -1270.2234152789895 35.6908 0.2442 1669 +1671 3 -34.276231437517936 -1271.3586808774369 35.7832 0.2437 1670 +1672 3 -34.36784199046264 -1272.498650502729 35.7904 0.2433 1671 +1673 3 -34.28543518262927 -1273.6310777048143 35.7549 0.2429 1672 +1674 3 -34.14586957790823 -1274.7646415415606 35.6894 0.2424 1673 +1675 3 -34.352212572921815 -1275.855640596743 35.572 0.2419 1674 +1676 3 -34.87009311153554 -1276.8721488543215 35.4278 0.2415 1675 +1677 3 -35.31560376551079 -1277.9168319197506 35.2618 0.241 1676 +1678 3 -35.76574687317935 -1278.9629538641811 35.0916 0.2406 1677 +1679 3 -35.95997766814298 -1280.0558983267624 34.9549 0.2401 1678 +1680 3 -35.75630569582137 -1281.1715383348703 34.8592 0.2397 1679 +1681 3 -35.653055578008946 -1282.2964358338327 34.799 0.2392 1680 +1682 3 -35.70951361848819 -1283.4389785637404 34.7631 0.2388 1681 +1683 3 -35.76018715739389 -1284.5819566573427 34.743 0.2384 1682 +1684 3 -35.756983768537054 -1285.725506288229 34.727 0.2379 1683 +1685 3 -35.51317976079508 -1286.8298595903061 34.706 0.2374 1684 +1686 3 -35.08788475438831 -1287.8910881036459 34.6786 0.237 1685 +1687 3 -34.45305677673167 -1288.8276305152776 34.6441 0.2366 1686 +1688 3 -33.74904910345714 -1289.728340682851 34.589 0.2361 1687 +1689 3 -33.38893583719789 -1290.7839735951195 34.4859 0.2356 1688 +1690 3 -33.17791075061905 -1291.9071840530632 34.3748 0.2352 1689 +1691 3 -32.95219656525512 -1293.027938828438 34.2933 0.2347 1690 +1692 3 -32.85000709930699 -1294.1642873106607 34.2552 0.2343 1691 +1693 3 -32.63141156289208 -1295.2801446543472 34.1984 0.2338 1692 +1694 3 -31.998954074954668 -1296.2019456013809 34.0533 0.2334 1693 +1695 3 -31.108292472503194 -1296.905992730427 33.8363 0.2329 1694 +1696 3 -30.219449645351403 -1297.6179658960878 33.593 0.2325 1695 +1697 3 -29.28719351149448 -1298.2695657663196 33.3256 0.232 1696 +1698 3 -28.41203080453971 -1298.9965210650525 33.0697 0.2316 1697 +1699 3 -27.550537291219143 -1299.7426774873302 32.8325 0.2311 1698 +1700 3 -26.72623170870611 -1300.5331730323132 32.6578 0.2306 1699 +1701 3 -25.97207197607605 -1301.3909658264538 32.587 0.2302 1700 +1702 3 -25.827703437265882 -1302.497396992411 32.6474 0.2297 1701 +1703 3 -26.092991177429894 -1303.5950478908842 33.094 0.2292 1702 +1704 3 -35.32225191389222 -1264.3985393980554 33.4303 0.2411 1664 +1705 3 -34.42820912662353 -1265.0884179848608 33.0702 0.2368 1704 +1706 3 -33.55630166492301 -1265.8012930357859 32.6178 0.2368 1705 +1707 3 -32.582469514463014 -1266.3347238117356 32.0566 0.2368 1706 +1708 3 -31.646166160906034 -1266.9382922338036 31.4563 0.2368 1707 +1709 3 -31.24895635985507 -1267.9362607974113 30.8518 0.2368 1708 +1710 3 -30.86852895237365 -1268.9941971129035 30.3349 0.2368 1709 +1711 3 -30.295265679666045 -1269.9617736525965 29.8729 0.2368 1710 +1712 3 -29.732234948379528 -1270.9411567623279 29.449 0.2368 1711 +1713 3 -29.271482492031964 -1271.9726086196483 29.0091 0.2368 1712 +1714 3 -29.11500716910524 -1273.0660811676871 28.362 0.2368 1713 +1715 3 -29.349422152517604 -1273.2679212418839 27.4872 0.2368 1714 +1716 3 -29.95982931777985 -1273.9614591086201 26.1086 0.2367 1715 +1717 3 -30.43489619061245 -1274.962449955899 25.6664 0.2364 1716 +1718 3 -30.751646520523536 -1276.0527631533344 25.3546 0.2363 1717 +1719 3 -31.13152294092771 -1277.114853900503 24.8951 0.2361 1718 +1720 3 -31.320410013945775 -1278.1991142030347 24.3008 0.236 1719 +1721 3 -31.456720787003235 -1279.3034090428073 23.6793 0.2358 1720 +1722 3 -31.355251799360417 -1280.4013473582636 23.137 0.2357 1721 +1723 3 -31.344583384829548 -1281.51331086258 22.6352 0.2355 1722 +1724 3 -31.813810288692878 -1282.5215110622876 22.206 0.2354 1723 +1725 3 -32.53403535229171 -1283.3925368700363 21.8399 0.2352 1724 +1726 3 -33.50085687013251 -1283.9626362935055 21.4866 0.2351 1725 +1727 3 -34.383385819312196 -1284.663567719438 21.1046 0.2349 1726 +1728 3 -35.01569386251953 -1285.5987556462717 20.7426 0.2348 1727 +1729 3 -35.62343993050706 -1286.5565251889311 20.3853 0.2346 1728 +1730 3 -36.36754311217703 -1287.4127656837854 20.0519 0.2345 1729 +1731 3 -37.27494276817157 -1288.0927138320299 19.7467 0.2343 1730 +1732 3 -38.31558364477797 -1288.5362252929144 19.4043 0.2342 1731 +1733 3 -39.415206893979814 -1288.8052932393794 19.0078 0.234 1732 +1734 3 -40.523115276604926 -1288.9558519180032 18.4293 0.2338 1733 +1735 3 -41.633185407897884 -1288.8647612290665 17.8004 0.2337 1734 +1736 3 -42.73768627790179 -1288.6452367699258 17.3069 0.2335 1735 +1737 3 -43.780036498741765 -1288.249352800669 16.8505 0.2334 1736 +1738 3 -44.830493067877114 -1288.6331644945503 16.4831 0.2332 1737 +1739 3 -45.622154688886326 -1289.444688048011 16.2868 0.2331 1738 +1740 3 -46.62831557516495 -1289.9880251081522 16.2302 0.2329 1739 +1741 3 -47.55906728205673 -1290.6366660412716 16.3257 0.2328 1740 +1742 3 -48.231827711379026 -1291.5564573951874 16.5521 0.2326 1741 +1743 3 -48.86118924092699 -1292.5073239079666 16.7734 0.2325 1742 +1744 3 -49.5984410659932 -1293.3659263750237 16.9924 0.2323 1743 +1745 3 -50.5704211047011 -1293.953986579725 17.2838 0.2322 1744 +1746 3 -51.5469138607055 -1294.5018592816105 17.5189 0.232 1745 +1747 3 -52.19302934874611 -1295.432152878339 17.6854 0.2319 1746 +1748 3 -52.88228365367013 -1296.1700476900455 17.7998 0.2317 1747 +1749 3 -54.00688062480231 -1296.3765255157807 17.804 0.2316 1748 +1750 3 -55.10623899070555 -1296.6655027524598 17.6847 0.2314 1749 +1751 3 -56.138216915199735 -1297.1427771110384 17.4479 0.2313 1750 +1752 3 -57.05377466407003 -1297.8008596351065 17.143 0.2311 1751 +1753 3 -57.956585619971236 -1298.4752874725395 16.8385 0.2309 1752 +1754 3 -59.02002894032836 -1298.6347852919225 16.5534 0.2308 1753 +1755 3 -60.149643470308376 -1298.5731977634932 16.264 0.2306 1754 +1756 3 -61.10507868233793 -1299.091928402278 15.9227 0.2305 1755 +1757 3 -61.55029291635441 -1300.0826688858706 15.4957 0.2303 1756 +1758 3 -61.53676938418016 -1301.196985750177 15.0253 0.2302 1757 +1759 3 -61.39828636146052 -1302.1431710715692 13.8252 0.2299 1758 +1760 3 -61.3339057048446 -1303.1939476896255 12.7413 0.2297 1759 +1761 3 -60.78118801409522 -1303.972845086163 11.3779 0.2295 1760 +1762 3 -60.01749019231909 -1304.7172543062927 10.389 0.2294 1761 +1763 3 -59.46788770210367 -1305.6551219689986 9.5659 0.2292 1762 +1764 3 -59.37600096565512 -1306.761532619555 8.8981 0.2291 1763 +1765 3 -59.437565569636604 -1307.8212915164445 7.8529 0.2289 1764 +1766 3 -28.566586257124584 -1273.3225756185093 27.9877 0.2368 1714 +1767 3 -27.954304659210152 -1274.266168615969 27.7148 0.2365 1766 +1768 3 -27.55591336891365 -1275.3359522482124 27.5641 0.2364 1767 +1769 3 -27.383562639863214 -1276.4640365208604 27.4461 0.2362 1768 +1770 3 -26.879908223301754 -1277.4866073979533 27.3802 0.2361 1769 +1771 3 -26.100055391420597 -1278.3205080458765 27.3366 0.2359 1770 +1772 3 -25.690353778109625 -1279.384630707063 27.2341 0.2358 1771 +1773 3 -25.436426731317 -1280.4989601847792 27.1525 0.2356 1772 +1774 3 -25.205046064266412 -1281.6203402483234 27.1058 0.2355 1773 +1775 3 -24.753914196779704 -1282.6710870342517 27.0952 0.2354 1774 +1776 3 -24.439852019289845 -1283.7698163178652 27.1143 0.2352 1775 +1777 3 -24.441292797922074 -1284.9121122708289 27.1858 0.2351 1776 +1778 3 -24.171378433588814 -1286.0218968967479 27.3224 0.2349 1777 +1779 3 -24.024239277448544 -1287.1547964151214 27.4458 0.2348 1778 +1780 3 -23.908330661100024 -1288.2894027973773 27.5531 0.2346 1779 +1781 3 -24.078269182235488 -1289.4197672470282 27.6742 0.2345 1780 +1782 3 -24.326709158844437 -1290.5339424567787 27.8484 0.2343 1781 +1783 3 -24.487999448550454 -1291.663099391153 27.9645 0.2342 1782 +1784 3 -24.672209527042355 -1292.7484758129453 27.9896 0.234 1783 +1785 3 -24.017778581719824 -1293.6689778486868 27.9698 0.2339 1784 +1786 3 -23.195881826592654 -1294.4555545225792 27.9195 0.2337 1785 +1787 3 -22.44368463109106 -1295.3078629345282 27.8353 0.2336 1786 +1788 3 -21.61114187132239 -1296.0812050859445 27.7245 0.2334 1787 +1789 3 -21.034714749376576 -1297.04953664749 27.5971 0.2333 1788 +1790 3 -20.878183959053956 -1298.149783184263 27.3921 0.2331 1789 +1791 3 -20.96111104448562 -1299.2710339048879 27.0404 0.233 1790 +1792 3 -20.778423042388624 -1300.387481993197 26.6977 0.2328 1791 +1793 3 -20.38547779661667 -1301.4484055690618 26.4077 0.2327 1792 +1794 3 -19.949005302461217 -1302.4947816830122 26.1516 0.2325 1793 +1795 3 -19.89311439476336 -1303.59514664812 25.8945 0.2324 1794 +1796 3 -19.838304370242042 -1304.6826772183624 25.6257 0.2322 1795 +1797 3 -19.31447406365777 -1305.6834560450288 25.3381 0.2321 1796 +1798 3 -18.86611281350116 -1306.707734478541 25.0263 0.2319 1797 +1799 3 -18.542341752717505 -1307.7938052636187 24.6569 0.2318 1798 +1800 3 -18.059726773776504 -1308.810410232179 24.2282 0.2316 1799 +1801 3 -17.522444609136983 -1309.8069114993937 23.8456 0.2315 1800 +1802 3 -16.827264857740943 -1310.6888675262162 23.505 0.2313 1801 +1803 3 -15.873196850593331 -1311.2840988574962 23.2133 0.2312 1802 +1804 3 -15.047519475574632 -1312.0441712503525 22.975 0.231 1803 +1805 3 -14.389654287085591 -1312.974652563316 22.8043 0.2309 1804 +1806 3 -13.480344660581693 -1313.6215761315584 22.698 0.2307 1805 +1807 3 -12.3642777943179 -1313.8096934620412 22.6911 0.2306 1806 +1808 3 -11.373507176823466 -1314.348911148611 22.7407 0.2304 1807 +1809 3 -10.417517379260687 -1314.9778232863187 22.7535 0.2303 1808 +1810 3 -9.316828571112353 -1315.272114838384 22.7615 0.2301 1809 +1811 3 -8.175974882821492 -1315.3390015479258 22.7989 0.23 1810 +1812 3 -7.055173252263614 -1315.1240575902561 22.9073 0.2298 1811 +1813 3 -5.913183621848418 -1315.1097228762974 23.0317 0.2297 1812 +1814 3 -4.837064992684702 -1315.4862588585975 23.1595 0.2295 1813 +1815 3 -3.696931090162707 -1315.5387980279859 23.3285 0.2294 1814 +1816 3 -2.6406648987442622 -1315.9704981355449 23.5171 0.2292 1815 +1817 3 -1.9241041510957189 -1316.8566841740997 23.708 0.2291 1816 +1818 3 -1.7024330598754887 -1317.9666601095673 24.1195 0.2289 1817 +1819 3 -54.372814977472785 -1191.3687980882264 43.4277 0.2467 1592 +1820 3 -53.279464562898966 -1191.6904896034257 43.6601 0.2462 1819 +1821 3 -52.175306275500475 -1191.9772490433215 43.8281 0.2458 1820 +1822 3 -51.05906521173239 -1191.9800324868456 44.1731 0.2454 1821 +1823 3 -50.023643834018515 -1191.5583928533042 44.6043 0.245 1822 +1824 3 -48.9966713695203 -1191.767703285826 45.0145 0.2447 1823 +1825 3 -48.00981962311653 -1192.3093297997816 45.4846 0.2443 1824 +1826 3 -46.916832413223176 -1192.3571605326802 45.9592 0.2439 1825 +1827 3 -45.81504980671491 -1192.131135206675 46.4335 0.2436 1826 +1828 3 -45.120655211073085 -1192.9222516301825 46.9608 0.2432 1827 +1829 3 -44.51123252492164 -1193.832739845155 47.5096 0.2428 1828 +1830 3 -43.38927743174719 -1193.8709814311565 48.0421 0.2424 1829 +1831 3 -42.29530824592155 -1194.0472100056386 48.5901 0.242 1830 +1832 3 -41.3400303144515 -1194.6337157376192 49.1439 0.2417 1831 +1833 3 -40.37666447818407 -1195.2003426920724 49.7454 0.2413 1832 +1834 3 -39.3644023380935 -1195.6565085607422 50.2835 0.2409 1833 +1835 3 -38.27712674856002 -1195.6515073204346 50.7786 0.2405 1834 +1836 3 -37.28779649610726 -1195.109242531257 51.1221 0.2402 1835 +1837 3 -36.37247080349857 -1194.4311131583122 51.3377 0.2398 1836 +1838 3 -35.35484352074059 -1193.9478697896184 51.4587 0.2395 1837 +1839 3 -34.22497881045962 -1193.778415617461 51.5024 0.2391 1838 +1840 3 -33.1072356049778 -1193.5869496502519 51.4548 0.2387 1839 +1841 3 -32.12143029917087 -1193.04544298451 51.3699 0.2384 1840 +1842 3 -31.352905802526664 -1192.2050624825597 51.4102 0.238 1841 +1843 3 -30.55299159104254 -1191.4354185751158 51.6127 0.2376 1842 +1844 3 -29.50089903863949 -1191.0170303927086 51.8322 0.2373 1843 +1845 3 -28.448001507617732 -1190.612937384642 52.0257 0.2369 1844 +1846 3 -27.494966919209332 -1189.985461828706 52.1968 0.2365 1845 +1847 3 -26.782129513414645 -1189.1484395871257 52.3639 0.2362 1846 +1848 3 -26.277001278399553 -1188.1262710510268 52.5101 0.2358 1847 +1849 3 -25.540553739415373 -1187.2774360362425 52.6039 0.2355 1848 +1850 3 -24.641624009474754 -1186.570531806075 52.673 0.2351 1849 +1851 3 -23.870996315456352 -1185.7423573092374 52.7209 0.2347 1850 +1852 3 -23.18090039307191 -1184.8333909578755 52.7335 0.2344 1851 +1853 3 -22.457922534408738 -1183.9471742936885 52.7464 0.234 1852 +1854 3 -21.94784380935613 -1182.9420349281033 52.817 0.2336 1853 +1855 3 -21.43985735511467 -1181.9289085478786 52.9617 0.2333 1854 +1856 3 -20.72293680099972 -1181.0504060953565 53.2182 0.2329 1855 +1857 3 -19.87338118411475 -1180.3133997562932 53.6698 0.2325 1856 +1858 3 -18.863215132911193 -1179.8924939366666 54.3007 0.2321 1857 +1859 3 -17.778203300872917 -1179.7547179796316 55.0883 0.2318 1858 +1860 3 -16.756899407649144 -1179.4720486185647 56.1042 0.2313 1859 +1861 3 -15.68835062477416 -1179.270442198487 56.9663 0.231 1860 +1862 3 -14.589845797204646 -1179.4170026426946 57.6428 0.2306 1861 +1863 3 -13.530340466287782 -1179.7796873318653 58.1997 0.2302 1862 +1864 3 -12.415245655681701 -1179.6931443173623 58.737 0.2299 1863 +1865 3 -11.295633718133956 -1179.5112113371179 59.0766 0.2295 1864 +1866 3 -10.32021943625955 -1178.9331304096381 59.4569 0.2292 1865 +1867 2 -68.22581972427406 -1153.4781047342497 38.0766 0.1144 610 +1868 2 -68.5956949321764 -1152.4109825010546 38.472 0.1144 1867 +1869 2 -69.14494863662037 -1151.419257449362 38.8354 0.1144 1868 +1870 2 -69.50921283023195 -1150.3459865156028 39.1776 0.1144 1869 +1871 2 -69.42704386823573 -1149.2212108483318 39.5072 0.1144 1870 +1872 2 -68.96067518359882 -1148.20396849275 40.0131 0.1144 1871 +1873 2 -68.94159978683234 -1147.3435805748675 38.1422 0.1144 1872 +1874 2 -68.98216838789921 -1146.2070345799302 37.8454 0.1144 1873 +1875 2 -68.82976658964901 -1145.1638643580154 37.7216 0.1144 1874 +1876 2 -68.33220329384051 -1144.1383639013288 37.518 0.1144 1875 +1877 2 -67.42271757020114 -1143.4530251759556 37.2669 0.1144 1876 +1878 2 -67.01939710447897 -1144.174679589044 36.619 0.1144 1877 +1879 2 -66.65784736826504 -1145.2523187857344 36.4011 0.1144 1878 +1880 2 -66.7853716586938 -1146.3795015638811 36.3334 0.1144 1879 +1881 2 -66.930404236931 -1147.5133379018284 36.2639 0.1144 1880 +1882 2 -67.02927960969998 -1148.652373507356 36.1796 0.1144 1881 +1883 2 -67.07807890591022 -1149.7941995530782 36.0212 0.1144 1882 +1884 2 -67.07252215706336 -1150.9348940663208 35.8453 0.1144 1883 +1885 2 -67.19790181086825 -1152.0701490519573 35.6765 0.1144 1884 +1886 2 -67.31201258090852 -1153.2038768641596 35.4236 0.1144 1885 +1887 2 -67.61917445645923 -1154.2990953182625 35.1322 0.1144 1886 +1888 2 -68.1668668871759 -1155.2976575152918 34.8939 0.1144 1887 +1889 2 -68.71369646283159 -1156.2999150446662 34.7035 0.1144 1888 +1890 2 -69.5719386488127 -1157.048951492513 34.5318 0.1144 1889 +1891 2 -70.37499888726921 -1157.859499586959 34.3367 0.1144 1890 +1892 2 -71.2848457083162 -1158.54635145762 34.0987 0.1144 1891 +1893 2 -70.28891316659792 -1158.7815494005245 33.8993 0.1144 1892 +1894 2 -69.16108417643261 -1158.951755214005 33.7789 0.1144 1893 +1895 2 -68.01722512141492 -1158.9710161136238 33.7002 0.1144 1894 +1896 2 -66.88390664687665 -1159.0277445480313 33.6507 0.1144 1895 +1897 2 -65.8691090473007 -1159.483643124356 33.6129 0.1144 1896 +1898 2 -65.19365579408696 -1160.3925144863883 33.6098 0.1144 1897 +1899 2 -64.74448336214562 -1161.4444656860092 33.6616 0.1144 1898 +1900 2 -64.30680335271404 -1162.499490031389 33.7868 0.1144 1899 +1901 2 -63.74605481671375 -1163.4707681065938 34.0441 0.1144 1900 +1902 2 -62.83577283277856 -1164.0996042615047 34.4663 0.1144 1901 +1903 2 -61.76037158033705 -1164.4444188729228 34.8916 0.1144 1902 +1904 2 -60.65720106358924 -1164.690232686567 35.3125 0.1144 1903 +1905 2 -59.545532594158544 -1164.7816321070989 35.8593 0.1144 1904 +1906 2 -58.45789179934593 -1164.932288011263 36.5263 0.1144 1905 +1907 2 -57.36390409871791 -1165.174238421212 37.0796 0.1144 1906 +1908 2 -56.25021631670103 -1165.1356299482272 37.508 0.1144 1907 +1909 2 -55.17935481387491 -1165.35294240016 37.8865 0.1144 1908 +1910 2 -54.08830200780665 -1165.6074958412496 38.3373 0.1144 1909 +1911 2 -52.97257910922133 -1165.8147228992616 38.691 0.1144 1910 +1912 2 -51.95042770285153 -1166.3022545520355 38.9231 0.1144 1911 +1913 2 -50.99718829130666 -1166.9289837154524 39.1199 0.1144 1912 +1914 2 -50.12643218494975 -1167.6640471502951 39.3126 0.1144 1913 +1915 2 -49.24618763246116 -1168.39468685481 39.2888 0.1144 1914 +1916 2 -48.448203538952214 -1169.2080522318129 39.0813 0.1144 1915 +1917 2 -47.84175029090744 -1170.1727174939301 38.869 0.1144 1916 +1918 2 -47.295783966218266 -1171.1745624830905 38.635 0.1144 1917 +1919 2 -46.819297456529284 -1172.2098418154856 38.4238 0.1144 1918 +1920 2 -46.09191721695652 -1173.0893773958228 38.2676 0.1144 1919 +1921 2 -45.16500170346211 -1173.7563502219882 38.1788 0.1144 1920 +1922 2 -44.131793238277055 -1174.2465932305768 38.129 0.1144 1921 +1923 2 -43.01178967865678 -1174.4739609425283 38.0948 0.1144 1922 +1924 2 -41.887958643961895 -1174.685594601138 38.0696 0.1144 1923 +1925 2 -40.79852640794212 -1175.0337575703365 38.0405 0.1144 1924 +1926 2 -39.74688725428359 -1175.481800582214 37.9988 0.1144 1925 +1927 2 -38.67312439415639 -1175.8785655128863 37.9403 0.1144 1926 +1928 2 -37.58457691367164 -1176.2273896988745 37.8633 0.1144 1927 +1929 2 -36.49394336554195 -1176.570823307734 37.7678 0.1144 1928 +1930 2 -35.4888775737071 -1177.109236015685 37.5906 0.1144 1929 +1931 2 -34.53720367326275 -1177.7355188888446 37.324 0.1144 1930 +1932 2 -34.68169796167922 -1178.295619425012 37.0546 0.1144 1931 +1933 2 -35.12150620534766 -1179.3474790158325 36.8892 0.1144 1932 +1934 2 -35.9023281031204 -1180.176637489201 36.8262 0.1144 1933 +1935 2 -36.79550305694153 -1180.8908034376097 36.7483 0.1144 1934 +1936 2 -37.78490688314457 -1181.461402209686 36.6433 0.1144 1935 +1937 2 -38.76870210410334 -1182.0432261119267 36.5061 0.1144 1936 +1938 2 -39.42943552622535 -1182.9650152390545 36.2432 0.1144 1937 +1939 2 -40.39631180124036 -1183.3364227225725 37.5432 0.1144 1938 +1940 2 -41.37781662314802 -1183.8215256132792 38.2936 0.1144 1939 +1941 2 -42.16767247303022 -1184.5487162598133 39.1994 0.1144 1940 +1942 2 -42.90769560796315 -1185.3567877478417 39.9521 0.1144 1941 +1943 2 -43.57943372308773 -1186.2759507120045 40.0131 0.1144 1942 +1944 2 -44.21948880499701 -1187.2052188929524 39.5716 0.1144 1943 +1945 2 -44.0270667937541 -1186.799476684661 37.3831 0.1144 1944 +1946 2 -43.631560329434194 -1185.96829170123 35.952 0.1144 1945 +1947 2 -43.15787686820681 -1184.9694423889912 35.2929 0.1144 1946 +1948 2 -42.61464891453039 -1183.9895881700668 34.7365 0.1144 1947 +1949 2 -42.04935300586965 -1183.0284490616896 34.1062 0.1144 1948 +1950 2 -41.48722955865992 -1182.070551170421 33.4384 0.1144 1949 +1951 2 -40.911725418098854 -1181.1193358718701 32.779 0.1144 1950 +1952 2 -40.31399696499989 -1180.1758231658846 32.1712 0.1144 1951 +1953 2 -39.70963208182968 -1179.2322221654663 31.6114 0.1144 1952 +1954 2 -39.17219173130974 -1178.245243786963 31.103 0.1144 1953 +1955 2 -38.82037649082946 -1177.1749298906852 30.6793 0.1144 1954 +1956 2 -38.517133486369346 -1176.0821202639677 30.3106 0.1144 1955 +1957 2 -38.16741051670016 -1175.00381935305 29.9373 0.1144 1956 +1958 2 -37.61058694313988 -1174.0330979934793 29.4465 0.1144 1957 +1959 2 -36.99748243252412 -1173.1016147037403 28.8268 0.1144 1958 +1960 2 -36.38812330571619 -1172.1791243056462 28.1005 0.1144 1959 +1961 2 -35.78579143184152 -1171.2650617018194 27.2894 0.1144 1960 +1962 2 -35.21861517201535 -1170.3417371974929 26.3981 0.1144 1961 +1963 2 -34.69662065864287 -1169.401814808139 25.4374 0.1144 1962 +1964 2 -34.18572464333562 -1168.463314860593 24.4409 0.1144 1963 +1965 2 -33.675616476917696 -1167.5281163209484 23.4231 0.1144 1964 +1966 2 -33.136685905557385 -1166.6113546729434 22.3872 0.1144 1965 +1967 2 -32.49294911100071 -1165.7711456576776 21.3341 0.1144 1966 +1968 2 -31.831739264719374 -1164.9417944720026 20.2825 0.1144 1967 +1969 2 -31.169644662902897 -1164.1117820695376 19.2427 0.1144 1968 +1970 2 -30.49516195647857 -1163.2822542949966 18.2474 0.1144 1969 +1971 2 -29.791319851374965 -1162.4588605003376 17.3477 0.1144 1970 +1972 2 -29.080929610632722 -1161.628741981174 16.5117 0.1144 1971 +1973 2 -28.366259401392256 -1160.7947014893366 15.7294 0.1144 1972 +1974 2 -27.648298710813947 -1159.957229855916 14.9908 0.1144 1973 +1975 2 -26.88666321590364 -1159.149372601884 14.3125 0.1144 1974 +1976 2 -26.111399274072426 -1158.3505106485425 13.679 0.1144 1975 +1977 2 -25.332792485090465 -1157.5483027464675 13.0774 0.1144 1976 +1978 2 -24.5177726100178 -1156.7814639999006 12.4982 0.1144 1977 +1979 2 -23.484040273921096 -1156.3702530354212 11.9553 0.1144 1978 +1980 2 -22.445182243994168 -1155.941218848373 11.4373 0.1144 1979 +1981 2 -21.626422495743043 -1155.176072245006 10.9475 0.1144 1980 +1982 2 -20.827404658893613 -1154.3788079372657 10.4934 0.1144 1981 +1983 2 -20.02697058340192 -1153.5792645358224 10.0836 0.1144 1982 +1984 2 -18.918910235183375 -1153.337290229943 9.8689 0.1144 1983 +1985 2 -17.789586312758843 -1153.1493875470464 9.8211 0.1144 1984 +1986 2 -16.66668389387337 -1152.9640234252186 10.0965 0.1144 1985 +1987 2 -44.37491901307391 -1187.5531263668836 39.5024 0.1144 1944 +1988 2 -44.84168092961886 -1188.596082053029 39.4397 0.1144 1987 +1989 2 -45.306174679023684 -1189.6362349873439 39.6642 0.1144 1988 +1990 2 -45.76500814990811 -1190.6636356180602 40.1523 0.1144 1989 +1991 2 -46.2173489525498 -1191.6775375355382 40.8279 0.1144 1990 +1992 2 -46.850294595563014 -1192.5660477003594 41.5691 0.1144 1991 +1993 2 -47.61986233025374 -1193.3587085873237 42.287 0.1144 1992 +1994 2 -48.410857916379996 -1194.1363692348614 42.9666 0.1144 1993 +1995 2 -49.20582473940965 -1194.916353516935 43.6184 0.1144 1994 +1996 2 -50.000706369589466 -1195.696285433196 44.2492 0.1144 1995 +1997 2 -50.717947274398966 -1196.5481046067698 44.8652 0.1144 1996 +1998 2 -51.30618417978309 -1197.4938823783127 45.4692 0.1144 1997 +1999 2 -51.83876853786461 -1198.47787590549 46.0639 0.1144 1998 +2000 2 -52.36444917352941 -1199.46431659772 46.6525 0.1144 1999 +2001 2 -52.82462771835236 -1200.4830361699696 47.238 0.1144 2000 +2002 2 -53.202729904289754 -1201.5346458822628 47.8229 0.1144 2001 +2003 2 -53.552183172567254 -1202.598108421937 48.4078 0.1144 2002 +2004 2 -53.89910098135931 -1203.661303669266 48.9941 0.1144 2003 +2005 2 -54.272972463028054 -1204.7155950119195 49.5754 0.1144 2004 +2006 2 -54.67316922782044 -1205.762004764096 50.1508 0.1144 2005 +2007 2 -55.076188283219096 -1206.8059235976198 50.7256 0.1144 2006 +2008 2 -55.57303007674898 -1207.8043351371175 51.3111 0.1144 2007 +2009 2 -56.194295089286925 -1208.7313266334086 51.9184 0.1144 2008 +2010 2 -56.86180629426269 -1209.622419805435 52.5535 0.1144 2009 +2011 2 -57.530841571089184 -1210.5089328895806 53.2221 0.1144 2010 +2012 2 -58.198132338902894 -1211.391791293398 53.9302 0.1144 2011 +2013 2 -58.86301738091373 -1212.2718797724215 54.6809 0.1144 2012 +2014 2 -59.0771078230772 -1213.2561292746182 55.5708 0.1144 2013 +2015 2 -58.85212332607176 -1214.2928184354118 56.6017 0.1144 2014 +2016 2 -58.58241878608925 -1215.2886379527506 57.8038 0.1144 2015 +2017 2 -58.45500272477466 -1216.1623938439006 59.4905 0.1144 2016 +2018 2 -58.805102897607355 -1217.1591122339096 60.5629 0.1144 2017 +2019 2 -59.19235025453446 -1218.1719733223877 61.4527 0.1144 2018 +2020 2 -59.58725876477706 -1219.2029249257803 62.1886 0.1144 2019 +2021 2 -60.0202163443783 -1220.2330838621906 62.7939 0.1144 2020 +2022 2 -60.62635856359856 -1221.1804771016 63.3021 0.1144 2021 +2023 2 -61.235182413179416 -1222.1321010452782 63.7476 0.1144 2022 +2024 2 -61.84551940804812 -1223.0833638915487 64.1735 0.1144 2023 +2025 2 -62.45572666923431 -1224.0371293702674 64.5772 0.1144 2024 +2026 2 -63.06690387880519 -1224.9916084315892 64.9496 0.1144 2025 +2027 2 -63.66400324961461 -1225.9602060783852 65.2506 0.1144 2026 +2028 2 -64.24033908736146 -1226.9362304131887 65.627 0.1144 2027 +2029 2 -38.68569664965605 -1183.3994825605869 35.7266 0.1144 1938 +2030 2 -37.70503435052967 -1183.9636944844879 35.3128 0.1144 2029 +2031 2 -36.71093181244771 -1184.4953472318512 34.8351 0.1144 2030 +2032 2 -35.90602417365784 -1185.2346153449316 34.2471 0.1144 2031 +2033 2 -35.40875051392226 -1186.2315283588568 33.7212 0.1144 2032 +2034 2 -35.29654963625154 -1187.340242412637 33.3113 0.1144 2033 +2035 2 -35.699477988170884 -1188.3734238455033 32.998 0.1144 2034 +2036 2 -35.76792849230327 -1189.4723947861949 32.7113 0.1144 2035 +2037 2 -35.42772382372169 -1190.5523552083746 32.4528 0.1144 2036 +2038 2 -35.51257200703196 -1191.6639877491853 32.2162 0.1144 2037 +2039 2 -35.77500152796949 -1192.7706808035327 31.9141 0.1144 2038 +2040 2 -36.213875751873275 -1193.815275574529 31.5921 0.1144 2039 +2041 2 -36.83249988076392 -1194.7662327907874 31.2665 0.1144 2040 +2042 2 -37.132056070394924 -1195.8365867412422 30.7896 0.1144 2041 +2043 2 -37.01495845357272 -1196.9141195194602 29.9832 0.1144 2042 +2044 2 -36.53906819913607 -1197.9241763523821 29.3804 0.1144 2043 +2045 2 -36.287778934407754 -1199.021228906015 28.8761 0.1144 2044 +2046 2 -36.08229128836962 -1200.1222540816243 28.3254 0.1144 2045 +2047 2 -35.74093255362419 -1200.8699045308404 26.9321 0.1144 2046 +2048 2 -35.85347220780238 -1200.2783435058927 25.6335 0.1144 2047 +2049 2 -34.866112003706064 -1199.8594830071975 24.8178 0.1144 2048 +2050 2 -33.77323571091944 -1199.6777851847976 24.1178 0.1144 2049 +2051 2 -32.668059607957844 -1199.4899355602502 23.5766 0.1144 2050 +2052 2 -31.844281489669868 -1199.8296611286582 23.2242 0.1144 2051 +2053 2 -32.23795035013603 -1200.8450607782047 23.2341 0.1144 2052 +2054 2 -32.856304085098316 -1201.805242249833 23.3661 0.1144 2053 +2055 2 -33.54799834562044 -1202.7138998696 23.5344 0.1144 2054 +2056 2 -34.3955414686107 -1203.4738496144332 23.7114 0.1144 2055 +2057 2 -34.588350514302476 -1204.553829948467 23.9434 0.1144 2056 +2058 2 -34.55454497540671 -1205.6946504012726 24.1355 0.1144 2057 +2059 2 -34.42491720865786 -1206.8275146835622 24.3346 0.1144 2058 +2060 2 -34.865624236007534 -1207.8691277048156 24.5407 0.1144 2059 +2061 2 -35.54800594672719 -1208.784151360726 24.7092 0.1144 2060 +2062 2 -36.0954639121357 -1209.785386575903 24.8781 0.1144 2061 +2063 2 -36.60171136799386 -1210.8055433106438 25.12 0.1144 2062 +2064 2 -37.10220404773253 -1211.832961763626 25.2684 0.1144 2063 +2065 2 -37.625155505317025 -1212.8500046058948 25.3301 0.1144 2064 +2066 2 -38.274971836332725 -1213.7918460925289 25.3103 0.1144 2065 +2067 2 -38.91225940249495 -1214.7408938300082 25.2176 0.1144 2066 +2068 2 -39.344062915932454 -1215.4387427934548 26.0314 0.1144 2067 +2069 2 -40.206727115730644 -1216.1368543378276 26.269 0.1144 2068 +2070 2 -41.25783259001969 -1216.5721255198732 26.2441 0.1144 2069 +2071 2 -42.36565778039363 -1216.8408354705134 26.398 0.1144 2070 +2072 2 -42.32971190840908 -1216.8294221323836 27.4054 0.1144 2071 +2073 2 -41.65049224142848 -1216.481765140527 29.1886 0.1144 2072 +2074 2 -41.83402216275948 -1215.8291363501903 30.3366 0.1144 2073 +2075 2 -42.72019397236187 -1215.2351323570506 31.3334 0.1144 2074 +2076 2 -43.687233619285564 -1214.7673679491722 32.2731 0.1144 2075 +2077 2 -44.63822878244787 -1214.4763767987195 33.6549 0.1144 2076 +2078 2 -43.230563126991285 -1217.2098977978062 26.125 0.1144 2071 +2079 2 -44.168847638589114 -1217.8310066250624 25.6769 0.1144 2078 +2080 2 -45.12390944157488 -1218.4005683622584 25.0301 0.1144 2079 +2081 2 -46.121100751419306 -1218.7006960543677 24.1299 0.1144 2080 +2082 2 -46.52440010333589 -1219.6656725580938 22.9975 0.1144 2081 +2083 2 -39.69733774077133 -1214.9186231263252 24.8721 0.1144 2067 +2084 2 -40.8000896031279 -1215.1694246615461 24.4608 0.1144 2083 +2085 2 -41.89790028019621 -1215.4171889796285 23.9634 0.1144 2084 +2086 2 -42.99263230087604 -1215.665760685376 23.4154 0.1144 2085 +2087 2 -44.09410686832598 -1215.8661250466307 22.8672 0.1144 2086 +2088 2 -45.21181001963117 -1216.0053319629906 22.3615 0.1144 2087 +2089 2 -46.32951868156596 -1216.1552239141952 21.9057 0.1144 2088 +2090 2 -47.33006034978905 -1216.5875862277117 21.5268 0.1144 2089 +2091 2 -48.195209359769876 -1217.3274867146215 21.2365 0.1144 2090 +2092 2 -49.06195670788827 -1218.0670784699364 21.0108 0.1144 2091 +2093 2 -49.93071585736493 -1218.807789446094 20.8325 0.1144 2092 +2094 2 -50.363519062326134 -1219.7291589245203 20.6728 0.1144 2093 +2095 2 -50.25042181002095 -1220.8654933785965 20.5094 0.1144 2094 +2096 2 -50.56144508866788 -1221.8516910109906 20.3637 0.1144 2095 +2097 2 -51.52269082830139 -1222.4331531232874 20.3035 0.1144 2096 +2098 2 -52.572051101040984 -1222.8888322516173 20.3139 0.1144 2097 +2099 2 -53.628373665176184 -1223.328601430277 20.3572 0.1144 2098 +2100 2 -54.73035268341454 -1223.6178983251143 20.3221 0.1144 2099 +2101 2 -55.850798727194444 -1223.8420141723404 20.1838 0.1144 2100 +2102 2 -56.978688286937256 -1223.7765492120707 20.0299 0.1144 2101 +2103 2 -57.99536933926191 -1223.276147235811 19.9713 0.1144 2102 +2104 2 -58.98854947667877 -1222.7089480515378 20.0053 0.1144 2103 +2105 2 -59.80300241406934 -1221.9192044268239 20.159 0.1144 2104 +2106 2 -59.64799296765682 -1220.7993076764392 20.4597 0.1144 2105 +2107 2 -59.48258939572867 -1219.7226739836756 21.3147 0.1144 2106 +2108 2 -33.97884143096394 -1178.3162120749378 37.0835 0.1144 1931 +2109 2 -32.92095156791396 -1178.6609914502724 36.8354 0.1144 2108 +2110 2 -31.853066410875385 -1178.4758741053884 36.5879 0.1144 2109 +2111 2 -30.85259652858832 -1178.8559480385074 36.5005 0.1144 2110 +2112 2 -30.07554334695459 -1179.6942693151746 36.4622 0.1144 2111 +2113 2 -29.333542764253878 -1180.5649355343837 36.4507 0.1144 2112 +2114 2 -28.596398173991645 -1181.4385866049188 36.4468 0.1144 2113 +2115 2 -27.882678515840325 -1182.3333270698404 36.442 0.1144 2114 +2116 2 -27.189766239047913 -1183.2421484751067 36.435 0.1144 2115 +2117 2 -26.54740304763874 -1184.1888491618724 36.4252 0.1144 2116 +2118 2 -25.98660145328921 -1185.1842750565402 36.4118 0.1144 2117 +2119 2 -25.49889842564818 -1186.2179420226516 36.3924 0.1144 2118 +2120 2 -25.077076000074555 -1187.2800138522766 36.3661 0.1144 2119 +2121 2 -24.73531133102199 -1188.3711055995586 36.3314 0.1144 2120 +2122 2 -24.238034569703245 -1189.374707409368 36.2782 0.1144 2121 +2123 2 -23.495011672804935 -1190.2447452388244 36.1967 0.1144 2122 +2124 2 -22.73074603085348 -1191.0949176263625 36.0942 0.1144 2123 +2125 2 -21.966119291494238 -1191.943576868613 35.9778 0.1144 2124 +2126 2 -21.201716090880154 -1192.793782083188 35.8557 0.1144 2125 +2127 2 -20.437450448928644 -1193.6439544707264 35.735 0.1144 2126 +2128 2 -19.672823709569514 -1194.4926137129767 35.6227 0.1144 2127 +2129 2 -18.90886679921283 -1195.3443844386525 35.5312 0.1144 2128 +2130 2 -18.100639237719747 -1196.1501622360897 35.4721 0.1144 2129 +2131 2 -17.162105362152545 -1196.785813126448 35.4449 0.1144 2130 +2132 2 -16.136505684470194 -1197.2942318428006 35.4444 0.1144 2131 +2133 2 -15.111586762353454 -1197.8015430521064 35.464 0.1144 2132 +2134 2 -14.065640714252481 -1198.2624759262449 35.5113 0.1144 2133 +2135 2 -12.994146021265522 -1198.6620436087478 35.593 0.1144 2134 +2136 2 -11.918118095581121 -1199.0493169917054 35.6947 0.1144 2135 +2137 2 -10.843060118281585 -1199.4373039572656 35.7994 0.1144 2136 +2138 2 -9.737389378131866 -1199.700361867956 35.8462 0.1144 2137 +2139 2 -8.680383578080352 -1200.0698650866934 35.7972 0.1144 2138 +2140 2 -7.738906290436887 -1200.714505767113 35.6891 0.1144 2139 +2141 2 -6.833100686730063 -1201.4105354635292 35.5494 0.1144 2140 +2142 2 -5.927157524360666 -1202.1065979869827 35.3979 0.1144 2141 +2143 2 -5.0203296064563006 -1202.801999293646 35.2531 0.1144 2142 +2144 2 -4.200392286874489 -1203.589780381231 35.1456 0.1144 2143 +2145 2 -3.5386082272948443 -1204.5178528668089 35.1014 0.1144 2144 +2146 2 -2.9415027651361356 -1205.4936634821743 35.1134 0.1144 2145 +2147 2 -2.3453344243251877 -1206.4700501214802 35.166 0.1144 2146 +2148 2 -1.7462695266211767 -1207.444656323153 35.2447 0.1144 2147 +2149 2 -1.1254272991735093 -1208.4044680018783 35.3318 0.1144 2148 +2150 2 -0.4918389712934186 -1209.3565623673558 35.415 0.1144 2149 +2151 2 0.14205808818161358 -1210.3070583946958 35.4906 0.1144 2150 +2152 2 0.7771595613495492 -1211.2595138575812 35.5594 0.1144 2151 +2153 2 1.4117702034271815 -1212.2109798333058 35.6247 0.1144 2152 +2154 2 2.046243286842298 -1213.1624129819934 35.6885 0.1144 2153 +2155 2 2.6807687360700925 -1214.1139313235308 35.754 0.1144 2154 +2156 2 3.3152418194852658 -1215.0653644722188 35.8221 0.1144 2155 +2157 2 3.949852461562841 -1216.0168304479432 35.8932 0.1144 2156 +2158 2 4.654615156689715 -1216.9143767662786 35.971 0.1144 2157 +2159 2 5.467070320868459 -1217.7161473981923 36.0581 0.1144 2158 +2160 2 6.319037050390705 -1218.4775501443046 36.1542 0.1144 2159 +2161 2 7.171717362515608 -1219.2399228388017 36.258 0.1144 2160 +2162 2 8.022832163539874 -1220.001849243041 36.3684 0.1144 2161 +2163 2 8.875374917002318 -1220.7641891105009 36.4837 0.1144 2162 +2164 2 9.727426839374345 -1221.5255394908004 36.6041 0.1144 2163 +2165 2 10.578594006211404 -1222.2875510878898 36.7298 0.1144 2164 +2166 2 11.43019963832603 -1223.05046697929 36.8626 0.1144 2165 +2167 2 12.282251560698057 -1223.8118173595892 37.0042 0.1144 2166 +2168 2 13.134664580477875 -1224.5716545946007 37.1582 0.1144 2167 +2169 2 13.991751493200582 -1225.3259191529883 37.3369 0.1144 2168 +2170 2 14.852437618856072 -1226.0751542316543 37.5449 0.1144 2169 +2171 2 15.711662965036453 -1226.824113405763 37.7784 0.1144 2170 +2172 2 16.570259921463958 -1227.5720502656739 38.0344 0.1144 2171 +2173 2 17.355996570610785 -1228.3916526376738 38.3197 0.1144 2172 +2174 2 17.896298822659844 -1229.375498507935 38.638 0.1144 2173 +2175 2 18.31299486186674 -1230.4313309335166 38.9858 0.1144 2174 +2176 2 18.729999632668637 -1231.4855650209604 39.3574 0.1144 2175 +2177 2 19.14642837953039 -1232.5388619870564 39.7463 0.1144 2176 +2178 2 19.563879440589744 -1233.5915305633998 40.147 0.1144 2177 +2179 2 19.979732163511414 -1234.6438904081479 40.5546 0.1144 2178 +2180 2 20.395617713470074 -1235.6961126942338 40.9668 0.1144 2179 +2181 2 20.8114704363918 -1236.748472538982 41.3834 0.1144 2180 +2182 2 21.22727079350068 -1237.8007471908804 41.8062 0.1144 2181 +2183 2 21.643569806679807 -1238.8515415245283 42.2372 0.1144 2182 +2184 2 22.05918806429338 -1239.9012283511286 42.6798 0.1144 2183 +2185 2 22.48969395738004 -1240.944581276086 43.1393 0.1144 2184 +2186 2 22.949635924479367 -1241.9724229939106 43.6234 0.1144 2185 +2187 2 23.420279363616032 -1242.9938041779933 44.1406 0.1144 2186 +2188 2 23.8891751921567 -1244.0121512465203 44.6978 0.1144 2187 +2189 2 24.358164825759843 -1245.0264497102735 45.302 0.1144 2188 +2190 2 24.815521376607535 -1246.037099696865 45.9808 0.1144 2189 +2191 2 25.22680591483686 -1247.042498050063 46.8448 0.1144 2190 +2192 2 25.604326862835478 -1248.0324967287602 47.8979 0.1144 2191 +2193 2 25.975770274973627 -1249.0059242409966 49.0552 0.1144 2192 +2194 2 26.34223347162026 -1249.9691489372663 50.2684 0.1144 2193 +2195 2 26.708377010109075 -1250.9297529812006 51.4982 0.1144 2194 +2196 2 27.07643854489345 -1251.893286409065 52.7083 0.1144 2195 +2197 2 27.447220740241676 -1252.8658291657666 53.8698 0.1144 2196 +2198 2 28.146700283000428 -1253.6673187909407 54.8355 0.1144 2197 +2199 2 28.98698017888131 -1254.3768626138146 55.6007 0.1144 2198 +2200 2 29.848637969431536 -1255.0839476525364 56.2344 0.1144 2199 +2201 2 30.71550733919827 -1255.797219729489 56.7714 0.1144 2200 +2202 2 31.587020876454062 -1256.5117454843642 57.2404 0.1144 2201 +2203 2 32.47433653017191 -1257.21244976626 57.6744 0.1144 2202 +2204 2 33.38735079377051 -1257.878576867094 58.1056 0.1144 2203 +2205 2 34.305091316125015 -1258.5392164841535 58.5337 0.1144 2204 +2206 2 35.22371659401449 -1259.1991948844232 58.9504 0.1144 2205 +2207 2 36.187008856531634 -1259.794155821775 59.3379 0.1144 2206 +2208 2 37.28248298388047 -1260.0755715397252 59.6285 0.1144 2207 +2209 2 38.39771884549515 -1260.3125605330738 59.8408 0.1144 2208 +2210 2 39.51509624215055 -1260.550932938028 59.9981 0.1144 2209 +2211 2 40.62220345225484 -1260.8359971331406 60.1266 0.1144 2210 +2212 2 41.162579278054125 -1261.7915090205033 60.2804 0.1144 2211 +2213 2 41.62935380286632 -1262.8327580555506 60.4685 0.1144 2212 +2214 2 42.09607596186578 -1263.8739218977476 60.6886 0.1144 2213 +2215 2 42.188409681108396 -1265.0028296638166 60.9224 0.1144 2214 +2216 2 41.98581817837271 -1266.1238024792851 61.1332 0.1144 2215 +2217 2 41.767674721790854 -1267.243535644977 61.3259 0.1144 2216 +2218 2 41.549084974951654 -1268.3648343217696 61.4989 0.1144 2217 +2219 2 41.33156990812256 -1269.485589801659 61.6585 0.1144 2218 +2220 2 41.11457849942093 -1270.6071972100467 61.8103 0.1144 2219 +2221 2 40.896126311244245 -1271.7285287138761 61.9587 0.1144 2220 +2222 2 40.67753656440493 -1272.8498273906687 62.1057 0.1144 2221 +2223 2 40.45908437622819 -1273.9711588944983 62.2516 0.1144 2222 +2224 2 40.24209296752656 -1275.092766302886 62.3946 0.1144 2223 +2225 2 40.0242168032899 -1276.2150349280632 62.5346 0.1144 2224 +2226 2 39.80567942226338 -1277.3364187977056 62.6702 0.1144 2225 +2227 2 39.587174868273905 -1278.4576651086854 62.7987 0.1144 2226 +2228 2 39.36921351118747 -1279.5799860996754 62.9191 0.1144 2227 +2229 2 39.151337346950754 -1280.702254724853 63.03 0.1144 2228 +2230 2 39.00536764736597 -1281.8366670867404 63.1156 0.1144 2229 +2231 2 38.89762911663496 -1282.9744599409084 63.1733 0.1144 2230 +2232 2 38.7911801924468 -1284.1141598648092 63.208 0.1144 2231 +2233 2 38.68407005146872 -1285.2529750331746 63.2265 0.1144 2232 +2234 2 38.31875368870368 -1286.334170091939 63.2344 0.1144 2233 +2235 2 37.49657751955186 -1287.1309966269382 63.2358 0.1144 2234 +2236 2 36.675286105935015 -1287.9271619451474 63.2358 0.1144 2235 +2237 2 35.8541322509808 -1288.7233600903937 63.2358 0.1144 2236 +2238 2 -71.69481823011336 -1158.6680582009471 33.4471 0.1144 1892 +2239 2 -72.65164985792097 -1159.1125235044603 32.4786 0.1144 2238 +2240 2 -73.46127364523528 -1159.8707632838275 32.0449 0.1144 2239 +2241 2 -73.88424884603143 -1160.9041767729555 31.7503 0.1144 2240 +2242 2 -74.18089685966976 -1162.001031902863 31.4121 0.1144 2241 +2243 2 -74.48031479810169 -1163.0954813069675 31.0545 0.1144 2242 +2244 2 -74.69284724039272 -1164.2090657720955 30.7115 0.1144 2243 +2245 2 -74.72391471004937 -1165.342692285692 30.403 0.1144 2244 +2246 2 -74.67443058520803 -1166.4805662248384 30.1398 0.1144 2245 +2247 2 -74.49071716733039 -1167.6030747192792 29.9079 0.1144 2246 +2248 2 -74.42163558545263 -1168.7355933173803 29.6394 0.1144 2247 +2249 2 -74.71312197664076 -1169.82117646194 29.2972 0.1144 2248 +2250 2 -75.02755177359876 -1170.9087721003946 28.896 0.1144 2249 +2251 2 -75.16136232325431 -1172.0303110372133 28.4903 0.1144 2250 +2252 2 -75.44941447127599 -1173.125873458995 28.1347 0.1144 2251 +2253 2 -75.51772362262614 -1174.2556286492209 27.83 0.1144 2252 +2254 2 -75.77939812171127 -1175.3591578543296 27.5626 0.1144 2253 +2255 2 -76.10603392378187 -1176.4488566901582 27.2696 0.1144 2254 +2256 2 -76.43026400004959 -1177.535785601193 26.9011 0.1144 2255 +2257 2 -76.75177961891973 -1178.6183462492968 26.4559 0.1144 2256 +2258 2 -77.07160309458965 -1179.697167024222 25.9476 0.1144 2257 +2259 2 -78.00471777997245 -1180.2021778200697 25.231 0.1144 2258 +2260 2 -78.58649284355226 -1181.0163907992078 24.5066 0.1144 2259 +2261 2 -78.5956953815691 -1182.1177965933155 23.9445 0.1144 2260 +2262 2 -78.425178148501 -1183.2188364896074 23.4286 0.1144 2261 +2263 2 -78.65211188183116 -1184.284930294428 22.8711 0.1144 2262 +2264 2 -79.36683204783787 -1185.1015117626866 22.2505 0.1144 2263 +2265 2 -79.74558253538169 -1185.619085446509 21.0406 0.1144 2264 +2266 2 -80.20230391259065 -1186.5779286628901 20.4067 0.1144 2265 +2267 2 -79.86024661769892 -1187.5843264058385 19.747 0.1144 2266 +2268 2 -80.0165159452003 -1188.6954897319442 19.2322 0.1144 2267 +2269 2 -79.98369748441854 -1189.8194271851112 18.8622 0.1144 2268 +2270 2 -79.79606519545024 -1190.9395268521662 18.5144 0.1144 2269 +2271 2 -79.83957382806415 -1192.0485209183757 18.129 0.1144 2270 +2272 2 -80.07999706457957 -1193.1537775027687 17.7752 0.1144 2271 +2273 2 -79.7264292231385 -1193.9060135504947 17.2782 0.1144 2272 +2274 2 -78.71386076049959 -1194.3779549117558 16.7721 0.1144 2273 +2275 2 -77.77207233221475 -1195.0036234233085 16.3563 0.1144 2274 +2276 2 -76.82174419824554 -1195.5971626113885 15.797 0.1144 2275 +2277 2 -76.7316026633464 -1196.6831653156605 15.1013 0.1144 2276 +2278 2 -76.89842729200984 -1197.7968257635848 14.6033 0.1144 2277 +2279 2 -77.10789959271477 -1198.8454957809104 14.1457 0.1144 2278 +2280 2 -78.03915685137952 -1199.4581768138992 13.6041 0.1144 2279 +2281 2 -78.62513790125956 -1200.3488075899122 13.1155 0.1144 2280 +2282 2 -78.6637405846688 -1201.4722758283747 12.7314 0.1144 2281 +2283 2 -79.10302965686623 -1202.4701732985827 12.231 0.1144 2282 +2284 2 -78.82970057045708 -1203.373733872381 11.6593 0.1144 2283 +2285 2 -78.29536732852341 -1204.3719303843789 11.271 0.1144 2284 +2286 2 -77.6710915504458 -1205.3176587137132 10.9113 0.1144 2285 +2287 2 -77.2079857341082 -1206.3462554533903 10.507 0.1144 2286 +2288 2 -77.23896560186864 -1207.462455770445 10.1296 0.1144 2287 +2289 2 -77.0651931235463 -1208.5775759145454 9.7615 0.1144 2288 +2290 2 -76.78481175248385 -1209.6782269885744 9.4305 0.1144 2289 +2291 2 -76.6737622301568 -1210.8091294262722 9.1381 0.1144 2290 +2292 2 -76.8885245019215 -1211.9146940497233 8.7309 0.1144 2291 +2293 2 -76.75853873934807 -1213.039356390841 8.3383 0.1144 2292 +2294 2 -75.84489608599648 -1213.7065058058724 7.9483 0.1144 2293 +2295 2 -74.83708981073346 -1214.1773834136861 7.2918 0.1144 2294 +2296 2 -78.59571378455456 -1180.1210440874547 26.504 0.1144 2259 +2297 2 -79.37087881914164 -1180.8043425940778 27.1401 0.1144 2296 +2298 2 -79.62802008552944 -1181.8955774996416 27.4317 0.1144 2297 +2299 2 -79.6724542203915 -1183.033429206877 27.6989 0.1144 2298 +2300 2 -79.79044242227263 -1184.1654320488421 27.9206 0.1144 2299 +2301 2 -79.96571915472413 -1185.2937956236979 28.091 0.1144 2300 +2302 2 -80.14198537433612 -1186.422650029644 28.2352 0.1144 2301 +2303 2 -80.32769077585016 -1187.5493245628822 28.3727 0.1144 2302 +2304 2 -80.25531630358813 -1188.6610381886715 28.4934 0.1144 2303 +2305 2 -79.67167742016727 -1189.6061559505188 28.5936 0.1144 2304 +2306 2 -78.9812622651935 -1190.5044220546229 28.67 0.1144 2305 +2307 2 -78.6141046162719 -1191.569223754865 28.7204 0.1144 2306 +2308 2 -78.52011709149582 -1192.705214241263 28.7809 0.1144 2307 +2309 2 -78.64549984688387 -1193.833780431015 28.95 0.1144 2308 +2310 2 -78.92450673744821 -1194.9331734294542 29.2916 0.1144 2309 +2311 2 -79.23034066878955 -1196.0194763597829 29.7508 0.1144 2310 +2312 2 -79.95538718127989 -1196.8519130028526 30.1196 0.1144 2311 +2313 2 -81.01126956362748 -1197.251150018481 30.2098 0.1144 2312 +2314 2 -82.09777501986304 -1197.6047682074511 30.0773 0.1144 2313 +2315 2 -83.04773095188295 -1198.2330511510522 29.8903 0.1144 2314 +2316 2 -83.867824154973 -1199.0177983130386 29.5677 0.1144 2315 +2317 2 -84.67325488314879 -1199.8136049428867 29.1698 0.1144 2316 +2318 2 -85.62179457652644 -1200.4396087927846 28.8408 0.1144 2317 +2319 2 -86.69558847587649 -1200.8270836845113 28.6628 0.1144 2318 +2320 2 -87.77223749286992 -1201.212205216248 28.6068 0.1144 2319 +2321 2 -67.26806771747061 -1143.195511015082 37.1546 0.1144 1877 +2322 2 -66.64133235088741 -1142.2556491953055 36.783 0.1144 2321 +2323 2 -65.98064036801503 -1141.3379938658009 36.5565 0.1144 2322 +2324 2 -65.6807754467892 -1140.2660415772084 36.3594 0.1144 2323 +2325 2 -65.87736159719873 -1139.1554365594516 36.2751 0.1144 2324 +2326 2 -66.30853491024152 -1138.0978212871905 36.4087 0.1144 2325 +2327 2 -66.5277417066801 -1136.9985382115474 36.6436 0.1144 2326 +2328 2 -66.66788884597088 -1135.8747222882982 36.9818 0.1144 2327 +2329 2 -66.74038995033249 -1134.7671948259451 37.5738 0.1144 2328 +2330 2 -66.51532735811475 -1133.7089418648889 38.4314 0.1144 2329 +2331 2 -65.94225496938691 -1132.823663328338 39.4612 0.1144 2330 +2332 2 -64.84928317271277 -1132.8124610216532 40.2576 0.1144 2331 +2333 2 -64.33384271349217 -1133.478579616949 40.7652 0.1144 2332 +2334 2 -63.715627341545996 -1134.4253333620638 41.1673 0.1144 2333 +2335 2 -63.11638344592967 -1135.3958385931505 41.3893 0.1144 2334 +2336 2 -62.553622416034784 -1136.3900600741254 41.4893 0.1144 2335 +2337 2 -62.06890113813665 -1137.4255598436825 41.5178 0.1144 2336 +2338 2 -61.60770480057812 -1138.472820020631 41.5243 0.1144 2337 +2339 2 -61.10075680109577 -1139.4986485520244 41.5307 0.1144 2338 +2340 2 -60.57264893505965 -1140.512879236746 41.54 0.1144 2339 +2341 2 -59.992070885761564 -1141.4988488197826 41.5537 0.1144 2340 +2342 2 -59.43171558166932 -1142.495840225551 41.5722 0.1144 2341 +2343 2 -58.89033795707343 -1143.5032055255224 41.5954 0.1144 2342 +2344 2 -58.36418952658261 -1144.5186406239368 41.6231 0.1144 2343 +2345 2 -58.00508695542129 -1145.603183543044 41.6856 0.1144 2344 +2346 2 -57.70091886230358 -1146.7052947040115 41.7785 0.1144 2345 +2347 2 -57.4269035273843 -1147.815258327843 41.86 0.1144 2346 +2348 2 -57.303068874421626 -1148.951683485399 41.8648 0.1144 2347 +2349 2 -57.05021650763928 -1150.066556160018 41.8768 0.1144 2348 +2350 2 -56.46134581368966 -1151.0421463382215 41.9384 0.1144 2349 +2351 2 -55.75921238311065 -1151.9440085536755 41.9978 0.1144 2350 +2352 2 -54.646489056533994 -1152.111409206279 42.0515 0.1144 2351 +2353 2 -53.59592126851828 -1151.6643783093782 42.1044 0.1144 2352 +2354 2 -52.4942070445893 -1151.9647302675749 42.1579 0.1144 2353 +2355 2 -52.27303659291704 -1151.2889485488913 41.995 0.1144 2354 +2356 2 -52.02628875950825 -1150.178513212319 41.799 0.1144 2355 +2357 2 -51.798162924121414 -1149.0620345993448 41.5834 0.1144 2356 +2358 2 -51.687436440481406 -1147.9357865334991 41.305 0.1144 2357 +2359 2 -51.95235656117711 -1146.8471125099043 41.0402 0.1144 2358 +2360 2 -52.490875966546696 -1145.8487893658069 40.8038 0.1144 2359 +2361 2 -53.11831869544562 -1144.8956172187359 40.5863 0.1144 2360 +2362 2 -53.71983075820219 -1143.92791473948 40.3603 0.1144 2361 +2363 2 -54.288073068705216 -1142.9423445915177 40.0546 0.1144 2362 +2364 2 -55.162988306179045 -1142.294469181245 39.615 0.1144 2363 +2365 2 -56.25049254861739 -1141.9933646102427 39.2104 0.1144 2364 +2366 2 -57.211554981660925 -1141.4064235145675 38.8564 0.1144 2365 +2367 2 -57.986196234325746 -1140.5787099048748 38.5532 0.1144 2366 +2368 2 -58.59497001532344 -1139.6167622017383 38.3253 0.1144 2367 +2369 2 -59.060669860125415 -1138.574969969788 38.1741 0.1144 2368 +2370 2 -59.30474426179569 -1137.4613924123414 38.0724 0.1144 2369 +2371 2 -59.444800697607036 -1136.3268390884346 37.9893 0.1144 2370 +2372 2 -59.48559515176919 -1135.1836238363892 37.9056 0.1144 2371 +2373 2 -59.66912957173457 -1134.0570143713621 37.8056 0.1144 2372 +2374 2 -59.93802162187029 -1132.9466013556903 37.6748 0.1144 2373 +2375 2 -60.240985301294984 -1131.8464496302681 37.5029 0.1144 2374 +2376 2 -60.74316801181834 -1130.8283736482063 37.1986 0.1144 2375 +2377 2 -61.188415369502934 -1129.7873912129676 36.8021 0.1144 2376 +2378 2 -61.12678098589083 -1128.6685469106824 36.3353 0.1144 2377 +2379 2 -61.15990507668448 -1127.5528965915369 35.7246 0.1144 2378 +2380 2 -61.540602185557475 -1126.5097986472883 35.0549 0.1144 2379 +2381 2 -61.80248198753145 -1125.4327546048657 34.4047 0.1144 2380 +2382 2 -61.39933870907976 -1124.4020234386348 33.7588 0.1144 2381 +2383 2 -61.6010864819396 -1123.3026904062258 33.1635 0.1144 2382 +2384 2 -61.8172201326193 -1122.2148997530926 32.5248 0.1144 2383 +2385 2 -62.36015164921622 -1121.2353697799495 31.9589 0.1144 2384 +2386 2 -62.873065557230916 -1120.2305806861764 31.5328 0.1144 2385 +2387 2 -63.14711612823368 -1119.1381284517365 31.1144 0.1144 2386 +2388 2 -63.14758792996372 -1118.0078071401604 30.767 0.1144 2387 +2389 2 -63.4394202842862 -1116.9060954142672 30.5343 0.1144 2388 +2390 2 -63.77446333041763 -1115.8148630067394 30.3895 0.1144 2389 +2391 2 -63.956666704590475 -1114.686026813822 30.2991 0.1144 2390 +2392 2 -64.13667617790992 -1113.5586592253599 30.2408 0.1144 2391 +2393 2 -64.49288219217823 -1112.4723358686197 30.2061 0.1144 2392 +2394 2 -64.71299087388098 -1111.3561174275253 30.1717 0.1144 2393 +2395 2 -64.6002142512163 -1110.2179275473295 30.1249 0.1144 2394 +2396 2 -64.48650050720391 -1109.0791616431934 30.0658 0.1144 2395 +2397 2 -64.37350895800671 -1107.9434220296332 29.9818 0.1144 2396 +2398 2 -64.45724991321566 -1106.806532759554 29.8189 0.1144 2397 +2399 2 -64.83705133999064 -1105.7669925889886 29.6038 0.1144 2398 +2400 2 -65.59440946540599 -1104.950018789 29.4479 0.1144 2399 +2401 2 -65.99021293040425 -1103.8800530572612 29.3432 0.1144 2400 +2402 2 -66.56325886753297 -1102.897552953475 29.2838 0.1144 2401 +2403 2 -67.36271156549697 -1102.0863814773256 29.2656 0.1144 2402 +2404 2 -68.31073698877896 -1101.4484655214105 29.2849 0.1144 2403 +2405 2 -69.14071725674341 -1100.7621707343187 29.3468 0.1144 2404 +2406 2 -69.45214706810225 -1099.6658143494706 29.4353 0.1144 2405 +2407 2 -69.60592265431393 -1098.5330031255303 29.4949 0.1144 2406 +2408 2 -69.71350269739082 -1097.394568575663 29.5456 0.1144 2407 +2409 2 -69.74592482468137 -1096.2516065878165 29.6111 0.1144 2408 +2410 2 -69.66811861498684 -1095.113431428303 29.6554 0.1144 2409 +2411 2 -69.51270973349989 -1093.9811989391233 29.6806 0.1144 2410 +2412 2 -69.54712963400243 -1092.850263958477 29.6926 0.1144 2411 +2413 2 -69.86132937015486 -1091.7515018478261 29.6974 0.1144 2412 +2414 2 -70.26087270833148 -1090.6798439728873 29.692 0.1144 2413 +2415 2 -70.62736673141671 -1089.598553197451 29.6772 0.1144 2414 +2416 2 -70.88641706299302 -1088.4846731115756 29.6565 0.1144 2415 +2417 2 -71.13022727390108 -1087.36694221773 29.6285 0.1144 2416 +2418 2 -71.3371513898939 -1086.2439107576984 29.5918 0.1144 2417 +2419 2 -71.44726689245618 -1085.1057435001762 29.5338 0.1144 2418 +2420 2 -71.60086037917256 -1083.9755201015341 29.4395 0.1144 2419 +2421 2 -71.92565685573675 -1082.8833889103253 29.3314 0.1144 2420 +2422 2 -72.39656517817207 -1081.8420984360284 29.2443 0.1144 2421 +2423 2 -72.93140327934219 -1080.8320046505132 29.174 0.1144 2422 +2424 2 -73.47082146839278 -1079.8234349368486 29.1175 0.1144 2423 +2425 2 -73.99848304417145 -1078.8076387410265 29.071 0.1144 2424 +2426 2 -74.5324692168436 -1077.7970212973837 29.0293 0.1144 2425 +2427 2 -74.96216772226512 -1076.7505897160377 28.9722 0.1144 2426 +2428 2 -74.98442778030176 -1075.630843936936 28.8705 0.1144 2427 +2429 2 -74.8275471927767 -1074.5031063427864 28.7504 0.1144 2428 +2430 2 -74.93555949796502 -1073.3771450903769 28.6476 0.1144 2429 +2431 2 -75.22467739488985 -1072.2710651015523 28.5608 0.1144 2430 +2432 2 -75.42425149820855 -1071.1489152954728 28.4864 0.1144 2431 +2433 2 -75.50991044971306 -1070.0090966414637 28.4029 0.1144 2432 +2434 2 -75.61325196354136 -1068.8708739165456 28.2918 0.1144 2433 +2435 2 -75.56529839266301 -1067.7429491207195 28.1772 0.1144 2434 +2436 2 -75.4690077436091 -1066.6107844105711 28.0784 0.1144 2435 +2437 2 -75.80132161166011 -1065.5501541530823 27.9951 0.1144 2436 +2438 2 -76.35499904643098 -1064.5489406552579 27.922 0.1144 2437 +2439 2 -76.82020806014265 -1063.5081379104686 27.8503 0.1144 2438 +2440 2 -77.32474723223908 -1062.4862282501658 27.7695 0.1144 2439 +2441 2 -77.92033954910994 -1061.5107787322077 27.6615 0.1144 2440 +2442 2 -78.11209642564822 -1060.436293073718 27.4887 0.1144 2441 +2443 2 -78.2898401408739 -1059.323496564154 27.2432 0.1144 2442 +2444 2 -78.16061208814546 -1058.2208555299148 26.9026 0.1144 2443 +2445 2 -77.5273724342199 -1057.2957766139857 26.6077 0.1144 2444 +2446 2 -76.76650978342767 -1056.4494240003373 26.3275 0.1144 2445 +2447 2 -76.11548593713596 -1055.5162307451328 26.091 0.1144 2446 +2448 2 -76.08770825628048 -1054.4100979997327 25.9245 0.1144 2447 +2449 2 -75.78192669075187 -1053.3237098765544 25.8157 0.1144 2448 +2450 2 -75.95738821069128 -1052.2190184015167 25.7457 0.1144 2449 +2451 2 -76.61782719633234 -1051.2996269744058 25.6875 0.1144 2450 +2452 2 -77.39167508947804 -1050.4579269219678 25.6315 0.1144 2451 +2453 2 -77.78747545289329 -1049.394649986113 25.5686 0.1144 2452 +2454 2 -77.62577721059648 -1048.274750134145 25.4775 0.1144 2453 +2455 2 -77.10117125494187 -1047.2888526388183 25.2872 0.1144 2454 +2456 2 -77.38194655044907 -1046.1898522687397 25.0428 0.1144 2455 +2457 2 -77.87740212742162 -1045.1609505915874 24.876 0.1144 2456 +2458 2 -78.40973759614329 -1044.1507270723894 24.7576 0.1144 2457 +2459 2 -79.02399575933231 -1043.1907419063812 24.6239 0.1144 2458 +2460 2 -79.39716144857249 -1042.1270508147695 24.371 0.1144 2459 +2461 2 -79.57080729479526 -1041.0077445072338 24.0503 0.1144 2460 +2462 2 -79.97605235074215 -1039.9529727335166 23.784 0.1144 2461 +2463 2 -80.41340890789604 -1038.9313204629693 23.5345 0.1144 2462 +2464 2 -80.39397141941171 -1037.8007342680944 23.2407 0.1144 2463 +2465 2 -80.20326936521369 -1036.6777965064512 23.0065 0.1144 2464 +2466 2 -80.26008878204655 -1035.5740113263228 22.8107 0.1144 2465 +2467 2 -80.47115220629198 -1034.4616234618861 22.6803 0.1144 2466 +2468 2 -80.50103887409708 -1033.3183941816947 22.6038 0.1144 2467 +2469 2 -80.39414055806836 -1032.1838175425773 22.6022 0.1144 2468 +2470 2 -80.2298685186195 -1031.0528278047568 22.6284 0.1144 2469 +2471 2 -80.27088340994376 -1029.9178473209204 22.6144 0.1144 2470 +2472 2 -80.34313194264283 -1028.7778849050826 22.6055 0.1144 2471 +2473 2 -80.44496031118334 -1027.6400232775723 22.5849 0.1144 2472 +2474 2 -80.73269169491994 -1026.5384905495914 22.4881 0.1144 2473 +2475 2 -81.24738914215061 -1025.5241161030413 22.3854 0.1144 2474 +2476 2 -81.67647328596541 -1024.4677990495356 22.3392 0.1144 2475 +2477 2 -81.88406723096077 -1023.3478790729295 22.3195 0.1144 2476 +2478 2 -81.80011232070194 -1022.2153149277071 22.2873 0.1144 2477 +2479 2 -81.86362432753864 -1021.0807814266647 22.2265 0.1144 2478 +2480 2 -82.27292891482179 -1020.021696857412 22.1945 0.1144 2479 +2481 2 -82.83083395227828 -1019.0244905251113 22.2008 0.1144 2480 +2482 2 -83.18708140579633 -1017.9423009659944 22.2114 0.1144 2481 +2483 2 -82.7171402267937 -1016.9591333412844 22.2117 0.1144 2482 +2484 2 -82.33056949987574 -1015.8863544576882 22.1446 0.1144 2483 +2485 2 -82.85992252631803 -1014.8983607616575 22.0735 0.1144 2484 +2486 2 -83.72982980576 -1014.1560848728036 22.0143 0.1144 2485 +2487 2 -84.39041255322985 -1013.2232830268871 21.9672 0.1144 2486 +2488 2 -84.823236570223 -1012.1652738301813 21.9725 0.1144 2487 +2489 2 -85.28630715047703 -1011.1191657011128 21.9922 0.1144 2488 +2490 2 -85.8980657828007 -1010.1523620055378 21.9685 0.1144 2489 +2491 2 -86.45654684419728 -1009.1542185518894 21.9486 0.1144 2490 +2492 2 -86.30026961470486 -1008.2309769380405 21.9313 0.1144 2491 +2493 2 -86.14700226825863 -1007.0973610372552 21.9172 0.1144 2492 +2494 2 -86.24687120125373 -1005.9582949960519 21.907 0.1144 2493 +2495 2 -86.13767820032396 -1006.1032839216564 22.0968 0.1144 2494 +2496 2 -85.62358691093522 -1007.0227177943055 23.1794 0.1144 2495 +2497 2 -84.68463687901246 -1007.5627997210096 23.7511 0.1144 2496 +2498 2 -83.57204980303638 -1007.587901282134 24.2962 0.1144 2497 +2499 2 -82.49351483525857 -1007.8394674628511 24.9749 0.1144 2498 +2500 2 -82.67354014736597 -1008.4576786379366 26.4169 0.1144 2499 +2501 2 -83.04765979105207 -1009.4088274655174 27.3603 0.1144 2500 +2502 2 -83.88998072201468 -1010.0527643717919 28.3276 0.1144 2501 +2503 2 -84.98957904617052 -1010.1337730473373 29.078 0.1144 2502 +2504 2 -86.1046861684128 -1010.1679718181413 29.6918 0.1144 2503 +2505 2 -87.17855475447573 -1010.0397216334736 30.6006 0.1144 2504 +2506 2 -87.90453537571997 -1010.26986495312 31.3698 0.1144 2505 +2507 2 -87.51110619456057 -1011.2943377977635 32.0634 0.1144 2506 +2508 2 -86.86920401409154 -1012.2076335826598 32.655 0.1144 2507 +2509 2 -86.04514279947625 -1012.9257380350667 33.1794 0.1144 2508 +2510 2 -84.96549481402153 -1013.1659384253736 33.6935 0.1144 2509 +2511 2 -83.8751888260409 -1013.3188296696409 34.2289 0.1144 2510 +2512 2 -82.92374767439478 -1013.9010030673105 34.634 0.1144 2511 +2513 2 -82.01763644067606 -1014.5887456297049 34.8788 0.1144 2512 +2514 2 -81.01190392142172 -1015.1173580583464 35.0134 0.1144 2513 +2515 2 -79.91686446523084 -1015.4286209044832 35.0507 0.1144 2514 +2516 2 -78.78402071602704 -1015.5674555179264 35.0078 0.1144 2515 +2517 2 -77.65320756707231 -1015.7184546972323 34.8793 0.1144 2516 +2518 2 -76.62950537028465 -1016.1714622272935 34.6486 0.1144 2517 +2519 2 -75.79162199015346 -1016.9294314227758 34.3689 0.1144 2518 +2520 2 -75.05893085567223 -1017.8004204017259 34.1166 0.1144 2519 +2521 2 -74.3147918395139 -1018.665781236656 33.9251 0.1144 2520 +2522 2 -73.57640139630897 -1019.5372579451133 33.7971 0.1144 2521 +2523 2 -72.86317256924801 -1020.4310089228746 33.7277 0.1144 2522 +2524 2 -72.23413150221137 -1021.3844898015404 33.7056 0.1144 2523 +2525 2 -71.87776051817684 -1022.4558044013376 33.7126 0.1144 2524 +2526 2 -71.65042845589957 -1023.5770906598196 33.7338 0.1144 2525 +2527 2 -71.36492069847043 -1024.6839811378923 33.7655 0.1144 2526 +2528 2 -70.97491034725837 -1025.7575077448969 33.8103 0.1144 2527 +2529 2 -70.45874119398948 -1026.776377086478 33.8733 0.1144 2528 +2530 2 -69.82346072290923 -1027.7247315787772 33.9598 0.1144 2529 +2531 2 -69.16480458394767 -1028.6586002797242 34.0724 0.1144 2530 +2532 2 -68.40775139600765 -1029.5079238403473 34.2502 0.1144 2531 +2533 2 -67.52074137230167 -1030.216915256265 34.522 0.1144 2532 +2534 2 -66.59877014567851 -1030.8802365036854 34.8704 0.1144 2533 +2535 2 -65.65840656824867 -1031.512180347902 35.2531 0.1144 2534 +2536 2 -64.66105188649553 -1032.0512245471891 35.5989 0.1144 2535 +2537 2 -63.62874220499154 -1032.5312209862104 35.8708 0.1144 2536 +2538 2 -62.52539269033139 -1032.7729338292686 36.1679 0.1144 2537 +2539 2 -61.57531522839352 -1032.2519795641765 36.4188 0.1144 2538 +2540 2 -60.66698155263444 -1031.5647665961076 36.6948 0.1144 2539 +2541 2 -59.73863867312852 -1030.9122067918975 37.051 0.1144 2540 +2542 2 -58.778327645796224 -1030.3139468728123 37.4536 0.1144 2541 +2543 2 -57.81071276843642 -1029.7298610065973 37.8834 0.1144 2542 +2544 2 -56.85232834961241 -1029.1326679425424 38.3328 0.1144 2543 +2545 2 -55.95909723585888 -1028.4493386094805 38.843 0.1144 2544 +2546 2 -54.911255210588706 -1028.1048132256874 39.5018 0.1144 2545 +2547 2 -53.788107322820935 -1028.1167326301484 40.0254 0.1144 2546 +2548 2 -52.67108321057137 -1027.9349817493992 40.4438 0.1144 2547 +2549 2 -51.54241880611187 -1027.9207384314561 40.8887 0.1144 2548 +2550 2 -50.43306574976745 -1027.6873599911937 41.2605 0.1144 2549 +2551 2 -49.40772735692772 -1027.2034851311637 41.5999 0.1144 2550 +2552 2 -48.68737255964626 -1026.3349619558635 42.0686 0.1144 2551 +2553 2 -86.70515076829187 -1005.1495203374261 21.9118 0.1144 2494 +2554 2 -87.2684878221269 -1004.1543617351036 21.9265 0.1144 2553 +2555 2 -87.77681923321444 -1003.1306747387508 21.9473 0.1144 2554 +2556 2 -88.15329253352164 -1002.0528182064814 21.9751 0.1144 2555 +2557 2 -88.42637074709316 -1000.9422785587099 22.0119 0.1144 2556 +2558 2 -88.72288009594186 -999.8394507135566 22.0689 0.1144 2557 +2559 2 -89.1386421153841 -998.7763534681509 22.1604 0.1144 2558 +2560 2 -89.67489645519649 -997.7685387763387 22.2709 0.1144 2559 +2561 2 -90.13564891154405 -996.7370869190183 22.3685 0.1144 2560 +2562 2 -90.46993383423992 -995.6493794581364 22.4515 0.1144 2561 +2563 2 -91.10293451908035 -994.7265038310926 22.5245 0.1144 2562 +2564 2 -91.74344708477798 -993.8244441029241 22.5919 0.1144 2563 +2565 2 -91.85302731011333 -992.7154103909859 22.6605 0.1144 2564 +2566 2 -92.0830474900061 -991.6617444254911 22.7587 0.1144 2565 +2567 2 -92.1669342076423 -990.6296483744355 22.9114 0.1144 2566 +2568 2 -92.32661033240078 -989.5943686512776 23.0838 0.1144 2567 +2569 2 -92.88968009389063 -988.6017455084406 23.2872 0.1144 2568 +2570 2 -93.3010707488186 -987.5480515163166 23.4962 0.1144 2569 +2571 2 -93.63206519017666 -986.4569129138513 23.7242 0.1144 2570 +2572 2 -94.1797619957326 -985.4696303913767 23.9332 0.1144 2571 +2573 2 -94.59262986732833 -984.4221265390669 24.1065 0.1144 2572 +2574 2 -94.80600831389717 -983.3017711987662 24.3039 0.1144 2573 +2575 2 -95.02696031188523 -982.1820801768387 24.478 0.1144 2574 +2576 2 -95.11783635323579 -981.0467595194435 24.6124 0.1144 2575 +2577 2 -95.18906257173731 -979.9061687138528 24.7181 0.1144 2576 +2578 2 -95.31030939940183 -978.7695614568017 24.81 0.1144 2577 +2579 2 -94.96977165489895 -977.7047709729181 24.8911 0.1144 2578 +2580 2 -94.60343297793628 -976.6229475244012 24.9717 0.1144 2579 +2581 2 -95.04319836247618 -975.5973763827632 25.1512 0.1144 2580 +2582 2 -95.25591559225512 -974.4779057979978 25.3634 0.1144 2581 +2583 2 -95.3562308155077 -973.3404052678951 25.5328 0.1144 2582 +2584 2 -95.44277452254724 -972.2012478306759 25.658 0.1144 2583 +2585 2 -95.41621597606735 -971.0581852367603 25.7425 0.1144 2584 +2586 2 -95.1736574076775 -969.9409344722045 25.79 0.1144 2585 +2587 2 -95.3977732549038 -968.8204884284246 25.8049 0.1144 2586 +2588 2 -95.31698529546634 -967.6804804654656 25.8075 0.1144 2587 +2589 2 -94.98416245516492 -966.5855700504208 25.8097 0.1144 2588 +2590 2 -94.92052478771117 -965.4440137060903 25.8128 0.1144 2589 +2591 2 -94.61559274163406 -964.3407754103105 25.8171 0.1144 2590 +2592 2 -94.3746848771946 -963.2231307213099 25.823 0.1144 2591 +2593 2 -94.6116351192862 -962.1037655607065 25.8312 0.1144 2592 +2594 2 -94.38871165306267 -961.0267553573161 25.8542 0.1144 2593 +2595 2 -94.12939671713377 -959.9127036780822 25.8774 0.1144 2594 +2596 2 -94.01836460348196 -958.7781684782148 25.9049 0.1144 2595 +2597 2 -94.24221005677995 -957.6669466898044 25.9442 0.1144 2596 +2598 2 -94.70639675629403 -956.625515555262 26.0149 0.1144 2597 +2599 2 -95.22416424770054 -955.6063374820861 26.112 0.1144 2598 +2600 2 -95.55742685619887 -954.5180016314514 26.1936 0.1144 2599 +2601 2 -95.74563827069042 -953.3902760471645 26.2498 0.1144 2600 +2602 2 -95.92850286165319 -952.2605550987122 26.2817 0.1144 2601 +2603 2 -96.0736825822481 -951.126451166646 26.2893 0.1144 2602 +2604 2 -96.24723772499146 -949.9964074584527 26.2739 0.1144 2603 +2605 2 -96.3573532275538 -948.8582402009306 26.2403 0.1144 2604 +2606 2 -96.28204965030758 -947.7201947751 26.1951 0.1144 2605 +2607 2 -96.22977777326426 -946.5775254130925 26.1269 0.1144 2606 +2608 2 -96.12559701621629 -945.4406282410225 26.0147 0.1144 2607 +2609 2 -96.11427076542455 -944.2989466496657 25.8738 0.1144 2608 +2610 2 -96.27455304802504 -943.1687263526067 25.7321 0.1144 2609 +2611 2 -96.46472389806186 -942.0422051820127 25.5978 0.1144 2610 +2612 2 -96.65400999256363 -940.9150227946288 25.4755 0.1144 2611 +2613 2 -96.84324372125266 -939.7879256000949 25.3711 0.1144 2612 +2614 2 -97.03412815389214 -938.6604344811161 25.2896 0.1144 2613 +2615 2 -97.22399027233402 -937.5323149723846 25.2314 0.1144 2614 +2616 2 -97.41385239077593 -936.404195463653 25.1948 0.1144 2615 +2617 2 -97.57275126177117 -935.2718336315531 25.1899 0.1144 2616 +2618 2 -97.58552046462958 -934.1302902913955 25.2617 0.1144 2617 +2619 2 -97.4355959653339 -933.0000203393438 25.4449 0.1144 2618 +2620 2 -97.16928040034279 -931.8910560162732 25.6571 0.1144 2619 +2621 2 -96.74502721210345 -930.831267979792 25.7811 0.1144 2620 +2622 2 -96.37931692489369 -929.7484222170774 25.8468 0.1144 2621 +2623 2 -96.17244545365966 -928.6235274289352 25.8997 0.1144 2622 +2624 2 -96.06376980158103 -927.485158550827 25.8978 0.1144 2623 +2625 2 -96.0051702260611 -926.3439992325243 25.8138 0.1144 2624 +2626 2 -95.8248554016759 -925.2152386316409 25.6864 0.1144 2625 +2627 2 -95.55338372486406 -924.1056873580671 25.5406 0.1144 2626 +2628 2 -95.42011086148202 -922.9723887063932 25.384 0.1144 2627 +2629 2 -95.7704354675312 -921.8891409044585 25.2513 0.1144 2628 +2630 2 -96.32927762633545 -920.8925105960978 25.1312 0.1144 2629 +2631 2 -96.7689170713123 -919.838690664411 24.9495 0.1144 2630 +2632 2 -96.98042988739832 -918.7211795151909 24.688 0.1144 2631 +2633 2 -96.84474819663035 -917.5917997346075 24.3824 0.1144 2632 +2634 2 -96.58566152284331 -916.488452628994 24.0584 0.1144 2633 +2635 2 -96.66472238194308 -915.3593682740592 23.7236 0.1144 2634 +2636 2 -97.01049972714878 -914.2747339589362 23.445 0.1144 2635 +2637 2 -97.36795159435982 -913.1905849642737 23.249 0.1144 2636 +2638 2 -97.69479269931915 -912.0997105525705 23.1279 0.1144 2637 +2639 2 -97.72721482660972 -910.9567485647241 23.0349 0.1144 2638 +2640 2 -97.68194047704546 -909.8156806424374 23.0116 0.1144 2639 +2641 2 -97.81348624008982 -908.6798869762176 23.0575 0.1144 2640 +2642 2 -97.99822507374816 -907.5513180756454 23.131 0.1144 2641 +2643 2 -98.23066949424606 -906.4347001994768 23.2082 0.1144 2642 +2644 2 -98.68318477333798 -905.3860949485895 23.2611 0.1144 2643 +2645 2 -99.20523223324275 -904.3708388480874 23.2725 0.1144 2644 +2646 2 -99.5508305805362 -903.2821035623783 23.2153 0.1144 2645 +2647 2 -99.75414455703327 -902.1582616130985 23.0948 0.1144 2646 +2648 2 -99.98628024593623 -901.0400453987921 22.9719 0.1144 2647 +2649 2 -100.35776782012238 -899.9617066476451 22.8244 0.1144 2648 +2650 2 -100.85201898340188 -898.9347644060381 22.5947 0.1144 2649 +2651 2 -101.27668249847275 -897.8812470027801 22.2984 0.1144 2650 +2652 2 -101.59969853740395 -896.7920123684642 21.9718 0.1144 2651 +2653 2 -101.9751464219305 -895.7202162423262 21.6337 0.1144 2652 +2654 2 -102.19131530869373 -894.6499369785844 21.2777 0.1144 2653 +2655 2 -101.72067216618811 -893.6394576851734 20.8882 0.1144 2654 +2656 2 -101.12913075132016 -892.7011565584045 20.5276 0.1144 2655 +2657 2 -100.87498836440446 -891.5941578740453 20.2074 0.1144 2656 +2658 2 -100.57129596810384 -890.5064715321116 19.9592 0.1144 2657 +2659 2 -100.05404381924299 -889.4889409603355 19.7959 0.1144 2658 +2660 2 -99.57061623863828 -888.4599217601693 19.6809 0.1144 2659 +2661 2 -99.31232051532385 -887.3531872665724 19.5334 0.1144 2660 +2662 2 -99.39467736639094 -886.2382190880656 19.3395 0.1144 2661 +2663 2 -99.79155551139954 -885.16879655323 19.1546 0.1144 2662 +2664 2 -100.24401842467879 -884.1202764951925 18.9909 0.1144 2663 +2665 2 -100.70491464285507 -883.0754142190667 18.8551 0.1144 2664 +2666 2 -101.1971125655268 -882.0432189589935 18.7663 0.1144 2665 +2667 2 -101.71636037518411 -881.0235422297474 18.7361 0.1144 2666 +2668 2 -102.23955988296913 -880.0064118865496 18.7584 0.1144 2667 +2669 2 -102.64476349966623 -878.9475063152092 18.8291 0.1144 2668 +2670 2 -102.78473164104469 -877.819589421374 18.9447 0.1144 2669 +2671 2 -102.77241590309254 -876.6774169989269 19.0888 0.1144 2670 +2672 2 -102.95354080313541 -875.5787890316038 19.3399 0.1144 2671 +2673 2 -103.49428934544193 -874.5965086724428 19.8206 0.1144 2672 +2674 2 -103.80633902903713 -873.5207227945991 20.1256 0.1144 2673 +2675 2 -103.8826354739729 -872.4047292003117 19.6319 0.1144 2674 +2676 2 -93.5565460074682 -962.3280731310717 25.9259 0.1144 2593 +2677 2 -92.44068175610073 -962.5660844386181 26.1243 0.1144 2676 +2678 2 -91.32267596969245 -962.8054791577697 26.2118 0.1144 2677 +2679 2 -90.20472254909694 -963.0447886840716 26.3128 0.1144 2678 +2680 2 -89.08635566528108 -963.2826702579354 26.4241 0.1144 2679 +2681 2 -87.96889307577581 -963.5209902970768 26.54 0.1144 2680 +2682 2 -86.8509396551803 -963.7602998233784 26.6548 0.1144 2681 +2683 2 -85.73293386877211 -963.9996945425302 26.7636 0.1144 2682 +2684 2 -84.61461935076886 -964.2374909235441 26.8648 0.1144 2683 +2685 2 -83.49546461806352 -964.472071089507 26.9567 0.1144 2684 +2686 2 -82.35288114144251 -964.5003327057501 27.0205 0.1144 2685 +2687 2 -81.20906352567465 -964.5237274029918 27.0614 0.1144 2686 +2688 2 -80.06533110275655 -964.5471744660462 27.085 0.1144 2687 +2689 2 -78.9220449700959 -964.5721870402011 27.096 0.1144 2688 +2690 2 -77.777684157425 -964.596656417453 27.0992 0.1144 2689 +2691 2 -76.63395173450681 -964.6201034805075 27.0987 0.1144 2690 +2692 2 -75.49021931158873 -964.6435505435619 27.0978 0.1144 2691 +2693 2 -74.34684798607825 -964.6685107519041 27.0965 0.1144 2692 +2694 2 -73.20248717340732 -964.6929801291559 27.0947 0.1144 2693 +2695 2 -72.05875475048924 -964.7164271922103 27.0923 0.1144 2694 +2696 2 -70.91538342497873 -964.7413874005525 27.0888 0.1144 2695 +2697 2 -69.77165100206071 -964.7648344636069 27.084 0.1144 2696 +2698 2 -68.62791857914257 -964.7882815266613 27.0774 0.1144 2697 +2699 2 -67.48458008066919 -964.8133792936661 27.068 0.1144 2698 +2700 2 -66.340271633811 -964.8377634780683 27.0546 0.1144 2699 +2701 2 -65.1965392108929 -964.8612105411227 27.036 0.1144 2700 +2702 2 -64.05280678797476 -964.884657604177 27.0108 0.1144 2701 +2703 2 -62.90938309665157 -964.9097030053691 26.9776 0.1144 2702 +2704 2 -61.822877640416124 -964.556084816399 26.9219 0.1144 2703 +2705 2 -60.76330293260975 -964.1237070896633 26.8452 0.1144 2704 +2706 2 -59.70471771196392 -963.691820194018 26.7515 0.1144 2705 +2707 2 -58.64665614944545 -963.2590813698745 26.6445 0.1144 2706 +2708 2 -57.58900805014741 -962.8277704981693 26.5268 0.1144 2707 +2709 2 -56.53103168047872 -962.3950840398386 26.4009 0.1144 2708 +2710 2 -55.47302248377295 -961.9622600228455 26.269 0.1144 2709 +2711 2 -54.41595040841497 -961.5300120297924 26.1306 0.1144 2710 +2712 2 -53.35739801480625 -961.0982626928095 25.9854 0.1144 2711 +2713 2 -52.285384553089244 -960.7078912441898 25.796 0.1144 2712 +2714 2 -51.41667776942546 -959.9670950751821 25.6022 0.1144 2713 +2715 2 -50.55068854474246 -959.2239783732213 25.4064 0.1144 2714 +2716 2 -49.68420848896915 -958.481851158421 25.2065 0.1144 2715 +2717 2 -48.81767606738316 -957.7398091364706 25.01 0.1144 2716 +2718 2 -47.951686842700184 -956.9966924345099 24.8226 0.1144 2717 +2719 2 -47.13026569540074 -956.203029748749 24.6469 0.1144 2718 +2720 2 -46.453404295492476 -955.2834173927456 24.4745 0.1144 2719 +2721 2 -45.77899006063677 -954.3707087591587 24.1195 0.1144 2720 +2722 2 -86.86710539919852 -1008.8116925340231 22.6628 0.1144 2491 +2723 2 -87.44596427297773 -1007.9092977344774 23.2539 0.1144 2722 +2724 2 -87.5468548276339 -1006.79492270964 23.3587 0.1144 2723 +2725 2 -87.32376708418076 -1005.6788411226936 23.4063 0.1144 2724 +2726 2 -87.36375655972427 -1004.5499210449884 23.431 0.1144 2725 +2727 2 -87.37082645385905 -1003.408865434338 23.4333 0.1144 2726 +2728 2 -87.09329126933284 -1002.3049775408678 23.4068 0.1144 2727 +2729 2 -86.75453465499959 -1001.2132278734781 23.3233 0.1144 2728 +2730 2 -86.72253006399512 -1000.0790253359415 23.2305 0.1144 2729 +2731 2 -86.99774671102429 -998.9737910724489 23.1627 0.1144 2730 +2732 2 -87.1130793034327 -997.8401218115406 23.1224 0.1144 2731 +2733 2 -86.88374905435279 -996.7256026341116 23.1089 0.1144 2732 +2734 2 -86.53176101912649 -995.6378101754791 23.1195 0.1144 2733 +2735 2 -85.95765501085319 -994.653765998999 23.1573 0.1144 2734 +2736 2 -85.33734184034557 -993.6923801136778 23.2539 0.1144 2735 +2737 2 -84.96174297939316 -992.6168375084542 23.351 0.1144 2736 +2738 2 -84.97665061570916 -991.4805995525755 23.4249 0.1144 2737 +2739 2 -85.23600967888041 -990.3683178048376 23.4743 0.1144 2738 +2740 2 -85.60018316901258 -989.2843094704208 23.5007 0.1144 2739 +2741 2 -86.0626777253265 -988.2391384627001 23.5045 0.1144 2740 +2742 2 -86.49803720180509 -987.1813965583395 23.4877 0.1144 2741 +2743 2 -86.44995699882713 -986.0492855990773 23.4606 0.1144 2742 +2744 2 -86.06013722982112 -984.9772093715208 23.4274 0.1144 2743 +2745 2 -85.72682355842937 -983.8832884436363 23.3719 0.1144 2744 +2746 2 -85.72195163821377 -982.7442829720105 23.2629 0.1144 2745 +2747 2 -86.10328093095936 -981.6694112910671 23.1669 0.1144 2746 +2748 2 -86.82616627550132 -980.7884040046918 23.0939 0.1144 2747 +2749 2 -87.6180516252123 -979.9631906184013 23.0427 0.1144 2748 +2750 2 -88.67813868579816 -980.2965791664626 22.9975 0.1144 2749 +2751 2 -51.41168783573545 -1152.290379684068 42.2786 0.1144 2354 +2752 2 -50.37536547807832 -1152.76391869093 42.3366 0.1144 2751 +2753 2 -49.41442898459769 -1153.3791085766543 42.4264 0.1144 2752 +2754 2 -48.500030616857146 -1154.0671567690606 42.4684 0.1144 2753 +2755 2 -47.420056077541744 -1154.347418030084 42.3822 0.1144 2754 +2756 2 -46.28935556220364 -1154.3103251114335 42.0728 0.1144 2755 +2757 2 -45.18835430535188 -1154.4433782301899 41.4537 0.1144 2756 +2758 2 -44.15528209076729 -1154.7913221472995 40.6202 0.1144 2757 +2759 2 -43.15812902960022 -1155.1115751919456 39.5002 0.1144 2758 +2760 2 -43.857601966451796 -1155.05944016905 38.3278 0.1144 2759 +2761 2 -44.86408600323432 -1155.2766573960414 37.3724 0.1144 2760 +2762 2 -45.68477916100022 -1155.979841575895 36.7038 0.1144 2761 +2763 2 -46.06071378586637 -1156.969667862587 35.8243 0.1144 2762 +2764 2 -46.10249814077963 -1158.0507218703428 34.946 0.1144 2763 +2765 2 -46.10007069762406 -1159.1490873457287 34.1592 0.1144 2764 +2766 2 -46.65072264617277 -1160.0555640865 33.4225 0.1144 2765 +2767 2 -46.6237773898452 -1161.0715999388012 32.4892 0.1144 2766 +2768 2 -46.27015679182864 -1162.1407315643078 31.7052 0.1144 2767 +2769 2 -45.90701181906013 -1163.211990696709 31.2886 0.1144 2768 +2770 2 -45.599856465569985 -1164.3015840193862 30.9599 0.1144 2769 +2771 2 -45.40540564703491 -1165.424183217306 30.716 0.1144 2770 +2772 2 -45.151043236547764 -1166.5327281934487 30.5256 0.1144 2771 +2773 2 -44.80343308789628 -1167.6203442583146 30.3486 0.1144 2772 +2774 2 -44.53846301043427 -1168.7264773054885 30.1272 0.1144 2773 +2775 2 -44.46635823956393 -1169.853029302521 29.7713 0.1144 2774 +2776 2 -44.573882536298925 -1170.9692097967115 29.2379 0.1144 2775 +2777 2 -45.059375669147585 -1171.9511377716449 28.7073 0.1144 2776 +2778 2 -45.83021828969834 -1172.776862001847 28.348 0.1144 2777 +2779 2 -46.53405049221237 -1173.669973870934 28.1529 0.1144 2778 +2780 2 -47.0911297390183 -1174.6664413881053 28.1338 0.1144 2779 +2781 2 -47.61377246500791 -1175.6818858922366 28.2836 0.1144 2780 +2782 2 -48.228783352819676 -1176.6387214151314 28.5295 0.1144 2781 +2783 2 -48.880647413813676 -1177.575130885387 28.763 0.1144 2782 +2784 2 -49.5246268774431 -1178.5174929285654 28.9369 0.1144 2783 +2785 2 -50.17617128027905 -1179.4565230511562 29.0494 0.1144 2784 +2786 2 -50.15000707183452 -1180.538889589902 29.1133 0.1144 2785 +2787 2 -49.60822691058115 -1181.5406079469626 29.1267 0.1144 2786 +2788 2 -49.03548660346428 -1182.531395184771 29.1169 0.1144 2787 +2789 2 -48.46266110349768 -1183.5221300567664 29.0968 0.1144 2788 +2790 2 -48.12378437912548 -1184.611006002721 29.0699 0.1144 2789 +2791 2 -48.10107733829477 -1185.7532488973354 29.0321 0.1144 2790 +2792 2 -48.09533848995244 -1186.8965312358764 28.973 0.1144 2791 +2793 2 -48.08951444876038 -1188.0397612086047 28.8789 0.1144 2792 +2794 2 -47.96567979579771 -1189.1761863661604 28.791 0.1144 2793 +2795 2 -47.75666651057696 -1190.3005160449472 28.7165 0.1144 2794 +2796 2 -47.62142091084581 -1191.274280327386 30.497 0.1144 2795 +2797 2 -47.46475186932412 -1192.398622317809 30.7961 0.1144 2796 +2798 2 -47.307503702279234 -1193.5305902254643 30.924 0.1144 2797 +2799 2 -47.149180855224074 -1194.662014936216 31.0682 0.1144 2798 +2800 2 -47.10232599493048 -1195.8042047724812 31.1998 0.1144 2799 +2801 2 -47.163513395748566 -1196.9455461902794 31.2956 0.1144 2800 +2802 2 -47.224072406813775 -1198.0879099222748 31.3592 0.1144 2801 +2803 2 -47.284631417878984 -1199.2302736542701 31.3936 0.1144 2802 +2804 2 -47.345138063131515 -1200.3727225791156 31.4112 0.1144 2803 +2805 2 -47.16201910522807 -1189.1575892041951 28.0557 0.1144 2795 +2806 2 -46.6531855405816 -1188.178686827301 27.3216 0.1144 2805 +2807 2 -46.116305800782584 -1187.249804367033 26.36 0.1144 2806 +2808 2 -45.39457269407751 -1186.490654498637 25.2701 0.1144 2807 +2809 2 -44.517982621111344 -1185.898077166994 24.221 0.1144 2808 +2810 2 -43.61767388921044 -1185.3246088703436 23.2109 0.1144 2809 +2811 2 -42.7140746759718 -1184.7477094321098 22.2401 0.1144 2810 +2812 2 -42.013991082644 -1185.3687657035966 21.3112 0.1144 2811 +2813 2 -41.13617998081361 -1185.9907980496232 20.4178 0.1144 2812 +2814 2 -40.11405629929931 -1186.3669524191146 19.5898 0.1144 2813 +2815 2 -39.0753699688409 -1186.7154364315438 18.7783 0.1144 2814 +2816 2 -38.00272051715359 -1186.8067567676962 17.8699 0.1144 2815 +2817 2 -37.122787597036734 -1186.2108334873196 16.9246 0.1144 2816 +2818 2 -36.260595713526584 -1185.5774542912536 15.9293 0.1144 2817 +2819 2 -35.398747797694796 -1184.9631848227168 14.904 0.1144 2818 +2820 2 -34.32843429217979 -1184.9981896782665 13.9182 0.1144 2819 +2821 2 -33.25383702404673 -1185.06002398364 12.9666 0.1144 2820 +2822 2 -32.175001226665074 -1185.1220701139623 12.0495 0.1144 2821 +2823 2 -31.08758428434942 -1185.147853123189 11.1864 0.1144 2822 +2824 2 -29.989936185685792 -1185.1137043091512 10.3911 0.1144 2823 +2825 2 -28.88920943063374 -1185.0803628827787 9.6422 0.1144 2824 +2826 2 -27.78456380449103 -1185.0446126290203 8.9192 0.1144 2825 +2827 2 -26.677001106054377 -1184.9546001352674 8.2449 0.1144 2826 +2828 2 -25.56979778851536 -1184.8246643294601 7.628 0.1144 2827 +2829 2 -24.45650123780797 -1184.6935655492098 7.0648 0.1144 2828 +2830 2 -23.340702054652354 -1184.5623370352769 6.5402 0.1144 2829 +2831 2 -22.26927653774868 -1184.4354946065407 5.6092 0.1144 2830 +2832 2 -46.63920099508192 -1161.0247376682469 31.234 0.1144 2767 +2833 2 -46.59940922220966 -1160.4537539689948 29.5123 0.1144 2832 +2834 2 -45.68160743774115 -1161.0337153594564 28.7342 0.1144 2833 +2835 2 -44.77679511531454 -1161.699484464466 28.2153 0.1144 2834 +2836 2 -43.93302791791774 -1162.4431553840245 27.7838 0.1144 2835 +2837 2 -43.24729285905329 -1163.3336165729847 27.3325 0.1144 2836 +2838 2 -42.50147331879447 -1164.1669559176505 26.8614 0.1144 2837 +2839 2 -41.62987148710573 -1164.888118102597 26.4498 0.1144 2838 +2840 2 -40.868555460396635 -1165.7159231083053 26.0716 0.1144 2839 +2841 2 -40.326420404901796 -1166.7027507283099 25.6962 0.1144 2840 +2842 2 -40.03695854029843 -1167.789720989605 25.3064 0.1144 2841 +2843 2 -39.75711485550943 -1168.8786123487791 24.8336 0.1144 2842 +2844 2 -39.17649405889961 -1169.7181818697504 23.8126 0.1144 2843 +2845 2 -38.12956373249398 -1169.8965611893261 22.8038 0.1144 2844 +2846 2 -37.11438832620718 -1169.8485467699243 21.5651 0.1144 2845 +2847 2 -36.333237364559864 -1170.0708001053715 20.2329 0.1144 2846 +2848 2 -36.66951556183335 -1169.4691003263802 18.6731 0.1144 2847 +2849 2 -35.58078298694443 -1169.433623568133 18.0603 0.1144 2848 +2850 2 -34.44466656098365 -1169.3113872533077 17.9156 0.1144 2849 +2851 2 -33.31965814491463 -1169.437665690794 17.8437 0.1144 2850 +2852 2 -32.228399308615224 -1169.7754328179667 17.845 0.1144 2851 +2853 2 -31.367942830174798 -1170.4872472170273 18.0399 0.1144 2852 +2854 2 -30.445883309118926 -1171.157204894519 18.2295 0.1144 2853 +2855 2 -29.985621683861666 -1172.1876672646788 18.2042 0.1144 2854 +2856 2 -29.869445775168003 -1173.3248091064202 18.1378 0.1144 2855 +2857 2 -29.84054859452334 -1174.4685292177023 18.0702 0.1144 2856 +2858 2 -29.41966329029748 -1175.5311770712674 17.9919 0.1144 2857 +2859 2 -29.11450571001933 -1176.6327974011447 17.9057 0.1144 2858 +2860 2 -28.82646249310477 -1177.7394205868723 17.8392 0.1144 2859 +2861 2 -28.635578060465377 -1178.8669117058507 17.7978 0.1144 2860 +2862 2 -28.547777573920087 -1180.008113771465 17.7231 0.1144 2861 +2863 2 -28.434765514464686 -1181.1445005913542 17.6085 0.1144 2862 +2864 2 -28.12101206856977 -1182.2448282131056 17.5188 0.1144 2863 +2865 2 -27.90295662747485 -1183.3662996726662 17.3883 0.1144 2864 +2866 2 -42.8140706471292 -1155.2103288220123 38.8354 0.1144 2759 +2867 2 -41.997690799456564 -1155.706257833378 37.3444 0.1144 2866 +2868 2 -41.46410506814715 -1156.5787295219404 36.1418 0.1144 2867 +2869 2 -40.95437283163653 -1157.5411043850067 35.2881 0.1144 2868 +2870 2 -40.33602531696113 -1158.4729869318412 34.715 0.1144 2869 +2871 2 -39.6904630402301 -1159.402931251068 34.3064 0.1144 2870 +2872 2 -38.795033739773146 -1160.097357098717 34.0612 0.1144 2871 +2873 2 -37.69591113526201 -1160.3671397339117 33.7977 0.1144 2872 +2874 2 -36.66677670931148 -1159.915793632429 33.4432 0.1144 2873 +2875 2 -35.94093752983866 -1159.0453079200006 33.0543 0.1144 2874 +2876 2 -35.26389954106469 -1158.1389684241399 32.6427 0.1144 2875 +2877 2 -35.07956403756782 -1158.220396872182 32.3439 0.1144 2876 +2878 2 -34.126538558245045 -1158.575990637259 31.136 0.1144 2877 +2879 2 -33.04101568148923 -1158.6794701233405 30.5586 0.1144 2878 +2880 2 -31.920577841474028 -1158.5601803221748 30.2501 0.1144 2879 +2881 2 -30.79334269751456 -1158.6877898054533 29.9191 0.1144 2880 +2882 2 -29.899986158756008 -1159.1712653422258 29.6008 0.1144 2881 +2883 2 -29.48271409560897 -1160.228034889155 29.3003 0.1144 2882 +2884 2 -29.111099889323327 -1161.302187476866 28.9985 0.1144 2883 +2885 2 -28.621305283407764 -1162.319778831004 28.6247 0.1144 2884 +2886 2 -27.97365142840232 -1163.2336475382572 28.096 0.1144 2885 +2887 2 -27.365559788043356 -1164.1463624811204 27.4091 0.1144 2886 +2888 2 -26.556858915952148 -1164.6187227985463 26.6221 0.1144 2887 +2889 2 -25.45564753297589 -1164.5729932675658 25.8985 0.1144 2888 +2890 2 -24.34601928229523 -1164.5300719990457 25.2477 0.1144 2889 +2891 2 -23.284008625794968 -1164.798485943318 24.6662 0.1144 2890 +2892 2 -22.69187517536301 -1165.6592676966557 24.185 0.1144 2891 +2893 2 -22.371182770967835 -1166.7445310940684 23.7799 0.1144 2892 +2894 2 -21.846432472764945 -1167.7271373145534 23.3138 0.1144 2893 +2895 2 -20.87710993801835 -1168.2270693835712 22.8309 0.1144 2894 +2896 2 -19.85294673029057 -1168.7134818155018 22.4798 0.1144 2895 +2897 2 -18.92883396862669 -1169.3781864745274 22.2554 0.1144 2896 +2898 2 -18.11731592579588 -1170.1805331303813 22.1316 0.1144 2897 +2899 2 -17.78187344459019 -1171.259429799114 22.0937 0.1144 2898 +2900 2 -17.684454778230645 -1172.3987107668495 22.1307 0.1144 2899 +2901 2 -17.12682013470237 -1173.3866928437806 22.2727 0.1144 2900 +2902 2 -16.200789376743103 -1174.0543268867364 22.4305 0.1144 2901 +2903 2 -15.038889852566285 -1173.4542317728437 21.1919 0.1144 2902 +2904 2 -14.202465050505452 -1172.7722488987936 20.3463 0.1144 2903 +2905 2 -13.247390935883573 -1172.255031405297 19.7211 0.1144 2904 +2906 2 -12.190975276907466 -1172.0031315730812 18.8565 0.1144 2905 +2907 2 -11.153970476837912 -1172.2331555818996 17.9864 0.1144 2906 +2908 2 -10.084732645643385 -1172.5373887660567 17.3334 0.1144 2907 +2909 2 -8.999455131095601 -1172.8371622912664 16.8435 0.1144 2908 +2910 2 -7.920619635487526 -1173.1919561799066 16.5049 0.1144 2909 +2911 2 -6.8517127677988015 -1173.591705961905 16.2938 0.1144 2910 +2912 2 -5.794424262182815 -1174.022777679711 16.1714 0.1144 2911 +2913 2 -4.74091086582871 -1174.4696686437087 16.0876 0.1144 2912 +2914 2 -3.6497895881918794 -1174.8074029438442 15.9999 0.1144 2913 +2915 2 -2.5128609741579453 -1174.8633208890035 15.8585 0.1144 2914 +2916 2 -1.37499144465653 -1174.9494142327198 15.7049 0.1144 2915 +2917 2 -0.23955435952501603 -1175.077381711823 15.5565 0.1144 2916 +2918 2 0.8043736840517681 -1175.5260562150365 15.4094 0.1144 2917 +2919 2 1.7755067903332815 -1176.1228882935006 15.2029 0.1144 2918 +2920 2 2.652681298646087 -1176.8487243713905 14.9283 0.1144 2919 +2921 2 3.7582435130506724 -1177.080860473884 14.6749 0.1144 2920 +2922 2 4.896928633981872 -1177.059049115151 14.4606 0.1144 2921 +2923 2 6.03501680712418 -1176.9879526303325 14.209 0.1144 2922 +2924 2 7.099522584844749 -1177.3851255135955 13.9625 0.1144 2923 +2925 2 8.149061642712411 -1177.8276513162448 13.7053 0.1144 2924 +2926 2 9.259673568150276 -1178.0876720097965 13.5037 0.1144 2925 +2927 2 10.123126517016146 -1178.8326240183815 13.3442 0.1144 2926 +2928 2 11.084553149050521 -1179.424740764653 12.901 0.1144 2927 +2929 2 -17.229104417144015 -1174.4285197082668 22.6219 0.1144 2902 +2930 2 -17.86464167957513 -1175.2864605500863 22.8148 0.1144 2929 +2931 2 -17.933705852777678 -1176.4193795895503 23.0262 0.1144 2930 +2932 2 -18.24867574505572 -1177.5125893438785 23.2259 0.1144 2931 +2933 2 -18.57085568229877 -1178.5875764405628 23.4292 0.1144 2932 +2934 2 -18.498301519587812 -1179.7192517223789 23.6611 0.1144 2933 +2935 2 -18.233907466065943 -1180.824447648205 23.9721 0.1144 2934 +2936 2 -18.222411148469064 -1181.8808506937712 24.4282 0.1144 2935 +2937 2 -18.898080446320535 -1182.750078241621 25.0243 0.1144 2936 +2938 2 -19.465312866079103 -1183.6425661306002 25.7802 0.1144 2937 +2939 2 -19.721605998088535 -1184.7025259555394 26.6196 0.1144 2938 +2940 2 -19.95348642733643 -1185.7823420123432 27.3505 0.1144 2939 +2941 2 -20.194226912963245 -1186.8676041136719 28.0084 0.1144 2940 +2942 2 -20.436841641285525 -1187.9540182628807 28.6558 0.1144 2941 +2943 2 -20.68105470774549 -1189.0401236804946 29.3034 0.1144 2942 +2944 2 -20.962702481957308 -1190.1155509589664 29.9564 0.1144 2943 +2945 2 -21.30507613148899 -1191.1706708972229 30.6323 0.1144 2944 +2946 2 -21.671016065913875 -1192.2160959803318 31.3384 0.1144 2945 +2947 2 -21.875543387210882 -1193.2924802030157 32.0793 0.1144 2946 +2948 2 -21.783569048866013 -1194.3814646570306 32.8255 0.1144 2947 +2949 2 -21.5896237821039 -1195.4681039548202 33.5692 0.1144 2948 +2950 2 -21.39625453928187 -1196.553806131262 34.314 0.1144 2949 +2951 2 -21.203022855122356 -1197.6394754806668 35.0571 0.1144 2950 +2952 2 -21.009653612300383 -1198.7251776571084 35.7977 0.1144 2951 +2953 2 -20.90253768174665 -1199.8235185092221 36.5218 0.1144 2952 +2954 2 -20.903003693900985 -1200.9303532181252 37.2151 0.1144 2953 +2955 2 -21.071212426706268 -1202.0220925744773 37.91 0.1144 2954 +2956 2 -21.43386187979337 -1203.0640865160026 38.6207 0.1144 2955 +2957 2 -21.85376462736724 -1204.0849298010273 39.3478 0.1144 2956 +2958 2 -22.272730253593295 -1205.105197062112 40.091 0.1144 2957 +2959 2 -22.691249589562005 -1206.1238988120958 40.8486 0.1144 2958 +2960 2 -23.001017112676607 -1207.17764015684 41.615 0.1144 2959 +2961 2 -23.132381189816158 -1208.2682127446294 42.3657 0.1144 2960 +2962 2 -23.17686597398108 -1209.364542801673 43.1567 0.1144 2961 +2963 2 -23.06498544700497 -1210.4465735765052 43.9947 0.1144 2962 +2964 2 -22.561666101820663 -1211.4074907616796 44.7566 0.1144 2963 +2965 2 -21.961949197379795 -1212.3373262710725 45.4628 0.1144 2964 +2966 2 -21.37104859571781 -1213.2766892568002 46.149 0.1144 2965 +2967 2 -20.93561072739601 -1214.271349516804 46.9946 0.1144 2966 +2968 2 -20.563790804631026 -1215.3022969233361 47.7943 0.1144 2967 +2969 2 -20.199527303555953 -1216.3515052304824 48.4674 0.1144 2968 +2970 2 -19.833001145970343 -1217.4085958206426 49.0515 0.1144 2969 +2971 2 -19.655885820497417 -1218.520370016009 49.5337 0.1144 2970 +2972 2 -20.134997503983755 -1219.5520184807233 49.761 0.1144 2971 +2973 2 -20.623013784681632 -1220.5865579917008 49.8134 0.1144 2972 +2974 2 -21.111743647982223 -1221.6201275542935 49.7566 0.1144 2973 +2975 2 -21.600388318432977 -1222.6536447510734 49.6373 0.1144 2974 +2976 2 -22.297963987174228 -1223.5592268160353 49.5261 0.1144 2975 +2977 2 -23.004904571530574 -1224.458357652004 49.4418 0.1144 2976 +2978 2 -23.711131573284376 -1225.3584584363575 49.3928 0.1144 2977 +2979 2 -24.41807215764078 -1226.2575892723264 49.3688 0.1144 2978 +2980 2 -25.124384352244363 -1227.1577424224924 49.3609 0.1144 2979 +2981 2 -25.831324936600765 -1228.0568732584613 49.3606 0.1144 2980 +2982 2 -34.81074375054044 -1157.6026573208478 32.3579 0.1144 2876 +2983 2 -34.24803876876109 -1156.6350115160822 31.8732 0.1144 2982 +2984 2 -33.98676370475022 -1155.543818049768 31.4664 0.1144 2983 +2985 2 -33.88788523039818 -1154.4114712401247 31.1814 0.1144 2984 +2986 2 -33.695670030912254 -1153.2888945758891 30.9907 0.1144 2985 +2987 2 -33.18234226377166 -1152.2844578663435 30.87 0.1144 2986 +2988 2 -32.6731130581706 -1151.262468328157 30.8017 0.1144 2987 +2989 2 -32.71153633007697 -1150.1580571673226 30.7614 0.1144 2988 +2990 2 -33.05749577477809 -1149.0708350269012 30.7238 0.1144 2989 +2991 2 -33.45356653212161 -1147.998333835677 30.6762 0.1144 2990 +2992 2 -33.822202090247515 -1146.915659648636 30.6138 0.1144 2991 +2993 2 -33.99798085929825 -1145.790973690534 30.4951 0.1144 2992 +2994 2 -34.14916862021181 -1144.6579803670984 30.3416 0.1144 2993 +2995 2 -33.98070421416094 -1143.540494853146 30.1874 0.1144 2994 +2996 2 -33.76464992680707 -1142.4194634686983 30.0118 0.1144 2995 +2997 2 -33.52012882128878 -1141.307697086334 29.7573 0.1144 2996 +2998 2 -33.22178866445029 -1140.207102083248 29.5389 0.1144 2997 +2999 2 -32.7675445861957 -1139.16115913673 29.3838 0.1144 2998 +3000 2 -32.22565929741131 -1138.1552500286098 29.2796 0.1144 2999 +3001 2 -31.435023092182746 -1137.337666069018 29.2172 0.1144 3000 +3002 2 -30.51742923243387 -1136.6567339442427 29.192 0.1144 3001 +3003 2 -29.589530234138977 -1135.9883658204044 29.1939 0.1144 3002 +3004 2 -29.256689571571712 -1134.935114614214 29.2043 0.1144 3003 +3005 2 -28.662933047912816 -1133.9698629161512 29.2188 0.1144 3004 +3006 2 -27.686352690012086 -1133.4045640177246 29.2393 0.1144 3005 +3007 2 -26.88422647132029 -1132.6012807431025 29.2676 0.1144 3006 +3008 2 -26.482194494035582 -1131.5404789099402 29.3084 0.1144 3007 +3009 2 -26.240710605655977 -1130.4237713422876 29.367 0.1144 3008 +3010 2 -26.06809906637261 -1129.2931724273287 29.4448 0.1144 3009 +3011 2 -25.83137736536895 -1128.1754011062285 29.5428 0.1144 3010 +3012 2 -25.389342393809955 -1127.1248725612004 29.6856 0.1144 3011 +3013 2 -24.875433092099627 -1126.1106879381582 30.007 0.1144 3012 +3014 2 -24.41548660353834 -1125.0719215170316 30.322 0.1144 3013 +3015 2 -24.096958937577256 -1123.9778160806054 30.5715 0.1144 3014 +3016 2 -24.126663505887052 -1122.8371746257117 30.7642 0.1144 3015 +3017 2 -24.549508245658274 -1121.7757311858395 30.9042 0.1144 3016 +3018 2 -25.003536670038045 -1120.7267648375446 31.0022 0.1144 3017 +3019 2 -25.345216146240887 -1119.6356207244496 31.0702 0.1144 3018 +3020 2 -25.628849660974538 -1118.527578198497 31.1623 0.1144 3019 +3021 2 -25.771311822588643 -1117.3957947993836 31.3267 0.1144 3020 +3022 2 -25.756460625150964 -1116.2533550845915 31.4874 0.1144 3021 +3023 2 -25.737560822940054 -1115.1110091748615 31.6436 0.1144 3022 +3024 2 -25.653914644276256 -1113.9800433677767 31.8472 0.1144 3023 +3025 2 -25.13403874149708 -1112.968881933727 32.146 0.1144 3024 +3026 2 -24.672314916885796 -1111.9263232736093 32.3764 0.1144 3025 +3027 2 -24.253846230220006 -1110.8660998734335 32.5833 0.1144 3026 +3028 2 -23.780883247297993 -1109.8288403944289 32.776 0.1144 3027 +3029 2 -23.446855993303586 -1108.7358894149293 32.9042 0.1144 3028 +3030 2 -23.15497326862419 -1107.6312817356902 32.9728 0.1144 3029 +3031 2 -22.85431808946231 -1106.5386542084684 32.9946 0.1144 3030 +3032 2 -23.247194863665584 -1105.5609114916497 32.9868 0.1144 3031 +3033 2 -24.069631714112745 -1104.7799489336314 32.9546 0.1144 3032 +3034 2 -24.70107850695217 -1103.829237979759 32.891 0.1144 3033 +3035 2 -25.16949280915179 -1102.7918140107402 32.7953 0.1144 3034 +3036 2 -25.359029066269557 -1101.6796927461123 32.6973 0.1144 3035 +3037 2 -25.271389750228252 -1100.5420467553558 32.6234 0.1144 3036 +3038 2 -25.09467724035875 -1099.4116268383095 32.5696 0.1144 3037 +3039 2 -24.787961655065544 -1098.3179738953067 32.5335 0.1144 3038 +3040 2 -24.275077769135862 -1097.297728866133 32.5122 0.1144 3039 +3041 2 -23.824570462476572 -1096.256782572299 32.4996 0.1144 3040 +3042 2 -23.536970807878674 -1095.1494080698496 32.4859 0.1144 3041 +3043 2 -23.126254670544256 -1094.093949958633 32.466 0.1144 3042 +3044 2 -22.422119247064927 -1093.209924786253 32.4391 0.1144 3043 +3045 2 -21.638794716843904 -1092.380636579202 32.4047 0.1144 3044 +3046 2 -21.0671358736231 -1091.4034961251382 32.3509 0.1144 3045 +3047 2 -20.68008602941063 -1090.329014171779 32.263 0.1144 3046 +3048 2 -20.395468124555578 -1089.223472472775 32.1544 0.1144 3047 +3049 2 -20.203126292970126 -1088.0967096451036 32.0536 0.1144 3048 +3050 2 -19.890923223902462 -1087.0077829608567 31.9673 0.1144 3049 +3051 2 -19.38820381627329 -1085.9816955536671 31.8934 0.1144 3050 +3052 2 -19.040310548466834 -1084.907101688891 31.8298 0.1144 3051 +3053 2 -18.920630203385485 -1083.7713589737477 31.7568 0.1144 3052 +3054 2 -18.70457281444851 -1082.6570163851843 31.6512 0.1144 3053 +3055 2 -18.21659487141727 -1081.633299467714 31.5311 0.1144 3054 +3056 2 -17.541692907054312 -1080.7148915254036 31.4084 0.1144 3055 +3057 2 -16.783112451548448 -1079.8604338772288 31.2791 0.1144 3056 +3058 2 -16.074209330063695 -1078.966787423451 31.1699 0.1144 3057 +3059 2 -15.479157689232409 -1077.9927577602766 31.1072 0.1144 3058 +3060 2 -15.065727094500346 -1076.9329313861285 31.0918 0.1144 3059 +3061 2 -14.99278238787383 -1075.808426112786 31.1139 0.1144 3060 +3062 2 -14.794456825490329 -1074.7022830563483 31.2054 0.1144 3061 +3063 2 -14.253323456975295 -1073.7062265933507 31.3863 0.1144 3062 +3064 2 -13.860876832467795 -1072.6472082994046 31.5708 0.1144 3063 +3065 2 -13.72417282750223 -1071.5172001290684 31.7122 0.1144 3064 +3066 2 -14.037115091612407 -1070.4445452734258 31.7814 0.1144 3065 +3067 2 -14.595020129068871 -1069.447338941125 31.8002 0.1144 3066 +3068 2 -15.007979396680525 -1068.3865098628596 31.8352 0.1144 3067 +3069 2 -14.874074349425882 -1067.2849849478805 31.8629 0.1144 3068 +3070 2 -14.097682669235041 -1066.509727617099 31.8797 0.1144 3069 +3071 2 -13.288920020471721 -1065.7063560480444 31.8895 0.1144 3070 +3072 2 -13.449210506836948 -1064.680961797046 31.8909 0.1144 3071 +3073 2 -14.015708308327078 -1063.691736968755 31.8772 0.1144 3072 +3074 2 -14.065809203821857 -1062.5811223324972 31.8444 0.1144 3073 +3075 2 -13.343530207078572 -1061.7289061328954 31.7923 0.1144 3074 +3076 2 -12.556019513421631 -1060.899744557944 31.6968 0.1144 3075 +3077 2 -11.919125871704125 -1059.9523475244148 31.5904 0.1144 3076 +3078 2 -11.647833192804683 -1058.8468972214273 31.4986 0.1144 3077 +3079 2 -11.710281446194074 -1057.7076015330088 31.4289 0.1144 3078 +3080 2 -11.2509992760057 -1056.6612615604631 31.3818 0.1144 3079 +3081 2 -10.520307205677682 -1055.781102200824 31.3418 0.1144 3080 +3082 2 -9.679362175092137 -1055.0104181569168 31.2872 0.1144 3081 +3083 2 -9.266556868529847 -1053.9562582644553 31.2418 0.1144 3082 +3084 2 -9.329134855601922 -1052.8144599435886 31.2402 0.1144 3083 +3085 2 -9.39697368612002 -1051.6730781875258 31.3261 0.1144 3084 +3086 2 -9.331649386095819 -1050.5384670048616 31.5017 0.1144 3085 +3087 2 -9.024393705482623 -1049.4391999459851 31.673 0.1144 3086 +3088 2 -8.646207019232122 -1048.363475241266 31.7878 0.1144 3087 +3089 2 -8.438759524058014 -1047.2395175744716 31.8906 0.1144 3088 +3090 2 -8.231532466045849 -1046.1237946758863 32.0085 0.1144 3089 +3091 2 -7.7615543344498406 -1045.081679204443 32.1163 0.1144 3090 +3092 2 -7.416557623536335 -1044.0088657773 32.228 0.1144 3091 +3093 2 -7.48581820332646 -1042.8804481497846 32.375 0.1144 3092 +3094 2 -7.886656658675406 -1041.8175682399578 32.573 0.1144 3093 +3095 2 -8.516182353636168 -1040.8764754658996 32.7908 0.1144 3094 +3096 2 -9.369391141981396 -1040.1479985043625 33.1694 0.1144 3095 +3097 2 -10.237861258932298 -1039.4517915265437 33.6885 0.1144 3096 +3098 2 -10.89549439115973 -1038.5413570624573 34.095 0.1144 3097 +3099 2 -11.079589421845924 -1037.4728435156658 34.3616 0.1144 3098 +3100 2 -10.963381657597779 -1036.3379441168076 34.5629 0.1144 3099 +3101 2 -10.782799540867359 -1035.2117189754097 34.736 0.1144 3100 +3102 2 -10.427644554819665 -1034.131370334514 34.8566 0.1144 3101 +3103 2 -10.101722335351724 -1033.0407015503006 34.9577 0.1144 3102 +3104 2 -9.710301126624927 -1031.975622850223 35.1182 0.1144 3103 +3105 2 -8.819295041937039 -1031.4655065918573 35.4225 0.1144 3104 +3106 2 -7.7702177765353895 -1031.241006722776 35.5396 0.1144 3105 +3107 2 -8.639445324385122 -1030.5653374249246 34.7959 0.1144 3106 +3108 2 -8.75847034836221 -1030.7606923421067 33.5888 0.1144 3107 +3109 2 -9.121279669033868 -1031.7061801986306 33.0546 0.1144 3108 +3110 2 -9.300839471566746 -1032.831776950276 33.038 0.1144 3109 +3111 2 -9.40225030382112 -1033.9710798481487 33.0025 0.1144 3110 +3112 2 -9.297525378387604 -1035.1071610380259 32.9389 0.1144 3111 +3113 2 -8.937582592524052 -1036.188487742082 32.9042 0.1144 3112 +3114 2 -8.403733978514424 -1037.1990723586878 32.9395 0.1144 3113 +3115 2 -7.69562843623703 -1038.0932727282893 33.0294 0.1144 3114 +3116 2 -6.666083168896932 -1038.5601784066632 33.1288 0.1144 3115 +3117 2 -5.6794728844714655 -1038.0329669152616 33.2248 0.1144 3116 +3118 2 -4.573852793624496 -1038.2545031757604 33.395 0.1144 3117 +3119 2 -4.003127389448821 -1039.2397208385273 33.6549 0.1144 3118 +3120 2 -7.655645303018446 -1030.1647464390567 34.2336 0.1144 3107 +3121 2 -6.767896162409556 -1029.4660058123943 34.0371 0.1144 3120 +3122 2 -6.267981915657515 -1028.4550240687936 34.0105 0.1144 3121 +3123 2 -5.874328468410624 -1027.3805913796637 34.0631 0.1144 3122 +3124 2 -5.439070587168715 -1026.3234295061472 34.1426 0.1144 3123 +3125 2 -5.069259329372926 -1025.240762741345 34.1919 0.1144 3124 +3126 2 -4.79943835651153 -1024.1308175433264 34.2104 0.1144 3125 +3127 2 -4.723773681857608 -1022.991258972208 34.2143 0.1144 3126 +3128 2 -4.877910365477021 -1021.8599608935556 34.214 0.1144 3127 +3129 2 -5.173121495570285 -1020.7550438791744 34.2135 0.1144 3128 +3130 2 -5.395192714401389 -1019.6333410558888 34.2124 0.1144 3129 +3131 2 -5.570398561095203 -1018.5029034232508 34.2112 0.1144 3130 +3132 2 -5.601307543097931 -1017.3603025328119 34.2096 0.1144 3131 +3133 2 -5.595319503622221 -1016.2166200666601 34.207 0.1144 3132 +3134 2 -5.767361501077772 -1015.0869374558744 34.2034 0.1144 3133 +3135 2 -5.792518808544031 -1013.9449094877926 34.1986 0.1144 3134 +3136 2 -5.650074055605074 -1012.8112552493407 34.1916 0.1144 3135 +3137 2 -5.636788369268061 -1011.6683692442908 34.1824 0.1144 3136 +3138 2 -5.422384785864551 -1010.5469439353988 34.169 0.1144 3137 +3139 2 -4.82599899765782 -1009.5773763402178 34.1494 0.1144 3138 +3140 2 -4.066919886081735 -1008.7214383737921 34.1228 0.1144 3139 +3141 2 -3.242420082393835 -1007.9285830756963 34.0886 0.1144 3140 +3142 2 -2.282884308226187 -1007.3092016277238 34.0432 0.1144 3141 +3143 2 -1.3525764825454019 -1006.6447523749761 33.9528 0.1144 3142 +3144 2 -0.5654268862960805 -1005.8171039453124 33.8363 0.1144 3143 +3145 2 -0.0972784565627478 -1004.7786955200105 33.7333 0.1144 3144 +3146 2 0.1956265823141905 -1003.6734594510186 33.6445 0.1144 3145 +3147 2 0.7344003876730767 -1002.6668805138959 33.5653 0.1144 3146 +3148 2 1.0642414782316507 -1001.5738029022968 33.4919 0.1144 3147 +3149 2 1.0864426883433396 -1000.4322448414565 33.4219 0.1144 3148 +3150 2 1.1222254901928466 -999.2889118536127 33.3483 0.1144 3149 +3151 2 1.1182342524465696 -998.1486636306273 33.1436 0.1144 3150 +3152 2 1.141948607846075 -997.0074666671946 32.935 0.1144 3151 +3153 2 1.0645767903633896 -995.8679536431974 32.7729 0.1144 3152 +3154 2 1.1009879819657726 -994.7256429695511 32.6542 0.1144 3153 +3155 2 1.2709265031012364 -993.5952785199004 32.5752 0.1144 3154 +3156 2 1.7589427837991707 -992.5607390089228 32.5321 0.1144 3155 +3157 2 2.271644570233434 -991.537906154451 32.5203 0.1144 3156 +3158 2 2.2358834018901064 -990.8482081634152 32.5142 0.1144 3157 +3159 2 2.2606646123200846 -989.7089378084906 32.5038 0.1144 3158 +3160 2 2.538340457091863 -988.6117715379418 32.4912 0.1144 3159 +3161 2 3.130137545205457 -987.6477242535723 32.4741 0.1144 3160 +3162 2 3.9377481460885804 -986.8424784418221 32.4528 0.1144 3161 +3163 2 4.845993527414805 -986.1486290436818 32.424 0.1144 3162 +3164 2 5.704717932273468 -985.4045783219565 32.3672 0.1144 3163 +3165 2 6.301462408841445 -984.4508714122165 32.2871 0.1144 3164 +3166 2 6.704246306395447 -983.3802169339318 32.2218 0.1144 3165 +3167 2 7.238252413748796 -982.3832592782065 32.1961 0.1144 3166 +3168 2 8.166873589174088 -981.9278454416229 32.23 0.1144 3167 +3169 2 9.158499041085946 -981.470092557284 32.2938 0.1144 3168 +3170 2 9.703566001374384 -980.5065976798705 32.3347 0.1144 3169 +3171 2 9.964215084678841 -979.3970080686303 32.3322 0.1144 3170 +3172 2 10.001521958379215 -978.2582551686669 32.3459 0.1144 3171 +3173 2 9.624023934827989 -977.1984008568793 32.4117 0.1144 3172 +3174 2 9.081712290467351 -976.1983003767319 32.1636 0.1144 3173 +3175 2 9.211116932061628 -975.1089322026356 31.4104 0.1144 3174 +3176 2 9.16909134563943 -974.002861725638 30.7994 0.1144 3175 +3177 2 9.074129054385452 -972.9023324833006 30.3204 0.1144 3176 +3178 2 9.391097412412051 -971.8211583483852 29.9382 0.1144 3177 +3179 2 9.389005040633606 -970.7844465649177 29.7237 0.1144 3178 +3180 2 8.917159596850524 -969.7437321145611 29.6383 0.1144 3179 +3181 2 8.722006814812374 -968.6484445853421 29.5154 0.1144 3180 +3182 2 8.786755090896492 -967.5128962813303 29.2272 0.1144 3181 +3183 2 8.645280007396337 -966.3979958818556 28.8576 0.1144 3182 +3184 2 8.658618752082674 -965.2792576962688 28.4413 0.1144 3183 +3185 2 8.89873325700313 -964.1755994500137 28.0213 0.1144 3184 +3186 2 9.237760265264683 -963.0930740379937 27.6674 0.1144 3185 +3187 2 9.285088547973288 -961.9708157238539 27.3885 0.1144 3186 +3188 2 9.232578132556114 -960.832219589892 27.1513 0.1144 3187 +3189 2 9.359793691389996 -959.7066351498829 26.8519 0.1144 3188 +3190 2 9.958277166341247 -958.7599585946592 26.6464 0.1144 3189 +3191 2 10.246023684351002 -957.6726833068993 26.4185 0.1144 3190 +3192 2 10.652192560841854 -956.618611708871 26.05 0.1144 3191 +3193 2 10.732310691276695 -955.4817152293375 25.8791 0.1144 3192 +3194 2 10.692805843657254 -954.3404070470245 25.7025 0.1144 3193 +3195 2 10.702663489993938 -953.2009193565211 25.493 0.1144 3194 +3196 2 10.875545423205637 -952.0795446969319 25.2193 0.1144 3195 +3197 2 10.703591720182999 -950.9564985162176 24.9157 0.1144 3196 +3198 2 10.715998854151167 -949.8276513197261 24.5109 0.1144 3197 +3199 2 10.956239991171202 -948.7198069100352 24.1427 0.1144 3198 +3200 2 11.19096081737976 -947.6073738002513 23.8316 0.1144 3199 +3201 2 11.443143768750133 -946.501579529585 23.587 0.1144 3200 +3202 2 12.071183462558793 -945.5985951925111 23.3705 0.1144 3201 +3203 2 13.051685793133231 -945.0375762625827 23.1629 0.1144 3202 +3204 2 13.423229230620734 -944.1148911515832 22.9972 0.1144 3203 +3205 2 13.0646698563624 -943.0314229124864 22.9298 0.1144 3204 +3206 2 12.682712173863962 -941.9555289173454 22.9191 0.1144 3205 +3207 2 12.539902942988249 -940.8361664498772 22.9363 0.1144 3206 +3208 2 12.861471620207652 -939.7777536212363 22.9676 0.1144 3207 +3209 2 13.496978748736836 -938.8258093268637 23.0004 0.1144 3208 +3210 2 13.958400044919387 -937.7982265966521 23.0234 0.1144 3209 +3211 2 13.936551041056646 -936.6944266958412 23.0591 0.1144 3210 +3212 2 14.154057904120918 -935.6784972620122 23.1059 0.1144 3211 +3213 2 14.858410663179171 -934.779548525539 23.0966 0.1144 3212 +3214 2 15.447219798383657 -933.8039564528468 23.0165 0.1144 3213 +3215 2 15.972004059413933 -932.7898953603208 22.8724 0.1144 3214 +3216 2 16.510149475019972 -931.7822941090005 22.6757 0.1144 3215 +3217 2 17.082742338005374 -930.7978888351128 22.4335 0.1144 3216 +3218 2 17.62507701863038 -929.7971030117761 22.1608 0.1144 3217 +3219 2 17.58504989795668 -928.7030681541914 21.8981 0.1144 3218 +3220 2 17.28172512112431 -927.6044295740571 21.674 0.1144 3219 +3221 2 17.277643179898604 -926.4749187517292 21.44 0.1144 3220 +3222 2 17.352638025549908 -925.3384716640362 21.1827 0.1144 3221 +3223 2 17.313582569770972 -924.2022867665069 20.8997 0.1144 3222 +3224 2 17.2179029017947 -923.0700361532873 20.5875 0.1144 3223 +3225 2 17.112913785599062 -921.9381082998088 20.2521 0.1144 3224 +3226 2 16.826025718147832 -920.8400481526612 19.9754 0.1144 3225 +3227 2 16.445633546750003 -919.7646004477775 19.7839 0.1144 3226 +3228 2 16.121592092038185 -918.6693054073304 19.6148 0.1144 3227 +3229 2 15.888072991529981 -917.5532307280648 19.4035 0.1144 3228 +3230 2 15.612908710313576 -916.4480816574219 19.155 0.1144 3229 +3231 2 15.234743266806277 -915.3739649983308 18.8936 0.1144 3230 +3232 2 14.829090258268621 -914.309936142207 18.623 0.1144 3231 +3233 2 14.42255249419594 -913.246568502873 18.3529 0.1144 3232 +3234 2 13.975521597295284 -912.1960007148573 18.1543 0.1144 3233 +3235 2 13.514625379118968 -911.1511384387316 18.034 0.1144 3234 +3236 2 12.801898309711277 -910.2625959386036 17.8987 0.1144 3235 +3237 2 11.997589619308854 -909.4544093137804 17.7141 0.1144 3236 +3238 2 11.18245282476957 -908.6568693861352 17.4818 0.1144 3237 +3239 2 10.368881541330865 -907.8597757487476 17.21 0.1144 3238 +3240 2 9.555492357387578 -907.0652699366581 16.909 0.1144 3239 +3241 2 8.743125487641834 -906.2701357348157 16.5972 0.1144 3240 +3242 2 7.9292454726082156 -905.4746404355657 16.2957 0.1144 3241 +3243 2 7.2382433671314175 -904.5712182196407 16.0221 0.1144 3242 +3244 2 7.0160486177838095 -903.4603903556751 15.8117 0.1144 3243 +3245 2 6.860261230214064 -902.3286983525779 15.659 0.1144 3244 +3246 2 6.261604285100844 -901.363349233312 15.5007 0.1144 3245 +3247 2 5.741516260741349 -900.3468887191168 15.3592 0.1144 3246 +3248 2 5.39782498318047 -899.256863826865 15.2576 0.1144 3247 +3249 2 5.076594892511935 -898.1598407145975 15.1861 0.1144 3248 +3250 2 5.122497631829049 -897.0197951065084 15.1248 0.1144 3249 +3251 2 5.449621163406761 -895.9243969619563 15.073 0.1144 3250 +3252 2 5.687365178608047 -894.8059972511035 15.0497 0.1144 3251 +3253 2 5.8182292146042585 -893.6687797283388 15.0592 0.1144 3252 +3254 2 5.814992998710352 -892.5253676561151 15.0173 0.1144 3253 +3255 2 5.662907146652287 -891.4061903897255 14.5838 0.1144 3254 +3256 2 2.899135752173038 -991.6476678808771 32.9031 0.1144 3157 +3257 2 3.8797410978630182 -991.1282557939901 33.4488 0.1144 3256 +3258 2 4.7242470037145665 -990.3633648638688 33.686 0.1144 3257 +3259 2 5.324692323257693 -989.3981100642233 33.9654 0.1144 3258 +3260 2 5.586854551850024 -988.2888815503906 34.2107 0.1144 3259 +3261 2 5.304246452897047 -987.186899430569 34.4576 0.1144 3260 +3262 2 4.993530224140841 -986.0915129941059 34.6959 0.1144 3261 +3263 2 4.7066390551064785 -984.9867640510739 34.9275 0.1144 3262 +3264 2 4.723846714117258 -983.8481580145226 35.1812 0.1144 3263 +3265 2 5.0998066724772855 -982.7711022640111 35.3752 0.1144 3264 +3266 2 5.6393885580378935 -981.785507297113 35.8985 0.1144 3265 +3267 2 -64.94996999951002 -1132.1922510790455 42.0325 0.1144 2332 +3268 2 -64.77582990171948 -1131.1210463010775 41.148 0.1144 3267 +3269 2 -65.30661759261704 -1130.6791680065307 40.74 0.1144 3268 +3270 2 -66.24103508437906 -1130.1027291536684 40.0907 0.1144 3269 +3271 2 -67.30704810599485 -1130.0113205230832 39.3915 0.1144 3270 +3272 2 -68.34272246381914 -1130.3645653030096 38.6638 0.1144 3271 +3273 2 -69.00166793707996 -1131.1603623143567 37.9243 0.1144 3272 +3274 2 -69.51866269618534 -1132.1107102711903 37.1053 0.1144 3273 +3275 2 -70.6156848141427 -1132.1632552301544 36.463 0.1144 3274 +3276 2 -71.5770335688917 -1132.7031104994094 35.8711 0.1144 3275 +3277 2 -72.70139097253406 -1132.800746501348 35.4225 0.1144 3276 +3278 2 -73.8327876566571 -1132.7776988733679 35.0302 0.1144 3277 +3279 2 -74.96463442515721 -1132.725465333991 34.6382 0.1144 3278 +3280 2 -76.09939757341476 -1132.7515566612221 34.2885 0.1144 3279 +3281 2 -77.2339433860933 -1132.76272442436 33.9368 0.1144 3280 +3282 2 -78.36427460025908 -1132.6934781516618 33.5423 0.1144 3281 +3283 2 -79.47355137203306 -1132.5884010199793 32.9588 0.1144 3282 +3284 2 -80.3816216505341 -1132.2186732562084 31.6722 0.1144 3283 +3285 2 -81.33656371141615 -1132.1114614081766 30.3993 0.1144 3284 +3286 2 -82.24844474371065 -1131.6742344728884 29.2914 0.1144 3285 +3287 2 -83.01550454296512 -1131.03377825708 27.9441 0.1144 3286 +3288 2 -83.98529218454507 -1130.7624376220128 26.6489 0.1144 3287 +3289 2 -84.48399941345843 -1131.071679646695 24.462 0.1144 3288 +3290 2 -84.95395221156053 -1132.0265656543193 23.6309 0.1144 3289 +3291 2 -85.65509527248571 -1132.786558146464 23.2106 0.1144 3290 +3292 2 -86.74694414889319 -1132.8561127371663 22.8032 0.1144 3291 +3293 2 -87.86101324194505 -1132.6559683994828 22.4028 0.1144 3292 +3294 2 -88.96062047438033 -1132.3985738688962 21.9739 0.1144 3293 +3295 2 -90.04589798892812 -1132.098800343686 21.4708 0.1144 3294 +3296 2 -90.93359766450112 -1131.4694648401687 20.8991 0.1144 3295 +3297 2 -91.04108289622718 -1130.4774631794035 20.1764 0.1144 3296 +3298 2 -91.80800164447305 -1130.1605389714468 18.917 0.1144 3297 +3299 2 -92.7622797777451 -1129.7440902899039 17.9589 0.1144 3298 +3300 2 -93.04933552578274 -1128.9711604887455 17.0652 0.1144 3299 +3301 2 -92.20805914092853 -1128.4217702319274 15.9632 0.1144 3300 +3302 2 -91.1531337027929 -1128.099653669214 15.2845 0.1144 3301 +3303 2 -90.03917963471912 -1127.913099161839 14.8769 0.1144 3302 +3304 2 -88.95538002937548 -1128.19500020025 14.6055 0.1144 3303 +3305 2 -88.10346635820264 -1128.9322551268992 14.424 0.1144 3304 +3306 2 -87.5387489943455 -1129.918583398297 14.2923 0.1144 3305 +3307 2 -87.11011114078815 -1130.976465962903 14.17 0.1144 3306 +3308 2 -86.67635000244724 -1132.0338991356684 14.022 0.1144 3307 +3309 2 -86.19533577069035 -1133.067569203363 13.7885 0.1144 3308 +3310 2 -85.73048234375676 -1134.0992000585957 13.3894 0.1144 3309 +3311 2 -85.28034065596722 -1135.126375049001 12.8422 0.1144 3310 +3312 2 -85.01545887293804 -1136.225871666103 12.4247 0.1144 3311 +3313 2 -84.69084449586921 -1137.3154150320138 12.1157 0.1144 3312 +3314 2 -84.28443646547919 -1138.3762800388995 11.7793 0.1144 3313 +3315 2 -83.42194019724309 -1130.89026073574 25.0973 0.1144 3288 +3316 2 -82.79640595281296 -1131.593411188378 23.9586 0.1144 3315 +3317 2 -82.57128010302534 -1132.6608845987062 23.1788 0.1144 3316 +3318 2 -82.40187898921727 -1133.7666014895244 22.6008 0.1144 3317 +3319 2 -82.23157909172818 -1134.8825649499097 22.1509 0.1144 3318 +3320 2 -82.05917909844806 -1136.0040456195234 21.7932 0.1144 3319 +3321 2 -81.9052768801368 -1137.1326706800278 21.5438 0.1144 3320 +3322 2 -81.76232388743239 -1138.2654435663017 21.3757 0.1144 3321 +3323 2 -82.05800264522253 -1139.3375224869933 21.2496 0.1144 3322 +3324 2 -82.61299272280053 -1140.3352882229206 21.148 0.1144 3323 +3325 2 -83.19818861692625 -1141.3167586022485 21.0502 0.1144 3324 +3326 2 -83.7848648293027 -1142.2977303255063 20.9416 0.1144 3325 +3327 2 -84.37099784477613 -1143.2797767287746 20.8126 0.1144 3326 +3328 2 -84.85322101168799 -1144.3107553644859 20.5799 0.1144 3327 +3329 2 -85.20053825555442 -1145.3862863506101 20.1748 0.1144 3328 +3330 2 -85.80646554824222 -1146.3361298566551 19.763 0.1144 3329 +3331 2 -86.57766616461754 -1147.1700560280292 19.4577 0.1144 3330 +3332 2 -87.35942518373804 -1147.9997905253376 19.234 0.1144 3331 +3333 2 -88.09804639226337 -1148.8714423137926 19.0805 0.1144 3332 +3334 2 -88.32136860102463 -1149.984850882591 18.9921 0.1144 3333 +3335 2 -88.5178114031961 -1151.1114347123503 18.9415 0.1144 3334 +3336 2 -88.71376337427728 -1152.2390080292698 18.894 0.1144 3335 +3337 2 -88.86124621915008 -1153.3730592937497 18.8167 0.1144 3336 +3338 2 -88.97049789516876 -1154.5104910505102 18.7008 0.1144 3337 +3339 2 -89.07663808776203 -1155.648592636273 18.5608 0.1144 3338 +3340 2 -89.18335430429534 -1156.7857571006884 18.4117 0.1144 3339 +3341 2 -89.04543940352471 -1157.91892701299 18.2795 0.1144 3340 +3342 2 -88.5390674279825 -1158.9438184230357 18.2061 0.1144 3341 +3343 2 -88.71154140860335 -1160.0744501650315 18.1844 0.1144 3342 +3344 2 -88.88820155266006 -1161.2049552749281 18.2099 0.1144 3343 +3345 2 -89.30153664350473 -1162.435277164791 18.4038 0.1144 3344 +3346 2 -89.82481086083021 -1163.4430105588406 18.5815 0.1144 3345 +3347 2 -90.54070599916457 -1164.327573417494 18.765 0.1144 3346 +3348 2 -90.69711737198475 -1165.3838898674524 19.0043 0.1144 3347 +3349 2 -90.57122947841424 -1166.515062006542 19.3021 0.1144 3348 +3350 2 -89.74925163830869 -1167.1444160248616 19.6627 0.1144 3349 +3351 2 -88.62614959943573 -1167.2960466955037 19.9727 0.1144 3350 +3352 2 -87.52283772990563 -1167.5726447586821 20.264 0.1144 3351 +3353 2 -86.4855813524839 -1168.03891894572 20.535 0.1144 3352 +3354 2 -85.43070167425373 -1168.4660717924353 20.8204 0.1144 3353 +3355 2 -84.36410982888833 -1168.8578540985698 21.138 0.1144 3354 +3356 2 -83.29707169326542 -1169.2480708936037 21.4787 0.1144 3355 +3357 2 -82.59275908251573 -1170.1164313005424 21.9311 0.1144 3356 +3358 2 -82.07426670315868 -1171.038442071927 22.9975 0.1144 3357 +3359 2 -88.80200400956119 -1161.4782903688397 18.1033 0.1144 3344 +3360 2 -88.45818609990079 -1162.5641290976557 17.9494 0.1144 3359 +3361 2 -88.23789531870267 -1163.6829353640483 17.9494 0.1144 3360 +3362 2 -88.11664849103818 -1164.8195426210991 17.9494 0.1144 3361 +3363 2 -88.01102788350659 -1165.9591815846595 17.9494 0.1144 3362 +3364 2 -87.48320272303488 -1166.9118437703123 17.9494 0.1144 3363 +3365 2 -86.94205405311737 -1167.9058510172913 17.9494 0.1144 3364 +3366 2 -87.63130665921665 -1168.8182899494864 17.9494 0.1144 3365 +3367 2 -88.32215760345349 -1169.7304201500867 17.9494 0.1144 3366 +3368 2 -88.9459019155446 -1170.68851555407 17.9494 0.1144 3367 +3369 2 -89.54967915567522 -1171.661335292922 17.9494 0.1144 3368 +3370 2 -90.15328522287342 -1172.6325238665995 17.9494 0.1144 3369 +3371 2 -64.60419084366242 -1131.5203988442638 41.9398 0.1144 3268 +3372 2 -64.50972659295331 -1132.4560795137968 43.0623 0.1144 3371 +3373 2 -65.35925928539075 -1133.1232302197695 43.7746 0.1144 3372 +3374 2 -66.28635941353718 -1133.766926866018 44.21 0.1144 3373 +3375 2 -67.17142933283185 -1134.47881061914 44.5158 0.1144 3374 +3376 2 -68.00216613151684 -1135.2594184728737 44.742 0.1144 3375 +3377 2 -68.50743571931412 -1136.2508027594386 45.0156 0.1144 3376 +3378 2 -67.72319650046228 -1136.836329315296 45.3558 0.1144 3377 +3379 2 -66.74904330677123 -1137.4205059968072 45.6761 0.1144 3378 +3380 2 -65.842791412807 -1138.114970182123 45.7943 0.1144 3379 +3381 2 -65.13468587052961 -1139.0091705517248 45.995 0.1144 3380 +3382 2 -69.72367484796973 -1146.9823295558417 38.5241 0.1144 1874 +3383 2 -70.50726977211906 -1147.8023935075234 38.8651 0.1144 3382 +3384 2 -71.3044900416063 -1148.6201509543976 39.0468 0.1144 3383 +3385 2 -72.12230887438989 -1149.415472956322 39.2456 0.1144 3384 +3386 2 -72.95741393600616 -1150.1933663526577 39.41 0.1144 3385 +3387 2 -73.83561536896775 -1150.9252086602241 39.468 0.1144 3386 +3388 2 -74.78519999921679 -1151.3289487746479 39.3448 0.1144 3387 +3389 2 -75.45197178551604 -1150.519562145777 38.9486 0.1144 3388 +3390 2 -75.92786514153579 -1149.5028165169706 38.4182 0.1144 3389 +3391 2 -76.40032425438903 -1148.4960501653866 37.7689 0.1144 3390 +3392 2 -76.88146993633842 -1147.5013139225857 37.044 0.1144 3391 +3393 2 -77.55289510017985 -1146.6450181679772 36.2454 0.1144 3392 +3394 2 -78.28596474588659 -1145.8347129325607 35.4091 0.1144 3393 +3395 2 -79.0178823437131 -1145.02628193984 34.5652 0.1144 3394 +3396 2 -79.87560654249 -1144.3517584867022 33.7526 0.1144 3395 +3397 2 -80.83019682269179 -1143.8038004801504 33.0047 0.1144 3396 +3398 2 -81.74346916858264 -1143.180793367646 32.2932 0.1144 3397 +3399 2 -82.16277354848859 -1142.1776248439214 31.6865 0.1144 3398 +3400 2 -82.49661458997355 -1141.1057257026678 31.1517 0.1144 3399 +3401 2 -82.71952843255343 -1140.0046129251623 30.6351 0.1144 3400 +3402 2 -82.80179147855807 -1138.8855961418822 30.1109 0.1144 3401 +3403 2 -82.86325265383346 -1137.7631834531026 29.5924 0.1144 3402 +3404 2 -82.08004485312222 -1137.0077994839153 29.148 0.1144 3403 +3405 2 -81.06027672786007 -1136.5018769002136 28.8795 0.1144 3404 +3406 2 -80.03935655471781 -1135.9978285592074 28.6068 0.1144 3405 +3407 2 -68.47638356366622 -1148.5482424053007 40.6778 0.1144 1872 +3408 2 -68.25500799906189 -1148.4147510220728 41.2628 0.1144 3407 +3409 2 -67.24182324552191 -1147.9330645522668 41.7992 0.1144 3408 +3410 2 -66.21148440587854 -1147.4836778863296 42.322 0.1144 3409 +3411 2 -65.15319009456181 -1147.0950485376761 42.8039 0.1144 3410 +3412 2 -64.14818366520984 -1146.5672110655682 43.1469 0.1144 3411 +3413 2 -63.88442499811106 -1146.6052196899873 43.1466 0.1345 3412 +3414 2 -62.785725457636204 -1146.5139644448748 43.3474 0.2039 3413 +3415 2 -61.80847767977946 -1145.9629278937514 43.657 0.2288 3414 +3416 2 -60.865246472263834 -1145.3280968145116 43.8614 0.2288 3415 +3417 2 -59.81511335540608 -1144.9109130457973 44.1101 0.2288 3416 +3418 2 -58.76341713649413 -1144.5115493980697 44.4858 0.2288 3417 +3419 2 -58.11776234564189 -1143.6742697667341 45.113 0.2288 3418 +3420 2 -57.89796439099007 -1142.585681947984 45.7052 0.2288 3419 +3421 2 -57.809820215712364 -1141.4599332307453 46.144 0.2288 3420 +3422 2 -57.80120842231838 -1140.3226199023197 46.4573 0.2288 3421 +3423 2 -57.71698932129749 -1139.1859024206985 46.6603 0.2288 3422 +3424 2 -57.67906498440732 -1138.04395284446 46.7678 0.2288 3423 +3425 2 -57.57132645367636 -1136.9061599902918 46.8126 0.2288 3424 +3426 2 -57.430033748617575 -1135.7706315091446 46.839 0.2288 3425 +3427 2 -57.17597965613476 -1134.6569963947138 46.8695 0.2288 3426 +3428 2 -56.9388116648737 -1133.537659562513 46.909 0.2288 3427 +3429 2 -56.7526599731022 -1132.4094195181738 46.982 0.2288 3428 +3430 2 -56.656372425631446 -1131.2705660121414 47.0744 0.1595 3429 +3431 2 -56.38320550403637 -1130.1639636612736 47.1808 0.1192 3430 +3432 2 -55.904989502648164 -1129.1287574228766 47.297 0.1144 3431 +3433 2 -55.378606903480204 -1128.1150050619456 47.4216 0.1144 3432 +3434 2 -54.90653960265615 -1127.0741878092576 47.5681 0.1144 3433 +3435 2 -54.76154536208571 -1125.9511740648177 47.7977 0.1144 3434 +3436 2 -55.051326884847015 -1124.861583151187 48.1242 0.1144 3435 +3437 2 -55.472123894639935 -1123.8055717276934 48.4448 0.1144 3436 +3438 2 -55.787696115834535 -1122.713170142556 48.7225 0.1144 3437 +3439 2 -55.89642510520855 -1121.5795501458774 48.9616 0.1144 3438 +3440 2 -55.47105820675574 -1120.532458945599 49.175 0.1144 3439 +3441 2 -54.95968746611396 -1119.5118528190176 49.3898 0.1144 3440 +3442 2 -54.90473636775641 -1118.3823265834703 49.6728 0.1144 3441 +3443 2 -54.65032668849551 -1117.2778633585967 50.0416 0.1144 3442 +3444 2 -54.549976508105374 -1116.150011443984 50.4398 0.1144 3443 +3445 2 -54.526352856185156 -1115.0195518812088 50.8628 0.1144 3444 +3446 2 -54.339566571494686 -1113.9057117428356 51.3013 0.1144 3445 +3447 2 -53.995198250334056 -1112.8318760014945 51.7723 0.1144 3446 +3448 2 -53.77013966502045 -1112.6451775195067 51.9744 0.1144 3447 +3449 2 -53.11897446594651 -1111.7427685138364 52.4499 0.1144 3448 +3450 2 -52.84388334488966 -1110.6524731386671 52.747 0.1144 3449 +3451 2 -52.37885190921145 -1109.624079919207 53.0057 0.1144 3450 +3452 2 -51.79449622978797 -1108.6458257549298 53.2596 0.1144 3451 +3453 2 -51.22627162973373 -1107.6587060236443 53.501 0.1144 3452 +3454 2 -50.960983889569775 -1106.5610551251712 53.772 0.1144 3453 +3455 2 -51.08286151603363 -1105.4407993846517 54.1276 0.1144 3454 +3456 2 -51.16557705546188 -1104.3099705207042 54.488 0.1144 3455 +3457 2 -50.6566527873361 -1103.3203307431522 54.8542 0.1144 3456 +3458 2 -50.28117745690014 -1102.2556630972485 55.2726 0.1144 3457 +3459 2 -49.93096916677024 -1101.189036708336 55.8054 0.1144 3458 +3460 2 -50.22711982725775 -1100.102069548624 56.2604 0.1144 3459 +3461 2 -50.73967573944782 -1099.089078513679 56.6068 0.1144 3460 +3462 2 -51.03395525882286 -1097.9942705102023 56.9643 0.1144 3461 +3463 2 -51.6625992998317 -1097.0458277234702 57.2547 0.1144 3462 +3464 2 -52.160769334201916 -1096.0212943092492 57.5193 0.1144 3463 +3465 2 -52.597820953880614 -1094.967292278067 57.7108 0.1144 3464 +3466 2 -52.743309406070466 -1093.8347866841386 57.869 0.1144 3465 +3467 2 -53.29831788663387 -1092.8357999142047 58.0068 0.1144 3466 +3468 2 -53.745776067259385 -1093.1980546265154 58.2823 0.1144 3467 +3469 2 -54.60527641781931 -1093.8969211927406 58.97 0.1144 3468 +3470 2 -55.48175047149721 -1094.6075122377372 59.4121 0.1144 3469 +3471 2 -56.30156777002935 -1095.3907986202485 59.7512 0.1144 3470 +3472 2 -57.032891331693406 -1096.2632468698052 60.0127 0.1144 3471 +3473 2 -57.739961649732436 -1097.1598750733256 60.1787 0.1144 3472 +3474 2 -58.44538908880094 -1098.0593670067021 60.2487 0.1144 3473 +3475 2 -59.1500505794541 -1098.959914081313 60.2224 0.1144 3474 +3476 2 -59.85539282567288 -1099.8593536488768 60.1166 0.1144 3475 +3477 2 -60.560682706078865 -1100.7588784092902 59.9528 0.1144 3476 +3478 2 -61.21945359107252 -1101.686151918609 59.689 0.1144 3477 +3479 2 -61.819987205048506 -1102.6447702881833 59.2735 0.1144 3478 +3480 2 -62.40029187065221 -1103.605744426794 58.7364 0.1144 3479 +3481 2 -62.7910494535426 -1104.6543340516778 58.1784 0.1144 3480 +3482 2 -62.971596334189485 -1105.7630478036845 57.6691 0.1144 3481 +3483 2 -63.118947036333054 -1106.8822278698835 57.2166 0.1144 3482 +3484 2 -63.260725061852554 -1108.0060818290258 56.8249 0.1144 3483 +3485 2 -63.35866641485683 -1109.1378526147291 56.495 0.1144 3484 +3486 2 -63.44813853434391 -1110.2725168557427 56.2089 0.1144 3485 +3487 2 -63.53694943704113 -1111.4080658522912 55.9468 0.1144 3486 +3488 2 -63.62584553258807 -1112.5436672146523 55.6984 0.1144 3487 +3489 2 -63.71411323838231 -1113.680290891211 55.4616 0.1144 3488 +3490 2 -63.803946455277014 -1114.8164682775123 55.2373 0.1144 3489 +3491 2 -63.89266045132865 -1115.9546574651713 55.027 0.1144 3490 +3492 2 -63.981865278470536 -1117.0918571656703 54.833 0.1144 3491 +3493 2 -64.12026142663626 -1118.2256052091848 54.6734 0.1144 3492 +3494 2 -64.31576710745998 -1119.351613015004 54.5639 0.1144 3493 +3495 2 -64.52326696844682 -1120.4754854889484 54.4981 0.1144 3494 +3496 2 -64.73116075387844 -1121.6010086668434 54.4664 0.1144 3495 +3497 2 -64.93896934646017 -1122.7264794789257 54.4603 0.1144 3496 +3498 2 -65.14743915583188 -1123.851065535473 54.4726 0.1144 3497 +3499 2 -65.3553329412635 -1124.976588713368 54.4961 0.1144 3498 +3500 2 -65.56283280225028 -1126.1004611873127 54.5308 0.1144 3499 +3501 2 -65.77130261162199 -1127.22504724386 54.5818 0.1144 3500 +3502 2 -65.93909959771679 -1128.356795105116 54.6518 0.1144 3501 +3503 2 -65.90944739521973 -1129.4973513671598 54.7431 0.1144 3502 +3504 2 -65.84169375755141 -1130.6387854890356 54.8542 0.1144 3503 +3505 2 -65.6679596168957 -1131.764728226643 55.0813 0.1144 3504 +3506 2 -65.46781259122002 -1132.881126358186 55.438 0.1144 3505 +3507 2 -65.51607179211027 -1134.0173382880344 55.7301 0.1144 3506 +3508 2 -65.49621986892288 -1135.1572278226586 55.9658 0.1144 3507 +3509 2 -65.81309683093349 -1136.2517271835295 56.1526 0.1144 3508 +3510 2 -66.10181570637462 -1137.357089884621 56.296 0.1144 3509 +3511 2 -66.31350173079733 -1138.480835726466 56.4007 0.1144 3510 +3512 2 -66.49978315625145 -1139.606573138357 56.5953 0.1144 3511 +3513 2 -66.662638957058 -1140.7352837824742 56.8145 0.1144 3512 +3514 2 -66.79693413463764 -1141.869210823901 56.9892 0.1144 3513 +3515 2 -66.76246737895195 -1143.0109160322418 57.1234 0.1144 3514 +3516 2 -66.92299954522247 -1144.1435979132625 57.2194 0.1144 3515 +3517 2 -67.56083930555644 -1144.1436096213513 58.4984 0.1144 3516 +3518 2 -68.30704848441002 -1144.6882075568915 59.6691 0.1144 3517 +3519 2 -68.94462116518315 -1145.5930606260313 60.3761 0.1144 3518 +3520 2 -68.83469395957547 -1146.0801152630766 61.7053 0.1144 3519 +3521 2 -67.86450427877531 -1145.6354210048848 62.7122 0.1144 3520 +3522 2 -66.90134495249123 -1145.1924657450763 63.7655 0.1144 3521 +3523 2 -65.9411673759501 -1144.7513432887133 64.8354 0.1144 3522 +3524 2 -65.29023003627702 -1144.5956158671738 66.1668 0.1144 3523 +3525 2 -65.66965196265903 -1145.551315057181 67.2493 0.1144 3524 +3526 2 -66.07320629528465 -1146.566100345121 68.0814 0.1144 3525 +3527 2 -66.48269068483359 -1147.4180847902346 69.2418 0.1144 3526 +3528 2 -66.39403105519324 -1146.3980140475546 70.4864 0.1144 3527 +3529 2 -66.45895690931076 -1145.4643663873169 71.9186 0.1144 3528 +3530 2 -67.18414836789668 -1144.91379483121 73.4586 0.1144 3529 +3531 2 -67.98803399426265 -1144.4666460866943 75.0036 0.1144 3530 +3532 2 -68.41125995607956 -1143.7760079794018 76.9432 0.1144 3531 +3533 2 -69.24754620516762 -1144.1893385487845 78.3031 0.1144 3532 +3534 2 -69.42170412522387 -1145.2188841178981 79.3503 0.1144 3533 +3535 2 -69.5656359974202 -1146.2890104217363 80.2729 0.1144 3534 +3536 2 -69.71294905443375 -1147.373305267815 81.0947 0.1144 3535 +3537 2 -69.86053491442203 -1148.4657496892532 81.8356 0.1144 3536 +3538 2 -70.00905479417503 -1149.565458930516 82.5216 0.1144 3537 +3539 2 -70.15796859837269 -1150.666818875729 83.1832 0.1144 3538 +3540 2 -70.30724349997803 -1151.7696919662296 83.8275 0.1144 3539 +3541 2 -70.45722105762303 -1152.8758140988184 84.4516 0.1144 3540 +3542 2 -70.19365221403211 -1153.9424294721784 85.1004 0.1144 3541 +3543 2 -69.30241217859395 -1154.6300398918438 85.6024 0.1144 3542 +3544 2 -68.40698597971999 -1155.3177769436088 86.0572 0.1144 3543 +3545 2 -67.50947061161804 -1156.0068122141288 86.4676 0.1144 3544 +3546 2 -66.61163558535833 -1156.6984681369843 86.8384 0.1144 3545 +3547 2 -65.71162619702073 -1157.3913699127825 87.1732 0.1144 3546 +3548 2 -64.81013649043234 -1158.0847703446507 87.481 0.1144 3547 +3549 2 -63.923446817420825 -1158.76707848162 88.0636 0.1144 3548 +3550 2 -67.14123129623721 -1145.256694648883 57.2782 0.1144 3516 +3551 2 -67.51161857797308 -1146.3384242923375 57.3359 0.1144 3550 +3552 2 -67.90584804916006 -1147.4119198601195 57.4067 0.1144 3551 +3553 2 -68.1933364848777 -1148.45607515955 57.4616 0.1144 3552 +3554 2 -68.59441731266855 -1149.5272087551293 57.4361 0.1144 3553 +3555 2 -69.01845557437537 -1150.5894470582462 57.3804 0.1144 3554 +3556 2 -69.35185443861695 -1151.6834203519434 57.3289 0.1144 3555 +3557 2 -69.49622580006411 -1152.8181414454257 57.2824 0.1144 3556 +3558 2 -69.74131982793949 -1153.9356595023264 57.2471 0.1144 3557 +3559 2 -69.99582021067977 -1155.050860127858 57.2292 0.1144 3558 +3560 2 -70.27700697395142 -1156.1596923081993 57.2286 0.1144 3559 +3561 2 -70.6198121930579 -1157.2513481705264 57.2348 0.1144 3560 +3562 2 -70.96110426687659 -1158.3433651302612 57.2432 0.1144 3561 +3563 2 -71.27285484252053 -1159.4441038951759 57.2552 0.1144 3562 +3564 2 -71.20609069201265 -1160.5860288481422 57.272 0.1144 3563 +3565 2 -70.9752860489022 -1161.706471790339 57.2958 0.1144 3564 +3566 2 -70.68363269249193 -1162.812284486818 57.328 0.1144 3565 +3567 2 -70.38338347046493 -1163.9168044751714 57.3726 0.1144 3566 +3568 2 -70.16282539692156 -1165.0381462010496 57.4381 0.1144 3567 +3569 2 -70.09088559581744 -1166.1797069550248 57.5333 0.1144 3568 +3570 2 -69.46434134882594 -1166.8298847742112 57.7223 0.1144 3569 +3571 2 -68.82902254007905 -1167.7674166730033 57.993 0.1144 3570 +3572 2 -68.24551269780426 -1168.7340944290154 58.427 0.1144 3571 +3573 2 -67.70636249363537 -1169.7160660565812 58.9898 0.1144 3572 +3574 2 -67.91741192454043 -1170.7360081665634 59.8408 0.1144 3573 +3575 2 -67.12603632346321 -1170.7585332197154 60.5637 0.1144 3574 +3576 2 -65.98394298539586 -1170.8098679754112 60.5144 0.1144 3575 +3577 2 -64.84186436801127 -1170.8262323181366 60.4794 0.1144 3576 +3578 2 -63.70495968471306 -1170.801524402511 60.4206 0.1144 3577 +3579 2 -62.57085605442052 -1170.9490924402335 60.3896 0.1144 3578 +3580 2 -61.4302720675214 -1171.0308175210187 60.3994 0.1144 3579 +3581 2 -60.28911585080186 -1171.0827283006543 60.4758 0.1144 3580 +3582 2 -59.150815444262264 -1171.1082230936868 60.6603 0.1144 3581 +3583 2 -58.02681703075467 -1171.287474164625 60.9028 0.1144 3582 +3584 2 -56.930446528771256 -1171.5965102828711 61.0649 0.1144 3583 +3585 2 -56.18271310008828 -1172.2756087217076 61.0621 0.1144 3584 +3586 2 -56.333463501851384 -1173.3432354946804 60.8723 0.1144 3585 +3587 2 -56.845677558778505 -1174.3603690404284 60.608 0.1144 3586 +3588 2 -57.32358482857177 -1175.393976940688 60.3512 0.1144 3587 +3589 2 -57.731442746679704 -1176.4584772077787 60.1432 0.1144 3588 +3590 2 -57.9865746207559 -1177.5659667232283 59.9897 0.1144 3589 +3591 2 -58.04342968726286 -1178.7034713612024 59.8825 0.1144 3590 +3592 2 -58.061753465533684 -1179.8467543922798 59.7993 0.1144 3591 +3593 2 -58.073526006582824 -1180.990001494737 59.7114 0.1144 3592 +3594 2 -57.996782578853015 -1182.128492204537 59.5795 0.1144 3593 +3595 2 -57.840601266838576 -1183.2585335036838 59.3782 0.1144 3594 +3596 2 -57.812817796407444 -1184.389556778763 59.1452 0.1144 3595 +3597 2 -57.75576322172981 -1185.5200776036522 58.9039 0.1144 3596 +3598 2 -57.469236251686254 -1186.619650896088 58.6611 0.1144 3597 +3599 2 -57.350701472372975 -1187.7432525853412 58.4623 0.1144 3598 +3600 2 -57.29533593931251 -1188.8842020792931 58.3108 0.1144 3599 +3601 2 -57.1228476515995 -1190.012319178978 58.1879 0.1144 3600 +3602 2 -56.76816570918203 -1191.0940624478376 58.074 0.1144 3601 +3603 2 -56.29524558538867 -1192.1342337012914 57.9547 0.1144 3602 +3604 2 -55.96426207059358 -1193.2211533132836 57.7889 0.1144 3603 +3605 2 -55.720763692863386 -1194.333793749383 57.5361 0.1144 3604 +3606 2 -55.416322796771 -1195.4277553349912 57.2118 0.1144 3605 +3607 2 -55.21933962033353 -1196.5433984446818 56.875 0.1144 3606 +3608 2 -55.057365194532906 -1197.6698788685626 56.597 0.1144 3607 +3609 2 -54.80723038673136 -1198.782431010229 56.4032 0.1144 3608 +3610 2 -54.5568806523973 -1199.897433418531 56.289 0.1144 3609 +3611 2 -54.47086060348511 -1201.035738927252 56.2705 0.1144 3610 +3612 2 -54.746970937156334 -1202.1333514880585 56.315 0.1144 3611 +3613 2 -55.01153889155148 -1203.2453499266846 56.3604 0.1144 3612 +3614 2 -55.14770831182665 -1204.3804290159915 56.3777 0.1144 3613 +3615 2 -55.116405405379226 -1205.5213792024801 56.3539 0.1144 3614 +3616 2 -54.987480294670036 -1206.6574925268578 56.2652 0.1144 3615 +3617 2 -54.8419066496304 -1207.7899457549736 56.1151 0.1144 3616 +3618 2 -54.70595118440502 -1208.9243200809678 55.9432 0.1144 3617 +3619 2 -54.34087650154527 -1210.001201154223 55.769 0.1144 3618 +3620 2 -53.92984384244187 -1211.0630970875188 55.5302 0.1144 3619 +3621 2 -53.845171969051364 -1212.1860327418894 55.167 0.1144 3620 +3622 2 -53.83792307700429 -1213.3229873819537 54.8512 0.1144 3621 +3623 2 -53.819584299104804 -1214.4625158191702 54.6059 0.1144 3622 +3624 2 -53.80163944565004 -1215.6036949603372 54.4163 0.1144 3623 +3625 2 -53.89698987177309 -1216.7419724424294 54.2724 0.1144 3624 +3626 2 -54.05245111907277 -1217.8741197387599 54.1677 0.1144 3625 +3627 2 -54.163215940379416 -1219.0111903981124 54.0173 0.1144 3626 +3628 2 -54.07118785114858 -1220.1483852982033 53.8636 0.1144 3627 +3629 2 -53.976933034027354 -1221.2869112440867 53.7211 0.1144 3628 +3630 2 -54.0072838194983 -1222.4281965019522 53.5346 0.1144 3629 +3631 2 -54.21032161249144 -1223.5507348285214 53.3537 0.1144 3630 +3632 2 -54.239341352170015 -1224.6897933584964 53.1334 0.1144 3631 +3633 2 -53.83703119078291 -1225.757168163354 52.9614 0.1144 3632 +3634 2 -53.84328652260376 -1226.8983151700204 52.834 0.1144 3633 +3635 2 -54.14452323633532 -1228.0006906107392 52.7447 0.1144 3634 +3636 2 -54.278551121569876 -1229.1371531116515 52.6868 0.1144 3635 +3637 2 -54.44376028236644 -1230.2687188734121 52.6442 0.1144 3636 +3638 2 -54.03481369090798 -1231.3360053838367 52.6089 0.1144 3637 +3639 2 -53.54661983217659 -1232.3706618371084 52.5664 0.1144 3638 +3640 2 -53.88130910217177 -1233.0450878690424 52.4437 0.1144 3639 +3641 2 -54.370529796562664 -1234.0776679444748 52.316 0.1144 3640 +3642 2 -54.780975539968665 -1235.142350311061 52.1867 0.1144 3641 +3643 2 -54.96757972516383 -1236.2587782747323 52.0654 0.1144 3642 +3644 2 -54.84663611846463 -1237.3862988350766 51.9501 0.1144 3643 +3645 2 -54.46219844387667 -1238.4551515491385 51.8109 0.1144 3644 +3646 2 -54.41758572469291 -1239.5369773000275 51.6138 0.1144 3645 +3647 2 -54.70973574171734 -1240.639049519781 51.3918 0.1144 3646 +3648 2 -54.75706092284304 -1241.767996629805 51.1823 0.1144 3647 +3649 2 -54.65839640354079 -1242.905103235463 51.0006 0.1144 3648 +3650 2 -54.54026105930177 -1244.0410406635115 50.8491 0.1144 3649 +3651 2 -54.421549691122664 -1245.177915212908 50.7262 0.1144 3650 +3652 2 -54.30278595713082 -1246.314874955154 50.6257 0.1144 3651 +3653 2 -54.18407458895189 -1247.4517495045502 50.5366 0.1144 3652 +3654 2 -53.88738624219087 -1248.5504763791173 50.4549 0.1144 3653 +3655 2 -53.46101655577377 -1249.611161695554 50.3773 0.1144 3654 +3656 2 -53.00886237408946 -1250.6612800917294 50.2984 0.1144 3655 +3657 2 -52.53644090636635 -1251.702931663434 50.2082 0.1144 3656 +3658 2 -51.92129798764233 -1252.6622556126522 50.0811 0.1144 3657 +3659 2 -51.22757832318473 -1253.56799836153 49.9097 0.1144 3658 +3660 2 -50.77970170095227 -1254.6046648996498 49.6919 0.1144 3659 +3661 2 -50.49717879484916 -1255.706699385284 49.4413 0.1144 3660 +3662 2 -50.238001831173335 -1256.816393307724 49.173 0.1144 3661 +3663 2 -49.97851613590257 -1257.9244888920261 48.902 0.1144 3662 +3664 2 -49.71942436507652 -1259.0342351802785 48.6427 0.1144 3663 +3665 2 -49.515355366727135 -1260.1549132803202 48.4042 0.1144 3664 +3666 2 -49.299474287709984 -1261.2751388869378 48.2056 0.1144 3665 +3667 2 -48.94893475512828 -1262.3608369555081 48.0878 0.1144 3666 +3668 2 -48.53196832199308 -1263.4258936364595 48.0522 0.1144 3667 +3669 2 -48.05116591518555 -1264.4638022334025 48.0488 0.1144 3668 +3670 2 -47.539276730415 -1265.4865935476569 48.0525 0.1144 3669 +3671 2 -47.11037158451251 -1266.547011571749 48.048 0.1144 3670 +3672 2 -47.56463107598637 -1267.5339214786834 48.0102 0.1144 3671 +3673 2 -48.171891823513135 -1268.5033655433479 47.9427 0.1144 3672 +3674 2 -48.88003682156244 -1269.4005369437714 47.9405 0.1144 3673 +3675 2 -49.759713062145295 -1270.1211955604228 48.0474 0.1144 3674 +3676 2 -50.225694623344054 -1271.0737579335105 47.5916 0.1144 3675 +3677 2 -49.86621284842067 -1272.1216797356972 47.2629 0.1144 3676 +3678 2 -50.13694491659925 -1273.1690341204494 47.0632 0.1144 3677 +3679 2 -50.59306323754936 -1274.2161291148477 46.8986 0.1144 3678 +3680 2 -50.383474620925085 -1275.3173332883694 46.8266 0.1144 3679 +3681 2 -50.07671870250931 -1276.4192623498416 46.8605 0.1144 3680 +3682 2 -49.77004797694326 -1277.5212437771265 46.9336 0.1144 3681 +3683 2 -49.43277820292133 -1278.6138072304466 46.9123 0.1144 3682 +3684 2 -49.07469794595761 -1279.6989785393066 46.7698 0.1144 3683 +3685 2 -48.71520145035146 -1280.7818707544632 46.5438 0.1144 3684 +3686 2 -48.3054998370406 -1281.8459934156497 46.3221 0.1144 3685 +3687 2 -47.80657167923488 -1282.8740517765168 46.2162 0.1144 3686 +3688 2 -47.26710112437155 -1283.8827066830308 46.2039 0.1144 3687 +3689 2 -46.70768294162718 -1284.8802741127392 46.2664 0.1144 3688 +3690 2 -46.151112051546306 -1285.8730183770463 46.5559 0.1144 3689 +3691 2 -52.6575467542624 -1232.53456016574 53.9804 0.1144 3639 +3692 2 -51.538754817789595 -1232.5961093565022 54.4354 0.1144 3691 +3693 2 -50.78685203594131 -1232.7490095090488 54.6353 0.1144 3692 +3694 2 -50.974088405008956 -1233.8336637360255 54.871 0.1144 3693 +3695 2 -50.389969001535405 -1234.6092231035054 55.1869 0.1144 3694 +3696 2 -49.33893290413579 -1234.969014337366 55.5475 0.1144 3695 +3697 2 -48.56995331506471 -1235.7613549974308 55.9328 0.1144 3696 +3698 2 -47.9681356222963 -1236.7207703426652 56.3156 0.1144 3697 +3699 2 -47.129689222397815 -1237.403269789183 56.7129 0.1144 3698 +3700 2 -46.027523606029604 -1237.5905413943342 57.1004 0.1144 3699 +3701 2 -44.89657321216413 -1237.6151545334149 57.5033 0.1144 3700 +3702 2 -43.76848724069117 -1237.6173479248528 57.9608 0.1144 3701 +3703 2 -42.64258655785903 -1237.6140764728755 58.462 0.1144 3702 +3704 2 -41.51992950118154 -1237.625006390176 58.9988 0.1144 3703 +3705 2 -40.39986026980222 -1237.636118406972 59.5661 0.1144 3704 +3706 2 -39.28178330100519 -1237.6485723961232 60.1586 0.1144 3705 +3707 2 -38.16581504021184 -1237.6595054150066 60.772 0.1144 3706 +3708 2 -37.05086909361614 -1237.671066823643 61.4079 0.1144 3707 +3709 2 -35.95448767704778 -1237.5651553067823 62.1068 0.1144 3708 +3710 2 -35.05003042684126 -1237.0266988623519 62.8978 0.1144 3709 +3711 2 -34.273547350634374 -1236.2647667575259 63.7627 0.1144 3710 +3712 2 -33.502366557123366 -1235.5073850151266 64.6797 0.1144 3711 +3713 2 -32.734391052100364 -1234.7533820484982 65.6256 0.1144 3712 +3714 2 -31.966553105739933 -1233.9993462548325 66.575 0.1144 3713 +3715 2 -31.19630943357663 -1233.2425405363733 67.5016 0.1144 3714 +3716 2 -30.420763478717447 -1232.481184455488 68.3782 0.1144 3715 +3717 2 -29.639691702417338 -1231.7137320398506 69.1863 0.1144 3716 +3718 2 -28.850964283431324 -1230.9388741441435 69.9079 0.1144 3717 +3719 2 -28.78521041443088 -1229.8859306752374 70.4679 0.1144 3718 +3720 2 -29.2823581346035 -1228.8607688712636 70.6474 0.1144 3719 +3721 2 -29.789391326935686 -1227.834992705683 70.6115 0.1144 3720 +3722 2 -30.296157226922674 -1226.8117519995876 70.427 0.1144 3721 +3723 2 -30.799235619543936 -1225.7901182438427 70.1557 0.1144 3722 +3724 2 -31.303016668204975 -1224.7717335301859 69.851 0.1144 3723 +3725 2 -31.8063514266085 -1223.7517833054285 69.5545 0.1144 3724 +3726 2 -32.303404649182085 -1222.7466355232941 68.9926 0.1144 3725 +3727 2 -68.41036407556061 -1170.7597641511693 60.1538 0.1144 3574 +3728 2 -69.51901686722687 -1170.7912868022422 60.8306 0.1144 3727 +3729 2 -70.628907308071 -1170.7201577693322 61.453 0.1144 3728 +3730 2 -71.73058829651507 -1170.5204980595731 62.0192 0.1144 3729 +3731 2 -72.82832679688437 -1170.272636515951 62.5254 0.1144 3730 +3732 2 -73.74202410644273 -1170.4355199297959 63.2447 0.1144 3731 +3733 2 -74.33534085676206 -1171.2594096577272 64.5302 0.1144 3732 +3734 2 -74.28217110135859 -1171.0052301402393 64.9936 0.1144 3733 +3735 2 -73.98581640609586 -1169.9690063880525 65.8224 0.1144 3734 +3736 2 -73.62327237717079 -1168.9027794342146 66.3146 0.1144 3735 +3737 2 -73.4793004507979 -1167.7803940795272 66.5977 0.1144 3736 +3738 2 -72.97024714152599 -1166.7691943078107 66.7304 0.1144 3737 +3739 2 -72.06397421760289 -1166.216123030882 66.9214 0.1144 3738 +3740 2 -71.35370662488384 -1167.0592250097275 67.3028 0.1144 3739 +3741 2 -71.33510976469228 -1168.1556334586144 67.9762 0.1144 3740 +3742 2 -71.65574201310051 -1169.189407636702 68.8615 0.1144 3741 +3743 2 -72.03062829773859 -1170.115438696435 70.1582 0.1144 3742 +3744 2 -72.10701996761571 -1171.0767906417566 71.5602 0.1144 3743 +3745 2 -71.7282562682575 -1172.0579261624919 72.5614 0.1144 3744 +3746 2 -71.20890275034947 -1173.0250687235637 73.3452 0.1144 3745 +3747 2 -71.50239102262105 -1173.9655085855638 74.0309 0.1144 3746 +3748 2 -72.18167666313445 -1174.8221690308935 74.8462 0.1144 3747 +3749 2 -71.6125873312157 -1175.232405038938 74.8798 0.1144 3748 +3750 2 -70.66010294152318 -1175.8622980515934 75.0476 0.1144 3749 +3751 2 -69.6835378188631 -1176.4570824000793 75.1304 0.1144 3750 +3752 2 -68.70710242988577 -1177.049364116117 75.2674 0.1144 3751 +3753 2 -67.73262647645367 -1177.642850245848 75.4617 0.1144 3752 +3754 2 -66.7614933701721 -1178.239682324312 75.7154 0.1144 3753 +3755 2 -66.01745667659281 -1179.0874989428137 76.0897 0.1144 3754 +3756 2 -65.60552592634491 -1180.1355788190638 76.5806 0.1144 3755 +3757 2 -65.19596256423307 -1181.1756060266 77.1803 0.1144 3756 +3758 2 -64.78818274133738 -1182.2060478813592 77.8733 0.1144 3757 +3759 2 -64.35350230391447 -1183.2212458213303 78.605 0.1144 3758 +3760 2 -63.90956237503843 -1184.2186619779818 79.389 0.1144 3759 +3761 2 -62.97288500889027 -1184.287565981826 80.9332 0.1144 3760 +3762 2 -62.22933233968786 -1184.5622751883006 82.551 0.1144 3761 +3763 2 -61.688729950571485 -1185.3325383815545 84.1422 0.1144 3762 +3764 2 -61.65263852894395 -1186.1186377259664 85.9258 0.1144 3763 +3765 2 -62.34167108864409 -1186.706031505022 87.5188 0.1144 3764 +3766 2 -63.15568576156335 -1187.2386647017645 88.9935 0.1144 3765 +3767 2 -63.974426693238456 -1187.776785382281 90.4408 0.1144 3766 +3768 2 -64.7825100011724 -1188.329953157408 91.8845 0.1144 3767 +3769 2 -65.41506652014897 -1189.035579701906 93.4144 0.1144 3768 +3770 2 -65.9721300519621 -1189.7983325003433 94.9934 0.1144 3769 +3771 2 -66.52937568327047 -1190.5584974734825 96.5804 0.1144 3770 +3772 2 -67.16709451723386 -1191.2513333767151 98.1658 0.1144 3771 +3773 2 -68.1012072843049 -1191.5448506647833 99.5646 0.1144 3772 +3774 2 -69.07787873644793 -1191.804076578937 100.8753 0.1144 3773 +3775 2 -70.07281659983477 -1192.0664311062455 102.102 0.1144 3774 +3776 2 -71.08311339100936 -1192.3343527995485 103.2419 0.1144 3775 +3777 2 -71.83402689848151 -1193.083267717477 104.2306 0.1144 3776 +3778 2 -72.2885944290137 -1194.0958385891624 104.9132 0.1144 3777 +3779 2 -72.74672524385835 -1195.119990177791 105.4522 0.1144 3778 +3780 2 -73.20827317214048 -1196.1517590714382 105.8809 0.1144 3779 +3781 2 -73.67264028944578 -1197.1877258423171 106.2334 0.1144 3780 +3782 2 -74.13726377253317 -1198.2253761441837 106.5428 0.1144 3781 +3783 2 -74.60296193563096 -1199.2635696429534 106.8388 0.1144 3782 +3784 2 -75.06700939477827 -1200.3021570661676 107.1342 0.1144 3783 +3785 2 -75.53114204677547 -1201.3407968551946 107.4276 0.1144 3784 +3786 2 -75.99675501702342 -1202.3789379881514 107.718 0.1144 3785 +3787 2 -76.46240081430847 -1203.4172166797707 108.0106 0.1144 3786 +3788 2 -76.92644827345578 -1204.455804102985 108.2976 0.1144 3787 +3789 2 -77.39308355790126 -1205.4945736256946 108.5728 0.1144 3788 +3790 2 -77.85757730730609 -1206.5347265600094 108.8318 0.1144 3789 +3791 2 -78.32358420199876 -1207.5745183969168 109.0726 0.1144 3790 +3792 2 -78.78482339868589 -1208.6046889524266 109.5335 0.1144 3791 +3793 2 -72.23043560339437 -1175.618988267449 75.8596 0.1144 3748 +3794 2 -72.58618443564791 -1176.6567405781427 76.4929 0.1144 3793 +3795 2 -73.153703970616 -1177.6232374366114 77.0342 0.1144 3794 +3796 2 -73.12874417586437 -1178.7036445398116 77.4948 0.1144 3795 +3797 2 -73.45775426177374 -1179.7478504885448 78.0895 0.1144 3796 +3798 2 -73.91160510812028 -1180.7680801044994 78.7013 0.1144 3797 +3799 2 -74.36259463365712 -1181.8040406722123 79.1101 0.1144 3798 +3800 2 -74.99387726108387 -1182.7452890051773 79.4752 0.1144 3799 +3801 2 -75.71263061864454 -1183.6208097079566 79.8697 0.1144 3800 +3802 2 -76.43855809255024 -1184.4846589903136 80.3264 0.1144 3801 +3803 2 -77.13165117789686 -1185.3364251055382 81.0995 0.1144 3802 +3804 2 -77.76965032606313 -1186.166299256804 82.224 0.1144 3803 +3805 2 -78.25391922235463 -1187.073642238308 83.3994 0.1144 3804 +3806 2 -78.5536698231171 -1188.0890641197655 84.4472 0.1144 3805 +3807 2 -78.79593817471448 -1189.1389947107164 85.3866 0.1144 3806 +3808 2 -79.14201095071138 -1190.1642260815365 86.2442 0.1144 3807 +3809 2 -79.67741829193574 -1191.1216660634482 87.0114 0.1144 3808 +3810 2 -80.27821989079342 -1192.0536863469238 87.7103 0.1144 3809 +3811 2 -80.79868653819534 -1193.0289402466556 88.3957 0.1144 3810 +3812 2 -81.18174703915003 -1194.0659905938464 89.1024 0.1144 3811 +3813 2 -81.50985834137839 -1195.1204431121469 89.8316 0.1144 3812 +3814 2 -81.83757571916198 -1196.1732449264969 90.5778 0.1144 3813 +3815 2 -82.19042489293946 -1197.2159055954417 91.3363 0.1144 3814 +3816 2 -82.72297470747395 -1198.1583251066145 92.1141 0.1144 3815 +3817 2 -83.50488980005929 -1198.9223049414186 92.8984 0.1144 3816 +3818 2 -84.35289462652634 -1199.6247871577689 93.6606 0.1144 3817 +3819 2 -85.15187481824569 -1200.387166245389 94.3634 0.1144 3818 +3820 2 -85.88529916823722 -1201.2300346591044 94.9704 0.1144 3819 +3821 2 -86.59736683149686 -1202.0988634644164 95.4957 0.1144 3820 +3822 2 -87.18275644421755 -1203.0494644013604 95.9756 0.1144 3821 +3823 2 -87.45940756574527 -1204.1286284514276 96.4393 0.1144 3822 +3824 2 -87.56621517829467 -1205.252467689887 96.8968 0.1144 3823 +3825 2 -87.73397692830582 -1206.3667041617518 97.3526 0.1144 3824 +3826 2 -88.04065417593245 -1207.4495345112473 97.8146 0.1144 3825 +3827 2 -88.46366771439523 -1208.4937705938823 98.2898 0.1144 3826 +3828 2 -88.92357586528988 -1209.5217144215017 98.7815 0.1144 3827 +3829 2 -89.34912796482115 -1210.5595290005976 99.3283 0.1144 3828 +3830 2 -89.71244414532782 -1211.611323221433 99.9709 0.1144 3829 +3831 2 -90.05218853031164 -1212.6621272625707 100.6964 0.1144 3830 +3832 2 -90.30692166185008 -1213.7332184126121 101.4423 0.1144 3831 +3833 2 -90.46728955089094 -1214.8268289100765 102.1639 0.1144 3832 +3834 2 -90.56003404536142 -1215.9298163210408 102.8622 0.1144 3833 +3835 2 -90.17535129265411 -1216.8791421764608 103.581 0.1144 3834 +3836 2 -89.33806175872877 -1217.594515041741 104.2821 0.1144 3835 +3837 2 -88.93579645192625 -1218.5329159810751 105.0017 0.1144 3836 +3838 2 -89.14174311344868 -1219.6048905015782 105.6821 0.1144 3837 +3839 2 -89.48179312844422 -1220.663981676738 106.3297 0.1144 3838 +3840 2 -89.76374963425104 -1221.7410072933476 106.9768 0.1144 3839 +3841 2 -89.94362978747836 -1222.8399207660445 107.6074 0.1144 3840 +3842 2 -90.03396235297987 -1223.9535158439835 108.206 0.1144 3841 +3843 2 -90.09617276053211 -1225.0714230249214 108.7761 0.1144 3842 +3844 2 -90.15709356154156 -1226.191237275592 109.3252 0.1144 3843 +3845 2 -90.21846065280852 -1227.3126170373625 109.8569 0.1144 3844 +3846 2 -90.29885227875474 -1228.4336004656425 110.3738 0.1144 3845 +3847 2 -90.45012495357207 -1229.5485005633432 110.8811 0.1144 3846 +3848 2 -90.6289765894357 -1230.660163238056 111.3767 0.1144 3847 +3849 2 -90.81130080613252 -1231.7726692290535 111.8552 0.1144 3848 +3850 2 -90.97785814245083 -1232.8888651364634 112.308 0.1144 3849 +3851 2 -90.95689320158647 -1234.0173888806773 112.6796 0.1144 3850 +3852 2 -90.85648417327138 -1235.1508408060067 112.9699 0.1144 3851 +3853 2 -90.74820147415488 -1236.286026313786 113.2062 0.1144 3852 +3854 2 -90.63986640922559 -1237.421297014415 113.4148 0.1144 3853 +3855 2 -90.28383698382305 -1238.4943475110122 113.671 0.1144 3854 +3856 2 -89.68901681853373 -1239.4553642959672 114.0233 0.1144 3855 +3857 2 -89.03792872036183 -1240.3792122804425 114.459 0.1144 3856 +3858 2 -88.38666162427762 -1241.2989592943313 114.9389 0.1144 3857 +3859 2 -87.90796551642723 -1242.317973090278 115.3846 0.1144 3858 +3860 2 -87.8858844563029 -1243.4418198399658 115.691 0.1144 3859 +3861 2 -87.9410114509896 -1244.582135841983 115.8665 0.1144 3860 +3862 2 -87.99644717727125 -1245.724050182138 115.9486 0.1144 3861 +3863 2 -88.05125451380007 -1246.8669868364905 115.981 0.1144 3862 +3864 2 -88.10927806537984 -1248.0090832761407 116.004 0.1144 3863 +3865 2 -88.27827946516754 -1249.1388717018517 116.1068 0.1144 3864 +3866 2 -88.58789160735392 -1250.234305082487 116.3638 0.1144 3865 +3867 2 -88.91341129016439 -1251.3193269237895 116.741 0.1144 3866 +3868 2 -89.23649242013505 -1252.4014412816357 117.1876 0.1144 3867 +3869 2 -89.56183310503332 -1253.482362152352 117.6546 0.1144 3868 +3870 2 -89.88549025894406 -1254.5635393888504 118.0967 0.1144 3869 +3871 2 -90.21131867334947 -1255.6501595682903 118.4708 0.1144 3870 +3872 2 -90.46133556737425 -1255.8333009691319 119.7249 0.1144 3871 +3873 2 -91.25871911978084 -1256.421444667858 121.0236 0.1144 3872 +3874 2 -92.15257931582386 -1257.079689060109 121.6572 0.1144 3873 +3875 2 -93.0517417945627 -1257.7424838147867 122.2665 0.1144 3874 +3876 2 -93.94725269455608 -1258.4003342825931 122.9284 0.1144 3875 +3877 2 -94.8629932354583 -1259.0317663547498 123.5844 0.1144 3876 +3878 2 -95.86101926706033 -1259.5404058048957 124.1397 0.1144 3877 +3879 2 -96.8749450143066 -1260.036163910297 124.5989 0.1144 3878 +3880 2 -97.89404641214924 -1260.532286214689 124.9872 0.1144 3879 +3881 2 -98.91466095527977 -1261.0280474216734 125.3286 0.1144 3880 +3882 2 -99.93665891001547 -1261.5259501636983 125.6478 0.1144 3881 +3883 2 -100.95865686475116 -1262.0238529057233 125.9684 0.1144 3882 +3884 2 -101.97935660073136 -1262.5196664785203 126.3125 0.1144 3883 +3885 2 -102.99832043991154 -1263.0158216099494 126.6916 0.1144 3884 +3886 2 -104.04501931360267 -1263.4429846558855 127.1211 0.1144 3885 +3887 2 -105.1444782855749 -1263.6729812187946 127.6288 0.1144 3886 +3888 2 -106.22119887571995 -1263.9682330956007 128.2305 0.1144 3887 +3889 2 -106.9092357627784 -1264.784494213165 129.0677 0.1144 3888 +3890 2 -107.54646516840961 -1265.6461749281625 130.0253 0.1144 3889 +3891 2 -108.43440320952044 -1266.2792984509829 130.8616 0.1144 3890 +3892 2 -109.3830435089672 -1266.8463216271102 131.5916 0.1144 3891 +3893 2 -110.33756211504988 -1267.4169580443165 132.2406 0.1144 3892 +3894 2 -111.25342349333329 -1267.9651240645774 133.247 0.1144 3893 +3895 2 -89.01001951293102 -1255.2648337228325 118.5884 0.1144 3871 +3896 2 -87.92355549594527 -1254.9153493314852 118.4235 0.1144 3895 +3897 2 -86.84114790871263 -1254.5682409404872 118.0987 0.1144 3896 +3898 2 -85.75837001401942 -1254.2652748520159 117.6098 0.1144 3897 +3899 2 -84.6696798846686 -1254.0834503975166 116.8972 0.1144 3898 +3900 2 -83.59641235426602 -1254.0052451663382 115.957 0.1144 3899 +3901 2 -82.54162546910317 -1253.9517809082918 114.8832 0.1144 3900 +3902 2 -81.4960628393099 -1253.898587044174 113.7553 0.1144 3901 +3903 2 -80.44903160506158 -1253.8431992792027 112.6322 0.1144 3902 +3904 2 -79.38953248928902 -1253.773339751025 111.5904 0.1144 3903 +3905 2 -78.3128731612581 -1253.5587661008165 110.8136 0.1144 3904 +3906 2 -77.23171073443166 -1253.237894698509 110.3452 0.1144 3905 +3907 2 -76.13927081162774 -1252.9114998838072 110.0999 0.1144 3906 +3908 2 -75.04358184673589 -1252.585807725145 110.0406 0.1144 3907 +3909 2 -73.94695576049611 -1252.2595395425428 110.1338 0.1144 3908 +3910 2 -72.8538022550897 -1251.9341146762254 110.3514 0.1144 3909 +3911 2 -71.76519601052661 -1251.610076323097 110.672 0.1144 3910 +3912 2 -70.68108466099437 -1251.2875096760063 111.0914 0.1144 3911 +3913 2 -69.58829666264057 -1251.099175423535 111.7668 0.1144 3912 +3914 2 -68.65220213912414 -1251.320093605318 113.2561 0.1144 3913 +3915 2 -67.85032149542451 -1251.6154102713904 115.1161 0.1144 3914 +3916 2 -67.42636343620273 -1252.372740162535 116.7905 0.1144 3915 +3917 2 -67.47768998813365 -1253.4100074545418 117.9172 0.1144 3916 +3918 2 -67.5873181747794 -1254.4899193170068 118.7978 0.1144 3917 +3919 2 -67.70366729180972 -1255.5940344663304 119.4738 0.1144 3918 +3920 2 -67.8207245755093 -1256.712083692587 119.9867 0.1144 3919 +3921 2 -67.93880107182332 -1257.8374501044805 120.3941 0.1144 3920 +3922 2 -68.05652508294241 -1258.9652996100467 120.755 0.1144 3921 +3923 2 -68.17535660110883 -1260.0938298711785 121.1092 0.1144 3922 +3924 2 -68.29250458828784 -1261.2226164980927 121.4685 0.1144 3923 +3925 2 -68.41133610645431 -1262.3511467592243 121.8358 0.1144 3924 +3926 2 -68.47906923386432 -1263.4818390707978 122.2124 0.1144 3925 +3927 2 -68.50555661564061 -1264.6139415125435 122.6028 0.1144 3926 +3928 2 -68.51937998825105 -1265.7450678027385 123.0149 0.1144 3927 +3929 2 -68.53369419195184 -1266.8752046057725 123.4624 0.1144 3928 +3930 2 -68.54788176355305 -1268.0011552453711 123.9599 0.1144 3929 +3931 2 -68.56158160564706 -1269.1214065762456 124.5199 0.1144 3930 +3932 2 -68.57563703451905 -1270.2324860175636 125.179 0.1144 3931 +3933 2 -68.44998499132987 -1271.312859885279 126.0132 0.1144 3932 +3934 2 -67.86938812545577 -1272.0718035454656 127.3331 0.1144 3933 +3935 2 -67.17174618655088 -1272.6890785045239 128.9571 0.1144 3934 +3936 2 -66.55771157408509 -1273.2314430172773 130.8485 0.1144 3935 +3937 2 -66.11554907024816 -1273.6230932696722 133.247 0.1144 3936 +3938 2 -74.45178836647858 -1171.2840345938857 64.8707 0.1144 3733 +3939 2 -75.3410284324425 -1171.469329237857 66.0618 0.1144 3938 +3940 2 -76.46026696094646 -1171.7020933165127 65.9498 0.1144 3939 +3941 2 -77.57981422104524 -1171.9364557333063 65.8832 0.1144 3940 +3942 2 -78.6990199225121 -1172.1690822532996 65.8143 0.1144 3941 +3943 2 -79.81856718261082 -1172.403444670093 65.7544 0.1144 3942 +3944 2 -80.93874283246248 -1172.6367847726888 65.7143 0.1144 3943 +3945 2 -82.05803372677917 -1172.8694636584946 65.7051 0.1144 3944 +3946 2 -83.18704961014527 -1173.0317053766407 65.7488 0.1144 3945 +3947 2 -84.32366097506787 -1172.9957819145454 65.8865 0.1144 3946 +3948 2 -85.44579134904609 -1172.8020012039588 66.1352 0.1144 3947 +3949 2 -86.56320328924852 -1172.6052028150093 66.4698 0.1144 3948 +3950 2 -87.69015642018013 -1172.5150992041863 66.8503 0.1144 3949 +3951 2 -88.82278113498006 -1172.5358851471383 67.2459 0.1144 3950 +3952 2 -89.95383964614285 -1172.581180006961 67.6505 0.1144 3951 +3953 2 -91.08432213336539 -1172.6274119881314 68.07 0.1144 3952 +3954 2 -92.21279281923 -1172.6725247484583 68.5157 0.1144 3953 +3955 2 -93.33815202166909 -1172.7183073377882 69.0024 0.1144 3954 +3956 2 -94.42115726120528 -1172.572901350507 69.6007 0.1144 3955 +3957 2 -95.43018777302558 -1172.1766087361227 70.471 0.1144 3956 +3958 2 -96.45241036178408 -1171.9160178133493 71.5302 0.1144 3957 +3959 2 -97.48806319221217 -1171.732115081379 72.6331 0.1144 3958 +3960 2 -98.53341569588105 -1171.60652629576 73.7262 0.1144 3959 +3961 2 -99.6004116877395 -1171.655404955296 74.6981 0.1144 3960 +3962 2 -100.68226036307613 -1171.7698733075702 75.5574 0.1144 3961 +3963 2 -101.77502543698245 -1171.8883519269511 76.3342 0.1144 3962 +3964 2 -102.85470795400607 -1172.1088921782284 77.0638 0.1144 3963 +3965 2 -103.83033136769467 -1172.5970706237408 77.7862 0.1144 3964 +3966 2 -104.83800881459604 -1173.0069389233277 78.5498 0.1144 3965 +3967 2 -105.90945415436408 -1173.2103257810384 79.3741 0.1144 3966 +3968 2 -106.98576779820667 -1173.3643532463761 80.2435 0.1144 3967 +3969 2 -107.51713823076847 -1174.103213898596 81.2638 0.1144 3968 +3970 2 -107.79513511877138 -1175.1496342635837 82.1696 0.1144 3969 +3971 2 -108.07294990727888 -1176.1986424538695 83.0558 0.1144 3970 +3972 2 -108.35224501403718 -1177.2471519880849 83.9376 0.1144 3971 +3973 2 -108.63042089995236 -1178.2976733236585 84.8098 0.1144 3972 +3974 2 -108.90935180771999 -1179.3513585084702 85.6671 0.1144 3973 +3975 2 -109.19015695818308 -1180.4061957411623 86.5038 0.1144 3974 +3976 2 -109.4710887407457 -1181.4652191372902 87.3088 0.1144 3975 +3977 2 -110.15416351866708 -1182.326791042454 88.032 0.1144 3976 +3978 2 -110.95830533283669 -1183.1004421154216 88.6469 0.1144 3977 +3979 2 -111.77118057128558 -1183.875353069478 89.1859 0.1144 3978 +3980 2 -112.58623878402494 -1184.6530144095523 89.6594 0.1144 3979 +3981 2 -113.57765510412264 -1185.2006697758586 90.0343 0.1144 3980 +3982 2 -114.64833752004711 -1185.588814496588 90.2986 0.1144 3981 +3983 2 -115.72155539545713 -1185.9772265096624 90.5022 0.1144 3982 +3984 2 -116.79534929480712 -1186.364701401389 90.6744 0.1144 3983 +3985 2 -117.86914319415712 -1186.752176293116 90.8404 0.1144 3984 +3986 2 -118.9460626050788 -1187.1280735694831 91.0619 0.1144 3985 +3987 2 -120.0216017059783 -1187.4951405149252 91.3847 0.1144 3986 +3988 2 -121.0939355183898 -1187.8588286845966 91.7913 0.1144 3987 +3989 2 -122.16168924292077 -1188.2209927824174 92.2592 0.1144 3988 +3990 2 -123.2269403350034 -1188.5830271465552 92.7685 0.1144 3989 +3991 2 -124.29017962572789 -1188.9439422898504 93.3036 0.1144 3990 +3992 2 -125.35253416091746 -1189.3041962163552 93.8493 0.1144 3991 +3993 2 -126.41462140376183 -1189.6669856023454 94.3986 0.1144 3992 +3994 2 -127.47136733370701 -1190.038464659015 94.9536 0.1144 3993 +3995 2 -128.27056175942226 -1190.8224561066127 95.5298 0.1144 3994 +3996 2 -129.06873387093987 -1191.605819164457 96.1271 0.1144 3995 +3997 2 -129.8665448850499 -1192.3876690770135 96.7271 0.1144 3996 +3998 2 -130.6648021894174 -1193.1710845006708 97.3126 0.1144 3997 +3999 2 -131.46529483388798 -1193.957165117496 97.8704 0.1144 3998 +4000 2 -132.26587267120846 -1194.7432981001343 98.406 0.1144 3999 +4001 2 -133.03237957177646 -1195.4951071659093 99.3706 0.1144 4000 +4002 2 -70.13726755910335 -1166.9278780674597 56.9876 0.1144 3569 +4003 2 -70.04270160134064 -1168.0474318444763 56.6418 0.1144 4002 +4004 2 -69.88407312427364 -1169.1705694212064 56.39 0.1144 4003 +4005 2 -70.03308073353384 -1170.2759779711928 55.9572 0.1144 4004 +4006 2 -70.26891526995598 -1171.375714244774 55.4683 0.1144 4005 +4007 2 -70.37990904594108 -1172.499426851134 55.0416 0.1144 4006 +4008 2 -70.19776183170063 -1173.5974264287045 54.6073 0.1144 4007 +4009 2 -70.27014833665282 -1174.6812096145404 54.0772 0.1144 4008 +4010 2 -71.17295178132593 -1175.2267487792997 53.5646 0.1144 4009 +4011 2 -72.15647419930986 -1175.8004231061814 53.3568 0.1144 4010 +4012 2 -73.02255722905534 -1176.5475884129155 53.3406 0.1144 4011 +4013 2 -73.77592610534475 -1177.408233099321 53.3369 0.1144 4012 +4014 2 -74.53099805139732 -1178.2683986684324 53.3288 0.1144 4013 +4015 2 -75.28499531743955 -1179.1280210406405 53.2874 0.1144 4014 +4016 2 -75.1916262621416 -1180.1167267094384 52.934 0.1144 4015 +4017 2 -75.08614941643879 -1181.242955254193 52.5168 0.1144 4016 +4018 2 -74.9804935728236 -1182.365082828362 52.0355 0.1144 4017 +4019 2 -74.87568104549382 -1183.4837378216976 51.5133 0.1144 4018 +4020 2 -74.92679846561043 -1184.6109075956715 51.0591 0.1144 4019 +4021 2 -75.14659572772575 -1185.7235580410345 50.7198 0.1144 4020 +4022 2 -75.44489444531456 -1186.8200192464974 50.3916 0.1144 4021 +4023 2 -75.96958800286535 -1187.8233429383658 50.022 0.1144 4022 +4024 2 -76.79275125013123 -1188.6032864737265 49.6782 0.1144 4023 +4025 2 -77.74089150843457 -1189.2169545848292 49.2492 0.1144 4024 +4026 2 -77.41250329536001 -1188.3115227809292 48.9493 0.1144 4025 +4027 2 -76.73229835576467 -1187.4126271028051 48.6016 0.1144 4026 +4028 2 -75.78277468585611 -1186.7968174566618 48.3008 0.1144 4027 +4029 2 -74.66136689745605 -1186.6768140728932 47.997 0.1144 4028 +4030 2 -73.65029065625612 -1187.1967423414853 47.7383 0.1144 4029 +4031 2 -73.36287129565426 -1186.6549016996437 47.8164 0.1144 4030 +4032 2 -72.74469655860429 -1185.6988211986013 47.9335 0.1144 4031 +4033 2 -72.07006188658647 -1184.7778777968056 48.0404 0.1144 4032 +4034 2 -71.47492505290552 -1183.8037957678182 48.2073 0.1144 4033 +4035 2 -70.90639172125634 -1182.8150776983948 48.4145 0.1144 4034 +4036 2 -70.37925099865299 -1181.8048502841098 48.61 0.1144 4035 +4037 2 -69.98234540773495 -1180.7378090469037 48.7749 0.1144 4036 +4038 2 -69.76812082224376 -1179.6204847085978 48.9342 0.1144 4037 +4039 2 -69.80633296173738 -1178.4877723919017 49.0633 0.1144 4038 +4040 2 -69.99209410959327 -1177.3598318810823 49.1296 0.1144 4039 +4041 2 -70.16627764208943 -1176.2287658586915 49.1478 0.1144 4040 +4042 2 -70.3191161069534 -1175.095378610811 49.1305 0.1144 4041 +4043 2 -70.36917625573494 -1173.9565675503168 49.0669 0.1144 4042 +4044 2 -70.0903867007496 -1172.8720981159704 48.9177 0.1144 4043 +4045 2 -69.65222916103141 -1171.8198446007054 48.7337 0.1144 4044 +4046 2 -69.37973206843907 -1170.716353733263 48.594 0.1144 4045 +4047 2 -69.09176821485033 -1169.6141548814098 48.524 0.1144 4046 +4048 2 -68.49862605279822 -1168.6587886555067 48.5108 0.1144 4047 +4049 2 -67.71388528393487 -1167.8272213547525 48.5136 0.1144 4048 +4050 2 -66.95253490363541 -1166.9751694323804 48.5044 0.1144 4049 +4051 2 -66.12433356443586 -1166.1948288709923 48.4487 0.1144 4050 +4052 2 -65.14829399439168 -1165.611081461826 48.3428 0.1144 4051 +4053 2 -64.07525201531098 -1165.233459215222 48.2196 0.1144 4052 +4054 2 -63.07010182413029 -1164.7190321619194 48.0043 0.1144 4053 +4055 2 -63.08910322157777 -1163.7464742937723 47.6753 0.1144 4054 +4056 2 -63.68397885426293 -1162.7786835200832 47.3889 0.1144 4055 +4057 2 -63.13513678471253 -1161.7993693964786 47.2374 0.1144 4056 +4058 2 -62.22110380022974 -1161.1126441579167 47.117 0.1144 4057 +4059 2 -73.61620521160535 -1188.0996947391582 47.4068 0.1144 4030 +4060 2 -73.7951834795685 -1189.2155435773063 47.1674 0.1144 4059 +4061 2 -74.24373135068254 -1190.2552854574474 46.9216 0.1144 4060 +4062 2 -74.93734981066638 -1191.1476361015157 46.6704 0.1144 4061 +4063 2 -75.738632713073 -1191.9543919569705 46.3744 0.1144 4062 +4064 2 -76.5152270081602 -1192.7795432648156 45.9976 0.1144 4063 +4065 2 -77.31665367239555 -1193.5728887014652 45.5423 0.1144 4064 +4066 2 -78.13875626779713 -1194.3413812535655 45.0422 0.1144 4065 +4067 2 -79.01251345503084 -1195.0302302049022 44.431 0.1144 4066 +4068 2 -79.7156116428236 -1194.6271248733542 43.6215 0.1144 4067 +4069 2 -80.43330833259654 -1193.8221602583003 42.7067 0.1144 4068 +4070 2 -81.5145912950307 -1193.7670178503943 41.9202 0.1144 4069 +4071 2 -82.5858805613338 -1194.0361593706093 41.2079 0.1144 4070 +4072 2 -83.6042423505433 -1194.47008478618 40.5093 0.1144 4071 +4073 2 -84.56616643669588 -1195.0330655607004 39.8793 0.1144 4072 +4074 2 -85.4833287268699 -1195.677461761405 39.321 0.1144 4073 +4075 2 -86.34834869570471 -1196.39580225415 38.8105 0.1144 4074 +4076 2 -87.22731987120142 -1197.0958379979843 38.2841 0.1144 4075 +4077 2 -88.26429203933321 -1197.5520017542387 37.8983 0.1144 4076 +4078 2 -89.24603401968409 -1198.1285726380133 37.6146 0.1144 4077 +4079 2 -90.10123898852652 -1198.882550271148 37.4018 0.1144 4078 +4080 2 -90.8122836450521 -1199.7748133133202 37.2218 0.1144 4079 +4081 2 -91.52670707734825 -1200.6638710670045 37.0087 0.1144 4080 +4082 2 -92.24247248199993 -1201.5509365581065 36.7606 0.1144 4081 +4083 2 -92.87798271211221 -1202.4961920565947 36.5156 0.1144 4082 +4084 2 -93.63679763292623 -1203.3479766866217 36.2869 0.1144 4083 +4085 2 -94.45634453753013 -1204.1404873245024 36.0609 0.1144 4084 +4086 2 -95.2623568002756 -1204.9460418678477 35.8246 0.1144 4085 +4087 2 -96.15637817196506 -1205.650046439539 35.5379 0.1144 4086 +4088 2 -97.13019411570178 -1206.2284360986132 35.1417 0.1144 4087 +4089 2 -97.28494326643948 -1206.2847033212743 35.0154 0.1144 4088 +4090 2 -98.05623938670215 -1206.9481339769331 34.102 0.1144 4089 +4091 2 -97.4097160698658 -1207.5389615074246 33.1218 0.1144 4090 +4092 2 -96.87881414749421 -1207.3147512515889 31.8906 0.1144 4091 +4093 2 -96.10392731983706 -1207.043864920587 29.953 0.1144 4092 +4094 2 -95.69409304923903 -1206.8980627236099 27.8699 0.1144 4093 +4095 2 -96.13509698827767 -1206.6480831729416 25.7201 0.1144 4094 +4096 2 -96.69649864912009 -1207.5021249665344 24.465 0.1144 4095 +4097 2 -97.32910411857443 -1208.3407739813292 23.3558 0.1144 4096 +4098 2 -97.92044361108276 -1209.205118504422 22.3465 0.1144 4097 +4099 2 -97.83801698038508 -1210.2610012775326 21.3863 0.1144 4098 +4100 2 -98.52369538758688 -1210.746911857678 20.1769 0.1144 4099 +4101 2 -99.29946847450452 -1210.157589961246 19.21 0.1144 4100 +4102 2 -99.09504377756014 -1209.3564092804509 18.1882 0.1144 4101 +4103 2 -99.8024386431544 -1209.4596257720154 17.2654 0.1144 4102 +4104 2 -100.82783319592653 -1209.9126640166983 16.7176 0.1144 4103 +4105 2 -101.95847996037878 -1209.9979673814246 16.3484 0.1144 4104 +4106 2 -103.07036817443492 -1209.9388653557148 15.7058 0.1144 4105 +4107 2 -97.46524228684251 -1207.7893073466716 32.9333 0.1144 4091 +4108 2 -97.7050839887882 -1208.8848160175676 32.4405 0.1144 4107 +4109 2 -97.94933780196129 -1209.9991178594175 32.2955 0.1144 4108 +4110 2 -98.19434663698672 -1211.1165835505058 32.3302 0.1144 4109 +4111 2 -98.44853828813217 -1212.2301858378992 32.4503 0.1144 4110 +4112 2 -98.70677854405074 -1213.34369432023 32.5788 0.1144 4111 +4113 2 -98.96595592131717 -1214.4577788265015 32.6721 0.1144 4112 +4114 2 -99.00923249766942 -1215.586819741588 32.7225 0.1144 4113 +4115 2 -98.77824885664671 -1216.7031617131988 32.7421 0.1144 4114 +4116 2 -98.47060818269586 -1217.8044295578807 32.7457 0.1144 4115 +4117 2 -98.16228675317939 -1218.9068049096104 32.7449 0.1144 4116 +4118 2 -97.85464607922859 -1220.0080727542927 32.744 0.1144 4117 +4119 2 -97.5478901608127 -1221.110001815765 32.7429 0.1144 4118 +4120 2 -97.23956873129634 -1222.2123771674942 32.7412 0.1144 4119 +4121 2 -96.93192805734537 -1223.3136450121767 32.7387 0.1144 4120 +4122 2 -96.62360662782896 -1224.4160203639062 32.7356 0.1144 4121 +4123 2 -96.31693590226297 -1225.5180017911912 32.7312 0.1144 4122 +4124 2 -96.00929522831217 -1226.6192696358735 32.7239 0.1144 4123 +4125 2 -95.82784997757472 -1227.7445808821449 32.7155 0.1144 4124 +4126 2 -95.80425818120898 -1228.8861625599693 32.7054 0.1144 4125 +4127 2 -95.82867519264829 -1230.0306085654897 32.6875 0.1144 4126 +4128 2 -95.85212225570262 -1231.174340988408 32.653 0.1144 4127 +4129 2 -95.87713482985765 -1232.3176271210687 32.594 0.1144 4128 +4130 2 -96.10908883285578 -1233.4257771607713 32.473 0.1144 4129 +4131 2 -96.60188132907564 -1234.4483451319443 32.2605 0.1144 4130 +4132 2 -97.1625738169605 -1235.43893434248 31.9654 0.1144 4131 +4133 2 -97.72099813770495 -1236.4267208011852 31.6061 0.1144 4132 +4134 2 -98.27861507078438 -1237.411428603502 31.201 0.1144 4133 +4135 2 -98.83058506095284 -1238.3965389424757 30.7647 0.1144 4134 +4136 2 -99.37447974204878 -1239.38619344071 30.3097 0.1144 4135 +4137 2 -99.91361223576882 -1240.3769116923918 29.8413 0.1144 4136 +4138 2 -100.45394914318183 -1241.3656705085282 29.3569 0.1144 4137 +4139 2 -100.99178341814638 -1242.354299590982 28.8512 0.1144 4138 +4140 2 -101.52882984422155 -1243.339627265535 28.3189 0.1144 4139 +4141 2 -102.06546280707636 -1244.3235269876495 27.7554 0.1144 4140 +4142 2 -102.31053631955075 -1245.388563242189 27.1037 0.1144 4141 +4143 2 -102.36789693783066 -1246.4901079800325 26.3639 0.1144 4142 +4144 2 -101.93479191409807 -1247.4351415553183 25.4893 0.1144 4143 +4145 2 -101.28600142443162 -1248.291851465684 24.5288 0.1144 4144 +4146 2 -100.63079253280944 -1249.1393340190966 23.5472 0.1144 4145 +4147 2 -99.97380320355404 -1249.9897131294026 22.588 0.1144 4146 +4148 2 -99.2742346738259 -1250.8219018112613 21.7162 0.1144 4147 +4149 2 -98.29268521011795 -1251.3680786876434 21.1972 0.1144 4148 +4150 2 -97.29693437713212 -1251.9174991901805 20.9109 0.1144 4149 +4151 2 -96.29582579405456 -1252.469143319025 20.8115 0.1144 4150 +4152 2 -95.29414118703687 -1253.021724569217 20.8492 0.1144 4151 +4153 2 -94.20012645409008 -1253.3509896358355 20.9886 0.1144 4152 +4154 2 -93.0615932987522 -1253.4205939043582 21.1878 0.1144 4153 +4155 2 -91.92306014341443 -1253.4901981728808 21.4059 0.1144 4154 +4156 2 -90.78510301201675 -1253.5588653200552 21.6418 0.1144 4155 +4157 2 -89.64892562571549 -1253.6486985369502 21.8848 0.1144 4156 +4158 2 -88.54178317952761 -1253.9162513426713 22.1268 0.1144 4157 +4159 2 -87.43304239520222 -1254.1841128799874 22.3589 0.1144 4158 +4160 2 -86.32438680372644 -1254.4520267831163 22.5765 0.1144 4159 +4161 2 -85.22513756711578 -1254.717623254875 22.9975 0.1144 4160 +4162 2 -97.5563636904011 -1206.8502807284049 35.6482 0.1144 4088 +4163 2 -98.20136546822812 -1207.7932711613362 35.6737 0.1144 4162 +4164 2 -98.84898789839042 -1208.7365812524254 35.6787 0.1144 4163 +4165 2 -99.64505611999743 -1209.5562129419955 35.6661 0.1144 4164 +4166 2 -100.56301107715393 -1210.2386582120587 35.6208 0.1144 4165 +4167 2 -101.48400325144922 -1210.916162296834 35.548 0.1144 4166 +4168 2 -102.40436703599164 -1211.5946886958063 35.4528 0.1144 4167 +4169 2 -103.32530684447414 -1212.2722779734313 35.3433 0.1144 4168 +4170 2 -104.15814063736707 -1213.0540574138208 35.1926 0.1144 4169 +4171 2 -104.8840181545064 -1213.9353657197566 35.0356 0.1144 4170 +4172 2 -105.6119074730039 -1214.8177932465355 34.921 0.1144 4171 +4173 2 -106.33787018299302 -1215.699153918284 34.7768 0.1144 4172 +4174 2 -77.78443316374916 -1189.3229505010358 48.9829 0.1144 4025 +4175 2 -78.30806055880623 -1190.3041381747994 48.704 0.1144 4174 +4176 2 -78.8882269732108 -1191.2892077670604 48.6567 0.1144 4175 +4177 2 -79.14945208045543 -1192.3978602569528 48.5974 0.1144 4176 +4178 2 -79.259640877822 -1193.5358680376535 48.5164 0.1144 4177 +4179 2 -79.22936028557206 -1194.6774466138945 48.4058 0.1144 4178 +4180 2 -79.13519066130061 -1195.8160249255907 48.2566 0.1144 4179 +4181 2 -78.82447443254443 -1196.911411362054 48.0197 0.1144 4180 +4182 2 -78.43896207794609 -1197.9797208792124 47.6806 0.1144 4181 +4183 2 -78.07300574113435 -1199.0492519397935 47.2598 0.1144 4182 +4184 2 -77.70976696330337 -1200.1164624674216 46.7858 0.1144 4183 +4185 2 -77.34613426102771 -1201.1820222910992 46.2829 0.1144 4184 +4186 2 -76.13588634134948 -1200.898716638288 46.1045 0.1144 4185 +4187 2 -75.0228495717592 -1200.6361937258785 46.1462 0.1144 4186 +4188 2 -73.90926960526582 -1200.3747454934794 46.1902 0.1144 4187 +4189 2 -72.7956044459226 -1200.1132448952676 46.2266 0.1144 4188 +4190 2 -71.80758713290794 -1199.5380988623479 46.2056 0.1144 4189 +4191 2 -70.81858033273272 -1198.9624619983379 46.1353 0.1144 4190 +4192 2 -69.83122423650792 -1198.3864312098833 46.0256 0.1144 4191 +4193 2 -68.84422923769085 -1197.8119135667166 45.8881 0.1144 4192 +4194 2 -67.85775789700097 -1197.2365439950518 45.7318 0.1144 4193 +4195 2 -66.87031660792638 -1196.6604608407843 45.57 0.1144 4194 +4196 2 -65.88332160910932 -1196.0859431976173 45.4149 0.1144 4195 +4197 2 -64.89690263423228 -1195.510488433103 45.269 0.1144 4196 +4198 2 -63.90883295540482 -1194.9354275930332 45.1343 0.1144 4197 +4199 2 -62.92539573027062 -1194.3618056319642 44.8731 0.1144 4198 +4200 2 -77.34065769183826 -1201.6016961849618 45.8223 0.1144 4185 +4201 2 -77.32677547130288 -1202.731873734709 45.3967 0.1144 4200 +4202 2 -77.31226486101463 -1203.863073598654 44.9848 0.1144 4201 +4203 2 -77.29882893073676 -1204.994816659502 44.5819 0.1144 4202 +4204 2 -77.28467941785613 -1206.127529668735 44.1846 0.1144 4203 +4205 2 -77.27061509782538 -1207.2602950437804 43.7898 0.1144 4204 +4206 2 -77.2564655849448 -1208.393008053013 43.3972 0.1144 4205 +4207 2 -77.24177287516125 -1209.5267957422561 43.0189 0.1144 4206 +4208 2 -77.22704733834047 -1210.660445872837 42.6594 0.1144 4207 +4209 2 -77.21373804016213 -1211.7963750971207 42.3242 0.1144 4208 +4210 2 -77.20230298467925 -1212.9334563692846 42.0202 0.1144 4209 +4211 2 -77.2281588751195 -1214.0732699211121 41.7973 0.1144 4210 +4212 2 -77.26363294537413 -1215.215004570818 41.6506 0.1144 4211 +4213 2 -77.29941574722363 -1216.3583375586622 41.5624 0.1144 4212 +4214 2 -77.3368164259864 -1217.5011390633986 41.5162 0.1144 4213 +4215 2 -77.37259922783596 -1218.6444720512422 41.4963 0.1144 4214 +4216 2 -77.4084343954982 -1219.7877198462363 41.4884 0.1144 4215 +4217 2 -77.44364117340763 -1220.931989955428 41.4809 0.1144 4216 +4218 2 -77.47942397525708 -1222.0753229432717 41.47 0.1144 4217 +4219 2 -77.51525914291932 -1223.2185707382657 41.4551 0.1144 4218 +4220 2 -77.55109431058156 -1224.3618185332598 41.4347 0.1144 4219 +4221 2 -77.58687711243113 -1225.5051515211035 41.4053 0.1144 4220 +4222 2 -77.62271228009331 -1226.6483993160973 41.3638 0.1144 4221 +4223 2 -77.65849508194282 -1227.7917323039414 41.3059 0.1144 4222 +4224 2 -77.69433024960506 -1228.9349800989353 41.2283 0.1144 4223 +4225 2 -77.74527108085596 -1230.0754227330522 41.1253 0.1144 4224 +4226 2 -78.00725120995293 -1231.1872390721828 40.9483 0.1144 4225 +4227 2 -78.31793803214953 -1232.2832156497216 40.7064 0.1144 4226 +4228 2 -78.62906331962375 -1233.3782879329497 40.4228 0.1144 4227 +4229 2 -78.93993224131572 -1234.4716766851902 40.1195 0.1144 4228 +4230 2 -79.25177111139254 -1235.5657790200332 39.8174 0.1144 4229 +4231 2 -79.55510792091513 -1236.6626372515238 39.536 0.1144 4230 +4232 2 -79.70161289772699 -1237.7679160678274 39.3103 0.1144 4231 +4233 2 -79.23329240058979 -1238.8093886416195 39.228 0.1144 4232 +4234 2 -78.58923706598057 -1239.752349455207 39.2202 0.1144 4233 +4235 2 -77.84207175924655 -1240.6184324849523 39.2451 0.1144 4234 +4236 2 -77.09476889384996 -1241.4845483417348 39.2902 0.1144 4235 +4237 2 -76.34796468452367 -1242.352144516768 39.3453 0.1144 4236 +4238 2 -75.60168413332468 -1243.2188887633033 39.4022 0.1144 4237 +4239 2 -74.85545594793848 -1244.0855478169892 39.4626 0.1144 4238 +4240 2 -74.10980378649231 -1244.951269749327 39.5436 0.1144 4239 +4241 2 -73.3635756011061 -1245.8179288030124 39.6553 0.1144 4240 +4242 2 -72.61792343965988 -1246.6836507353505 39.8012 0.1144 4241 +4243 2 -71.89476219056007 -1247.5631972422505 40.0056 0.1144 4242 +4244 2 -71.3159262412284 -1248.5354476748867 40.397 0.1144 4243 +4245 2 -70.8032796255589 -1249.5377013091743 40.8951 0.1144 4244 +4246 2 -70.26346510301704 -1250.5272464881596 41.3672 0.1144 4245 +4247 2 -69.7250339920804 -1251.5189332021855 41.8328 0.1144 4246 +4248 2 -69.21225764272833 -1252.5236894689215 42.2904 0.1144 4247 +4249 2 -68.75012177477561 -1253.552999791201 42.7434 0.1144 4248 +4250 2 -68.1458607110743 -1254.4747599915213 43.1953 0.1144 4249 +4251 2 -67.20578155571877 -1255.0865717940114 43.668 0.1144 4250 +4252 2 -66.17877174786418 -1255.5537447647303 44.128 0.1144 4251 +4253 2 -65.15318368928143 -1256.0338818639973 44.5248 0.1144 4252 +4254 2 -64.12171732406267 -1256.5104057221852 44.8456 0.1144 4253 +4255 2 -63.087087109605704 -1256.9876846022257 45.103 0.1144 4254 +4256 2 -62.050858557011054 -1257.4652722138612 45.318 0.1144 4255 +4257 2 -61.015737511463726 -1257.9435405810623 45.512 0.1144 4256 +4258 2 -59.98511687157679 -1258.4339656891461 45.7092 0.1144 4257 +4259 2 -59.033313929986434 -1259.038688568141 45.9494 0.1144 4258 +4260 2 -58.25367912622073 -1259.8634501535444 46.2815 0.1144 4259 +4261 2 -57.45397075501114 -1260.648875472093 46.6816 0.1144 4260 +4262 2 -56.46285306825507 -1261.175672227018 47.0806 0.1144 4261 +4263 2 -55.38935819300957 -1261.5458390715917 47.4362 0.1144 4262 +4264 2 -54.3142649796265 -1261.9163146477608 47.726 0.1144 4263 +4265 2 -53.23543189306508 -1262.2884823671295 47.9217 0.1144 4264 +4266 2 -52.154457271462945 -1262.662033498104 48.001 0.1144 4265 +4267 2 -51.07130277715345 -1263.026145447176 47.9388 0.1144 4266 +4268 2 -49.97824057877364 -1263.2969534981512 47.5667 0.1144 4267 +4269 2 -48.89928325147412 -1263.4663283069826 46.7466 0.1144 4268 +4270 2 -47.8750666836234 -1263.684140800059 45.6324 0.1144 4269 +4271 2 -47.14867591352612 -1264.348186633656 44.3699 0.1144 4270 +4272 2 -46.50583220206431 -1265.125328926054 43.048 0.1144 4271 +4273 2 -45.861390152464764 -1265.9027799500473 41.7295 0.1144 4272 +4274 2 -45.210382837497605 -1266.6911028317772 40.4746 0.1144 4273 +4275 2 -44.17183585922277 -1266.8905989568434 39.4503 0.1144 4274 +4276 2 -43.06617712893558 -1266.8085648655174 38.7587 0.1144 4275 +4277 2 -41.94493361776529 -1266.7276328653052 38.2427 0.1144 4276 +4278 2 -40.83602584539 -1266.6463014300184 37.5813 0.1144 4277 +4279 2 -75.47056326125846 -1179.2260036320884 53.5052 0.1144 4015 +4280 2 -76.45976447256521 -1179.746708427101 53.5038 0.1144 4279 +4281 2 -77.48866614971752 -1180.2421640040736 53.3313 0.1144 4280 +4282 2 -78.54177249880166 -1180.6827733974353 53.1821 0.1144 4281 +4283 2 -79.64495593073298 -1180.970110856727 53.0326 0.1144 4282 +4284 2 -80.77444382861347 -1180.9043371648622 52.9099 0.1144 4283 +4285 2 -81.81517519591495 -1180.4562801248385 52.8237 0.1144 4284 +4286 2 -82.70761723599958 -1179.7493364388993 52.7755 0.1144 4285 +4287 2 -83.0242494165218 -1178.6924484636352 52.7624 0.1144 4286 +4288 2 -83.98017825374416 -1178.2756058576474 52.7845 0.1144 4287 +4289 2 -84.78889595379098 -1177.4929011996626 52.6935 0.1144 4288 +4290 2 -85.06629368062204 -1177.568097151342 52.7089 0.1144 4289 +4291 2 -86.16943025737021 -1177.8662048383283 52.8674 0.1144 4290 +4292 2 -87.26758110799733 -1178.163830306437 53.1532 0.1144 4291 +4293 2 -88.36024757643321 -1178.4594932374173 53.543 0.1144 4292 +4294 2 -89.44998466093892 -1178.753238172102 54.0081 0.1144 4293 +4295 2 -90.53556840904588 -1179.047247297549 54.5216 0.1144 4294 +4296 2 -91.62075823270817 -1179.3396057190453 55.0388 0.1144 4295 +4297 2 -92.70736429501267 -1179.6342432342449 55.5436 0.1144 4296 +4298 2 -93.79388516446738 -1179.9288283836318 56.0316 0.1144 4297 +4299 2 -94.91844859834094 -1179.9432506994872 56.4718 0.1144 4298 +4300 2 -96.04802789223737 -1179.8641517816668 56.8613 0.1144 4299 +4301 2 -97.1798893814202 -1179.7769478293199 57.2135 0.1144 4300 +4302 2 -98.31272081898788 -1179.6904574595756 57.5386 0.1144 4301 +4303 2 -99.44618064630828 -1179.602944775634 57.846 0.1144 4302 +4304 2 -100.58057759497649 -1179.5160081156323 58.1451 0.1144 4303 +4305 2 -101.71403742229688 -1179.4284954316904 58.4438 0.1144 4304 +4306 2 -102.8484343709651 -1179.341558771689 58.7443 0.1144 4305 +4307 2 -103.98243739518858 -1179.2529714077368 59.047 0.1144 4306 +4308 2 -105.11629114695381 -1179.1671094277453 59.3538 0.1144 4307 +4309 2 -106.24966578142448 -1179.0795443779907 59.67 0.1144 4308 +4310 2 -107.38503439498737 -1179.0347577579337 59.9956 0.1144 4309 +4311 2 -108.51893640469393 -1179.1059808748523 60.3154 0.1144 4310 +4312 2 -109.65064692259347 -1179.1960464269546 60.6494 0.1144 4311 +4313 2 -110.7803949033646 -1179.2915963612481 61.0226 0.1144 4312 +4314 2 -111.79622123308866 -1179.7252544844737 61.6258 0.1144 4313 +4315 2 -112.77393071442208 -1180.2188235071144 62.4344 0.1144 4314 +4316 2 -113.73382317635236 -1180.7041406318172 63.3889 0.1144 4315 +4317 2 -114.68013714812793 -1181.180994033632 64.4414 0.1144 4316 +4318 2 -115.6189549363541 -1181.654765677475 65.5483 0.1144 4317 +4319 2 -116.55333019536226 -1182.1269804224307 66.6772 0.1144 4318 +4320 2 -117.48867540275535 -1182.5999087499888 67.7958 0.1144 4319 +4321 2 -118.4275455567942 -1183.0735952009825 68.8999 0.1144 4320 +4322 2 -119.36837514637853 -1183.5484860656688 69.9868 0.1144 4321 +4323 2 -120.3131236070534 -1184.0257857577412 71.0503 0.1144 4322 +4324 2 -121.26023093834789 -1184.5166256023017 72.06 0.1144 4323 +4325 2 -122.20732354895978 -1185.0424358598325 72.9596 0.1144 4324 +4326 2 -123.16185997730827 -1185.5714130681845 73.7988 0.1144 4325 +4327 2 -124.12169868835252 -1186.104940638963 74.5881 0.1144 4326 +4328 2 -125.08509517307988 -1186.6393638918394 75.346 0.1144 4327 +4329 2 -126.04840646495734 -1187.173734778903 76.0934 0.1144 4328 +4330 2 -127.0117177568348 -1187.7081056659667 76.8519 0.1144 4329 +4331 2 -127.55321081999938 -1188.537819949648 77.8369 0.1144 4330 +4332 2 -128.15277276908068 -1189.4542882792775 78.6338 0.1144 4331 +4333 2 -128.7294943275075 -1190.327137271971 79.7577 0.1144 4332 +4334 2 -129.28636275565242 -1191.1688847660184 81.0729 0.1144 4333 +4335 2 -129.83000045544082 -1191.9905268422103 82.4933 0.1144 4334 +4336 2 -130.3673573119358 -1192.8029087344125 83.9636 0.1144 4335 +4337 2 -130.90413814449073 -1193.616227747962 85.4311 0.1144 4336 +4338 2 -131.64832761999514 -1194.3476281749163 86.564 0.1144 4337 +4339 2 -132.45030738372316 -1195.0701808571275 87.4922 0.1144 4338 +4340 2 -133.26073925123916 -1195.80743666627 88.2997 0.1144 4339 +4341 2 -134.0317403543013 -1196.5847800646966 89.108 0.1144 4340 +4342 2 -134.79578226755103 -1197.371344616909 89.9038 0.1144 4341 +4343 2 -135.56272073769384 -1198.159689606755 90.6786 0.1144 4342 +4344 2 -136.3310426194418 -1198.9501761316415 91.4248 0.1144 4343 +4345 2 -137.11704086034746 -1199.7556361773877 91.9293 0.1144 4344 +4346 2 -137.91123794084217 -1200.5674270231934 92.2695 0.1144 4345 +4347 2 -138.70806428588457 -1201.3835337661174 92.468 0.1144 4346 +4348 2 -139.66934767064816 -1201.9998810985344 92.566 0.1144 4347 +4349 2 -140.75259788162947 -1202.3675795353124 92.5952 0.1144 4348 +4350 2 -141.83579572679798 -1202.7353631649403 92.5952 0.1144 4349 +4351 2 -142.91904593777917 -1203.1030616017183 92.5952 0.1144 4350 +4352 2 -143.99720810006045 -1203.4878220360474 92.5952 0.1144 4351 +4353 2 -145.02566038537225 -1203.9884008978036 92.5952 0.1144 4352 +4354 2 -146.05474106043675 -1204.487957445362 92.5952 0.1144 4353 +4355 2 -126.50382521376588 -1187.9949113574985 77.1134 0.1144 4330 +4356 2 -125.55824185335479 -1188.5282161938853 77.9926 0.1144 4355 +4357 2 -124.57165980834264 -1189.0846810790847 78.3765 0.1144 4356 +4358 2 -123.5865909086184 -1189.6407848668762 78.804 0.1144 4357 +4359 2 -122.60437712653754 -1190.1945352946777 79.2627 0.1144 4358 +4360 2 -121.66159651795704 -1190.7255719639243 80.1741 0.1144 4359 +4361 2 -84.95634854663854 -1176.8009275302584 51.0773 0.1144 4289 +4362 2 -85.09077614589336 -1175.701884714642 51.123 0.1144 4361 +4363 2 -85.65679172850594 -1174.717645612472 51.2926 0.1144 4362 +4364 2 -86.37304064297643 -1173.836550031664 51.6298 0.1144 4363 +4365 2 -87.0839927853807 -1172.9615891232738 52.096 0.1144 4364 +4366 2 -87.80019174308507 -1172.0979525660443 52.64 0.1144 4365 +4367 2 -88.59687692530201 -1171.306560646427 53.1714 0.1144 4366 +4368 2 -89.42963702064964 -1170.548142059104 53.657 0.1144 4367 +4369 2 -90.26538196732315 -1169.784867479343 54.0764 0.1144 4368 +4370 2 -91.09481324366635 -1169.0121951569295 54.437 0.1144 4369 +4371 2 -91.69634823087029 -1168.114348310764 54.7509 0.1144 4370 +4372 2 -91.49655947996519 -1166.991107328155 54.9741 0.1144 4371 +4373 2 -91.29503483225989 -1165.8682079041782 55.1561 0.1144 4372 +4374 2 -91.12678845432447 -1164.741583327706 55.3266 0.1144 4373 +4375 2 -91.29570114608873 -1163.6542297547771 55.5212 0.1144 4374 +4376 2 -92.02139785467398 -1162.774950540222 55.7494 0.1144 4375 +4377 2 -92.74539931847607 -1161.898620248373 56.0526 0.1144 4376 +4378 2 -93.50921487605052 -1161.0776337722314 56.4782 0.1144 4377 +4379 2 -94.46968656447132 -1160.5266002108742 57.1357 0.1144 4378 +4380 2 -95.48312677847247 -1160.131726936715 58.0034 0.1144 4379 +4381 2 -96.22398381883136 -1159.6605087645796 59.2091 0.1144 4380 +4382 2 -95.77878970945278 -1159.0390604682793 61.1696 0.1144 4381 +4383 2 -95.06643312548442 -1158.6643443793841 63.1554 0.1144 4382 +4384 2 -94.41333853577777 -1158.2762856507154 65.2408 0.1144 4383 +4385 2 -94.21478803759788 -1157.635888500759 67.3904 0.1144 4384 +4386 2 -94.18194553426349 -1156.9094211443175 69.5512 0.1144 4385 +4387 2 -93.7931890389525 -1156.7684756323156 72.0087 0.1144 4386 +4388 2 -93.1708036213044 -1157.213093717754 74.0838 0.1144 4387 +4389 2 -92.56665317293613 -1157.6125776044582 76.127 0.1144 4388 +4390 2 -92.51245980725116 -1156.796336807196 78.0847 0.1144 4389 +4391 2 -92.47965974945475 -1155.9235217545024 79.8941 0.1144 4390 +4392 2 -92.33237471907023 -1155.0205973834586 81.5066 0.1144 4391 +4393 2 -91.89038490386946 -1154.1338427312244 82.8834 0.1144 4392 +4394 2 -91.49931958369444 -1153.3523398999077 84.6908 0.1144 4393 +4395 2 -67.07886294355922 -1147.9228107732451 57.6892 0.1144 3552 +4396 2 -66.1057673001493 -1148.5251272339005 57.6758 0.1144 4395 +4397 2 -65.13316248782962 -1149.1264542073957 57.6568 0.1144 4396 +4398 2 -64.16064286835979 -1149.7278335467036 57.6092 0.1144 4397 +4399 2 -63.18803805604017 -1150.3291605201985 57.5184 0.1144 4398 +4400 2 -62.21609446051036 -1150.9296027381583 57.3703 0.1144 4399 +4401 2 -61.19434248921499 -1151.4294701297272 57.1147 0.1144 4400 +4402 2 -60.09331830791581 -1151.4926676153937 56.6398 0.1144 4401 +4403 2 -58.9844981374369 -1151.4287623766486 55.9661 0.1144 4402 +4404 2 -57.89033423870603 -1151.3671752618102 55.1622 0.1144 4403 +4405 2 -56.807930054830194 -1151.3061258332455 54.2732 0.1144 4404 +4406 2 -55.72868972019262 -1151.2443213828283 53.356 0.1144 4405 +4407 2 -54.64745230487961 -1151.1464272985977 52.4737 0.1144 4406 +4408 2 -53.74924797744745 -1151.7317440301044 51.6309 0.1144 4407 +4409 2 -53.091397509641126 -1152.627254930098 50.9718 0.1144 4408 +4410 2 -52.46479540389225 -1153.4828134851198 49.9215 0.1144 4409 +4411 2 -53.24356451377531 -1092.5469587153416 58.0686 0.1144 3467 +4412 2 -53.03205748726492 -1091.4273138440826 58.3094 0.1144 4411 +4413 2 -52.90489739582688 -1090.2949554153395 58.5746 0.1144 4412 +4414 2 -52.83707046335434 -1089.160214498993 58.8666 0.1144 4413 +4415 2 -52.5890299218197 -1088.0583750280375 59.1091 0.1144 4414 +4416 2 -51.909310302685014 -1087.1478048279082 59.2883 0.1144 4415 +4417 2 -51.63720644200072 -1086.0700272910294 59.4115 0.1144 4416 +4418 2 -52.17599624129849 -1085.0624798915624 59.486 0.1144 4417 +4419 2 -52.555236364816096 -1083.9889064293743 59.5274 0.1144 4418 +4420 2 -52.619465055838646 -1082.8467141840629 59.558 0.1144 4419 +4421 2 -52.75087326022049 -1081.7109533448802 59.5935 0.1144 4420 +4422 2 -52.921046525609995 -1080.590803721059 59.6565 0.1144 4421 +4423 2 -52.66066473465071 -1079.4786786503332 59.7671 0.1144 4422 +4424 2 -52.516569277761334 -1078.345418336326 59.8514 0.1144 4423 +4425 2 -52.440595871512585 -1077.20426142707 59.9113 0.1144 4424 +4426 2 -52.27431203070563 -1076.0721524684063 59.9474 0.1144 4425 +4427 2 -52.158817849060256 -1074.9362831211633 59.9603 0.1144 4426 +4428 2 -52.187894027617176 -1073.7966639804672 59.9511 0.1144 4427 +4429 2 -52.088659966486944 -1072.6734890603807 59.9253 0.1144 4428 +4430 2 -52.47480381242127 -1071.5974684331402 59.8931 0.1144 4429 +4431 2 -52.92045129771668 -1070.5447591100838 59.8388 0.1144 4430 +4432 2 -53.14135264640191 -1069.466589738348 59.7321 0.1144 4431 +4433 2 -52.792398726731165 -1068.3805448903117 59.6473 0.1144 4432 +4434 2 -52.64785387800123 -1067.2524078610882 59.5879 0.1144 4433 +4435 2 -52.747860369658895 -1066.1133089928476 59.5546 0.1144 4434 +4436 2 -52.87767023590317 -1064.9778568852598 59.547 0.1144 4435 +4437 2 -52.81051003085008 -1063.8529162482228 59.5664 0.1144 4436 +4438 2 -52.27270858292252 -1062.8644247244317 59.61 0.1144 4437 +4439 2 -51.76519375243237 -1061.9400933191268 59.6722 0.1144 4438 +4440 2 -51.9159844873181 -1060.812138087625 59.7682 0.1144 4439 +4441 2 -52.08365512025938 -1059.691858730121 59.908 0.1144 4440 +4442 2 -52.01182412384634 -1058.5546566205758 60.0667 0.1144 4441 +4443 2 -51.844473428008996 -1057.4244742704204 60.2249 0.1144 4442 +4444 2 -51.6613034859804 -1056.298067029527 60.3924 0.1144 4443 +4445 2 -51.49007535830219 -1055.169609649609 60.5937 0.1144 4444 +4446 2 -51.32285129456443 -1054.0436134628892 60.8734 0.1144 4445 +4447 2 -51.012613171671774 -1052.9665762271802 61.2475 0.1144 4446 +4448 2 -50.50097203710175 -1051.9551943559682 61.6372 0.1144 4447 +4449 2 -50.2985831492623 -1050.8841155175633 62.0029 0.1144 4448 +4450 2 -50.39658335019152 -1049.7545824633246 62.3739 0.1144 4449 +4451 2 -50.36867662818992 -1048.6268897237596 62.7455 0.1144 4450 +4452 2 -50.19976593188164 -1047.5078386987066 63.1532 0.1144 4451 +4453 2 -49.97716281635263 -1046.4041452163679 63.6471 0.1144 4452 +4454 2 -49.81875195381053 -1045.2943653018674 64.183 0.1144 4453 +4455 2 -49.92556225435246 -1044.1877373157322 64.7066 0.1144 4454 +4456 2 -50.21872806351399 -1043.1056261484582 65.2448 0.1144 4455 +4457 2 -50.415534651085665 -1042.0032558989103 65.7712 0.1144 4456 +4458 2 -50.48118198979688 -1040.8807165780308 66.2763 0.1144 4457 +4459 2 -50.56278071742855 -1039.7692733461704 66.892 0.1144 4458 +4460 2 -50.374022685556525 -1038.706573037803 67.7188 0.1144 4459 +4461 2 -50.002416269445035 -1037.661773242864 68.3945 0.1144 4460 +4462 2 -50.12299808619994 -1036.556802163845 68.9245 0.1144 4461 +4463 2 -50.47246534781783 -1035.4879347291007 69.4134 0.1144 4462 +4464 2 -50.99949784130712 -1034.497223474089 69.9468 0.1144 4463 +4465 2 -51.12025934851087 -1033.3722907390434 70.3268 0.1144 4464 +4466 2 -51.5023436631088 -1032.3005829073381 70.5947 0.1144 4465 +4467 2 -51.41509827151222 -1031.164587620532 70.805 0.1144 4466 +4468 2 -51.426663060677726 -1030.0250037159199 71.0506 0.1144 4467 +4469 2 -51.42718171759091 -1028.8839121766491 71.2303 0.1144 4468 +4470 2 -51.284321926401645 -1029.4352381510612 71.8976 0.1144 4469 +4471 2 -51.27235329251678 -1030.4269088483206 73.225 0.1144 4470 +4472 2 -51.93529672124805 -1031.2641337047971 73.8676 0.1144 4471 +4473 2 -52.342540970285825 -1032.2946858731154 74.3632 0.1144 4472 +4474 2 -52.66851004493688 -1033.374584429634 74.8306 0.1144 4473 +4475 2 -53.5042205718585 -1034.081599878682 75.3267 0.1144 4474 +4476 2 -54.05778959270114 -1035.042338859448 75.8542 0.1144 4475 +4477 2 -54.27933205636597 -1036.1345813585265 76.4302 0.1144 4476 +4478 2 -54.37264947319349 -1037.2433204440272 77.0826 0.1144 4477 +4479 2 -54.59756761104589 -1038.3390464505019 77.6686 0.1144 4478 +4480 2 -54.88682727434349 -1039.425960640854 78.1746 0.1144 4479 +4481 2 -55.3827343555721 -1040.4411699871403 78.6111 0.1144 4480 +4482 2 -56.26165247271942 -1041.1653535504379 78.871 0.1144 4481 +4483 2 -57.30340344339834 -1040.4078033111205 79.0658 0.1144 4482 +4484 2 -57.846599150757356 -1039.432426674376 79.1176 0.1144 4483 +4485 2 -58.083951929506355 -1038.318708456684 79.1426 0.1144 4484 +4486 2 -58.36776444215229 -1037.214766901317 79.1599 0.1144 4485 +4487 2 -58.850652916604645 -1036.1822488815028 79.1854 0.1144 4486 +4488 2 -59.63081378754424 -1035.3740091983302 79.2249 0.1144 4487 +4489 2 -60.62251911733989 -1034.8179937049715 79.2809 0.1144 4488 +4490 2 -61.7147917503203 -1034.5024477887534 79.357 0.1144 4489 +4491 2 -62.81731336191447 -1034.2051744869455 79.455 0.1144 4490 +4492 2 -63.93970792665482 -1034.0155471127578 79.6096 0.1144 4491 +4493 2 -65.0476437323617 -1033.761980749782 79.8479 0.1144 4492 +4494 2 -65.77073340830987 -1032.972303897812 80.1875 0.1144 4493 +4495 2 -66.1967803349859 -1031.9209280295945 80.5031 0.1144 4494 +4496 2 -66.7631046491934 -1030.9382872655626 80.7702 0.1144 4495 +4497 2 -67.75211534445572 -1030.4544479382475 81.004 0.1144 4496 +4498 2 -68.85137930174903 -1030.1538810535185 81.2148 0.1144 4497 +4499 2 -69.945305740263 -1029.8312524169714 81.4475 0.1144 4498 +4500 2 -70.94996047792395 -1029.308785587311 81.7681 0.1144 4499 +4501 2 -71.89063278694874 -1028.678440081232 82.1495 0.1144 4500 +4502 2 -72.8570888987042 -1028.0827241220277 82.5017 0.1144 4501 +4503 2 -73.81410341951107 -1027.471814204802 82.8344 0.1144 4502 +4504 2 -74.74217338993219 -1026.8203409666698 83.2079 0.1144 4503 +4505 2 -75.68377661713859 -1026.203949076299 83.7021 0.1144 4504 +4506 2 -76.64559717361757 -1025.6134830339784 84.1638 0.1144 4505 +4507 2 -77.64562797510177 -1025.067984504115 84.4119 0.1144 4506 +4508 2 -78.80616991289756 -1024.407632393028 84.8585 0.1144 4507 +4509 2 -79.80233420910383 -1023.859639842929 85.1248 0.1144 4508 +4510 2 -80.91373949406076 -1023.6136055921228 85.3782 0.1144 4509 +4511 2 -82.04112150143209 -1023.4658968941546 85.6302 0.1144 4510 +4512 2 -83.07832241145803 -1023.0063966958508 85.9631 0.1144 4511 +4513 2 -84.01030815138674 -1022.3640210809886 86.3688 0.1144 4512 +4514 2 -84.93218798199385 -1021.714025059524 86.8165 0.1144 4513 +4515 2 -85.89801811304295 -1021.1367052452463 87.2161 0.1144 4514 +4516 2 -86.64753918881345 -1020.290851163873 87.656 0.1144 4515 +4517 2 -87.37585895878044 -1019.4292654382048 88.1191 0.1144 4516 +4518 2 -88.10426392159724 -1018.5677320783493 88.5872 0.1144 4517 +4519 2 -88.83062425601892 -1017.7049419389881 89.0515 0.1144 4518 +4520 2 -89.53270772983169 -1016.8205387471129 89.4975 0.1144 4519 +4521 2 -90.16512998168551 -1015.8812264106879 89.8898 0.1144 4520 +4522 2 -90.80789260816891 -1014.9468614627173 90.2334 0.1144 4521 +4523 2 -91.5633802850083 -1014.0979841923514 90.5514 0.1144 4522 +4524 2 -92.40683634176361 -1013.3353411039262 90.8592 0.1144 4523 +4525 2 -93.25488109861217 -1012.5782183263124 91.1627 0.1144 4524 +4526 2 -94.10256475805303 -1011.8195824034107 91.4659 0.1144 4525 +4527 2 -94.94967239355384 -1011.0618836018567 91.7692 0.1144 4526 +4528 2 -95.79829317434246 -1010.3038237028951 92.0662 0.1144 4527 +4529 2 -96.65025680228169 -1009.5491097526672 92.349 0.1144 4528 +4530 2 -97.5234186344413 -1008.8168162426183 92.6005 0.1144 4529 +4531 2 -98.39519705499578 -1008.0823811975289 92.82 0.1144 4530 +4532 2 -99.23304519904335 -1007.3069006126552 93.0037 0.1144 4531 +4533 2 -100.03566174624558 -1006.4949741146537 93.151 0.1144 4532 +4534 2 -100.83605466714056 -1005.6776898665604 93.2658 0.1144 4533 +4535 2 -101.58490901549158 -1004.8220355058774 93.3408 0.1144 4534 +4536 2 -102.10325253083818 -1003.8019203113538 93.3346 0.1144 4535 +4537 2 -102.56882264195747 -1002.762630711852 93.2784 0.1144 4536 +4538 2 -102.77636422114006 -1001.6427959280959 93.2554 0.1144 4537 +4539 2 -102.72257919880886 -1000.5004876634961 93.1949 0.1144 4538 +4540 2 -102.60347487766762 -999.3638078270051 93.084 0.1144 4539 +4541 2 -102.60180755340338 -998.252243757763 92.932 0.1144 4540 +4542 2 -103.17183030153944 -997.2637770529078 92.7408 0.1144 4541 +4543 2 -103.77213795060308 -996.2980340091971 92.5134 0.1144 4542 +4544 2 -104.22130728096138 -995.2527716054602 92.2508 0.1144 4543 +4545 2 -104.56802174751493 -994.1687133142774 91.9677 0.1144 4544 +4546 2 -104.92320234600254 -993.0884503636686 91.66 0.1144 4545 +4547 2 -105.2792677000252 -992.0088486298497 91.3385 0.1144 4546 +4548 2 -105.65275614900645 -990.9358480900187 91.0266 0.1144 4547 +4549 2 -106.12900819338728 -989.9032417757716 90.7771 0.1144 4548 +4550 2 -106.7249944347029 -988.929442961764 90.6293 0.1144 4549 +4551 2 -107.27315466024547 -987.9261293681487 90.529 0.1144 4550 +4552 2 -107.78049658417257 -986.9019515407057 90.4322 0.1144 4551 +4553 2 -108.28789087391235 -985.8776885204128 90.3193 0.1144 4552 +4554 2 -108.83466458626665 -984.8789221876411 90.1463 0.1144 4553 +4555 2 -109.50218629223662 -983.9611845660635 89.801 0.1144 4554 +4556 2 -109.98007431988532 -982.9631547403418 89.3584 0.1144 4555 +4557 2 -110.13879660201479 -981.8440657683849 88.9333 0.1144 4556 +4558 2 -110.29715778673659 -980.7234636511402 88.5315 0.1144 4557 +4559 2 -110.43088342248836 -979.5971091668224 88.1689 0.1144 4558 +4560 2 -110.31314469068667 -978.5042300742263 87.88 0.1144 4559 +4561 2 -109.76934140560664 -977.5012503500362 87.6988 0.1144 4560 +4562 2 -109.22651899547449 -976.494765217976 87.5902 0.1144 4561 +4563 2 -108.70882055635622 -975.4756691350993 87.5286 0.1144 4562 +4564 2 -108.36249279965025 -974.4006289800656 87.5008 0.1144 4563 +4565 2 -108.27404609594379 -973.2599043329209 87.4952 0.1144 4564 +4566 2 -108.18568458508713 -972.1192320515889 87.4885 0.1144 4565 +4567 2 -108.09660949162787 -970.9795297186417 87.4614 0.1144 4566 +4568 2 -108.0081627879214 -969.838805071497 87.402 0.1144 4567 +4569 2 -107.92737482848398 -968.698797108538 87.297 0.1144 4568 +4570 2 -107.96193228764909 -967.5678293008547 87.101 0.1144 4569 +4571 2 -108.21955235243698 -966.4625779076329 86.749 0.1144 4570 +4572 2 -108.4891080284091 -965.3686539671547 86.2658 0.1144 4571 +4573 2 -108.66158469702248 -964.2688184845556 85.6876 0.1144 4572 +4574 2 -108.61562579777296 -963.1596094918136 85.0559 0.1144 4573 +4575 2 -108.44590702126297 -962.0615424369851 84.3881 0.1144 4574 +4576 2 -108.27447897182358 -960.9773320912193 83.613 0.1144 4575 +4577 2 -108.11134597608222 -959.9208749810153 82.614 0.1144 4576 +4578 2 -108.04795097770142 -958.8814716645976 81.4747 0.1144 4577 +4579 2 -108.21955178708106 -957.8617383846561 80.311 0.1144 4578 +4580 2 -108.49943001541706 -956.8144210414866 79.4371 0.1144 4579 +4581 2 -108.81521647060757 -955.7436318163269 78.8343 0.1144 4580 +4582 2 -109.23200321329392 -954.6985367914028 78.353 0.1144 4581 +4583 2 -109.62829130621628 -953.6409591642719 77.917 0.1144 4582 +4584 2 -109.72602111321726 -952.5206503654027 77.5676 0.1144 4583 +4585 2 -109.7009202446294 -951.3840006628136 77.2859 0.1144 4584 +4586 2 -109.67569274394197 -950.2431647967886 77.0554 0.1144 4585 +4587 2 -109.7524361716718 -949.1046740869888 76.9236 0.1144 4586 +4588 2 -109.87119990566367 -947.9677143447427 76.8821 0.1144 4587 +4589 2 -109.81290906173874 -946.8281533645778 76.9264 0.1144 4588 +4590 2 -109.95163135017447 -945.6980621086648 76.9493 0.1144 4589 +4591 2 -110.13543306248502 -944.5689171841525 76.8578 0.1144 4590 +4592 2 -110.15426267147481 -943.4283992597755 76.7133 0.1144 4591 +4593 2 -110.01408298409297 -942.3042365690383 76.354 0.1144 4592 +4594 2 -109.80782828351221 -941.2066010837844 75.754 0.1144 4593 +4595 2 -109.40409426043774 -940.2117774518716 75.0201 0.1144 4594 +4596 2 -108.54975553232805 -939.5241828709943 74.2367 0.1144 4595 +4597 2 -107.66217617957841 -938.875198662733 73.4745 0.1144 4596 +4598 2 -106.82024027675925 -938.1521490409615 72.7964 0.1144 4597 +4599 2 -106.0743747638106 -937.3339130746328 72.203 0.1144 4598 +4600 2 -105.54148477571718 -936.3416324134336 71.7346 0.1144 4599 +4601 2 -105.06224335854833 -935.3124865811678 71.3924 0.1144 4600 +4602 2 -104.59093107957673 -934.2748331777183 71.2191 0.1144 4601 +4603 2 -104.26202711036589 -933.1823315900593 71.1948 0.1144 4602 +4604 2 -104.12634541959793 -932.052951809476 71.2681 0.1144 4603 +4605 2 -104.20060575365511 -930.9141086144813 71.3812 0.1144 4604 +4606 2 -104.34515708449717 -929.7810269966127 71.5274 0.1144 4605 +4607 2 -104.43812229507577 -928.644408120462 71.7212 0.1144 4606 +4608 2 -104.45236010238918 -927.5050586811577 71.9555 0.1144 4607 +4609 2 -104.4922260474163 -926.3652636441326 72.184 0.1144 4608 +4610 2 -104.53369033058107 -925.2251598755126 72.3789 0.1144 4609 +4611 2 -104.64932855300128 -924.0997777486261 72.557 0.1144 4610 +4612 2 -104.94686021604753 -922.9975782932257 72.7278 0.1144 4611 +4613 2 -105.22928931708822 -921.8914952028182 72.9056 0.1144 4612 +4614 2 -105.60883817220076 -920.8195200787679 73.1284 0.1144 4613 +4615 2 -105.89040923627346 -919.7518799821637 73.5106 0.1144 4614 +4616 2 -105.92973439344408 -918.6305334558779 74.027 0.1144 4615 +4617 2 -106.02589868934442 -917.5106709472661 74.5405 0.1144 4616 +4618 2 -106.11832311206643 -916.3925005818546 75.0943 0.1144 4617 +4619 2 -106.29641079497068 -915.2988137998198 75.7515 0.1144 4618 +4620 2 -106.42454834087903 -914.2361662480282 76.6657 0.1144 4619 +4621 2 -105.75474703862596 -913.5410998227852 77.6199 0.1144 4620 +4622 2 -104.70152566456366 -913.4871892744816 78.4714 0.1144 4621 +4623 2 -103.69646467313683 -913.8443690660602 79.4181 0.1144 4622 +4624 2 -102.7155415985832 -914.2713199904159 80.4118 0.1144 4623 +4625 2 -101.97725645574525 -913.606699641747 81.2566 0.1144 4624 +4626 2 -101.83029967804634 -912.4891702794981 81.6654 0.1144 4625 +4627 2 -102.00220032271969 -911.3902719182468 81.947 0.1144 4626 +4628 2 -102.59707285382169 -910.429169940442 82.1416 0.1144 4627 +4629 2 -103.43148985628588 -909.6569798369062 82.2475 0.1144 4628 +4630 2 -104.14077037089086 -908.8307608576993 82.3239 0.1144 4629 +4631 2 -104.32858165777142 -907.7147621612304 82.4617 0.1144 4630 +4632 2 -104.59403636315758 -906.6210172186645 82.6554 0.1144 4631 +4633 2 -105.00409907387615 -905.558407702766 82.9111 0.1144 4632 +4634 2 -105.36528771268235 -904.4792553607876 83.1751 0.1144 4633 +4635 2 -105.76696948431666 -903.4129028701277 83.3977 0.1144 4634 +4636 2 -106.24665267028104 -902.3770060745428 83.5674 0.1144 4635 +4637 2 -106.70402394181133 -901.3313856749814 83.7085 0.1144 4636 +4638 2 -107.07506522574002 -900.2514814127339 83.8432 0.1144 4637 +4639 2 -107.37308771987654 -899.148292470173 83.9569 0.1144 4638 +4640 2 -107.61034669356303 -898.0305256477072 84.0434 0.1144 4639 +4641 2 -107.76773241927046 -896.8985249130151 84.1089 0.1144 4640 +4642 2 -107.83802151642428 -895.7573580834843 84.1582 0.1144 4641 +4643 2 -107.84219485366594 -894.6145220352008 84.1952 0.1144 4642 +4644 2 -107.88133860387777 -893.4717007075999 84.2262 0.1144 4643 +4645 2 -107.89126361565584 -892.3282917369595 84.2624 0.1144 4644 +4646 2 -107.93999271864493 -891.1872539485747 84.3119 0.1144 4645 +4647 2 -108.05870408682398 -890.0503793991784 84.3839 0.1144 4646 +4648 2 -108.16881958938629 -888.9122121416563 84.485 0.1144 4647 +4649 2 -108.250292377455 -887.7725201197467 84.6185 0.1144 4648 +4650 2 -108.40834793216499 -886.6436308684802 84.7832 0.1144 4649 +4651 2 -108.47876055983525 -885.5133389982693 85.0864 0.1144 4650 +4652 2 -108.23989121532091 -884.435917740705 85.7074 0.1144 4651 +4653 2 -108.34096386947243 -883.3189548905697 86.1851 0.1144 4652 +4654 2 -108.48430768503852 -882.1945215041305 86.5444 0.1144 4653 +4655 2 -108.62966640354574 -881.0645185426503 86.8059 0.1144 4654 +4656 2 -108.77524004858537 -879.9320653145345 86.9809 0.1144 4655 +4657 2 -108.92041976918034 -878.7979613824683 87.0828 0.1144 4656 +4658 2 -109.0655994897752 -877.6638574504022 87.148 0.1144 4657 +4659 2 -109.21072684455743 -876.5298387111858 87.2304 0.1144 4658 +4660 2 -109.35755726910281 -875.3953408546749 87.339 0.1144 4659 +4661 2 -109.57748695289325 -874.2750214429946 87.4938 0.1144 4660 +4662 2 -110.04287496451718 -873.238319668791 87.7509 0.1144 4661 +4663 2 -110.53275786486557 -872.2140918845816 88.0855 0.1144 4662 +4664 2 -111.02308705547134 -871.191429611473 88.466 0.1144 4663 +4665 2 -111.51314895373201 -870.1713027978498 88.8628 0.1144 4664 +4666 2 -111.99269147945071 -869.142127625186 89.2158 0.1144 4665 +4667 2 -112.4563021550247 -868.1016336119915 89.4681 0.1144 4666 +4668 2 -112.91910544293356 -867.0580609424084 89.6305 0.1144 4667 +4669 2 -113.3831983373851 -866.0125812030927 89.7266 0.1144 4668 +4670 2 -113.84720603898697 -864.9670490979643 89.7781 0.1144 4669 +4671 2 -114.17102395495363 -863.8702080851922 89.8064 0.1144 4670 +4672 2 -114.45906717186818 -862.7635848994647 89.8313 0.1144 4671 +4673 2 -114.74622563324775 -861.6563004969474 89.8654 0.1144 4672 +4674 2 -115.03440640882482 -860.549644484183 89.9116 0.1144 4673 +4675 2 -115.32151250439156 -859.4424452745154 89.9721 0.1144 4674 +4676 2 -115.53917402104187 -858.3193231110045 90.0726 0.1144 4675 +4677 2 -115.73642759140753 -857.194455745944 90.2135 0.1144 4676 +4678 2 -115.93114570228784 -856.0693210885385 90.3865 0.1144 4677 +4679 2 -116.12528778922794 -854.9451235524806 90.5825 0.1144 4678 +4680 2 -116.32039982455296 -853.8216395990254 90.7931 0.1144 4679 +4681 2 -116.51614024963078 -852.6971333313727 91.0118 0.1144 4680 +4682 2 -116.71116709210602 -851.5735970121048 91.2316 0.1144 4681 +4683 2 -116.9047659821432 -850.4504741560572 91.4511 0.1144 4682 +4684 2 -117.10042121437121 -849.3259155225917 91.67 0.1144 4683 +4685 2 -117.2945633013114 -848.2017179865338 91.8884 0.1144 4684 +4686 2 -117.48967533663634 -847.0782340330786 92.1054 0.1144 4685 +4687 2 -117.68381742357658 -845.9540364970208 92.3213 0.1144 4686 +4688 2 -117.87892945890158 -844.8305525435655 92.5347 0.1144 4687 +4689 2 -118.07395630137682 -843.7070162242976 92.7455 0.1144 4688 +4690 2 -118.26969672645467 -842.5825099566449 92.9522 0.1144 4689 +4691 2 -118.46383881339477 -841.458312420587 93.1529 0.1144 4690 +4692 2 -118.65957923847265 -840.3338061529342 93.3467 0.1144 4691 +4693 2 -118.85429734935289 -839.2086714955287 93.5326 0.1144 4692 +4694 2 -119.07524934734096 -838.0889804736012 93.6911 0.1144 4693 +4695 2 -119.29740575902193 -836.9673300161282 93.8283 0.1144 4694 +4696 2 -119.51898614676276 -835.8466166800032 93.9509 0.1144 4695 +4697 2 -119.74207967979149 -834.7255422464705 94.0643 0.1144 4696 +4698 2 -119.96522557863298 -833.604382620088 94.1744 0.1144 4697 +4699 2 -120.1867536005611 -832.4837544768127 94.2866 0.1144 4698 +4700 2 -120.28769721356659 -831.3452316325124 94.4126 0.1144 4699 +4701 2 -120.31797780581644 -830.2036530562713 94.5557 0.1144 4700 +4702 2 -120.34376350303549 -829.0606027739918 94.7125 0.1144 4701 +4703 2 -120.36842997941156 -827.9195642930706 94.8794 0.1144 4702 +4704 2 -120.39358728687782 -826.7775363249888 95.0536 0.1144 4703 +4705 2 -120.41968171569192 -825.636084380847 95.2314 0.1144 4704 +4706 2 -120.4602088775089 -824.4954045882869 95.4117 0.1144 4705 +4707 2 -120.5410532758248 -823.3567348805749 95.5998 0.1144 4706 +4708 2 -120.62297235415093 -822.2186083697659 95.7886 0.1144 4707 +4709 2 -120.7053822635674 -821.0794923717965 95.9706 0.1144 4708 +4710 2 -120.80671980101755 -819.9426202314467 96.1346 0.1144 4709 +4711 2 -121.04295646050656 -818.8242250192282 96.2298 0.1144 4710 +4712 2 -121.2832940905815 -817.7056508090972 96.2727 0.1144 4711 +4713 2 -121.52264223349601 -816.5865857678759 96.2814 0.1144 4712 +4714 2 -121.78067025087469 -815.4720772922476 96.2844 0.1144 4713 +4715 2 -122.1198994604419 -814.3807182526202 96.3402 0.1144 4714 +4716 2 -122.45961950109941 -813.2883697258324 96.4404 0.1144 4715 +4717 2 -122.79978583201435 -812.1975867101451 96.5745 0.1144 4716 +4718 2 -123.12636274621161 -811.102558962043 96.7162 0.1144 4717 +4719 2 -123.38982277996885 -809.9900982163928 96.8234 0.1144 4718 +4720 2 -123.65488115186369 -808.8773287391476 96.8786 0.1144 4719 +4721 2 -123.91740406427314 -807.7642919695572 96.8772 0.1144 4720 +4722 2 -124.18246243616801 -806.6515224923121 96.8316 0.1144 4721 +4723 2 -124.89844806519736 -806.6445168500576 96.2713 0.1144 4722 +4724 2 -125.68073264891189 -805.8765529641341 95.6418 0.1144 4723 +4725 2 -125.98667188062021 -805.4267588373365 95.4391 0.1144 4724 +4726 2 -126.62783065833639 -804.4820175861161 95.4142 0.1144 4725 +4727 2 -127.41712818274925 -803.6566221003302 95.5721 0.1144 4726 +4728 2 -128.31709923342018 -802.9528977310248 95.7202 0.1144 4727 +4729 2 -129.22295720293977 -802.2567828417586 95.8362 0.1144 4728 +4730 2 -130.31754795982664 -801.9265806537924 95.9064 0.1144 4729 +4731 2 -130.1924554212312 -800.8653346376456 96.8058 0.1144 4730 +4732 2 -130.06864707324502 -799.8170855770836 97.8874 0.1144 4731 +4733 2 -129.93733605445476 -798.7023651698315 98.4074 0.1144 4732 +4734 2 -129.80686525036666 -797.5908609776304 98.985 0.1144 4733 +4735 2 -129.66036027355486 -796.4855821613269 99.6195 0.1144 4734 +4736 2 -129.09992345891567 -795.5207391083918 100.2268 0.1144 4735 +4737 2 -128.5387316224241 -794.5527322062185 100.8143 0.1144 4736 +4738 2 -127.97566554323706 -793.5835732561649 101.3737 0.1144 4737 +4739 2 -127.5519876864013 -792.5469107249489 101.941 0.1144 4738 +4740 2 -127.39589735681217 -791.4398483694292 102.5408 0.1144 4739 +4741 2 -127.24212756017609 -790.3355035728904 103.1573 0.1144 4740 +4742 2 -127.08799666613234 -789.2296456310637 103.7761 0.1144 4741 +4743 2 -126.93391813790134 -788.1237024963871 104.3753 0.1144 4742 +4744 2 -126.77934095360008 -787.0162790434597 104.9633 0.1144 4743 +4745 2 -126.63264156565678 -785.9659322961534 106.013 0.1144 4744 +4746 2 -131.35997818234551 -802.0287923516514 95.9272 0.1144 4730 +4747 2 -132.47404346929963 -802.2785660620453 95.8163 0.1144 4746 +4748 2 -133.47412973817964 -801.7262935434482 95.6682 0.1144 4747 +4749 2 -134.47322651989913 -801.1735301937606 95.4993 0.1144 4748 +4750 2 -135.47276959187607 -800.6223323551737 95.3075 0.1144 4749 +4751 2 -136.4712903496555 -800.070506126834 95.0888 0.1144 4750 +4752 2 -137.17869933238512 -799.5532566887932 96.7338 0.1144 4751 +4753 2 -138.00107901661156 -798.9536122399975 97.9264 0.1144 4752 +4754 2 -138.87635224990993 -798.3139387708968 98.8212 0.1144 4753 +4755 2 -139.81987246712362 -797.8450989904716 99.8553 0.1144 4754 +4756 2 -140.8153411980923 -797.9427425036382 100.9873 0.1144 4755 +4757 2 -141.83663417673114 -797.8104642295982 102.0743 0.1144 4756 +4758 2 -142.7373739636488 -797.2254147904364 102.9585 0.1144 4757 +4759 2 -143.60584648964613 -796.5465816433467 103.7084 0.1144 4758 +4760 2 -144.4646077233033 -795.8377161669919 104.3498 0.1144 4759 +4761 2 -145.25243284914148 -795.0408782028499 104.8863 0.1144 4760 +4762 2 -146.01709482458426 -794.2097303499909 105.3298 0.1144 4761 +4763 2 -146.78772340109583 -793.3755593081394 105.6832 0.1144 4762 +4764 2 -147.5739094420832 -792.5508336513561 105.9069 0.1144 4763 +4765 2 -148.08944710401613 -791.5396754198568 105.9822 0.1144 4764 +4766 2 -148.40142011227803 -790.4422443549986 105.9178 0.1144 4765 +4767 2 -148.90342382488905 -789.4200674023506 105.7577 0.1144 4766 +4768 2 -149.4611467628502 -788.4254488953479 105.5438 0.1144 4767 +4769 2 -150.02074394350677 -787.4319824362256 105.3128 0.1144 4768 +4770 2 -150.5794040028157 -786.4379399531631 105.0969 0.1144 4769 +4771 2 -151.06840524921208 -785.4063621562798 104.9202 0.1144 4770 +4772 2 -150.64310882292637 -784.3942937347841 104.8186 0.1144 4771 +4773 2 -150.06846271933318 -783.40463544243 104.8211 0.1144 4772 +4774 2 -149.49137496131698 -782.4187584625041 104.9096 0.1144 4773 +4775 2 -149.0584704400651 -781.364451706631 105.1333 0.1144 4774 +4776 2 -148.91958586985567 -780.249066981006 105.5939 0.1144 4775 +4777 2 -148.80778401366882 -779.1463383448705 106.2622 0.1144 4776 +4778 2 -148.70916872379047 -778.1686263655013 107.6956 0.1144 4777 +4779 2 -137.36568002820718 -800.6121647581695 94.6823 0.1144 4751 +4780 2 -138.33823609085513 -801.1992878415231 94.3438 0.1144 4779 +4781 2 -139.2905625125943 -801.8128293205264 93.9621 0.1144 4780 +4782 2 -140.155891213024 -802.532768151409 93.5441 0.1144 4781 +4783 2 -140.9234402506539 -803.3617500359115 93.116 0.1144 4782 +4784 2 -141.60855354850034 -804.2635453725118 92.759 0.1144 4783 +4785 2 -142.22730430949048 -805.2186887522062 92.4622 0.1144 4784 +4786 2 -142.89116324318417 -806.1289002639743 92.0385 0.1144 4785 +4787 2 -143.63327485480843 -806.9597361598601 91.4091 0.1144 4786 +4788 2 -144.65963356124718 -807.3260357718138 90.9048 0.1144 4787 +4789 2 -145.79233115726075 -807.3992183242776 90.6125 0.1144 4788 +4790 2 -146.92247857310616 -807.5071039973664 90.277 0.1144 4789 +4791 2 -148.04803969790493 -807.6268431903725 89.8817 0.1144 4790 +4792 2 -149.173239725296 -807.745069238091 89.4555 0.1144 4791 +4793 2 -150.2962130247966 -807.8646263316018 89.0005 0.1144 4792 +4794 2 -151.41620457455434 -807.9823506216669 88.5167 0.1144 4793 +4795 2 -152.53761236295426 -808.1023540054352 88.048 0.1144 4794 +4796 2 -153.667169034177 -808.2461472128418 87.7643 0.1144 4795 +4797 2 -154.7998536260178 -808.3957366356177 87.6473 0.1144 4796 +4798 2 -155.93350816624343 -808.5460396409962 87.6618 0.1144 4797 +4799 2 -157.06716270646905 -808.6963426463747 87.771 0.1144 4798 +4800 2 -158.19859051880422 -808.8479766975457 87.9421 0.1144 4799 +4801 2 -159.32970959954443 -808.9980124105791 88.1446 0.1144 4800 +4802 2 -160.46077631447187 -809.1481333164622 88.3532 0.1144 4801 +4803 2 -161.59189539521208 -809.2981690294955 88.5629 0.1144 4802 +4804 2 -162.72993671317124 -809.3800357420089 88.7734 0.1144 4803 +4805 2 -163.8700404817913 -809.4215000251737 88.9862 0.1144 4804 +4806 2 -165.0095682264713 -809.4639014296863 89.203 0.1144 4805 +4807 2 -166.14922570483384 -809.5038002017504 89.4264 0.1144 4806 +4808 2 -167.28781632816606 -809.5456255823229 89.6591 0.1144 4807 +4809 2 -168.42689778258847 -809.5864614757348 89.9027 0.1144 4808 +4810 2 -169.56222154156688 -809.6706487212012 90.1824 0.1144 4809 +4811 2 -170.69558276341684 -809.760320348859 90.4935 0.1144 4810 +4812 2 -171.8282304026642 -809.8509619249014 90.8267 0.1144 4811 +4813 2 -172.95936489662358 -809.9419645983515 91.1809 0.1144 4812 +4814 2 -174.09010546613837 -810.0313165678513 91.539 0.1144 4813 +4815 2 -175.22181598403796 -810.1213821199536 91.8896 0.1144 4814 +4816 2 -176.35357886775023 -810.2113624792062 92.2194 0.1144 4815 +4817 2 -177.487877210948 -810.301610130804 92.5282 0.1144 4816 +4818 2 -178.60270472920894 -810.3906886047923 93.1118 0.1144 4817 +4819 2 -126.02524892876193 -806.1702498536619 93.4178 0.1144 4724 +4820 2 -126.77860449910497 -806.8145536520623 92.0237 0.1144 4819 +4821 2 -127.46466722993537 -807.6645807689035 91.2419 0.1144 4820 +4822 2 -128.0874022320017 -808.5456409128219 90.3202 0.1144 4821 +4823 2 -128.80627711948034 -809.3138329370922 89.2623 0.1144 4822 +4824 2 -129.41385791592793 -809.9638459644909 87.5028 0.1144 4823 +4825 2 -124.3169160614533 -805.6156465139018 97.4408 0.1144 4722 +4826 2 -124.46369412018589 -804.4812338502406 97.3532 0.1144 4825 +4827 2 -124.61043935188141 -803.346683627917 97.288 0.1144 4826 +4828 2 -124.69092265278967 -802.2065007749171 97.2698 0.1144 4827 +4829 2 -124.65905872203076 -801.0655766144591 97.356 0.1144 4828 +4830 2 -124.69165984723362 -799.9267155971987 97.55 0.1144 4829 +4831 2 -124.98865382400643 -798.8362758566534 97.8141 0.1144 4830 +4832 2 -125.40004758051751 -797.7758930686454 98.1075 0.1144 4831 +4833 2 -125.82142061425058 -796.7189445238039 98.3979 0.1144 4832 +4834 2 -126.24444435193399 -795.6616020545176 98.6558 0.1144 4833 +4835 2 -126.6675978233001 -794.601756952783 98.8627 0.1144 4834 +4836 2 -127.00522869472961 -793.5107066447505 98.936 0.1144 4835 +4837 2 -127.28726387132559 -792.4029728503926 98.8551 0.1144 4836 +4838 2 -127.56015998540173 -791.2950210279192 98.6544 0.1144 4837 +4839 2 -127.8327036142829 -790.1895522991185 98.378 0.1144 4838 +4840 2 -128.1092513071045 -789.0865447635165 98.0916 0.1144 4839 +4841 2 -128.39204150555287 -787.9819748183968 97.853 0.1144 4840 +4842 2 -128.6779431874267 -786.8767350442746 97.6875 0.1144 4841 +4843 2 -128.96358850351834 -785.7698117391649 97.5948 0.1144 4842 +4844 2 -129.24967228488765 -784.6619841397446 97.5652 0.1144 4843 +4845 2 -129.53487131072183 -783.5534953235343 97.5836 0.1144 4844 +4846 2 -129.35601657327507 -782.448521444706 97.7094 0.1144 4845 +4847 2 -128.91005962904234 -781.4022728681762 97.9493 0.1144 4846 +4848 2 -128.4282303865753 -780.3729449364151 98.2694 0.1144 4847 +4849 2 -128.18919366324832 -779.2631410911789 98.5376 0.1144 4848 +4850 2 -128.13767680805728 -778.1236355784098 98.6863 0.1144 4849 +4851 2 -128.11012877441692 -776.9800821534039 98.7249 0.1144 4850 +4852 2 -127.79437103324942 -775.8835709911749 98.8299 0.1144 4851 +4853 2 -127.3786199055644 -774.8210270580462 99.0497 0.1144 4852 +4854 2 -126.97711330291699 -773.8008097537279 99.843 0.1144 4853 +4855 2 -78.30676433662225 -1025.2594435636433 83.8776 0.1144 4507 +4856 2 -79.37874015320921 -1025.6149297921427 83.9502 0.1144 4855 +4857 2 -80.49303439484174 -1025.8513454495442 84.1299 0.1144 4856 +4858 2 -81.61946486195635 -1026.0307788989235 84.3251 0.1144 4857 +4859 2 -82.7411652761954 -1026.2354762870254 84.5454 0.1144 4858 +4860 2 -83.79735879918456 -1026.6536854715205 84.7935 0.1144 4859 +4861 2 -84.9078834244998 -1026.6689863397446 85.2247 0.1144 4860 +4862 2 -85.67098160535187 -1025.8797212344853 85.8306 0.1144 4861 +4863 2 -86.50721117994951 -1025.1288347593318 86.3324 0.1144 4862 +4864 2 -87.53524330200176 -1024.6622901783658 86.781 0.1144 4863 +4865 2 -88.59232508485002 -1024.3384947732557 87.5028 0.1144 4864 +4866 2 -56.51259988218473 -1042.0984255774983 79.0877 0.1144 4482 +4867 2 -56.641452116822904 -1043.2345238794196 79.035 0.1144 4866 +4868 2 -56.74487475043537 -1044.3749459981357 79.0132 0.1144 4867 +4869 2 -56.84686160662986 -1045.5133117746607 78.9846 0.1144 4868 +4870 2 -56.92795829766223 -1046.6549180757575 78.9443 0.1144 4869 +4871 2 -56.916520140596276 -1047.7986881438055 78.8774 0.1144 4870 +4872 2 -56.89995869874676 -1048.9420088200131 78.7909 0.1144 4871 +4873 2 -56.88496276799782 -1050.0848832059633 78.6906 0.1144 4872 +4874 2 -57.0138673684487 -1051.2208963150351 78.5837 0.1144 4873 +4875 2 -57.48530627951993 -1052.2627358819204 78.4904 0.1144 4874 +4876 2 -57.91459755969299 -1053.3229209444294 78.4115 0.1144 4875 +4877 2 -58.21440632098654 -1054.4257098483688 78.344 0.1144 4876 +4878 2 -58.670970932193995 -1055.4743703538675 78.2474 0.1144 4877 +4879 2 -59.12534474413127 -1056.5178106679373 77.9671 0.1144 4878 +4880 2 -51.302057346268526 -1028.091213733544 71.3857 0.1144 4469 +4881 2 -50.65063647394902 -1027.1630585702733 71.5876 0.1144 4880 +4882 2 -50.33322492724804 -1026.0736301283732 71.759 0.1144 4881 +4883 2 -50.377979691750625 -1024.9369575013366 71.9068 0.1144 4882 +4884 2 -50.67502913591923 -1023.8397437720571 72.0426 0.1144 4883 +4885 2 -50.71239244849801 -1022.6998190013494 72.1888 0.1144 4884 +4886 2 -50.912988866014274 -1021.5782975850226 72.359 0.1144 4885 +4887 2 -50.92687418813273 -1020.441431239391 72.6062 0.1144 4886 +4888 2 -50.82977856046023 -1019.3235617035833 72.9778 0.1144 4887 +4889 2 -51.08667332884974 -1018.22197281567 73.393 0.1144 4888 +4890 2 -51.31372647968223 -1017.1315036337593 73.9603 0.1144 4889 +4891 2 -51.428606578666916 -1016.0096464535187 74.398 0.1144 4890 +4892 2 -51.532485086232185 -1014.8837266403589 74.6995 0.1144 4891 +4893 2 -51.48564522556731 -1013.7431050083297 74.881 0.1144 4892 +4894 2 -51.428067964244974 -1012.60257407978 74.9546 0.1144 4893 +4895 2 -51.29346405507036 -1011.4670487002154 74.9302 0.1144 4894 +4896 2 -51.17788468057512 -1010.3311269871598 74.8577 0.1144 4895 +4897 2 -51.227997195169365 -1009.1922307338158 74.8056 0.1144 4896 +4898 2 -51.49001834992552 -1008.0844024418589 74.7816 0.1144 4897 +4899 2 -51.890636368112496 -1007.013287763823 74.797 0.1144 4898 +4900 2 -52.299582959570984 -1005.9460012533983 74.8689 0.1144 4899 +4901 2 -52.6914675534787 -1004.8736266942736 74.9675 0.1144 4900 +4902 2 -52.696253867253944 -1003.7888013713758 75.0534 0.1144 4901 +4903 2 -52.46879475928651 -1002.6821230377112 75.1178 0.1144 4902 +4904 2 -52.68680024361521 -1001.5781106017292 75.1545 0.1144 4903 +4905 2 -53.1141070513801 -1000.5180013092327 75.1848 0.1144 4904 +4906 2 -53.4012100453638 -999.4174908954493 75.2111 0.1144 4905 +4907 2 -53.54986234679194 -998.2842302796683 75.2195 0.1144 4906 +4908 2 -53.55288363615338 -997.1432684740804 75.1229 0.1144 4907 +4909 2 -53.27583307955135 -996.0517686852181 74.7953 0.1144 4908 +4910 2 -53.25740938774803 -994.9434037012978 74.1989 0.1144 4909 +4911 2 -53.37313280301811 -993.8180739402243 73.787 0.1144 4910 +4912 2 -52.92379549029971 -994.245458239654 71.64 0.1144 4911 +4913 2 -52.11148958089444 -994.8285229097766 70.5438 0.1144 4912 +4914 2 -51.08176531564209 -995.2913276175644 70.1943 0.1144 4913 +4915 2 -50.1166926154919 -995.8891851118093 69.9149 0.1144 4914 +4916 2 -49.46801334470581 -996.8091142251939 69.6679 0.1144 4915 +4917 2 -49.18972114287135 -997.9084670804673 69.4677 0.1144 4916 +4918 2 -48.28986782799862 -998.535614193761 69.265 0.1144 4917 +4919 2 -47.15435035042529 -998.4822963906788 69.085 0.1144 4918 +4920 2 -46.01469287206271 -998.4423976186146 68.8584 0.1144 4919 +4921 2 -45.45298739185043 -999.3365552409047 68.2576 0.1144 4920 +4922 2 -44.852054454617075 -1000.2966318029288 67.8748 0.1144 4921 +4923 2 -44.24644142127454 -1001.2645132800972 67.6917 0.1144 4922 +4924 2 -43.62831675280762 -1002.2220044258696 67.4607 0.1144 4923 +4925 2 -42.93277831305039 -1003.1198211381334 67.1602 0.1144 4924 +4926 2 -42.15114263448962 -1003.9392445122209 66.7696 0.1144 4925 +4927 2 -41.37655203112769 -1004.7254364717214 66.2673 0.1144 4926 +4928 2 -41.19727844933283 -1005.7553608538343 65.6617 0.1144 4927 +4929 2 -40.978529953014316 -1006.5111174385613 65.0877 0.1144 4928 +4930 2 -39.9686259910068 -1007.0048860863322 64.5733 0.1144 4929 +4931 2 -39.01370984948093 -1007.5688423369878 63.9414 0.1144 4930 +4932 2 -38.13451705255528 -1008.2301696053157 63.17 0.1144 4931 +4933 2 -37.202382448616305 -1008.7744407970386 62.3098 0.1144 4932 +4934 2 -36.21026987074447 -1008.8964841206109 61.1817 0.1144 4933 +4935 2 -35.41179312352523 -1008.373519060449 59.7881 0.1144 4934 +4936 2 -34.55689649551488 -1007.9379501503826 58.3125 0.1144 4935 +4937 2 -33.766490452059344 -1008.277999171068 56.6255 0.1144 4936 +4938 2 -33.57164428920066 -1007.3256507302024 55.162 0.1144 4937 +4939 2 -33.01450096849308 -1006.9671081662145 53.3884 0.1144 4938 +4940 2 -32.07935077577889 -1007.0247432862942 51.872 0.1144 4939 +4941 2 -31.15785886211387 -1006.686631894812 50.4546 0.1144 4940 +4942 2 -30.305749572714888 -1006.3078278571885 48.8877 0.1144 4941 +4943 2 -29.45097507816962 -1006.3504257852481 47.1111 0.1144 4942 +4944 2 -28.76996425977731 -1006.912190242323 45.4154 0.1144 4943 +4945 2 -28.06488842341048 -1007.672560753963 44.2386 0.1144 4944 +4946 2 -27.16475920397997 -1008.2982470877815 43.4526 0.1144 4945 +4947 2 -26.510830708847266 -1009.1894780192766 42.7795 0.1144 4946 +4948 2 -25.720690560685767 -1009.9942834592827 42.3184 0.1144 4947 +4949 2 -24.682156195820767 -1010.4341830989671 41.9482 0.1144 4948 +4950 2 -23.617920119491913 -1010.8461943534738 41.743 0.1144 4949 +4951 2 -22.79481895067181 -1011.6347304629113 41.5414 0.1144 4950 +4952 2 -21.928023154655364 -1012.3763365227626 41.3501 0.1144 4951 +4953 2 -21.161351786901008 -1013.2237389855072 41.1874 0.1144 4952 +4954 2 -20.62714207548376 -1014.2328104568252 41.0228 0.1144 4953 +4955 2 -20.18478817310921 -1015.2822621255808 40.7518 0.1144 4954 +4956 2 -19.747913142296284 -1016.32299129662 40.3575 0.1144 4955 +4957 2 -19.004094476832478 -1017.1616688526019 39.8653 0.1144 4956 +4958 2 -18.728586920474186 -1018.2236455691026 39.1924 0.1144 4957 +4959 2 -19.04590266151405 -1019.1908217684004 38.0842 0.1144 4958 +4960 2 -19.810939554868895 -1019.7725816087177 36.6064 0.1144 4959 +4961 2 -20.718982712061802 -1020.099726644864 35.1389 0.1144 4960 +4962 2 -20.899694059895012 -1019.6092288683509 33.6031 0.1144 4961 +4963 2 -21.49823659555551 -1019.196907485198 31.8718 0.1144 4962 +4964 2 -22.48322570638524 -1019.045013931856 30.5015 0.1144 4963 +4965 2 -23.43399662628778 -1019.1957060612713 29.3541 0.1144 4964 +4966 2 -24.32964887906337 -1019.8227722795433 28.5362 0.1144 4965 +4967 2 -25.17462199902124 -1020.5408807160267 27.8781 0.1144 4966 +4968 2 -25.89297902309079 -1021.3973768841266 27.3708 0.1144 4967 +4969 2 -26.436427413929295 -1022.3854658712604 26.957 0.1144 4968 +4970 2 -26.811720644869865 -1023.4527213424623 26.6069 0.1144 4969 +4971 2 -27.01222607996067 -1024.568303580802 26.2867 0.1144 4970 +4972 2 -27.100943177595383 -1025.6998039725772 25.9403 0.1144 4971 +4973 2 -27.164090706495358 -1026.818287177455 25.4069 0.1144 4972 +4974 2 -27.619416461430376 -1026.7986083336666 24.4015 0.1144 4973 +4975 2 -28.559365089599282 -1027.2420865590661 23.5919 0.1144 4974 +4976 2 -28.676576037717297 -1028.2770072920894 22.4367 0.1144 4975 +4977 2 -33.47448449863714 -1007.4552642908264 55.2796 0.1144 4938 +4978 2 -33.025418183394436 -1008.4589198515216 55.9348 0.1144 4977 +4979 2 -32.82219560291338 -1009.5694365748458 56.2811 0.1144 4978 +4980 2 -32.7933343508889 -1010.7066054489061 56.5222 0.1144 4979 +4981 2 -32.98831947516834 -1011.826776387339 56.6955 0.1144 4980 +4982 2 -33.27016745522991 -1012.9347238121454 56.7862 0.1144 4981 +4983 2 -33.55933262092847 -1014.0416520243374 56.8025 0.1144 4982 +4984 2 -33.813833003668776 -1015.1568526498686 56.7829 0.1144 4983 +4985 2 -34.042137836967925 -1016.277432233429 56.7647 0.1144 4984 +4986 2 -34.33815435927039 -1017.3819984734182 56.7308 0.1144 4985 +4987 2 -34.73295985439742 -1018.4545569198524 56.6499 0.1144 4986 +4988 2 -35.15877855373731 -1019.5138986660762 56.5183 0.1144 4987 +4989 2 -35.58713271256266 -1020.5735077046452 56.3466 0.1144 4988 +4990 2 -36.01407063274564 -1021.6308376495109 56.147 0.1144 4989 +4991 2 -36.44104137996575 -1022.6883051530392 55.9381 0.1144 4990 +4992 2 -36.86845841744332 -1023.7473381676681 55.7371 0.1144 4991 +4993 2 -37.2964186518239 -1024.8052965022866 55.5534 0.1144 4992 +4994 2 -37.465062055787 -1025.9268829868251 55.4394 0.1144 4993 +4995 2 -37.38831862805719 -1027.065373696625 55.4288 0.1144 4994 +4996 2 -37.219834404284654 -1028.1959519895086 55.4736 0.1144 4995 +4997 2 -36.94328360987993 -1029.3056483209948 55.4504 0.1144 4996 +4998 2 -36.63621895986921 -1030.4059790443293 55.3535 0.1144 4997 +4999 2 -36.44952069066562 -1031.5333435312086 55.2726 0.1144 4998 +5000 2 -36.610055958519155 -1032.6593366163452 55.37 0.1144 4999 +5001 2 -36.8158113104931 -1033.7795544099613 55.6399 0.1144 5000 +5002 2 -37.02068500851516 -1034.8924221909033 56.047 0.1144 5001 +5003 2 -37.22408148986946 -1035.9990998320313 56.5505 0.1144 5002 +5004 2 -37.6648799132351 -1037.027387627329 57.1082 0.1144 5003 +5005 2 -37.736044182228625 -1038.1547894575647 57.5548 0.1144 5004 +5006 2 -37.80507552839413 -1039.2875709383661 57.9004 0.1144 5005 +5007 2 -37.87534101370659 -1040.4252193381687 58.163 0.1144 5006 +5008 2 -37.94494528222907 -1041.5637524935064 58.3624 0.1144 5007 +5009 2 -37.538586516068676 -1042.6312211034265 58.5371 0.1144 5008 +5010 2 -37.11890872711888 -1043.6852207255624 58.896 0.1144 5009 +5011 2 -45.562489225342574 -998.1644398846099 68.6941 0.1144 4920 +5012 2 -44.5881917552648 -997.5669733250436 68.5726 0.1144 5011 +5013 2 -43.530182558559034 -997.1341493080505 68.4922 0.1144 5012 +5014 2 -42.442922080471135 -996.7773672698421 68.4491 0.1144 5013 +5015 2 -41.30850941681007 -996.6305892111094 68.4331 0.1144 5014 +5016 2 -40.58935662417494 -995.7427327695351 68.4337 0.1144 5015 +5017 2 -40.17441598573822 -994.6765786969106 68.4345 0.1144 5016 +5018 2 -39.85887317110314 -993.577617268046 68.4354 0.1144 5017 +5019 2 -39.55870331240192 -992.4733152188188 68.4365 0.1144 5018 +5020 2 -39.31463159872419 -991.3564255516707 68.439 0.1144 5019 +5021 2 -39.273810704940956 -990.212695537799 68.4435 0.1144 5020 +5022 2 -39.82039440383065 -989.8236053681621 68.4471 0.1144 5021 +5023 2 -40.52056839886427 -988.9205387390153 68.4474 0.1144 5022 +5024 2 -41.12738584589977 -987.9506978263016 68.4412 0.1144 5023 +5025 2 -41.93717891849349 -987.1444737386068 68.5076 0.1144 5024 +5026 2 -42.90959052677613 -987.7690698673789 69.4534 0.1144 5025 +5027 2 -43.942601076505525 -988.0764247341823 69.9104 0.1144 5026 +5028 2 -44.973713855544815 -987.72727640338 70.2069 0.1144 5027 +5029 2 -45.68060267249311 -986.8873797130226 70.6182 0.1144 5028 +5030 2 -45.59313342839965 -985.8762573211542 71.1096 0.1144 5029 +5031 2 -44.78898681382202 -985.2838391645593 72.0188 0.1144 5030 +5032 2 -44.22492134488482 -984.3839074578433 72.5455 0.1144 5031 +5033 2 -43.600148515429964 -983.4385612558755 72.9464 0.1144 5032 +5034 2 -43.5716134036756 -982.3118908305082 73.2113 0.1144 5033 +5035 2 -44.10738552461035 -981.3090618648171 73.3446 0.1144 5034 +5036 2 -43.895875396516914 -980.1961057894422 73.3849 0.1144 5035 +5037 2 -43.39221886753998 -979.1694423583125 73.3527 0.1144 5036 +5038 2 -42.477736491216575 -978.4878404045345 73.313 0.1144 5037 +5039 2 -41.86089590154211 -977.5272978354986 73.1965 0.1144 5038 +5040 2 -41.224269552169744 -976.5773653424841 73.0954 0.1144 5039 +5041 2 -40.840650849540765 -975.4995929077869 73.0178 0.1144 5040 +5042 2 -40.36849835586693 -974.4587232892862 72.919 0.1144 5041 +5043 2 -44.79945071896819 -985.2996615123336 73.3916 0.1144 5031 +5044 2 -45.446283583731 -986.19823373818 73.6333 0.1144 5043 +5045 2 -45.960189783858226 -987.2191071571066 73.7386 0.1144 5044 +5046 2 -46.171429518023444 -988.3412874878511 73.8357 0.1144 5045 +5047 2 -46.283269019340366 -989.4789013441068 73.9108 0.1144 5046 +5048 2 -46.26764469883861 -990.6227980442545 73.9348 0.1144 5047 +5049 2 -46.21771118215662 -991.7657952681847 73.9119 0.1144 5048 +5050 2 -45.99712028157623 -992.8869994354001 74.0407 0.1144 5049 +5051 2 -41.94161644649719 -986.0057910267221 68.4494 0.1144 5025 +5052 2 -42.02050140926778 -984.8659169053171 68.3046 0.1144 5051 +5053 2 -41.992292158837415 -983.7232482358463 68.1864 0.1144 5052 +5054 2 -41.991427404145384 -982.5800151615351 68.1027 0.1144 5053 +5055 2 -42.07347621615415 -981.4393860182778 68.0532 0.1144 5054 +5056 2 -42.57993338454622 -980.4145469740448 68.0509 0.1144 5055 +5057 2 -43.17311997561427 -979.4363275312933 68.0918 0.1144 5056 +5058 2 -43.68087536276178 -978.4135776562882 68.222 0.1144 5057 +5059 2 -43.696808414858424 -977.2712792942782 68.3609 0.1144 5058 +5060 2 -43.64239500277435 -976.129993343876 68.4902 0.1144 5059 +5061 2 -43.8204974063612 -975.001336148871 68.6182 0.1144 5060 +5062 2 -43.98286885818965 -973.8698176330564 68.7529 0.1144 5061 +5063 2 -44.04082221654829 -972.7290502386 68.9018 0.1144 5062 +5064 2 -44.39835927660911 -971.6449536097505 69.106 0.1144 5063 +5065 2 -44.83812535368551 -970.5953198414994 69.3795 0.1144 5064 +5066 2 -45.28686311446904 -969.5135215136919 69.988 0.1144 5065 +5067 2 -45.53271726123572 -968.421110025965 70.4721 0.1144 5066 +5068 2 -45.58767174012232 -967.2961064103041 70.9402 0.1144 5067 +5069 2 -45.528892474153565 -966.1749087480285 71.456 0.1144 5068 +5070 2 -45.082599766007064 -965.2143764900303 72.0712 0.1144 5069 +5071 2 -44.07833804746991 -964.8602507486886 72.6009 0.1144 5070 +5072 2 -42.96223392683896 -964.6966724741208 73.0688 0.1144 5071 +5073 2 -41.84968619481782 -964.582115134877 73.6406 0.1144 5072 +5074 2 -40.74741415997744 -964.5249346206365 74.3725 0.1144 5073 +5075 2 -39.648680075955724 -964.3921053595193 75.0803 0.1144 5074 +5076 2 -39.17236634389204 -963.5394216440377 75.9808 0.1144 5075 +5077 2 -39.400582469167745 -962.4428592289586 76.5461 0.1144 5076 +5078 2 -39.57025397690404 -961.3279180827708 77.0137 0.1144 5077 +5079 2 -39.68103620688581 -960.1995511045584 77.3951 0.1144 5078 +5080 2 -39.82500841220471 -959.0740954039217 77.7126 0.1144 5079 +5081 2 -40.017226299683216 -957.9662048435623 78.0352 0.1144 5080 +5082 2 -39.812088410899094 -956.8491837262216 78.3504 0.1144 5081 +5083 2 -39.786857808628554 -955.7150366560808 78.6246 0.1144 5082 +5084 2 -39.75524544324389 -954.757028942983 78.939 0.1144 5083 +5085 2 -38.64486697111883 -954.5297109088518 79.2414 0.1144 5084 +5086 2 -37.57382586683323 -954.1574268735635 79.4618 0.1144 5085 +5087 2 -36.45582629556924 -953.9642773753669 79.616 0.1144 5086 +5088 2 -35.45963065836651 -953.4352823447492 79.7384 0.1144 5087 +5089 2 -34.70479007603893 -952.5791325533742 79.8756 0.1144 5088 +5090 2 -34.13165952678011 -951.6064869943414 79.954 0.1144 5089 +5091 2 -33.9867145504393 -950.4900768529357 79.9702 0.1144 5090 +5092 2 -34.08118670313951 -949.3664744711457 79.9495 0.1144 5091 +5093 2 -33.83546428551139 -948.2499787284422 79.9414 0.1144 5092 +5094 2 -33.54010897999882 -947.1445277329179 79.9557 0.1144 5093 +5095 2 -33.15613158900862 -946.0826159836618 80.0078 0.1144 5094 +5096 2 -32.423065927378275 -945.2238868845051 80.1284 0.1144 5095 +5097 2 -31.499449999164682 -944.5527519374563 80.3177 0.1144 5096 +5098 2 -30.576013068863432 -943.8857179609935 80.5451 0.1144 5097 +5099 2 -29.611923830686095 -943.278327591601 80.7825 0.1144 5098 +5100 2 -28.585469318586377 -942.7897757370451 81.0121 0.1144 5099 +5101 2 -27.500923297896207 -942.4373619617679 81.195 0.1144 5100 +5102 2 -26.40478494116374 -942.1167930878892 81.3302 0.1144 5101 +5103 2 -25.383365419414645 -941.6353270552454 81.4335 0.1144 5102 +5104 2 -24.442234307689915 -940.9949787667774 81.5228 0.1144 5103 +5105 2 -23.432407814519706 -940.4576052061218 81.6175 0.1144 5104 +5106 2 -22.560392727252406 -939.755037104385 81.7284 0.1144 5105 +5107 2 -21.769668227590984 -938.9440895748646 81.8994 0.1144 5106 +5108 2 -20.7811453628033 -938.4049034420756 82.1764 0.1144 5107 +5109 2 -19.679853587385338 -938.1778886289097 82.5037 0.1144 5108 +5110 2 -18.55446355850779 -938.2501721187464 82.8344 0.1144 5109 +5111 2 -17.42941680477216 -938.3656279627253 83.2048 0.1144 5110 +5112 2 -16.304095939999712 -938.3306679669028 83.6735 0.1144 5111 +5113 2 -15.187003356181634 -938.2320979451996 84.2299 0.1144 5112 +5114 2 -14.075557715274442 -938.1331253868391 84.8453 0.1144 5113 +5115 2 -12.968265410766008 -938.0338886377164 85.4997 0.1144 5114 +5116 2 -11.858370560276796 -937.9694402020685 86.161 0.1144 5115 +5117 2 -10.746749638565774 -938.0260067682929 86.7787 0.1144 5116 +5118 2 -9.638882304427511 -938.1963922722224 87.3253 0.1144 5117 +5119 2 -8.530873617506984 -938.3975620256862 87.8116 0.1144 5118 +5120 2 -7.4188491528502425 -938.598963142875 88.2552 0.1144 5119 +5121 2 -6.306739495343749 -938.8003118942512 88.6855 0.1144 5120 +5122 2 -5.196771372877947 -939.0002772340221 89.1526 0.1144 5121 +5123 2 -4.076634362466564 -939.0705074832509 89.6448 0.1144 5122 +5124 2 -2.9583849126752284 -938.9390640427855 90.0928 0.1144 5123 +5125 2 -1.8305963674494308 -938.8447185221848 90.4599 0.1144 5124 +5126 2 -0.7047826709881804 -938.6925443756938 90.7402 0.1144 5125 +5127 2 0.3851217923302954 -938.3664168533372 90.9432 0.1144 5126 +5128 2 1.3607510007371104 -937.7907861924934 91.0958 0.1144 5127 +5129 2 2.1700154071537554 -936.9926231010721 91.2257 0.1144 5128 +5130 2 2.8192064499997116 -936.0564480961245 91.3811 0.1144 5129 +5131 2 3.3842672008156285 -935.0685733429866 91.6342 0.1144 5130 +5132 2 3.996251798051702 -934.1110156252767 91.943 0.1144 5131 +5133 2 4.636345217627621 -933.1709248508216 92.2536 0.1144 5132 +5134 2 5.094781662484195 -932.1384861281716 92.5893 0.1144 5133 +5135 2 5.404534464916139 -931.0497743704572 92.9611 0.1144 5134 +5136 2 5.585836367415368 -929.9378967692122 93.4198 0.1144 5135 +5137 2 5.664141925716734 -928.8223039180613 93.9966 0.1144 5136 +5138 2 5.715885326539791 -927.7135302890138 94.6806 0.1144 5137 +5139 2 5.7712865092743755 -926.6131899648633 95.4313 0.1144 5138 +5140 2 5.911604447855325 -925.5131227277761 96.1139 0.1144 5139 +5141 2 6.408155332055998 -924.5579687352705 96.9545 0.1144 5140 +5142 2 6.694149137288122 -923.5791741738998 98.0857 0.1144 5141 +5143 2 6.500253827292198 -922.509993899689 98.9624 0.1144 5142 +5144 2 6.276280025384722 -921.4443947320565 99.8035 0.1144 5143 +5145 2 5.924277996818063 -920.3998572162702 100.5528 0.1144 5144 +5146 2 5.599983970443674 -919.3369971293077 101.19 0.1144 5145 +5147 2 5.418054091782153 -918.2240739876441 101.6571 0.1144 5146 +5148 2 5.312127854238753 -917.0927221581057 101.9701 0.1144 5147 +5149 2 5.307020497232429 -915.9571509296464 102.1594 0.1144 5148 +5150 2 5.529711214657681 -914.8360312507662 102.2132 0.1144 5149 +5151 2 5.684003976884583 -913.7084757561122 102.181 0.1144 5150 +5152 2 5.646064640365722 -912.5676138640567 102.1261 0.1144 5151 +5153 2 5.810210047715032 -911.4408102896721 102.0569 0.1144 5152 +5154 2 6.161484500338759 -910.3520478826549 101.9847 0.1144 5153 +5155 2 6.514985680852988 -909.2646165214301 101.9396 0.1144 5154 +5156 2 6.893298999203068 -908.1847056532753 101.9539 0.1144 5155 +5157 2 7.310957196620649 -907.1208721136038 102.065 0.1144 5156 +5158 2 7.642719385057887 -906.0374126818191 102.3313 0.1144 5157 +5159 2 7.996289037140684 -905.0331621796404 102.8471 0.1144 5158 +5160 2 8.883260231449754 -904.407441035307 103.6367 0.1144 5159 +5161 2 9.779914975558626 -903.8562908562567 104.664 0.1144 5160 +5162 2 10.309110637594728 -903.0153545439939 105.9058 0.1144 5161 +5163 2 10.682204172963594 -902.0340826836689 107.0101 0.1144 5162 +5164 2 11.080006831052799 -901.018724473372 107.8426 0.1144 5163 +5165 2 11.505520592917435 -899.9917324877831 108.5059 0.1144 5164 +5166 2 11.973539981504757 -898.9748840566458 109.0807 0.1144 5165 +5167 2 12.482554953109997 -897.9745068784366 109.6197 0.1144 5166 +5168 2 13.015318309103748 -896.9864123806733 110.1626 0.1144 5167 +5169 2 13.549991836413199 -896.0037170722513 110.7411 0.1144 5168 +5170 2 14.319389090708142 -895.2367499770749 111.4464 0.1144 5169 +5171 2 15.375097683999456 -895.1236766555054 112.2173 0.1144 5170 +5172 2 16.421515639940537 -895.4190473742372 113.0307 0.1144 5171 +5173 2 17.266416370415186 -896.098870701024 113.8449 0.1144 5172 +5174 2 17.981897951397144 -896.9307858873715 114.6258 0.1144 5173 +5175 2 18.83099104847375 -897.6241134380261 115.4054 0.1144 5174 +5176 2 19.88893907205471 -897.8815257908789 116.1838 0.1144 5175 +5177 2 20.989334863601016 -897.9437009623474 116.9244 0.1144 5176 +5178 2 21.605794533003518 -897.0612159675741 117.6563 0.1144 5177 +5179 2 21.891005591527886 -895.9742079721593 118.1804 0.1144 5178 +5180 2 22.17571489239893 -894.8819914991113 118.6349 0.1144 5179 +5181 2 22.460688384032125 -893.7856216896646 119.0378 0.1144 5180 +5182 2 22.7113612916977 -892.6861551174749 119.4113 0.1144 5181 +5183 2 22.519493888815674 -891.6989512886171 119.8168 0.1144 5182 +5184 2 21.445281033300688 -891.8825585897962 120.2975 0.1144 5183 +5185 2 20.468212945892788 -892.4535567969467 120.706 0.1144 5184 +5186 2 19.488342106654272 -893.0222868369569 121.1025 0.1144 5185 +5187 2 18.455735099870594 -893.4744762547248 121.399 0.1144 5186 +5188 2 17.472632632361837 -893.9833330404496 121.6152 0.1144 5187 +5189 2 16.61836168328412 -894.73004585376 121.9756 0.1144 5188 +5190 2 15.768497334804266 -895.4686505309608 122.4703 0.1144 5189 +5191 2 14.90385897877809 -896.1329960760563 123.2711 0.1144 5190 +5192 2 14.044510593811594 -896.7404470150263 124.3701 0.1144 5191 +5193 2 13.535105012129065 -896.8468577915045 124.9998 0.1144 5192 +5194 2 12.435102843253844 -897.075779674403 125.4912 0.1144 5193 +5195 2 11.320050478185777 -897.3086703851583 125.76 0.1144 5194 +5196 2 10.201749071029667 -897.540858439874 125.8785 0.1144 5195 +5197 2 9.082149445118148 -897.7751356638175 125.8925 0.1144 5196 +5198 2 7.961973795266488 -898.0084757664135 125.8704 0.1144 5197 +5199 2 6.841798145414856 -898.2418158690093 125.8734 0.1144 5198 +5200 2 5.725271665262198 -898.4875855154628 125.9527 0.1144 5199 +5201 2 4.611388477803473 -898.7399470511549 126.1252 0.1144 5200 +5202 2 3.5011927977104165 -898.9939155371974 126.3716 0.1144 5201 +5203 2 2.3908673839347045 -899.2453813907914 126.6706 0.1144 5202 +5204 2 1.2836206265474743 -899.4976546320506 127.0021 0.1144 5203 +5205 2 0.1773438175450508 -899.7492142907072 127.3488 0.1144 5204 +5206 2 -0.9299029398422363 -900.0014875319664 127.6929 0.1144 5205 +5207 2 -2.0376928941325048 -900.2526860932153 128.0272 0.1144 5206 +5208 2 -3.145876772867524 -900.5055353584146 128.345 0.1144 5207 +5209 2 -4.255711355552933 -900.7579906991691 128.6407 0.1144 5208 +5210 2 -5.364832355635713 -901.0114159883085 128.9086 0.1144 5209 +5211 2 -6.4772547636193 -901.2640534285584 129.1438 0.1144 5210 +5212 2 -7.608415283609247 -901.4182229392148 129.299 0.1144 5211 +5213 2 -8.751594607034633 -901.4655686305988 129.3446 0.1144 5212 +5214 2 -9.894051735644723 -901.5098880314068 129.3099 0.1144 5213 +5215 2 -11.037413158565556 -901.5546458974926 129.2281 0.1144 5214 +5216 2 -12.179922652988324 -901.5988801054509 129.1346 0.1144 5215 +5217 2 -13.322294588748662 -901.6431471404462 129.0671 0.1144 5216 +5218 2 -14.465656011669438 -901.687905006532 129.0626 0.1144 5217 +5219 2 -15.608113140279528 -901.73222440734 129.1486 0.1144 5218 +5220 2 -15.747006423669063 -901.8228806030978 128.7423 0.1144 5219 +5221 2 -16.49051104771459 -902.293392201279 126.9817 0.1144 5220 +5222 2 -17.334951281807037 -902.8420274362447 125.6998 0.1144 5221 +5223 2 -18.169416648322596 -903.5228058966018 124.7935 0.1144 5222 +5224 2 -18.150357481106965 -904.0911863573365 123.3669 0.1144 5223 +5225 2 -17.975866809730718 -903.7502264541181 121.2938 0.1144 5224 +5226 2 -18.288843303636128 -902.8455644817424 119.803 0.1144 5225 +5227 2 -18.54849288537352 -902.093350665927 117.7921 0.1144 5226 +5228 2 -16.381377498256967 -900.7625728035763 129.7856 0.1144 5219 +5229 2 -17.213725846894107 -900.0441627211575 130.5178 0.1144 5228 +5230 2 -18.149138620534785 -899.555666914717 131.5748 0.1144 5229 +5231 2 -19.119489281882153 -899.3597960286143 132.9404 0.1144 5230 +5232 2 -20.12475759962399 -899.4808354409745 134.2289 0.1144 5231 +5233 2 -21.086585969104817 -899.3120058296445 135.5808 0.1144 5232 +5234 2 -21.801062951480702 -898.8313806101074 137.4243 0.1144 5233 +5235 2 14.048649209527724 -896.7057407928182 124.9562 0.1144 5192 +5236 2 14.139153652476324 -896.0337438018975 126.6404 0.1144 5235 +5237 2 14.327714864170247 -894.933485255262 127.1911 0.1144 5236 +5238 2 14.843163650950657 -893.9829137596834 127.6192 0.1144 5237 +5239 2 15.80613166768623 -893.4917152267617 128.2568 0.1144 5238 +5240 2 16.866001090919525 -893.4659980011112 129.1758 0.1144 5239 +5241 2 17.834614452708507 -893.8293826531863 130.319 0.1144 5240 +5242 2 18.762979049567264 -894.2779582491557 131.5322 0.1144 5241 +5243 2 19.549425865981846 -894.9654229063938 132.6623 0.1144 5242 +5244 2 19.268138496641143 -896.0152744129647 133.4962 0.1144 5243 +5245 2 18.875792779976422 -896.8405256223639 135.1806 0.1144 5244 +5246 2 -43.961849025506524 -970.725413833187 69.3591 0.1144 5065 +5247 2 -42.82782548588216 -970.7615193947775 69.0259 0.1144 5246 +5248 2 -41.69219609689199 -970.6690450152893 68.8142 0.1144 5247 +5249 2 -40.72079208212412 -970.0800476892401 68.6969 0.1144 5248 +5250 2 -39.763571330279945 -969.4526987654036 68.6526 0.1144 5249 +5251 2 -38.65918038307257 -969.1740095375413 68.7786 0.1144 5250 +5252 2 -37.57123365647453 -969.0236305493661 69.5534 0.1144 5251 +5253 2 -38.303325687481504 -989.3731856862269 67.6558 0.1144 5021 +5254 2 -37.81762993973658 -988.3413637342301 67.4358 0.1144 5253 +5255 2 -37.348679632967645 -987.3105616873843 67.2064 0.1144 5254 +5256 2 -36.52697026947419 -986.5677824658472 67.006 0.1144 5255 +5257 2 -35.395980229879996 -986.4393067469787 66.848 0.1144 5256 +5258 2 -34.25517959993857 -986.4820456370575 66.7932 0.1144 5257 +5259 2 -33.115986926635856 -986.3779905406265 66.8136 0.1144 5258 +5260 2 -31.979203773255534 -986.2459539464918 66.8623 0.1144 5259 +5261 2 -30.869368498033424 -986.0175612323503 66.9455 0.1144 5260 +5262 2 -29.856107761696762 -985.4901669489168 67.062 0.1144 5261 +5263 2 -28.840405370937077 -984.9665539779114 67.1989 0.1144 5262 +5264 2 -27.80508459929223 -984.4859336705994 67.3453 0.1144 5263 +5265 2 -26.734992235453916 -984.0859440421651 67.5004 0.1144 5264 +5266 2 -25.65878950871806 -983.7023880215291 67.6584 0.1144 5265 +5267 2 -24.581958392229268 -983.3198543150905 67.8096 0.1144 5266 +5268 2 -23.507673661788942 -982.9333689105243 67.9465 0.1144 5267 +5269 2 -22.446177856103958 -982.5106093636031 68.0607 0.1144 5268 +5270 2 -21.474470620370823 -981.9306987342609 68.1369 0.1144 5269 +5271 2 -20.84210951881414 -981.0196586268902 68.1576 0.1144 5270 +5272 2 -20.64717986193054 -979.8927136997233 68.1265 0.1144 5271 +5273 2 -20.503712794794012 -978.7584310715184 68.0436 0.1144 5272 +5274 2 -20.350839372792507 -977.6264658746835 67.9048 0.1144 5273 +5275 2 -20.15042223213453 -976.5042472062725 67.6976 0.1144 5274 +5276 2 -19.848959665307518 -975.408541022662 67.4022 0.1144 5275 +5277 2 -19.351883406469568 -974.4128025013123 66.978 0.1144 5276 +5278 2 -18.527732388553176 -973.6738045922034 66.3664 0.1144 5277 +5279 2 -17.53172636207401 -973.2711104089611 65.5696 0.1144 5278 +5280 2 -16.71602865504022 -973.7178066600534 64.7408 0.1144 5279 +5281 2 -16.314720292449778 -974.7333280523022 64.052 0.1144 5280 +5282 2 -16.096356812296506 -975.829138547112 63.4628 0.1144 5281 +5283 2 -16.167034044319394 -976.9267784420109 62.9087 0.1144 5282 +5284 2 -16.978520467207744 -977.2952852607643 62.3759 0.1144 5283 +5285 2 -18.069931961637195 -977.0248711342338 61.9623 0.1144 5284 +5286 2 -19.150765230457125 -976.6821042527939 61.5997 0.1144 5285 +5287 2 -20.256344574590884 -976.4323715680591 61.2391 0.1144 5286 +5288 2 -21.37584809306773 -976.2516487910831 60.8644 0.1144 5287 +5289 2 -22.444072820117725 -975.9011317693582 60.4212 0.1144 5288 +5290 2 -23.46225539863059 -975.4286503127772 59.8951 0.1144 5289 +5291 2 -24.507372442681145 -975.0370494136016 59.29 0.1144 5290 +5292 2 -25.18932979328048 -975.7516780597973 58.5586 0.1144 5291 +5293 2 -25.719645984221756 -976.732868835144 57.9376 0.1144 5292 +5294 2 -26.233376288019713 -977.7429524876004 57.5551 0.1144 5293 +5295 2 -26.327577767845696 -978.876415416504 57.2855 0.1144 5294 +5296 2 -26.43019301379303 -980.0137588788315 57.1245 0.1144 5295 +5297 2 -26.78212868320668 -981.1016365303136 57.2132 0.1144 5296 +5298 2 -53.29979617254534 -992.8101216007602 73.5003 0.1144 4911 +5299 2 -53.305352921392256 -991.6694270875174 73.3538 0.1144 5298 +5300 2 -53.81643712754419 -990.6609309476031 73.2332 0.1144 5299 +5301 2 -53.94681681456228 -989.5379193104359 73.5669 0.1144 5300 +5302 2 -54.139971823388464 -988.4306047740166 74.0905 0.1144 5301 +5303 2 -54.37099380207789 -987.3250853959131 74.5251 0.1144 5302 +5304 2 -54.45669109124907 -986.1960893354112 74.8684 0.1144 5303 +5305 2 -54.44353203701161 -985.0573894937974 75.1332 0.1144 5304 +5306 2 -54.736392216161306 -983.9669911925017 75.3136 0.1144 5305 +5307 2 -55.17054727894691 -982.9112087236864 75.4393 0.1144 5306 +5308 2 -55.628494574417374 -981.8646512027774 75.6224 0.1144 5307 +5309 2 -55.848112425029825 -980.7494222488435 75.8038 0.1144 5308 +5310 2 -56.12755977632759 -979.6415063549903 75.9293 0.1144 5309 +5311 2 -56.179185436209764 -978.5022490042386 75.9993 0.1144 5310 +5312 2 -56.02568362445541 -977.3713061216013 76.0178 0.1144 5311 +5313 2 -56.269937024037944 -976.2618295347404 75.9814 0.1144 5312 +5314 2 -56.64128703956155 -975.1835236106305 75.7826 0.1144 5313 +5315 2 -56.85725331142851 -974.0633503698253 75.6036 0.1144 5314 +5316 2 -56.61291430540561 -972.9489961621625 75.4785 0.1144 5315 +5317 2 -56.71537106369894 -971.8101122204547 75.4051 0.1144 5316 +5318 2 -57.03464171882217 -970.7118846944942 75.3791 0.1144 5317 +5319 2 -57.33778749774228 -969.6091451437738 75.4538 0.1144 5318 +5320 2 -57.64837709439891 -968.5095725438749 75.5692 0.1144 5319 +5321 2 -58.38169171155073 -968.2123717325175 75.4636 0.1144 5320 +5322 2 -59.489599792402174 -968.0701826528241 75.3404 0.1144 5321 +5323 2 -60.53996565805818 -968.4432569460483 75.2604 0.1144 5322 +5324 2 -61.4765956715859 -969.0955111202466 75.2153 0.1144 5323 +5325 2 -62.535457803077946 -969.3783773014916 75.1246 0.1144 5324 +5326 2 -63.47561535027671 -968.8296471433581 75.0072 0.1144 5325 +5327 2 -64.49399164738452 -968.326296244393 74.9196 0.1144 5326 +5328 2 -65.61993167417171 -968.1899087960023 74.9692 0.1144 5327 +5329 2 -66.26994551790202 -969.0701294177551 75.075 0.1144 5328 +5330 2 -66.83091259657581 -969.2847659399135 75.903 0.1144 5329 +5331 2 -67.80357378161222 -969.554908252637 77.1949 0.1144 5330 +5332 2 -68.8674534719521 -969.5697090797177 78.0704 0.1144 5331 +5333 2 -69.97519727557395 -969.3884486164683 78.6033 0.1144 5332 +5334 2 -71.08568836363054 -969.2116939748124 79.1109 0.1144 5333 +5335 2 -72.20424755130512 -969.1942542595401 79.613 0.1144 5334 +5336 2 -73.32143083860262 -969.3035616819008 80.1458 0.1144 5335 +5337 2 -74.43817945474223 -969.3830219760747 80.7265 0.1144 5336 +5338 2 -75.47093682926189 -969.0724463727585 81.2759 0.1144 5337 +5339 2 -76.43151153279828 -968.4798059683595 81.7225 0.1144 5338 +5340 2 -77.42294646866566 -967.9330147303706 82.0904 0.1144 5339 +5341 2 -78.48236489022278 -967.5288412180452 82.4029 0.1144 5340 +5342 2 -79.59274406686251 -967.3129299999833 82.724 0.1144 5341 +5343 2 -80.71812178410389 -967.2929907538459 83.174 0.1144 5342 +5344 2 -81.83590812766036 -967.3140463981895 83.7581 0.1144 5343 +5345 2 -82.29138563540451 -966.4834772800908 84.3371 0.1144 5344 +5346 2 -82.24650761933145 -965.3614338924834 84.7616 0.1144 5345 +5347 2 -82.31812466069462 -964.2291825867273 85.0592 0.1144 5346 +5348 2 -82.42378670747595 -963.0936774207902 85.2524 0.1144 5347 +5349 2 -82.53042962920506 -961.9546668469828 85.3656 0.1144 5348 +5350 2 -82.6364441611814 -960.8166785873731 85.4392 0.1144 5349 +5351 2 -82.74300189006073 -959.6776156477528 85.5123 0.1144 5350 +5352 2 -82.88559378535751 -958.5433296161913 85.612 0.1144 5351 +5353 2 -83.13991475659492 -957.4306508424255 85.7598 0.1144 5352 +5354 2 -83.43772232419903 -956.3299121665002 85.9648 0.1144 5353 +5355 2 -83.74113229388124 -955.2313259521786 86.2282 0.1144 5354 +5356 2 -84.04361375442829 -954.1361599528775 86.5491 0.1144 5355 +5357 2 -84.34497599413231 -953.0430057549345 86.9254 0.1144 5356 +5358 2 -84.65560082687253 -951.9609445444269 87.4196 0.1144 5357 +5359 2 -84.97018527741659 -950.9094885855413 88.1989 0.1144 5358 +5360 2 -85.08206580439267 -949.8274578107093 89.0596 0.1144 5359 +5361 2 -84.97485264829908 -948.7302494853852 89.8013 0.1144 5360 +5362 2 -84.64561050612798 -947.7060903855288 90.678 0.1144 5361 +5363 2 -83.82829543159627 -947.0237635438003 91.7039 0.1144 5362 +5364 2 -82.98478480762341 -946.3468156601011 92.6117 0.1144 5363 +5365 2 -82.15678849236659 -945.633742906505 93.4438 0.1144 5364 +5366 2 -81.31417114144523 -944.9358634183939 94.2589 0.1144 5365 +5367 2 -80.43081628979809 -944.2975751715403 95.1012 0.1144 5366 +5368 2 -79.5215708261851 -943.6970156433507 95.954 0.1144 5367 +5369 2 -78.67399756929291 -943.031069351071 96.8005 0.1144 5368 +5370 2 -78.40260628492294 -942.1028033596826 97.6676 0.1144 5369 +5371 2 -78.8988928665446 -941.1227733453962 98.4116 0.1144 5370 +5372 2 -79.53741076061331 -940.2019978141434 98.9366 0.1144 5371 +5373 2 -80.32875532246774 -939.395232938592 99.0864 0.1144 5372 +5374 2 -81.21972255493108 -938.6994729435675 98.7078 0.1144 5373 +5375 2 -82.13117371647573 -938.0511659637199 98.119 0.1144 5374 +5376 2 -83.09727424145305 -937.4646218940725 97.6839 0.1144 5375 +5377 2 -84.07299294624474 -936.8799989223038 97.414 0.1144 5376 +5378 2 -85.05365593790768 -936.2917243717898 97.3353 0.1144 5377 +5379 2 -86.04180108497388 -935.7174393656042 97.4753 0.1144 5378 +5380 2 -87.04753050264512 -935.1955157328468 97.8622 0.1144 5379 +5381 2 -88.04305168841594 -934.6835159099155 98.4264 0.1144 5380 +5382 2 -89.03046473807714 -934.1759226875822 99.1063 0.1144 5381 +5383 2 -90.00927882053847 -933.6737255530073 99.8757 0.1144 5382 +5384 2 -91.00548965817615 -933.2413816424762 100.7507 0.1144 5383 +5385 2 -92.03418060565673 -932.9725590530767 101.7803 0.1144 5384 +5386 2 -92.98009492957354 -932.5347708145309 102.9302 0.1144 5385 +5387 2 -93.90858926011495 -932.0836925861132 104.1384 0.1144 5386 +5388 2 -94.8349944214284 -931.6339125764509 105.3615 0.1144 5387 +5389 2 -95.81113509497888 -931.4482913614984 106.7438 0.1144 5388 +5390 2 -96.73658802349885 -931.3497161257967 108.3222 0.1144 5389 +5391 2 -97.45090002413048 -931.2732487748964 110.5003 0.1144 5390 +5392 2 -66.68329982806372 -969.791500219958 75.0184 0.1144 5329 +5393 2 -67.250320014425 -970.7805793867889 74.8101 0.1144 5392 +5394 2 -68.0764681130168 -971.555666929711 74.4856 0.1144 5393 +5395 2 -68.81460779520106 -972.4082418176738 74.0267 0.1144 5394 +5396 2 -69.42580213450117 -973.3451242967541 73.4387 0.1144 5395 +5397 2 -70.02829587655907 -974.280884453408 72.7944 0.1144 5396 +5398 2 -70.62870044938893 -975.2179428288175 72.1462 0.1144 5397 +5399 2 -71.16556787755187 -976.1991695327845 71.5616 0.1144 5398 +5400 2 -71.64040269412288 -977.2202072289407 71.0682 0.1144 5399 +5401 2 -72.11581043305094 -978.2469965996332 70.6513 0.1144 5400 +5402 2 -72.59353870493197 -979.2765035293066 70.303 0.1144 5401 +5403 2 -73.07202199866535 -980.3091743082183 70.0157 0.1144 5402 +5404 2 -73.55237953509433 -981.3429971350101 69.7852 0.1144 5403 +5405 2 -74.26982926994438 -981.8121660682992 68.4426 0.1144 5404 +5406 2 -75.15515897035613 -982.3926256892626 67.4512 0.1144 5405 +5407 2 -76.0774592659964 -983.0025008688377 66.7285 0.1144 5406 +5408 2 -76.86516747236797 -983.7700415789078 66.0509 0.1144 5407 +5409 2 -77.58789275936866 -984.6238232896101 65.4685 0.1144 5408 +5410 2 -78.36743356811516 -985.4332960115092 64.9684 0.1144 5409 +5411 2 -79.35355991715318 -985.9240567716898 64.5436 0.1144 5410 +5412 2 -80.26748478433873 -986.5408740113483 64.15 0.1144 5411 +5413 2 -81.09447860826236 -987.3298628041662 64.0469 0.1144 5412 +5414 2 -81.97028593452072 -988.030653569853 63.9422 0.1144 5413 +5415 2 -83.07501195310522 -988.2476891057969 63.4712 0.1144 5414 +5416 2 -84.1125550429955 -988.5914008987587 62.8309 0.1144 5415 +5417 2 -85.05722031141912 -989.1868518628473 62.2278 0.1144 5416 +5418 2 -85.97768711107713 -989.8237714187784 61.6504 0.1144 5417 +5419 2 -86.90042207787536 -990.46349372654 61.1108 0.1144 5418 +5420 2 -87.80461954696491 -991.1333743031297 60.6245 0.1144 5419 +5421 2 -88.61678120281113 -991.909255205571 60.1664 0.1144 5420 +5422 2 -89.33562285480477 -992.7781394782788 59.6963 0.1144 5421 +5423 2 -89.96966989639543 -993.7062970505962 59.2256 0.1144 5422 +5424 2 -90.1227938894609 -994.7524935630869 58.8328 0.1144 5423 +5425 2 -89.87938070458057 -995.8651863649987 58.5586 0.1144 5424 +5426 2 -89.80945029578788 -996.9904925090885 58.333 0.1144 5425 +5427 2 -89.91064930309295 -998.1255568777128 58.1031 0.1144 5426 +5428 2 -90.01272445372032 -999.2572862241665 57.7912 0.1144 5427 +5429 2 -90.45576432565909 -1000.2492725607016 57.395 0.1144 5428 +5430 2 -91.18022009352657 -1001.1176167380895 56.9878 0.1144 5429 +5431 2 -91.7204662974602 -1002.0956381535684 56.6314 0.1144 5430 +5432 2 -92.03823894156884 -1003.1865797407564 56.3746 0.1144 5431 +5433 2 -92.3222284566711 -1004.2931437539576 56.1957 0.1144 5432 +5434 2 -92.6871837220285 -1005.3728256674339 56.0283 0.1144 5433 +5435 2 -93.09914261072245 -1006.4371469366125 55.8289 0.1144 5434 +5436 2 -93.51235827892202 -1007.4994235773961 55.587 0.1144 5435 +5437 2 -94.00883828250758 -1008.520384598219 55.2969 0.1144 5436 +5438 2 -94.57844939575011 -1009.5029570686611 54.9646 0.1144 5437 +5439 2 -95.16168895591352 -1010.476534238412 54.607 0.1144 5438 +5440 2 -95.75549784538518 -1011.4417007436247 54.238 0.1144 5439 +5441 2 -96.56271280531365 -1012.2038593940825 53.8594 0.1144 5440 +5442 2 -97.62692786880439 -1012.4497542875624 53.4926 0.1144 5441 +5443 2 -98.75646402462618 -1012.5410656926075 53.1286 0.1144 5442 +5444 2 -99.84325218642607 -1012.8331153825089 52.733 0.1144 5443 +5445 2 -100.72767009898391 -1013.5002284433516 52.3426 0.1144 5444 +5446 2 -101.389067839479 -1014.41444401906 51.994 0.1144 5445 +5447 2 -101.98737162398137 -1015.3810822303109 51.6799 0.1144 5446 +5448 2 -102.5390188544088 -1016.3755020175042 51.3775 0.1144 5447 +5449 2 -102.8026175529557 -1017.4627242469147 51.0398 0.1144 5448 +5450 2 -102.77661452015764 -1018.5908509651009 50.65 0.1144 5449 +5451 2 -102.84257031151776 -1019.7177510376832 50.26 0.1144 5450 +5452 2 -103.12862158474434 -1020.8079752481489 49.8585 0.1144 5451 +5453 2 -103.76547758133174 -1021.7204870615576 49.4295 0.1144 5452 +5454 2 -104.47647838956098 -1022.591242475378 48.9121 0.1144 5453 +5455 2 -104.69698792621696 -1023.5606567079142 47.8176 0.1144 5454 +5456 2 -105.21462648829436 -1024.4509493109667 46.655 0.1144 5455 +5457 2 -105.95908325614397 -1025.1798142784355 45.8248 0.1144 5456 +5458 2 -106.98960830315423 -1025.469442829315 44.9277 0.1144 5457 +5459 2 -108.00392157657973 -1025.2939039067 43.9443 0.1144 5458 +5460 2 -108.60684817915359 -1024.5030246416354 42.975 0.1144 5459 +5461 2 -108.86351570937444 -1023.4562302640569 42.0535 0.1144 5460 +5462 2 -108.72718952309782 -1022.4109684638676 41.1678 0.1144 5461 +5463 2 -108.39229802896935 -1021.3698380699396 40.3421 0.1144 5462 +5464 2 -108.06881135545441 -1020.3143546252289 39.6077 0.1144 5463 +5465 2 -107.81359359599179 -1019.2308753705798 38.9752 0.1144 5464 +5466 2 -108.08124799694957 -1018.2231140388907 38.3648 0.1144 5465 +5467 2 -108.98176734670517 -1017.6298298315198 37.798 0.1144 5466 +5468 2 -110.04704866167899 -1017.2883025998564 37.247 0.1144 5467 +5469 2 -111.14447021471051 -1017.3531832976157 36.6806 0.1144 5468 +5470 2 -112.21043558193236 -1017.6901850867558 36.1178 0.1144 5469 +5471 2 -113.25152654291597 -1018.1045106362436 35.5558 0.1144 5470 +5472 2 -114.11686686244522 -1018.7961678500403 35.0045 0.1144 5471 +5473 2 -114.82305311748584 -1019.6680722101577 34.4809 0.1144 5472 +5474 2 -115.50135098734864 -1020.565678281739 33.9766 0.1144 5473 +5475 2 -116.06266945593967 -1021.5378713473481 33.474 0.1144 5474 +5476 2 -116.49282118212724 -1022.5769872467828 32.972 0.1144 5475 +5477 2 -116.8957324043173 -1023.6277652618903 32.475 0.1144 5476 +5478 2 -117.29842869997498 -1024.6809935436336 31.9897 0.1144 5477 +5479 2 -118.05828375725227 -1025.4917473545588 31.5286 0.1144 5478 +5480 2 -119.1327937372408 -1025.2860679853816 31.227 0.1144 5479 +5481 2 -120.2635726444222 -1025.3862425483885 30.9663 0.1144 5480 +5482 2 -121.2887703770163 -1025.8768390313396 30.6975 0.1144 5481 +5483 2 -122.07953321434434 -1026.6986091543672 30.5088 0.1144 5482 +5484 2 -122.85595092056579 -1027.537033322355 30.3783 0.1144 5483 +5485 2 -123.44916975795121 -1028.5140447352724 30.2781 0.1144 5484 +5486 2 -123.90359283411803 -1029.5640886523765 30.1972 0.1144 5485 +5487 2 -124.05267401712851 -1030.6978311852613 30.14 0.1144 5486 +5488 2 -124.1929444079897 -1031.832731276656 30.0964 0.1144 5487 +5489 2 -124.64945665338445 -1032.8814769750047 30.0199 0.1144 5488 +5490 2 -125.29397070170432 -1033.8187680992123 29.7284 0.1144 5489 +5491 2 -73.95401666492836 -981.3079244114391 69.5492 0.1144 5404 +5492 2 -75.00084057286168 -980.8850929724717 69.2532 0.1144 5491 +5493 2 -75.96133077608485 -980.268337575647 69.2611 0.1144 5492 +5494 2 -76.90953519727907 -979.634522590318 69.4968 0.1144 5493 +5495 2 -77.85065379656135 -979.0057425953397 69.9026 0.1144 5494 +5496 2 -78.7817407528089 -978.3736135500446 70.408 0.1144 5495 +5497 2 -79.69484571988696 -977.7182238498682 70.929 0.1144 5496 +5498 2 -80.60683456770502 -977.0581571551656 71.4241 0.1144 5497 +5499 2 -81.44333453623094 -976.2980464246427 71.8561 0.1144 5498 +5500 2 -82.24212291582202 -975.4944484999127 72.2344 0.1144 5499 +5501 2 -83.04161705303582 -974.6874108213866 72.5749 0.1144 5500 +5502 2 -83.83884302310929 -973.87757039103 72.893 0.1144 5501 +5503 2 -84.50213712639373 -972.9558256039289 73.222 0.1144 5502 +5504 2 -85.10377582124983 -971.9923092881085 73.5613 0.1144 5503 +5505 2 -85.68595771931524 -971.0167160083219 73.8917 0.1144 5504 +5506 2 -86.25357164006545 -970.0321681745572 74.1958 0.1144 5505 +5507 2 -86.80653239065063 -969.038613421002 74.4624 0.1144 5506 +5508 2 -87.03007221393676 -967.9191044985698 74.6052 0.1144 5507 +5509 2 -87.1666560689149 -966.7837078583779 74.6329 0.1144 5508 +5510 2 -87.14062118056242 -965.6397933359643 74.6021 0.1144 5509 +5511 2 -87.08264999479539 -964.4976117034641 74.5405 0.1144 5510 +5512 2 -87.02462644321562 -963.3555152638138 74.4652 0.1144 5511 +5513 2 -86.96665525744851 -962.2133336313136 74.3901 0.1144 5512 +5514 2 -86.90863170586874 -961.0712371916633 74.328 0.1144 5513 +5515 2 -86.85066052010168 -959.929055559163 74.275 0.1144 5514 +5516 2 -86.79268933433465 -958.7868739266629 74.2269 0.1144 5515 +5517 2 -86.73529417250765 -957.643755172815 74.1832 0.1144 5516 +5518 2 -86.68484417234708 -956.5023230515376 74.1454 0.1144 5517 +5519 2 -86.7761172397255 -955.3619643022085 74.1202 0.1144 5518 +5520 2 -86.94179009945475 -954.2296579375046 74.1098 0.1144 5519 +5521 2 -87.0673168956175 -953.0969726531272 74.1135 0.1144 5520 +5522 2 -87.61484873140736 -952.0946813737095 74.1322 0.1144 5521 +5523 2 -88.30691459033144 -951.1960213451605 74.1642 0.1144 5522 +5524 2 -88.36677501842266 -950.0565435572469 74.2244 0.1144 5523 +5525 2 -88.23114569346745 -948.9270785838137 74.31 0.1144 5524 +5526 2 -87.9461666912047 -947.8200237395222 74.4386 0.1144 5525 +5527 2 -87.6653410253407 -946.7127047044686 74.5707 0.1144 5526 +5528 2 -87.41494161318644 -945.5973250810252 74.6376 0.1144 5527 +5529 2 -87.21274713647853 -944.4713141736229 74.6556 0.1144 5528 +5530 2 -87.04178630114549 -943.3403213342193 74.6992 0.1144 5529 +5531 2 -86.87657714034887 -942.2087555724587 74.7746 0.1144 5530 +5532 2 -86.7129139518772 -941.076966271953 74.8588 0.1144 5531 +5533 2 -86.5476195982308 -939.9453481443796 74.9316 0.1144 5532 +5534 2 -86.39595058992225 -938.8114235119994 74.9414 0.1144 5533 +5535 2 -86.31021834361349 -937.6750671277858 74.7914 0.1144 5534 +5536 2 -86.4403276367033 -936.5612797459881 74.4257 0.1144 5535 +5537 2 -86.85519328151102 -935.5258029008785 73.8774 0.1144 5536 +5538 2 -87.43736045889372 -934.585180034062 73.1909 0.1144 5537 +5539 2 -88.20490047642724 -933.8215344543034 72.3831 0.1144 5538 +5540 2 -89.1919363229249 -933.3955237528785 71.5789 0.1144 5539 +5541 2 -90.0344918971742 -932.817671354509 70.5956 0.1144 5540 +5542 2 -89.72985206848824 -931.8999568701631 69.1023 0.1144 5541 +5543 2 -89.44637830952229 -930.9804626407208 67.587 0.1144 5542 +5544 2 -89.24679458255991 -929.9244894659043 66.6523 0.1144 5543 +5545 2 -89.23800620030016 -928.8004489976217 66.1727 0.1144 5544 +5546 2 -89.56056733676121 -927.7056526132446 65.9988 0.1144 5545 +5547 2 -90.024575038363 -926.6601205081163 65.9876 0.1144 5546 +5548 2 -90.48858273996476 -925.6145884029879 66.057 0.1144 5547 +5549 2 -90.95361275576414 -924.5696846876123 66.1399 0.1144 5548 +5550 2 -91.41770565021571 -923.5242049482966 66.1878 0.1144 5549 +5551 2 -91.82278573639633 -922.4544244176363 66.2004 0.1144 5550 +5552 2 -92.09131668912437 -921.3424982566764 66.1948 0.1144 5551 +5553 2 -92.28473658124926 -920.2152744300429 66.192 0.1144 5552 +5554 2 -92.47459869969111 -919.0871549213113 66.2192 0.1144 5553 +5555 2 -92.50991738387472 -917.9459733710978 66.3485 0.1144 5554 +5556 2 -92.35387701105194 -916.8214519919995 66.6747 0.1144 5555 +5557 2 -92.07994344850496 -915.7399674089793 67.2902 0.1144 5556 +5558 2 -91.78894409428747 -914.6841461997564 68.0924 0.1144 5557 +5559 2 -91.84573647880146 -913.6676756762972 68.885 0.1144 5558 +5560 2 -92.69659390775527 -913.0545472349457 69.5433 0.1144 5559 +5561 2 -93.79330768488057 -912.7886834708418 69.9712 0.1144 5560 +5562 2 -94.92369195739562 -912.6952893786809 70.1873 0.1144 5561 +5563 2 -96.06566686712813 -912.7445945056099 70.1761 0.1144 5562 +5564 2 -97.20334708767965 -912.8249480728356 69.9936 0.1144 5563 +5565 2 -97.95946586509203 -912.2851700773185 69.6769 0.1144 5564 +5566 2 -97.95186476679604 -911.1767667557317 69.3605 0.1144 5565 +5567 2 -97.79506937212076 -910.0490815273951 69.069 0.1144 5566 +5568 2 -97.6335117900696 -908.9224600525058 68.7884 0.1144 5567 +5569 2 -97.5076827444241 -907.7923283516532 68.4905 0.1144 5568 +5570 2 -97.40911300166695 -906.6615798801474 68.1506 0.1144 5569 +5571 2 -97.31759315220165 -905.5323476555125 67.7606 0.1144 5570 +5572 2 -97.22432569214038 -904.4061495464332 67.3204 0.1144 5571 +5573 2 -97.17655111917429 -903.2823257211928 66.8209 0.1144 5572 +5574 2 -97.34447742536108 -902.1877925212896 66.1867 0.1144 5573 +5575 2 -97.5902816153615 -901.1128400571415 65.4413 0.1144 5574 +5576 2 -97.86615337071058 -900.0456876900445 64.6926 0.1144 5575 +5577 2 -98.16465980023463 -898.9789494787045 63.9876 0.1144 5576 +5578 2 -98.46588378873952 -897.9098907344116 63.3251 0.1144 5577 +5579 2 -98.76915550722259 -896.8353999737402 62.7082 0.1144 5578 +5580 2 -99.07585836728904 -895.7576187317309 62.1393 0.1144 5579 +5581 2 -99.38172101265343 -894.6766212746707 61.6118 0.1144 5580 +5582 2 -99.68882089874776 -893.5938019407276 61.1162 0.1144 5581 +5583 2 -99.9961552501502 -892.5083095886366 60.653 0.1144 5582 +5584 2 -100.30370452808504 -891.42036696991 60.2263 0.1144 5583 +5585 2 -100.42054716419815 -890.2930254074781 59.9032 0.1144 5584 +5586 2 -100.46459927266113 -889.1531037383535 59.6845 0.1144 5585 +5587 2 -100.4999179568448 -888.01192218814 59.5493 0.1144 5586 +5588 2 -100.53393842227302 -886.8686514686985 59.4742 0.1144 5587 +5589 2 -100.56801125351396 -885.7252955564074 59.4387 0.1144 5588 +5590 2 -100.6035972300428 -884.5815785467086 59.4224 0.1144 5589 +5591 2 -100.63761769547108 -883.4383078272672 59.4082 0.1144 5590 +5592 2 -100.67169052671201 -882.2949519149761 59.3883 0.1144 5591 +5593 2 -100.70736169609063 -881.1512872710899 59.3608 0.1144 5592 +5594 2 -100.74129696866908 -880.0079641858357 59.3239 0.1144 5593 +5595 2 -100.81987319984466 -878.8664917262931 59.2729 0.1144 5594 +5596 2 -101.13058942860087 -877.77110528983 59.1917 0.1144 5595 +5597 2 -101.49035321655211 -876.6856776151878 59.0817 0.1144 5596 +5598 2 -101.85102129881415 -875.6006884058233 58.9484 0.1144 5597 +5599 2 -102.2121161325579 -874.5174874590717 58.7964 0.1144 5598 +5600 2 -102.57317813926454 -873.4341489536575 58.6295 0.1144 5599 +5601 2 -102.93321783177367 -872.3501820584906 58.4511 0.1144 5600 +5602 2 -103.2946737629251 -871.2684942570269 58.2641 0.1144 5601 +5603 2 -103.50992645218946 -870.1492909646065 58.0552 0.1144 5602 +5604 2 -103.6578206301821 -869.0195552954716 57.8231 0.1144 5603 +5605 2 -103.79863208784582 -867.8881658208031 57.5708 0.1144 5604 +5606 2 -103.93823913181669 -866.7587357816799 57.3009 0.1144 5605 +5607 2 -104.07793136863728 -865.6293581083695 57.017 0.1144 5606 +5608 2 -104.21852789976859 -864.5004189003366 56.7216 0.1144 5607 +5609 2 -104.33621385216696 -863.3696047570718 56.4071 0.1144 5608 +5610 2 -104.42881486375478 -862.2381615315173 56.0666 0.1144 5609 +5611 2 -104.51625976352193 -861.1061313554599 55.7082 0.1144 5610 +5612 2 -104.60316146638604 -859.9751758594127 55.3426 0.1144 5611 +5613 2 -104.69100029059791 -858.8447963873056 54.9816 0.1144 5612 +5614 2 -104.77910640715496 -857.7118814557131 54.6412 0.1144 5613 +5615 2 -104.86619020951443 -856.5783381343678 54.336 0.1144 5614 +5616 2 -104.95447842556692 -855.4428353774771 54.0803 0.1144 5615 +5617 2 -105.04298156815176 -854.3048823539509 53.8807 0.1144 5616 +5618 2 -105.28478780268173 -853.1885020446734 53.8261 0.1144 5617 +5619 2 -105.67319981575622 -852.1152841692634 53.9694 0.1144 5618 +5620 2 -106.07265485949995 -851.0502627243959 54.2632 0.1144 5619 +5621 2 -106.46975344167058 -849.9890749577693 54.6392 0.1144 5620 +5622 2 -106.50181136997043 -848.8512886205191 54.924 0.1144 5621 +5623 2 -106.51204511334345 -847.7094779880163 55.1099 0.1144 5622 +5624 2 -106.5229924393191 -846.5666974071286 55.1894 0.1144 5623 +5625 2 -106.53349347503729 -845.4223513151403 55.1748 0.1144 5624 +5626 2 -106.70417860147606 -845.5487476664032 55.1908 0.1144 5625 +5627 2 -107.62155753469256 -846.2321300578143 55.2507 0.1144 5626 +5628 2 -108.5091598118895 -846.950969899166 55.1393 0.1144 5627 +5629 2 -109.32042509310119 -847.7544712019034 54.9898 0.1144 5628 +5630 2 -109.97626388334453 -848.3697051258804 54.7078 0.1144 5629 +5631 2 -109.96078360361744 -847.2523503518987 54.1293 0.1144 5630 +5632 2 -109.90529792056958 -846.1278950353224 53.6486 0.1144 5631 +5633 2 -110.05331803812521 -845.0264081562364 53.0328 0.1144 5632 +5634 2 -110.48945856248667 -844.0349969383203 52.1735 0.1144 5633 +5635 2 -110.49126002493603 -842.9550276078609 51.2999 0.1144 5634 +5636 2 -110.16746151824302 -841.9046346208968 50.531 0.1144 5635 +5637 2 -109.84692135838733 -840.8334725902405 49.94 0.1144 5636 +5638 2 -109.64129504755942 -839.7348147907891 49.5093 0.1144 5637 +5639 2 -109.80878668258833 -838.6104344626993 49.2022 0.1144 5638 +5640 2 -109.97302927552931 -837.4867567906491 48.979 0.1144 5639 +5641 2 -110.40652001994195 -836.4385478732531 48.7738 0.1144 5640 +5642 2 -111.12557719687265 -835.5658691601494 48.5041 0.1144 5641 +5643 2 -112.07141112834773 -834.9467956394183 48.1384 0.1144 5642 +5644 2 -113.11949761050488 -834.6093717873873 47.7179 0.1144 5643 +5645 2 -114.22248222165962 -834.8160638471186 47.1834 0.1144 5644 +5646 2 -115.30928510414222 -835.0731431240499 46.5816 0.1144 5645 +5647 2 -116.39707885885846 -835.2825879788454 45.9161 0.1144 5646 +5648 2 -117.49766185208176 -835.3293398240234 45.162 0.1144 5647 +5649 2 -118.59601432329495 -835.4081741374912 44.4262 0.1144 5648 +5650 2 -119.6949428184482 -835.4860713296111 43.7822 0.1144 5649 +5651 2 -120.8119697305072 -835.3683856561587 43.2631 0.1144 5650 +5652 2 -121.92620550983517 -835.2246865327605 42.8425 0.1144 5651 +5653 2 -122.97644653120585 -834.8094723988124 42.539 0.1144 5652 +5654 2 -123.98453481949673 -834.3010889185431 42.2943 0.1144 5653 +5655 2 -125.0408386560452 -833.9042740311045 42.0188 0.1144 5654 +5656 2 -125.99357630993688 -833.2827533453208 41.729 0.1144 5655 +5657 2 -126.87711685439285 -832.5662298172336 41.5058 0.1144 5656 +5658 2 -127.80596166953066 -831.9944648573143 41.3064 0.1144 5657 +5659 2 -128.93004527588803 -831.815266152189 41.0155 0.1144 5658 +5660 2 -130.04643800347597 -831.6111505776024 40.6748 0.1144 5659 +5661 2 -131.03264594690765 -831.1295794174275 40.3676 0.1144 5660 +5662 2 -131.87453959414546 -830.3606938233756 40.1467 0.1144 5661 +5663 2 -132.7396432469618 -829.6153478903459 39.9918 0.1144 5662 +5664 2 -133.6551577339623 -828.9319766924658 39.9031 0.1144 5663 +5665 2 -134.59841545923877 -828.2844394551533 39.8723 0.1144 5664 +5666 2 -135.54158799166547 -827.636849852028 39.877 0.1144 5665 +5667 2 -136.4862291285471 -826.9914541497564 39.8992 0.1144 5666 +5668 2 -137.44294112092527 -826.3655683026245 39.9283 0.1144 5667 +5669 2 -138.42128357963526 -825.7745761931296 39.9647 0.1144 5668 +5670 2 -139.41099423780204 -825.1998448966866 40.0151 0.1144 5669 +5671 2 -140.40631280867657 -824.637951096692 40.124 0.1144 5670 +5672 2 -141.35370674062264 -824.0077462508586 40.2626 0.1144 5671 +5673 2 -142.27558726376628 -823.333687602781 40.3371 0.1144 5672 +5674 2 -143.0584242544369 -822.5189935890324 40.4583 0.1144 5673 +5675 2 -143.5211361463298 -821.488746145405 40.8052 0.1144 5674 +5676 2 -144.53379841403122 -821.0208533889172 41.3157 0.1144 5675 +5677 2 -145.62702008923267 -820.9703496378706 42.098 0.1144 5676 +5678 2 -146.69387983049052 -821.1615273888858 42.9904 0.1144 5677 +5679 2 -147.74169962384988 -821.4121345129753 43.9208 0.1144 5678 +5680 2 -148.61193056835384 -821.5387924508545 45.1688 0.1144 5679 +5681 2 -147.87198341621763 -820.7764287764539 45.8102 0.1144 5680 +5682 2 -147.31984434841152 -819.9334799702965 46.4036 0.1144 5681 +5683 2 -147.7469625397631 -819.0157549621287 47.4334 0.1144 5682 +5684 2 -148.221843093412 -818.2454732540723 49.1047 0.1144 5683 +5685 2 -148.80582766102128 -817.3609016770961 50.1222 0.1144 5684 +5686 2 -149.67547515934632 -816.7500499204014 51.1557 0.1144 5685 +5687 2 -150.6231117603652 -816.2219981024807 52.0304 0.1144 5686 +5688 2 -151.51625096354476 -815.723599001615 53.2868 0.1144 5687 +5689 2 -105.9943185357792 -844.577980759711 55.0382 0.1144 5625 +5690 2 -106.08300308532284 -843.4615025374997 54.8509 0.1144 5689 +5691 2 -106.33959222370049 -842.3516265155645 54.6286 0.1144 5690 +5692 2 -106.57239774160598 -841.2365217846836 54.3578 0.1144 5691 +5693 2 -106.8178555548815 -840.1250857622775 54.0932 0.1144 5692 +5694 2 -106.96922231370735 -838.9961934094279 53.8345 0.1144 5693 +5695 2 -107.0698955327845 -837.8668948204972 53.4545 0.1144 5694 +5696 2 -107.15737877021829 -836.745687237947 52.9494 0.1144 5695 +5697 2 -107.42479291114972 -835.6531467090741 52.437 0.1144 5696 +5698 2 -107.81595771928855 -834.5951196901026 51.9753 0.1144 5697 +5699 2 -108.1673460787851 -833.5166340755438 51.6062 0.1144 5698 +5700 2 -108.2442995436501 -833.1664841587292 51.4382 0.1144 5699 +5701 2 -108.4436032530405 -832.0535586080191 51.032 0.1144 5700 +5702 2 -108.59541630212377 -830.92623176627 50.7466 0.1144 5701 +5703 2 -108.81766651886724 -829.8086299135705 50.5257 0.1144 5702 +5704 2 -109.07096517590708 -828.6953227500519 50.344 0.1144 5703 +5705 2 -109.14098387913256 -827.5633801758906 50.1824 0.1144 5704 +5706 2 -108.96462936508772 -826.441162200016 50.0192 0.1144 5705 +5707 2 -108.65091625231537 -825.3459078172928 49.7896 0.1144 5706 +5708 2 -108.38411846844662 -824.2419292203432 49.4715 0.1144 5707 +5709 2 -108.35260160694938 -823.1134259915302 49.145 0.1144 5708 +5710 2 -108.53769843643221 -821.9930590321301 48.8653 0.1144 5709 +5711 2 -108.63693587809144 -820.8617041010086 48.6315 0.1144 5710 +5712 2 -108.72585248389674 -819.7251790299204 48.3818 0.1144 5711 +5713 2 -108.98003279488847 -818.6192218790759 48.1104 0.1144 5712 +5714 2 -109.29846013372645 -817.5244669339486 47.868 0.1144 5713 +5715 2 -109.50511695737404 -816.4039709334024 47.6596 0.1144 5714 +5716 2 -109.49587677422721 -815.2676799191745 47.4729 0.1144 5715 +5717 2 -109.34812663700927 -814.13616411418 47.2889 0.1144 5716 +5718 2 -109.25415962249141 -813.0000281671286 47.075 0.1144 5717 +5719 2 -109.1029783436901 -811.871802843472 46.8238 0.1144 5718 +5720 2 -108.58901908521355 -810.8750772440083 46.5139 0.1144 5719 +5721 2 -107.89896150049577 -809.9769334861535 46.1524 0.1144 5720 +5722 2 -107.72487135947148 -808.8882696846068 45.7783 0.1144 5721 +5723 2 -107.4885490935421 -807.7828341023019 45.3844 0.1144 5722 +5724 2 -107.12670772065675 -806.7198561905518 44.8577 0.1144 5723 +5725 2 -106.31427877246529 -805.946510747596 44.3422 0.1144 5724 +5726 2 -105.23284664424713 -805.6108009740451 43.9491 0.1144 5725 +5727 2 -104.14713695657724 -805.2885430585494 43.5554 0.1144 5726 +5728 2 -104.70307254922443 -804.7534279524012 45.2869 0.1144 5727 +5729 2 -105.66360039757765 -804.1715577756969 45.8091 0.1144 5728 +5730 2 -106.72101725180303 -803.7861086786686 46.3086 0.1144 5729 +5731 2 -107.84977305227858 -803.787026770656 46.7589 0.1144 5730 +5732 2 -108.98109134455831 -803.7008974983195 47.108 0.1144 5731 +5733 2 -110.11700143851442 -803.6135997409101 47.3628 0.1144 5732 +5734 2 -111.25082236324252 -803.5276002022562 47.6778 0.1144 5733 +5735 2 -103.81404462766844 -805.0811001738266 43.3734 0.1144 5727 +5736 2 -102.8033563034106 -804.6129210294716 42.9696 0.1144 5735 +5737 2 -101.80233000726338 -804.1681706113474 42.7778 0.1144 5736 +5738 2 -101.1919399540453 -803.2410555845397 42.5505 0.1144 5737 +5739 2 -100.94380560744818 -802.1351675088112 42.2859 0.1144 5738 +5740 2 -100.86133101544021 -801.0021047075186 41.9642 0.1144 5739 +5741 2 -100.76534599639814 -799.8782271313922 41.5391 0.1144 5740 +5742 2 -100.73841473341099 -798.7619330092748 41.0446 0.1144 5741 +5743 2 -101.20467208735067 -797.7849254914444 40.572 0.1144 5742 +5744 2 -101.60799535288228 -796.7638345241545 40.1243 0.1144 5743 +5745 2 -101.56770052627286 -795.6366264125138 39.825 0.1144 5744 +5746 2 -101.56858028059364 -794.4970480185311 39.6631 0.1144 5745 +5747 2 -101.68729164877269 -793.3601734691348 39.6186 0.1144 5746 +5748 2 -101.89029689367479 -792.2347331817173 39.6813 0.1144 5747 +5749 2 -102.1591889438105 -791.1243201660453 39.8042 0.1144 5748 +5750 2 -102.42910330814377 -790.0145355401262 39.9487 0.1144 5749 +5751 2 -102.55267066876128 -788.8806458420559 40.1008 0.1144 5750 +5752 2 -102.46163303817359 -787.7464278912998 40.2578 0.1144 5751 +5753 2 -102.21306332788203 -786.6347553139977 40.4628 0.1144 5752 +5754 2 -101.93089258807947 -785.5361173374107 40.8268 0.1144 5753 +5755 2 -101.02128912864191 -784.9273558680492 41.2471 0.1144 5754 +5756 2 -100.36884284054169 -784.0052611109096 41.5764 0.1144 5755 +5757 2 -100.55241559817375 -782.8894742393901 41.8141 0.1144 5756 +5758 2 -101.07838192916918 -781.8766269662738 41.965 0.1144 5757 +5759 2 -101.07591883633943 -780.7337026235573 42.0437 0.1144 5758 +5760 2 -101.14367247400779 -779.5922685016814 42.0664 0.1144 5759 +5761 2 -100.5586915064145 -778.6083478557177 42.0686 0.1144 5760 +5762 2 -100.17235524480468 -777.5328959539734 42.0686 0.1144 5761 +5763 2 -99.8643445423391 -776.4304650458587 42.0686 0.1144 5762 +5764 2 -108.24553318592399 -832.1922779956781 52.7629 0.1144 5699 +5765 2 -108.31140096179723 -831.0779734430079 53.3238 0.1144 5764 +5766 2 -108.37638708371858 -829.9563188776635 53.8642 0.1144 5765 +5767 2 -108.50966022604669 -828.8417764740136 54.3942 0.1144 5766 +5768 2 -108.67817968590282 -827.7287095705213 54.8915 0.1144 5767 +5769 2 -108.85110884793986 -826.6170620072545 55.3969 0.1144 5768 +5770 2 -109.00919963873343 -825.5056841453793 55.9322 0.1144 5769 +5771 2 -109.04467639698052 -824.4169515704904 56.7664 0.1144 5770 +5772 2 -109.0522538434868 -823.3581396975381 57.8248 0.1144 5771 +5773 2 -109.05728041728841 -822.358093571824 59.124 0.1144 5772 +5774 2 -109.06321908071749 -821.5641417645481 61.1397 0.1144 5773 +5775 2 -57.15070498875667 -967.4382267148983 75.7546 0.1144 5320 +5776 2 -57.10039254725859 -966.2967617665838 75.8349 0.1144 5775 +5777 2 -57.48193676653659 -965.2194398190048 75.9122 0.1144 5776 +5778 2 -57.3862776088186 -964.0795639987749 75.9923 0.1144 5777 +5779 2 -57.68264560488507 -963.007520403156 74.1773 0.1144 5778 +5780 2 -57.43476343918755 -962.2508776658426 72.571 0.1144 5779 +5781 2 -57.09532929466684 -962.6654107544297 71.5963 0.1144 5780 +5782 2 -56.99047332748867 -963.6617283123134 70.399 0.1144 5781 +5783 2 -56.401105883935514 -963.0389917175321 69.4837 0.1144 5782 +5784 2 -55.759526037638835 -962.1383662510779 68.7652 0.1144 5783 +5785 2 -55.21148574415659 -962.1801705178448 67.6172 0.1144 5784 +5786 2 -55.085539690055185 -963.2239756344524 67.0163 0.1144 5785 +5787 2 -54.239159742314285 -963.7794051835963 66.575 0.1144 5786 +5788 2 -53.16126928202331 -963.5276867583397 66.2693 0.1144 5787 +5789 2 -52.124206410412114 -963.0607856014279 66.0279 0.1144 5788 +5790 2 -51.06355633005893 -962.6519273044023 65.7171 0.1144 5789 +5791 2 -50.047530487021675 -962.1616864082293 65.2957 0.1144 5790 +5792 2 -49.22654090929703 -961.404559646539 64.9172 0.1144 5791 +5793 2 -48.493351717150176 -960.5349555880624 64.6156 0.1144 5792 +5794 2 -47.77215119453689 -959.6525311628665 64.3633 0.1144 5793 +5795 2 -47.06596563203291 -958.7565641761361 64.1525 0.1144 5794 +5796 2 -46.38144238627257 -957.842923931831 63.9596 0.1144 5795 +5797 2 -45.78536532966061 -956.8749546747878 63.7199 0.1144 5796 +5798 2 -45.310172517265045 -955.8457150374596 63.3738 0.1144 5797 +5799 2 -44.96954406928282 -954.7701871529185 62.9364 0.1144 5798 +5800 2 -44.780624861764295 -953.661726665111 62.4571 0.1144 5799 +5801 2 -44.552140338016216 -952.5611087375778 61.9522 0.1144 5800 +5802 2 -44.10573641098944 -951.5373572765603 61.4286 0.1144 5801 +5803 2 -43.3740893970479 -950.6982811018358 60.916 0.1144 5802 +5804 2 -42.48540864572087 -950.0096494860783 60.431 0.1144 5803 +5805 2 -41.56807045921764 -949.3544635189035 59.9642 0.1144 5804 +5806 2 -40.71543618594421 -948.6182645675053 59.5014 0.1144 5805 +5807 2 -40.08946135184297 -947.6922516318118 59.0316 0.1144 5806 +5808 2 -39.7405841075055 -946.6278519707898 58.5589 0.1144 5807 +5809 2 -39.52328637625547 -945.5220200549936 58.0832 0.1144 5808 +5810 2 -39.3425604976963 -944.4092053324009 57.6072 0.1144 5809 +5811 2 -39.300485233453855 -943.2848937776535 57.1276 0.1144 5810 +5812 2 -39.394296169364196 -942.1621761513984 56.658 0.1144 5811 +5813 2 -39.46386548074918 -941.0353568620208 56.2248 0.1144 5812 +5814 2 -39.48117884286799 -939.9018888309356 55.8446 0.1144 5813 +5815 2 -39.48882165935976 -938.7665848948216 55.5089 0.1144 5814 +5816 2 -39.49923440064504 -937.6288752329046 55.2065 0.1144 5815 +5817 2 -39.54751411179359 -936.4929607293036 54.9139 0.1144 5816 +5818 2 -39.61735381710682 -935.3569171845564 54.6322 0.1144 5817 +5819 2 -39.65414110574545 -934.2179295351964 54.385 0.1144 5818 +5820 2 -39.64161044126084 -933.0782073793849 54.133 0.1144 5819 +5821 2 -39.56389803662876 -931.944080824645 53.8504 0.1144 5820 +5822 2 -39.28925940899566 -930.8419733688079 53.5875 0.1144 5821 +5823 2 -38.80110246805205 -929.8141554807514 53.3817 0.1144 5822 +5824 2 -38.23649110907667 -928.82115744283 53.2216 0.1144 5823 +5825 2 -37.46074013027473 -927.9925335541519 53.072 0.1144 5824 +5826 2 -36.51078419825484 -927.3642506105508 52.9189 0.1144 5825 +5827 2 -35.57842864259575 -926.7052333741816 52.768 0.1144 5826 +5828 2 -34.72678454901944 -925.9454626272608 52.6229 0.1144 5827 +5829 2 -33.97194396669195 -925.0893128358858 52.4762 0.1144 5828 +5830 2 -33.15938907893755 -924.2877186028811 52.3194 0.1144 5829 +5831 2 -32.23896982699932 -923.6159661926424 52.1147 0.1144 5830 +5832 2 -31.28482462996041 -922.994498677025 51.837 0.1144 5831 +5833 2 -30.330538772675908 -922.3797527843288 51.494 0.1144 5832 +5834 2 -29.47519004200484 -921.6391855699997 51.1134 0.1144 5833 +5835 2 -29.467535192822908 -920.5789926944888 50.5232 0.1144 5834 +5836 2 -29.783324057059872 -919.5255773000579 49.8809 0.1144 5835 +5837 2 -29.53873758155615 -918.4903029808552 49.1845 0.1144 5836 +5838 2 -28.647773942406218 -917.8338390262372 48.482 0.1144 5837 +5839 2 -27.704077929830788 -917.2631642713643 47.7425 0.1144 5838 +5840 2 -26.76460951994096 -916.6964966820149 46.9605 0.1144 5839 +5841 2 -25.993108375735403 -915.9657982185639 46.0656 0.1144 5840 +5842 2 -25.53896010314193 -915.0421075146483 44.9672 0.1144 5841 +5843 2 -24.90342725035586 -914.3197441413868 43.6069 0.1144 5842 +5844 2 -24.716651578476643 -913.3281038798029 42.3847 0.1144 5843 +5845 2 -23.78809166516541 -912.9533682698171 41.27 0.1144 5844 +5846 2 -22.79740023301821 -912.5028802053025 40.4065 0.1144 5845 +5847 2 -22.7679262121018 -912.1597360197317 40.1142 0.1144 5846 +5848 2 -22.651345038809865 -911.0756677192849 39.2703 0.1144 5847 +5849 2 -22.465583477363452 -909.9798298013932 38.6324 0.1144 5848 +5850 2 -22.221282809007192 -908.8762981872377 38.2133 0.1144 5849 +5851 2 -21.96442596469376 -907.7649312399474 37.977 0.1144 5850 +5852 2 -21.70720802297268 -906.6520511473692 37.8759 0.1144 5851 +5853 2 -21.369834820244705 -905.5624430150203 37.8809 0.1144 5852 +5854 2 -20.802852971550067 -904.5841864416966 37.9898 0.1144 5853 +5855 2 -20.02140268402445 -903.7560502825258 38.1671 0.1144 5854 +5856 2 -19.108697643751043 -903.0782405677389 38.348 0.1144 5855 +5857 2 -18.136679267376508 -902.4793577695302 38.5025 0.1144 5856 +5858 2 -17.263193166607664 -901.7572219362111 38.633 0.1144 5857 +5859 2 -16.56453971627309 -900.8577854702305 38.7024 0.1144 5858 +5860 2 -15.857648396146317 -899.9652582372962 38.6672 0.1144 5859 +5861 2 -14.941823354930904 -899.3097111727137 38.5428 0.1144 5860 +5862 2 -13.957631107944366 -898.7329253624066 38.3645 0.1144 5861 +5863 2 -13.09604848385922 -897.9979167965555 38.1321 0.1144 5862 +5864 2 -12.340215312788132 -897.1479649699744 37.844 0.1144 5863 +5865 2 -11.908770185938238 -896.1415075627694 37.4629 0.1144 5864 +5866 2 -11.998876484753765 -895.0379934691061 36.9821 0.1144 5865 +5867 2 -12.296716186858305 -893.9614549784565 36.3941 0.1144 5866 +5868 2 -12.984657144460641 -893.1435998086047 35.7249 0.1144 5867 +5869 2 -13.933068590196228 -892.695256268897 34.8743 0.1144 5868 +5870 2 -13.98033380014897 -891.9803498065342 33.3385 0.1144 5869 +5871 2 -14.124339542726545 -891.0469496157775 32.0001 0.1144 5870 +5872 2 -14.29023794179949 -890.0343928612274 30.7829 0.1144 5871 +5873 2 -14.736715739207483 -889.0546178276498 29.8519 0.1144 5872 +5874 2 -15.313362605778849 -888.1185836609266 29.0895 0.1144 5873 +5875 2 -16.16290268564947 -887.4027589947593 28.4939 0.1144 5874 +5876 2 -17.109000807886616 -886.7878388104269 28.0353 0.1144 5875 +5877 2 -18.108546288910077 -886.254014802569 27.6594 0.1144 5876 +5878 2 -18.525806040420974 -885.2495894993388 27.1899 0.1144 5877 +5879 2 -18.155186702423407 -884.1879067047611 26.6894 0.1144 5878 +5880 2 -18.054172203660272 -883.0676283415676 26.1789 0.1144 5879 +5881 2 -18.071077613188294 -881.9434173928889 25.6616 0.1144 5880 +5882 2 -18.066293294868927 -880.8218381178049 25.1129 0.1144 5881 +5883 2 -17.796460702908007 -879.7401745368725 24.478 0.1144 5882 +5884 2 -17.30891432945154 -878.7529935434727 23.7274 0.1144 5883 +5885 2 -16.79731324905805 -877.7938707231102 22.8544 0.1144 5884 +5886 2 -15.947430072024133 -877.2474067486392 21.6339 0.1144 5885 +5887 2 -15.083518924005602 -877.3071604793122 19.9266 0.1144 5886 +5888 2 -14.672750935416502 -877.4468412208282 17.3384 0.1144 5887 +5889 2 -14.272616036285484 -877.0666052118845 15.0456 0.1144 5888 +5890 2 -14.088193031859703 -876.1018826945572 13.6092 0.1144 5889 +5891 2 -13.904237241540187 -875.0903776835919 12.3879 0.1144 5890 +5892 2 -13.710355924884624 -874.027227983384 11.469 0.1144 5891 +5893 2 -13.512300063892809 -872.9359232981899 10.7827 0.1144 5892 +5894 2 -13.31050192067616 -871.8289369254669 10.2734 0.1144 5893 +5895 2 -12.909586062651528 -870.7728120868308 9.8433 0.1144 5894 +5896 2 -12.211599339736438 -869.8831759001598 9.4154 0.1144 5895 +5897 2 -11.505322381216416 -869.000534139385 8.9937 0.1144 5896 +5898 2 -10.696419072207476 -868.2038841932515 8.6493 0.1144 5897 +5899 2 -9.817947245317583 -867.4812661410548 8.3636 0.1144 5898 +5900 2 -8.919504552347547 -866.8041238462239 7.8529 0.1144 5899 +5901 2 -22.536568256714332 -912.4486658148012 39.7712 0.1144 5846 +5902 2 -21.46089290521428 -912.2238979608381 39.2862 0.1144 5901 +5903 2 -20.358247159556413 -911.9248007866913 39.1555 0.1144 5902 +5904 2 -19.27767306830617 -911.5506480193371 39.1558 0.1144 5903 +5905 2 -18.201076417125535 -911.1654412947506 39.2633 0.1144 5904 +5906 2 -17.06212159480262 -911.1287915647745 39.4355 0.1144 5905 +5907 2 -15.956185971354245 -911.4117587656792 39.6071 0.1144 5906 +5908 2 -14.815735826009188 -911.3338109242563 39.676 0.1144 5907 +5909 2 -13.675106682751846 -911.2517621122475 39.6393 0.1144 5908 +5910 2 -12.53439234664475 -911.169660934426 39.5139 0.1144 5909 +5911 2 -11.396480762368213 -911.0852915894643 39.3347 0.1144 5910 +5912 2 -10.351573945409541 -910.6269503695491 39.13 0.1144 5911 +5913 2 -9.316561212823075 -910.1719910269877 38.703 0.1144 5912 +5914 2 -57.14475737139284 -963.4894041010236 76.1062 0.1144 5778 +5915 2 -56.93587581531065 -962.4048265493803 76.3496 0.1144 5914 +5916 2 -57.235763247393436 -961.3228560423521 76.6654 0.1144 5915 +5917 2 -57.6590957166718 -960.2671119112035 76.9488 0.1144 5916 +5918 2 -57.90308182390919 -959.1601707838281 77.1624 0.1144 5917 +5919 2 -58.02625526008197 -958.0246303818075 77.3158 0.1144 5918 +5920 2 -58.05533143863889 -956.8850112411116 77.4155 0.1144 5919 +5921 2 -57.97619418315182 -955.7446093537077 77.4721 0.1144 5920 +5922 2 -57.964815566547344 -954.6030129552008 77.5088 0.1144 5921 +5923 2 -58.07435504516957 -953.4657828190263 77.5477 0.1144 5922 +5924 2 -58.072379681847025 -952.3285577850336 77.597 0.1144 5923 +5925 2 -57.921156963795994 -951.196198663754 77.6924 0.1144 5924 +5926 2 -58.01162195097265 -950.0768238846496 77.8277 0.1144 5925 +5927 2 -58.32323386182688 -948.9778796745034 77.9604 0.1144 5926 +5928 2 -58.52823998152411 -947.857777598402 78.0822 0.1144 5927 +5929 2 -58.72745298743507 -946.7341146470345 78.2116 0.1144 5928 +5930 2 -58.77395226095058 -945.6010967003265 78.3703 0.1144 5929 +5931 2 -58.69828758629674 -944.4615381292081 78.5352 0.1144 5930 +5932 2 -58.541983022711776 -943.3328634137109 78.7514 0.1144 5931 +5933 2 -58.21877836222464 -942.2398740965447 78.9228 0.1144 5932 +5934 2 -58.09909491556027 -941.1108201772854 79.0426 0.1144 5933 +5935 2 -57.961327157147394 -939.9760498195735 79.1291 0.1144 5934 +5936 2 -57.707816261567615 -938.8613400251326 79.1874 0.1144 5935 +5937 2 -57.670955678124784 -937.72415263627 79.2492 0.1144 5936 +5938 2 -57.79479033108737 -936.5877274787142 79.3299 0.1144 5937 +5939 2 -58.00069213288262 -935.4640676289298 79.4094 0.1144 5938 +5940 2 -58.11940350106167 -934.3271930795336 79.4637 0.1144 5939 +5941 2 -58.071541326199224 -933.1859430577515 79.49 0.1144 5940 +5942 2 -58.269602284230075 -932.0641543490794 79.4917 0.1144 5941 +5943 2 -58.550700339478226 -930.9558445307816 79.4251 0.1144 5942 +5944 2 -58.594124058188356 -929.8169451758545 79.3296 0.1144 5943 +5945 2 -58.45479078867493 -928.6826211083999 79.2509 0.1144 5944 +5946 2 -58.546242853965595 -927.5463633296569 79.1958 0.1144 5945 +5947 2 -58.436362788193975 -926.4099538870939 79.1655 0.1144 5946 +5948 2 -58.3897902198743 -925.2667967955794 79.161 0.1144 5947 +5949 2 -58.39869291745484 -924.122759435186 79.1801 0.1144 5948 +5950 2 -58.61167743957887 -923.0007533909352 79.2126 0.1144 5949 +5951 2 -58.80661047699164 -921.873168466894 79.2515 0.1144 5950 +5952 2 -59.184106091496346 -920.7959403243773 79.3251 0.1144 5951 +5953 2 -59.66174464906561 -919.7587867492867 79.4973 0.1144 5952 +5954 2 -59.17300858259884 -918.7385947784624 79.5735 0.1144 5953 +5955 2 -58.78098212135103 -918.6466999272384 79.2798 0.1144 5954 +5956 2 -57.74088374911099 -918.2261764129568 79.0723 0.1144 5955 +5957 2 -56.695169544487214 -917.7647565366531 79.1126 0.1144 5956 +5958 2 -55.82013747139345 -917.0428442420791 79.0174 0.1144 5957 +5959 2 -54.86081042059209 -916.4343901192392 78.7402 0.1144 5958 +5960 2 -53.89156386864224 -916.9800300018846 78.4745 0.1144 5959 +5961 2 -52.75423822858042 -917.0409860389777 78.2583 0.1144 5960 +5962 2 -51.66442516127799 -916.7015332906653 78.129 0.1144 5961 +5963 2 -50.565301953219546 -916.3858204092251 78.0534 0.1144 5962 +5964 2 -49.49484849197353 -915.9843176355032 77.9635 0.1144 5963 +5965 2 -48.423733813937645 -915.5836996173161 77.8422 0.1144 5964 +5966 2 -47.32255977431791 -915.2801075481386 77.6891 0.1144 5965 +5967 2 -46.21392719627892 -915.0083189411098 77.5054 0.1144 5966 +5968 2 -45.696281122973346 -913.9891376653834 77.1509 0.1144 5967 +5969 2 -45.00070322744418 -913.0955826076219 76.7673 0.1144 5968 +5970 2 -44.31336010012407 -912.2018071126984 76.2986 0.1144 5969 +5971 2 -43.568034682495295 -911.3891852622436 75.8167 0.1144 5970 +5972 2 -42.56551065427945 -910.8857629019437 75.3141 0.1144 5971 +5973 2 -41.50619092718213 -910.5031939594217 74.8171 0.1144 5972 +5974 2 -40.44509076245177 -910.1235215737927 74.3425 0.1144 5973 +5975 2 -39.53066895570589 -909.5466604732255 73.9301 0.1144 5974 +5976 2 -38.90299956935803 -908.5995338336246 73.6268 0.1144 5975 +5977 2 -38.27729272013852 -907.6469228118325 73.3978 0.1144 5976 +5978 2 -37.60417119340863 -906.7256183126289 73.2035 0.1144 5977 +5979 2 -36.91247693288645 -905.8169606928618 73.0206 0.1144 5978 +5980 2 -36.24429969302787 -904.8920046149127 72.8451 0.1144 5979 +5981 2 -35.587758637507875 -903.956711263917 72.6802 0.1144 5980 +5982 2 -34.9322922619981 -903.0219611098245 72.5396 0.1144 5981 +5983 2 -34.28038676175444 -902.0814178419457 72.443 0.1144 5982 +5984 2 -33.98410564024195 -901.0735280726578 72.49 0.1144 5983 +5985 2 -34.24952200796142 -899.9689605365847 72.8095 0.1144 5984 +5986 2 -33.84442028827462 -899.2057100883655 73.414 0.1144 5985 +5987 2 -32.87729314042207 -898.6273235308743 73.8867 0.1144 5986 +5988 2 -31.934240930818675 -897.9965934222206 74.251 0.1144 5987 +5989 2 -30.95605982573386 -897.4142294246598 74.5186 0.1144 5988 +5990 2 -29.8681733669396 -897.0758435313778 74.695 0.1144 5989 +5991 2 -28.742641683506207 -896.8861635124314 74.8168 0.1144 5990 +5992 2 -27.60068659663807 -896.9134028144769 74.9232 0.1144 5991 +5993 2 -26.467520087693288 -897.0615468761395 75.0677 0.1144 5992 +5994 2 -25.355483311400405 -897.3152922370274 75.2718 0.1144 5993 +5995 2 -24.420909746173578 -897.9574857523942 75.5336 0.1144 5994 +5996 2 -23.80519390509258 -898.9110580270761 75.8212 0.1144 5995 +5997 2 -23.648918788015607 -900.0370507214496 76.0995 0.1144 5996 +5998 2 -23.26665547550536 -901.1046575825687 76.4431 0.1144 5997 +5999 2 -22.77267470615405 -902.1223755688062 76.8558 0.1144 5998 +6000 2 -21.962808059810158 -902.9002656736022 77.3651 0.1144 5999 +6001 2 -21.032205731486755 -903.5447828235052 77.7857 0.1144 6000 +6002 2 -20.093671855919553 -904.1804337138631 78.1511 0.1144 6001 +6003 2 -19.14368768962882 -904.7930826294721 78.4812 0.1144 6002 +6004 2 -18.22298394431195 -904.9670009820387 78.7875 0.1144 6003 +6005 2 -18.73313214722137 -905.7384779947022 79.5819 0.1144 6004 +6006 2 -19.063620634065444 -905.419276302878 80.4258 0.1144 6005 +6007 2 -18.982511631396903 -904.3300142454804 81.2137 0.1144 6006 +6008 2 -18.83671171967123 -903.2453583019937 82.0333 0.1144 6007 +6009 2 -18.690186511547154 -902.1643648638155 82.8752 0.1144 6008 +6010 2 -17.708313098688706 -901.7648407329779 83.7878 0.1144 6009 +6011 2 -16.634890501109624 -901.6019086704285 84.6714 0.1144 6010 +6012 2 -15.54815569943267 -901.5784589193817 85.5081 0.1144 6011 +6013 2 -14.539556757187142 -902.0112874578368 86.2982 0.1144 6012 +6014 2 -13.587680934383087 -902.56361372732 87.0615 0.1144 6013 +6015 2 -12.6348679902313 -903.115363972863 87.8237 0.1144 6014 +6016 2 -11.841808662502899 -904.141281100463 88.1748 0.1144 6015 +6017 2 -11.146002930400442 -905.041633272212 88.4584 0.1144 6016 +6018 2 -10.398170896246938 -905.8979160226478 88.7687 0.1144 6017 +6019 2 -9.547772779408348 -906.6521836826183 89.0736 0.1144 6018 +6020 2 -8.830983769617887 -907.5276651475526 89.4824 0.1144 6019 +6021 2 -8.17518033925316 -908.4418066577806 89.9909 0.1144 6020 +6022 2 -7.465347417692044 -909.3147557648126 90.487 0.1144 6021 +6023 2 -6.725847058393214 -910.1681778869755 90.9437 0.1144 6022 +6024 2 -6.08518762928378 -911.0903368298336 91.4656 0.1144 6023 +6025 2 -5.49452829393644 -911.9639975188696 92.5509 0.1144 6024 +6026 2 -11.951476578723913 -902.4401154418183 88.9787 0.1144 6015 +6027 2 -11.175531188790444 -901.6664236221375 89.7854 0.1144 6026 +6028 2 -10.973145011771152 -900.9054663727788 91.1666 0.1144 6027 +6029 2 -11.50433814524564 -901.4656819339243 92.7814 0.1144 6028 +6030 2 -11.66650599301019 -902.3401925451528 94.5311 0.1144 6029 +6031 2 -11.851191187599568 -903.1908647610501 96.3099 0.1144 6030 +6032 2 -11.593509949686904 -903.6058797844262 98.7311 0.1144 6031 +6033 2 -11.89604296485777 -903.3474354098856 101.1338 0.1144 6032 +6034 2 -12.223702372067095 -902.6745872896778 103.024 0.1144 6033 +6035 2 -12.156795750671762 -902.0667473156605 105.2299 0.1144 6034 +6036 2 -12.53265357640953 -901.5230643705245 107.3957 0.1144 6035 +6037 2 -13.061237162090407 -900.8596249965431 109.275 0.1144 6036 +6038 2 -13.65392091220562 -900.2274870429686 111.043 0.1144 6037 +6039 2 -14.595060328662413 -899.9439366086693 112.4416 0.1144 6038 +6040 2 -15.653746262051612 -899.9232652651267 113.4958 0.1144 6039 +6041 2 -16.739829056991738 -899.9019443238938 114.3708 0.1144 6040 +6042 2 -17.777348920660927 -899.8830527254477 115.5484 0.1144 6041 +6043 2 -45.68577668389841 -914.8474247949384 77.9027 0.1144 5967 +6044 2 -44.60420630448118 -914.5358104750376 78.3348 0.1144 6043 +6045 2 -43.4858463283461 -914.31708520494 78.4767 0.1144 6044 +6046 2 -42.34593627832106 -914.2447514793912 78.5333 0.1144 6045 +6047 2 -41.2037138991077 -914.2745262409221 78.6198 0.1144 6046 +6048 2 -40.13433471513096 -914.6095436746135 79.0023 0.1144 6047 +6049 2 -39.15827273519736 -915.1509942922401 79.5992 0.1144 6048 +6050 2 -38.10937507125536 -915.5160909103797 80.2553 0.1144 6049 +6051 2 -37.00851486541217 -915.3256120212845 80.8559 0.1144 6050 +6052 2 -35.94643003161437 -914.980196466023 81.4568 0.1144 6051 +6053 2 -34.87397228023843 -914.7064631441316 82.159 0.1144 6052 +6054 2 -33.76970557376913 -914.6305668268067 82.8537 0.1144 6053 +6055 2 -32.65900705272327 -914.7226798299414 83.4655 0.1144 6054 +6056 2 -31.603400077496133 -915.0352915441363 84.0358 0.1144 6055 +6057 2 -30.783333716768254 -915.8015126375567 84.5368 0.1144 6056 +6058 2 -29.822847307664773 -916.3875166118842 84.8901 0.1144 6057 +6059 2 -28.74107932654357 -916.7470813001128 85.1094 0.1144 6058 +6060 2 -27.653647965318896 -917.100582480627 85.2505 0.1144 6059 +6061 2 -26.557803530509375 -917.4261405011042 85.2894 0.1144 6060 +6062 2 -25.460980535102294 -917.7469887000182 85.2782 0.1144 6061 +6063 2 -24.393460180601835 -918.1421912211731 85.4938 0.1144 6062 +6064 2 -23.360713418893482 -918.5749667012789 86.0471 0.1144 6063 +6065 2 -22.318592845268483 -918.9334299909301 86.7846 0.1144 6064 +6066 2 -21.238068006269827 -918.9850474521902 87.5711 0.1144 6065 +6067 2 -20.187187378787854 -918.6935885069115 88.342 0.1144 6066 +6068 2 -19.166234662697093 -918.2661697877297 89.0487 0.1144 6067 +6069 2 -18.10271335894467 -917.9427605168904 89.6717 0.1144 6068 +6070 2 -16.993428383405984 -917.9430116025123 90.2056 0.1144 6069 +6071 2 -15.878513565022331 -918.1292546902998 90.6209 0.1144 6070 +6072 2 -14.746525443739984 -918.2122724792108 90.8975 0.1144 6071 +6073 2 -13.6202623554382 -918.0652216175035 91.0832 0.1144 6072 +6074 2 -12.504992654791181 -917.8174073426549 91.2318 0.1144 6073 +6075 2 -11.390034787322179 -917.5645026100598 91.3405 0.1144 6074 +6076 2 -10.330589120661898 -917.1536848774888 91.5183 0.1144 6075 +6077 2 -9.341848920295291 -916.5995751806065 91.859 0.1144 6076 +6078 2 -8.276719961677856 -916.7157076545944 92.3586 0.1144 6077 +6079 2 -7.237695458259196 -917.1325341548264 92.9214 0.1144 6078 +6080 2 -6.349983471050109 -917.8142139020429 93.4458 0.1144 6079 +6081 2 -5.497802507531986 -918.5540042881777 93.9109 0.1144 6080 +6082 2 -4.683925594081444 -919.3428107915436 94.2948 0.1144 6081 +6083 2 -4.102319719956171 -920.3174669499824 94.5605 0.1144 6082 +6084 2 -3.747946509133641 -921.4008085569797 94.7279 0.1144 6083 +6085 2 -3.5988479174480688 -922.53250366166 94.8259 0.1144 6084 +6086 2 -3.370184809378287 -923.6515631922516 94.9298 0.1144 6085 +6087 2 -3.2617200107663393 -924.789336525329 95.0121 0.1144 6086 +6088 2 -3.2419947196785586 -925.933412223389 95.0494 0.1144 6087 +6089 2 -3.2355946545464462 -927.077579317465 95.0432 0.1144 6088 +6090 2 -3.2298558062041423 -928.2208616560059 94.9911 0.1144 6089 +6091 2 -3.2240317650120858 -929.3640916287342 94.89 0.1144 6090 +6092 2 -3.602667843103177 -930.4346930486696 94.6943 0.1144 6091 +6093 2 -4.141838674489861 -931.4362338938586 94.4124 0.1144 6092 +6094 2 -4.627046692727646 -932.4623565371317 94.0607 0.1144 6093 +6095 2 -4.834329218135537 -933.571305446983 93.6258 0.1144 6094 +6096 2 -5.012552464246312 -934.6839904358931 93.1496 0.1144 6095 +6097 2 -5.013199883359505 -935.8122999461111 92.7044 0.1144 6096 +6098 2 -4.4858087015090575 -936.8188718865637 92.3902 0.1144 6097 +6099 2 -3.8641590863962563 -937.7756049089007 92.1824 0.1144 6098 +6100 2 -3.2461610500289453 -938.737282218109 92.0618 0.1144 6099 +6101 2 -2.6275869897215216 -939.6998966486651 92.006 0.1144 6100 +6102 2 -2.010035243611668 -940.663139468974 91.9901 0.1144 6101 +6103 2 -1.389193016164029 -941.6229511476995 91.9901 0.1144 6102 +6104 2 -0.7677223989635422 -942.5837851406225 91.9901 0.1144 6103 +6105 2 -59.34023593787643 -918.2196192572218 79.6278 0.1144 5954 +6106 2 -59.79230492671087 -917.169448495234 79.655 0.1144 6105 +6107 2 -60.3567166605562 -916.1748330898145 79.6648 0.1144 6106 +6108 2 -60.845571043540815 -915.1633545076207 79.6606 0.1144 6107 +6109 2 -60.829069142152804 -914.0213087172731 79.6519 0.1144 6108 +6110 2 -60.7261451646105 -912.882366916808 79.6527 0.1144 6109 +6111 2 -60.709334531627604 -911.7387227883228 79.6538 0.1144 6110 +6112 2 -60.76180350779504 -910.5959928567379 79.6555 0.1144 6111 +6113 2 -60.88675117843462 -909.4709334895924 79.6578 0.1144 6112 +6114 2 -61.22348636776616 -908.3834409552429 79.6611 0.1144 6113 +6115 2 -61.306651299034996 -907.2474888065117 79.6656 0.1144 6114 +6116 2 -61.24711460216736 -906.105753464269 79.6718 0.1144 6115 +6117 2 -61.3582579295568 -904.9788996313443 79.6802 0.1144 6116 +6118 2 -61.71156738693202 -903.8907958369713 79.693 0.1144 6117 +6119 2 -62.06228901900906 -902.8025099431028 79.7107 0.1144 6118 +6120 2 -62.46081004298816 -901.730223678411 79.7345 0.1144 6119 +6121 2 -62.85844631143223 -900.6572761969293 79.763 0.1144 6120 +6122 2 -63.232651444599156 -899.5766169128293 79.8098 0.1144 6121 +6123 2 -63.5046518765773 -898.4722228640389 79.8986 0.1144 6122 +6124 2 -63.64907347373682 -897.3416438786186 79.9901 0.1144 6123 +6125 2 -64.01876968372687 -896.2704206748376 80.0607 0.1144 6124 +6126 2 -64.59832541882747 -895.2838227020483 80.094 0.1144 6125 +6127 2 -64.99274167810086 -894.242466857766 80.0733 0.1144 6126 +6128 2 -64.94309906560542 -893.1041133928771 80.0685 0.1144 6127 +6129 2 -64.92867943774255 -891.9982096021555 80.1102 0.1144 6128 +6130 2 -65.37063941567243 -890.9471072294494 80.248 0.1144 6129 +6131 2 -65.77410403398625 -889.8952320126253 80.4488 0.1144 6130 +6132 2 -65.94899022252207 -888.7674150323226 80.6263 0.1144 6131 +6133 2 -66.19716249319526 -887.6603472728475 80.801 0.1144 6132 +6134 2 -66.61898491876889 -886.5982754432225 80.9416 0.1144 6133 +6135 2 -67.00682090790323 -885.5259946891603 81.0172 0.1144 6134 +6136 2 -67.3623985324187 -884.4406936466178 81.0827 0.1144 6135 +6137 2 -67.77779945445329 -883.3760832559241 81.1306 0.1144 6136 +6138 2 -67.96944131799165 -882.2691298169125 81.1437 0.1144 6137 +6139 2 -67.8974313236663 -881.1278267367811 81.1042 0.1144 6138 +6140 2 -67.88079968859572 -879.9882835788819 81.0407 0.1144 6139 +6141 2 -67.9899780698102 -878.8495402974197 80.9998 0.1144 6140 +6142 2 -68.11025494908995 -877.712219457766 80.9998 0.1144 6141 +6143 2 -68.0643491081897 -876.5788626455611 81.0306 0.1144 6142 +6144 2 -67.72902914606954 -875.4945075316783 81.0522 0.1144 6143 +6145 2 -67.27999664703142 -874.4423775469295 81.0642 0.1144 6144 +6146 2 -67.09040450892721 -873.3374943715805 81.0743 0.1144 6145 +6147 2 -67.29893247368724 -872.2248392147989 81.0972 0.1144 6146 +6148 2 -67.46019021530213 -871.1060175351871 81.2151 0.1144 6147 +6149 2 -67.62202087927406 -869.9929475301117 81.6175 0.1144 6148 +6150 2 -67.74598457338277 -868.8780823667207 82.15 0.1144 6149 +6151 2 -67.41596379237535 -867.8049664111487 82.5801 0.1144 6150 +6152 2 -67.46650856908107 -866.6785434552623 82.9296 0.1144 6151 +6153 2 -67.43495336991708 -865.539217632942 83.1883 0.1144 6152 +6154 2 -67.72860449953936 -864.445431943663 83.4988 0.1144 6153 +6155 2 -67.92015876118134 -863.3210523081098 83.7264 0.1144 6154 +6156 2 -67.99240729388046 -862.181089892272 83.8838 0.1144 6155 +6157 2 -68.10359747645305 -861.0434658316528 83.9944 0.1144 6156 +6158 2 -67.92651146855047 -860.5734351562655 84.028 0.1144 6157 +6159 2 -67.47841609086018 -859.5218811954568 84.0784 0.1144 6158 +6160 2 -67.46804368269741 -858.4640088528988 84.0868 0.1144 6159 +6161 2 -67.65830523621366 -857.3482250829624 84.0703 0.1144 6160 +6162 2 -67.61088935160868 -856.208540572281 84.0434 0.1144 6161 +6163 2 -67.5415000096186 -855.0675571503076 84.0092 0.1144 6162 +6164 2 -67.57081065348365 -853.9252649914637 83.967 0.1144 6163 +6165 2 -67.32858984960609 -852.8405015462054 83.8695 0.1144 6164 +6166 2 -67.02597523489885 -851.7466696052904 83.75 0.1144 6165 +6167 2 -66.82004088501259 -850.6223508410883 83.6506 0.1144 6166 +6168 2 -66.68993187086872 -849.4882971675621 83.566 0.1144 6167 +6169 2 -66.84102823576626 -848.3686290700819 83.4935 0.1144 6168 +6170 2 -67.07321629048198 -847.2503276629258 83.4299 0.1144 6169 +6171 2 -67.28570215653588 -846.1268413004241 83.3652 0.1144 6170 +6172 2 -67.62667587511598 -845.0391369411252 83.263 0.1144 6171 +6173 2 -67.98060279568102 -843.9542298230274 83.1312 0.1144 6172 +6174 2 -67.83988472948917 -842.8658894737582 82.9968 0.1144 6173 +6175 2 -67.44445084460932 -841.7943533415216 82.8442 0.1144 6174 +6176 2 -67.22015868746323 -840.6802311901204 82.7187 0.1144 6175 +6177 2 -67.14347169861182 -839.5400442292491 82.6423 0.1144 6176 +6178 2 -66.98275743284591 -838.4099501735266 82.6098 0.1144 6177 +6179 2 -66.7742352576615 -837.2854493098291 82.6134 0.1144 6178 +6180 2 -66.9353632655938 -836.1691302626658 82.6568 0.1144 6179 +6181 2 -67.16451720475385 -835.0490812449137 82.7543 0.1144 6180 +6182 2 -67.43500759302722 -833.9383594976467 82.8775 0.1144 6181 +6183 2 -67.8373177544143 -832.8709846927892 82.9976 0.1144 6182 +6184 2 -68.39914166296148 -831.8761871878744 83.0606 0.1144 6183 +6185 2 -68.98297736656036 -830.8935111877587 83.1393 0.1144 6184 +6186 2 -69.45205288554988 -829.8552024632048 83.3549 0.1144 6185 +6187 2 -69.81480703545674 -828.7756038309691 83.6189 0.1144 6186 +6188 2 -70.08881926879289 -827.6723290030218 83.9289 0.1144 6187 +6189 2 -70.54676346268025 -826.6324602779969 84.2346 0.1144 6188 +6190 2 -70.87565780824738 -825.5468388847598 84.5883 0.1144 6189 +6191 2 -71.15951176014306 -824.4470311270162 84.9184 0.1144 6190 +6192 2 -71.69554807183988 -823.4483554977238 85.2726 0.1144 6191 +6193 2 -72.2893490245147 -822.4800215271318 85.5994 0.1144 6192 +6194 2 -72.69820421995726 -821.4260602426627 86.0188 0.1144 6193 +6195 2 -72.36972011223236 -821.0079343394085 86.5774 0.1144 6194 +6196 2 -71.44973794049855 -820.3834028880854 87.061 0.1144 6195 +6197 2 -70.5682843638657 -819.6589520324428 87.2245 0.1144 6196 +6198 2 -69.80238362113974 -818.8122023927665 87.3303 0.1144 6197 +6199 2 -69.10966704642007 -817.9029163832466 87.4056 0.1144 6198 +6200 2 -68.48943906876221 -816.9415828637382 87.4516 0.1144 6199 +6201 2 -67.80161441510111 -816.0287304683227 87.4712 0.1144 6200 +6202 2 -67.08206769802129 -815.1392233227979 87.4667 0.1144 6201 +6203 2 -66.4345304607088 -814.1959655975213 87.4527 0.1144 6202 +6204 2 -65.9452574005052 -813.1634707149389 87.4297 0.1144 6203 +6205 2 -65.70983391825698 -812.0477885630667 87.3933 0.1144 6204 +6206 2 -65.71502956969624 -810.905580904536 87.3729 0.1144 6205 +6207 2 -65.4022535782716 -809.8109025457528 87.3424 0.1144 6206 +6208 2 -64.46948937748519 -809.1852050184033 87.2029 0.1144 6207 +6209 2 -63.492203954498336 -808.5992832471595 86.9814 0.1144 6208 +6210 2 -62.515494555451596 -808.0124243545681 86.7177 0.1144 6209 +6211 2 -62.671529412502224 -806.8016524630108 86.5889 0.1144 6210 +6212 2 -62.56298039252309 -805.6674697483384 86.6023 0.1144 6211 +6213 2 -62.39807996332141 -804.5375023247154 86.688 0.1144 6212 +6214 2 -62.37267036313855 -803.3992542839886 86.8512 0.1144 6213 +6215 2 -62.48902526974453 -802.2662134128332 87.0778 0.1144 6214 +6216 2 -62.631528870608435 -801.1385638113429 87.3905 0.1144 6215 +6217 2 -62.572388507232006 -800.0158530037795 87.7568 0.1144 6216 +6218 2 -62.27079620672234 -798.9226494526175 88.0379 0.1144 6217 +6219 2 -61.86035046331628 -797.8579670860313 88.202 0.1144 6218 +6220 2 -61.47926722017266 -796.7804619436791 88.275 0.1144 6219 +6221 2 -61.2239235211471 -795.6687338989811 88.3002 0.1144 6220 +6222 2 -61.052025564466305 -794.5371650356376 88.3075 0.1144 6221 +6223 2 -60.8971927069195 -793.4039954251095 88.3168 0.1144 6222 +6224 2 -60.74298823912551 -792.2698035003841 88.3392 0.1144 6223 +6225 2 -60.57621356722828 -791.138684028881 88.3663 0.1144 6224 +6226 2 -60.37085524128213 -790.0134281433312 88.3758 0.1144 6225 +6227 2 -60.13208891188336 -788.8944000427254 88.3512 0.1144 6226 +6228 2 -59.88493854181715 -787.7783177632423 88.2938 0.1144 6227 +6229 2 -59.63668066470356 -786.6615547281937 88.2109 0.1144 6228 +6230 2 -59.389392735974866 -785.5455052757477 88.1096 0.1144 6229 +6231 2 -59.15734802949734 -784.4266178353874 87.9928 0.1144 6230 +6232 2 -58.948249830372816 -783.3030540930376 87.8615 0.1144 6231 +6233 2 -58.74966549316062 -782.1778536748837 87.7223 0.1144 6232 +6234 2 -58.55099596309864 -781.052600890917 87.584 0.1144 6233 +6235 2 -58.35392477117435 -779.9270393753552 87.4549 0.1144 6234 +6236 2 -58.12495872108525 -778.80734454733 87.3502 0.1144 6235 +6237 2 -57.833652020345994 -777.7017997467432 87.2883 0.1144 6236 +6238 2 -57.423206276939936 -776.637117380157 87.2836 0.1144 6237 +6239 2 -56.816303525237714 -775.6758752566644 87.3488 0.1144 6238 +6240 2 -56.21938625392366 -774.7046897845702 87.4824 0.1144 6239 +6241 2 -55.8270279238491 -773.6390350605525 87.6616 0.1144 6240 +6242 2 -55.25572707645293 -772.670096547661 87.85 0.1144 6241 +6243 2 -54.46415374987663 -771.8519365641291 88.0124 0.1144 6242 +6244 2 -53.63315276042957 -771.0671753739967 88.1426 0.1144 6243 +6245 2 -52.94969326811653 -770.1582973170676 88.226 0.1144 6244 +6246 2 -52.83806730825887 -769.0663584474023 88.2193 0.1144 6245 +6247 2 -52.9414088220872 -767.9281357224844 88.1269 0.1144 6246 +6248 2 -52.0840503083416 -767.5206335029716 88.0855 0.1144 6247 +6249 2 -50.947264053378206 -767.395285704721 88.1289 0.1144 6248 +6250 2 -49.8073546958897 -767.2988893525591 88.198 0.1144 6249 +6251 2 -48.6637636257538 -767.2915521660791 88.1521 0.1144 6250 +6252 2 -47.521955402297436 -767.298692253435 87.9939 0.1144 6251 +6253 2 -46.38312892858397 -767.3076651442366 87.7489 0.1144 6252 +6254 2 -45.246391624098464 -767.3153398162829 87.4395 0.1144 6253 +6255 2 -44.10687860010117 -767.2379679988002 87.2536 0.1144 6254 +6256 2 -43.73768432574295 -767.0848664384519 87.1847 0.1144 6255 +6257 2 -42.68203159061039 -766.6482087432178 87.0856 0.1144 6256 +6258 2 -41.62389576180507 -766.2111985627888 87.0537 0.1144 6257 +6259 2 -40.56730590532473 -765.7739648436147 87.0492 0.1144 6258 +6260 2 -39.51071604884439 -765.3367311244406 87.0537 0.1144 6259 +6261 2 -38.45258022003907 -764.8997209440117 87.0514 0.1144 6260 +6262 2 -37.395990363558724 -764.4624872248376 87.0461 0.1144 6261 +6263 2 -36.33931531422854 -764.0252011398508 87.0411 0.1144 6262 +6264 2 -35.28126467827309 -763.5882433252345 87.0363 0.1144 6263 +6265 2 -34.22458962894291 -763.1509572402476 87.0316 0.1144 6264 +6266 2 -33.167062651114804 -762.7131474971335 87.0274 0.1144 6265 +6267 2 -32.109863943657245 -762.2767133406446 87.0237 0.1144 6266 +6268 2 -31.05327408717693 -761.8394796214704 87.0209 0.1144 6267 +6269 2 -29.99566191649899 -761.4016175125436 87.0195 0.1144 6268 +6270 2 -28.939124425831352 -760.9642986005197 87.0195 0.1144 6269 +6271 2 -27.880936231213354 -760.5273736129406 87.022 0.1144 6270 +6272 2 -26.824346374732983 -760.0901398937664 87.0276 0.1144 6271 +6273 2 -25.767808884065374 -759.6528209817425 87.0377 0.1144 6272 +6274 2 -24.70962068944735 -759.2158959941634 87.054 0.1144 6273 +6275 2 -23.653030832967005 -758.7786622749893 87.0794 0.1144 6274 +6276 2 -22.596493342299397 -758.3413433629653 87.1175 0.1144 6275 +6277 2 -21.538305147681342 -757.9044183753862 87.1721 0.1144 6276 +6278 2 -20.481715291201 -757.4671846562121 87.246 0.1144 6277 +6279 2 -19.44537220535861 -756.9859359591471 87.3617 0.1144 6278 +6280 2 -18.437918610954142 -756.4511947646226 87.5384 0.1144 6279 +6281 2 -17.438482449179844 -755.9013095688429 87.7685 0.1144 6280 +6282 2 -16.440953357138085 -755.3527139796058 88.037 0.1144 6281 +6283 2 -15.444413752256878 -754.8046092214589 88.3294 0.1144 6282 +6284 2 -14.447874147375586 -754.2565044633122 88.6315 0.1144 6283 +6285 2 -13.450758518554238 -753.7093368265132 88.9291 0.1144 6284 +6286 2 -12.453281792325214 -753.1606560444263 89.2114 0.1144 6285 +6287 2 -11.454154362145886 -752.6123691867841 89.4723 0.1144 6286 +6288 2 -10.45565532171932 -752.0630600149444 89.7086 0.1144 6287 +6289 2 -9.358564430419818 -751.800948156709 89.8988 0.1144 6288 +6290 2 -8.234889469189795 -751.9468271528144 89.9996 0.1144 6289 +6291 2 -7.112568478199677 -752.1647885099007 90.0304 0.1144 6290 +6292 2 -5.988734341921713 -752.383110964395 90.0127 0.1144 6291 +6293 2 -4.866465716744358 -752.6009871286316 89.964 0.1144 6292 +6294 2 -3.7435687018141266 -752.8198856070658 89.9018 0.1144 6293 +6295 2 -2.620938979229038 -753.0362486260146 89.8425 0.1144 6294 +6296 2 -1.497104842951103 -753.2545710805086 89.7985 0.1144 6295 +6297 2 -0.3748362177736908 -753.4724472447454 89.7778 0.1144 6296 +6298 2 0.7490831113540537 -753.6907173334267 89.7879 0.1144 6297 +6299 2 1.8706905197415438 -753.9077087421283 89.8349 0.1144 6298 +6300 2 3.0060289994025595 -753.858491909632 89.9606 0.1144 6299 +6301 2 3.686195601331292 -752.9704188250153 90.2124 0.1144 6300 +6302 2 4.336988083898007 -752.0412413475468 90.5702 0.1144 6301 +6303 2 4.9862259819270776 -751.1158365702938 91.005 0.1144 6302 +6304 2 5.631407450203028 -750.1928077933896 91.4914 0.1144 6303 +6305 2 6.277845697984645 -749.2718236448804 92.006 0.1144 6304 +6306 2 6.944328385596577 -748.3679812708386 92.5352 0.1144 6305 +6307 2 8.066794132725647 -748.3306679150261 93.042 0.1144 6306 +6308 2 9.192638655625416 -748.2965598477015 93.5379 0.1144 6307 +6309 2 10.31845035148811 -748.2625893390396 94.0251 0.1144 6308 +6310 2 11.44531718858542 -748.2278528819622 94.5064 0.1144 6309 +6311 2 12.572151198645656 -748.1932539835473 94.9841 0.1144 6310 +6312 2 13.698624111298287 -748.1601682304204 95.4593 0.1144 6311 +6313 2 14.825458121358494 -748.1255693320055 95.9344 0.1144 6312 +6314 2 15.952239765606052 -748.0908852407409 96.4093 0.1144 6313 +6315 2 17.079649799606372 -748.0572234636738 96.8839 0.1144 6314 +6316 2 18.206483809666665 -748.0226245652591 97.358 0.1144 6315 +6317 2 19.333979036516794 -747.9889104223791 97.8306 0.1144 6316 +6318 2 20.460813046577087 -747.9543115239644 98.3027 0.1144 6317 +6319 2 21.588223080577407 -747.9206497468973 98.7728 0.1144 6318 +6320 2 22.715633114577784 -747.8869879698302 99.2412 0.1144 6319 +6321 2 23.842414758825313 -747.8523038785656 99.706 0.1144 6320 +6322 2 24.970847107023204 -747.8180137117456 100.1666 0.1144 6321 +6323 2 26.099279455221122 -747.7837235449258 100.6205 0.1144 6322 +6324 2 27.227626610569246 -747.7494857439186 101.0668 0.1144 6323 +6325 2 28.35820049380787 -747.716578988704 101.5014 0.1144 6324 +6326 2 29.481963056934177 -747.8450317882678 101.9124 0.1144 6325 +6327 2 30.60705976743607 -747.9779466558253 102.3036 0.1144 6326 +6328 2 31.732647309028224 -748.1118510105433 102.669 0.1144 6327 +6329 2 32.824035186473694 -748.4280581435514 102.9924 0.1144 6328 +6330 2 33.77664620826582 -749.0537649927709 103.2494 0.1144 6329 +6331 2 34.73121666560323 -749.6782674282974 103.4536 0.1144 6330 +6332 2 35.682080076799366 -750.3009401619613 103.7694 0.1144 6331 +6333 2 -43.236338924002325 -767.1097117227833 88.2 0.1144 6255 +6334 2 -42.3063230196459 -766.9731857265625 89.7842 0.1144 6333 +6335 2 -41.25858361872835 -766.9038638846584 90.8404 0.1144 6334 +6336 2 -40.19711034672781 -766.8677703557581 91.8826 0.1144 6335 +6337 2 -39.12547810705644 -766.8482042397183 92.8586 0.1144 6336 +6338 2 -38.02946599166057 -766.848631914206 93.6586 0.1144 6337 +6339 2 -36.91853031217141 -766.8492769242727 94.3286 0.1144 6338 +6340 2 -36.04835782997213 -767.1027337671928 92.9306 0.1144 6339 +6341 2 -35.512377991959454 -767.9441539138757 91.8627 0.1144 6340 +6342 2 -35.175658215847164 -768.972613408642 90.9572 0.1144 6341 +6343 2 -34.8528396896306 -770.0002271780766 90.015 0.1144 6342 +6344 2 -34.334870275864375 -770.945448647576 89.0814 0.1144 6343 +6345 2 -33.433140309249666 -771.5540698822606 88.2437 0.1144 6344 +6346 2 -32.47721588167235 -772.1064899568062 87.5146 0.1144 6345 +6347 2 -31.51331305166812 -772.6608139995012 86.8538 0.1144 6346 +6348 2 -31.397061160177714 -773.7522480276152 86.2428 0.1144 6347 +6349 2 -31.54935614919259 -774.867776515069 85.7371 0.1144 6348 +6350 2 -31.709224689626694 -775.9839693208958 85.2715 0.1144 6349 +6351 2 -31.868963496378143 -777.1026647591709 84.8375 0.1144 6350 +6352 2 -32.02901103472453 -778.2229585355838 84.4348 0.1144 6351 +6353 2 -31.802269024533416 -779.3323998863609 84.0543 0.1144 6352 +6354 2 -31.167620044789146 -780.2730432685785 83.6965 0.1144 6353 +6355 2 -30.548211878249532 -781.1934748321528 83.0155 0.1144 6354 +6356 2 -37.87548787954191 -767.3219910178349 94.8676 0.1144 6339 +6357 2 -38.887057165215055 -767.821582801477 95.3299 0.1144 6356 +6358 2 -39.91083555758382 -768.3165889866088 95.6245 0.1144 6357 +6359 2 -40.94450252369512 -768.80429201425 95.7466 0.1144 6358 +6360 2 -41.979735000907056 -769.2915487516335 95.7457 0.1144 6359 +6361 2 -43.01442428121595 -769.7798801690274 95.6572 0.1144 6360 +6362 2 -44.04712129894244 -770.2668696140657 95.5142 0.1144 6361 +6363 2 -45.080479533458856 -770.7529743035691 95.3534 0.1144 6362 +6364 2 -46.114146499570154 -771.2406773312101 95.2078 0.1144 6363 +6365 2 -46.92577406245641 -770.6760939988637 95.1446 0.1144 6364 +6366 2 -47.865295016137594 -770.0235601088673 95.1734 0.1144 6365 +6367 2 -48.803878848471044 -769.3704501949306 95.2739 0.1144 6366 +6368 2 -49.74233294712184 -768.7198429134423 95.4268 0.1144 6367 +6369 2 -50.678690051564786 -768.0680640452983 95.6318 0.1144 6368 +6370 2 -51.6145563249174 -767.4172746643146 95.8894 0.1144 6369 +6371 2 -52.55758509551538 -766.7830954799949 96.2094 0.1144 6370 +6372 2 -53.62860267180636 -766.5000283655577 96.6792 0.1144 6371 +6373 2 -54.73962974731148 -766.4860581295354 97.3134 0.1144 6372 +6374 2 -55.83875265359629 -766.5090232526582 98.0916 0.1144 6373 +6375 2 -56.920992560242496 -766.531001297667 98.9918 0.1144 6374 +6376 2 -57.987768807475476 -766.5475825623809 100.0017 0.1144 6375 +6377 2 -58.971217740698535 -766.4833647631157 101.4014 0.1144 6376 +6378 2 -58.924842596104156 -765.8881449499677 103.6174 0.1144 6377 +6379 2 -58.943368877454304 -765.1502912877153 105.5992 0.1144 6378 +6380 2 -59.325940530796544 -764.4010931496643 107.4959 0.1144 6379 +6381 2 -59.79694055102145 -763.6392252077294 109.2342 0.1144 6380 +6382 2 -60.840376064683056 -763.366084312165 110.0896 0.1144 6381 +6383 2 -61.94016849819681 -763.0994131603958 110.5003 0.1144 6382 +6384 2 -46.45438521996837 -771.547826078793 94.6865 0.1144 6364 +6385 2 -47.29390850128203 -772.3055459941526 94.274 0.1144 6384 +6386 2 -48.14091703958198 -773.0705666579564 94.0971 0.1144 6385 +6387 2 -48.98795840491897 -773.835724880423 93.8834 0.1144 6386 +6388 2 -49.83402982187113 -774.6001695202867 93.6502 0.1144 6387 +6389 2 -50.67916411747555 -775.3640381362104 93.4108 0.1144 6388 +6390 2 -51.525863924180584 -776.1274604618767 93.179 0.1144 6389 +6391 2 -52.37193534113277 -776.8919051017406 92.9636 0.1144 6390 +6392 2 -53.212343377981426 -777.6502862338899 92.5509 0.1144 6391 +6393 2 -62.445207352786326 -807.9759113549447 85.7503 0.1144 6210 +6394 2 -61.54587338736334 -807.4379043023548 84.6306 0.1144 6393 +6395 2 -60.791555770626616 -806.6049652090949 84.1148 0.1144 6394 +6396 2 -60.22733764355934 -805.6376805017368 83.5537 0.1144 6395 +6397 2 -59.52929786229495 -804.7721921345288 82.9276 0.1144 6396 +6398 2 -58.52591579711117 -804.3072127680323 82.2335 0.1144 6397 +6399 2 -57.43945618977048 -804.0933058452431 81.5318 0.1144 6398 +6400 2 -56.35233226405677 -803.8869724738731 80.827 0.1144 6399 +6401 2 -55.252337606409725 -803.7869392636483 80.1111 0.1144 6400 +6402 2 -54.14509115079608 -803.8274137807066 79.4562 0.1144 6401 +6403 2 -53.07170178870206 -803.5637894697198 78.8301 0.1144 6402 +6404 2 -52.117847500992355 -802.9855795010944 78.2286 0.1144 6403 +6405 2 -51.27488687492911 -802.244527658841 77.8078 0.1144 6404 +6406 2 -50.58982904447842 -801.3359583335068 77.5373 0.1144 6405 +6407 2 -49.92093442789752 -800.4427236264398 76.9474 0.1144 6406 +6408 2 -49.27287932717593 -799.587770044993 75.9825 0.1144 6407 +6409 2 -48.69763828209918 -799.4007477199646 75.3278 0.1144 6408 +6410 2 -47.658623486170825 -799.0615308220335 74.5111 0.1144 6409 +6411 2 -46.612611162763386 -798.7207124843817 73.7498 0.1144 6410 +6412 2 -45.55849380482948 -798.3776119514437 73.0503 0.1144 6411 +6413 2 -44.61849932776576 -797.7944224598633 72.3985 0.1144 6412 +6414 2 -44.172797364242 -796.7979826675471 71.778 0.1144 6413 +6415 2 -43.89627597639691 -795.7163159850315 71.1802 0.1144 6414 +6416 2 -43.18250455083751 -794.8720289236271 70.5874 0.1144 6415 +6417 2 -42.17467444580615 -794.394807623398 70.0389 0.1144 6416 +6418 2 -41.09635310847693 -794.0824906474576 69.5094 0.1144 6417 +6419 2 -39.99076556057844 -794.2273972861317 68.966 0.1144 6418 +6420 2 -38.86955728549165 -794.163976675311 68.4608 0.1144 6419 +6421 2 -37.7954782715307 -793.820696451924 68.0193 0.1144 6420 +6422 2 -36.72880543017618 -793.445697959238 67.5931 0.1144 6421 +6423 2 -35.69480339268773 -793.0196486235154 67.0127 0.1144 6422 +6424 2 -34.67345675215225 -792.5905792003833 66.3146 0.1144 6423 +6425 2 -34.47645764793759 -792.5702016897744 65.6785 0.1144 6424 +6426 2 -33.4378891422667 -792.232550302944 64.8586 0.1144 6425 +6427 2 -32.409445060719634 -791.8367974872485 64.1077 0.1144 6426 +6428 2 -31.413234010297685 -791.366835496214 63.3562 0.1144 6427 +6429 2 -30.43156732020688 -790.86003505268 62.6371 0.1144 6428 +6430 2 -29.378381572991117 -790.5068255088372 61.9696 0.1144 6429 +6431 2 -28.296751932058356 -790.2327366001678 61.3514 0.1144 6430 +6432 2 -27.211873249037524 -789.9593503475379 60.769 0.1144 6431 +6433 2 -26.126685834421778 -789.6843657567704 60.202 0.1144 6432 +6434 2 -25.056472633202105 -789.3676421802322 59.6456 0.1144 6433 +6435 2 -24.19034205573695 -788.6553097278057 59.0957 0.1144 6434 +6436 2 -23.270256176350927 -788.0964477461372 58.3898 0.1144 6435 +6437 2 -22.17736206129848 -787.9564091325916 57.6428 0.1144 6436 +6438 2 -21.091480886944453 -787.7589389191835 56.917 0.1144 6437 +6439 2 -19.990049066806222 -787.704974619994 56.2218 0.1144 6438 +6440 2 -18.877896661988018 -787.759923309305 55.6175 0.1144 6439 +6441 2 -17.75932686150213 -787.6551631477879 55.1113 0.1144 6440 +6442 2 -16.649565160030335 -787.455104416545 54.6431 0.1144 6441 +6443 2 -15.792007825508165 -786.9669567974715 54.0389 0.1144 6442 +6444 2 -15.300039438234563 -786.0307007075456 53.0471 0.1144 6443 +6445 2 -14.282310436444902 -786.1504970719152 52.0895 0.1144 6444 +6446 2 -13.253789679564562 -785.7330990692052 51.4178 0.1144 6445 +6447 2 -13.35479576177866 -785.8462454847727 50.8936 0.1144 6446 +6448 2 -13.831532646868027 -785.7283331766989 50.0559 0.1144 6447 +6449 2 -13.463348162286877 -784.7258983482368 49.5603 0.1144 6448 +6450 2 -12.627167728123794 -783.9715243816111 49.2167 0.1144 6449 +6451 2 -11.700384849088863 -783.3078332522988 48.993 0.1144 6450 +6452 2 -10.772218558448742 -782.6420005879459 48.8452 0.1144 6451 +6453 2 -9.843029953611051 -781.97553953384 48.7648 0.1144 6452 +6454 2 -8.91384134877336 -781.3090784797342 48.7304 0.1144 6453 +6455 2 -7.983767988400643 -780.6419562088386 48.7138 0.1144 6454 +6456 2 -7.054003359622897 -779.9764322760806 48.7001 0.1144 6455 +6457 2 -6.123877633437388 -779.3093951980347 48.6864 0.1144 6456 +6458 2 -5.1947742214495065 -778.6429865097416 48.6727 0.1144 6457 +6459 2 -4.264563302414274 -777.9758970658831 48.6592 0.1144 6458 +6460 2 -3.3348838664862512 -777.3104254989378 48.6461 0.1144 6459 +6461 2 -2.404758140300828 -776.6433884208918 48.6329 0.1144 6460 +6462 2 -1.475621901275872 -775.9768421739363 48.62 0.1144 6461 +6463 2 -0.5454961750903919 -775.3098050958904 48.6072 0.1144 6462 +6464 2 0.383692429747299 -774.6433440417846 48.5948 0.1144 6463 +6465 2 1.3143941798728065 -773.9772440850866 48.5831 0.1144 6464 +6466 2 2.2447871984034578 -773.3127424665261 48.5719 0.1144 6465 +6467 2 3.2515412383514217 -772.7879391099739 48.5626 0.1144 6466 +6468 2 4.321184210349173 -772.3828261967561 48.5551 0.1144 6467 +6469 2 5.391507937912536 -771.9788207905858 48.5489 0.1144 6468 +6470 2 6.461150909910373 -771.5737078773681 48.5433 0.1144 6469 +6471 2 7.531507464510781 -771.1695649125352 48.5374 0.1144 6470 +6472 2 8.601831192074144 -770.7655595063649 48.5296 0.1144 6471 +6473 2 9.671474164071896 -770.3604465931471 48.5195 0.1144 6472 +6474 2 10.741745525822552 -769.9563559941271 48.505 0.1144 6473 +6475 2 11.811440863633095 -769.551328273759 48.4845 0.1144 6474 +6476 2 12.88113620144361 -769.1463005533913 48.4562 0.1144 6475 +6477 2 13.951407563194238 -768.742209954371 48.4168 0.1144 6476 +6478 2 15.021678924944865 -768.338119355351 48.3608 0.1144 6477 +6479 2 16.09137426275541 -767.933091634983 48.2818 0.1144 6478 +6480 2 17.160708503158276 -767.529577059903 48.174 0.1144 6479 +6481 2 18.22938152677125 -767.125177729288 48.0323 0.1144 6480 +6482 2 19.275666244705548 -766.6753800091768 47.8097 0.1144 6481 +6483 2 20.299265639161973 -766.1844747946309 47.4799 0.1144 6482 +6484 2 21.374209899545406 -766.0434966506909 47.0361 0.1144 6483 +6485 2 22.46646711930657 -766.3000095273259 46.5352 0.1144 6484 +6486 2 23.572912704173007 -766.4833591598034 46.051 0.1144 6485 +6487 2 24.699636187889567 -766.5360420910207 45.5955 0.1144 6486 +6488 2 25.818957908644663 -766.4214292843811 45.1665 0.1144 6487 +6489 2 26.78579173812159 -765.9036741046107 44.737 0.1144 6488 +6490 2 27.476745697474 -765.0331507470521 44.2529 0.1144 6489 +6491 2 28.032940881281505 -764.0614070732834 43.6856 0.1144 6490 +6492 2 28.63954962207147 -763.1367337008987 42.9853 0.1144 6491 +6493 2 29.316120805187126 -762.2844415185004 42.1327 0.1144 6492 +6494 2 30.010292364663727 -761.46288362887 41.179 0.1144 6493 +6495 2 30.701440735147642 -760.6472923403085 40.1831 0.1144 6494 +6496 2 31.446910607141717 -759.8721435352722 39.2266 0.1144 6495 +6497 2 32.45370709262774 -759.4936878749725 38.4177 0.1144 6496 +6498 2 33.536946690797734 -759.2481893149837 37.7541 0.1144 6497 +6499 2 34.63213120490123 -759.0114296899039 37.1952 0.1144 6498 +6500 2 35.73346131798584 -758.7735922832309 36.7088 0.1144 6499 +6501 2 36.83768798796358 -758.5339744389247 36.2642 0.1144 6500 +6502 2 37.94249068188141 -758.2952937159663 35.8322 0.1144 6501 +6503 2 38.93792888818524 -757.7868363653158 35.3662 0.1144 6502 +6504 2 39.865608141854736 -757.1507656362996 34.8628 0.1144 6503 +6505 2 40.77965584702022 -756.4990108107081 34.3305 0.1144 6504 +6506 2 41.69160655797782 -755.8484275717726 33.7576 0.1144 6505 +6507 2 42.600798270704914 -755.1996575975071 33.1604 0.1144 6506 +6508 2 43.51150312871981 -754.5512487206493 32.5606 0.1144 6507 +6509 2 44.422516718329675 -753.9012415056538 31.9774 0.1144 6508 +6510 2 45.336203326087485 -753.2509998253502 31.4222 0.1144 6509 +6511 2 44.92867277817189 -752.8677595449574 29.7284 0.1144 6510 +6512 2 -12.73938124203184 -785.6438026560905 50.8326 0.1144 6446 +6513 2 -11.701960676369737 -785.4614473163242 49.737 0.1144 6512 +6514 2 -10.60187772428975 -785.3680505361709 49.0728 0.1144 6513 +6515 2 -9.487495489997912 -785.4310190671586 48.4901 0.1144 6514 +6516 2 -8.377561609305417 -785.3798106646166 47.8503 0.1144 6515 +6517 2 -7.293919474478031 -785.128665161717 47.2304 0.1144 6516 +6518 2 -6.2177780098561755 -784.8257873676786 46.6357 0.1144 6517 +6519 2 -5.141416108072264 -784.5146748054312 46.0664 0.1144 6518 +6520 2 -4.074513619502682 -784.1770969923509 45.4969 0.1144 6519 +6521 2 -3.016527347244363 -783.8141286084483 44.9081 0.1144 6520 +6522 2 -1.9616111191618018 -783.4463565979199 44.2957 0.1144 6521 +6523 2 -0.9100822790626353 -783.079375537864 43.6624 0.1144 6522 +6524 2 0.14193739212686296 -782.7133839649688 43.0181 0.1144 6523 +6525 2 1.1918155282756118 -782.3460089804682 42.3732 0.1144 6524 +6526 2 2.2743384422599036 -782.0928516762106 41.725 0.1144 6525 +6527 2 3.315659050458578 -781.7159468063286 41.0472 0.1144 6526 +6528 2 4.252792206712769 -781.1170263629899 40.4205 0.1144 6527 +6529 2 5.086310549290886 -780.367105852145 39.8952 0.1144 6528 +6530 2 5.636718129941869 -779.3882380187978 39.45 0.1144 6529 +6531 2 6.570596040941808 -778.7752373276511 39.0846 0.1144 6530 +6532 2 7.637791847887087 -778.37702813685 38.848 0.1144 6531 +6533 2 8.71118872120931 -777.9845151531895 38.7164 0.1144 6532 +6534 2 9.785522715879296 -777.5914261455889 38.682 0.1144 6533 +6535 2 10.709896767528363 -776.923816145186 39.6357 0.1144 6534 +6536 2 11.65546392121621 -776.3453005465487 40.3242 0.1144 6535 +6537 2 12.608019990170447 -775.7691797471513 40.9704 0.1144 6536 +6538 2 13.563963447108108 -775.1922679972813 41.575 0.1144 6537 +6539 2 14.524324431206594 -774.6114671017746 42.1159 0.1144 6538 +6540 2 15.49100218721864 -774.0279572594998 42.5737 0.1144 6539 +6541 2 16.459063354835877 -773.4423058821843 42.9755 0.1144 6540 +6542 2 17.429083957998444 -772.8554500911758 43.353 0.1144 6541 +6543 2 18.400755265111428 -772.2689882246121 43.7072 0.1144 6542 +6544 2 19.447671474381593 -771.8269016145828 44.0073 0.1144 6543 +6545 2 20.54420995872499 -771.518059628522 44.2316 0.1144 6544 +6546 2 21.64730509622342 -771.2240857391588 44.3982 0.1144 6545 +6547 2 22.75133735506961 -770.9295358258554 44.5236 0.1144 6546 +6548 2 23.856882759203614 -770.6353470099598 44.6242 0.1144 6547 +6549 2 24.961000210899613 -770.3407447308437 44.7154 0.1144 6548 +6550 2 26.06659798084638 -770.0466411077978 44.8132 0.1144 6549 +6551 2 27.170577873879807 -769.7520060016445 44.928 0.1144 6550 +6552 2 28.274610132725982 -769.4574560883412 45.0654 0.1144 6551 +6553 2 29.377705270224396 -769.163482198978 45.2306 0.1144 6552 +6554 2 30.47531843457807 -768.8540970160143 45.4446 0.1144 6553 +6555 2 31.55670060603002 -768.5009282188847 45.7579 0.1144 6554 +6556 2 32.63157297951001 -768.1436615527522 46.1496 0.1144 6555 +6557 2 33.702972772156855 -767.787238202905 46.5937 0.1144 6556 +6558 2 34.772859419515825 -767.4304537556501 47.0677 0.1144 6557 +6559 2 35.84229977661734 -767.0752348194958 47.5527 0.1144 6558 +6560 2 36.91053572002592 -766.7180564477962 48.0318 0.1144 6559 +6561 2 38.024527433229736 -766.496616720301 48.356 0.1144 6560 +6562 2 39.158520838952214 -766.4387188293381 48.6959 0.1144 6561 +6563 2 40.291359787747965 -766.3963205264085 49.072 0.1144 6562 +6564 2 41.36628452704072 -766.0391390531258 49.439 0.1144 6563 +6565 2 42.396749306247145 -765.5615035971398 49.7916 0.1144 6564 +6566 2 43.53023205801503 -765.5791606479911 50.1357 0.1144 6565 +6567 2 44.64323809015612 -765.8081297996632 50.4776 0.1144 6566 +6568 2 45.75482788365498 -766.0393780450387 50.8096 0.1144 6567 +6569 2 46.87988625649018 -766.1831155061035 51.1818 0.1144 6568 +6570 2 48.00642764071138 -766.2332106120226 51.6516 0.1144 6569 +6571 2 49.12847102831873 -766.2780886280956 52.1856 0.1144 6570 +6572 2 50.24810869012329 -766.3257365689622 52.7526 0.1144 6571 +6573 2 51.36618084082724 -766.3729382195713 53.3257 0.1144 6572 +6574 2 52.47573551775767 -766.3583509339499 53.993 0.1144 6573 +6575 2 53.490167521291596 -766.341781980872 55.2863 0.1144 6574 +6576 2 10.260478458820955 -777.2632126445766 36.717 0.1144 6534 +6577 2 11.023568228266612 -776.7350014616513 35.1176 0.1144 6576 +6578 2 11.90483770480543 -776.1261664185395 34.2082 0.1144 6577 +6579 2 12.889647728733593 -775.6726027992195 33.3463 0.1144 6578 +6580 2 13.8893583923076 -775.2891121485688 32.361 0.1144 6579 +6581 2 14.919143830684703 -775.0616804865109 31.2889 0.1144 6580 +6582 2 15.950184332057574 -774.87772991019 30.161 0.1144 6581 +6583 2 16.950253080445464 -775.0955954616154 28.9447 0.1144 6582 +6584 2 17.256483132493685 -774.8925738981732 27.9983 0.1144 6583 +6585 2 18.167420739306806 -774.2882744968052 27.1702 0.1144 6584 +6586 2 19.157929379422 -773.8111359803793 26.3944 0.1144 6585 +6587 2 20.194702726777223 -773.4356176236856 25.6501 0.1144 6586 +6588 2 20.83277165457403 -772.546658067024 24.8702 0.1144 6587 +6589 2 21.381669884056805 -771.5981805587663 24.0662 0.1144 6588 +6590 2 21.92750038371412 -770.6531146533164 23.2282 0.1144 6589 +6591 2 22.47180991310364 -769.7101574558701 22.3671 0.1144 6590 +6592 2 23.01777014644358 -768.7675941828686 21.5111 0.1144 6591 +6593 2 23.56761642383711 -767.8227596411436 20.684 0.1144 6592 +6594 2 24.164948543444723 -766.8982714698375 19.9182 0.1144 6593 +6595 2 24.780638470312155 -765.9839799113322 19.1841 0.1144 6594 +6596 2 25.354610335257732 -765.1330105709616 17.9494 0.1144 6595 +6597 2 16.970622476278976 -776.0069787551387 26.896 0.1144 6583 +6598 2 16.521618003869946 -776.8777382648523 25.8177 0.1144 6597 +6599 2 15.590651973993005 -776.9384334147012 24.885 0.1144 6598 +6600 2 14.70069954449906 -776.3709337025974 23.8498 0.1144 6599 +6601 2 13.934936863015508 -775.6034958838478 22.9608 0.1144 6600 +6602 2 13.210592124071582 -774.7703379461408 22.2341 0.1144 6601 +6603 2 12.144770412004164 -774.7271725886687 21.5592 0.1144 6602 +6604 2 11.382870033795115 -775.5151205524868 20.7539 0.1144 6603 +6605 2 -34.66998036522128 -793.0396539321753 66.5731 0.1144 6424 +6606 2 -34.70221701248738 -794.153809620835 67.1801 0.1144 6605 +6607 2 -34.76309706678367 -795.2454274472692 67.9846 0.1144 6606 +6608 2 -34.01394188882881 -795.9115617575576 68.9478 0.1144 6607 +6609 2 -32.98882113334162 -795.7353582199386 70.1142 0.1144 6608 +6610 2 -50.199163349334384 -798.9285083289092 74.415 0.1144 6408 +6611 2 -51.08990024204604 -798.2942316401034 73.645 0.1144 6610 +6612 2 -52.00750010415484 -797.6403136459651 73.1648 0.1144 6611 +6613 2 -52.91913336519485 -796.9894188408193 72.5914 0.1144 6612 +6614 2 -53.78354395080942 -796.2975246585361 71.9188 0.1144 6613 +6615 2 -54.396837960331794 -795.424278125257 71.111 0.1144 6614 +6616 2 -54.81689977113669 -794.4416472814996 70.135 0.1144 6615 +6617 2 -55.57138835999959 -793.9547450127889 68.8542 0.1144 6616 +6618 2 -56.289962417874364 -794.5334169866646 67.5335 0.1144 6617 +6619 2 -57.300677472677364 -794.6215337160329 66.4065 0.1144 6618 +6620 2 -58.35492326821009 -794.4006987265009 65.4668 0.1144 6619 +6621 2 -59.42437122552906 -794.2752481920808 64.5282 0.1144 6620 +6622 2 -60.51592368197774 -794.2908602009463 63.6964 0.1144 6621 +6623 2 -61.60648185085796 -794.4872142950944 63.014 0.1144 6622 +6624 2 -62.71144031646702 -794.3673925972308 62.4319 0.1144 6623 +6625 2 -63.53858939752379 -793.6028253093439 61.9447 0.1144 6624 +6626 2 -64.3687233299066 -792.8334020290185 61.5297 0.1144 6625 +6627 2 -65.1994856520422 -792.0629564344955 61.1593 0.1144 6626 +6628 2 -66.07286792136387 -791.3388976926558 60.7989 0.1144 6627 +6629 2 -66.99875491749458 -790.6846740685057 60.4198 0.1144 6628 +6630 2 -67.92166016388234 -790.0286176409097 60.0138 0.1144 6629 +6631 2 -68.84375492102191 -789.3761713528096 59.5742 0.1144 6630 +6632 2 -68.23117137539833 -788.3496951233569 59.5661 0.1144 6631 +6633 2 -67.74987191721362 -787.4965291889977 58.119 0.1144 6632 +6634 2 -67.32346178071438 -786.4971576037049 57.2524 0.1144 6633 +6635 2 -66.80706666253315 -785.5916655320009 56.1478 0.1144 6634 +6636 2 -66.04955437011967 -784.8775475397599 55.0108 0.1144 6635 +6637 2 -65.20379919599057 -784.2435899107074 53.9473 0.1144 6636 +6638 2 -64.38315289340781 -783.5296355031594 53.107 0.1144 6637 +6639 2 -63.51714584645913 -782.8281780100529 52.5395 0.1144 6638 +6640 2 -62.49384287196142 -782.3912153773438 52.1326 0.1144 6639 +6641 2 -61.36908913482779 -782.274554840726 51.8126 0.1144 6640 +6642 2 -60.23329816174311 -782.2371500888974 51.5239 0.1144 6641 +6643 2 -59.15292840189912 -781.9543277559486 51.2439 0.1144 6642 +6644 2 -58.289062889991044 -781.2514868512369 50.9779 0.1144 6643 +6645 2 -57.7957265043315 -780.2540561866871 50.7086 0.1144 6644 +6646 2 -57.39227518682142 -779.1976640557057 50.4347 0.1144 6645 +6647 2 -56.848289802246086 -778.1972721568138 50.1847 0.1144 6646 +6648 2 -56.57573965130433 -777.1179291088345 49.9472 0.1144 6647 +6649 2 -56.57831154882524 -775.98209058803 49.6588 0.1144 6648 +6650 2 -56.643512597279056 -774.8579857560501 49.1789 0.1144 6649 +6651 2 -57.07623049757356 -773.8482721982701 48.5719 0.1144 6650 +6652 2 -57.660101437256 -772.883107587546 48.1032 0.1144 6651 +6653 2 -57.89655543232391 -771.7796359394206 47.8022 0.1144 6652 +6654 2 -57.49542464776684 -770.72596136742 47.7291 0.1144 6653 +6655 2 -56.727297177150376 -769.8805427735363 47.6983 0.1144 6654 +6656 2 -55.97222453856122 -769.0444398310382 47.6221 0.1144 6655 +6657 2 -55.7401798320837 -767.9255523906779 47.6196 0.1144 6656 +6658 2 -55.401869508007906 -766.8353682343889 47.6067 0.1144 6657 +6659 2 -55.219060663386955 -765.7104741387833 47.6888 0.1144 6658 +6660 2 -54.582318987262965 -764.8544927325094 48.3361 0.1144 6659 +6661 2 -53.68265405833421 -764.2209690820781 49.0986 0.1144 6660 +6662 2 -52.789951420801 -763.5715354819763 49.833 0.1144 6661 +6663 2 -52.075063183444996 -762.7466340526588 50.6464 0.1144 6662 +6664 2 -51.45311913185125 -761.862186520757 51.5586 0.1144 6663 +6665 2 -50.94383617536428 -760.8884074286464 52.3382 0.1144 6664 +6666 2 -50.25011229121836 -760.0202897968904 53.0051 0.1144 6665 +6667 2 -49.33187462849739 -759.3994130258958 53.6724 0.1144 6666 +6668 2 -48.3937519850827 -758.8000017514668 54.325 0.1144 6667 +6669 2 -47.45251785824243 -758.2012603060404 54.9455 0.1144 6668 +6670 2 -46.44972343609831 -757.7070622011101 55.51 0.1144 6669 +6671 2 -45.32107375232147 -757.657848470197 55.9544 0.1144 6670 +6672 2 -44.18715702193228 -757.6215957662487 56.3142 0.1144 6671 +6673 2 -43.04919168676989 -757.5854368673629 56.5992 0.1144 6672 +6674 2 -41.919726411563175 -757.4283184340006 56.835 0.1144 6673 +6675 2 -41.01500597688283 -756.7352271592958 57.0657 0.1144 6674 +6676 2 -40.05327320027868 -756.1240031116624 57.2911 0.1144 6675 +6677 2 -39.08138076346708 -755.5533691035027 57.7744 0.1144 6676 +6678 2 -69.14652961095541 -788.9511948744773 59.2166 0.1144 6631 +6679 2 -69.79355197462485 -788.0450372773058 58.5738 0.1144 6678 +6680 2 -70.43777158646375 -787.1411478472746 57.8953 0.1144 6679 +6681 2 -71.43423430322738 -786.7653015168414 57.1724 0.1144 6680 +6682 2 -72.49860452288391 -786.4863650984443 56.4068 0.1144 6681 +6683 2 -73.2919659882781 -785.7922342856808 55.4403 0.1144 6682 +6684 2 -74.0108523710613 -785.0202806480517 54.3656 0.1144 6683 +6685 2 -74.95189087967543 -784.5029631292053 53.4061 0.1144 6684 +6686 2 -75.97953658851105 -784.1636565169625 52.4983 0.1144 6685 +6687 2 -77.01665981691536 -783.8329926255196 51.6477 0.1144 6686 +6688 2 -78.12478723394435 -783.8239307477485 50.9488 0.1144 6687 +6689 2 -79.24122270884399 -783.766215235227 50.3622 0.1144 6688 +6690 2 -80.36314325847144 -783.6863996332208 49.8557 0.1144 6689 +6691 2 -81.49181997456711 -783.6482987074648 49.3984 0.1144 6690 +6692 2 -82.5766894475349 -783.9673404079097 48.9773 0.1144 6691 +6693 2 -83.66177074545197 -784.2906206376028 48.5794 0.1144 6692 +6694 2 -84.77304489967506 -784.5143808980511 48.1961 0.1144 6693 +6695 2 -85.90198790182757 -784.6242260066851 47.8335 0.1144 6694 +6696 2 -85.56294188703336 -784.9529575838909 46.7572 0.1144 6695 +6697 2 -84.69536954176837 -785.1542522826074 45.5339 0.1144 6696 +6698 2 -83.62854303599553 -784.8623822831548 44.9106 0.1144 6697 +6699 2 -82.56803391766158 -784.7395501215254 44.1801 0.1144 6698 +6700 2 -82.29703296442287 -785.1651587837301 42.973 0.1144 6699 +6701 2 -83.35863497579584 -784.9300645484777 42.1165 0.1144 6700 +6702 2 -84.44974284081198 -784.7695669257542 41.3725 0.1144 6701 +6703 2 -85.48958293566051 -784.4606451279715 40.6314 0.1144 6702 +6704 2 -86.10137200365975 -783.6925857381606 39.9294 0.1144 6703 +6705 2 -86.10502328063163 -783.4047822667144 38.729 0.1144 6704 +6706 2 -86.70377714951113 -784.3422345665685 38.0694 0.1144 6705 +6707 2 -86.59737769035883 -784.5306107728476 37.6463 0.1144 6706 +6708 2 -85.97019724061269 -784.7601744752403 35.7003 0.1144 6707 +6709 2 -85.57821983081013 -783.7725773254851 34.6828 0.1144 6708 +6710 2 -85.17972341298261 -782.8347334925478 33.5476 0.1144 6709 +6711 2 -84.40629806931537 -782.1203420047954 32.5296 0.1144 6710 +6712 2 -83.44604691902398 -781.6508855655338 31.5708 0.1144 6711 +6713 2 -82.55056645470617 -781.1917794034916 30.693 0.1144 6712 +6714 2 -82.44147184646249 -780.2572781159312 29.8096 0.1144 6713 +6715 2 -83.17064545653668 -780.1239778294673 28.4236 0.1144 6714 +6716 2 -83.31901285613822 -779.9372177835917 25.802 0.1144 6715 +6717 2 -87.25461989305029 -784.0054143743439 37.4503 0.1144 6706 +6718 2 -88.27429951109517 -783.6156674865515 36.6405 0.1144 6717 +6719 2 -89.35831886106419 -783.3660638429628 36.0052 0.1144 6718 +6720 2 -90.47728979544925 -783.3086156227865 35.4707 0.1144 6719 +6721 2 -91.5100881117814 -783.7125617674413 34.9597 0.1144 6720 +6722 2 -92.49260293625044 -784.2506372915999 34.4008 0.1144 6721 +6723 2 -93.54386207495797 -784.6027799804123 33.7324 0.1144 6722 +6724 2 -94.62890714248122 -784.6398636890096 32.8927 0.1144 6723 +6725 2 -95.69795906808264 -784.7881363782278 31.9729 0.1144 6724 +6726 2 -96.31296175212968 -785.6401458550619 30.9938 0.1144 6725 +6727 2 -96.0711294915692 -786.693359327133 30.1092 0.1144 6726 +6728 2 -96.16766420674725 -787.4603851863877 28.0456 0.1144 6727 +6729 2 -86.49307150830589 -784.5605184706117 47.5149 0.1144 6695 +6730 2 -87.6229328152302 -784.4439136803358 47.1934 0.1144 6729 +6731 2 -88.7564457009 -784.3322531769311 46.9216 0.1144 6730 +6732 2 -89.8796890925552 -784.1498382567548 46.6374 0.1144 6731 +6733 2 -89.63629321538264 -784.0258181899294 45.7055 0.1144 6732 +6734 2 -88.84778003039244 -783.2725726541997 45.5193 0.1144 6733 +6735 2 -88.48010720605424 -782.1952112736764 45.5521 0.1144 6734 +6736 2 -88.49444192001327 -781.0532216432612 45.598 0.1144 6735 +6737 2 -88.62180151962184 -779.917554609141 45.6604 0.1144 6736 +6738 2 -88.76510699752129 -778.7822986291945 45.7492 0.1144 6737 +6739 2 -88.980541786281 -777.6605075114761 45.8867 0.1144 6738 +6740 2 -89.25090244087173 -776.5522883966576 46.0785 0.1144 6739 +6741 2 -89.33762514582355 -775.4172319300243 46.3411 0.1144 6740 +6742 2 -88.71584026927779 -774.4603409397339 46.5542 0.1144 6741 +6743 2 -88.41036433376104 -773.3822399505774 47.117 0.1144 6742 +6744 2 -90.90520967387963 -784.0215671482384 46.4744 0.1144 6732 +6745 2 -92.0478783433504 -783.9933578978081 46.4341 0.1144 6744 +6746 2 -93.18841678312836 -784.0646693091594 46.445 0.1144 6745 +6747 2 -94.32886382689027 -784.1493059464664 46.4618 0.1144 6746 +6748 2 -95.47254319145905 -784.1500067028749 46.4738 0.1144 6747 +6749 2 -96.61568486975443 -784.1624671741383 46.4674 0.1144 6748 +6750 2 -97.75403112518887 -784.2766836472867 46.4372 0.1144 6749 +6751 2 -98.88175670947568 -784.4648950617782 46.3781 0.1144 6750 +6752 2 -100.01117202791616 -784.6394725187192 46.3016 0.1144 6751 +6753 2 -101.15005596962406 -784.7419292770124 46.2367 0.1144 6752 +6754 2 -102.29104069965945 -784.8148061994644 46.1997 0.1144 6753 +6755 2 -103.42563546281593 -784.9589964328989 46.2375 0.1144 6754 +6756 2 -104.55402226389265 -785.1463230918553 46.3285 0.1144 6755 +6757 2 -105.69353528788994 -785.2236949093381 46.2834 0.1144 6756 +6758 2 -106.8132684535819 -785.0055514527562 46.2969 0.1144 6757 +6759 2 -107.955094499304 -784.9567521565459 46.3686 0.1144 6758 +6760 2 -109.02398244944943 -785.3587012205254 46.4257 0.1144 6759 +6761 2 -110.09840163696921 -785.7518425939388 46.4607 0.1144 6760 +6762 2 -111.23737697469305 -785.8409741262765 46.4825 0.1144 6761 +6763 2 -112.3809180880627 -785.8657703363351 46.501 0.1144 6762 +6764 2 -113.43304497122847 -785.4234266331812 46.5797 0.1144 6763 +6765 2 -113.8798669490993 -785.3650672286983 46.9983 0.1144 6764 +6766 2 -115.00483702750162 -785.227966197705 47.2839 0.1144 6765 +6767 2 -116.1461784452996 -785.1667787968869 47.3995 0.1144 6766 +6768 2 -117.26983588603754 -785.3553067679532 47.5152 0.1144 6767 +6769 2 -118.35513692858008 -785.7108843924686 47.619 0.1144 6768 +6770 2 -119.44913926090146 -786.0435217127972 47.7098 0.1144 6769 +6771 2 -120.54736678686187 -786.3627923679205 47.7924 0.1144 6770 +6772 2 -121.64100802177559 -786.6939165429612 47.8702 0.1144 6771 +6773 2 -122.77819982028328 -786.7926334280762 47.9489 0.1144 6772 +6774 2 -123.89966036525897 -786.5957412340641 48.0726 0.1144 6773 +6775 2 -124.84669871042695 -785.9747082777877 48.2656 0.1144 6774 +6776 2 -125.70320959920961 -785.221380840748 48.4683 0.1144 6775 +6777 2 -126.54208005745475 -784.4465286456273 48.6542 0.1144 6776 +6778 2 -127.43180764014164 -783.7352166967565 48.9059 0.1144 6777 +6779 2 -128.11594505340503 -782.8210016127783 48.9978 0.1144 6778 +6780 2 -129.0413474216116 -782.1543898840204 48.7995 0.1144 6779 +6781 2 -113.56995318380514 -785.1329011931091 46.5405 0.1144 6764 +6782 2 -113.66821757549646 -784.0075214752692 46.3674 0.1144 6781 +6783 2 -112.86880340515579 -783.1912326328497 46.221 0.1144 6782 +6784 2 -112.05802895503442 -782.3867418429519 46.2764 0.1144 6783 +6785 2 -111.33397262224122 -781.5307334043591 46.72 0.1144 6784 +6786 2 -110.53188915086106 -780.8738501918024 47.8926 0.1144 6785 +6787 2 -109.71241782060598 -780.2278771746493 49.0356 0.1144 6786 +6788 2 -108.91082518031614 -779.5700044749321 50.2186 0.1144 6787 +6789 2 -108.63720096488949 -778.6564471211047 51.3341 0.1144 6788 +6790 2 -108.74854380559216 -777.5861760611277 52.2721 0.1144 6789 +6791 2 -108.6288562510563 -776.6142924316282 53.5396 0.1144 6790 +6792 2 -107.96404788437877 -775.755849139619 54.3449 0.1144 6791 +6793 2 -107.22684842512533 -774.897161479712 54.7305 0.1144 6792 +6794 2 -106.66534475545573 -773.9342450352852 55.0161 0.1144 6793 +6795 2 -106.66887428972535 -772.8514643407825 55.2574 0.1144 6794 +6796 2 -105.66721891128867 -772.4317988634689 55.3106 0.1144 6795 +6797 2 -104.8733666148042 -773.1269191633928 55.5229 0.1144 6796 +6798 2 -103.8857456352807 -772.5707976651524 55.6074 0.1144 6797 +6799 2 -102.9689427260044 -771.8864781523936 55.6354 0.1144 6798 +6800 2 -101.89421170530656 -771.4984272367268 55.5702 0.1144 6799 +6801 2 -100.77221347405744 -771.7070791455939 55.4252 0.1144 6800 +6802 2 -99.71452622590373 -772.1017524979918 54.9696 0.1144 6801 +6803 2 -72.96361738512621 -821.3569062713017 86.2428 0.1144 6194 +6804 2 -74.03713518481902 -821.0565950598183 86.849 0.1144 6803 +6805 2 -75.05941563233483 -820.5906234012092 87.3328 0.1144 6804 +6806 2 -76.16536868728605 -820.5828073763807 87.731 0.1144 6805 +6807 2 -77.29436954819587 -820.4872717491792 88.0474 0.1144 6806 +6808 2 -78.28273133830442 -819.9519729337 88.3604 0.1144 6807 +6809 2 -79.01915924438092 -819.085980607434 88.5136 0.1144 6808 +6810 2 -79.94513763652759 -818.4184317573282 88.5634 0.1144 6809 +6811 2 -80.81407496758476 -817.6754422858717 88.5629 0.1144 6810 +6812 2 -81.44209372042386 -816.7213330174529 88.5819 0.1144 6811 +6813 2 -81.71396752030242 -815.6127528052267 88.5396 0.1144 6812 +6814 2 -82.0691840474102 -814.5259386173964 88.4122 0.1144 6813 +6815 2 -82.73221395993255 -813.6000404938964 88.1706 0.1144 6814 +6816 2 -83.39978803171527 -812.6822176794691 87.8284 0.1144 6815 +6817 2 -83.71918772798455 -811.6055501476733 87.3099 0.1144 6816 +6818 2 -83.9749718877436 -810.5099693000786 86.7975 0.1144 6817 +6819 2 -84.61495668744243 -809.7659317901677 85.6702 0.1144 6818 +6820 2 -85.18372947476436 -808.9324610129943 84.3811 0.1144 6819 +6821 2 -85.74859949675152 -808.0134857422387 83.4464 0.1144 6820 +6822 2 -86.04049974192304 -808.7836864543059 81.5861 0.1144 6821 +6823 2 -86.5923307706708 -809.6009742957126 80.1942 0.1144 6822 +6824 2 -86.68286084888695 -810.6529485087702 79.1588 0.1144 6823 +6825 2 -87.34351518662916 -811.5357186181545 78.4076 0.1144 6824 +6826 2 -88.2908905028055 -811.9999603766165 77.4004 0.1144 6825 +6827 2 -89.30429259192437 -812.4965704105157 76.9479 0.1144 6826 +6828 2 -90.27597010220353 -813.0696546853111 76.4918 0.1144 6827 +6829 2 -91.23013001992504 -813.6561517879584 75.9265 0.1144 6828 +6830 2 -92.1320983520776 -814.3099895796115 75.3026 0.1144 6829 +6831 2 -92.91494746442766 -815.0812342342399 74.5408 0.1144 6830 +6832 2 -93.16100874755264 -816.1053248625276 73.5804 0.1144 6831 +6833 2 -93.26511421434043 -817.1724515943571 72.6032 0.1144 6832 +6834 2 -94.09607176393922 -817.8348753490375 71.5963 0.1144 6833 +6835 2 -93.93781557781077 -817.1266326508385 70.9492 0.1144 6834 +6836 2 -93.9044473980654 -816.0668330072358 70.065 0.1144 6835 +6837 2 -94.13808012650031 -815.0313513617181 69.4422 0.1144 6836 +6838 2 -94.65157316003814 -814.0189363507131 69.0973 0.1144 6837 +6839 2 -94.32194940505855 -812.9407823032072 68.9203 0.1144 6838 +6840 2 -94.20284508391731 -811.8041024667161 68.8363 0.1144 6839 +6841 2 -94.13408413168008 -810.6620967305453 68.8103 0.1144 6840 +6842 2 -94.15380942276784 -809.5180210324852 68.8153 0.1144 6841 +6843 2 -94.31168597956557 -808.3850308106325 68.8052 0.1144 6842 +6844 2 -94.77716228562235 -807.3416926063576 68.7296 0.1144 6843 +6845 2 -95.32331070980692 -806.3372597918992 68.6277 0.1144 6844 +6846 2 -95.96175503012543 -805.3881502777476 68.5454 0.1144 6845 +6847 2 -95.57431145656756 -804.9983429441728 68.4379 0.1144 6846 +6848 2 -94.76955597332775 -804.1907437724326 68.2156 0.1144 6847 +6849 2 -93.96239476428522 -803.3803746758988 68.1218 0.1144 6848 +6850 2 -93.15562747968744 -802.5716562833154 67.998 0.1144 6849 +6851 2 -92.34940339199261 -801.7618632107217 67.8308 0.1144 6850 +6852 2 -91.54464790875284 -800.9542640389816 67.6108 0.1144 6851 +6853 2 -90.68471598861811 -800.2188615486857 67.1989 0.1144 6852 +6854 2 -90.45261131611034 -799.5807287717496 69.6931 0.1144 6853 +6855 2 -90.18160915577712 -798.8353464006844 71.6363 0.1144 6854 +6856 2 -89.58934315473229 -798.0926257304413 73.0853 0.1144 6855 +6857 2 -88.84302034795198 -797.4674347611532 74.5556 0.1144 6856 +6858 2 -87.79123923796391 -797.3607665059301 75.5521 0.1144 6857 +6859 2 -86.68508046653335 -797.3253773495793 76.2513 0.1144 6858 +6860 2 -85.55486768070239 -797.2939837396525 76.6718 0.1144 6859 +6861 2 -84.41506954209416 -797.2608065905096 76.8667 0.1144 6860 +6862 2 -83.27153153030758 -797.2293215845667 76.9028 0.1144 6861 +6863 2 -82.9708462172438 -796.2306975098982 76.6819 0.1144 6862 +6864 2 -82.83356308675508 -795.108315256794 76.2706 0.1144 6863 +6865 2 -82.70779220164047 -794.0655505784233 75.1626 0.1144 6864 +6866 2 -90.11526465397083 -799.7493411364899 66.4703 0.1144 6853 +6867 2 -89.26026230002469 -799.0452574804187 65.7734 0.1144 6866 +6868 2 -88.44033578321077 -798.3169555327174 64.9852 0.1144 6867 +6869 2 -87.74197565125189 -797.4781504444578 64.1973 0.1144 6868 +6870 2 -87.10413257655046 -796.5825216306876 63.4292 0.1144 6869 +6871 2 -86.3024639534639 -795.8789411173427 62.5761 0.1144 6870 +6872 2 -85.32941295185421 -795.4499778109093 61.5731 0.1144 6871 +6873 2 -84.39543712792027 -794.990098804749 60.4498 0.1144 6872 +6874 2 -83.74080996082444 -794.2090463595828 59.3407 0.1144 6873 +6875 2 -83.66762219436205 -793.2991984432582 57.9331 0.1144 6874 +6876 2 -84.4381275421309 -792.7469002004042 56.467 0.1144 6875 +6877 2 -85.2350074372531 -792.1933239701069 55.0082 0.1144 6876 +6878 2 -86.06083087647269 -791.8307925545917 53.2868 0.1144 6877 +6879 2 -96.64424645085711 -804.9026543450896 68.4846 0.1144 6846 +6880 2 -97.48004135429693 -804.1219207417496 68.4438 0.1144 6879 +6881 2 -98.29664985487435 -803.3198859190738 68.425 0.1144 6880 +6882 2 -99.09276280727096 -802.4986796983068 68.4124 0.1144 6881 +6883 2 -99.87052957150726 -801.6593884732547 68.3642 0.1144 6882 +6884 2 -100.44264148887132 -800.6696235496441 68.3659 0.1144 6883 +6885 2 -101.09182010826413 -799.7271121278973 68.4309 0.1144 6884 +6886 2 -101.94418076223113 -798.9673600857355 68.5653 0.1144 6885 +6887 2 -102.89069304022527 -798.3298052272281 68.7702 0.1144 6886 +6888 2 -103.33706472093462 -797.3983258325763 69.4383 0.1144 6887 +6889 2 -103.87116762311663 -796.4616126267974 70.3209 0.1144 6888 +6890 2 -104.62646399040759 -795.6609786295446 71.0646 0.1144 6889 +6891 2 -105.42532594374887 -794.8857146877133 71.7007 0.1144 6890 +6892 2 -106.19484081004694 -794.0642404820645 72.2036 0.1144 6891 +6893 2 -106.84695432399953 -793.134332091458 72.492 0.1144 6892 +6894 2 -107.42985290625064 -792.1510800674023 72.5528 0.1144 6893 +6895 2 -108.00588369470535 -791.1637239711774 72.457 0.1144 6894 +6896 2 -108.55537496604045 -790.1626371054529 72.3024 0.1144 6895 +6897 2 -109.06771044106847 -789.1414113022987 72.1655 0.1144 6896 +6898 2 -109.5646791633288 -788.1121485277387 72.0742 0.1144 6897 +6899 2 -110.05937971844895 -787.0800830013482 72.0325 0.1144 6898 +6900 2 -110.5874875844851 -786.0658523166265 72.028 0.1144 6899 +6901 2 -111.06186848775361 -785.0254051586151 71.9866 0.1144 6900 +6902 2 -111.4598986806424 -783.9541083810839 71.8732 0.1144 6901 +6903 2 -111.83534966675198 -782.8756234590616 71.7147 0.1144 6902 +6904 2 -112.09238819697022 -781.7606241523429 71.682 0.1144 6903 +6905 2 -112.25975319989959 -780.6320576608173 71.8698 0.1144 6904 +6906 2 -112.41513263487856 -779.5096227401267 72.2509 0.1144 6905 +6907 2 -112.56779140929359 -778.3961971482732 72.7731 0.1144 6906 +6908 2 -112.75790609939803 -777.3005125930264 73.3692 0.1144 6907 +6909 2 -113.27843189649849 -776.3072104111336 73.9102 0.1144 6908 +6910 2 -113.73071511932882 -775.2786520091232 74.3921 0.1144 6909 +6911 2 -113.94075312779361 -774.172324550818 74.8812 0.1144 6910 +6912 2 -114.03615930025846 -773.0559869888523 75.3469 0.1144 6911 +6913 2 -113.9052038682463 -771.9320946920433 75.6874 0.1144 6912 +6914 2 -114.03745779795992 -770.8102351027562 75.8901 0.1144 6913 +6915 2 -114.50070737612623 -769.7682279442738 76.022 0.1144 6914 +6916 2 -115.12329411258675 -768.8120709458768 76.0998 0.1144 6915 +6917 2 -115.91810815369132 -768.012838182495 76.279 0.1144 6916 +6918 2 -116.83285289815684 -767.3612735483467 76.7712 0.1144 6917 +6919 2 -117.66967252484068 -766.5985421654885 77.1593 0.1144 6918 +6920 2 -118.48337044037895 -765.8056346915367 77.4799 0.1144 6919 +6921 2 -119.29868623283048 -765.0121957344776 77.7871 0.1144 6920 +6922 2 -120.11180812442862 -764.2202253818734 78.1222 0.1144 6921 +6923 2 -120.99439682685414 -763.5380962428163 78.6842 0.1144 6922 +6924 2 -121.90648488368997 -763.2863407531494 80.0845 0.1144 6923 +6925 2 -122.3916178193093 -762.8203906219363 82.32 0.1144 6924 +6926 2 -122.6527965631011 -762.594278185765 84.9318 0.1144 6925 +6927 2 -123.32653115535385 -762.9640352671063 86.9772 0.1144 6926 +6928 2 -124.22937704556503 -763.3632267356134 88.3859 0.1144 6927 +6929 2 -125.15634613196676 -763.8671597498678 89.4715 0.1144 6928 +6930 2 -126.12474306349772 -764.3670948086518 90.3199 0.1144 6929 +6931 2 -127.12406559734526 -764.8363869706837 91.0498 0.1144 6930 +6932 2 -128.16195437142392 -765.2406449485165 91.6868 0.1144 6931 +6933 2 -129.26696378810942 -765.3720493587787 92.3149 0.1144 6932 +6934 2 -130.25142963157475 -764.9041973490041 93.0989 0.1144 6933 +6935 2 -131.17908165211915 -764.3061102075441 93.8392 0.1144 6934 +6936 2 -132.1022802168826 -763.7106851576691 94.6014 0.1144 6935 +6937 2 -132.95141606127092 -763.1637576690794 95.9165 0.1144 6936 +6938 2 -103.704490075792 -798.5547671015598 68.1895 0.1144 6887 +6939 2 -104.82228393057662 -798.7047114185772 68.2559 0.1144 6938 +6940 2 -105.94205784298168 -798.5147643862315 68.2758 0.1144 6939 +6941 2 -107.02480980063376 -798.1450054942484 68.2755 0.1144 6940 +6942 2 -108.10551712989076 -797.7739898227596 68.2525 0.1144 6941 +6943 2 -109.21875521829352 -797.5249738222107 68.1982 0.1144 6942 +6944 2 -110.33052160065813 -797.2804527166924 68.0991 0.1144 6943 +6945 2 -111.40362014241236 -796.8912613374391 67.9728 0.1144 6944 +6946 2 -112.49344561034025 -796.5688116988044 67.8384 0.1144 6945 +6947 2 -113.61139833839917 -796.3535647991157 67.5727 0.1144 6946 +6948 2 -114.70146096477036 -796.1225831535489 66.9763 0.1144 6947 +6949 2 -115.74873866221117 -796.2493725239356 66.103 0.1144 6948 +6950 2 -116.1378568584771 -796.9773266978606 64.6122 0.1144 6949 +6951 2 -116.12729936105279 -797.8597616468784 63.1856 0.1144 6950 +6952 2 -116.81792005452732 -798.2238170104495 61.1397 0.1144 6951 +6953 2 -94.1628446327698 -817.9928301020148 70.7286 0.1144 6834 +6954 2 -94.44375279834847 -819.0060604916653 69.6892 0.1144 6953 +6955 2 -95.10780993729333 -819.8305885119389 68.6456 0.1144 6954 +6956 2 -94.6674243787435 -820.542841388255 66.9166 0.1144 6955 +6957 2 -94.38160658165745 -821.505867263748 65.6174 0.1144 6956 +6958 2 -94.23422716549084 -822.5539875849374 64.566 0.1144 6957 +6959 2 -94.28852694964809 -823.6146805015917 63.5793 0.1144 6958 +6960 2 -94.44733143486127 -824.4333633617251 61.983 0.1144 6959 +6961 2 -94.76309016519633 -823.4739514198476 60.6889 0.1144 6960 +6962 2 -95.06006872874985 -822.4425447188854 59.8167 0.1144 6961 +6963 2 -94.96443318801585 -821.3484619051329 59.1338 0.1144 6962 +6964 2 -94.6700878850647 -820.2959835430606 58.567 0.1144 6963 +6965 2 -94.96476373793101 -819.2202000742633 58.0754 0.1144 6964 +6966 2 -95.46622976426863 -818.2097828364704 57.6988 0.1144 6965 +6967 2 -95.7249573361039 -817.1052121988141 57.4129 0.1144 6966 +6968 2 -95.78455047184997 -815.9682698703858 57.2186 0.1144 6967 +6969 2 -95.4756779382968 -814.9350333785717 57.1668 0.1144 6968 +6970 2 -94.81926282233974 -814.0279888176249 57.2496 0.1144 6969 +6971 2 -94.58400430985765 -812.9273154226959 57.3378 0.1144 6970 +6972 2 -94.58826283994915 -811.784531740225 57.4204 0.1144 6971 +6973 2 -94.67307847516838 -810.6481856670491 57.5033 0.1144 6972 +6974 2 -94.70375850249255 -809.518942829603 57.5453 0.1144 6973 +6975 2 -94.3414294001 -808.4502656091292 57.4991 0.1144 6974 +6976 2 -93.85751408998803 -807.4155471002395 57.3846 0.1144 6975 +6977 2 -93.5074823887239 -806.3356478511841 57.1494 0.1144 6976 +6978 2 -93.6020835825702 -805.2336054635589 56.7848 0.1144 6977 +6979 2 -93.84589069189528 -804.1225633655974 56.4878 0.1144 6978 +6980 2 -93.94379708776202 -802.9889817065855 56.2713 0.1144 6979 +6981 2 -94.20849987287883 -801.8853841188972 56.0689 0.1144 6980 +6982 2 -94.395556137907 -800.76622157319 55.7628 0.1144 6981 +6983 2 -94.36867483168609 -799.6324684274939 55.4372 0.1144 6982 +6984 2 -93.88965075009614 -798.6182461593214 55.1174 0.1144 6983 +6985 2 -93.3136236439442 -797.6438201626556 54.712 0.1144 6984 +6986 2 -93.05430491389563 -796.5605199059188 54.1512 0.1144 6985 +6987 2 -92.26669120512312 -795.7729651740088 53.6161 0.1144 6986 +6988 2 -91.31466731181271 -795.1743996249118 53.1054 0.1144 6987 +6989 2 -90.35948507989357 -794.5872741325115 52.5526 0.1144 6988 +6990 2 -90.25573100302316 -794.277703944133 49.6415 0.1144 6989 +6991 2 -90.02154336445366 -793.627491794184 47.4093 0.1144 6990 +6992 2 -89.28678827044328 -793.0751444108954 45.7901 0.1144 6991 +6993 2 -88.45133812818594 -792.8222003463234 44.2366 0.1144 6992 +6994 2 -87.43418376526321 -792.9891848425714 43.0332 0.1144 6993 +6995 2 -86.39306848278096 -792.9722955387992 42.0524 0.1144 6994 +6996 2 -85.3595356599973 -792.6176673472676 41.256 0.1144 6995 +6997 2 -84.36974060248471 -792.139558882457 40.4905 0.1144 6996 +6998 2 -83.58687917849852 -791.4206584715278 39.6329 0.1144 6997 +6999 2 -82.81557244542455 -790.6350279390796 38.9295 0.1144 6998 +7000 2 -81.79215715106201 -790.2597385370644 38.3354 0.1144 6999 +7001 2 -80.6787928213227 -790.1877579892471 37.7681 0.1144 7000 +7002 2 -79.62345253489346 -789.9123387273216 37.0115 0.1144 7001 +7003 2 -79.14495452047737 -788.9146383613802 36.4403 0.1144 7002 +7004 2 -78.41202951909267 -788.0491876393022 36.0811 0.1144 7003 +7005 2 -78.15819166691116 -787.7105157260885 34.7556 0.1144 7004 +7006 2 -77.71599712954125 -787.0492410243795 32.7709 0.1144 7005 +7007 2 -77.10105191348859 -786.3086611966405 31.3964 0.1144 7006 +7008 2 -76.20733647358455 -785.9056915172885 30.2607 0.1144 7007 +7009 2 -75.28697189553816 -786.2799525137568 28.9696 0.1144 7008 +7010 2 -74.27575910196398 -786.6494321155103 28.0246 0.1144 7009 +7011 2 -73.24058369000542 -787.0095820377321 27.2242 0.1144 7010 +7012 2 -72.38806545370528 -786.3713499508109 26.5147 0.1144 7011 +7013 2 -72.16679579301532 -785.2872570270916 25.802 0.1144 7012 +7014 2 -78.04644127635876 -788.0540668579616 35.9786 0.1144 7004 +7015 2 -76.91244066118176 -788.1600280526427 35.8212 0.1144 7014 +7016 2 -75.81537579591276 -787.9610830316134 35.8481 0.1144 7015 +7017 2 -74.69732385883603 -787.7680187262666 36.0203 0.1144 7016 +7018 2 -73.71558960249763 -788.2226424167311 36.2628 0.1144 7017 +7019 2 -72.64327591472409 -788.2282464343518 36.6201 0.1144 7018 +7020 2 -71.62514928335932 -787.7675853740202 37.1552 0.1144 7019 +7021 2 -70.58736662597929 -787.3150317572616 37.564 0.1144 7020 +7022 2 -69.54312653644013 -786.8664908166561 37.8694 0.1144 7021 +7023 2 -68.49527630740525 -786.4171393868025 38.0909 0.1144 7022 +7024 2 -67.39124404855906 -786.1225894734991 38.2466 0.1144 7023 +7025 2 -66.28190881448046 -785.8475518243822 38.3505 0.1144 7024 +7026 2 -65.17194519064898 -785.573536489463 38.4322 0.1144 7025 +7027 2 -64.09083651470843 -785.2044546410796 38.5678 0.1144 7026 +7028 2 -63.02800656164786 -784.786157162152 38.7565 0.1144 7027 +7029 2 -61.95916005075222 -784.3883418957956 38.9486 0.1144 7028 +7030 2 -60.893650876377535 -783.9831875433281 39.1922 0.1144 7029 +7031 2 -59.781677167697865 -783.7494894449077 39.499 0.1144 7030 +7032 2 -58.69864119071249 -783.403403368107 39.8247 0.1144 7031 +7033 2 -57.66492426783492 -782.9331593640447 40.1475 0.1144 7032 +7034 2 -56.567669099305846 -782.631976122253 40.4519 0.1144 7033 +7035 2 -55.46403317395087 -782.3564507436289 40.7341 0.1144 7034 +7036 2 -54.34808512678481 -782.1271178065565 40.9982 0.1144 7035 +7037 2 -53.220899637817894 -781.9445205079389 41.1774 0.1144 7036 +7038 2 -52.0914843193774 -781.7699430509981 41.2812 0.1144 7037 +7039 2 -51.19230171600063 -780.7378561090283 41.3204 0.1144 7038 +7040 2 -50.319620593850374 -780.0014251013687 41.2863 0.1144 7039 +7041 2 -49.37247051524409 -779.3641851947431 41.1925 0.1144 7040 +7042 2 -48.333445106504485 -778.9027684200225 41.0533 0.1144 7041 +7043 2 -47.226557037478415 -778.6346344933223 40.906 0.1144 7042 +7044 2 -46.091247999182684 -778.5154768348858 40.7831 0.1144 7043 +7045 2 -44.95911611607164 -778.6119050426022 40.6456 0.1144 7044 +7046 2 -43.878376652314216 -778.9587205288153 40.4281 0.1144 7045 +7047 2 -42.782940862632046 -779.2509588402728 40.1232 0.1144 7046 +7048 2 -41.66037891907902 -779.4082036267886 39.7603 0.1144 7047 +7049 2 -40.54549933677896 -779.6119581039675 39.3974 0.1144 7048 +7050 2 -39.43792462847975 -779.8670376122309 39.0715 0.1144 7049 +7051 2 -38.32757758634048 -780.1071490155683 38.733 0.1144 7050 +7052 2 -37.23786514279212 -779.924696171316 38.2707 0.1144 7051 +7053 2 -36.69925802370935 -778.9745624484783 37.8736 0.1144 7052 +7054 2 -36.29526661087934 -777.912556201623 37.5578 0.1144 7053 +7055 2 -35.896847874673426 -776.8458760618248 37.2848 0.1144 7054 +7056 2 -34.904305532726084 -776.3632617754204 36.9796 0.1144 7055 +7057 2 -33.784420792203605 -776.1731792198165 36.6562 0.1144 7056 +7058 2 -32.66338641284747 -776.0023447376369 36.3062 0.1144 7057 +7059 2 -31.54332198187609 -775.8322238380601 35.9162 0.1144 7058 +7060 2 -30.424194672252526 -775.6626789624233 35.4976 0.1144 7059 +7061 2 -29.36349153354996 -775.2779684848606 35.0521 0.1144 7060 +7062 2 -28.36137855950801 -774.7586002462699 34.5951 0.1144 7061 +7063 2 -27.363402484672264 -774.2325017725452 34.1418 0.1144 7062 +7064 2 -26.36346697429113 -773.7051988851277 33.7042 0.1144 7063 +7065 2 -25.3638511220679 -773.175275345375 33.2934 0.1144 7064 +7066 2 -24.67704568102127 -772.2697401355964 32.9748 0.1144 7065 +7067 2 -24.189123205385812 -771.2392492293922 32.7625 0.1144 7066 +7068 2 -23.698251807044528 -770.2070630784046 32.6334 0.1144 7067 +7069 2 -23.208670015246014 -769.1729698576844 32.5654 0.1144 7068 +7070 2 -22.718427006657578 -768.1397613924994 32.5332 0.1144 7069 +7071 2 -51.84687162788646 -782.309784806665 41.7886 0.1144 7038 +7072 2 -51.85605193399243 -783.3172723410692 43.0564 0.1144 7071 +7073 2 -52.75077677291057 -783.1877191372382 43.9186 0.1144 7072 +7074 2 -53.536899444510965 -782.5576891814458 45.1385 0.1144 7073 +7075 2 -54.54024606082683 -782.1028512569853 45.8452 0.1144 7074 +7076 2 -55.579984839384736 -781.6609921817554 46.2636 0.1144 7075 +7077 2 -56.59422182823985 -781.1469976871954 46.578 0.1144 7076 +7078 2 -57.562012087370874 -780.5468196599975 46.8126 0.1144 7077 +7079 2 -58.52571540406191 -779.9359128443548 47.0033 0.1144 7078 +7080 2 -59.44443207796738 -779.2626092181295 47.238 0.1144 7079 +7081 2 -60.311750839574614 -778.5442138563933 47.7002 0.1144 7080 +7082 2 -61.17092622898875 -777.8127137058636 48.172 0.1144 7081 +7083 2 -62.20831164755663 -777.3679995129905 48.4655 0.1144 7082 +7084 2 -63.323188820810174 -777.1468712050827 48.7749 0.1144 7083 +7085 2 -64.3356014227686 -777.6429904078916 49.1159 0.1144 7084 +7086 2 -65.15178806640415 -778.3729844987929 49.9215 0.1144 7085 +7087 2 -90.0888840534596 -793.679683379753 52.071 0.1144 6989 +7088 2 -89.57796201212179 -792.678016595001 51.6426 0.1144 7087 +7089 2 -88.62806493316938 -792.1130380472688 51.2733 0.1144 7088 +7090 2 -87.57093979946208 -791.7049378736785 50.9144 0.1144 7089 +7091 2 -86.75984120452654 -790.9578817852264 50.3068 0.1144 7090 +7092 2 -87.66804022240001 -790.3169662573027 50.3342 0.1144 7091 +7093 2 -88.54542655566212 -789.5953687086616 50.5814 0.1144 7092 +7094 2 -89.28608206442422 -788.733383547919 50.729 0.1144 7093 +7095 2 -89.83967120476225 -787.7388064801662 50.8388 0.1144 7094 +7096 2 -90.60298741372983 -786.9404023123869 50.9135 0.1144 7095 +7097 2 -91.55158886095197 -786.3015492351242 50.9972 0.1144 7096 +7098 2 -92.50603268618985 -785.6728606361618 50.9586 0.1144 7097 +7099 2 -93.5566878633175 -785.2350118280385 50.808 0.1144 7098 +7100 2 -94.68228461496274 -785.0554520255057 50.7805 0.1144 7099 +7101 2 -95.81989847121851 -784.9436125241887 50.9074 0.1144 7100 +7102 2 -96.9354954302409 -784.7081366761278 51.1134 0.1144 7101 +7103 2 -97.8622257426568 -784.0504404711444 51.3089 0.1144 7102 +7104 2 -98.65851769296572 -783.2333352209635 51.4903 0.1144 7103 +7105 2 -99.78344532582994 -783.2425818862225 51.6426 0.1144 7104 +7106 2 -100.87061199885535 -783.5953153196576 51.7359 0.1144 7105 +7107 2 -101.9776291090275 -783.8850092405225 51.7961 0.1144 7106 +7108 2 -103.11804091670585 -783.9521344884381 51.8762 0.1144 7107 +7109 2 -104.25580432950863 -783.9143367836474 52.1651 0.1144 7108 +7110 2 -86.68522607719532 -791.0531094743369 50.2244 0.1144 7091 +7111 2 -85.96346916354958 -791.8864495115394 49.5127 0.1144 7110 +7112 2 -85.07517874335383 -792.5516925493748 48.946 0.1144 7111 +7113 2 -84.02644535664143 -792.9558605510706 48.503 0.1144 7112 +7114 2 -82.91575985745331 -793.1875472617236 48.1569 0.1144 7113 +7115 2 -81.79163550438275 -793.3385495426126 47.8766 0.1144 7114 +7116 2 -80.66432917803454 -793.239218295891 47.6403 0.1144 7115 +7117 2 -79.5667683794936 -792.9297479200774 47.4222 0.1144 7116 +7118 2 -78.47068749075552 -792.7206086952937 47.0123 0.1144 7117 +7119 2 -77.42027227188055 -792.9504889422831 46.1686 0.1144 7118 +7120 2 -76.47535322984245 -793.4762202272508 45.3043 0.1144 7119 +7121 2 -75.62809673033132 -794.1358146056655 44.3526 0.1144 7120 +7122 2 -74.67081562169395 -794.3060307301837 43.251 0.1144 7121 +7123 2 -73.63241959701742 -794.11227677297 42.1879 0.1144 7122 +7124 2 -72.58955881121204 -793.8230476571648 41.286 0.1144 7123 +7125 2 -71.53253017570239 -793.5131370995638 40.53 0.1144 7124 +7126 2 -70.43401273472301 -793.419294029153 39.8373 0.1144 7125 +7127 2 -69.31293039919913 -793.3841222083812 39.293 0.1144 7126 +7128 2 -69.34801003045104 -793.3291524942539 37.3223 0.1144 7127 +7129 2 -69.50297582423096 -793.4244059076213 34.5898 0.1144 7128 +7130 2 -69.40166260827945 -794.1638418022557 32.844 0.1144 7129 +7131 2 -69.24128382748134 -795.1958724833255 31.7075 0.1144 7130 +7132 2 -69.13012067722758 -796.2461818872755 30.6379 0.1144 7131 +7133 2 -69.04211516673956 -797.3201161450975 29.6932 0.1144 7132 +7134 2 -68.58678893205229 -798.2661635170645 28.6832 0.1144 7133 +7135 2 -69.41250995970364 -798.5307344612256 27.5497 0.1144 7134 +7136 2 -70.12936894993092 -799.0358109288327 26.5402 0.1144 7135 +7137 2 -69.60267773098496 -799.9514909001574 25.5721 0.1144 7136 +7138 2 -69.68257411619581 -800.9378863470398 24.6888 0.1144 7137 +7139 2 -70.5145194364452 -801.5593644754684 23.8888 0.1144 7138 +7140 2 -71.5934592432526 -801.7243966338087 23.05 0.1144 7139 +7141 2 -72.14364167532281 -802.2667044720715 22.2378 0.1144 7140 +7142 2 -71.92550714984802 -803.3491569138887 21.5144 0.1144 7141 +7143 2 -71.66348668762845 -804.4329225792326 20.8843 0.1144 7142 +7144 2 -71.10356164504918 -805.3241836446296 20.2564 0.1144 7143 +7145 2 -70.1743287001849 -805.9817501159303 19.9906 0.1144 7144 +7146 2 -69.21321010720888 -806.5995278269525 19.8838 0.1144 7145 +7147 2 -68.29573618466304 -807.2816946111396 19.8718 0.1144 7146 +7148 2 -67.5083129029457 -808.1082421448058 19.9268 0.1144 7147 +7149 2 -66.40920571165381 -808.3189917404172 20.0255 0.1144 7148 +7150 2 -65.27968767987142 -808.4787688848353 20.2112 0.1144 7149 +7151 2 -64.14908777060228 -808.3826952924144 20.5339 0.1144 7150 +7152 2 -63.017267028132636 -808.4980956689974 20.8149 0.1144 7151 +7153 2 -61.88308982408989 -808.6173297238213 21.0279 0.1144 7152 +7154 2 -60.80024406137531 -808.9830400110311 21.1778 0.1144 7153 +7155 2 -59.65880683791627 -808.9219751692469 21.2695 0.1144 7154 +7156 2 -58.62540716415012 -808.4317366821203 21.3147 0.1144 7155 +7157 2 -68.90287408160344 -792.7950712204354 39.3078 0.1144 7127 +7158 2 -68.25688522566242 -791.8689637871428 39.7393 0.1144 7157 +7159 2 -67.63039252815202 -791.0312549952788 40.8442 0.1144 7158 +7160 2 -66.97721003477545 -790.3330223117509 42.3783 0.1144 7159 +7161 2 -66.28004400547186 -789.662805669474 43.862 0.1144 7160 +7162 2 -65.47515808403477 -789.3009383823751 45.4796 0.1144 7161 +7163 2 -64.54953777670201 -789.3671310304048 47.1128 0.1144 7162 +7164 2 -63.61743780529926 -789.3434180948842 48.7189 0.1144 7163 +7165 2 -62.90166990261176 -789.0485369163014 50.615 0.1144 7164 +7166 2 -63.10401963645293 -788.6209917429987 52.9004 0.1144 7165 +7167 2 -63.59498572235 -787.9948809600705 54.8814 0.1144 7166 +7168 2 -63.64005913872214 -787.0060691745742 56.285 0.1144 7167 +7169 2 -63.713246793367574 -785.9848864205055 57.5352 0.1144 7168 +7170 2 -63.702248404498505 -784.945410222874 58.7034 0.1144 7169 +7171 2 -63.563207760824184 -783.8957801597534 59.7621 0.1144 7170 +7172 2 -63.32289884477217 -782.8470539824955 60.7079 0.1144 7171 +7173 2 -63.06142696058333 -781.7934187544499 61.5891 0.1144 7172 +7174 2 -62.826652383488806 -780.7291960907418 62.4389 0.1144 7173 +7175 2 -62.60515376812029 -779.6584612200152 63.2705 0.1144 7174 +7176 2 -62.3863281708997 -778.5879608145967 64.0945 0.1144 7175 +7177 2 -62.01378704248694 -777.5599588264465 64.9029 0.1144 7176 +7178 2 -61.536040948340144 -776.5721111056273 65.6916 0.1144 7177 +7179 2 -61.04542453070789 -775.5897337388534 66.4793 0.1144 7178 +7180 2 -60.70611481688198 -774.568776825902 67.4139 0.1144 7179 +7181 2 -60.48883690849624 -773.5394893390803 68.511 0.1144 7180 +7182 2 -60.311520649831266 -772.5213838266637 69.6856 0.1144 7181 +7183 2 -60.54126733421265 -771.4836309124228 70.7073 0.1144 7182 +7184 2 -61.00369411149458 -770.497578137135 71.5582 0.1144 7183 +7185 2 -61.459040577494136 -769.5272453870426 72.5287 0.1144 7184 +7186 2 -62.060572463114966 -768.6360873367612 73.4908 0.1144 7185 +7187 2 -62.65324119077391 -767.7461720378394 74.4582 0.1144 7186 +7188 2 -62.996144903533946 -766.7296129181738 75.4298 0.1144 7187 +7189 2 -63.23641716362346 -765.6875307712048 76.4218 0.1144 7188 +7190 2 -63.47574920078209 -764.6515613961799 77.4514 0.1144 7189 +7191 2 -63.91397510025183 -763.6896033820057 78.5212 0.1144 7190 +7192 2 -65.01544936592815 -763.5972199849429 77.7857 0.1144 7191 +7193 2 -66.1116634036837 -763.6707489141315 77.0036 0.1144 7192 +7194 2 -67.21209714213373 -763.9362067211008 76.6228 0.1144 7193 +7195 2 -68.30913256603738 -764.2050925680703 76.1732 0.1144 7194 +7196 2 -69.39994502309001 -764.475318073045 75.6582 0.1144 7195 +7197 2 -70.42847298942486 -764.7288569901112 74.6018 0.1144 7196 +7198 2 -63.78613446603259 -763.4606583618754 79.8291 0.1144 7191 +7199 2 -63.371807798439576 -762.7212001463411 81.7085 0.1144 7198 +7200 2 -62.98833826159456 -762.0342798931007 83.7399 0.1144 7199 +7201 2 -62.62263268580345 -761.3797593572615 85.8544 0.1144 7200 +7202 2 -62.265079094418155 -760.7423398491763 88.0079 0.1144 7201 +7203 2 -62.12023332709511 -760.0342409128061 90.1415 0.1144 7202 +7204 2 -62.27920538107769 -759.2470234485355 92.1085 0.1144 7203 +7205 2 -62.52497222772172 -758.4299335225846 93.9742 0.1144 7204 +7206 2 -62.77582712306577 -757.5957815990827 95.7891 0.1144 7205 +7207 2 -63.0317177012971 -756.7446528708797 97.5517 0.1144 7206 +7208 2 -63.74121516071814 -756.2501678406966 99.1992 0.1144 7207 +7209 2 -64.7180170510585 -756.063661870209 100.5542 0.1144 7208 +7210 2 -65.73490653068257 -755.9165866641754 101.7825 0.1144 7209 +7211 2 -66.76635847699227 -755.7677809772749 102.9389 0.1144 7210 +7212 2 -67.80672594707666 -755.617647346165 104.0466 0.1144 7211 +7213 2 -68.85017207354947 -755.4667063273899 105.1277 0.1144 7212 +7214 2 -69.89623885235753 -755.3160849667729 106.2029 0.1144 7213 +7215 2 -70.94492258407735 -755.2221237469732 107.2954 0.1144 7214 +7216 2 -71.95845100352219 -755.4301721859908 108.4098 0.1144 7215 +7217 2 -72.95657323154816 -755.7442534938084 109.5419 0.1144 7216 +7218 2 -73.95322685511915 -756.0561409007726 110.6885 0.1144 7217 +7219 2 -74.94743021205453 -756.3678133812043 111.846 0.1144 7218 +7220 2 -75.93964130640752 -756.6781438892806 113.0125 0.1144 7219 +7221 2 -76.93094810644979 -756.9880359320792 114.1865 0.1144 7220 +7222 2 -77.92051900969187 -757.2982695335098 115.3681 0.1144 7221 +7223 2 -78.9076920121111 -757.6082030155583 116.5601 0.1144 7222 +7224 2 -79.89285321317222 -757.9170172767635 117.766 0.1144 7223 +7225 2 -80.87511785734027 -758.2240511003358 118.9905 0.1144 7224 +7226 2 -81.85225921672476 -758.5306355320675 120.2365 0.1144 7225 +7227 2 -82.82285454774356 -758.5551213117063 121.6396 0.1144 7226 +7228 2 -83.6318812811589 -758.0667627501767 123.1152 0.1144 7227 +7229 2 -84.38765127279979 -757.4731273656728 124.6344 0.1144 7228 +7230 2 -85.13339513203557 -756.8868279656969 126.1982 0.1144 7229 +7231 2 -85.90460554489052 -756.3551525956598 127.8054 0.1144 7230 +7232 2 -86.78124466930205 -756.0520276287716 129.4241 0.1144 7231 +7233 2 -87.67279814775381 -755.7943407741193 131.0616 0.1144 7232 +7234 2 -88.55847021798651 -755.5397294742722 132.7208 0.1144 7233 +7235 2 -89.436216251605 -755.286936949725 134.4064 0.1144 7234 +7236 2 -90.27150420622056 -755.0094551253219 136.1909 0.1144 7235 +7237 2 -90.83600793962911 -754.5870100105817 138.341 0.1144 7236 +7238 2 -91.28201402429646 -754.1279981453323 140.6625 0.1144 7237 +7239 2 -91.7117155423118 -753.6844359113501 143.0187 0.1144 7238 +7240 2 -92.13357311497965 -753.2494336143645 145.3942 0.1144 7239 +7241 2 -92.55137115631128 -752.8187441129141 147.777 0.1144 7240 +7242 2 -92.9731763631664 -752.3838270087783 150.1531 0.1144 7241 +7243 2 -93.40109744354872 -751.9431613316892 152.5149 0.1144 7242 +7244 2 -93.88995243008063 -751.5171782661304 154.8016 0.1144 7243 +7245 2 -94.60915776650704 -751.1858332283589 156.8165 0.1144 7244 +7246 2 -95.41171365514253 -750.8787240203947 158.6665 0.1144 7245 +7247 2 -96.24229007168502 -750.560784299247 160.4249 0.1144 7246 +7248 2 -97.10544520354091 -750.2291815876313 162.0732 0.1144 7247 +7249 2 -97.93602162008338 -749.9112418664836 163.791 0.1144 7248 +7250 2 -98.59599881325848 -749.6588761111032 165.9941 0.1144 7249 +7251 2 -96.1439353857831 -820.004165886593 70.2268 0.1144 6955 +7252 2 -97.10524139322044 -820.397621093783 71.3406 0.1144 7251 +7253 2 -97.66948345102347 -821.284279940356 71.9984 0.1144 7252 +7254 2 -97.89609614112251 -822.401119650738 71.9071 0.1144 7253 +7255 2 -98.17631054696278 -823.4918644177479 71.4347 0.1144 7254 +7256 2 -98.54216218695487 -824.5439259309281 70.8103 0.1144 7255 +7257 2 -99.0382106209656 -825.5283510276803 70.0902 0.1144 7256 +7258 2 -99.84281413861186 -826.2445345721653 69.3302 0.1144 7257 +7259 2 -100.76619221584559 -826.8482641527594 68.5849 0.1144 7258 +7260 2 -101.69401592388044 -827.446861836357 67.856 0.1144 7259 +7261 2 -102.62291431192554 -828.0460027168577 67.1345 0.1144 7260 +7262 2 -103.57004146608446 -828.6133869903929 66.3972 0.1144 7261 +7263 2 -104.56839164250061 -829.0645917390932 65.6065 0.1144 7262 +7264 2 -105.55978503815089 -829.542391472309 64.8449 0.1144 7263 +7265 2 -106.44197001965205 -830.2242131707123 64.2527 0.1144 7264 +7266 2 -107.3016346474416 -830.9621511204938 63.8523 0.1144 7265 +7267 2 -108.16958951083606 -831.693094644379 63.9254 0.1144 7266 +7268 2 -108.95706666723436 -832.3302007094505 65.163 0.1144 7267 +7269 2 -109.70892450550875 -832.9158325656754 66.7078 0.1144 7268 +7270 2 -110.54042353550068 -833.5357451830034 67.8874 0.1144 7269 +7271 2 -111.40074117631539 -834.167972331189 68.8943 0.1144 7270 +7272 2 -112.2434115855861 -834.8417039998374 69.8228 0.1144 7271 +7273 2 -113.04200706291377 -835.556776935692 70.8058 0.1144 7272 +7274 2 -113.86757162633728 -836.2039129272882 71.9202 0.1144 7273 +7275 2 -114.75777273240669 -836.7283243599943 73.071 0.1144 7274 +7276 2 -115.79656268152797 -836.9237290211585 74.0914 0.1144 7275 +7277 2 -116.88963990236405 -836.9106983155305 74.9146 0.1144 7276 +7278 2 -117.9968364012114 -836.8876828220509 75.6137 0.1144 7277 +7279 2 -119.11545105628181 -836.8634691180446 76.1958 0.1144 7278 +7280 2 -120.24175728265831 -836.8401096568864 76.6797 0.1144 7279 +7281 2 -121.37372999072139 -836.8161249075587 77.0896 0.1144 7280 +7282 2 -122.50823815826988 -836.792407450576 77.4432 0.1144 7281 +7283 2 -123.6455162506119 -836.7662842677905 77.7434 0.1144 7282 +7284 2 -124.78284189067375 -836.7053282306975 77.9607 0.1144 7283 +7285 2 -125.90858240414772 -836.5123580093592 78.0055 0.1144 7284 +7286 2 -127.01732629005627 -836.237807676159 77.8607 0.1144 7285 +7287 2 -128.13184787653176 -836.0258512578081 77.6026 0.1144 7286 +7288 2 -129.2323654997696 -836.149095166148 77.3427 0.1144 7287 +7289 2 -130.16419568079138 -836.7675278736732 77.2002 0.1144 7288 +7290 2 -130.91110712492164 -837.6321852362321 77.2153 0.1144 7289 +7291 2 -131.64077688105215 -838.511716206118 77.3682 0.1144 7290 +7292 2 -132.45926313379184 -839.2927758607386 77.6182 0.1144 7291 +7293 2 -133.47848606155233 -839.6815694866217 77.91 0.1144 7292 +7294 2 -134.6142338788773 -839.6734039834851 78.192 0.1144 7293 +7295 2 -135.750501968658 -839.5943081672477 78.451 0.1144 7294 +7296 2 -136.8877923726362 -839.5158407407633 78.6974 0.1144 7295 +7297 2 -138.01309851672593 -839.585771149556 78.9673 0.1144 7296 +7298 2 -139.08989508966766 -839.92673083999 79.3061 0.1144 7297 +7299 2 -140.12063026280236 -840.3951420406065 79.7126 0.1144 7298 +7300 2 -141.2027037849461 -840.6534226296477 80.1256 0.1144 7299 +7301 2 -142.32902783358827 -840.5884039596353 80.4748 0.1144 7300 +7302 2 -143.45102847388395 -840.3971258814972 80.7472 0.1144 7301 +7303 2 -144.57450392180075 -840.1946641124441 80.953 0.1144 7302 +7304 2 -145.6969898825571 -839.9917115123008 81.1079 0.1144 7303 +7305 2 -146.8226920583644 -839.7879186974552 81.2358 0.1144 7304 +7306 2 -147.94713745466603 -839.5861705110048 81.3627 0.1144 7305 +7307 2 -149.07118892652295 -839.382771620604 81.5066 0.1144 7306 +7308 2 -150.19474956728956 -839.1803622173636 81.676 0.1144 7307 +7309 2 -151.32342428278673 -839.0240576537786 81.9022 0.1144 7308 +7310 2 -152.45603838477535 -838.9226437199411 82.2108 0.1144 7309 +7311 2 -153.5860670705124 -838.8384215173372 82.5916 0.1144 7310 +7312 2 -154.71337819726858 -838.7565198476861 83.0242 0.1144 7311 +7313 2 -155.82031422246237 -838.8889911129788 83.4742 0.1144 7312 +7314 2 -156.87258646531436 -839.2874176393589 83.9068 0.1144 7313 +7315 2 -157.91178846291976 -839.7355615539365 84.3206 0.1144 7314 +7316 2 -159.00480851753517 -839.903848957531 84.7725 0.1144 7315 +7317 2 -160.1297484620356 -839.860751379091 85.2729 0.1144 7316 +7318 2 -161.25521137212675 -839.8408644987661 85.7752 0.1144 7317 +7319 2 -162.38159599034648 -839.8805866819645 86.2565 0.1144 7318 +7320 2 -163.50868567365228 -839.9409317379798 86.6933 0.1144 7319 +7321 2 -164.63128487157246 -840.135382556515 86.8588 0.1144 7320 +7322 2 -165.72778191666615 -840.4400907449526 86.6233 0.1144 7321 +7323 2 -166.68519677786824 -840.7197598414743 85.2592 0.1144 7322 +7324 2 -86.89056052496062 -812.12615151398 77.6087 0.1144 6825 +7325 2 -86.17097797339258 -812.9582456982397 76.8662 0.1144 7324 +7326 2 -85.36895147827647 -813.7583272885364 76.5111 0.1144 7325 +7327 2 -84.48131306481767 -814.4683410186517 76.1978 0.1144 7326 +7328 2 -83.44736119687971 -814.9271385609159 75.8792 0.1144 7327 +7329 2 -82.33368602827255 -815.1289336025495 75.544 0.1144 7328 +7330 2 -81.23247735611656 -815.3933256606155 75.1467 0.1144 7329 +7331 2 -80.25493815951526 -815.9285861384279 74.5825 0.1144 7330 +7332 2 -79.38847743487597 -816.6085385063609 73.8251 0.1144 7331 +7333 2 -78.5007278025368 -817.2553330334571 73.0414 0.1144 7332 +7334 2 -77.57463819150982 -817.8596626805438 72.3355 0.1144 7333 +7335 2 -76.63103168046186 -818.4533425288694 71.7066 0.1144 7334 +7336 2 -75.68244805550555 -819.0505363972779 71.1446 0.1144 7335 +7337 2 -74.72877397280271 -819.6474184325084 70.6378 0.1144 7336 +7338 2 -73.66446501526019 -820.0070330775034 70.1252 0.1144 7337 +7339 2 -72.5455324185418 -820.0753038911869 69.5724 0.1144 7338 +7340 2 -71.42675899687137 -820.0711312464817 68.9732 0.1144 7339 +7341 2 -70.31377007677443 -820.0665232380821 68.3374 0.1144 7340 +7342 2 -69.20074832964039 -820.0617776710201 67.6822 0.1144 7341 +7343 2 -68.08990094458414 -820.0557862510153 67.0197 0.1144 7342 +7344 2 -66.98005845990764 -819.9912526225175 66.365 0.1144 7343 +7345 2 -65.88633403274267 -819.7782797194931 65.7325 0.1144 7344 +7346 2 -64.80350307970008 -819.4994614504847 65.1367 0.1144 7345 +7347 2 -63.72072208342368 -819.2031841578977 64.6016 0.1144 7346 +7348 2 -62.62268486072338 -818.9861517235369 64.027 0.1144 7347 +7349 2 -61.549832492366136 -818.7348303243082 63.3063 0.1144 7348 +7350 2 -60.56338648517027 -818.2466902164628 62.545 0.1144 7349 +7351 2 -59.60872101567577 -817.6961530139461 61.7924 0.1144 7350 +7352 2 -58.6514348938461 -817.1452961532715 61.0644 0.1144 7351 +7353 2 -57.67676091314138 -816.6053494880005 60.4551 0.1144 7352 +7354 2 -56.660338736612914 -816.0960840571482 60.1798 0.1144 7353 +7355 2 -55.577918837744164 -815.8013199098491 60.1384 0.1144 7354 +7356 2 -54.435978471558684 -815.7935887989245 60.0762 0.1144 7355 +7357 2 -53.29584456903672 -815.8461279683129 59.8973 0.1144 7356 +7358 2 -52.16923850736666 -815.9486525107809 59.5087 0.1144 7357 +7359 2 -51.087184808087244 -815.7669163507144 58.9632 0.1144 7358 +7360 2 -50.04212501924681 -815.3676409974194 58.3906 0.1144 7359 +7361 2 -49.003892277489655 -814.9442732920575 57.8385 0.1144 7360 +7362 2 -47.96160310597932 -814.5185295863467 57.3336 0.1144 7361 +7363 2 -46.91508323020034 -814.0954675109965 56.8904 0.1144 7362 +7364 2 -45.85247061271872 -813.6920935961622 56.5816 0.1144 7363 +7365 2 -44.779434836804114 -813.3010937577897 56.406 0.1144 7364 +7366 2 -43.7049711084515 -812.9105073826373 56.3122 0.1144 7365 +7367 2 -42.71057303861099 -812.3610192128854 56.1344 0.1144 7366 +7368 2 -41.988638009546236 -811.5279127408128 55.5736 0.1144 7367 +7369 2 -41.773277996488645 -811.5244206388888 55.288 0.1144 7368 +7370 2 -40.66547093015416 -811.5067992377117 54.6669 0.1144 7369 +7371 2 -39.54657597856587 -811.6099552715156 54.1677 0.1144 7370 +7372 2 -38.43482500942051 -811.7954433374507 53.6799 0.1144 7371 +7373 2 -37.31179144211606 -811.8638931490465 53.1899 0.1144 7372 +7374 2 -36.18938116238283 -811.8198058045 52.6772 0.1144 7373 +7375 2 -35.11568376123043 -811.5305205287625 52.0744 0.1144 7374 +7376 2 -34.20019889357383 -810.9248346142062 51.3629 0.1144 7375 +7377 2 -33.34863009025764 -810.2348343075261 50.5568 0.1144 7376 +7378 2 -32.30079998586075 -810.1547750649645 49.6115 0.1144 7377 +7379 2 -31.232183033190864 -810.3290972622505 48.7133 0.1144 7378 +7380 2 -30.162400004494742 -810.5162014885889 47.8324 0.1144 7379 +7381 2 -29.09110383051072 -810.7036668123351 46.97 0.1144 7380 +7382 2 -28.007831298629384 -810.8516082591015 46.1426 0.1144 7381 +7383 2 -26.905776599367897 -810.8093513089543 45.4062 0.1144 7382 +7384 2 -25.918213780375396 -810.3405968331958 44.641 0.1144 7383 +7385 2 -25.201043347733076 -809.5238004384048 43.8021 0.1144 7384 +7386 2 -24.5043753589743 -808.6887352233234 42.9293 0.1144 7385 +7387 2 -23.750312722946603 -807.9056049142771 42.0812 0.1144 7386 +7388 2 -22.800865035834732 -807.3355030817613 41.3694 0.1144 7387 +7389 2 -21.845676600749442 -806.7617551811295 40.7389 0.1144 7388 +7390 2 -20.883981469275398 -806.1854163536166 40.1842 0.1144 7389 +7391 2 -19.91836746671072 -805.6066686987176 39.6903 0.1144 7390 +7392 2 -18.949824080215848 -805.0260030475231 39.2342 0.1144 7391 +7393 2 -17.981889544698106 -804.4445378336435 38.7951 0.1144 7392 +7394 2 -16.98740007884163 -803.9083748898471 38.3443 0.1144 7393 +7395 2 -15.98643915267985 -803.3871324085609 37.8935 0.1144 7394 +7396 2 -14.98511712911042 -802.8643767819868 37.4539 0.1144 7395 +7397 2 -13.981888035808453 -802.34033154887 37.0359 0.1144 7396 +7398 2 -12.978573749656618 -801.8162339499405 36.6397 0.1144 7397 +7399 2 -12.000285835336541 -801.3062282179185 35.8985 0.1144 7398 +7400 2 -41.87786178192431 -811.3214296001115 54.3511 0.1144 7368 +7401 2 -41.40519652702301 -810.4803789673854 52.8937 0.1144 7400 +7402 2 -40.37953498367935 -810.3226239405054 52.369 0.1144 7401 +7403 2 -39.25185014610565 -810.1626089502502 52.2458 0.1144 7402 +7404 2 -38.17203348575438 -809.8089938628631 52.4989 0.1144 7403 +7405 2 -37.22510104450072 -809.4794252786483 53.8479 0.1144 7404 +7406 2 -83.81255407246238 -810.3067228898292 87.4026 0.1144 6818 +7407 2 -83.40536288177393 -809.2520229020479 87.7478 0.1144 7406 +7408 2 -83.20922881119739 -808.1270374104264 87.9194 0.1144 7407 +7409 2 -82.94055678463312 -807.0219067655967 88.2031 0.1144 7408 +7410 2 -82.59435876160981 -805.9443639781146 88.6119 0.1144 7409 +7411 2 -82.24468505617025 -804.8726666702312 89.0901 0.1144 7410 +7412 2 -82.00581020102632 -803.7845603778222 89.5348 0.1144 7411 +7413 2 -82.08839910835508 -802.6495453504388 89.7571 0.1144 7412 +7414 2 -82.288816527959 -801.523922963526 89.8103 0.1144 7413 +7415 2 -82.54229728449425 -800.4080279747093 89.8559 0.1144 7414 +7416 2 -82.80223237160553 -799.2948091056236 89.9195 0.1144 7415 +7417 2 -83.0222472482458 -798.1745420597559 90.0057 0.1144 7416 +7418 2 -83.10763890740517 -797.0372588652323 90.1029 0.1144 7417 +7419 2 -83.07590471032893 -795.893832072326 90.1914 0.1144 7418 +7420 2 -83.13946908297837 -794.7592133784337 90.2653 0.1144 7419 +7421 2 -83.38430160808414 -793.642110874341 90.3288 0.1144 7420 +7422 2 -83.65933925720097 -792.5327756402623 90.3594 0.1144 7421 +7423 2 -83.93393061606034 -791.4218748950832 90.3286 0.1144 7422 +7424 2 -84.50559685869229 -790.5968733514269 89.8853 0.1144 7423 +7425 2 -85.48260657278487 -790.1781986345301 88.858 0.1144 7424 +7426 2 -86.38162098101739 -789.6901015706273 87.6215 0.1144 7425 +7427 2 -87.05816842335403 -788.9847367017348 86.2154 0.1144 7426 +7428 2 -87.69851191141399 -788.2248385063829 84.8445 0.1144 7427 +7429 2 -88.64963581394875 -787.6626595917774 84.1103 0.1144 7428 +7430 2 -89.6261064390097 -787.087889265131 83.7309 0.1144 7429 +7431 2 -90.07008011792877 -787.1848345199251 83.5677 0.1144 7430 +7432 2 -91.05558018448676 -787.4012436667147 84.8683 0.1144 7431 +7433 2 -92.13168400397856 -787.6692362406327 85.5361 0.1144 7432 +7434 2 -93.13596795442652 -788.1172802416779 86.2926 0.1144 7433 +7435 2 -94.14100451768036 -788.5511142612324 86.9929 0.1144 7434 +7436 2 -95.25540797759473 -788.7325454838237 87.4224 0.1144 7435 +7437 2 -96.39076697265665 -788.8342441186816 87.6232 0.1144 7436 +7438 2 -97.53394629608206 -788.8815898100654 87.6954 0.1144 7437 +7439 2 -98.67699657836141 -788.9073755072845 87.7002 0.1144 7438 +7440 2 -99.82093161617581 -788.9338224212936 87.6725 0.1144 7439 +7441 2 -100.96483072537004 -788.9668205725243 87.6305 0.1144 7440 +7442 2 -102.1059068514214 -789.0263722690206 87.5532 0.1144 7441 +7443 2 -103.24529014173608 -789.1062467189516 87.4118 0.1144 7442 +7444 2 -104.38381608761935 -789.2005015360729 87.2323 0.1144 7443 +7445 2 -105.5176143896737 -789.337394122646 87.0862 0.1144 7444 +7446 2 -106.64555490049297 -789.5231552705018 87.0307 0.1144 7445 +7447 2 -107.77340711687937 -789.7155528484292 87.0556 0.1144 7446 +7448 2 -108.89974618797791 -789.908311523764 87.1402 0.1144 7447 +7449 2 -110.0260328932637 -790.1011553919489 87.2637 0.1144 7448 +7450 2 -111.14902842467512 -790.3146307451633 87.3869 0.1144 7449 +7451 2 -112.24396546929772 -790.6304702587031 87.4065 0.1144 7450 +7452 2 -113.30504781176235 -791.0518018531864 87.2421 0.1144 7451 +7453 2 -114.40346905631773 -791.3402030659255 87.1814 0.1144 7452 +7454 2 -115.52941179392505 -791.5139372065812 87.4269 0.1144 7453 +7455 2 -116.64372455035993 -791.684631028515 87.8973 0.1144 7454 +7456 2 -117.70219785958894 -792.0773613477545 88.3008 0.1144 7455 +7457 2 -118.75294223647039 -792.5111193845123 88.6119 0.1144 7456 +7458 2 -119.80694426765258 -792.948171004191 88.811 0.1144 7457 +7459 2 -120.86353412413293 -793.3854047233651 88.8748 0.1144 7458 +7460 2 -121.93928745902831 -793.7740840287847 88.825 0.1144 7459 +7461 2 -123.04238259652674 -794.068057918148 88.6833 0.1144 7460 +7462 2 -124.15448534635237 -794.3233160107332 88.4635 0.1144 7461 +7463 2 -125.26134058834141 -794.5913123787709 88.1905 0.1144 7462 +7464 2 -126.3194411810631 -795.0108111698083 87.955 0.1144 7463 +7465 2 -127.37148067511691 -795.4533471716784 87.764 0.1144 7464 +7466 2 -128.4533091368263 -795.8080814799085 87.4924 0.1144 7465 +7467 2 -129.47573905189972 -796.0257097610738 86.3808 0.1144 7466 +7468 2 -89.93093706268613 -786.762306816481 83.6256 0.1144 7430 +7469 2 -90.71039597012262 -785.9267554646073 83.757 0.1144 7468 +7470 2 -91.48588053907267 -785.0955692740818 84.0468 0.1144 7469 +7471 2 -92.25825362459719 -784.2650529125588 84.427 0.1144 7470 +7472 2 -92.96519309084827 -783.3836345720094 84.868 0.1144 7471 +7473 2 -93.66055494173982 -782.4990907198887 85.3678 0.1144 7472 +7474 2 -94.35422154784808 -781.6174957904736 85.9244 0.1144 7473 +7475 2 -95.0434675252124 -780.7387005113062 86.527 0.1144 7474 +7476 2 -95.73192255210418 -779.8632926201221 87.1648 0.1144 7475 +7477 2 -96.11682494276272 -779.3398417249415 87.0302 0.1144 7476 +7478 2 -96.75735533072604 -778.3961227879187 87.0825 0.1144 7477 +7479 2 -97.37855865558139 -777.437824254481 87.1987 0.1144 7478 +7480 2 -97.99806983723654 -776.475785847865 87.2864 0.1144 7479 +7481 2 -98.61709018780147 -775.5147369284095 87.3751 0.1144 7480 +7482 2 -99.23597297970382 -774.5537208359912 87.4516 0.1144 7481 +7483 2 -99.85650647555653 -773.592310819128 87.502 0.1144 7482 +7484 2 -100.4740582216664 -772.6290679988191 87.5204 0.1144 7483 +7485 2 -101.11780482468073 -771.6845088470941 87.5115 0.1144 7484 +7486 2 -101.90580964096776 -770.867709226925 87.3513 0.1144 7485 +7487 2 -102.7589745810168 -770.1177246370358 87.0089 0.1144 7486 +7488 2 -103.65862838257628 -769.4339947507946 86.5903 0.1144 7487 +7489 2 -104.65344760484402 -768.8946832591622 86.224 0.1144 7488 +7490 2 -105.6726672182371 -768.3878597793639 85.9298 0.1144 7489 +7491 2 -106.69353753558057 -767.8806423751209 85.7072 0.1144 7490 +7492 2 -107.71748650931251 -767.3726175832128 85.5588 0.1144 7491 +7493 2 -108.74138311723169 -766.8646779841545 85.4627 0.1144 7492 +7494 2 -109.76497099355598 -766.3551400469585 85.3919 0.1144 7493 +7495 2 -110.78985708863566 -765.8476912789904 85.3269 0.1144 7494 +7496 2 -111.71293892388923 -765.1783619912516 85.2718 0.1144 7495 +7497 2 -112.59113884798268 -764.4464655072306 85.2247 0.1144 7496 +7498 2 -113.46399505013049 -763.70588486316 85.181 0.1144 7497 +7499 2 -114.33622286252546 -762.9663265332869 85.1301 0.1144 7498 +7500 2 -115.22835927259817 -762.2510957133255 85.0788 0.1144 7499 +7501 2 -116.13683789445297 -761.5553004822174 85.0214 0.1144 7500 +7502 2 -117.04731739110282 -760.8648434624253 84.912 0.1144 7501 +7503 2 -117.95722086381257 -760.1753235639809 84.7442 0.1144 7502 +7504 2 -118.74509284483385 -759.3677153721443 84.3256 0.1144 7503 +7505 2 -119.44734369745933 -758.5156947679411 83.6004 0.1144 7504 +7506 2 -120.11501426743965 -757.6960615695028 82.5899 0.1144 7505 +7507 2 -120.66418238827079 -757.0210945369281 80.7719 0.1144 7506 +7508 2 -95.94957466303772 -779.7889616130915 87.7484 0.1144 7476 +7509 2 -96.89109299916797 -779.4652651152257 89.1047 0.1144 7508 +7510 2 -97.39815251930425 -778.7954035451688 90.2927 0.1144 7509 +7511 2 -97.3439971895123 -777.6972375830961 91.0431 0.1144 7510 +7512 2 -97.23420472563703 -776.5782543370749 91.5463 0.1144 7511 +7513 2 -97.18670054659911 -775.4452062564649 91.8722 0.1144 7512 +7514 2 -97.33249462880079 -774.3209877965583 92.0525 0.1144 7513 +7515 2 -97.60816066767052 -773.2106302482821 92.1413 0.1144 7514 +7516 2 -97.88319831678731 -772.1012950142034 92.2015 0.1144 7515 +7517 2 -98.1587267969945 -770.9909702929642 92.2645 0.1144 7516 +7518 2 -98.43340334870369 -769.8801219135978 92.332 0.1144 7517 +7519 2 -98.70937811916828 -768.7713627034593 92.4017 0.1144 7518 +7520 2 -98.98490659937544 -767.6610379822201 92.472 0.1144 7519 +7521 2 -99.24649239043714 -766.5474251886897 92.5417 0.1144 7520 +7522 2 -99.47470920824941 -765.4268001469975 92.6117 0.1144 7521 +7523 2 -99.68283773793512 -764.3018092514207 92.6814 0.1144 7522 +7524 2 -99.89127499921574 -763.1784166939815 92.7489 0.1144 7523 +7525 2 -100.10028828443646 -762.0540870151945 92.8133 0.1144 7524 +7526 2 -100.30833162127236 -760.9290437538049 92.8724 0.1144 7525 +7527 2 -100.51734490649305 -759.8047140750178 92.9242 0.1144 7526 +7528 2 -100.50801332733026 -758.6817482867455 92.9662 0.1144 7527 +7529 2 -99.95399491464698 -757.726132590763 92.9863 0.1144 7528 +7530 2 -99.1839080084852 -756.8795095831863 92.9824 0.1144 7529 +7531 2 -98.4148957823337 -756.0334297725127 92.9564 0.1144 7530 +7532 2 -97.64538490011202 -755.1858696435883 92.9062 0.1144 7531 +7533 2 -96.87788581924839 -754.339428735507 92.8276 0.1144 7532 +7534 2 -96.10882122728411 -753.4934341176831 92.7136 0.1144 7533 +7535 2 -95.3407461224804 -752.6479303309496 92.5574 0.1144 7534 +7536 2 -94.57355577321168 -751.803087761006 92.351 0.1144 7535 +7537 2 -93.83626250889576 -750.9403514963258 92.0251 0.1144 7536 +7538 2 -93.12887494174528 -750.0637177758696 91.5368 0.1144 7537 +7539 2 -92.43351128021193 -749.1917750780856 90.9182 0.1144 7538 +7540 2 -91.74313024321653 -748.3270033950632 90.2079 0.1144 7539 +7541 2 -91.05733790631436 -747.4677520228524 89.4384 0.1144 7540 +7542 2 -90.2083422076137 -746.8129042286378 88.5682 0.1144 7541 +7543 2 -89.15910406833923 -746.8353919384336 87.7374 0.1144 7542 +7544 2 -88.07685315811882 -747.0080244015659 86.9336 0.1144 7543 +7545 2 -86.99326027554295 -747.1826491272806 86.1406 0.1144 7544 +7546 2 -85.90869744458226 -747.3565602703925 85.3625 0.1144 7545 +7547 2 -84.82069485982545 -747.5297656558819 84.6045 0.1144 7546 +7548 2 -83.73046554717813 -747.7043020871636 83.8712 0.1144 7547 +7549 2 -82.63436033694137 -747.8925991080955 83.2146 0.1144 7548 +7550 2 -81.53533833849926 -748.1034010695197 82.642 0.1144 7549 +7551 2 -80.43248817244589 -748.3225316042156 82.1288 0.1144 7550 +7552 2 -79.32683525456196 -748.5439303060516 81.6536 0.1144 7551 +7553 2 -78.21922290113265 -748.7641245941948 81.1964 0.1144 7552 +7554 2 -77.13262194100977 -748.5810019209398 80.6411 0.1144 7553 +7555 2 -76.01979970718897 -748.6328391268253 80.0954 0.1144 7554 +7556 2 -74.9250953223752 -748.8824482810437 79.5841 0.1144 7555 +7557 2 -73.85686818627867 -749.2155914720396 79.0056 0.1144 7556 +7558 2 -72.80178658568882 -749.5687877150785 78.3479 0.1144 7557 +7559 2 -71.82181494471769 -750.0621740575043 77.5698 0.1144 7558 +7560 2 -70.88504478550232 -750.6116951661104 76.6937 0.1144 7559 +7561 2 -69.86448420604208 -750.9700294146156 75.7907 0.1144 7560 +7562 2 -68.8175761115473 -751.2423269938947 74.8815 0.1144 7561 +7563 2 -67.73978285967553 -751.2807161358448 73.9642 0.1144 7562 +7564 2 -66.67865766322493 -751.1065620447139 73.0218 0.1144 7563 +7565 2 -65.61685893834823 -750.9856369528171 72.0236 0.1144 7564 +7566 2 -65.51243934115283 -751.8372575183987 70.721 0.1144 7565 +7567 2 -65.8459392199114 -752.7714203312253 69.335 0.1144 7566 +7568 2 -66.32052626522794 -753.578790157524 67.7888 0.1144 7567 +7569 2 -66.75913459383786 -754.1586285091998 65.627 0.1144 7568 +7570 2 -69.09934381080458 -860.9680260038061 85.3196 0.1144 6157 +7571 2 -70.20397441449094 -860.7459989122171 85.7338 0.1144 7570 +7572 2 -71.30844074094776 -860.4849004370722 86.1017 0.1144 7571 +7573 2 -72.38111281530885 -860.170687975693 86.6841 0.1144 7572 +7574 2 -72.42078004566937 -860.2461310060903 87.0873 0.1144 7573 +7575 2 -72.67948691214698 -860.7273614781484 89.5448 0.1144 7574 +7576 2 -73.06262548548631 -861.3187651335477 91.6667 0.1144 7575 +7577 2 -73.73751993862109 -862.1082844031845 92.8332 0.1144 7576 +7578 2 -74.44957629653291 -862.8789759583201 93.954 0.1144 7577 +7579 2 -75.24826316987662 -863.5807236682191 94.9407 0.1144 7578 +7580 2 -76.17373041633834 -864.1831550300576 95.6542 0.1144 7579 +7581 2 -77.1457604118124 -864.7537562111803 96.1162 0.1144 7580 +7582 2 -78.11493769868969 -865.3440845830219 96.4544 0.1144 7581 +7583 2 -78.87108570982573 -866.15666809581 96.6624 0.1144 7582 +7584 2 -79.38985100397443 -867.1738375701784 96.6224 0.1144 7583 +7585 2 -79.86498834897418 -868.2098511962406 96.4012 0.1144 7584 +7586 2 -80.33897674767687 -869.2410502691141 96.0616 0.1144 7585 +7587 2 -80.59169738532074 -870.3350848249253 95.6838 0.1144 7586 +7588 2 -80.63729449462596 -871.4668432989926 95.3277 0.1144 7587 +7589 2 -80.66390850850169 -872.6031319041741 95.0116 0.1144 7588 +7590 2 -81.02623520184778 -873.6544352939188 94.6814 0.1144 7589 +7591 2 -81.61188358939714 -874.6240935925792 94.3085 0.1144 7590 +7592 2 -82.17075730198223 -875.6067567665007 93.891 0.1144 7591 +7593 2 -82.22798577753304 -876.6934303060635 93.4522 0.1144 7592 +7594 2 -82.0196922780811 -877.8034124446974 93.0191 0.1144 7593 +7595 2 -81.73289250506275 -878.8948361617736 92.57 0.1144 7594 +7596 2 -81.24640551021426 -879.8982620752537 92.0237 0.1144 7595 +7597 2 -80.66774925133137 -880.8505508518629 91.383 0.1144 7596 +7598 2 -80.08335534605811 -881.7925047644719 90.6892 0.1144 7597 +7599 2 -79.45316051463143 -882.7064234284912 90.0208 0.1144 7598 +7600 2 -78.74239357330558 -883.572107715699 89.4589 0.1144 7599 +7601 2 -78.00725837535492 -884.4295041763482 89.01 0.1144 7600 +7602 2 -77.47386225476896 -885.4282767122862 88.6906 0.1144 7601 +7603 2 -77.47846447359294 -886.5524438126686 88.5256 0.1144 7602 +7604 2 -77.58562698038372 -887.6911737881843 88.48 0.1144 7603 +7605 2 -77.69328031826481 -888.8289142765398 88.5035 0.1144 7604 +7606 2 -77.80289309169126 -889.967859178588 88.5564 0.1144 7605 +7607 2 -77.91151637795724 -891.106313249546 88.6116 0.1144 7606 +7608 2 -78.08657818387627 -892.2371270910372 88.6231 0.1144 7607 +7609 2 -78.37694776326776 -893.342095867684 88.5422 0.1144 7608 +7610 2 -78.68517339226577 -894.442076509163 88.3814 0.1144 7609 +7611 2 -78.99457060791971 -895.5399601564343 88.1636 0.1144 7610 +7612 2 -79.30204121506534 -896.6367769486751 87.9124 0.1144 7611 +7613 2 -79.64061883148631 -897.7244256454787 87.6509 0.1144 7612 +7614 2 -80.05441052362599 -898.7857651649146 87.4062 0.1144 7613 +7615 2 -80.47607588656709 -899.8453711019005 87.1903 0.1144 7614 +7616 2 -80.90087227170943 -900.9040844583714 87.0061 0.1144 7615 +7617 2 -81.26127717464024 -901.9890686545436 86.8678 0.1144 7616 +7618 2 -81.33965940827494 -903.126306692709 86.8221 0.1144 7617 +7619 2 -81.38378170995901 -904.2692488576913 86.8546 0.1144 7618 +7620 2 -81.26408085461944 -905.4056325759973 86.9296 0.1144 7619 +7621 2 -81.06366343501548 -906.53125496291 87.0232 0.1144 7620 +7622 2 -80.85362783559717 -907.6549562519442 87.1226 0.1144 7621 +7623 2 -80.64456218456374 -908.779371123581 87.2169 0.1144 7622 +7624 2 -80.43455941218255 -909.9032099712776 87.2981 0.1144 7623 +7625 2 -80.22554612696175 -911.0275396500647 87.3678 0.1144 7624 +7626 2 -80.0154581617308 -912.1513261319485 87.4275 0.1144 7625 +7627 2 -79.80683880095478 -913.277306514686 87.4759 0.1144 7626 +7628 2 -79.59680320153652 -914.4010078037201 87.507 0.1144 7627 +7629 2 -79.38622440521522 -915.5257837727645 87.5143 0.1144 7628 +7630 2 -79.17715875418173 -916.6501986444013 87.4894 0.1144 7629 +7631 2 -78.96712315476347 -917.7738999334355 87.4264 0.1144 7630 +7632 2 -78.82288055551624 -918.9085798894417 87.3068 0.1144 7631 +7633 2 -79.11846481570734 -920.0006728319734 87.043 0.1144 7632 +7634 2 -79.4502270041445 -921.0841322637581 86.6617 0.1144 7633 +7635 2 -79.78238621860959 -922.1625536036091 86.2028 0.1144 7634 +7636 2 -80.11384277703499 -923.237725901372 85.7016 0.1144 7635 +7637 2 -80.44524696964763 -924.3129833919846 85.1906 0.1144 7636 +7638 2 -80.785566686035 -925.3869129383879 84.7028 0.1144 7637 +7639 2 -81.29292475052361 -926.4010616328102 84.3338 0.1144 7638 +7640 2 -81.805629638541 -927.417205691398 84.0549 0.1144 7639 +7641 2 -82.31601089202229 -928.4373209868891 83.8474 0.1144 7640 +7642 2 -82.82840394686158 -929.4585555032232 83.6965 0.1144 7641 +7643 2 -83.3417341230487 -930.4803660434976 83.5884 0.1144 7642 +7644 2 -83.85398961922547 -931.5016333868689 83.5111 0.1144 7643 +7645 2 -84.36669140565976 -932.5244662413407 83.4599 0.1144 7644 +7646 2 -84.89566183012585 -933.5384007017673 83.4397 0.1144 7645 +7647 2 -85.53388651763584 -934.4880244631868 83.4963 0.1144 7646 +7648 2 -86.17340081168848 -935.4357411548739 83.6088 0.1144 7647 +7649 2 -86.8118927915437 -936.3828294568082 83.7575 0.1144 7648 +7650 2 -87.44531695401108 -937.3226943781679 84.1372 0.1144 7649 +7651 2 -72.5087176881361 -859.8408731239493 86.9478 0.1144 7573 +7652 2 -72.91044020648351 -858.8027170575256 87.5776 0.1144 7651 +7653 2 -73.31474503949951 -857.7540580557524 88.1051 0.1144 7652 +7654 2 -73.71990180101344 -856.7059227121065 88.6256 0.1144 7653 +7655 2 -74.17124790249602 -855.676788286156 89.1467 0.1144 7654 +7656 2 -74.6739152409435 -854.6711004087019 89.6624 0.1144 7655 +7657 2 -74.7831696049548 -853.5780649408672 90.1216 0.1144 7656 +7658 2 -74.47796406336633 -852.4907396963412 90.4322 0.1144 7657 +7659 2 -74.08819666017303 -851.4185782759347 90.6307 0.1144 7658 +7660 2 -73.69276277529315 -850.347042143698 90.7558 0.1144 7659 +7661 2 -73.40814487043806 -849.2415004446943 90.8768 0.1144 7660 +7662 2 -73.19940776872119 -848.1194498476325 91.0414 0.1144 7661 +7663 2 -72.97867648684121 -846.9995345824452 91.2604 0.1144 7662 +7664 2 -72.7420814179371 -845.8859494247808 91.5253 0.1144 7663 +7665 2 -72.5048251322431 -844.7732490226516 91.8204 0.1144 7664 +7666 2 -72.26699282260893 -843.6614857418701 92.1298 0.1144 7665 +7667 2 -72.19471243435538 -842.5294069171083 92.4381 0.1144 7666 +7668 2 -72.46939139511107 -841.4359323684707 92.7293 0.1144 7667 +7669 2 -72.89329988832955 -840.3792511159744 93.0017 0.1144 7668 +7670 2 -73.31632362601303 -839.3219086466881 93.27 0.1144 7669 +7671 2 -73.67947170036456 -838.2439607184028 93.5547 0.1144 7670 +7672 2 -74.01108360491253 -837.1560187922128 93.8647 0.1144 7671 +7673 2 -74.3390408291319 -836.0698213750355 94.1987 0.1144 7672 +7674 2 -74.66856356445192 -834.983177667601 94.5549 0.1144 7673 +7675 2 -74.95874211324093 -833.8885486620367 94.9346 0.1144 7674 +7676 2 -75.18294866394666 -832.7788400189143 95.3414 0.1144 7675 +7677 2 -75.37712908855346 -831.6654650763636 95.7678 0.1144 7676 +7678 2 -75.56872168786214 -830.5519080343176 96.2041 0.1144 7677 +7679 2 -75.7595147244856 -829.4377421412946 96.6417 0.1144 7678 +7680 2 -75.8780495037989 -828.3141404520412 97.0662 0.1144 7679 +7681 2 -75.95096476391754 -827.1839783155131 97.4655 0.1144 7680 +7682 2 -76.01745852049714 -826.0512776179164 97.8331 0.1144 7681 +7683 2 -76.08298232869186 -824.9178633377171 98.1635 0.1144 7682 +7684 2 -76.14934945317194 -823.7809764766846 98.4553 0.1144 7683 +7685 2 -76.18671276575068 -822.6410517059768 98.6597 0.1144 7684 +7686 2 -76.20011035836197 -821.4984860516216 98.7526 0.1144 7685 +7687 2 -76.20651042349414 -820.3543189575456 98.7532 0.1144 7686 +7688 2 -76.21282529577653 -819.2100994976569 98.6922 0.1144 7687 +7689 2 -76.35845130662892 -818.0775610766914 98.6807 0.1144 7688 +7690 2 -76.38575014913587 -816.9341496970043 98.6975 0.1144 7689 +7691 2 -76.34171304030164 -815.7912598978348 98.7305 0.1144 7690 +7692 2 -76.14874281896331 -814.6655193843609 98.7798 0.1144 7691 +7693 2 -76.04006716688465 -813.5271505062527 98.8434 0.1144 7692 +7694 2 -76.06844068940194 -812.3842823234687 98.9192 0.1144 7693 +7695 2 -76.28845556604219 -811.2640152776011 99.0038 0.1144 7694 +7696 2 -76.65949684997088 -810.1841110153534 99.1074 0.1144 7695 +7697 2 -76.93894420126864 -809.0761951215003 99.2435 0.1144 7696 +7698 2 -77.26904296052876 -807.9886142927179 99.5431 0.1144 7697 +7699 2 -77.7835583082641 -806.9768276714658 99.8953 0.1144 7698 +7700 2 -78.24301564743934 -805.9365978490332 100.2039 0.1144 7699 +7701 2 -77.70041057288614 -804.9450362810662 100.4769 0.1144 7700 +7702 2 -77.04525292897128 -804.0118844651114 100.7118 0.1144 7701 +7703 2 -77.06617152921044 -804.089184608475 101.3754 0.1144 7702 +7704 2 -76.87560133308861 -804.5938118970257 103.616 0.1144 7703 +7705 2 -76.22851839984162 -805.3952286409864 104.6539 0.1144 7704 +7706 2 -75.4247621163953 -806.1566851379844 105.3083 0.1144 7705 +7707 2 -74.52343227739149 -806.7535794848511 106.1908 0.1144 7706 +7708 2 -73.59812782211887 -807.2670695286226 107.2534 0.1144 7707 +7709 2 -72.60371283533351 -807.6374838426775 108.2785 0.1144 7708 +7710 2 -71.55297416418097 -807.9007361644994 109.1748 0.1144 7709 +7711 2 -70.48317882384868 -808.1401846345369 109.9781 0.1144 7710 +7712 2 -69.40309237311641 -808.3812893191545 110.6907 0.1144 7711 +7713 2 -68.30488366373191 -808.2890445868813 111.2994 0.1144 7712 +7714 2 -67.25692731799842 -807.8879887959533 111.7785 0.1144 7713 +7715 2 -66.43036506364965 -807.1355359272062 112.1882 0.1144 7714 +7716 2 -65.8243111388623 -806.1815062577252 112.5429 0.1144 7715 +7717 2 -65.27577539186035 -805.1864166415293 112.8632 0.1144 7716 +7718 2 -64.70046496989414 -804.2043319005944 113.1432 0.1144 7717 +7719 2 -63.7040389929397 -803.7368201761956 113.3955 0.1144 7718 +7720 2 -62.99747362826898 -804.5433447917205 113.6117 0.1144 7719 +7721 2 -62.684351673709955 -805.6359613033902 113.8318 0.1144 7720 +7722 2 -62.423300467338635 -806.7445031779498 114.0955 0.1144 7721 +7723 2 -62.16541311020558 -807.8522900306571 114.4156 0.1144 7722 +7724 2 -62.08324076768031 -808.9820442145943 114.7726 0.1144 7723 +7725 2 -62.004353395863234 -810.1045445052704 115.2869 0.1144 7724 +7726 2 -61.91955248132669 -811.2059201654762 116.0124 0.1144 7725 +7727 2 -61.83604737649904 -812.2920111641811 116.8661 0.1144 7726 +7728 2 -61.75325895585706 -813.3704434186169 117.7826 0.1144 7727 +7729 2 -61.671366217313164 -814.4453178993697 118.7133 0.1144 7728 +7730 2 -61.59508828717969 -815.4955896581896 119.7568 0.1144 7729 +7731 2 -61.54516918940675 -816.310868710832 121.7185 0.1144 7730 +7732 2 -77.31679165747272 -802.9649579448035 100.9162 0.1144 7702 +7733 2 -77.2277658282431 -801.8318592148908 101.1595 0.1144 7732 +7734 2 -76.80412700161054 -800.781956650569 101.5168 0.1144 7733 +7735 2 -76.36859562485722 -799.7407078283063 101.9712 0.1144 7734 +7736 2 -75.8697128013884 -799.7134237954713 102.5352 0.1144 7735 +7737 2 -74.86282011947844 -799.5295262774997 103.7529 0.1144 7736 +7738 2 -73.83662809931579 -799.2196718798311 104.6576 0.1144 7737 +7739 2 -72.77533111440741 -798.8775577324704 105.2856 0.1144 7738 +7740 2 -71.73079670020425 -798.5188669080195 106.0091 0.1144 7739 +7741 2 -70.89034380877101 -797.8894596413936 106.8404 0.1144 7740 +7742 2 -70.2308377247893 -797.035566711811 107.7672 0.1144 7741 +7743 2 -69.57841436113651 -796.1833275877619 108.74 0.1144 7742 +7744 2 -69.1682995812362 -795.2141618190168 109.6878 0.1144 7743 +7745 2 -68.95044944303004 -794.1550600310457 110.6003 0.1144 7744 +7746 2 -68.76979644568453 -793.0946419179647 111.5514 0.1144 7745 +7747 2 -68.60135806566416 -792.0403232412185 112.5606 0.1144 7746 +7748 2 -68.28930696219007 -791.0428121842268 113.645 0.1144 7747 +7749 2 -67.86309944058706 -790.0933345759975 114.8034 0.1144 7748 +7750 2 -67.43903035244173 -789.1491623520469 115.9976 0.1144 7749 +7751 2 -67.03920047977522 -788.1917179604902 117.1786 0.1144 7750 +7752 2 -66.723679897051 -787.1866747913291 118.2586 0.1144 7751 +7753 2 -66.44375880958634 -786.1565614020401 119.2632 0.1144 7752 +7754 2 -66.16175165447683 -785.1210574356222 120.2356 0.1144 7753 +7755 2 -66.32342684853114 -784.6592376096862 121.9232 0.1144 7754 +7756 2 -67.24858165826751 -784.6812639126364 123.5654 0.1144 7755 +7757 2 -68.13163096889213 -784.7017068822202 125.3445 0.1144 7756 +7758 2 -69.07754559458263 -784.5566664019918 126.8632 0.1144 7757 +7759 2 -70.07263551255224 -784.3008784133075 128.0888 0.1144 7758 +7760 2 -71.09593037227447 -784.0234568567081 129.1391 0.1144 7759 +7761 2 -71.91522629793073 -783.3131049536325 129.9264 0.1144 7760 +7762 2 -72.35209822716061 -782.2790645784773 130.3652 0.1144 7761 +7763 2 -72.71355415831201 -781.1973767770137 130.562 0.1144 7762 +7764 2 -73.23609244930716 -780.1811311893509 130.6189 0.1144 7763 +7765 2 -74.34227825305652 -780.1292056890326 130.6654 0.1144 7764 +7766 2 -75.48410940096028 -780.1919212347672 130.7376 0.1144 7765 +7767 2 -76.6249706004792 -780.2539231978991 130.8574 0.1144 7766 +7768 2 -77.76502131074994 -780.3195353005267 131.0282 0.1144 7767 +7769 2 -78.90368860941544 -780.3830058681137 131.2366 0.1144 7768 +7770 2 -80.0424082738937 -780.4463912428508 131.4681 0.1144 7769 +7771 2 -81.1800532583616 -780.509233420685 131.7112 0.1144 7770 +7772 2 -82.3178358014921 -780.5720427714821 131.9646 0.1144 7771 +7773 2 -83.4482762339396 -780.4478120639742 132.2642 0.1144 7772 +7774 2 -84.56755931525441 -780.258854518789 132.6052 0.1144 7773 +7775 2 -85.68639610631176 -780.0683314625032 132.9661 0.1144 7774 +7776 2 -86.80348838835623 -779.874153725889 133.327 0.1144 7775 +7777 2 -87.81389480055365 -779.3511139738715 133.63 0.1144 7776 +7778 2 -88.65009224065085 -778.5760273134426 133.8403 0.1144 7777 +7779 2 -89.48744955360816 -777.8015362157295 134.0587 0.1144 7778 +7780 2 -76.85791851803208 -799.2438796424965 102.3039 0.1144 7735 +7781 2 -77.64685425250067 -798.4410336380358 102.8045 0.1144 7780 +7782 2 -78.43672710831703 -797.6387636575153 103.2984 0.1144 7781 +7783 2 -79.2266851569832 -796.8365460428074 103.789 0.1144 7782 +7784 2 -80.01776242649251 -796.0323166267415 104.2642 0.1144 7783 +7785 2 -80.5357880001911 -795.056258541895 104.8065 0.1144 7784 +7786 2 -80.90454949787997 -794.0018331449028 105.4099 0.1144 7785 +7787 2 -81.38569277078284 -792.9897230713731 105.9489 0.1144 7786 +7788 2 -82.06355174979942 -792.083621634134 106.3168 0.1144 7787 +7789 2 -82.7801648632607 -791.1973504027295 106.5277 0.1144 7788 +7790 2 -83.50051784990035 -790.3093870281248 106.6047 0.1144 7789 +7791 2 -83.99383189183217 -789.2818687625777 106.5994 0.1144 7790 +7792 2 -84.32945096190363 -788.1896992337021 106.5588 0.1144 7791 +7793 2 -84.64163889669797 -787.0898179022082 106.5067 0.1144 7792 +7794 2 -85.03415188035848 -786.0164210288859 106.4106 0.1144 7793 +7795 2 -85.83907423983109 -785.2421825028352 106.0464 0.1144 7794 +7796 2 -85.63176459311504 -784.8301063929011 105.7148 0.1144 7795 +7797 2 -85.12075184829783 -783.8177022074918 105.4623 0.1144 7796 +7798 2 -84.60582333397309 -782.7962003988124 105.4178 0.1144 7797 +7799 2 -83.72868186033907 -782.0998717011191 105.315 0.1144 7798 +7800 2 -82.69581135532988 -781.6194663203395 105.11 0.1144 7799 +7801 2 -81.58994249891825 -781.3586495792763 104.8569 0.1144 7800 +7802 2 -80.45528546735937 -781.2842626131196 104.6013 0.1144 7801 +7803 2 -79.32222266606675 -781.3667372051275 104.2924 0.1144 7802 +7804 2 -78.29037468803946 -781.7892661156662 103.7593 0.1144 7803 +7805 2 -77.19641060439542 -782.0770095320929 103.3477 0.1144 7804 +7806 2 -76.08745248449102 -782.3299475053157 103.0492 0.1144 7805 +7807 2 -74.9554489499894 -782.4719983338099 102.8426 0.1144 7806 +7808 2 -73.82281672396132 -782.3223237181842 102.7141 0.1144 7807 +7809 2 -72.69250882500594 -782.1446152390421 102.6556 0.1144 7808 +7810 2 -71.60792446664911 -781.7813788702576 102.6474 0.1144 7809 +7811 2 -70.52262652568965 -781.4191124498581 102.6474 0.1144 7810 +7812 2 -69.43798980152008 -781.0559612739233 102.6474 0.1144 7811 +7813 2 -86.67926373400621 -784.8146490376215 105.8781 0.1144 7795 +7814 2 -87.69844500973264 -784.297002964316 105.77 0.1144 7813 +7815 2 -87.76208256536935 -783.507528638253 105.2072 0.1144 7814 +7816 2 -87.90457075301401 -782.438912076346 104.2986 0.1144 7815 +7817 2 -88.26768869346363 -781.454967600614 103.2304 0.1144 7816 +7818 2 -88.74944494290013 -780.50086825247 102.2333 0.1144 7817 +7819 2 -89.23931243002924 -779.535673507844 101.3295 0.1144 7818 +7820 2 -89.73439459795792 -778.5576029291028 100.5256 0.1144 7819 +7821 2 -90.2682777555145 -777.5885923285016 99.825 0.1144 7820 +7822 2 -91.00451435204259 -776.7708432753485 99.1995 0.1144 7821 +7823 2 -91.94419648137031 -776.1640695647924 98.6905 0.1144 7822 +7824 2 -92.99048029398368 -775.735624009951 98.3433 0.1144 7823 +7825 2 -94.09896680782172 -775.6098716396389 97.9188 0.1144 7824 +7826 2 -95.20913685264722 -775.4838629035444 97.3384 0.1144 7825 +7827 2 -96.26648662037732 -775.133469412336 96.7338 0.1144 7826 +7828 2 -97.31869189538628 -774.7542073535386 96.1428 0.1144 7827 +7829 2 -97.72554340424622 -774.413511037535 93.996 0.1144 7828 +7830 2 -98.55668974823689 -773.7144342213904 93.1664 0.1144 7829 +7831 2 -99.41616835861636 -772.9738473741536 92.8043 0.1144 7830 +7832 2 -100.26804369212266 -772.2257698539971 92.447 0.1144 7831 +7833 2 -101.1215173637666 -771.4773836022457 92.0889 0.1144 7832 +7834 2 -101.97098076830397 -770.7399137490639 91.593 0.1144 7833 +7835 2 -102.74054389254336 -770.075524640325 90.3073 0.1144 7834 +7836 2 -97.35801985750895 -775.658032508862 95.9918 0.1144 7828 +7837 2 -97.45988008160391 -776.7922121219513 96.206 0.1144 7836 +7838 2 -97.57078556315615 -777.9225611583828 96.549 0.1144 7837 +7839 2 -97.68289545840142 -779.050950759269 96.9136 0.1144 7838 +7840 2 -97.94100908222048 -780.1602730781641 97.144 0.1144 7839 +7841 2 -98.30760412496532 -781.2437800576686 97.1594 0.1144 7840 +7842 2 -98.68775024676114 -782.3207091760805 96.9996 0.1144 7841 +7843 2 -98.75615010159075 -783.4612017669637 96.8859 0.1144 7842 +7844 2 -99.20236902320266 -783.4910941404978 96.4625 0.1144 7843 +7845 2 -100.29288375223456 -783.5651107991938 95.7118 0.1144 7844 +7846 2 -101.42844026001109 -783.6051885691702 95.4089 0.1144 7845 +7847 2 -102.5633218366034 -783.5306400137764 95.1667 0.1144 7846 +7848 2 -103.69311026231411 -783.3616386139887 95.0468 0.1144 7847 +7849 2 -104.82249925295048 -783.1803014754058 95.053 0.1144 7848 +7850 2 -105.94992880804149 -782.9977599231302 95.1784 0.1144 7849 +7851 2 -107.07063743274784 -782.7910150839956 95.4229 0.1144 7850 +7852 2 -108.16290937319172 -782.4995317943906 95.8135 0.1144 7851 +7853 2 -109.22383404433396 -782.1324374030389 96.3514 0.1144 7852 +7854 2 -110.2746004403419 -781.7578077979349 96.9671 0.1144 7853 +7855 2 -111.32376849821215 -781.3834869244256 97.6032 0.1144 7854 +7856 2 -112.33772037245636 -780.9136870982053 98.1691 0.1144 7855 +7857 2 -113.18241848803468 -780.1839697943551 98.5326 0.1144 7856 +7858 2 -113.9179123743465 -779.3107126482647 98.6563 0.1144 7857 +7859 2 -114.64351527786931 -778.4273848289363 98.5944 0.1144 7858 +7860 2 -115.36788094066209 -777.5458788864909 98.4124 0.1144 7859 +7861 2 -116.1607855029876 -776.7279826858373 98.191 0.1144 7860 +7862 2 -117.06146782191085 -776.0315035975805 98.0109 0.1144 7861 +7863 2 -118.00508664459497 -775.3854795055558 97.9101 0.1144 7862 +7864 2 -118.95141992467678 -774.7438236764625 97.8866 0.1144 7863 +7865 2 -119.89877551895617 -774.102796237122 97.9325 0.1144 7864 +7866 2 -120.76953162531304 -773.3677328022795 98.0434 0.1144 7865 +7867 2 -121.56582357562189 -772.5506275520986 98.219 0.1144 7866 +7868 2 -122.34118151247236 -771.7152551981372 98.4598 0.1144 7867 +7869 2 -123.1133756000846 -770.8806378660282 98.7669 0.1144 7868 +7870 2 -123.67300732428822 -769.9287454229104 99.3331 0.1144 7869 +7871 2 -124.03105813988668 -768.9135149399907 100.2635 0.1144 7870 +7872 2 -124.34318001215894 -767.9141882982717 101.3838 0.1144 7871 +7873 2 -124.51020994371115 -766.8472754986645 102.305 0.1144 7872 +7874 2 -124.5940737369 -765.7453238145188 103.0336 0.1144 7873 +7875 2 -124.6795944372054 -764.6296006141597 103.6087 0.1144 7874 +7876 2 -124.76497137568205 -763.5272878326061 104.3302 0.1144 7875 +7877 2 -97.76035411224662 -783.8468483767066 96.8257 0.1144 7843 +7878 2 -96.69331528408719 -784.2611277983535 96.8246 0.1144 7877 +7879 2 -95.62742850380796 -784.673532977305 96.8856 0.1144 7878 +7880 2 -94.56096569958856 -785.0868752776041 96.9903 0.1144 7879 +7881 2 -94.63979401069636 -785.3233729253046 97.4512 0.1144 7880 +7882 2 -94.9153663563205 -786.1399974426486 99.2785 0.1144 7881 +7883 2 -95.18666183502944 -786.9460111914345 101.1013 0.1144 7882 +7884 2 -95.49655088806196 -787.8924238576699 102.4626 0.1144 7883 +7885 2 -96.04533959748935 -788.60313804242 104.0922 0.1144 7884 +7886 2 -97.02673769915108 -788.5510410554175 105.2803 0.1144 7885 +7887 2 -98.08614511713401 -788.3414780512331 106.2048 0.1144 7886 +7888 2 -99.16743528902263 -788.1224765576834 106.9404 0.1144 7887 +7889 2 -100.12662268586666 -788.587170809569 107.3722 0.1144 7888 +7890 2 -100.99653388322342 -789.3260075430314 107.4906 0.1144 7889 +7891 2 -101.85927096423524 -790.076515696916 107.434 0.1144 7890 +7892 2 -102.76969070763926 -790.7691192421134 107.5281 0.1144 7891 +7893 2 -103.65254621067956 -791.4299897973294 108.2567 0.1144 7892 +7894 2 -93.79208691225011 -784.8170995552329 97.1404 0.1144 7880 +7895 2 -92.68609962750367 -784.6569226967945 97.3048 0.1144 7894 +7896 2 -91.57393691164782 -784.8824192676334 97.3837 0.1144 7895 +7897 2 -90.49118495399574 -785.2521781596165 97.4137 0.1144 7896 +7898 2 -89.37872891976423 -785.4170433527347 97.5078 0.1144 7897 +7899 2 -88.32763164923983 -785.0865982167495 97.8606 0.1144 7898 +7900 2 -87.34908806167414 -784.550846327127 98.4774 0.1144 7899 +7901 2 -86.25301027451914 -784.3350183064592 98.9901 0.1144 7900 +7902 2 -85.12991103545559 -784.1872124228994 99.3852 0.1144 7901 +7903 2 -84.0021348018659 -784.0405226585997 99.6702 0.1144 7902 +7904 2 -82.87847495208155 -783.8346208568046 99.8438 0.1144 7903 +7905 2 -81.93033469377815 -783.2209527457018 99.9432 0.1144 7904 +7906 2 -81.02690696722368 -782.5192656053803 100.0028 0.1144 7905 +7907 2 -80.10133160346479 -781.8469262446386 100.0502 0.1144 7906 +7908 2 -79.06137217496052 -781.3782446500937 100.0633 0.1144 7907 +7909 2 -78.00037812692884 -780.950276625539 100.0378 0.1144 7908 +7910 2 -76.96590067156927 -780.4661837373936 99.9412 0.1144 7909 +7911 2 -75.96722263323042 -779.9127735949679 99.7494 0.1144 7910 +7912 2 -74.97652609890159 -779.3507706885085 99.503 0.1144 7911 +7913 2 -73.98546846716508 -778.7872546367612 99.2569 0.1144 7912 +7914 2 -72.99516895886407 -778.220213638368 99.0643 0.1144 7913 +7915 2 -72.21817522870256 -777.3827265917281 99.0508 0.1144 7914 +7916 2 -71.69633989037811 -776.3703607439854 99.2746 0.1144 7915 +7917 2 -71.5075058757094 -775.2619526219905 99.7716 0.1144 7916 +7918 2 -70.41941469474602 -775.1490466792338 101.4546 0.1144 7917 +7919 2 -69.39317781999884 -774.9681661470887 102.6077 0.1144 7918 +7920 2 -68.36343002675181 -774.775619705151 103.7313 0.1144 7919 +7921 2 -67.32913497266125 -774.581686750025 104.8286 0.1144 7920 +7922 2 -66.28648672202686 -774.4886141146859 105.954 0.1144 7921 +7923 2 -65.26945658215718 -774.6424109436408 107.1568 0.1144 7922 +7924 2 -64.2029404178148 -774.7871533050853 108.1016 0.1144 7923 +7925 2 -63.11450626348321 -774.9238227665039 108.8998 0.1144 7924 +7926 2 -62.013684004543734 -775.0609768558465 109.58 0.1144 7925 +7927 2 -60.90443256626364 -775.2532834513485 110.0803 0.1144 7926 +7928 2 -59.80579699872308 -775.5528280218799 110.3295 0.1144 7927 +7929 2 -58.73701676313385 -775.9567639673141 110.4356 0.1144 7928 +7930 2 -57.7223272808551 -776.4825705425419 110.5633 0.1144 7929 +7931 2 -56.58192298440488 -776.5443339673001 110.6515 0.1144 7930 +7932 2 -55.4582247969538 -776.3276095719976 110.6773 0.1144 7931 +7933 2 -54.334259317157574 -776.1134206361805 110.6692 0.1144 7932 +7934 2 -53.21158344390409 -775.8973246306309 110.6434 0.1144 7933 +7935 2 -52.08921630224552 -775.682826963219 110.5003 0.1144 7934 +7936 2 -71.83168958852434 -775.0141166069616 99.0416 0.1144 7917 +7937 2 -72.64841441016372 -774.3868158292494 100.263 0.1144 7936 +7938 2 -73.53332364554223 -773.7074042491731 100.8602 0.1144 7937 +7939 2 -74.41449300774235 -773.0296848122969 101.523 0.1144 7938 +7940 2 -75.29199676305099 -772.3579288749065 102.2507 0.1144 7939 +7941 2 -76.16349247804096 -771.6850623288856 103.0072 0.1144 7940 +7942 2 -76.97415489295041 -770.9385324975639 103.7481 0.1144 7941 +7943 2 -77.6981940018825 -770.0970874258351 104.4364 0.1144 7942 +7944 2 -78.43839942626747 -769.2642881764891 105.0652 0.1144 7943 +7945 2 -79.19148068476751 -768.4367036079428 105.6457 0.1144 7944 +7946 2 -79.94540525955283 -767.6056464585633 106.1956 0.1144 7945 +7947 2 -80.7002669556859 -766.7751653331238 106.7312 0.1144 7946 +7948 2 -81.2968699676547 -765.8286258220047 107.3106 0.1144 7947 +7949 2 -81.8236320672157 -764.8471388223628 107.9523 0.1144 7948 +7950 2 -82.34847617048113 -763.868581206651 108.6243 0.1144 7949 +7951 2 -82.97981994820498 -762.9594770958203 109.3 0.1144 7950 +7952 2 -83.95102593570014 -762.4150416268678 109.9386 0.1144 7951 +7953 2 -84.92437345823599 -761.86922274631 110.553 0.1144 7952 +7954 2 -85.84638743217086 -761.352301560955 111.622 0.1144 7953 +7955 2 -87.74202911058529 -784.2566511842701 107.0297 0.1144 7814 +7956 2 -88.3625882417056 -783.6752183895438 108.3096 0.1144 7955 +7957 2 -89.18608574401694 -782.9057068147856 108.7559 0.1144 7956 +7958 2 -90.0140812429421 -782.1309781501811 109.1202 0.1144 7957 +7959 2 -90.84061596239215 -781.3565253901347 109.5021 0.1144 7958 +7960 2 -91.68375236098956 -780.5965029540447 109.8451 0.1144 7959 +7961 2 -92.61156045499891 -779.9326611500803 109.9832 0.1144 7960 +7962 2 -93.56425977122389 -779.3003178707893 109.8913 0.1144 7961 +7963 2 -94.39409117517793 -778.5159186605579 109.7723 0.1144 7962 +7964 2 -95.04308769507544 -777.5759950641093 109.821 0.1144 7963 +7965 2 -95.6806363332959 -776.6304433236406 110.0268 0.1144 7964 +7966 2 -96.31586133698029 -775.6888628200754 110.3623 0.1144 7965 +7967 2 -96.94909097649924 -774.752629140039 110.7932 0.1144 7966 +7968 2 -97.57852837702708 -773.8181727960523 111.2706 0.1144 7967 +7969 2 -98.18455825926175 -772.9217976559248 112.1831 0.1144 7968 +7970 2 -53.700251399992226 -1113.3313882090265 52.1797 0.1144 3447 +7971 2 -53.61862974791319 -1114.3729758077966 52.8724 0.1144 7970 +7972 2 -54.109378308274586 -1115.3702243728512 53.2683 0.1144 7971 +7973 2 -54.67292591380266 -1116.3584602233968 53.5293 0.1144 7972 +7974 2 -55.155510178122086 -1117.3909520043962 53.748 0.1144 7973 +7975 2 -55.58341804668993 -1118.4489955318645 53.9302 0.1144 7974 +7976 2 -55.92244195336832 -1119.5382097397687 54.1064 0.1144 7975 +7977 2 -56.118129733687454 -1120.66162972029 54.2696 0.1144 7976 +7978 2 -56.18465534582151 -1121.8009702632926 54.406 0.1144 7977 +7979 2 -56.28459757362094 -1122.938079260312 54.549 0.1144 7978 +7980 2 -56.397065464690684 -1124.0746708023703 54.7039 0.1144 7979 +7981 2 -56.43664050553127 -1125.2162264541644 54.8411 0.1144 7980 +7982 2 -56.43139248827924 -1126.3585193055446 54.9531 0.1144 7981 +7983 2 -56.35446696105407 -1127.4995978406425 55.0404 0.1144 7982 +7984 2 -56.21944861717651 -1128.634548190577 55.1102 0.1144 7983 +7985 2 -56.06763246651013 -1129.7685638282105 55.1729 0.1144 7984 +7986 2 -55.93478848471028 -1130.9022683252024 55.3112 0.1144 7985 +7987 2 -55.82062747895782 -1132.0338405919028 55.606 0.1144 7986 +7988 2 -55.52812839721571 -1133.125752038486 55.9857 0.1144 7987 +7989 2 -55.10563924422269 -1134.1780235888016 56.3385 0.1144 7988 +7990 2 -54.60083588136405 -1135.1957799127058 56.6398 0.1144 7989 +7991 2 -54.108183056222174 -1136.2224134227176 56.9164 0.1144 7990 +7992 2 -53.63166371949609 -1137.25755519645 57.1813 0.1144 7991 +7993 2 -53.16449527023917 -1138.297153527547 57.4118 0.1144 7992 +7994 2 -52.85537737962062 -1139.392231232415 57.6484 0.1144 7993 +7995 2 -52.63197821658002 -1140.505018531926 57.9816 0.1144 7994 +7996 2 -52.49602585293775 -1141.6327040620363 58.3041 0.1144 7995 +7997 2 -52.35249993787636 -1142.7597252737737 58.6292 0.1144 7996 +7998 2 -52.0444074630384 -1143.8487425725107 59.0016 0.1144 7997 +7999 2 -51.592162577874774 -1144.8881235680283 59.3701 0.1144 7998 +8000 2 -51.073907356961 -1145.9016023324803 59.6518 0.1144 7999 +8001 2 -50.9750669413296 -1147.0279191716681 59.8472 0.1144 8000 +8002 2 -50.98741550631888 -1148.1702291527777 59.9774 0.1144 8001 +8003 2 -51.04378835394829 -1149.312719516873 60.0575 0.1144 8002 +8004 2 -50.99189540172091 -1150.45451232711 60.1062 0.1144 8003 +8005 2 -50.86302265682451 -1151.5905404586379 60.1482 0.1144 8004 +8006 2 -50.91498580227295 -1152.7316114825076 60.1992 0.1144 8005 +8007 2 -50.89677365647299 -1153.87532608316 60.2596 0.1144 8006 +8008 2 -50.74558589555943 -1155.0083194065958 60.3506 0.1144 8007 +8009 2 -50.80868346769324 -1156.1442616350523 60.569 0.1144 8008 +8010 2 -51.35912628442776 -1157.140640857791 60.7894 0.1144 8009 +8011 2 -52.19067047077783 -1157.924327367913 60.9025 0.1144 8010 +8012 2 -52.842575971021574 -1158.8648706357917 60.9081 0.1144 8011 +8013 2 -53.05372120758767 -1160.007064988376 60.5489 0.1144 8012 +8014 2 -53.305149137105616 -1161.1096954098039 60.1362 0.1144 8013 +8015 2 -53.61276350608 -1162.1931017832394 59.645 0.1144 8014 +8016 2 -53.87551647929507 -1163.2664227627542 58.9467 0.1144 8015 +8017 2 -54.17825193138361 -1164.276988651773 57.8813 0.1144 8016 +8018 2 -54.79708588462506 -1165.1139807594514 56.7372 0.1144 8017 +8019 2 -55.42455024703014 -1165.99383959126 55.8186 0.1144 8018 +8020 2 -55.99541332168536 -1166.9396197718493 55.1029 0.1144 8019 +8021 2 -56.567215926734775 -1167.9033498071071 54.5434 0.1144 8020 +8022 2 -57.03812877063211 -1168.9286674717619 54.1722 0.1144 8021 +8023 2 -57.05056873163733 -1170.0576522269157 54.0602 0.1144 8022 +8024 2 -56.588579034559814 -1171.090925961119 54.0854 0.1144 8023 +8025 2 -55.80951405156799 -1171.928128016943 54.0688 0.1144 8024 +8026 2 -54.974656269475986 -1172.709437644223 53.9994 0.1144 8025 +8027 2 -54.13894655888595 -1173.4902236133757 53.9098 0.1144 8026 +8028 2 -53.31633311957307 -1174.2844590315367 53.8605 0.1144 8027 +8029 2 -52.53946203743476 -1175.1201924829058 53.9773 0.1144 8028 +8030 2 -51.8715408963904 -1176.0255943656884 54.3421 0.1144 8029 +8031 2 -51.77015510099892 -1177.0053814091284 54.9889 0.1144 8030 +8032 2 -52.374408072752374 -1177.9098258331408 55.8547 0.1144 8031 +8033 2 -52.8706540194778 -1178.8326300650115 56.9089 0.1144 8032 +8034 2 -53.181101274184584 -1179.8197648187534 58.1 0.1144 8033 +8035 2 -53.0600112125216 -1180.866554786687 58.9963 0.1144 8034 +8036 2 -52.45245725843603 -1181.767510014695 59.6378 0.1144 8035 +8037 2 -51.95955186163161 -1182.7617085712225 60.109 0.1144 8036 +8038 2 -52.22878860678816 -1183.7677648445278 60.4766 0.1144 8037 +8039 2 -52.819921376528725 -1184.739385680317 60.7818 0.1144 8038 +8040 2 -53.44304040045006 -1185.6918146026135 61.0742 0.1144 8039 +8041 2 -54.32019108413709 -1186.342487852492 61.5818 0.1144 8040 +8042 2 -55.30062053349798 -1186.8511101729086 62.312 0.1144 8041 +8043 2 -55.57617475508266 -1187.4166461407895 63.9542 0.1144 8042 +8044 2 -56.03802251865835 -1188.369249953127 64.8757 0.1144 8043 +8045 2 -56.53112684805632 -1189.3867274665536 65.2646 0.1144 8044 +8046 2 -57.02663690325704 -1190.406974904774 65.6379 0.1144 8045 +8047 2 -57.51982642550479 -1191.4245047840134 66.0576 0.1144 8046 +8048 2 -58.01256965749508 -1192.4404691521522 66.5095 0.1144 8047 +8049 2 -58.504918965040645 -1193.4547828163406 66.9813 0.1144 8048 +8050 2 -58.99735346543599 -1194.4691488463418 67.4598 0.1144 8049 +8051 2 -59.454406498687376 -1195.4994460339512 67.9358 0.1144 8050 +8052 2 -59.80947078125564 -1196.5690572741896 68.3973 0.1144 8051 +8053 2 -60.25828353566834 -1197.588889864116 69.0119 0.1144 8052 +8054 2 -60.53556304694888 -1198.6670315999859 69.643 0.1144 8053 +8055 2 -60.48634931603567 -1199.7956812837629 70.0857 0.1144 8054 +8056 2 -60.426309890032144 -1200.9310581010905 70.4102 0.1144 8055 +8057 2 -60.36859099698165 -1202.0691524773988 70.649 0.1144 8056 +8058 2 -60.369670678206205 -1203.2099352850746 70.842 0.1144 8057 +8059 2 -61.07296278540025 -1204.0974330382878 71.1024 0.1144 8058 +8060 2 -61.79184277506056 -1204.977139904503 71.4426 0.1144 8059 +8061 2 -61.54915899445001 -1205.9289999113466 71.855 0.1144 8060 +8062 2 -61.269262943848275 -1207.0179764633704 72.3744 0.1144 8061 +8063 2 -60.99414861939806 -1208.1056665104345 72.9254 0.1144 8062 +8064 2 -60.73710768013336 -1209.2032919864246 73.3972 0.1144 8063 +8065 2 -60.79175004689591 -1210.331219883834 73.8186 0.1144 8064 +8066 2 -61.15755173012178 -1211.4007404205927 74.2286 0.1144 8065 +8067 2 -61.57321215432739 -1212.452546953064 74.6365 0.1144 8066 +8068 2 -61.98989489273055 -1213.5049818752882 75.0518 0.1144 8067 +8069 2 -62.31083448766054 -1214.5884796447394 75.4886 0.1144 8068 +8070 2 -62.57094657722814 -1215.685766344222 75.9508 0.1144 8069 +8071 2 -62.82327018884422 -1216.7848389919668 76.4299 0.1144 8070 +8072 2 -63.07363436491488 -1217.8827072260187 76.9188 0.1144 8071 +8073 2 -63.325596879123225 -1218.980266728476 77.4161 0.1144 8072 +8074 2 -63.57502393384618 -1220.077558938588 77.9212 0.1144 8073 +8075 2 -63.82654015779701 -1221.1735529299444 78.4336 0.1144 8074 +8076 2 -63.86634725489921 -1222.295061732861 78.9692 0.1144 8075 +8077 2 -63.790720638966036 -1223.414166810574 79.5256 0.1144 8076 +8078 2 -63.70109896807463 -1224.5300690088452 80.0974 0.1144 8077 +8079 2 -63.615493074919414 -1225.6457398433915 80.6803 0.1144 8078 +8080 2 -63.62985413380335 -1226.7651064187312 81.2647 0.1144 8079 +8081 2 -63.662132220319165 -1227.883395905014 81.8485 0.1144 8080 +8082 2 -63.694547865497555 -1229.00165256426 82.4281 0.1144 8081 +8083 2 -63.727305069307874 -1230.1216451203059 83.0026 0.1144 8082 +8084 2 -63.75900713188366 -1231.2408717279368 83.5716 0.1144 8083 +8085 2 -63.79176433569398 -1232.3608642839827 84.135 0.1144 8084 +8086 2 -63.82391268852717 -1233.481656402714 84.6902 0.1144 8085 +8087 2 -63.85538028579481 -1234.6035560284927 85.2342 0.1144 8086 +8088 2 -63.99084464098382 -1235.7180122449827 85.7668 0.1144 8087 +8089 2 -64.31124414059389 -1236.79589589856 86.2753 0.1144 8088 +8090 2 -64.65726316570488 -1237.8693377154564 86.749 0.1144 8089 +8091 2 -64.67488187888955 -1238.9919978737166 87.1825 0.1144 8090 +8092 2 -63.831607921629654 -1239.752053136844 87.5283 0.1144 8091 +8093 2 -62.99737060961428 -1240.5042815843528 88.0636 0.1144 8092 +8094 2 -62.143959247885675 -1205.5009968406653 71.0475 0.1144 8060 +8095 2 -62.770027887049366 -1206.431058381132 70.4833 0.1144 8094 +8096 2 -63.40625169976431 -1207.3753439312356 70.2176 0.1144 8095 +8097 2 -64.04082480852878 -1208.320023405784 69.9373 0.1144 8096 +8098 2 -64.67508918569843 -1209.2631045421945 69.6301 0.1144 8097 +8099 2 -65.31023831840304 -1210.2068468953953 69.3132 0.1144 8098 +8100 2 -65.94450269557262 -1211.1499280318058 69.0099 0.1144 8099 +8101 2 -66.58009811853469 -1212.0952358961072 68.7355 0.1144 8100 +8102 2 -67.21566071445972 -1213.0404062017458 68.493 0.1144 8101 +8103 2 -67.852639549027 -1213.9878556010876 68.2836 0.1144 8102 +8104 2 -68.60748013135452 -1214.8440053924626 68.1545 0.1144 8103 +8105 2 -69.62122928973503 -1215.3530363580066 68.4317 0.1144 8104 +8106 2 -55.828439691609674 -1187.2332981061695 62.5853 0.1144 8042 +8107 2 -56.749341162425594 -1187.9000647902872 62.8978 0.1144 8106 +8108 2 -57.67358548039198 -1188.5701774231384 63.0204 0.1144 8107 +8109 2 -58.59973686809093 -1189.2415796625323 62.9955 0.1144 8108 +8110 2 -59.52491830740513 -1189.9122683193236 62.8538 0.1144 8109 +8111 2 -60.44822550402375 -1190.5818049282348 62.6475 0.1144 8110 +8112 2 -61.37202353173268 -1191.2503520499854 62.4336 0.1144 8111 +8113 2 -62.29621548388633 -1191.9205498756864 62.2331 0.1144 8112 +8114 2 -63.22037460900293 -1192.590610142725 62.0511 0.1144 8113 +8115 2 -64.14621726510694 -1193.2604140439812 61.8946 0.1144 8114 +8116 2 -65.07077031466832 -1193.93212501497 61.7722 0.1144 8115 +8117 2 -65.82018198220044 -1194.779538280483 61.7078 0.1144 8116 +8118 2 -66.33079770098988 -1195.796980557826 61.7268 0.1144 8117 +8119 2 -66.77669917782669 -1196.8500031230897 61.8204 0.1144 8118 +8120 2 -67.1576034230581 -1197.9234072948557 62.0374 0.1144 8119 +8121 2 -67.422891163222 -1199.0210581933288 62.4666 0.1144 8120 +8122 2 -67.62616411405992 -1200.1168608751368 63.0888 0.1144 8121 +8123 2 -67.74451410588529 -1201.2263142357765 63.6734 0.1144 8122 +8124 2 -67.53950798618808 -1202.3464163118779 63.8081 0.1144 8123 +8125 2 -67.60258504292091 -1203.4298767379728 63.5964 0.1144 8124 +8126 2 -68.10606257398564 -1204.4524391985165 63.429 0.1144 8125 +8127 2 -68.66523881499944 -1205.450078302344 63.3494 0.1144 8126 +8128 2 -69.22370147341059 -1206.4486873545563 63.3744 0.1144 8127 +8129 2 -69.36425456983625 -1207.5220189468823 63.5256 0.1144 8128 +8130 2 -68.997851942767 -1208.5899844963628 63.7694 0.1144 8129 +8131 2 -68.84087486218698 -1209.688665522035 64.0713 0.1144 8130 +8132 2 -69.0145149188341 -1210.8065152349786 64.4003 0.1144 8131 +8133 2 -69.59705251549451 -1211.7527807360284 64.6545 0.1144 8132 +8134 2 -70.54199058689301 -1212.3563812754762 64.8348 0.1144 8133 +8135 2 -71.55127698474325 -1212.888140720258 65.002 0.1144 8134 +8136 2 -72.32132624577497 -1213.6998785077142 65.2445 0.1144 8135 +8137 2 -72.98130154446153 -1214.625192581488 65.5628 0.1144 8136 +8138 2 -73.57853064895357 -1215.5912875958356 65.8832 0.1144 8137 +8139 2 -73.85753753951786 -1216.690680594275 66.0162 0.1144 8138 +8140 2 -74.07287824426913 -1217.812681927107 65.9518 0.1144 8139 +8141 2 -74.28728182767264 -1218.9341072359994 65.7443 0.1144 8140 +8142 2 -74.47458556732425 -1220.060473037643 65.6048 0.1144 8141 +8143 2 -74.65437673358224 -1221.1900855670247 65.588 0.1144 8142 +8144 2 -74.83420072687716 -1222.3198356550683 65.697 0.1144 8143 +8145 2 -75.01433655335012 -1223.444495285366 65.926 0.1144 8144 +8146 2 -75.39194721566065 -1224.5211571114328 66.1567 0.1144 8145 +8147 2 -75.78069230465627 -1225.5926901420862 66.383 0.1144 8146 +8148 2 -76.16886136971192 -1226.6651602940879 66.605 0.1144 8147 +8149 2 -76.55760645870765 -1227.7366933247413 66.8408 0.1144 8148 +8150 2 -76.45007576884967 -1228.2721733343951 67.2896 0.1144 8149 +8151 2 -76.23550522022413 -1229.3421438665418 68.1201 0.1144 8150 +8152 2 -76.04227733018428 -1230.3970617934492 69.0894 0.1144 8151 +8153 2 -75.98065187767929 -1231.480403098673 69.9308 0.1144 8152 +8154 2 -76.07382863426113 -1232.5958638070947 70.4858 0.1144 8153 +8155 2 -76.20504825703546 -1233.7239094403026 70.7834 0.1144 8154 +8156 2 -76.3371167067246 -1234.8591675275215 70.8716 0.1144 8155 +8157 2 -76.47006991194877 -1235.995086831531 70.8145 0.1144 8156 +8158 2 -76.60213836163791 -1237.1303449187503 70.6863 0.1144 8157 +8159 2 -76.73415444551432 -1238.2656881988191 70.5558 0.1144 8158 +8160 2 -76.86716001655128 -1239.4015223099782 70.4715 0.1144 8159 +8161 2 -76.99922846624042 -1240.5367803971976 70.4572 0.1144 8160 +8162 2 -77.13218167146465 -1241.672699701207 70.5289 0.1144 8161 +8163 2 -77.15914817053533 -1242.8065052127158 70.7552 0.1144 8162 +8164 2 -76.94452456356044 -1243.9006235643253 71.2662 0.1144 8163 +8165 2 -76.58344204145288 -1244.931480267378 72.0916 0.1144 8164 +8166 2 -76.21411993304315 -1245.9278097461347 73.1226 0.1144 8165 +8167 2 -75.84917229073079 -1246.9080471757256 74.2599 0.1144 8166 +8168 2 -75.9418154689107 -1247.8780973092425 75.5756 0.1144 8167 +8169 2 -76.6461901581061 -1248.5782165471023 76.8877 0.1144 8168 +8170 2 -77.26608476321172 -1249.4266596380405 77.9562 0.1144 8169 +8171 2 -77.42663165016484 -1250.5243711060912 78.6349 0.1144 8170 +8172 2 -77.58882072355198 -1251.6432814708987 79.0628 0.1144 8171 +8173 2 -77.7517617172083 -1252.7720444808285 79.287 0.1144 8172 +8174 2 -77.91702324381765 -1253.9035250497395 79.3587 0.1144 8173 +8175 2 -78.08063406647659 -1255.035399543095 79.3388 0.1144 8174 +8176 2 -78.24535239618291 -1256.1679547920162 79.2834 0.1144 8175 +8177 2 -78.4089632188419 -1257.2998292853717 79.231 0.1144 8176 +8178 2 -78.57417237963847 -1258.4313950471321 79.1829 0.1144 8177 +8179 2 -78.7378683951473 -1259.5633219063006 79.0891 0.1144 8178 +8180 2 -76.6228309461668 -1227.8774977857352 65.6202 0.1144 8149 +8181 2 -77.10340030754503 -1228.9155591417755 65.5402 0.1144 8180 +8182 2 -77.58336081794619 -1229.954420060501 65.506 0.1144 8181 +8183 2 -78.06393017932447 -1230.9924814165415 65.4654 0.1144 8182 +8184 2 -78.54446671366571 -1232.0304052139195 65.42 0.1144 8183 +8185 2 -79.02508844085673 -1233.0683813771097 65.3724 0.1144 8184 +8186 2 -79.50557260938524 -1234.1063903673376 65.3232 0.1144 8185 +8187 2 -79.98619433657632 -1235.1443665305283 65.2747 0.1144 8186 +8188 2 -80.46516535981692 -1236.1827366181637 65.2285 0.1144 8187 +8189 2 -80.94570189415816 -1237.2206604155415 65.1848 0.1144 8188 +8190 2 -81.42632362134918 -1238.258636578732 65.1445 0.1144 8189 +8191 2 -81.90680778987769 -1239.2966455689598 65.0661 0.1144 8190 +8192 2 -53.24187926195617 -1158.6107394652345 61.6896 0.1144 8012 +8193 2 -54.19778317413255 -1158.0058375883275 62.0693 0.1144 8192 +8194 2 -55.21137636001566 -1157.5518984475482 62.3087 0.1144 8193 +8195 2 -56.30874965510594 -1157.4596940483975 63.0524 0.1144 8194 +8196 2 -57.36370802695291 -1157.3883706043562 64.1161 0.1144 8195 +8197 2 -58.40380579564555 -1157.2233986020028 65.1997 0.1144 8196 +8198 2 -59.44127229919178 -1156.935907064702 66.1371 0.1144 8197 +8199 2 -60.488644506209766 -1156.623515787669 66.9637 0.1144 8198 +8200 2 -61.54958969275293 -1156.3089031986788 67.6738 0.1144 8199 +8201 2 -62.654406805579754 -1156.2198657503498 68.2872 0.1144 8200 +8202 2 -63.77483713436675 -1156.2102668788418 68.8416 0.1144 8201 +8203 2 -64.8943532662534 -1156.2699476164844 69.4014 0.1144 8202 +8204 2 -66.00199194748677 -1156.4056679238647 70.0073 0.1144 8203 +8205 2 -67.10558443299351 -1156.558855867037 70.6401 0.1144 8204 +8206 2 -68.20978576947726 -1156.7112442475236 71.2687 0.1144 8205 +8207 2 -69.3228680861888 -1156.8207306677964 71.8575 0.1144 8206 +8208 2 -68.8586296192666 -1156.1231342760127 72.3232 0.1144 8207 +8209 2 -68.10080418561313 -1155.2718404770762 72.5578 0.1144 8208 +8210 2 -67.34002982925381 -1154.4188514333564 72.6695 0.1144 8209 +8211 2 -66.5789467412996 -1153.5642640514989 72.6956 0.1144 8210 +8212 2 -65.81715007074268 -1152.7106466180262 72.6692 0.1144 8211 +8213 2 -65.05700410413624 -1151.8566352601088 72.6208 0.1144 8212 +8214 2 -64.29529262642916 -1151.0030701924488 72.5771 0.1144 8213 +8215 2 -63.534124345625116 -1150.1484304447786 72.539 0.1144 8214 +8216 2 -62.77334998926591 -1149.2954414010587 72.5077 0.1144 8215 +8217 2 -62.130128649071764 -1148.3495544112343 72.492 0.1144 8216 +8218 2 -61.71144813745667 -1147.2850924818101 72.5052 0.1144 8217 +8219 2 -61.294941987919174 -1146.2193846994433 72.5348 0.1144 8218 +8220 2 -60.87843583838185 -1145.1536769170762 72.5704 0.1144 8219 +8221 2 -60.41978205794635 -1144.1063146303327 72.5791 0.1144 8220 +8222 2 -59.9188954537629 -1143.0772454734004 72.5343 0.1144 8221 +8223 2 -59.418978797964314 -1142.0488898990707 72.4472 0.1144 8222 +8224 2 -58.918571311075425 -1141.0215238119013 72.3304 0.1144 8223 +8225 2 -58.41802626552402 -1139.994190551769 72.1991 0.1144 8224 +8226 2 -57.91847070713317 -1138.9673481227271 72.065 0.1144 8225 +8227 2 -57.42038375319714 -1137.9426995945387 71.797 0.1144 8226 +8228 2 -65.24745552449434 -1146.0787224685823 43.5988 0.1144 3412 +8229 2 -66.3164000373132 -1145.7138579067046 44.0191 0.1144 8228 +8230 2 -67.0689059644098 -1144.8631478328928 44.31 0.1144 8229 +8231 2 -67.84546831495317 -1144.025816043386 44.5074 0.1144 8230 +8232 2 -68.44034704922126 -1143.051336473813 44.6348 0.1144 8231 +8233 2 -68.92671903106981 -1142.015442779811 44.6981 0.1144 8232 +8234 2 -69.04391725396107 -1140.8789293278223 44.683 0.1144 8233 +8235 2 -68.84835920732468 -1139.7530067148532 44.5721 0.1144 8234 +8236 2 -69.48971579952905 -1139.0393923570687 42.8655 0.1144 8235 +8237 2 -70.39200768492663 -1138.6311333050617 41.9034 0.1144 8236 +8238 2 -71.45287069121372 -1138.9193376976227 41.3969 0.1144 8237 +8239 2 -72.49836204962895 -1139.3551489749884 40.9993 0.1144 8238 +8240 2 -73.54546035839451 -1139.7946477597197 40.6706 0.1144 8239 +8241 2 -74.59548805109023 -1140.2360645407466 40.402 0.1144 8240 +8242 2 -75.65680485886298 -1140.6547231170816 40.1884 0.1144 8241 +8243 2 -76.75526444108505 -1140.9539469233282 39.9988 0.1144 8242 +8244 2 -77.88562609092634 -1141.0834449563945 39.7914 0.1144 8243 +8245 2 -79.00867507145 -1140.9559621052153 39.4974 0.1144 8244 +8246 2 -80.04244414735604 -1140.5238150148623 39.0457 0.1144 8245 +8247 2 -81.08312245630816 -1140.0999057943015 38.5459 0.1144 8246 +8248 2 -82.1999135179858 -1140.0330183922233 38.0929 0.1144 8247 +8249 2 -83.30043624340533 -1140.2677771425078 37.6639 0.1144 8248 +8250 2 -84.42337120523928 -1140.3765116425116 37.2406 0.1144 8249 +8251 2 -85.45818862137332 -1140.0081597791177 36.6517 0.1144 8250 +8252 2 -86.34273986092728 -1139.3205462578694 36.1012 0.1144 8251 +8253 2 -87.35104548479705 -1138.8270863416933 35.5872 0.1144 8252 +8254 2 -88.44502939130535 -1138.6158873542413 34.9759 0.1144 8253 +8255 2 -89.56101547436441 -1138.5632951265034 34.407 0.1144 8254 +8256 2 -90.53965055891354 -1138.0569970213423 33.6549 0.1144 8255 +8257 2 -69.40901245222182 -1139.854530056929 44.4884 0.1144 8235 +8258 2 -70.53418544729396 -1140.0600707613166 44.4248 0.1144 8257 +8259 2 -71.6652514696849 -1140.2342542938127 44.3856 0.1144 8258 +8260 2 -72.79515451763262 -1140.4145310594772 44.3705 0.1144 8259 +8261 2 -73.92296529476926 -1140.6027948397814 44.3783 0.1144 8260 +8262 2 -75.06650640813893 -1140.6275910498402 44.4044 0.1144 8261 +8263 2 -76.2029658074681 -1140.50025196049 44.4366 0.1144 8262 +8264 2 -77.21012076853083 -1139.9605410337833 44.4746 0.1144 8263 +8265 2 -78.19831828140974 -1139.386170834748 44.5917 0.1144 8264 +8266 2 -78.46184878733413 -1138.3087328678807 44.6922 0.1144 8265 +8267 2 -78.614687252198 -1137.1753456200001 44.7695 0.1144 8266 +8268 2 -78.44212807872736 -1136.0446615121914 44.8258 0.1144 8267 +8269 2 -78.04633309643981 -1134.9716122346667 44.8624 0.1144 8268 +8270 2 -77.78390667708538 -1133.8582303844355 44.8823 0.1144 8269 +8271 2 -77.91955341071576 -1132.7222577203033 44.8876 0.1144 8270 +8272 2 -77.91102991175467 -1131.5783079618063 44.8935 0.1144 8271 +8273 2 -78.13703532590637 -1131.0095390695715 44.8734 0.1144 8272 +8274 2 -78.66514319194255 -1129.99530838485 44.8454 0.1144 8273 +8275 2 -79.02446068963638 -1128.9083151991072 44.8339 0.1144 8274 +8276 2 -79.48013981796657 -1127.8589549263675 44.8179 0.1144 8275 +8277 2 -79.78177245159884 -1126.7565764730548 44.795 0.1144 8276 +8278 2 -80.10608119865583 -1125.6587459731222 44.7656 0.1144 8277 +8279 2 -80.34035842259948 -1124.5391463472106 44.7297 0.1144 8278 +8280 2 -80.62399193733307 -1123.4311038212577 44.6639 0.1144 8279 +8281 2 -80.97311523127252 -1122.3431266589841 44.5458 0.1144 8280 +8282 2 -81.05971130412473 -1121.2038840289151 44.4508 0.1144 8281 +8283 2 -81.15258270964085 -1120.0632165479913 44.3766 0.1144 8282 +8284 2 -81.25245164263595 -1118.924150506788 44.3218 0.1144 8283 +8285 2 -81.95755791467843 -1118.3625243009124 45.3936 0.1144 8284 +8286 2 -82.74791539841885 -1117.5726424249997 45.9211 0.1144 8285 +8287 2 -83.51850804631033 -1116.7450226203696 46.3534 0.1144 8286 +8288 2 -84.00954540358538 -1115.7362944241936 46.814 0.1144 8287 +8289 2 -84.3634332939472 -1114.6646273392016 47.2553 0.1144 8288 +8290 2 -84.8720672334635 -1113.655916272755 47.6722 0.1144 8289 +8291 2 -84.98240007160479 -1112.5326725793261 47.9898 0.1144 8290 +8292 2 -84.95913200646271 -1111.393041126994 48.2252 0.1144 8291 +8293 2 -85.2390670872677 -1110.2908245418644 48.4327 0.1144 8292 +8294 2 -85.60564630320266 -1109.2095861322414 48.624 0.1144 8293 +8295 2 -85.78860469922796 -1108.0839137885623 48.7754 0.1144 8294 +8296 2 -85.95805887138533 -1106.954049078281 48.911 0.1144 8295 +8297 2 -86.13103799018859 -1105.8249424914356 49.042 0.1144 8296 +8298 2 -86.30467832578177 -1104.6949511490552 49.1641 0.1144 8297 +8299 2 -86.55209867618572 -1103.5780307444575 49.252 0.1144 8298 +8300 2 -86.81203376329694 -1102.4648118753719 49.31 0.1144 8299 +8301 2 -87.06898710066537 -1101.3497602028406 49.348 0.1144 8300 +8302 2 -87.24009197677316 -1100.2195015681145 49.3704 0.1144 8301 +8303 2 -87.39097100609172 -1099.0849099065413 49.3839 0.1144 8302 +8304 2 -87.47458532920109 -1097.9438344730265 49.3942 0.1144 8303 +8305 2 -87.52041787529714 -1096.8010162470086 49.4077 0.1144 8304 +8306 2 -87.41017671211785 -1095.663093659158 49.4259 0.1144 8305 +8307 2 -86.97946609171936 -1094.6073182988298 49.4519 0.1144 8306 +8308 2 -86.46239604235393 -1093.5871999017559 49.4894 0.1144 8307 +8309 2 -86.11365704921565 -1092.4987047870836 49.5421 0.1144 8308 +8310 2 -86.35212594722469 -1091.389663563917 49.6121 0.1144 8309 +8311 2 -86.93376774997012 -1090.4084561682566 49.6964 0.1144 8310 +8312 2 -87.41242862173692 -1089.371930982919 49.8632 0.1144 8311 +8313 2 -87.86734962663161 -1088.3260956568251 50.0987 0.1144 8312 +8314 2 -88.32092865917093 -1087.2822525933138 50.3712 0.1144 8313 +8315 2 -87.99401525371752 -1086.365637098499 50.5985 0.1144 8314 +8316 2 -87.94222800459835 -1085.2353558410994 50.6486 0.1144 8315 +8317 2 -88.13890555102387 -1084.1114255973866 50.6178 0.1144 8316 +8318 2 -88.47355467271058 -1083.0185424859085 50.5702 0.1144 8317 +8319 2 -88.63258017580546 -1081.8903668172443 50.5226 0.1144 8318 +8320 2 -88.36408714715338 -1080.789337143001 50.493 0.1144 8319 +8321 2 -88.03536527743802 -1079.6942477300436 50.4804 0.1144 8320 +8322 2 -87.92334367662568 -1078.5592216990858 50.4767 0.1144 8321 +8323 2 -87.92814540362019 -1077.415363336605 50.4745 0.1144 8322 +8324 2 -87.9806143797876 -1076.2726334050199 50.4714 0.1144 8323 +8325 2 -88.00546295565897 -1075.1290070988007 50.4666 0.1144 8324 +8326 2 -88.34771535421885 -1074.043614660242 50.4605 0.1144 8325 +8327 2 -89.19353028159372 -1073.2945117243048 50.4515 0.1144 8326 +8328 2 -90.20113153291402 -1072.756366308699 50.4386 0.1144 8327 +8329 2 -91.09968634494265 -1072.05036284569 50.4207 0.1144 8328 +8330 2 -91.41993245908031 -1070.963533937177 50.3958 0.1144 8329 +8331 2 -91.39907322132407 -1069.8199836137544 50.3667 0.1144 8330 +8332 2 -91.70872569663302 -1068.7198349899154 50.3079 0.1144 8331 +8333 2 -92.11722599783408 -1067.65098296839 50.2242 0.1144 8332 +8334 2 -92.45196031237052 -1066.5581522227244 50.1418 0.1144 8333 +8335 2 -92.83684737879918 -1065.484176223879 50.0822 0.1144 8334 +8336 2 -93.54375160896669 -1064.5852464939385 50.0497 0.1144 8335 +8337 2 -94.28436878006212 -1063.7124387396884 50.0458 0.1144 8336 +8338 2 -95.01096117074536 -1062.8296017514506 50.0724 0.1144 8337 +8339 2 -95.8659948428604 -1062.070084174597 50.1267 0.1144 8338 +8340 2 -96.74784634569926 -1061.3431319774472 50.2034 0.1144 8339 +8341 2 -97.62474805103724 -1060.6091463241983 50.3042 0.1144 8340 +8342 2 -98.3675450948401 -1059.7457777518507 50.4823 0.1144 8341 +8343 2 -98.94589331466463 -1058.7678280104906 50.7629 0.1144 8342 +8344 2 -99.7316299638114 -1057.9482256384908 51.023 0.1144 8343 +8345 2 -100.67649153785516 -1057.3110647044282 51.2688 0.1144 8344 +8346 2 -101.54612842336891 -1056.578013070944 51.5441 0.1144 8345 +8347 2 -102.31841631604351 -1055.7474443436085 51.8266 0.1144 8346 +8348 2 -102.7593337484636 -1054.719998959275 52.1021 0.1144 8347 +8349 2 -102.50603708687973 -1053.6269015248115 52.4972 0.1144 8348 +8350 2 -101.85773320861523 -1052.7087615673827 53.0174 0.1144 8349 +8351 2 -101.19453790075804 -1051.8150391308086 53.66 0.1144 8350 +8352 2 -100.56588384534268 -1050.902169321575 54.3575 0.1144 8351 +8353 2 -99.89720656434065 -1050.0238581786016 55.0645 0.1144 8352 +8354 2 -99.06724840449209 -1049.2922071805833 55.697 0.1144 8353 +8355 2 -98.09000372821836 -1048.734481833576 56.2033 0.1144 8354 +8356 2 -97.14324688152021 -1048.1229552575137 56.6213 0.1144 8355 +8357 2 -96.37226049914071 -1047.3106414461172 56.9792 0.1144 8356 +8358 2 -95.87327786310684 -1046.2895506916118 57.3054 0.1144 8357 +8359 2 -95.44634545355339 -1045.2429057815907 57.6517 0.1144 8358 +8360 2 -95.31907993795332 -1044.1347803651604 58.0832 0.1144 8359 +8361 2 -95.62391406595395 -1043.0665321101155 58.5564 0.1144 8360 +8362 2 -96.22720897538997 -1042.1133069046955 59.0299 0.1144 8361 +8363 2 -96.83236641372577 -1041.1639263040788 59.5199 0.1144 8362 +8364 2 -97.47043801753702 -1040.2415852617255 60.044 0.1144 8363 +8365 2 -98.28819066400357 -1039.6255979086109 60.7566 0.1144 8364 +8366 2 -98.54877446631187 -1040.202121439765 61.7529 0.1144 8365 +8367 2 -97.93424011447644 -1041.0838786458112 62.6147 0.1144 8366 +8368 2 -97.19501935915895 -1041.8824210647895 63.476 0.1144 8367 +8369 2 -97.33438674665067 -1041.2537073451176 64.1962 0.1144 8368 +8370 2 -97.52570585044799 -1040.1560633543254 64.7702 0.1144 8369 +8371 2 -97.66736303344354 -1039.0385751295528 65.2604 0.1144 8370 +8372 2 -97.3887346541047 -1037.999865874647 66.0181 0.1144 8371 +8373 2 -96.98187442692202 -1037.0406824847068 67.1112 0.1144 8372 +8374 2 -96.50177527455881 -1036.342727404562 68.9926 0.1144 8373 +8375 2 -88.70791261883994 -1087.238172949952 50.8522 0.1144 8314 +8376 2 -89.79642236520527 -1087.4640216870916 51.2764 0.1144 8375 +8377 2 -90.87142067824828 -1087.8495371432732 51.3934 0.1144 8376 +8378 2 -91.93750277497998 -1088.260443170277 51.5348 0.1144 8377 +8379 2 -92.75291347291432 -1089.0356214166786 51.8232 0.1144 8378 +8380 2 -92.91100157571543 -1090.1547107793986 52.1203 0.1144 8379 +8381 2 -92.98635751877435 -1091.2926710123793 52.3432 0.1144 8380 +8382 2 -92.64632092154199 -1092.3809513956185 52.5193 0.1144 8381 +8383 2 -92.2872707161934 -1093.4654091218756 52.6324 0.1144 8382 +8384 2 -91.66927267982607 -1094.4270864310838 52.6184 0.1144 8383 +8385 2 -91.0100733439615 -1095.3620298120409 52.5476 0.1144 8384 +8386 2 -90.35034252498963 -1096.295355316085 52.453 0.1144 8385 +8387 2 -89.71978831266512 -1097.2491972921584 52.3292 0.1144 8386 +8388 2 -89.15658099251283 -1098.2418532620327 52.1371 0.1144 8387 +8389 2 -88.60309417475372 -1099.2188861133568 51.6043 0.1144 8388 +8390 2 -81.19545582689403 -1118.4029256349831 44.284 0.1144 8284 +8391 2 -81.07604277415794 -1117.2646474603544 44.2543 0.1144 8390 +8392 2 -80.9632661514932 -1116.1264575801586 44.231 0.1144 8391 +8393 2 -80.76668579065915 -1114.9999065774364 44.2036 0.1144 8392 +8394 2 -80.6865262209746 -1113.85887630028 44.1722 0.1144 8393 +8395 2 -80.0438449761005 -1112.9186034263294 44.0586 0.1144 8394 +8396 2 -80.45386304501886 -1112.8872736775197 43.8144 0.1144 8395 +8397 2 -81.58069944644063 -1112.723265828833 43.8931 0.1144 8396 +8398 2 -82.63331405911356 -1112.2866214344026 43.9662 0.1144 8397 +8399 2 -83.52964214325169 -1111.5819490171866 44.0516 0.1144 8398 +8400 2 -84.63054208381277 -1111.315958620983 44.1647 0.1144 8399 +8401 2 -85.71770615269236 -1110.9649928999543 44.3069 0.1144 8400 +8402 2 -86.68905659455282 -1110.383084385583 44.6541 0.1144 8401 +8403 2 -87.2835711298303 -1109.4137804666063 44.9593 0.1144 8402 +8404 2 -88.00758411176452 -1109.537893326499 45.2785 0.1144 8403 +8405 2 -89.12928732581304 -1109.4431541603994 45.7097 0.1144 8404 +8406 2 -90.17807066929163 -1109.0215271351253 46.0972 0.1144 8405 +8407 2 -91.2015671495999 -1108.525314423885 46.4008 0.1144 8406 +8408 2 -92.02742421506747 -1107.7452803750016 46.634 0.1144 8407 +8409 2 -92.6439505453967 -1106.788097960824 46.8717 0.1144 8408 +8410 2 -92.83278724805791 -1105.6660388582236 47.0624 0.1144 8409 +8411 2 -93.16942863232691 -1104.574497719101 47.2083 0.1144 8410 +8412 2 -94.0649985930296 -1103.8733502485306 47.3382 0.1144 8411 +8413 2 -94.99022196332385 -1103.2026375491866 47.5003 0.1144 8412 +8414 2 -95.63889882506345 -1102.2653346050733 47.7016 0.1144 8413 +8415 2 -96.62682904559722 -1101.6934998655233 47.8926 0.1144 8414 +8416 2 -96.98298260506346 -1101.216819844881 48.025 0.1144 8415 +8417 2 -97.54315270807712 -1100.229105060295 48.2835 0.1144 8416 +8418 2 -98.01490985742726 -1099.1950270400098 48.5957 0.1144 8417 +8419 2 -98.46417299284809 -1098.1538132410465 48.9751 0.1144 8418 +8420 2 -98.91226454161296 -1097.1146964362908 49.383 0.1144 8419 +8421 2 -99.5007241813887 -1096.155052136378 49.824 0.1144 8420 +8422 2 -100.35414169310019 -1095.4375024999736 50.2995 0.1144 8421 +8423 2 -101.17710150913814 -1094.6797506400703 50.8528 0.1144 8422 +8424 2 -102.0044326896903 -1093.912595526885 51.3094 0.1144 8423 +8425 2 -102.59587407920884 -1092.954784030418 51.7056 0.1144 8424 +8426 2 -103.01515794371397 -1091.8991337043321 52.0117 0.1144 8425 +8427 2 -103.46936536600606 -1090.8542683266232 52.2441 0.1144 8426 +8428 2 -104.1941218516605 -1089.9811018840123 52.4294 0.1144 8427 +8429 2 -105.1128385255659 -1089.307798257787 52.5893 0.1144 8428 +8430 2 -106.04625763386605 -1088.650105154387 52.775 0.1144 8429 +8431 2 -107.10919790048592 -1088.253378561381 53.074 0.1144 8430 +8432 2 -107.85528473309 -1087.41750375723 53.5226 0.1144 8431 +8433 2 -108.26181939557955 -1086.36082491378 53.9305 0.1144 8432 +8434 2 -108.70185827563074 -1085.3193407208882 54.3432 0.1144 8433 +8435 2 -109.28470690111567 -1084.3535477204114 54.8008 0.1144 8434 +8436 2 -109.88474415625097 -1083.39702893207 55.2594 0.1144 8435 +8437 2 -110.530306432982 -1082.4670846128433 55.6433 0.1144 8436 +8438 2 -111.2979532597507 -1081.6310807675463 55.9863 0.1144 8437 +8439 2 -112.02249481887264 -1080.7603645915708 56.3592 0.1144 8438 +8440 2 -112.60333164299945 -1079.7934523702506 56.81 0.1144 8439 +8441 2 -113.09040558835108 -1078.78487034495 57.3656 0.1144 8440 +8442 2 -113.65088683200617 -1077.8161277292306 57.9527 0.1144 8441 +8443 2 -114.18120670525013 -1076.8355364116867 58.5354 0.1144 8442 +8444 2 -114.49891666736576 -1075.7725028374416 59.1948 0.1144 8443 +8445 2 -114.80445586045252 -1074.7248774552136 59.873 0.1144 8444 +8446 2 -115.43019172546863 -1073.8029358479346 60.494 0.1144 8445 +8447 2 -115.98020286081146 -1072.8317484762092 61.08 0.1144 8446 +8448 2 -116.46072015300803 -1071.8380345476057 61.796 0.1144 8447 +8449 2 -117.02957923416432 -1070.8797237025321 62.4218 0.1144 8448 +8450 2 -117.68444244159815 -1069.9716949642482 62.9434 0.1144 8449 +8451 2 -118.54966041487788 -1069.2828794383536 63.4133 0.1144 8450 +8452 2 -119.59510091120598 -1068.8579064643454 63.8588 0.1144 8451 +8453 2 -120.67397474448057 -1068.5139351692123 64.2323 0.1144 8452 +8454 2 -121.7402961959177 -1068.1313771184477 64.4896 0.1144 8453 +8455 2 -122.69553027909154 -1067.523363758115 64.7198 0.1144 8454 +8456 2 -123.61442284932622 -1066.86084989836 64.9936 0.1144 8455 +8457 2 -124.63497591755828 -1066.3736269771812 65.347 0.1144 8456 +8458 2 -125.67097482293781 -1065.9334600451512 65.8392 0.1144 8457 +8459 2 -126.61934352136174 -1065.3387164433784 66.3396 0.1144 8458 +8460 2 -127.56285691988381 -1064.7169253636666 66.7374 0.1144 8459 +8461 2 -128.50460701050199 -1064.0804342586066 67.0211 0.1144 8460 +8462 2 -129.20633179595356 -1063.2118917521723 67.2008 0.1144 8461 +8463 2 -129.7062822679568 -1062.184461781058 67.2974 0.1144 8462 +8464 2 -130.30209502198966 -1061.2172470313092 67.3291 0.1144 8463 +8465 2 -131.15026330935467 -1060.4709992130154 67.3238 0.1144 8464 +8466 2 -132.15047621033423 -1059.922912857854 67.3624 0.1144 8465 +8467 2 -133.00189905041682 -1059.1866474183653 67.4411 0.1144 8466 +8468 2 -133.64216214603508 -1058.245463940828 67.5408 0.1144 8467 +8469 2 -134.11672204721577 -1057.2091177534023 67.6676 0.1144 8468 +8470 2 -134.51417621616451 -1056.1387580972187 67.8261 0.1144 8469 +8471 2 -135.11912182955098 -1055.1851389673539 68.0739 0.1144 8470 +8472 2 -135.80133814493576 -1054.2805420631898 68.4527 0.1144 8471 +8473 2 -136.40236488723156 -1053.3245141059392 68.878 0.1144 8472 +8474 2 -136.89420412154212 -1052.308179531307 69.3123 0.1144 8473 +8475 2 -137.3984728997104 -1051.2954941263738 69.725 0.1144 8474 +8476 2 -137.57558512360018 -1050.1904087268913 70.1204 0.1144 8475 +8477 2 -137.77145769140716 -1049.0807736575193 70.6 0.1144 8476 +8478 2 -138.12724954991842 -1048.0170849749543 71.146 0.1144 8477 +8479 2 -138.26400078370935 -1046.9140709224341 71.7861 0.1144 8478 +8480 2 -138.6072779055132 -1045.8466807043574 72.3506 0.1144 8479 +8481 2 -139.07194923295143 -1044.8176376744227 72.798 0.1144 8480 +8482 2 -139.0544188141996 -1043.6883410860908 73.2281 0.1144 8481 +8483 2 -139.04616811821333 -1042.5525409029528 73.5658 0.1144 8482 +8484 2 -139.13074928812443 -1041.418867847925 73.8651 0.1144 8483 +8485 2 -139.3904170828906 -1040.3081844383246 74.0877 0.1144 8484 +8486 2 -139.20492953151344 -1040.3914871290624 73.9362 0.1144 8485 +8487 2 -138.1450302761519 -1040.7525211142827 73.5661 0.1144 8486 +8488 2 -137.09536226612752 -1040.5639287795193 73.5358 0.1144 8487 +8489 2 -136.22156433218063 -1039.8468834039465 73.5232 0.1144 8488 +8490 2 -135.6507543158748 -1038.8769554038945 73.5171 0.1144 8489 +8491 2 -135.83163174643684 -1037.8574073250315 73.5182 0.1144 8490 +8492 2 -135.95919396094172 -1036.7716342679746 73.5274 0.1144 8491 +8493 2 -135.78831831845852 -1035.6406937943839 73.5437 0.1144 8492 +8494 2 -135.53387030153092 -1034.525407976003 73.5647 0.1144 8493 +8495 2 -135.1237332897198 -1033.462323947554 73.6005 0.1144 8494 +8496 2 -134.7503611566579 -1032.385450296538 73.675 0.1144 8495 +8497 2 -134.78860853223514 -1031.2702493692332 73.7419 0.1144 8496 +8498 2 -135.00880550837078 -1030.1473944980676 73.7727 0.1144 8497 +8499 2 -135.28028538380462 -1029.0371635818908 73.7685 0.1144 8498 +8500 2 -135.7255358430723 -1027.9894923507682 73.7248 0.1144 8499 +8501 2 -135.49519148355964 -1026.979170829647 73.591 0.1144 8500 +8502 2 -134.94867063949883 -1025.97851163841 73.3768 0.1144 8501 +8503 2 -134.52058067143562 -1024.9230559362397 73.1914 0.1144 8502 +8504 2 -134.16111288985255 -1023.8386477640076 73.0509 0.1144 8503 +8505 2 -133.92255838540316 -1022.7238581926504 72.8918 0.1144 8504 +8506 2 -133.7211189305476 -1021.6010111344865 72.69 0.1144 8505 +8507 2 -133.5190182589022 -1020.4790488318575 72.4366 0.1144 8506 +8508 2 -133.35157926863198 -1019.3555029117734 72.1059 0.1144 8507 +8509 2 -133.466315605788 -1018.2470561503384 71.6232 0.1144 8508 +8510 2 -133.71257228921215 -1017.1602916055225 70.9881 0.1144 8509 +8511 2 -133.96634085349342 -1016.0943429595819 70.1865 0.1144 8510 +8512 2 -134.65381700603595 -1015.340644114097 69.0659 0.1144 8511 +8513 2 -135.5427025804995 -1014.7750710105015 67.9826 0.1144 8512 +8514 2 -136.3618195082435 -1014.0606181368399 67.1216 0.1144 8513 +8515 2 -137.00344819320114 -1013.1632354031975 66.3939 0.1144 8514 +8516 2 -137.49315140310065 -1012.1589692750152 65.8073 0.1144 8515 +8517 2 -138.20983809031213 -1011.3010320265095 65.3176 0.1144 8516 +8518 2 -139.15036904655474 -1010.7014707699648 64.9491 0.1144 8517 +8519 2 -139.64751366514432 -1009.6829977618751 64.6792 0.1144 8518 +8520 2 -139.91591488418973 -1008.5735742333635 64.4874 0.1144 8519 +8521 2 -140.18480693432542 -1007.4631612176914 64.3359 0.1144 8520 +8522 2 -140.4537841773109 -1006.3528005678322 64.1998 0.1144 8521 +8523 2 -140.7236133487944 -1005.2429635761004 64.0564 0.1144 8522 +8524 2 -141.0124967804111 -1004.1395566054239 63.8795 0.1144 8523 +8525 2 -141.44175992213826 -1003.0873405225043 63.6188 0.1144 8524 +8526 2 -142.02563396340378 -1002.1154871158959 63.2402 0.1144 8525 +8527 2 -142.61738408451725 -1001.1592739575666 62.7385 0.1144 8526 +8528 2 -143.07696736325542 -1000.147292925183 62.1289 0.1144 8527 +8529 2 -143.28917904126143 -999.0637822405482 61.4494 0.1144 8528 +8530 2 -143.2234460961098 -997.9624907669039 60.7653 0.1144 8529 +8531 2 -142.94438614719616 -996.8872455879272 60.0992 0.1144 8530 +8532 2 -142.66438907693478 -995.8114243850106 59.442 0.1144 8531 +8533 2 -142.29251467594148 -994.79322267617 58.7919 0.1144 8532 +8534 2 -141.6629649384281 -993.8839106406195 58.2078 0.1144 8533 +8535 2 -141.30183714814532 -992.8199627804848 57.7279 0.1144 8534 +8536 2 -141.02946668765247 -991.7206580764782 57.3443 0.1144 8535 +8537 2 -140.68536876042015 -990.6375980797678 57.05 0.1144 8536 +8538 2 -140.3113682376054 -989.5617467429493 56.7874 0.1144 8537 +8539 2 -140.30828426625095 -988.5487333871041 56.4172 0.1144 8538 +8540 2 -141.01517067415273 -987.6914628660177 55.7836 0.1144 8539 +8541 2 -141.7906045938 -986.9017983256839 55.0771 0.1144 8540 +8542 2 -142.69996968769965 -986.2481007687077 54.5482 0.1144 8541 +8543 2 -143.66196683304454 -985.6443618662437 54.2142 0.1144 8542 +8544 2 -144.63203618587872 -985.0427676004034 54.0562 0.1144 8543 +8545 2 -145.6051318292887 -984.440451139748 54.0518 0.1144 8544 +8546 2 -146.575777206063 -983.8379197525601 54.1612 0.1144 8545 +8547 2 -147.5467313144323 -983.2369867035097 54.3312 0.1144 8546 +8548 2 -148.53025493436817 -982.6570438278503 54.5236 0.1144 8547 +8549 2 -149.61579733221475 -982.337361012426 54.7604 0.1144 8548 +8550 2 -150.73574783348562 -982.1341411199375 55.0365 0.1144 8549 +8551 2 -151.8197449515438 -981.7906192166453 55.2871 0.1144 8550 +8552 2 -152.88020281702768 -981.3694775118314 55.487 0.1144 8551 +8553 2 -153.97358605863857 -981.0479235552947 55.6996 0.1144 8552 +8554 2 -155.08887738764912 -980.8041605732119 55.8729 0.1144 8553 +8555 2 -156.2079438259216 -980.5762168373203 55.9924 0.1144 8554 +8556 2 -157.32852340948187 -980.3479120040212 56.0725 0.1144 8555 +8557 2 -158.39498311211813 -979.9412584996062 56.1322 0.1144 8556 +8558 2 -159.41163202994227 -979.4166563380713 56.18 0.1144 8557 +8559 2 -160.41407165881228 -978.8672389371176 56.2234 0.1144 8558 +8560 2 -161.35808440594113 -978.2228655490431 56.2755 0.1144 8559 +8561 2 -162.15335404205243 -977.4051319091094 56.3416 0.1144 8560 +8562 2 -162.90096563904387 -976.5406143904646 56.4516 0.1144 8561 +8563 2 -163.643721243597 -975.6731120204937 56.6048 0.1144 8562 +8564 2 -164.4976443070815 -974.9196024839588 56.8316 0.1144 8563 +8565 2 -165.58857868481493 -974.7656889254939 57.2734 0.1144 8564 +8566 2 -166.5283336953563 -974.2113118244495 58.0138 0.1144 8565 +8567 2 -167.4494057475354 -973.875047531527 59.4569 0.1144 8566 +8568 2 -139.96213948545494 -1039.4523462793215 74.2577 0.1144 8485 +8569 2 -140.95882984883505 -1038.9208756314536 74.4957 0.1144 8568 +8570 2 -142.0862446832434 -1038.7733044921479 74.744 0.1144 8569 +8571 2 -142.9550382524719 -1038.043725439497 74.9818 0.1144 8570 +8572 2 -143.58444041691612 -1037.0917577061186 75.1839 0.1144 8571 +8573 2 -144.260249256908 -1036.1737144545295 75.4004 0.1144 8572 +8574 2 -144.67757678745087 -1035.110170918866 75.5684 0.1144 8573 +8575 2 -144.98717689694698 -1034.010107487877 75.6843 0.1144 8574 +8576 2 -144.9384299665496 -1032.868196249305 75.7686 0.1144 8575 +8577 2 -144.91239507819705 -1031.7242817268916 75.8377 0.1144 8576 +8578 2 -144.98174705400305 -1030.5825388734206 75.9041 0.1144 8577 +8579 2 -145.0495858845212 -1029.4411571173573 75.976 0.1144 8578 +8580 2 -145.1290992370446 -1028.300260681755 76.0704 0.1144 8579 +8581 2 -145.36377038543293 -1027.1823117597937 76.2292 0.1144 8580 +8582 2 -145.60081443258704 -1026.0669952039636 76.4406 0.1144 8581 +8583 2 -145.30687016256772 -1025.881033229026 76.5559 0.1144 8582 +8584 2 -144.34763691682883 -1025.276627710959 76.9241 0.1144 8583 +8585 2 -143.28979199735272 -1024.8828750775222 77.1926 0.1144 8584 +8586 2 -142.2573074258079 -1025.2016002561977 77.3576 0.1144 8585 +8587 2 -141.53562408591233 -1026.063274276299 77.3654 0.1144 8586 +8588 2 -140.89295216290824 -1027.008376624927 77.2436 0.1144 8587 +8589 2 -140.2872539367159 -1027.9762057362827 77.0669 0.1144 8588 +8590 2 -139.98905244466712 -1029.0752937082575 77.0507 0.1144 8589 +8591 2 -139.72363297536452 -1030.1865500402148 77.1985 0.1144 8590 +8592 2 -139.45960001925033 -1031.2932591113286 77.4836 0.1144 8591 +8593 2 -139.16425674642795 -1032.3833049274294 77.8562 0.1144 8592 +8594 2 -138.1840790752257 -1032.9599049559383 78.1544 0.1144 8593 +8595 2 -137.20667132881695 -1033.5340992586443 78.5282 0.1144 8594 +8596 2 -146.03189224174238 -1025.179875447418 76.8306 0.1144 8582 +8597 2 -146.37713190067473 -1024.1070008471497 77.1523 0.1144 8596 +8598 2 -146.54182078387308 -1022.9848886862003 77.5169 0.1144 8597 +8599 2 -146.73310465158679 -1021.8697333060167 77.8898 0.1144 8598 +8600 2 -147.1340666374522 -1020.8177283555099 78.2275 0.1144 8599 +8601 2 -147.8098778864906 -1019.9170589346494 78.5019 0.1144 8600 +8602 2 -148.62794406496005 -1019.1214370032998 78.7217 0.1144 8601 +8603 2 -149.4302081269673 -1018.3119935989708 78.9373 0.1144 8602 +8604 2 -149.9424405868798 -1017.3323746388583 79.1742 0.1144 8603 +8605 2 -150.15907668774935 -1016.2153128814788 79.4128 0.1144 8604 +8606 2 -150.50658451382188 -1015.1452410330412 79.686 0.1144 8605 +8607 2 -151.09753817383327 -1014.1817302278506 80.0338 0.1144 8606 +8608 2 -151.76029769242732 -1013.2650563597202 80.463 0.1144 8607 +8609 2 -152.4124050032138 -1012.3485255608822 80.9698 0.1144 8608 +8610 2 -152.99493086895768 -1011.3920420086246 81.5262 0.1144 8609 +8611 2 -153.4571050745771 -1010.3735542798521 82.0929 0.1144 8610 +8612 2 -153.94240168387876 -1009.3611800155603 82.5986 0.1144 8611 +8613 2 -154.49883191371399 -1008.3751573741745 83.008 0.1144 8612 +8614 2 -155.02987467430992 -1007.3735297205932 83.356 0.1144 8613 +8615 2 -155.4698197492986 -1006.3279969229283 83.6914 0.1144 8614 +8616 2 -155.6249256887662 -1005.2214750534914 84.0846 0.1144 8615 +8617 2 -155.99510893572693 -1004.1800137850472 84.4603 0.1144 8616 +8618 2 -156.56303158807205 -1003.1970642894203 84.7806 0.1144 8617 +8619 2 -157.14650309268018 -1002.2195639399009 85.064 0.1144 8618 +8620 2 -157.73411700712413 -1001.2460183900924 85.3695 0.1144 8619 +8621 2 -158.3262750808284 -1000.2805481493564 85.7604 0.1144 8620 +8622 2 -158.92043402932777 -999.3204161199365 86.2212 0.1144 8621 +8623 2 -159.51085310464882 -998.3619762337166 86.7166 0.1144 8622 +8624 2 -160.10768817287922 -997.3953898737205 87.0262 0.1144 8623 +8625 2 -160.70675307058323 -996.4207836720478 87.0702 0.1144 8624 +8626 2 -161.30505984485174 -995.4497024170211 86.8787 0.1144 8625 +8627 2 -161.2964561662332 -995.0267732779041 85.4605 0.1144 8626 +8628 2 -160.5906477179033 -994.6587819135133 83.5103 0.1144 8627 +8629 2 -159.6206397281506 -994.3123296371233 82.357 0.1144 8628 +8630 2 -158.56856249997742 -994.4444665583811 81.3159 0.1144 8629 +8631 2 -157.57727922792984 -994.7899256653078 80.3004 0.1144 8630 +8632 2 -156.9508413994106 -995.6845556038858 79.4671 0.1144 8631 +8633 2 -156.4109861301556 -996.6459043586349 78.7198 0.1144 8632 +8634 2 -155.93701697359762 -997.6463430117425 78.0254 0.1144 8633 +8635 2 -155.49121821524525 -998.5835740809306 76.8454 0.1144 8634 +8636 2 -161.56739715344168 -995.0819192791236 86.7322 0.1144 8626 +8637 2 -162.23189877200213 -994.1515262605928 86.6281 0.1144 8636 +8638 2 -163.10488160624945 -993.4151317799581 86.6942 0.1144 8637 +8639 2 -164.0222672343625 -992.7396014258424 86.9445 0.1144 8638 +8640 2 -164.61807658503858 -991.4863277136601 86.9056 0.1144 8639 +8641 2 -165.14323552836888 -990.4704017841553 86.8501 0.1144 8640 +8642 2 -165.75566398969522 -989.5067095720059 86.8146 0.1144 8641 +8643 2 -166.42996278598224 -988.5823386219399 86.77 0.1144 8642 +8644 2 -167.0867118552112 -987.6471803144503 86.7017 0.1144 8643 +8645 2 -167.74346092444014 -986.7120220069606 86.569 0.1144 8644 +8646 2 -168.51035272935655 -985.8728543124251 86.4147 0.1144 8645 +8647 2 -169.39295925404784 -985.1490659645136 86.3206 0.1144 8646 +8648 2 -170.3000544642974 -984.4511291983648 86.3024 0.1144 8647 +8649 2 -171.15946190997317 -983.6995821989582 86.3458 0.1144 8648 +8650 2 -171.3168787638927 -982.7422631434171 86.5015 0.1144 8649 +8651 2 -170.46205540785883 -982.042280457932 86.917 0.1144 8650 +8652 2 -169.55665593412292 -981.3917331476165 87.519 0.1144 8651 +8653 2 -168.92366885185987 -980.4990891851722 88.2165 0.1144 8652 +8654 2 -168.6896499891544 -979.4139677440893 88.8348 0.1144 8653 +8655 2 -168.67141691436294 -978.2814221136691 89.1078 0.1144 8654 +8656 2 -168.83454338804373 -977.1530674470929 88.9571 0.1144 8655 +8657 2 -169.0741228946833 -976.038018183608 88.7421 0.1144 8656 +8658 2 -169.32483372642503 -974.924528920594 88.5497 0.1144 8657 +8659 2 -169.57617294791953 -973.8100173433825 88.4055 0.1144 8658 +8660 2 -169.8270658791566 -972.6939402550704 88.3319 0.1144 8659 +8661 2 -170.07801117620642 -971.5777779739084 88.3254 0.1144 8660 +8662 2 -170.32992642164103 -970.4623292753491 88.3448 0.1144 8661 +8663 2 -170.58090454572786 -969.3463045528497 88.3582 0.1144 8662 +8664 2 -170.97845251973902 -968.2799935014394 88.3456 0.1144 8663 +8665 2 -171.61207918528578 -967.3387217294692 88.2885 0.1144 8664 +8666 2 -172.36066073066203 -966.4749177934269 88.1913 0.1144 8665 +8667 2 -173.12359532682115 -965.6225186779983 88.072 0.1144 8666 +8668 2 -173.9669247514769 -964.8556894261372 87.9752 0.1144 8667 +8669 2 -174.88982758881818 -964.1822591678124 87.9354 0.1144 8668 +8670 2 -175.83540584704764 -963.5374394894808 87.9575 0.1144 8669 +8671 2 -176.78165393427966 -962.8957312945746 88.0331 0.1144 8670 +8672 2 -177.6307210053258 -962.1392369067136 88.1527 0.1144 8671 +8673 2 -178.34501358583407 -961.2502481163282 88.3033 0.1144 8672 +8674 2 -179.00113426531016 -960.3161121230361 88.4682 0.1144 8673 +8675 2 -179.65106790655545 -959.3767645505276 88.6365 0.1144 8674 +8676 2 -180.30131027939564 -958.4390153161567 88.8056 0.1144 8675 +8677 2 -180.75835879118495 -957.4027043648148 88.9588 0.1144 8676 +8678 2 -180.75758714901875 -956.2875825218898 89.0641 0.1144 8677 +8679 2 -180.5522288230726 -955.16232663634 89.129 0.1144 8678 +8680 2 -180.39935540107106 -954.0303614395051 89.2346 0.1144 8679 +8681 2 -180.35933096838994 -952.8939290724948 89.4776 0.1144 8680 +8682 2 -180.3426962317362 -951.7610747104798 89.8722 0.1144 8681 +8683 2 -180.13137061218458 -950.6629046405357 90.3854 0.1144 8682 +8684 2 -179.84353579974191 -949.5822657828472 90.9857 0.1144 8683 +8685 2 -179.55404718176578 -948.5087096454878 91.6398 0.1144 8684 +8686 2 -179.2634065159094 -947.4370277508237 92.3177 0.1144 8685 +8687 2 -179.0228450281949 -946.3558666200811 93.0101 0.1144 8686 +8688 2 -178.80842672410878 -945.2694117241591 93.7138 0.1144 8687 +8689 2 -178.5976709253311 -944.1836821246357 94.4261 0.1144 8688 +8690 2 -178.40821092995606 -943.0936701475672 95.1457 0.1144 8689 +8691 2 -178.80002395071205 -942.1111652433729 95.8681 0.1144 8690 +8692 2 -179.39292542716916 -941.177140468961 96.5815 0.1144 8691 +8693 2 -179.9946017671553 -940.2485093732611 97.2919 0.1144 8692 +8694 2 -180.59633047295424 -939.3197930847114 97.9983 0.1144 8693 +8695 2 -181.28000618274092 -938.4630455292158 98.7857 0.1144 8694 +8696 2 -182.02100427410835 -937.6682953492285 99.6646 0.1144 8695 +8697 2 -182.73109217637852 -936.8451550264101 100.5348 0.1144 8696 +8698 2 -183.34827051344456 -935.9327433045123 101.2799 0.1144 8697 +8699 2 -184.43104780459058 -935.6502138763486 101.7626 0.1144 8698 +8700 2 -185.5447705209174 -935.4135859804076 102.0326 0.1144 8699 +8701 2 -186.66245664916772 -935.1768119135911 102.1446 0.1144 8700 +8702 2 -187.78085636002066 -934.9390678983898 102.1591 0.1144 8701 +8703 2 -188.90322350167924 -935.1535655658018 102.188 0.1144 8702 +8704 2 -189.9848230087101 -935.5216579270246 102.2935 0.1144 8703 +8705 2 -191.05198288703522 -935.9264183550474 102.482 0.1144 8704 +8706 2 -191.75054253230732 -936.8218062162547 102.7768 0.1144 8705 +8707 2 -192.4425595525704 -937.7211543878024 103.1344 0.1144 8706 +8708 2 -193.1341302825761 -938.6189370482493 103.5255 0.1144 8707 +8709 2 -193.8027168600987 -939.4865107905657 104.3302 0.1144 8708 +8710 2 -164.25904878957937 -991.4455874131248 87.5344 0.1144 8639 +8711 2 -164.49166910640645 -990.3397593034264 87.9578 0.1144 8710 +8712 2 -164.82047515754067 -989.2607743402608 88.4162 0.1144 8711 +8713 2 -165.1453951646214 -988.1795181083718 88.8549 0.1144 8712 +8714 2 -165.412503675541 -987.0786904454772 89.2321 0.1144 8713 +8715 2 -165.66179516705728 -985.9696108846441 89.556 0.1144 8714 +8716 2 -165.89499460940758 -984.8561568577137 89.8444 0.1144 8715 +8717 2 -166.07171049980607 -983.7320469235522 90.1239 0.1144 8716 +8718 2 -166.20726893900357 -982.6027106894915 90.4126 0.1144 8717 +8719 2 -166.45428133681665 -981.4950473673007 90.7189 0.1144 8718 +8720 2 -167.05169173645058 -980.55158651257 91.0204 0.1144 8719 +8721 2 -167.8015683989992 -979.6965605416399 91.3128 0.1144 8720 +8722 2 -168.55301057264842 -978.8410882804524 91.6031 0.1144 8721 +8723 2 -169.26836690660406 -977.9568616774429 91.8999 0.1144 8722 +8724 2 -169.9257827032525 -977.0315036492631 92.2172 0.1144 8723 +8725 2 -170.41918744866376 -976.0147227843734 92.5786 0.1144 8724 +8726 2 -170.77516450825348 -974.941757480626 92.9914 0.1144 8725 +8727 2 -171.07550133217686 -973.8546636888142 93.4503 0.1144 8726 +8728 2 -171.2634806904067 -972.7469849534042 93.9655 0.1144 8727 +8729 2 -171.31532058428468 -971.62933996263 94.5232 0.1144 8728 +8730 2 -171.36350889941718 -970.5067506849845 95.044 0.1144 8729 +8731 2 -171.43877751952587 -969.3794436660996 95.4873 0.1144 8730 +8732 2 -171.53014129038363 -968.2498223174281 95.8633 0.1144 8731 +8733 2 -171.890034119481 -967.1859546369507 96.2374 0.1144 8732 +8734 2 -172.74228865674934 -966.4744982337146 96.6297 0.1144 8733 +8735 2 -173.65713572379377 -965.8053893831379 97.008 0.1144 8734 +8736 2 -174.549938861286 -965.0999588424862 97.3053 0.1144 8735 +8737 2 -175.40021034602503 -964.3415050190799 97.5358 0.1144 8736 +8738 2 -176.14233756082524 -963.4750249633066 97.713 0.1144 8737 +8739 2 -176.8375703705707 -962.5689211170211 97.8544 0.1144 8738 +8740 2 -177.60358052153512 -961.7224034098115 97.9927 0.1144 8739 +8741 2 -178.4302394640382 -960.9347629824719 98.1599 0.1144 8740 +8742 2 -179.261900569855 -960.1540708183818 98.3693 0.1144 8741 +8743 2 -180.09288092010607 -959.3744861613391 98.6196 0.1144 8742 +8744 2 -180.9233376122299 -958.5957534327943 98.9086 0.1144 8743 +8745 2 -181.76981685797782 -957.8390769454379 99.2494 0.1144 8744 +8746 2 -182.64653887286696 -957.125052948216 99.661 0.1144 8745 +8747 2 -183.5213428914605 -956.4139583349242 100.1456 0.1144 8746 +8748 2 -184.38233395459127 -955.6970730168929 100.7121 0.1144 8747 +8749 2 -185.27984863015655 -955.0321003729856 101.3174 0.1144 8748 +8750 2 -186.23244182968295 -954.4480527326205 101.906 0.1144 8749 +8751 2 -187.1479939618135 -953.7995667548606 102.4531 0.1144 8750 +8752 2 -187.9999928258363 -953.0623641940241 102.9356 0.1144 8751 +8753 2 -188.6457786413124 -952.1339658471223 103.3306 0.1144 8752 +8754 2 -188.9215713122816 -951.0277944622819 103.5616 0.1144 8753 +8755 2 -189.26815914673554 -949.9395500076632 103.7344 0.1144 8754 +8756 2 -189.7136768983484 -948.8893433170552 103.9366 0.1144 8755 +8757 2 -190.1658725192824 -947.8433587185032 104.1737 0.1144 8756 +8758 2 -190.687076662902 -946.8315751988341 104.4344 0.1144 8757 +8759 2 -191.46880063589563 -946.0055153946753 104.6755 0.1144 8758 +8760 2 -192.42569162618605 -945.3837305181296 104.862 0.1144 8759 +8761 2 -193.41263235955932 -944.8114049474892 105.0577 0.1144 8760 +8762 2 -194.43078821950505 -944.299819280315 105.32 0.1144 8761 +8763 2 -195.4460889618075 -943.7905869731309 105.6448 0.1144 8762 +8764 2 -196.4592481690692 -943.2827380775519 106.0293 0.1144 8763 +8765 2 -197.4696569903131 -942.7770721562634 106.4664 0.1144 8764 +8766 2 -198.47163560824305 -942.2610596571792 106.9424 0.1144 8765 +8767 2 -199.39867395971737 -941.6290244169465 107.4592 0.1144 8766 +8768 2 -200.18890481135824 -940.8349563775979 108.0173 0.1144 8767 +8769 2 -200.9366837871624 -940.0028214466251 108.5986 0.1144 8768 +8770 2 -201.72125125869985 -939.2026898995621 109.167 0.1144 8769 +8771 2 -202.52683793654543 -938.4208778220923 109.6875 0.1144 8770 +8772 2 -203.23899449264266 -937.5439574781569 110.1153 0.1144 8771 +8773 2 -203.82099429121266 -936.5709520236684 110.425 0.1144 8772 +8774 2 -204.18886862432 -935.4984915791572 110.6633 0.1144 8773 +8775 2 -204.32259736165486 -934.3654482989552 110.8604 0.1144 8774 +8776 2 -204.43569461396004 -933.229113844879 111.0416 0.1144 8775 +8777 2 -204.54710833527778 -932.0930357565848 111.223 0.1144 8776 +8778 2 -204.6594920049803 -930.9576712508932 111.4145 0.1144 8777 +8779 2 -204.773578744446 -929.8218276279072 111.6195 0.1144 8778 +8780 2 -204.8971461050635 -928.6879379298368 111.8331 0.1144 8779 +8781 2 -205.03038401130806 -927.5558841367954 112.0566 0.1144 8780 +8782 2 -205.16259960335503 -926.4232019540011 112.2943 0.1144 8781 +8783 2 -205.29520911984682 -925.2921704751571 112.551 0.1144 8782 +8784 2 -205.42875575768625 -924.1617150202534 112.8299 0.1144 8783 +8785 2 -205.61491634061642 -923.0461102482292 113.1455 0.1144 8784 +8786 2 -206.1024811170583 -922.0365387357681 113.5652 0.1144 8785 +8787 2 -206.81427347416474 -921.1647940424289 114.0703 0.1144 8786 +8788 2 -207.52120983883282 -920.2900644977639 114.588 0.1144 8787 +8789 2 -208.22775227905612 -919.4136842491484 115.0834 0.1144 8788 +8790 2 -208.95152478817965 -918.5507120102919 115.5722 0.1144 8789 +8791 2 -209.72972622357392 -917.7412679134264 116.1003 0.1144 8790 +8792 2 -210.53932557757258 -916.9659132681157 116.6553 0.1144 8791 +8793 2 -211.3193598164126 -916.1534874215074 117.1318 0.1144 8792 +8794 2 -212.0755173222546 -915.3077216345671 117.4925 0.1144 8793 +8795 2 -212.84735031245913 -914.4715911571702 117.7607 0.1144 8794 +8796 2 -213.68399404281382 -913.6980700078419 117.9637 0.1144 8795 +8797 2 -214.57889727609702 -912.987122257962 118.1281 0.1144 8796 +8798 2 -215.48478807265366 -912.2911449273585 118.2784 0.1144 8797 +8799 2 -216.39469154536332 -911.6016250289141 118.4403 0.1144 8798 +8800 2 -217.32512890392056 -910.942099122068 118.6329 0.1144 8799 +8801 2 -218.27568668510486 -910.3111392543824 118.862 0.1144 8800 +8802 2 -219.22905272874945 -909.6885962544011 119.114 0.1144 8801 +8803 2 -220.1775658815386 -909.0563796072097 119.3662 0.1144 8802 +8804 2 -221.1184671452419 -908.4126760481381 119.6009 0.1144 8803 +8805 2 -222.05753870708253 -907.7652654429253 119.819 0.1144 8804 +8806 2 -222.99567314757545 -907.1172788137721 120.0282 0.1144 8805 +8807 2 -223.9357670236137 -906.4704965983121 120.2356 0.1144 8806 +8808 2 -224.88370415246274 -905.8392170724685 120.4728 0.1144 8807 +8809 2 -225.84940524236578 -905.240337264026 120.7993 0.1144 8808 +8810 2 -226.8224478274264 -904.6621686228334 121.2103 0.1144 8809 +8811 2 -227.71974516741278 -903.982272414833 121.5866 0.1144 8810 +8812 2 -228.41193765843641 -903.0877985497198 121.7588 0.1144 8811 +8813 2 -228.98151411631503 -902.097766333764 121.6877 0.1144 8812 +8814 2 -229.53510325665306 -901.1031892660111 121.4234 0.1144 8813 +8815 2 -229.9059124843201 -900.0433318526403 121.0252 0.1144 8814 +8816 2 -229.96086386162364 -898.9250170328635 120.5814 0.1144 8815 +8817 2 -230.21869816040737 -897.8413779996191 120.1768 0.1144 8816 +8818 2 -230.84252454664443 -896.9007729550683 119.9066 0.1144 8817 +8819 2 -231.54212251773797 -895.9986434472693 119.7619 0.1144 8818 +8820 2 -232.32246618070945 -895.1637533121856 119.7487 0.1144 8819 +8821 2 -233.22190264669004 -894.465099861851 119.8915 0.1144 8820 +8822 2 -234.17469266639444 -893.8434939832175 120.1752 0.1144 8821 +8823 2 -235.13050277350837 -893.234543501537 120.559 0.1144 8822 +8824 2 -236.12701103739315 -892.7056606789672 121.0073 0.1144 8823 +8825 2 -237.2109927422321 -892.4211718152582 121.49 0.1144 8824 +8826 2 -238.32904507007177 -892.2974257356744 121.977 0.1144 8825 +8827 2 -239.40149670727078 -891.9749785060862 122.4779 0.1144 8826 +8828 2 -240.38651565022877 -891.4363337418733 122.9827 0.1144 8827 +8829 2 -241.31217369168093 -890.7954681707159 123.475 0.1144 8828 +8830 2 -242.20871600981488 -890.1124081134773 123.9456 0.1144 8829 +8831 2 -243.10182167573586 -889.4219535027316 124.4009 0.1144 8830 +8832 2 -243.9964404869447 -888.7311377945783 124.845 0.1144 8831 +8833 2 -244.89048327421335 -888.0412592077728 125.2832 0.1144 8832 +8834 2 -245.78421732988716 -887.3497822828296 125.7217 0.1144 8833 +8835 2 -246.6791972385036 -886.6604797199641 126.1697 0.1144 8834 +8836 2 -247.57070456628693 -885.9703338408134 126.6345 0.1144 8835 +8837 2 -248.46354293986266 -885.2824146895532 127.1217 0.1144 8836 +8838 2 -249.3532174642002 -884.5952505601454 127.6346 0.1144 8837 +8839 2 -250.14028446660288 -883.8019375426493 128.2182 0.1144 8838 +8840 2 -250.51683064812372 -882.7764776198917 128.9098 0.1144 8839 +8841 2 -250.82459967068405 -881.7208323959871 129.6823 0.1144 8840 +8842 2 -251.12941666895543 -880.6701807231836 130.5007 0.1144 8841 +8843 2 -251.78120913967695 -879.7910182381386 131.2802 0.1144 8842 +8844 2 -252.4711187428777 -878.928712034165 132.0206 0.1144 8843 +8845 2 -253.16371307802217 -878.0639477385757 132.7161 0.1144 8844 +8846 2 -253.9395056860305 -877.258422512801 133.3016 0.1144 8845 +8847 2 -254.73405243478993 -876.4617252089045 133.8064 0.1144 8846 +8848 2 -255.53145430119264 -875.662674545018 134.26 0.1144 8847 +8849 2 -256.31945601589655 -874.8525637207331 134.6951 0.1144 8848 +8850 2 -257.07205264647246 -874.0125910475788 135.154 0.1144 8849 +8851 2 -257.82272266854017 -873.1715515193943 135.6398 0.1144 8850 +8852 2 -258.5706423045899 -872.3326949655002 136.1542 0.1144 8851 +8853 2 -259.31850957482703 -871.4939236044559 136.6904 0.1144 8852 +8854 2 -260.0642024829863 -870.6563980963541 137.2414 0.1144 8853 +8855 2 -260.81037450844013 -869.8205756580156 137.8009 0.1144 8854 +8856 2 -261.55543902684656 -868.9840724641116 138.3651 0.1144 8855 +8857 2 -262.3005887381028 -868.1476216360202 138.9343 0.1144 8856 +8858 2 -263.0457908151718 -867.311085615079 139.5108 0.1144 8857 +8859 2 -263.78965091988533 -866.4765418567202 140.0958 0.1144 8858 +8860 2 -264.37115136984863 -865.526118710594 140.7115 0.1144 8859 +8861 2 -264.93225790167344 -864.5630425765612 141.3499 0.1144 8860 +8862 2 -265.4912228984575 -863.6013498541337 142.0048 0.1144 8861 +8863 2 -266.05049662683655 -862.6412554698438 142.6695 0.1144 8862 +8864 2 -266.60781091967027 -861.679956671861 143.3373 0.1144 8863 +8865 2 -267.16606233385176 -860.7192338978182 144.0037 0.1144 8864 +8866 2 -267.7253884280435 -859.7590543206785 144.6634 0.1144 8865 +8867 2 -268.2848442559179 -858.7963721110904 145.3147 0.1144 8866 +8868 2 -268.95988335337466 -857.9101354232329 145.9391 0.1144 8867 +8869 2 -269.67991288773675 -857.0555441234607 146.5349 0.1144 8868 +8870 2 -270.4020839571395 -856.1995694120832 147.1112 0.1144 8869 +8871 2 -271.1258533646799 -855.3432859691109 147.6728 0.1144 8870 +8872 2 -271.8495899451833 -854.486864967476 148.2244 0.1144 8871 +8873 2 -272.57398774247656 -853.6295592103061 148.7704 0.1144 8872 +8874 2 -273.297757150017 -852.7732757673336 149.3145 0.1144 8873 +8875 2 -274.02215494731024 -851.9159700101638 149.8568 0.1144 8874 +8876 2 -274.7470435756938 -851.0576747658333 150.3978 0.1144 8875 +8877 2 -275.47144137298704 -850.2003690086634 150.9374 0.1144 8876 +8878 2 -276.25854430400983 -849.4005047539456 151.473 0.1144 8877 +8879 2 -277.1263179680873 -848.6876711422706 151.9974 0.1144 8878 +8880 2 -277.9994267418976 -847.9795254516846 152.5188 0.1144 8879 +8881 2 -278.8723979570454 -847.2714125881358 153.0418 0.1144 8880 +8882 2 -279.7449307069156 -846.5642040188976 153.5713 0.1144 8881 +8883 2 -280.7815463829484 -846.1512963897563 154.1529 0.1144 8882 +8884 2 -281.8805098124116 -845.9539572129503 154.7633 0.1144 8883 +8885 2 -282.9773403190468 -845.76199768671 155.3989 0.1144 8884 +8886 2 -284.0736276287789 -845.5711128404799 156.0465 0.1144 8885 +8887 2 -285.15871073219523 -845.3262713842671 156.693 0.1144 8886 +8888 2 -286.04446328385905 -844.6433872233576 157.2696 0.1144 8887 +8889 2 -286.934584098454 -843.9577886050504 157.7996 0.1144 8888 +8890 2 -287.8268464480897 -843.270806575138 158.293 0.1144 8889 +8891 2 -288.7196848216655 -842.5828874238778 158.7695 0.1144 8890 +8892 2 -289.61372760893414 -841.8930088370722 159.229 0.1144 8891 +8893 2 -290.7048334733518 -841.6143075765198 159.698 0.1144 8892 +8894 2 -291.81573871716535 -841.414918260689 160.1572 0.1144 8893 +8895 2 -292.92664396097894 -841.2155289448582 160.6111 0.1144 8894 +8896 2 -293.9978135028634 -841.0238774576762 161.4771 0.1144 8895 +8897 2 -97.44281456037703 -1101.2967499573074 47.1425 0.1144 8415 +8898 2 -98.27976632979005 -1100.5488897727296 46.9613 0.1144 8897 +8899 2 -98.9339275737209 -1099.6135493657448 46.8978 0.1144 8898 +8900 2 -99.55584448117878 -1098.6542808839222 46.8798 0.1144 8899 +8901 2 -100.24251735392767 -1097.7403330922893 46.9115 0.1144 8900 +8902 2 -101.03729615894866 -1096.9235889395159 47.0142 0.1144 8901 +8903 2 -101.90262335051011 -1096.179788978811 47.2018 0.1144 8902 +8904 2 -102.75195771390139 -1095.4207591314648 47.4446 0.1144 8903 +8905 2 -103.58103099441996 -1094.6398848678791 47.7142 0.1144 8904 +8906 2 -104.40853876383801 -1093.8594568945514 48.0004 0.1144 8905 +8907 2 -105.23706884745349 -1093.079657310976 48.2933 0.1144 8906 +8908 2 -106.06462898268416 -1092.2991441447982 48.5856 0.1144 8907 +8909 2 -106.89276514185497 -1091.5176938572727 48.8737 0.1144 8908 +8910 2 -107.74370645559662 -1090.7623515172918 49.1602 0.1144 8909 +8911 2 -108.72061485339856 -1090.210739522948 49.443 0.1144 8910 +8912 2 -109.80723813442154 -1089.8782223126582 49.719 0.1144 8911 +8913 2 -110.91250943949694 -1089.6028286631727 49.9895 0.1144 8912 +8914 2 -112.0061654840826 -1089.2894242819953 50.2575 0.1144 8913 +8915 2 -112.96289799186167 -1088.7160202372252 50.5224 0.1144 8914 +8916 2 -113.66907933467735 -1087.8381268433218 50.7794 0.1144 8915 +8917 2 -114.28756510055189 -1086.8821488428373 51.0322 0.1144 8916 +8918 2 -114.99811780788184 -1085.9948521956521 51.2901 0.1144 8917 +8919 2 -115.73605885924619 -1085.1284987719782 51.5592 0.1144 8918 +8920 2 -116.1252604377201 -1084.100018761811 51.8543 0.1144 8919 +8921 2 -116.03239241273309 -1082.986156391527 52.194 0.1144 8920 +8922 2 -116.00403629889098 -1081.8635869367458 52.5546 0.1144 8921 +8923 2 -116.55617424859176 -1080.9259865663853 52.9197 0.1144 8922 +8924 2 -117.13220744609299 -1079.9560043008892 53.2941 0.1144 8923 +8925 2 -116.92260610424202 -1078.8857742893993 53.6564 0.1144 8924 +8926 2 -116.26485753344596 -1077.959129169833 53.8236 0.1144 8925 +8927 2 -115.64548148428611 -1076.998319308452 53.8101 0.1144 8926 +8928 2 -115.36442135311398 -1075.8936732915463 53.7009 0.1144 8927 +8929 2 -115.1348792790848 -1074.7749155848687 53.5332 0.1144 8928 +8930 2 -114.71538827822141 -1073.71406379494 53.3627 0.1144 8929 +8931 2 -114.60898079328297 -1072.5784976686627 53.2148 0.1144 8930 +8932 2 -114.79100206796048 -1071.4522493010436 53.06 0.1144 8931 +8933 2 -115.1096966991436 -1070.3549588964306 52.9147 0.1144 8932 +8934 2 -115.46879927030494 -1069.2704159773239 52.7974 0.1144 8933 +8935 2 -115.8329727604372 -1068.186407642907 52.7136 0.1144 8934 +8936 2 -116.1961763021846 -1067.1016857258878 52.6576 0.1144 8935 +8937 2 -115.99005985280294 -1065.9799547869839 52.6834 0.1144 8936 +8938 2 -115.49482019153044 -1064.9504830933938 52.7993 0.1144 8937 +8939 2 -114.99312309809883 -1063.925024075957 52.9729 0.1144 8938 +8940 2 -114.2721015733978 -1063.0467006213473 53.2868 0.1144 8939 +8941 2 -87.56459961823225 -1109.148691144478 44.893 0.1144 8403 +8942 2 -88.28899810806212 -1108.267322760695 44.7574 0.1144 8941 +8943 2 -88.92258643594215 -1107.3152283952174 44.6986 0.1144 8942 +8944 2 -89.84268341986979 -1106.650755099917 44.6351 0.1144 8943 +8945 2 -90.8202380296903 -1106.0564615825213 44.5354 0.1144 8944 +8946 2 -91.72323226935384 -1105.3587038142846 44.3766 0.1144 8945 +8947 2 -92.49044373242816 -1104.5169154674138 44.1893 0.1144 8946 +8948 2 -93.03222389368142 -1103.5151971103533 43.979 0.1144 8947 +8949 2 -93.30231725592705 -1102.4095134550203 43.7973 0.1144 8948 +8950 2 -93.5465213912799 -1101.2934332651248 43.6416 0.1144 8949 +8951 2 -93.5191523555518 -1100.153980810705 43.5047 0.1144 8950 +8952 2 -93.39274728596621 -1099.0247862312003 43.1894 0.1144 8951 +8953 2 -92.96487775506495 -1097.9775652972392 42.9528 0.1144 8952 +8954 2 -92.30053419344722 -1097.054965680863 42.7148 0.1144 8953 +8955 2 -91.85430685528621 -1096.017941359703 42.373 0.1144 8954 +8956 2 -92.42208505326602 -1095.0724649094946 41.9518 0.1144 8955 +8957 2 -93.18951385191923 -1094.245600126717 41.4943 0.1144 8956 +8958 2 -93.59418288392601 -1093.1917654743474 41.0455 0.1144 8957 +8959 2 -94.22691076579162 -1092.2607402719443 40.577 0.1144 8958 +8960 2 -95.11703468196976 -1091.568452857753 40.1486 0.1144 8959 +8961 2 -95.64117061856587 -1090.5759611651083 39.6922 0.1144 8960 +8962 2 -95.78385011575892 -1089.4591013300885 39.2241 0.1144 8961 +8963 2 -95.71166043098475 -1088.337759905984 38.7198 0.1144 8962 +8964 2 -95.47528269765962 -1087.2390983124133 38.2175 0.1144 8963 +8965 2 -95.41828386932389 -1086.1150040932446 37.7546 0.1144 8964 +8966 2 -95.53075824250584 -1084.9903769882103 37.3537 0.1144 8965 +8967 2 -95.46649769592898 -1083.8605279929225 36.988 0.1144 8966 +8968 2 -95.23137984369254 -1082.7531329750718 36.5814 0.1144 8967 +8969 2 -95.07395846831099 -1081.6438438916618 36.0394 0.1144 8968 +8970 2 -95.03807024229945 -1080.5247439161308 35.4749 0.1144 8969 +8971 2 -94.98351857901622 -1079.4075534193785 34.9247 0.1144 8970 +8972 2 -95.06587232850023 -1078.2992740367563 34.279 0.1144 8971 +8973 2 -94.99563897768832 -1077.1858258222292 33.7061 0.1144 8972 +8974 2 -94.97955633423891 -1076.1326601996514 33.0862 0.1144 8973 +8975 2 -95.48988172441881 -1075.151751632996 32.3834 0.1144 8974 +8976 2 -96.05689328144672 -1074.2313929506354 31.5608 0.1144 8975 +8977 2 -96.70159752120969 -1073.3398916252117 30.8305 0.1144 8976 +8978 2 -97.19664135147167 -1072.3509984529635 30.135 0.1144 8977 +8979 2 -97.57297019741358 -1071.3106149661126 29.4403 0.1144 8978 +8980 2 -98.06177462363195 -1070.3165954074975 28.854 0.1144 8979 +8981 2 -98.84677676632722 -1069.546310988621 28.3178 0.1144 8980 +8982 2 -99.86754647760168 -1069.0980742581487 27.7894 0.1144 8981 +8983 2 -100.77547269250041 -1068.4490091548655 27.41 0.1144 8982 +8984 2 -101.35635878085682 -1067.4887005365797 27.1627 0.1144 8983 +8985 2 -101.48188798606617 -1066.3733890829312 27.005 0.1144 8984 +8986 2 -101.22021348698098 -1065.2698598778225 26.9109 0.1144 8985 +8987 2 -101.30368094667864 -1064.148883658997 26.8583 0.1144 8986 +8988 2 -101.58673843747209 -1063.041778254392 26.8272 0.1144 8987 +8989 2 -101.73026745411664 -1061.9080682467707 26.7908 0.1144 8988 +8990 2 -101.70877982660758 -1060.7655402375453 26.745 0.1144 8989 +8991 2 -101.92852741090266 -1059.6478086511634 26.6522 0.1144 8990 +8992 2 -102.29319955710508 -1058.5652806349972 26.5269 0.1144 8991 +8993 2 -102.84945389061113 -1057.5684682271412 26.4051 0.1144 8992 +8994 2 -103.24690805955987 -1056.4981085709578 26.2976 0.1144 8993 +8995 2 -103.3096650445442 -1055.3604112206772 26.173 0.1144 8994 +8996 2 -103.36668128155509 -1054.2190678022807 26.0341 0.1144 8995 +8997 2 -103.6882724696313 -1053.1235578353007 25.9195 0.1144 8996 +8998 2 -103.99787257912749 -1052.0234944043116 25.8323 0.1144 8997 +8999 2 -103.86718754104356 -1050.890377852133 25.7592 0.1144 8998 +9000 2 -103.48392993582218 -1049.8141185627237 25.6956 0.1144 8999 +9001 2 -103.04394269424134 -1048.758158001317 25.6363 0.1144 9000 +9002 2 -103.08705768135653 -1047.6176603082522 25.5727 0.1144 9001 +9003 2 -103.68585528671542 -1046.6455895660652 25.4982 0.1144 9002 +9004 2 -104.18625204897606 -1045.6197251060514 25.3134 0.1144 9003 +9005 2 -104.53568407451041 -1044.5333462819153 25.0974 0.1144 9004 +9006 2 -104.74572208297519 -1043.42701882361 24.9239 0.1144 9005 +9007 2 -104.12179567138872 -1042.471511244925 24.7923 0.1144 9006 +9008 2 -103.80117573461669 -1041.3853928231383 24.6979 0.1144 9007 +9009 2 -104.21546604802089 -1040.3267904727634 24.6359 0.1144 9008 +9010 2 -105.00515990592493 -1039.520419521657 24.5995 0.1144 9009 +9011 2 -105.14681157829082 -1038.3922462620394 24.5661 0.1144 9010 +9012 2 -104.87186732064592 -1037.2818516721804 24.5202 0.1144 9011 +9013 2 -104.48387725350258 -1036.2134824907648 24.4535 0.1144 9012 +9014 2 -103.75020033184853 -1035.3381791235647 24.3631 0.1144 9013 +9015 2 -102.90787188965783 -1034.5653535446163 24.246 0.1144 9014 +9016 2 -102.15258191548975 -1033.7143270380252 24.0768 0.1144 9015 +9017 2 -101.65025333072217 -1032.6965791306702 23.7578 0.1144 9016 +9018 2 -101.21008639869257 -1031.6605802252907 23.3317 0.1144 9017 +9019 2 -100.7591321092392 -1030.642131046969 22.9732 0.1144 9018 +9020 2 -100.64252731896323 -1029.5122697400448 22.7186 0.1144 9019 +9021 2 -100.62357515093964 -1028.3700090231648 22.5441 0.1144 9020 +9022 2 -100.5211389029046 -1027.2367665314232 22.429 0.1144 9021 +9023 2 -100.42880856419103 -1026.111144446284 22.3505 0.1144 9022 +9024 2 -100.3191451414618 -1025.0137211944275 22.3336 0.1144 9023 +9025 2 -99.87055893268112 -1023.9631567207795 22.4425 0.1144 9024 +9026 2 -99.54735427219404 -1022.8701674036132 22.6006 0.1144 9025 +9027 2 -99.63251387509172 -1021.7529310579663 22.6582 0.1144 9026 +9028 2 -99.84821595619664 -1020.6286044807624 22.6323 0.1144 9027 +9029 2 -99.59264020090947 -1019.5369232849414 22.5973 0.1144 9028 +9030 2 -99.85786595161707 -1018.4565363953682 22.5856 0.1144 9029 +9031 2 -100.43238359478389 -1017.469541396551 22.506 0.1144 9030 +9032 2 -100.92846756150925 -1016.4396174052011 22.4065 0.1144 9031 +9033 2 -101.05083050843379 -1015.3076871426762 22.2618 0.1144 9032 +9034 2 -101.25067190409769 -1014.1830018771111 22.1279 0.1144 9033 +9035 2 -101.14244254227643 -1013.0461985101035 22.0796 0.1144 9034 +9036 2 -101.44715383229709 -1011.9430126691258 22.0292 0.1144 9035 +9037 2 -101.60101461135861 -1010.8102538109981 21.9733 0.1144 9036 +9038 2 -101.37805660158816 -1009.6916695916033 21.7961 0.1144 9037 +9039 2 -101.33482688041897 -1008.5518584488224 21.5748 0.1144 9038 +9040 2 -101.38177554577501 -1007.4137172173306 21.3408 0.1144 9039 +9041 2 -101.35881621222782 -1006.2756841031362 21.1301 0.1144 9040 +9042 2 -101.1461047720245 -1005.1579986674225 21.0207 0.1144 9041 +9043 2 -101.197369334499 -1004.017228171383 20.9825 0.1144 9042 +9044 2 -101.07831737917056 -1002.880463142042 20.96 0.1144 9043 +9045 2 -100.92731509828144 -1001.7563387889714 20.8802 0.1144 9044 +9046 2 -101.18242942903791 -1000.6576464579513 20.754 0.1144 9045 +9047 2 -101.76234626154618 -999.6725616304498 20.657 0.1144 9046 +9048 2 -102.2141417548693 -998.6383039197157 20.5216 0.1144 9047 +9049 2 -102.23336459576723 -997.5234993259021 20.4971 0.1144 9048 +9050 2 -101.8512559368429 -996.4520545896814 20.614 0.1144 9049 +9051 2 -101.56507492993376 -995.3643330116641 20.8531 0.1144 9050 +9052 2 -101.63009698047523 -994.2361272090982 20.9931 0.1144 9051 +9053 2 -101.87435348164084 -993.1199618263532 21.0191 0.1144 9052 +9054 2 -102.15451441554126 -992.0110759841151 20.9147 0.1144 9053 +9055 2 -102.547515128709 -990.9433784195165 20.7368 0.1144 9054 +9056 2 -102.70907539875265 -989.8395326698109 20.5902 0.1144 9055 +9057 2 -102.6396532297255 -988.6984116891748 20.4474 0.1144 9056 +9058 2 -103.37429759658588 -987.842004715686 20.3454 0.1144 9057 +9059 2 -104.26474186345848 -987.1230340225464 20.2931 0.1144 9058 +9060 2 -105.39425989524085 -986.9632568781283 20.269 0.1144 9059 +9061 2 -106.50607933595481 -986.6945879531471 20.2596 0.1144 9060 +9062 2 -107.61415649444388 -986.4102373406372 20.2576 0.1144 9061 +9063 2 -108.75353126724204 -986.5117046117699 20.2781 0.1144 9062 +9064 2 -109.79285920441043 -986.9880973163965 20.3125 0.1144 9063 +9065 2 -110.92816755016949 -987.1313176014461 20.3604 0.1144 9064 +9066 2 -112.00593578800604 -987.5144273318248 20.4257 0.1144 9065 +9067 2 -112.64108091380663 -987.5866152059571 19.6659 0.1144 9066 +9068 2 -113.72028291077754 -987.6375970628671 18.8639 0.1144 9067 +9069 2 -114.84630443099107 -987.5576024629487 18.4422 0.1144 9068 +9070 2 -115.97120362877831 -987.4863084602725 17.9865 0.1144 9069 +9071 2 -117.09543750190423 -987.573069502891 17.5693 0.1144 9070 +9072 2 -118.18645707248751 -987.419208310239 17.188 0.1144 9071 +9073 2 -118.93524294926996 -986.6467348086021 16.8163 0.1144 9072 +9074 2 -119.38779656602858 -985.6089521512221 16.4993 0.1144 9073 +9075 2 -119.57947435818704 -984.4954474749889 16.1848 0.1144 9074 +9076 2 -119.66300038686359 -983.3610084715455 15.8936 0.1144 9075 +9077 2 -119.58278534978308 -982.226752183123 15.6796 0.1144 9076 +9078 2 -119.21204248126915 -981.1541944292252 15.5925 0.1144 9077 +9079 2 -118.68909102368465 -980.1371515869565 15.6022 0.1144 9078 +9080 2 -118.4173489529446 -979.0368245687524 15.6531 0.1144 9079 +9081 2 -118.42740059682228 -977.8976017615477 15.723 0.1144 9080 +9082 2 -118.55476019643083 -976.7619347274275 15.7941 0.1144 9081 +9083 2 -118.92592811245902 -975.6862166286156 15.8953 0.1144 9082 +9084 2 -119.49688798194288 -974.6983259477005 15.9981 0.1144 9083 +9085 2 -119.90342574601553 -973.6349583083664 16.0744 0.1144 9084 +9086 2 -120.09252974102193 -972.5103637462809 16.1219 0.1144 9085 +9087 2 -120.4085513540571 -971.41283887636 16.1412 0.1144 9086 +9088 2 -120.9832479951362 -970.4299448481289 16.1318 0.1144 9087 +9089 2 -121.48066300765404 -969.4022475846695 16.0913 0.1144 9088 +9090 2 -122.03166742427697 -968.4007996215371 16.0226 0.1144 9089 +9091 2 -122.8841156801403 -967.6584737759171 15.9241 0.1144 9090 +9092 2 -123.68842437054275 -966.8502871510938 15.7904 0.1144 9091 +9093 2 -123.7848412381056 -965.7628595959668 15.614 0.1144 9092 +9094 2 -123.96223446873492 -964.7707498179045 15.215 0.1144 9093 +9095 2 -124.51710460910982 -964.4054166448689 14.5204 0.1144 9094 +9096 2 -124.94283118509142 -963.3807240555998 13.9533 0.1144 9095 +9097 2 -125.49796870680089 -962.4032972798308 13.4441 0.1144 9096 +9098 2 -126.10985638027066 -961.4580535784205 12.9581 0.1144 9097 +9099 2 -126.68989364171225 -960.4905325061233 12.4947 0.1144 9098 +9100 2 -127.0670720071056 -959.4332988466707 12.0277 0.1144 9099 +9101 2 -127.21581191043 -958.3174644274314 11.5746 0.1144 9100 +9102 2 -127.11265587662615 -957.1985694758431 11.0981 0.1144 9101 +9103 2 -126.84309057701032 -956.1143704354253 10.5181 0.1144 9102 +9104 2 -126.3964107454257 -955.0891581949328 9.9444 0.1144 9103 +9105 2 -125.94184631647667 -954.0698985273631 9.3336 0.1144 9104 +9106 2 -125.92479983311247 -952.9770526702521 8.5933 0.1144 9105 +9107 2 -125.67969108455449 -951.8945050263211 7.9644 0.1144 9106 +9108 2 -124.9202470814511 -951.0678053371049 7.4957 0.1144 9107 +9109 2 -124.9114908336918 -949.9679650540977 6.7309 0.1144 9108 +9110 2 -112.29683593320578 -988.1619373360121 20.5587 0.1144 9066 +9111 2 -113.07274367800915 -988.9007439355727 20.7226 0.1144 9110 +9112 2 -114.18502032356548 -989.048588156799 20.939 0.1144 9111 +9113 2 -115.31350883169577 -989.052041708272 21.2055 0.1144 9112 +9114 2 -116.43842615352241 -989.231836255059 21.472 0.1144 9113 +9115 2 -117.56815431142928 -989.250841760378 21.6685 0.1144 9114 +9116 2 -118.69971286373536 -989.249491685225 21.8027 0.1144 9115 +9117 2 -119.79907122963854 -989.5384689219043 21.8851 0.1144 9116 +9118 2 -120.8928921550011 -989.849631440918 21.9408 0.1144 9117 +9119 2 -122.02804853516679 -989.9014360987125 21.998 0.1144 9118 +9120 2 -123.17000052045182 -989.8808855925512 22.0404 0.1144 9119 +9121 2 -124.30594105008342 -989.9923321409059 22.0427 0.1144 9120 +9122 2 -125.37016362480236 -990.3671157070595 21.999 0.1144 9121 +9123 2 -126.3679459810431 -990.9240836231681 21.8754 0.1144 9122 +9124 2 -127.44159342542937 -991.2308279224844 21.638 0.1144 9123 +9125 2 -128.56154902888187 -991.1391228719407 21.3267 0.1144 9124 +9126 2 -129.58316515802468 -990.6807247647507 20.9965 0.1144 9125 +9127 2 -130.29610887047477 -989.8311684553292 20.676 0.1144 9126 +9128 2 -129.99375433865816 -988.8986601405727 20.3399 0.1144 9127 +9129 2 -130.3670336558252 -987.915562082709 19.986 0.1144 9128 +9130 2 -130.89487112793304 -986.9105556533572 19.731 0.1144 9129 +9131 2 -131.15984120539505 -985.8044226061834 19.5169 0.1144 9130 +9132 2 -131.69555785893397 -984.8083676292263 19.3175 0.1144 9131 +9133 2 -132.60754980833508 -984.1416121386395 19.0597 0.1144 9132 +9134 2 -133.67899144297274 -983.7661922755995 18.813 0.1144 9133 +9135 2 -134.52616034058755 -983.0891717006432 18.5636 0.1144 9134 +9136 2 -134.64616682593896 -981.9610751163591 18.2279 0.1144 9135 +9137 2 -134.84528843583402 -980.8507373909473 17.7757 0.1144 9136 +9138 2 -134.94965467290646 -979.7305168865109 17.2775 0.1144 9137 +9139 2 -135.05531051652156 -978.6083893123422 16.8455 0.1144 9138 +9140 2 -135.3290554575126 -977.5076499438803 16.4938 0.1144 9139 +9141 2 -135.78049536405769 -976.4825641227031 16.2257 0.1144 9140 +9142 2 -136.60269774919666 -975.7042745828327 16.0084 0.1144 9141 +9143 2 -137.25351065303235 -974.9708837700998 15.7943 0.1144 9142 +9144 2 -137.3282261736483 -973.9143695056532 15.6131 0.1144 9143 +9145 2 -138.15785696330462 -973.1982799561873 15.4243 0.1144 9144 +9146 2 -139.2134064705373 -972.7742385928974 15.2201 0.1144 9145 +9147 2 -140.2086367469789 -972.2189812229743 15.0231 0.1144 9146 +9148 2 -141.19392367481865 -971.6537383726629 14.8153 0.1144 9147 +9149 2 -142.26349416834393 -971.2704776658585 14.5958 0.1144 9148 +9150 2 -143.31156082763675 -970.8565093848529 14.38 0.1144 9149 +9151 2 -144.05656918611078 -970.0508428062959 14.1416 0.1144 9150 +9152 2 -144.50079733118093 -969.0025431854204 13.894 0.1144 9151 +9153 2 -144.84751179773446 -967.9184848942375 13.6384 0.1144 9152 +9154 2 -144.74736043812084 -966.8712783791855 13.3207 0.1144 9153 +9155 2 -143.90555667803085 -966.1630999556944 12.9874 0.1144 9154 +9156 2 -143.04182941732188 -965.4361635973326 12.6799 0.1144 9155 +9157 2 -142.60722354281683 -964.423772416096 12.3821 0.1144 9156 +9158 2 -142.75524366037243 -963.3222855370099 12.103 0.1144 9157 +9159 2 -143.43393433657468 -962.4409931360236 11.8591 0.1144 9158 +9160 2 -144.4445604933975 -961.9502507788285 11.6589 0.1144 9159 +9161 2 -145.50945778651624 -961.5373547687867 11.4815 0.1144 9160 +9162 2 -145.91668210087272 -960.5603318377371 11.2893 0.1144 9161 +9163 2 -146.188916998159 -959.4532647707987 11.0705 0.1144 9162 +9164 2 -146.04668958079893 -958.3345340964399 10.7254 0.1144 9163 +9165 2 -145.6790550941274 -957.2679953094239 10.2739 0.1144 9164 +9166 2 -145.31316511646875 -956.2051112027364 9.7619 0.1144 9165 +9167 2 -145.238836998237 -955.0784643943531 9.3121 0.1144 9166 +9168 2 -145.2694755863114 -953.9450877592839 8.9433 0.1144 9167 +9169 2 -145.30175085019016 -952.822224986127 8.4137 0.1144 9168 +9170 2 -79.59806492250726 -1112.1518297479743 43.9928 0.1144 8395 +9171 2 -78.88421751415115 -1111.261834872942 43.9298 0.1144 9170 +9172 2 -77.9636771407429 -1110.5965813341122 43.8962 0.1144 9171 +9173 2 -76.93980804489473 -1110.0908377483229 43.892 0.1144 9172 +9174 2 -75.8814377507814 -1109.656500586042 43.9149 0.1144 9173 +9175 2 -74.76398206895698 -1109.438213781222 43.9835 0.1144 9174 +9176 2 -73.6237345385083 -1109.4101599168625 44.0922 0.1144 9175 +9177 2 -72.4918576361062 -1109.5563969087925 44.2112 0.1144 9176 +9178 2 -71.39709098289006 -1109.8758093302886 44.3492 0.1144 9177 +9179 2 -70.49013402383963 -1110.5496506427874 44.4592 0.1144 9178 +9180 2 -69.40129942814542 -1110.8244658592862 44.4704 0.1144 9179 +9181 2 -68.5946957282406 -1110.078881476872 44.4828 0.1144 9180 +9182 2 -67.66689053500818 -1109.414561957807 44.457 0.1144 9181 +9183 2 -66.89101292410663 -1108.5817519056932 44.2338 0.1144 9182 +9184 2 -66.57734716909738 -1109.0899475807382 44.1339 0.1144 9183 +9185 2 -65.97556781399561 -1110.0601855194795 43.9631 0.1144 9184 +9186 2 -65.31552826342886 -1110.991912685386 43.8276 0.1144 9185 +9187 2 -64.51175415771678 -1111.7950283912382 43.7214 0.1144 9186 +9188 2 -63.66820980652858 -1112.564307909735 43.6405 0.1144 9187 +9189 2 -62.98624985692601 -1113.4705883448864 43.5697 0.1144 9188 +9190 2 -62.80576496573548 -1114.539912380926 43.4669 0.1144 9189 +9191 2 -63.418294144947765 -1115.4482701653992 43.3731 0.1144 9190 +9192 2 -64.07305786441793 -1116.379771277404 43.3098 0.1144 9191 +9193 2 -64.56793642828268 -1117.4077298257057 43.2712 0.1144 9192 +9194 2 -64.97905200069135 -1118.4755236757178 43.2561 0.1144 9193 +9195 2 -65.2359088450047 -1119.586890623008 43.2634 0.1144 9194 +9196 2 -65.15502610902223 -1120.7147377372125 43.2894 0.1144 9195 +9197 2 -64.81405239044216 -1121.8024420965116 43.3289 0.1144 9196 +9198 2 -64.36590227269829 -1122.8550216858853 43.3852 0.1144 9197 +9199 2 -63.73143229086628 -1123.7997660386886 43.4647 0.1144 9198 +9200 2 -62.92253490037058 -1124.6024323527006 43.5716 0.1144 9199 +9201 2 -62.20748729800988 -1125.4882572938477 43.713 0.1144 9200 +9202 2 -61.696262431612354 -1126.5034750566833 43.941 0.1144 9201 +9203 2 -61.058805189407906 -1127.4357015711962 44.3142 0.1144 9202 +9204 2 -60.163828382374504 -1128.1183153381774 44.718 0.1144 9203 +9205 2 -59.474888035021934 -1129.0053977513667 45.1503 0.1144 9204 +9206 2 -58.7108020835193 -1129.835608482878 45.5927 0.1144 9205 +9207 2 -57.91420760478172 -1130.637737803153 46.0233 0.1144 9206 +9208 2 -57.114088179398266 -1131.4391089999922 46.4218 0.1144 9207 +9209 2 -56.28425987702724 -1132.2168194143396 46.7191 0.1144 9208 +9210 2 -55.21380221892048 -1132.582045073625 46.9266 0.1144 9209 +9211 2 -54.08957174915133 -1132.78134299344 47.0576 0.1144 9210 +9212 2 -53.057441065559544 -1133.2654404030473 47.1358 0.1144 9211 +9213 2 -52.1418742127463 -1133.9488967937773 47.1797 0.1144 9212 +9214 2 -51.31138159200236 -1134.7341807595437 47.2063 0.1144 9213 +9215 2 -50.66144795075712 -1135.6735283320522 47.2405 0.1144 9214 +9216 2 -50.12848409228252 -1136.6847741654478 47.3295 0.1144 9215 +9217 2 -49.75433132492839 -1137.765348256698 47.395 0.1144 9216 +9218 2 -49.70774375698005 -1138.9050026334776 47.4292 0.1144 9217 +9219 2 -49.56452347193033 -1140.040310979237 47.4314 0.1144 9218 +9220 2 -49.25999428140511 -1141.1409089949163 47.3502 0.1144 9219 +9221 2 -48.96990643609536 -1142.246275401138 47.234 0.1144 9220 +9222 2 -48.7416372524703 -1143.36698563568 47.1192 0.1144 9221 +9223 2 -48.89634347791764 -1144.495969082772 47.0187 0.1144 9222 +9224 2 -49.23157514560495 -1145.5869606267263 46.8569 0.1144 9223 +9225 2 -49.50082009452626 -1146.6978429460924 46.7342 0.1144 9224 +9226 2 -49.837926004909036 -1147.7899865379268 46.6516 0.1144 9225 +9227 2 -49.70160944227604 -1148.9228477186334 46.5982 0.1144 9226 +9228 2 -49.4365510703812 -1150.0356171958788 46.5623 0.1144 9227 +9229 2 -49.26811921242131 -1151.1661102959124 46.4856 0.1144 9228 +9230 2 -49.050372502921334 -1152.2891800936109 46.5259 0.1144 9229 +9231 2 -48.90060627849539 -1152.5328316440289 46.5744 0.1144 9230 +9232 2 -48.30154138079138 -1153.5074378457016 46.6312 0.1144 9231 +9233 2 -47.891657667985044 -1154.5741483321863 46.7006 0.1144 9232 +9234 2 -47.644237317581144 -1155.6910687367836 46.7874 0.1144 9233 +9235 2 -46.78691324641511 -1156.3538653021033 46.9876 0.1144 9234 +9236 2 -45.90297567593137 -1157.0754269221238 47.185 0.1144 9235 +9237 2 -44.909272572923726 -1157.6194154082823 47.4348 0.1144 9236 +9238 2 -43.80139462597418 -1157.6676010354226 47.7837 0.1144 9237 +9239 2 -42.7006757729132 -1157.446337896793 48.2944 0.1144 9238 +9240 2 -41.6280790778016 -1157.220762655165 49.0874 0.1144 9239 +9241 2 -40.6468169249668 -1156.8378127923706 50.1642 0.1144 9240 +9242 2 -40.033772983928486 -1156.0110703558428 51.3422 0.1144 9241 +9243 2 -40.06129426419608 -1154.9940973821938 52.5952 0.1144 9242 +9244 2 -39.629230667867944 -1154.1349247925891 54.0904 0.1144 9243 +9245 2 -38.99794083098669 -1153.357535545268 55.4366 0.1144 9244 +9246 2 -38.266717893076816 -1152.6420871997711 56.6364 0.1144 9245 +9247 2 -37.331264159938655 -1152.2000806804099 57.8099 0.1144 9246 +9248 2 -36.386381857709694 -1151.8824539105453 59.026 0.1144 9247 +9249 2 -36.24930915511902 -1151.2316020654957 60.893 0.1144 9248 +9250 2 -36.787175156700414 -1150.6558001079245 62.8835 0.1144 9249 +9251 2 -37.35777663959675 -1149.976517870768 64.6509 0.1144 9250 +9252 2 -37.48138005262945 -1150.3479409802894 65.7376 0.1144 9251 +9253 2 -37.606640976325934 -1151.2910880902327 66.4936 0.1144 9252 +9254 2 -37.46374655260041 -1152.4103981918884 66.2368 0.1144 9253 +9255 2 -37.142816581314094 -1153.505023403333 66.0696 0.1144 9254 +9256 2 -36.690174670122644 -1154.5494424907847 65.8899 0.1144 9255 +9257 2 -36.10033402778822 -1155.5243190863855 65.6821 0.1144 9256 +9258 2 -35.36840101674238 -1156.3917831186895 65.4371 0.1144 9257 +9259 2 -34.617140942588605 -1157.244667554579 65.1515 0.1144 9258 +9260 2 -34.181247887708025 -1158.1569988840351 64.3496 0.1144 9259 +9261 2 -34.807626264755015 -1158.9381772687643 63.0823 0.1144 9260 +9262 2 -35.474793502052194 -1159.8101607132612 62.3104 0.1144 9261 +9263 2 -35.92851530725255 -1160.808830335051 61.6748 0.1144 9262 +9264 2 -36.011225057105264 -1161.9151574915827 61.147 0.1144 9263 +9265 2 -35.81704773408154 -1163.021843638249 60.7029 0.1144 9264 +9266 2 -35.31126960474512 -1164.0041387180927 60.1485 0.1144 9265 +9267 2 -34.59361004554427 -1163.6489348933842 59.1592 0.1144 9266 +9268 2 -34.10820210554539 -1162.6670592842634 58.3579 0.1144 9267 +9269 2 -33.53542234265666 -1161.8664747520465 57.4636 0.1144 9268 +9270 2 -34.04768915615938 -1162.5667127200145 55.9224 0.1144 9269 +9271 2 -33.54249426021761 -1163.3842115928664 54.7828 0.1144 9270 +9272 2 -32.71180281869704 -1164.088850159072 53.9414 0.1144 9271 +9273 2 -31.674932161955212 -1164.4519490039997 53.2991 0.1144 9272 +9274 2 -30.575465589765543 -1164.7026219116656 52.8324 0.1144 9273 +9275 2 -29.467350786146426 -1164.952087304055 52.5095 0.1144 9274 +9276 2 -28.357132785153283 -1165.213758701557 52.2743 0.1144 9275 +9277 2 -27.226116328765613 -1165.3389265304127 52.0386 0.1144 9276 +9278 2 -26.094661484111725 -1165.2746071359106 51.7292 0.1144 9277 +9279 2 -24.96852433537282 -1165.1558050642525 51.338 0.1144 9278 +9280 2 -23.85831324206049 -1164.9608696177932 50.8665 0.1144 9279 +9281 2 -22.842451676252892 -1164.5097001051763 50.2684 0.1144 9280 +9282 2 -22.13946450653407 -1163.6545521125981 49.6877 0.1144 9281 +9283 2 -21.50448275264216 -1162.7431923470695 49.0176 0.1144 9282 +9284 2 -21.70612871748108 -1162.8564571909717 48.7738 0.1144 9283 +9285 2 -22.815283959337137 -1162.8587087377982 48.4411 0.1144 9284 +9286 2 -23.954747026568214 -1162.9535395788594 48.3627 0.1144 9285 +9287 2 -25.030191629868682 -1163.3406205461415 48.4159 0.1144 9286 +9288 2 -26.016610604745722 -1163.9160753106562 48.5349 0.1144 9287 +9289 2 -27.04912552297685 -1164.4056525809924 48.6534 0.1144 9288 +9290 2 -28.178540841417316 -1164.5802300379335 48.7343 0.1144 9289 +9291 2 -29.30103461517541 -1164.7989138687813 48.7866 0.1144 9290 +9292 2 -30.415242971421605 -1165.059339786983 48.82 0.1144 9291 +9293 2 -31.53626193755855 -1165.2892073087455 48.8396 0.1144 9292 +9294 2 -32.66528022997119 -1165.4688228576201 48.8561 0.1144 9293 +9295 2 -33.79710437579757 -1165.6394814434707 48.8779 0.1144 9294 +9296 2 -34.93115284046792 -1165.7914351527995 48.9076 0.1144 9295 +9297 2 -36.06976948983055 -1165.8964273705783 48.9569 0.1144 9296 +9298 2 -37.21265859646343 -1165.876452888357 49.0221 0.1144 9297 +9299 2 -38.35602992197386 -1165.8514926800149 49.0994 0.1144 9298 +9300 2 -39.48333594654849 -1165.658076168419 49.1851 0.1144 9299 +9301 2 -40.619078661691844 -1165.5383958233379 49.3419 0.1144 9300 +9302 2 -41.73742051378747 -1165.5060325439722 49.9215 0.1144 9301 +9303 2 -21.12702596753445 -1162.4857079293347 47.6459 0.1144 9283 +9304 2 -20.259951361040578 -1162.2294062969295 46.2185 0.1144 9303 +9305 2 -19.16853476442958 -1162.3883055815154 45.7358 0.1144 9304 +9306 2 -18.098600071913552 -1162.776741938916 45.4798 0.1144 9305 +9307 2 -17.025107605714652 -1163.1642826142188 45.3015 0.1144 9306 +9308 2 -15.909152650867725 -1163.391556521108 45.2035 0.1144 9307 +9309 2 -15.377004082049382 -1164.217959298635 45.2334 0.1144 9308 +9310 2 -15.957522981648992 -1165.2005457972232 45.4342 0.1144 9309 +9311 2 -37.20898216905482 -1149.6527613178828 65.2543 0.1144 9251 +9312 2 -36.81182841611934 -1148.68886259575 66.3292 0.1144 9311 +9313 2 -36.436300027334084 -1147.648342769309 67.0292 0.1144 9312 +9314 2 -36.3898972468736 -1146.5549420961952 67.5738 0.1144 9313 +9315 2 -36.73179095707229 -1145.485410343078 67.9694 0.1144 9314 +9316 2 -36.78701203576753 -1144.3819338945445 68.2606 0.1144 9315 +9317 2 -36.52988789910887 -1143.2731024067398 68.4827 0.1144 9316 +9318 2 -36.4609503580059 -1142.1443695307116 68.6846 0.1144 9317 +9319 2 -36.5692330571224 -1141.0091840229325 68.8862 0.1144 9318 +9320 2 -36.691915662204906 -1139.874633108072 69.0757 0.1144 9319 +9321 2 -36.82470727819191 -1138.74101380393 69.2616 0.1144 9320 +9322 2 -37.03742450797091 -1137.6215432191643 69.4896 0.1144 9321 +9323 2 -37.13924977492832 -1136.4903703875384 69.7407 0.1144 9322 +9324 2 -37.15687497022509 -1135.3518118987067 70.014 0.1144 9323 +9325 2 -37.186130146694325 -1134.2162937285966 70.3301 0.1144 9324 +9326 2 -37.31825744430847 -1133.0902479758738 70.6941 0.1144 9325 +9327 2 -37.560463113912704 -1131.9862034053917 71.1024 0.1144 9326 +9328 2 -37.97255883392688 -1130.9531322860846 71.7094 0.1144 9327 +9329 2 -38.19430349889734 -1129.8714903335158 72.3828 0.1144 9328 +9330 2 -38.28747984188868 -1128.7631726132267 73.0355 0.1144 9329 +9331 2 -38.402797713614405 -1127.6644737652884 73.7624 0.1144 9330 +9332 2 -38.37893890384953 -1126.5607498472743 74.485 0.1144 9331 +9333 2 -38.259117205986 -1125.4557913816652 75.1556 0.1144 9332 +9334 2 -38.340983225962816 -1124.3418126903193 75.731 0.1144 9333 +9335 2 -38.49413283146828 -1123.2273976113052 76.2328 0.1144 9334 +9336 2 -38.5920775650016 -1122.1046385458005 76.7122 0.1144 9335 +9337 2 -38.659557707158626 -1120.9791174751783 77.1848 0.1144 9336 +9338 2 -38.20258445082368 -1119.9637766786996 77.6558 0.1144 9337 +9339 2 -37.427370465758656 -1119.1474557017793 78.0982 0.1144 9338 +9340 2 -36.86180726475277 -1118.1888520528878 78.7052 0.1144 9339 +9341 2 -36.40181081942518 -1117.16754465534 79.2728 0.1144 9340 +9342 2 -35.93508413896376 -1116.142100358586 79.7527 0.1144 9341 +9343 2 -35.46621902504461 -1115.111350677553 80.1651 0.1144 9342 +9344 2 -34.995309282730375 -1114.0793442170143 80.521 0.1144 9343 +9345 2 -34.52480439142391 -1113.0447694699533 80.829 0.1144 9344 +9346 2 -34.05340691960248 -1112.0070637006909 81.0956 0.1144 9345 +9347 2 -33.65342267229602 -1110.9408298511498 81.3492 0.1144 9346 +9348 2 -33.58987880990486 -1109.803322111593 81.5954 0.1144 9347 +9349 2 -33.537700737923956 -1108.6647013543588 81.8367 0.1144 9348 +9350 2 -33.31995120578682 -1107.546618892617 82.0848 0.1144 9349 +9351 2 -32.908353414500596 -1106.4838107687265 82.3469 0.1144 9350 +9352 2 -32.88027079616984 -1105.3453282626915 82.6146 0.1144 9351 +9353 2 -33.01800359744516 -1104.214746175688 82.8822 0.1144 9352 +9354 2 -33.105715789557394 -1103.0801805401452 83.1468 0.1144 9353 +9355 2 -33.15577593833899 -1101.9413694796508 83.4092 0.1144 9354 +9356 2 -33.20619718452821 -1100.8040715644447 83.6741 0.1144 9355 +9357 2 -32.725839648099225 -1099.7702487376528 84.1593 0.1144 9356 +9358 2 -32.24708906202062 -1098.7401134182264 84.4816 0.1144 9357 +9359 2 -32.23169707672645 -1097.6161222141732 84.8764 0.1144 9358 +9360 2 -32.6298563107614 -1096.5663854308068 85.3647 0.1144 9359 +9361 2 -32.895798745654645 -1095.4783397969645 85.9295 0.1144 9360 +9362 2 -32.57962374714708 -1094.4111521047948 86.5407 0.1144 9361 +9363 2 -32.234089349960186 -1093.3500983925064 87.1646 0.1144 9362 +9364 2 -31.890120463873927 -1092.288598389961 87.7836 0.1144 9363 +9365 2 -31.704938027950675 -1091.1851345548373 88.3537 0.1144 9364 +9366 2 -31.783549495209854 -1090.0611734846862 88.8362 0.1144 9365 +9367 2 -31.86764844624338 -1088.9324861557793 89.2531 0.1144 9366 +9368 2 -31.952014689622104 -1087.8012633673868 89.6204 0.1144 9367 +9369 2 -32.11821671810833 -1086.6787901090297 89.9696 0.1144 9368 +9370 2 -32.36024338980036 -1085.5706445679612 90.3235 0.1144 9369 +9371 2 -32.47633100406114 -1084.4401391562913 90.6592 0.1144 9370 +9372 2 -32.384717349533275 -1083.3068583268832 90.9471 0.1144 9371 +9373 2 -32.293233428688154 -1082.1710748650266 91.198 0.1144 9372 +9374 2 -32.201493142060826 -1081.0336078721825 91.4211 0.1144 9373 +9375 2 -32.110722803818305 -1079.896854461941 91.6255 0.1144 9374 +9376 2 -32.01884495852835 -1078.7594202961345 91.8229 0.1144 9375 +9377 2 -31.927052306088342 -1077.6220384961402 92.0282 0.1144 9376 +9378 2 -31.836281967845764 -1076.4852850858988 92.2505 0.1144 9377 +9379 2 -31.990815890277304 -1076.251254816878 92.1371 0.1144 9378 +9380 2 -32.6152183004545 -1075.3097126509792 92.4851 0.1144 9379 +9381 2 -33.24537548675113 -1074.3609087668397 92.708 0.1144 9380 +9382 2 -33.87517157564014 -1073.4105917374122 92.9376 0.1144 9381 +9383 2 -34.52818077169076 -1072.4771255731225 93.1997 0.1144 9382 +9384 2 -35.261894220369584 -1071.6067649839251 93.4702 0.1144 9383 +9385 2 -36.01140978551052 -1070.7502258677073 93.7577 0.1144 9384 +9386 2 -36.75929418547679 -1069.8938579244218 94.0727 0.1144 9385 +9387 2 -37.367262987855895 -1068.9462053956254 94.5367 0.1144 9386 +9388 2 -37.84925198609051 -1067.9479965719916 95.2165 0.1144 9387 +9389 2 -38.30842110907173 -1066.9586502137831 96.0596 0.1144 9388 +9390 2 -38.78617329456773 -1066.0020896724404 96.9856 0.1144 9389 +9391 2 -39.741198245927364 -1065.483978794075 97.8597 0.1144 9390 +9392 2 -40.74022896512486 -1065.0317701341623 98.6605 0.1144 9391 +9393 2 -41.761342644077786 -1064.6026431312189 99.3518 0.1144 9392 +9394 2 -42.74012659263724 -1064.1944494491972 100.4038 0.1144 9393 +9395 2 -31.611878893593143 -1075.600691489796 92.4885 0.1144 9378 +9396 2 -31.333715319314138 -1074.4978259105233 92.7984 0.1144 9395 +9397 2 -31.055336818502667 -1073.3974105978864 93.142 0.1144 9396 +9398 2 -30.35497960586838 -1072.5225158758135 93.5332 0.1144 9397 +9399 2 -29.5337757941478 -1071.7437767541458 93.9537 0.1144 9398 +9400 2 -28.70383235498184 -1070.9771553431578 94.3928 0.1144 9399 +9401 2 -27.874826037163643 -1070.2111099561098 94.8343 0.1144 9400 +9402 2 -27.28574340644775 -1069.2514309346714 95.2893 0.1144 9401 +9403 2 -27.60264598089833 -1068.1853187040379 95.7337 0.1144 9402 +9404 2 -27.962233179983798 -1067.1131638895386 96.15 0.1144 9403 +9405 2 -28.308498254696758 -1066.0342288831391 96.5166 0.1144 9404 +9406 2 -28.215683288059154 -1064.8962186933923 96.7005 0.1144 9405 +9407 2 -28.084871617875706 -1063.7589159777776 96.7232 0.1144 9406 +9408 2 -28.000919809199956 -1062.6196630366712 96.579 0.1144 9407 +9409 2 -27.91518756289122 -1061.4833066524575 96.3449 0.1144 9408 +9410 2 -27.79315075623674 -1060.351397615555 96.1607 0.1144 9409 +9411 2 -27.532052281091694 -1059.2469312890983 96.4368 0.1144 9410 +9412 2 -27.527306300439022 -1058.1361746075213 96.8789 0.1144 9411 +9413 2 -27.69769449236105 -1057.0135747170648 97.2216 0.1144 9412 +9414 2 -27.759243962069377 -1055.8845255982135 97.5842 0.1144 9413 +9415 2 -27.64526533475822 -1054.7656689842918 98.0484 0.1144 9414 +9416 2 -27.456164027744308 -1053.6597963217823 98.6042 0.1144 9415 +9417 2 -27.27022346838561 -1052.5598574333048 99.2166 0.1144 9416 +9418 2 -27.084376714089387 -1051.4639671496004 99.8729 0.1144 9417 +9419 2 -26.905254684297518 -1050.3615287302578 100.4864 0.1144 9418 +9420 2 -26.728447676828978 -1049.2511228350509 101.0008 0.1144 9419 +9421 2 -26.552633258104038 -1048.13451897505 101.4177 0.1144 9420 +9422 2 -26.376278744059164 -1047.0123009991755 101.7576 0.1144 9421 +9423 2 -26.199615498419348 -1045.8884846851633 102.0443 0.1144 9422 +9424 2 -26.022591155371913 -1044.763155225863 102.2997 0.1144 9423 +9425 2 -26.003283400570183 -1043.63006639854 102.5592 0.1144 9424 +9426 2 -26.714252264255663 -1042.8383387150088 102.7942 0.1144 9425 +9427 2 -26.651333376282423 -1041.8329163244007 103.0641 0.1144 9426 +9428 2 -26.497125806905444 -1040.7054131955595 103.32 0.1144 9427 +9429 2 -26.535426240831896 -1039.5660644487918 103.5577 0.1144 9428 +9430 2 -26.579787080889844 -1038.4277411178048 103.7954 0.1144 9429 +9431 2 -26.62574625908536 -1037.289109055223 104.0418 0.1144 9430 +9432 2 -26.67170543728082 -1036.150476992641 104.3036 0.1144 9431 +9433 2 -26.716427374746388 -1035.0136668069417 104.5842 0.1144 9432 +9434 2 -26.73392283636059 -1033.8776109505584 104.9177 0.1144 9433 +9435 2 -26.67776732431014 -1032.7500441505567 105.3676 0.1144 9434 +9436 2 -26.597736795771596 -1031.6305738675646 105.9092 0.1144 9435 +9437 2 -26.517471801924927 -1030.513776602721 106.4809 0.1144 9436 +9438 2 -26.459001267551116 -1029.394177278583 107.0174 0.1144 9437 +9439 2 -26.58217160214076 -1028.2653256724466 107.3293 0.1144 9438 +9440 2 -26.801792554336288 -1027.1434079226283 107.3713 0.1144 9439 +9441 2 -26.979712858427746 -1026.0173385529215 107.2294 0.1144 9440 +9442 2 -27.004294141953977 -1024.8762477061873 107.0628 0.1144 9441 +9443 2 -26.992606793754618 -1023.7330529695429 106.9264 0.1144 9442 +9444 2 -26.98091944555523 -1022.5898582328982 106.8463 0.1144 9443 +9445 2 -26.98162020196375 -1021.4461788683294 106.8418 0.1144 9444 +9446 2 -27.046209990393805 -1020.3054997683058 106.9169 0.1144 9445 +9447 2 -27.18563803645236 -1019.1719687585967 107.0588 0.1144 9446 +9448 2 -27.338922791573793 -1018.0401470218168 107.2422 0.1144 9447 +9449 2 -27.48989562595483 -1016.9096039650167 107.4542 0.1144 9448 +9450 2 -27.643489112671176 -1015.7793805663745 107.6866 0.1144 9449 +9451 2 -27.79587818569459 -1014.6511166032776 107.9308 0.1144 9450 +9452 2 -27.807621280235793 -1013.5396962958642 108.1746 0.1144 9451 +9453 2 -27.33287785968068 -1012.5053333737525 108.4084 0.1144 9452 +9454 2 -26.85020219934526 -1011.4861668187087 108.6683 0.1144 9453 +9455 2 -26.70285149720172 -1010.3669867525094 108.9726 0.1144 9454 +9456 2 -26.86353321487647 -1009.2491021942454 109.2146 0.1144 9455 +9457 2 -27.24811154971013 -1008.1735278572625 109.3448 0.1144 9456 +9458 2 -27.633180715634097 -1007.0969640331189 109.3862 0.1144 9457 +9459 2 -28.067335778419732 -1006.0411815643035 109.3537 0.1144 9458 +9460 2 -28.60029963689425 -1005.029935730908 109.261 0.1144 9459 +9461 2 -28.880486596825165 -1003.9842167258763 109.1577 0.1144 9460 +9462 2 -28.698882165897203 -1002.8573631947253 109.093 0.1144 9461 +9463 2 -28.737934520093006 -1001.7278670930801 109.0494 0.1144 9462 +9464 2 -29.113330038806794 -1000.6561561597919 109.0404 0.1144 9463 +9465 2 -29.122031115801263 -999.7309099540395 109.2442 0.1144 9464 +9466 2 -28.402610338284404 -998.8696515985636 109.7631 0.1144 9465 +9467 2 -28.0155426718062 -997.8368288540585 110.3544 0.1144 9466 +9468 2 -28.03159856188276 -996.7294680779814 110.9346 0.1144 9467 +9469 2 -28.335680769614044 -995.6513671778142 111.4375 0.1144 9468 +9470 2 -28.724759510108015 -994.587949581714 111.8415 0.1144 9469 +9471 2 -29.12429974670158 -993.5229805026593 112.1434 0.1144 9470 +9472 2 -29.463622761331294 -992.4356700678052 112.3612 0.1144 9471 +9473 2 -29.295899348986723 -991.3322561894479 112.4712 0.1144 9472 +9474 2 -29.152250182354805 -990.2005613865412 112.5606 0.1144 9473 +9475 2 -29.323757595119986 -989.0759496947264 112.6336 0.1144 9474 +9476 2 -29.585343386181705 -987.962336901196 112.6824 0.1144 9475 +9477 2 -29.784738491588115 -986.8360861245303 112.7129 0.1144 9476 +9478 2 -29.927415579734628 -985.7018524587814 112.7333 0.1144 9477 +9479 2 -30.02537744299721 -984.5614968110356 112.7524 0.1144 9478 +9480 2 -30.06452119320906 -983.4186754834346 112.7689 0.1144 9479 +9481 2 -29.818401749553118 -982.307217832665 112.7655 0.1144 9480 +9482 2 -29.47345499540586 -981.216945381943 112.7484 0.1144 9481 +9483 2 -29.193781377422056 -980.1077521041939 112.7888 0.1144 9482 +9484 2 -28.97678996872048 -978.9861446958064 112.9075 0.1144 9483 +9485 2 -28.82641917916729 -977.8543092326541 113.0856 0.1144 9484 +9486 2 -28.703084153757487 -976.7203110265236 113.3048 0.1144 9485 +9487 2 -28.591999674292936 -975.5858610195061 113.5467 0.1144 9486 +9488 2 -28.485016165414322 -974.4512320145762 113.7903 0.1144 9487 +9489 2 -28.36520608665043 -973.3179919318812 114.0132 0.1144 9488 +9490 2 -28.11511540609112 -972.2042106465755 114.1762 0.1144 9489 +9491 2 -27.83962795154312 -971.0948907367268 114.2789 0.1144 9490 +9492 2 -27.58259210931743 -969.9794228188505 114.3173 0.1144 9491 +9493 2 -27.32960487186503 -968.8638610959117 114.31 0.1144 9492 +9494 2 -27.16541802526595 -967.7329237239039 114.331 0.1144 9493 +9495 2 -27.07380747232125 -966.5929540986116 114.4058 0.1144 9494 +9496 2 -27.098027658439804 -965.4503501065897 114.5113 0.1144 9495 +9497 2 -27.1458196400811 -964.3087362942648 114.6348 0.1144 9496 +9498 2 -27.195124767010242 -963.1667613845324 114.7667 0.1144 9497 +9499 2 -27.10703916071148 -962.0275498826755 114.8801 0.1144 9498 +9500 2 -26.951577913411825 -960.8954025863452 114.9632 0.1144 9499 +9501 2 -26.786944776555345 -959.7628997032368 115.0229 0.1144 9500 +9502 2 -26.622757929956265 -958.631962331229 115.0708 0.1144 9501 +9503 2 -26.45647408914934 -957.4998533725653 115.113 0.1144 9502 +9504 2 -26.38776550272479 -956.3577624435446 115.169 0.1144 9503 +9505 2 -26.403698554821545 -955.2154640815345 115.2533 0.1144 9504 +9506 2 -26.43518356076433 -954.071926069748 115.3639 0.1144 9505 +9507 2 -26.43272046793456 -952.9290017270315 115.467 0.1144 9506 +9508 2 -26.38298405037662 -951.7865996573694 115.5291 0.1144 9507 +9509 2 -26.361411230017723 -950.6440192823314 115.6534 0.1144 9508 +9510 2 -25.73681739847521 -949.7027740509496 115.8601 0.1144 9509 +9511 2 -25.477190629368295 -948.5938128294621 116.0662 0.1144 9510 +9512 2 -25.40282417346984 -947.4563434275717 116.2672 0.1144 9511 +9513 2 -25.328542910421163 -946.318926391494 116.5212 0.1144 9512 +9514 2 -25.308386328704586 -945.1786251101591 116.7538 0.1144 9513 +9515 2 -25.289219234148504 -944.0388146599148 116.9582 0.1144 9514 +9516 2 -25.27120418747262 -942.897129966975 117.143 0.1144 9515 +9517 2 -25.253241506609527 -941.7553600811852 117.3194 0.1144 9516 +9518 2 -25.20480330780694 -940.6150471807509 117.5149 0.1144 9517 +9519 2 -25.153286452616015 -939.4755416679818 117.7204 0.1144 9518 +9520 2 -25.100747283227406 -938.3354077654599 117.9346 0.1144 9519 +9521 2 -25.08727949739503 -937.1951095857083 118.1194 0.1144 9520 +9522 2 -25.1012531139464 -936.0516068100053 118.258 0.1144 9521 +9523 2 -25.116301410508072 -934.9086472312054 118.3563 0.1144 9522 +9524 2 -25.128761881771595 -933.76550555291 118.421 0.1144 9523 +9525 2 -25.246450935753074 -932.6280026137608 118.4845 0.1144 9524 +9526 2 -25.394879698436085 -931.493196025655 118.5545 0.1144 9525 +9527 2 -25.54259487851644 -930.359359385934 118.6296 0.1144 9526 +9528 2 -25.55086918634413 -929.2163443397383 118.6662 0.1144 9527 +9529 2 -25.55313545385326 -928.072218684912 118.6668 0.1144 9528 +9530 2 -25.552846723101254 -926.9280484892529 118.6357 0.1144 9529 +9531 2 -25.554175869262565 -925.7833468104866 118.5786 0.1144 9530 +9532 2 -25.55424823591821 -924.6406897601154 118.5027 0.1144 9531 +9533 2 -25.556514503427337 -923.496564105289 118.4162 0.1144 9532 +9534 2 -25.556586870082953 -922.3539070549178 118.3252 0.1144 9533 +9535 2 -25.50431499303957 -921.2112376929105 118.2381 0.1144 9534 +9536 2 -25.44469310332215 -920.069449984855 118.1443 0.1144 9535 +9537 2 -25.588307312816454 -918.9357923430464 118.0304 0.1144 9536 +9538 2 -25.988264114213536 -917.8655624205454 117.8839 0.1144 9537 +9539 2 -25.317620791758998 -917.7354014661576 117.602 0.1144 9538 +9540 2 -24.271921609591516 -917.5317589352012 116.5861 0.1144 9539 +9541 2 -23.391836723881312 -916.8444200275695 116.0832 0.1144 9540 +9542 2 -22.679590062709366 -915.9714902516715 115.6025 0.1144 9541 +9543 2 -22.137963548753646 -914.9846385052676 115.1461 0.1144 9542 +9544 2 -22.422892180659602 -913.885373944427 114.8174 0.1144 9543 +9545 2 -22.708217838593356 -912.7810712916526 114.5995 0.1144 9544 +9546 2 -22.994257079129767 -911.6757986904934 114.4268 0.1144 9545 +9547 2 -26.825503389598964 -916.8749008205266 117.644 0.1144 9538 +9548 2 -27.018628264523244 -915.8615897366606 117.2746 0.1144 9547 +9549 2 -26.5597776639097 -914.8517856881856 116.6623 0.1144 9548 +9550 2 -26.056646509570044 -913.8657067858999 115.9656 0.1144 9549 +9551 2 -25.653142133710674 -912.8334624743813 115.2836 0.1144 9550 +9552 2 -25.304261787790097 -911.7757516092437 114.6516 0.1144 9551 +9553 2 -25.025472232804788 -910.6912821748975 114.0919 0.1144 9552 +9554 2 -24.842571992167876 -909.5797133052475 113.615 0.1144 9553 +9555 2 -24.697001727657266 -908.4576366821552 113.2068 0.1144 9554 +9556 2 -24.575719942855187 -907.328891494491 112.8523 0.1144 9555 +9557 2 -24.488154893100727 -906.1955168600202 112.5485 0.1144 9556 +9558 2 -24.393377389334688 -905.0629910524646 112.2363 0.1144 9557 +9559 2 -24.32337609478435 -903.9294959890605 111.904 0.1144 9558 +9560 2 -24.37027239432763 -902.7914399504186 111.6973 0.1144 9559 +9561 2 -24.50787856350334 -901.6566716999795 111.6475 0.1144 9560 +9562 2 -24.713334075041075 -900.5314463390945 111.708 0.1144 9561 +9563 2 -24.95348960562069 -899.4154599542618 111.8337 0.1144 9562 +9564 2 -25.340336107594624 -898.3426883691093 111.9611 0.1144 9563 +9565 2 -25.960781309014436 -897.3879147823177 112.0042 0.1144 9564 +9566 2 -26.685361898339636 -896.5039585732366 111.9311 0.1144 9565 +9567 2 -27.349681417404724 -895.5761533800039 111.7959 0.1144 9566 +9568 2 -27.761127539728534 -894.5156853991462 111.7088 0.1144 9567 +9569 2 -27.901001876044546 -893.3837199005376 111.687 0.1144 9568 +9570 2 -27.809209223604455 -892.2463381005434 111.6424 0.1144 9569 +9571 2 -27.72329797938343 -891.1058807457439 111.5881 0.1144 9570 +9572 2 -27.80281133190678 -889.9649843101413 111.587 0.1144 9571 +9573 2 -27.949013366699262 -888.831508767828 111.6382 0.1144 9572 +9574 2 -28.137309974040562 -887.7038355493539 111.706 0.1144 9573 +9575 2 -28.435960857929956 -886.5996242925954 111.7542 0.1144 9574 +9576 2 -28.680845748848412 -885.4824365956529 111.7416 0.1144 9575 +9577 2 -28.827623807581006 -884.3480239319917 111.6578 0.1144 9576 +9578 2 -28.91163205513513 -883.2085992024274 111.5268 0.1144 9577 +9579 2 -28.974708698277368 -882.0682811998115 111.3728 0.1144 9578 +9580 2 -29.037732975606872 -880.9280483900453 111.2157 0.1144 9579 +9581 2 -29.099820131588586 -879.7872395563392 111.0701 0.1144 9580 +9582 2 -29.163472798670966 -878.6459844323755 110.9444 0.1144 9581 +9583 2 -29.22453764045514 -877.5045472089165 110.8377 0.1144 9582 +9584 2 -29.302537847690644 -876.3640118707216 110.8128 0.1144 9583 +9585 2 -29.215028265331966 -875.223863247517 110.8159 0.1144 9584 +9586 2 -29.05039512847543 -874.0913603644086 110.81 0.1144 9585 +9587 2 -28.88419648051834 -872.9593037715576 110.7999 0.1144 9586 +9588 2 -28.83090228927739 -871.8160060197974 110.808 0.1144 9587 +9589 2 -28.843362760540913 -870.6728643415022 110.843 0.1144 9588 +9590 2 -28.89070845192478 -869.5296850180766 110.9164 0.1144 9589 +9591 2 -29.016502540432725 -868.3944642742139 111.0693 0.1144 9590 +9592 2 -29.1720226356573 -867.2653077306021 111.298 0.1144 9591 +9593 2 -29.154762610833842 -866.1267868869004 111.5548 0.1144 9592 +9594 2 -29.02666539804804 -864.9938524342173 111.806 0.1144 9593 +9595 2 -28.881811817723218 -863.8641170668559 112.0434 0.1144 9594 +9596 2 -28.7381626510913 -862.7324222639493 112.2629 0.1144 9595 +9597 2 -28.591925659161234 -861.6005453615472 112.4617 0.1144 9596 +9598 2 -28.447339371181585 -860.4682745347004 112.6443 0.1144 9597 +9599 2 -28.30324391429224 -859.3350142206932 112.8165 0.1144 9598 +9600 2 -28.15865762631259 -858.2027433938464 112.9806 0.1144 9599 +9601 2 -27.95682424701235 -857.078245631732 113.1315 0.1144 9600 +9602 2 -27.555115029468652 -856.0081343503502 113.2538 0.1144 9601 +9603 2 -27.09209298610193 -854.9634865210047 113.349 0.1144 9602 +9604 2 -27.005605717940824 -853.8239662875528 113.4286 0.1144 9603 +9605 2 -27.09184069338545 -852.6832105121961 113.5131 0.1144 9604 +9606 2 -27.194297451678807 -851.5443265704881 113.6187 0.1144 9605 +9607 2 -27.208088968734756 -850.4034116200833 113.7388 0.1144 9606 +9608 2 -26.932516321337005 -849.2940393444219 113.8561 0.1144 9607 +9609 2 -26.57433814629664 -848.2077241024572 113.9625 0.1144 9608 +9610 2 -26.216468702851216 -847.1230071986301 114.0591 0.1144 9609 +9611 2 -25.856692189673197 -846.0370006882605 114.1476 0.1144 9610 +9612 2 -25.49953632883043 -844.9513138360487 114.2313 0.1144 9611 +9613 2 -25.141305787977302 -843.8650837869338 114.3178 0.1144 9612 +9614 2 -24.783042420087185 -842.7787161791564 114.4136 0.1144 9613 +9615 2 -24.425310535304305 -841.6939664482923 114.5228 0.1144 9614 +9616 2 -24.066994801601453 -840.6076840333646 114.6499 0.1144 9615 +9617 2 -23.702359194401936 -839.5253814675532 114.8118 0.1144 9616 +9618 2 -23.334816103746363 -838.4455174545815 115.0131 0.1144 9617 +9619 2 -22.990536077018646 -837.3650452831691 115.253 0.1144 9618 +9620 2 -23.238262057434326 -836.2564120125936 115.5686 0.1144 9619 +9621 2 -23.561010804020384 -835.1697128377632 115.9362 0.1144 9620 +9622 2 -23.770955007422685 -834.0593367746847 116.3613 0.1144 9621 +9623 2 -24.030137481728076 -832.9603278870895 116.8163 0.1144 9622 +9624 2 -24.37444001931263 -831.8868772628814 117.2808 0.1144 9623 +9625 2 -24.738254821083643 -830.8187296139058 117.752 0.1144 9624 +9626 2 -25.107371905550565 -829.7551323273567 118.2429 0.1144 9625 +9627 2 -25.498806415081106 -828.7119436796286 118.8757 0.1144 9626 +9628 2 -25.893443111516547 -827.6788226035555 119.5883 0.1144 9627 +9629 2 -26.288079807951988 -826.6457015274823 120.3065 0.1144 9628 +9630 2 -26.550981924123477 -825.5692858748125 120.8396 0.1144 9629 +9631 2 -26.524643814805614 -824.4344580491061 120.8105 0.1144 9630 +9632 2 -26.208381214401754 -823.3498441603947 120.4269 0.1144 9631 +9633 2 -25.696974545139852 -822.3357892710349 120.1138 0.1144 9632 +9634 2 -25.52975048140209 -821.2097930843153 119.9461 0.1144 9633 +9635 2 -25.467678325049008 -820.0677904497275 119.9579 0.1144 9634 +9636 2 -25.41095299222465 -818.9277831793049 120.1603 0.1144 9635 +9637 2 -25.354885774607055 -817.7935799492318 120.5014 0.1144 9636 +9638 2 -25.298912362051993 -816.6634253239317 120.9104 0.1144 9637 +9639 2 -25.24330004690458 -815.5347838439196 121.3439 0.1144 9638 +9640 2 -25.425847388755955 -814.4250573785314 121.8386 0.1144 9639 +9641 2 -25.623497292612882 -813.3192145481503 122.3684 0.1144 9640 +9642 2 -25.821593486727267 -812.2149372288698 122.9147 0.1144 9641 +9643 2 -26.01866736664408 -811.1100315198364 123.4582 0.1144 9642 +9644 2 -26.223403092413008 -809.9991536991047 123.9084 0.1144 9643 +9645 2 -26.428097378932193 -808.8841420807496 124.2884 0.1144 9644 +9646 2 -26.633858520481766 -807.7672038538865 124.6101 0.1144 9645 +9647 2 -26.83894983302872 -806.6471541435978 124.894 0.1144 9646 +9648 2 -27.045030632736257 -805.5275952643995 125.1578 0.1144 9647 +9649 2 -27.530239640141588 -804.4977948035661 125.4294 0.1144 9648 +9650 2 -28.124445443824072 -803.5268925464516 125.7203 0.1144 9649 +9651 2 -28.773425845987646 -803.0892312417791 126.0353 0.1144 9650 +9652 2 -29.714365447357608 -802.4563502762146 126.4136 0.1144 9651 +9653 2 -30.005557703838463 -801.993500624853 126.5734 0.1144 9652 +9654 2 -30.612680780885768 -801.0319468461612 126.8803 0.1144 9653 +9655 2 -31.219495126338217 -800.0687947293317 127.146 0.1144 9654 +9656 2 -31.82751388548354 -799.1036831769568 127.3821 0.1144 9655 +9657 2 -32.48091700597885 -798.1718677166177 127.6324 0.1144 9656 +9658 2 -33.18906398750599 -797.2818011446391 127.9225 0.1144 9657 +9659 2 -33.90121503297365 -796.3941957658589 128.1941 0.1144 9658 +9660 2 -34.609320575251076 -795.4999953962571 128.417 0.1144 9659 +9661 2 -35.31502039172571 -794.6030251018617 128.606 0.1144 9660 +9662 2 -36.01033839432094 -793.6969736213889 128.7882 0.1144 9661 +9663 2 -36.69483690499203 -792.7842716826985 128.9806 0.1144 9662 +9664 2 -37.3794206085129 -791.8716221098211 129.1884 0.1144 9663 +9665 2 -38.06329072943117 -790.9599424853283 129.4196 0.1144 9664 +9666 2 -38.75348544724281 -790.0534416130149 129.6784 0.1144 9665 +9667 2 -39.458427140282 -789.1599962652656 129.9687 0.1144 9666 +9668 2 -40.17093928315728 -788.2739040317733 130.2871 0.1144 9667 +9669 2 -40.92576574320674 -787.4259115169424 130.6071 0.1144 9668 +9670 2 -41.73291552310641 -786.6262793184862 130.9104 0.1144 9669 +9671 2 -42.55544066798643 -785.8386803303964 131.1979 0.1144 9670 +9672 2 -43.34705562376922 -785.0226911994755 131.4804 0.1144 9671 +9673 2 -43.886552897199664 -784.0531405035543 131.7994 0.1144 9672 +9674 2 -44.2184289925097 -782.9693519137631 132.1704 0.1144 9673 +9675 2 -44.54870674968208 -781.8858720555668 132.5671 0.1144 9674 +9676 2 -44.884416523232915 -780.8044399273485 132.9686 0.1144 9675 +9677 2 -45.391760856206474 -779.7976359306344 133.2506 0.1144 9676 +9678 2 -46.00970652676108 -778.8360438142759 133.3615 0.1144 9677 +9679 2 -46.63024002261383 -777.8746337974128 133.3352 0.1144 9678 +9680 2 -46.93507725219749 -776.7996967464838 133.3895 0.1144 9679 +9681 2 -47.076464733801345 -775.6673701504676 133.6048 0.1144 9680 +9682 2 -47.215580946681854 -774.538929598505 133.903 0.1144 9681 +9683 2 -47.02664632594406 -773.4895021502806 133.518 0.1144 9682 +9684 2 -46.9677992809433 -772.4274227204381 132.5811 0.1144 9683 +9685 2 -47.388205059426724 -771.4639016042097 131.5728 0.1144 9684 +9686 2 -48.020611898061276 -770.583622307368 130.697 0.1144 9685 +9687 2 -48.502997229787184 -769.6044380184134 129.8928 0.1144 9686 +9688 2 -48.85722908782748 -768.5518806609505 129.2343 0.1144 9687 +9689 2 -49.283816109823476 -767.5061189086069 128.8272 0.1144 9688 +9690 2 -49.757982086559565 -766.468122017231 128.6569 0.1144 9689 +9691 2 -50.29125157504595 -765.4651633178573 128.457 0.1144 9690 +9692 2 -51.166659253445715 -765.2513124431837 128.0644 0.1144 9691 +9693 2 -52.2533361963653 -765.480142930066 127.4342 0.1144 9692 +9694 2 -53.29461035212188 -765.1318410171322 126.8134 0.1144 9693 +9695 2 -54.22146970568389 -764.4957048063136 126.3363 0.1144 9694 +9696 2 -55.133732049013275 -763.8197250603572 125.9899 0.1144 9695 +9697 2 -55.616347027954276 -762.8031200917968 125.7424 0.1144 9696 +9698 2 -55.760501332768584 -761.6750765658619 125.5542 0.1144 9697 +9699 2 -56.430560907270504 -760.7749800673585 125.258 0.1144 9698 +9700 2 -57.20444403649978 -759.950791404312 124.8318 0.1144 9699 +9701 2 -58.00580931482597 -759.1515945695503 124.4116 0.1144 9700 +9702 2 -58.822635150982336 -758.3644833109677 124.0543 0.1144 9701 +9703 2 -59.64257247056419 -757.5767022233824 123.7508 0.1144 9702 +9704 2 -60.17230470076848 -756.6253296442723 124.2368 0.1144 9703 +9705 2 -60.727674278739556 -755.6278560196263 124.4116 0.1144 9704 +9706 2 -61.28268275930294 -754.6288692496926 124.5272 0.1144 9705 +9707 2 -61.83769123986633 -753.6298824797589 124.6386 0.1144 9706 +9708 2 -62.48009587052525 -752.6873155906162 124.6857 0.1144 9707 +9709 2 -63.270955804455596 -751.8681626104569 124.5829 0.1144 9708 +9710 2 -64.13226721828082 -751.1245940134772 124.3136 0.1144 9709 +9711 2 -65.10192551694117 -750.5389456259279 124.0397 0.1144 9710 +9712 2 -66.16464844798215 -750.1272954688288 123.8924 0.1144 9711 +9713 2 -67.25207980920688 -749.7737942883147 123.8807 0.1144 9712 +9714 2 -68.22218749970774 -749.1830226159818 123.8908 0.1144 9713 +9715 2 -68.99968387001582 -748.3529556462993 123.8104 0.1144 9714 +9716 2 -69.72172899985566 -747.468732144873 123.625 0.1144 9715 +9717 2 -70.1071944992708 -746.4111928554087 123.3204 0.1144 9716 +9718 2 -70.39287815302913 -745.3150921438064 122.9351 0.1144 9717 +9719 2 -70.35387603454554 -744.179288166549 122.6546 0.1144 9718 +9720 2 -69.99859441639828 -743.0947533622173 122.5924 0.1144 9719 +9721 2 -69.62757874490951 -742.0140460329603 122.7215 0.1144 9720 +9722 2 -69.2687246323966 -740.9635859595007 123.4013 0.1144 9721 +9723 2 -60.80361195146753 -757.4618894898391 123.2395 0.1144 9703 +9724 2 -61.93262994210656 -757.3487572803963 122.8808 0.1144 9723 +9725 2 -63.0599972287952 -757.2360189953984 122.5028 0.1144 9724 +9726 2 -64.1868213185808 -757.1243553904105 122.094 0.1144 9725 +9727 2 -65.3117383386338 -757.0114021788801 121.6765 0.1144 9726 +9728 2 -66.4385624284194 -756.8997385738924 121.2686 0.1144 9727 +9729 2 -67.57195688575437 -756.8887179531125 120.8964 0.1144 9728 +9730 2 -68.70255369344038 -756.9914803414176 120.5691 0.1144 9729 +9731 2 -69.84072816041703 -756.9377367583361 120.3723 0.1144 9730 +9732 2 -70.97684458637785 -757.0599730731611 120.2466 0.1144 9731 +9733 2 -72.0422599556901 -757.4610788208554 120.057 0.1144 9732 +9734 2 -73.1014352284221 -757.8811208087959 119.7974 0.1144 9733 +9735 2 -74.15700036165838 -758.3003523074882 119.4749 0.1144 9734 +9736 2 -75.21123444910221 -758.7173570782901 119.0991 0.1144 9735 +9737 2 -76.26390302544544 -759.1348081393494 118.6833 0.1144 9736 +9738 2 -77.31403614230318 -759.5519919080637 118.2591 0.1144 9737 +9739 2 -78.36670471864643 -759.9694429691228 117.8492 0.1144 9738 +9740 2 -79.41937329498964 -760.3868940301822 117.4572 0.1144 9739 +9741 2 -80.4730641855304 -760.8049734809944 117.0856 0.1144 9740 +9742 2 -81.47504983493624 -761.3442181827623 116.797 0.1144 9741 +9743 2 -82.58934407656878 -761.5806338401635 116.5592 0.1144 9742 +9744 2 -83.71608327527825 -761.7616656276806 116.354 0.1144 9743 +9745 2 -84.84314213214562 -761.9400767628623 116.1661 0.1144 9744 +9746 2 -85.97086220580287 -762.1176031425091 115.9838 0.1144 9745 +9747 2 -87.09479244951552 -762.3142806889348 115.7775 0.1144 9746 +9748 2 -88.2117135466495 -762.5376384127255 115.519 0.1144 9747 +9749 2 -89.3276646953987 -762.7602825539136 115.2276 0.1144 9748 +9750 2 -90.38403721630009 -763.1825927089945 114.94 0.1144 9749 +9751 2 -91.42733708290838 -763.637246421544 114.6687 0.1144 9750 +9752 2 -92.47308721615235 -764.092115060626 114.4212 0.1144 9751 +9753 2 -93.51826132545618 -764.5479208210558 114.2039 0.1144 9752 +9754 2 -93.78608051820154 -764.7742845328057 114.0807 0.1144 9753 +9755 2 -94.66027478563966 -765.5103544430577 113.9799 0.1144 9754 +9756 2 -95.5349153433352 -766.2479898644103 113.9348 0.1144 9755 +9757 2 -96.41016475200797 -766.9848257230776 113.9208 0.1144 9756 +9758 2 -97.29996093005839 -767.7021969599743 113.93 0.1144 9757 +9759 2 -98.23422355545001 -768.3625038028863 113.9555 0.1144 9758 +9760 2 -99.19448152443297 -768.9849115414346 113.9922 0.1144 9759 +9761 2 -100.15429320315843 -769.6057537688823 114.042 0.1144 9760 +9762 2 -101.11512719608146 -770.2272243860828 114.1076 0.1144 9761 +9763 2 -102.23245973815231 -770.1178258466522 114.2305 0.1144 9762 +9764 2 -103.27595551961771 -769.656678045981 114.3962 0.1144 9763 +9765 2 -104.36030822445399 -769.3039842531318 114.606 0.1144 9764 +9766 2 -105.43063994299776 -768.9105098037974 114.828 0.1144 9765 +9767 2 -106.4884685439337 -768.4850522018651 115.04 0.1144 9766 +9768 2 -107.56038318739586 -768.1503020605187 115.2262 0.1144 9767 +9769 2 -108.67455148946546 -768.3584689278712 115.3429 0.1144 9768 +9770 2 -109.71366450010139 -768.8373118991333 115.407 0.1144 9769 +9771 2 -110.72184028932118 -769.3750793842336 115.4843 0.1144 9770 +9772 2 -111.71944054606662 -769.9346351256404 115.5921 0.1144 9771 +9773 2 -112.71607085442729 -770.4934772844447 115.7223 0.1144 9772 +9774 2 -113.71207277303509 -771.0533417574464 115.8646 0.1144 9773 +9775 2 -114.70749866770282 -771.614143351796 116.0037 0.1144 9774 +9776 2 -115.6955159807175 -772.1892893847157 116.1056 0.1144 9775 +9777 2 -116.66415247973828 -772.7980662672965 116.1247 0.1144 9776 +9778 2 -117.6234209615607 -773.4199831747544 116.0589 0.1144 9777 +9779 2 -118.58323264028616 -774.0408254022021 115.9315 0.1144 9778 +9780 2 -119.54117007631612 -774.6605155817696 115.7635 0.1144 9779 +9781 2 -120.49946860975376 -775.2817189066249 115.5759 0.1144 9780 +9782 2 -121.45735367997099 -775.9014942790421 115.3886 0.1144 9781 +9783 2 -122.4156522134086 -776.5226976038975 115.2172 0.1144 9782 +9784 2 -123.37546389213405 -777.1435398313452 115.0691 0.1144 9783 +9785 2 -124.34868668220153 -777.7404631940085 114.956 0.1144 9784 +9786 2 -125.37116926486136 -778.2507540406414 114.912 0.1144 9785 +9787 2 -126.43305899499107 -778.675164291513 114.9459 0.1144 9786 +9788 2 -127.53513251082852 -778.9444471645104 115.059 0.1144 9787 +9789 2 -128.65746101304677 -778.8553744800977 115.1654 0.1144 9788 +9790 2 -129.7352717854107 -778.482578370976 115.0346 0.1144 9789 +9791 2 -130.78071538332185 -778.0509166010836 114.641 0.1144 9790 +9792 2 -131.83712733716754 -777.7240097125482 113.983 0.1144 9791 +9793 2 -132.8990277690978 -777.6610616969615 113.0158 0.1144 9792 +9794 2 -133.93463025199682 -777.8114283735005 111.8944 0.1144 9793 +9795 2 -134.9483866198319 -778.1566002534008 110.929 0.1144 9794 +9796 2 -135.95984227757825 -778.575599003295 110.1204 0.1144 9795 +9797 2 -136.97940848048063 -779.0075649833202 109.4212 0.1144 9796 +9798 2 -138.00738844950445 -779.4434114967694 108.8102 0.1144 9797 +9799 2 -139.0434413185543 -779.8573400202293 108.2001 0.1144 9798 +9800 2 -140.07515605857475 -780.1799795485335 107.3027 0.1144 9799 +9801 2 -141.08372067005763 -780.6078828956395 106.4977 0.1144 9800 +9802 2 -142.07675004897564 -781.1202591173806 105.8991 0.1144 9801 +9803 2 -143.07650656144446 -781.6434610342121 105.4469 0.1144 9802 +9804 2 -143.62031604969062 -782.6330631666337 105.0476 0.1144 9803 +9805 2 -143.76714378624342 -783.7290325347179 104.3302 0.1144 9804 +9806 2 -94.04193577136 -764.5152025584594 113.472 0.1144 9753 +9807 2 -95.0872204959968 -764.4487320052732 112.3629 0.1144 9806 +9808 2 -96.19656773993798 -764.3786776523735 111.7424 0.1144 9807 +9809 2 -97.31728077428942 -764.3075102817969 111.214 0.1144 9808 +9810 2 -98.44788789301303 -764.239724788574 110.8243 0.1144 9809 +9811 2 -99.58584502441074 -764.1710576413993 110.5832 0.1144 9810 +9812 2 -100.72633761529386 -764.1026577865697 110.462 0.1144 9811 +9813 2 -101.86803461986989 -764.0322984961948 110.43 0.1144 9812 +9814 2 -103.01017791470342 -763.9635047169204 110.4328 0.1144 9813 +9815 2 -104.1521836508744 -763.8947437646832 110.416 0.1144 9814 +9816 2 -105.29267624175752 -763.8263439098537 110.3312 0.1144 9815 +9817 2 -106.42778266515698 -763.8956075912267 110.0686 0.1144 9816 +9818 2 -107.53094627422392 -764.1064006215439 109.5433 0.1144 9817 +9819 2 -108.61098678707211 -764.3351428139935 108.815 0.1144 9818 +9820 2 -109.67743788320263 -764.5596402740284 107.9618 0.1144 9819 +9821 2 -110.73480228262603 -764.7838345130979 107.0465 0.1144 9820 +9822 2 -111.78645334517968 -765.0194242680317 106.1178 0.1144 9821 +9823 2 -112.77678298738262 -765.4924618138715 105.3315 0.1144 9822 +9824 2 -113.77525910336179 -765.9719153526207 104.6545 0.1144 9823 +9825 2 -114.89242256779498 -766.0046783460067 104.0642 0.1144 9824 +9826 2 -116.01437835350603 -765.942374133392 103.5423 0.1144 9825 +9827 2 -117.09713302197827 -765.8827368304553 102.6474 0.1144 9826 +9828 2 -47.24320104520427 -774.2470782148221 135.3061 0.1144 9682 +9829 2 -47.312381143563215 -773.5469334483694 137.3128 0.1144 9828 +9830 2 -47.47188206452907 -772.4768013321282 138.1492 0.1144 9829 +9831 2 -47.72976632007908 -771.3757032753051 138.5807 0.1144 9830 +9832 2 -47.98840559748143 -770.2777690677203 139.0446 0.1144 9831 +9833 2 -48.246331292281155 -769.1808048085204 139.5276 0.1144 9832 +9834 2 -48.507291102636486 -768.0855881599165 140.021 0.1144 9833 +9835 2 -48.88718082384443 -767.0394115592794 140.5158 0.1144 9834 +9836 2 -49.49813137596644 -766.093591833929 141.0116 0.1144 9835 +9837 2 -50.159054989531626 -765.1865885114257 141.5313 0.1144 9836 +9838 2 -50.970742820221716 -764.4339982739727 142.1025 0.1144 9837 +9839 2 -51.929037737518286 -763.8668367348292 142.7409 0.1144 9838 +9840 2 -52.883146491378994 -763.2998018277854 143.425 0.1144 9839 +9841 2 -53.815654504361845 -762.7046995376513 144.1247 0.1144 9840 +9842 2 -54.713207517593816 -762.0505494872514 144.8065 0.1144 9841 +9843 2 -55.614230010075886 -761.4039315490209 145.4844 0.1144 9842 +9844 2 -56.56045648092247 -760.8346339854663 146.2006 0.1144 9843 +9845 2 -57.53895090522592 -760.3350575032266 146.9779 0.1144 9844 +9846 2 -58.50383160329109 -759.8095059087077 147.756 0.1144 9845 +9847 2 -59.45534943027057 -759.2489776980526 148.4921 0.1144 9846 +9848 2 -60.397519471363964 -758.6773041341492 149.2341 0.1144 9847 +9849 2 -61.160370182735235 -757.9671189173498 150.0898 0.1144 9848 +9850 2 -61.47485672034534 -757.0687846434505 151.5461 0.1144 9849 +9851 2 -61.68143786296986 -756.1953285875943 153.2698 0.1144 9850 +9852 2 -62.06295125580937 -755.2360727191817 154.4757 0.1144 9851 +9853 2 -62.57324961367041 -754.3424788091955 155.6971 0.1144 9852 +9854 2 -62.76477374141051 -753.3121026261956 156.7916 0.1144 9853 +9855 2 -62.91223835042692 -752.2640346708189 157.8562 0.1144 9854 +9856 2 -63.344229663946024 -751.3316979317358 159.0658 0.1144 9855 +9857 2 -63.506835172634666 -750.2983362048734 160.1933 0.1144 9856 +9858 2 -63.968174265733566 -749.3881471029947 161.4239 0.1144 9857 +9859 2 -64.10426008016692 -748.417599035607 162.7601 0.1144 9858 +9860 2 -64.48042084278138 -747.788062213277 164.9091 0.1144 9859 +9861 2 -30.721235506593843 -802.8631399194132 127.7699 0.1144 9652 +9862 2 -31.758404494903687 -803.2817454373993 128.3419 0.1144 9861 +9863 2 -32.839390332864355 -803.6158896998496 128.6866 0.1144 9862 +9864 2 -33.95976450171892 -803.6371274436887 128.812 0.1144 9863 +9865 2 -35.09590355035354 -803.5364716332866 128.6538 0.1144 9864 +9866 2 -36.2276524059198 -803.6373597788963 128.4492 0.1144 9865 +9867 2 -37.357925068791644 -803.797556868647 128.2554 0.1144 9866 +9868 2 -38.48845409744564 -803.9594374893851 128.0812 0.1144 9867 +9869 2 -39.61671736800591 -804.1358891890216 127.9368 0.1144 9868 +9870 2 -40.720391631027525 -804.4222371611529 127.7819 0.1144 9869 +9871 2 -41.81412116037413 -804.7467249061222 127.5775 0.1144 9870 +9872 2 -42.90531523023532 -805.0709453587464 127.2989 0.1144 9871 +9873 2 -43.9934751845409 -805.3934182007745 126.947 0.1144 9872 +9874 2 -45.078790947766095 -805.7140254123199 126.5295 0.1144 9873 +9875 2 -46.170306060858394 -805.9874999593826 126.0442 0.1144 9874 +9876 2 -47.15646604812238 -805.6415914606152 125.3619 0.1144 9875 +9877 2 -48.09110087546324 -805.080076171846 124.5152 0.1144 9876 +9878 2 -49.015486031653865 -804.5243508952801 123.5875 0.1144 9877 +9879 2 -49.958845073221 -804.0097509354146 122.6537 0.1144 9878 +9880 2 -51.074202073990676 -803.9822436484873 122.0425 0.1144 9879 +9881 2 -52.204722898879936 -804.0392982231649 121.6404 0.1144 9880 +9882 2 -53.32830986745071 -804.1928034154482 121.2674 0.1144 9881 +9883 2 -54.44948490705252 -804.3569162747065 120.8827 0.1144 9882 +9884 2 -55.569946364051646 -804.5219990823496 120.4784 0.1144 9883 +9885 2 -56.68787236156541 -804.6868145976475 120.0497 0.1144 9884 +9886 2 -57.79964345534873 -804.8706187190046 119.5799 0.1144 9885 +9887 2 -58.84988268890518 -805.2395068487929 119.0566 0.1144 9886 +9888 2 -59.75785836883972 -805.9185178756896 118.7309 0.1144 9887 +9889 2 -60.51422612460115 -806.7633987833 118.627 0.1144 9888 +9890 2 -60.98526560059804 -807.7929026113903 118.7052 0.1144 9889 +9891 2 -61.15983967700987 -808.918017144158 118.9594 0.1144 9890 +9892 2 -61.301438704617055 -810.0377701327142 119.3937 0.1144 9891 +9893 2 -61.70296072048373 -810.9989543974493 120.2944 0.1144 9892 +9894 2 -62.62857312582537 -811.1206834616764 121.571 0.1144 9893 +9895 2 -63.4552605034055 -810.413583702272 122.4146 0.1144 9894 +9896 2 -64.03158391769927 -809.5109216103812 123.4013 0.1144 9895 +9897 2 -27.445320274442565 -803.1592215327552 126.2069 0.1144 9650 +9898 2 -26.49706158780441 -802.6461933042772 127.1309 0.1144 9897 +9899 2 -25.514510834715168 -802.1146690173402 127.6999 0.1144 9898 +9900 2 -24.52870552890829 -801.5731623515983 128.2019 0.1144 9899 +9901 2 -23.568793936650394 -800.987238171308 128.7138 0.1144 9900 +9902 2 -22.64156407482139 -800.3460441575082 129.1825 0.1144 9901 +9903 2 -21.717354992938596 -799.6934429140484 129.6028 0.1144 9902 +9904 2 -20.791238841323178 -799.0395520640459 129.9768 0.1144 9903 +9905 2 -19.864100375510162 -798.3850328242905 130.3198 0.1144 9904 +9906 2 -18.948410483910777 -797.712079101942 130.6508 0.1144 9905 +9907 2 -18.15590554661634 -796.9040281293147 131.0014 0.1144 9906 +9908 2 -17.662530823290126 -795.8957748712576 131.3886 0.1144 9907 +9909 2 -17.230921419210574 -794.8502460804966 131.8022 0.1144 9908 +9910 2 -16.79925964931826 -793.8048024825855 132.2272 0.1144 9909 +9911 2 -16.374468774805536 -792.7567741609591 132.6469 0.1144 9910 +9912 2 -16.000071225963012 -791.6859609160745 133.0126 0.1144 9911 +9913 2 -15.724049186724699 -790.5817119251966 133.2598 0.1144 9912 +9914 2 -15.333738586628357 -789.5106251848005 133.4446 0.1144 9913 +9915 2 -14.394734289261748 -788.9038638976974 133.7076 0.1144 9914 +9916 2 -13.3304733768762 -788.5182577380366 134.0914 0.1144 9915 +9917 2 -12.266153895511735 -788.146114362994 134.5781 0.1144 9916 +9918 2 -11.208617015094006 -787.7780226943077 135.1451 0.1144 9917 +9919 2 -10.15521393229929 -787.4098895863716 135.7591 0.1144 9918 +9920 2 -9.101201998527415 -787.0425560411209 136.3748 0.1144 9919 +9921 2 -8.043697945146704 -786.6746019310972 136.9525 0.1144 9920 +9922 2 -6.982818217578398 -786.3031643136773 137.4758 0.1144 9921 +9923 2 -5.917978179669689 -785.9251840712484 137.9084 0.1144 9922 +9924 2 -4.851752321109217 -785.52768846305 138.1828 0.1144 9923 +9925 2 -3.7709109375138326 -785.1560711551812 138.2788 0.1144 9924 +9926 2 -2.645288550601066 -784.9556537355772 138.2343 0.1144 9925 +9927 2 -1.5049674464020484 -784.8992658883192 138.089 0.1144 9926 +9928 2 -0.378451786437779 -784.719780073127 137.8812 0.1144 9927 +9929 2 0.7326810150030951 -784.4652355631445 137.6586 0.1144 9928 +9930 2 1.8449627627410337 -784.2058764999733 137.471 0.1144 9929 +9931 2 2.9479203415769177 -783.911869783573 137.373 0.1144 9930 +9932 2 3.9900681603050145 -783.455341828328 137.5102 0.1144 9931 +9933 2 4.917480121629353 -782.8167356398264 137.9778 0.1144 9932 +9934 2 5.726706882915863 -782.0534577685254 138.5625 0.1144 9933 +9935 2 6.412178869123551 -781.1675231173663 139.1219 0.1144 9934 +9936 2 7.060791478982878 -780.2477848217998 139.6335 0.1144 9935 +9937 2 7.701474950645007 -779.3195389550496 140.0921 0.1144 9936 +9938 2 8.302190664116324 -778.3635084107735 140.532 0.1144 9937 +9939 2 8.842921495974025 -777.3730988906868 141.0016 0.1144 9938 +9940 2 9.414401341282485 -776.4000594072093 141.4252 0.1144 9939 +9941 2 10.09550437202239 -775.4873476720393 141.6229 0.1144 9940 +9942 2 10.796514283930094 -774.5917448842996 141.4423 0.1144 9941 +9943 2 11.148174457233807 -773.6061578193926 140.5376 0.1144 9942 +9944 2 11.057267287671095 -772.6455188411484 139.1757 0.1144 9943 +9945 2 11.408842268125 -771.6599841420541 138.0644 0.1144 9944 +9946 2 11.885522199777938 -770.6942724393398 137.1241 0.1144 9945 +9947 2 12.431033041277317 -769.7465858815547 136.3102 0.1144 9946 +9948 2 13.052962372188404 -768.8271679366827 135.6334 0.1144 9947 +9949 2 13.654486165861442 -767.8921213626314 135.0177 0.1144 9948 +9950 2 14.051839432110086 -766.871639867551 134.2533 0.1144 9949 +9951 2 14.272947224616985 -765.8092444966591 133.3724 0.1144 9950 +9952 2 14.446188538726432 -764.7277931491238 132.5607 0.1144 9951 +9953 2 14.630707348813274 -763.6408183891942 131.8153 0.1144 9952 +9954 2 14.882452527442638 -762.5581824508304 131.1654 0.1144 9953 +9955 2 15.236367863713866 -761.4933857637807 130.6474 0.1144 9954 +9956 2 15.69676374411577 -760.4597426274377 130.2622 0.1144 9955 +9957 2 16.23535855156237 -759.457264660901 129.9791 0.1144 9956 +9958 2 16.937890126274425 -758.5836157917707 129.7372 0.1144 9957 +9959 2 17.851799580240794 -757.9077655125292 129.4846 0.1144 9958 +9960 2 18.80594477727962 -757.2862979969118 129.2026 0.1144 9959 +9961 2 19.758182904585922 -756.666120087837 128.879 0.1144 9960 +9962 2 20.76993188070793 -756.186489960222 128.4741 0.1144 9961 +9963 2 21.864663901387786 -755.9379182544745 127.9695 0.1144 9962 +9964 2 22.97059502620182 -755.746904780689 127.4213 0.1144 9963 +9965 2 24.073456106840084 -755.5510876802779 126.8551 0.1144 9964 +9966 2 25.18142985945063 -755.4770210648156 126.2498 0.1144 9965 +9967 2 26.290471473379952 -755.5553625517372 125.592 0.1144 9966 +9968 2 27.396618939462684 -755.6181106455629 124.8993 0.1144 9967 +9969 2 28.46227426702761 -755.4249734590023 124.1514 0.1144 9968 +9970 2 29.489513934881728 -755.0272612077615 123.398 0.1144 9969 +9971 2 30.52833742126161 -754.6398010367175 122.7106 0.1144 9970 +9972 2 31.58053609036338 -754.2697084932362 122.0979 0.1144 9971 +9973 2 32.64034113792138 -753.8988140727193 121.557 0.1144 9972 +9974 2 33.05179348053208 -753.0672180351144 121.1095 0.1144 9973 +9975 2 32.865365605256784 -751.9490778036048 120.8446 0.1144 9974 +9976 2 32.75663661588278 -750.8154578069262 120.675 0.1144 9975 +9977 2 32.994248488354856 -749.7119292943537 120.5103 0.1144 9976 +9978 2 33.37337229595316 -748.6356285656947 120.3182 0.1144 9977 +9979 2 34.00469085200001 -747.7009314699513 120.0478 0.1144 9978 +9980 2 34.8289318808592 -746.9271335335719 119.6888 0.1144 9979 +9981 2 35.877029579374934 -746.5568619921783 119.2702 0.1144 9980 +9982 2 36.92475386884688 -746.1357593523735 118.8555 0.1144 9981 +9983 2 37.89851744677088 -745.5572845004493 118.4809 0.1144 9982 +9984 2 38.95898852921181 -745.1525271740097 118.2188 0.1144 9983 +9985 2 40.08795346150153 -745.2415115639897 118.1737 0.1144 9984 +9986 2 41.22240105947256 -745.3699698741831 118.3241 0.1144 9985 +9987 2 42.252357984533774 -745.2673259142127 119.4749 0.1144 9986 +9988 2 -32.7143165999571 -1101.2067141982056 82.8719 0.1144 9356 +9989 2 -31.764897152258698 -1101.7202887422904 82.1747 0.1144 9988 +9990 2 -30.641648658421843 -1101.791188820522 81.8558 0.1144 9989 +9991 2 -29.50767376750173 -1101.6675690940917 81.6273 0.1144 9990 +9992 2 -28.371859869969626 -1101.5603087091727 81.4663 0.1144 9991 +9993 2 -27.23074540625157 -1101.489934419169 81.3669 0.1144 9992 +9994 2 -26.086490710279293 -1101.4661081574955 81.3235 0.1144 9993 +9995 2 -24.944362136128404 -1101.4999315237997 81.319 0.1144 9994 +9996 2 -23.800793990439956 -1101.56244997041 81.3252 0.1144 9995 +9997 2 -22.67506819764867 -1101.7204497787782 81.3344 0.1144 9996 +9998 2 -21.60423782303468 -1102.1124439098621 81.347 0.1144 9997 +9999 2 -20.5721040378599 -1102.6032301153534 81.3644 0.1144 9998 +10000 2 -19.530082371479068 -1103.0772568517227 81.3896 0.1144 9999 +10001 2 -18.493489619893694 -1103.5600201139546 81.4237 0.1144 10000 +10002 2 -17.476394411812123 -1104.0830567643889 81.4696 0.1144 10001 +10003 2 -16.420989358944723 -1104.4696250822603 81.5371 0.1144 10002 +10004 2 -15.387555443405233 -1104.2305603374468 81.6469 0.1144 10003 +10005 2 -14.52656287140627 -1103.4837068638908 81.7936 0.1144 10004 +10006 2 -13.719219562868318 -1102.6759255926554 81.9563 0.1144 10005 +10007 2 -12.872519756163285 -1101.912503266989 82.1313 0.1144 10006 +10008 2 -11.961074596978733 -1101.225960127923 82.313 0.1144 10007 +10009 2 -10.915820397006655 -1100.8816168436251 82.4065 0.1144 10008 +10010 2 -9.776582869119352 -1100.9065356127176 82.3211 0.1144 10009 +10011 2 -8.64796362101805 -1101.0560661875684 82.0826 0.1144 10010 +10012 2 -7.532240722432732 -1101.2632932455806 81.732 0.1144 10011 +10013 2 -6.423509148160292 -1101.4854993350818 81.3005 0.1144 10012 +10014 2 -5.319815665821636 -1101.7081024506106 80.8167 0.1144 10013 +10015 2 -4.216698207423121 -1101.929768444792 80.3076 0.1144 10014 +10016 2 -3.164994690067374 -1102.303822025956 79.7698 0.1144 10015 +10017 2 -2.1687184824442625 -1102.812657999649 79.1977 0.1144 10016 +10018 2 -1.1876215121599785 -1103.3470227953635 78.5929 0.1144 10017 +10019 2 -0.20932729370628067 -1103.879119423938 77.9579 0.1144 10018 +10020 2 0.7673490478340455 -1104.410684569405 77.2974 0.1144 10019 +10021 2 1.7965171120105765 -1104.7960077268704 76.5778 0.1144 10020 +10022 2 2.8485333798433317 -1104.7160751164083 75.728 0.1144 10021 +10023 2 3.911348310447522 -1104.5555549828277 74.7874 0.1144 10022 +10024 2 4.967141794815063 -1104.735177053763 73.8508 0.1144 10023 +10025 2 6.07383584347258 -1104.7289214429961 73.1643 0.1144 10024 +10026 2 7.154063557997802 -1104.3912522339 72.8073 0.1144 10025 +10027 2 8.240301721888102 -1104.0350985854445 72.919 0.1144 10026 +10028 2 -47.370213778897096 -1156.6962063145543 46.5562 0.1144 9234 +10029 2 -47.12720313067416 -1157.8145460593773 46.5559 0.1144 10028 +10030 2 -46.900945748407196 -1158.9363755147624 46.5559 0.1144 10029 +10031 2 -46.86023648709488 -1160.0796431326207 46.5559 0.1144 10030 +10032 2 -46.82109273688303 -1161.2224644602215 46.5559 0.1144 10031 +10033 2 -46.685531196102374 -1162.3584894901664 46.5559 0.1144 10032 +10034 2 -49.15009058842833 -1152.8392476016702 46.4234 0.1144 9230 +10035 2 -49.24037319716365 -1153.970301703188 46.2801 0.1144 10034 +10036 2 -49.68351436770803 -1154.8792447393396 46.205 0.1144 10035 +10037 2 -50.7318698467422 -1154.9998885107452 46.0124 0.1144 10036 +10038 2 -51.834461930503494 -1154.7376379877198 45.6481 0.1144 10037 +10039 2 -52.93974143934361 -1154.5670703842952 45.0934 0.1144 10038 +10040 2 -54.05136987228275 -1154.6393924907443 44.5004 0.1144 10039 +10041 2 -55.178289075192765 -1154.674043754972 44.0297 0.1144 10040 +10042 2 -56.314938777782004 -1154.648942886384 43.7032 0.1144 10041 +10043 2 -57.455812288937125 -1154.658600605817 43.5159 0.1144 10042 +10044 2 -58.59852239765763 -1154.6345251530097 43.475 0.1144 10043 +10045 2 -59.716778346681906 -1154.4101915566139 43.5758 0.1144 10044 +10046 2 -60.85793697244799 -1154.375654607707 43.6526 0.1144 10045 +10047 2 -61.921575005710224 -1154.77296811641 43.6971 0.1144 10046 +10048 2 -63.05860321952491 -1154.8085509913558 43.7181 0.1144 10047 +10049 2 -64.19261855538451 -1154.6676193837047 43.7189 0.1144 10048 +10050 2 -65.33480839164946 -1154.7144742439982 43.7049 0.1144 10049 +10051 2 -66.46253397593631 -1154.9026856584896 43.6576 0.1144 10050 +10052 2 -67.58297691813311 -1155.1334903016004 43.5952 0.1144 10051 +10053 2 -68.72141456958349 -1155.234381548793 43.5677 0.1144 10052 +10054 2 -69.86549026764351 -1155.254106839881 43.587 0.1144 10053 +10055 2 -71.0070958762036 -1155.1970727754615 43.6528 0.1144 10054 +10056 2 -72.14989427935711 -1155.1663608925828 43.7612 0.1144 10055 +10057 2 -73.2751702895448 -1155.3302947539287 44.0471 0.1144 10056 +10058 2 -73.88802612358523 -1155.169866898858 43.5506 0.1144 10057 +10059 2 -74.95088319795394 -1154.8912915778683 42.7781 0.1144 10058 +10060 2 -76.0636065245306 -1154.7238909252646 42.35 0.1144 10059 +10061 2 -77.19942212088762 -1154.656607189695 42.0692 0.1144 10060 +10062 2 -78.3380843173714 -1154.6085629153372 41.8107 0.1144 10061 +10063 2 -79.47625568276499 -1154.56150812814 41.5722 0.1144 10062 +10064 2 -80.59484840769824 -1154.7361239227475 41.3661 0.1144 10063 +10065 2 -81.70355525202399 -1155.0121838860618 41.1919 0.1144 10064 +10066 2 -82.82539632650872 -1155.210159651243 40.9998 0.1144 10065 +10067 2 -83.9617102651842 -1155.2707751011867 40.7414 0.1144 10066 +10068 2 -85.09749882922239 -1155.2908060222862 40.42 0.1144 10067 +10069 2 -86.23207987798452 -1155.3194851748153 40.0596 0.1144 10068 +10070 2 -87.36402245214566 -1155.389503878041 39.7029 0.1144 10069 +10071 2 -88.4960033639735 -1155.4703451747737 39.3604 0.1144 10070 +10072 2 -89.62999607715938 -1155.5523056923496 39.034 0.1144 10071 +10073 2 -90.76362769293763 -1155.6327530646377 38.7212 0.1144 10072 +10074 2 -91.88885344458555 -1155.5213981912448 38.3961 0.1144 10073 +10075 2 -92.97035344082502 -1155.1884315891148 38.0484 0.1144 10074 +10076 2 -94.0394745425096 -1154.8102941670936 37.6737 0.1144 10075 +10077 2 -95.10691211320682 -1154.4324131108551 37.2786 0.1144 10076 +10078 2 -96.1356043567713 -1154.7250234114774 36.832 0.1144 10077 +10079 2 -96.94580347548919 -1155.5063886961098 36.4316 0.1144 10078 +10080 2 -97.95434957216963 -1156.0000138786831 35.9976 0.1144 10079 +10081 2 -98.44620874116151 -1156.9912544034191 35.5401 0.1144 10080 +10082 2 -98.62238425729413 -1158.1093714087076 35.1411 0.1144 10081 +10083 2 -98.79696143528906 -1159.227797145591 34.7284 0.1144 10082 +10084 2 -98.50853639278165 -1159.3781194821036 35.4872 0.1144 10083 +10085 2 -97.53533332461103 -1159.8864653172427 35.3825 0.1144 10084 +10086 2 -96.52380769157048 -1160.411516870618 35.1736 0.1144 10085 +10087 2 -95.45351741227654 -1160.8091251175758 35.0252 0.1144 10086 +10088 2 -94.37681965758958 -1161.193287017108 34.914 0.1144 10087 +10089 2 -93.29962324683243 -1161.5759685983892 34.8382 0.1144 10088 +10090 2 -92.22190317794792 -1161.9595021081686 34.7939 0.1144 10089 +10091 2 -91.14852612749002 -1161.6435335534827 34.7768 0.1144 10090 +10092 2 -90.24438481833289 -1160.942816361546 34.7768 0.1144 10091 +10093 2 -99.72220073336058 -1159.6931050665467 33.8982 0.1144 10083 +10094 2 -100.51581497122345 -1160.3528817344136 32.9795 0.1144 10093 +10095 2 -100.9559997255189 -1161.3472214309386 32.1118 0.1144 10094 +10096 2 -101.36651083891041 -1162.3354117343633 31.1226 0.1144 10095 +10097 2 -101.81988936896886 -1163.2909090020107 30.0754 0.1144 10096 +10098 2 -102.22802178887656 -1164.1890147239724 28.768 0.1144 10097 +10099 2 -101.46233418486872 -1164.1239170813972 27.6996 0.1144 10098 +10100 2 -101.29819299720776 -1164.770973887646 26.4702 0.1144 10099 +10101 2 -101.86100099410277 -1165.6970128493704 25.674 0.1144 10100 +10102 2 -102.73824479031566 -1166.3757973306351 25.0377 0.1144 10101 +10103 2 -103.54175001096775 -1167.0456446717399 24.3893 0.1144 10102 +10104 2 -103.65255417622939 -1168.0430564307244 23.0924 0.1144 10103 +10105 2 -103.02596748369979 -1168.839581946163 21.9691 0.1144 10104 +10106 2 -102.4452707042932 -1169.6334436535067 20.8167 0.1144 10105 +10107 2 -103.46404113863008 -1170.0340493600575 20.0088 0.1144 10106 +10108 2 -104.50072549901586 -1170.4402667734357 19.3565 0.1144 10107 +10109 2 -105.54880537526577 -1170.8521975236836 18.8673 0.1144 10108 +10110 2 -106.60388277899489 -1171.2657297136523 18.4861 0.1144 10109 +10111 2 -107.66122834986425 -1171.6820646554515 18.1618 0.1144 10110 +10112 2 -108.71697248101276 -1172.1053971247302 17.8645 0.1144 10111 +10113 2 -109.44485939046376 -1172.9704508207801 17.5223 0.1144 10112 +10114 2 -110.15902955856086 -1173.8511362475929 17.1582 0.1144 10113 +10115 2 -110.90014788890494 -1174.7122327348857 16.8158 0.1144 10114 +10116 2 -111.71680684882841 -1175.506959174094 16.5731 0.1144 10115 +10117 2 -112.534934413207 -1176.3038795141556 16.4103 0.1144 10116 +10118 2 -113.35292441892295 -1177.1008326812544 16.2666 0.1144 10117 +10119 2 -73.61986145943575 -1155.785262903802 44.48 0.1144 10057 +10120 2 -73.31876651207688 -1156.87588164226 44.8428 0.1144 10119 +10121 2 -72.92260194967099 -1157.9443342287109 45.108 0.1144 10120 +10122 2 -72.61161842856967 -1159.0422561246594 45.2911 0.1144 10121 +10123 2 -72.59246916142189 -1160.1853947013717 45.3989 0.1144 10122 +10124 2 -72.6530281724871 -1161.3277584333673 45.4398 0.1144 10123 +10125 2 -73.04979280138588 -1162.108773535177 45.4437 0.1144 10124 +10126 2 -73.41568518809106 -1163.1890314725933 45.4482 0.1144 10125 +10127 2 -73.24516485343986 -1164.2967601647697 45.4546 0.1144 10126 +10128 2 -73.14319892623689 -1165.434654619317 45.4619 0.1144 10127 +10129 2 -73.28065795305474 -1166.5678266388913 45.4675 0.1144 10128 +10130 2 -73.4953702680532 -1167.690850285921 45.4863 0.1144 10129 +10131 2 -73.44690845740928 -1168.8293526148204 45.5319 0.1144 10130 +10132 2 -73.1795819183742 -1169.939319340235 45.5529 0.1144 10131 +10133 2 -72.6218066146003 -1170.9340230400874 45.5325 0.1144 10132 +10134 2 -71.99566210445676 -1171.8892843563863 45.4244 0.1144 10133 +10135 2 -71.46296553832735 -1172.8979947302964 45.2217 0.1144 10134 +10136 2 -71.11941492101215 -1173.9812979996268 44.9215 0.1144 10135 +10137 2 -70.97468459225774 -1175.1102786469096 44.6538 0.1144 10136 +10138 2 -70.86122624254489 -1176.2450999556982 44.4438 0.1144 10137 +10139 2 -70.75080200838767 -1177.3816688750826 44.2873 0.1144 10138 +10140 2 -70.64478747641135 -1178.5196571346924 44.179 0.1144 10139 +10141 2 -70.55061785213991 -1179.6582354463885 44.0535 0.1144 10140 +10142 2 -70.37951297603212 -1180.788494081114 43.9373 0.1144 10141 +10143 2 -70.05128535788447 -1181.8839157536609 43.8402 0.1144 10142 +10144 2 -70.05236503910902 -1183.0246985613367 43.7595 0.1144 10143 +10145 2 -70.28708276373447 -1184.1438204670048 43.6923 0.1144 10144 +10146 2 -70.32500710062476 -1185.2857700432435 43.6332 0.1144 10145 +10147 2 -70.08970756248351 -1186.404741279402 43.5789 0.1144 10146 +10148 2 -70.0194184653297 -1187.545908108933 43.5193 0.1144 10147 +10149 2 -69.85445918820312 -1188.677244525252 43.4031 0.1144 10148 +10150 2 -69.68045775520227 -1189.8057227223449 43.255 0.1144 10149 +10151 2 -69.4943878757515 -1190.9320648950265 43.0626 0.1144 10150 +10152 2 -69.05122348412868 -1191.9851267032777 42.9192 0.1144 10151 +10153 2 -68.49710287266146 -1192.5589192685375 42.8257 0.1144 10152 +10154 2 -67.85162578878038 -1193.488915953577 42.7736 0.1144 10153 +10155 2 -67.49791689633082 -1194.564684009155 42.8123 0.1144 10154 +10156 2 -67.49281264090757 -1195.69356644173 42.8691 0.1144 10155 +10157 2 -67.7989522022607 -1196.7881565060802 42.9013 0.1144 10156 +10158 2 -68.27387462072807 -1197.8266203987782 42.8974 0.1144 10157 +10159 2 -68.77472839787441 -1198.855551997048 42.859 0.1144 10158 +10160 2 -69.22733378204106 -1199.556796865994 42.4903 0.1144 10159 +10161 2 -68.93501369821138 -1200.6528092831636 42.2626 0.1144 10160 +10162 2 -68.65258459717069 -1201.7588923735711 42.1025 0.1144 10161 +10163 2 -68.65450759468047 -1202.8962026004137 41.9706 0.1144 10162 +10164 2 -68.84904332711943 -1204.02149682363 41.8622 0.1144 10163 +10165 2 -68.80525851100157 -1205.1588830332694 41.767 0.1144 10164 +10166 2 -68.51993285306787 -1206.263185686044 41.6139 0.1144 10165 +10167 2 -68.36848090139222 -1207.3920256730808 41.4232 0.1144 10166 +10168 2 -68.10782361946565 -1208.5022182515909 41.2188 0.1144 10167 +10169 2 -67.81996250204645 -1209.6062536120203 40.9872 0.1144 10168 +10170 2 -67.57312127716568 -1210.7155480993856 40.6871 0.1144 10169 +10171 2 -67.55652149764961 -1211.848046182086 40.3337 0.1144 10170 +10172 2 -67.579751225125 -1212.9768550409108 39.872 0.1144 10171 +10173 2 -67.5959865267044 -1214.0973736641308 39.3089 0.1144 10172 +10174 2 -67.51906169201578 -1215.2143895726153 38.738 0.1144 10173 +10175 2 -67.39862294455304 -1216.330012859442 38.1934 0.1144 10174 +10176 2 -67.27029098751314 -1217.447592480231 37.6804 0.1144 10175 +10177 2 -67.14226776206812 -1218.5667704391572 37.1977 0.1144 10176 +10178 2 -67.01571314107815 -1219.688142298937 36.745 0.1144 10177 +10179 2 -66.8863557682576 -1220.8117823258572 36.311 0.1144 10178 +10180 2 -66.75851154072495 -1221.9350612553694 35.884 0.1144 10179 +10181 2 -66.63066731319219 -1223.0583401848817 35.4595 0.1144 10180 +10182 2 -66.5013099403717 -1224.181980211802 35.0384 0.1144 10181 +10183 2 -66.28481449974771 -1225.2923203462603 34.6192 0.1144 10182 +10184 2 -66.00483015471303 -1226.3879333283558 34.2034 0.1144 10183 +10185 2 -65.7152799956769 -1227.4815400197222 33.7946 0.1144 10184 +10186 2 -65.45467818114605 -1228.5849586094982 33.4057 0.1144 10185 +10187 2 -65.35698671181177 -1229.7160900018748 33.0683 0.1144 10186 +10188 2 -65.29441182632274 -1230.8511995268573 32.7648 0.1144 10187 +10189 2 -65.22964303998043 -1231.9877776562948 32.4831 0.1144 10188 +10190 2 -65.16484142660101 -1233.1242182270698 32.2162 0.1144 10189 +10191 2 -65.08002579138167 -1234.2605643002457 31.9558 0.1144 10190 +10192 2 -64.92006316693914 -1235.3881639449696 31.7008 0.1144 10191 +10193 2 -64.74374120098537 -1236.5139245830815 31.4462 0.1144 10192 +10194 2 -64.68218862969394 -1237.6496624978167 31.1744 0.1144 10193 +10195 2 -64.74528620182764 -1238.7856047262735 30.8736 0.1144 10194 +10196 2 -64.62412766859609 -1239.915575553253 30.5539 0.1144 10195 +10197 2 -63.7218860417384 -1240.599123339999 30.2817 0.1144 10196 +10198 2 -64.03252049812227 -1241.6951851103875 30.0275 0.1144 10197 +10199 2 -64.34351605191381 -1242.7927600260637 29.7917 0.1144 10198 +10200 2 -64.65505480260845 -1243.8892602617298 29.5772 0.1144 10199 +10201 2 -64.96324209393975 -1244.9784183097017 29.1676 0.1144 10200 +10202 2 -69.593134509148 -1192.342288264707 41.9608 0.1144 10152 +10203 2 -70.61246424614387 -1192.6587236250512 40.9604 0.1144 10202 +10204 2 -71.73158094295616 -1192.7060686238983 40.4267 0.1144 10203 +10205 2 -72.84823375343478 -1192.6632766754701 39.8801 0.1144 10204 +10206 2 -73.88321124993763 -1193.1007246286401 39.3596 0.1144 10205 +10207 2 -74.84557310883116 -1193.6868637354628 38.8696 0.1144 10206 +10208 2 -75.85749798128245 -1194.1772836295481 38.3583 0.1144 10207 +10209 2 -76.8892202325311 -1194.628811830526 37.8636 0.1144 10208 +10210 2 -77.94884558964026 -1195.01966790707 37.4458 0.1144 10209 +10211 2 -79.0412697974512 -1195.1123480030374 37.1431 0.1144 10210 +10212 2 -79.9758785987616 -1194.4876658770622 36.9135 0.1144 10211 +10213 2 -80.04488760119938 -1193.5954984277664 36.3927 0.1144 10212 +10214 2 -79.03841486976455 -1193.4764184509518 35.9148 0.1144 10213 +10215 2 -78.14643763473981 -1194.1192058125243 35.5502 0.1144 10214 +10216 2 -78.12798212733048 -1195.1848300118772 35.247 0.1144 10215 +10217 2 -79.05858807179499 -1195.7286777259728 35.0126 0.1144 10216 +10218 2 -80.17498310175506 -1195.935513547533 34.7245 0.1144 10217 +10219 2 -80.49931860218487 -1196.9982094462553 34.2157 0.1144 10218 +10220 2 -72.40001402651092 -1161.8113754119113 46.0482 0.1144 10124 +10221 2 -72.17315808661942 -1162.547475970623 47.964 0.1144 10220 +10222 2 -72.49423122132976 -1163.178553059549 49.8501 0.1144 10221 +10223 2 -72.67098626572658 -1163.5530671370952 51.8358 0.1144 10222 +10224 2 -71.80953018475168 -1163.431802877928 53.3926 0.1144 10223 +10225 2 -71.22812873102191 -1163.8882313275242 55.5307 0.1144 10224 +10226 2 -66.94579251295238 -1107.2954770296865 44.1078 0.1144 9183 +10227 2 -67.23352389668895 -1106.1939443017056 44.2344 0.1144 10226 +10228 2 -67.64087215000984 -1105.126966522876 44.326 0.1144 10227 +10229 2 -67.95849210118269 -1104.0291329213603 44.4147 0.1144 10228 +10230 2 -68.14519037038633 -1102.901768434481 44.5046 0.1144 10229 +10231 2 -68.30097775795605 -1101.7700764313838 44.599 0.1144 10230 +10232 2 -68.48673890581193 -1100.6421359205647 44.7126 0.1144 10231 +10233 2 -68.69138392810146 -1099.5205206991752 44.9294 0.1144 10232 +10234 2 -68.5749581357378 -1098.394760362837 45.1802 0.1144 10233 +10235 2 -68.39534596739213 -1097.2692488040416 45.4255 0.1144 10234 +10236 2 -68.25989874193232 -1096.1371960053102 45.6551 0.1144 10235 +10237 2 -67.98263084975133 -1095.0307726523547 45.8354 0.1144 10236 +10238 2 -67.895876289245 -1093.8937878783881 45.9592 0.1144 10237 +10239 2 -68.10609088657549 -1092.7741875599402 46.0855 0.1144 10238 +10240 2 -68.59798868986508 -1091.7443902006898 46.1712 0.1144 10239 +10241 2 -69.06853591489272 -1090.7015865811052 46.1653 0.1144 10240 +10242 2 -69.07382537139449 -1089.5634275273478 46.1314 0.1144 10241 +10243 2 -69.07193830250475 -1088.4195660632836 46.1 0.1144 10242 +10244 2 -69.41469245871787 -1087.3289651470918 46.0743 0.1144 10243 +10245 2 -69.6393515028472 -1086.2074444233017 46.0555 0.1144 10244 +10246 2 -69.98913601357651 -1085.118582505493 46.0566 0.1144 10245 +10247 2 -70.62752796808229 -1084.1695581841911 46.0799 0.1144 10246 +10248 2 -71.07024606944759 -1083.1149308648392 46.1132 0.1144 10247 +10249 2 -70.91296294526512 -1081.981546327779 46.1518 0.1144 10248 +10250 2 -70.79132316463853 -1080.8445991989424 46.1927 0.1144 10249 +10251 2 -71.15084628982237 -1080.4103693376273 46.3187 0.1144 10250 +10252 2 -71.91832504524189 -1079.566045531271 46.4892 0.1144 10251 +10253 2 -72.5443843625356 -1078.6107318491595 46.5508 0.1144 10252 +10254 2 -72.90620139109461 -1077.5305571929835 46.5354 0.1144 10253 +10255 2 -72.77425647192194 -1076.406174065084 46.4817 0.1144 10254 +10256 2 -72.33133674482787 -1075.354984303266 46.3985 0.1144 10255 +10257 2 -72.51526749828446 -1074.2473993729186 46.2308 0.1144 10256 +10258 2 -72.82878647887128 -1073.1497447693152 46.0793 0.1144 10257 +10259 2 -72.76876756312606 -1072.0129951531935 45.911 0.1144 10258 +10260 2 -72.39338362870609 -1070.9350022813342 45.7856 0.1144 10259 +10261 2 -71.91067273228714 -1069.8983243368991 45.712 0.1144 10260 +10262 2 -71.74577230308546 -1068.7683569132762 45.6868 0.1144 10261 +10263 2 -71.87054407739589 -1067.6325077796605 45.7598 0.1144 10262 +10264 2 -72.07804421732868 -1066.5085391982811 45.8704 0.1144 10263 +10265 2 -72.06988181577532 -1065.366102585072 45.9847 0.1144 10264 +10266 2 -72.17746185885215 -1064.2276680352047 46.0916 0.1144 10265 +10267 2 -72.23599124115088 -1063.0859635194006 46.1919 0.1144 10266 +10268 2 -72.19707741710022 -1061.9435231120715 46.2924 0.1144 10267 +10269 2 -72.09856314173891 -1060.8060006518317 46.478 0.1144 10268 +10270 2 -72.41662938316921 -1059.7097325614168 46.6547 0.1144 10269 +10271 2 -72.478055322361 -1058.5698084832457 46.8308 0.1144 10270 +10272 2 -72.56188448301361 -1058.035840926343 46.6833 0.1144 10271 +10273 2 -72.69030783606948 -1056.9049360795989 46.5021 0.1144 10272 +10274 2 -72.71458038800077 -1055.762246894727 46.4937 0.1144 10273 +10275 2 -72.65504369113307 -1054.6205115524845 46.4352 0.1144 10274 +10276 2 -72.58245767286766 -1053.4801455937009 46.3187 0.1144 10275 +10277 2 -72.55780619612037 -1052.338372606328 46.1538 0.1144 10276 +10278 2 -72.6261327561457 -1051.2026901589884 45.9463 0.1144 10277 +10279 2 -72.82766629500975 -1050.0817447666018 45.7257 0.1144 10278 +10280 2 -72.9916001563557 -1048.9564687564139 45.5213 0.1144 10279 +10281 2 -72.79116829501507 -1047.869220500973 45.3443 0.1144 10280 +10282 2 -72.34918568926881 -1046.818606763095 45.1623 0.1144 10281 +10283 2 -72.55277516187581 -1045.7970554003905 45.0097 0.1144 10282 +10284 2 -72.93877524598133 -1044.7344451919553 44.9019 0.1144 10283 +10285 2 -73.03659644899824 -1043.6008111671308 44.816 0.1144 10284 +10286 2 -73.3031289359777 -1042.5009206255836 44.7432 0.1144 10285 +10287 2 -73.49040012753835 -1041.3793078132408 44.6734 0.1144 10286 +10288 2 -73.57654991013314 -1040.2384996720712 44.5945 0.1144 10287 +10289 2 -73.57858171233411 -1039.097047035393 44.4688 0.1144 10288 +10290 2 -73.46652728448478 -1037.9618834457729 44.2915 0.1144 10289 +10291 2 -73.33174127581484 -1036.8289458915065 44.0804 0.1144 10290 +10292 2 -72.94170347869328 -1035.7660087264696 43.8152 0.1144 10291 +10293 2 -72.4750681942478 -1034.72723920376 43.5588 0.1144 10292 +10294 2 -72.27715058445509 -1033.6118390649158 43.318 0.1144 10293 +10295 2 -72.18687107730284 -1032.4740961675138 43.1348 0.1144 10294 +10296 2 -72.12257219305926 -1031.3334245787184 43.034 0.1144 10295 +10297 2 -71.9422050028613 -1030.2047491706849 43.0576 0.1144 10296 +10298 2 -72.229186875375 -1029.1107376283103 43.1483 0.1144 10297 +10299 2 -72.7197864599091 -1028.0788510998318 43.2589 0.1144 10298 +10300 2 -73.02823452152512 -1026.9806619115382 43.3773 0.1144 10299 +10301 2 -72.9878489914363 -1025.84271639924 43.4932 0.1144 10300 +10302 2 -73.37861987513043 -1024.783038676318 43.7567 0.1144 10301 +10303 2 -73.9339894531015 -1023.7855650516723 43.9653 0.1144 10302 +10304 2 -74.06072066295724 -1022.6509203317496 44.1333 0.1144 10303 +10305 2 -74.63935158834619 -1021.6114020913211 43.7307 0.1144 10304 +10306 2 -75.42963549833647 -1020.7931862325097 43.5042 0.1144 10305 +10307 2 -75.90342875856527 -1019.7819578129319 43.2642 0.1144 10306 +10308 2 -76.32934905314181 -1018.7263957812787 42.9856 0.1144 10307 +10309 2 -76.91237426749251 -1017.7473299206588 42.7994 0.1144 10308 +10310 2 -77.60769227008771 -1016.8412784401861 42.6868 0.1144 10309 +10311 2 -78.03165312911898 -1015.7845119948399 42.6605 0.1144 10310 +10312 2 -78.50594883953764 -1014.7440124710157 42.665 0.1144 10311 +10313 2 -79.033119584226 -1013.729205762354 42.6325 0.1144 10312 +10314 2 -79.36518088061453 -1012.6361405513804 42.5306 0.1144 10313 +10315 2 -79.51276632701229 -1011.5048065441077 42.3676 0.1144 10314 +10316 2 -79.72859504021673 -1010.3846661303397 42.1394 0.1144 10315 +10317 2 -79.82743855743121 -1009.2516604952679 41.8452 0.1144 10316 +10318 2 -80.24636132452866 -1008.1944970238939 41.5909 0.1144 10317 +10319 2 -80.17136647887742 -1007.058049936201 41.3812 0.1144 10318 +10320 2 -79.94417776483823 -1005.9421473471667 41.1236 0.1144 10319 +10321 2 -79.78007090793989 -1005.7284722678548 40.8355 0.1144 10320 +10322 2 -79.70883846915143 -1004.9769990549827 39.2364 0.1144 10321 +10323 2 -80.41740670921587 -1004.2940162886027 37.9375 0.1144 10322 +10324 2 -81.33259255276784 -1004.1420604668583 36.8166 0.1144 10323 +10325 2 -82.41040842731337 -1003.8807791996813 36.1388 0.1144 10324 +10326 2 -83.45195297699826 -1003.5232530313777 35.4021 0.1144 10325 +10327 2 -84.09763198323904 -1002.6672129500149 34.7399 0.1144 10326 +10328 2 -84.89715825495333 -1001.8843754567644 34.2437 0.1144 10327 +10329 2 -85.76649191950168 -1001.1604105199872 33.8307 0.1144 10328 +10330 2 -86.55208480681978 -1000.3542185667928 33.3463 0.1144 10329 +10331 2 -87.39696261284692 -999.6045396069156 32.9014 0.1144 10330 +10332 2 -88.12230063307103 -998.7411210778015 32.4559 0.1144 10331 +10333 2 -88.49359448866227 -997.6936517690386 31.845 0.1144 10332 +10334 2 -88.80880802149571 -996.6171108693425 31.3009 0.1144 10333 +10335 2 -88.85832828774167 -996.3749915945399 31.1842 0.1144 10334 +10336 2 -89.00318765764214 -995.2675709414219 30.6645 0.1144 10335 +10337 2 -89.14723584575776 -994.1878230544129 30.1902 0.1144 10336 +10338 2 -89.71702963921535 -993.2127144025503 29.734 0.1144 10337 +10339 2 -90.14413652521895 -992.1968521442062 29.2555 0.1144 10338 +10340 2 -90.31835529379882 -991.0832975112068 28.7938 0.1144 10339 +10341 2 -90.38347045686618 -989.9832029400271 28.2993 0.1144 10340 +10342 2 -90.29042033238386 -988.8719283950411 27.8094 0.1144 10341 +10343 2 -90.61453466830935 -987.8290299641056 27.3232 0.1144 10342 +10344 2 -91.1521193613776 -986.8475046267971 26.7952 0.1144 10343 +10345 2 -91.48310218363613 -985.7846476414178 26.2197 0.1144 10344 +10346 2 -91.71087201865436 -984.686519715238 25.6617 0.1144 10345 +10347 2 -91.80480338349807 -983.5813658441872 25.0689 0.1144 10346 +10348 2 -92.3709989583331 -982.8699128443079 24.3251 0.1144 10347 +10349 2 -93.07929480387062 -982.0779506954685 23.5431 0.1144 10348 +10350 2 -93.23211785551538 -981.0035964871713 22.7979 0.1144 10349 +10351 2 -92.45910666760503 -980.2665703252438 22.0622 0.1144 10350 +10352 2 -91.62733042499329 -979.5029306639987 21.6129 0.1144 10351 +10353 2 -91.71767358047839 -978.1981368050857 21.3415 0.1144 10352 +10354 2 -92.06122419779368 -977.1148335357551 21.2809 0.1144 10353 +10355 2 -92.70727730561498 -976.183899729368 21.3593 0.1144 10354 +10356 2 -93.60248616890999 -975.4812391135099 21.5862 0.1144 10355 +10357 2 -94.56680074562465 -974.8869065659109 21.971 0.1144 10356 +10358 2 -95.53013134580848 -974.3027682220663 22.4142 0.1144 10357 +10359 2 -96.21737715859933 -973.6105526828002 22.9072 0.1144 10358 +10360 2 -96.40321188020542 -972.5109461548797 23.4393 0.1144 10359 +10361 2 -96.84752762717184 -971.4800727305458 23.8935 0.1144 10360 +10362 2 -97.43001825683217 -970.5060777888967 24.2342 0.1144 10361 +10363 2 -98.02573720580253 -969.5348144343747 24.4612 0.1144 10362 +10364 2 -98.62422607956645 -968.5611453540497 24.6028 0.1144 10363 +10365 2 -99.22266258751759 -967.5875614665746 24.6786 0.1144 10364 +10366 2 -99.84413320471813 -966.6267274736515 24.7123 0.1144 10365 +10367 2 -100.58987606964365 -965.7717429419712 24.7322 0.1144 10366 +10368 2 -101.4617427846309 -965.0306714668102 24.7538 0.1144 10367 +10369 2 -102.34087983007217 -964.2993510067294 24.784 0.1144 10368 +10370 2 -103.28386716142032 -963.6610380247864 24.8242 0.1144 10369 +10371 2 -104.27237340589426 -963.0882661638888 24.8795 0.1144 10370 +10372 2 -105.22003773176851 -962.4488370626858 24.9651 0.1144 10371 +10373 2 -106.14833665686808 -961.7840057715609 25.0899 0.1144 10372 +10374 2 -107.10619759554339 -961.1629344776177 25.2382 0.1144 10373 +10375 2 -108.09171347806165 -960.5843335743137 25.3893 0.1144 10374 +10376 2 -109.06302868383858 -959.9849136705512 25.5533 0.1144 10375 +10377 2 -110.02227303411908 -959.3659839116489 25.7451 0.1144 10376 +10378 2 -110.84604333940513 -958.6046219122499 26.0031 0.1144 10377 +10379 2 -111.50403515999375 -957.6783267627222 26.3141 0.1144 10378 +10380 2 -112.32967109576265 -956.9141205722428 26.5764 0.1144 10379 +10381 2 -113.25595821950421 -956.2481700602748 26.7744 0.1144 10380 +10382 2 -114.17526184391278 -955.569710322229 26.9183 0.1144 10381 +10383 2 -115.08770077610797 -954.8804577161297 27.0178 0.1144 10382 +10384 2 -115.9573931290175 -954.1406320939114 27.099 0.1144 10383 +10385 2 -116.76384335446062 -953.331062057483 27.1943 0.1144 10384 +10386 2 -117.53341127910801 -952.4854400323713 27.2983 0.1144 10385 +10387 2 -118.13510233977689 -951.5218385237013 27.3899 0.1144 10386 +10388 2 -118.30450345358489 -950.4161216328831 27.4633 0.1144 10387 +10389 2 -118.11683551494247 -949.2949314818358 27.5197 0.1144 10388 +10390 2 -118.02130298932403 -948.1592418250417 27.5647 0.1144 10389 +10391 2 -118.14233489045608 -947.0250848346261 27.6072 0.1144 10390 +10392 2 -118.27374309483798 -945.8893239954434 27.6592 0.1144 10391 +10393 2 -118.5555961719385 -944.7841780263836 27.7274 0.1144 10392 +10394 2 -118.89727564814135 -943.6930339132888 27.8105 0.1144 10393 +10395 2 -118.96101901870313 -942.5625161899826 27.9455 0.1144 10394 +10396 2 -118.40218295124811 -941.6147382361814 28.2453 0.1144 10395 +10397 2 -117.93376722916952 -940.5788652703649 28.5116 0.1144 10396 +10398 2 -117.98970568458702 -939.4436674509495 28.6868 0.1144 10397 +10399 2 -117.92028351555987 -938.3025464703135 28.784 0.1144 10398 +10400 2 -117.72788931816171 -937.1758688354917 28.8114 0.1144 10399 +10401 2 -117.31276658022955 -936.1123025881654 28.67 0.1144 10400 +10402 2 -116.82764685642462 -935.0795435148209 28.4612 0.1144 10401 +10403 2 -116.33779777228096 -934.0479857535863 28.2943 0.1144 10402 +10404 2 -115.80144030553609 -933.1663766180466 28.1649 0.1144 10403 +10405 2 -115.20871229924091 -932.1883757179685 28.0832 0.1144 10404 +10406 2 -114.60310225566451 -931.2185377288594 28.037 0.1144 10405 +10407 2 -113.89830320634886 -930.3180234812854 28.0193 0.1144 10406 +10408 2 -113.16217601805917 -929.4425051875526 28.009 0.1144 10407 +10409 2 -112.4665074190506 -928.5382127291336 27.9942 0.1144 10408 +10410 2 -112.01587658187483 -927.4863914759796 27.9742 0.1144 10409 +10411 2 -111.51675018401215 -926.4787111402796 27.9446 0.1144 10410 +10412 2 -110.49895862402454 -925.9563963880296 27.9026 0.1144 10411 +10413 2 -109.46635541136061 -925.4734555477645 27.8464 0.1144 10412 +10414 2 -108.5881539783989 -924.7416132401981 27.7755 0.1144 10413 +10415 2 -107.62171717494985 -924.218819968494 27.6467 0.1144 10414 +10416 2 -107.38526957300479 -923.670631112775 27.3085 0.1144 10415 +10417 2 -106.81019630948188 -922.7800143649081 27.1017 0.1144 10416 +10418 2 -105.81766938075376 -922.2383670389205 26.9461 0.1144 10417 +10419 2 -104.76469276535218 -921.7952550131105 26.814 0.1144 10418 +10420 2 -103.80515388960148 -921.1825623610221 26.6704 0.1144 10419 +10421 2 -103.38533943646055 -920.155082645926 26.5592 0.1144 10420 +10422 2 -103.66500102175416 -919.0687791120502 26.4997 0.1144 10421 +10423 2 -104.08392689043473 -918.0049268447921 26.4392 0.1144 10422 +10424 2 -104.22959434053683 -916.8765222214495 26.2788 0.1144 10423 +10425 2 -104.13752709730778 -916.5150931098326 25.0433 0.1144 10424 +10426 2 -103.90412941490055 -915.5928084401959 23.7541 0.1144 10425 +10427 2 -103.5341799059056 -914.5342371290437 23.2667 0.1144 10426 +10428 2 -103.02102562604773 -913.5232163552396 22.9296 0.1144 10427 +10429 2 -102.56023582120108 -912.4879225149461 22.5961 0.1144 10428 +10430 2 -102.25644961983804 -911.3961875682392 22.276 0.1144 10429 +10431 2 -102.07662252495999 -910.2731262760793 21.9883 0.1144 10430 +10432 2 -101.90107850016327 -909.147298160709 21.7505 0.1144 10431 +10433 2 -101.70690386513206 -908.0235170827805 21.5337 0.1144 10432 +10434 2 -101.48131348923056 -906.9073057621513 21.2631 0.1144 10433 +10435 2 -101.54193134822074 -905.7883656542048 20.9636 0.1144 10434 +10436 2 -101.87790841411675 -904.7043980665012 20.7003 0.1144 10435 +10437 2 -102.02646931952884 -903.5844626766759 20.4234 0.1144 10436 +10438 2 -101.73947782337146 -902.5003512381543 20.152 0.1144 10437 +10439 2 -101.25511312141901 -901.470756014048 19.8835 0.1144 10438 +10440 2 -100.74980278690865 -900.4511753032473 19.5913 0.1144 10439 +10441 2 -100.3107495650925 -899.4024795616649 19.2946 0.1144 10440 +10442 2 -99.94085001286382 -898.3264492269341 19.0188 0.1144 10441 +10443 2 -99.59377033588851 -897.2415564267778 18.7672 0.1144 10442 +10444 2 -99.26115932053648 -896.1508845409816 18.5339 0.1144 10443 +10445 2 -99.00430247622305 -895.0395175936912 18.3543 0.1144 10444 +10446 2 -98.60205867398898 -893.9744772312804 18.1857 0.1144 10445 +10447 2 -98.26486446917329 -892.8889700695174 17.9059 0.1144 10446 +10448 2 -98.14932033076158 -891.7705597458532 17.4355 0.1144 10447 +10449 2 -98.18048498600984 -890.6537050130149 16.84 0.1144 10448 +10450 2 -98.13497547860086 -889.5393727354893 16.215 0.1144 10449 +10451 2 -98.34251326366382 -888.4502893742304 15.5348 0.1144 10450 +10452 2 -98.43823126930675 -887.328861354518 15.037 0.1144 10451 +10453 2 -98.27016388928365 -886.2063377486317 14.6901 0.1144 10452 +10454 2 -97.64014114294574 -885.2563559913875 14.4674 0.1144 10453 +10455 2 -96.74636993387222 -884.5674125424518 14.023 0.1144 10454 +10456 2 -103.73862494027233 -916.6070158986963 26.4132 0.1144 10424 +10457 2 -102.803486455647 -916.0268112584421 26.8428 0.1144 10456 +10458 2 -101.75410696359035 -916.0800832177722 27.5041 0.1144 10457 +10459 2 -100.82049445044703 -916.6422268962941 28.2783 0.1144 10458 +10460 2 -99.93301211045303 -917.286485963905 29.0746 0.1144 10459 +10461 2 -98.93410463768339 -917.6728024026504 29.832 0.1144 10460 +10462 2 -97.84825148995841 -917.6567026642776 30.6071 0.1144 10461 +10463 2 -97.01945520927532 -917.6789980702148 32.163 0.1144 10462 +10464 2 -96.15716151774407 -918.2582167504604 33.3228 0.1144 10463 +10465 2 -95.19707555000326 -918.7060749697075 34.3759 0.1144 10464 +10466 2 -94.15662389335742 -918.7056747411291 35.4995 0.1144 10465 +10467 2 -93.30270752476949 -918.1002715321374 36.5826 0.1144 10466 +10468 2 -92.36760698704785 -917.8476998703209 37.9439 0.1144 10467 +10469 2 -91.51817341463882 -918.1984185126317 39.5889 0.1144 10468 +10470 2 -90.58993955775102 -918.4940099822774 41.0404 0.1144 10469 +10471 2 -89.69766459470551 -918.9405884975713 42.4007 0.1144 10470 +10472 2 -88.90081993566687 -919.51167611726 43.8234 0.1144 10471 +10473 2 -88.28808864413824 -920.1676446411859 45.5305 0.1144 10472 +10474 2 -87.68193762274862 -920.8545380748919 47.182 0.1144 10473 +10475 2 -87.09032134318917 -921.6510783110132 48.5601 0.1144 10474 +10476 2 -86.29975442586087 -922.2381149105759 49.8929 0.1144 10475 +10477 2 -85.60154397424392 -922.9852156636559 51.1087 0.1144 10476 +10478 2 -85.29623632286086 -922.8177405371239 53.8406 0.1144 10477 +10479 2 -84.41567432045466 -922.246902197558 54.9548 0.1144 10478 +10480 2 -83.62039876583006 -921.4653195773465 55.559 0.1144 10479 +10481 2 -82.78673596888666 -920.7528721119202 56.3486 0.1144 10480 +10482 2 -81.85347172695683 -920.173819519546 57.134 0.1144 10481 +10483 2 -81.12699625574015 -919.4922778335718 58.2938 0.1144 10482 +10484 2 -81.1545021227885 -918.5343378995061 59.8052 0.1144 10483 +10485 2 -80.77472901927351 -917.7233880676135 61.3348 0.1144 10484 +10486 2 -79.9897688075583 -917.1522711303546 62.7992 0.1144 10485 +10487 2 -79.1607552802856 -916.5500848289504 64.0298 0.1144 10486 +10488 2 -78.30573751312022 -915.9050342124624 64.9986 0.1144 10487 +10489 2 -77.35074689252323 -915.5624132052667 66.0579 0.1144 10488 +10490 2 -76.30866405301768 -915.3462035717903 67.0566 0.1144 10489 +10491 2 -75.23829718737963 -915.1126084884854 67.8622 0.1144 10490 +10492 2 -74.76425503779103 -914.1296198616878 68.5782 0.1144 10491 +10493 2 -74.3974662764513 -913.0769823245674 69.1986 0.1144 10492 +10494 2 -73.50066025928555 -912.4103538916489 69.7844 0.1144 10493 +10495 2 -72.45676964805449 -911.9916077134174 70.3018 0.1144 10494 +10496 2 -71.41247650016604 -911.5672145922747 70.7773 0.1144 10495 +10497 2 -70.37135340468194 -911.1286888575114 71.2121 0.1144 10496 +10498 2 -69.47206188479706 -910.444334108669 71.6531 0.1144 10497 +10499 2 -68.79680123207294 -909.5417868517995 72.119 0.1144 10498 +10500 2 -68.12091218959605 -908.6402619091276 72.602 0.1144 10499 +10501 2 -67.4481018035076 -907.7379295787905 73.1041 0.1144 10500 +10502 2 -66.77480058632884 -906.836586735614 73.6098 0.1144 10501 +10503 2 -66.111570042388 -905.9253529096484 74.0984 0.1144 10502 +10504 2 -65.46500516250688 -905.0001825977034 74.5494 0.1144 10503 +10505 2 -64.81648084708038 -904.0738078720656 74.9672 0.1144 10504 +10506 2 -64.1837641587457 -903.1719396542517 75.7235 0.1144 10505 +10507 2 -85.56423040564707 -923.2053755092195 51.7006 0.1144 10477 +10508 2 -85.41691225159451 -924.3341740570067 51.7549 0.1144 10507 +10509 2 -85.82911040600456 -925.2145893916647 51.3517 0.1144 10508 +10510 2 -86.88353649553346 -925.5592882627404 50.6766 0.1144 10509 +10511 2 -87.95613249810842 -925.8089261309817 49.9402 0.1144 10510 +10512 2 -89.06306611425572 -925.9240235655454 49.3209 0.1144 10511 +10513 2 -90.18922177779686 -925.9771038017366 48.853 0.1144 10512 +10514 2 -91.32317374426961 -926.0308678950763 48.5092 0.1144 10513 +10515 2 -92.46149707525666 -926.0752287351343 48.2594 0.1144 10514 +10516 2 -93.60201569217028 -926.0699957175109 48.0673 0.1144 10515 +10517 2 -94.74317190888979 -926.0180849378752 47.8948 0.1144 10516 +10518 2 -95.88312681349942 -925.9614447979006 47.7114 0.1144 10517 +10519 2 -97.02281442576395 -925.9073401174114 47.5037 0.1144 10518 +10520 2 -98.16177845813996 -925.8983343995727 47.2609 0.1144 10519 +10521 2 -99.27569418854708 -926.0740663134403 46.9574 0.1144 10520 +10522 2 -100.38243339356282 -926.2440958170013 46.5545 0.1144 10521 +10523 2 -101.48979827751123 -926.1029814173182 46.039 0.1144 10522 +10524 2 -102.58463170347102 -925.8749322572646 45.4661 0.1144 10523 +10525 2 -103.70014236865902 -925.764296477104 44.9226 0.1144 10524 +10526 2 -104.82508541474257 -925.7145101027799 44.4416 0.1144 10525 +10527 2 -105.95581296239956 -925.6642883647612 44.0238 0.1144 10526 +10528 2 -107.08961916644498 -925.6132592390774 43.6738 0.1144 10527 +10529 2 -108.22734665062757 -925.5820127715084 43.4003 0.1144 10528 +10530 2 -109.36588731719357 -925.6412971756596 43.2337 0.1144 10529 +10531 2 -110.45467325220545 -925.9453738727611 43.1609 0.1144 10530 +10532 2 -111.26368267791298 -926.693728179969 43.1334 0.1144 10531 +10533 2 -111.79305012840692 -927.7026245484615 43.164 0.1144 10532 +10534 2 -112.25923602101196 -928.7465173559548 43.2477 0.1144 10533 +10535 2 -112.64147131203572 -929.8221482556113 43.3538 0.1144 10534 +10536 2 -112.9056453419862 -930.9324959902872 43.475 0.1144 10535 +10537 2 -113.17133251722439 -932.0424826275553 43.6327 0.1144 10536 +10538 2 -113.43705251949976 -933.152606823486 43.8396 0.1144 10537 +10539 2 -113.85966903193471 -934.201880998055 44.1022 0.1144 10538 +10540 2 -114.73459298773128 -934.8538852937259 44.4114 0.1144 10539 +10541 2 -115.82062853672534 -935.160144965118 44.7521 0.1144 10540 +10542 2 -116.82306186146184 -935.6528299247603 45.1976 0.1144 10541 +10543 2 -117.35418923418788 -936.6063479339982 45.7383 0.1144 10542 +10544 2 -117.77943260212422 -937.6425641749568 46.3056 0.1144 10543 +10545 2 -118.5729277191158 -938.4270433520612 46.8076 0.1144 10544 +10546 2 -119.46899992236663 -939.1189271114899 47.2136 0.1144 10545 +10547 2 -120.37265660359958 -939.8072561988188 47.5336 0.1144 10546 +10548 2 -121.20009981936374 -940.5911217068533 47.7632 0.1144 10547 +10549 2 -121.60804603190451 -941.6489855438726 47.8864 0.1144 10548 +10550 2 -121.90562806530752 -942.7531054936045 47.9175 0.1144 10549 +10551 2 -122.19844791133474 -943.8582891967835 47.882 0.1144 10550 +10552 2 -122.84492139519986 -944.7967847346841 47.7904 0.1144 10551 +10553 2 -123.79924869173402 -945.4156644250033 47.6213 0.1144 10552 +10554 2 -124.7782731131042 -945.994555841731 47.3362 0.1144 10553 +10555 2 -125.75609622236453 -946.5687178981198 46.9675 0.1144 10554 +10556 2 -126.46548466431003 -947.4506898298919 46.5727 0.1144 10555 +10557 2 -127.03808062887853 -948.4284063078956 46.1905 0.1144 10556 +10558 2 -127.73726866390345 -949.3227718549053 45.8315 0.1144 10557 +10559 2 -128.72021815953036 -949.8906945072505 45.5118 0.1144 10558 +10560 2 -129.78059784595533 -950.3087770596456 45.2494 0.1144 10559 +10561 2 -130.85840201241203 -950.6853355528027 45.0766 0.1144 10560 +10562 2 -131.9384000797221 -951.0604254415045 44.9686 0.1144 10561 +10563 2 -133.0083627098778 -951.4629177023871 44.9081 0.1144 10562 +10564 2 -133.84756874208006 -952.2406321008107 44.8731 0.1144 10563 +10565 2 -116.99342592184186 -933.2893833679432 28.0622 0.1144 10403 +10566 2 -117.88034524206853 -932.569654551368 27.9604 0.1144 10565 +10567 2 -118.70193636718389 -931.774790743454 27.9231 0.1144 10566 +10568 2 -119.34358597599038 -930.8290600050731 27.8809 0.1144 10567 +10569 2 -119.7420624591366 -929.7593287386424 27.8013 0.1144 10568 +10570 2 -119.73149123019729 -928.6208109965237 27.6781 0.1144 10569 +10571 2 -119.44117401661853 -927.5157570270273 27.5682 0.1144 10570 +10572 2 -118.89549648884304 -926.5116252549572 27.4705 0.1144 10571 +10573 2 -118.50910786142046 -925.4362585460626 27.3631 0.1144 10572 +10574 2 -118.13498070650618 -924.3562210458083 27.2654 0.1144 10573 +10575 2 -117.82790712538832 -923.2543661616337 27.2153 0.1144 10574 +10576 2 -117.72658148598373 -922.1151156295736 27.2159 0.1144 10575 +10577 2 -117.38248666033454 -921.025366836979 27.2809 0.1144 10576 +10578 2 -117.02368009554127 -919.9400739092118 27.3939 0.1144 10577 +10579 2 -116.66429750680805 -918.8557181027925 27.5354 0.1144 10578 +10580 2 -116.34817866823286 -917.7576937952756 27.6746 0.1144 10579 +10581 2 -116.34224299456997 -916.6139261362739 27.7645 0.1144 10580 +10582 2 -116.34958018104987 -915.4703350661381 27.8081 0.1144 10581 +10583 2 -115.87212230309711 -914.431603881095 27.7907 0.1144 10582 +10584 2 -115.23112769079361 -913.4843858454782 27.7236 0.1144 10583 +10585 2 -114.59179239465323 -912.5407701243771 27.4848 0.1144 10584 +10586 2 -92.1584613910328 -979.104224723594 19.5378 0.1144 10352 +10587 2 -92.51063822065106 -978.8305166114014 17.6438 0.1144 10586 +10588 2 -91.84231241855574 -978.1002038686305 16.6748 0.1144 10587 +10589 2 -92.15475774310556 -977.0675051520791 15.9958 0.1144 10588 +10590 2 -91.9698818425151 -976.8505717259299 14.1513 0.1144 10589 +10591 2 -91.46632383001929 -976.2562821264488 12.2167 0.1144 10590 +10592 2 -91.30060500957836 -975.3178465545784 11.0035 0.1144 10591 +10593 2 -91.59124356301922 -974.3402941410201 9.8481 0.1144 10592 +10594 2 -91.27554088079961 -973.3378387971571 8.76 0.1144 10593 +10595 2 -91.06674110223241 -972.386421274473 7.2918 0.1144 10594 +10596 2 -92.30993816164431 -976.8675605404934 15.8642 0.1144 10589 +10597 2 -92.92106771167863 -975.925841785729 15.4412 0.1144 10596 +10598 2 -93.2826557855592 -974.8590251825459 15.4238 0.1144 10597 +10599 2 -92.8215476306166 -973.9686182590298 15.7678 0.1144 10598 +10600 2 -91.83234882835637 -973.4652872947458 16.242 0.1144 10599 +10601 2 -90.74987346209184 -973.1772971361806 16.7805 0.1144 10600 +10602 2 -89.66357543884564 -972.9083205857318 17.3585 0.1144 10601 +10603 2 -88.6056743594371 -972.5454045676418 17.9341 0.1144 10602 +10604 2 -87.59824438201662 -972.0564563795947 18.4859 0.1144 10603 +10605 2 -86.54408627736953 -971.6851594224204 19.008 0.1144 10604 +10606 2 -85.43306641131889 -971.5352705727988 19.5087 0.1144 10605 +10607 2 -84.32003784549332 -971.37757370645 20.014 0.1144 10606 +10608 2 -84.23236908808667 -970.3098685416339 20.3136 0.1144 10607 +10609 2 -84.54304387759313 -969.2103483075477 20.3953 0.1144 10608 +10610 2 -84.67151959646179 -968.0793582679536 20.2948 0.1144 10609 +10611 2 -84.36555251610301 -967.12866563322 19.9746 0.1144 10610 +10612 2 -85.42883566710188 -967.091921779287 19.1678 0.1144 10611 +10613 2 -86.5123231255157 -966.941530065885 18.4395 0.1144 10612 +10614 2 -87.50955558481434 -966.5338771717198 17.8594 0.1144 10613 +10615 2 -88.19386037689046 -965.6520446754137 17.6054 0.1144 10614 +10616 2 -88.78553382267063 -964.6741863300698 17.6037 0.1144 10615 +10617 2 -89.33029573366687 -963.674300776455 17.8413 0.1144 10616 +10618 2 -89.80663537994408 -962.6591206587494 18.3767 0.1144 10617 +10619 2 -89.80892216285412 -961.5674768062847 19.0827 0.1144 10618 +10620 2 -89.51364594172136 -960.501044828504 19.7806 0.1144 10619 +10621 2 -89.57924022208329 -959.4026533270875 20.5173 0.1144 10620 +10622 2 -90.00305972833226 -958.3766711312757 21.1889 0.1144 10621 +10623 2 -90.33047926627819 -957.3022334289535 21.6938 0.1144 10622 +10624 2 -90.47810615192566 -956.175033219304 22.0058 0.1144 10623 +10625 2 -90.6223870888395 -955.0511758568049 22.2146 0.1144 10624 +10626 2 -90.367043389814 -953.939447812107 22.2962 0.1144 10625 +10627 2 -90.33651050484761 -952.8007503795396 22.2163 0.1144 10626 +10628 2 -90.57817607913196 -951.6910916931834 22.0608 0.1144 10627 +10629 2 -91.11901911903757 -950.6887973121826 21.8521 0.1144 10628 +10630 2 -91.78948974771342 -949.7727549353882 21.5269 0.1144 10629 +10631 2 -92.57681001431519 -948.9878142447637 21.0406 0.1144 10630 +10632 2 -93.54031961241128 -948.4077768715051 20.5597 0.1144 10631 +10633 2 -94.48116781776528 -947.7882211318964 20.1183 0.1144 10632 +10634 2 -95.47615131726255 -947.2879810238203 19.5063 0.1144 10633 +10635 2 -96.44813014887592 -946.7050501952517 19.1797 0.1144 10634 +10636 2 -97.32953225987427 -945.9832212828856 18.9936 0.1144 10635 +10637 2 -97.69490947116284 -944.9213161395367 18.8511 0.1144 10636 +10638 2 -97.64445636941912 -943.7865728141435 18.6741 0.1144 10637 +10639 2 -97.40550794052493 -942.6701325388358 18.5305 0.1144 10638 +10640 2 -96.90634630657877 -941.6449408137443 18.3968 0.1144 10639 +10641 2 -96.55953392194871 -940.5575125541026 18.2576 0.1144 10640 +10642 2 -96.92370431049784 -939.4801930155701 18.1093 0.1144 10641 +10643 2 -97.50923215729688 -938.5012568886328 17.9102 0.1144 10642 +10644 2 -98.09711336408594 -937.5251758793389 17.6614 0.1144 10643 +10645 2 -98.68481247137964 -936.5516826953432 17.3722 0.1144 10644 +10646 2 -98.9909040714225 -935.4573271852903 17.0452 0.1144 10645 +10647 2 -99.21234379891774 -934.3433354720864 16.7068 0.1144 10646 +10648 2 -99.43485820642329 -933.2298869557856 16.369 0.1144 10647 +10649 2 -99.6521110779461 -932.1400845012944 15.7058 0.1144 10648 +10650 2 -87.97774867585403 -996.7481183653938 31.5949 0.1144 10334 +10651 2 -86.9922981633213 -997.2502272055359 31.9136 0.1144 10650 +10652 2 -86.16220256860512 -998.0304730793686 32.0894 0.1144 10651 +10653 2 -85.19408444755146 -998.5284457128411 32.3005 0.1144 10652 +10654 2 -84.31442702354462 -998.0348130190397 32.5044 0.1144 10653 +10655 2 -83.4668424613046 -997.2707294765835 32.6654 0.1144 10654 +10656 2 -82.37568603657351 -996.9813942440798 32.8188 0.1144 10655 +10657 2 -81.656124598811 -996.126857511525 33.094 0.1144 10656 +10658 2 -80.27772557693683 -1004.2000586849442 37.3223 0.1144 10323 +10659 2 -79.44249898540275 -1003.5294939671172 36.7419 0.1144 10658 +10660 2 -78.66795552187685 -1002.6922218470098 36.5994 0.1144 10659 +10661 2 -78.12125257832068 -1001.6941504810709 36.4728 0.1144 10660 +10662 2 -77.51158300340805 -1000.728625287497 36.3378 0.1144 10661 +10663 2 -77.21909412088664 -999.7189581821591 35.3377 0.1144 10662 +10664 2 -80.39299661060014 -1005.0175716749317 40.8391 0.1144 10320 +10665 2 -80.83981258096841 -1003.9694541535515 40.6146 0.1144 10664 +10666 2 -81.16759080727547 -1002.8791557657885 40.3808 0.1144 10665 +10667 2 -81.41456176583878 -1001.7673586459746 40.129 0.1144 10666 +10668 2 -81.69677594034707 -1000.6637258222028 39.8902 0.1144 10667 +10669 2 -82.04023275259982 -999.5763739480989 39.6738 0.1144 10668 +10670 2 -82.426685330129 -998.501951658996 39.5147 0.1144 10669 +10671 2 -82.83171305049686 -997.4322563211855 39.4198 0.1144 10670 +10672 2 -83.31492118310715 -996.3971176490361 39.38 0.1144 10671 +10673 2 -83.60492073398393 -995.2983876728857 39.3784 0.1144 10672 +10674 2 -83.72363210216301 -994.1615131234894 39.4013 0.1144 10673 +10675 2 -83.86217539268648 -993.0273208969903 39.4778 0.1144 10674 +10676 2 -84.21597257956893 -991.9449164113408 39.5797 0.1144 10675 +10677 2 -84.71975672981301 -990.9198429017998 39.6617 0.1144 10676 +10678 2 -84.91830541735101 -989.8037535018515 39.7202 0.1144 10677 +10679 2 -85.19681564730107 -988.6952615840582 39.7538 0.1144 10678 +10680 2 -85.7231430757042 -987.6839274562298 39.762 0.1144 10679 +10681 2 -86.22077301475446 -986.6537799261347 39.7477 0.1144 10680 +10682 2 -86.74589913104774 -985.6377164379675 39.7191 0.1144 10681 +10683 2 -87.52918861514198 -984.811210343551 39.6819 0.1144 10682 +10684 2 -88.25581383286234 -983.9285109139756 39.6116 0.1144 10683 +10685 2 -88.87216116527924 -982.967227529212 39.5032 0.1144 10684 +10686 2 -89.47216318433104 -981.9931973514794 39.4271 0.1144 10685 +10687 2 -90.11006430774643 -981.0451625173381 39.3176 0.1144 10686 +10688 2 -90.82748791045597 -980.1552811464378 39.2031 0.1144 10687 +10689 2 -91.2913135125624 -979.1123368666075 39.0958 0.1144 10688 +10690 2 -91.68524273486517 -978.0412190869886 38.9486 0.1144 10689 +10691 2 -92.23575632039783 -977.0407606110167 38.7876 0.1144 10690 +10692 2 -92.64501164345126 -975.9750724387297 38.6322 0.1144 10691 +10693 2 -93.03797091736922 -974.903241076508 38.4238 0.1144 10692 +10694 2 -93.36107525073334 -973.8073700121208 38.3166 0.1144 10693 +10695 2 -93.45430775365705 -972.6682156764847 38.2029 0.1144 10694 +10696 2 -93.7901058216408 -971.5801471181951 37.9366 0.1144 10695 +10697 2 -94.07895642622046 -970.476602588856 37.7177 0.1144 10696 +10698 2 -94.29870090893246 -969.365559798358 37.4769 0.1144 10697 +10699 2 -94.17357692837308 -968.2560509703225 37.2868 0.1144 10698 +10700 2 -94.67117093880319 -967.2324546774491 37.1462 0.1144 10699 +10701 2 -94.91346800442349 -966.1150848810112 37.0653 0.1144 10700 +10702 2 -95.22275938232477 -965.0134231118842 37.0563 0.1144 10701 +10703 2 -95.54296715879576 -963.9157716098638 37.049 0.1144 10702 +10704 2 -95.9397070526052 -962.8704445286781 36.9477 0.1144 10703 +10705 2 -96.79924113038052 -962.1230836927074 36.7923 0.1144 10704 +10706 2 -97.6757841473574 -961.4049587248995 36.6864 0.1144 10705 +10707 2 -98.35461927792491 -960.4861932784947 36.6576 0.1144 10706 +10708 2 -98.81377029455172 -959.4617389486535 36.6643 0.1144 10707 +10709 2 -98.93564551196908 -958.3241093774047 36.6652 0.1144 10708 +10710 2 -99.15668511185342 -957.2218445520189 36.6131 0.1144 10709 +10711 2 -99.67316299671711 -956.2045735485755 36.472 0.1144 10710 +10712 2 -100.08268491957924 -955.1604125434161 36.2138 0.1144 10711 +10713 2 -100.39255473046708 -954.0751874836704 35.9131 0.1144 10712 +10714 2 -101.02166937125386 -953.1500405879032 35.6678 0.1144 10713 +10715 2 -101.56107524866837 -952.1938151179377 35.4886 0.1144 10714 +10716 2 -101.79067547808586 -951.0753316112862 35.3738 0.1144 10715 +10717 2 -102.16826179607 -950.0088408694271 35.3125 0.1144 10716 +10718 2 -102.53795800606011 -948.937617665646 35.2862 0.1144 10717 +10719 2 -102.71606040964696 -947.8089604706411 35.233 0.1144 10718 +10720 2 -102.88008256542585 -946.6770480303817 35.1865 0.1144 10719 +10721 2 -102.95206380577977 -945.5396210740294 35.1918 0.1144 10720 +10722 2 -103.10873284730147 -944.4152790836063 35.2106 0.1144 10721 +10723 2 -103.48653719340115 -943.3396492792273 35.222 0.1144 10722 +10724 2 -103.85757847732984 -942.2597450169797 35.24 0.1144 10723 +10725 2 -104.22081484611422 -941.1751606586229 35.2372 0.1144 10724 +10726 2 -104.76870467772858 -940.1810713203772 35.1842 0.1144 10725 +10727 2 -105.22557109002256 -939.1473481943335 35.0941 0.1144 10726 +10728 2 -105.47570589782413 -938.0347960526673 34.9709 0.1144 10727 +10729 2 -105.58845066493433 -936.9009446922636 34.7757 0.1144 10728 +10730 2 -105.66916532956762 -935.764777617 34.5064 0.1144 10729 +10731 2 -105.92762560905763 -934.6627424388292 34.237 0.1144 10730 +10732 2 -105.87886395797753 -933.5558016132275 33.9368 0.1144 10731 +10733 2 -105.55735144069055 -932.4665521692397 33.6176 0.1144 10732 +10734 2 -105.52784638055138 -931.3391681612698 33.3987 0.1144 10733 +10735 2 -105.43952630894444 -930.2026296775608 33.229 0.1144 10734 +10736 2 -105.6307163715957 -929.0834256926039 33.0722 0.1144 10735 +10737 2 -105.67311777610828 -927.943897947924 32.9428 0.1144 10736 +10738 2 -105.39741539502788 -926.8370283047109 32.8017 0.1144 10737 +10739 2 -105.19552964991487 -925.7126157354464 32.632 0.1144 10738 +10740 2 -105.05660984362183 -924.5797196204298 32.4626 0.1144 10739 +10741 2 -105.38736981967182 -923.4912540361124 32.303 0.1144 10740 +10742 2 -106.07850165883124 -922.5853291877393 32.1174 0.1144 10741 +10743 2 -106.14945748340449 -921.4539626375182 31.8844 0.1144 10742 +10744 2 -106.22188501401595 -920.3181011922663 31.5991 0.1144 10743 +10745 2 -106.00477478621653 -919.6139440514341 31.2794 0.1144 10744 +10746 2 -105.94572581885609 -918.4779080179152 31.0299 0.1144 10745 +10747 2 -105.96126184492496 -917.3406477478388 30.7266 0.1144 10746 +10748 2 -105.92636069702743 -916.2046647726692 30.4214 0.1144 10747 +10749 2 -106.03344139149755 -915.0888125311641 30.1378 0.1144 10748 +10750 2 -106.44781689775147 -914.0302625466018 29.8561 0.1144 10749 +10751 2 -106.98265189733849 -913.0268575569706 29.5943 0.1144 10750 +10752 2 -107.52153240011566 -912.0300475581611 29.3308 0.1144 10751 +10753 2 -107.35245021712322 -911.0357842351956 29.1348 0.1144 10752 +10754 2 -107.08162744546516 -909.9776924497859 29.0035 0.1144 10753 +10755 2 -107.15267156447135 -908.8396894694934 28.8302 0.1144 10754 +10756 2 -107.12958249724153 -907.7041589877473 28.5709 0.1144 10755 +10757 2 -107.12287777358011 -906.5681352658644 28.2738 0.1144 10756 +10758 2 -107.2145088367831 -905.4359784577074 27.9662 0.1144 10757 +10759 2 -107.57003650453231 -904.3681364387436 27.6536 0.1144 10758 +10760 2 -108.23822493792181 -903.4601990964757 27.3466 0.1144 10759 +10761 2 -108.64039374652668 -902.4236085411524 26.9967 0.1144 10760 +10762 2 -108.22392214053627 -901.39947477479 26.7558 0.1144 10761 +10763 2 -108.23437321948816 -900.2725877063804 26.5835 0.1144 10762 +10764 2 -108.67962367875592 -899.2249164752577 26.4174 0.1144 10763 +10765 2 -109.25739897622344 -898.2412150593616 26.2056 0.1144 10764 +10766 2 -109.68679185163316 -897.1864963439937 25.9491 0.1144 10765 +10767 2 -110.0352836542366 -896.1062302918018 25.5951 0.1144 10766 +10768 2 -109.95542971456385 -894.9734871486671 25.2629 0.1144 10767 +10769 2 -110.05110938254012 -893.8412365354475 24.9397 0.1144 10768 +10770 2 -110.19783739551713 -893.3338410386132 24.5761 0.1144 10769 +10771 2 -110.6004531869161 -892.2747533677774 24.198 0.1144 10770 +10772 2 -110.96276035402894 -891.2176518510541 23.7813 0.1144 10771 +10773 2 -111.07001763736477 -890.0885267494062 23.4203 0.1144 10772 +10774 2 -111.31101889327618 -888.9864416144692 23.0579 0.1144 10773 +10775 2 -111.64766268659176 -887.9122743060753 22.6783 0.1144 10774 +10776 2 -111.63128672476665 -886.7984773057766 22.2391 0.1144 10775 +10777 2 -111.22506789150955 -885.761864731327 21.7793 0.1144 10776 +10778 2 -110.46731293002324 -884.9455937111733 21.352 0.1144 10777 +10779 2 -110.10195653076661 -884.0281201793904 20.9401 0.1144 10778 +10780 2 -110.13486328598123 -882.8975462961516 20.5553 0.1144 10779 +10781 2 -110.03540878768908 -881.766136607856 20.2455 0.1144 10780 +10782 2 -110.00460861037755 -880.6299746347739 19.9601 0.1144 10781 +10783 2 -110.03760366002513 -879.4927643214639 19.6709 0.1144 10782 +10784 2 -109.80203641594815 -878.3904925883971 19.4106 0.1144 10783 +10785 2 -109.38031868719426 -877.3309718442611 19.208 0.1144 10784 +10786 2 -109.66658077393919 -876.2513078420398 19.1003 0.1144 10785 +10787 2 -109.60400685993287 -875.1145136850853 18.9575 0.1144 10786 +10788 2 -109.74954767793545 -873.981922898307 18.7967 0.1144 10787 +10789 2 -110.06659160516816 -872.885026418139 18.6258 0.1144 10788 +10790 2 -110.2457163229526 -871.7569976128868 18.4797 0.1144 10789 +10791 2 -110.472419995477 -870.6367336686023 18.3272 0.1144 10790 +10792 2 -110.6278877248889 -869.5076623178403 18.13 0.1144 10791 +10793 2 -110.56398276509003 -868.3686414329953 17.9499 0.1144 10792 +10794 2 -110.30275765784543 -867.2599889431027 17.8428 0.1144 10793 +10795 2 -110.44441243179446 -866.125126887601 17.8233 0.1144 10794 +10796 2 -110.68158621263117 -865.0073076993226 17.9008 0.1144 10795 +10797 2 -111.05534195395757 -863.9317717000062 18.0316 0.1144 10796 +10798 2 -111.5939168267229 -862.9266745671748 18.191 0.1144 10797 +10799 2 -112.00343634053851 -861.8651397312865 18.4057 0.1144 10798 +10800 2 -112.05165068170149 -860.8057172908473 18.6292 0.1144 10799 +10801 2 -111.62116249906367 -859.8763803365573 18.9128 0.1144 10800 +10802 2 -112.1179898685418 -858.8779018115316 19.1923 0.1144 10801 +10803 2 -112.86301364023507 -858.0132021933913 19.378 0.1144 10802 +10804 2 -113.3931569246133 -857.0458837359904 19.5987 0.1144 10803 +10805 2 -113.7755992350358 -855.9823778454572 19.8269 0.1144 10804 +10806 2 -114.24819970067128 -854.9448272443387 19.9873 0.1144 10805 +10807 2 -114.66226957691345 -853.8779901257546 20.0672 0.1144 10806 +10808 2 -115.401560804398 -853.1144704855592 20.1371 0.1144 10807 +10809 2 -116.45782699581648 -852.6827703780002 20.2358 0.1144 10808 +10810 2 -117.16090816055441 -851.9036840632759 20.3196 0.1144 10809 +10811 2 -117.11052794002441 -850.8213373473944 20.4187 0.1144 10810 +10812 2 -117.05054736194575 -849.69541032478 20.567 0.1144 10811 +10813 2 -117.01899216278184 -848.5560845024598 20.7211 0.1144 10812 +10814 2 -116.97019286657164 -847.4142584567377 20.8738 0.1144 10813 +10815 2 -117.34932446434408 -846.3716068027466 21.0495 0.1144 10814 +10816 2 -117.78830269253112 -845.3186716265948 21.2094 0.1144 10815 +10817 2 -118.2359619791846 -844.2670815243815 21.282 0.1144 10816 +10818 2 -118.42140036729944 -843.1484504617816 21.3666 0.1144 10817 +10819 2 -118.16373544278434 -842.0580674847159 21.7079 0.1144 10818 +10820 2 -118.25455911832225 -840.9228320201704 21.9732 0.1144 10819 +10821 2 -118.22628740382595 -840.8531023266429 20.8512 0.1144 10820 +10822 2 -118.15534518183003 -840.1689492873759 19.09 0.1144 10821 +10823 2 -118.430355798628 -839.1469287099665 18.175 0.1144 10822 +10824 2 -118.78574142105845 -838.13393356715 17.2117 0.1144 10823 +10825 2 -118.93200471796507 -837.0811362514344 16.2086 0.1144 10824 +10826 2 -118.69877852224198 -836.03406387971 15.3262 0.1144 10825 +10827 2 -118.16209250103782 -835.074311977058 14.6116 0.1144 10826 +10828 2 -118.13674726455224 -834.0100533670446 13.8962 0.1144 10827 +10829 2 -118.59669164069805 -832.9995854799489 13.2849 0.1144 10828 +10830 2 -118.87577720205164 -831.9142190674208 12.7622 0.1144 10829 +10831 2 -119.36575080587932 -830.900728683869 12.3139 0.1144 10830 +10832 2 -120.20385152158951 -830.15768305248 11.8552 0.1144 10831 +10833 2 -120.34843739597858 -829.066175450616 11.4011 0.1144 10832 +10834 2 -119.90233668991712 -828.0333372928916 11.0194 0.1144 10833 +10835 2 -119.22903547273836 -827.1319944497151 10.5339 0.1144 10834 +10836 2 -118.8117767103951 -826.0804966488388 10.1145 0.1144 10835 +10837 2 -118.46018190707682 -825.0184175207698 9.5357 0.1144 10836 +10838 2 -118.82360229957243 -840.0801369876275 22.2676 0.1144 10820 +10839 2 -119.4062335894784 -839.0994204230572 22.4443 0.1144 10838 +10840 2 -119.92689763777796 -838.0820227875143 22.5348 0.1144 10839 +10841 2 -120.2998459914393 -837.0034081318095 22.5911 0.1144 10840 +10842 2 -120.38282882321272 -835.8700438083763 22.6521 0.1144 10841 +10843 2 -120.5693121658839 -834.7451295881328 22.7345 0.1144 10842 +10844 2 -120.6842836608846 -833.6099471819366 22.8637 0.1144 10843 +10845 2 -120.95944794210095 -832.5047981112938 23.062 0.1144 10844 +10846 2 -121.27172968195785 -831.4089653845732 23.2905 0.1144 10845 +10847 2 -121.53286608117898 -830.3004758758264 23.5453 0.1144 10846 +10848 2 -122.07165828952324 -829.3103023070883 23.9371 0.1144 10847 +10849 2 -122.6038171693792 -828.3133516480332 24.3731 0.1144 10848 +10850 2 -122.84120518421176 -827.2171448197321 24.896 0.1144 10849 +10851 2 -123.26604769719495 -826.16772838706 25.2968 0.1144 10850 +10852 2 -123.74974355931238 -825.1382890236343 25.599 0.1144 10851 +10853 2 -124.57714101517104 -825.1728851222397 26.647 0.1144 10852 +10854 2 -125.61500135417268 -825.4966024321373 27.3836 0.1144 10853 +10855 2 -126.63318345293328 -825.9504895037348 28.0006 0.1144 10854 +10856 2 -127.63968260116147 -825.8159259328255 28.8232 0.1144 10855 +10857 2 -128.63475060097204 -825.3398008171752 29.5624 0.1144 10856 +10858 2 -129.70749865812985 -825.0712961694236 30.2061 0.1144 10857 +10859 2 -130.72783949296462 -824.6806645260962 30.9851 0.1144 10858 +10860 2 -131.77005077006893 -824.3329386371024 31.7568 0.1144 10859 +10861 2 -132.84198764544195 -824.0921067554597 32.5318 0.1144 10860 +10862 2 -133.93298259275286 -824.0429340502056 33.3508 0.1144 10861 +10863 2 -135.02579011219728 -824.0150649733341 34.1799 0.1144 10862 +10864 2 -135.08885565079797 -824.0980822476872 35.98 0.1144 10863 +10865 2 -135.32157097978208 -824.1672937760319 38.7164 0.1144 10864 +10866 2 -135.62244699884704 -824.5321790609526 41.116 0.1144 10865 +10867 2 -135.65092883946778 -824.7806914042171 43.7226 0.1144 10866 +10868 2 -136.28790676871415 -824.8498975286066 45.864 0.1144 10867 +10869 2 -137.20944462026324 -824.7181620430217 47.4684 0.1144 10868 +10870 2 -138.20036440354164 -824.5697965379087 48.8149 0.1144 10869 +10871 2 -138.3844018772442 -823.9994114852705 50.5742 0.1144 10870 +10872 2 -138.26274427435183 -822.9041235652884 51.2296 0.1144 10871 +10873 2 -138.12729704889196 -821.7720707665571 51.3433 0.1144 10872 +10874 2 -137.92130723160986 -820.654525991089 51.091 0.1144 10873 +10875 2 -137.52413365581012 -819.6140828399816 50.542 0.1144 10874 +10876 2 -137.10485929798912 -818.5922172407594 49.8204 0.1144 10875 +10877 2 -136.93726492679056 -817.5103633565668 49.0963 0.1144 10876 +10878 2 -136.75078909020493 -816.4395580136731 48.2437 0.1144 10877 +10879 2 -136.22473194391318 -815.5106372157386 47.304 0.1144 10878 +10880 2 -135.39362483776742 -814.774171664532 46.6578 0.1144 10879 +10881 2 -134.5410429303068 -814.0378875202841 46.1751 0.1144 10880 +10882 2 -133.69024766364532 -813.2853292273749 45.8315 0.1144 10881 +10883 2 -133.26870583122061 -812.236598249709 45.995 0.1144 10882 +10884 2 -135.69540810786046 -823.5417281906053 34.9751 0.1144 10863 +10885 2 -136.622808249279 -822.8871434690476 35.31 0.1144 10884 +10886 2 -137.59523647273286 -822.2990893556954 35.5519 0.1144 10885 +10887 2 -138.66569102925652 -821.9405524922939 35.7566 0.1144 10886 +10888 2 -139.79663901407548 -821.8985655224844 35.95 0.1144 10887 +10889 2 -140.93490928671318 -821.9670741820051 36.1362 0.1144 10888 +10890 2 -141.99625631737715 -821.6821711625391 36.3457 0.1144 10889 +10891 2 -143.00363954058187 -821.1531648094528 36.6369 0.1144 10890 +10892 2 -144.1079268691264 -820.8879653637217 36.696 0.1144 10891 +10893 2 -145.21516071133016 -820.607087332045 36.5842 0.1144 10892 +10894 2 -146.2350087144761 -820.0992415380492 36.4272 0.1144 10893 +10895 2 -147.0992166851944 -819.3574533787025 36.2404 0.1144 10894 +10896 2 -147.83444327916112 -818.4867316920976 36.0231 0.1144 10895 +10897 2 -148.20325473361623 -817.4148472715267 35.7854 0.1144 10896 +10898 2 -148.37150139049754 -816.2936307926751 35.4413 0.1144 10897 +10899 2 -149.18952753247538 -815.6617303883068 34.8085 0.1144 10898 +10900 2 -150.31127039225254 -815.7200800801567 34.333 0.1144 10899 +10901 2 -151.42142911975213 -815.9151007194657 33.8814 0.1144 10900 +10902 2 -152.54513692570424 -815.9853398598532 33.4373 0.1144 10901 +10903 2 -153.61626641341206 -815.741429321822 33.026 0.1144 10902 +10904 2 -154.58311885865868 -815.1647378972971 32.6388 0.1144 10903 +10905 2 -155.6687020032184 -814.873251506109 32.2899 0.1144 10904 +10906 2 -156.80101047519523 -814.7635504382497 31.976 0.1144 10905 +10907 2 -157.9332306527392 -814.6604858004617 31.6828 0.1144 10906 +10908 2 -159.04591633418585 -814.458199927738 31.4163 0.1144 10907 +10909 2 -160.00599409816192 -813.9055156624302 31.1724 0.1144 10908 +10910 2 -160.8307874101822 -813.120719426171 30.9285 0.1144 10909 +10911 2 -161.7199389689289 -812.4103445986481 30.6634 0.1144 10910 +10912 2 -162.65170427169554 -811.7597342155767 30.3444 0.1144 10911 +10913 2 -163.59949763871595 -811.1418651085385 29.9404 0.1144 10912 +10914 2 -164.54991716870109 -810.535000694503 29.4694 0.1144 10913 +10915 2 -165.49824752945835 -809.9294344992228 28.9629 0.1144 10914 +10916 2 -166.44474818835283 -809.3201612578014 28.4704 0.1144 10915 +10917 2 -167.40683603717713 -808.7271597559949 28.0403 0.1144 10916 +10918 2 -168.39426139847444 -808.1672222899625 27.6951 0.1144 10917 +10919 2 -169.39559041871402 -807.6238129293272 27.4387 0.1144 10918 +10920 2 -170.4018606242418 -807.0834407858306 27.2642 0.1144 10919 +10921 2 -171.45767432223658 -806.6635527589394 27.2176 0.1144 10920 +10922 2 -172.3288496865321 -806.0173694918669 27.3305 0.1144 10921 +10923 2 -172.94247945996824 -805.0584066400563 27.5465 0.1144 10922 +10924 2 -173.50680289938066 -804.0704276647082 27.8149 0.1144 10923 +10925 2 -174.0725871182682 -803.0821727848023 28.1014 0.1144 10924 +10926 2 -174.6384237029684 -802.0938327120466 28.3632 0.1144 10925 +10927 2 -175.21490078168054 -801.1080421269223 28.5267 0.1144 10926 +10928 2 -175.7595360605772 -800.1039704098717 28.5216 0.1144 10927 +10929 2 -176.08058956238 -799.0202201577471 28.2904 0.1144 10928 +10930 2 -176.07116968878427 -797.9038907995462 27.8085 0.1144 10929 +10931 2 -175.57328534974465 -796.9291362484211 27.2042 0.1144 10930 +10932 2 -174.91401201456114 -796.0311338433485 26.5662 0.1144 10931 +10933 2 -173.91228816455595 -795.694649225081 25.8575 0.1144 10932 +10934 2 -172.81524622373433 -795.5655598371421 25.1341 0.1144 10933 +10935 2 -172.27572490775123 -794.6847057234548 24.3036 0.1144 10934 +10936 2 -171.99617722933039 -793.6037612357546 23.6847 0.1144 10935 +10937 2 -171.8231655624361 -792.4848892086137 23.2925 0.1144 10936 +10938 2 -171.64952860737196 -791.3603506997861 22.9975 0.1144 10937 +10939 2 -123.62914482047003 -824.8385543506489 25.7425 0.1144 10852 +10940 2 -123.735106294097 -823.7247139105019 25.9387 0.1144 10939 +10941 2 -124.12699088800463 -822.6523393513773 26.0343 0.1144 10940 +10942 2 -124.48364319253042 -821.5675815057377 26.2135 0.1144 10941 +10943 2 -124.966137742538 -820.5334127819732 26.3967 0.1144 10942 +10944 2 -125.44835638798784 -819.4977832787334 26.4974 0.1144 10943 +10945 2 -125.75315287085829 -818.3946498035683 26.5305 0.1144 10944 +10946 2 -125.25377631037972 -817.3719083451124 26.5507 0.1144 10945 +10947 2 -125.45356534023085 -816.2473082723972 26.5664 0.1144 10946 +10948 2 -124.77152309855532 -815.8253750187062 26.4025 0.1144 10947 +10949 2 -123.876877746758 -815.2579702297703 25.4035 0.1144 10948 +10950 2 -123.20345089178994 -814.6211263548623 24.4014 0.1144 10949 +10951 2 -123.40484848182703 -813.9352278122722 22.8952 0.1144 10950 +10952 2 -122.92489789170054 -813.0426293969491 21.6385 0.1144 10951 +10953 2 -122.29283251756607 -812.2095944980282 20.504 0.1144 10952 +10954 2 -121.44463017838441 -811.5687331465591 19.4676 0.1144 10953 +10955 2 -120.5567273733572 -810.9531210131302 18.5453 0.1144 10954 +10956 2 -119.62524046747734 -810.3778606597472 17.7507 0.1144 10955 +10957 2 -118.50820914577326 -810.3599688646418 17.1541 0.1144 10956 +10958 2 -117.46436698758285 -810.7846331070549 16.7278 0.1144 10957 +10959 2 -116.91332733487633 -811.7685696807958 16.2666 0.1144 10958 +10960 2 -125.4083819959196 -815.4097255090855 26.6066 0.1144 10947 +10961 2 -125.29186550007651 -814.2732277720897 26.7066 0.1144 10960 +10962 2 -125.48879561816463 -813.1817324818618 26.8462 0.1144 10961 +10963 2 -126.09564830128366 -812.2294029585396 26.9989 0.1144 10962 +10964 2 -126.65391133456473 -811.2403985674109 27.1023 0.1144 10963 +10965 2 -126.67196809943641 -810.1383760026499 27.1741 0.1144 10964 +10966 2 -126.53331558548848 -809.0029444281479 27.2527 0.1144 10965 +10967 2 -126.66779934467576 -807.8730649971842 27.3039 0.1144 10966 +10968 2 -126.9473318888233 -806.7652014691437 27.3823 0.1144 10967 +10969 2 -127.11871266948896 -805.6364036138931 27.5061 0.1144 10968 +10970 2 -127.00018127070474 -804.5054754519383 27.6924 0.1144 10969 +10971 2 -127.29268035244677 -803.4135640053548 27.8854 0.1144 10970 +10972 2 -127.77387668369899 -802.3773061123622 28.0428 0.1144 10971 +10973 2 -128.21098066919046 -801.3232188883303 28.2397 0.1144 10972 +10974 2 -128.98504899949822 -800.4897536041015 28.3945 0.1144 10973 +10975 2 -129.45924780327132 -799.4518942713883 28.4962 0.1144 10974 +10976 2 -129.56821125795344 -798.3156012565616 28.5564 0.1144 10975 +10977 2 -129.10149078065814 -797.2767793680391 28.6726 0.1144 10976 +10978 2 -129.56855401853733 -797.1637199508207 29.5403 0.1144 10977 +10979 2 -130.50416832377476 -797.0659911329874 31.1234 0.1144 10978 +10980 2 -131.5568136738969 -797.1208388026388 32.0989 0.1144 10979 +10981 2 -132.6263026797027 -797.3163324507723 32.9535 0.1144 10980 +10982 2 -133.29799974634054 -797.9145512323817 34.389 0.1144 10981 +10983 2 -134.28470293050765 -797.567568053604 35.5205 0.1144 10982 +10984 2 -135.3315278327512 -797.413421746341 36.5823 0.1144 10983 +10985 2 -136.13956970143536 -797.9624557238444 37.9789 0.1144 10984 +10986 2 -137.076258674705 -798.2844367284939 39.3526 0.1144 10985 +10987 2 -137.65815326189738 -798.2379701878835 41.6861 0.1144 10986 +10988 2 -137.51198015391222 -798.1064512443737 44.345 0.1144 10987 +10989 2 -136.70390945938794 -797.7936869838657 46.1387 0.1144 10988 +10990 2 -135.90485978981172 -797.2649702491673 47.6568 0.1144 10989 +10991 2 -135.16439477426638 -796.5909107185963 49.0028 0.1144 10990 +10992 2 -134.7321497709795 -795.7102633276768 50.3782 0.1144 10991 +10993 2 -134.639468255133 -794.7293906006523 51.7796 0.1144 10992 +10994 2 -134.55714011808885 -793.6770583917701 52.8374 0.1144 10993 +10995 2 -134.004992846518 -792.7292835395521 53.6312 0.1144 10994 +10996 2 -133.20454094876055 -791.9713993469629 54.3802 0.1144 10995 +10997 2 -132.40836661045486 -791.2000632963187 55.0598 0.1144 10996 +10998 2 -131.82181943922444 -790.2406515672255 55.5853 0.1144 10997 +10999 2 -131.23252498355922 -789.2767340165386 56.0213 0.1144 10998 +11000 2 -130.6425083330787 -788.309790175276 56.4082 0.1144 10999 +11001 2 -130.05110827099293 -787.3407047989726 56.7563 0.1144 11000 +11002 2 -129.4988602866788 -786.8454881859427 57.2863 0.1144 11001 +11003 2 -128.55516737568644 -786.2681246351856 57.8024 0.1144 11002 +11004 2 -127.5033957775251 -786.4085486904651 58.0717 0.1144 11003 +11005 2 -126.39595971118794 -786.3227223601478 58.0734 0.1144 11004 +11006 2 -125.55622150334192 -785.567452711424 58.0588 0.1144 11005 +11007 2 -124.55678534156758 -785.0175675156443 58.1507 0.1144 11006 +11008 2 -123.54687055396445 -784.4868303850601 58.3453 0.1144 11007 +11009 2 -122.96846195451914 -783.7217563611333 59.176 0.1144 11008 +11010 2 -122.35982020443366 -782.767544592157 59.4882 0.1144 11009 +11011 2 -121.95980002850699 -781.7078619798378 59.6982 0.1144 11010 +11012 2 -121.43050856080984 -780.7446734249728 59.9432 0.1144 11011 +11013 2 -120.52404292458006 -780.0719900965526 60.1807 0.1144 11012 +11014 2 -119.52871083497485 -779.5152371069763 60.3974 0.1144 11013 +11015 2 -118.45896684846002 -779.2699346746291 60.7054 0.1144 11014 +11016 2 -117.36761911418048 -779.0288427152383 61.1461 0.1144 11015 +11017 2 -116.6284009578662 -778.2064760528697 61.5415 0.1144 11016 +11018 2 -116.13819628694445 -777.1840901811919 61.8498 0.1144 11017 +11019 2 -115.70529176569255 -776.1297834253187 62.0763 0.1144 11018 +11020 2 -115.28161460139336 -775.0690582674897 62.2294 0.1144 11019 +11021 2 -114.86079255473747 -774.0059797496706 62.3188 0.1144 11020 +11022 2 -114.42245601710712 -772.9496252638194 62.3731 0.1144 11021 +11023 2 -113.9665197956524 -771.8999424441231 62.4235 0.1144 11022 +11024 2 -113.55095076746274 -770.8348106856961 62.4887 0.1144 11023 +11025 2 -113.26641805545749 -769.7293213525052 62.5778 0.1144 11024 +11026 2 -113.02858884740641 -768.6108692758395 62.6993 0.1144 11025 +11027 2 -112.72823688920987 -767.5091550519105 62.8841 0.1144 11026 +11028 2 -112.39224709808707 -766.4216884546022 63.1462 0.1144 11027 +11029 2 -112.06132822593514 -765.3347564419843 63.4684 0.1144 11028 +11030 2 -111.84421259418048 -764.2263367008899 63.8968 0.1144 11029 +11031 2 -111.75388002867892 -763.1127416229509 64.4826 0.1144 11030 +11032 2 -111.82188313642666 -762.0104312504438 65.21 0.1144 11031 +11033 2 -112.46328217416925 -761.1504691964071 66.08 0.1144 11032 +11034 2 -113.13323563197248 -760.2986683368295 66.9808 0.1144 11033 +11035 2 -114.07571371212423 -759.7526557376768 67.8247 0.1144 11034 +11036 2 -115.12455521613383 -759.4183957348841 68.5756 0.1144 11035 +11037 2 -116.19195955134603 -759.141206927083 69.3241 0.1144 11036 +11038 2 -117.02309998196613 -759.1674220866041 71.2362 0.1144 11037 +11039 2 -122.60765432497419 -784.269408134126 58.5203 0.1144 11008 +11040 2 -121.5146414798133 -783.9372616448877 58.6256 0.1144 11039 +11041 2 -120.4309418769915 -783.5746864928932 58.7773 0.1144 11040 +11042 2 -119.33538126070904 -783.2946169550088 59.1231 0.1144 11041 +11043 2 -118.24111914727065 -783.0934037668393 59.7694 0.1144 11042 +11044 2 -117.17269389491217 -782.9026723060815 60.6488 0.1144 11043 +11045 2 -116.12440929649307 -782.7162215063589 61.6725 0.1144 11044 +11046 2 -115.10356540792112 -782.5506287372978 62.8648 0.1144 11045 +11047 2 -114.0951479616237 -782.3953739338198 64.129 0.1144 11046 +11048 2 -113.03818740691965 -782.3190929021032 65.1854 0.1144 11047 +11049 2 -112.62076316539483 -782.3821409202118 65.4598 0.1144 11048 +11050 2 -111.65639963820225 -782.8434509975141 65.5096 0.1144 11049 +11051 2 -110.85681479750903 -783.6397512753827 65.135 0.1144 11050 +11052 2 -110.10208214252202 -784.4917923949868 64.8682 0.1144 11051 +11053 2 -109.3577257907848 -785.3422296658237 64.4336 0.1144 11052 +11054 2 -108.6235776709481 -786.1827431268343 63.8291 0.1144 11053 +11055 2 -107.99264563993472 -787.0518387327612 62.9126 0.1144 11054 +11056 2 -107.3751216186803 -787.9037042697879 61.8184 0.1144 11055 +11057 2 -106.63805952813266 -788.6832666949198 60.8572 0.1144 11056 +11058 2 -105.87202955430394 -789.4532399731548 59.978 0.1144 11057 +11059 2 -105.12301162125983 -790.2457603236685 59.1377 0.1144 11058 +11060 2 -104.47515515135812 -791.1097350538582 58.2294 0.1144 11059 +11061 2 -103.86617944800074 -791.9977261533185 57.2863 0.1144 11060 +11062 2 -103.25765003490082 -792.887282763879 56.3478 0.1144 11061 +11063 2 -102.64671179441495 -793.7807582455304 55.4364 0.1144 11062 +11064 2 -101.65631699501088 -794.286518664418 54.8262 0.1144 11063 +11065 2 -100.63211234803333 -794.7687972987255 54.432 0.1144 11064 +11066 2 -99.59917117519342 -795.2565048478286 54.2542 0.1144 11065 +11067 2 -98.56080108755808 -795.7354758710692 54.2536 0.1144 11066 +11068 2 -97.49491740886191 -796.1411922541365 54.4659 0.1144 11067 +11069 2 -96.43549898730475 -796.5453657664618 54.8232 0.1144 11068 +11070 2 -95.43449652092588 -797.0487142563804 55.3697 0.1144 11069 +11071 2 -94.52684550036346 -797.5073221879211 56.6524 0.1144 11070 +11072 2 -112.86833739300144 -782.0843979239465 65.7524 0.1144 11048 +11073 2 -112.22906405151167 -781.1973978028302 66.4684 0.1144 11072 +11074 2 -111.52805103802088 -780.3084838109746 66.8769 0.1144 11073 +11075 2 -110.80893968463552 -779.4247611670232 67.1138 0.1144 11074 +11076 2 -110.08756016410997 -778.5382357712414 67.2316 0.1144 11075 +11077 2 -109.36466749829651 -777.6520714728671 67.2843 0.1144 11076 +11078 2 -108.64168963963333 -776.7658548086802 67.3081 0.1144 11077 +11079 2 -107.91785985247209 -775.8791144863658 67.3145 0.1144 11078 +11080 2 -107.19488199380889 -774.9928978221787 67.3168 0.1144 11079 +11081 2 -106.47193696218271 -774.1068187166543 67.3198 0.1144 11080 +11082 2 -105.74802198217175 -773.2200260285272 67.3238 0.1144 11081 +11083 2 -105.02570534029842 -772.3329246088051 67.3294 0.1144 11082 +11084 2 -104.30272748163519 -771.4467079446181 67.3369 0.1144 11083 +11085 2 -103.57489052895045 -770.5641952249894 67.3467 0.1144 11084 +11086 2 -102.82761798741252 -769.6980247171426 67.3646 0.1144 11085 +11087 2 -102.07691430429122 -768.8351446906337 67.3879 0.1144 11086 +11088 2 -101.32626298698257 -767.972179471275 67.4131 0.1144 11087 +11089 2 -100.57467454832621 -767.1086382279761 67.4363 0.1144 11088 +11090 2 -99.82397086520487 -766.2457582014672 67.4526 0.1144 11089 +11091 2 -99.07340474074606 -765.3828453479211 67.4562 0.1144 11090 +11092 2 -98.32270105762471 -764.5199653214123 67.4391 0.1144 11091 +11093 2 -97.57204974031612 -763.6570001020535 67.3938 0.1144 11092 +11094 2 -96.82134605719476 -762.7941200755447 67.3126 0.1144 11093 +11095 2 -96.0717170540837 -761.9317832459387 67.1894 0.1144 11094 +11096 2 -95.06750398425083 -761.4179322165763 66.9463 0.1144 11095 +11097 2 -93.9486439669724 -761.2458518814542 66.5714 0.1144 11096 +11098 2 -92.832897842166 -761.0904755480583 66.0946 0.1144 11097 +11099 2 -91.72076185685536 -760.9359097039107 65.5525 0.1144 11098 +11100 2 -90.61209845237786 -760.7821871760483 64.9788 0.1144 11099 +11101 2 -89.50397824480343 -760.6273899681756 64.3972 0.1144 11100 +11102 2 -88.39200722925895 -760.487832880971 63.8425 0.1144 11101 +11103 2 -87.28221810470541 -760.691899191328 63.3906 0.1144 11102 +11104 2 -86.16645376687032 -760.8949924517169 63.0204 0.1144 11103 +11105 2 -85.04614526977487 -761.0900104030335 62.7236 0.1144 11104 +11106 2 -83.93412390670125 -761.2847227243382 62.2616 0.1144 11105 +11107 2 -130.55791181611 -786.3523493129977 57.2132 0.1144 11001 +11108 2 -130.45774573581375 -785.3401132109157 58.0115 0.1144 11107 +11109 2 -130.40373175880399 -784.2111629993087 58.4399 0.1144 11108 +11110 2 -130.33256679727387 -783.1078237956862 59.1556 0.1144 11109 +11111 2 -130.11133237266742 -782.0412422613583 59.9525 0.1144 11110 +11112 2 -129.5412448352655 -781.151107732369 60.7813 0.1144 11111 +11113 2 -128.56430098859568 -780.782902435756 61.7151 0.1144 11112 +11114 2 -127.55007501529283 -780.6831197965952 62.8253 0.1144 11113 +11115 2 -126.74308318566155 -780.0233369255623 63.7644 0.1144 11114 +11116 2 -126.11536315001078 -779.1177319361532 64.5056 0.1144 11115 +11117 2 -125.72833623024573 -778.1131056158843 65.2856 0.1144 11116 +11118 2 -125.66053532380364 -777.0415315367438 66.2161 0.1144 11117 +11119 2 -125.69279517446316 -775.9777018031701 67.2465 0.1144 11118 +11120 2 -125.75303652282636 -774.9162815895189 68.2786 0.1144 11119 +11121 2 -125.8295879484712 -773.8500967794453 69.2737 0.1144 11120 +11122 2 -125.91192697727261 -772.7767878097931 70.2248 0.1144 11121 +11123 2 -126.03414787887834 -771.6997044234154 71.118 0.1144 11122 +11124 2 -126.32747796526948 -770.6566646396977 71.9754 0.1144 11123 +11125 2 -126.73035183896054 -769.6406969571915 72.7964 0.1144 11124 +11126 2 -126.96728736036945 -768.5563022095582 73.4082 0.1144 11125 +11127 2 -126.91990981343116 -767.4274402923841 73.7218 0.1144 11126 +11128 2 -126.65329102747471 -766.3275626660204 74.0944 0.1144 11127 +11129 2 -126.38223860860157 -765.3068915602165 75.1626 0.1144 11128 +11130 2 -131.66717046384457 -785.996183631852 57.8609 0.1144 11107 +11131 2 -132.7497841702976 -785.650520193519 58.1823 0.1144 11130 +11132 2 -133.8727687871241 -785.4490479116265 58.3906 0.1144 11131 +11133 2 -134.99908532453813 -785.2551405689404 58.5211 0.1144 11132 +11134 2 -136.11882159181317 -785.0303083164745 58.6519 0.1144 11133 +11135 2 -137.2361075924526 -784.805261137476 58.896 0.1144 11134 +11136 2 -128.26583361385946 -796.8383638578459 28.6241 0.1144 10977 +11137 2 -127.417711365346 -796.0860400302447 28.5566 0.1144 11136 +11138 2 -127.0935418586557 -795.1038519724207 28.5317 0.1144 11137 +11139 2 -127.28678826349781 -793.9832122100458 28.5746 0.1144 11138 +11140 2 -127.25152601819259 -792.8457160895882 28.658 0.1144 11139 +11141 2 -127.15755900367475 -791.7095801425368 28.7608 0.1144 11140 +11142 2 -127.08714424590403 -790.5746571266948 28.8935 0.1144 11141 +11143 2 -126.7202319540478 -789.5111446302543 29.0797 0.1144 11142 +11144 2 -126.36173032672986 -788.4582014631221 29.3241 0.1144 11143 +11145 2 -126.4537084591944 -787.33846558661 29.5725 0.1144 11144 +11146 2 -126.35798152244445 -786.2577079988132 29.7965 0.1144 11145 +11147 2 -125.73013554723076 -785.3238542193552 29.9583 0.1144 11146 +11148 2 -125.2197340624372 -784.3280243019894 30.0521 0.1144 11147 +11149 2 -125.56624180622302 -783.3512423235028 30.0454 0.1144 11148 +11150 2 -126.5507551974081 -782.8485574594206 29.9737 0.1144 11149 +11151 2 -127.51739340865889 -782.2502536749182 29.8998 0.1144 11150 +11152 2 -128.2964029242548 -781.4198256078281 29.8416 0.1144 11151 +11153 2 -129.20416486192386 -780.7316891209889 29.8435 0.1144 11152 +11154 2 -130.24489382017885 -780.2662582502364 29.8701 0.1144 11153 +11155 2 -131.32360337622384 -779.8832155715475 29.8396 0.1144 11154 +11156 2 -132.45790962141268 -779.7855415108883 29.7746 0.1144 11155 +11157 2 -133.55931201216367 -779.4902800104383 29.7021 0.1144 11156 +11158 2 -134.6582734410283 -779.1747371958032 29.6114 0.1144 11157 +11159 2 -135.79619802947758 -779.1826996704528 29.4764 0.1144 11158 +11160 2 -136.93886980053145 -779.1478016241384 29.3633 0.1144 11159 +11161 2 -138.08066571235162 -779.1930057804816 29.2874 0.1144 11160 +11162 2 -139.22497415920984 -779.1686215960794 29.2407 0.1144 11161 +11163 2 -140.36805967757275 -779.21191868269 29.2194 0.1144 11162 +11164 2 -141.50610030299538 -779.3178480218164 29.2233 0.1144 11163 +11165 2 -142.57708834893174 -779.7142798765676 29.2387 0.1144 11164 +11166 2 -143.5023995219285 -780.3824659009106 29.2116 0.1144 11165 +11167 2 -144.56112540281998 -780.8076311736347 29.3023 0.1144 11166 +11168 2 -145.6768030560578 -781.0461883660766 29.4613 0.1144 11167 +11169 2 -146.5695317196215 -781.7587888033848 29.601 0.1144 11168 +11170 2 -147.46262148059282 -782.4729023859809 29.7265 0.1144 11169 +11171 2 -148.3547741202164 -783.1864399446368 29.8421 0.1144 11170 +11172 2 -149.24794907403754 -783.9006058930456 29.9482 0.1144 11171 +11173 2 -150.14098646919615 -784.6148046684914 30.0367 0.1144 11172 +11174 2 -150.6017314143155 -783.4544641384973 30.3103 0.1144 11173 +11175 2 -151.03789827845924 -782.3998008905253 30.5222 0.1144 11174 +11176 2 -151.40483859180193 -781.3200756261899 30.6978 0.1144 11175 +11177 2 -151.68365755334685 -780.2131820465341 30.8358 0.1144 11176 +11178 2 -151.8048684523912 -779.0831260267047 30.9448 0.1144 11177 +11179 2 -151.77572208061315 -777.9398813332938 31.0456 0.1144 11178 +11180 2 -151.81339412478684 -776.8015549007237 31.1517 0.1144 11179 +11181 2 -152.06624338998614 -775.6933710219887 31.2449 0.1144 11180 +11182 2 -152.52303863757635 -774.6486877437751 31.3138 0.1144 11181 +11183 2 -153.19095426799112 -773.732600826148 31.3634 0.1144 11182 +11184 2 -154.04309999542562 -772.9752990506219 31.3956 0.1144 11183 +11185 2 -154.9515786172804 -772.2795038195137 31.3986 0.1144 11184 +11186 2 -155.80064878990964 -771.5163206357685 31.3813 0.1144 11185 +11187 2 -156.62558276217555 -770.724802776588 31.3922 0.1144 11186 +11188 2 -157.50417661071367 -769.9945569965175 31.4779 0.1144 11187 +11189 2 -158.53742371533912 -769.8078843397537 31.7106 0.1144 11188 +11190 2 -159.2800346755701 -770.6161379272774 32.0365 0.1144 11189 +11191 2 -160.02507497858795 -771.4729544460718 32.361 0.1144 11190 +11192 2 -160.56848744080634 -772.4675946704273 32.6855 0.1144 11191 +11193 2 -160.6789051928514 -773.5922443981351 32.9546 0.1144 11192 +11194 2 -161.02616696932193 -774.6745493729932 33.1601 0.1144 11193 +11195 2 -161.81060520975666 -775.4911407438414 33.315 0.1144 11194 +11196 2 -162.84570554423942 -775.9635262829444 33.4636 0.1144 11195 +11197 2 -163.91179074255425 -776.367743514064 33.689 0.1144 11196 +11198 2 -165.0389909522038 -776.5153703997115 33.9618 0.1144 11197 +11199 2 -166.0621294366875 -776.010955747299 34.1029 0.1144 11198 +11200 2 -165.46159241935482 -774.7662784152917 34.1737 0.1144 11199 +11201 2 -165.16000322042822 -773.6663860682454 34.1499 0.1144 11200 +11202 2 -164.78057068123502 -772.5884870014487 34.1144 0.1144 11201 +11203 2 -164.25641480995756 -771.5734035947252 34.06 0.1144 11202 +11204 2 -164.03412352760654 -770.46461965464 34.0267 0.1144 11203 +11205 2 -163.7838093083021 -769.3492923970093 34.0052 0.1144 11204 +11206 2 -163.3130402262335 -768.3105643135494 33.9522 0.1144 11205 +11207 2 -163.36409565689382 -767.2596962994771 33.094 0.1144 11206 +11208 2 -166.21401147189735 -775.9955017063869 34.2026 0.1144 11199 +11209 2 -167.34020447879493 -775.7907194043809 34.2342 0.1144 11208 +11210 2 -168.46743721370794 -775.6457360903734 34.2552 0.1144 11209 +11211 2 -169.56875501515643 -775.9359177407455 34.3291 0.1144 11210 +11212 2 -170.56872886320423 -776.4740432216704 34.571 0.1144 11211 +11213 2 -171.40768402256884 -777.0447785461207 35.8103 0.1144 11212 +11214 2 -172.47430630360975 -776.8517405457504 36.5907 0.1144 11213 +11215 2 -173.59153954767356 -776.9435889445324 37.1487 0.1144 11214 +11216 2 -174.7021469744771 -777.1575489256709 37.5754 0.1144 11215 +11217 2 -175.81818641765915 -777.3735566367876 37.8742 0.1144 11216 +11218 2 -176.93934914562476 -777.5900137397448 38.0554 0.1144 11217 +11219 2 -178.0616639214706 -777.8045966000066 38.1783 0.1144 11218 +11220 2 -179.18384896363378 -778.0216820927167 38.3076 0.1144 11219 +11221 2 -180.30594881294715 -778.238715219614 38.4412 0.1144 11220 +11222 2 -181.4271115409128 -778.4551723225713 38.5798 0.1144 11221 +11223 2 -182.55041580391918 -778.6702460139235 38.7251 0.1144 11222 +11224 2 -183.67157853188476 -778.8867031168807 38.8802 0.1144 11223 +11225 2 -184.79268889403772 -779.1032454126878 39.0496 0.1144 11224 +11226 2 -185.91327559806317 -779.3206396369928 39.2386 0.1144 11225 +11227 2 -187.03305491442364 -779.5349552049095 39.4503 0.1144 11226 +11228 2 -188.15328052104147 -779.7508362839267 39.685 0.1144 11227 +11229 2 -189.2143799932353 -780.1545712961687 40.014 0.1144 11228 +11230 2 -189.89455268651324 -779.0982361186237 40.6137 0.1144 11229 +11231 2 -190.54287085989165 -778.1767938599513 41.0808 0.1144 11230 +11232 2 -191.21970752471063 -777.2700640329595 41.4865 0.1144 11231 +11233 2 -191.61157670539905 -776.256722513418 41.9028 0.1144 11232 +11234 2 -191.59591742775973 -775.1352667688503 42.4186 0.1144 11233 +11235 2 -191.73065065702633 -774.0445110872555 43.0041 0.1144 11234 +11236 2 -192.40977841343297 -773.2104396451847 43.5434 0.1144 11235 +11237 2 -193.27331896419523 -772.4829138331414 43.9874 0.1144 11236 +11238 2 -194.0996223199203 -771.7044452953587 44.3044 0.1144 11237 +11239 2 -194.9143980170519 -770.9053922224257 44.4816 0.1144 11238 +11240 2 -195.84273527981816 -770.251383524808 44.5329 0.1144 11239 +11241 2 -196.93139397918327 -769.9657785418389 44.4662 0.1144 11240 +11242 2 -198.0657149450547 -769.8331340682096 44.3215 0.1144 11241 +11243 2 -199.18424369705377 -769.6169500471731 44.1501 0.1144 11242 +11244 2 -200.27692738420814 -769.2854582526642 44.0082 0.1144 11243 +11245 2 -201.3779717791345 -768.9819948110421 43.9172 0.1144 11244 +11246 2 -202.4881873710812 -768.7029495828111 43.8682 0.1144 11245 +11247 2 -203.60574686723197 -768.4619893525589 43.8253 0.1144 11246 +11248 2 -204.73136074860642 -768.2648329677847 43.7402 0.1144 11247 +11249 2 -205.82688242367493 -767.948584395527 43.5991 0.1144 11248 +11250 2 -206.85358419247123 -767.4557504600573 43.4157 0.1144 11249 +11251 2 -207.85901108171373 -766.918850897394 43.2034 0.1144 11250 +11252 2 -208.8650468219334 -766.3811517720453 42.9758 0.1144 11251 +11253 2 -209.88921623282738 -765.8813617483463 42.7543 0.1144 11252 +11254 2 -210.94134311599316 -765.4390180451924 42.5541 0.1144 11253 +11255 2 -211.99591716421145 -765.003578064455 42.3601 0.1144 11254 +11256 2 -213.04551168947486 -764.5542782730719 42.1602 0.1144 11255 +11257 2 -214.09242458437768 -764.1007477774199 41.956 0.1144 11256 +11258 2 -215.16000040627395 -763.698771267531 41.7662 0.1144 11257 +11259 2 -216.25682030009784 -763.3846118645013 41.6122 0.1144 11258 +11260 2 -217.3684576413164 -763.1185307648183 41.491 0.1144 11259 +11261 2 -218.48828220302437 -762.8870620822807 41.3907 0.1144 11260 +11262 2 -219.61060319401452 -762.6691007251943 41.302 0.1144 11261 +11263 2 -220.73362684104424 -762.454388410196 41.216 0.1144 11262 +11264 2 -221.85661766103698 -762.2395385365351 41.1242 0.1144 11263 +11265 2 -222.9793325764718 -762.0232278833989 41.022 0.1144 11264 +11266 2 -224.10138627511674 -761.8078019857979 40.9094 0.1144 11265 +11267 2 -225.2127563239901 -761.5442563456004 40.7756 0.1144 11266 +11268 2 -226.3010693391668 -761.1981051777602 40.6039 0.1144 11267 +11269 2 -227.39655818719825 -760.8817190468399 40.4118 0.1144 11268 +11270 2 -228.4241939757592 -760.3961499311945 40.2206 0.1144 11269 +11271 2 -229.3790731646916 -759.7732458338056 40.0221 0.1144 11270 +11272 2 -230.43265703321276 -759.3613776485911 39.7692 0.1144 11271 +11273 2 -231.51127519324177 -758.9916601958578 39.5139 0.1144 11272 +11274 2 -232.63446141867624 -758.990563384904 39.2059 0.1144 11273 +11275 2 -233.47363832326488 -759.7117997420055 38.7598 0.1144 11274 +11276 2 -234.21677224908672 -760.5432640276442 38.1872 0.1144 11275 +11277 2 -235.17522003729766 -760.9457613907084 37.0205 0.1144 11276 +11278 2 -188.53652792189956 -780.6040658894465 38.388 0.1144 11229 +11279 2 -187.7775577439524 -781.3058373401244 37.2999 0.1144 11278 +11280 2 -187.3642959479119 -782.3516904884839 36.8141 0.1144 11279 +11281 2 -187.08614440632306 -783.4443217208363 36.346 0.1144 11280 +11282 2 -186.78309002341894 -784.533736045601 35.9251 0.1144 11281 +11283 2 -186.44270325534194 -785.6162842930792 35.5928 0.1144 11282 +11284 2 -185.9408816422262 -786.635873420429 35.3542 0.1144 11283 +11285 2 -185.2615478555885 -787.5531585485829 35.1915 0.1144 11284 +11286 2 -184.50636580876096 -788.4103229529707 35.065 0.1144 11285 +11287 2 -183.72361641998663 -789.2424431632609 34.9465 0.1144 11286 +11288 2 -182.87629935089802 -789.7972966884647 34.7206 0.1144 11287 +11289 2 -182.58793126182698 -788.8639950141892 34.2966 0.1144 11288 +11290 2 -182.18304588340885 -787.8469829983588 34.0631 0.1144 11289 +11291 2 -181.4984702718358 -786.9334279469036 33.9688 0.1144 11290 +11292 2 -180.7697598689639 -786.1483912606614 33.094 0.1144 11291 +11293 2 -151.1952403795043 -785.108353868268 29.9477 0.1144 11173 +11294 2 -152.22784359216828 -785.591294708533 30.1784 0.1144 11293 +11295 2 -153.2863052822977 -786.0123066448584 30.3173 0.1144 11294 +11296 2 -154.3987283828179 -786.2408814584953 30.4763 0.1144 11295 +11297 2 -155.5379357768033 -786.3099661419561 30.6575 0.1144 11296 +11298 2 -156.6762091510241 -786.3717860055926 30.8829 0.1144 11297 +11299 2 -157.8099698079484 -786.4737933720455 31.1651 0.1144 11298 +11300 2 -158.93792263040382 -786.6072102762023 31.5017 0.1144 11299 +11301 2 -160.0617799929028 -786.7514912131161 31.8825 0.1144 11300 +11302 2 -161.18412421011396 -786.8961332474375 32.2935 0.1144 11301 +11303 2 -162.3045473294465 -787.0503934615734 32.7194 0.1144 11302 +11304 2 -163.4142207364854 -787.2570886228876 33.1531 0.1144 11303 +11305 2 -164.50881140438304 -787.5364445781695 33.5919 0.1144 11304 +11306 2 -165.59626319201936 -787.8449833432649 34.0225 0.1144 11305 +11307 2 -166.69272500102943 -788.132180142311 34.3974 0.1144 11306 +11308 2 -167.78284439088026 -788.4558573980321 34.659 0.1144 11307 +11309 2 -168.85503685050958 -788.8503298172379 34.8166 0.1144 11308 +11310 2 -169.95652372959566 -788.9983499347935 34.918 0.1144 11309 +11311 2 -170.92307874859523 -788.5181974223074 34.9933 0.1144 11310 +11312 2 -171.42391259106031 -787.5395539212093 35.0521 0.1144 11311 +11313 2 -171.66620965668062 -786.4221841247713 35.1305 0.1144 11312 +11314 2 -172.04102915145432 -785.3514103128308 35.3217 0.1144 11313 +11315 2 -172.54423417617517 -784.3339627205216 35.6563 0.1144 11314 +11316 2 -173.12663100077302 -783.3559191740993 35.9038 0.1144 11315 +11317 2 -173.80372023725448 -782.4816243005921 35.3377 0.1144 11316 +11318 2 -111.33447919611524 -893.4966618822822 24.5742 0.1144 10769 +11319 2 -112.46034634168876 -893.3078778243797 24.4199 0.1144 11318 +11320 2 -113.56802647415006 -893.0285653038036 24.2526 0.1144 11319 +11321 2 -113.1515579697427 -891.997742741557 23.8267 0.1144 11320 +11322 2 -113.00545001895873 -890.8874258333195 23.4966 0.1144 11321 +11323 2 -113.27130415941915 -889.8060166295488 23.1655 0.1144 11322 +11324 2 -113.82016393941828 -888.8126408739058 22.8208 0.1144 11323 +11325 2 -114.4356648539669 -887.8615188658596 22.4349 0.1144 11324 +11326 2 -115.09396230456727 -886.9435108503537 22.0098 0.1144 11325 +11327 2 -115.85421457782911 -886.1109436572694 21.6051 0.1144 11326 +11328 2 -116.70199204233239 -885.356356339141 21.2697 0.1144 11327 +11329 2 -117.56085629110518 -884.6058840197447 21.0305 0.1144 11328 +11330 2 -118.44653837060179 -883.8879770800523 20.8641 0.1144 11329 +11331 2 -119.45399516755674 -883.3873047098648 20.7196 0.1144 11330 +11332 2 -120.57180723537004 -883.1787794330972 20.5493 0.1144 11331 +11333 2 -121.69616674628531 -883.0010415074471 20.3342 0.1144 11332 +11334 2 -122.81708650340451 -882.8225978241743 20.0285 0.1144 11333 +11335 2 -123.94264011697507 -882.8134483445069 19.5918 0.1144 11334 +11336 2 -125.06172978146856 -882.9481080000234 19.1163 0.1144 11335 +11337 2 -126.17189091801464 -883.1605024700613 18.7048 0.1144 11336 +11338 2 -127.283021310409 -883.3976731493149 18.3739 0.1144 11337 +11339 2 -128.3973155520416 -883.6340888067161 18.1194 0.1144 11338 +11340 2 -129.51513784190317 -883.8645737916686 17.947 0.1144 11339 +11341 2 -130.63200588068779 -884.1120793349223 17.8766 0.1144 11340 +11342 2 -131.68262362546972 -884.5416512082443 17.905 0.1144 11341 +11343 2 -132.66940369775446 -885.1186191180468 17.9786 0.1144 11342 +11344 2 -133.7323719020141 -885.5128211433243 18.0349 0.1144 11343 +11345 2 -134.85777385176493 -885.7050037947192 18.0413 0.1144 11344 +11346 2 -135.9954034230136 -885.8268790121365 17.9948 0.1144 11345 +11347 2 -137.13588370226054 -885.810823401006 17.9087 0.1144 11346 +11348 2 -138.26597775798305 -885.6501091352401 17.8006 0.1144 11347 +11349 2 -139.39794295481798 -885.4972357132386 17.6715 0.1144 11348 +11350 2 -140.53683169693383 -885.4184595551592 17.5116 0.1144 11349 +11351 2 -141.67412520249516 -885.3333033327906 17.3165 0.1144 11350 +11352 2 -142.79639313513596 -885.139489795167 17.0859 0.1144 11351 +11353 2 -143.90233426921392 -884.867207629107 16.8242 0.1144 11352 +11354 2 -145.00265887837153 -884.5780917276381 16.5388 0.1144 11353 +11355 2 -146.12926804162473 -884.468878389286 16.2529 0.1144 11354 +11356 2 -147.26746543304873 -884.484990439295 15.9792 0.1144 11355 +11357 2 -148.3841990267321 -884.3066733881217 15.6762 0.1144 11356 +11358 2 -149.50641390102348 -884.137007669961 15.3443 0.1144 11357 +11359 2 -150.63792490560994 -884.1704904491157 15.0151 0.1144 11358 +11360 2 -151.77164791740412 -884.2376125954481 14.6814 0.1144 11359 +11361 2 -152.90644940332828 -884.2745265161864 14.3369 0.1144 11360 +11362 2 -154.03856036259052 -884.2264463132085 13.975 0.1144 11361 +11363 2 -155.07046380801359 -883.7971434139358 13.5886 0.1144 11362 +11364 2 -155.85756673903649 -882.997279159218 13.2119 0.1144 11363 +11365 2 -156.68997976512247 -882.2264396402503 12.874 0.1144 11364 +11366 2 -157.38916978362516 -881.3335672148579 12.5685 0.1144 11365 +11367 2 -157.18624320951227 -880.2742480913079 12.257 0.1144 11366 +11368 2 -156.96168065843798 -879.1693501952764 11.7869 0.1144 11367 +11369 2 -157.33984300036224 -878.1019223320695 11.4035 0.1144 11368 +11370 2 -157.7332376379747 -877.0358754714213 11.0723 0.1144 11369 +11371 2 -158.09095369594772 -875.9558798131577 10.7853 0.1144 11370 +11372 2 -158.37886717917962 -874.8517592598787 10.5619 0.1144 11371 +11373 2 -158.66575834821393 -873.7470103168467 10.3967 0.1144 11372 +11374 2 -159.03674726632994 -872.667191247449 10.2426 0.1144 11373 +11375 2 -159.42391342646172 -871.5917990099613 10.073 0.1144 11374 +11376 2 -159.03364667466164 -870.542219897917 9.5357 0.1144 11375 +11377 2 -113.9898419030535 -893.0326584613878 24.6404 0.1144 11320 +11378 2 -115.05521962723566 -893.3988789889615 25.0866 0.1144 11377 +11379 2 -116.05706461639585 -893.9448453136507 25.2524 0.1144 11378 +11380 2 -116.90759259071208 -894.6999390660454 25.5386 0.1144 11379 +11381 2 -117.24942545238733 -895.773507515041 25.9656 0.1144 11380 +11382 2 -116.91049306551992 -896.1828321259948 26.2387 0.1144 11381 +11383 2 -116.04135381210307 -896.8518649937748 26.8328 0.1144 11382 +11384 2 -115.04633197493905 -897.3412825083437 27.5148 0.1144 11383 +11385 2 -114.101541974047 -897.8885737874762 28.3231 0.1144 11384 +11386 2 -113.74922439519383 -898.778561665838 29.2331 0.1144 11385 +11387 2 -113.2412736026046 -899.5875584781357 30.2896 0.1144 11386 +11388 2 -112.41465779817611 -900.2047885826099 31.4986 0.1144 11387 +11389 2 -111.59344729155913 -900.784962206469 32.8294 0.1144 11388 +11390 2 -110.57425510124779 -900.8876606446677 33.9982 0.1144 11389 +11391 2 -109.5217083565961 -900.6556286634168 34.9073 0.1144 11390 +11392 2 -108.44287225744088 -900.4249270354219 35.6479 0.1144 11391 +11393 2 -107.34995831952415 -900.2083439929016 36.2779 0.1144 11392 +11394 2 -106.25136558828464 -900.0447304822501 36.9435 0.1144 11393 +11395 2 -105.47331992458163 -900.4956721582937 38.1402 0.1144 11394 +11396 2 -105.11066127856225 -901.4047752748143 39.1891 0.1144 11395 +11397 2 -104.15383365765871 -901.8318644503692 40.1652 0.1144 11396 +11398 2 -103.13494160441468 -902.1481455655753 41.0659 0.1144 11397 +11399 2 -102.14749090962334 -902.6208535677883 41.86 0.1144 11398 +11400 2 -101.11880747337094 -903.0185648298616 42.6034 0.1144 11399 +11401 2 -100.31067541576525 -903.6538471115837 43.507 0.1144 11400 +11402 2 -100.07407255668693 -904.6592143365696 44.4811 0.1144 11401 +11403 2 -99.8882532483002 -905.699787824907 45.4922 0.1144 11402 +11404 2 -99.18727597347277 -906.4426055079057 46.426 0.1144 11403 +11405 2 -98.47401291661654 -907.1683636024001 47.6176 0.1144 11404 +11406 2 -99.09751566061931 -907.8994135447576 48.68 0.1144 11405 +11407 2 -99.82935157506282 -908.6728726156402 49.6966 0.1144 11406 +11408 2 -100.2441351457245 -909.5360962190648 51.1532 0.1144 11407 +11409 2 -100.57066231593987 -909.360833396107 53.3649 0.1144 11408 +11410 2 -100.19907092228468 -908.5738109465152 54.9371 0.1144 11409 +11411 2 -99.51966024752929 -908.5671449860891 56.6292 0.1144 11410 +11412 2 -99.08061875662966 -909.4211982978143 58.0698 0.1144 11411 +11413 2 -98.5933520989714 -910.3101682716236 59.3608 0.1144 11412 +11414 2 -98.29545113475285 -911.3060285356756 60.515 0.1144 11413 +11415 2 -98.10516975837231 -912.3452678766374 61.5852 0.1144 11414 +11416 2 -97.42302501613923 -913.159995125871 62.5716 0.1144 11415 +11417 2 -96.66339872358373 -913.9741661740288 63.2064 0.1144 11416 +11418 2 -95.91526105941838 -914.8221617904427 63.6345 0.1144 11417 +11419 2 -94.98144251604396 -915.4675191550479 63.973 0.1144 11418 +11420 2 -94.0140523845239 -916.0559702944279 64.3552 0.1144 11419 +11421 2 -93.11293608697935 -916.698539627885 65.0661 0.1144 11420 +11422 2 -117.87698781671565 -895.8906865186152 25.1161 0.1144 11381 +11423 2 -118.92847460203961 -896.0872048899929 24.1423 0.1144 11422 +11424 2 -119.72329925595545 -895.4101720034006 23.6133 0.1144 11423 +11425 2 -120.19113443263197 -894.3803739516137 23.2123 0.1144 11424 +11426 2 -120.6586085119007 -893.3490627545389 22.8147 0.1144 11425 +11427 2 -121.19134341569674 -892.351174974136 22.4353 0.1144 11426 +11428 2 -122.0954914197504 -891.6929794205458 21.84 0.1144 11427 +11429 2 -106.84648995010005 -920.0360111466791 31.4779 0.1144 10744 +11430 2 -107.93658271037313 -919.711026048559 31.3491 0.1144 11429 +11431 2 -109.06775043981762 -919.7013364735717 31.2964 0.1144 11430 +11432 2 -110.21004570024459 -919.7239583215526 31.2542 0.1144 11431 +11433 2 -111.32033727498796 -919.4906209069492 31.1951 0.1144 11432 +11434 2 -112.35509412154451 -919.0175281903445 31.0447 0.1144 11433 +11435 2 -113.45905009582034 -918.9736225317027 30.9532 0.1144 11434 +11436 2 -114.58422619247568 -919.1724744402061 30.8538 0.1144 11435 +11437 2 -115.32650948074078 -918.2402397219284 30.4637 0.1144 11436 +11438 2 -116.34017864942055 -917.8320083947767 29.9748 0.1144 11437 +11439 2 -117.38302341845937 -917.5947750335301 29.318 0.1144 11438 +11440 2 -118.27980599661973 -916.9964941734751 28.3864 0.1144 11439 +11441 2 -119.24983359645242 -916.5171849772742 27.5094 0.1144 11440 +11442 2 -120.29908204676454 -916.3241493859504 26.6495 0.1144 11441 +11443 2 -121.26606452746748 -916.0377030872946 25.5596 0.1144 11442 +11444 2 -122.11249002232947 -915.3292370460142 24.8412 0.1144 11443 +11445 2 -122.26308634608367 -914.2562138835094 24.1052 0.1144 11444 +11446 2 -122.36329855422076 -913.1603201964484 23.3382 0.1144 11445 +11447 2 -121.39960564953464 -912.5719543617352 22.4069 0.1144 11446 +11448 2 -120.64552829282428 -911.823794465659 21.743 0.1144 11447 +11449 2 -120.23605180526647 -910.7838883082884 21.1375 0.1144 11448 +11450 2 -119.86293534545018 -909.7327608148728 20.5285 0.1144 11449 +11451 2 -119.35455937640901 -908.8535611992556 19.6437 0.1144 11450 +11452 2 -118.66260292572335 -908.0589538809187 18.7267 0.1144 11451 +11453 2 -118.24278847258242 -907.0314741658226 18.1373 0.1144 11452 +11454 2 -117.91624027240815 -905.9592015265359 17.5729 0.1144 11453 +11455 2 -117.28494533334526 -905.07029743727 16.8791 0.1144 11454 +11456 2 -116.27376006952719 -904.6420744320062 16.2261 0.1144 11455 +11457 2 -115.15812516360117 -904.5499173016294 15.6958 0.1144 11456 +11458 2 -114.0439797859789 -904.4116060673675 15.1581 0.1144 11457 +11459 2 -112.98050843899273 -904.0707377729495 14.5722 0.1144 11458 +11460 2 -111.98859277028825 -903.5456647150056 14.0411 0.1144 11459 +11461 2 -111.26644040564454 -902.6976346788397 13.4914 0.1144 11460 +11462 2 -110.55441108005155 -901.8396284670349 12.8708 0.1144 11461 +11463 2 -110.40712915125019 -900.930015300107 11.2182 0.1144 11462 +11464 2 -122.83973740951572 -912.5534512837785 22.4912 0.1144 11446 +11465 2 -123.52270495263323 -911.6827696513501 21.8103 0.1144 11464 +11466 2 -124.22131894719584 -910.7908343473055 21.425 0.1144 11465 +11467 2 -124.7857573996082 -909.8353231524792 20.9618 0.1144 11466 +11468 2 -124.93043156843018 -908.7371791205436 20.4691 0.1144 11467 +11469 2 -124.67476751871013 -907.6521343547939 20.0568 0.1144 11468 +11470 2 -124.98887205274877 -907.0166155181759 19.7394 0.1144 11469 +11471 2 -125.935892575651 -906.4372417707536 19.7239 0.1144 11470 +11472 2 -125.8935191926249 -905.4335317546579 19.9154 0.1144 11471 +11473 2 -125.41624031258436 -904.398901540201 20.1616 0.1144 11472 +11474 2 -124.87782760463318 -903.3938357483661 20.392 0.1144 11473 +11475 2 -124.11901268381914 -902.5420511183393 20.57 0.1144 11474 +11476 2 -123.36438702802411 -901.6834510603286 20.679 0.1144 11475 +11477 2 -123.52907591122246 -900.561338899379 20.7539 0.1144 11476 +11478 2 -115.24153918679295 -919.1910291566332 32.2767 0.1144 11436 +11479 2 -116.34151331135408 -919.022599986666 32.9162 0.1144 11478 +11480 2 -117.41331914498247 -918.6420044730296 33.1834 0.1144 11479 +11481 2 -118.47051935616557 -918.2175691852949 33.4572 0.1144 11480 +11482 2 -119.59424427416181 -918.0542311656108 33.7798 0.1144 11481 +11483 2 -120.6880683011075 -918.3587048887402 34.1004 0.1144 11482 +11484 2 -121.7655784566519 -918.6986946307893 34.5072 0.1144 11483 +11485 2 -122.85705562284048 -918.6445361994143 35.3377 0.1144 11484 +11486 2 -72.91013447438874 -1022.6593555362778 44.2814 0.1144 10304 +11487 2 -71.93552827271603 -1022.0602906385737 44.3299 0.1144 11486 +11488 2 -70.96194438524086 -1021.4618541306226 44.401 0.1144 11487 +11489 2 -69.98319035779903 -1020.8737384585255 44.5701 0.1144 11488 +11490 2 -68.94299818049657 -1020.4491663394705 44.8658 0.1144 11489 +11491 2 -67.85746749073888 -1020.1310093945608 45.2194 0.1144 11490 +11492 2 -66.79182006516504 -1019.7499504957435 45.6257 0.1144 11491 +11493 2 -65.81536564682736 -1019.2129003873656 45.9883 0.1144 11492 +11494 2 -64.89597421971621 -1018.5524614017245 46.3369 0.1144 11493 +11495 2 -63.84534106171506 -1018.1819225679858 46.6819 0.1144 11494 +11496 2 -62.76337124722349 -1017.8579725092899 46.9848 0.1144 11495 +11497 2 -61.844161227071226 -1017.2190083249637 47.2528 0.1144 11496 +11498 2 -61.17601922329618 -1016.311563636406 47.525 0.1144 11497 +11499 2 -60.8516125581626 -1015.2379075855141 47.784 0.1144 11498 +11500 2 -60.99553480671534 -1014.1299109084562 47.9755 0.1144 11499 +11501 2 -61.41811225414128 -1013.0710029280692 48.0981 0.1144 11500 +11502 2 -61.90385584623701 -1012.036131548265 48.1729 0.1144 11501 +11503 2 -62.317658430133946 -1010.9718298891663 48.2101 0.1144 11502 +11504 2 -62.45940390756232 -1009.8477052343221 48.2188 0.1144 11503 +11505 2 -62.379062238382375 -1008.7092627824637 48.2132 0.1144 11504 +11506 2 -62.43045343295637 -1007.57267844986 48.204 0.1144 11505 +11507 2 -62.590341791112195 -1006.4408074488505 48.1953 0.1144 11506 +11508 2 -62.63901852828852 -1005.2998548533155 48.1698 0.1144 11507 +11509 2 -62.634595999913444 -1004.1557260969062 48.1242 0.1144 11508 +11510 2 -62.53104363261835 -1003.0178066106387 48.0931 0.1144 11509 +11511 2 -62.19607615569305 -1001.9309684030832 48.1043 0.1144 11510 +11512 2 -62.09292322347227 -1000.8053846556106 48.1816 0.1144 11511 +11513 2 -62.34007317994792 -999.6976885063829 48.347 0.1144 11512 +11514 2 -62.56334571088894 -998.5807150434362 48.5666 0.1144 11513 +11515 2 -62.92408495785463 -997.5066859862413 48.8863 0.1144 11514 +11516 2 -63.251774889728836 -996.4230240285497 49.2786 0.1144 11515 +11517 2 -63.00786745328071 -995.3452057449576 49.6863 0.1144 11516 +11518 2 -62.622324551189934 -994.2837402859589 50.1315 0.1144 11517 +11519 2 -62.445035324843815 -993.1783201168731 50.6573 0.1144 11518 +11520 2 -62.09901319814966 -992.1115670958611 51.1795 0.1144 11519 +11521 2 -61.72906058757164 -991.0596845805932 51.8006 0.1144 11520 +11522 2 -61.710507162085776 -989.9538222291213 52.4854 0.1144 11521 +11523 2 -62.06027695213237 -988.8999307242829 53.1437 0.1144 11522 +11524 2 -62.108380074415095 -987.7772890808246 53.6637 0.1144 11523 +11525 2 -62.07739779760814 -986.6437149330408 54.0246 0.1144 11524 +11526 2 -62.283608330998334 -985.521653421394 54.2595 0.1144 11525 +11527 2 -62.37122671804812 -984.3830391810778 54.39 0.1144 11526 +11528 2 -62.44467966444017 -983.2411173296947 54.453 0.1144 11527 +11529 2 -62.47362921089757 -982.0973120255629 54.486 0.1144 11528 +11530 2 -62.33019497079806 -980.9631669560207 54.5168 0.1144 11529 +11531 2 -61.90304522566575 -979.9015984819065 54.56 0.1144 11530 +11532 2 -61.28366917650587 -978.9407886205254 54.621 0.1144 11531 +11533 2 -60.597762519140275 -978.0250068411797 54.7075 0.1144 11532 +11534 2 -60.10100971257995 -976.9958962449974 54.8237 0.1144 11533 +11535 2 -59.25119842244945 -976.2331437483338 54.9716 0.1144 11534 +11536 2 -58.83601812753352 -975.6677059951605 53.9596 0.1144 11535 +11537 2 -58.65955749678997 -974.5937836582117 53.496 0.1144 11536 +11538 2 -58.747845712842434 -973.458280901321 53.237 0.1144 11537 +11539 2 -58.78922170157435 -972.3248135627724 52.8797 0.1144 11538 +11540 2 -58.85936703689944 -971.1970571520471 52.4454 0.1144 11539 +11541 2 -59.014073541292674 -970.0781995438152 52.0209 0.1144 11540 +11542 2 -58.946381160595706 -968.975703656478 51.613 0.1144 11541 +11543 2 -58.76885746894146 -967.8729565055402 51.0908 0.1144 11542 +11544 2 -59.017376116339705 -966.8023723043232 50.4795 0.1144 11543 +11545 2 -59.15470027248759 -965.7051099263396 49.8358 0.1144 11544 +11546 2 -59.16786511630059 -964.6066537474743 49.0571 0.1144 11545 +11547 2 -58.5972898493915 -963.7108199097612 48.2283 0.1144 11546 +11548 2 -57.70503350211578 -963.06295182076 47.5269 0.1144 11547 +11549 2 -57.036538320609196 -962.1820528524881 46.8902 0.1144 11548 +11550 2 -56.18207365293651 -961.4662094815618 46.3243 0.1144 11549 +11551 2 -55.131978181208865 -961.083910932968 45.8265 0.1144 11550 +11552 2 -54.10757070655066 -960.6139896886467 45.3522 0.1144 11551 +11553 2 -53.61245698484112 -959.6127667851058 44.9422 0.1144 11552 +11554 2 -52.878600372738276 -958.7574250739325 44.5141 0.1144 11553 +11555 2 -51.798766582657805 -958.4214065687867 44.1062 0.1144 11554 +11556 2 -50.877905858555124 -957.7828363089053 43.633 0.1144 11555 +11557 2 -50.32981881085712 -956.8066860345388 43.083 0.1144 11556 +11558 2 -49.628741812454024 -955.946138852619 42.4074 0.1144 11557 +11559 2 -48.965369915730975 -955.0656892761876 41.69 0.1144 11558 +11560 2 -48.44227710536427 -954.0794306834531 41.0903 0.1144 11559 +11561 2 -47.72884585336371 -953.285004772075 40.6949 0.1144 11560 +11562 2 -46.67211774568426 -952.8718665065511 40.3572 0.1144 11561 +11563 2 -45.64472541970011 -952.4068012546682 40.0456 0.1144 11562 +11564 2 -44.730727671300855 -951.7375874054981 39.7141 0.1144 11563 +11565 2 -43.78320418365075 -951.1511785972837 39.3364 0.1144 11564 +11566 2 -42.71965685386789 -950.7646024892381 38.9228 0.1144 11565 +11567 2 -41.658507424907896 -950.3783265005746 38.4768 0.1144 11566 +11568 2 -40.585384662622346 -950.1362293567155 37.8577 0.1144 11567 +11569 2 -39.56750339346564 -949.8718623355124 36.8553 0.1144 11568 +11570 2 -38.53148576049935 -949.475445201444 36.1785 0.1144 11569 +11571 2 -37.53077981504663 -949.0040115043714 35.4637 0.1144 11570 +11572 2 -36.52477089436147 -948.5520900714853 34.746 0.1144 11571 +11573 2 -35.488521205133594 -948.1757197862937 34.0466 0.1144 11572 +11574 2 -34.55160228287528 -947.5984117029324 33.3194 0.1144 11573 +11575 2 -33.71157896041822 -946.8873367225483 32.5508 0.1144 11574 +11576 2 -32.9385301273779 -946.1154253405005 31.7562 0.1144 11575 +11577 2 -32.33574886166258 -945.2064860214573 30.9548 0.1144 11576 +11578 2 -31.868219611628973 -944.2127107297727 30.1644 0.1144 11577 +11579 2 -31.35620506801513 -943.252159956972 29.3642 0.1144 11578 +11580 2 -30.586625021688263 -942.5118433137068 28.4945 0.1144 11579 +11581 2 -29.607208676472 -942.0495048308577 27.6159 0.1144 11580 +11582 2 -28.609307891896293 -941.5931767973736 26.8501 0.1144 11581 +11583 2 -27.6483178255084 -941.0374608426778 26.1706 0.1144 11582 +11584 2 -26.685326884325434 -940.4764066766656 25.5384 0.1144 11583 +11585 2 -25.71471553654007 -939.925458419975 24.9227 0.1144 11584 +11586 2 -24.908458213360262 -939.216357595819 24.2976 0.1144 11585 +11587 2 -24.714614541834806 -938.1880931157315 23.6392 0.1144 11586 +11588 2 -24.56349383261096 -937.1646086452857 22.9995 0.1144 11587 +11589 2 -23.81767758389188 -936.3529762819915 22.4425 0.1144 11588 +11590 2 -22.91963191694964 -935.6707958952269 21.9847 0.1144 11589 +11591 2 -21.98321613741774 -935.0401540810061 21.5627 0.1144 11590 +11592 2 -20.964957363323805 -934.564621822394 21.1036 0.1144 11591 +11593 2 -19.870209929424703 -934.3750831562297 20.6009 0.1144 11592 +11594 2 -18.788384480309134 -934.6232181953634 20.176 0.1144 11593 +11595 2 -17.689620564159156 -934.877140145117 19.8305 0.1144 11594 +11596 2 -16.558081834717342 -934.9550346492445 19.4987 0.1144 11595 +11597 2 -15.42420274945826 -934.9536671654165 19.1299 0.1144 11596 +11598 2 -14.308941252575949 -934.8106789366285 18.6643 0.1144 11597 +11599 2 -13.197929590290073 -934.7656161330675 18.0742 0.1144 11598 +11600 2 -12.145880388746036 -935.0791235293606 17.4121 0.1144 11599 +11601 2 -11.10015208467189 -935.4541501604925 16.7456 0.1144 11600 +11602 2 -10.002928346128527 -935.6203963561693 16.1314 0.1144 11601 +11603 2 -8.882494915758457 -935.6366840235615 15.5771 0.1144 11602 +11604 2 -7.828558964783298 -935.3150582919383 14.9828 0.1144 11603 +11605 2 -6.9674048086898495 -934.623274446042 14.3691 0.1144 11604 +11606 2 -6.335675198469119 -933.7045232285896 13.8006 0.1144 11605 +11607 2 -5.9843891267458105 -932.6440424386583 13.2731 0.1144 11606 +11608 2 -6.056763599007894 -931.5323288128694 12.7847 0.1144 11607 +11609 2 -6.101121337482681 -930.4006942777665 12.3901 0.1144 11608 +11610 2 -5.983494233009168 -929.2702045810895 12.1243 0.1144 11609 +11611 2 -5.8458116674461 -928.1354865891901 11.9688 0.1144 11610 +11612 2 -6.090106506278374 -927.0301437999524 11.8519 0.1144 11611 +11613 2 -6.098068980928048 -925.8922192115031 11.826 0.1144 11612 +11614 2 -5.945686390016874 -924.7592645275076 11.8796 0.1144 11613 +11615 2 -5.652866543989745 -923.6540808243286 11.9539 0.1144 11614 +11616 2 -4.611518512709267 -923.6813009960464 12.2464 0.1144 11615 +11617 2 -3.49870448265321 -923.8379642479924 12.7485 0.1144 11616 +11618 2 -2.4904663360417203 -923.979558173418 14.023 0.1144 11617 +11619 2 -59.38690222133317 -975.944577743807 55.0861 0.1144 11535 +11620 2 -60.30099215925239 -975.5476789715806 55.4772 0.1144 11619 +11621 2 -61.36010996399 -975.8562913104262 55.9488 0.1144 11620 +11622 2 -62.429279927163236 -976.2207345019501 56.3872 0.1144 11621 +11623 2 -62.57653060395742 -975.4438019449134 57.0419 0.1144 11622 +11624 2 -62.546846545905964 -974.3123169663575 57.4244 0.1144 11623 +11625 2 -62.51836690154735 -973.1788725522563 57.7858 0.1144 11624 +11626 2 -62.379391627858524 -972.0527504259737 58.121 0.1144 11625 +11627 2 -61.888272760036415 -971.0996441634462 58.4175 0.1144 11626 +11628 2 -60.94588727785248 -970.4787143341023 58.6813 0.1144 11627 +11629 2 -59.86801223078078 -970.1679628692625 58.956 0.1144 11628 +11630 2 -58.79835583418418 -970.3592532590368 59.3432 0.1144 11629 +11631 2 -57.942787678346264 -970.0951169860334 59.7761 0.1144 11630 +11632 2 -57.56934776625238 -969.0773615674503 60.1546 0.1144 11631 +11633 2 -57.4082779137085 -967.9564394012847 60.5399 0.1144 11632 +11634 2 -57.28061296303406 -966.8359782460591 60.9857 0.1144 11633 +11635 2 -56.96835993720023 -965.764510585391 61.4281 0.1144 11634 +11636 2 -56.40432701121148 -964.7879492568507 61.8187 0.1144 11635 +11637 2 -56.025329143176094 -963.7398973182404 62.2009 0.1144 11636 +11638 2 -56.07916991184919 -962.6275905387822 62.5918 0.1144 11637 +11639 2 -56.194050010833934 -961.5057333585416 63.0356 0.1144 11638 +11640 2 -55.846106786261174 -960.4485985173441 63.3956 0.1144 11639 +11641 2 -55.34953297761314 -959.4235888917478 63.6544 0.1144 11640 +11642 2 -54.849434222319104 -958.3978211427162 63.8352 0.1144 11641 +11643 2 -54.41890570141604 -957.33945795709 63.9517 0.1144 11642 +11644 2 -54.17496061983786 -956.2267544533776 64.0234 0.1144 11643 +11645 2 -54.06477182247133 -955.0887466726771 64.0718 0.1144 11644 +11646 2 -54.009912120129826 -953.9458952111743 64.1242 0.1144 11645 +11647 2 -53.855440359990666 -952.8142387459343 64.195 0.1144 11646 +11648 2 -53.652669859342694 -951.6891649598798 64.2891 0.1144 11647 +11649 2 -53.4966325881029 -950.5579547848972 64.4479 0.1144 11648 +11650 2 -53.43785091308766 -949.4193832918927 64.65 0.1144 11649 +11651 2 -53.22968673372782 -948.3030843693674 64.9177 0.1144 11650 +11652 2 -53.066296348230935 -947.1794446442209 65.2484 0.1144 11651 +11653 2 -52.96519114598834 -946.0484288803699 65.5956 0.1144 11652 +11654 2 -52.87830685179935 -944.9139467388519 65.884 0.1144 11653 +11655 2 -52.923690006054784 -943.7762517976178 66.1139 0.1144 11654 +11656 2 -53.03763918685797 -942.6404410016687 66.2984 0.1144 11655 +11657 2 -53.21315376514667 -941.5116017071684 66.4334 0.1144 11656 +11658 2 -53.53532097716297 -940.4151546188409 66.5098 0.1144 11657 +11659 2 -53.70673458486567 -939.2864943222528 66.5277 0.1144 11658 +11660 2 -53.77867438596988 -938.1449335682773 66.5008 0.1144 11659 +11661 2 -53.83524433272325 -937.0020246387802 66.4404 0.1144 11660 +11662 2 -53.891185889723886 -935.8601380234805 66.3558 0.1144 11661 +11663 2 -53.872286087513004 -934.7177921137509 66.2614 0.1144 11662 +11664 2 -53.58387594366678 -933.614027750797 66.176 0.1144 11663 +11665 2 -53.208183277651926 -932.5344365408002 66.1058 0.1144 11664 +11666 2 -52.78887437628393 -931.4709969255734 66.0167 0.1144 11665 +11667 2 -52.46656539789478 -930.3744498347243 65.91 0.1144 11666 +11668 2 -52.588085028534095 -929.2459921530324 65.8249 0.1144 11667 +11669 2 -52.66349741047145 -928.1052747153423 65.7695 0.1144 11668 +11670 2 -52.27113908039689 -927.0396199913246 65.7364 0.1144 11669 +11671 2 -52.09327452264728 -925.9110743169736 65.7437 0.1144 11670 +11672 2 -52.14266484242626 -924.7691517730539 65.7952 0.1144 11671 +11673 2 -52.25024488550315 -923.6307172231865 65.8454 0.1144 11672 +11674 2 -52.39440229190052 -922.4959849013675 65.8462 0.1144 11673 +11675 2 -52.56861865143381 -921.365056437639 65.812 0.1144 11674 +11676 2 -52.83207868519099 -920.2525956919889 65.7807 0.1144 11675 +11677 2 -53.105156898762516 -919.1420560442174 65.7597 0.1144 11676 +11678 2 -53.37872594342434 -918.0305269092853 65.7549 0.1144 11677 +11679 2 -53.70601644022429 -916.9345292127985 65.7742 0.1144 11678 +11680 2 -54.0702422961692 -915.8504356855319 65.8204 0.1144 11679 +11681 2 -54.43990016849264 -914.7683898882436 65.8882 0.1144 11680 +11682 2 -54.96933908032128 -913.7563859314125 66.0162 0.1144 11681 +11683 2 -55.347771816173776 -912.679733812836 66.1898 0.1144 11682 +11684 2 -55.31564059306976 -911.5413451118636 66.3642 0.1144 11683 +11685 2 -55.247549469835064 -910.4024508591181 66.5518 0.1144 11684 +11686 2 -55.14065115380632 -909.267874220001 66.7965 0.1144 11685 +11687 2 -55.03055616150232 -908.1339150440738 67.0832 0.1144 11686 +11688 2 -55.046486112015884 -906.998305477948 67.4016 0.1144 11687 +11689 2 -55.489688841305394 -905.9560662632039 67.7533 0.1144 11688 +11690 2 -55.94446918595446 -904.9169525600314 68.122 0.1144 11689 +11691 2 -56.39924953060358 -903.8778388568588 68.4866 0.1144 11690 +11692 2 -56.76264847779274 -903.0068700025466 69.0654 0.1144 11691 +11693 2 -57.199931461196456 -901.9568837491007 69.2933 0.1144 11692 +11694 2 -57.56700150822169 -900.874655852317 69.3661 0.1144 11693 +11695 2 -57.782521489831254 -899.7529171004112 69.414 0.1144 11694 +11696 2 -57.908943968092075 -898.6166740423508 69.4462 0.1144 11695 +11697 2 -58.02409756258817 -897.4789038108565 69.473 0.1144 11696 +11698 2 -58.132253629605145 -896.3395321396415 69.5106 0.1144 11697 +11699 2 -58.18668204131791 -895.1980066217495 69.5904 0.1144 11698 +11700 2 -58.181055099249875 -894.0558373008855 69.7393 0.1144 11699 +11701 2 -58.28471316965303 -892.9216827195165 69.977 0.1144 11700 +11702 2 -58.65365125620764 -891.8539844623815 70.3329 0.1144 11701 +11703 2 -59.11724790363559 -890.8243982355439 70.7762 0.1144 11702 +11704 2 -59.54232178034371 -889.7789975806081 71.246 0.1144 11703 +11705 2 -59.94114533275152 -888.7216872458223 71.6808 0.1144 11704 +11706 2 -60.01040901412472 -887.5865808224228 71.8124 0.1144 11705 +11707 2 -59.84746802046834 -886.4578178124927 71.6086 0.1144 11706 +11708 2 -59.6346299481655 -885.3359462133433 71.444 0.1144 11707 +11709 2 -59.40316126562806 -884.2161216516353 71.4017 0.1144 11708 +11710 2 -59.31778701514389 -883.0879672085938 71.4498 0.1144 11709 +11711 2 -59.523815449038636 -881.9684935222452 71.5436 0.1144 11710 +11712 2 -59.851467043246174 -880.8740089710462 71.6542 0.1144 11711 +11713 2 -60.1812078066817 -879.7782262010918 71.7514 0.1144 11712 +11714 2 -60.50689996534393 -878.6825372362 71.8127 0.1144 11713 +11715 2 -60.8286208871028 -877.5845246367719 71.8463 0.1144 11714 +11716 2 -61.13190422468543 -876.4817522590145 71.8704 0.1144 11715 +11717 2 -61.34836132764269 -875.3605895310488 71.9015 0.1144 11716 +11718 2 -61.45277752148132 -874.2229100030339 71.9471 0.1144 11717 +11719 2 -61.51954167198923 -873.0809850500677 72.0037 0.1144 11718 +11720 2 -61.58635818830979 -871.9389749042517 72.0642 0.1144 11719 +11721 2 -61.67856837703599 -870.7991921788627 72.1185 0.1144 11720 +11722 2 -61.853145833976924 -869.6697768604222 72.1543 0.1144 11721 +11723 2 -62.101588498578366 -868.5534848455777 72.1619 0.1144 11722 +11724 2 -62.363036730977484 -867.4399048790842 72.1378 0.1144 11723 +11725 2 -62.576597277041685 -866.3169617134856 72.0726 0.1144 11724 +11726 2 -62.72885971796555 -865.1845115869529 71.9597 0.1144 11725 +11727 2 -62.85969189840728 -864.0496878691179 71.8102 0.1144 11726 +11728 2 -62.95083523210306 -862.9118317522372 71.6467 0.1144 11727 +11729 2 -62.901501351202484 -861.775076625486 71.4986 0.1144 11728 +11730 2 -62.7101818338146 -860.6489421875672 71.388 0.1144 11729 +11731 2 -62.47612532597901 -859.528935526364 71.318 0.1144 11730 +11732 2 -62.24305830530389 -858.4094196962509 71.2816 0.1144 11731 +11733 2 -62.009991284628825 -857.2899038661379 71.2701 0.1144 11732 +11734 2 -61.825490296807686 -856.1612698973539 71.2746 0.1144 11733 +11735 2 -61.815312992313125 -855.0244028591858 71.2894 0.1144 11734 +11736 2 -61.97969624549964 -853.8940035642145 71.311 0.1144 11735 +11737 2 -62.19281050130638 -852.7694948875151 71.3367 0.1144 11736 +11738 2 -62.51168413040182 -851.6763054534885 71.3745 0.1144 11737 +11739 2 -63.11479694034247 -850.7256680733664 71.4454 0.1144 11738 +11740 2 -63.91727592888225 -849.9137744024019 71.552 0.1144 11739 +11741 2 -64.41690225607132 -848.9437791327332 71.6313 0.1144 11740 +11742 2 -64.50202662288552 -847.809031397695 71.6204 0.1144 11741 +11743 2 -64.97616005667311 -846.8476641281435 71.5064 0.1144 11742 +11744 2 -65.90498194736352 -846.2060435351337 71.3118 0.1144 11743 +11745 2 -66.95524009846332 -845.7732328189443 71.0598 0.1144 11744 +11746 2 -68.06562547826925 -845.5439440091142 70.7644 0.1144 11745 +11747 2 -68.51613336564816 -844.6297970059417 70.5757 0.1144 11746 +11748 2 -68.64950100557533 -843.4952405804518 70.572 0.1144 11747 +11749 2 -68.76567691426905 -842.3580987387104 70.7036 0.1144 11748 +11750 2 -68.88266021062779 -841.2240355533572 70.9377 0.1144 11749 +11751 2 -68.99365736714205 -840.0932183085092 71.2449 0.1144 11750 +11752 2 -68.90373585581443 -838.9636773522794 71.6038 0.1144 11751 +11753 2 -68.76258622004778 -837.8388010789396 71.9804 0.1144 11752 +11754 2 -68.61822036923016 -836.7147650203019 72.3643 0.1144 11753 +11755 2 -68.47336368732223 -835.5917184488247 72.7518 0.1144 11754 +11756 2 -68.32899783650461 -834.4676823901871 73.1402 0.1144 11755 +11757 2 -67.80162815922264 -833.4708130288947 73.519 0.1144 11756 +11758 2 -66.97409354744255 -832.7002727468159 73.8693 0.1144 11757 +11759 2 -66.11202319385023 -831.9595648722411 74.2011 0.1144 11758 +11760 2 -65.73525515528848 -830.9034930919543 74.5679 0.1144 11759 +11761 2 -65.5272699738409 -829.7912951400148 74.9636 0.1144 11760 +11762 2 -65.33023711958324 -828.6765562179604 75.3808 0.1144 11761 +11763 2 -65.13464004274354 -827.5638736380969 75.8111 0.1144 11762 +11764 2 -65.13221528758046 -826.4317718888876 76.2082 0.1144 11763 +11765 2 -65.22228083968281 -825.3000613709881 76.5607 0.1144 11764 +11766 2 -65.32054833295723 -824.1679928572639 76.8776 0.1144 11765 +11767 2 -65.41939185017173 -823.0349872221921 77.1758 0.1144 11766 +11768 2 -65.51729824603851 -821.9014055631801 77.4707 0.1144 11767 +11769 2 -65.61454342511533 -820.7687086597032 77.7734 0.1144 11768 +11770 2 -66.08313362364419 -819.7420744571544 78.1676 0.1144 11769 +11771 2 -66.67225448020977 -818.7815454017067 78.6478 0.1144 11770 +11772 2 -67.26285255344303 -817.8272064860729 79.1823 0.1144 11771 +11773 2 -67.79205940901011 -816.8352493781186 79.6984 0.1144 11772 +11774 2 -68.17766556867085 -815.7709884657331 80.1069 0.1144 11773 +11775 2 -68.56460587570726 -814.702265485354 80.4269 0.1144 11774 +11776 2 -68.93792064174215 -814.6389847184472 80.6669 0.1144 11775 +11777 2 -70.05359358356125 -814.4492166840139 81.0723 0.1144 11776 +11778 2 -71.16084794116597 -814.2208204546987 81.4654 0.1144 11777 +11779 2 -72.11961007256878 -813.6068764219174 81.7289 0.1144 11778 +11780 2 -73.07635489198401 -812.981128133448 81.755 0.1144 11779 +11781 2 -74.0735446039709 -812.4270751772178 81.5643 0.1144 11780 +11782 2 -75.02703727971496 -811.8087183406724 81.2596 0.1144 11781 +11783 2 -75.97421628512859 -811.1809637614747 80.9354 0.1144 11782 +11784 2 -76.92927447197323 -810.5621606346718 80.6378 0.1144 11783 +11785 2 -77.88227941821006 -809.9381044894028 80.3891 0.1144 11784 +11786 2 -78.81093944071736 -809.2747863435657 80.1923 0.1144 11785 +11787 2 -79.71549919148146 -808.5765822850717 80.0316 0.1144 11786 +11788 2 -80.60839062340659 -807.8645153143486 79.8885 0.1144 11787 +11789 2 -81.45866210814566 -807.1060614909422 79.7555 0.1144 11788 +11790 2 -82.15099836099799 -806.1981772070237 79.6342 0.1144 11789 +11791 2 -82.7728629026432 -805.2389939180509 79.5298 0.1144 11790 +11792 2 -83.39469461725133 -804.2796730704158 79.441 0.1144 11791 +11793 2 -84.07904936609378 -803.380381550531 79.3722 0.1144 11792 +11794 2 -85.0655899718561 -802.8197828677087 79.3498 0.1144 11793 +11795 2 -86.16343528146064 -802.4995630585476 79.3727 0.1144 11794 +11796 2 -87.27075741809736 -802.2120485967993 79.4167 0.1144 11795 +11797 2 -88.36459005154882 -801.885371355479 79.4441 0.1144 11796 +11798 2 -89.39789232179643 -801.3991769516639 79.3834 0.1144 11797 +11799 2 -90.33268081355564 -800.7545331696614 79.2042 0.1144 11798 +11800 2 -91.1322273165822 -799.9474102982855 78.9018 0.1144 11799 +11801 2 -91.86971897610607 -799.0861801593953 78.5406 0.1144 11800 +11802 2 -92.55421438519403 -798.1801670165892 78.2057 0.1144 11801 +11803 2 -93.20882191938227 -797.2463921207047 77.9878 0.1144 11802 +11804 2 -93.87363226953767 -796.3175974403118 78.0094 0.1144 11803 +11805 2 -94.54298677895343 -795.3968780689913 78.2723 0.1144 11804 +11806 2 -95.1653390501059 -794.4433940887424 78.512 0.1144 11805 +11807 2 -95.69589408119452 -793.4360671264374 78.3835 0.1144 11806 +11808 2 -96.26021752060697 -792.4480881510895 78.0878 0.1144 11807 +11809 2 -96.5384839862065 -791.9974828425069 76.7903 0.1144 11808 +11810 2 -97.12818017417558 -791.0600792923244 76.0956 0.1144 11809 +11811 2 -97.82799858243118 -790.1661845527344 75.7686 0.1144 11810 +11812 2 -98.69990604413167 -789.4533095018096 75.3122 0.1144 11811 +11813 2 -99.60025390720315 -788.9848129965263 74.7642 0.1144 11812 +11814 2 -99.78710224751165 -789.1265439660565 73.5672 0.1144 11813 +11815 2 -100.73731946437422 -788.7625333332749 72.7692 0.1144 11814 +11816 2 -101.6729944281784 -788.1599872254044 72.1291 0.1144 11815 +11817 2 -102.39092317421294 -787.3349757614735 71.5198 0.1144 11816 +11818 2 -103.13486847177627 -786.5004843689275 71.136 0.1144 11817 +11819 2 -103.96741433312803 -785.7204534216273 70.9727 0.1144 11818 +11820 2 -104.80299431003543 -784.942170084923 70.8126 0.1144 11819 +11821 2 -105.64849809676889 -784.1740949801193 70.6586 0.1144 11820 +11822 2 -106.49814429333823 -783.4099746750263 70.5709 0.1144 11821 +11823 2 -107.13261358263365 -782.489292948836 70.5552 0.1144 11822 +11824 2 -107.53354033241555 -781.4197766089377 70.5684 0.1144 11823 +11825 2 -107.87232325172528 -780.3268520582097 70.5914 0.1144 11824 +11826 2 -107.97878958458864 -779.2011143445452 70.6154 0.1144 11825 +11827 2 -107.60914570560554 -778.1508301674148 70.6292 0.1144 11826 +11828 2 -107.02301269013208 -777.1687837641466 70.6266 0.1144 11827 +11829 2 -106.44556383470827 -776.1813936389328 70.6163 0.1144 11828 +11830 2 -105.74241238775984 -775.2871742627983 70.576 0.1144 11829 +11831 2 -104.8953186566101 -774.5221012331817 70.52 0.1144 11830 +11832 2 -104.04385666252914 -773.7597426609627 70.4894 0.1144 11831 +11833 2 -103.17207122247694 -773.0197538796201 70.5029 0.1144 11832 +11834 2 -102.28410784787224 -772.2994008929804 70.565 0.1144 11833 +11835 2 -101.56415007661853 -771.4258396257466 70.7 0.1144 11834 +11836 2 -101.05964712977324 -770.4093375713343 70.9442 0.1144 11835 +11837 2 -100.63533847413811 -769.356323523587 71.2802 0.1144 11836 +11838 2 -100.21834700413999 -768.3022902632252 71.6652 0.1144 11837 +11839 2 -99.77800107419806 -767.2621903872596 72.1081 0.1144 11838 +11840 2 -99.31733790145103 -766.231082710402 72.5491 0.1144 11839 +11841 2 -98.852929344896 -765.1909821418999 72.7784 0.1144 11840 +11842 2 -98.38514511415339 -764.1473980660016 72.7577 0.1144 11841 +11843 2 -97.53479613774941 -763.396405284193 72.7115 0.1144 11842 +11844 2 -96.54262238675287 -762.8282122379196 72.7364 0.1144 11843 +11845 2 -95.54300722706625 -762.2742260715537 72.7779 0.1144 11844 +11846 2 -94.59452610266752 -761.6347594370377 72.8213 0.1144 11845 +11847 2 -93.9510374701283 -760.6914079066987 72.7871 0.1144 11846 +11848 2 -93.3212296503228 -759.7389758828189 72.676 0.1144 11847 +11849 2 -92.18873808454038 -759.582579644272 72.5656 0.1144 11848 +11850 2 -91.05663502726924 -759.4427381349931 72.3582 0.1144 11849 +11851 2 -96.62546999942711 -792.5289252509614 77.8571 0.1144 11808 +11852 2 -97.74257250351991 -792.7737577760672 77.7784 0.1144 11851 +11853 2 -98.8585034209568 -793.0206872953808 77.8484 0.1144 11852 +11854 2 -99.96963622239764 -793.2752318053633 78.0724 0.1144 11853 +11855 2 -101.05195000456771 -793.6182915915882 78.3751 0.1144 11854 +11856 2 -102.06258457793962 -794.1346811820191 78.7097 0.1144 11855 +11857 2 -102.97578655777332 -794.7725347577148 79.3092 0.1144 11856 +11858 2 -103.90376633927298 -795.3053777788081 80.204 0.1144 11857 +11859 2 -104.94738184515711 -795.305022985534 81.03 0.1144 11858 +11860 2 -105.97103029105887 -794.9002259015488 81.7578 0.1144 11859 +11861 2 -107.05671234286268 -794.7243029570787 82.294 0.1144 11860 +11862 2 -108.15626511989737 -794.9583481247607 82.5255 0.1144 11861 +11863 2 -109.23634838005725 -795.3334903792754 82.4631 0.1144 11862 +11864 2 -110.35036781811655 -795.4435528234885 82.1246 0.1144 11863 +11865 2 -111.4655228965265 -795.3420889328847 81.5646 0.1144 11864 +11866 2 -112.56553776780083 -795.2018561871536 80.8808 0.1144 11865 +11867 2 -113.66315473825233 -795.0613233220402 80.1634 0.1144 11866 +11868 2 -114.76214729532909 -794.9204621865563 79.473 0.1144 11867 +11869 2 -115.88266281696589 -794.910915680861 78.9141 0.1144 11868 +11870 2 -116.98982438150337 -795.1631365563074 78.6246 0.1144 11869 +11871 2 -118.12844513873742 -795.1109584843266 78.552 0.1144 11870 +11872 2 -119.26760737636465 -795.0162692749934 78.6341 0.1144 11871 +11873 2 -120.40486254425932 -794.9202904591175 78.8166 0.1144 11872 +11874 2 -121.54157451525091 -794.8253863232519 79.0496 0.1144 11873 +11875 2 -122.67717897919515 -794.7298014318208 79.2876 0.1144 11874 +11876 2 -123.79148082104518 -794.4855476186476 79.4906 0.1144 11875 +11877 2 -124.89007805091907 -794.175180454609 79.6522 0.1144 11876 +11878 2 -126.00189749163302 -793.9065115296278 79.7647 0.1144 11877 +11879 2 -127.14044536765348 -793.801936848135 79.8073 0.1144 11878 +11880 2 -128.28072062295763 -793.7186134292122 79.767 0.1144 11879 +11881 2 -129.42197133727626 -793.6466886277367 79.6267 0.1144 11880 +11882 2 -130.55938837335398 -793.572407364688 79.4192 0.1144 11881 +11883 2 -131.68482015523304 -793.3778388052121 79.2392 0.1144 11882 +11884 2 -132.80962664894236 -793.1776037640495 79.0922 0.1144 11883 +11885 2 -133.93412441105676 -792.9757703847492 78.9768 0.1144 11884 +11886 2 -135.06026195055847 -792.7777620714771 78.8836 0.1144 11885 +11887 2 -136.18663395536845 -792.5770807400572 78.797 0.1144 11886 +11888 2 -137.3192603689932 -792.4233225625206 78.6974 0.1144 11887 +11889 2 -138.4578417822724 -792.510803390908 78.5641 0.1144 11888 +11890 2 -139.5950335807801 -792.609520276023 78.3866 0.1144 11889 +11891 2 -140.73238524687235 -792.6117310761362 78.0752 0.1144 11890 +11892 2 -141.85611356822534 -792.7344520188853 77.6521 0.1144 11891 +11893 2 -142.89733046877188 -793.1770263584219 77.2355 0.1144 11892 +11894 2 -143.27530711788722 -793.4644102701559 77.532 0.1144 11893 +11895 2 -144.16350324129013 -794.1406537813056 76.9997 0.1144 11894 +11896 2 -145.06809704387092 -794.8295588925745 76.6816 0.1144 11895 +11897 2 -145.79272870806767 -795.7086928364326 76.4439 0.1144 11896 +11898 2 -146.43496056110115 -796.6540889951666 76.3056 0.1144 11897 +11899 2 -147.07595517340468 -797.6013070307835 76.2843 0.1144 11898 +11900 2 -143.1771406163022 -791.896079489368 76.1765 0.1144 11893 +11901 2 -143.46223352543774 -790.8358863120835 75.4018 0.1144 11900 +11902 2 -143.87209941597837 -789.8108350344532 74.6925 0.1144 11901 +11903 2 -144.36883538944048 -788.8256817353832 73.9556 0.1144 11902 +11904 2 -144.91750385989124 -787.8805492528533 73.1354 0.1144 11903 +11905 2 -145.5344087014459 -786.9840505822093 72.273 0.1144 11904 +11906 2 -146.1959452915447 -786.1350579850916 71.3266 0.1144 11905 +11907 2 -146.9328684383566 -785.403653640223 70.1683 0.1144 11906 +11908 2 -147.97584765249673 -785.5922428734034 69.2793 0.1144 11907 +11909 2 -149.0329937100529 -785.951995042255 68.6666 0.1144 11908 +11910 2 -150.10095925953323 -786.3183976693242 68.2158 0.1144 11909 +11911 2 -151.100933107581 -786.856523150249 67.9025 0.1144 11910 +11912 2 -151.9929067492923 -787.565959738319 67.6743 0.1144 11911 +11913 2 -153.12115940704135 -787.6202115611659 67.4159 0.1144 11912 +11914 2 -153.8774817046709 -788.0085708176647 67.216 0.1144 11913 +11915 2 -154.96332043348696 -788.3523887273251 67.1857 0.1144 11914 +11916 2 -156.02571571538965 -788.7408390780663 67.2305 0.1144 11915 +11917 2 -156.96051602705467 -789.3893862061232 67.31 0.1144 11916 +11918 2 -157.82846468728297 -790.1337073217768 67.4078 0.1144 11917 +11919 2 -158.63225022213794 -790.9405929109145 67.5206 0.1144 11918 +11920 2 -159.28607682026023 -791.8715179989789 67.6536 0.1144 11919 +11921 2 -159.81891685158735 -792.8812576837568 67.8034 0.1144 11920 +11922 2 -160.26340208978198 -793.9320011553173 67.9613 0.1144 11921 +11923 2 -160.6604343127995 -795.0032285559591 68.1388 0.1144 11922 +11924 2 -161.01001662222313 -796.088251089798 68.332 0.1144 11923 +11925 2 -161.28839202145144 -797.195355198319 68.5269 0.1144 11924 +11926 2 -161.71568862999567 -798.2368244577438 68.7336 0.1144 11925 +11927 2 -162.5301300720818 -798.9872264949297 68.9346 0.1144 11926 +11928 2 -163.55230702472974 -799.4892302075407 69.1127 0.1144 11927 +11929 2 -164.55780118358894 -800.0227669883723 69.2941 0.1144 11928 +11930 2 -165.36666925651423 -800.8019055451143 69.494 0.1144 11929 +11931 2 -165.85277605843308 -801.8177816188203 69.694 0.1144 11930 +11932 2 -166.0600031164452 -802.9335045174056 69.904 0.1144 11931 +11933 2 -166.14061207797036 -804.0694115097785 70.147 0.1144 11932 +11934 2 -166.38540357741698 -805.1719536367737 70.4231 0.1144 11933 +11935 2 -167.11643141165874 -805.9663966778809 70.756 0.1144 11934 +11936 2 -168.1159206317824 -806.4921340541978 71.1469 0.1144 11935 +11937 2 -169.14246653989812 -806.967360682798 71.5817 0.1144 11936 +11938 2 -170.21918402846006 -807.2693013554887 72.0871 0.1144 11937 +11939 2 -171.3318340830602 -807.3663144783038 72.6664 0.1144 11938 +11940 2 -172.44655038244085 -807.3921737492732 73.2855 0.1144 11939 +11941 2 -173.49263317801547 -807.7680148657079 73.8178 0.1144 11940 +11942 2 -174.22440682405653 -808.6112772038682 74.1289 0.1144 11941 +11943 2 -174.8830894146173 -809.5451871432587 74.2311 0.1144 11942 +11944 2 -175.66845857323352 -810.3757321298153 74.263 0.1144 11943 +11945 2 -176.6439111927746 -810.9646356508019 74.419 0.1144 11944 +11946 2 -177.59986626881187 -811.513265783586 75.1626 0.1144 11945 +11947 2 -153.31548960097945 -787.4831843167071 64.3378 0.1144 11913 +11948 2 -153.83381290269887 -786.7033350781394 62.991 0.1144 11947 +11949 2 -154.0583356962276 -785.7241134458282 61.6812 0.1144 11948 +11950 2 -154.49089752305724 -784.7801545505527 60.5102 0.1144 11949 +11951 2 -154.84075321617522 -783.9182333627443 58.9753 0.1144 11950 +11952 2 -154.31552188336155 -783.5362275289789 57.6752 0.1144 11951 +11953 2 -153.25252414874728 -783.8215244728897 56.9355 0.1144 11952 +11954 2 -152.22970670749464 -784.2751932197407 56.4385 0.1144 11953 +11955 2 -151.1918007323825 -784.7140705452276 56.0854 0.1144 11954 +11956 2 -150.08199858597118 -784.7785631480662 55.8177 0.1144 11955 +11957 2 -148.95623484627617 -784.6089299779965 55.5318 0.1144 11956 +11958 2 -147.85983390861725 -784.7192217904786 55.0721 0.1144 11957 +11959 2 -146.8882699252975 -785.255455318259 54.5317 0.1144 11958 +11960 2 -145.8429855024343 -785.6146736297627 54.0134 0.1144 11959 +11961 2 -144.74486198589963 -785.5224812633023 53.4573 0.1144 11960 +11962 2 -143.69198427774222 -785.1949326842102 52.7335 0.1144 11961 +11963 2 -142.7207969060168 -784.6449215488676 52.1455 0.1144 11962 +11964 2 -141.96434085582246 -783.8066770713287 51.751 0.1144 11963 +11965 2 -141.06733463280696 -783.1075284920757 51.5007 0.1144 11964 +11966 2 -140.1144297780812 -782.4775503036913 51.3884 0.1144 11965 +11967 2 -139.24719470045554 -781.7322592396529 51.4139 0.1144 11966 +11968 2 -138.54595342482276 -780.8326406741769 51.5284 0.1144 11967 +11969 2 -137.9580399717163 -779.8534908278018 51.6533 0.1144 11968 +11970 2 -137.20006836718755 -778.9982336169418 51.7591 0.1144 11969 +11971 2 -136.2457441722364 -778.3726651307384 51.8344 0.1144 11970 +11972 2 -135.27595562533546 -777.765762490853 51.8756 0.1144 11971 +11973 2 -134.41125600719522 -777.0207387191597 51.7658 0.1144 11972 +11974 2 -133.63081882381414 -776.2388863975566 51.0432 0.1144 11973 +11975 2 -68.81117800274353 -814.16362814338 80.9357 0.1144 11775 +11976 2 -69.25767121337077 -813.1248200702194 81.3501 0.1144 11975 +11977 2 -69.72951665715385 -812.0841056198626 81.501 0.1144 11976 +11978 2 -70.18746395262434 -811.0375480989536 81.6668 0.1144 11977 +11979 2 -70.56438354318894 -809.9612570777848 81.8894 0.1144 11978 +11980 2 -70.83086676593874 -808.8547629332035 82.1576 0.1144 11979 +11981 2 -71.01774403305467 -807.7314994169103 82.4149 0.1144 11980 +11982 2 -71.21125773024204 -806.60832419505 82.6613 0.1144 11981 +11983 2 -71.54705579822578 -805.5202556367605 82.934 0.1144 11982 +11984 2 -71.76591862698584 -804.4018628335882 83.1846 0.1144 11983 +11985 2 -71.87202696402463 -803.2679231787517 83.4358 0.1144 11984 +11986 2 -72.12051106787584 -802.1557649615303 83.6881 0.1144 11985 +11987 2 -72.58705112737994 -801.1171889446312 83.9404 0.1144 11986 +11988 2 -73.06254814990848 -800.0814187811459 84.1887 0.1144 11987 +11989 2 -73.46410018786011 -799.0175689229343 84.4827 0.1144 11988 +11990 2 -73.85206280909404 -797.9494743323079 84.8128 0.1144 11989 +11991 2 -74.34377851288815 -796.9222647983557 85.0676 0.1144 11990 +11992 2 -74.90880770992331 -795.9308460692115 85.2706 0.1144 11991 +11993 2 -75.6810900919684 -795.0895923070311 85.4375 0.1144 11992 +11994 2 -76.95263962111108 -794.6397391143815 85.2723 0.1144 11993 +11995 2 -78.05631328058541 -794.3405915698778 85.2748 0.1144 11994 +11996 2 -79.176851424896 -794.1081529389555 85.2813 0.1144 11995 +11997 2 -80.30615522268255 -793.92676343456 85.29 0.1144 11996 +11998 2 -81.43385517170185 -793.7349976269146 85.3014 0.1144 11997 +11999 2 -82.57555217627791 -793.6646383365397 85.3185 0.1144 11998 +12000 2 -83.71343332487885 -793.5502633757374 85.3448 0.1144 11999 +12001 2 -84.84464109081492 -793.3768522737687 85.3787 0.1144 12000 +12002 2 -85.9849194477022 -793.2868400589616 85.4185 0.1144 12001 +12003 2 -87.1245834429827 -793.1869423719951 85.4686 0.1144 12002 +12004 2 -87.87793268636449 -792.3327597173503 85.5935 0.1144 12003 +12005 2 -88.80239793322326 -791.6655719646523 85.82 0.1144 12004 +12006 2 -75.62173850718995 -794.5481384868541 85.5719 0.1144 11993 +12007 2 -75.54353837305067 -793.4083126233904 85.7254 0.1144 12006 +12008 2 -75.58602497041298 -792.2688372445232 85.9396 0.1144 12007 +12009 2 -75.70268860861387 -791.1373947115054 86.2445 0.1144 12008 +12010 2 -75.79333018465636 -790.0047470722582 86.5612 0.1144 12009 +12011 2 -75.85457402435279 -788.8674108193851 86.8174 0.1144 12010 +12012 2 -76.07241453891533 -787.7483896264602 87.0464 0.1144 12011 +12013 2 -76.55762354632066 -786.7185891656268 87.3085 0.1144 12012 +12014 2 -77.10603703606236 -785.7236478988832 87.5714 0.1144 12013 +12015 2 -77.40833329553101 -784.6377585207644 87.4742 0.1144 12014 +12016 2 -77.56871448537566 -783.6231016704232 86.7241 0.1144 12015 +12017 2 -78.62674570120785 -783.2475380455545 86.5578 0.1144 12016 +12018 2 -79.73801204242912 -783.0496618750116 86.9739 0.1144 12017 +12019 2 -80.81545381539425 -782.8632743328587 87.7834 0.1144 12018 +12020 2 -81.77363099689256 -782.372690049727 88.7001 0.1144 12019 +12021 2 -82.32101837831704 -781.4078718157278 89.3822 0.1144 12020 +12022 2 -82.75891572332753 -780.3677710344414 89.84 0.1144 12021 +12023 2 -83.09565091265907 -779.2802785000919 90.104 0.1144 12022 +12024 2 -83.39273628544781 -778.1765135335909 90.2258 0.1144 12023 +12025 2 -84.074605531571 -777.2594956977821 90.216 0.1144 12024 +12026 2 -85.04721034389065 -776.6581687242871 90.1919 0.1144 12025 +12027 2 -85.74075101043594 -775.7483250048232 90.2107 0.1144 12026 +12028 2 -86.61289362998114 -775.0087143091373 90.2773 0.1144 12027 +12029 2 -87.6733302698425 -774.3431728507446 90.7323 0.1144 12028 +12030 2 -88.36205328161604 -773.441166873462 91.0123 0.1144 12029 +12031 2 -89.133404052943 -772.6100221221861 91.336 0.1144 12030 +12032 2 -89.93018063117597 -771.805304976613 91.7118 0.1144 12031 +12033 2 -90.79683576694681 -771.070420539683 92.0242 0.1144 12032 +12034 2 -91.79316503291929 -770.5374367465272 92.3975 0.1144 12033 +12035 2 -92.69651967745389 -769.8652547501915 92.8598 0.1144 12034 +12036 2 -93.64217150943355 -769.2487690547586 93.312 0.1144 12035 +12037 2 -94.54730969318433 -768.5670017056457 93.6961 0.1144 12036 +12038 2 -95.24819185488721 -767.6778691534316 94.0254 0.1144 12037 +12039 2 -96.06906319423376 -766.8973528856707 94.3919 0.1144 12038 +12040 2 -97.150330441675 -766.6084957590305 94.8508 0.1144 12039 +12041 2 -98.2742073252647 -766.5365733666015 95.3285 0.1144 12040 +12042 2 -99.23768168727723 -765.9390246039516 95.706 0.1144 12041 +12043 2 -99.24984974548599 -765.6134948228878 95.8768 0.1144 12042 +12044 2 -99.33202759864082 -764.4944256737951 96.3852 0.1144 12043 +12045 2 -99.5107029245847 -763.3715201533265 96.6916 0.1144 12044 +12046 2 -99.71356750924119 -762.2528014888303 96.9912 0.1144 12045 +12047 2 -100.03052314204103 -761.1625414387338 97.2342 0.1144 12046 +12048 2 -100.5102063280054 -760.1266446431489 97.3582 0.1144 12047 +12049 2 -101.0525210739491 -759.1198553671175 97.3666 0.1144 12048 +12050 2 -101.39821253376846 -758.0592313127947 97.3305 0.1144 12049 +12051 2 -100.91060079032648 -757.148542382557 97.4137 0.1144 12050 +12052 2 -100.00543096380561 -756.4605743926359 97.6738 0.1144 12051 +12053 2 -99.07886542034966 -755.8118068274168 98.0851 0.1144 12052 +12054 2 -98.15809299067986 -755.166600137464 98.607 0.1144 12053 +12055 2 -97.23223251231003 -754.5384554450619 99.1816 0.1144 12054 +12056 2 -96.2737895245071 -753.9547251656252 99.7282 0.1144 12055 +12057 2 -95.28638588056259 -753.413527231478 100.207 0.1144 12056 +12058 2 -94.28885919756735 -752.8823054729698 100.6415 0.1144 12057 +12059 2 -93.50481819594485 -752.9629819117533 101.6137 0.1144 12058 +12060 2 -94.2294982070722 -753.3896428092733 102.9286 0.1144 12059 +12061 2 -95.2092298897906 -753.1042250279812 104.1169 0.1144 12060 +12062 2 -95.97999191709336 -752.4271914488522 105.2643 0.1144 12061 +12063 2 -95.40518493962728 -751.6845207353754 106.1144 0.1144 12062 +12064 2 -94.49083160444995 -751.0244787757621 106.561 0.1144 12063 +12065 2 -93.40803009277265 -750.6757196808135 106.6934 0.1144 12064 +12066 2 -92.34330497887464 -750.9397653621544 106.013 0.1144 12065 +12067 2 -100.25052054384446 -765.4578589873208 96.1425 0.1144 12042 +12068 2 -101.28101145004878 -764.9699365116853 96.3645 0.1144 12067 +12069 2 -102.31314523522356 -764.4791503061939 96.4636 0.1144 12068 +12070 2 -103.34729082175642 -763.9894833215455 96.5698 0.1144 12069 +12071 2 -104.37434817733076 -763.487477496519 96.6675 0.1144 12070 +12072 2 -105.3634828115575 -762.9136833214238 96.7067 0.1144 12071 +12073 2 -106.35460970836657 -762.3412311186839 96.6977 0.1144 12072 +12074 2 -107.34507538838572 -761.7696636714793 96.651 0.1144 12073 +12075 2 -108.33303843595655 -761.1979664905919 96.4774 0.1144 12074 +12076 2 -87.09667468494843 -773.9793273115243 89.2718 0.1144 12028 +12077 2 -87.66945332973195 -772.9993626672233 88.9834 0.1144 12076 +12078 2 -88.42726153952432 -772.1532029558383 88.7141 0.1144 12077 +12079 2 -89.20431161957495 -771.3215704750553 88.4103 0.1144 12078 +12080 2 -89.97726072903957 -770.4901169921845 88.0849 0.1144 12079 +12081 2 -90.73075614329657 -769.6398977494632 87.7498 0.1144 12080 +12082 2 -91.48232494904536 -768.7886116517114 87.4163 0.1144 12081 +12083 2 -92.23452214454693 -767.9363032397622 87.0864 0.1144 12082 +12084 2 -92.98609095029569 -767.0850171420104 86.7577 0.1144 12083 +12085 2 -93.74969227387423 -766.2424183058914 86.4408 0.1144 12084 +12086 2 -94.5481226576407 -765.4306184399894 86.1655 0.1144 12085 +12087 2 -95.37758986260398 -764.6513948803542 85.9102 0.1144 12086 +12088 2 -96.37116633351211 -764.10322023076 85.6072 0.1144 12087 +12089 2 -97.30791666986318 -763.4771546931794 85.1329 0.1144 12088 +12090 2 -97.61964821614679 -763.4485616336784 84.9402 0.1144 12089 +12091 2 -98.72709218447503 -763.3464662517388 84.3004 0.1144 12090 +12092 2 -99.85583978118578 -763.2425582976656 83.9174 0.1144 12091 +12093 2 -100.98390662233099 -763.1397578506397 83.5341 0.1144 12092 +12094 2 -102.11202582928894 -763.0368722107642 83.1435 0.1144 12093 +12095 2 -103.23805896860196 -762.9285959937598 82.7305 0.1144 12094 +12096 2 -104.35238614394594 -762.7715716444061 82.2483 0.1144 12095 +12097 2 -105.3825272580904 -762.3802732736592 81.6301 0.1144 12096 +12098 2 -106.20316584863872 -761.6438664813882 80.8889 0.1144 12097 +12099 2 -106.8665019947202 -761.3117510085451 79.4545 0.1144 12098 +12100 2 -107.5104523307361 -762.1976350104014 78.6509 0.1144 12099 +12101 2 -108.15520222943725 -763.0841278632349 77.8476 0.1144 12100 +12102 2 -108.82628833782505 -763.958520135118 77.0958 0.1144 12101 +12103 2 -109.51211901239392 -764.8285941008362 76.405 0.1144 12102 +12104 2 -110.20030304695277 -765.7015231841976 75.7484 0.1144 12103 +12105 2 -110.84583740887159 -766.5212390603291 74.6018 0.1144 12104 +12106 2 -97.06356795634994 -763.1188438836796 83.8597 0.1144 12089 +12107 2 -96.60729627275514 -762.4476251408323 81.8888 0.1144 12106 +12108 2 -96.04503106431525 -761.6213413061979 80.5921 0.1144 12107 +12109 2 -95.3755481121581 -760.7813879641776 79.6295 0.1144 12108 +12110 2 -94.64059899777914 -759.9671622649556 78.8376 0.1144 12109 +12111 2 -93.81292303321683 -759.2274062324112 78.1659 0.1144 12110 +12112 2 -92.914656236576 -758.5610537040506 77.5835 0.1144 12111 +12113 2 -92.45068786180845 -757.5614852985798 76.9782 0.1144 12112 +12114 2 -92.05394344653699 -756.5402042408141 76.2056 0.1144 12113 +12115 2 -91.78557465862306 -755.6419674771078 74.6018 0.1144 12114 +12116 2 -55.95349821386088 -903.4843536047563 68.7618 0.1144 11691 +12117 2 -55.09512939578025 -902.731130993474 68.9489 0.1144 12116 +12118 2 -54.242548180856204 -901.9707842226131 69.0788 0.1144 12117 +12119 2 -53.50058102359722 -901.1024752813088 69.1863 0.1144 12118 +12120 2 -52.91761185736203 -900.1196738561882 69.3031 0.1144 12119 +12121 2 -52.34983664914836 -899.1274308401191 69.4134 0.1144 12120 +12122 2 -51.751621159078866 -898.1541561987968 69.5083 0.1144 12121 +12123 2 -51.042324113149306 -897.2588590410691 69.5901 0.1144 12122 +12124 2 -50.150438765870945 -896.5427860229277 69.664 0.1144 12123 +12125 2 -49.198920424333465 -895.9082605736997 69.7337 0.1144 12124 +12126 2 -48.24513081407264 -895.2776211685255 69.8048 0.1144 12125 +12127 2 -47.24765718942672 -894.7222515905545 69.9028 0.1144 12126 +12128 2 -46.15254114689179 -894.4023111064287 70.0823 0.1144 12127 +12129 2 -45.03632580738062 -894.1755136288417 70.3206 0.1144 12128 +12130 2 -43.94268147088377 -893.8510782496852 70.5051 0.1144 12129 +12131 2 -42.86349389282185 -893.4723782214875 70.5916 0.1144 12130 +12132 2 -41.78952099555954 -893.0808023591748 70.5872 0.1144 12131 +12133 2 -40.74733483916481 -892.6134518104225 70.5009 0.1144 12132 +12134 2 -39.77317492774952 -892.015952423819 70.3461 0.1144 12133 +12135 2 -38.837567228419346 -891.3643266393736 70.1448 0.1144 12134 +12136 2 -37.99893962920376 -890.6030489503312 69.9152 0.1144 12135 +12137 2 -37.40829769055347 -889.6304386273819 69.6592 0.1144 12136 +12138 2 -36.84902385035744 -888.6595023412784 69.3776 0.1144 12137 +12139 2 -35.91426187635906 -888.0217778067288 69.0385 0.1144 12138 +12140 2 -34.88476704553747 -887.5448559333452 68.6739 0.1144 12139 +12141 2 -33.85662279928408 -887.0699380363399 68.2906 0.1144 12140 +12142 2 -32.826913041930055 -886.595466429592 67.9064 0.1144 12141 +12143 2 -31.78810807035248 -886.1422844230806 67.5427 0.1144 12142 +12144 2 -30.707210526824696 -885.8015037305588 67.23 0.1144 12143 +12145 2 -29.58252767030612 -885.6190361656239 66.9939 0.1144 12144 +12146 2 -28.44626748251659 -885.5102102696043 66.8441 0.1144 12145 +12147 2 -27.304238821898252 -885.5091155887511 66.8108 0.1144 12146 +12148 2 -26.164001904260715 -885.6032616011812 66.8968 0.1144 12147 +12149 2 -25.027771459610108 -885.7172426375389 67.0547 0.1144 12148 +12150 2 -23.896382286715266 -885.8691789381926 67.2062 0.1144 12149 +12151 2 -22.81889496662899 -886.2086029724819 67.1947 0.1144 12150 +12152 2 -21.843446655765547 -886.784001688881 66.8377 0.1144 12151 +12153 2 -20.939062588546278 -886.5906896122797 66.3132 0.1144 12152 +12154 2 -20.15707151316417 -885.7810019638481 65.8647 0.1144 12153 +12155 2 -19.406819630929903 -884.9303724832845 65.494 0.1144 12154 +12156 2 -18.653704018839562 -884.0781001237503 65.2002 0.1144 12155 +12157 2 -17.899257360956767 -883.2236010363258 64.9905 0.1144 12156 +12158 2 -17.14245734308392 -882.3662468312579 64.8438 0.1144 12157 +12159 2 -16.40935644537001 -881.4900063427098 64.7284 0.1144 12158 +12160 2 -15.77402831475311 -880.5421630189231 64.6428 0.1144 12159 +12161 2 -15.190698051110274 -879.5578484485146 64.5887 0.1144 12160 +12162 2 -14.615390730727114 -878.5690749116957 64.5602 0.1144 12161 +12163 2 -14.039592579253735 -877.5812908620371 64.5509 0.1144 12162 +12164 2 -13.464285258870603 -876.5925173252181 64.5534 0.1144 12163 +12165 2 -12.716475031059247 -875.7381065322264 64.5747 0.1144 12164 +12166 2 -11.819557102476637 -875.032321522902 64.6167 0.1144 12165 +12167 2 -11.011103185308258 -874.230548291985 64.6576 0.1144 12166 +12168 2 -10.551641324671039 -873.2041699754662 64.6596 0.1144 12167 +12169 2 -10.233019853647562 -872.1060159342667 64.6103 0.1144 12168 +12170 2 -9.926883393877489 -871.0047370740322 64.5106 0.1144 12169 +12171 2 -9.620256103017141 -869.9044477009581 64.3622 0.1144 12170 +12172 2 -9.314651126354335 -868.804786717637 64.1729 0.1144 12171 +12173 2 -8.982316015560116 -867.7155756113158 63.9027 0.1144 12172 +12174 2 -8.633306628493528 -866.6363047520133 63.5482 0.1144 12173 +12175 2 -8.281855587004031 -865.5608152051391 63.1383 0.1144 12174 +12176 2 -7.930798469959257 -864.486976362215 62.697 0.1144 12175 +12177 2 -7.666536145575918 -863.3832650576107 62.3445 0.1144 12176 +12178 2 -7.459182455464287 -862.2633559955896 62.1102 0.1144 12177 +12179 2 -7.262111263539964 -861.1377944800279 61.9615 0.1144 12178 +12180 2 -7.066553216903515 -860.0118718670585 61.8444 0.1144 12179 +12181 2 -6.402731928339961 -859.1365455754108 61.3063 0.1144 12180 +12182 2 -5.7517532384064225 -858.3671262130001 60.2067 0.1144 12181 +12183 2 -5.34373855429709 -857.3924432350267 59.1738 0.1144 12182 +12184 2 -4.709497101574868 -856.5192177317065 58.3156 0.1144 12183 +12185 2 -3.947952310143961 -855.7220978783316 57.5677 0.1144 12184 +12186 2 -3.177847581716378 -854.9171340796092 56.9349 0.1144 12185 +12187 2 -2.3705450198916083 -854.1375492326098 56.4096 0.1144 12186 +12188 2 -1.4650134034264966 -853.4721307240138 55.9524 0.1144 12187 +12189 2 -0.4684238417790425 -852.9414849894457 55.5254 0.1144 12188 +12190 2 0.5554459466056869 -852.4598040302694 55.1093 0.1144 12189 +12191 2 1.52075121757548 -851.8826547135081 54.7008 0.1144 12190 +12192 2 2.2765436419334435 -851.0608993111632 54.3144 0.1144 12191 +12193 2 2.8516750659873367 -850.0829155408144 53.9619 0.1144 12192 +12194 2 3.4030135648198723 -849.0900940917587 53.6326 0.1144 12193 +12195 2 4.12399434280772 -848.239967061385 53.312 0.1144 12194 +12196 2 5.091033196227414 -847.6549440738223 53.0032 0.1144 12195 +12197 2 6.112273027527607 -847.1535163851513 52.7136 0.1144 12196 +12198 2 7.1290039356510135 -846.6426526161614 52.439 0.1144 12197 +12199 2 8.157332690446339 -846.1529487137253 52.1674 0.1144 12198 +12200 2 9.191625637263968 -845.6836418310108 51.8484 0.1144 12199 +12201 2 9.73838884862397 -844.8735773701786 51.3503 0.1144 12200 +12202 2 9.647888625363692 -843.7717139804656 50.6982 0.1144 12201 +12203 2 10.000468097749433 -842.7438916827641 50.0993 0.1144 12202 +12204 2 10.65091351105454 -841.8271351369406 49.6384 0.1144 12203 +12205 2 11.367834065169518 -840.9486326844185 49.2551 0.1144 12204 +12206 2 12.053073995115568 -840.0426511843825 48.9353 0.1144 12205 +12207 2 12.577861357728978 -839.0352788877408 48.6786 0.1144 12206 +12208 2 13.040522303687993 -837.9921442036829 48.4613 0.1144 12207 +12209 2 13.490398119011388 -836.9434867997672 48.2608 0.1144 12208 +12210 2 13.927403610849268 -835.8893590418064 48.0757 0.1144 12209 +12211 2 14.482032591019617 -834.8931064511673 47.8946 0.1144 12210 +12212 2 15.335997910085496 -834.1546807718788 47.6832 0.1144 12211 +12213 2 16.27762767788036 -833.51285216516 47.4312 0.1144 12212 +12214 2 17.218003767752634 -832.8756677259303 47.1226 0.1144 12213 +12215 2 18.155799857306675 -832.2361955807846 46.7597 0.1144 12214 +12216 2 19.026251842519912 -831.5158073580615 46.3414 0.1144 12215 +12217 2 19.55821091243169 -830.5374803125707 45.8405 0.1144 12216 +12218 2 19.915951314731046 -829.4743234029083 45.3121 0.1144 12217 +12219 2 20.236350814341023 -828.3964397493307 44.7871 0.1144 12218 +12220 2 20.553062806585473 -827.316949145403 44.2848 0.1144 12219 +12221 2 21.03390566347511 -826.2948008406163 43.8631 0.1144 12220 +12222 2 21.731228068017202 -825.3975911025262 43.5728 0.1144 12221 +12223 2 22.461165116492907 -824.5205955921258 43.3908 0.1144 12222 +12224 2 23.19243321076101 -823.6413733538348 43.2771 0.1144 12223 +12225 2 23.92370130502917 -822.7621511155437 43.1964 0.1144 12224 +12226 2 24.654884206447548 -821.8829812430655 43.1189 0.1144 12225 +12227 2 25.43651349188542 -821.0507441133087 42.952 0.1144 12226 +12228 2 26.243369070916174 -820.2486621507968 42.6661 0.1144 12227 +12229 2 27.05119769991481 -819.4525554015663 42.2957 0.1144 12228 +12230 2 27.85618213783306 -818.6583142828188 41.8785 0.1144 12229 +12231 2 28.48309650232858 -817.7143514924562 41.4896 0.1144 12230 +12232 2 28.825105260332975 -816.6299932769904 41.1967 0.1144 12231 +12233 2 29.158686224069868 -815.5386078085915 40.99 0.1144 12232 +12234 2 29.49009282572905 -814.4459764872497 40.85 0.1144 12233 +12235 2 29.87910210548688 -813.3702901201974 40.7473 0.1144 12234 +12236 2 30.498968985737037 -812.4104697459768 40.6395 0.1144 12235 +12237 2 31.126059246561766 -811.455717189144 40.5166 0.1144 12236 +12238 2 31.644909733560212 -810.4384953489629 40.3542 0.1144 12237 +12239 2 32.09572267023137 -809.3892619211072 40.1811 0.1144 12238 +12240 2 32.688365483676705 -808.4113133868419 40.0714 0.1144 12239 +12241 2 33.28100829712204 -807.4333648525767 40.007 0.1144 12240 +12242 2 33.59284966523472 -806.9314468302526 40.1915 0.1144 12241 +12243 2 34.193688909222516 -805.9645413266567 39.9294 0.1144 12242 +12244 2 34.8191284660968 -805.0093948453791 39.7715 0.1144 12243 +12245 2 35.566001572560424 -804.1555600763276 39.6606 0.1144 12244 +12246 2 36.47768119705316 -803.4716899554093 39.6634 0.1144 12245 +12247 2 37.34580954773037 -802.7473304957826 39.7832 0.1144 12246 +12248 2 37.59554023186652 -801.7599547894779 40.0095 0.1144 12247 +12249 2 37.45059256753319 -800.6458977062886 40.476 0.1144 12248 +12250 2 37.41068828483938 -799.5169252627707 40.8892 0.1144 12249 +12251 2 37.406377388935226 -798.3740563874501 40.9542 0.1144 12250 +12252 2 37.50271730221877 -797.2352880742676 40.8554 0.1144 12251 +12253 2 37.048959271767245 -796.1955459813423 40.7431 0.1144 12252 +12254 2 36.158729931427075 -795.4790255548382 40.6454 0.1144 12253 +12255 2 35.46065913376751 -794.5881649308039 40.5471 0.1144 12254 +12256 2 35.20780676698513 -793.4732922561848 40.4578 0.1144 12255 +12257 2 35.10294428288901 -792.3371782392704 40.3326 0.1144 12256 +12258 2 35.16029800546622 -791.1981932830455 40.112 0.1144 12257 +12259 2 35.24615998545758 -790.0643395312803 39.8269 0.1144 12258 +12260 2 35.452234995589464 -788.9467423899995 39.5399 0.1144 12259 +12261 2 35.84432603331882 -787.8785522064964 39.2997 0.1144 12260 +12262 2 36.377433356991105 -786.8713479812039 39.0942 0.1144 12261 +12263 2 37.01098104997496 -785.9206081005243 38.9152 0.1144 12262 +12264 2 37.63985174843269 -784.9687521005845 38.7503 0.1144 12263 +12265 2 38.21244461141809 -783.9843468266967 38.547 0.1144 12264 +12266 2 38.59923026486854 -782.914018209736 38.3272 0.1144 12265 +12267 2 38.86121039396551 -781.8022018706051 38.1836 0.1144 12266 +12268 2 39.202505569367275 -780.7168737067545 38.0786 0.1144 12267 +12269 2 39.79737821228619 -779.7469450141659 37.9823 0.1144 12268 +12270 2 40.51434803063083 -778.8618389586094 37.8868 0.1144 12269 +12271 2 41.000548637612155 -777.8419142801301 37.8132 0.1144 12270 +12272 2 41.1882134746715 -776.7140353331986 37.7731 0.1144 12271 +12273 2 41.30575228471214 -775.57690920645 37.7602 0.1144 12272 +12274 2 41.451093594544176 -774.4414745303649 37.7804 0.1144 12273 +12275 2 41.60339099260554 -773.3085722121823 37.835 0.1144 12274 +12276 2 41.91203077736057 -772.2312262448781 37.9316 0.1144 12275 +12277 2 42.70450117110805 -771.4647492882555 38.0943 0.1144 12276 +12278 2 43.74624103724534 -770.9989642506036 38.3096 0.1144 12277 +12279 2 44.77604149807874 -770.5137552431983 38.5622 0.1144 12278 +12280 2 45.800481107237374 -770.0196338136013 38.859 0.1144 12279 +12281 2 46.858149437847715 -769.6126083200215 39.2171 0.1144 12280 +12282 2 47.94033658791825 -769.2737346972324 39.5875 0.1144 12281 +12283 2 49.027738418788346 -768.9477369085582 39.9319 0.1144 12282 +12284 2 50.11670576075902 -768.6221854101416 40.2363 0.1144 12283 +12285 2 51.208026462719744 -768.2937787940817 40.4818 0.1144 12284 +12286 2 52.29965279469231 -767.9570850439999 40.6358 0.1144 12285 +12287 2 53.388567078313685 -767.6073857261205 40.6588 0.1144 12286 +12288 2 54.46781012377137 -767.2354596866568 40.5118 0.1144 12287 +12289 2 55.53349588701188 -766.8435781943322 40.178 0.1144 12288 +12290 2 56.46577305082768 -766.2476426023195 39.7426 0.1144 12289 +12291 2 57.248571513874936 -765.4348762974994 39.2986 0.1144 12290 +12292 2 58.04976371280212 -764.6388578427019 38.859 0.1144 12291 +12293 2 58.863666776078205 -763.8526334640479 38.4661 0.1144 12292 +12294 2 59.65482663943408 -763.035901432954 38.157 0.1144 12293 +12295 2 60.44055999704106 -762.2105320969936 37.9215 0.1144 12294 +12296 2 61.22833798304316 -761.3839059815276 37.7362 0.1144 12295 +12297 2 62.07561381368829 -760.6214207772091 37.5838 0.1144 12296 +12298 2 62.99074569300576 -759.9380110220425 37.4578 0.1144 12297 +12299 2 63.928162768190134 -759.2839818734927 37.3484 0.1144 12298 +12300 2 64.87545119269174 -758.645248360355 37.2095 0.1144 12299 +12301 2 65.86154972217808 -758.0686993770545 37.1269 0.1144 12300 +12302 2 66.8768793017343 -757.5439069944133 37.2058 0.1144 12301 +12303 2 67.90048420682034 -757.0423167450226 37.4368 0.1144 12302 +12304 2 68.9350116189461 -756.575682880456 37.7815 0.1144 12303 +12305 2 69.90117511627626 -755.9857984371736 38.1142 0.1144 12304 +12306 2 70.84029053782699 -755.3414070072137 38.3729 0.1144 12305 +12307 2 71.9026450730165 -754.9811530807087 38.7296 0.1144 12306 +12308 2 72.99714503743475 -754.7125345260844 39.207 0.1144 12307 +12309 2 74.08598944672936 -754.4475096737632 39.7698 0.1144 12308 +12310 2 75.16999897682683 -754.1826395571818 40.3872 0.1144 12309 +12311 2 76.2522718228913 -753.9189543155176 41.0264 0.1144 12310 +12312 2 77.34343435609239 -753.6685857349445 41.5996 0.1144 12311 +12313 2 78.46010288156388 -753.4776629646384 41.9846 0.1144 12312 +12314 2 79.58435667225034 -753.288768432883 42.2229 0.1144 12313 +12315 2 80.71655983244632 -753.1326668504367 42.3304 0.1144 12314 +12316 2 81.8506338319811 -753.2614721825437 42.2181 0.1144 12315 +12317 2 82.94813356977853 -753.4006685385831 41.5078 0.1144 12316 +12318 2 34.36033692619256 -807.3781968322307 39.8563 0.1144 12241 +12319 2 35.501019127799196 -807.3202958396848 39.6987 0.1144 12318 +12320 2 36.64076420805807 -807.262970871079 39.4982 0.1144 12319 +12321 2 37.77157835132306 -807.1452849186805 39.2532 0.1144 12320 +12322 2 38.875751962951426 -806.8815192549116 38.967 0.1144 12321 +12323 2 39.95981025413437 -806.5348047883581 38.6618 0.1144 12322 +12324 2 41.04377474025483 -806.1921389265779 38.36 0.1144 12323 +12325 2 42.130010495098645 -805.8533591088511 38.0666 0.1144 12324 +12326 2 43.21692700550804 -805.5156867981718 37.781 0.1144 12325 +12327 2 44.3037911501047 -805.1779292946428 37.5052 0.1144 12326 +12328 2 45.39230599865172 -804.8405657155585 37.2394 0.1144 12327 +12329 2 46.47917014324838 -804.5028082120293 36.9852 0.1144 12328 +12330 2 47.56964752892384 -804.1709290151363 36.7382 0.1144 12329 +12331 2 48.64982218509971 -803.8091119865771 36.4946 0.1144 12330 +12332 2 49.66959341194489 -803.3098781987596 36.2804 0.1144 12331 +12333 2 50.62328921714324 -802.6832873983587 36.1267 0.1144 12332 +12334 2 51.56121744942638 -802.0289440549325 36.0304 0.1144 12333 +12335 2 52.49972170564969 -801.375537832854 35.9803 0.1144 12334 +12336 2 53.43768276496989 -800.7210569307654 35.9663 0.1144 12335 +12337 2 54.38073738361972 -800.0729529913826 35.9786 0.1144 12336 +12338 2 55.318037226150096 -799.417587333759 36.0086 0.1144 12337 +12339 2 56.23777262093964 -798.7380386205887 36.0517 0.1144 12338 +12340 2 57.15403233331298 -798.0526444278197 36.1127 0.1144 12339 +12341 2 58.06918453863892 -797.3679309906162 36.2001 0.1144 12340 +12342 2 58.983845912874514 -796.6822280662522 36.3219 0.1144 12341 +12343 2 59.981463991885775 -796.1643315336996 36.4868 0.1144 12342 +12344 2 61.09304067453755 -795.9255953433453 36.701 0.1144 12343 +12345 2 62.161112340716485 -795.6074883552019 37.0955 0.1144 12344 +12346 2 63.212735678414774 -795.2605213169859 37.7157 0.1144 12345 +12347 2 64.3209798249536 -795.1956789568933 38.3228 0.1144 12346 +12348 2 65.40815370743348 -795.0068046091019 38.9791 0.1144 12347 +12349 2 66.44257059321554 -794.6274525741675 39.7149 0.1144 12348 +12350 2 67.49714044457313 -794.2961641218972 40.4239 0.1144 12349 +12351 2 68.5026845601985 -793.7800863646443 40.7817 0.1144 12350 +12352 2 69.55472405425228 -793.3375503627742 40.9542 0.1144 12351 +12353 2 70.6193344449459 -792.9221494407396 41.1093 0.1144 12352 +12354 2 71.68363610404461 -792.5083468568428 41.251 0.1144 12353 +12355 2 72.70705580805217 -791.9974799862697 41.3372 0.1144 12354 +12356 2 73.72631907407788 -791.4796601290504 41.4 0.1144 12355 +12357 2 74.74591061047424 -790.9604646852059 41.4812 0.1144 12356 +12358 2 75.76517387649996 -790.4426448279867 41.5663 0.1144 12357 +12359 2 76.32334532380834 -789.7800410810838 41.683 0.1144 12358 +12360 2 77.15016014981961 -788.9951532588518 41.8978 0.1144 12359 +12361 2 78.0062639023431 -788.2514221952845 42.2517 0.1144 12360 +12362 2 78.96929007960964 -787.6728566398809 42.7672 0.1144 12361 +12363 2 79.87816514106567 -787.0537438693268 43.5336 0.1144 12362 +12364 2 80.70219873693556 -786.3645875714685 44.3761 0.1144 12363 +12365 2 81.1986113699371 -785.3853381253127 45.1592 0.1144 12364 +12366 2 81.71278786929636 -784.399278021918 45.799 0.1144 12365 +12367 2 82.41133880765955 -783.5334754598337 45.8934 0.1144 12366 +12368 2 83.22083095538888 -782.8653476256846 44.8291 0.1144 12367 +12369 2 84.04158948314024 -782.2386555089931 43.6489 0.1144 12368 +12370 2 84.94364601502946 -781.6170432075736 42.8641 0.1144 12369 +12371 2 85.88120444299607 -780.9937983085581 42.3886 0.1144 12370 +12372 2 86.84604009081302 -780.3872403288879 42.1957 0.1144 12371 +12373 2 87.85172185979717 -779.8456063385098 42.2237 0.1144 12372 +12374 2 88.88079392264908 -779.3500460299119 42.3746 0.1144 12373 +12375 2 89.91269216492313 -778.8621390023013 42.5603 0.1144 12374 +12376 2 90.93989859729224 -778.363734502623 42.7291 0.1144 12375 +12377 2 91.94845969874406 -777.828312552533 42.8949 0.1144 12376 +12378 2 92.95167948729679 -777.2842009317637 43.0819 0.1144 12377 +12379 2 93.8241377632385 -776.573378523042 43.2622 0.1144 12378 +12380 2 94.4177239011978 -775.608231556605 43.2911 0.1144 12379 +12381 2 95.35252712505354 -775.0175513447568 43.0786 0.1144 12380 +12382 2 96.10666815292447 -774.1713393913541 42.8809 0.1144 12381 +12383 2 96.65660842477291 -773.1712781245313 42.707 0.1144 12382 +12384 2 97.1669044854044 -772.151215194853 42.4883 0.1144 12383 +12385 2 97.65702086189329 -771.1221928931036 42.2601 0.1144 12384 +12386 2 98.1512178829597 -770.0946532713035 42.0221 0.1144 12385 +12387 2 98.69600283022031 -769.0936525214345 41.7883 0.1144 12386 +12388 2 99.31998239485227 -768.1367037020499 41.6304 0.1144 12387 +12389 2 100.019090747657 -767.2317054860082 41.5727 0.1144 12388 +12390 2 100.83632262993751 -766.4312273722635 41.5906 0.1144 12389 +12391 2 101.69459454137258 -765.6753645698705 41.6503 0.1144 12390 +12392 2 102.55278125995785 -764.9195541332899 41.722 0.1144 12391 +12393 2 103.41056234030262 -764.1627018437364 41.7696 0.1144 12392 +12394 2 104.26742662530806 -763.4051218960858 41.7606 0.1144 12393 +12395 2 105.07979941356709 -762.600939837783 41.6609 0.1144 12394 +12396 2 105.84148195305298 -761.7526746911205 41.4464 0.1144 12395 +12397 2 106.44004441768787 -760.7925681783157 41.0413 0.1144 12396 +12398 2 106.91823999837143 -759.7842546821179 40.427 0.1144 12397 +12399 2 107.45506116919155 -758.8419094372318 39.5657 0.1144 12398 +12400 2 108.16638643598674 -758.1550075921195 38.1738 0.1144 12399 +12401 2 108.96497569246327 -757.642537642327 36.6206 0.1144 12400 +12402 2 109.79560287639664 -757.1252821722633 35.1834 0.1144 12401 +12403 2 110.60323240053006 -756.4865880030804 33.9752 0.1144 12402 +12404 2 111.39425191739204 -755.7895532163278 32.8894 0.1144 12403 +12405 2 112.16043596352284 -755.0540237624957 31.852 0.1144 12404 +12406 2 112.91665805155324 -754.2883470137466 30.9058 0.1144 12405 +12407 2 113.75963098925266 -753.5996394151923 30.0852 0.1144 12406 +12408 2 114.71585025605197 -753.0468559460094 29.3821 0.1144 12407 +12409 2 115.71395596987415 -752.5488491648955 28.7602 0.1144 12408 +12410 2 116.70741992525384 -752.0322148751302 28.189 0.1144 12409 +12411 2 117.64819294645774 -751.4256575879965 27.6504 0.1144 12410 +12412 2 118.56600395239312 -750.7809800194525 27.1071 0.1144 12411 +12413 2 119.58304319564161 -750.5868547308047 26.4523 0.1144 12412 +12414 2 120.66966236879321 -750.7622016513347 25.6913 0.1144 12413 +12415 2 121.75809482429989 -750.7243269922648 24.9114 0.1144 12414 +12416 2 122.78001178875341 -750.3580578456497 24.1255 0.1144 12415 +12417 2 123.6781611633478 -749.7415469285398 23.3207 0.1144 12416 +12418 2 124.14083802567023 -748.832686031003 22.3275 0.1144 12417 +12419 2 125.04801804371355 -748.5786128429982 21.2625 0.1144 12418 +12420 2 126.05185680488863 -748.2570267867667 20.19 0.1144 12419 +12421 2 127.10195027601779 -747.9929318760019 19.3 0.1144 12420 +12422 2 128.21862670348037 -747.9899308179527 18.6913 0.1144 12421 +12423 2 129.35071673889374 -747.9896630161921 18.288 0.1144 12422 +12424 2 130.465176560111 -748.207056914203 17.9494 0.1144 12423 +12425 2 75.48476056089372 -791.0044768513092 41.2658 0.1144 12358 +12426 2 74.9758924527003 -792.024953244208 41.2143 0.1144 12425 +12427 2 74.46536502834384 -793.0490319516225 41.2619 0.1144 12426 +12428 2 74.0927510187174 -794.1294305492845 41.225 0.1144 12427 +12429 2 74.05000902705544 -795.2635423833419 41.034 0.1144 12428 +12430 2 74.5521917375788 -796.2816183654039 40.9632 0.1144 12429 +12431 2 75.04631626875883 -797.3127467704467 40.8456 0.1144 12430 +12432 2 75.5197100939133 -798.3363109288196 40.3858 0.1144 12431 +12433 2 -72.92759866531048 -1058.0592104977327 47.1624 0.1144 10271 +12434 2 -73.44803616797805 -1057.0725447459113 47.5546 0.1144 12433 +12435 2 -73.83662717896485 -1056.0034278410872 47.8419 0.1144 12434 +12436 2 -74.29590241864466 -1054.965785843953 48.1586 0.1144 12435 +12437 2 -74.89126578083693 -1054.0036943789878 48.5313 0.1144 12436 +12438 2 -75.09073066587388 -1052.936529007718 48.9135 0.1144 12437 +12439 2 -75.08501542937296 -1051.8009961169255 49.2554 0.1144 12438 +12440 2 -75.4338152710348 -1050.7463910294841 49.5547 0.1144 12439 +12441 2 -75.97390018750491 -1049.7476215951297 49.8744 0.1144 12440 +12442 2 -76.20665264706108 -1048.6566646837114 50.2076 0.1144 12441 +12443 2 -76.58155974373108 -1047.6033170683127 50.5862 0.1144 12442 +12444 2 -77.24413716282976 -1046.6892310254807 50.9188 0.1144 12443 +12445 2 -78.1157389945185 -1045.9680688405338 51.2201 0.1144 12444 +12446 2 -78.68062373718826 -1045.0141231568082 51.6622 0.1144 12445 +12447 2 -78.74088049877074 -1043.893669903574 52.1332 0.1144 12446 +12448 2 -78.88262597619914 -1042.7695452487296 52.5067 0.1144 12447 +12449 2 -79.15253723894935 -1041.6664494186946 52.8464 0.1144 12448 +12450 2 -79.40093304836762 -1040.5609276315445 53.1832 0.1144 12449 +12451 2 -79.09671148331 -1039.4634081832642 53.4447 0.1144 12450 +12452 2 -78.65075453907735 -1038.4171596067342 53.6567 0.1144 12451 +12453 2 -78.68125246690616 -1037.2905045945863 53.9694 0.1144 12452 +12454 2 -79.11335979971355 -1036.2401541421495 54.2892 0.1144 12453 +12455 2 -79.47490953592745 -1035.162514945459 54.5664 0.1144 12454 +12456 2 -79.97931897434131 -1034.1431079176045 54.8397 0.1144 12455 +12457 2 -80.57356621727357 -1033.1763394581133 55.1947 0.1144 12456 +12458 2 -81.13101876130634 -1032.1909452064801 55.5472 0.1144 12457 +12459 2 -81.48072048823235 -1031.1194047535878 55.9115 0.1144 12458 +12460 2 -81.73026455141121 -1030.0427601462395 56.4133 0.1144 12459 +12461 2 -82.17087635381944 -1029.0070276278843 56.7955 0.1144 12460 +12462 2 -82.15333052184843 -1027.9367640791354 57.136 0.1144 12461 +12463 2 -81.70888362132044 -1026.896843201082 57.5162 0.1144 12462 +12464 2 -81.4450730978242 -1025.805382442423 57.9788 0.1144 12463 +12465 2 -81.75059446864512 -1024.7994162690495 58.4895 0.1144 12464 +12466 2 -82.29731822423321 -1023.8181089598565 58.9646 0.1144 12465 +12467 2 -82.24845045645444 -1022.7594637731804 59.4507 0.1144 12466 +12468 2 -82.19652495613607 -1021.6532779694311 59.9614 0.1144 12467 +12469 2 -82.65022992823828 -1020.6376836959686 60.3865 0.1144 12468 +12470 2 -83.23672462183907 -1019.6661499475182 60.7261 0.1144 12469 +12471 2 -83.832228644277 -1018.6973368596317 61.0487 0.1144 12470 +12472 2 -84.28161841179733 -1017.660309224104 61.4188 0.1144 12471 +12473 2 -84.50621888694772 -1016.552251284932 61.7901 0.1144 12472 +12474 2 -84.70597198817867 -1015.4342024494384 62.109 0.1144 12473 +12475 2 -85.0341113118935 -1014.3454172069631 62.3837 0.1144 12474 +12476 2 -85.51976660955626 -1013.3171822572302 62.6321 0.1144 12475 +12477 2 -85.98296382190986 -1012.2752602915975 62.8653 0.1144 12476 +12478 2 -86.52367712813279 -1011.2754685430451 63.1599 0.1144 12477 +12479 2 -86.8222749536728 -1010.1954051057496 63.6185 0.1144 12478 +12480 2 -87.026646480451 -1009.089702935614 64.1248 0.1144 12479 +12481 2 -87.26813546586962 -1007.9933171094007 64.6699 0.1144 12480 +12482 2 -87.80104626599487 -1007.006219095468 65.1678 0.1144 12481 +12483 2 -88.56134238755291 -1006.1951595307357 65.7866 0.1144 12482 +12484 2 -89.15483150704972 -1005.2319160178903 66.1982 0.1144 12483 +12485 2 -89.74970713973482 -1004.2641252442013 66.5428 0.1144 12484 +12486 2 -90.34699159980579 -1003.2924155994217 66.7383 0.1144 12485 +12487 2 -90.9460564975098 -1002.317809397749 66.8136 0.1144 12486 +12488 2 -91.69400756354537 -1001.9463822813233 66.7097 0.1144 12487 +12489 2 -92.4681610867029 -1001.1129693629074 66.488 0.1144 12488 +12490 2 -93.08236688407911 -1000.1530693897489 66.2494 0.1144 12489 +12491 2 -93.66089720339909 -999.1725318230909 66.0108 0.1144 12490 +12492 2 -94.09665611495194 -998.1271256575255 65.756 0.1144 12491 +12493 2 -94.33141796681974 -997.0199141362218 65.506 0.1144 12492 +12494 2 -94.86152360606783 -996.0177104587004 65.2484 0.1144 12493 +12495 2 -95.55907384718316 -995.1210129672799 64.9132 0.1144 12494 +12496 2 -96.1051692130184 -994.1407279722845 64.6332 0.1144 12495 +12497 2 -96.37330313971864 -993.0338399032584 64.3821 0.1144 12496 +12498 2 -96.6613432550501 -991.9339055134151 64.1178 0.1144 12497 +12499 2 -96.8478594247583 -990.8091288518341 63.8957 0.1144 12498 +12500 2 -96.88486404897597 -989.6850647665673 63.7098 0.1144 12499 +12501 2 -96.74779825406617 -988.5776060775564 63.5373 0.1144 12500 +12502 2 -97.09460342409906 -987.504285187031 63.2814 0.1144 12501 +12503 2 -97.56368135213515 -986.483350293206 62.9087 0.1144 12502 +12504 2 -97.70648748142773 -985.3706766216219 62.627 0.1144 12503 +12505 2 -97.75663833368867 -984.2426029617851 62.41 0.1144 12504 +12506 2 -98.04548893826836 -983.1390584324461 62.2499 0.1144 12505 +12507 2 -98.39817000589076 -982.0519769522705 62.1292 0.1144 12506 +12508 2 -98.58014132380202 -980.9431876082301 62.0172 0.1144 12507 +12509 2 -98.40632226924251 -979.8212369247007 61.9136 0.1144 12508 +12510 2 -98.13966514561943 -978.7105367048299 61.8374 0.1144 12509 +12511 2 -98.02960298035248 -977.5767150875653 61.7873 0.1144 12510 +12512 2 -98.05948964815758 -976.4334858073736 61.7635 0.1144 12511 +12513 2 -98.17214061020536 -975.2955858421966 61.7492 0.1144 12512 +12514 2 -98.17863137881693 -974.1621561487781 61.7408 0.1144 12513 +12515 2 -97.93682783227945 -973.0480692334604 61.7957 0.1144 12514 +12516 2 -97.72109010150038 -971.931105992562 61.9153 0.1144 12515 +12517 2 -97.86425732820064 -970.8199454662658 62.0298 0.1144 12516 +12518 2 -98.23493751472168 -969.7385280587304 62.1348 0.1144 12517 +12519 2 -98.6299859578676 -968.6653984777532 62.2182 0.1144 12518 +12520 2 -99.05144728603352 -967.6018135028403 62.2378 0.1144 12519 +12521 2 -99.44939228607254 -966.5304643594962 62.1874 0.1144 12520 +12522 2 -99.92306743171832 -965.493456955281 62.088 0.1144 12521 +12523 2 -100.53682693883707 -964.531991471022 61.9833 0.1144 12522 +12524 2 -101.44885343178515 -963.9068099964397 61.9007 0.1144 12523 +12525 2 -102.49003178188073 -963.4362558409035 61.8554 0.1144 12524 +12526 2 -103.57816269756196 -963.0926924983615 61.8481 0.1144 12525 +12527 2 -104.60308402872525 -962.602755119785 61.8965 0.1144 12526 +12528 2 -105.4618599830651 -961.8589192304602 61.9676 0.1144 12527 +12529 2 -106.15651676887038 -960.9537525055224 62.0298 0.1144 12528 +12530 2 -106.87232249466658 -960.0644026177293 62.1382 0.1144 12529 +12531 2 -107.53432148077869 -959.1338798655161 62.2913 0.1144 12530 +12532 2 -108.16474595942049 -958.1825405218909 62.4548 0.1144 12531 +12533 2 -108.96990347673784 -957.3815663510793 62.6184 0.1144 12532 +12534 2 -109.9072797937952 -956.7371046685721 62.8513 0.1144 12533 +12535 2 -110.61978031757096 -955.8792940521658 63.2912 0.1144 12534 +12536 2 -111.21567826445357 -954.9121316682297 63.6202 0.1144 12535 +12537 2 -111.64917211044926 -953.8572339549495 63.8019 0.1144 12536 +12538 2 -112.21452096564235 -952.8631945734701 63.8613 0.1144 12537 +12539 2 -112.811626427801 -951.8873839581045 63.8722 0.1144 12538 +12540 2 -113.10265139445849 -950.7825935758228 63.9498 0.1144 12539 +12541 2 -113.809152786195 -949.5852691446537 64.1245 0.1144 12540 +12542 2 -114.39142297869327 -948.6030394347956 64.2608 0.1144 12541 +12543 2 -115.00385144001953 -947.6393472226462 64.409 0.1144 12542 +12544 2 -115.75676531970689 -946.7793800664278 64.5411 0.1144 12543 +12545 2 -116.50935954123631 -945.9220335625447 64.6556 0.1144 12544 +12546 2 -117.08864798399168 -944.9379710492408 64.7833 0.1144 12545 +12547 2 -117.58771370045994 -943.9098798613368 64.9247 0.1144 12546 +12548 2 -118.08601346851276 -942.8828438146672 65.0756 0.1144 12547 +12549 2 -118.58601630632873 -941.8553286507033 65.2305 0.1144 12548 +12550 2 -119.1064130622832 -940.8404664746457 65.3836 0.1144 12549 +12551 2 -119.8138902148078 -939.9472884192415 65.5354 0.1144 12550 +12552 2 -120.6209133626079 -939.1434700573495 65.672 0.1144 12551 +12553 2 -121.20701723334705 -938.1635968090645 65.7446 0.1144 12552 +12554 2 -121.66567811142014 -937.1160693397707 65.742 0.1144 12553 +12555 2 -122.1296858130219 -936.0705372346422 65.6824 0.1144 12554 +12556 2 -122.62282085704143 -935.0389179985092 65.5816 0.1144 12555 +12557 2 -123.15035269913747 -934.0256244351353 65.4553 0.1144 12556 +12558 2 -123.68709787004016 -933.0168202561628 65.3187 0.1144 12557 +12559 2 -124.2327554631344 -932.0133769288649 65.1762 0.1144 12558 +12560 2 -124.84228736756756 -931.0479042790823 65.0647 0.1144 12559 +12561 2 -125.52442390603593 -930.1283509837882 65.0261 0.1144 12560 +12562 2 -126.23537363939369 -929.2360162446691 65.0292 0.1144 12561 +12563 2 -127.0879656570857 -928.4802799802436 65.0619 0.1144 12562 +12564 2 -128.07339634675424 -927.9016267111269 65.1176 0.1144 12563 +12565 2 -129.03918883267323 -927.2894216767288 65.1384 0.1144 12564 +12566 2 -129.84565957351725 -926.532333442662 65.0952 0.1144 12565 +12567 2 -130.00869395864552 -925.4413666286544 65.0124 0.1144 12566 +12568 2 -129.51624473756752 -924.4619710116233 64.8995 0.1144 12567 +12569 2 -129.06706298375605 -923.6285469886657 64.7335 0.1144 12568 +12570 2 -129.49026882093494 -922.5686166940814 64.589 0.1144 12569 +12571 2 -129.97507529168283 -921.533169290337 64.4728 0.1144 12570 +12572 2 -130.4588070824205 -920.4971786896895 64.372 0.1144 12571 +12573 2 -130.9435283603186 -919.4616789201325 64.2779 0.1144 12572 +12574 2 -131.4415717625893 -918.4329593424756 64.1729 0.1144 12573 +12575 2 -131.97782610240168 -917.4251446506634 64.02 0.1144 12574 +12576 2 -132.52575186263613 -916.4245040751962 63.8061 0.1144 12575 +12577 2 -132.9521598867199 -915.3746413522666 63.5793 0.1144 12576 +12578 2 -133.2390510557542 -914.2698924092347 63.3791 0.1144 12577 +12579 2 -133.5250051034408 -913.1645674422626 63.2066 0.1144 12578 +12580 2 -133.82253676648708 -912.0623679868622 63.0664 0.1144 12579 +12581 2 -134.1861342326792 -910.9792967737933 62.9793 0.1144 12580 +12582 2 -134.6243902660508 -909.9233353070658 62.9527 0.1144 12581 +12583 2 -135.10955783420644 -908.8894010486092 62.9283 0.1144 12582 +12584 2 -135.6602011534217 -907.886439940189 62.8527 0.1144 12583 +12585 2 -136.21325019843982 -906.8862487565623 62.729 0.1144 12584 +12586 2 -136.7647009053202 -905.8863663045306 62.5626 0.1144 12585 +12587 2 -137.3174826579931 -904.8887105803892 62.3596 0.1144 12586 +12588 2 -137.92037813235487 -903.9231496361738 62.1258 0.1144 12587 +12589 2 -138.6014368892298 -903.0097419398608 61.8708 0.1144 12588 +12590 2 -139.23012236948838 -902.0654329507518 61.6042 0.1144 12589 +12591 2 -139.7513265131079 -901.0536494310828 61.3306 0.1144 12590 +12592 2 -140.252478297221 -900.0309488203075 61.0498 0.1144 12591 +12593 2 -140.75296886454416 -899.0091329650671 60.76 0.1144 12592 +12594 2 -141.25376816346227 -897.9889154479645 60.4587 0.1144 12593 +12595 2 -141.7542915578226 -896.9672371513866 60.144 0.1144 12594 +12596 2 -142.29959356413875 -895.9729657136456 59.8046 0.1144 12595 +12597 2 -143.00858316941466 -895.1034891874468 59.4124 0.1144 12596 +12598 2 -143.79462234699014 -894.2988627453531 58.9666 0.1144 12597 +12599 2 -144.50717282753206 -893.4235931053681 58.4982 0.1144 12598 +12600 2 -145.21037242060487 -892.543866908019 58.011 0.1144 12599 +12601 2 -145.7513382984903 -891.5765101129514 57.5053 0.1144 12600 +12602 2 -146.08120810307187 -890.5022873371618 56.9834 0.1144 12601 +12603 2 -146.3781137854118 -889.4184840266878 56.4561 0.1144 12602 +12604 2 -146.53499706092936 -888.315754396242 55.9272 0.1144 12603 +12605 2 -146.5312795976404 -887.1922485126496 55.4014 0.1144 12604 +12606 2 -146.5206169726851 -886.0670559964867 54.892 0.1144 12605 +12607 2 -146.52443162156564 -884.9400806336442 54.4118 0.1144 12606 +12608 2 -146.78136713666822 -883.8666881699671 53.9966 0.1144 12607 +12609 2 -147.43459056671472 -882.9548343656551 53.692 0.1144 12608 +12610 2 -148.242732935358 -882.149004202405 53.4965 0.1144 12609 +12611 2 -149.0403144922096 -881.3299918824914 53.3842 0.1144 12610 +12612 2 -149.73211616037165 -880.4271785175437 53.3324 0.1144 12611 +12613 2 -150.19531027114203 -879.3919453477952 53.3196 0.1144 12612 +12614 2 -150.52857598122353 -878.2969207012762 53.3268 0.1144 12613 +12615 2 -150.86228798156245 -877.2034615658579 53.3428 0.1144 12614 +12616 2 -151.19666119869123 -876.1091176749046 53.3646 0.1144 12615 +12617 2 -151.52034155599537 -875.0123094891695 53.396 0.1144 12616 +12618 2 -151.7908843100815 -873.9015025490528 53.4411 0.1144 12617 +12619 2 -151.97656026508758 -872.7735096724207 53.5024 0.1144 12618 +12620 2 -152.13799459556824 -871.6414151326661 53.5816 0.1144 12619 +12621 2 -152.41517067814272 -870.5373852828665 53.6976 0.1144 12620 +12622 2 -153.0014004884448 -869.5857608246304 53.9003 0.1144 12621 +12623 2 -153.7364449829161 -868.7176269633236 54.1797 0.1144 12622 +12624 2 -154.31786875754605 -867.7455586301828 54.4132 0.1144 12623 +12625 2 -154.8110038015656 -866.7139393940497 54.5504 0.1144 12624 +12626 2 -155.34035752054444 -865.7018830714059 54.6216 0.1144 12625 +12627 2 -156.196353647501 -865.0301709823118 54.7901 0.1144 12626 +12628 2 -157.30846119773474 -865.1041961585241 55.1177 0.1144 12627 +12629 2 -158.43202494008437 -864.8950979593997 55.1824 0.1144 12628 +12630 2 -159.3820556478065 -864.3980976833585 55.0186 0.1144 12629 +12631 2 -159.7193661685416 -863.3337306542744 54.9564 0.1144 12630 +12632 2 -159.8577273595697 -862.2021262530734 55.0637 0.1144 12631 +12633 2 -160.43240006991306 -861.2998580856272 55.3115 0.1144 12632 +12634 2 -160.86823427172607 -860.3242223603025 55.5234 0.1144 12633 +12635 2 -160.90969855489084 -859.1841185916825 55.5492 0.1144 12634 +12636 2 -160.95044064324034 -858.0409885324867 55.5979 0.1144 12635 +12637 2 -161.00327071681548 -856.8997717461897 55.7318 0.1144 12636 +12638 2 -161.05649471483528 -855.7602056638431 55.9549 0.1144 12637 +12639 2 -161.5429433720171 -854.7459571568558 56.2481 0.1144 12638 +12640 2 -162.28262583081133 -853.8899472093947 56.5995 0.1144 12639 +12641 2 -163.05138877684007 -853.0586203586236 56.9934 0.1144 12640 +12642 2 -163.82059801312627 -852.228859018953 57.4112 0.1144 12641 +12643 2 -164.5669521380755 -851.3904487553164 57.9538 0.1144 12642 +12644 2 -165.26443460015884 -850.5528694963288 58.7941 0.1144 12643 +12645 2 -165.21107594425334 -850.3643070826829 59.631 0.1144 12644 +12646 2 -164.9278113171016 -849.3549103712733 60.7485 0.1144 12645 +12647 2 -164.68259335026187 -848.3273471621523 61.8153 0.1144 12646 +12648 2 -164.485327747206 -847.2567177155878 62.6766 0.1144 12647 +12649 2 -164.299968722417 -846.1665267406072 63.3898 0.1144 12648 +12650 2 -164.1538576700499 -845.062898628254 64.0072 0.1144 12649 +12651 2 -164.1262565780602 -843.943493022711 64.5714 0.1144 12650 +12652 2 -164.15591118960373 -842.8203105913963 65.1036 0.1144 12651 +12653 2 -164.19171140012838 -841.6982059416748 65.6452 0.1144 12652 +12654 2 -164.2282666325055 -840.5792651411917 66.2236 0.1144 12653 +12655 2 -164.25903426172593 -839.4674485002872 66.8758 0.1144 12654 +12656 2 -164.35545353833535 -838.3973947758891 67.7634 0.1144 12655 +12657 2 -164.89175372704253 -837.529291350258 68.8125 0.1144 12656 +12658 2 -165.70614370349412 -836.8334136194351 69.7942 0.1144 12657 +12659 2 -166.53168914856803 -836.9607759298639 71.0898 0.1144 12658 +12660 2 -166.43821617283362 -837.1128451667507 72.1966 0.1144 12659 +12661 2 -166.21896051490648 -837.4695476288489 74.8017 0.1144 12660 +12662 2 -165.95989386479008 -837.7642174793554 77.4281 0.1144 12661 +12663 2 -165.49600648601162 -837.5314298727048 79.5514 0.1144 12662 +12664 2 -164.9915192541592 -836.7486425370269 81.1664 0.1144 12663 +12665 2 -165.03416532834316 -835.8294714580885 82.7548 0.1144 12664 +12666 2 -165.98129467876421 -835.511923660787 84.1103 0.1144 12665 +12667 2 -166.8063073269619 -834.8602546264499 85.213 0.1144 12666 +12668 2 -167.67343408648415 -834.2141651644399 86.1288 0.1144 12667 +12669 2 -168.48052159798144 -833.4843362332614 86.9912 0.1144 12668 +12670 2 -169.1002347019963 -832.5962544303219 87.8763 0.1144 12669 +12671 2 -169.91183113667046 -831.8569894188245 88.6558 0.1144 12670 +12672 2 -170.73513181880372 -831.1250360823345 89.4149 0.1144 12671 +12673 2 -171.04347927435063 -830.0858275678112 90.2166 0.1144 12672 +12674 2 -171.2571127016285 -829.0152810117243 91.0493 0.1144 12673 +12675 2 -171.5988151022787 -827.9939925317198 91.9876 0.1144 12674 +12676 2 -171.99352778151092 -827.0065792692743 93.0213 0.1144 12675 +12677 2 -172.38627482203157 -826.0313391849041 94.1256 0.1144 12676 +12678 2 -172.39944808239375 -825.9400149536649 94.6915 0.1144 12677 +12679 2 -171.80030128337972 -825.2695970815648 96.1853 0.1144 12678 +12680 2 -171.0987286534783 -824.5912723031782 97.5472 0.1144 12679 +12681 2 -171.03754876388842 -823.5788195580539 98.8319 0.1144 12680 +12682 2 -171.16843841232452 -822.5554254893138 100.0392 0.1144 12681 +12683 2 -171.4319066498465 -821.5477907897242 101.1903 0.1144 12682 +12684 2 -171.8730291062093 -820.5876132131831 102.2605 0.1144 12683 +12685 2 -172.31803209599605 -819.6190218705206 103.2763 0.1144 12684 +12686 2 -172.5781464827933 -818.8026517303383 104.8281 0.1144 12685 +12687 2 -172.83300344147926 -817.8527573622061 106.2555 0.1144 12686 +12688 2 -172.78473392955144 -816.8870933138859 107.6452 0.1144 12687 +12689 2 -172.4450891443483 -815.9277900928528 108.9068 0.1144 12688 +12690 2 -172.15477944199768 -814.95162479603 110.1422 0.1144 12689 +12691 2 -172.22581635154933 -813.9774809013813 111.4688 0.1144 12690 +12692 2 -172.64998423512185 -813.1061859016564 112.9285 0.1144 12691 +12693 2 -173.29492083292018 -812.4873854856737 114.6169 0.1144 12692 +12694 2 -174.1963047245835 -812.1350284510486 116.0726 0.1144 12693 +12695 2 -175.03493522457597 -811.5681448170616 117.3348 0.1144 12694 +12696 2 -175.79782737519696 -810.8620933978852 118.4952 0.1144 12695 +12697 2 -176.54744184758204 -810.1211177283853 119.5832 0.1144 12696 +12698 2 -177.10246094095675 -809.244330835241 120.6976 0.1144 12697 +12699 2 -177.39333155065918 -808.2467315728059 121.8339 0.1144 12698 +12700 2 -177.59251442266827 -807.2170720739916 122.9536 0.1144 12699 +12701 2 -177.7825254051205 -806.1870569883995 124.0761 0.1144 12700 +12702 2 -178.00051478369343 -805.1661402186139 125.2222 0.1144 12701 +12703 2 -178.62155172404618 -804.4441442292087 126.5331 0.1144 12702 +12704 2 -179.34200802757508 -803.8073217698799 128.0434 0.1144 12703 +12705 2 -179.54649148345516 -802.9567567539809 129.7789 0.1144 12704 +12706 2 -179.6160504838025 -802.0004853461312 131.2956 0.1144 12705 +12707 2 -179.63142974386992 -800.9530423651726 132.4212 0.1144 12706 +12708 2 -179.643284749828 -799.8807786341652 133.3984 0.1144 12707 +12709 2 -179.66767162222266 -798.7946198564283 134.2788 0.1144 12708 +12710 2 -179.7346024590066 -797.7091401177471 135.1442 0.1144 12709 +12711 2 -180.28625198666361 -796.789903065276 136.0892 0.1144 12710 +12712 2 -180.8533542471709 -795.8802817835727 137.0673 0.1144 12711 +12713 2 -181.419337286835 -794.9726723032275 138.0582 0.1144 12712 +12714 2 -181.9769417964613 -794.0786936788497 139.1158 0.1144 12713 +12715 2 -182.46225412075586 -793.3000341332922 140.7896 0.1144 12714 +12716 2 -171.6170192833115 -820.0515804058105 103.8237 0.1144 12685 +12717 2 -170.93875266545592 -820.8405200581938 104.7766 0.1144 12716 +12718 2 -170.77796213794733 -821.9125592441676 105.4206 0.1144 12717 +12719 2 -170.82739051644694 -823.029300349079 106.006 0.1144 12718 +12720 2 -170.81070003345138 -824.151061031122 106.5333 0.1144 12719 +12721 2 -170.4608747760089 -825.2117265246944 106.9827 0.1144 12720 +12722 2 -169.94787257356137 -826.2231520485389 107.319 0.1144 12721 +12723 2 -169.41227945053896 -827.230081984816 107.548 0.1144 12722 +12724 2 -168.87638620813425 -828.2394098219161 107.6771 0.1144 12723 +12725 2 -168.44320109373342 -829.2959058733338 107.595 0.1144 12724 +12726 2 -168.1180989871574 -830.379749930521 107.2198 0.1144 12725 +12727 2 -167.82752410487706 -831.455354401406 106.5795 0.1144 12726 +12728 2 -167.37363772581605 -832.4494738735535 105.7636 0.1144 12727 +12729 2 -167.5432445909092 -833.5083843519761 104.8603 0.1144 12728 +12730 2 -168.22048250144434 -834.3704768136843 104.0592 0.1144 12729 +12731 2 -168.8994977480295 -835.2363615143835 103.3012 0.1144 12730 +12732 2 -169.53611107554406 -836.0467202998797 102.0866 0.1144 12731 +12733 2 -172.776414817937 -825.5648680886989 93.5158 0.1144 12677 +12734 2 -173.4382478279946 -824.769818073418 92.3213 0.1144 12733 +12735 2 -174.1325633392566 -823.939682632167 91.4816 0.1144 12734 +12736 2 -174.84524286094455 -823.0859729863467 90.8219 0.1144 12735 +12737 2 -175.57534237600797 -822.2455533303985 90.1802 0.1144 12736 +12738 2 -176.3572836845806 -821.4344170903329 89.7058 0.1144 12737 +12739 2 -177.1646679297884 -820.6321118737288 89.425 0.1144 12738 +12740 2 -177.97769911790715 -819.8294041204672 89.3183 0.1144 12739 +12741 2 -178.7903887473939 -819.0249604704054 89.3402 0.1144 12740 +12742 2 -179.60404832526547 -818.2212304029464 89.4387 0.1144 12741 +12743 2 -180.42594818197568 -817.4279649331698 89.5698 0.1144 12742 +12744 2 -181.29986813757085 -816.6921464764752 89.7148 0.1144 12743 +12745 2 -182.16880546862808 -815.9491570050186 89.8234 0.1144 12744 +12746 2 -183.01253191931164 -815.1772896612238 89.8652 0.1144 12745 +12747 2 -183.84832682275146 -814.3965560578839 89.8456 0.1144 12746 +12748 2 -184.68309941199368 -813.6151940647912 89.7831 0.1144 12747 +12749 2 -185.5178720012359 -812.8338320716986 89.6983 0.1144 12748 +12750 2 -186.35366690467578 -812.0530984683587 89.6274 0.1144 12749 +12751 2 -187.18906788367084 -811.2707141610684 89.5868 0.1144 12750 +12752 2 -188.02384047291304 -810.4893521679758 89.5812 0.1144 12751 +12753 2 -188.84311106507545 -809.6917708010809 89.6333 0.1144 12752 +12754 2 -189.9213177801676 -809.6548096115689 89.801 0.1144 12753 +12755 2 -190.93303632061412 -809.9356954334198 90.8681 0.1144 12754 +12756 2 -167.1719101004218 -836.4586879068963 71.629 0.1144 12659 +12757 2 -168.11734459682253 -835.82727864737 71.4762 0.1144 12756 +12758 2 -169.18352159389437 -835.4821936420237 71.1418 0.1144 12757 +12759 2 -170.31284831612837 -835.3706597707186 70.8341 0.1144 12758 +12760 2 -171.43394707115974 -835.1963170580318 70.5261 0.1144 12759 +12761 2 -172.45302774081716 -834.7376516584967 70.091 0.1144 12760 +12762 2 -173.20591217913912 -833.9476253282187 69.3874 0.1144 12761 +12763 2 -173.51477949869368 -832.9383163076947 68.357 0.1144 12762 +12764 2 -173.72599488853263 -831.9173440705133 67.2151 0.1144 12763 +12765 2 -174.07968836776286 -830.9006090545184 66.2978 0.1144 12764 +12766 2 -174.55495023244674 -829.8915745357941 65.6914 0.1144 12765 +12767 2 -175.05713294297004 -828.8734985537321 65.3635 0.1144 12766 +12768 2 -175.56643430244247 -827.850525139982 65.3187 0.1144 12767 +12769 2 -176.08933058926215 -826.8424814934913 65.6177 0.1144 12768 +12770 2 -176.60170681100334 -825.8494521145734 66.2049 0.1144 12769 +12771 2 -177.01464825634923 -824.8302822451622 66.9312 0.1144 12770 +12772 2 -177.2832137526243 -823.7599301002068 67.6735 0.1144 12771 +12773 2 -177.43812838254337 -822.701651503883 68.5952 0.1144 12772 +12774 2 -177.3896774636568 -821.7145126542479 69.9924 0.1144 12773 +12775 2 -177.01282384148226 -820.9751988930788 71.2754 0.1144 12774 +12776 2 -175.88974442528306 -820.9039374384937 71.6234 0.1144 12775 +12777 2 -174.75287807965148 -820.8900521163753 71.358 0.1144 12776 +12778 2 -173.62571071472402 -820.9585433672207 70.9276 0.1144 12777 +12779 2 -172.49886880267263 -821.1118661810629 70.6342 0.1144 12778 +12780 2 -171.3678790648521 -821.2761382205117 70.5331 0.1144 12779 +12781 2 -170.23675959334895 -821.4429128924089 70.6507 0.1144 12780 +12782 2 -169.10995601896423 -821.6070582997581 70.9223 0.1144 12781 +12783 2 -167.98725341516558 -821.7710247091952 71.2715 0.1144 12782 +12784 2 -166.90828818587497 -822.1283212302836 71.5873 0.1144 12783 +12785 2 -165.85411116368448 -822.5587231190872 71.8368 0.1144 12784 +12786 2 -164.7982060696737 -822.991936371934 72.035 0.1144 12785 +12787 2 -163.7430036317026 -823.4283986668688 72.1991 0.1144 12786 +12788 2 -162.68628804844366 -823.8652220592113 72.3486 0.1144 12787 +12789 2 -161.63077687887758 -824.3000860160085 72.5063 0.1144 12788 +12790 2 -160.5752657093115 -824.7349499728057 72.6956 0.1144 12789 +12791 2 -159.4598430367828 -824.5462015645774 72.8966 0.1144 12790 +12792 2 -158.35527309166315 -824.263411366129 73.127 0.1144 12791 +12793 2 -157.2258276393207 -824.1828373617415 73.5134 0.1144 12792 +12794 2 -156.11727306236207 -824.2909407839998 74.1482 0.1144 12793 +12795 2 -155.0320034498053 -824.4027925969528 74.9834 0.1144 12794 +12796 2 -153.9664391274934 -824.5131405693674 75.9685 0.1144 12795 +12797 2 -152.91948587664038 -824.6216642558526 77.0661 0.1144 12796 +12798 2 -153.79028473030897 -824.0330008830754 78.7346 0.1144 12797 +12799 2 -154.5647082566318 -823.5071740942202 80.3466 0.1144 12798 +12800 2 -155.3257597018159 -822.9920261370437 82.0106 0.1144 12799 +12801 2 -155.81361189524097 -822.3492113523891 83.7869 0.1144 12800 +12802 2 -155.4971877284276 -821.5356476691679 85.3742 0.1144 12801 +12803 2 -155.39450500522202 -820.7501701975909 87.0531 0.1144 12802 +12804 2 -156.29200967152332 -820.5484931935292 88.4551 0.1144 12803 +12805 2 -157.1295647989689 -820.0051289892522 89.7333 0.1144 12804 +12806 2 -156.86649967882403 -819.0633173347462 90.8684 0.1144 12805 +12807 2 -156.47006571165736 -818.0850710724603 91.9492 0.1144 12806 +12808 2 -155.92333263419934 -817.1810031590747 93.0143 0.1144 12807 +12809 2 -156.40261559158535 -817.1855580201357 94.9312 0.1144 12808 +12810 2 -157.3213858383981 -817.6831602343306 96.0299 0.1144 12809 +12811 2 -158.362314220977 -817.8838702797736 96.845 0.1144 12810 +12812 2 -159.29719171739072 -817.4245080189171 97.5344 0.1144 12811 +12813 2 -159.90345365588695 -816.5080860299128 98.1098 0.1144 12812 +12814 2 -160.37524604132068 -815.4915193990189 98.6815 0.1144 12813 +12815 2 -160.91585633242812 -814.5333344935082 99.4207 0.1144 12814 +12816 2 -161.51824935660005 -813.5970446535392 100.06 0.1144 12815 +12817 2 -162.13040432241496 -812.6492654926435 100.5309 0.1144 12816 +12818 2 -162.74710965065643 -811.6961840490519 100.8742 0.1144 12817 +12819 2 -163.36523431912326 -810.7386929032795 101.1142 0.1144 12818 +12820 2 -164.06746155476475 -809.8408792925989 101.3197 0.1144 12819 +12821 2 -164.8214391878994 -808.9856743237565 101.5406 0.1144 12820 +12822 2 -165.45515414787903 -808.0377661217148 101.6977 0.1144 12821 +12823 2 -166.3167414662621 -807.2956583042101 101.8189 0.1144 12822 +12824 2 -167.39770136718158 -806.9570775862061 102.0116 0.1144 12823 +12825 2 -168.50221765040462 -806.6785200874823 102.2795 0.1144 12824 +12826 2 -169.61606940787752 -806.4634521857058 102.6312 0.1144 12825 +12827 2 -170.73222697762077 -806.2860722558803 103.0632 0.1144 12826 +12828 2 -171.8443250160277 -806.1130051215902 103.5591 0.1144 12827 +12829 2 -172.9550474678093 -805.9402662576706 104.0785 0.1144 12828 +12830 2 -174.06714550621626 -805.7671991233805 104.5867 0.1144 12829 +12831 2 -175.148733104352 -805.4516587177919 105.0692 0.1144 12830 +12832 2 -176.05083407096404 -804.7748325539673 105.5166 0.1144 12831 +12833 2 -177.12107439349182 -804.3946833305884 105.8291 0.1144 12832 +12834 2 -178.23925917781241 -804.1593895820228 105.999 0.1144 12833 +12835 2 -178.2937042098389 -804.1298220578175 106.6685 0.1144 12834 +12836 2 -179.13969533531667 -803.684256646668 108.2066 0.1144 12835 +12837 2 -180.10826594979397 -803.1744719325277 109.0001 0.1144 12836 +12838 2 -181.07161637284213 -802.6668780176578 109.8628 0.1144 12837 +12839 2 -182.0286062703767 -802.1606565878301 110.7646 0.1144 12838 +12840 2 -182.97511203145285 -801.6628981883534 111.7323 0.1144 12839 +12841 2 -183.81205789947336 -801.2211633538617 113.3048 0.1144 12840 +12842 2 -179.38964755189258 -803.9198274840584 105.9103 0.1144 12834 +12843 2 -180.28190749248176 -803.215471623417 105.7171 0.1144 12842 +12844 2 -181.25592174243707 -802.679453022169 105.4449 0.1144 12843 +12845 2 -182.32433668375796 -803.0407323644547 105.1414 0.1144 12844 +12846 2 -183.44568190198194 -802.9377912571832 104.6755 0.1144 12845 +12847 2 -184.52691931729487 -803.0356853414138 103.8579 0.1144 12846 +12848 2 -185.55786052066068 -803.4208828559472 103.1484 0.1144 12847 +12849 2 -186.63233145846783 -803.6476101454557 102.6228 0.1144 12848 +12850 2 -187.75309755116857 -803.5522949554161 102.1686 0.1144 12849 +12851 2 -188.87854984844847 -803.4102081983017 101.8133 0.1144 12850 +12852 2 -190.01415431239275 -803.3146233068705 101.5686 0.1144 12851 +12853 2 -191.1534924463492 -803.2307238640076 101.4034 0.1144 12852 +12854 2 -192.29429066724418 -803.1706111431998 101.2788 0.1144 12853 +12855 2 -193.4262739881185 -803.2688262706615 101.2057 0.1144 12854 +12856 2 -194.53012724905238 -803.5592752133789 101.2035 0.1144 12855 +12857 2 -195.61970274946367 -803.9080897757233 101.2463 0.1144 12856 +12858 2 -196.74107460924344 -804.0346443967132 101.1998 0.1144 12857 +12859 2 -197.8259410696174 -803.7508167497941 100.8759 0.1144 12858 +12860 2 -198.94365694100676 -803.7368496153549 100.4475 0.1144 12859 +12861 2 -200.05643872988801 -803.9495637435508 100.0835 0.1144 12860 +12862 2 -201.1699810512513 -804.1761267558296 99.7704 0.1144 12861 +12863 2 -202.28713351211036 -804.4035002573567 99.5168 0.1144 12862 +12864 2 -203.40517072850437 -804.6315349756736 99.3322 0.1144 12863 +12865 2 -204.52530493910626 -804.8607412806464 99.2006 0.1144 12864 +12866 2 -205.64490766660094 -805.0883297087058 99.0844 0.1144 12865 +12867 2 -206.7649043185403 -805.3175688407157 98.9696 0.1144 12866 +12868 2 -207.8852206286375 -805.5441873203903 98.8548 0.1144 12867 +12869 2 -209.00521728057691 -805.7734264524001 98.7403 0.1144 12868 +12870 2 -210.1249052009213 -806.0010672462724 98.6255 0.1144 12869 +12871 2 -211.2449542186734 -806.2302211854325 98.5107 0.1144 12870 +12872 2 -212.36495087061274 -806.4594603174423 98.3959 0.1144 12871 +12873 2 -213.48521481489732 -806.6861639899668 98.2814 0.1144 12872 +12874 2 -214.60526383264943 -806.9153179291268 98.1669 0.1144 12873 +12875 2 -215.7249517529938 -807.1429587229991 98.0521 0.1144 12874 +12876 2 -216.845576794686 -807.3711755408112 97.9376 0.1144 12875 +12877 2 -217.9655734466254 -807.6004146728212 97.823 0.1144 12876 +12878 2 -219.08526136696977 -807.8280554666934 97.7088 0.1144 12877 +12879 2 -220.20531038472188 -808.0572094058534 97.5946 0.1144 12878 +12880 2 -221.32499830506632 -808.2848501997256 97.4809 0.1144 12879 +12881 2 -222.4455709809458 -808.5131522103877 97.3675 0.1144 12880 +12882 2 -223.5656199986979 -808.7423061495479 97.2544 0.1144 12881 +12883 2 -224.68530791904232 -808.9699469434199 97.1418 0.1144 12882 +12884 2 -225.80530457098166 -809.1991860754299 97.0306 0.1144 12883 +12885 2 -226.92499249132607 -809.4268268693021 96.9206 0.1144 12884 +12886 2 -228.04561753301826 -809.6550436871144 96.8125 0.1144 12885 +12887 2 -229.16566655077037 -809.8841976262744 96.707 0.1144 12886 +12888 2 -230.2862915924626 -810.1124144440867 96.605 0.1144 12887 +12889 2 -231.4059271469943 -810.3401404308088 96.5087 0.1144 12888 +12890 2 -232.52597616474634 -810.5692943699687 96.42 0.1144 12889 +12891 2 -233.64660120643853 -810.7975111877811 96.341 0.1144 12890 +12892 2 -234.76731144098054 -811.0257803714061 96.2746 0.1144 12891 +12893 2 -235.88306887113475 -811.2792939549784 96.2242 0.1144 12892 +12894 2 -236.8926225613302 -811.8085179402747 96.22 0.1144 12893 +12895 2 -237.89076601497865 -812.3669990016712 96.2536 0.1144 12894 +12896 2 -238.8889946614769 -812.9255324288805 96.3124 0.1144 12895 +12897 2 -239.88719048093816 -813.4839282974273 96.3819 0.1144 12896 +12898 2 -240.88541912743648 -814.0424617246366 96.448 0.1144 12897 +12899 2 -241.88356258108502 -814.6009427860332 96.4956 0.1144 12898 +12900 2 -242.8817912275833 -815.1594762132424 96.5124 0.1144 12899 +12901 2 -243.87993468123176 -815.717957274639 96.4919 0.1144 12900 +12902 2 -244.90744984519577 -816.2179601124551 96.3634 0.1144 12901 +12903 2 -245.93933947525716 -816.7018709011049 96.1293 0.1144 12902 +12904 2 -246.96841774127523 -817.1840536179345 95.8157 0.1144 12903 +12905 2 -247.99550374471096 -817.6648943624087 95.4467 0.1144 12904 +12906 2 -249.02160026098616 -818.1452442757926 95.0454 0.1144 12905 +12907 2 -250.04573734171606 -818.6243897754836 94.6322 0.1144 12906 +12908 2 -251.0712578340512 -819.1056768102151 94.2276 0.1144 12907 +12909 2 -252.09641722897862 -819.5854506996588 93.8384 0.1144 12908 +12910 2 -253.1235032324143 -820.066291444133 93.469 0.1144 12909 +12911 2 -254.15155918423486 -820.5478457712097 93.1232 0.1144 12910 +12912 2 -255.2117598727475 -820.9618273530191 92.8404 0.1144 12911 +12913 2 -256.28778360157116 -821.341282403069 92.6274 0.1144 12912 +12914 2 -257.3659488654355 -821.719354041514 92.4692 0.1144 12913 +12915 2 -258.4436232982095 -822.0984151671192 92.3504 0.1144 12914 +12916 2 -259.52214965948156 -822.4779999508519 92.258 0.1144 12915 +12917 2 -260.60133723754336 -822.8566999790496 92.1799 0.1144 12916 +12918 2 -261.680577181418 -823.2353148143975 92.1043 0.1144 12917 +12919 2 -262.75976475947994 -823.6140148425952 92.0284 0.1144 12918 +12920 2 -263.8383763136017 -823.9936519921406 91.9512 0.1144 12919 +12921 2 -264.9175638916636 -824.3723520203382 91.8719 0.1144 12920 +12922 2 -265.99675146972544 -824.7510520485359 91.7902 0.1144 12921 +12923 2 -267.07496909940255 -825.129038494131 91.705 0.1144 12922 +12924 2 -268.1535282877116 -825.5087608365262 91.6143 0.1144 12923 +12925 2 -269.2327682315862 -825.8873756718741 91.5166 0.1144 12924 +12926 2 -270.31093349545057 -826.2654473103189 91.4105 0.1144 12925 +12927 2 -271.3802677358534 -826.668961885399 91.2909 0.1144 12926 +12928 2 -272.3849154768442 -827.2126600429478 91.1445 0.1144 12927 +12929 2 -273.385341125779 -827.763036069818 90.9731 0.1144 12928 +12930 2 -274.386375625691 -828.3126125340029 90.7774 0.1144 12929 +12931 2 -275.3848746661176 -828.8619217058426 90.5598 0.1144 12930 +12932 2 -276.38337370654415 -829.4112308776823 90.3106 0.1144 12931 +12933 2 -277.381478822526 -829.9588893455716 90.0421 0.1144 12932 +12934 2 -277.9849972878279 -830.9126517227073 89.7042 0.1144 12933 +12935 2 -278.4232954877916 -831.9581836150514 89.329 0.1144 12934 +12936 2 -278.8595818863973 -833.0025962865524 88.9246 0.1144 12935 +12937 2 -279.2809180023426 -834.008122083039 88.0785 0.1144 12936 +12938 2 -152.61058721608933 -824.55398569566 76.0735 0.1144 12797 +12939 2 -151.78416932711653 -824.3736179247423 74.1994 0.1144 12938 +12940 2 -150.79210950582043 -824.1787656705344 72.9739 0.1144 12939 +12941 2 -149.75031688310742 -824.029876210663 71.8794 0.1144 12940 +12942 2 -148.7213149016597 -823.8861490657785 70.7109 0.1144 12941 +12943 2 -147.68874412526986 -823.7201561691064 69.5738 0.1144 12942 +12944 2 -146.6535526965447 -823.5538436142765 68.4536 0.1144 12943 +12945 2 -145.62947648716593 -823.4721867261139 67.2269 0.1144 12944 +12946 2 -144.6099718481512 -823.4136467310038 65.9672 0.1144 12945 +12947 2 -143.58762301805615 -823.353241105411 64.7195 0.1144 12946 +12948 2 -142.53173783589898 -823.2534406439844 63.6703 0.1144 12947 +12949 2 -141.45540636979067 -823.1410723875011 62.7598 0.1144 12948 +12950 2 -141.1806187891579 -822.5504186517727 61.9867 0.1144 12949 +12951 2 -140.87696473052395 -821.4735549033462 61.4048 0.1144 12950 +12952 2 -140.4399999853992 -820.4476235696216 61.0481 0.1144 12951 +12953 2 -139.78390522013666 -819.5138957297265 61.087 0.1144 12952 +12954 2 -139.10677342630007 -818.6035076290926 61.4261 0.1144 12953 +12955 2 -138.40330162865723 -817.7359715319064 62.0138 0.1144 12954 +12956 2 -137.66906919846397 -816.9140870884154 62.7592 0.1144 12955 +12957 2 -136.89112913690167 -816.1216794656502 63.4315 0.1144 12956 +12958 2 -136.09246929587673 -815.332617099082 63.9719 0.1144 12957 +12959 2 -135.28628044426554 -814.5403354158798 64.3952 0.1144 12958 +12960 2 -134.47644001390884 -813.7431094458063 64.7242 0.1144 12959 +12961 2 -133.66464014800678 -812.9446790620398 64.9821 0.1144 12960 +12962 2 -132.85159442916213 -812.1440743161955 65.1991 0.1144 12961 +12963 2 -132.0387722490626 -811.3450155426763 65.408 0.1144 12962 +12964 2 -131.18320618281254 -810.5895247642538 65.5892 0.1144 12963 +12965 2 -130.2956039056155 -809.870684922902 65.7395 0.1144 12964 +12966 2 -129.402246852299 -809.1591067997914 65.8871 0.1144 12965 +12967 2 -128.51566688929955 -808.4408953481925 66.0806 0.1144 12966 +12968 2 -127.71219249508599 -807.6529819279215 66.5384 0.1144 12967 +12969 2 -126.96089737480531 -806.8500720623434 67.3081 0.1144 12968 +12970 2 -126.24216384010884 -806.0510957885388 68.2637 0.1144 12969 +12971 2 -125.59164995523514 -805.2175201017612 69.2902 0.1144 12970 +12972 2 -125.38422848609153 -804.1567292721732 70.196 0.1144 12971 +12973 2 -125.33648914920897 -803.0504168363243 70.8949 0.1144 12972 +12974 2 -125.28861156112725 -801.9681998541255 71.797 0.1144 12973 +12975 2 -140.87996611317442 -823.1902150478425 62.2107 0.1144 12949 +12976 2 -139.77252524642924 -823.285621633898 62.5411 0.1144 12975 +12977 2 -138.6407544607259 -823.3835629869022 62.8463 0.1144 12976 +12978 2 -137.50644821553703 -823.4812370475614 63.1266 0.1144 12977 +12979 2 -136.37374030848588 -823.5786023766257 63.4192 0.1144 12978 +12980 2 -135.23493234957482 -823.5218534319599 63.6289 0.1144 12979 +12981 2 -134.12367291603442 -823.2631227585416 63.686 0.1144 12980 +12982 2 -133.01759292721002 -822.9740048616168 63.6054 0.1144 12981 +12983 2 -131.91846971915157 -822.6582919801765 63.5337 0.1144 12982 +12984 2 -130.82759289840183 -822.3140770444882 63.5975 0.1144 12983 +12985 2 -129.73979473404046 -821.9690547211349 63.7857 0.1144 12984 +12986 2 -128.68598300611842 -821.6342413222186 64.5053 0.1144 12985 +12987 2 -165.38617177916143 -850.3416412802957 58.8235 0.1144 12644 +12988 2 -165.95614216148473 -849.3532597682903 58.6659 0.1144 12987 +12989 2 -166.52674093356092 -848.3638559420872 58.5578 0.1144 12988 +12990 2 -167.09890521673768 -847.3740058256268 58.4545 0.1144 12989 +12991 2 -167.6699948199041 -846.3836125122632 58.3408 0.1144 12990 +12992 2 -168.24122198173316 -845.3931863718626 58.2246 0.1144 12991 +12993 2 -168.8124491435622 -844.4027602314621 58.1118 0.1144 12992 +12994 2 -169.38456106092616 -843.4129953078514 58.0084 0.1144 12993 +12995 2 -169.87413833126269 -842.3804803896203 57.9208 0.1144 12994 +12996 2 -170.3089217838012 -841.3236756066075 57.8584 0.1144 12995 +12997 2 -170.81885153302645 -840.2996798786598 57.8416 0.1144 12996 +12998 2 -171.34593708486503 -839.2848208041854 57.8542 0.1144 12997 +12999 2 -171.76133800689962 -838.2202104134918 57.8438 0.1144 12998 +13000 2 -171.42057130771826 -837.168777982601 57.6366 0.1144 12999 +13001 2 -170.97416497164494 -836.1276526908548 57.2499 0.1144 13000 +13002 2 -170.88561145870332 -835.0592863092488 56.9388 0.1144 13001 +13003 2 -170.94350934966613 -833.9252929035264 56.6149 0.1144 13002 +13004 2 -171.0854369265899 -832.798580423384 56.2654 0.1144 13003 +13005 2 -171.3007748087041 -831.6794294967765 56.037 0.1144 13004 +13006 2 -171.52899162651636 -830.5588044550843 55.93 0.1144 13005 +13007 2 -171.75720844432863 -829.438179413392 55.8978 0.1144 13006 +13008 2 -171.88670957897796 -828.3011289676665 55.9056 0.1144 13007 +13009 2 -171.68647453781534 -827.1763224739573 55.9647 0.1144 13008 +13010 2 -170.46681066245617 -827.2578000852616 55.8575 0.1144 13009 +13011 2 -169.3263334847923 -827.267166900508 55.6492 0.1144 13010 +13012 2 -168.18924980358184 -827.2383580142962 55.3554 0.1144 13011 +13013 2 -167.05538543900536 -827.2020201174981 54.994 0.1144 13012 +13014 2 -166.0221384233693 -826.7791346310138 54.5672 0.1144 13013 +13015 2 -165.30293498143143 -825.9327998396311 54.0882 0.1144 13014 +13016 2 -164.9144455656813 -824.8870129665781 53.536 0.1144 13015 +13017 2 -164.6106617733647 -823.8126518506 52.9357 0.1144 13016 +13018 2 -164.4713278113146 -822.7023904097584 52.3516 0.1144 13017 +13019 2 -164.80480775539195 -821.6289781232169 51.8893 0.1144 13018 +13020 2 -165.29254912069962 -820.6061337506129 51.5278 0.1144 13019 +13021 2 -166.08754836288261 -819.7976243660487 51.2134 0.1144 13020 +13022 2 -166.92035841499649 -819.0217467551472 50.9345 0.1144 13021 +13023 2 -167.75504270980582 -818.247021192126 50.6752 0.1144 13022 +13024 2 -168.57693946493305 -817.4604445182338 50.3835 0.1144 13023 +13025 2 -169.24584458250823 -816.5448484316968 50.0178 0.1144 13024 +13026 2 -169.7036212966155 -816.5013218878279 49.8618 0.1144 13025 +13027 2 -170.8085339133297 -816.2417889237834 49.6171 0.1144 13026 +13028 2 -171.8507729152895 -815.7826857515073 49.4788 0.1144 13027 +13029 2 -172.8298375688148 -815.1947199325881 49.4001 0.1144 13028 +13030 2 -173.6857200678446 -814.442414809746 49.3702 0.1144 13029 +13031 2 -174.4608990067828 -813.6029414851986 49.3587 0.1144 13030 +13032 2 -175.23670633547385 -812.7624458464536 49.331 0.1144 13031 +13033 2 -176.0784733506121 -811.9893740889659 49.3511 0.1144 13032 +13034 2 -176.91849585673745 -811.2126476511496 49.4253 0.1144 13033 +13035 2 -177.62210650398416 -810.3169755755096 49.5197 0.1144 13034 +13036 2 -178.09091473062853 -809.2812023104412 49.6255 0.1144 13035 +13037 2 -178.32461282904893 -808.1692286017616 49.845 0.1144 13036 +13038 2 -178.51402555565028 -807.0462323778136 50.0909 0.1144 13037 +13039 2 -178.90862460695564 -805.9782260816202 50.286 0.1144 13038 +13040 2 -179.69605029771947 -805.1690523786829 50.4409 0.1144 13039 +13041 2 -180.59958773428605 -804.4702199304361 50.5618 0.1144 13040 +13042 2 -181.6317707836905 -803.9860373279789 50.6601 0.1144 13041 +13043 2 -182.39006672299013 -803.1455769253175 50.7424 0.1144 13042 +13044 2 -183.10979131987693 -802.2586358649105 50.8603 0.1144 13043 +13045 2 -183.91575071422974 -801.4500553156425 51.0306 0.1144 13044 +13046 2 -184.78210021998876 -800.7068837446907 51.235 0.1144 13045 +13047 2 -185.5876547633339 -799.9008714819452 51.4478 0.1144 13046 +13048 2 -186.19763295802454 -798.9369643432633 51.6354 0.1144 13047 +13049 2 -186.7102771646475 -797.9173368782467 51.8045 0.1144 13048 +13050 2 -187.0367243451621 -796.8248117625932 52.0019 0.1144 13049 +13051 2 -187.325522583929 -795.721352426104 52.2222 0.1144 13050 +13052 2 -187.34952784351512 -794.5811987007177 52.4014 0.1144 13051 +13053 2 -187.2646389134917 -793.441369735671 52.5274 0.1144 13052 +13054 2 -187.14875080740143 -792.3038496844777 52.6078 0.1144 13053 +13055 2 -187.1319401744185 -791.1602055559924 52.6453 0.1144 13054 +13056 2 -186.9724303223456 -790.0281520647246 52.645 0.1144 13055 +13057 2 -186.82543830856315 -788.8931113130843 52.621 0.1144 13056 +13058 2 -186.90236383578835 -787.7520327779864 52.5868 0.1144 13057 +13059 2 -187.05525466646503 -786.6185603372562 52.5157 0.1144 13058 +13060 2 -187.21771131114326 -785.4870941872543 52.4082 0.1144 13059 +13061 2 -187.32520616137037 -784.3486072715743 52.3183 0.1144 13060 +13062 2 -187.41491371764818 -783.2086948125027 52.2508 0.1144 13061 +13063 2 -187.59973774415627 -782.0801782777434 52.204 0.1144 13062 +13064 2 -187.8340149680999 -780.9605786518318 52.1766 0.1144 13063 +13065 2 -188.2674673748459 -779.9015471409285 52.166 0.1144 13064 +13066 2 -188.97766208635124 -779.0060485525713 52.1651 0.1144 13065 +13067 2 -189.98206115076664 -778.4578355653103 52.1651 0.1144 13066 +13068 2 -190.89682061591478 -777.771300518192 52.1651 0.1144 13067 +13069 2 -169.45912332832893 -816.3617170401192 49.3511 0.1144 13025 +13070 2 -170.11221671094108 -815.578784735518 48.1698 0.1144 13069 +13071 2 -170.83130912395535 -814.7236174118057 47.6073 0.1144 13070 +13072 2 -171.68620454487115 -813.9881952886021 47.1859 0.1144 13071 +13073 2 -172.33733098070977 -813.0751698976342 46.7292 0.1144 13072 +13074 2 -172.1438959543117 -812.013585708527 46.1874 0.1144 13073 +13075 2 -171.86292652661893 -810.9196770922788 45.747 0.1144 13074 +13076 2 -171.7630257380693 -809.7867018928824 45.4507 0.1144 13075 +13077 2 -171.93871931427026 -808.6619635689681 45.2088 0.1144 13076 +13078 2 -171.85316916745694 -807.5230193594564 45.1167 0.1144 13077 +13079 2 -171.34559066580627 -806.5006358968251 45.213 0.1144 13078 +13080 2 -170.91958986697102 -805.4438819758994 45.453 0.1144 13079 +13081 2 -170.53000146169003 -804.375821526079 45.7744 0.1144 13080 +13082 2 -170.06644173204984 -803.3429334115883 46.1664 0.1144 13081 +13083 2 -169.52443870746723 -802.41360155948 47.117 0.1144 13082 +13084 2 -172.2337181574111 -826.2249146587635 56.4334 0.1144 13009 +13085 2 -172.6343776148478 -825.1579337783508 56.5278 0.1144 13084 +13086 2 -172.91294021061054 -824.0493566677076 56.588 0.1144 13085 +13087 2 -173.17893570385323 -822.9371632144025 56.6829 0.1144 13086 +13088 2 -173.40754644611027 -821.8181888766608 56.8523 0.1144 13087 +13089 2 -173.6163448047985 -820.6963094645093 57.0119 0.1144 13088 +13090 2 -173.82420604213902 -819.5738540284178 56.9237 0.1144 13089 +13091 2 -174.02363328204592 -818.4718034370278 56.3926 0.1144 13090 +13092 2 -174.4984512655188 -817.4785772379319 55.6982 0.1144 13091 +13093 2 -175.15069071903434 -816.5769176373742 55.0572 0.1144 13092 +13094 2 -175.5331158997277 -815.5310083290823 54.4779 0.1144 13093 +13095 2 -175.5377379362734 -814.4071116226282 54.0445 0.1144 13094 +13096 2 -175.79740262945643 -813.3031170089122 53.7541 0.1144 13095 +13097 2 -176.30269682340526 -812.2843711978476 53.536 0.1144 13096 +13098 2 -176.97169023541332 -811.3621386812392 53.305 0.1144 13097 +13099 2 -177.7066080977851 -810.4898186564967 53.0788 0.1144 13098 +13100 2 -178.53064638795303 -809.7018585709992 52.8917 0.1144 13099 +13101 2 -179.57978841979275 -809.2643708602836 52.7414 0.1144 13100 +13102 2 -179.87944689719703 -808.1957584062482 52.6201 0.1144 13101 +13103 2 -179.90776805390158 -807.052975416314 52.5392 0.1144 13102 +13104 2 -179.9953012481016 -805.914308810185 52.4087 0.1144 13103 +13105 2 -180.5559207429558 -804.9214707408156 52.1651 0.1144 13104 +13106 2 -170.86497918016966 -836.1087825308155 56.6328 0.1144 13001 +13107 2 -169.80265267160922 -835.9298990793457 55.7519 0.1144 13106 +13108 2 -168.68665397514033 -835.7420877924651 55.3515 0.1144 13107 +13109 2 -167.60178450217256 -835.4230460920204 54.9214 0.1144 13108 +13110 2 -166.55843157721492 -834.9925401989337 54.4771 0.1144 13109 +13111 2 -165.53429449648505 -834.5133946992428 54.0436 0.1144 13110 +13112 2 -164.5759983720939 -833.9095652051163 53.6556 0.1144 13111 +13113 2 -163.57927666771732 -833.3640482722677 53.3226 0.1144 13112 +13114 2 -162.53052765500126 -832.9249434119813 53.0286 0.1144 13113 +13115 2 -161.47960428020755 -832.4870844046375 52.7629 0.1144 13114 +13116 2 -160.42711539431323 -832.049671687551 52.5168 0.1144 13115 +13117 2 -159.36825977973913 -831.6270090472752 52.2824 0.1144 13116 +13118 2 -158.40149562892537 -832.1970640417287 51.9445 0.1144 13117 +13119 2 -157.4818227033444 -832.7691845884261 51.0432 0.1144 13118 +13120 2 -112.73214318635195 -950.3936881275122 62.9773 0.1144 12540 +13121 2 -112.04367913936377 -949.6764685544352 61.668 0.1144 13120 +13122 2 -111.20637268335099 -948.9871356677112 60.8199 0.1144 13121 +13123 2 -110.28366133353677 -948.393206366427 60.027 0.1144 13122 +13124 2 -109.33457094971291 -947.8553691016962 59.1968 0.1144 13123 +13125 2 -108.32312108668481 -947.5238225671337 58.2439 0.1144 13124 +13126 2 -107.58419144833817 -946.9433201988586 56.9246 0.1144 13125 +13127 2 -107.361450986931 -946.7419654451226 54.7845 0.1144 13126 +13128 2 -106.58928311530593 -946.0014667023619 53.8328 0.1144 13127 +13129 2 -106.09001777370759 -945.0419444469251 53.3383 0.1144 13128 +13130 2 -106.35135919687147 -944.0007227459705 52.449 0.1144 13129 +13131 2 -106.98755926880742 -943.3873512447832 50.9617 0.1144 13130 +13132 2 -107.12250615135022 -944.2733012201722 49.677 0.1144 13131 +13133 2 -106.44190979048855 -945.1051787613897 48.7236 0.1144 13132 +13134 2 -105.73911884254318 -945.951585249719 47.9503 0.1144 13133 +13135 2 -105.16893422622402 -946.918354401747 47.416 0.1144 13134 +13136 2 -104.61459006403359 -947.9097676202616 47.0716 0.1144 13135 +13137 2 -103.87188131466368 -948.7664997625379 46.7208 0.1144 13136 +13138 2 -102.84219538707805 -949.2401270638329 46.3523 0.1144 13137 +13139 2 -101.80722120494252 -949.6982962163443 45.9603 0.1144 13138 +13140 2 -100.73912000840892 -950.0596881973892 45.5487 0.1144 13139 +13141 2 -99.67829023760683 -949.6707915563906 45.1248 0.1144 13140 +13142 2 -98.65024248955109 -949.2940632753744 44.3122 0.1144 13141 +13143 2 -108.05547208453964 -946.6112382632742 56.287 0.1144 13126 +13144 2 -108.77942048999233 -945.7590557908878 55.7606 0.1144 13143 +13145 2 -109.35202013686364 -944.7749901760008 55.5307 0.1144 13144 +13146 2 -109.93259818616178 -943.7890205929643 55.5601 0.1144 13145 +13147 2 -110.4467196094524 -942.7755832677619 55.8522 0.1144 13146 +13148 2 -110.54216342704737 -941.6941309259164 56.6387 0.1144 13147 +13149 2 -110.36899568668815 -940.64101356128 57.6279 0.1144 13148 +13150 2 -110.29029310235899 -939.5304588020629 58.2263 0.1144 13149 +13151 2 -110.29589129045567 -938.3938980864431 58.4892 0.1144 13150 +13152 2 -109.96051516840305 -937.3403795879074 58.5796 0.1144 13151 +13153 2 -109.21150052689876 -936.487928230461 58.5698 0.1144 13152 +13154 2 -108.21598564526155 -935.957825692796 58.5178 0.1144 13153 +13155 2 -107.10843084881594 -935.679891486786 58.4926 0.1144 13154 +13156 2 -105.98115465636965 -935.486556787511 58.5208 0.1144 13155 +13157 2 -104.84244971257408 -935.3882009998036 58.6174 0.1144 13156 +13158 2 -103.70078043285346 -935.3471830068963 58.7121 0.1144 13157 +13159 2 -102.60759099882677 -935.0283093778008 58.7924 0.1144 13158 +13160 2 -101.7136051649945 -934.6345639538184 59.1321 0.1144 13159 +13161 2 -101.10594509421028 -935.5838148207522 59.3737 0.1144 13160 +13162 2 -100.22882054266378 -936.2921918750632 59.4908 0.1144 13161 +13163 2 -99.22460357774378 -936.8378170370258 59.5851 0.1144 13162 +13164 2 -98.20555986067987 -937.3554302832945 59.6635 0.1144 13163 +13165 2 -97.17845013929278 -937.8575213011708 59.7307 0.1144 13164 +13166 2 -96.16412175442161 -938.3848410216864 59.8349 0.1144 13165 +13167 2 -95.20149311774088 -938.9962910342322 60.0135 0.1144 13166 +13168 2 -94.22728445665399 -939.5872417044774 60.2174 0.1144 13167 +13169 2 -93.19265424219705 -940.0645205845178 60.4128 0.1144 13168 +13170 2 -92.07732257492123 -940.1792573352644 60.5377 0.1144 13169 +13171 2 -91.04536516582789 -939.7544647790476 60.6057 0.1144 13170 +13172 2 -89.99413305943924 -939.315007433566 60.5374 0.1144 13171 +13173 2 -88.88361702865166 -939.0877222264719 60.2182 0.1144 13172 +13174 2 -87.7757264682923 -938.8955043389935 59.6966 0.1144 13173 +13175 2 -86.68124632673835 -938.7034302133437 59.0366 0.1144 13174 +13176 2 -85.59352924735543 -938.5156305455628 58.2985 0.1144 13175 +13177 2 -84.51054152831142 -938.326629565672 57.5274 0.1144 13176 +13178 2 -83.42496598396912 -938.1374464862856 56.7736 0.1144 13177 +13179 2 -82.333776323753 -937.9488035022194 56.0703 0.1144 13178 +13180 2 -81.23960732284053 -937.7757015454363 55.4322 0.1144 13179 +13181 2 -80.29779597010827 -938.3315144238986 54.924 0.1144 13180 +13182 2 -79.81503722933854 -939.3615298112645 54.6627 0.1144 13181 +13183 2 -79.41251214141897 -940.4313548827577 54.5485 0.1144 13182 +13184 2 -79.10388198030765 -941.5321318963496 54.5664 0.1144 13183 +13185 2 -78.60471425501217 -942.4513484334198 54.558 0.1144 13184 +13186 2 -77.68526527091743 -942.2890379419318 53.9174 0.1144 13185 +13187 2 -76.95672375572644 -943.0001226349489 53.0074 0.1144 13186 +13188 2 -76.23479195203979 -943.6721914118057 52.0318 0.1144 13187 +13189 2 -75.44002394978676 -942.9728525292926 51.0983 0.1144 13188 +13190 2 -75.17587525333022 -941.9497342584361 50.1421 0.1144 13189 +13191 2 -75.34779882245093 -940.9206915302752 49.0857 0.1144 13190 +13192 2 -75.02093537376382 -939.9866170118814 48.0872 0.1144 13191 +13193 2 -74.77105913998471 -939.7967539881187 46.3529 0.1144 13192 +13194 2 -74.57738396537715 -940.5814212722212 44.8879 0.1144 13193 +13195 2 -73.74535355838802 -941.2557742449628 43.9396 0.1144 13194 +13196 2 -72.7438811847677 -941.7117642173034 43.1864 0.1144 13195 +13197 2 -71.76518994028623 -942.2488989378115 42.5762 0.1144 13196 +13198 2 -71.0031164826782 -943.0561662635528 41.9602 0.1144 13197 +13199 2 -71.08199875745623 -944.1467593667428 41.3126 0.1144 13198 +13200 2 -70.55551867092305 -945.0907404939292 40.6445 0.1144 13199 +13201 2 -69.56160583255394 -945.13913594542 39.2641 0.1144 13200 +13202 2 -91.06315510864218 -1001.5089617512352 68.3337 0.1144 12487 +13203 2 -91.72691911916806 -1000.634575481712 68.8201 0.1144 13202 +13204 2 -92.55421196205359 -999.8565977750196 69.1634 0.1144 13203 +13205 2 -93.05033116486254 -998.8441851730612 69.4966 0.1144 13204 +13206 2 -93.5119269374953 -997.8092607349076 69.8874 0.1144 13205 +13207 2 -94.0136602561781 -996.7963080376293 70.3035 0.1144 13206 +13208 2 -94.76834295439886 -995.9617259416038 70.7638 0.1144 13207 +13209 2 -95.5642731147635 -995.167170172748 71.2678 0.1144 13208 +13210 2 -96.1977560184815 -994.2393088195832 71.7959 0.1144 13209 +13211 2 -96.69792623511023 -993.2441762432911 72.4052 0.1144 13210 +13212 2 -97.0267291846614 -992.1718800760098 72.9529 0.1144 13211 +13213 2 -97.251817389319 -991.0695214455612 73.4012 0.1144 13212 +13214 2 -97.24703927416584 -989.9345645787089 73.7307 0.1144 13213 +13215 2 -97.16705870239355 -988.7976352721383 73.9505 0.1144 13214 +13216 2 -97.24277671434268 -987.66520496847 74.088 0.1144 13215 +13217 2 -97.64704631127515 -986.5990345773054 74.1891 0.1144 13216 +13218 2 -98.0501874773114 -985.5805314353137 74.2913 0.1144 13217 +13219 2 -97.74507333173887 -984.479880964832 74.366 0.1144 13218 +13220 2 -97.61410628062706 -983.384270285109 74.3719 0.1144 13219 +13221 2 -97.90077391091631 -982.2779753697522 74.3618 0.1144 13220 +13222 2 -98.20726253698695 -981.1785817677654 74.4047 0.1144 13221 +13223 2 -98.22434694442728 -980.0584717896729 74.5195 0.1144 13222 +13224 2 -98.29859255780173 -978.9545990076483 74.6208 0.1144 13223 +13225 2 -98.49298790894102 -977.8387737984621 74.65 0.1144 13224 +13226 2 -98.72343386369033 -976.7341915417063 74.5721 0.1144 13225 +13227 2 -99.18174225656844 -975.6891471660851 74.4313 0.1144 13226 +13228 2 -99.37475350356593 -974.5952430484714 74.333 0.1144 13227 +13229 2 -99.48990399647892 -973.4641616128612 74.3453 0.1144 13228 +13230 2 -99.63699078680642 -972.3313472873377 74.4142 0.1144 13229 +13231 2 -99.79594202361443 -971.1989002623881 74.4965 0.1144 13230 +13232 2 -100.00241984934976 -970.074303291256 74.5833 0.1144 13231 +13233 2 -99.96586489591868 -968.9454030364151 74.655 0.1144 13232 +13234 2 -99.89523831319858 -967.8062414913245 74.7222 0.1144 13233 +13235 2 -100.01773881878572 -966.6742784017625 74.8023 0.1144 13234 +13236 2 -100.24746878188583 -965.5532922626627 74.8552 0.1144 13235 +13237 2 -100.34657959144559 -964.4177511681053 74.8756 0.1144 13236 +13238 2 -100.38569051462028 -963.2747922818419 74.8689 0.1144 13237 +13239 2 -100.15823140665285 -962.1681139481774 74.9535 0.1144 13238 +13240 2 -100.02438251933069 -961.0357524178511 75.1117 0.1144 13239 +13241 2 -99.88580427166966 -959.9045921996349 75.3234 0.1144 13240 +13242 2 -100.07660040987614 -958.7837375107275 75.5353 0.1144 13241 +13243 2 -100.43962185212817 -957.7016034190063 75.7117 0.1144 13242 +13244 2 -100.61393201672394 -956.5747235600513 75.8988 0.1144 13243 +13245 2 -100.97985001586903 -955.494369905963 76.0578 0.1144 13244 +13246 2 -101.38879660732758 -954.4270833955384 76.1734 0.1144 13245 +13247 2 -101.76843375687295 -953.3484718414167 76.2538 0.1144 13246 +13248 2 -101.71945236116747 -952.2092336209927 76.3157 0.1144 13247 +13249 2 -102.10336947921118 -951.1345440395446 76.3652 0.1144 13248 +13250 2 -102.02289025136866 -949.9961344147233 76.4086 0.1144 13249 +13251 2 -102.51001725506958 -948.9634045699597 76.4604 0.1144 13250 +13252 2 -102.40495174248659 -947.8258461810998 76.531 0.1144 13251 +13253 2 -102.4014663354593 -946.6822934486306 76.6256 0.1144 13252 +13254 2 -102.21115721139569 -945.2923212592332 76.634 0.1144 13253 +13255 2 -101.99991747723055 -944.1701409284886 76.7931 0.1144 13254 +13256 2 -101.50847005494916 -943.1388918988489 76.9507 0.1144 13255 +13257 2 -101.22220144614366 -942.0337441242899 77.1131 0.1144 13256 +13258 2 -101.09784410653626 -940.8991175284066 77.2878 0.1144 13257 +13259 2 -101.16541564470919 -939.7602712318289 77.5074 0.1144 13258 +13260 2 -101.40467549319081 -938.6478426206791 77.7932 0.1144 13259 +13261 2 -101.18587583301141 -938.250067195715 78.0363 0.1144 13260 +13262 2 -100.96147515012021 -937.1668668525106 78.5708 0.1144 13261 +13263 2 -101.28808660786444 -936.1134131204132 79.0885 0.1144 13262 +13264 2 -101.76189389623934 -935.0912769144783 79.5847 0.1144 13263 +13265 2 -102.13430456362713 -934.0244219736285 80.0058 0.1144 13264 +13266 2 -102.79024555265443 -933.1102476363635 80.3426 0.1144 13265 +13267 2 -103.69532826900931 -932.4352542759846 80.6854 0.1144 13266 +13268 2 -104.2399104895567 -931.4553303783968 81.0247 0.1144 13267 +13269 2 -104.14188084211949 -930.3301960227648 81.289 0.1144 13268 +13270 2 -103.99916879683539 -929.1990772437982 81.541 0.1144 13269 +13271 2 -104.00200798670147 -928.0607032635083 81.7981 0.1144 13270 +13272 2 -104.06636330982346 -926.9226971816328 82.0372 0.1144 13271 +13273 2 -104.55807901361763 -925.8954876476806 82.2114 0.1144 13272 +13274 2 -104.96002807759703 -924.8265996975351 82.3273 0.1144 13273 +13275 2 -105.31521177766777 -923.7396479510422 82.4015 0.1144 13274 +13276 2 -105.56869253420297 -922.6237529622256 82.4401 0.1144 13275 +13277 2 -105.82314323912303 -921.5085715560114 82.4547 0.1144 13276 +13278 2 -106.26884309023126 -920.4557770401052 82.4578 0.1144 13277 +13279 2 -106.85325481777028 -919.4721639186419 82.4592 0.1144 13278 +13280 2 -107.40693225254117 -918.4709504208176 82.4611 0.1144 13279 +13281 2 -107.87841659891654 -917.428722825173 82.4639 0.1144 13280 +13282 2 -108.28446663348205 -916.3596558771153 82.4678 0.1144 13281 +13283 2 -108.74259602844785 -915.3105105309081 82.4732 0.1144 13282 +13284 2 -109.18187437601705 -914.2551774539335 82.4802 0.1144 13283 +13285 2 -109.55759265447185 -913.1741570724258 82.4902 0.1144 13284 +13286 2 -109.7928921926131 -912.0551858362671 82.5054 0.1144 13285 +13287 2 -110.01407865590915 -910.9328217961917 82.5261 0.1144 13286 +13288 2 -109.7442053172351 -909.822961791023 82.5538 0.1144 13287 +13289 2 -109.25119238385312 -908.7921590516407 82.5871 0.1144 13288 +13290 2 -108.78412173571314 -907.7476050273575 82.6414 0.1144 13289 +13291 2 -108.45169281985645 -906.6543453162631 82.7579 0.1144 13290 +13292 2 -108.44980575096676 -905.510483852199 82.8517 0.1144 13291 +13293 2 -108.73633582259347 -904.4042217638791 82.9226 0.1144 13292 +13294 2 -108.57429051103509 -903.2719009802662 82.9724 0.1144 13293 +13295 2 -108.28985470567534 -902.1637714559643 83.0024 0.1144 13294 +13296 2 -107.8445620798156 -901.1099493280153 83.0155 0.1144 13295 +13297 2 -101.60942283805932 -937.5086831828613 76.4837 0.1144 13260 +13298 2 -101.40699871413631 -936.4200929550649 75.9072 0.1144 13297 +13299 2 -101.51977871733013 -935.3037529840526 75.4034 0.1144 13298 +13300 2 -101.47360248250163 -934.1796204272173 74.9081 0.1144 13299 +13301 2 -101.55106500346372 -933.0508448038775 74.4876 0.1144 13300 +13302 2 -101.76399956882162 -931.9462977832053 73.9906 0.1144 13301 +13303 2 -101.05272285603442 -931.0740815899098 73.5305 0.1144 13302 +13304 2 -100.1644415397817 -930.3977857129474 72.919 0.1144 13303 +13305 2 -102.57686308896047 -946.2395895533899 76.7071 0.1144 13253 +13306 2 -102.87608689520681 -945.1411299711679 76.9157 0.1144 13305 +13307 2 -103.20386512151396 -944.0508315834047 77.1826 0.1144 13306 +13308 2 -103.6121473945995 -942.9911186243992 77.5099 0.1144 13307 +13309 2 -104.0381943212756 -941.9397427561819 77.8786 0.1144 13308 +13310 2 -104.4650486356168 -940.8914455443529 78.2698 0.1144 13309 +13311 2 -104.88343681802391 -939.8393529919498 78.6649 0.1144 13310 +13312 2 -105.25023647112093 -938.7663493505356 79.0322 0.1144 13311 +13313 2 -105.57080224341647 -937.6768997896875 79.3618 0.1144 13312 +13314 2 -105.88094244823256 -936.5824504745719 79.6673 0.1144 13313 +13315 2 -106.20163795421081 -935.4904982812753 79.9688 0.1144 13314 +13316 2 -106.59547888208067 -934.4260169317278 80.3009 0.1144 13315 +13317 2 -107.08982074883963 -933.4098120907781 80.7089 0.1144 13316 +13318 2 -107.5070014159707 -932.3663677698046 81.2162 0.1144 13317 +13319 2 -107.7765954296095 -931.2832664228338 81.8082 0.1144 13318 +13320 2 -107.9456026189728 -930.1758988280652 82.3665 0.1144 13319 +13321 2 -108.073573478605 -929.0568060619886 82.864 0.1144 13320 +13322 2 -108.36686591986614 -927.9788810581506 83.4243 0.1144 13321 +13323 2 -109.37378333172273 -927.6645125233066 84.201 0.1144 13322 +13324 2 -110.13847985071249 -926.8749386864522 84.9358 0.1144 13323 +13325 2 -110.75984745279743 -925.9557115365708 85.6086 0.1144 13324 +13326 2 -111.51051678232852 -925.1387346349992 86.2523 0.1144 13325 +13327 2 -112.4095446031817 -924.4734008936844 86.8353 0.1144 13326 +13328 2 -113.32732346320279 -923.8235838701321 87.358 0.1144 13327 +13329 2 -114.21321977669527 -923.1272892904171 87.8284 0.1144 13328 +13330 2 -115.07261009264187 -922.3933388732518 88.2734 0.1144 13329 +13331 2 -115.93298989574893 -921.6598792871766 88.704 0.1144 13330 +13332 2 -116.79804359179903 -920.9319923777257 89.1201 0.1144 13331 +13333 2 -117.70116997419169 -920.2491058077696 89.5084 0.1144 13332 +13334 2 -118.64678346850474 -919.6217975188295 89.8484 0.1144 13333 +13335 2 -119.47866190990038 -918.8560289188326 90.1505 0.1144 13334 +13336 2 -120.06515660350115 -917.8844951703823 90.4428 0.1144 13335 +13337 2 -120.45851531249343 -916.8249995469557 90.8323 0.1144 13336 +13338 2 -120.72921993476265 -915.7358901596662 91.3651 0.1144 13337 +13339 2 -121.05031177423211 -914.6629625010489 91.9444 0.1144 13338 +13340 2 -121.40481402620065 -913.6011808882163 92.5168 0.1144 13339 +13341 2 -121.75861362212959 -912.5361502332958 93.0574 0.1144 13340 +13342 2 -122.11543089642154 -911.4664011445993 93.5329 0.1144 13341 +13343 2 -122.47679853314006 -910.391349773207 93.8865 0.1144 13342 +13344 2 -122.84783981706872 -909.3114455109594 94.0276 0.1144 13343 +13345 2 -123.22488914131597 -908.2326518573423 93.9403 0.1144 13344 +13346 2 -123.60060431818772 -907.1583202717187 93.6821 0.1144 13345 +13347 2 -124.0691945167165 -906.1316860691702 93.3229 0.1144 13346 +13348 2 -124.81607470883961 -905.3097977077643 92.9552 0.1144 13347 +13349 2 -125.78591510699525 -904.7215614949168 92.6503 0.1144 13348 +13350 2 -126.82833310686732 -904.2665592932268 92.3983 0.1144 13349 +13351 2 -127.93127087481699 -904.0648549550726 92.1264 0.1144 13350 +13352 2 -128.93694622785057 -903.7175606356536 91.709 0.1144 13351 +13353 2 -129.35682593916013 -902.7375176171944 91.175 0.1144 13352 +13354 2 -129.49879185375056 -901.6216277305593 90.6637 0.1144 13353 +13355 2 -129.59072854696532 -900.4977580564241 90.1992 0.1144 13354 +13356 2 -129.6103100762244 -899.3670927771695 89.7907 0.1144 13355 +13357 2 -129.59898072384962 -898.2320999816969 89.4482 0.1144 13356 +13358 2 -129.59504592498178 -897.0936705340113 89.175 0.1144 13357 +13359 2 -129.75095994465107 -895.9661646943499 88.9907 0.1144 13358 +13360 2 -129.98719660414002 -894.8477694821312 88.8866 0.1144 13359 +13361 2 -130.33734221227698 -893.7604207096105 88.8516 0.1144 13360 +13362 2 -130.81600308404379 -892.7238955242727 88.8787 0.1144 13361 +13363 2 -131.33724315628345 -891.7055607673822 88.9532 0.1144 13362 +13364 2 -131.86179324863662 -890.6904344005625 89.0574 0.1144 13363 +13365 2 -132.155135646664 -889.5950503731458 89.1635 0.1144 13364 +13366 2 -132.31497163900704 -888.4632645649862 89.2592 0.1144 13365 +13367 2 -132.4652222785728 -887.3296952176104 89.3474 0.1144 13366 +13368 2 -132.9027256991385 -886.2879437323734 89.4566 0.1144 13367 +13369 2 -133.47100393826173 -885.2958223471896 89.5947 0.1144 13368 +13370 2 -134.03122950867123 -884.3013335738697 89.7383 0.1144 13369 +13371 2 -134.5813819967962 -883.29936195261 89.8794 0.1144 13370 +13372 2 -135.13144929207138 -882.2973379655374 90.0183 0.1144 13371 +13373 2 -135.6809405634065 -881.2962510998127 90.1572 0.1144 13372 +13374 2 -136.23007073733396 -880.2936510888002 90.2969 0.1144 13373 +13375 2 -136.7796472015188 -879.2926165888881 90.4425 0.1144 13374 +13376 2 -137.36481395091025 -878.312167316663 90.6153 0.1144 13375 +13377 2 -138.00868718602405 -877.3717943283739 90.837 0.1144 13376 +13378 2 -138.67171709854645 -876.445896204874 91.105 0.1144 13377 +13379 2 -139.45325897204475 -875.6224242260132 91.3822 0.1144 13378 +13380 2 -140.32111852150848 -874.8855803535379 91.6454 0.1144 13379 +13381 2 -140.9619600501133 -873.9608335853816 91.9271 0.1144 13380 +13382 2 -141.4800855373444 -872.9498574533777 92.2396 0.1144 13381 +13383 2 -141.92284197637633 -871.906052727533 92.5994 0.1144 13382 +13384 2 -142.34225247298102 -870.8545885648828 93.0006 0.1144 13383 +13385 2 -142.7574768061498 -869.8032510343321 93.4307 0.1144 13384 +13386 2 -143.1931059840201 -868.7603475012149 93.8689 0.1144 13385 +13387 2 -143.72788551621122 -867.7637165003177 94.2757 0.1144 13386 +13388 2 -144.32539041344424 -866.8002416237472 94.6386 0.1144 13387 +13389 2 -145.00560585403394 -865.8903065082673 94.948 0.1144 13388 +13390 2 -145.7111235710132 -864.9959240391702 95.2227 0.1144 13389 +13391 2 -146.4170023854001 -864.1030547153607 95.489 0.1144 13390 +13392 2 -147.04381362296317 -863.1575936783715 95.8272 0.1144 13391 +13393 2 -147.55003873509358 -862.1528014830154 96.3194 0.1144 13392 +13394 2 -148.02022968080658 -861.1432323796008 96.9489 0.1144 13393 +13395 2 -148.5724206888567 -860.1814841897774 97.631 0.1144 13394 +13396 2 -149.18995461270083 -859.2599005783228 98.3161 0.1144 13395 +13397 2 -149.81921232277975 -858.3454058903633 98.9934 0.1144 13396 +13398 2 -150.44962208073892 -857.4290369597082 99.6526 0.1144 13397 +13399 2 -151.0800318386981 -856.5126680290532 100.2971 0.1144 13398 +13400 2 -151.82576308452406 -855.6859651144589 100.931 0.1144 13399 +13401 2 -152.58677278868478 -854.8739356013417 101.5753 0.1144 13400 +13402 2 -153.327465942577 -854.0468356607195 102.2473 0.1144 13401 +13403 2 -154.13197724787568 -853.2885430129597 102.965 0.1144 13402 +13404 2 -154.89408835061374 -852.5161609073389 103.8377 0.1144 13403 +13405 2 -155.41222204160957 -851.6100108213955 104.9462 0.1144 13404 +13406 2 -155.8773533736996 -850.6980443834669 106.1976 0.1144 13405 +13407 2 -157.03663093177227 -850.5204063713493 106.1259 0.1144 13406 +13408 2 -158.14880836831074 -850.2599393875402 105.9738 0.1144 13407 +13409 2 -159.23699475138784 -849.9096020562642 105.9629 0.1144 13408 +13410 2 -160.3223728720048 -849.5508478572838 106.0713 0.1144 13409 +13411 2 -161.3895024036436 -849.1473058362942 106.2625 0.1144 13410 +13412 2 -162.25762924545256 -848.4079265043334 106.4504 0.1144 13411 +13413 2 -163.2962197702499 -847.9371902493019 106.6439 0.1144 13412 +13414 2 -164.41115000185283 -847.6919141219314 106.8256 0.1144 13413 +13415 2 -165.52683525530807 -847.4498018437989 106.9844 0.1144 13414 +13416 2 -166.64390392036856 -847.2098311007072 107.1291 0.1144 13415 +13417 2 -167.7608873925793 -846.9698079918028 107.2672 0.1144 13416 +13418 2 -168.87759496023207 -846.7283241034231 107.4038 0.1144 13417 +13419 2 -169.9951544563829 -846.4873638731709 107.5312 0.1144 13418 +13420 2 -171.11279914538343 -846.2464560087315 107.6429 0.1144 13419 +13421 2 -172.230443834384 -846.005548144292 107.7339 0.1144 13420 +13422 2 -173.34800333053482 -845.7645879140398 107.7986 0.1144 13421 +13423 2 -174.4797511917908 -845.596790927945 107.8148 0.1144 13422 +13424 2 -175.62373859541793 -845.6231526491042 107.7773 0.1144 13423 +13425 2 -176.76105702602518 -845.7260556976549 107.6382 0.1144 13424 +13426 2 -177.89677711849478 -845.8292674778006 107.4276 0.1144 13425 +13427 2 -179.03186882121156 -845.9335015721439 107.1717 0.1144 13426 +13428 2 -180.1446455079112 -846.034700858395 106.5739 0.1144 13427 +13429 2 -154.88912923124286 -850.623752228661 108.0374 0.1144 13406 +13430 2 -153.89126708610752 -850.4709945470019 109.3422 0.1144 13429 +13431 2 -153.47495805852182 -849.660476284684 110.6325 0.1144 13430 +13432 2 -153.31175177311883 -848.6524523720684 111.8902 0.1144 13431 +13433 2 -153.17003500971344 -847.6092766395238 112.9834 0.1144 13432 +13434 2 -153.03511005730772 -846.5244971655208 113.8099 0.1144 13433 +13435 2 -152.9449533881354 -845.421691854052 114.5122 0.1144 13434 +13436 2 -152.99562720598712 -844.3168288923304 115.2231 0.1144 13435 +13437 2 -153.09035433939633 -843.2430352947539 116.1504 0.1144 13436 +13438 2 -153.08548993040887 -842.2329184958019 117.4589 0.1144 13437 +13439 2 -153.14739569711688 -841.2866154386113 118.9818 0.1144 13438 +13440 2 -153.6639091198378 -840.5796035828769 120.6131 0.1144 13439 +13441 2 -154.55836085400756 -840.1491530453691 121.9814 0.1144 13440 +13442 2 -155.5415038554451 -839.7839003537646 123.0928 0.1144 13441 +13443 2 -156.55600402877397 -839.4245406894786 124.0383 0.1144 13442 +13444 2 -157.59459896321647 -839.089381903005 124.8792 0.1144 13443 +13445 2 -158.47883667076744 -838.5814029599917 125.7214 0.1144 13444 +13446 2 -158.85880237477215 -837.5809341729821 126.6252 0.1144 13445 +13447 2 -159.06369927618758 -836.5158165316907 127.514 0.1144 13446 +13448 2 -159.26717683737766 -835.4551085925801 128.4399 0.1144 13447 +13449 2 -159.46984390931954 -834.3980107929654 129.3858 0.1144 13448 +13450 2 -159.6730541781644 -833.3398383133401 130.3288 0.1144 13449 +13451 2 -159.87041896741042 -832.2781901512988 131.2486 0.1144 13450 +13452 2 -159.85871861503833 -831.2114022849662 132.1446 0.1144 13451 +13453 2 -159.58214106726078 -830.1605722177977 133.0003 0.1144 13452 +13454 2 -159.266238871728 -829.1015341009872 133.7168 0.1144 13453 +13455 2 -158.98045178926347 -828.0154632269202 134.2457 0.1144 13454 +13456 2 -158.70340433424454 -826.9172746421738 134.6307 0.1144 13455 +13457 2 -158.49376844884662 -825.805470614679 135.0177 0.1144 13456 +13458 2 -158.3687851285328 -824.6892401637222 135.5446 0.1144 13457 +13459 2 -158.29626958243452 -823.5838969837215 136.2396 0.1144 13458 +13460 2 -158.56415914123704 -822.5494000072713 137.0656 0.1144 13459 +13461 2 -159.13852001840235 -821.6522222975717 138.0445 0.1144 13460 +13462 2 -159.8433637985076 -820.9118986348086 139.2779 0.1144 13461 +13463 2 -160.19053516812983 -819.9516057315158 140.4634 0.1144 13462 +13464 2 -160.93429356578977 -819.3009350806406 141.7965 0.1144 13463 +13465 2 -161.65238658905395 -818.5149950002659 142.8154 0.1144 13464 +13466 2 -162.16016249160228 -817.5447269276225 143.624 0.1144 13465 +13467 2 -162.5130133470839 -816.5074018658478 144.4324 0.1144 13466 +13468 2 -162.89236228043535 -815.4796737759499 145.2354 0.1144 13467 +13469 2 -163.35831400436314 -814.4943791240976 146.0827 0.1144 13468 +13470 2 -163.82532948173832 -813.5138466596213 146.9628 0.1144 13469 +13471 2 -164.28856054510226 -812.5375613366062 147.8873 0.1144 13470 +13472 2 -164.7501823437656 -811.5658037356588 148.8404 0.1144 13471 +13473 2 -165.21225043268635 -810.5956116458121 149.7958 0.1144 13472 +13474 2 -165.67275301050654 -809.625865846223 150.7621 0.1144 13473 +13475 2 -166.13349005363483 -808.6534470284857 151.7155 0.1144 13474 +13476 2 -166.5985429938816 -807.6783989462007 152.6372 0.1144 13475 +13477 2 -167.06618686100958 -806.6968441675268 153.5117 0.1144 13476 +13478 2 -167.56175055527927 -805.7378504892777 154.4085 0.1144 13477 +13479 2 -168.03353814030504 -804.9025167747566 155.9345 0.1144 13478 +13480 2 -70.49467575454742 -1080.33323958567 45.521 0.1144 10250 +13481 2 -70.33632346098426 -1079.2099968865514 45.8766 0.1144 13480 +13482 2 -69.9802313535888 -1078.1290722217154 46.0118 0.1144 13481 +13483 2 -69.05839276142518 -1077.4617295136577 46.2274 0.1144 13482 +13484 2 -67.97160770120843 -1077.162991027872 46.6189 0.1144 13483 +13485 2 -66.84612696885142 -1077.2245371170513 47.0548 0.1144 13484 +13486 2 -65.74181200444082 -1076.9915557028166 47.5107 0.1144 13485 +13487 2 -64.65948040000495 -1076.690155125446 48.0278 0.1144 13486 +13488 2 -63.57201079010292 -1076.4232755692049 48.5464 0.1144 13487 +13489 2 -62.440144198738494 -1076.398964679607 48.9401 0.1144 13488 +13490 2 -61.342000166802904 -1076.254290510785 49.1347 0.1144 13489 +13491 2 -60.40946561323159 -1075.5911723038298 49.1596 0.1144 13490 +13492 2 -59.46740048174229 -1074.9435591955375 49.0893 0.1144 13491 +13493 2 -58.525644081847815 -1074.297544425383 48.9336 0.1144 13492 +13494 2 -57.58072073113203 -1073.658973472965 48.7113 0.1144 13493 +13495 2 -56.63128845723941 -1073.0298386008658 48.4355 0.1144 13494 +13496 2 -55.66425201286626 -1072.462189444032 48.0245 0.1144 13495 +13497 2 -54.623762711090365 -1072.4269039953333 47.1593 0.1144 13496 +13498 2 -53.55785270459012 -1072.4767057828767 46.2543 0.1144 13497 +13499 2 -52.50206612790339 -1072.1997210098507 45.4765 0.1144 13498 +13500 2 -51.52962438571876 -1071.6691283336322 44.8423 0.1144 13499 +13501 2 -50.49302831976598 -1071.2562744901825 44.3355 0.1144 13500 +13502 2 -49.37187310302846 -1071.1687060598988 44.0028 0.1144 13501 +13503 2 -48.3917279747746 -1071.6686764665833 43.792 0.1144 13502 +13504 2 -47.62755372883913 -1072.505523628166 43.587 0.1144 13503 +13505 2 -46.75372516925995 -1073.228016858905 43.3779 0.1144 13504 +13506 2 -45.654104222430306 -1073.3699003085865 43.1332 0.1144 13505 +13507 2 -44.5209572345762 -1073.3018410409063 42.8033 0.1144 13506 +13508 2 -43.46385502531638 -1072.9635965004068 42.2106 0.1144 13507 +13509 2 -42.63873765747121 -1073.1962692948632 41.585 0.1144 13508 +13510 2 -41.83331594939182 -1073.9930901292764 41.2636 0.1144 13509 +13511 2 -40.88935315902921 -1074.6200044937718 41.0374 0.1144 13510 +13512 2 -39.92672452234842 -1075.2314545063175 40.8937 0.1144 13511 +13513 2 -39.00452434104682 -1075.9081338067303 40.8103 0.1144 13512 +13514 2 -37.976991567601374 -1076.3520960793342 40.7324 0.1144 13513 +13515 2 -36.85269542607307 -1076.3351383039935 40.6207 0.1144 13514 +13516 2 -35.75836755188624 -1076.5272275639163 40.5065 0.1144 13515 +13517 2 -34.75490009818907 -1077.0653315402728 40.4135 0.1144 13516 +13518 2 -33.790799755470175 -1077.681276447849 40.336 0.1144 13517 +13519 2 -32.783774528089964 -1078.2184847421074 40.2657 0.1144 13518 +13520 2 -31.75372681056001 -1078.7146615247275 40.1988 0.1144 13519 +13521 2 -30.65940954918449 -1079.02895066144 40.1226 0.1144 13520 +13522 2 -29.521684474048413 -1079.0775709597378 40.017 0.1144 13521 +13523 2 -28.39528924301743 -1078.91564889975 39.846 0.1144 13522 +13524 2 -27.294602932904922 -1078.617756139296 39.6318 0.1144 13523 +13525 2 -26.16753617404646 -1078.6272667163712 39.4036 0.1144 13524 +13526 2 -25.037099535718653 -1078.720746001382 39.0368 0.1144 13525 +13527 2 -23.93442836757754 -1078.943977506664 38.5442 0.1144 13526 +13528 2 -22.861832276013217 -1079.3038977816705 38.1436 0.1144 13527 +13529 2 -21.78905649400002 -1079.683779712704 37.8431 0.1144 13528 +13530 2 -20.677149451389766 -1079.9350224411437 37.6205 0.1144 13529 +13531 2 -19.535661578627924 -1079.9154792495515 37.4584 0.1144 13530 +13532 2 -18.45455290268734 -1079.5463974011682 37.3425 0.1144 13531 +13533 2 -17.388162074360707 -1079.1338930360266 37.2378 0.1144 13532 +13534 2 -16.452375377118244 -1078.478166280995 37.1087 0.1144 13533 +13535 2 -16.23013094995042 -1077.3586121132155 36.9499 0.1144 13534 +13536 2 -15.94151939830249 -1077.3759448064684 36.8379 0.1144 13535 +13537 2 -14.834676787408227 -1077.5643325308797 36.3947 0.1144 13536 +13538 2 -13.79026170686086 -1077.9832450987565 35.9629 0.1144 13537 +13539 2 -12.796558603853214 -1078.5272335849147 35.5692 0.1144 13538 +13540 2 -11.763185861438501 -1078.9784052099471 35.2131 0.1144 13539 +13541 2 -10.653601050606142 -1079.0578213768788 34.9236 0.1144 13540 +13542 2 -9.533372342405187 -1078.8486290937458 34.7172 0.1144 13541 +13543 2 -8.416401981041531 -1078.6186677669207 34.5626 0.1144 13542 +13544 2 -7.303938133808174 -1078.3618965290475 34.4114 0.1144 13543 +13545 2 -6.193756481861158 -1078.0970202566482 34.2185 0.1144 13544 +13546 2 -5.089785094366164 -1078.1999589548732 33.9979 0.1144 13545 +13547 2 -3.968463493126194 -1078.3486930686217 33.7196 0.1144 13546 +13548 2 -2.8858498756625295 -1078.0847983637068 33.3749 0.1144 13547 +13549 2 -2.480663969414252 -1077.1710140557993 32.9426 0.1144 13548 +13550 2 -2.705903447128719 -1076.1841336792193 32.4386 0.1144 13549 +13551 2 -1.5818673884910481 -1076.3284995300369 32.0835 0.1144 13550 +13552 2 -0.4568080213455801 -1076.2035518593973 31.7705 0.1144 13551 +13553 2 0.5718763202277728 -1075.7230198465181 31.4569 0.1144 13552 +13554 2 1.6215368190239587 -1075.6633161844284 31.1268 0.1144 13553 +13555 2 2.44557510919185 -1076.4512762699258 30.9042 0.1144 13554 +13556 2 3.217281467296857 -1077.2915929107585 30.7168 0.1144 13555 +13557 2 3.951749937828083 -1078.1587896507174 30.5231 0.1144 13556 +13558 2 4.885069132595731 -1078.7815647069601 30.3489 0.1144 13557 +13559 2 6.001097661192887 -1078.9805046309507 30.2131 0.1144 13558 +13560 2 7.142893573013112 -1078.9353004746074 30.0905 0.1144 13559 +13561 2 8.269537972349838 -1079.0270024235679 29.9426 0.1144 13560 +13562 2 9.323756433790038 -1079.4532705147485 29.7674 0.1144 13561 +13563 2 10.271511463143725 -1080.081962215294 29.5926 0.1144 13562 +13564 2 11.162622457435702 -1080.791132629124 29.3978 0.1144 13563 +13565 2 12.170925672259159 -1081.3019663760288 29.1858 0.1144 13564 +13566 2 13.275445057065212 -1081.5872126706367 28.9918 0.1144 13565 +13567 2 14.33187242413021 -1081.9731525987554 28.7935 0.1144 13566 +13568 2 15.264448216145013 -1082.6273731213223 28.5295 0.1144 13567 +13569 2 16.23695311493219 -1083.19378204766 28.2251 0.1144 13568 +13570 2 17.33020492403557 -1083.33828925126 27.9564 0.1144 13569 +13571 2 18.460296179948614 -1083.199566962824 27.6881 0.1144 13570 +13572 2 19.57807742132337 -1083.2900261604252 27.4275 0.1144 13571 +13573 2 20.616165495930886 -1083.7314913112104 27.1945 0.1144 13572 +13574 2 21.541873494149286 -1084.3898159059465 26.9387 0.1144 13573 +13575 2 22.539265128495856 -1084.8699122585003 26.5947 0.1144 13574 +13576 2 23.66226105067028 -1084.9732472902165 26.2409 0.1144 13575 +13577 2 24.783403653997937 -1085.1260823745513 25.9338 0.1144 13576 +13578 2 25.852078465425052 -1085.5057853076728 25.6745 0.1144 13577 +13579 2 26.749769729856155 -1086.1840308117228 25.4899 0.1144 13578 +13580 2 27.395246813737344 -1087.114027496762 25.3865 0.1144 13579 +13581 2 27.96994655639952 -1088.1036103208776 25.3158 0.1144 13580 +13582 2 28.68695359430552 -1088.9882308483316 25.3083 0.1144 13581 +13583 2 29.473982951578193 -1089.8164290859481 25.3998 0.1144 13582 +13584 2 30.277090329870703 -1090.62934507111 25.5207 0.1144 13583 +13585 2 31.18316012433968 -1091.3212214311277 25.6234 0.1144 13584 +13586 2 32.133144983166915 -1091.9579329733497 25.7011 0.1144 13585 +13587 2 33.13015569724155 -1092.516086900166 25.7552 0.1144 13586 +13588 2 34.14034477386002 -1093.0540502162767 25.781 0.1144 13587 +13589 2 35.13654810026952 -1093.6152827994815 25.7843 0.1144 13588 +13590 2 36.152620994153494 -1094.1389478396686 25.7784 0.1144 13589 +13591 2 37.22059384207762 -1094.5459624414912 25.769 0.1144 13590 +13592 2 38.3324101812085 -1094.8079425705882 25.7559 0.1144 13591 +13593 2 39.42856334761291 -1095.1319022529276 25.7373 0.1144 13592 +13594 2 40.53842335278159 -1095.4017755916018 25.7115 0.1144 13593 +13595 2 41.650818817435606 -1095.6713816379306 25.6758 0.1144 13594 +13596 2 42.76882460384388 -1095.9107763570823 25.6252 0.1144 13595 +13597 2 43.85620049767272 -1096.2575035488626 25.5528 0.1144 13596 +13598 2 44.86398074690527 -1096.7915479938827 25.453 0.1144 13597 +13599 2 45.8160188463404 -1097.4230065176384 25.3208 0.1144 13598 +13600 2 46.57729653538286 -1098.261634116854 25.1391 0.1144 13599 +13601 2 47.3131484175193 -1099.1266893217726 24.811 0.1144 13600 +13602 2 48.20731783688757 -1099.8123817451421 24.3825 0.1144 13601 +13603 2 49.199419500174486 -1100.3493727038217 23.9314 0.1144 13602 +13604 2 50.18154498782252 -1100.8964867015516 23.4265 0.1144 13603 +13605 2 51.286823804126016 -1101.0429916783633 22.9155 0.1144 13604 +13606 2 52.40969378673742 -1101.1745755001284 22.4788 0.1144 13605 +13607 2 53.5041924550718 -1101.4673898355259 22.1183 0.1144 13606 +13608 2 54.62712300726065 -1101.4942328040802 21.6523 0.1144 13607 +13609 2 55.75407303660916 -1101.577647619019 21.2167 0.1144 13608 +13610 2 56.88736447882863 -1101.5470613967573 20.8452 0.1144 13609 +13611 2 58.01840757677215 -1101.4427334973516 20.4939 0.1144 13610 +13612 2 59.07498180724886 -1101.84877264016 20.1718 0.1144 13611 +13613 2 60.07878771799497 -1102.3784519238316 19.8093 0.1144 13612 +13614 2 61.085903648854554 -1102.9049228174326 19.5031 0.1144 13613 +13615 2 62.0773800239717 -1103.4475802577986 19.0711 0.1144 13614 +13616 2 -16.16390095856417 -1076.69085434408 37.3391 0.1144 13535 +13617 2 -16.036919865038442 -1075.5625968859226 37.532 0.1144 13616 +13618 2 -16.114779412028383 -1074.4287831706492 37.5085 0.1144 13617 +13619 2 -16.175268229872472 -1073.288283068538 37.5015 0.1144 13618 +13620 2 -15.798321193398351 -1072.2281103176651 37.6474 0.1144 13619 +13621 2 -15.78796730003802 -1071.1045161396396 37.9226 0.1144 13620 +13622 2 -16.88651418238271 -1071.1284183841103 38.3664 0.1144 13621 +13623 2 -17.964443986628737 -1071.2404779089986 39.2641 0.1144 13622 +13624 2 -77.10857664747175 -1132.1606207116597 44.9028 0.1144 8272 +13625 2 -76.21870840453926 -1132.8786542834514 44.9148 0.1144 13624 +13626 2 -75.32826413766674 -1133.5976249765913 44.9313 0.1144 13625 +13627 2 -74.47219953914151 -1134.3525179247313 44.9546 0.1144 13626 +13628 2 -73.72597135375531 -1135.219176978417 44.9868 0.1144 13627 +13629 2 -72.93306368984673 -1136.0437619749546 45.0316 0.1144 13628 +13630 2 -72.24349736178789 -1136.9492405330707 45.0996 0.1144 13629 +13631 2 -71.76131154337514 -1137.9850075949728 45.1942 0.1144 13630 +13632 2 -71.20050994902556 -1138.9804334896405 45.3107 0.1144 13631 +13633 2 -70.61476717569411 -1139.9618198832134 45.4689 0.1144 13632 +13634 2 -69.91821942591207 -1140.782601335412 45.7822 0.1144 13633 +13635 2 -68.90555455406479 -1140.546794937436 46.4822 0.1144 13634 +13636 2 -67.97143907617357 -1139.9431560603214 47.1246 0.1144 13635 +13637 2 -66.91896011055388 -1139.6520058466376 47.705 0.1144 13636 +13638 2 -65.81684514348859 -1139.797755801597 48.2135 0.1144 13637 +13639 2 -64.71243187538118 -1140.0347064572793 48.652 0.1144 13638 +13640 2 -63.624204745590816 -1140.356847364319 48.9731 0.1144 13639 +13641 2 -62.67743679435114 -1140.9686560652258 49.1831 0.1144 13640 +13642 2 -61.72625062341399 -1141.6006382471091 49.3192 0.1144 13641 +13643 2 -60.635758126292956 -1141.6205398481166 49.4147 0.1144 13642 +13644 2 -59.49750257433789 -1141.5170607756259 49.4771 0.1144 13643 +13645 2 -58.36089841886991 -1141.3891251520772 49.5256 0.1144 13644 +13646 2 -57.23705957117323 -1141.1791223796959 49.6098 0.1144 13645 +13647 2 -56.200625089314826 -1140.7111989085865 49.7277 0.1144 13646 +13648 2 -55.28779341694184 -1140.029203030364 49.8406 0.1144 13647 +13649 2 -54.399830042337214 -1139.3088500437243 49.9394 0.1144 13648 +13650 2 -53.53869129946304 -1138.5580331582446 50.0301 0.1144 13649 +13651 2 -52.7061771647281 -1137.77363306552 50.1214 0.1144 13650 +13652 2 -51.61556663003512 -1137.5773641642218 50.2205 0.1144 13651 +13653 2 -50.484767509226515 -1137.7174555571708 50.335 0.1144 13652 +13654 2 -49.34657321938556 -1137.6946547112775 50.4748 0.1144 13653 +13655 2 -48.20887827815136 -1137.649271557022 50.759 0.1144 13654 +13656 2 -47.141276430224536 -1137.9880812297047 51.233 0.1144 13655 +13657 2 -47.15526877436258 -1137.6811625200999 51.4097 0.1144 13656 +13658 2 -47.08476572215898 -1136.5528759343292 51.7698 0.1144 13657 +13659 2 -46.831827748936234 -1135.4439178144248 51.9658 0.1144 13658 +13660 2 -46.53361732578031 -1134.3408201788907 52.0825 0.1144 13659 +13661 2 -46.35361123298998 -1133.2136579161447 52.1284 0.1144 13660 +13662 2 -46.14357591251769 -1132.089518149855 52.1268 0.1144 13661 +13663 2 -45.93510610314604 -1130.9649320933077 52.1108 0.1144 13662 +13664 2 -46.08125818117236 -1129.8489155745729 52.0887 0.1144 13663 +13665 2 -46.33317342660695 -1128.7334668760136 52.0607 0.1144 13664 +13666 2 -46.31195860207265 -1127.5990884421478 52.0257 0.1144 13665 +13667 2 -45.87423332446593 -1126.5593082243404 51.945 0.1144 13666 +13668 2 -45.559676895408245 -1125.4675264224502 51.8465 0.1144 13667 +13669 2 -45.45233228912207 -1124.3313842722323 51.7658 0.1144 13668 +13670 2 -45.37525137582594 -1123.1895466074106 51.7096 0.1144 13669 +13671 2 -45.253696788049126 -1122.0526518443871 51.6768 0.1144 13670 +13672 2 -45.02473073796 -1120.9329570163618 51.6676 0.1144 13671 +13673 2 -44.624928590148954 -1119.8641353415228 51.6813 0.1144 13672 +13674 2 -44.19461499577835 -1118.8033218892608 51.7098 0.1144 13673 +13675 2 -44.339471264095664 -1117.7025900320273 51.7485 0.1144 13674 +13676 2 -44.856756536624516 -1116.6883976849722 51.7992 0.1144 13675 +13677 2 -45.815448479948884 -1116.116198053895 51.9198 0.1144 13676 +13678 2 -45.59242130607328 -1115.1048573201592 52.0458 0.1144 13677 +13679 2 -45.138444520163944 -1114.056378914156 52.1492 0.1144 13678 +13680 2 -44.70758772889019 -1112.9966401419044 52.2399 0.1144 13679 +13681 2 -44.409429671547116 -1111.8934573135202 52.3194 0.1144 13680 +13682 2 -44.141697867913706 -1110.7822138967463 52.3891 0.1144 13681 +13683 2 -44.38906275092171 -1109.672067480883 52.5353 0.1144 13682 +13684 2 -44.70999272220803 -1108.5774422694385 52.7187 0.1144 13683 +13685 2 -44.79457699370232 -1107.4370804185264 52.8041 0.1144 13684 +13686 2 -44.54712850485237 -1106.4415996776952 52.8864 0.1144 13685 +13687 2 -44.46037394434609 -1105.3046149037286 52.9609 0.1144 13686 +13688 2 -44.647466137994456 -1104.1789011207998 53.0368 0.1144 13687 +13689 2 -45.08171190425941 -1103.1338560526422 53.1233 0.1144 13688 +13690 2 -45.915065153276316 -1102.3569037617303 53.3075 0.1144 13689 +13691 2 -46.61300931883642 -1101.4618569742602 53.6029 0.1144 13690 +13692 2 -47.053083434971086 -1100.4378841707598 53.8602 0.1144 13691 +13693 2 -46.89498061148748 -1099.3537652210102 54.0453 0.1144 13692 +13694 2 -46.16308412746645 -1098.4755652969168 54.1559 0.1144 13693 +13695 2 -45.36072585251293 -1097.6923288711719 54.1943 0.1144 13694 +13696 2 -44.374917445123 -1097.157511001314 54.1626 0.1144 13695 +13697 2 -43.509165378883324 -1096.5058622924212 54.0736 0.1144 13696 +13698 2 -42.407400594640706 -1096.2381777575615 53.9431 0.1144 13697 +13699 2 -41.36418902246538 -1095.7768876149407 53.7242 0.1144 13698 +13700 2 -40.28841786530427 -1095.4298675183752 53.4204 0.1144 13699 +13701 2 -39.18250215370949 -1095.1798210050065 53.125 0.1144 13700 +13702 2 -38.162377749132645 -1094.7071329374749 52.8223 0.1144 13701 +13703 2 -37.53615303650406 -1093.8428260595124 52.4695 0.1144 13702 +13704 2 -37.154708003416204 -1092.7878703984854 51.9985 0.1144 13703 +13705 2 -36.54962643606018 -1091.851928142336 51.4324 0.1144 13704 +13706 2 -35.728046806249324 -1091.1066462883507 50.8654 0.1144 13705 +13707 2 -34.692610015316234 -1090.744039694392 50.318 0.1144 13706 +13708 2 -33.70022713250546 -1090.265749130086 49.7882 0.1144 13707 +13709 2 -33.02768334622567 -1089.3849439668766 49.3363 0.1144 13708 +13710 2 -32.47179448496655 -1088.397424800517 48.9516 0.1144 13709 +13711 2 -31.997497354668894 -1087.3646273895056 48.6604 0.1144 13710 +13712 2 -31.613035335754603 -1086.2903275356416 48.4635 0.1144 13711 +13713 2 -31.161594009330656 -1085.2421164219834 48.3423 0.1144 13712 +13714 2 -30.48370719364175 -1084.3285644721113 48.2756 0.1144 13713 +13715 2 -29.73185146264018 -1083.467558688298 48.2471 0.1144 13714 +13716 2 -29.093307116972312 -1082.5205555792136 48.2434 0.1144 13715 +13717 2 -28.64761746508475 -1081.4717715431984 48.2552 0.1144 13716 +13718 2 -27.875876060852875 -1080.6562938825637 48.2345 0.1144 13717 +13719 2 -26.85776174112425 -1080.143288578533 48.2177 0.1144 13718 +13720 2 -25.76474889596335 -1079.8111420892947 48.2401 0.1144 13719 +13721 2 -24.70659903901202 -1079.3850396952228 48.4011 0.1144 13720 +13722 2 -23.79033312347258 -1078.713023094222 48.7018 0.1144 13721 +13723 2 -23.067928187166217 -1077.8325581045715 48.9625 0.1144 13722 +13724 2 -21.930602547104513 -1077.8935141416646 49.177 0.1144 13723 +13725 2 -21.095982504175424 -1076.8111984650059 49.4589 0.1144 13724 +13726 2 -20.202804448771133 -1076.1037213124814 49.5379 0.1144 13725 +13727 2 -19.125130015997115 -1075.724660186876 49.6222 0.1144 13726 +13728 2 -18.2172655549428 -1075.1088683629982 49.7283 0.1144 13727 +13729 2 -18.281620185528254 -1073.9949249077358 49.8624 0.1144 13728 +13730 2 -18.934541087145988 -1073.0680951735176 50.0682 0.1144 13729 +13731 2 -19.65826053792017 -1072.2292707541242 50.2334 0.1144 13730 +13732 2 -19.878636511968068 -1071.1105168535441 50.3569 0.1144 13731 +13733 2 -19.927941638897323 -1069.9685419438117 50.4423 0.1144 13732 +13734 2 -19.925924836324953 -1068.827183112196 50.4986 0.1144 13733 +13735 2 -20.010602912881723 -1067.6908698660573 50.5327 0.1144 13734 +13736 2 -19.799759512207686 -1066.5877140699918 50.5551 0.1144 13735 +13737 2 -19.202800801643832 -1065.6123948002746 50.5859 0.1144 13736 +13738 2 -18.464992775501912 -1064.8312738835398 50.6296 0.1144 13737 +13739 2 -17.379638674610078 -1064.4998440784873 50.6836 0.1144 13738 +13740 2 -16.36393628385042 -1063.976231107482 50.7573 0.1144 13739 +13741 2 -15.37233786425736 -1063.431163566474 50.8987 0.1144 13740 +13742 2 -14.473137740388381 -1062.7334835916758 51.1062 0.1144 13741 +13743 2 -13.478560672635524 -1062.1798944513378 51.2641 0.1144 13742 +13744 2 -12.432055517539254 -1061.7218619630175 51.3705 0.1144 13743 +13745 2 -11.401012305346228 -1061.2277897976503 51.4282 0.1144 13744 +13746 2 -10.486567574153014 -1060.5810730639926 51.4374 0.1144 13745 +13747 2 -9.797623699648682 -1059.670232469935 51.392 0.1144 13746 +13748 2 -9.291287949357582 -1058.6567121652656 51.2921 0.1144 13747 +13749 2 -9.04049151117556 -1057.546370633756 51.1756 0.1144 13748 +13750 2 -8.905259212248154 -1056.411867568389 51.0756 0.1144 13749 +13751 2 -8.609098928116964 -1055.3207117472052 50.988 0.1144 13750 +13752 2 -8.130127904876304 -1054.28234165957 50.9082 0.1144 13751 +13753 2 -7.79836571643915 -1053.1988822277854 50.832 0.1144 13752 +13754 2 -7.508354132872114 -1052.1021153923107 50.7377 0.1144 13753 +13755 2 -7.0152114658075675 -1051.0738152853764 50.5904 0.1144 13754 +13756 2 -6.516986953209084 -1050.0491995842253 50.4078 0.1144 13755 +13757 2 -6.069913889716361 -1048.9982740131693 50.2505 0.1144 13756 +13758 2 -5.609033381390304 -1047.9522427722186 50.1435 0.1144 13757 +13759 2 -5.0000828997098665 -1046.9964326651045 50.0858 0.1144 13758 +13760 2 -4.201029826776903 -1046.181656967973 50.0758 0.1144 13759 +13761 2 -3.3706900541196774 -1045.3960110223056 50.1077 0.1144 13760 +13762 2 -2.57917219493919 -1044.5710770500395 50.176 0.1144 13761 +13763 2 -1.6187543583717456 -1044.045175396493 50.2967 0.1144 13762 +13764 2 -0.48814283000302794 -1043.9773834211583 50.4526 0.1144 13763 +13765 2 0.4181831522694779 -1043.4484599636921 50.6688 0.1144 13764 +13766 2 1.0437110035766182 -1042.499949912486 50.9146 0.1144 13765 +13767 2 1.7328698046133582 -1041.591559585064 51.1053 0.1144 13766 +13768 2 2.4908414091420354 -1040.736302374204 51.2184 0.1144 13767 +13769 2 3.4468194096266984 -1040.1178166083296 51.2562 0.1144 13768 +13770 2 4.551607382861846 -1039.844165472401 51.2299 0.1144 13769 +13771 2 5.593666907157001 -1039.3810010870843 51.116 0.1144 13770 +13772 2 6.280381644724287 -1038.4862032779633 50.8539 0.1144 13771 +13773 2 6.782475764183744 -1037.4657823524603 50.5548 0.1144 13772 +13774 2 7.433317510980146 -1036.5300012719576 50.3297 0.1144 13773 +13775 2 8.200240567903677 -1035.6826232425285 50.1766 0.1144 13774 +13776 2 8.907757176200164 -1034.7844295279074 50.0912 0.1144 13775 +13777 2 9.405447104108248 -1033.7547429077854 50.069 0.1144 13776 +13778 2 9.327130050502376 -1033.3301900970368 50.6962 0.1144 13777 +13779 2 9.09888279701454 -1032.4083093611089 52.122 0.1144 13778 +13780 2 8.254405521339265 -1032.4063342995596 53.7883 0.1144 13779 +13781 2 7.537097139271452 -1032.906287482383 55.5643 0.1144 13780 +13782 2 6.921975334352965 -1033.6335944499792 57.1007 0.1144 13781 +13783 2 6.171699627493069 -1033.1077146027746 58.511 0.1144 13782 +13784 2 6.778659545416019 -1032.3277905885047 59.8186 0.1144 13783 +13785 2 7.709227152213828 -1031.7947654679162 60.73 0.1144 13784 +13786 2 8.372960838881113 -1030.9368653728102 61.5104 0.1144 13785 +13787 2 8.73413548434695 -1029.8836877403699 62.1328 0.1144 13786 +13788 2 8.944491155513816 -1028.7862312530283 62.6833 0.1144 13787 +13789 2 8.867081692901053 -1027.6816034491512 63.1719 0.1144 13788 +13790 2 8.377075262036215 -1026.668250624262 63.5575 0.1144 13789 +13791 2 7.767940383630815 -1025.7078160664132 63.8224 0.1144 13790 +13792 2 7.291688339249902 -1024.6752097521662 64.0136 0.1144 13791 +13793 2 7.0264095301929785 -1023.5706750431302 64.1589 0.1144 13792 +13794 2 7.020855882929197 -1022.4366693257715 64.2894 0.1144 13793 +13795 2 7.316834067565026 -1021.3429256792896 64.4398 0.1144 13794 +13796 2 7.763460840800349 -1020.2935656193342 64.6363 0.1144 13795 +13797 2 8.14752893526989 -1019.2209164694206 64.8962 0.1144 13796 +13798 2 8.350440788700155 -1018.1266269329004 65.2974 0.1144 13797 +13799 2 8.607483147843709 -1017.1509554740549 66.2284 0.1144 13798 +13800 2 9.412844788925554 -1016.4382968762158 67.1538 0.1144 13799 +13801 2 10.326420177803016 -1015.8512743989312 68.0243 0.1144 13800 +13802 2 9.501626351224786 -1016.261531822555 69.0642 0.1144 13801 +13803 2 8.518199738901899 -1016.7129539068343 69.9706 0.1144 13802 +13804 2 8.397535630074032 -1016.9361965166577 70.2204 0.1144 13803 +13805 2 8.290705394850846 -1017.8371436298903 71.4087 0.1144 13804 +13806 2 8.988072831956146 -1018.2880240438197 73.1556 0.1144 13805 +13807 2 9.03015920074023 -1018.3870477660411 73.5666 0.1144 13806 +13808 2 9.418980160715762 -1019.2008375921533 72.3598 0.1144 13807 +13809 2 10.239230621537558 -1019.851442873043 71.3899 0.1144 13808 +13810 2 10.729853130519075 -1020.8134737684308 70.5312 0.1144 13809 +13811 2 10.83705976455218 -1021.901077219887 69.7119 0.1144 13810 +13812 2 10.467994318555668 -1022.9349246876362 68.9564 0.1144 13811 +13813 2 10.599345670468551 -1024.0157862848587 68.15 0.1144 13812 +13814 2 10.94658241007619 -1025.0525712513136 67.3392 0.1144 13813 +13815 2 11.95931755899133 -1025.4680673982896 66.6061 0.1144 13814 +13816 2 13.002246212817965 -1025.8475146581654 65.9291 0.1144 13815 +13817 2 13.847490218434444 -1026.48416563081 64.9998 0.1144 13816 +13818 2 14.780016657230362 -1026.5354316131634 63.3833 0.1144 13817 +13819 2 8.773370140601457 -1017.2329247099535 74.349 0.1144 13806 +13820 2 8.561349772143927 -1016.1976572984316 75.4211 0.1144 13819 +13821 2 8.34924110925354 -1015.1557534568384 76.4537 0.1144 13820 +13822 2 8.112135799985339 -1014.1211151276059 77.4939 0.1144 13821 +13823 2 7.763007403864293 -1013.1446528072771 78.6758 0.1144 13822 +13824 2 7.165013469062131 -1012.3291435038723 79.9428 0.1144 13823 +13825 2 6.250584665646102 -1011.8398396172303 81.1272 0.1144 13824 +13826 2 5.339179051222658 -1011.3445691295192 82.3091 0.1144 13825 +13827 2 4.475642608331896 -1010.7742136072355 83.4898 0.1144 13826 +13828 2 3.7916773742891507 -1010.0088488519581 84.6846 0.1144 13827 +13829 2 3.6839902202034125 -1009.0908037948694 85.869 0.1144 13828 +13830 2 4.28529737083403 -1008.1947434115244 86.7905 0.1144 13829 +13831 2 4.762194638065978 -1007.2141081447169 87.5428 0.1144 13830 +13832 2 4.94550593287687 -1006.1184851533577 88.1185 0.1144 13831 +13833 2 4.853442607562442 -1004.9988016426583 88.6043 0.1144 13832 +13834 2 4.759414336073178 -1003.8910075804966 89.0641 0.1144 13833 +13835 2 5.002067402062181 -1002.7937708377806 89.5406 0.1144 13834 +13836 2 5.35553334649282 -1001.7238508659473 90.0284 0.1144 13835 +13837 2 5.68207844508396 -1000.6448894307764 90.503 0.1144 13836 +13838 2 5.948879330535789 -999.547599629711 90.9412 0.1144 13837 +13839 2 6.181279623791397 -998.4378840789077 91.3214 0.1144 13838 +13840 2 6.416576473940097 -997.3263880904714 91.6387 0.1144 13839 +13841 2 6.651658397556332 -996.2124418353993 91.9128 0.1144 13840 +13842 2 6.887710269557402 -995.0977819977247 92.1715 0.1144 13841 +13843 2 7.109199674872855 -993.9813916791833 92.4468 0.1144 13842 +13844 2 7.282966363619636 -992.8593558028042 92.7727 0.1144 13843 +13845 2 7.417531935127528 -991.734653016747 93.1661 0.1144 13844 +13846 2 7.744097957567533 -990.7040395863145 93.7182 0.1144 13845 +13847 2 8.669657606333516 -990.265414944307 94.5062 0.1144 13846 +13848 2 9.725394226253968 -989.9709711477024 95.2851 0.1144 13847 +13849 2 10.629063911659728 -989.3590489306856 95.9916 0.1144 13848 +13850 2 11.17182746872436 -988.4158681944942 96.6395 0.1144 13849 +13851 2 12.049306405096985 -987.979799935821 97.487 0.1144 13850 +13852 2 12.875841426320704 -988.4615049375501 98.1064 0.1144 13851 +13853 2 12.910563576306004 -987.3296229329663 98.471 0.1144 13852 +13854 2 13.064101316680478 -986.2052312875506 98.6132 0.1144 13853 +13855 2 13.444738269566642 -985.1292916562991 98.707 0.1144 13854 +13856 2 13.842037784929346 -984.0605997151428 98.7935 0.1144 13855 +13857 2 14.070609910573722 -982.9425555910678 98.884 0.1144 13856 +13858 2 14.281403354481427 -981.821940771424 98.9923 0.1144 13857 +13859 2 14.654913046205905 -980.7450999474449 99.1068 0.1144 13858 +13860 2 15.093516876181468 -979.691280921079 99.2006 0.1144 13859 +13861 2 15.365352751983949 -978.5869052981017 99.2653 0.1144 13860 +13862 2 15.457539328868762 -977.4478727941571 99.3068 0.1144 13861 +13863 2 15.50664735667388 -976.3044484102974 99.3348 0.1144 13862 +13864 2 15.602934904144718 -975.165594904265 99.3616 0.1144 13863 +13865 2 15.780223437954248 -974.0361121085662 99.4003 0.1144 13864 +13866 2 15.990258758426506 -972.9119723422764 99.4504 0.1144 13865 +13867 2 16.192453235134423 -971.7859614348741 99.4969 0.1144 13866 +13868 2 16.367462675240745 -970.655062400533 99.5109 0.1144 13867 +13869 2 16.525459382025815 -969.5226478118575 99.4804 0.1144 13868 +13870 2 16.699584066597083 -968.3924099943064 99.4294 0.1144 13869 +13871 2 16.89134987424248 -967.264710045287 99.3812 0.1144 13870 +13872 2 17.08721665247387 -966.13718909418 99.3429 0.1144 13871 +13873 2 17.282722333297556 -965.0111812883608 99.3182 0.1144 13872 +13874 2 17.495345479067993 -963.8868594225756 99.3096 0.1144 13873 +13875 2 17.792481222213638 -962.7843049839445 99.316 0.1144 13874 +13876 2 18.14754791382842 -961.6973199129772 99.3297 0.1144 13875 +13877 2 18.42155505012559 -960.5875013470584 99.3415 0.1144 13876 +13878 2 18.630077225310032 -959.4630004833609 99.3569 0.1144 13877 +13879 2 18.79016310132303 -958.3318841134408 99.4081 0.1144 13878 +13880 2 18.8617268053909 -957.1921465444101 99.5434 0.1144 13879 +13881 2 18.886560381633586 -956.0529613823354 99.7766 0.1144 13880 +13882 2 18.90497245433727 -954.9163147813293 100.0938 0.1144 13881 +13883 2 18.771475773264058 -953.8033183500041 100.4752 0.1144 13882 +13884 2 18.31554097168825 -952.7797042348651 100.8885 0.1144 13883 +13885 2 17.801384312314042 -951.783778299054 101.3726 0.1144 13884 +13886 2 17.47360677854354 -950.7175425379039 101.9623 0.1144 13885 +13887 2 17.327149070505442 -949.6098131531911 102.5217 0.1144 13886 +13888 2 17.12072430311946 -948.5093640015218 103.0014 0.1144 13887 +13889 2 16.796595246511316 -947.4314951576163 103.5034 0.1144 13888 +13890 2 16.85842404125492 -946.367582924328 104.1314 0.1144 13889 +13891 2 17.6173604919868 -945.6231269728099 104.6996 0.1144 13890 +13892 2 18.550036398340353 -944.990793015389 105.1708 0.1144 13891 +13893 2 19.19125824881249 -944.0983694901068 105.6135 0.1144 13892 +13894 2 19.088434598393235 -943.0484509090186 106.0679 0.1144 13893 +13895 2 18.813717299970932 -941.9657989538882 106.6439 0.1144 13894 +13896 2 18.99057495674225 -940.8969147088732 107.3288 0.1144 13895 +13897 2 19.29775465455873 -939.8433554636243 108.1161 0.1144 13896 +13898 2 19.50023493841414 -938.785601851175 109.0429 0.1144 13897 +13899 2 19.375223596613978 -937.758594541356 110.1649 0.1144 13898 +13900 2 19.32310510504294 -936.7365513412728 111.3988 0.1144 13899 +13901 2 19.752565462853653 -935.8185278115803 112.6042 0.1144 13900 +13902 2 20.53044226170337 -935.2250020532417 113.9673 0.1144 13901 +13903 2 21.44428092404391 -935.0929028889311 115.5655 0.1144 13902 +13904 2 22.13475625783215 -935.569617754894 117.4074 0.1144 13903 +13905 2 22.325663916692633 -936.3345054824647 119.3738 0.1144 13904 +13906 2 22.15799627351757 -937.1519455912386 121.273 0.1144 13905 +13907 2 21.759466921978685 -937.6963494174208 123.1093 0.1144 13906 +13908 2 20.791086007214233 -937.6698219991532 124.5154 0.1144 13907 +13909 2 19.741786605825723 -937.7280125159551 125.6072 0.1144 13908 +13910 2 19.022290839822375 -938.3662935533541 126.686 0.1144 13909 +13911 2 18.741972726329863 -939.3913688507095 127.6369 0.1144 13910 +13912 2 18.826941019679197 -940.4603619232433 128.5441 0.1144 13911 +13913 2 19.09211061045434 -941.5099121974694 129.4328 0.1144 13912 +13914 2 18.99307847168393 -942.5591305138796 130.3994 0.1144 13913 +13915 2 18.103388019569138 -943.0079870047716 131.3665 0.1144 13914 +13916 2 17.077551586184626 -943.327013291997 132.33 0.1144 13915 +13917 2 16.051808957862562 -943.6419909744492 133.2968 0.1144 13916 +13918 2 15.02450081843989 -943.9565223666439 134.2611 0.1144 13917 +13919 2 13.996255557669457 -944.2716297827787 135.2154 0.1144 13918 +13920 2 12.978277790315047 -944.634186419971 136.1371 0.1144 13919 +13921 2 11.964037487092469 -945.0158090310922 137.0298 0.1144 13920 +13922 2 10.950031649178015 -945.4001046603614 137.9238 0.1144 13921 +13923 2 9.864349295600533 -945.5169294742087 138.7193 0.1144 13922 +13924 2 8.75643370352094 -945.5036290671891 139.4117 0.1144 13923 +13925 2 7.640679676723494 -945.471083688328 140.019 0.1144 13924 +13926 2 6.700642754121645 -945.907925483656 140.9912 0.1144 13925 +13927 2 6.039978407115484 -946.3273999531949 143.0332 0.1144 13926 +13928 2 8.28612821288985 -1016.8422207889597 69.554 0.1144 13803 +13929 2 7.232483171243842 -1017.120588973591 68.9296 0.1144 13928 +13930 2 6.494390846822597 -1016.3697138037855 68.7431 0.1144 13929 +13931 2 6.054357477401055 -1015.317544576049 68.6381 0.1144 13930 +13932 2 5.7687973541591475 -1014.2105689051267 68.5692 0.1144 13931 +13933 2 5.552125324669447 -1013.0869559105255 68.5353 0.1144 13932 +13934 2 5.383065076956825 -1011.955440496294 68.5353 0.1144 13933 +13935 2 5.07884461802638 -1010.8532441424767 68.57 0.1144 13934 +13936 2 4.8269293725917635 -1009.7377954439174 68.6263 0.1144 13935 +13937 2 4.574077005809386 -1008.6229227692982 68.7033 0.1144 13936 +13938 2 4.213376096510331 -1007.5380711185961 68.8041 0.1144 13937 +13939 2 3.7262490928094394 -1006.5053412738326 68.9542 0.1144 13938 +13940 2 3.24242349700927 -1005.4733992779585 69.1972 0.1144 13939 +13941 2 2.490047303595418 -1004.6251918365953 69.5131 0.1144 13940 +13942 2 1.5255506273853143 -1004.028271463698 69.8642 0.1144 13941 +13943 2 0.5025004373344757 -1003.530493241357 70.173 0.1144 13942 +13944 2 -0.5385372525154253 -1003.0666607087422 70.4001 0.1144 13943 +13945 2 -1.467858491812592 -1002.4024578073701 70.5488 0.1144 13944 +13946 2 -2.480494733483596 -1001.871398213676 70.6303 0.1144 13945 +13947 2 -3.5751378561832325 -1001.54111083286 70.6656 0.1144 13946 +13948 2 -4.421782195492426 -1002.3113071472602 70.6754 0.1144 13947 +13949 2 9.18734310329836 -1033.083104303452 50.0984 0.1144 13777 +13950 2 9.453691495326552 -1031.974002421719 50.1626 0.1144 13949 +13951 2 9.515369727234884 -1030.8336504910812 50.3098 0.1144 13950 +13952 2 9.741224382887765 -1030.3228439773015 50.421 0.1144 13951 +13953 2 10.428794748376447 -1029.4838629927126 50.6302 0.1144 13952 +13954 2 11.490068808837492 -1029.2116044784425 50.7937 0.1144 13953 +13955 2 12.54443363625225 -1028.9475838339645 50.888 0.1144 13954 +13956 2 13.46404239894224 -1028.27222128423 51.0003 0.1144 13955 +13957 2 14.422840973523222 -1027.6976628943498 51.1832 0.1144 13956 +13958 2 15.520669064409333 -1027.390727978022 51.394 0.1144 13957 +13959 2 16.52488833740847 -1026.890254540428 51.6314 0.1144 13958 +13960 2 17.3029574401169 -1026.076286923498 51.8328 0.1144 13959 +13961 2 17.742997740046917 -1025.044474181554 51.9744 0.1144 13960 +13962 2 17.99023330296299 -1023.9283395362584 52.0542 0.1144 13961 +13963 2 18.241569836464947 -1022.8123838888749 52.0848 0.1144 13962 +13964 2 18.43613839594093 -1021.6869521069958 52.0783 0.1144 13963 +13965 2 18.608036352621724 -1020.555383243652 52.0478 0.1144 13964 +13966 2 18.914537011382492 -1019.4592800340139 52.0075 0.1144 13965 +13967 2 19.130321597344704 -1018.35308702081 51.9347 0.1144 13966 +13968 2 19.49662573076037 -1017.3128375882975 51.8263 0.1144 13967 +13969 2 20.067746887707642 -1016.3239374193789 51.6816 0.1144 13968 +13970 2 20.783154296534775 -1015.4450738694491 51.5231 0.1144 13969 +13971 2 21.377936235974346 -1014.4858825775179 51.6393 0.1144 13970 +13972 2 22.607544063482607 -1013.9718791917992 51.6684 0.1144 13971 +13973 2 23.668512174473136 -1014.2166361476988 51.6211 0.1144 13972 +13974 2 24.73229816642484 -1014.5994614908087 51.4716 0.1144 13973 +13975 2 25.742025539566527 -1015.0799572784368 51.1988 0.1144 13974 +13976 2 26.505841097140944 -1015.9009437545784 50.8696 0.1144 13975 +13977 2 27.29366071234955 -1016.7084667535652 50.5182 0.1144 13976 +13978 2 28.32657926251568 -1016.9732821774411 50.0914 0.1144 13977 +13979 2 29.367811576281497 -1016.5897408774878 49.6605 0.1144 13978 +13980 2 30.28176857796754 -1015.9487234525537 49.0974 0.1144 13979 +13981 2 31.04813102417023 -1015.1594413413601 48.3493 0.1144 13980 +13982 2 31.592258454064364 -1014.2138963186156 47.5168 0.1144 13981 +13983 2 31.669410247975634 -1013.1378656821112 46.6497 0.1144 13982 +13984 2 32.36933589103512 -1012.299506884109 45.8553 0.1144 13983 +13985 2 32.768795456240895 -1011.2979201900253 45.064 0.1144 13984 +13986 2 33.62361571069161 -1010.5912487086558 44.4016 0.1144 13985 +13987 2 34.338900281538855 -1009.7473227446591 43.6842 0.1144 13986 +13988 2 34.94737775439478 -1008.8321823592389 42.9915 0.1144 13987 +13989 2 35.26569187889652 -1007.7837519094032 42.1826 0.1144 13988 +13990 2 35.637745277802054 -1006.7614492299766 41.4159 0.1144 13989 +13991 2 36.22594074393638 -1005.8198052560571 40.7683 0.1144 13990 +13992 2 36.58787661442082 -1004.7768413661469 40.1598 0.1144 13991 +13993 2 36.584743413642485 -1003.6750361369649 39.4604 0.1144 13992 +13994 2 36.48413487201421 -1002.5981669845831 38.57 0.1144 13993 +13995 2 36.54158068314399 -1001.4965698809269 37.856 0.1144 13994 +13996 2 36.61413146532581 -1000.3737153115347 37.3604 0.1144 13995 +13997 2 36.84079721377421 -999.2810234206157 36.8948 0.1144 13996 +13998 2 37.1412733950238 -998.1924968639797 36.4585 0.1144 13997 +13999 2 37.34886155044356 -997.0752608201066 36.1628 0.1144 13998 +14000 2 37.711551750243785 -996.005070454345 35.8436 0.1144 13999 +14001 2 38.277905209185576 -995.0257915668238 35.4774 0.1144 14000 +14002 2 39.02954360460822 -994.1797093471038 35.1383 0.1144 14001 +14003 2 39.56644937043771 -993.1876600496295 34.865 0.1144 14002 +14004 2 40.358863604252804 -992.3903464776597 34.6567 0.1144 14003 +14005 2 41.03599539808931 -991.4799583770258 34.4229 0.1144 14004 +14006 2 41.727924123919564 -990.5739737754067 34.2364 0.1144 14005 +14007 2 42.24918343830396 -989.5606708063164 34.0861 0.1144 14006 +14008 2 42.88103898808765 -988.613670798815 33.8887 0.1144 14007 +14009 2 43.74778943778921 -987.8807678393844 33.7156 0.1144 14008 +14010 2 44.418281699971175 -986.9637792372991 33.565 0.1144 14009 +14011 2 44.87738487224726 -985.9215402353394 33.3886 0.1144 14010 +14012 2 45.46864427408738 -984.9457332361148 33.241 0.1144 14011 +14013 2 46.1229586017169 -984.0091088393268 33.1226 0.1144 14012 +14014 2 46.050980462946086 -982.8783706788585 33.0408 0.1144 14013 +14015 2 46.148918714367255 -981.7399110972709 32.9666 0.1144 14014 +14016 2 46.7389737025145 -980.7621446625011 32.8994 0.1144 14015 +14017 2 47.52991553775482 -979.9362735688874 32.8238 0.1144 14016 +14018 2 48.211060007744464 -979.0194280360944 32.699 0.1144 14017 +14019 2 48.62778108381434 -977.956170520363 32.513 0.1144 14018 +14020 2 49.016217441215105 -976.8862358278471 32.3288 0.1144 14019 +14021 2 49.0494647835792 -975.7431701323485 32.2014 0.1144 14020 +14022 2 49.05041473112112 -974.5998846922244 32.1364 0.1144 14021 +14023 2 49.00672372006582 -973.4584498778119 32.0698 0.1144 14022 +14024 2 48.801450308023476 -972.335812342225 32.0191 0.1144 14023 +14025 2 48.788361447007105 -971.1916483497321 31.9799 0.1144 14024 +14026 2 48.727117607310646 -970.0543120968591 31.9435 0.1144 14025 +14027 2 48.36837613355692 -968.9682560324642 31.9634 0.1144 14026 +14028 2 48.0942317574916 -967.8798524027974 31.9707 0.1144 14027 +14029 2 48.327748170007226 -966.765459857468 31.7268 0.1144 14028 +14030 2 48.33200642115273 -965.6604024846148 31.4031 0.1144 14029 +14031 2 48.05527973041882 -964.5614959195988 31.1212 0.1144 14030 +14032 2 48.05596307815213 -963.4397376466023 30.8286 0.1144 14031 +14033 2 48.41222867283028 -962.3653970460251 30.6144 0.1144 14032 +14034 2 48.63020785218251 -961.2847352638893 30.6415 0.1144 14033 +14035 2 48.86118949774931 -960.1946726375181 30.8266 0.1144 14034 +14036 2 49.41578565088258 -959.1985576055415 30.9019 0.1144 14035 +14037 2 49.987300732274605 -958.2080067326725 30.9355 0.1144 14036 +14038 2 50.25548502933165 -957.1085753965665 31.0293 0.1144 14037 +14039 2 50.34001286194746 -955.9702595768076 31.1777 0.1144 14038 +14040 2 50.74511488340792 -954.914261370271 31.4426 0.1144 14039 +14041 2 51.415736879272515 -953.9997754006341 31.771 0.1144 14040 +14042 2 51.35855877407849 -952.8801295350648 32.1678 0.1144 14041 +14043 2 51.16963136793791 -951.7688078331221 32.4887 0.1144 14042 +14044 2 51.50214857822752 -950.682184552099 32.7662 0.1144 14043 +14045 2 51.54319842668929 -949.5518125912201 33.1173 0.1144 14044 +14046 2 51.3061684076813 -948.447403821747 33.3892 0.1144 14045 +14047 2 50.78848921070767 -947.4348621786426 33.5972 0.1144 14046 +14048 2 50.63495868493035 -946.3985046738912 33.7588 0.1144 14047 +14049 2 51.491100775120486 -945.6439510168165 33.9128 0.1144 14048 +14050 2 52.21046029052326 -944.8633708879382 34.1183 0.1144 14049 +14051 2 52.22829633928683 -943.7257871655843 34.2843 0.1144 14050 +14052 2 52.16126248738726 -942.5987005838616 34.3871 0.1144 14051 +14053 2 52.362519842747446 -941.4732657003995 34.4336 0.1144 14052 +14054 2 52.50590171703416 -940.3390354380074 34.4067 0.1144 14053 +14055 2 52.523664192047534 -939.2297856985522 34.2642 0.1144 14054 +14056 2 52.14897132937338 -938.1548257231759 34.0668 0.1144 14055 +14057 2 52.169502012670364 -937.0894181668655 33.9111 0.1144 14056 +14058 2 52.84614607699967 -936.1847293749552 33.81 0.1144 14057 +14059 2 53.39924208901783 -935.2646601158831 33.7663 0.1144 14058 +14060 2 53.409058296104746 -934.1293062230027 33.7464 0.1144 14059 +14061 2 53.36955655006838 -932.9946868365739 33.726 0.1144 14060 +14062 2 53.59897199199804 -931.8801152933322 33.717 0.1144 14061 +14063 2 53.68626734036084 -930.761579030105 33.7128 0.1144 14062 +14064 2 53.70031115013333 -929.6222179717013 33.7148 0.1144 14063 +14065 2 53.74341113761986 -928.4799041964719 33.7254 0.1144 14064 +14066 2 53.759593380849964 -927.3352377537892 33.7484 0.1144 14065 +14067 2 53.90761081041305 -926.2062574082802 33.7837 0.1144 14066 +14068 2 54.16678818767946 -925.092172902009 33.8456 0.1144 14067 +14069 2 54.402081936245054 -923.9739881176886 33.9324 0.1144 14068 +14070 2 54.51859843208811 -922.8374903806928 34.015 0.1144 14069 +14071 2 54.591099257503686 -921.697176787722 34.0774 0.1144 14070 +14072 2 54.74499499370276 -920.5645832011342 34.1166 0.1144 14071 +14073 2 54.62766772966549 -919.4496297433103 34.1149 0.1144 14072 +14074 2 54.30897309848237 -918.3523393386976 34.0827 0.1144 14073 +14075 2 54.186249054150124 -917.2219222214604 34.0701 0.1144 14074 +14076 2 54.20140898318269 -916.0778841685305 34.0978 0.1144 14075 +14077 2 54.261030872900164 -914.936096460475 34.1639 0.1144 14076 +14078 2 54.4192096791806 -913.8062696970978 34.272 0.1144 14077 +14079 2 54.44657871490875 -912.666817242678 34.3885 0.1144 14078 +14080 2 54.297565316072934 -911.5350697721849 34.4702 0.1144 14079 +14081 2 54.09461243698357 -910.4097146776173 34.5052 0.1144 14080 +14082 2 54.01371567285494 -909.2709597770554 34.4826 0.1144 14081 +14083 2 54.13206497214375 -908.1374437898025 34.3932 0.1144 14082 +14084 2 54.33697700783247 -907.0137534153533 34.2499 0.1144 14083 +14085 2 54.563355232623394 -905.8942406868234 34.0844 0.1144 14084 +14086 2 54.835816396595646 -904.7841985821594 33.9433 0.1144 14085 +14087 2 55.133889261089024 -903.6810681195882 33.847 0.1144 14086 +14088 2 55.29785256894294 -902.5516767199052 33.7966 0.1144 14087 +14089 2 55.278309377350524 -901.4101888471434 33.7856 0.1144 14088 +14090 2 55.37745204246468 -900.2736887011012 33.8173 0.1144 14089 +14091 2 55.59532820670134 -899.1514200759239 33.8836 0.1144 14090 +14092 2 55.83623607114083 -898.0337753869231 33.971 0.1144 14091 +14093 2 55.92139229350943 -896.8964818813619 34.0631 0.1144 14092 +14094 2 55.78664124197704 -895.7640669909127 34.1457 0.1144 14093 +14095 2 55.53467363072971 -894.6485330995037 34.1762 0.1144 14094 +14096 2 55.40281913609036 -893.5143377714215 34.2073 0.1144 14095 +14097 2 55.49683851642092 -892.3782870172198 34.288 0.1144 14096 +14098 2 55.979693174668625 -891.35501949159 34.4154 0.1144 14097 +14099 2 56.56052080586315 -890.3708346548642 34.568 0.1144 14098 +14100 2 56.951407429899604 -889.3006850358158 34.6864 0.1144 14099 +14101 2 57.348439652917136 -888.2294576351741 34.8177 0.1144 14100 +14102 2 57.80892623679844 -887.1850770981737 35.0048 0.1144 14101 +14103 2 58.30500921435615 -886.159077985417 35.245 0.1144 14102 +14104 2 59.132725925631604 -885.3911255286364 35.5085 0.1144 14103 +14105 2 60.052240883259174 -884.7198115836753 35.7806 0.1144 14104 +14106 2 60.930712710149095 -883.9971935314786 36.0704 0.1144 14105 +14107 2 60.867127822098695 -882.9150566399478 36.4316 0.1144 14106 +14108 2 61.94421941224107 -882.6880096922815 36.7758 0.1144 14107 +14109 2 63.0527260507171 -882.4444698753016 37.1134 0.1144 14108 +14110 2 63.9148846987423 -881.7103984307983 37.485 0.1144 14109 +14111 2 64.77120337779826 -880.9691176338664 37.8717 0.1144 14110 +14112 2 65.13456039400731 -880.4986851320431 38.0736 0.1144 14111 +14113 2 65.82911287375586 -879.5990696681504 38.4129 0.1144 14112 +14114 2 66.52308932956433 -878.6985170829098 38.7041 0.1144 14113 +14115 2 67.2190252209181 -877.7967600839761 38.96 0.1144 14114 +14116 2 67.91620696521454 -876.8928287229649 39.1779 0.1144 14115 +14117 2 68.67288035098787 -876.0396606813327 39.3288 0.1144 14116 +14118 2 69.49523861963502 -875.2454219716317 39.3926 0.1144 14117 +14119 2 70.33573425838 -874.4696146429407 39.3834 0.1144 14118 +14120 2 71.17743431081789 -873.695766749795 39.326 0.1144 14119 +14121 2 71.8412049500786 -872.7789188079554 39.2938 0.1144 14120 +14122 2 72.25931253933678 -871.7202085530676 39.345 0.1144 14121 +14123 2 72.67919746464486 -870.6577060591886 39.424 0.1144 14122 +14124 2 73.15973399898607 -869.6197822618108 39.4836 0.1144 14123 +14125 2 73.65211854261523 -868.5879572082308 39.5195 0.1144 14124 +14126 2 73.99229449717387 -867.5006172430221 39.5492 0.1144 14125 +14127 2 74.41931761020669 -866.4432349323436 39.6001 0.1144 14126 +14128 2 74.97644922282535 -865.4468526080218 39.6875 0.1144 14127 +14129 2 75.2727916064519 -864.3582846121361 39.8138 0.1144 14128 +14130 2 75.18356937063479 -863.2300466750697 39.9627 0.1144 14129 +14131 2 74.96363968684435 -862.1097272633895 40.1215 0.1144 14130 +14132 2 74.73145163212868 -860.9914258562333 40.2816 0.1144 14131 +14133 2 74.51339619103373 -859.8699543966727 40.4275 0.1144 14132 +14134 2 74.30851670343608 -858.7456661571355 40.5684 0.1144 14133 +14135 2 74.11371339970603 -857.6205838655426 40.7198 0.1144 14134 +14136 2 73.92006996883603 -856.494906011234 40.8859 0.1144 14135 +14137 2 73.72780212459136 -855.369556427296 41.0642 0.1144 14136 +14138 2 73.53473471766145 -854.2448156943351 41.251 0.1144 14137 +14139 2 73.34246687341684 -853.1194661103971 41.4434 0.1144 14138 +14140 2 73.15033658783469 -851.9941493534961 41.636 0.1144 14139 +14141 2 72.95713162224231 -850.8693757934982 41.8253 0.1144 14140 +14142 2 73.01916544092867 -849.7381957524175 42.0059 0.1144 14141 +14143 2 73.40368292723883 -848.6706698872874 42.1697 0.1144 14142 +14144 2 73.88822662710362 -847.6369736925951 42.3212 0.1144 14143 +14145 2 74.38181558442568 -846.6071080745605 42.4684 0.1144 14144 +14146 2 74.87486134484472 -845.5761677765157 42.6208 0.1144 14145 +14147 2 75.36685196402912 -844.5459934268863 42.784 0.1144 14146 +14148 2 75.86792066770792 -843.5195120952519 42.9682 0.1144 14147 +14149 2 76.44759935260532 -842.5401418117148 43.2247 0.1144 14148 +14150 2 77.06015997378147 -841.5835212153527 43.5501 0.1144 14149 +14151 2 77.67606654369126 -840.6302434661411 43.9074 0.1144 14150 +14152 2 78.29183555493854 -839.6769328898924 44.2618 0.1144 14151 +14153 2 78.90716610090824 -838.722718019333 44.5866 0.1144 14152 +14154 2 79.52534083795824 -837.7666375182907 44.8608 0.1144 14153 +14155 2 80.46741758854718 -837.1473060270845 44.8356 0.1144 14154 +14156 2 81.39743689626033 -836.7247210684303 44.3638 0.1144 14155 +14157 2 81.95496553490682 -835.7333768360422 44.0765 0.1144 14156 +14158 2 82.50456503535607 -834.7335250324704 43.8726 0.1144 14157 +14159 2 82.8505488243835 -833.6775946049657 43.8024 0.1144 14158 +14160 2 82.91493600305995 -832.5435594462417 43.9396 0.1144 14159 +14161 2 83.13112002409649 -831.4250306942428 44.1907 0.1144 14160 +14162 2 83.3833522396965 -830.3126328205423 44.3775 0.1144 14161 +14163 2 83.67611971991087 -829.2073639245134 44.3971 0.1144 14162 +14164 2 84.12448549152948 -828.1650342190742 44.3299 0.1144 14163 +14165 2 84.8846845164853 -827.3351706806196 44.3153 0.1144 14164 +14166 2 85.7589639767732 -826.599048404555 44.4133 0.1144 14165 +14167 2 86.6191655982996 -825.8488075430156 44.6163 0.1144 14166 +14168 2 87.47419156922972 -825.098930880467 44.905 0.1144 14167 +14169 2 88.32833278462478 -824.3497154347083 45.2432 0.1144 14168 +14170 2 89.05127540720444 -823.4810101599127 45.54 0.1144 14169 +14171 2 89.2946451573791 -822.3914321614656 45.5753 0.1144 14170 +14172 2 89.45638173734254 -821.2607097159903 45.5297 0.1144 14171 +14173 2 89.76421344189585 -820.1623797784616 45.7579 0.1144 14172 +14174 2 90.0548010494029 -819.0665500643347 46.0496 0.1144 14173 +14175 2 90.12579183111374 -817.9325641698404 46.3215 0.1144 14174 +14176 2 90.1241156156908 -816.800283422719 46.6567 0.1144 14175 +14177 2 90.28567629932503 -815.6803507437139 47.0714 0.1144 14176 +14178 2 90.50872570511152 -814.5750917502746 47.5132 0.1144 14177 +14179 2 90.8249359397026 -813.4903926687134 47.9548 0.1144 14178 +14180 2 91.20049646298834 -812.425672656997 48.3988 0.1144 14179 +14181 2 91.54206203231837 -811.3495687485159 48.8373 0.1144 14180 +14182 2 91.74524358714027 -810.2404408407522 49.2422 0.1144 14181 +14183 2 91.82416040546526 -809.1082737215577 49.5984 0.1144 14182 +14184 2 91.97009255461631 -807.9831575196281 49.91 0.1144 14183 +14185 2 92.24560343675584 -806.8792227236268 50.1861 0.1144 14184 +14186 2 92.53348209749477 -805.7770762375864 50.4375 0.1144 14185 +14187 2 92.7250157541823 -804.6549184998526 50.6766 0.1144 14186 +14188 2 92.8436534590576 -803.5211078564989 50.9118 0.1144 14187 +14189 2 92.95465274567233 -802.3867102152941 51.1476 0.1144 14188 +14190 2 93.06590761083648 -801.2521554766511 51.3856 0.1144 14189 +14191 2 93.17719530303768 -800.1174631793456 51.6258 0.1144 14190 +14192 2 93.28885580644231 -798.9839502936758 51.8675 0.1144 14191 +14193 2 93.39976990020727 -797.8496050182837 52.1094 0.1144 14192 +14194 2 93.51076918682203 -796.715207377079 52.3513 0.1144 14193 +14195 2 93.62163091477429 -795.5807769088372 52.5935 0.1144 14194 +14196 2 93.7328005870886 -794.4462745360069 52.8368 0.1144 14195 +14197 2 93.83961371026751 -793.3117502627024 53.0813 0.1144 14196 +14198 2 93.92090421459108 -792.1754243438276 53.3215 0.1144 14197 +14199 2 93.97282670802257 -791.0369606840317 53.5584 0.1144 14198 +14200 2 94.03713730606195 -789.8989816521598 53.8112 0.1144 14199 +14201 2 94.12264601362551 -788.7641712402713 54.0943 0.1144 14200 +14202 2 94.21340773965537 -787.6314140689906 54.409 0.1144 14201 +14203 2 94.3322392578218 -786.5028838078587 54.7674 0.1144 14202 +14204 2 94.4968785978445 -785.3837585165186 55.1846 0.1144 14203 +14205 2 94.66760177159011 -784.2689929232452 55.6461 0.1144 14204 +14206 2 94.81438816358941 -783.1515682926218 56.1235 0.1144 14205 +14207 2 94.95142742932454 -782.0320356938796 56.6034 0.1144 14206 +14208 2 95.06089944780912 -780.9119582290723 57.0872 0.1144 14207 +14209 2 95.02466466082278 -779.7941116473751 57.605 0.1144 14208 +14210 2 94.65298308395306 -778.761670634331 58.1613 0.1144 14209 +14211 2 93.8644794222034 -777.9975294527374 58.6569 0.1144 14210 +14212 2 92.82668595634854 -777.5691472376197 59.0204 0.1144 14211 +14213 2 91.70678350594153 -777.4760009463766 59.2651 0.1144 14212 +14214 2 90.58277358000868 -777.6620458237702 59.4222 0.1144 14213 +14215 2 89.47341801992154 -777.9383871549239 59.5288 0.1144 14214 +14216 2 88.43264740963251 -778.37939598336 59.5885 0.1144 14215 +14217 2 87.52477173792661 -779.0677359972518 59.5826 0.1144 14216 +14218 2 86.70750781584181 -779.8668252361098 59.5384 0.1144 14217 +14219 2 85.7873200223248 -780.5089728084499 59.4737 0.1144 14218 +14220 2 84.69543510491599 -780.8135457999233 59.3922 0.1144 14219 +14221 2 83.55910954714096 -780.8458796327811 59.3261 0.1144 14220 +14222 2 82.41809098378019 -780.7684126200201 59.318 0.1144 14221 +14223 2 81.27718774717114 -780.7848966939997 59.3942 0.1144 14222 +14224 2 80.1442530874105 -780.923958179369 59.5328 0.1144 14223 +14225 2 79.03890159126385 -781.1978383173242 59.7041 0.1144 14224 +14226 2 78.28355185243612 -781.9360986657466 59.9102 0.1144 14225 +14227 2 77.6746576253843 -782.8971563280453 60.1454 0.1144 14226 +14228 2 76.69383145176933 -783.1079927982108 60.5615 0.1144 14227 +14229 2 75.93437614275385 -782.3433687052029 61.1828 0.1144 14228 +14230 2 75.9176783441937 -782.3536324044993 61.5513 0.1144 14229 +14231 2 75.51763144342881 -782.3981053984214 64.0612 0.1144 14230 +14232 2 74.65211984999976 -782.062669008565 65.4058 0.1144 14231 +14233 2 74.13835132035203 -781.1525445841353 66.2502 0.1144 14232 +14234 2 73.7750249406248 -780.1027602530489 66.9127 0.1144 14233 +14235 2 73.3244338609946 -779.0704619778602 67.3896 0.1144 14234 +14236 2 72.84983252056406 -778.0382495880577 67.7062 0.1144 14235 +14237 2 72.41366565642038 -776.9835863400857 67.8784 0.1144 14236 +14238 2 72.00923428600106 -775.9135244415861 67.9689 0.1144 14237 +14239 2 71.61239679300941 -774.8414945426764 68.0266 0.1144 14238 +14240 2 71.36635124199806 -773.7264288419988 68.0957 0.1144 14239 +14241 2 71.25092174294409 -772.5901193899797 68.1937 0.1144 14240 +14242 2 71.16591150720089 -771.4500193681313 68.3183 0.1144 14241 +14243 2 70.98567928236913 -770.3226713184446 68.4639 0.1144 14242 +14244 2 70.66972253617526 -769.2263977647481 68.6241 0.1144 14243 +14245 2 70.30009670365607 -768.1457408423464 68.7912 0.1144 14244 +14246 2 69.92498648894565 -767.0670464570733 68.9573 0.1144 14245 +14247 2 69.549961467085 -765.9882997059873 69.1163 0.1144 14246 +14248 2 69.174680866675 -764.9097100523395 69.2656 0.1144 14247 +14249 2 69.04133744157215 -763.7790123071477 69.3893 0.1144 14248 +14250 2 69.09037199032328 -762.6383328460244 69.4764 0.1144 14249 +14251 2 69.17294899960643 -761.497225200998 69.5338 0.1144 14250 +14252 2 69.2581787010291 -760.3571867727002 69.5727 0.1144 14251 +14253 2 69.87050166061785 -759.4167934224683 69.6074 0.1144 14252 +14254 2 70.44992166538275 -758.4308914404851 69.631 0.1144 14253 +14255 2 70.54895881163863 -757.2957473422925 69.641 0.1144 14254 +14256 2 70.08397333667213 -756.2533986251781 69.6598 0.1144 14255 +14257 2 70.49651526366134 -756.040198886726 68.2744 0.1144 14256 +14258 2 71.23308453393388 -755.6666810557057 66.3628 0.1144 14257 +14259 2 72.25826655153509 -755.409799291489 65.5029 0.1144 14258 +14260 2 73.36848384801364 -755.228241436798 64.9925 0.1144 14259 +14261 2 74.49848180200833 -755.1688085000733 64.6271 0.1144 14260 +14262 2 75.55844783582046 -754.8033320204407 64.1998 0.1144 14261 +14263 2 76.6217777353282 -754.4572685366508 63.6132 0.1144 14262 +14264 2 77.71998904315159 -754.2964718533241 62.937 0.1144 14263 +14265 2 78.79743052004999 -754.140459950384 62.116 0.1144 14264 +14266 2 79.74379794093777 -754.0045647529624 60.5788 0.1144 14265 +14267 2 69.8368179762412 -755.5499650762125 69.7724 0.1144 14256 +14268 2 69.45950446123189 -754.4753247589941 70.019 0.1144 14267 +14269 2 68.80272325750244 -753.56436663678 70.3231 0.1144 14268 +14270 2 67.90806069269357 -752.8694694968165 70.6104 0.1144 14269 +14271 2 67.17828093048428 -752.0060814330411 70.856 0.1144 14270 +14272 2 66.84975078390784 -750.9256356904004 71.0175 0.1144 14271 +14273 2 66.68593105363287 -749.7950073934023 71.1054 0.1144 14272 +14274 2 66.54858046300652 -748.6600820455251 71.2082 0.1144 14273 +14275 2 66.59599634761149 -747.5203975348436 71.328 0.1144 14274 +14276 2 66.96652428959301 -746.4453895143104 71.4521 0.1144 14275 +14277 2 66.75583987971721 -745.3475586532779 71.659 0.1144 14276 +14278 2 66.55046094881659 -744.2262771655406 71.8852 0.1144 14277 +14279 2 66.50840031570323 -743.0865399576098 72.109 0.1144 14278 +14280 2 66.69248705307109 -741.9608603748131 72.3164 0.1144 14279 +14281 2 67.95059853895609 -741.6387437824364 72.5822 0.1144 14280 +14282 2 68.91639473571236 -741.0369948926734 72.3506 0.1144 14281 +14283 2 69.88206119878603 -740.432743370462 72.0994 0.1144 14282 +14284 2 70.83397656635131 -739.803256013168 71.9102 0.1144 14283 +14285 2 71.50278288849933 -738.9033848760296 71.6223 0.1144 14284 +14286 2 71.74343507969323 -737.8114863446294 71.1586 0.1144 14285 +14287 2 71.00108871810792 -737.0269553704538 70.6031 0.1144 14286 +14288 2 70.98072012719223 -735.8980650655508 70.152 0.1144 14287 +14289 2 70.91151191321492 -734.7697326308853 69.7287 0.1144 14288 +14290 2 70.70772571512613 -733.6850339697501 68.9926 0.1144 14289 +14291 2 66.6873350371438 -741.699450989496 72.8031 0.1144 14280 +14292 2 66.66660826101108 -740.6299407460896 73.7531 0.1144 14291 +14293 2 66.64545260843872 -739.5028254155382 74.1782 0.1144 14292 +14294 2 66.5584805281037 -738.3813036381115 74.6861 0.1144 14293 +14295 2 66.44034819075158 -737.2776440661094 75.3584 0.1144 14294 +14296 2 65.94197003085549 -736.3136896637964 76.1858 0.1144 14295 +14297 2 64.94201199820378 -735.9573641624143 77.1039 0.1144 14296 +14298 2 63.881882995224004 -736.219645761161 77.9192 0.1144 14297 +14299 2 62.84768675368139 -736.3236043297311 79.0891 0.1144 14298 +14300 2 75.78044428797793 -781.8311281424932 61.6258 0.1144 14229 +14301 2 75.48211695106237 -780.7346999004048 61.9632 0.1144 14300 +14302 2 75.34942224172082 -779.6037207873737 62.2042 0.1144 14301 +14303 2 74.8448713558286 -778.5791185701472 62.3574 0.1144 14302 +14304 2 74.25745755253823 -777.5986419341666 62.4932 0.1144 14303 +14305 2 73.57396964226892 -776.6826190487998 62.5892 0.1144 14304 +14306 2 72.85480935552641 -775.7939225528168 62.6598 0.1144 14305 +14307 2 72.1351582376936 -774.9042365696732 62.6923 0.1144 14306 +14308 2 71.41536956119828 -774.0145177594927 62.6738 0.1144 14307 +14309 2 70.6962092744558 -773.1258212635098 62.5923 0.1144 14308 +14310 2 69.97793295601552 -772.2379899842861 62.4375 0.1144 14309 +14311 2 69.87050867321602 -772.7283522620614 62.1261 0.1144 14310 +14312 2 69.62882555561194 -773.824875422175 61.591 0.1144 14311 +14313 2 69.39106681972802 -774.9083047200577 60.9076 0.1144 14312 +14314 2 69.15460320101649 -775.9829560528284 60.1401 0.1144 14313 +14315 2 68.91826621440448 -777.0534212221633 59.3421 0.1144 14314 +14316 2 68.66598024791853 -778.1176086497878 58.522 0.1144 14315 +14317 2 68.34921760637128 -779.155577603524 57.6425 0.1144 14316 +14318 2 67.82540501023577 -780.1274886561052 57.0786 0.1144 14317 +14319 2 67.23191888050512 -781.1019646095374 57.0072 0.1144 14318 +14320 2 66.65883828801252 -782.092069192149 57.0433 0.1144 14319 +14321 2 66.00724151936379 -783.0310141218899 57.0744 0.1144 14320 +14322 2 65.43612036241647 -784.0199142908086 56.9926 0.1144 14321 +14323 2 64.62127778643116 -784.6081079463011 56.7008 0.1144 14322 +14324 2 63.86837552584342 -783.7764224071688 56.551 0.1144 14323 +14325 2 63.22785744951622 -782.8850477138449 56.6524 0.1144 14324 +14326 2 62.169392255062704 -782.5633938437758 56.856 0.1144 14325 +14327 2 61.02949351038542 -782.5375903191482 57.055 0.1144 14326 +14328 2 59.88759148186661 -782.5344988365656 57.241 0.1144 14327 +14329 2 58.745028236557886 -782.530522598448 57.3854 0.1144 14328 +14330 2 57.6021038938415 -782.5280595056183 57.4759 0.1144 14329 +14331 2 56.45761404002447 -782.5251501225309 57.528 0.1144 14330 +14332 2 55.314113673368 -782.5217499083535 57.5621 0.1144 14331 +14333 2 54.17021697322022 -782.5373742288552 57.582 0.1144 14332 +14334 2 53.02878285134432 -782.6051278665236 57.5786 0.1144 14333 +14335 2 51.89043659590989 -782.7193443396719 57.547 0.1144 14334 +14336 2 50.75298912415656 -782.8438073823875 57.4907 0.1144 14335 +14337 2 49.617139990540934 -782.9685791566978 57.4165 0.1144 14336 +14338 2 48.479692518787644 -783.0930421994133 57.3308 0.1144 14337 +14339 2 47.34348228776429 -783.2193271190116 57.2373 0.1144 14338 +14340 2 46.2079035480769 -783.3533231486916 57.1346 0.1144 14339 +14341 2 45.073402589982905 -783.4934647773528 57.0268 0.1144 14340 +14342 2 43.93947765582902 -783.6345435273618 56.9293 0.1144 14341 +14343 2 42.813714608670566 -783.8282393240444 56.8744 0.1144 14342 +14344 2 41.738090314921266 -784.1953586352994 56.9234 0.1144 14343 +14345 2 40.746583291344194 -784.7537514022631 57.1245 0.1144 14344 +14346 2 39.80259396039311 -785.3850575348567 57.4588 0.1144 14345 +14347 2 38.86720359664184 -786.0217597552089 57.871 0.1144 14346 +14348 2 37.93440105818878 -786.6582798760656 58.3055 0.1144 14347 +14349 2 36.99870196284259 -787.2965804345554 58.7146 0.1144 14348 +14350 2 35.95958135198927 -787.2947539352433 58.9966 0.1144 14349 +14351 2 35.350282196354215 -786.3733907609508 58.9302 0.1144 14350 +14352 2 34.62899518994993 -785.4926922061702 58.6726 0.1144 14351 +14353 2 33.723374787321575 -784.8059391309364 58.3719 0.1144 14352 +14354 2 32.80750230449647 -784.1307698742282 58.0745 0.1144 14353 +14355 2 31.768156757846697 -783.663197468435 57.8642 0.1144 14354 +14356 2 30.660964354892627 -783.3781856391352 57.7917 0.1144 14355 +14357 2 29.550833955795753 -783.0990880450914 57.8385 0.1144 14356 +14358 2 28.442845091739542 -782.821373862653 57.9642 0.1144 14357 +14359 2 27.33516495927833 -782.5420613420769 58.1398 0.1144 14358 +14360 2 26.22976392052027 -782.264165060143 58.3456 0.1144 14359 +14361 2 25.109490659508367 -782.0516357194351 58.5749 0.1144 14360 +14362 2 23.978424246354564 -781.9090088670007 58.8269 0.1144 14361 +14363 2 22.84811595663618 -781.7699069612123 59.0979 0.1144 14362 +14364 2 21.719799929500198 -781.6294630830685 59.3846 0.1144 14363 +14365 2 20.643554668236902 -781.257113264204 59.6504 0.1144 14364 +14366 2 19.53894457995139 -780.9826043702536 59.9525 0.1144 14365 +14367 2 18.436710492014726 -780.7121519060563 60.2792 0.1144 14366 +14368 2 17.333486916917536 -780.4421902729493 60.6228 0.1144 14367 +14369 2 16.230624439228023 -780.1707154945544 60.9756 0.1144 14368 +14370 2 15.188294733788865 -779.7223497229359 61.3141 0.1144 14369 +14371 2 14.150283334514711 -779.2592393851363 61.6386 0.1144 14370 +14372 2 13.1122719352405 -778.7961290473368 61.9447 0.1144 14371 +14373 2 12.072747390678444 -778.3326576121294 62.2381 0.1144 14372 +14374 2 12.803663704266313 -777.8941815323587 62.5797 0.1144 14373 +14375 2 13.790623466999932 -777.3371752785833 62.9367 0.1144 14374 +14376 2 14.802139694323785 -776.8134356754783 63.1963 0.1144 14375 +14377 2 15.82814481458297 -776.3197605361389 63.4726 0.1144 14376 +14378 2 16.857226182184178 -775.8442666151934 63.8235 0.1144 14377 +14379 2 17.85577828096004 -775.3191052628166 64.2678 0.1144 14378 +14380 2 18.84845207310002 -774.7975571515185 64.8088 0.1144 14379 +14381 2 19.908019269678192 -774.4940680974565 65.4511 0.1144 14380 +14382 2 21.013995249076743 -774.4320284891945 66.1172 0.1144 14381 +14383 2 22.109653778293108 -774.3050806362965 66.8021 0.1144 14382 +14384 2 23.09302733226673 -773.8295107325542 67.475 0.1144 14383 +14385 2 23.983323551460558 -773.1587844306329 68.0896 0.1144 14384 +14386 2 24.858056197708663 -772.458536861849 68.6482 0.1144 14385 +14387 2 25.756859988086376 -771.7798814217304 69.1351 0.1144 14386 +14388 2 26.68565225943283 -771.1324449023039 69.5372 0.1144 14387 +14389 2 27.62616590796766 -770.4952932901111 69.8625 0.1144 14388 +14390 2 28.57064296842597 -769.8582878487937 70.128 0.1144 14389 +14391 2 29.512220370408116 -769.2163740492251 70.3483 0.1144 14390 +14392 2 30.42892947462198 -768.5361031412397 70.5267 0.1144 14391 +14393 2 31.314090097396047 -767.8134819874597 70.6647 0.1144 14392 +14394 2 32.18952160556417 -767.0792339540906 70.7728 0.1144 14393 +14395 2 33.065366576952684 -766.3435579682832 70.8596 0.1144 14394 +14396 2 33.9417875722813 -765.6088191038239 70.931 0.1144 14395 +14397 2 34.81815620179715 -764.8739950465146 70.9929 0.1144 14396 +14398 2 35.69466238997555 -764.1392038162423 71.0494 0.1144 14397 +14399 2 36.57108338530418 -763.4044649517829 71.1032 0.1144 14398 +14400 2 37.438318462929814 -762.6591738877444 71.1539 0.1144 14399 +14401 2 38.22172818600073 -761.8298333148806 71.1987 0.1144 14400 +14402 2 38.90669772201855 -760.914627559475 71.2348 0.1144 14401 +14403 2 39.50799186847648 -759.9421603058179 71.2639 0.1144 14402 +14404 2 39.98032646164569 -758.9038785126154 71.2908 0.1144 14403 +14405 2 40.36078131503646 -757.8253510560658 71.3199 0.1144 14404 +14406 2 40.72212333931506 -756.7397908359535 71.3558 0.1144 14405 +14407 2 41.00143585989119 -755.6321107034922 71.4031 0.1144 14406 +14408 2 40.853468108148306 -754.530709017256 71.4669 0.1144 14407 +14409 2 40.790929151279514 -753.4021507294951 71.5722 0.1144 14408 +14410 2 41.218493052168895 -752.3632169295557 71.727 0.1144 14409 +14411 2 41.788101063828336 -751.3739556632295 71.9169 0.1144 14410 +14412 2 42.36759764923035 -750.3919975543943 72.1213 0.1144 14411 +14413 2 42.946826942287174 -749.4075039860735 72.3223 0.1144 14412 +14414 2 43.527260649036975 -748.4249698532981 72.5077 0.1144 14413 +14415 2 43.96644050295265 -747.3720879482801 72.6258 0.1144 14414 +14416 2 43.87356978997316 -746.2554830939691 72.5528 0.1144 14415 +14417 2 43.92896407700505 -745.1177025514371 72.3593 0.1144 14416 +14418 2 44.57106929793903 -744.176492556139 72.2714 0.1144 14417 +14419 2 45.08154435648278 -743.1523286558745 72.2921 0.1144 14418 +14420 2 45.218374993547826 -742.0181343221026 72.4164 0.1144 14419 +14421 2 45.35057317691968 -740.8853788673317 72.6247 0.1144 14420 +14422 2 45.48246262869655 -739.7542217506984 72.8938 0.1144 14421 +14423 2 45.61199631143688 -738.6432935824375 73.4798 0.1144 14422 +14424 2 11.447418259180438 -778.171797494947 62.5887 0.1144 14373 +14425 2 10.38407345530456 -777.8989214826812 63.364 0.1144 14424 +14426 2 9.30807325447563 -777.6230253830058 63.9828 0.1144 14425 +14427 2 8.213175151066906 -777.3425467864033 64.4221 0.1144 14426 +14428 2 7.12300640799711 -777.0632695019108 64.9228 0.1144 14427 +14429 2 6.03600151416552 -776.7847472392706 65.4612 0.1144 14428 +14430 2 4.948996620333929 -776.5062249766304 66.0167 0.1144 14429 +14431 2 3.862928847850128 -776.2271266900502 66.5703 0.1144 14430 +14432 2 2.775871588205831 -775.9485192345602 67.1115 0.1144 14431 +14433 2 1.6895334217937261 -775.6601966926103 67.636 0.1144 14432 +14434 2 0.6060004162587518 -775.3567684870718 68.1386 0.1144 14433 +14435 2 -0.4670803032297215 -775.0092363166729 68.6036 0.1144 14434 +14436 2 -1.523387241361263 -774.6057326333502 69.0144 0.1144 14435 +14437 2 -2.5734632929657266 -774.1755097424589 69.365 0.1144 14436 +14438 2 -3.624873491945749 -773.740824783574 69.6545 0.1144 14437 +14439 2 -4.6794475401640625 -773.3053848028367 69.8807 0.1144 14438 +14440 2 -5.73495870973008 -772.8705208460394 70.0414 0.1144 14439 +14441 2 -6.810410611474367 -772.4841845844296 70.1151 0.1144 14440 +14442 2 -7.930004833430587 -772.314199208111 70.0218 0.1144 14441 +14443 2 -9.06718912071014 -772.2840274205523 69.741 0.1144 14442 +14444 2 -10.199021168527622 -772.2667642941457 69.3311 0.1144 14443 +14445 2 -11.325867490224027 -772.2490189488615 68.8523 0.1144 14444 +14446 2 -12.326893573586943 -771.7914634654203 68.4351 0.1144 14445 +14447 2 -13.23978430666915 -771.1144614052664 68.1397 0.1144 14446 +14448 2 -14.138157019202424 -770.4110457675558 67.9602 0.1144 14447 +14449 2 -15.12585277442804 -769.841884046154 67.8748 0.1144 14448 +14450 2 -16.23906072892882 -769.6868714981583 67.8572 0.1144 14449 +14451 2 -17.382525859501783 -769.6659598945893 67.8835 0.1144 14450 +14452 2 -18.526925009839402 -769.6523131108446 67.9336 0.1144 14451 +14453 2 -19.66981101488915 -769.6390274245075 68.005 0.1144 14452 +14454 2 -20.80897015093325 -769.5510270110585 68.1055 0.1144 14453 +14455 2 -21.931638211184975 -769.345486585617 68.248 0.1144 14454 +14456 2 -23.047502462552472 -769.1074752780706 68.446 0.1144 14455 +14457 2 -24.161407278374696 -768.8682595568314 68.7109 0.1144 14456 +14458 2 -25.269742519155926 -768.6270289326508 69.0721 0.1144 14457 +14459 2 -26.352775483547504 -768.3702456620877 69.704 0.1144 14458 +14460 2 -27.406098878415122 -768.1138642356452 70.5908 0.1144 14459 +14461 2 -28.437490255147367 -767.8603176955339 71.6288 0.1144 14460 +14462 2 -29.45512655285907 -767.6115802926779 72.7527 0.1144 14461 +14463 2 -30.470568949717375 -767.364311494277 73.8931 0.1144 14462 +14464 2 -31.47996566112701 -767.0810468671252 74.9759 0.1144 14463 +14465 2 -32.35052666381574 -766.4249781278932 75.8184 0.1144 14464 +14466 2 -33.157000506242866 -765.661201097942 76.4859 0.1144 14465 +14467 2 -33.94079754270862 -764.9169387412242 77.4063 0.1144 14466 +14468 2 69.86421061120419 -772.110457720562 62.6878 0.1144 14310 +14469 2 69.1923395655533 -771.3565572841541 63.9453 0.1144 14468 +14470 2 68.44187275622232 -770.5152754656815 64.4098 0.1144 14469 +14471 2 67.6998752751047 -769.6512980423565 64.6489 0.1144 14470 +14472 2 66.97097637961456 -768.7820863994564 64.8642 0.1144 14471 +14473 2 66.07398707868653 -768.0765292267051 65.0577 0.1144 14472 +14474 2 65.17365493060792 -767.3743180026877 65.221 0.1144 14473 +14475 2 64.37105000250523 -766.590673121772 65.3414 0.1144 14474 +14476 2 63.87212184469955 -765.562614760905 65.3951 0.1144 14475 +14477 2 63.26681754295193 -764.5931349455989 65.3932 0.1144 14476 +14478 2 62.56410808843283 -763.6903356087973 65.347 0.1144 14477 +14479 2 61.83947513329488 -762.8062942068664 65.2736 0.1144 14478 +14480 2 61.07765975797899 -761.9559068927957 65.1599 0.1144 14479 +14481 2 60.26448239898501 -761.1571625514576 64.9004 0.1144 14480 +14482 2 59.53193812791554 -760.3062727871971 64.491 0.1144 14481 +14483 2 59.06704946489843 -759.292153321356 63.9873 0.1144 14482 +14484 2 58.92050105338092 -758.1951613373005 63.3884 0.1144 14483 +14485 2 59.01774044288217 -757.0907022202982 62.6954 0.1144 14484 +14486 2 59.17850225636778 -755.9954410188834 62.018 0.1144 14485 +14487 2 59.492191846852336 -754.9203905824751 61.4723 0.1144 14486 +14488 2 59.95058685245915 -753.8920856574481 61.0308 0.1144 14487 +14489 2 60.36469648624683 -752.8748032476896 60.5018 0.1144 14488 +14490 2 60.124905752498364 -751.8136442002285 59.9245 0.1144 14489 +14491 2 59.91421273040987 -750.7198095781566 59.4205 0.1144 14490 +14492 2 59.90700208133326 -749.5976214047471 58.8986 0.1144 14491 +14493 2 60.002158599468984 -748.4796526005955 58.3596 0.1144 14492 +14494 2 60.13321403970984 -747.3650892907817 57.822 0.1144 14493 +14495 2 60.27767989875615 -746.250382219139 57.302 0.1144 14494 +14496 2 60.43507784654612 -745.1357080218816 56.7988 0.1144 14495 +14497 2 60.59907939737052 -744.0210830888539 56.3119 0.1144 14496 +14498 2 60.764529226641415 -742.9055679370096 55.8446 0.1144 14497 +14499 2 60.93003220895788 -741.7886115444658 55.3986 0.1144 14498 +14500 2 61.088055444917615 -740.6682708655217 54.9749 0.1144 14499 +14501 2 61.14742795925186 -739.5400178466729 54.5754 0.1144 14500 +14502 2 61.01328807304691 -738.4166177483423 54.2357 0.1144 14501 +14503 2 60.93377782210666 -737.282410108624 53.9787 0.1144 14502 +14504 2 61.16271724832484 -736.1762304310296 53.7832 0.1144 14503 +14505 2 61.96484397016086 -735.4481879033456 53.599 0.1144 14504 +14506 2 63.02973646857852 -735.0447037936042 53.4652 0.1144 14505 +14507 2 63.679991957972675 -735.8172902602944 53.2868 0.1144 14506 +14508 2 64.56534171916891 -880.4027568764808 37.5547 0.1144 14111 +14509 2 64.18580758473908 -879.3657521654006 36.8264 0.1144 14508 +14510 2 63.803726371724196 -878.3007331295796 36.4333 0.1144 14509 +14511 2 63.44899206349399 -877.2189046678702 36.1424 0.1144 14510 +14512 2 63.11039124367966 -876.1285679424403 35.9744 0.1144 14511 +14513 2 62.77320666250756 -875.0359521233073 35.8798 0.1144 14512 +14514 2 62.45130674283641 -873.9420404944653 35.6899 0.1144 14513 +14515 2 62.16170421798748 -872.8483486102489 35.2696 0.1144 14514 +14516 2 61.89705449121999 -871.7688988420234 34.6164 0.1144 14515 +14517 2 61.64096539398571 -870.7056677550636 33.794 0.1144 14516 +14518 2 61.38857783226314 -869.6549514048112 32.8762 0.1144 14517 +14519 2 61.13637237003593 -868.606822879857 31.9332 0.1144 14518 +14520 2 60.8964995450207 -867.5524049940927 31.0274 0.1144 14519 +14521 2 60.76086512302649 -866.4687765736597 30.2358 0.1144 14520 +14522 2 60.81876273504332 -865.3549289240582 29.6363 0.1144 14521 +14523 2 60.95354323308368 -864.2326764046368 29.2146 0.1144 14522 +14524 2 60.876547926227914 -863.1506832749347 28.8859 0.1144 14523 +14525 2 60.10406052023998 -862.3766973205467 28.5415 0.1144 14524 +14526 2 59.15204265211716 -861.7695241749161 28.2038 0.1144 14525 +14527 2 58.89047638214615 -860.8721147107285 27.9936 0.1144 14526 +14528 2 58.848757118272346 -859.7818197263222 27.9238 0.1144 14527 +14529 2 58.371121662286214 -858.7513549471157 27.8492 0.1144 14528 +14530 2 57.78929776004534 -857.7675597261571 27.7402 0.1144 14529 +14531 2 57.209924124440136 -856.7835495786658 27.5957 0.1144 14530 +14532 2 56.663905433938254 -855.7816193966559 27.4024 0.1144 14531 +14533 2 56.25718867195329 -854.7223527279078 27.1413 0.1144 14532 +14534 2 56.01811092296711 -853.6125119420562 26.8453 0.1144 14533 +14535 2 55.840457911220795 -852.4889780318348 26.5507 0.1144 14534 +14536 2 55.62382181035119 -851.3719162744552 26.2699 0.1144 14535 +14537 2 55.365358429278075 -850.2631923004003 26.0036 0.1144 14536 +14538 2 54.94211425443254 -849.2140845993231 25.7558 0.1144 14537 +14539 2 54.291513885767785 -848.2845373061242 25.5321 0.1144 14538 +14540 2 53.58301441904567 -847.3919876404728 25.304 0.1144 14539 +14541 2 52.94492568550524 -846.4520500158781 25.0045 0.1144 14540 +14542 2 52.38493768198697 -845.4669230565903 24.6266 0.1144 14541 +14543 2 52.15137783476564 -844.3790448015608 24.2597 0.1144 14542 +14544 2 52.07921759649943 -843.2457188157945 23.9311 0.1144 14543 +14545 2 52.00582011750325 -842.1105709531453 23.6329 0.1144 14544 +14546 2 51.86420127217437 -840.9822601348652 23.3522 0.1144 14545 +14547 2 51.61496214647079 -839.873265766882 23.0714 0.1144 14546 +14548 2 51.32976622221966 -838.771465746556 22.7868 0.1144 14547 +14549 2 51.06168466133215 -837.6646628703796 22.5076 0.1144 14548 +14550 2 50.92265364130148 -836.5361699526043 22.2842 0.1144 14549 +14551 2 50.845281823818766 -835.396656928607 22.1343 0.1144 14550 +14552 2 50.709326358593444 -834.2622826026125 22.0651 0.1144 14551 +14553 2 50.33936285625816 -833.1885239393459 22.0702 0.1144 14552 +14554 2 49.74367673432485 -832.2171230261613 22.0888 0.1144 14553 +14555 2 48.9342064214722 -831.420208386686 22.0818 0.1144 14554 +14556 2 48.1165341674475 -830.622935751386 22.0201 0.1144 14555 +14557 2 47.506250342745005 -829.6673157467259 21.8891 0.1144 14556 +14558 2 46.96456398655411 -828.661548784892 21.7048 0.1144 14557 +14559 2 46.41329537916906 -827.6642541581584 21.4843 0.1144 14558 +14560 2 45.83868393093982 -826.6813077641145 21.211 0.1144 14559 +14561 2 45.24670485514778 -825.7117365527924 20.8756 0.1144 14560 +14562 2 44.60514664235728 -824.7793310403672 20.4721 0.1144 14561 +14563 2 43.95095016234288 -823.8615020227737 19.9907 0.1144 14562 +14564 2 43.50102340108566 -822.8367772990041 19.4891 0.1144 14563 +14565 2 43.0074505843252 -821.8283163951733 18.9867 0.1144 14564 +14566 2 42.26875830522806 -820.9958782432352 18.434 0.1144 14565 +14567 2 41.2602884041286 -820.5414897106152 17.8602 0.1144 14566 +14568 2 40.31592928027476 -819.9335998807991 17.3734 0.1144 14567 +14569 2 39.975017137560485 -818.8916361621648 16.9236 0.1144 14568 +14570 2 39.261803031182126 -818.0328555973738 16.4969 0.1144 14569 +14571 2 38.329691351690514 -817.4187287725604 15.934 0.1144 14570 +14572 2 37.447130072346795 -817.140724675103 15.5463 0.1144 14571 +14573 2 37.30278796230817 -816.7071036824497 15.3242 0.1144 14572 +14574 2 36.96885862639036 -815.6285681111247 14.9152 0.1144 14573 +14575 2 36.617957996401 -814.5443831878422 14.7431 0.1144 14574 +14576 2 36.11885084068305 -813.5204257975611 14.6372 0.1144 14575 +14577 2 35.563481262711974 -812.5229521729152 14.5702 0.1144 14576 +14578 2 35.101039072210796 -811.4778663580443 14.5155 0.1144 14577 +14579 2 34.56246730102853 -810.4794580210971 14.4675 0.1144 14578 +14580 2 33.74849968409862 -809.7013889183887 14.4177 0.1144 14579 +14581 2 32.757278982227064 -809.1329853204222 14.3555 0.1144 14580 +14582 2 31.81603064926219 -808.5017026929955 14.2623 0.1144 14581 +14583 2 31.127399033504588 -807.6130219416685 14.11 0.1144 14582 +14584 2 30.661881288198032 -806.5738175350166 13.9115 0.1144 14583 +14585 2 30.281489116800202 -805.498369830133 13.7154 0.1144 14584 +14586 2 29.763143192407085 -804.4956284663383 13.5514 0.1144 14585 +14587 2 29.2487161391046 -803.4904782751576 13.4137 0.1144 14586 +14588 2 28.94057680908358 -802.3906907487262 13.3036 0.1144 14587 +14589 2 28.87733209459205 -801.2586927071692 13.2112 0.1144 14588 +14590 2 28.879348897164334 -800.1173338755534 13.0765 0.1144 14589 +14591 2 28.665876645533018 -799.0010271400262 12.8843 0.1144 14590 +14592 2 28.30607141833198 -797.9197332630072 12.6985 0.1144 14591 +14593 2 27.770969126399848 -796.9137928138905 12.5568 0.1144 14592 +14594 2 27.173863664241168 -795.9379821985249 12.4654 0.1144 14593 +14595 2 26.476362687355447 -795.0346811040699 12.3831 0.1144 14594 +14596 2 25.625515178676324 -794.2752901593159 12.338 0.1144 14595 +14597 2 24.76918328780596 -793.5178617516901 12.3896 0.1144 14596 +14598 2 24.298721948164683 -792.4990683929059 12.5196 0.1144 14597 +14599 2 24.007250691249794 -791.3958435217248 12.6879 0.1144 14598 +14600 2 23.667797942937455 -790.3060304544224 12.8556 0.1144 14599 +14601 2 23.305137598093125 -789.2223832174133 13.0176 0.1144 14600 +14602 2 23.014636289563043 -788.1184447636297 13.1734 0.1144 14601 +14603 2 22.807849732232825 -786.9954461306352 13.3263 0.1144 14602 +14604 2 22.783450548202012 -785.8569431091993 13.5128 0.1144 14603 +14605 2 22.741231243184842 -784.7200031898175 13.795 0.1144 14604 +14606 2 22.347299611835552 -783.6662592409274 14.1739 0.1144 14605 +14607 2 21.88009282491194 -782.637483503338 14.6097 0.1144 14606 +14608 2 21.474580476619934 -781.5801762701353 15.0102 0.1144 14607 +14609 2 21.080824741599827 -780.515642554775 15.3701 0.1144 14608 +14610 2 20.70025357228971 -779.4442958204775 15.6599 0.1144 14609 +14611 2 20.329840678113925 -778.3654138724276 15.8694 0.1144 14610 +14612 2 19.9713664967054 -777.281893267518 16.0758 0.1144 14611 +14613 2 19.631288460223317 -776.1977466819021 16.3973 0.1144 14612 +14614 2 19.29772022171312 -775.1176979652892 16.8321 0.1144 14613 +14615 2 18.835190429315617 -774.0900383469599 17.3148 0.1144 14614 +14616 2 18.261298766855163 -773.1214394930691 17.7978 0.1144 14615 +14617 2 17.67649070582496 -772.1568509062852 18.2662 0.1144 14616 +14618 2 17.147228382862068 -771.158119809597 18.6997 0.1144 14617 +14619 2 16.96022758522969 -770.0457312526238 19.136 0.1144 14618 +14620 2 16.78778615269985 -768.9283843806332 19.5627 0.1144 14619 +14621 2 16.992149196767286 -767.8910715415054 19.863 0.1144 14620 +14622 2 17.254311425359646 -766.7818430276727 20.0833 0.1144 14621 +14623 2 17.51785706555725 -765.6704729787994 20.2391 0.1144 14622 +14624 2 17.78179663019955 -764.5574522259756 20.3496 0.1144 14623 +14625 2 18.04730170594246 -763.4448777634092 20.4316 0.1144 14624 +14626 2 18.418317377431208 -762.3641704341522 20.5441 0.1144 14625 +14627 2 18.862311784535507 -761.3124374754311 20.7076 0.1144 14626 +14628 2 19.306168632977318 -760.2606716896731 20.8811 0.1144 14627 +14629 2 19.749501823291723 -759.2080539754171 21.0563 0.1144 14628 +14630 2 20.157806031657074 -758.1419881972255 21.2131 0.1144 14629 +14631 2 20.53287030791911 -757.061374673031 21.3394 0.1144 14630 +14632 2 20.90548431754553 -755.980976075369 21.4423 0.1144 14631 +14633 2 21.277522303231848 -754.8996403563592 21.5365 0.1144 14632 +14634 2 21.651073434206026 -753.818665734757 21.6373 0.1144 14633 +14635 2 22.00261517917491 -752.7324387872252 21.7672 0.1144 14634 +14636 2 22.281533775306343 -751.6264093587143 21.9758 0.1144 14635 +14637 2 22.55692742479185 -750.521138053639 22.2458 0.1144 14636 +14638 2 22.832503173772707 -749.4184545738617 22.5565 0.1144 14637 +14639 2 23.108707312506425 -748.3167934082821 22.889 0.1144 14638 +14640 2 23.388108127515437 -747.2157497058922 23.2254 0.1144 14639 +14641 2 23.901441405285652 -746.200627961502 23.5224 0.1144 14640 +14642 2 24.461014672327238 -745.2080269496084 23.775 0.1144 14641 +14643 2 25.02371896157007 -744.2163185182296 23.9916 0.1144 14642 +14644 2 25.799147180630953 -743.3783851813322 24.1696 0.1144 14643 +14645 2 26.591208236714465 -742.5545258890767 24.3195 0.1144 14644 +14646 2 27.38335448564777 -741.7306142310083 24.452 0.1144 14645 +14647 2 28.17442605457073 -740.907245769843 24.5775 0.1144 14646 +14648 2 28.96251277216777 -740.0790213162393 24.7013 0.1144 14647 +14649 2 29.62061933878843 -739.1441742555012 24.8145 0.1144 14648 +14650 2 30.277651225398756 -738.209870391666 24.9319 0.1144 14649 +14651 2 30.93512940226657 -737.2740010167303 25.0672 0.1144 14650 +14652 2 31.59122416752912 -736.3402731768351 25.2333 0.1144 14651 +14653 2 32.247318932791714 -735.4065453369402 25.4415 0.1144 14652 +14654 2 31.701321568879678 -735.188940170179 23.0764 0.1144 14653 +14655 2 32.51206147545406 -734.4260233962858 22.6366 0.1144 14654 +14656 2 33.57258251466122 -734.0387250934248 22.2182 0.1144 14655 +14657 2 34.68479138118553 -733.8317626397654 21.799 0.1144 14656 +14658 2 35.799230077183424 -733.6328200277826 21.3981 0.1144 14657 +14659 2 36.91683262241958 -733.4346324376522 21.0332 0.1144 14658 +14660 2 37.287809956241674 -732.3647477019026 20.7285 0.1144 14659 +14661 2 37.54788060655956 -731.2715948000434 20.193 0.1144 14660 +14662 2 32.18055897914458 -735.0313488169816 25.6707 0.1144 14653 +14663 2 31.981834395277332 -733.9260491835036 26.1968 0.1144 14662 +14664 2 31.7852622730138 -732.8263519521036 26.7995 0.1144 14663 +14665 2 31.737391206992655 -731.7237571575221 27.5284 0.1144 14664 +14666 2 31.992303336443427 -730.6485650368949 28.2475 0.1144 14665 +14667 2 32.507199716267706 -729.651263413491 28.7801 0.1144 14666 +14668 2 33.311555764433166 -728.8559999805459 29.213 0.1144 14667 +14669 2 34.125585459808775 -728.0655894384562 29.552 0.1144 14668 +14670 2 34.943534026275 -727.2727700689804 29.8178 0.1144 14669 +14671 2 35.80943805810817 -726.5297057328326 30.0191 0.1144 14670 +14672 2 36.79808376087573 -725.9555820141104 30.1512 0.1144 14671 +14673 2 37.70057436608245 -725.254470897729 30.2448 0.1144 14672 +14674 2 38.60457811657706 -724.5537208787553 30.3052 0.1144 14673 +14675 2 39.508634232884376 -723.8530560526314 30.3447 0.1144 14674 +14676 2 40.41214715228867 -723.1513165464971 30.3755 0.1144 14675 +14677 2 41.31615090278328 -722.4505665275233 30.4102 0.1144 14676 +14678 2 42.219493436487966 -721.7489317530145 30.459 0.1144 14677 +14679 2 43.12142834376306 -721.0455798332484 30.5256 0.1144 14678 +14680 2 44.023631330616155 -720.3432369394185 30.6144 0.1144 14679 +14681 2 44.65704296866308 -720.2533336759253 30.7406 0.1144 14680 +14682 2 45.78660204893225 -720.0921666377898 30.9397 0.1144 14681 +14683 2 46.840383642952446 -719.6633497863202 31.1928 0.1144 14682 +14684 2 47.7975574449173 -719.0508196949515 31.4958 0.1144 14683 +14685 2 48.746620009189584 -718.4271942071009 31.8352 0.1144 14684 +14686 2 49.694607893451504 -717.8041119161533 32.1978 0.1144 14685 +14687 2 50.642136986427374 -717.1814290129317 32.5699 0.1144 14686 +14688 2 51.418689842264826 -716.3604115027099 32.9812 0.1144 14687 +14689 2 52.17474104145147 -715.5195987386487 33.411 0.1144 14688 +14690 2 52.95983971144321 -714.7054185568848 33.8268 0.1144 14689 +14691 2 53.831716547511434 -713.9787550014977 34.1776 0.1144 14690 +14692 2 54.7269423328939 -713.2767098653517 34.4719 0.1144 14691 +14693 2 55.66923331747866 -712.6357660141679 34.7175 0.1144 14692 +14694 2 56.58163592401955 -711.9473431691247 34.8331 0.1144 14693 +14695 2 57.477986440874716 -711.2366247994919 34.8547 0.1144 14694 +14696 2 58.37442215057973 -710.5258540640464 34.846 0.1144 14695 +14697 2 59.27072030162218 -709.8150505015639 34.825 0.1144 14696 +14698 2 60.167732035267264 -709.1052168874662 34.8009 0.1144 14697 +14699 2 61.064167744972266 -708.3944461520207 34.7768 0.1144 14698 +14700 2 43.82994834300683 -719.9802060863071 31.3466 0.1144 14680 +14701 2 43.219549185845736 -719.5657821983169 33.4746 0.1144 14700 +14702 2 42.55105341791257 -719.1267350729927 35.3536 0.1144 14701 +14703 2 42.484422896174436 -719.0467889437999 38.1422 0.1144 14702 +14704 2 15.892305599392728 -768.7779323994274 19.9099 0.1144 14620 +14705 2 14.79219591676761 -768.4912667645941 19.7691 0.1144 14704 +14706 2 13.974645192660773 -767.8013228078031 19.697 0.1144 14705 +14707 2 13.546456730944016 -766.7485635279805 19.5637 0.1144 14706 +14708 2 13.300422893728467 -765.6361903842267 19.6377 0.1144 14707 +14709 2 13.147904779559013 -764.5294864152945 20.2078 0.1144 14708 +14710 2 12.684247651542904 -764.2141991849157 20.6683 0.1144 14709 +14711 2 11.809259532855464 -763.6187203841548 21.7286 0.1144 14710 +14712 2 10.8977323885141 -763.0161212179348 22.4924 0.1144 14711 +14713 2 9.959163969399924 -762.4220443435813 23.1598 0.1144 14712 +14714 2 9.03348300350035 -761.8510344055144 24.0214 0.1144 14713 +14715 2 8.118845760806693 -761.2958906635181 25.0116 0.1144 14714 +14716 2 7.148672398546665 -760.9213746863406 26.1371 0.1144 14715 +14717 2 6.157580134273928 -760.9169066108445 27.4697 0.1144 14716 +14718 2 5.139516374858772 -760.8618754218187 28.7286 0.1144 14717 +14719 2 4.106769311376752 -760.7218477000304 29.8808 0.1144 14718 +14720 2 3.064312672064432 -760.5704158501651 30.9722 0.1144 14719 +14721 2 2.0132492405723497 -760.4160577179528 32.011 0.1144 14720 +14722 2 0.9534602097808715 -760.2604896614179 32.993 0.1144 14721 +14723 2 -0.11453076218268166 -760.1045636090585 33.9195 0.1144 14722 +14724 2 -1.1895630152253034 -759.9461575646094 34.802 0.1144 14723 +14725 2 -2.257622458757453 -759.7070506532039 35.609 0.1144 14724 +14726 2 -3.2465979179361284 -759.2056999364972 36.258 0.1144 14725 +14727 2 -4.21263987393462 -758.632618651468 36.7786 0.1144 14726 +14728 2 -5.181454856309642 -758.0504428447518 37.2193 0.1144 14727 +14729 2 -6.278610815820969 -757.943314881508 37.7594 0.1144 14728 +14730 2 -7.38524190353948 -758.0434363861657 38.4152 0.1144 14729 +14731 2 -8.481170826684092 -758.1611599836942 39.1681 0.1144 14730 +14732 2 -9.521061570835514 -757.8107165357195 39.9462 0.1144 14731 +14733 2 -10.487989998878845 -757.2797329248223 40.6935 0.1144 14732 +14734 2 -11.448640685211956 -756.732800334051 41.4109 0.1144 14733 +14735 2 -12.413522075813688 -756.1831861129191 42.0851 0.1144 14734 +14736 2 -13.382280898256369 -755.6318469215499 42.7227 0.1144 14735 +14737 2 -14.49408081787962 -755.5793813259116 43.3434 0.1144 14736 +14738 2 -15.524381319856417 -756.0179453983417 43.9228 0.1144 14737 +14739 2 -16.55302801629972 -756.4635921911006 44.478 0.1144 14738 +14740 2 -17.582611834090756 -756.9098150077996 45.0198 0.1144 14739 +14741 2 -18.61486867002978 -757.3562722898066 45.5409 0.1144 14740 +14742 2 -19.647349044713962 -757.8042755441386 46.0334 0.1144 14741 +14743 2 -20.684282875179093 -758.2496167068857 46.4937 0.1144 14742 +14744 2 -21.764780983632562 -758.5780616606123 46.9235 0.1144 14743 +14745 2 -22.86613682097405 -758.5863181461742 47.6778 0.1144 14744 +14746 2 13.163606289952071 -764.4566842685447 20.7484 0.1144 14709 +14747 2 13.404834505086058 -763.3657228584924 21.3462 0.1144 14746 +14748 2 13.645936088120465 -762.278947611876 21.9883 0.1144 14747 +14749 2 13.845954486240657 -761.1931273088729 22.63 0.1144 14748 +14750 2 13.499959805456001 -760.1234165578433 23.1423 0.1144 14749 +14751 2 13.093064045558748 -759.0682508596811 23.5679 0.1144 14750 +14752 2 12.613251818448333 -758.053914058261 24.0062 0.1144 14751 +14753 2 11.735390067315194 -757.3903600620426 24.7574 0.1144 14752 +14754 2 10.97252325018809 -756.5970791790469 25.4932 0.1144 14753 +14755 2 10.680957886437056 -755.7906506709567 26.4596 0.1144 14754 +14756 2 11.521865271892523 -755.0548518471695 26.9891 0.1144 14755 +14757 2 12.373239664077147 -754.3099194714922 27.407 0.1144 14756 +14758 2 13.227562978967597 -753.5632918510316 27.7683 0.1144 14757 +14759 2 14.0812579041052 -752.8156419163736 28.1148 0.1144 14758 +14760 2 14.935614046032697 -752.0688767372504 28.476 0.1144 14759 +14761 2 15.72486994123912 -751.2601231085835 28.9019 0.1144 14760 +14762 2 16.500530216561643 -750.4422366205629 29.3804 0.1144 14761 +14763 2 17.272717911050933 -749.6251934488276 29.899 0.1144 14762 +14764 2 18.045087705035655 -748.8107381023905 30.4461 0.1144 14763 +14765 2 18.814869673722214 -747.9964648554487 31.0114 0.1144 14764 +14766 2 19.583714521061026 -747.1827676324472 31.5854 0.1144 14765 +14767 2 20.353187758152643 -746.370092723643 32.1616 0.1144 14766 +14768 2 21.12194741264163 -745.5564478664542 32.7382 0.1144 14767 +14769 2 21.891420649733263 -744.74377295765 33.3155 0.1144 14768 +14770 2 22.660265497072032 -743.9300757346484 33.8929 0.1144 14769 +14771 2 23.429110344410816 -743.1163785116468 34.4702 0.1144 14770 +14772 2 24.198583581502476 -742.3037036028427 35.0498 0.1144 14771 +14773 2 24.967343235991464 -741.4900587456538 35.6306 0.1144 14772 +14774 2 25.736188083330234 -740.6763615226521 36.2135 0.1144 14773 +14775 2 26.50472419907409 -739.8642626377881 36.7993 0.1144 14774 +14776 2 27.273175121968137 -739.0522161187369 37.3895 0.1144 14775 +14777 2 28.041573679049492 -738.2400844068358 37.9845 0.1144 14776 +14778 2 28.850136121963033 -737.4692329841157 38.5916 0.1144 14777 +14779 2 29.792213565088545 -736.8739641195224 39.2129 0.1144 14778 +14780 2 30.740365442491466 -736.2885776255056 39.8493 0.1144 14779 +14781 2 31.687442639884097 -735.7037343283919 40.4984 0.1144 14780 +14782 2 32.63193201197856 -735.1190731307734 41.1592 0.1144 14781 +14783 2 33.577049773825834 -734.5354342473524 41.83 0.1144 14782 +14784 2 34.519323344592834 -733.9536609944146 42.5365 0.1144 14783 +14785 2 35.45958511400171 -733.3730069623196 43.2572 0.1144 14784 +14786 2 36.40024080785537 -732.7907022262743 43.9751 0.1144 14785 +14787 2 37.34246201280959 -732.2088437804865 44.674 0.1144 14786 +14788 2 38.21928965266699 -731.6256282628758 45.7257 0.1144 14787 +14789 2 39.038705213752664 -731.2656290153061 47.4681 0.1144 14788 +14790 2 36.99230056443548 -817.1369393437927 15.1446 0.1144 14572 +14791 2 35.85994934514687 -817.1736383379985 14.7488 0.1144 14790 +14792 2 34.730572364373046 -817.3373932014322 14.5607 0.1144 14791 +14793 2 33.603243113577406 -817.5065800812445 14.3243 0.1144 14792 +14794 2 32.47721208153726 -817.6736777918286 14.0577 0.1144 14793 +14795 2 31.60292951966622 -818.4031112720091 13.7709 0.1144 14794 +14796 2 30.780215664240984 -819.1881780921533 13.4805 0.1144 14795 +14797 2 29.969746151594848 -819.9603191214162 12.901 0.1144 14796 +14798 2 38.70236261652701 -817.1292064273689 15.3671 0.1144 14571 +14799 2 39.60187147199085 -816.4299281144332 15.4782 0.1144 14798 +14800 2 40.50596041533521 -815.7291257296467 15.5274 0.1144 14799 +14801 2 41.54315542967558 -815.2473533744544 15.5478 0.1144 14800 +14802 2 42.625829616716715 -814.8787178163285 15.5417 0.1144 14801 +14803 2 43.709655851638075 -814.5119565008982 15.5175 0.1144 14802 +14804 2 44.79405811049952 -814.1461323068156 15.4833 0.1144 14803 +14805 2 45.87694722407315 -813.7799470153253 15.4475 0.1144 14804 +14806 2 46.9676419453275 -813.4331442543389 15.4382 0.1144 14805 +14807 2 48.07109507865047 -813.1309684238037 15.4799 0.1144 14806 +14808 2 49.17378226355811 -812.8277374520337 15.5613 0.1144 14807 +14809 2 50.27500866899058 -812.5242305757059 15.6706 0.1144 14808 +14810 2 51.38822753807631 -812.2642954885946 15.8142 0.1144 14809 +14811 2 52.495782334521905 -811.9863612825848 15.9792 0.1144 14810 +14812 2 53.37304664613575 -811.2550949989584 16.1016 0.1144 14811 +14813 2 54.25218520044518 -810.522676667452 16.1852 0.1144 14812 +14814 2 55.130386633406786 -809.7908343598855 16.2666 0.1144 14813 +14815 2 21.304386276826676 -1014.6372040020069 52.402 0.1144 13971 +14816 2 21.029119170451395 -1015.1287310003985 54.8313 0.1144 14815 +14817 2 20.44342954445861 -1014.7810505695365 56.0734 0.1144 14816 +14818 2 19.779824300532738 -1013.8782779513019 56.6364 0.1144 14817 +14819 2 19.141667503871673 -1012.9559892747611 57.1847 0.1144 14818 +14820 2 18.753934529852813 -1011.9253153637407 57.7343 0.1144 14819 +14821 2 18.84689395085576 -1010.824778219412 58.2313 0.1144 14820 +14822 2 19.0447701213987 -1009.7135118781908 58.6765 0.1144 14821 +14823 2 18.91457012482948 -1008.6104618970506 59.1248 0.1144 14822 +14824 2 18.40749618578414 -1007.6128821557061 59.5633 0.1144 14823 +14825 2 17.677399079767213 -1006.755088669029 59.9833 0.1144 14824 +14826 2 16.742208743887176 -1006.1401544565505 60.4394 0.1144 14825 +14827 2 15.863935246043496 -1005.4365919554281 60.886 0.1144 14826 +14828 2 15.184745221234465 -1004.5327172460796 61.2136 0.1144 14827 +14829 2 14.578506899722157 -1003.5705022505979 61.5017 0.1144 14828 +14830 2 13.94158665125451 -1002.6259728243268 61.7674 0.1144 14829 +14831 2 13.121470333760385 -1001.8422927073276 62.0144 0.1144 14830 +14832 2 12.435591513067152 -1000.9384210995622 62.288 0.1144 14831 +14833 2 11.83073660316009 -999.9740645690398 62.5576 0.1144 14832 +14834 2 11.23769377392074 -999.0092555450937 62.944 0.1144 14833 +14835 2 10.645802992561642 -998.046320763843 63.3693 0.1144 14834 +14836 2 10.18567582438385 -997.009202424836 63.7316 0.1144 14835 +14837 2 10.29034500347555 -995.8906685706553 64.0483 0.1144 14836 +14838 2 10.460189719548595 -994.7643527257779 64.3224 0.1144 14837 +14839 2 10.630001608584507 -993.6381744395629 64.5652 0.1144 14838 +14840 2 10.626586394778258 -992.4988633379254 64.7956 0.1144 14839 +14841 2 10.602581135192196 -991.3587096125391 65.0359 0.1144 14840 +14842 2 10.289544373482983 -990.2660407350567 65.2674 0.1144 14841 +14843 2 9.892718594287146 -989.1967033930707 65.4836 0.1144 14842 +14844 2 9.640891643285357 -988.0878911245829 65.7622 0.1144 14843 +14845 2 9.538217549413133 -986.9639307469683 66.2088 0.1144 14844 +14846 2 9.302971069621265 -985.8691073302725 66.6873 0.1144 14845 +14847 2 8.644711956687473 -984.9402767212594 66.9609 0.1144 14846 +14848 2 8.043288188363874 -983.9792106720747 67.0998 0.1144 14847 +14849 2 7.881046470218081 -982.8501947887086 67.1754 0.1144 14848 +14850 2 7.9602689185549025 -981.7097405354921 67.2277 0.1144 14849 +14851 2 7.960645943739792 -980.5722067699045 67.296 0.1144 14850 +14852 2 7.60368490761914 -979.4890472624026 67.4831 0.1144 14851 +14853 2 7.132288855676592 -978.4534560968294 67.7765 0.1144 14852 +14854 2 6.6496153077566476 -977.4233883436509 68.0593 0.1144 14853 +14855 2 6.160220136915541 -976.393461250718 68.2867 0.1144 14854 +14856 2 5.716300723440327 -975.3435632917048 68.4634 0.1144 14855 +14857 2 5.456239004229531 -974.2345305860549 68.6059 0.1144 14856 +14858 2 5.396687307733174 -973.0934544600036 68.7319 0.1144 14857 +14859 2 5.325461089231624 -971.9528636544129 68.852 0.1144 14858 +14860 2 5.191018769294175 -970.8188504258261 68.9668 0.1144 14859 +14861 2 4.919144969415555 -969.7102702136 69.0656 0.1144 14860 +14862 2 4.3488819612531415 -968.8065827059283 69.2076 0.1144 14861 +14863 2 3.3757134366295247 -968.2566628547846 69.3938 0.1144 14862 +14864 2 2.6442681550910265 -967.3834995137568 69.4473 0.1144 14863 +14865 2 2.0137139427664863 -966.4296575376833 69.3748 0.1144 14864 +14866 2 1.4385264705970542 -965.4457740222916 69.2362 0.1144 14865 +14867 2 1.017462168458934 -964.3872271393125 69.1046 0.1144 14866 +14868 2 0.7158295348267529 -963.2848486859998 69.0264 0.1144 14867 +14869 2 0.46840918442282486 -962.1679282814024 69.0376 0.1144 14868 +14870 2 0.29093517058885254 -961.0402934005949 69.1779 0.1144 14869 +14871 2 0.1761457750834552 -959.907698819697 69.4464 0.1144 14870 +14872 2 0.07654723601655178 -958.7778570338633 69.8012 0.1144 14871 +14873 2 0.04265099364138791 -957.647773981715 70.1991 0.1144 14872 +14874 2 0.1908121850332236 -956.5322040550114 70.611 0.1144 14873 +14875 2 0.49267177788806293 -955.4415359633348 71.0094 0.1144 14874 +14876 2 0.6708098311490858 -954.3289033402375 71.3194 0.1144 14875 +14877 2 0.580168255106571 -953.1962557009902 71.4512 0.1144 14876 +14878 2 0.6942906442464505 -952.0908095058738 71.4776 0.1144 14877 +14879 2 1.0625363909416592 -951.0076964508141 71.4843 0.1144 14878 +14880 2 1.1492557153644043 -949.8882230662392 71.4053 0.1144 14879 +14881 2 1.0135675424842532 -948.7563841997302 71.2096 0.1144 14880 +14882 2 0.845447517702496 -947.6309815574429 70.9282 0.1144 14881 +14883 2 0.6775947852658248 -946.5081143746409 70.5849 0.1144 14882 +14884 2 0.5100093451744101 -945.3877826513244 70.1904 0.1144 14883 +14885 2 0.3426060045783572 -944.270038753306 69.7648 0.1144 14884 +14886 2 0.17622497817981753 -943.1516664655348 69.3356 0.1144 14885 +14887 2 0.00926792784122199 -942.0323570564159 68.9153 0.1144 14886 +14888 2 -0.15768912249734512 -940.9130476472969 68.5101 0.1144 14887 +14889 2 -0.4321890853407808 -939.8154721280732 68.126 0.1144 14888 +14890 2 -0.8817164115236551 -938.7784116655087 67.7732 0.1144 14889 +14891 2 -1.4061258436311732 -937.7700069216103 67.4559 0.1144 14890 +14892 2 -1.9706642095760003 -936.7795776796266 67.2017 0.1144 14891 +14893 2 -2.5650521127538752 -935.806087597214 67.0289 0.1144 14892 +14894 2 -3.171869559789428 -934.8362466845003 66.9329 0.1144 14893 +14895 2 -3.837702224142305 -933.9080803938601 66.897 0.1144 14894 +14896 2 -4.733704446956381 -933.2194062207475 66.8861 0.1144 14895 +14897 2 -5.7595573888378055 -932.7193598312663 66.9166 0.1144 14896 +14898 2 -6.8401349844121455 -932.3508467922259 67.0401 0.1144 14897 +14899 2 -7.924135204053414 -932.0006360930495 67.265 0.1144 14898 +14900 2 -8.974032257745563 -931.5663122315722 67.5844 0.1144 14899 +14901 2 -9.363527847131678 -930.5744009725129 67.8863 0.1144 14900 +14902 2 -9.403211692663405 -929.4371937607859 68.1153 0.1144 14901 +14903 2 -9.371210203242043 -928.296302427365 68.2973 0.1144 14902 +14904 2 -9.55929188405085 -927.1710794755265 68.3346 0.1144 14903 +14905 2 -9.807682182839613 -926.0548726535318 68.2366 0.1144 14904 +14906 2 -10.057423066196492 -924.9406698079152 68.0546 0.1144 14905 +14907 2 -10.539374419301083 -923.9075757641609 67.9039 0.1144 14906 +14908 2 -11.136926171717192 -922.9333306598958 67.8264 0.1144 14907 +14909 2 -11.74672536849559 -921.9653225506279 67.8191 0.1144 14908 +14910 2 -12.367173671498506 -921.003860167952 67.8628 0.1144 14909 +14911 2 -13.11188871159689 -920.1375622116741 67.944 0.1144 14910 +14912 2 -14.07590075988287 -919.5282537341692 68.0702 0.1144 14911 +14913 2 -15.149214228169512 -919.1366120882803 68.1708 0.1144 14912 +14914 2 -16.245943418514003 -918.811715284593 68.224 0.1144 14913 +14915 2 -17.387410775874997 -918.7787766738239 68.2654 0.1144 14914 +14916 2 -18.507674720159486 -919.0054803463483 68.2746 0.1144 14915 +14917 2 -19.595117297742803 -919.3596745592586 68.1747 0.1144 14916 +14918 2 -20.676314268116187 -919.7221199775705 67.9787 0.1144 14917 +14919 2 -21.756094999847335 -920.0822863021791 67.6964 0.1144 14918 +14920 2 -22.845544560695686 -920.4028520744747 67.3546 0.1144 14919 +14921 2 -23.93504958893982 -920.7166438580363 66.978 0.1144 14920 +14922 2 -25.023926227431076 -921.0314579557954 66.5949 0.1144 14921 +14923 2 -25.838047318822674 -921.8085432719297 66.1329 0.1144 14922 +14924 2 -26.485843644715573 -922.64443949166 65.0661 0.1144 14923 +14925 2 8.85022850256314 -1030.6099305517776 50.3992 0.1144 13951 +14926 2 8.14506437176334 -1029.8429236100662 49.2551 0.1144 14925 +14927 2 8.11670556992874 -1028.7350258402525 48.715 0.1144 14926 +14928 2 8.625232812026724 -1027.7403479707668 48.1194 0.1144 14927 +14929 2 9.557709897603644 -1027.1886594129066 47.252 0.1144 14928 +14930 2 10.31631979447485 -1026.404142590672 46.4576 0.1144 14929 +14931 2 10.8524297917389 -1025.4434535666724 45.6907 0.1144 14930 +14932 2 11.342599919113667 -1024.462641710999 44.9336 0.1144 14931 +14933 2 12.048530500908669 -1023.6164835084821 44.2355 0.1144 14932 +14934 2 12.432704712076912 -1022.5921299974942 43.5904 0.1144 14933 +14935 2 12.054855209619035 -1021.6802740859092 42.8921 0.1144 14934 +14936 2 10.97903469923898 -1021.424339642261 42.3531 0.1144 14935 +14937 2 9.850442483456504 -1021.3621237240792 42.0017 0.1144 14936 +14938 2 8.81089811603016 -1020.9751967178466 41.79 0.1144 14937 +14939 2 8.052693572746534 -1020.1480615411408 41.7141 0.1144 14938 +14940 2 7.557631920218768 -1019.1175091600381 41.7124 0.1144 14939 +14941 2 6.99999727669055 -1018.129527083107 41.7082 0.1144 14940 +14942 2 6.276662540307967 -1017.243396511948 41.6679 0.1144 14941 +14943 2 5.4744508441134485 -1016.434038300469 41.5792 0.1144 14942 +14944 2 4.514413826850529 -1015.8531576109251 41.3991 0.1144 14943 +14945 2 3.43510812222749 -1015.8384699981806 41.0659 0.1144 14944 +14946 2 2.330522763888581 -1016.0622271570456 40.6353 0.1144 14945 +14947 2 1.2056783232755777 -1016.189625094321 40.224 0.1144 14946 +14948 2 0.12789467221978157 -1016.5137017851164 39.888 0.1144 14947 +14949 2 -0.928205045706818 -1016.9278623648378 39.5371 0.1144 14948 +14950 2 -2.0443629172236797 -1017.0432301933298 39.2118 0.1144 14949 +14951 2 -3.1838677374562394 -1017.0157759647519 38.9866 0.1144 14950 +14952 2 -4.261866315044415 -1017.3374023889118 38.8368 0.1144 14951 +14953 2 -5.388109580481938 -1017.4079088216445 38.7394 0.1144 14952 +14954 2 -6.491603549507403 -1017.1287229331678 38.6814 0.1144 14953 +14955 2 -7.512027576593397 -1016.6199400178242 38.6072 0.1144 14954 +14956 2 -8.496788437259283 -1016.0381752652819 38.6005 0.1144 14955 +14957 2 -8.532126944307265 -1014.9735381440431 38.6425 0.1144 14956 +14958 2 -7.9856061002464855 -1013.9728789528061 38.663 0.1144 14957 +14959 2 -7.662668732104578 -1012.8773541761545 38.6579 0.1144 14958 +14960 2 -7.678962881608896 -1011.7365689594324 38.7565 0.1144 14959 +14961 2 -7.775177134275509 -1010.599247427242 38.9558 0.1144 14960 +14962 2 -7.640535792755202 -1010.3311427291227 39.2722 0.1144 14961 +14963 2 -7.136200917259146 -1009.3229606357693 39.7158 0.1144 14962 +14964 2 -6.50955694669193 -1008.3697735900372 39.9062 0.1144 14963 +14965 2 -5.432622122550981 -1008.0529093532533 40.1517 0.1144 14964 +14966 2 -5.155930254310135 -1006.9455488789499 40.3483 0.1144 14965 +14967 2 -4.812857742858455 -1005.8564284761081 40.5292 0.1144 14966 +14968 2 -4.368410842330491 -1004.8165075980548 40.9469 0.1144 14967 +14969 2 -8.02110406128844 -1010.5879573178547 39.1222 0.1144 14961 +14970 2 -9.161992985662835 -1010.5385819977045 39.2692 0.1144 14969 +14971 2 -10.2836780756719 -1010.1927542821419 39.4246 0.1144 14970 +14972 2 -11.37640010049293 -1009.8720850811402 39.5587 0.1144 14971 +14973 2 -12.514983212596974 -1009.785021789039 39.7242 0.1144 14972 +14974 2 -13.656127117680313 -1009.7854552531022 39.8997 0.1144 14973 +14975 2 -14.788375321853295 -1009.8637610903496 40.0747 0.1144 14974 +14976 2 -15.84902850378964 -1010.2659305914912 40.2791 0.1144 14975 +14977 2 -16.833861452165195 -1010.7893498439016 40.6325 0.1144 14976 +14978 2 -17.939441098072535 -1010.8323649174844 40.9581 0.1144 14977 +14979 2 -19.01248417243093 -1010.4499475269652 41.2014 0.1144 14978 +14980 2 -20.088731842740714 -1010.0949715388297 41.379 0.1144 14979 +14981 2 -21.2184319740185 -1009.9326065691133 41.5016 0.1144 14980 +14982 2 -22.31969370452387 -1009.6440666915845 41.5769 0.1144 14981 +14983 2 -23.356286456109302 -1009.1613034293529 41.6217 0.1144 14982 +14984 2 -24.271923781089697 -1008.5128698174059 41.6685 0.1144 14983 +14985 2 -24.925062710822942 -1007.576901020668 41.734 0.1144 14984 +14986 2 -25.440655840151607 -1006.5589688004347 41.8236 0.1144 14985 +14987 2 -25.84260490413112 -1005.4900808502892 41.942 0.1144 14986 +14988 2 -26.263222916011813 -1004.4299684562095 42.1137 0.1144 14987 +14989 2 -26.845528344593617 -1003.4652501357428 42.4012 0.1144 14988 +14990 2 -27.511401755659733 -1002.5652802693388 42.7932 0.1144 14989 +14991 2 -27.94021550554629 -1001.5181874712029 43.1746 0.1144 14990 +14992 2 -28.285097168654033 -1000.4371109297628 43.5196 0.1144 14991 +14993 2 -28.63573050629816 -999.3554614659657 43.8231 0.1144 14992 +14994 2 -29.023960419877255 -998.2848314158539 44.07 0.1144 14993 +14995 2 -29.486816073598845 -997.2411735534209 44.2487 0.1144 14994 +14996 2 -30.022133292063415 -996.2327828376688 44.3786 0.1144 14995 +14997 2 -30.617588050271763 -995.2573661467478 44.4931 0.1144 14996 +14998 2 -31.225874101762287 -994.2897191348876 44.6018 0.1144 14997 +14999 2 -31.7689438695584 -993.2860937080943 44.6984 0.1144 14998 +15000 2 -32.19727299152078 -992.2266128053506 44.7734 0.1144 14999 +15001 2 -32.55146720443096 -991.1391702277673 44.8263 0.1144 15000 +15002 2 -32.884156890572314 -990.0450827025961 44.8613 0.1144 15001 +15003 2 -33.2220026885343 -988.951582127928 44.8823 0.1144 15002 +15004 2 -33.60903129000357 -987.8762227174774 44.8944 0.1144 15003 +15005 2 -34.062174958848345 -986.8265951523925 44.9022 0.1144 15004 +15006 2 -34.48140955912379 -985.764341223272 44.9145 0.1144 15005 +15007 2 -34.7769817866247 -984.6609373541787 44.9408 0.1144 15006 +15008 2 -34.98252249101222 -983.5357643591065 44.9719 0.1144 15007 +15009 2 -35.08787580619864 -982.3986608550316 44.9672 0.1144 15008 +15010 2 -35.17112593031732 -981.2627610721132 44.898 0.1144 15009 +15011 2 -35.521488874033196 -980.1903358636857 44.7916 0.1144 15010 +15012 2 -36.00928570673665 -979.1607175023477 44.6628 0.1144 15011 +15013 2 -36.36423494149926 -978.0764387740027 44.5001 0.1144 15012 +15014 2 -36.66016826640785 -976.9745480501972 44.3114 0.1144 15013 +15015 2 -36.95769992945412 -975.8723485947968 44.1146 0.1144 15014 +15016 2 -37.25710583519586 -974.7713011872765 43.9286 0.1144 15015 +15017 2 -37.54912028901376 -973.6670016360853 43.7674 0.1144 15016 +15018 2 -37.794399104376964 -972.551464643093 43.6262 0.1144 15017 +15019 2 -37.97699640299453 -971.4242791541261 43.491 0.1144 15018 +15020 2 -38.13170911055403 -970.2920439541259 43.3544 0.1144 15019 +15021 2 -38.308874392793115 -969.1628107351808 43.2132 0.1144 15020 +15022 2 -38.559946321942476 -968.0508346174547 43.0634 0.1144 15021 +15023 2 -38.87503081362988 -966.9527337235938 42.9047 0.1144 15022 +15024 2 -39.23907457007945 -965.8712280216254 42.7423 0.1144 15023 +15025 2 -39.697330597144855 -964.826268838854 42.5886 0.1144 15024 +15026 2 -40.067740389737565 -963.7540756866882 42.4449 0.1144 15025 +15027 2 -40.56064578654198 -962.7598771301608 42.2948 0.1144 15026 +15028 2 -41.304338512442826 -961.89295078413 42.124 0.1144 15027 +15029 2 -42.06878315230662 -961.0468793671779 41.9241 0.1144 15028 +15030 2 -42.855991507491524 -960.2227821001474 41.6828 0.1144 15029 +15031 2 -43.67833455287612 -959.4377709373557 41.3854 0.1144 15030 +15032 2 -44.51787173854083 -958.6727190215446 41.032 0.1144 15031 +15033 2 -45.35455380656214 -957.9100204657235 40.633 0.1144 15032 +15034 2 -46.15030496901451 -957.1113637262818 40.1862 0.1144 15033 +15035 2 -46.80263271696293 -956.2030676956527 39.683 0.1144 15034 +15036 2 -47.34525550196494 -955.2219393843719 39.1269 0.1144 15035 +15037 2 -47.99584114994701 -954.3273625041433 38.5 0.1144 15036 +15038 2 -48.92445080724016 -953.7823331889849 37.8073 0.1144 15037 +15039 2 -49.97775437924341 -953.4494073335679 37.0737 0.1144 15038 +15040 2 -51.06198764945654 -953.347834917219 36.3112 0.1144 15039 +15041 2 -52.146050048510915 -953.5373790940129 35.6042 0.1144 15040 +15042 2 -53.241413951289644 -953.4614293047481 34.9334 0.1144 15041 +15043 2 -53.87430212630852 -954.2385098204743 34.1902 0.1144 15042 +15044 2 -54.72459343391188 -953.5566004260426 33.7355 0.1144 15043 +15045 2 -55.676308773605996 -952.9344513505062 33.427 0.1144 15044 +15046 2 -56.71583331816808 -952.4709799152988 33.1486 0.1144 15045 +15047 2 -57.757763588532896 -952.0102784048852 32.8983 0.1144 15046 +15048 2 -58.78976764002505 -951.521994831842 32.7359 0.1144 15047 +15049 2 -59.82038827991198 -951.0315697237581 32.5332 0.1144 15048 +15050 2 -9.351154951243473 -1011.1396373701766 39.0037 0.1144 14970 +15051 2 -9.602182753150544 -1012.2539946794226 38.85 0.1144 15050 +15052 2 -9.704084416495249 -1013.3923080901349 38.7976 0.1144 15051 +15053 2 -9.809596219335702 -1014.5314319900954 38.7576 0.1144 15052 +15054 2 -9.930659976022213 -1015.6693162402795 38.7293 0.1144 15053 +15055 2 -10.053236877996568 -1016.8068393930558 38.7114 0.1144 15054 +15056 2 -9.469401174397717 -1017.7895153931714 38.703 0.1144 15055 +15057 2 -8.819285433657086 -1018.7314507909781 38.703 0.1144 15056 +15058 2 -8.167753454274191 -1019.6711070950817 38.703 0.1144 15057 +15059 2 -20.96265320191486 -1077.956577484003 48.7449 0.1144 13724 +15060 2 -19.919746868988284 -1077.8203848603343 47.8374 0.1144 15059 +15061 2 -19.575824133570507 -1077.1913438822871 46.6088 0.1144 15060 +15062 2 -19.026641482013417 -1076.262998415756 45.7204 0.1144 15061 +15063 2 -18.723981320185032 -1075.3222029669778 44.3122 0.1144 15062 +15064 2 -44.43108163730483 -1107.6003015136012 52.4964 0.1144 13685 +15065 2 -43.56791109222962 -1107.9909372647999 50.9779 0.1144 15064 +15066 2 -42.60503468429437 -1108.3887194074882 49.8859 0.1144 15065 +15067 2 -41.57271508251574 -1108.7224533431072 48.9964 0.1144 15066 +15068 2 -41.36635088470723 -1109.9276433479872 48.2171 0.1144 15067 +15069 2 -41.11434803737626 -1111.0256658500048 47.7534 0.1144 15068 +15070 2 -40.69565112337426 -1112.0761600642704 47.3816 0.1144 15069 +15071 2 -40.102555928322204 -1113.0410542810662 47.0834 0.1144 15070 +15072 2 -39.34007072400374 -1113.8883301117112 46.8737 0.1144 15071 +15073 2 -38.464015436534055 -1114.6121543882427 46.7368 0.1144 15072 +15074 2 -37.438212451418906 -1115.0947417541454 46.6416 0.1144 15073 +15075 2 -36.320294959443515 -1115.3275000432254 46.5858 0.1144 15074 +15076 2 -35.210758406552486 -1115.5640013070674 46.5626 0.1144 15075 +15077 2 -34.22538077523336 -1116.1185067567212 46.5584 0.1144 15076 +15078 2 -33.39292871894406 -1116.9025863087945 46.5592 0.1144 15077 +15079 2 -32.66994956933962 -1117.7795449903965 46.5606 0.1144 15078 +15080 2 -32.160777943549874 -1118.8000157716983 46.5626 0.1144 15079 +15081 2 -31.812676963808087 -1119.8886213237247 46.5651 0.1144 15080 +15082 2 -31.60152524512972 -1121.0076456182328 46.569 0.1144 15081 +15083 2 -31.583941489082633 -1122.1503379046876 46.5741 0.1144 15082 +15084 2 -31.689092194515297 -1123.2879486593604 46.5819 0.1144 15083 +15085 2 -31.854353721124767 -1124.4194292282712 46.592 0.1144 15084 +15086 2 -32.06692450108244 -1125.5438362869063 46.6032 0.1144 15085 +15087 2 -32.2870273932096 -1126.664773866291 46.6222 0.1144 15086 +15088 2 -32.3771693416993 -1127.80254959073 46.6642 0.1144 15087 +15089 2 -32.35909475456185 -1128.9462313643453 46.7107 0.1144 15088 +15090 2 -32.36819427746303 -1130.0892440014945 46.73 0.1144 15089 +15091 2 -32.39543357950845 -1131.2311990883627 46.6852 0.1144 15090 +15092 2 -32.24584725831568 -1132.3571948843191 46.5402 0.1144 15091 +15093 2 -31.91485281695759 -1133.4483334867846 46.3585 0.1144 15092 +15094 2 -31.58146047477669 -1134.5391719698678 46.1969 0.1144 15093 +15095 2 -31.307935970947653 -1135.6481461065387 46.0681 0.1144 15094 +15096 2 -31.06020688894887 -1136.7634681729985 45.9721 0.1144 15095 +15097 2 -30.919128138939982 -1137.8973931071523 45.9029 0.1144 15096 +15098 2 -30.941065158289575 -1139.034797831594 45.8483 0.1144 15097 +15099 2 -31.029693961491375 -1140.1729346534407 45.7895 0.1144 15098 +15100 2 -31.04141413672778 -1141.3162669487479 45.7125 0.1144 15099 +15101 2 -30.954245141518527 -1142.4497579042804 45.5882 0.1144 15100 +15102 2 -30.619918779572856 -1143.5333315675393 45.4003 0.1144 15101 +15103 2 -30.19248533970847 -1144.5892546966002 45.1996 0.1144 15102 +15104 2 -29.66518555387404 -1145.582501411097 44.9705 0.1144 15103 +15105 2 -28.760701484132937 -1146.0336655249012 44.5012 0.1144 15104 +15106 2 -28.60985738912433 -1146.8930208175484 43.9925 0.1144 15105 +15107 2 -28.698265755164073 -1148.022922871186 43.6187 0.1144 15106 +15108 2 -28.815231642847607 -1149.1542973233982 43.3353 0.1144 15107 +15109 2 -28.697366692536946 -1150.281010496077 43.0909 0.1144 15108 +15110 2 -28.112112341249315 -1151.2440335717604 42.9052 0.1144 15109 +15111 2 -27.480174717319642 -1152.1957340127933 42.7888 0.1144 15110 +15112 2 -26.895369065335842 -1153.1776964303062 42.712 0.1144 15111 +15113 2 -26.614987694273452 -1154.2783475043352 42.6569 0.1144 15112 +15114 2 -26.888692302141862 -1155.373190140348 42.6222 0.1144 15113 +15115 2 -27.55174625721685 -1156.2976968264566 42.572 0.1144 15114 +15116 2 -27.798315092713324 -1157.4040311924427 42.5673 0.1144 15115 +15117 2 -27.87277535367423 -1158.5455491991065 42.5793 0.1144 15116 +15118 2 -27.91114598082197 -1159.6890642864455 42.5905 0.1144 15117 +15119 2 -27.67490932133302 -1160.8074594986642 42.5998 0.1144 15118 +15120 2 -27.356660980407298 -1161.9063154143776 42.607 0.1144 15119 +15121 2 -27.29648089415815 -1163.0484138546267 42.6121 0.1144 15120 +15122 2 -27.39067927240103 -1164.1885655794142 42.6079 0.1144 15121 +15123 2 -27.368366156014986 -1165.3324591779788 42.5995 0.1144 15122 +15124 2 -27.414001602987014 -1166.4750402455534 42.5877 0.1144 15123 +15125 2 -27.554357186697985 -1167.6099927027608 42.5704 0.1144 15124 +15126 2 -27.451815235554875 -1168.7488242786558 42.546 0.1144 15125 +15127 2 -27.329972845174552 -1169.8865914085673 42.5144 0.1144 15126 +15128 2 -27.331859914064296 -1171.0304528726313 42.4757 0.1144 15127 +15129 2 -27.373309197600406 -1172.1731605723053 42.4054 0.1144 15128 +15130 2 -27.12103285475814 -1173.2870961255767 42.2817 0.1144 15129 +15131 2 -26.42036802863413 -1174.191152241884 42.1781 0.1144 15130 +15132 2 -25.933602122340915 -1175.2253952319356 42.0918 0.1144 15131 +15133 2 -26.0554414162807 -1176.4189251337193 42.0106 0.1144 15132 +15134 2 -26.371475062006027 -1177.5168970754235 41.9476 0.1144 15133 +15135 2 -26.730942843589105 -1178.6013052476555 41.8858 0.1144 15134 +15136 2 -26.936483269030646 -1179.7239733079073 41.8118 0.1144 15135 +15137 2 -27.01254186812929 -1180.865182582976 41.7155 0.1144 15136 +15138 2 -27.127727318179893 -1181.9994535920814 41.5797 0.1144 15137 +15139 2 -27.076677682237744 -1183.1377738214856 41.3395 0.1144 15138 +15140 2 -26.904024424758575 -1184.2508821642273 41.0273 0.1144 15139 +15141 2 -26.374850396228624 -1185.2429768308439 40.6882 0.1144 15140 +15142 2 -25.641319047045158 -1186.110749594743 40.3676 0.1144 15141 +15143 2 -25.071434550108222 -1187.0751208459483 40.0548 0.1144 15142 +15144 2 -24.803929013160825 -1188.1809866007768 39.7886 0.1144 15143 +15145 2 -24.69996531274586 -1189.306854048124 39.5727 0.1144 15144 +15146 2 -24.938748771873748 -1190.4082855664888 39.3492 0.1144 15145 +15147 2 -25.30641918716543 -1191.468273116283 39.058 0.1144 15146 +15148 2 -25.340204215803 -1192.5995790969266 38.75 0.1144 15147 +15149 2 -25.39671531463148 -1193.7179740073716 38.4544 0.1144 15148 +15150 2 -25.710480793216618 -1194.8131431972452 38.2057 0.1144 15149 +15151 2 -26.013583137431056 -1195.9126744468836 38.0022 0.1144 15150 +15152 2 -26.20316907236912 -1197.0309352140007 37.8087 0.1144 15151 +15153 2 -26.096308815060922 -1198.1550222237152 37.6076 0.1144 15152 +15154 2 -25.70246788719112 -1199.2195035732625 37.4013 0.1144 15153 +15155 2 -25.207279602563744 -1200.2458697909296 37.175 0.1144 15154 +15156 2 -24.957647244952 -1201.3291508283492 36.9729 0.1144 15155 +15157 2 -24.97566229162794 -1202.4708355212892 36.7718 0.1144 15156 +15158 2 -25.060278418676603 -1203.6025149109764 36.554 0.1144 15157 +15159 2 -25.356926432314992 -1204.699370040884 36.3457 0.1144 15158 +15160 2 -25.796734675983487 -1205.7512296317045 36.1337 0.1144 15159 +15161 2 -26.211678416003394 -1206.810694908445 35.8954 0.1144 15160 +15162 2 -26.32290424825021 -1207.9143606659281 35.6213 0.1144 15161 +15163 2 -25.948137811825802 -1208.9609866584055 35.2993 0.1144 15162 +15164 2 -25.539908597089607 -1209.996551797948 34.9896 0.1144 15163 +15165 2 -25.5144487611945 -1211.123603836124 34.7332 0.1144 15164 +15166 2 -25.597284450610175 -1212.2581797827047 34.5013 0.1144 15165 +15167 2 -25.475500629208796 -1213.3824841279975 34.2502 0.1144 15166 +15168 2 -25.151856200524833 -1214.472741076511 33.9786 0.1144 15167 +15169 2 -24.716585018479066 -1215.5238465508 33.728 0.1144 15168 +15170 2 -24.37981149148095 -1216.6005164916423 33.4869 0.1144 15169 +15171 2 -24.17409178918109 -1217.7215885161286 33.2503 0.1144 15170 +15172 2 -23.99875931038781 -1218.8478399853307 33.0498 0.1144 15171 +15173 2 -23.8669376427855 -1219.9821728720756 32.8801 0.1144 15172 +15174 2 -23.620148783717582 -1221.0913821665913 32.6906 0.1144 15173 +15175 2 -23.008402463030052 -1222.0058416184675 32.4363 0.1144 15174 +15176 2 -21.985329348531764 -1222.4337642077178 32.2062 0.1144 15175 +15177 2 -21.209155127714894 -1223.1852944858433 32.0326 0.1144 15176 +15178 2 -21.168949009128994 -1224.2752283728419 31.892 0.1144 15177 +15179 2 -21.83111890120557 -1225.1750112155473 31.789 0.1144 15178 +15180 2 -22.5095786392514 -1226.094314839956 31.6812 0.1144 15179 +15181 2 -22.943687574196247 -1227.1466621602838 31.5241 0.1144 15180 +15182 2 -23.21003596622444 -1228.2557640420168 31.3544 0.1144 15181 +15183 2 -23.29296546070259 -1229.3943885933709 31.2309 0.1144 15182 +15184 2 -23.13370549229961 -1230.5252372801826 31.1671 0.1144 15183 +15185 2 -22.7829838602226 -1231.6135231740511 31.1696 0.1144 15184 +15186 2 -22.361161434649034 -1232.6755950036763 31.2402 0.1144 15185 +15187 2 -21.827175261976834 -1233.6862124473191 31.337 0.1144 15186 +15188 2 -21.037390008056775 -1234.5059086243814 31.5319 0.1144 15187 +15189 2 -20.267158457573032 -1235.3350415742989 31.9505 0.1144 15188 +15190 2 -19.548817964827947 -1236.2000615431339 32.4612 0.1144 15189 +15191 2 -18.876925586880247 -1237.1031397913803 32.9616 0.1144 15190 +15192 2 -18.207982131638403 -1238.0079132844098 33.4718 0.1144 15191 +15193 2 -17.54024309008952 -1238.910727341894 34.0012 0.1144 15192 +15194 2 -17.26064997636439 -1239.9138500167237 35.1389 0.1144 15193 +15195 2 -16.877101165182864 -1240.826193657816 36.4711 0.1144 15194 +15196 2 -16.151576635818287 -1241.5566225436703 37.6155 0.1144 15195 +15197 2 -15.483471394680066 -1242.346408613922 38.6761 0.1144 15196 +15198 2 -15.354323846210264 -1243.3560835322617 39.699 0.1144 15197 +15199 2 -15.48230984011576 -1244.4257987819258 40.6375 0.1144 15198 +15200 2 -15.508321804020852 -1245.4998576712487 41.5797 0.1144 15199 +15201 2 -15.086224574873938 -1246.4355762876855 42.5536 0.1144 15200 +15202 2 -14.439035524928329 -1247.2852886705718 43.5602 0.1144 15201 +15203 2 -13.77621784580333 -1248.1145955162203 44.5973 0.1144 15202 +15204 2 -12.828027843518043 -1248.4206923302618 45.5874 0.1144 15203 +15205 2 -11.753956642558876 -1248.4990485378662 46.531 0.1144 15204 +15206 2 -10.675338180756228 -1248.576018232282 47.446 0.1144 15205 +15207 2 -9.593608235528052 -1248.6536577557004 48.3344 0.1144 15206 +15208 2 -8.507777319713853 -1248.731476277031 49.1999 0.1144 15207 +15209 2 -7.4203808927990735 -1248.8097410886194 50.0466 0.1144 15208 +15210 2 -6.48099838598057 -1248.4350438163 51.0577 0.1144 15209 +15211 2 -6.110398870847348 -1247.449905450697 52.0075 0.1144 15210 +15212 2 -6.059448829543385 -1246.355118264395 52.8007 0.1144 15211 +15213 2 -6.089097237920782 -1245.2453134248485 53.4649 0.1144 15212 +15214 2 -6.12107238241731 -1244.1248485525145 54.031 0.1144 15213 +15215 2 -6.153168648383655 -1242.9978848087717 54.5079 0.1144 15214 +15216 2 -6.204791206682842 -1241.865316253904 54.8761 0.1144 15215 +15217 2 -6.287019016603892 -1240.7287880812328 55.1177 0.1144 15216 +15218 2 -6.371027264157988 -1239.5893633516685 55.2779 0.1144 15217 +15219 2 -6.455663901464959 -1238.4489163079065 55.3837 0.1144 15218 +15220 2 -6.539672149019111 -1237.3094915783422 55.4523 0.1144 15219 +15221 2 -6.748737800052538 -1236.1850767067053 55.5136 0.1144 15220 +15222 2 -7.314789311285267 -1235.194286367314 55.6147 0.1144 15221 +15223 2 -7.8928319010979635 -1234.2080494919323 55.7432 0.1144 15222 +15224 2 -8.505836386364365 -1233.2434201584351 55.8317 0.1144 15223 +15225 2 -9.152118448864144 -1232.2991282990552 55.8286 0.1144 15224 +15226 2 -9.798709242958864 -1231.356434777813 55.7474 0.1144 15225 +15227 2 -10.445300037053528 -1230.4137412565708 55.603 0.1144 15226 +15228 2 -11.090686417455231 -1229.473007170874 55.4072 0.1144 15227 +15229 2 -11.736125163669783 -1228.5321878923273 55.1877 0.1144 15228 +15230 2 -12.380883154318724 -1227.592476120828 54.9682 0.1144 15229 +15231 2 -13.025875610275818 -1226.6500913311806 54.7618 0.1144 15230 +15232 2 -13.671261990677522 -1225.7093572454837 54.5703 0.1144 15231 +15233 2 -14.31308749581325 -1224.7744162735733 54.2021 0.1144 15232 +15234 2 -25.83223524449278 -1175.4034834293977 42.371 0.1144 15132 +15235 2 -25.354881801534418 -1176.3964423361485 43.1024 0.1144 15234 +15236 2 -25.167376144665752 -1177.5207281666394 43.3325 0.1144 15235 +15237 2 -24.71193148164366 -1178.567415421231 43.5064 0.1144 15236 +15238 2 -24.088140331490195 -1179.525531855173 43.6299 0.1144 15237 +15239 2 -23.34613974878954 -1180.3961980743823 43.708 0.1144 15238 +15240 2 -22.663694478726256 -1181.3141530315388 43.745 0.1144 15239 +15241 2 -22.45917608853631 -1182.439954416364 43.7455 0.1144 15240 +15242 2 -22.228423811238542 -1183.560312165711 43.7433 0.1144 15241 +15243 2 -21.984476041667847 -1184.6780758865934 43.7399 0.1144 15242 +15244 2 -21.84125575661824 -1185.8133842323527 43.7354 0.1144 15243 +15245 2 -21.70370195325529 -1186.9480672899422 43.7293 0.1144 15244 +15246 2 -21.27038710517172 -1188.0070659738085 43.7203 0.1144 15245 +15247 2 -20.751054102664625 -1189.0266903372417 43.708 0.1144 15246 +15248 2 -20.219027365537897 -1190.0385121945774 43.6906 0.1144 15247 +15249 2 -19.619025346486126 -1191.01254237231 43.666 0.1144 15248 +15250 2 -18.890525886070293 -1191.8940897540053 43.6318 0.1144 15249 +15251 2 -18.065953011212002 -1192.6871207584736 43.5856 0.1144 15250 +15252 2 -17.2170094706824 -1193.4544901056547 43.5204 0.1144 15251 +15253 2 -16.366340959915533 -1194.217982020995 43.4249 0.1144 15252 +15254 2 -15.483020852621564 -1194.942740317291 43.2894 0.1144 15253 +15255 2 -14.536954864884933 -1195.5818606868988 43.1122 0.1144 15254 +15256 2 -13.812717248927981 -1196.2162414918048 43.6778 0.1144 15255 +15257 2 -13.12955288563245 -1197.1244813625015 43.6159 0.1144 15256 +15258 2 -12.775361774305338 -1198.2052351442007 43.5495 0.1144 15257 +15259 2 -12.684932023212241 -1199.3421213126965 43.4664 0.1144 15258 +15260 2 -12.718179365576304 -1200.4851870081952 43.3398 0.1144 15259 +15261 2 -12.790371459396908 -1201.6239022630282 43.1768 0.1144 15260 +15262 2 -12.904300129941873 -1202.7602179005285 42.9898 0.1144 15261 +15263 2 -13.034409144085657 -1203.894271574055 42.791 0.1144 15262 +15264 2 -13.16509418216964 -1205.0273881262333 42.5897 0.1144 15263 +15265 2 -13.29520319631348 -1206.1614417997598 42.3956 0.1144 15264 +15266 2 -13.144412461427748 -1207.2893970312616 42.2192 0.1144 15265 +15267 2 -12.614612452191466 -1208.2998878428048 42.0893 0.1144 15266 +15268 2 -12.074257141793055 -1209.3078815325293 41.9891 0.1144 15267 +15269 2 -11.5339018313947 -1210.3158752222537 41.9082 0.1144 15268 +15270 2 -10.992524206798805 -1211.3232405222252 41.8379 0.1144 15269 +15271 2 -10.45211653058766 -1212.3313194047996 41.7684 0.1144 15270 +15272 2 -9.910824098841488 -1213.3387370705836 41.6926 0.1144 15271 +15273 2 -9.371097178195953 -1214.3457084461106 41.603 0.1144 15272 +15274 2 -9.006477397806293 -1215.428151269427 41.4795 0.1144 15273 +15275 2 -8.77277619780267 -1216.5468137739908 41.3199 0.1144 15274 +15276 2 -8.5421536541877 -1217.6646688908893 41.1387 0.1144 15275 +15277 2 -8.311668669235132 -1218.7824911807509 40.9497 0.1144 15276 +15278 2 -8.694929376039624 -1219.8520616742762 40.6515 0.1144 15277 +15279 2 -13.819771428069885 -1194.84147116242 42.8551 0.1144 15255 +15280 2 -13.073421287196993 -1194.0108470914836 42.2626 0.1144 15279 +15281 2 -12.219569596057909 -1193.3530144459428 41.4764 0.1144 15280 +15282 2 -11.153526138766608 -1193.2456787707638 40.887 0.1144 15281 +15283 2 -10.043017228444171 -1193.464092621274 40.5378 0.1144 15282 +15284 2 -9.056309243869123 -1193.9923087164243 40.3836 0.1144 15283 +15285 2 -8.125436521617416 -1194.646050121697 40.579 0.1144 15284 +15286 2 -7.283672608062204 -1195.4124330833004 40.8075 0.1144 15285 +15287 2 -6.462081482946928 -1196.2072968912144 40.9024 0.1144 15286 +15288 2 -5.640936648088996 -1197.0037262102292 40.8534 0.1144 15287 +15289 2 -4.7328155075007885 -1196.5126697226265 40.6022 0.1144 15288 +15290 2 -3.8117350387726674 -1195.8418020679228 40.3511 0.1144 15289 +15291 2 -2.8448782848483347 -1195.2541912550619 40.0481 0.1144 15290 +15292 2 -1.785073929826865 -1194.8592342079319 39.697 0.1144 15291 +15293 2 -0.6839758730039307 -1194.601349952382 39.2963 0.1144 15292 +15294 2 0.4353482567976812 -1194.4693633150137 38.8721 0.1144 15293 +15295 2 1.5645917867804542 -1194.4627459143026 38.4367 0.1144 15294 +15296 2 2.131180895297234 -1194.8557378253008 37.4226 0.1144 15295 +15297 2 1.8403389106284749 -1195.415880807006 36.5319 0.1144 15296 +15298 2 1.4316082348699979 -1196.4069676673237 35.8686 0.1144 15297 +15299 2 1.266616409652329 -1197.5236098649912 35.8324 0.1144 15298 +15300 2 1.360242837020735 -1198.661113496677 35.8061 0.1144 15299 +15301 2 1.528727060793301 -1199.7916917895604 35.7686 0.1144 15300 +15302 2 1.6162930820303814 -1200.9302208370268 35.7157 0.1144 15301 +15303 2 1.5419266261319535 -1202.0676902389173 35.6437 0.1144 15302 +15304 2 1.3943585884094318 -1203.20179386921 35.551 0.1144 15303 +15305 2 1.1919820122061537 -1204.325216951314 35.3998 0.1144 15304 +15306 2 0.9486653203807691 -1205.438942769224 35.1742 0.1144 15305 +15307 2 0.7025458767248551 -1206.5504004199938 34.8972 0.1144 15306 +15308 2 0.4940205999573095 -1207.668212487807 34.5982 0.1144 15307 +15309 2 0.40998049684873195 -1208.800828998842 34.3227 0.1144 15308 +15310 2 0.38930025700483384 -1209.940278351679 34.0875 0.1144 15309 +15311 2 0.3666082158027848 -1211.0808469253586 33.8906 0.1144 15310 +15312 2 0.3451205882936961 -1212.2233749345837 33.7232 0.1144 15311 +15313 2 0.32291937818206407 -1213.3649329954242 33.5726 0.1144 15312 +15314 2 0.30143175067297534 -1214.5074610046493 33.4275 0.1144 15313 +15315 2 0.2793680992237455 -1215.6490518925266 33.2763 0.1144 15314 +15316 2 0.25788047171477047 -1216.791579901752 33.1069 0.1144 15315 +15317 2 0.23675394161335817 -1217.9325947656894 32.9084 0.1144 15316 +15318 2 0.5701808273413462 -1218.9818592327679 32.7141 0.1144 15317 +15319 2 1.1436761563106188 -1219.9694826213376 32.5304 0.1144 15318 +15320 2 1.2188410687670626 -1221.031120170568 32.1219 0.1144 15319 +15321 2 1.0174392590416232 -1222.1190820086117 31.4143 0.1144 15320 +15322 2 0.8220478986813191 -1223.188559407296 30.5449 0.1144 15321 +15323 2 0.6603848924680733 -1224.2909478698725 29.9068 0.1144 15322 +15324 2 0.4975315007080212 -1225.4022846832609 29.3756 0.1144 15323 +15325 2 0.3336917233705776 -1226.5208011236239 28.9439 0.1144 15324 +15326 2 0.3138931374785443 -1227.6529004637864 28.5628 0.1144 15325 +15327 2 0.5429556806226401 -1228.7596242555828 28.1467 0.1144 15326 +15328 2 0.7772681406498236 -1229.861712492103 27.6543 0.1144 15327 +15329 2 1.0104699920465805 -1230.9577926883044 27.0886 0.1144 15328 +15330 2 1.2405048926219706 -1232.0464290667696 26.445 0.1144 15329 +15331 2 1.468844548414154 -1233.1321165225286 25.7533 0.1144 15330 +15332 2 1.6963823271707952 -1234.2101975998312 25.0236 0.1144 15331 +15333 2 1.9043777078389894 -1235.1995781998135 23.7135 0.1144 15332 +15334 2 1.4137097448680152 -1193.9310236000929 36.5355 0.1144 15296 +15335 2 1.025890885462843 -1192.8763394282719 36.1735 0.1144 15334 +15336 2 0.7364118911302739 -1191.7717725847353 35.9912 0.1144 15335 +15337 2 0.3244835499289138 -1190.7063188777565 35.9083 0.1144 15336 +15338 2 -0.09885202093261114 -1189.6438859507239 35.9016 0.1144 15337 +15339 2 -0.49398565692831653 -1188.5708087355592 35.9027 0.1144 15338 +15340 2 -0.8616840937064012 -1187.4875585245782 35.9041 0.1144 15339 +15341 2 -1.0944481723622062 -1186.3683199960742 35.9066 0.1144 15340 +15342 2 -1.2010059012415581 -1185.2292570564541 35.91 0.1144 15341 +15343 2 -1.2309253960838191 -1184.086165334925 35.9145 0.1144 15342 +15344 2 -0.8423593050002864 -1183.0187332748574 35.9212 0.1144 15343 +15345 2 -0.03728416360263509 -1182.2137547554526 35.9299 0.1144 15344 +15346 2 0.7183114405772812 -1181.3544411148391 35.943 0.1144 15345 +15347 2 1.3348847379065774 -1180.391363086318 35.9612 0.1144 15346 +15348 2 2.0812201580967553 -1179.5257686024113 35.9859 0.1144 15347 +15349 2 2.9113778312585623 -1178.7375348314458 36.0167 0.1144 15348 +15350 2 3.642560732676884 -1177.8583649589675 36.0634 0.1144 15349 +15351 2 4.004746073240824 -1176.7762773196882 36.1547 0.1144 15350 +15352 2 4.224272941427785 -1175.6544026189558 36.2544 0.1144 15351 +15353 2 4.432742750799491 -1174.5298165624085 36.3345 0.1144 15352 +15354 2 4.639614222033458 -1173.4049217742663 36.3924 0.1144 15353 +15355 2 4.927128683781632 -1172.2975996376294 36.4302 0.1144 15354 +15356 2 5.120545195377417 -1171.170293613055 36.4493 0.1144 15355 +15357 2 5.157893508327447 -1170.0274069154686 36.454 0.1144 15356 +15358 2 5.097137398138273 -1168.884371353872 36.4526 0.1144 15357 +15359 2 4.979448344156765 -1167.746868414723 36.4498 0.1144 15358 +15360 2 4.8999349916333585 -1166.6059719791203 36.4465 0.1144 15359 +15361 2 4.94075588541665 -1165.4622419652487 36.442 0.1144 15360 +15362 2 4.938541983720313 -1164.3182015032721 36.4344 0.1144 15361 +15363 2 5.04405378656071 -1163.1790776033117 36.4199 0.1144 15362 +15364 2 5.157406433165477 -1162.0418248444635 36.4006 0.1144 15363 +15365 2 5.521912306682395 -1160.9570196462037 36.409 0.1144 15364 +15366 2 5.890786443130423 -1159.8749289053414 36.3888 0.1144 15365 +15367 2 6.154908107268113 -1158.7644959778158 36.2692 0.1144 15366 +15368 2 6.2065101553089335 -1157.624938099234 36.0718 0.1144 15367 +15369 2 6.289527944219913 -1156.4929499779516 35.7221 0.1144 15368 +15370 2 6.409478683229452 -1155.366431518178 35.3486 0.1144 15369 +15371 2 6.655653594281262 -1154.261747856142 34.96 0.1144 15370 +15372 2 6.943127309316253 -1153.1826221437414 34.5598 0.1144 15371 +15373 2 6.743250677568881 -1152.075448267568 34.1172 0.1144 15372 +15374 2 6.548242349895986 -1151.0176337837675 33.7663 0.1144 15373 +15375 2 6.991484836731047 -1149.975753470169 33.4799 0.1144 15374 +15376 2 7.177151900578394 -1148.8599015304376 33.1766 0.1144 15375 +15377 2 7.141530687966053 -1147.7336959101299 32.6984 0.1144 15376 +15378 2 7.085498427485959 -1146.602546695488 32.3134 0.1144 15377 +15379 2 7.263903773092181 -1145.492449531876 31.8035 0.1144 15378 +15380 2 7.404353854402302 -1144.3775110965084 31.2886 0.1144 15379 +15381 2 7.397390769502749 -1143.3088137513967 30.2893 0.1144 15380 +15382 2 -40.924522635915935 -1108.7698384902628 48.05 0.1144 15067 +15383 2 -39.811150404185526 -1108.8857796547022 48.587 0.1144 15382 +15384 2 -38.71835239656775 -1109.1607410420766 48.9457 0.1144 15383 +15385 2 -37.685288385747924 -1109.6135110052464 49.408 0.1144 15384 +15386 2 -36.64892769042416 -1110.0762274186013 49.7266 0.1144 15385 +15387 2 -35.592970230600656 -1110.5095258642978 49.6885 0.1144 15386 +15388 2 -34.54197108579456 -1110.928264944892 49.2915 0.1144 15387 +15389 2 -33.47059171955931 -1111.2338815406542 48.6674 0.1144 15388 +15390 2 -32.382565204066736 -1111.4877127869286 48.0656 0.1144 15389 +15391 2 -31.365264279505766 -1111.9675442561838 47.5804 0.1144 15390 +15392 2 -30.351209390146096 -1112.4789509254456 47.236 0.1144 15391 +15393 2 -29.246830665585605 -1112.7574755971323 47.0501 0.1144 15392 +15394 2 -28.15695524089142 -1113.0973842593457 46.8734 0.1144 15393 +15395 2 -27.07130431729979 -1113.447988882967 46.6838 0.1144 15394 +15396 2 -25.985887859016145 -1113.79592048844 46.4537 0.1144 15395 +15397 2 -24.977746512375973 -1114.3284517881723 46.2367 0.1144 15396 +15398 2 -24.00906057114696 -1114.9321875890532 46.053 0.1144 15397 +15399 2 -23.012102222885062 -1115.4902563230196 45.9001 0.1144 15398 +15400 2 -21.933842058680625 -1115.868175716925 45.7792 0.1144 15399 +15401 2 -20.834307707458947 -1116.1779668570234 45.6537 0.1144 15400 +15402 2 -19.89171430055552 -1116.8179305429169 45.4742 0.1144 15401 +15403 2 -18.86625528311879 -1117.3196276363485 45.29 0.1144 15402 +15404 2 -17.81765024501584 -1117.769418258822 45.1013 0.1144 15403 +15405 2 -16.774154463550417 -1118.2305660594934 44.8806 0.1144 15404 +15406 2 -15.79946117453943 -1118.8091286251306 44.5222 0.1144 15405 +15407 2 -14.80165710094576 -1119.3532961092014 44.1902 0.1144 15406 +15408 2 -13.849944862834775 -1119.9687563888538 43.8259 0.1144 15407 +15409 2 -12.90321524926162 -1120.5913876832678 43.428 0.1144 15408 +15410 2 -11.959073460986758 -1121.2142010771772 43.006 0.1144 15409 +15411 2 -11.014124285046705 -1121.8339358146982 42.5692 0.1144 15410 +15412 2 -10.07163320072226 -1122.4563552841632 42.1218 0.1144 15411 +15413 2 -9.130784995368174 -1123.0759110237718 41.6377 0.1144 15412 +15414 2 -8.19670767716508 -1123.7022110266607 41.1345 0.1144 15413 +15415 2 -7.352549656906717 -1124.4375424463847 40.558 0.1144 15414 +15416 2 -6.512886531679044 -1125.174345572147 39.9552 0.1144 15415 +15417 2 -5.675141402747045 -1125.9082193139789 39.3224 0.1144 15416 +15418 2 -4.895152018491615 -1126.5916712950639 38.1422 0.1144 15417 +15419 2 -46.51534925566 -1138.958266110097 52.1668 0.1144 13656 +15420 2 -45.84113875380581 -1139.8760006300913 52.2046 0.1144 15419 +15421 2 -45.607886945642804 -1140.9895398498716 52.2214 0.1144 15420 +15422 2 -45.786112600800095 -1142.1195986695107 52.2444 0.1144 15421 +15423 2 -45.979391553733365 -1143.2469375211222 52.2735 0.1144 15422 +15424 2 -46.20461773064403 -1144.3683244923477 52.3116 0.1144 15423 +15425 2 -46.46348637631553 -1145.480810660481 52.3872 0.1144 15424 +15426 2 -46.517899788399575 -1146.622096610883 52.4916 0.1144 15425 +15427 2 -46.477011529174945 -1147.7612632581554 52.5806 0.1144 15426 +15428 2 -46.67826888453504 -1148.8866981416177 52.6478 0.1144 15427 +15429 2 -46.847631381730366 -1150.017999712616 52.6943 0.1144 15428 +15430 2 -46.957905371946765 -1151.1560598591295 52.7223 0.1144 15429 +15431 2 -46.9647781669575 -1152.3004035420713 52.7352 0.1144 15430 +15432 2 -46.87925677411556 -1153.4401893690433 52.7405 0.1144 15431 +15433 2 -46.74873332526863 -1154.576611425016 52.7464 0.1144 15432 +15434 2 -46.66352066402163 -1155.7179955901256 52.7542 0.1144 15433 +15435 2 -46.62851071143285 -1156.8607754784769 52.766 0.1144 15434 +15436 2 -46.69121125753878 -1158.0017557988672 52.7828 0.1144 15435 +15437 2 -46.88930476366062 -1159.1279457041815 52.8052 0.1144 15436 +15438 2 -46.97998129684066 -1160.2606505096496 52.8335 0.1144 15437 +15439 2 -46.66293736960802 -1161.3575469898176 52.8724 0.1144 15438 +15440 2 -46.15648020121586 -1162.3823860340506 52.9564 0.1144 15439 +15441 2 -45.71684075623904 -1163.4362059657374 53.0533 0.1144 15440 +15442 2 -45.41333387991125 -1164.5374323711699 53.1278 0.1144 15441 +15443 2 -45.19781389830172 -1165.6591711230758 53.1768 0.1144 15442 +15444 2 -44.793596667182044 -1166.7252563213906 53.2008 0.1144 15443 +15445 2 -44.23792145919913 -1167.7144428120146 53.2003 0.1144 15444 +15446 2 -44.015136657765424 -1168.8371155836849 53.1754 0.1144 15445 +15447 2 -43.78049833641404 -1169.9552020643087 53.1314 0.1144 15446 +15448 2 -43.37022069916304 -1171.020261846843 53.0687 0.1144 15447 +15449 2 -42.80095297287937 -1172.0118924009362 52.9816 0.1144 15448 +15450 2 -42.18264620491709 -1172.971971372007 52.8662 0.1144 15449 +15451 2 -41.5657235410967 -1173.9101292515052 52.6946 0.1144 15450 +15452 2 -41.40567572380428 -1175.0376765304163 52.4317 0.1144 15451 +15453 2 -41.28473211710508 -1176.1651970907603 52.0649 0.1144 15452 +15454 2 -41.21667595100797 -1177.2916552827305 51.6404 0.1144 15453 +15455 2 -41.06120822159619 -1178.4207266334924 51.4077 0.1144 15454 +15456 2 -40.83414345166403 -1179.539477432489 51.2529 0.1144 15455 +15457 2 -40.465117070676456 -1180.6138121196955 51.1003 0.1144 15456 +15458 2 -39.94119536807614 -1181.6279161723176 50.9242 0.1144 15457 +15459 2 -39.62505091706117 -1182.6905034563051 50.7452 0.1144 15458 +15460 2 -39.96382294461364 -1183.7232200841117 50.4932 0.1144 15459 +15461 2 -40.50608094990531 -1184.7023607204337 50.192 0.1144 15460 +15462 2 -40.73607551735813 -1185.8093063464435 49.9078 0.1144 15461 +15463 2 -40.76277472408367 -1186.9456473174378 49.663 0.1144 15462 +15464 2 -40.71111623716439 -1188.084767109527 49.4371 0.1144 15463 +15465 2 -40.740800295215934 -1189.216252088083 49.0983 0.1144 15464 +15466 2 -40.86672073687748 -1190.3330585629799 48.5803 0.1144 15465 +15467 2 -40.94951808862646 -1191.456811916053 48.1149 0.1144 15466 +15468 2 -41.05334084984986 -1192.585507146951 47.7333 0.1144 15467 +15469 2 -41.07567489522722 -1193.7178737794588 47.378 0.1144 15468 +15470 2 -40.95125870769493 -1194.8445510235176 47.0361 0.1144 15469 +15471 2 -40.893936840672154 -1195.9776073078924 46.7152 0.1144 15470 +15472 2 -40.70461240850369 -1197.093967101769 46.3898 0.1144 15471 +15473 2 -40.31647078935754 -1198.157960721809 46.0435 0.1144 15472 +15474 2 -39.550172830647 -1198.954532086143 45.6154 0.1144 15473 +15475 2 -39.24241852876935 -1199.975206897077 44.9971 0.1144 15474 +15476 2 -38.879268045371305 -1201.0357809946336 44.4752 0.1144 15475 +15477 2 -38.64981157778254 -1202.1408540824796 44.0328 0.1144 15476 +15478 2 -38.53056321586649 -1203.265425720118 43.6024 0.1144 15477 +15479 2 -38.56849917185633 -1204.3790936792707 42.9901 0.1144 15478 +15480 2 -38.41414825424113 -1205.4887793979456 42.4144 0.1144 15479 +15481 2 -38.08793002840497 -1206.5679464606064 41.9479 0.1144 15480 +15482 2 -37.5899167600362 -1207.5026625857104 41.0987 0.1144 15481 +15483 2 -37.1916308939019 -1208.5482132056409 40.5418 0.1144 15482 +15484 2 -37.011354820773875 -1209.6540536269756 40.0733 0.1144 15483 +15485 2 -37.04308660880355 -1210.7801065891529 39.6217 0.1144 15484 +15486 2 -37.14299049893634 -1211.9063929926651 39.1896 0.1144 15485 +15487 2 -37.32211493777476 -1213.026205242737 38.8534 0.1144 15486 +15488 2 -37.65249061302359 -1214.1142119353651 38.6042 0.1144 15487 +15489 2 -38.17793919242689 -1215.120699476472 38.3743 0.1144 15488 +15490 2 -38.80636360062715 -1216.0709899653111 38.136 0.1144 15489 +15491 2 -39.35466488232095 -1217.068752599655 37.905 0.1144 15490 +15492 2 -39.66477878216057 -1218.1589775026573 37.6751 0.1144 15491 +15493 2 -39.73794392594914 -1219.291717544209 37.394 0.1144 15492 +15494 2 -39.62818711174799 -1220.41402411629 36.967 0.1144 15493 +15495 2 -39.45263729737576 -1221.5253520213987 36.4633 0.1144 15494 +15496 2 -39.1448152164661 -1222.605145064766 35.945 0.1144 15495 +15497 2 -38.71457661572458 -1223.6459625302384 35.4564 0.1144 15496 +15498 2 -38.422311999290685 -1224.7352009586739 35.0199 0.1144 15497 +15499 2 -38.330948228432874 -1225.8648223073455 34.6766 0.1144 15498 +15500 2 -38.02780555109587 -1226.9608730621817 34.4417 0.1144 15499 +15501 2 -37.13701800908137 -1227.6366714011792 34.291 0.1144 15500 +15502 2 -36.03494578932782 -1227.9288214182038 34.2059 0.1144 15501 +15503 2 -35.47887114627059 -1228.9056721700326 34.1502 0.1144 15502 +15504 2 -35.948417797281195 -1229.301693574157 34.2647 0.1144 15503 +15505 2 -36.82176013622126 -1230.0372398262818 34.454 0.1144 15504 +15506 2 -37.695954403659414 -1230.773309736534 34.5635 0.1144 15505 +15507 2 -38.569605474194475 -1231.5104543267962 34.6483 0.1144 15506 +15508 2 -39.44330891054233 -1232.2475137242086 34.7402 0.1144 15507 +15509 2 -40.316298764287524 -1232.9855430700059 34.832 0.1144 15508 +15510 2 -41.175998628160585 -1233.7409924091785 34.9059 0.1144 15509 +15511 2 -42.027460622241506 -1234.5033509813975 34.9563 0.1144 15510 +15512 2 -42.8100270290272 -1235.3361641350944 34.9866 0.1144 15511 +15513 2 -43.510948646502015 -1236.2384033529056 35.002 0.1144 15512 +15514 2 -44.193561720946605 -1237.157442786552 35.0095 0.1144 15513 +15515 2 -44.873534604280394 -1238.076385313553 35.0171 0.1144 15514 +15516 2 -45.55614767872504 -1238.9954247471996 35.0347 0.1144 15515 +15517 2 -46.236172927871564 -1239.9142820813504 35.0694 0.1144 15516 +15518 2 -46.91771132230599 -1240.832778318094 35.124 0.1144 15517 +15519 2 -47.59867369280022 -1241.7522116761852 35.1968 0.1144 15518 +15520 2 -48.15571150035646 -1242.7445453957334 35.3346 0.1144 15519 +15521 2 -48.27468988193465 -1243.852976442176 35.658 0.1144 15520 +15522 2 -48.06046260845096 -1244.9661193284646 35.9817 0.1144 15521 +15523 2 -47.70350157233031 -1246.0492788359666 36.1659 0.1144 15522 +15524 2 -47.337316280840014 -1247.1321679495404 36.2328 0.1144 15523 +15525 2 -46.97055496540963 -1248.2159941844616 36.1962 0.1144 15524 +15526 2 -46.60442203973213 -1249.2987981051854 36.0718 0.1144 15525 +15527 2 -46.237928016647004 -1250.3800888806213 35.8868 0.1144 15526 +15528 2 -45.87005058195655 -1251.4592381210164 35.6541 0.1144 15527 +15529 2 -45.501779222821426 -1252.5367366574615 35.3968 0.1144 15528 +15530 2 -45.03171421667139 -1253.5745545509249 35.161 0.1144 15529 +15531 2 -44.439732039296246 -1254.5508145581312 34.9913 0.1144 15530 +15532 2 -43.84218028688019 -1255.525059662396 34.8776 0.1144 15531 +15533 2 -43.244137703373724 -1256.5002942538217 34.8099 0.1144 15532 +15534 2 -42.646009927017474 -1257.4754764794343 34.7766 0.1144 15533 +15535 2 -41.99362601913657 -1258.4146091254106 34.7561 0.1144 15534 +15536 2 -41.05428716495072 -1259.0645551901089 34.7584 0.1144 15535 +15537 2 -40.105685717728704 -1259.7034082673717 34.769 0.1144 15536 +15538 2 -39.16375903824468 -1260.3531722325747 34.7696 0.1144 15537 +15539 2 -38.269845292122 -1261.0646108135452 34.6702 0.1144 15538 +15540 2 -37.38777955528735 -1261.7699506507174 34.2157 0.1144 15539 +15541 2 -35.401476102566846 -1229.682581802622 34.1124 0.1144 15503 +15542 2 -35.482264062004276 -1230.8225897655811 34.0698 0.1144 15541 +15543 2 -35.52941265426415 -1231.964809735748 34.0124 0.1144 15542 +15544 2 -35.272013026638206 -1233.0782958971786 33.9349 0.1144 15543 +15545 2 -34.933806131268625 -1234.170283326559 33.789 0.1144 15544 +15546 2 -34.57020866507651 -1235.253354539628 33.6515 0.1144 15545 +15547 2 -34.40418563450254 -1236.379928768571 33.4706 0.1144 15546 +15548 2 -34.742851545356416 -1237.4609410353032 33.0996 0.1144 15547 +15549 2 -35.20213681712784 -1238.5005922119649 32.8003 0.1144 15548 +15550 2 -35.739921135326256 -1239.5066803179975 32.576 0.1144 15549 +15551 2 -36.28613634937517 -1240.4990523752126 32.3845 0.1144 15550 +15552 2 -36.5255310685269 -1241.6170581616207 32.3226 0.1144 15551 +15553 2 -36.69957056024833 -1242.7472436133594 32.3106 0.1144 15552 +15554 2 -36.80592567937401 -1243.8828949324866 32.2188 0.1144 15553 +15555 2 -36.71326920039036 -1245.021112146775 32.1 0.1144 15554 +15556 2 -36.537178598161574 -1246.150888562623 31.9883 0.1144 15555 +15557 2 -36.35654073508931 -1247.279278465283 31.8864 0.1144 15556 +15558 2 -35.972706809296824 -1248.2358167747147 31.792 0.1144 15557 +15559 2 -35.02854278911104 -1248.7647119089208 31.7878 0.1144 15558 +15560 2 -34.567702038330594 -1249.8028001963125 32.0208 0.1144 15559 +15561 2 -34.26081948781524 -1250.900543094349 32.1202 0.1144 15560 +15562 2 -34.03117781914801 -1252.0148928033773 31.8819 0.1144 15561 +15563 2 -34.10644616031061 -1253.1354268398165 31.5227 0.1144 15562 +15564 2 -33.8398400995809 -1254.2069833984647 31.0962 0.1144 15563 +15565 2 -32.86532339943574 -1254.7722731039594 30.8042 0.1144 15564 +15566 2 -32.4475636067815 -1255.8233433421647 30.5189 0.1144 15565 +15567 2 -32.04293291244136 -1256.8880005880415 30.2596 0.1144 15566 +15568 2 -31.63929170526177 -1257.9531486650085 29.9992 0.1144 15567 +15569 2 -31.235289400674503 -1259.016783596688 29.715 0.1144 15568 +15570 2 -30.854718231364416 -1260.0881303309852 29.4048 0.1144 15569 +15571 2 -30.66909774375415 -1261.2093492188833 29.0839 0.1144 15570 +15572 2 -30.485960349816594 -1262.3309205919763 28.7678 0.1144 15571 +15573 2 -30.30381244303959 -1263.4529827961596 28.4536 0.1144 15572 +15574 2 -30.12009902516195 -1264.5754912906004 28.138 0.1144 15573 +15575 2 -29.937013997037127 -1265.6969774708436 27.8179 0.1144 15574 +15576 2 -29.75544211420015 -1266.8181025536792 27.4897 0.1144 15575 +15577 2 -29.57293311001547 -1267.9386516125746 27.1486 0.1144 15576 +15578 2 -29.277140445352472 -1269.0338207134591 26.7789 0.1144 15577 +15579 2 -28.85028613101133 -1270.082117925288 26.3754 0.1144 15578 +15580 2 -28.42312308507519 -1271.1288167989792 25.9484 0.1144 15579 +15581 2 -27.995566114694384 -1272.17386496872 25.5081 0.1144 15580 +15582 2 -27.699136341955864 -1271.9701766778583 24.6768 0.1144 15581 +15583 2 -27.911578080767413 -1273.0730237423286 24.1706 0.1144 15582 +15584 2 -28.138587796894285 -1274.1848253607768 23.8177 0.1144 15583 +15585 2 -27.627140492736146 -1275.0736047175742 23.4998 0.1144 15584 +15586 2 -26.771216554456544 -1275.8217760427933 23.214 0.1144 15585 +15587 2 -25.90927675087852 -1276.5663669539704 22.9391 0.1144 15586 +15588 2 -25.512463283318766 -1277.5833600522574 22.5609 0.1144 15587 +15589 2 -25.34189609348448 -1278.7018589721283 22.1593 0.1144 15588 +15590 2 -25.18709268244561 -1279.823356771471 21.7594 0.1144 15589 +15591 2 -25.01947441531712 -1280.9435509361251 21.3676 0.1144 15590 +15592 2 -24.824398308612274 -1282.0604836523585 20.9931 0.1144 15591 +15593 2 -24.621801016300992 -1283.1766668573694 20.6387 0.1144 15592 +15594 2 -24.428108321201364 -1284.2957411086436 20.3049 0.1144 15593 +15595 2 -24.589363374823733 -1285.4073866536269 19.9917 0.1144 15594 +15596 2 -24.83611120823258 -1286.517821990199 19.6889 0.1144 15595 +15597 2 -25.082773848791476 -1287.6282049609586 19.3863 0.1144 15596 +15598 2 -25.328499368002724 -1288.7380119077777 19.0781 0.1144 15597 +15599 2 -25.575247201411514 -1289.8484472443497 18.7646 0.1144 15598 +15600 2 -26.17400107029107 -1290.7858995442039 18.3432 0.1144 15599 +15601 2 -26.87319530848208 -1291.6668874994452 17.8328 0.1144 15600 +15602 2 -27.572348107423466 -1292.5437416570637 17.2854 0.1144 15601 +15603 2 -28.11160723324309 -1293.538646072181 16.8912 0.1144 15602 +15604 2 -28.564646897804778 -1294.5865484542444 16.7059 0.1144 15603 +15605 2 -29.016396955823666 -1295.6363579060403 16.8274 0.1144 15604 +15606 2 -38.42728748561427 -1206.5509348105847 41.9846 0.1144 15481 +15607 2 -39.56857033443333 -1206.503210194385 42.1128 0.1144 15606 +15608 2 -40.70011898414981 -1206.5715781936601 42.2416 0.1144 15607 +15609 2 -41.79861380245541 -1206.8883133892978 42.3382 0.1144 15608 +15610 2 -42.87460160265891 -1207.2743196765696 42.4063 0.1144 15609 +15611 2 -43.91986090481248 -1207.7301778028122 42.4435 0.1144 15610 +15612 2 -44.807210610347056 -1208.4165826906792 42.4469 0.1144 15611 +15613 2 -45.465179618305115 -1209.3514625784546 42.4147 0.1144 15612 +15614 2 -46.0371440915377 -1210.33689016654 42.3478 0.1144 15613 +15615 2 -46.42437603524553 -1211.408784294601 42.2444 0.1144 15614 +15616 2 -47.031320930712184 -1211.9309309635237 42.0207 0.1144 15615 +15617 2 -48.06333309697982 -1212.1570315797892 41.7217 0.1144 15616 +15618 2 -49.05674719028946 -1212.7167139532958 41.473 0.1144 15617 +15619 2 -50.05021364941183 -1213.2763111339523 41.2555 0.1144 15618 +15620 2 -51.0447024227318 -1213.8365367043616 41.076 0.1144 15619 +15621 2 -51.843450558189545 -1214.6189626408582 40.9422 0.1144 15620 +15622 2 -52.18283625481223 -1215.6856273674375 40.8859 0.1144 15621 +15623 2 -52.38258046488443 -1216.8114233483072 40.885 0.1144 15622 +15624 2 -52.58312423764198 -1217.9378281801542 40.9245 0.1144 15623 +15625 2 -52.787545442240344 -1219.062508041764 41.0094 0.1144 15624 +15626 2 -53.00283378117888 -1220.1845945674459 41.1578 0.1144 15625 +15627 2 -53.22414108699894 -1221.3035727112856 41.3655 0.1144 15626 +15628 2 -53.44505446837428 -1222.4209001511747 41.6189 0.1144 15627 +15629 2 -53.66555438652921 -1223.5367996386258 41.9084 0.1144 15628 +15630 2 -53.886106670496986 -1224.6526139332273 42.2285 0.1144 15629 +15631 2 -54.10692624680985 -1225.765892768343 42.5732 0.1144 15630 +15632 2 -54.326671143112435 -1226.878628406556 42.94 0.1144 15631 +15633 2 -54.38113451196273 -1228.0024553333792 43.3586 0.1144 15632 +15634 2 -54.026147632070035 -1229.0518488416042 43.846 0.1144 15633 +15635 2 -53.55670860662639 -1230.071270590141 44.3909 0.1144 15634 +15636 2 -53.08750404649078 -1231.0880193205303 44.973 0.1144 15635 +15637 2 -52.619451534235395 -1232.102893808224 45.5694 0.1144 15636 +15638 2 -52.151399021979955 -1233.1177682959178 46.1608 0.1144 15637 +15639 2 -51.682503193439345 -1234.1361153644443 46.7261 0.1144 15638 +15640 2 -52.51176868882726 -1234.1852411026985 47.1962 0.1144 15639 +15641 2 -53.63091110989643 -1234.0030051804342 47.5591 0.1144 15640 +15642 2 -54.75406069648915 -1233.8165416554848 47.8492 0.1144 15641 +15643 2 -55.87811457739258 -1233.6305165958129 48.0903 0.1144 15642 +15644 2 -56.7126713399241 -1234.2979698302142 48.2174 0.1144 15643 +15645 2 -57.140540870825305 -1235.3451907641756 48.3672 0.1144 15644 +15646 2 -57.51279378304406 -1236.4240762165496 48.5764 0.1144 15645 +15647 2 -57.884258846373314 -1237.499660261023 48.8379 0.1144 15646 +15648 2 -58.256299933642765 -1238.5743071841487 49.1431 0.1144 15647 +15649 2 -58.62735153375172 -1239.648463276184 49.4819 0.1144 15648 +15650 2 -58.9977004778209 -1240.7193703261314 49.8467 0.1144 15649 +15651 2 -59.36786732239477 -1241.7928652013766 50.211 0.1144 15650 +15652 2 -59.67476500718334 -1242.8839303190812 50.5772 0.1144 15651 +15653 2 -59.88319647888841 -1243.9976937821211 50.9466 0.1144 15652 +15654 2 -60.081560378938605 -1245.1146594320662 51.315 0.1144 15653 +15655 2 -60.50448562296856 -1246.1655319447727 51.6438 0.1144 15654 +15656 2 -60.958911800718454 -1247.2088870659925 51.9378 0.1144 15655 +15657 2 -61.414222734003374 -1248.2529034040022 52.2035 0.1144 15656 +15658 2 -61.870608347298685 -1249.297462938915 52.4468 0.1144 15657 +15659 2 -62.32699396059394 -1250.3420224738277 52.6753 0.1144 15658 +15660 2 -62.78332720807646 -1251.3866672015902 52.8962 0.1144 15659 +15661 2 -63.23908443161889 -1252.4322490507004 53.1152 0.1144 15660 +15662 2 -63.695831142321765 -1253.4783217309011 53.3336 0.1144 15661 +15663 2 -64.1515883658642 -1254.5239035800114 53.5506 0.1144 15662 +15664 2 -64.60734558940658 -1255.5694854291219 53.7692 0.1144 15663 +15665 2 -65.06373120270189 -1256.6140449640343 53.9851 0.1144 15664 +15666 2 -65.52051074044186 -1257.6602552028976 54.1937 0.1144 15665 +15667 2 -65.71664791260156 -1258.778551898635 54.4124 0.1144 15666 +15668 2 -65.03932592732184 -1259.696956247632 54.5997 0.1144 15667 +15669 2 -64.36556481730821 -1260.609567482843 54.9696 0.1144 15668 +15670 2 -78.3862453976219 -1139.7904413370013 44.8717 0.1144 8265 +15671 2 -78.85818365729995 -1140.8096985955244 45.3855 0.1144 15670 +15672 2 -78.8330386614698 -1141.899382319907 45.638 0.1144 15671 +15673 2 -78.59382025223795 -1143.01594472868 45.8304 0.1144 15672 +15674 2 -78.35589144954884 -1144.1306000677203 46.0502 0.1144 15673 +15675 2 -78.11694033266213 -1145.2446270170076 46.2994 0.1144 15674 +15676 2 -78.03890178775998 -1146.3743397616954 46.6077 0.1144 15675 +15677 2 -78.30971294031843 -1147.460713164191 47.0028 0.1144 15676 +15678 2 -78.68077856857343 -1148.5239614698692 47.4807 0.1144 15677 +15679 2 -79.04938610521293 -1149.5845250436037 48.0228 0.1144 15678 +15680 2 -79.4185805923554 -1150.6399325055177 48.6086 0.1144 15679 +15681 2 -79.78576327813994 -1151.6942207465884 49.2218 0.1144 15680 +15682 2 -80.15348916082746 -1152.7474343076487 49.8467 0.1144 15681 +15683 2 -80.52027792216728 -1153.8000718447693 50.4736 0.1144 15682 +15684 2 -80.88715187635682 -1154.8527617477025 51.1011 0.1144 15683 +15685 2 -81.25394063769659 -1155.9053992848226 51.7289 0.1144 15684 +15686 2 -81.62166652038411 -1156.9586128458832 52.3564 0.1144 15685 +15687 2 -81.98854047457371 -1158.0113027488164 52.9861 0.1144 15686 +15688 2 -82.3549353114687 -1159.0622895819863 53.6225 0.1144 15687 +15689 2 -82.83208825194629 -1160.0686710063942 54.245 0.1144 15688 +15690 2 -83.36271317448245 -1161.0514601198788 54.8559 0.1144 15689 +15691 2 -83.84164655259298 -1162.0549449873938 55.5108 0.1144 15690 +15692 2 -83.14268828857826 -1162.6350228055917 56.289 0.1144 15691 +15693 2 -82.16289943963898 -1163.1017586961066 57.171 0.1144 15692 +15694 2 -81.25480653846415 -1163.6943785851045 58.0577 0.1144 15693 +15695 2 -80.3741012887873 -1164.3320043242268 58.9252 0.1144 15694 +15696 2 -79.49027362912187 -1164.9745188828247 59.757 0.1144 15695 +15697 2 -78.60070211989984 -1165.6200761691912 60.5307 0.1144 15696 +15698 2 -77.70430115454815 -1166.2723519768954 61.2245 0.1144 15697 +15699 2 -77.69451559592108 -1166.2380482913447 61.7865 0.1144 15698 +15700 2 -77.45585327594813 -1165.346098479402 62.9188 0.1144 15699 +15701 2 -77.16258954871 -1164.2567230958512 63.3536 0.1144 15700 +15702 2 -77.23411829564031 -1163.1311082201664 63.6787 0.1144 15701 +15703 2 -77.57148187472467 -1162.0425933716192 63.873 0.1144 15702 +15704 2 -77.92669840183248 -1160.9557791837888 63.9719 0.1144 15703 +15705 2 -78.28094498055538 -1159.8682514133557 64.001 0.1144 15704 +15706 2 -78.30646338542937 -1158.727736590562 64.0452 0.1144 15705 +15707 2 -78.18014661027655 -1157.5919055809857 64.1528 0.1144 15706 +15708 2 -78.049100474785 -1156.4572758835193 64.3334 0.1144 15707 +15709 2 -78.20019994126568 -1155.330918990155 64.5826 0.1144 15708 +15710 2 -78.72888072965884 -1154.3224399799697 64.8519 0.1144 15709 +15711 2 -79.25841344654992 -1153.314484627912 65.1294 0.1144 15710 +15712 2 -79.78763743184618 -1152.3049309377166 65.3937 0.1144 15711 +15713 2 -80.31783136552718 -1151.2960908301238 65.6342 0.1144 15712 +15714 2 -80.90179611027213 -1150.334974824173 65.8437 0.1144 15713 +15715 2 -82.00208548334615 -1150.0283475333126 66.0114 0.1144 15714 +15716 2 -83.10268358801505 -1149.7233185805899 66.1242 0.1144 15715 +15717 2 -84.10707475043938 -1149.363027305586 66.1548 0.1144 15716 +15718 2 -83.6969346370451 -1148.3066320730213 65.9501 0.1144 15717 +15719 2 -83.10589567236707 -1147.339059842006 65.5984 0.1144 15718 +15720 2 -82.51934850113662 -1146.379648112913 65.0908 0.1144 15719 +15721 2 -81.85961276993982 -1145.563175862936 64.244 0.1144 15720 +15722 2 -81.02778617979885 -1145.1338056102 62.6416 0.1144 15721 +15723 2 -80.26056220428222 -1144.7064656736243 60.879 0.1144 15722 +15724 2 -79.76806743608296 -1143.88010654873 59.3872 0.1144 15723 +15725 2 -79.47781589426336 -1142.9913082743892 57.7744 0.1144 15724 +15726 2 -77.38824370188206 -1166.76686994079 61.6661 0.1144 15698 +15727 2 -76.77714938793139 -1167.7261000849458 61.9679 0.1144 15726 +15728 2 -76.16267629820999 -1168.6885355175896 62.1379 0.1144 15727 +15729 2 -75.54864949874604 -1169.6525364613337 62.2177 0.1144 15728 +15730 2 -75.00178749195891 -1170.657939224177 62.2401 0.1144 15729 +15731 2 -75.31037421836453 -1171.7594330109441 62.2303 0.1144 15730 +15732 2 -75.61744779948236 -1172.8612878951185 62.2174 0.1144 15731 +15733 2 -75.92603452588804 -1173.9627816818856 62.2017 0.1144 15732 +15734 2 -76.2330229141561 -1175.0645842002473 62.1832 0.1144 15733 +15735 2 -76.54160964056172 -1176.1660779870144 62.1622 0.1144 15734 +15736 2 -76.84868322167955 -1177.2679328711888 62.1387 0.1144 15735 +15737 2 -77.15726994808529 -1178.369426657956 62.1116 0.1144 15736 +15738 2 -77.46528065055082 -1179.4718575660709 62.0791 0.1144 15737 +15739 2 -77.77391974276924 -1180.5732661599877 62.0399 0.1144 15738 +15740 2 -78.08085576522456 -1181.6751538711997 61.9948 0.1144 15739 +15741 2 -77.51453084746976 -1182.0722991185967 60.8703 0.1144 15740 +15742 2 -77.08645881348923 -1182.9062148779653 59.9206 0.1144 15741 +15743 2 -77.28695873795056 -1184.0111120814604 59.5148 0.1144 15742 +15744 2 -77.58713169823477 -1185.1087253348032 59.2301 0.1144 15743 +15745 2 -77.88805968037144 -1186.2095024373848 59.0153 0.1144 15744 +15746 2 -78.60500726680527 -1187.0006902332377 58.7779 0.1144 15745 +15747 2 -79.6949847003267 -1186.769656221858 58.5435 0.1144 15746 +15748 2 -80.79202192972951 -1186.4704203829215 58.2436 0.1144 15747 +15749 2 -81.90013363176558 -1186.2276437864161 57.8656 0.1144 15748 +15750 2 -82.29788564055195 -1187.2845236469047 57.4904 0.1144 15749 +15751 2 -82.6935375535474 -1188.3469207166218 57.1113 0.1144 15750 +15752 2 -83.0883899038576 -1189.4087089353616 56.7342 0.1144 15751 +15753 2 -83.484041816853 -1190.4711060050784 56.3573 0.1144 15752 +15754 2 -83.87823295037333 -1191.533778979353 55.9714 0.1144 15753 +15755 2 -84.20134690738104 -1192.616030895862 55.5338 0.1144 15754 +15756 2 -84.32481708240698 -1193.7326224442263 55.0099 0.1144 15755 +15757 2 -84.44334607214466 -1194.846176775452 54.4407 0.1144 15756 +15758 2 -84.5608527476848 -1195.9591027169251 53.858 0.1144 15757 +15759 2 -84.67964902976763 -1197.0701215886656 53.2616 0.1144 15758 +15760 2 -84.79125137264134 -1198.1162674518532 52.1651 0.1144 15759 +15761 2 -78.85575791711148 -1182.4965653058662 61.8612 0.1144 15740 +15762 2 -79.64046585893789 -1183.3279950479578 61.745 0.1144 15761 +15763 2 -80.42520662780123 -1184.159562348712 61.6207 0.1144 15762 +15764 2 -81.30252330522791 -1184.8907434394885 61.5689 0.1144 15763 +15765 2 -82.212281831842 -1185.5842317402212 61.605 0.1144 15764 +15766 2 -83.12354489153131 -1186.2733627045855 61.712 0.1144 15765 +15767 2 -84.03419910024337 -1186.963293231635 61.8666 0.1144 15766 +15768 2 -84.94600535683577 -1187.6513495159888 62.0382 0.1144 15767 +15769 2 -85.8562984681401 -1188.339766897751 62.1981 0.1144 15768 +15770 2 -86.76792262523708 -1189.030411007403 62.3199 0.1144 15769 +15771 2 -87.66046918930539 -1189.7455992700093 62.3882 0.1144 15770 +15772 2 -87.96434678668447 -1190.8240089907608 62.2905 0.1144 15771 +15773 2 -88.20615033322201 -1191.9380959060782 62.0539 0.1144 15772 +15774 2 -88.44612417789676 -1193.0484757752547 61.7266 0.1144 15773 +15775 2 -88.68578929097669 -1194.157257306293 61.3539 0.1144 15774 +15776 2 -88.92514567246167 -1195.2644404991943 60.9756 0.1144 15775 +15777 2 -89.18338902996334 -1196.371260185641 60.6612 0.1144 15776 +15778 2 -89.49318017006192 -1197.4707945368627 60.5116 0.1144 15777 +15779 2 -89.80333240756823 -1198.5718420333721 60.485 0.1144 15778 +15780 2 -90.11191913397391 -1199.673335820139 60.5461 0.1144 15779 +15781 2 -90.42273258827015 -1200.7734985611137 60.6612 0.1144 15780 +15782 2 -90.73043766072385 -1201.8676423352067 60.9773 0.1144 15781 +15783 2 -69.30126508113011 -1148.3663678822181 42.2103 0.1144 3407 +15784 2 -70.4086022402231 -1148.3366307658175 42.7784 0.1144 15783 +15785 2 -71.39117081557805 -1148.8264958439 43.1964 0.1144 15784 +15786 2 -72.30703419446013 -1149.4928655019899 43.5898 0.1144 15785 +15787 2 -73.2194305031386 -1150.1690768786389 43.9306 0.1144 15786 +15788 2 -74.09054611418827 -1150.905954176556 44.1067 0.1144 15787 +15789 2 -74.91196726148769 -1151.699616862317 44.0468 0.1144 15788 +15790 2 -75.71975996186615 -1152.502274848769 43.7898 0.1144 15789 +15791 2 -76.5226443039935 -1153.3020331767448 43.4101 0.1144 15790 +15792 2 -77.32388886873349 -1154.0979664386925 42.9719 0.1144 15791 +15793 2 -78.12450504372055 -1154.894922014838 42.5306 0.1144 15792 +15794 2 -78.8816278213344 -1155.7429667716865 42.2223 0.1144 15793 +15795 2 -79.63125682444542 -1156.6053036012922 42.061 0.1144 15794 +15796 2 -80.37910538992344 -1157.4705369877913 42.0274 0.1144 15795 +15797 2 -81.12703914825124 -1158.3358227401031 42.0972 0.1144 15796 +15798 2 -81.80350662371484 -1159.253784392156 42.3069 0.1144 15797 +15799 2 -82.38764186597626 -1160.223803788224 42.6857 0.1144 15798 +15800 2 -82.97115182006803 -1161.1881567026055 43.1598 0.1144 15799 +15801 2 -83.72305750783585 -1162.0317034628401 43.596 0.1144 15800 +15802 2 -84.48062967729021 -1162.8746249349051 43.9799 0.1144 15801 +15803 2 -85.24041764807214 -1163.7204343516505 44.2837 0.1144 15802 +15804 2 -85.90618606054483 -1164.6493093006902 44.4312 0.1144 15803 +15805 2 -86.4771251179967 -1165.6407972949069 44.3876 0.1144 15804 +15806 2 -87.04571081545868 -1166.6294301714802 44.186 0.1144 15805 +15807 2 -87.61263719675742 -1167.6144607335377 43.86 0.1144 15806 +15808 2 -88.0887976551657 -1168.2334625573221 43.3913 0.1144 15807 +15809 2 -88.80850044571031 -1169.0572150403427 42.5838 0.1144 15808 +15810 2 -89.68201978196419 -1169.6786586252242 41.622 0.1144 15809 +15811 2 -90.5419787344178 -1170.3267464588512 40.6826 0.1144 15810 +15812 2 -91.33863839318417 -1171.08640798749 39.919 0.1144 15811 +15813 2 -92.14488030314465 -1171.8545418512294 39.277 0.1144 15812 +15814 2 -92.95962978428906 -1172.630604853166 38.7668 0.1144 15813 +15815 2 -94.31355308658635 -1172.4704892340142 38.3522 0.1144 15814 +15816 2 -95.44391443465406 -1172.307239508763 38.1962 0.1144 15815 +15817 2 -96.53106378285094 -1171.9912442007044 38.1004 0.1144 15816 +15818 2 -97.3677803944193 -1171.2701196608878 38.0372 0.1144 15817 +15819 2 -98.13877006833854 -1170.4374617643239 37.9845 0.1144 15818 +15820 2 -99.08821724089239 -1169.8125099369568 37.9221 0.1144 15819 +15821 2 -100.09746919616305 -1169.273970596906 37.8417 0.1144 15820 +15822 2 -101.09617205343784 -1168.719556543268 37.718 0.1144 15821 +15823 2 -102.17348788684001 -1168.5049202110665 37.4965 0.1144 15822 +15824 2 -103.27771455681773 -1168.7445380553727 37.2333 0.1144 15823 +15825 2 -104.39459731628511 -1168.957073185656 36.9919 0.1144 15824 +15826 2 -105.38656604333886 -1169.4579984241373 36.729 0.1144 15825 +15827 2 -105.95671243380826 -1170.4114373489956 36.4736 0.1144 15826 +15828 2 -106.45111188037862 -1171.4376928275342 36.2496 0.1144 15827 +15829 2 -106.85215126891967 -1172.5046926254904 36.0405 0.1144 15828 +15830 2 -106.67714224240399 -1173.5975720198603 35.7865 0.1144 15829 +15831 2 -106.19607013420477 -1174.6206422455598 35.4133 0.1144 15830 +15832 2 -106.47117287436112 -1175.6826560036432 35.0224 0.1144 15831 +15833 2 -106.71819110169815 -1176.7838670848457 34.5881 0.1144 15832 +15834 2 -106.66951505705839 -1177.9007570537674 34.0225 0.1144 15833 +15835 2 -106.5929544213605 -1179.012597311656 33.3931 0.1144 15834 +15836 2 -106.57203633567934 -1180.1303508281753 32.8065 0.1144 15835 +15837 2 -106.55369514873337 -1181.252505434663 32.2557 0.1144 15836 +15838 2 -106.08814216734322 -1182.2741984519234 31.7419 0.1144 15837 +15839 2 -105.8064656791085 -1183.3660715608403 31.2704 0.1144 15838 +15840 2 -105.77410212079678 -1184.4955707640688 30.8372 0.1144 15839 +15841 2 -105.75295508043718 -1185.6266823335807 30.4284 0.1144 15840 +15842 2 -105.7306036263846 -1186.759753338638 30.0336 0.1144 15841 +15843 2 -105.7088805620848 -1187.8918020294977 29.6531 0.1144 15842 +15844 2 -105.5841970822072 -1189.0210147330422 29.3056 0.1144 15843 +15845 2 -105.3182046905477 -1190.1265193904628 29.0086 0.1144 15844 +15846 2 -105.04753530436204 -1191.233140167144 28.7451 0.1144 15845 +15847 2 -104.77788823237404 -1192.3403893335776 28.499 0.1144 15846 +15848 2 -104.50824116038586 -1193.4476385000114 28.2554 0.1144 15847 +15849 2 -104.76042411175627 -1194.5534327706775 27.9558 0.1144 15848 +15850 2 -105.04985967138305 -1195.6511367275 27.5988 0.1144 15849 +15851 2 -105.38656614669168 -1196.7309445805392 27.1915 0.1144 15850 +15852 2 -105.76831680979137 -1197.794187375588 26.7493 0.1144 15851 +15853 2 -106.15666246371273 -1198.8533846674463 26.3026 0.1144 15852 +15854 2 -106.8479244621235 -1199.749568989756 25.9018 0.1144 15853 +15855 2 -107.60251557437158 -1200.5665950317618 25.2412 0.1144 15854 +15856 2 -92.99112350855467 -1172.7869465473232 38.5669 0.1144 15814 +15857 2 -93.2062068235503 -1173.8417652652129 37.7048 0.1144 15856 +15858 2 -93.43345100498527 -1174.950893865513 37.3436 0.1144 15857 +15859 2 -93.661662033222 -1176.0674248443001 37.0944 0.1144 15858 +15860 2 -93.88942677120127 -1177.1823903119866 36.8001 0.1144 15859 +15861 2 -94.11751116733836 -1178.2947351273378 36.4672 0.1144 15860 +15862 2 -94.38765489994074 -1179.3953708771369 36.0892 0.1144 15861 +15863 2 -94.73563336059703 -1180.4700171077259 35.6552 0.1144 15862 +15864 2 -95.11720502578453 -1181.5291589321887 35.1688 0.1144 15863 +15865 2 -95.49852032518982 -1182.5866172256638 34.6408 0.1144 15864 +15866 2 -95.8780911155821 -1183.6404208388103 34.0788 0.1144 15865 +15867 2 -96.25878112681761 -1184.692212650599 33.4916 0.1144 15866 +15868 2 -96.6033784026568 -1185.752690338947 32.87 0.1144 15867 +15869 2 -96.90400144731814 -1186.8211176808934 32.193 0.1144 15868 +15870 2 -97.51414503734372 -1187.6768311022856 31.4278 0.1144 15869 +15871 2 -98.52134095790399 -1188.0676225013808 30.7003 0.1144 15870 +15872 2 -99.59980123896895 -1188.331781397058 30.0224 0.1144 15871 +15873 2 -100.65133318065125 -1188.6920736612296 29.3768 0.1144 15872 +15874 2 -101.48191732120614 -1189.405328514321 28.7899 0.1144 15873 +15875 2 -102.08450176674347 -1190.3518260716323 28.3032 0.1144 15874 +15876 2 -102.73480651980299 -1191.2753042403774 27.8902 0.1144 15875 +15877 2 -103.74922651347435 -1191.6369651954715 27.5325 0.1144 15876 +15878 2 -104.87765135044413 -1191.5423666896177 27.2648 0.1144 15877 +15879 2 -105.94562350583163 -1191.1594147144083 27.0266 0.1144 15878 +15880 2 -107.0413580178448 -1191.3320703809336 26.7394 0.1144 15879 +15881 2 -108.17191207821907 -1191.2884327071738 26.3973 0.1144 15880 +15882 2 -109.18151041021474 -1190.7863769253809 26.0 0.1144 15881 +15883 2 -110.29103254419675 -1190.8775938328272 25.4756 0.1144 15882 +15884 2 -111.35558167277628 -1191.212316528264 24.8733 0.1144 15883 +15885 2 -112.45149828428481 -1191.3823843694913 24.2362 0.1144 15884 +15886 2 -113.49990821871955 -1191.0115884426282 23.5927 0.1144 15885 +15887 2 -114.47083970441508 -1190.6335475188048 22.4367 0.1144 15886 +15888 2 -87.98831834464016 -1167.693608791793 45.1665 0.1144 15807 +15889 2 -88.85764129540985 -1167.8761687470542 46.8664 0.1144 15888 +15890 2 -89.9126882634634 -1168.0909566312585 47.7128 0.1144 15889 +15891 2 -91.00659168854065 -1168.3080305048693 48.3451 0.1144 15890 +15892 2 -92.08960233203209 -1168.5668871178505 48.9807 0.1144 15891 +15893 2 -93.06975587683507 -1169.074048658792 49.6398 0.1144 15892 +15894 2 -94.01264380920878 -1169.6657073838896 50.2818 0.1144 15893 +15895 2 -94.92989370127918 -1170.3275297811358 50.6948 0.1144 15894 +15896 2 -96.00647293864199 -1170.6535659074766 51.002 0.1144 15895 +15897 2 -97.11844905636809 -1170.904637836626 51.2324 0.1144 15896 +15898 2 -98.23296063357958 -1171.1559770581207 51.3828 0.1144 15897 +15899 2 -99.32437203901969 -1171.495121074838 51.3075 0.1144 15898 +15900 2 -100.39723502018819 -1171.8686423508561 50.995 0.1144 15899 +15901 2 -101.46163969440244 -1172.2408380917113 50.521 0.1144 15900 +15902 2 -102.54909217457538 -1172.525314230194 50.0035 0.1144 15901 +15903 2 -103.64686141239389 -1172.7689447506532 49.495 0.1144 15902 +15904 2 -104.74805086523287 -1173.0135037802474 49.0162 0.1144 15903 +15905 2 -105.85188050918276 -1173.2581597164876 48.5887 0.1144 15904 +15906 2 -106.95753203001544 -1173.5040528934574 48.2059 0.1144 15905 +15907 2 -108.06580420318329 -1173.7502657285854 47.8568 0.1144 15906 +15908 2 -109.17506586351175 -1173.9969693948033 47.53 0.1144 15907 +15909 2 -110.28529747222501 -1174.2443866436242 47.2262 0.1144 15908 +15910 2 -111.39817237363229 -1174.4852120032065 46.9577 0.1144 15909 +15911 2 -112.52102483575152 -1174.688035148613 46.7743 0.1144 15910 +15912 2 -113.6460711987242 -1174.8893896895647 46.6567 0.1144 15911 +15913 2 -114.77151148614166 -1175.092394934467 46.5559 0.1144 15912 diff --git a/example_data/upright_swcs/606271263.swc b/example_data/upright_swcs/606271263.swc new file mode 100644 index 0000000..22c71d9 --- /dev/null +++ b/example_data/upright_swcs/606271263.swc @@ -0,0 +1,16697 @@ +1 1 -488.51313558291207 -216.7261770628401 21.3699 5.1592 -1 +2 2 -492.3931949954633 -218.8131990404609 20.2895 0.3912 1 +3 2 -492.9680750684821 -219.7583922596737 20.0581 0.2172 2 +4 2 -493.01988011508195 -220.88534855747173 19.8548 0.191 3 +5 2 -492.77736172080847 -221.9566756169821 19.5796 0.1201 4 +6 2 -492.57368368563937 -223.01839661045898 19.227 0.1144 5 +7 2 -492.53091308441975 -224.16219621076985 18.9615 0.1144 6 +8 2 -492.670197319634 -224.87914211655408 18.7704 0.1144 7 +9 2 -492.7623509830697 -226.01912297267202 18.6381 0.1144 8 +10 2 -493.2691122870826 -227.04344041895285 18.5531 0.1144 9 +11 2 -493.9984871150029 -227.92510521375655 18.5062 0.1144 10 +12 2 -494.33162391462974 -228.38931219639946 19.6707 0.1144 11 +13 2 -495.2217164418176 -229.03839199353092 19.9485 0.1144 12 +14 2 -496.04604876052537 -229.78837989232252 20.0425 0.1144 13 +15 2 -497.13389002529425 -229.91114871029342 20.1103 0.1144 14 +16 2 -497.97066393272956 -229.31185854031276 20.1526 0.1144 15 +17 2 -498.80855480843024 -228.65190081407758 20.1697 0.1144 16 +18 2 -499.659248022452 -229.17227511745673 20.1621 0.1144 17 +19 2 -500.514322689862 -229.93031770409263 20.1295 0.1144 18 +20 2 -501.49592066383457 -230.50916109180042 20.0826 0.1144 19 +21 2 -502.51334603448186 -231.03144011221303 20.0164 0.1144 20 +22 2 -503.57289919848773 -231.45997405794566 19.9279 0.1144 21 +23 2 -504.66018195086656 -231.81573390163183 19.806 0.1144 22 +24 2 -505.7526586734356 -231.615788182386 19.6389 0.1144 23 +25 2 -506.786334159575 -231.30010714184908 19.3383 0.1144 24 +26 2 -507.6984605194624 -230.6791250860708 18.9854 0.1144 25 +27 2 -508.20859874208 -229.68522100426793 18.6841 0.1144 26 +28 2 -507.73751590342846 -228.67547397697444 17.9956 0.1144 27 +29 2 -494.17071504263583 -228.00395482341466 18.508 0.1144 11 +30 2 -495.2026974144098 -228.46319025796635 18.5444 0.1144 29 +31 2 -495.99485048343644 -229.1484103724053 18.4314 0.1144 30 +32 2 -495.3900998608508 -229.7376504037018 18.229 0.1144 31 +33 2 -495.0977492693719 -230.66483516504223 18.0369 0.1144 32 +34 2 -495.6568835745745 -231.39651941302463 18.1504 0.1144 33 +35 2 -496.103638238131 -232.4417830546914 18.2951 0.1144 34 +36 2 -497.06390673570525 -232.77217462929138 18.5578 0.1144 35 +37 2 -498.05443288901876 -233.342127144508 18.1402 0.1144 36 +38 2 -498.81959099678346 -234.18829930791327 18.0114 0.1144 37 +39 2 -499.65299672752707 -234.48851459393927 17.6231 0.1144 38 +40 2 -498.59807659120236 -234.8867414086776 17.2987 0.1144 39 +41 2 -497.9108538117423 -235.48712250547467 17.0335 0.1144 40 +42 2 -498.5084864965918 -236.3725419958856 16.8191 0.1144 41 +43 2 -498.9893316407573 -237.31273000226125 16.6478 0.1144 42 +44 2 -498.82533370237286 -238.40281840519268 16.4566 0.1144 43 +45 2 -498.8311214468408 -239.52239514307803 16.2955 0.1144 44 +46 2 -498.4034616928917 -240.5359173849909 16.1508 0.1144 45 +47 2 -497.71337957730725 -241.3199285288852 15.8843 0.1144 46 +48 2 -497.20570097456493 -242.32112097607887 15.659 0.1144 47 +49 2 -497.00515037903574 -243.44266988211592 15.4974 0.1144 48 +50 2 -496.913069726009 -244.56444588619965 15.4608 0.1144 49 +51 2 -496.98429307459423 -245.70438292157323 15.4552 0.1144 50 +52 2 -497.65858050180884 -246.62157064254436 15.455 0.1144 51 +53 2 -497.1137683308036 -246.44563281737732 15.416 0.1144 52 +54 2 -496.12853809037284 -246.0480844010294 14.1437 0.1144 53 +55 2 -495.0968479506747 -246.19229582793318 13.641 0.1144 54 +56 2 -494.1305323648402 -246.7913147830366 13.1113 0.1144 55 +57 2 -493.20400905495524 -246.92605900829284 12.3715 0.1144 56 +58 2 -492.4654324592125 -246.9269875668909 11.4949 0.1144 57 +59 2 -492.7126542980618 -246.31104811987035 10.6124 0.1144 58 +60 2 -492.4944937489246 -246.18437253106126 9.672 0.1144 59 +61 2 -492.5157409748143 -245.32379546571963 8.7697 0.1144 60 +62 2 -491.9577142712361 -244.46836957875252 7.8898 0.1144 61 +63 2 -491.7024339193823 -243.5295023560008 7.0531 0.1144 62 +64 2 -492.3118169258772 -243.42959098830303 6.3346 0.1144 63 +65 2 -491.41505967971784 -243.26189658928928 5.0613 0.1144 64 +66 2 -498.26029955522426 -247.07502620900806 15.3756 0.1144 52 +67 2 -499.1935489064613 -247.6116954259525 15.2977 0.1144 66 +68 2 -499.1599136508743 -248.61388035378846 15.2696 0.1144 67 +69 2 -498.9133326314386 -249.7005431583668 15.1855 0.1144 68 +70 2 -498.92871332016523 -250.83145371381062 15.0664 0.1144 69 +71 2 -499.2200757543484 -251.9298494084247 14.9429 0.1144 70 +72 2 -498.71499613405376 -252.83799184062522 14.8135 0.1144 71 +73 2 -497.8930876929572 -253.63219218968982 14.6634 0.1144 72 +74 2 -497.5457812569916 -254.56583800022864 14.3358 0.1144 73 +75 2 -497.47218136586775 -255.6755611440923 13.9506 0.1144 74 +76 2 -496.672760929605 -256.57014724731846 13.3923 0.1144 75 +77 2 -496.04701638525466 -257.5274639217872 13.1701 0.1144 76 +78 2 -495.30589523039384 -258.0007355180379 12.7012 0.1144 77 +79 2 -495.5035743779083 -258.9937173530369 12.2381 0.1144 78 +80 2 -496.02163473577855 -258.06615661885104 11.7619 0.1144 79 +81 2 -497.0959194885169 -257.67277868348367 11.3555 0.1144 80 +82 2 -498.1654228695175 -257.26652136597636 11.0077 0.1144 81 +83 2 -499.22836364378384 -256.85381562285886 10.7112 0.1144 82 +84 2 -500.32409354860397 -256.6198648039184 10.3834 0.1144 83 +85 2 -501.3773970596807 -256.250767467768 10.0124 0.1144 84 +86 2 -502.193461142432 -255.51234572997635 9.5901 0.1144 85 +87 2 -502.70189855736055 -254.5540056363244 9.0882 0.1144 86 +88 2 -503.3791392979418 -253.6890744140316 8.5791 0.1144 87 +89 2 -503.9749343556788 -252.75029198493735 8.1166 0.1144 88 +90 2 -504.3265642686699 -251.67671848755126 7.7476 0.1144 89 +91 2 -504.5198401187695 -250.5511238332603 7.4912 0.1144 90 +92 2 -504.7632967534122 -249.43694797324162 7.324 0.1144 91 +93 2 -505.5331951009045 -248.72826955214455 7.2216 0.1144 92 +94 2 -506.56237780527806 -248.22809454175496 7.1546 0.1144 93 +95 2 -507.2485462270139 -247.38828435664612 7.0497 0.1144 94 +96 2 -507.97267144942975 -246.52182494486658 6.9387 0.1144 95 +97 2 -508.9486840937194 -245.95195915523993 6.8468 0.1144 96 +98 2 -510.0213423563823 -245.55864852540543 6.7728 0.1144 97 +99 2 -511.12610880805994 -245.2640467310326 6.7137 0.1144 98 +100 2 -512.2100838092729 -244.90307464520666 6.6668 0.1144 99 +101 2 -513.2891496376628 -244.52271751302547 6.6304 0.1144 100 +102 2 -514.4019697808118 -244.26539718930078 6.5943 0.1144 101 +103 2 -515.3883374384936 -243.74816193926515 6.4872 0.1144 102 +104 2 -516.2497339246036 -243.00651170248412 6.3877 0.1144 103 +105 2 -517.0902744134768 -242.2293209623406 6.3119 0.1144 104 +106 2 -517.9638245230702 -241.49179739930744 6.2615 0.1144 105 +107 2 -518.7462150144561 -240.6593304636343 6.2339 0.1144 106 +108 2 -519.4454589213228 -239.75484724172813 6.2236 0.1144 107 +109 2 -520.4068247705374 -239.15581792361078 6.225 0.1144 108 +110 2 -521.5299624181283 -239.00281767993823 6.2261 0.1144 109 +111 2 -522.4249266847478 -238.47329951077458 6.3598 0.1144 110 +112 2 -523.1854352030531 -237.65627243436597 6.3564 0.1144 111 +113 2 -523.8870139835568 -236.78488677075487 6.2308 0.1144 112 +114 2 -524.5618765279431 -235.87377639534228 5.8771 0.1144 113 +115 2 -524.8934160658642 -234.8042620640708 5.6582 0.1144 114 +116 2 -524.5769457162717 -233.7423005921573 5.444 0.1144 115 +117 2 -524.4465728400052 -232.61921031834402 5.254 0.1144 116 +118 2 -524.8734364749181 -231.58065477472158 5.0683 0.1144 117 +119 2 -525.6702781565746 -230.80323112292362 4.806 0.1144 118 +120 2 -526.41437077021 -230.05900183545018 4.4003 0.1144 119 +121 2 -526.442225217851 -229.1497895501468 3.9394 0.1144 120 +122 2 -525.4272221602291 -228.65261794695718 3.5357 0.1144 121 +123 2 -524.5265817736054 -228.00924364378508 3.1558 0.1144 122 +124 2 -523.5399010122346 -227.5614874990579 2.8677 0.1144 123 +125 2 -522.9092491379234 -226.6071972374353 2.663 0.1144 124 +126 2 -522.2923670141574 -225.66191608064761 2.4859 0.1144 125 +127 2 -522.0323393404685 -224.69390605543305 2.2494 0.1144 126 +128 2 -521.990214973602 -223.57015201307493 2.0541 0.1144 127 +129 2 -522.375765009574 -222.54041953822437 1.9182 0.1144 128 +130 2 -522.037500920562 -221.45175445378158 1.8296 0.1144 129 +131 2 -521.8780863011818 -220.3189159926019 1.7859 0.1144 130 +132 2 -521.9135479049688 -219.2212045529891 1.7834 0.1144 131 +133 2 -522.5626619541033 -218.28097811684927 1.8112 0.1144 132 +134 2 -523.1681341385402 -217.3470949957505 1.8632 0.1144 133 +135 2 -523.2173251311754 -216.24389685568514 1.9624 0.1144 134 +136 2 -523.1023011217515 -215.15237574858003 2.0581 0.1144 135 +137 2 -523.5639528536204 -214.1146001473722 2.1296 0.1144 136 +138 2 -523.693161994762 -213.09161420033016 2.178 0.1144 137 +139 2 -522.9967428059041 -212.2416261454785 2.2047 0.1144 138 +140 2 -522.528807540748 -211.28209039959768 2.2105 0.1144 139 +141 2 -522.6371382902228 -210.16671239249948 2.1987 0.1144 140 +142 2 -523.0276554379097 -209.09491737134917 2.178 0.1144 141 +143 2 -523.2580844593857 -207.98877527104668 2.1513 0.1144 142 +144 2 -522.9034990111586 -206.96152372935614 2.1193 0.1144 143 +145 2 -522.0174892429884 -206.28749155600903 2.0531 0.1144 144 +146 2 -521.0690871278997 -205.65936150729684 1.9543 0.1144 145 +147 2 -520.0761381633743 -205.09831348453238 1.8665 0.1144 146 +148 2 -519.0295153083193 -204.64067374710055 1.8035 0.1144 147 +149 2 -517.9405927419903 -204.2913451560302 1.7645 0.1144 148 +150 2 -516.8378558100992 -203.98809110569678 1.7486 0.1144 149 +151 2 -515.7187871559795 -203.75120033473556 1.7549 0.1144 150 +152 2 -514.5807475294723 -203.692956120435 1.7791 0.1144 151 +153 2 -513.4455741946556 -203.81927318151995 1.8174 0.1144 152 +154 2 -512.3491800796191 -203.59367290555934 1.8702 0.1144 153 +155 2 -511.82119810839606 -202.64044612873062 1.9386 0.1144 154 +156 2 -511.51131455061306 -201.53960748904913 2.0227 0.1144 155 +157 2 -511.6648591750166 -200.44384033389406 2.1924 0.1144 156 +158 2 -511.8354602839325 -199.3408256732314 2.441 0.1144 157 +159 2 -511.41623910575805 -198.28267959457776 2.6566 0.1144 158 +160 2 -511.29077234746745 -197.14665951000003 2.8429 0.1144 159 +161 2 -511.2073444485877 -196.02692022084003 3.0099 0.1144 160 +162 2 -510.4446729045345 -195.17516710761336 3.167 0.1144 161 +163 2 -509.8287456959455 -194.21284663930777 3.3274 0.1144 162 +164 2 -509.1162655015496 -193.33369209510434 3.55 0.1144 163 +165 2 -508.41491275269317 -192.54351507590448 3.8399 0.1144 164 +166 2 -508.9591653258649 -192.24370924441365 4.2783 0.1144 165 +167 2 -509.6232938426784 -193.048374760734 4.7191 0.1144 166 +168 2 -509.9753213704414 -194.11528972440126 5.1368 0.1144 167 +169 2 -510.57043344167676 -195.02255358495665 5.5474 0.1144 168 +170 2 -511.4677263966806 -195.71117581296022 5.8808 0.1144 169 +171 2 -512.4777824764433 -196.24079333130197 6.1171 0.1144 170 +172 2 -513.5097646461169 -196.73389925448254 6.2738 0.1144 171 +173 2 -514.1890733688045 -197.58314437768337 6.3838 0.1144 172 +174 2 -514.3601371374507 -198.55577648030837 6.6181 0.1144 173 +175 2 -514.6709203602534 -198.112363119634 6.7749 0.1144 174 +176 2 -515.5837252315608 -198.72090245025873 6.8042 0.1144 175 +177 2 -516.2718300791844 -199.62433048761258 6.8138 0.1144 176 +178 2 -517.1634066790284 -200.34136650247547 6.8062 0.1144 177 +179 2 -517.7682873675718 -201.20983056772354 6.7836 0.1144 178 +180 2 -518.0896132044155 -202.28304522778777 6.7482 0.1144 179 +181 2 -518.7485311327456 -203.21229232287345 6.7281 0.1144 180 +182 2 -519.3953591900918 -204.14073628684216 6.72 0.1144 181 +183 2 -519.9336929177598 -205.14814923477104 6.7087 0.1144 182 +184 2 -520.2461648928762 -206.19475808470833 6.6931 0.1144 183 +185 2 -520.326242305289 -207.32743044157996 6.6718 0.1144 184 +186 2 -520.689708060893 -208.4024303878605 6.6402 0.1144 185 +187 2 -521.1388582957392 -209.4518002733336 6.5953 0.1144 186 +188 2 -521.385654743003 -210.55887080569272 6.5361 0.1144 187 +189 2 -521.9467342725213 -211.5097627088844 6.4612 0.1144 188 +190 2 -522.3756666272984 -212.55654467521046 6.3592 0.1144 189 +191 2 -522.0921219315969 -213.53324545617645 6.1103 0.1144 190 +192 2 -521.8746330838993 -214.6393439378349 5.8953 0.1144 191 +193 2 -522.1757099516323 -215.72481988861227 5.7202 0.1144 192 +194 2 -521.7787416195745 -216.7707212383309 5.5252 0.1144 193 +195 2 -521.0771727038981 -217.67116907499698 5.3956 0.1144 194 +196 2 -520.3142108775115 -218.51166701162558 5.3392 0.1144 195 +197 2 -519.9681823442834 -219.57796902052922 5.3536 0.1144 196 +198 2 -520.0547482479172 -220.71871599700043 5.416 0.1144 197 +199 2 -520.457973169426 -221.68299530958268 5.5269 0.1144 198 +200 2 -521.4632786704065 -222.18502565697068 5.7131 0.1144 199 +201 2 -522.4118710748785 -222.6884929053375 6.0039 0.1144 200 +202 2 -523.2379578868471 -223.41104867418275 6.3789 0.1144 201 +203 2 -524.0567366977559 -224.1116687843757 6.8291 0.1144 202 +204 2 -524.7230107951959 -225.00607083998625 7.2644 0.1144 203 +205 2 -525.3090590796517 -225.9869964122324 7.6099 0.1144 204 +206 2 -525.7226924980242 -227.0459086112392 7.8652 0.1144 205 +207 2 -526.3346485720591 -227.97986572131003 8.0465 0.1144 206 +208 2 -526.5314499747569 -229.02057553095736 8.243 0.1144 207 +209 2 -526.1394177593579 -230.07299261181905 8.4142 0.1144 208 +210 2 -527.060971583924 -230.72447173537392 8.5631 0.1144 209 +211 2 -527.7150607667387 -231.66346681572563 8.7048 0.1144 210 +212 2 -527.7553574278351 -230.5867666164573 9.3176 0.1144 211 +213 2 -527.7690149291886 -229.46730130093533 9.579 0.1144 212 +214 2 -528.6570734676578 -228.79125582742645 9.8398 0.1144 213 +215 2 -529.6622777262324 -228.49729411470955 10.2088 0.1144 214 +216 2 -530.6729161183039 -227.97197793328044 10.5067 0.1144 215 +217 2 -531.7205851960878 -227.55839168658525 10.763 0.1144 216 +218 2 -532.5973438729154 -226.84194666942938 10.9945 0.1144 217 +219 2 -533.4023108048963 -226.03385152749536 11.1724 0.1144 218 +220 2 -534.2272383181162 -225.35123919393203 11.3032 0.1144 219 +221 2 -535.3592499612901 -225.2152281292389 11.3968 0.1144 220 +222 2 -536.1516363136161 -224.60693546230345 11.4812 0.1144 221 +223 2 -536.7760499134289 -223.84626282813764 11.6186 0.1144 222 +224 2 -537.8633286711027 -223.8324171388782 11.8185 0.1144 223 +225 2 -538.9604952182865 -224.09436440025127 11.9511 0.1144 224 +226 2 -540.096800283288 -224.20429460197963 12.0537 0.1144 225 +227 2 -541.0470311766957 -223.58742284122738 12.1346 0.1144 226 +228 2 -541.9899706498658 -222.94069584323077 12.1976 0.1144 227 +229 2 -543.0698257873114 -222.5886246968237 12.294 0.1144 228 +230 2 -543.0722926588387 -222.9639629636509 11.83 0.1144 229 +231 2 -542.9317189071833 -224.01124964376555 11.9113 0.1144 230 +232 2 -542.9009844913758 -225.14772051698884 11.9477 0.1144 231 +233 2 -542.8662885097557 -226.28503162607882 12.0282 0.1144 232 +234 2 -542.7328942577881 -227.41563069893442 12.138 0.1144 233 +235 2 -543.3391748365465 -228.35848549147693 12.2283 0.1144 234 +236 2 -543.695342159832 -229.44075337320655 12.2962 0.1144 235 +237 2 -543.4357804028208 -230.54683447977033 12.3721 0.1144 236 +238 2 -543.3018889356714 -222.62708227310222 12.3757 0.1144 229 +239 2 -544.3956740013325 -222.9505408796298 12.4618 0.1144 238 +240 2 -545.4219907426574 -223.44773616970824 12.5522 0.1144 239 +241 2 -546.417409393986 -224.01126424228963 12.6565 0.1144 240 +242 2 -547.4591296840982 -224.4801367379305 12.7847 0.1144 241 +243 2 -548.5684634747265 -224.73970530492224 12.9488 0.1144 242 +244 2 -549.7018374051794 -224.6960454404019 13.1642 0.1144 243 +245 2 -550.5041917347515 -223.98750568159036 13.4655 0.1144 244 +246 2 -550.6153149564896 -223.05817372282073 14.0104 0.1144 245 +247 2 -550.3895123744755 -221.98834104246563 14.6186 0.1144 246 +248 2 -549.9478172530999 -221.1946064270223 15.3928 0.1144 247 +249 2 -549.0228587583088 -220.58194042264964 16.0879 0.1144 248 +250 2 -547.9050337549236 -220.52783975900527 16.7013 0.1144 249 +251 2 -547.8956038601259 -220.40485387735984 17.1401 0.1144 250 +252 2 -547.8074082094695 -219.2657298379307 17.442 0.1144 251 +253 2 -547.7191419963331 -218.1265349399354 17.6542 0.1144 252 +254 2 -547.6301701583958 -216.9866314562781 17.8006 0.1144 253 +255 2 -547.5419039452593 -215.8474365582828 17.9253 0.1144 254 +256 2 -547.448053229268 -214.7074521491315 18.0315 0.1144 255 +257 2 -547.5701305405855 -213.57838502089626 18.1659 0.1144 256 +258 2 -548.1036856417651 -212.57894381001623 18.306 0.1144 257 +259 2 -548.6672137143464 -211.5835251586877 18.4099 0.1144 258 +260 2 -548.6752602671957 -210.4421277375467 18.4816 0.1144 259 +261 2 -548.8013833267669 -209.3057858638817 18.5269 0.1144 260 +262 2 -549.0714926471278 -208.19414068440486 18.5578 0.1144 261 +263 2 -547.9037427304113 -220.36767701909454 17.746 0.1144 250 +264 2 -547.8984050743022 -219.47218385361126 18.7441 0.1144 263 +265 2 -547.8067873783261 -218.41394584267798 19.1533 0.1144 264 +266 2 -547.6667509953206 -217.27945089274002 19.4541 0.1144 265 +267 2 -547.8607657258513 -216.1724547345095 19.6445 0.1144 266 +268 2 -547.9019602656201 -215.03840992944524 19.7357 0.1144 267 +269 2 -547.9552879989308 -213.9182498503226 19.6661 0.1144 268 +270 2 -548.6308957355423 -213.05649719658098 19.1204 0.1144 269 +271 2 -528.002282319956 -232.03777490990402 8.9004 0.1144 211 +272 2 -528.6694099771377 -232.92977458424437 9.1662 0.1144 271 +273 2 -529.2197899571456 -233.92505048951196 9.3962 0.1144 272 +274 2 -529.4933197195356 -235.0299142454054 9.5848 0.1144 273 +275 2 -529.4820308456358 -236.1663551199458 9.7619 0.1144 274 +276 2 -528.8889015776928 -237.04772593379744 10.0139 0.1144 275 +277 2 -528.6430594386882 -238.1529872344361 10.1827 0.1144 276 +278 2 -528.915020245694 -239.26421168046528 10.2693 0.1144 277 +279 2 -529.0485480036228 -240.40024864195132 10.2861 0.1144 278 +280 2 -529.5455923174254 -241.37115906527396 10.1957 0.1144 279 +281 2 -530.4318824465865 -240.72919251088697 10.0707 0.1144 280 +282 2 -531.0224499824169 -240.32836715537266 9.8529 0.1144 281 +283 2 -532.0295478947244 -239.94050542095434 9.5948 0.1144 282 +284 2 -533.0418697193902 -239.42169816068773 9.3373 0.1144 283 +285 2 -533.3811874283688 -240.3786311689874 7.873 0.1144 284 +286 2 -533.6410830476523 -241.40971498084622 7.4858 0.1144 285 +287 2 -533.5120627013347 -242.41007385656835 7.3018 0.1144 286 +288 2 -534.108598349674 -243.38041476071518 7.1084 0.1144 287 +289 2 -534.4154658901804 -244.40198024201507 6.8247 0.1144 288 +290 2 -534.9604239186083 -245.31882648171498 6.61 0.1144 289 +291 2 -535.0665202468776 -246.38522655163612 6.3887 0.1144 290 +292 2 -535.1038025443538 -247.5250925263432 6.1798 0.1144 291 +293 2 -534.6074545022229 -248.51824766078727 6.0071 0.1144 292 +294 2 -533.6396647085596 -249.07837257121454 5.8428 0.1144 293 +295 2 -533.1133709349489 -250.0544944098488 5.6092 0.1144 294 +296 2 -532.8078596795252 -251.12081053689994 5.3383 0.1144 295 +297 2 -532.0658412897637 -251.9888588358188 5.1148 0.1144 296 +298 2 -531.3763692571523 -252.85298663090848 4.9156 0.1144 297 +299 2 -531.1265622953877 -253.960643798923 4.6978 0.1144 298 +300 2 -530.8864662141397 -255.0570782756562 4.4867 0.1144 299 +301 2 -531.1794757704401 -256.11177812391486 4.3095 0.1144 300 +302 2 -531.9300337566206 -256.9740417897275 4.1473 0.1144 301 +303 2 -532.5583379316062 -257.86758653046275 3.9265 0.1144 302 +304 2 -533.1730381642685 -258.6729263804421 3.5769 0.1144 303 +305 2 -533.8887747978628 -259.5165201934418 3.2747 0.1144 304 +306 2 -534.1963469667971 -260.606818079754 3.0434 0.1144 305 +307 2 -534.1818119227271 -261.7401408812955 2.8737 0.1144 306 +308 2 -533.9602637068145 -262.8600194765129 2.746 0.1144 307 +309 2 -533.9377185899172 -263.96900098118465 2.6325 0.1144 308 +310 2 -534.0688139678929 -265.0847388410215 2.5706 0.1144 309 +311 2 -534.0001128865781 -266.21879676786045 2.5642 0.1144 310 +312 2 -534.0260210047991 -267.3537598815387 2.5601 0.1144 311 +313 2 -534.1304092172122 -268.4929885333506 2.5379 0.1144 312 +314 2 -534.2744812815438 -269.62501705343266 2.495 0.1144 313 +315 2 -534.4379552691388 -270.74407540105346 2.3873 0.1144 314 +316 2 -534.5108252416549 -271.87432849974664 2.2274 0.1144 315 +317 2 -533.8597153374799 -272.61953027959225 2.0682 0.1144 316 +318 2 -533.3613442003862 -273.43067149400065 1.7776 0.1144 317 +319 2 -534.2677989466722 -273.9988216439924 1.5327 0.1144 318 +320 2 -535.073410781842 -274.80781389428546 1.3533 0.1144 319 +321 2 -535.5735217436459 -275.8338144770745 1.2342 0.1144 320 +322 2 -535.6375343953872 -276.97288788577873 1.1628 0.1144 321 +323 2 -536.13934596278 -277.9971949690457 1.1248 0.1144 322 +324 2 -533.5364127266059 -239.25691665682876 9.1804 0.1144 284 +325 2 -534.6351344636273 -239.14756458964803 9.0268 0.1144 324 +326 2 -535.7116386164196 -238.84243842062781 8.8715 0.1144 325 +327 2 -536.6643460066109 -238.22479402562792 8.744 0.1144 326 +328 2 -537.542497763673 -237.58599241983106 8.5241 0.1144 327 +329 2 -538.2545734768017 -236.73322568222207 8.29 0.1144 328 +330 2 -539.1934334479014 -236.10989542893176 8.0963 0.1144 329 +331 2 -540.2233822726282 -235.61530817834415 7.9517 0.1144 330 +332 2 -541.1194851359278 -234.91347009275302 7.847 0.1144 331 +333 2 -541.804176294988 -234.00245100584826 7.7741 0.1144 332 +334 2 -542.3571804911085 -233.00128274372986 7.73 0.1144 333 +335 2 -543.2418849900776 -232.3398673904881 7.6235 0.1144 334 +336 2 -544.3482333168135 -232.10028193615437 7.5314 0.1144 335 +337 2 -545.4714357132768 -231.88258141576227 7.4668 0.1144 336 +338 2 -546.5054567319072 -231.40186201420804 7.4298 0.1144 337 +339 2 -547.3322206602548 -230.61891485329403 7.4194 0.1144 338 +340 2 -548.1702882053778 -229.84079969484273 7.4336 0.1144 339 +341 2 -549.1720626687941 -229.29368601886037 7.4697 0.1144 340 +342 2 -550.2084286279892 -228.84125586002742 7.5704 0.1144 341 +343 2 -551.2440761366948 -228.36046915294028 7.6772 0.1144 342 +344 2 -552.3807672979844 -228.28598631030994 7.7631 0.1144 343 +345 2 -553.4558386900881 -228.66519658427436 7.8286 0.1144 344 +346 2 -554.5464651189532 -229.01127604431346 7.8759 0.1144 345 +347 2 -555.6753293342169 -229.19649770475516 7.9082 0.1144 346 +348 2 -556.6106632723419 -229.85203619652495 7.9294 0.1144 347 +349 2 -557.602819172678 -230.4203657746996 7.9526 0.1144 348 +350 2 -557.6853658302225 -231.18421559588708 6.8208 0.1144 349 +351 2 -558.262662402659 -232.08974509703714 6.004 0.1144 350 +352 2 -559.1851134056105 -232.75176201310015 5.6962 0.1144 351 +353 2 -560.1181293470067 -233.36614194693644 5.3019 0.1144 352 +354 2 -560.9741218248444 -234.09109378525775 4.8538 0.1144 353 +355 2 -561.5668221481685 -234.93443000334136 4.3404 0.1144 354 +356 2 -560.6925292199539 -234.8784350421922 3.7849 0.1144 355 +357 2 -560.1347812550318 -235.84876344929214 3.2916 0.1144 356 +358 2 -559.2185148975216 -236.48826307563687 2.858 0.1144 357 +359 2 -558.1153645729055 -236.78774730109686 2.5577 0.1144 358 +360 2 -557.1088329228268 -237.27665600156118 2.3643 0.1144 359 +361 2 -556.433947189738 -238.16506815100155 2.2543 0.1144 360 +362 2 -555.3741577441008 -238.5924176343473 2.2001 0.1144 361 +363 2 -554.2726207877854 -238.86432801272852 2.1614 0.1144 362 +364 2 -553.1793651191746 -239.03103800958016 2.0858 0.1144 363 +365 2 -552.1501115562348 -239.53128358244987 2.0499 0.1144 364 +366 2 -551.1145280961147 -240.0152524111215 2.052 0.1144 365 +367 2 -550.1264928863741 -240.58594155970653 2.0943 0.1144 366 +368 2 -549.1946060054725 -240.95211111224117 2.2537 0.1144 367 +369 2 -548.2508767815752 -241.19924953896256 2.5227 0.1144 368 +370 2 -547.3490548043551 -241.89704513324708 2.7393 0.1144 369 +371 2 -546.452934768061 -242.60708563952286 2.8654 0.1144 370 +372 2 -545.5914576525431 -243.35347333331148 2.9002 0.1144 371 +373 2 -544.7808356552275 -244.1607081055233 2.8482 0.1144 372 +374 2 -543.971839851901 -244.96801699324863 2.7029 0.1144 373 +375 2 -543.4240197986144 -245.8234610821387 2.3774 0.1144 374 +376 2 -542.7929216045898 -246.63595076176472 1.945 0.1144 375 +377 2 -541.9307524842321 -247.3751245017621 1.5587 0.1144 376 +378 2 -541.0950167578994 -248.1540223613888 1.2498 0.1144 377 +379 2 -540.1973347783021 -248.83330038510687 0.9707 0.1144 378 +380 2 -539.3431492851222 -249.57567282751097 0.758 0.1144 379 +381 2 -538.5349364790573 -250.38050847539984 0.6115 0.1144 380 +382 2 -537.7284242785811 -251.18365062376657 0.4916 0.1144 381 +383 2 -536.9194320282879 -251.9892624589364 0.4172 0.1144 382 +384 2 -536.2582286063559 -252.894673854284 0.4579 0.1144 383 +385 2 -535.6504009162401 -253.8390879579104 0.5001 0.1144 384 +386 2 -534.8793344715712 -254.66662884385232 0.6024 0.1144 385 +387 2 -534.0719719683007 -255.47061774198013 0.7618 0.1144 386 +388 2 -533.5459216714586 -256.36422054814864 1.071 0.1144 387 +389 2 -532.5651039685424 -256.93252063933846 1.3257 0.1144 388 +390 2 -531.7213954762321 -257.6692581502632 1.58 0.1144 389 +391 2 -531.3818216804084 -258.7597567780431 1.747 0.1144 390 +392 2 -530.8030793520501 -259.72685924281427 1.7757 0.1144 391 +393 2 -530.7472443290002 -260.8624997449984 1.725 0.1144 392 +394 2 -530.3357668677799 -261.91480540349676 1.6134 0.1144 393 +395 2 -529.8200952712189 -262.8497250655534 1.4733 0.1144 394 +396 2 -530.1285041229866 -263.9456815702338 1.3694 0.1144 395 +397 2 -530.5947143953783 -264.9861068976438 1.3158 0.1144 396 +398 2 -530.6046025700448 -266.0385169289538 1.3115 0.1144 397 +399 2 -530.1479789436294 -267.0050972483267 1.3449 0.1144 398 +400 2 -530.7966507242701 -267.79594179120505 1.4126 0.1144 399 +401 2 -531.8482571262765 -267.83215539719765 1.5455 0.1144 400 +402 2 -532.8201161529823 -267.28731254626666 1.7344 0.1144 401 +403 2 -533.5046790127708 -266.4037997048217 1.9478 0.1144 402 +404 2 -534.2628325235837 -265.5632917012654 2.1404 0.1144 403 +405 2 -535.0620904085717 -264.746345752451 2.2839 0.1144 404 +406 2 -535.5374035234695 -263.76933935901934 2.3055 0.1144 405 +407 2 -535.5879364674278 -262.8019795389033 2.8118 0.1144 406 +408 2 -558.0840694615437 -230.45778942319558 7.9824 0.1144 349 +409 2 -559.1445812958603 -230.83371651622596 8.0182 0.1144 408 +410 2 -560.2436890726549 -230.94526589986273 8.0929 0.1144 409 +411 2 -561.365257966962 -230.764755857697 8.2002 0.1144 410 +412 2 -561.9139182561153 -229.91327333461962 8.2981 0.1144 411 +413 2 -562.5734415024003 -228.9997973866003 8.3715 0.1144 412 +414 2 -563.3429223168771 -228.1528077018036 8.4173 0.1144 413 +415 2 -564.2833542982078 -227.55543161549744 8.4981 0.1144 414 +416 2 -565.261729258157 -226.97178215927855 8.5406 0.1144 415 +417 2 -566.3719980887221 -226.7847430620947 8.5333 0.1144 416 +418 2 -567.4955628380698 -226.79925767622322 8.4213 0.1144 417 +419 2 -568.6093179081258 -226.90595867867543 8.2164 0.1144 418 +420 2 -569.7179302499328 -226.699541345117 7.9832 0.1144 419 +421 2 -570.8195045130981 -226.40981191490354 7.7596 0.1144 420 +422 2 -571.9583981975334 -226.43164183825874 7.6014 0.1144 421 +423 2 -573.1030447497055 -226.44139225364384 7.5104 0.1144 422 +424 2 -574.0846454498833 -225.87061892261775 7.4805 0.1144 423 +425 2 -575.0421475356873 -225.25948996267473 7.5046 0.1144 424 +426 2 -576.1467037662264 -225.06529711116596 7.6172 0.1144 425 +427 2 -577.1685374075566 -224.59657303514066 7.713 0.1144 426 +428 2 -578.0146823310397 -223.84442566363438 7.7875 0.1144 427 +429 2 -579.0759291075974 -223.4640312246033 7.8458 0.1144 428 +430 2 -580.216605023402 -223.4114063720784 7.8879 0.1144 429 +431 2 -581.2729719255332 -223.09895482690374 7.8928 0.1144 430 +432 2 -582.154542470968 -222.3808228241202 7.8812 0.1144 431 +433 2 -583.1407780742444 -221.9266613607288 7.9392 0.1144 432 +434 2 -584.2333734708288 -222.075320297098 8.1159 0.1144 433 +435 2 -585.3080479619591 -222.27259076654005 8.3802 0.1144 434 +436 2 -586.433493243265 -222.16569881742103 8.6603 0.1144 435 +437 2 -587.0633214864908 -221.5207204425627 8.9015 0.1144 436 +438 2 -587.8156810110681 -221.1509930351693 9.107 0.1144 437 +439 2 -588.9486487113775 -221.30136284615534 9.2797 0.1144 438 +440 2 -589.938740271711 -220.93057752800448 9.4319 0.1144 439 +441 2 -590.7097729625634 -220.11915864133928 9.6473 0.1144 440 +442 2 -591.7330298283965 -220.11896752512794 9.8844 0.1144 441 +443 2 -592.7001588518472 -219.9082234575968 10.2877 0.1144 442 +444 2 -593.7132132451497 -219.37725546777992 10.6458 0.1144 443 +445 2 -594.2337139158681 -219.61451939631084 10.6848 0.1144 444 +446 2 -595.1820285915683 -220.25063958609528 10.7472 0.1144 445 +447 2 -596.3004127511156 -220.40918132089658 10.7717 0.1144 446 +448 2 -597.4028373170754 -220.11860514092214 10.8015 0.1144 447 +449 2 -598.3755874124729 -219.5196703682598 10.8356 0.1144 448 +450 2 -599.3998637967702 -219.06629565726357 10.9525 0.1144 449 +451 2 -600.3734674519093 -218.46495850333102 11.0428 0.1144 450 +452 2 -601.0851375786663 -218.1436535381005 11.1068 0.1144 451 +453 2 -602.2172807780589 -217.97858059643838 11.1449 0.1144 452 +454 2 -603.321277852436 -217.67994667377278 11.1572 0.1144 453 +455 2 -604.4131550571462 -217.36106407808253 11.1427 0.1144 454 +456 2 -605.5355439029638 -217.5657176604707 11.1003 0.1144 455 +457 2 -606.5626601333018 -217.27576163039706 11.0426 0.1144 456 +458 2 -607.3964817759602 -216.60052184466562 10.9682 0.1144 457 +459 2 -608.4979681015507 -216.3527944651996 10.8477 0.1144 458 +460 2 -609.5020401317543 -215.85659739934457 10.6693 0.1144 459 +461 2 -610.33598376189 -215.12309214254273 10.4514 0.1144 460 +462 2 -610.8775018582054 -214.17047817489217 10.1976 0.1144 461 +463 2 -611.1702184121168 -213.0684970003405 9.9965 0.1144 462 +464 2 -611.34737907292 -211.9396159081684 9.8703 0.1144 463 +465 2 -611.6084964614405 -210.83353805855185 9.8187 0.1144 464 +466 2 -612.0855613108381 -209.79664325700784 9.8348 0.1144 465 +467 2 -612.5043339474298 -208.73862529456946 9.9075 0.1144 466 +468 2 -613.0403454115375 -207.74802808058936 10.0278 0.1144 467 +469 2 -613.7516013187411 -206.88154172497386 10.2471 0.1144 468 +470 2 -614.1290702212193 -205.86140900436246 10.5594 0.1144 469 +471 2 -613.7962855244926 -204.82373790250765 10.8798 0.1144 470 +472 2 -613.5696971864563 -203.72392218382296 11.2276 0.1144 471 +473 2 -613.9940432626022 -202.73952586746466 11.6703 0.1144 472 +474 2 -614.688263115235 -201.87052896516278 12.1551 0.1144 473 +475 2 -615.7472831835719 -201.43914735352425 12.5717 0.1144 474 +476 2 -616.6157650090713 -201.56881083634468 12.3721 0.1144 475 +477 2 -617.7260234766227 -201.38672147578094 12.433 0.1144 476 +478 2 -618.7817976708754 -200.95208037009726 12.4571 0.1144 477 +479 2 -619.5487273748688 -200.14150142321265 12.4921 0.1144 478 +480 2 -620.2342047881377 -199.22645346496225 12.5411 0.1144 479 +481 2 -621.2614800167172 -198.8605543330323 12.6059 0.1144 480 +482 2 -620.8381729681632 -198.20036026865083 12.6865 0.1144 481 +483 2 -620.0762607344826 -197.35744759929068 12.8263 0.1144 482 +484 2 -619.3516196084363 -196.5114309750792 13.0602 0.1144 483 +485 2 -618.6506386356201 -195.61122867795385 13.2928 0.1144 484 +486 2 -617.7971231527525 -194.85149229570973 13.4937 0.1144 485 +487 2 -616.9210002342343 -194.11596239716923 13.6639 0.1144 486 +488 2 -616.0732038652873 -193.36026850623173 13.8521 0.1144 487 +489 2 -615.2578133458816 -192.59488436681974 14.0821 0.1144 488 +490 2 -614.7259817293955 -191.58904067036102 14.281 0.1144 489 +491 2 -614.3553186008224 -190.50681315032816 14.4299 0.1144 490 +492 2 -613.9304491672938 -189.44455401788784 14.537 0.1144 491 +493 2 -613.373570629137 -188.44601180859448 14.6065 0.1144 492 +494 2 -613.3314868260675 -187.30288308289502 14.6432 0.1144 493 +495 2 -613.504548053045 -186.17314487794803 14.6603 0.1144 494 +496 2 -613.8805157098727 -185.09325836028998 14.676 0.1144 495 +497 2 -614.1594488932781 -183.9887734490325 14.6971 0.1144 496 +498 2 -614.7665104630406 -183.0387715856041 14.7246 0.1144 497 +499 2 -614.7405854679114 -181.9118694715643 14.7724 0.1144 498 +500 2 -615.0274914172942 -180.84954490900876 14.8366 0.1144 499 +501 2 -615.106692688181 -179.7325502766627 14.9133 0.1144 500 +502 2 -614.5432712729448 -178.78568398786942 14.9988 0.1144 501 +503 2 -613.5469408268968 -178.28614731025945 15.09 0.1144 502 +504 2 -612.5908951321553 -178.6069406386911 15.7461 0.1144 503 +505 2 -616.0765706530658 -201.0062379375557 12.9957 0.1144 475 +506 2 -616.7425750824048 -200.13810120287567 13.4855 0.1144 505 +507 2 -617.4270363846574 -199.30309578030725 14.0219 0.1144 506 +508 2 -618.1609332792282 -198.4301514303402 14.4617 0.1144 507 +509 2 -618.8308045268243 -197.60642919460545 14.9403 0.1144 508 +510 2 -619.3312656227422 -196.607625804807 15.3584 0.1144 509 +511 2 -620.0408786611486 -195.71525584468756 15.6121 0.1144 510 +512 2 -620.9886736215697 -195.07978203484154 15.7213 0.1144 511 +513 2 -621.7079905284118 -194.2133125561343 15.6841 0.1144 512 +514 2 -622.0499528834443 -193.1640433448541 15.4795 0.1144 513 +515 2 -622.4153825456634 -192.11892449421052 15.1676 0.1144 514 +516 2 -622.9562363752476 -191.11207392683517 14.9005 0.1144 515 +517 2 -623.4946910805088 -190.102814168209 14.6922 0.1144 516 +518 2 -624.0589144148771 -189.11305383916252 14.5167 0.1144 517 +519 2 -624.7831238197341 -188.24015991781997 14.3571 0.1144 518 +520 2 -625.5816731190603 -187.4239195938064 14.2596 0.1144 519 +521 2 -626.1927872470573 -186.4633903008838 14.2092 0.1144 520 +522 2 -626.5251435360565 -185.37528073049916 14.187 0.1144 521 +523 2 -626.7021622776272 -184.2804112519161 14.1907 0.1144 522 +524 2 -627.3076009103477 -183.32877964146516 14.2241 0.1144 523 +525 2 -627.5921891590879 -182.22515509992988 14.3049 0.1144 524 +526 2 -627.8606554085512 -181.12149680457802 14.4162 0.1144 525 +527 2 -628.0773953088901 -180.0016081424329 14.5067 0.1144 526 +528 2 -628.1089227888867 -178.85785571379935 14.5808 0.1144 527 +529 2 -627.9899140249478 -177.74447661658868 14.6398 0.1144 528 +530 2 -627.6862724267702 -176.70191677185258 14.6451 0.1144 529 +531 2 -628.0896750662907 -175.68997009320398 14.6769 0.1144 530 +532 2 -628.7951808645182 -174.86801952372454 14.7698 0.1144 531 +533 2 -628.4093355981382 -174.8566757848237 14.9276 0.1144 532 +534 2 -627.565978950113 -175.45913416034162 15.7461 0.1144 533 +535 2 -600.6547158493233 -218.9565633639173 11.6753 0.1144 451 +536 2 -600.9914212519793 -220.01291033429314 12.0056 0.1144 535 +537 2 -601.2982003567245 -221.11048977601556 12.1327 0.1144 536 +538 2 -601.7952036085435 -222.13478679235473 12.2308 0.1144 537 +539 2 -602.1747205048581 -223.20989105493206 12.3019 0.1144 538 +540 2 -602.4733544275236 -224.31388812930922 12.3484 0.1144 539 +541 2 -602.6092208142234 -225.44745510790605 12.3727 0.1144 540 +542 2 -602.5875255019339 -226.58960177249193 12.3776 0.1144 541 +543 2 -602.2915663308856 -227.68676782148927 12.3796 0.1144 542 +544 2 -602.5465016484349 -228.75666149558307 12.382 0.1144 543 +545 2 -603.0564483309794 -229.77935926176914 12.3875 0.1144 544 +546 2 -603.3550923205728 -230.87854802057254 12.395 0.1144 545 +547 2 -603.7751534385277 -231.9407970860851 12.4009 0.1144 546 +548 2 -604.2040585533825 -233.00058978866966 12.4053 0.1144 547 +549 2 -604.7196671112424 -234.0208952405131 12.4082 0.1144 548 +550 2 -604.9204532684553 -235.08346304026603 12.5236 0.1144 549 +551 2 -604.60357158891 -236.1093087651041 12.5081 0.1144 550 +552 2 -604.1678370132611 -237.1631899868668 12.3721 0.1144 551 +553 2 -593.8774208499713 -218.6260845268359 10.967 0.1144 444 +554 2 -594.0567913420873 -217.55625160690957 11.3555 0.1144 553 +555 2 -594.207160950973 -216.4571543952292 11.7531 0.1144 554 +556 2 -594.1601069813419 -215.32377335870976 12.1014 0.1144 555 +557 2 -593.9140965861864 -214.24654444363384 12.4947 0.1144 556 +558 2 -593.4527145611237 -213.23038304063286 12.9347 0.1144 557 +559 2 -592.7904630232349 -212.30600801362053 13.3384 0.1144 558 +560 2 -591.8713866353105 -211.99104693164398 13.8449 0.1144 559 +561 2 -590.814171601889 -211.59405491269726 14.3467 0.1144 560 +562 2 -590.2271926573578 -212.20595961824964 14.9513 0.1144 561 +563 2 -589.3640139963933 -212.61675013573446 15.6549 0.1144 562 +564 2 -588.543725437492 -213.3802653747019 16.2726 0.1144 563 +565 2 -588.1177491161372 -214.4002965377774 16.7785 0.1144 564 +566 2 -588.2522186674687 -215.49178764619953 17.1947 0.1144 565 +567 2 -588.3610049706072 -216.45545050749976 17.6404 0.1144 566 +568 2 -588.0926775855296 -217.49278233214292 18.0386 0.1144 567 +569 2 -587.8881149955632 -218.6054839843329 18.357 0.1144 568 +570 2 -587.3562538920921 -219.57261389112657 18.6144 0.1144 569 +571 2 -586.8162102996916 -220.56398048240706 18.7825 0.1144 570 +572 2 -586.6084623311934 -221.67830181469176 18.8675 0.1144 571 +573 2 -586.60688433781 -222.80351999795087 18.8271 0.1144 572 +574 2 -586.1122302933877 -223.76436382830863 18.7434 0.1144 573 +575 2 -585.9675296658838 -224.85767462053568 18.6643 0.1144 574 +576 2 -585.9700137994764 -226.0015689684018 18.5977 0.1144 575 +577 2 -585.9724982291548 -227.14532189522177 18.5493 0.1144 576 +578 2 -585.9740614974726 -228.28999213428287 18.518 0.1144 577 +579 2 -585.9766164896312 -229.433815919669 18.5023 0.1144 578 +580 2 -585.9790300607435 -230.57763940896902 18.4908 0.1144 579 +581 2 -585.9815141943358 -231.72153375683527 18.4792 0.1144 580 +582 2 -585.9831483212199 -232.86613343341625 18.4676 0.1144 581 +583 2 -585.9855618923322 -234.00995692271627 18.456 0.1144 582 +584 2 -585.9880460259245 -235.15385127058252 18.4445 0.1144 583 +585 2 -585.990530455603 -236.29760419740242 18.4329 0.1144 584 +586 2 -585.9921642864009 -237.4423452950297 18.4213 0.1144 585 +587 2 -585.9946487160794 -238.58609822184965 18.4097 0.1144 586 +588 2 -585.9970622871917 -239.72992171114973 18.3981 0.1144 587 +589 2 -585.9995464207841 -240.87381605901587 18.3866 0.1144 588 +590 2 -586.0004043603872 -242.0176362913687 18.375 0.1144 589 +591 2 -586.0028179314994 -243.1614597806687 18.3634 0.1144 590 +592 2 -586.0053020650918 -244.30535412853496 18.3518 0.1144 591 +593 2 -586.0077864947702 -245.44910705535492 18.3403 0.1144 592 +594 2 -586.0093497630882 -246.59377729441596 18.3287 0.1144 593 +595 2 -586.0119047552466 -247.7376010798021 18.3171 0.1144 594 +596 2 -586.014318326359 -248.88142456910217 18.3055 0.1144 595 +597 2 -586.0168024599514 -250.02531891696836 18.2939 0.1144 596 +598 2 -586.0184365868354 -251.16991859354934 18.2823 0.1144 597 +599 2 -586.0208501579476 -252.31374208284942 18.2708 0.1144 598 +600 2 -586.0233342915399 -253.45763643071567 18.2592 0.1144 599 +601 2 -586.0258187212185 -254.60138935753557 18.2476 0.1144 600 +602 2 -586.0275234105827 -255.74605989268278 18.236 0.1144 601 +603 2 -586.0299369816948 -256.8898833819828 18.2244 0.1144 602 +604 2 -586.0323505528072 -258.0337068712828 18.2129 0.1144 603 +605 2 -586.0339879366385 -259.17675091635465 18.2013 0.1144 604 +606 2 -586.0356926260026 -260.3214214515018 18.1897 0.1144 605 +607 2 -586.0381061971149 -261.4652449408019 18.1781 0.1144 606 +608 2 -586.0406611892734 -262.60906872618807 18.1665 0.1144 607 +609 2 -586.0430747603857 -263.75289221548803 18.1549 0.1144 608 +610 2 -586.0447088872697 -264.89749189206907 18.1432 0.1144 609 +611 2 -586.0471930208621 -266.04138623993526 18.1316 0.1144 610 +612 2 -586.0496065919745 -267.1852097292352 18.1199 0.1144 611 +613 2 -586.0520907255667 -268.32910407710153 18.1082 0.1144 612 +614 2 -586.0537248524508 -269.4737037536825 18.0965 0.1144 613 +615 2 -586.0561384235631 -270.61752724298253 18.0847 0.1144 614 +616 2 -586.0586934157217 -271.76135102836867 18.0728 0.1144 615 +617 2 -586.0611069868339 -272.9051745176687 18.0608 0.1144 616 +618 2 -586.0628116761981 -274.04984505281584 18.0485 0.1144 617 +619 2 -586.0652252473103 -275.1936685421159 18.0361 0.1144 618 +620 2 -586.0676388184227 -276.33749203141593 18.0233 0.1144 619 +621 2 -586.0693435077868 -277.48216256656315 18.01 0.1144 620 +622 2 -586.0709808916181 -278.625206611635 17.9959 0.1144 621 +623 2 -586.0200182327277 -279.7640393023314 17.9808 0.1144 622 +624 2 -585.8988048441657 -280.88575431267645 17.9651 0.1144 623 +625 2 -586.1610075989777 -281.99695832876387 17.9473 0.1144 624 +626 2 -586.5284177474 -283.0793204598625 17.9257 0.1144 625 +627 2 -586.7485342690234 -284.19687104793826 17.8954 0.1144 626 +628 2 -586.8245659331824 -285.3368181502396 17.8533 0.1144 627 +629 2 -587.027770648287 -286.4600609083998 17.7979 0.1144 628 +630 2 -587.3425366371571 -287.55928342101976 17.7294 0.1144 629 +631 2 -587.5780531545345 -288.6502082672133 17.6364 0.1144 630 +632 2 -587.7719504605054 -289.55818776298247 17.4 0.1144 631 +633 2 -588.0446234062065 -290.66700953165525 17.1957 0.1144 632 +634 2 -588.153826744174 -291.8029955663303 17.0347 0.1144 633 +635 2 -588.4945673299698 -292.8908880165254 16.9117 0.1144 634 +636 2 -588.6136028356445 -294.0252682871529 16.8187 0.1144 635 +637 2 -588.7066032488414 -295.16609944606523 16.7537 0.1144 636 +638 2 -588.7309388586448 -296.30912030243456 16.712 0.1144 637 +639 2 -589.0538467726473 -297.4034808139091 16.6655 0.1144 638 +640 2 -589.629327561998 -298.365716601587 16.5413 0.1144 639 +641 2 -590.234065631022 -299.3360746787282 16.3086 0.1144 640 +642 2 -590.6722856254663 -210.93770274374023 14.2359 0.1144 561 +643 2 -590.4311546065512 -209.82654284448316 14.5908 0.1144 642 +644 2 -590.189176837875 -208.7145326424317 14.7444 0.1144 643 +645 2 -589.9480458189599 -207.60337274317473 14.9149 0.1144 644 +646 2 -589.707694244273 -206.49143665663664 15.0889 0.1144 645 +647 2 -589.466563225358 -205.38027675737956 15.2546 0.1144 646 +648 2 -589.8239323861251 -204.30112912015258 15.3611 0.1144 647 +649 2 -590.3065308115665 -203.28934824972592 15.3338 0.1144 648 +650 2 -590.9540219236591 -202.34749206656355 15.1838 0.1144 649 +651 2 -525.0011190789951 -237.06214303546025 5.8818 0.1144 113 +652 2 -526.12094630573 -236.9367130858332 5.7767 0.1144 651 +653 2 -527.0154529737232 -236.25424642663626 5.6977 0.1144 652 +654 2 -527.7969827993008 -235.42757597734425 5.6119 0.1144 653 +655 2 -528.2659024666191 -234.39709880845487 5.5315 0.1144 654 +656 2 -528.5812395779559 -233.29841769174558 5.5064 0.1144 655 +657 2 -529.5893974220239 -232.8095831067947 5.5394 0.1144 656 +658 2 -530.1101521911398 -232.52019328243472 5.6998 0.1144 657 +659 2 -530.9795514419102 -231.84014893626318 5.944 0.1144 658 +660 2 -531.7352589528089 -230.98584719918694 6.1873 0.1144 659 +661 2 -531.9418005209076 -230.07623120292953 6.4525 0.1144 660 +662 2 -531.0436671279368 -229.41751789774213 6.6887 0.1144 661 +663 2 -530.272009963837 -228.60209133998634 6.8815 0.1144 662 +664 2 -529.4331450311782 -227.8359509450486 7.0414 0.1144 663 +665 2 -528.7563133034607 -226.95192127792498 7.2504 0.1144 664 +666 2 -528.17839302809 -225.9727804937087 7.4644 0.1144 665 +667 2 -528.2266561433698 -224.90748141753178 7.7241 0.1144 666 +668 2 -529.0423169377947 -225.20603320271863 7.9695 0.1144 667 +669 2 -529.8792635899738 -225.74009662723492 8.3431 0.1144 668 +670 2 -530.7244909051296 -224.98716951541442 8.6321 0.1144 669 +671 2 -531.2273448135763 -223.96001609125614 8.8441 0.1144 670 +672 2 -531.8159293765697 -222.9864995468636 8.9982 0.1144 671 +673 2 -532.6587948742524 -222.2133441919601 9.11 0.1144 672 +674 2 -533.5275502882332 -221.46930519386993 9.2011 0.1144 673 +675 2 -534.334126537295 -220.66934516708767 9.2808 0.1144 674 +676 2 -535.0023037871827 -219.8779342354394 9.3801 0.1144 675 +677 2 -536.0254112800307 -219.57757532000937 9.5122 0.1144 676 +678 2 -536.6021440768725 -218.82726806224957 9.8374 0.1144 677 +679 2 -537.3739489037861 -218.05233758204326 10.1496 0.1144 678 +680 2 -538.2321232027009 -217.29611416751408 10.3952 0.1144 679 +681 2 -539.2419886644385 -216.7684629103476 10.5811 0.1144 680 +682 2 -540.0945683935709 -216.01625830023622 10.7159 0.1144 681 +683 2 -540.4639969284526 -214.95248016189387 10.8067 0.1144 682 +684 2 -540.9232628598736 -213.90593142235238 10.862 0.1144 683 +685 2 -541.70649329104 -213.0775674735382 10.9157 0.1144 684 +686 2 -542.4281888922633 -212.22326523827556 11.05 0.1144 685 +687 2 -543.0998423712291 -211.3250882266607 11.2342 0.1144 686 +688 2 -543.6464117617004 -210.3239772031475 11.3638 0.1144 687 +689 2 -544.652974406835 -209.78649022524044 11.4409 0.1144 688 +690 2 -545.3642676208885 -208.90218481779263 11.4265 0.1144 689 +691 2 -546.0697298004718 -208.06729407453489 11.2814 0.1144 690 +692 2 -546.7196941524007 -207.12622088863398 11.1645 0.1144 691 +693 2 -547.3485900253802 -206.18354795439345 11.0941 0.1144 692 +694 2 -547.5539388695554 -205.06681743085798 11.0896 0.1144 693 +695 2 -548.2538773379223 -204.2358749295379 11.1686 0.1144 694 +696 2 -549.3583829377365 -204.06586507694428 11.369 0.1144 695 +697 2 -550.2802300429678 -203.4627225029399 11.5931 0.1144 696 +698 2 -550.6577427661905 -202.42165946747795 11.8628 0.1144 697 +699 2 -550.8928001768708 -201.43524049782857 12.2985 0.1144 698 +700 2 -551.342165934765 -200.45655343056333 12.7485 0.1144 699 +701 2 -551.9621878121616 -199.49689131734343 13.0938 0.1144 700 +702 2 -552.529670640575 -198.50388511421286 13.3465 0.1144 701 +703 2 -553.136843632701 -197.53443800496305 13.5245 0.1144 702 +704 2 -553.5895568222152 -196.5105030128664 13.6458 0.1144 703 +705 2 -553.800638400272 -195.39130961250837 13.7438 0.1144 704 +706 2 -553.9436860920507 -194.27692353135123 13.8608 0.1144 705 +707 2 -553.8951337295155 -193.14997404353366 13.9653 0.1144 706 +708 2 -553.7461724241161 -192.02281433457765 13.9737 0.1144 707 +709 2 -553.4904581605251 -190.9196849380896 13.9135 0.1144 708 +710 2 -553.0622004354932 -189.9221898348683 13.7483 0.1144 709 +711 2 -552.3300715841178 -189.14008012710102 13.5255 0.1144 710 +712 2 -551.7106955884733 -188.23764451387459 13.3584 0.1144 711 +713 2 -551.3311887590867 -187.1577319357235 13.2617 0.1144 712 +714 2 -551.0568155038828 -186.05046224552652 13.241 0.1144 713 +715 2 -551.0333097669322 -184.91635269158982 13.285 0.1144 714 +716 2 -550.6098802892292 -183.9431215127777 13.3825 0.1144 715 +717 2 -550.2180101134068 -182.92547929406774 13.5911 0.1144 716 +718 2 -550.5913044701731 -181.97413947402103 13.9475 0.1144 717 +719 2 -551.0465282063735 -180.9331684273537 14.2505 0.1144 718 +720 2 -551.3554340650946 -179.83284749669403 14.4897 0.1144 719 +721 2 -551.6101370779074 -178.7170688334888 14.6723 0.1144 720 +722 2 -551.7201413951493 -177.5791375744981 14.8063 0.1144 721 +723 2 -551.7216858368164 -176.4361709018868 14.9038 0.1144 722 +724 2 -551.7798695555646 -175.2932521012398 15.0073 0.1144 723 +725 2 -552.0742158564987 -174.1896479896461 15.1401 0.1144 724 +726 2 -551.9439339726537 -173.05687052220517 15.2968 0.1144 725 +727 2 -551.2615078772538 -172.14298917087044 15.4772 0.1144 726 +728 2 -550.7100712224325 -171.24713048462618 15.8234 0.1144 727 +729 2 -550.1586310145776 -170.35296885093734 16.9422 0.1144 728 +730 2 -529.6444440193612 -232.38826178983865 5.0613 0.1144 657 +731 2 -529.7996930044873 -231.255233593977 4.9058 0.1144 730 +732 2 -530.5661650533397 -230.69702065223527 4.8041 0.1144 731 +733 2 -531.6781756970627 -230.82634546906021 4.7 0.1144 732 +734 2 -532.082212106445 -229.88320175790406 4.6193 0.1144 733 +735 2 -532.1549553829803 -228.74356613819097 4.5607 0.1144 734 +736 2 -532.9485682695614 -227.92095150408056 4.5224 0.1144 735 +737 2 -533.5557412616873 -226.95150439483078 4.499 0.1144 736 +738 2 -495.86642904065485 -258.03019341263735 13.4958 0.1144 77 +739 2 -495.35879781169024 -259.00875849242505 13.3274 0.1144 738 +740 2 -495.0257195191682 -260.07020856711085 13.2716 0.1144 739 +741 2 -495.1486966589005 -261.1794947443903 13.2919 0.1144 740 +742 2 -495.1060820950611 -262.2487654533078 13.3352 0.1144 741 +743 2 -494.61131968312225 -263.2613693866067 13.375 0.1144 742 +744 2 -493.7902753668816 -264.01434712915216 13.4635 0.1144 743 +745 2 -493.0178190989252 -264.7626889722258 13.6886 0.1144 744 +746 2 -492.8223407256801 -265.7919708605312 13.9816 0.1144 745 +747 2 -492.4181823288202 -266.7933800427577 14.2719 0.1144 746 +748 2 -491.6721451346409 -267.65583377189404 14.5221 0.1144 747 +749 2 -490.91480461977255 -268.5133140775215 14.7178 0.1144 748 +750 2 -489.80988929329624 -268.4737361630006 15.1838 0.1144 749 +751 2 -497.4411073442068 -256.23121252326615 14.3983 0.1144 75 +752 2 -497.27782785631183 -257.3496574744519 14.5228 0.1144 751 +753 2 -497.36757913847737 -258.48878477082815 14.5665 0.1144 752 +754 2 -496.69770108090063 -259.3157596906276 14.6029 0.1144 753 +755 2 -495.99613216522425 -260.2162075272937 14.6332 0.1144 754 +756 2 -495.13960498842687 -260.92873509546735 14.6593 0.1144 755 +757 2 -494.0942435443578 -261.38842963671607 14.6829 0.1144 756 +758 2 -492.9823651946113 -261.60120410737693 14.7077 0.1144 757 +759 2 -491.8492586299162 -261.51716076709965 14.7435 0.1144 758 +760 2 -490.715901778472 -261.5188891433527 14.793 0.1144 759 +761 2 -489.6570609362178 -261.89844008956993 14.8573 0.1144 760 +762 2 -488.5684301037781 -262.1865702696302 14.9363 0.1144 761 +763 2 -487.4921122456642 -261.9974281053593 15.0964 0.1144 762 +764 2 -486.3873354874876 -261.89166514117596 15.3237 0.1144 763 +765 2 -485.2850596507411 -262.14497702349666 15.5337 0.1144 764 +766 2 -484.2059265168183 -262.5237076656025 15.7104 0.1144 765 +767 2 -483.40265713557926 -263.2977944508947 15.8615 0.1144 766 +768 2 -482.7632169561974 -264.2444758265391 15.9965 0.1144 767 +769 2 -482.02854061739856 -265.1181963637872 16.1229 0.1144 768 +770 2 -481.0775302797627 -265.7358443118205 16.2658 0.1144 769 +771 2 -480.7535021540592 -266.73013804294476 16.5201 0.1144 770 +772 2 -479.92130620720377 -267.4394638538648 16.821 0.1144 771 +773 2 -479.5365088737241 -268.4474189680177 17.2139 0.1144 772 +774 2 -478.9867677246821 -269.4436443034965 17.5749 0.1144 773 +775 2 -478.31835330981994 -270.3483334932211 17.8585 0.1144 774 +776 2 -477.2901670807936 -270.74407068940104 18.0812 0.1144 775 +777 2 -476.1512224695473 -270.7465651860073 18.2745 0.1144 776 +778 2 -475.0353527574055 -270.9068638619984 18.4414 0.1144 777 +779 2 -473.9732219242368 -271.3042270500673 18.5866 0.1144 778 +780 2 -472.956152777736 -271.79389150787097 18.7405 0.1144 779 +781 2 -472.07783867149953 -272.4764627794507 18.8185 0.1144 780 +782 2 -471.4327771805994 -273.4061617860963 18.8353 0.1144 781 +783 2 -471.16438880178305 -274.4726263462745 18.8497 0.1144 782 +784 2 -470.9986701239544 -275.57402487987565 18.9179 0.1144 783 +785 2 -470.2794920814981 -276.37416788787414 19.0161 0.1144 784 +786 2 -469.2552018751395 -276.86791845562857 19.1102 0.1144 785 +787 2 -468.210680370851 -277.3317159837362 19.2119 0.1144 786 +788 2 -467.1637632952727 -277.7914072680377 19.3188 0.1144 787 +789 2 -466.0495710000173 -277.92731421853455 19.427 0.1144 788 +790 2 -464.9706609129214 -278.2332838803685 19.5385 0.1144 789 +791 2 -464.1707830801329 -278.94105100493243 19.7676 0.1144 790 +792 2 -463.2287177987464 -279.54174708083616 20.0277 0.1144 791 +793 2 -462.289874704555 -280.15701633448805 20.326 0.1144 792 +794 2 -461.34934086960243 -280.8030412607171 20.5772 0.1144 793 +795 2 -460.3298116050398 -281.3194292628052 20.7771 0.1144 794 +796 2 -459.24105552817537 -281.66738054544487 20.9352 0.1144 795 +797 2 -458.1029208580268 -281.6545324870026 21.0604 0.1144 796 +798 2 -457.11732563249234 -282.20811472245066 21.1784 0.1144 797 +799 2 -455.9914028208052 -282.13780432405497 21.3055 0.1144 798 +800 2 -455.22064066358723 -282.0432058726898 21.6139 0.1144 799 +801 2 -454.09907488064187 -281.85071627679895 21.9096 0.1144 800 +802 2 -452.9661308672215 -281.68903278210996 22.1884 0.1144 801 +803 2 -451.8315301629424 -281.54184153967515 22.4558 0.1144 802 +804 2 -451.42139047528406 -281.5498924158709 22.8594 0.1144 803 +805 2 -450.369777263297 -281.5169314939428 23.3118 0.1144 804 +806 2 -449.3126196705809 -281.0925037920164 23.7044 0.1144 805 +807 2 -448.2015445084663 -280.887873896517 24.097 0.1144 806 +808 2 -447.11404452286826 -280.66964616838834 24.5075 0.1144 807 +809 2 -446.2236875907837 -280.1468553655915 24.9705 0.1144 808 +810 2 -445.43496426040053 -280.1201017095943 25.5004 0.1144 809 +811 2 -444.7341061584049 -279.9042391124008 26.046 0.1144 810 +812 2 -443.72766156255796 -279.60854059111557 26.5448 0.1144 811 +813 2 -442.67611215958533 -279.17358871664203 26.9341 0.1144 812 +814 2 -441.57743459590927 -278.8565545527497 27.2235 0.1144 813 +815 2 -440.68577320240786 -278.9905939474776 27.672 0.1144 814 +816 2 -441.20793875549464 -279.91870620101673 27.9166 0.1144 815 +817 2 -441.7130130738797 -280.9382117786904 28.0697 0.1144 816 +818 2 -442.03266830381756 -282.0325654801843 28.175 0.1144 817 +819 2 -442.0715904152442 -283.1660002022756 28.2461 0.1144 818 +820 2 -441.834656025639 -284.272128682617 28.3212 0.1144 819 +821 2 -441.6390619767104 -285.3904352676033 28.3926 0.1144 820 +822 2 -441.3632367993761 -286.4964823242643 28.4626 0.1144 821 +823 2 -440.9662142835601 -287.56826372545356 28.5048 0.1144 822 +824 2 -440.35517752802366 -288.5256111928777 28.5166 0.1144 823 +825 2 -439.52432778581147 -289.30119587288755 28.4987 0.1144 824 +826 2 -438.6911290518147 -290.0842002724066 28.4528 0.1144 825 +827 2 -437.7700576356779 -290.7221342003143 28.327 0.1144 826 +828 2 -436.94981269542063 -291.4985896130602 28.1809 0.1144 827 +829 2 -435.98029535233246 -292.0732773382216 28.0417 0.1144 828 +830 2 -434.90440809249367 -292.4552674743726 27.9069 0.1144 829 +831 2 -433.7868133875875 -292.6964557318928 27.7735 0.1144 830 +832 2 -432.6766801644609 -292.81872398987696 27.5649 0.1144 831 +833 2 -431.6138109490475 -293.1634767722104 27.3052 0.1144 832 +834 2 -430.6104304254974 -293.7008997015318 27.0614 0.1144 833 +835 2 -429.56431648103626 -294.1485011148493 26.8229 0.1144 834 +836 2 -428.51095828801476 -294.5774904121454 26.5975 0.1144 835 +837 2 -427.4576709535595 -295.00640914696135 26.3959 0.1144 836 +838 2 -426.36653588622755 -295.3423346072028 26.2472 0.1144 837 +839 2 -425.2722567984335 -295.6263517334762 26.2126 0.1144 838 +840 2 -424.21255508827073 -296.0455696547035 26.2204 0.1144 839 +841 2 -423.1986572021542 -296.57413171021676 26.2338 0.1144 840 +842 2 -422.2081454956299 -297.1455934930494 26.238 0.1144 841 +843 2 -421.2167834863111 -297.71790202564307 26.2183 0.1144 842 +844 2 -420.37223455603396 -298.484548459384 26.1628 0.1144 843 +845 2 -419.80638828462355 -299.4726790414079 26.0665 0.1144 844 +846 2 -419.22513215263166 -300.45837319225893 25.9386 0.1144 845 +847 2 -419.3678353783188 -301.06211821242755 25.7345 0.1144 846 +848 2 -419.58564032803747 -301.35864047782786 25.3589 0.1144 847 +849 2 -418.74706425747746 -302.0081315662072 24.9918 0.1144 848 +850 2 -417.7605746123182 -302.5836322873132 24.6627 0.1144 849 +851 2 -416.74350191278404 -303.0749937976722 24.3246 0.1144 850 +852 2 -415.71763969619434 -303.54279019844256 23.9764 0.1144 851 +853 2 -414.7859362381805 -304.19286412987276 23.6802 0.1144 852 +854 2 -414.28794838209916 -305.1924505169327 23.4434 0.1144 853 +855 2 -413.5436422903781 -306.03864437877934 23.2333 0.1144 854 +856 2 -412.84370006687743 -306.90515442128367 22.9592 0.1144 855 +857 2 -412.7704109580551 -307.93398502275704 22.5734 0.1144 856 +858 2 -412.5553040616861 -309.050695116351 22.2523 0.1144 857 +859 2 -412.12267393907496 -310.1078355360727 21.9911 0.1144 858 +860 2 -411.44531802099675 -311.02777954537135 21.7799 0.1144 859 +861 2 -410.7551033528206 -311.908876385585 21.5297 0.1144 860 +862 2 -409.8952355543837 -312.66339919452537 21.3355 0.1144 861 +863 2 -408.81132785870363 -313.02599777042667 21.1722 0.1144 862 +864 2 -408.01570919573976 -314.02984007036406 22.2193 0.1144 863 +865 2 -407.75314248475263 -314.9838158836221 22.6249 0.1144 864 +866 2 -408.24562571488366 -315.83662966636706 23.1499 0.1144 865 +867 2 -409.1793636598025 -316.4776690959021 23.6685 0.1144 866 +868 2 -409.90088040105593 -317.29617266467324 24.2157 0.1144 867 +869 2 -410.54771201143535 -318.22291957608644 24.7353 0.1144 868 +870 2 -411.1864417622932 -319.16916571497904 25.1958 0.1144 869 +871 2 -411.8293054950658 -320.06599363664833 25.6723 0.1144 870 +872 2 -412.6505481791701 -320.7043226613725 26.2221 0.1144 871 +873 2 -413.5312138664072 -321.26273143397833 26.8305 0.1144 872 +874 2 -413.51457154493323 -322.2204748250472 27.34 0.1144 873 +875 2 -413.14588189048254 -323.3028514594499 27.7125 0.1144 874 +876 2 -413.1629732517258 -324.42726019979784 27.9659 0.1144 875 +877 2 -413.4437813125786 -325.5344726513897 28.1173 0.1144 876 +878 2 -413.61204318580576 -326.66329911813204 28.1966 0.1144 877 +879 2 -413.61537762219257 -327.8063467162373 28.2425 0.1144 878 +880 2 -413.59191114183426 -328.950116021779 28.2937 0.1144 879 +881 2 -413.503751194737 -330.09056789438387 28.3643 0.1144 880 +882 2 -413.3364158916603 -331.22109590657294 28.4592 0.1144 881 +883 2 -413.1690064730703 -332.3532501127513 28.583 0.1144 882 +884 2 -413.61345024596466 -333.35396109137366 28.7966 0.1144 883 +885 2 -414.17277853916926 -334.33072949300265 29.0895 0.1144 884 +886 2 -414.73132738814576 -335.3082740819126 29.4358 0.1144 885 +887 2 -415.28910004984124 -336.28503922659434 29.8094 0.1144 886 +888 2 -415.84842834304584 -337.2618076282233 30.1854 0.1144 887 +889 2 -416.4069771920223 -338.2393522171333 30.5416 0.1144 888 +890 2 -416.8375324838414 -339.28776393048184 30.8353 0.1144 889 +891 2 -416.9241893798969 -340.4188237133253 31.0083 0.1144 890 +892 2 -416.9646502459243 -341.56032269200216 31.0789 0.1144 891 +893 2 -417.0059578617128 -342.70267197347346 31.0755 0.1144 892 +894 2 -417.54588778468724 -343.69071349500825 31.0383 0.1144 893 +895 2 -418.2819196947704 -342.9463259095803 30.9943 0.1144 894 +896 2 -418.9682438578004 -342.0321282541243 30.9588 0.1144 895 +897 2 -419.6552769025785 -341.1170835528212 30.9299 0.1144 896 +898 2 -407.6643396229139 -312.9864024808111 20.826 0.1144 863 +899 2 -406.6692092089562 -312.65671573673944 20.5147 0.1144 898 +900 2 -405.6265504763744 -312.26456253023593 20.1846 0.1144 899 +901 2 -404.5813202033676 -311.9185781138383 19.7838 0.1144 900 +902 2 -403.49070639809077 -311.6340171050203 19.3827 0.1144 901 +903 2 -402.6053780696462 -311.0060191107133 18.9611 0.1144 902 +904 2 -401.7412940953009 -310.29561676325125 18.5732 0.1144 903 +905 2 -400.63063872677606 -310.2957663192927 18.2682 0.1144 904 +906 2 -399.4922571208113 -310.40086341345403 18.0926 0.1144 905 +907 2 -398.4252837391098 -310.003992385612 18.0347 0.1144 906 +908 2 -397.9507824081718 -309.0734343342589 18.2315 0.1144 907 +909 2 -397.94806149476153 -308.8194353251463 18.4528 0.1144 908 +910 2 -397.90435120161675 -307.67637390497964 18.6822 0.1144 909 +911 2 -397.2663970833386 -307.1702336151667 18.9105 0.1144 910 +912 2 -396.1416637386277 -307.3085933755583 19.1641 0.1144 911 +913 2 -395.5432789950577 -306.78238334271725 19.4932 0.1144 912 +914 2 -395.7123007855755 -305.6906791088104 19.8255 0.1144 913 +915 2 -394.9297739164378 -305.0346827223284 20.2307 0.1144 914 +916 2 -394.31676116758945 -304.20014283128097 20.7071 0.1144 915 +917 2 -393.72392291973745 -303.76042375973213 21.0171 0.1144 916 +918 2 -392.74635026407714 -303.18406367878856 21.1439 0.1144 917 +919 2 -391.677612322187 -302.8194330964667 21.126 0.1144 918 +920 2 -390.58870287763256 -302.49761104694227 21.0245 0.1144 919 +921 2 -389.95206678421755 -301.7334496866516 20.8242 0.1144 920 +922 2 -389.3284388704004 -300.9029887994882 20.4774 0.1144 921 +923 2 -388.483962491051 -300.14892820860666 20.1242 0.1144 922 +924 2 -387.43882746378586 -299.72367714772184 19.7905 0.1144 923 +925 2 -386.32528487544255 -299.5830353902467 19.4024 0.1144 924 +926 2 -385.3690356804726 -299.2242264757541 18.8649 0.1144 925 +927 2 -385.76680338851395 -298.2018027962359 18.395 0.1144 926 +928 2 -385.94373501933785 -298.29685503457864 17.7491 0.1144 927 +929 2 -386.72295789244333 -298.2005519503642 16.4034 0.1144 928 +930 2 -387.66248213027416 -297.63145829679877 16.1845 0.1144 929 +931 2 -388.72847247353326 -297.3157742014149 16.1106 0.1144 930 +932 2 -389.86074866718917 -297.4249181489346 16.0933 0.1144 931 +933 2 -390.9817111771421 -297.53403840956537 16.1537 0.1144 932 +934 2 -392.0544749920458 -297.4618258938 16.2145 0.1144 933 +935 2 -392.95549383814887 -296.77612017049944 16.2997 0.1144 934 +936 2 -393.8692804419282 -296.13894880991154 16.4153 0.1144 935 +937 2 -394.89766652907923 -295.6477524074876 16.4538 0.1144 936 +938 2 -395.8856848619116 -295.085124258541 16.4073 0.1144 937 +939 2 -396.60342876214975 -294.26072443220005 16.3271 0.1144 938 +940 2 -397.3161997370654 -293.4136160168731 16.2529 0.1144 939 +941 2 -397.83819066569254 -292.5337933242634 16.0853 0.1144 940 +942 2 -398.0458808973992 -291.44704909600466 15.9217 0.1144 941 +943 2 -398.4889373901551 -290.4084567437187 15.8434 0.1144 942 +944 2 -399.1492600124234 -289.5184584658998 15.9228 0.1144 943 +945 2 -399.9373118809382 -288.71761112555936 16.1149 0.1144 944 +946 2 -400.8866387859797 -288.09345425636354 16.3405 0.1144 945 +947 2 -401.7924828245649 -287.39969760035245 16.587 0.1144 946 +948 2 -402.8537732197667 -287.0322433350997 16.8402 0.1144 947 +949 2 -403.9863208304001 -286.9779751155912 17.1308 0.1144 948 +950 2 -404.92544198200477 -287.41198449637545 17.5556 0.1144 949 +951 2 -406.0095331005725 -287.33329029936965 18.063 0.1144 950 +952 2 -407.0467561725426 -286.876760706711 18.5686 0.1144 951 +953 2 -408.0202683370736 -286.3191226560814 19.091 0.1144 952 +954 2 -409.0372394790719 -285.87626856459883 19.6415 0.1144 953 +955 2 -410.05423451005925 -285.3882303007844 20.1638 0.1144 954 +956 2 -411.0568660862505 -284.83701719097644 20.5995 0.1144 955 +957 2 -411.97463744454495 -284.2217038204941 20.9967 0.1144 956 +958 2 -412.43926733213937 -283.7203468343514 21.5027 0.1144 957 +959 2 -413.2499715799636 -284.022140940589 22.177 0.1144 958 +960 2 -414.3433801745929 -284.15390169040046 22.8234 0.1144 959 +961 2 -415.4816400891662 -284.1069286462633 23.3577 0.1144 960 +962 2 -416.597265826353 -284.06316091241297 23.8578 0.1144 961 +963 2 -417.6617751518028 -283.71183545641753 24.2897 0.1144 962 +964 2 -418.6924966107773 -283.2197247026135 24.5999 0.1144 963 +965 2 -419.7281541864107 -282.73412967995256 24.8135 0.1144 964 +966 2 -420.7654346990862 -282.2501644043142 24.9774 0.1144 965 +967 2 -421.8018684620006 -281.76534882588146 25.1107 0.1144 966 +968 2 -422.8036260485086 -281.2262961495375 25.2541 0.1144 967 +969 2 -423.5527465654973 -280.4447420688581 25.8686 0.1144 968 +970 2 -385.1295890340099 -298.45686617348554 17.2246 0.1144 928 +971 2 -383.9964383524843 -298.3938945691051 16.8069 0.1144 970 +972 2 -382.9390577129412 -298.0422278474505 16.414 0.1144 971 +973 2 -382.8183040244826 -296.9854844742876 16.0374 0.1144 972 +974 2 -382.30187190556404 -295.98702694562184 15.6836 0.1144 973 +975 2 -381.36489489654167 -295.339475337977 15.4104 0.1144 974 +976 2 -380.6062622907617 -294.48370016338527 15.1899 0.1144 975 +977 2 -379.7341783105167 -293.74414820347977 15.0175 0.1144 976 +978 2 -379.9092461407055 -293.58110199888415 15.1838 0.1144 977 +979 2 -380.95605840180053 -293.1714737649684 15.198 0.1144 978 +980 2 -381.5008054952917 -292.2301802910014 15.2037 0.1144 979 +981 2 -381.93174537532786 -291.1697836341816 15.2116 0.1144 980 +982 2 -382.73267662598255 -290.3641549221035 15.2222 0.1144 981 +983 2 -382.9849737044919 -289.24921975171213 15.2381 0.1144 982 +984 2 -383.0035613067963 -288.1053695206764 15.2608 0.1144 983 +985 2 -383.00998817955065 -286.9607867210036 15.2909 0.1144 984 +986 2 -383.14664518251067 -285.8253861425548 15.3284 0.1144 985 +987 2 -383.3358924573507 -284.69886381300887 15.3756 0.1144 986 +988 2 -383.2751592314099 -283.5807983877019 15.5069 0.1144 987 +989 2 -382.9942838650241 -282.4719594460347 15.6179 0.1144 988 +990 2 -382.62199454246183 -281.3896578104884 15.7094 0.1144 989 +991 2 -382.2707905757575 -280.3008949236434 15.7827 0.1144 990 +992 2 -381.98595038661176 -279.19445184935194 15.8482 0.1144 991 +993 2 -381.7237166367441 -278.1318261107072 15.9481 0.1144 992 +994 2 -382.39782993768546 -277.20706697585433 16.0025 0.1144 993 +995 2 -381.6461810246886 -276.49435443801696 16.0297 0.1144 994 +996 2 -380.5785778113152 -276.80360047080444 16.0235 0.1144 995 +997 2 -379.46670647364954 -276.9792517687718 15.7461 0.1144 996 +998 2 -379.3957934134563 -293.4562123400633 14.8556 0.1144 977 +999 2 -378.5860680263132 -292.68688025479963 14.6495 0.1144 998 +1000 2 -377.6684110186876 -292.09926117209767 14.4504 0.1144 999 +1001 2 -376.60464699849274 -291.6893153594116 14.3029 0.1144 1000 +1002 2 -375.58487974212744 -291.1710619533973 14.2011 0.1144 1001 +1003 2 -374.78971065582436 -290.4065686805768 14.142 0.1144 1002 +1004 2 -374.30240496064687 -289.3774129200393 14.1233 0.1144 1003 +1005 2 -373.742310547089 -288.39505675860835 14.1382 0.1144 1004 +1006 2 -373.0574147648861 -287.47869535745673 14.1708 0.1144 1005 +1007 2 -372.53534120059385 -286.47287209093963 14.2122 0.1144 1006 +1008 2 -372.2553057739886 -285.3681361361314 14.2596 0.1144 1007 +1009 2 -371.56612332342365 -284.6078952796699 14.3622 0.1144 1008 +1010 2 -370.8989041756338 -283.75959470863233 14.53 0.1144 1009 +1011 2 -370.78307398024594 -282.64784861539147 14.6619 0.1144 1010 +1012 2 -370.80003509247507 -281.50406568988853 14.7368 0.1144 1011 +1013 2 -370.84695555614496 -280.37081069206636 14.7142 0.1144 1012 +1014 2 -370.8161040130981 -279.2665964409848 14.5601 0.1144 1013 +1015 2 -370.38306215756757 -278.2237656774576 14.4038 0.1144 1014 +1016 2 -370.10380972822384 -277.11655648281294 14.2745 0.1144 1015 +1017 2 -369.9889513249215 -275.9797100784158 14.1875 0.1144 1016 +1018 2 -369.80449659385135 -274.8509204203369 14.1438 0.1144 1017 +1019 2 -369.355275500439 -273.80162109734397 14.1415 0.1144 1018 +1020 2 -368.54151848318963 -272.9990464797056 14.1715 0.1144 1019 +1021 2 -367.6754923393755 -272.10175133415396 14.277 0.1144 1020 +1022 2 -367.020522356897 -271.17816937133085 14.3576 0.1144 1021 +1023 2 -366.699190006159 -270.108065974285 14.4927 0.1144 1022 +1024 2 -366.7330757505954 -268.9862388412899 14.6862 0.1144 1023 +1025 2 -367.07029759377355 -267.90457414348214 14.8842 0.1144 1024 +1026 2 -367.7684207772412 -267.0963260190148 15.1463 0.1144 1025 +1027 2 -368.2207751103895 -266.2437933350185 15.478 0.1144 1026 +1028 2 -368.69766754368516 -265.2554765148311 15.777 0.1144 1027 +1029 2 -368.89169213904324 -264.1775425296556 16.0724 0.1144 1028 +1030 2 -368.59281098447536 -263.19163202892844 16.4713 0.1144 1029 +1031 2 -368.45190011360035 -262.10330942212966 16.7561 0.1144 1030 +1032 2 -368.628193594701 -260.983336079357 16.973 0.1144 1031 +1033 2 -369.1326331333397 -259.97563145405354 17.1759 0.1144 1032 +1034 2 -368.8103826760879 -258.9387602263686 17.3886 0.1144 1033 +1035 2 -367.9001430334113 -258.2532928800274 17.5023 0.1144 1034 +1036 2 -367.51419133144765 -257.17824585605524 17.527 0.1144 1035 +1037 2 -366.8860192108674 -256.2216273286758 17.4953 0.1144 1036 +1038 2 -366.62189891333344 -255.24950750662168 17.0301 0.1144 1037 +1039 2 -366.7599351744666 -254.23212619628984 16.6725 0.1144 1038 +1040 2 -366.87788906898345 -253.11365706002894 16.4116 0.1144 1039 +1041 2 -366.8399046997396 -251.9713854471044 16.1953 0.1144 1040 +1042 2 -366.58169706245667 -250.8770896845024 15.9708 0.1144 1041 +1043 2 -366.3591746065297 -249.7603825892405 15.7947 0.1144 1042 +1044 2 -365.89458401423275 -248.7231426403622 15.6749 0.1144 1043 +1045 2 -365.15300463601784 -247.8616755917721 15.5676 0.1144 1044 +1046 2 -364.91657682210734 -246.80073023087482 15.3926 0.1144 1045 +1047 2 -365.40892323281486 -245.79377810596353 15.2324 0.1144 1046 +1048 2 -365.96595274724757 -244.79509315060932 15.0901 0.1144 1047 +1049 2 -365.3132868454507 -243.9193165348952 14.9481 0.1144 1048 +1050 2 -364.6145867646136 -243.0442213589067 14.8765 0.1144 1049 +1051 2 -364.6048245156146 -242.70846588464832 15.7461 0.1144 1050 +1052 2 -364.56995496242246 -241.5645037330628 15.6243 0.1144 1051 +1053 2 -364.5360027214714 -240.42146274283786 15.5871 0.1144 1052 +1054 2 -364.44452063293386 -239.29845389270497 15.4772 0.1144 1053 +1055 2 -364.36198360064566 -238.15849317044254 15.3758 0.1144 1054 +1056 2 -364.3805003443839 -237.0147135018869 15.2975 0.1144 1055 +1057 2 -364.4970100297549 -235.87679586285725 15.241 0.1144 1056 +1058 2 -364.6133782940796 -234.73887792774153 15.2046 0.1144 1057 +1059 2 -364.62143165690924 -233.59422782253594 15.1862 0.1144 1058 +1060 2 -364.8713263541483 -232.478439092403 15.1838 0.1144 1059 +1061 2 -364.66971428744483 -242.6180211638968 14.6556 0.1144 1050 +1062 2 -364.6856792204129 -241.5785346315572 14.2946 0.1144 1061 +1063 2 -364.49705094000365 -240.4505140546927 13.9593 0.1144 1062 +1064 2 -364.3036073319398 -239.3596065835939 13.5897 0.1144 1063 +1065 2 -364.09301545266936 -238.31978714235166 13.1159 0.1144 1064 +1066 2 -363.9489028245407 -237.20713330561088 12.6745 0.1144 1065 +1067 2 -364.0289982189663 -236.06836160865325 12.3281 0.1144 1066 +1068 2 -364.1558838458575 -234.93930454734573 12.0166 0.1144 1067 +1069 2 -363.9818549867457 -233.86307486637784 11.7009 0.1144 1068 +1070 2 -363.7826040311004 -232.81026837576593 11.3645 0.1144 1069 +1071 2 -363.8537443023489 -231.6932568665116 11.0653 0.1144 1070 +1072 2 -363.52184040528607 -230.64017264712808 10.8403 0.1144 1071 +1073 2 -362.8644375446681 -229.73030349233102 10.6222 0.1144 1072 +1074 2 -362.58275499594555 -228.66926338387836 10.4587 0.1144 1073 +1075 2 -362.653865268511 -227.53280633271646 10.3681 0.1144 1074 +1076 2 -362.6279672172178 -226.3930349034644 10.3356 0.1144 1075 +1077 2 -362.3373706073018 -225.30036838969855 10.3793 0.1144 1076 +1078 2 -362.06058460781395 -224.19719487638002 10.4753 0.1144 1077 +1079 2 -361.97477801455284 -223.06528834377545 10.5461 0.1144 1078 +1080 2 -362.4825002359392 -222.07703607036012 10.5853 0.1144 1079 +1081 2 -362.3698818647327 -220.9848128914874 10.7187 0.1144 1080 +1082 2 -362.1271347187561 -219.86877056114318 10.8642 0.1144 1081 +1083 2 -361.5742886049783 -218.86931755350307 11.0116 0.1144 1082 +1084 2 -360.73381080220526 -218.09673909596899 11.1641 0.1144 1083 +1085 2 -360.455110699999 -217.94158171448092 10.4436 0.1144 1084 +1086 2 -359.53423526031173 -217.3038219128465 9.9484 0.1144 1085 +1087 2 -358.7504577283586 -216.50215859174125 9.7352 0.1144 1086 +1088 2 -358.10842081359186 -215.58192711538504 9.4736 0.1144 1087 +1089 2 -357.4955948010935 -214.62442147654767 9.2214 0.1144 1088 +1090 2 -356.8747647314757 -213.67347518749744 8.9889 0.1144 1089 +1091 2 -356.5242996452024 -212.6033107967128 8.8281 0.1144 1090 +1092 2 -356.0977901016372 -211.54762433793454 8.763 0.1144 1091 +1093 2 -355.78129656334227 -210.46296464004882 8.7412 0.1144 1092 +1094 2 -355.6396941858138 -209.3334161697837 8.7764 0.1144 1093 +1095 2 -355.65587259686754 -208.19196506307097 8.8908 0.1144 1094 +1096 2 -355.0476408671559 -207.77576047038596 9.3074 0.1144 1095 +1097 2 -355.21301125373293 -206.8069440196362 9.8718 0.1144 1096 +1098 2 -354.68289001367725 -205.7947399291279 10.3515 0.1144 1097 +1099 2 -354.23968707624164 -205.34967727483246 10.6848 0.1144 1098 +1100 2 -354.49048714337636 -204.94976691447002 12.471 0.1144 1099 +1101 2 -354.6278114679145 -203.9009177928657 13.2068 0.1144 1100 +1102 2 -354.30632026452054 -203.27820150422355 14.0543 0.1144 1101 +1103 2 -353.40114991582243 -203.68395434751346 14.9541 0.1144 1102 +1104 2 -352.54378567103504 -203.61420621664152 15.7884 0.1144 1103 +1105 2 -351.66993357756814 -202.90859175481165 16.4923 0.1144 1104 +1106 2 -350.79699909242845 -202.20375703329606 17.0564 0.1144 1105 +1107 2 -350.0788802114196 -201.3496930294073 17.4794 0.1144 1106 +1108 2 -349.48306351175614 -200.37369676383955 17.7528 0.1144 1107 +1109 2 -348.61970154093353 -199.68995391207628 17.9177 0.1144 1108 +1110 2 -347.6851942187143 -199.04488235424841 18.018 0.1144 1109 +1111 2 -346.8519510957601 -198.26171241863435 18.0819 0.1144 1110 +1112 2 -345.9531229391888 -197.56332888148978 18.1278 0.1144 1111 +1113 2 -345.0282896888225 -196.89084177453768 18.1715 0.1144 1112 +1114 2 -344.2768811977473 -196.06329534711494 18.2793 0.1144 1113 +1115 2 -343.69251279285254 -195.09057574858676 18.396 0.1144 1114 +1116 2 -343.2052880231691 -194.05654110999535 18.4941 0.1144 1115 +1117 2 -343.3304760993184 -192.96149240532964 18.5774 0.1144 1116 +1118 2 -343.68863832427485 -191.87506321269248 18.6499 0.1144 1117 +1119 2 -343.9515336908446 -190.7641100380554 18.7157 0.1144 1118 +1120 2 -344.2070128909385 -189.64911081907837 18.7775 0.1144 1119 +1121 2 -344.0402693423705 -188.53810666111542 18.8771 0.1144 1120 +1122 2 -343.2321568253417 -187.77521263844812 19.0241 0.1144 1121 +1123 2 -342.51161888825465 -186.89448558582723 19.1848 0.1144 1122 +1124 2 -342.0154526153551 -185.8757057668099 19.3663 0.1144 1123 +1125 2 -341.9668498241953 -184.7390687892786 19.5063 0.1144 1124 +1126 2 -342.6062831935967 -183.79564009769877 19.6826 0.1144 1125 +1127 2 -353.72472259474256 -204.79853954903757 10.6848 0.1144 1099 +1128 2 -353.1337646392775 -203.83224084011133 10.6919 0.1144 1127 +1129 2 -352.7647920493655 -202.75312813613007 10.6946 0.1144 1128 +1130 2 -352.948285662196 -201.6728386452757 10.6986 0.1144 1129 +1131 2 -353.29273863215974 -200.58227952194352 10.7041 0.1144 1130 +1132 2 -353.6501214128879 -199.4966265165873 10.7118 0.1144 1131 +1133 2 -353.9452471580501 -198.39224621771265 10.722 0.1144 1132 +1134 2 -354.19669748679837 -197.27646074452687 10.7372 0.1144 1133 +1135 2 -354.32126136182717 -196.14181266647012 10.7598 0.1144 1134 +1136 2 -354.14159481247526 -195.02264970646655 10.7902 0.1144 1135 +1137 2 -353.74983981414994 -193.94999470075075 10.8257 0.1144 1136 +1138 2 -353.27641884491413 -192.90870574667133 10.8631 0.1144 1137 +1139 2 -353.12415017350565 -191.84143118888056 10.9962 0.1144 1138 +1140 2 -352.8441551085972 -190.75119103935984 11.1364 0.1144 1139 +1141 2 -352.7583585822639 -189.6144761911815 11.2241 0.1144 1140 +1142 2 -352.7493922692447 -188.49326644932637 11.1864 0.1144 1141 +1143 2 -353.1382022974484 -187.42627619071655 11.1206 0.1144 1142 +1144 2 -352.92538726299034 -186.33377252431143 10.6848 0.1144 1143 +1145 2 -355.1797035873291 -206.09905884578473 10.8347 0.1144 1098 +1146 2 -356.1802755885359 -206.53157053395165 11.2819 0.1144 1145 +1147 2 -357.29529849440183 -206.7757360503425 11.5977 0.1144 1146 +1148 2 -358.43319294472906 -206.86954750974132 11.7959 0.1144 1147 +1149 2 -359.4920025898271 -206.57244532959572 11.9305 0.1144 1148 +1150 2 -360.4332417534945 -205.92727041007493 12.0512 0.1144 1149 +1151 2 -361.1638955327419 -205.08352284422864 12.1928 0.1144 1150 +1152 2 -361.7031128053229 -204.0815478979599 12.3444 0.1144 1151 +1153 2 -361.92871989126405 -202.98190109885883 12.4919 0.1144 1152 +1154 2 -361.7797485189371 -201.8595497054766 12.6376 0.1144 1153 +1155 2 -361.3613067849908 -200.80062743954207 12.7826 0.1144 1154 +1156 2 -361.17344718159524 -199.74452138927435 13.017 0.1144 1155 +1157 2 -361.0648944903978 -198.6692773224533 13.3505 0.1144 1156 +1158 2 -360.8471738361502 -197.55569155713752 13.6398 0.1144 1157 +1159 2 -360.6772181673148 -196.42530590585264 13.868 0.1144 1158 +1160 2 -361.04918724756584 -195.36393725484714 14.0414 0.1144 1159 +1161 2 -361.63771131500687 -194.3855415363147 14.167 0.1144 1160 +1162 2 -362.0354359025905 -193.3161657733429 14.252 0.1144 1161 +1163 2 -362.4244009718015 -192.24267044268998 14.3425 0.1144 1162 +1164 2 -363.2656125373864 -191.51646361820661 14.491 0.1144 1163 +1165 2 -364.32695761453283 -191.0891173918081 14.6266 0.1144 1164 +1166 2 -365.36650519712606 -190.6706350940647 14.7568 0.1144 1165 +1167 2 -365.86851461638605 -189.7090995549533 14.9054 0.1144 1166 +1168 2 -366.2782842578364 -188.7294810572994 15.0661 0.1144 1167 +1169 2 -366.84406627856083 -187.77203884231986 15.2335 0.1144 1168 +1170 2 -366.9540264789722 -186.65517931922594 15.4064 0.1144 1169 +1171 2 -366.6247796863051 -186.2580850615006 15.7752 0.1144 1170 +1172 2 -366.48756017625004 -187.2568711327192 16.8708 0.1144 1171 +1173 2 -360.500447243648 -218.6794027549846 11.5115 0.1144 1084 +1174 2 -359.80062594122546 -217.93455458611015 11.9198 0.1144 1173 +1175 2 -359.2259787798611 -216.94566255968064 12.2061 0.1144 1174 +1176 2 -358.6171881526027 -215.9858319120337 12.3766 0.1144 1175 +1177 2 -357.7596199094005 -215.2704934479127 12.4069 0.1144 1176 +1178 2 -356.7089344291834 -214.82818945554894 12.3375 0.1144 1177 +1179 2 -355.6647913278593 -214.36822145236027 12.2122 0.1144 1178 +1180 2 -354.6188057956995 -213.97768762986541 12.0287 0.1144 1179 +1181 2 -353.6098068324218 -213.71995547800142 11.7723 0.1144 1180 +1182 2 -352.47618912911423 -213.8462757960336 11.5509 0.1144 1181 +1183 2 -351.4089615034296 -213.604614514535 11.3844 0.1144 1182 +1184 2 -350.4848943734165 -212.93771516738485 11.2595 0.1144 1183 +1185 2 -349.6695749146774 -212.13838997686386 11.1674 0.1144 1184 +1186 2 -348.92475647235904 -211.27041075016402 11.1033 0.1144 1185 +1187 2 -348.0492368268332 -210.61825018688356 11.0183 0.1144 1186 +1188 2 -346.9748942482328 -210.26244672455329 10.9087 0.1144 1187 +1189 2 -346.0151338344241 -209.6893766345242 10.8228 0.1144 1188 +1190 2 -345.5091008457282 -208.72247790955274 10.7593 0.1144 1189 +1191 2 -345.04131480797173 -207.691665956343 10.7165 0.1144 1190 +1192 2 -344.03572121520585 -207.32723828699264 10.6924 0.1144 1191 +1193 2 -342.9622763131775 -206.94796070749535 10.6848 0.1144 1192 +1194 2 -341.85788239434174 -206.65934033046238 10.6848 0.1144 1193 +1195 2 -340.7290113690974 -206.47737135408528 10.6848 0.1144 1194 +1196 2 -339.64980649326526 -206.11356738766898 10.6848 0.1144 1195 +1197 2 -338.62925298269136 -205.59934285300037 10.6848 0.1144 1196 +1198 2 -337.7344000118938 -204.89361371185993 10.6848 0.1144 1197 +1199 2 -337.037377051857 -203.99426823142343 10.6848 0.1144 1198 +1200 2 -336.76375600095923 -202.89923309020395 10.6848 0.1144 1199 +1201 2 -336.5437204048298 -201.77680362407435 10.6848 0.1144 1200 +1202 2 -336.4862166742511 -200.63604678277574 10.6848 0.1144 1201 +1203 2 -336.95915129686773 -199.61300265727067 10.6848 0.1144 1202 +1204 2 -337.24543659816334 -198.50938166876867 10.6848 0.1144 1203 +1205 2 -337.6197780610016 -197.42942103559722 10.6848 0.1144 1204 +1206 2 -337.8542628976593 -196.31119587429131 10.6848 0.1144 1205 +1207 2 -337.6025807623611 -195.2072971005028 10.6848 0.1144 1206 +1208 2 -337.0294859755586 -194.21996396252968 10.6848 0.1144 1207 +1209 2 -336.48967073189476 -193.21092156366424 10.6848 0.1144 1208 +1210 2 -335.93435137828055 -192.21068555876266 10.6848 0.1144 1209 +1211 2 -336.0031262790226 -191.07514285898077 10.6848 0.1144 1210 +1212 2 -336.3442592593889 -189.98295043559267 10.6848 0.1144 1211 +1213 2 -336.4502347052851 -188.84423292239325 10.6848 0.1144 1212 +1214 2 -336.15570376947846 -187.73939590823554 10.6848 0.1144 1213 +1215 2 -335.8158202964576 -186.64740402421475 10.6848 0.1144 1214 +1216 2 -335.4524455332753 -185.56271688430658 10.6848 0.1144 1215 +1217 2 -366.6990686759862 -256.2511466021706 17.9956 0.1144 1037 +1218 2 -365.5871325894482 -256.49149817685753 17.9956 0.1144 1217 +1219 2 -364.54986569673383 -256.9689580843667 17.9956 0.1144 1218 +1220 2 -363.5355845296049 -257.3090749672283 17.9956 0.1144 1219 +1221 2 -362.5839970359844 -256.68256459861095 17.9956 0.1144 1220 +1222 2 -361.91361038294394 -255.7597988886795 17.9956 0.1144 1221 +1223 2 -361.4190939909225 -254.7297795014726 17.9956 0.1144 1222 +1224 2 -360.59165416433007 -253.94421754760222 17.9956 0.1144 1223 +1225 2 -360.2638537523126 -252.85628147876304 17.9956 0.1144 1224 +1226 2 -360.29538123230935 -251.71252905012952 17.9956 0.1144 1225 +1227 2 -360.27995692493863 -250.56867832090734 17.9956 0.1144 1226 +1228 2 -360.01457560157553 -249.45584130085004 17.9956 0.1144 1227 +1229 2 -368.5797246307607 -272.54933486067875 14.3551 0.1144 1020 +1230 2 -368.82393702274277 -271.445696497082 14.8983 0.1144 1229 +1231 2 -369.3493741817649 -270.4396621825983 15.0945 0.1144 1230 +1232 2 -370.1252590089355 -269.60732304801036 15.3099 0.1144 1231 +1233 2 -370.85640206310757 -269.6444213543858 15.7739 0.1144 1232 +1234 2 -371.4767629025856 -268.92814663834315 16.2391 0.1144 1233 +1235 2 -371.4256831164558 -267.82629420473467 16.617 0.1144 1234 +1236 2 -371.00158631717466 -266.7665115690779 16.9147 0.1144 1235 +1237 2 -370.83402977266223 -265.6385351090438 17.1494 0.1144 1236 +1238 2 -370.6916615708667 -264.50325745793043 17.3309 0.1144 1237 +1239 2 -370.8703201263876 -263.4019567267316 17.5501 0.1144 1238 +1240 2 -371.12503981400846 -262.3119875525168 17.8377 0.1144 1239 +1241 2 -371.01739536449725 -261.17444914327984 18.103 0.1144 1240 +1242 2 -370.7738047257069 -260.05600087863206 18.3497 0.1144 1241 +1243 2 -370.2152258780475 -259.05901074781457 18.5828 0.1144 1242 +1244 2 -369.77397734851223 -258.0857422621525 18.9434 0.1144 1243 +1245 2 -369.5391586495823 -257.06680250503587 19.3711 0.1144 1244 +1246 2 -369.22752385548574 -255.99184036379162 19.7068 0.1144 1245 +1247 2 -368.8940948237831 -254.92418651969334 20.0463 0.1144 1246 +1248 2 -368.442383613626 -253.88216519907726 20.3422 0.1144 1247 +1249 2 -367.9187203679219 -252.892602095936 20.6267 0.1144 1248 +1250 2 -367.32046398013824 -251.93357132245887 20.8609 0.1144 1249 +1251 2 -366.91008679886374 -250.87296888087715 21.0322 0.1144 1250 +1252 2 -366.76521486036233 -249.7514746002698 21.142 0.1144 1251 +1253 2 -366.9722503940792 -248.63969736638774 21.1924 0.1144 1252 +1254 2 -367.62525119322623 -247.76813928667457 21.1989 0.1144 1253 +1255 2 -368.4357985768421 -246.9965426181271 21.1408 0.1144 1254 +1256 2 -368.95486497880074 -245.99374766383306 21.0339 0.1144 1255 +1257 2 -369.16585882138304 -244.88268582559346 20.9312 0.1144 1256 +1258 2 -369.13430570475504 -243.74205402661926 20.8459 0.1144 1257 +1259 2 -369.0347258079156 -242.6028354417351 20.7761 0.1144 1258 +1260 2 -369.04765123881856 -241.4615189460881 20.7216 0.1144 1259 +1261 2 -369.06213585426406 -240.31850865483287 20.6861 0.1144 1260 +1262 2 -368.9083052395523 -239.22047161448435 20.597 0.1144 1261 +1263 2 -368.663111595475 -238.1246474602953 20.4807 0.1144 1262 +1264 2 -368.6023415608706 -236.9903891771454 20.4216 0.1144 1263 +1265 2 -368.7423152964809 -235.85817753026157 20.4381 0.1144 1264 +1266 2 -368.9273544738927 -234.7826996119282 20.6306 0.1144 1265 +1267 2 -368.55564829046745 -233.79338394278946 20.9754 0.1144 1266 +1268 2 -367.7434900251848 -233.03776466555186 21.3895 0.1144 1267 +1269 2 -367.5548748665502 -231.93725063023322 21.7521 0.1144 1268 +1270 2 -367.65832318493784 -230.82348875019656 22.1192 0.1144 1269 +1271 2 -367.4795202622554 -229.69711509334903 22.3993 0.1144 1270 +1272 2 -367.2933652216825 -228.56987751374595 22.6107 0.1144 1271 +1273 2 -367.0683493920636 -227.46200405237013 22.8253 0.1144 1272 +1274 2 -366.8984645817944 -226.33154783860516 22.9902 0.1144 1273 +1275 2 -366.78268857016474 -225.19392169389363 23.1184 0.1144 1274 +1276 2 -366.39829249971024 -224.11887792686875 23.2135 0.1144 1275 +1277 2 -366.24773825595196 -223.00953401279773 23.3706 0.1144 1276 +1278 2 -366.1400973594741 -221.8702985510053 23.6191 0.1144 1277 +1279 2 -385.69435808763546 -298.3885398530314 18.5578 0.1144 927 +1280 2 -385.5602249552368 -299.5005404298266 18.237 0.1144 1279 +1281 2 -385.0987093289927 -300.4395332821596 18.1295 0.1144 1280 +1282 2 -384.1906965210785 -301.0208551729084 17.8972 0.1144 1281 +1283 2 -383.13186574575207 -301.3955978035519 17.625 0.1144 1282 +1284 2 -382.1599729652297 -301.95656265375965 17.3199 0.1144 1283 +1285 2 -381.27507562021697 -302.6763140405519 17.0655 0.1144 1284 +1286 2 -380.5048221714924 -303.52082722856494 16.8696 0.1144 1285 +1287 2 -380.6352628514783 -304.61153208277835 16.6665 0.1144 1286 +1288 2 -380.4872313731769 -305.7421712212447 16.5161 0.1144 1287 +1289 2 -380.3652080435173 -306.87922878663835 16.4182 0.1144 1288 +1290 2 -380.4339513422856 -308.021635508815 16.3086 0.1144 1289 +1291 2 -394.4772220096986 -304.46175530833364 22.737 0.1144 916 +1292 2 -394.80749991487244 -305.48089492357485 23.4868 0.1144 1291 +1293 2 -395.34576278397435 -306.48837843398394 23.7531 0.1144 1292 +1294 2 -396.1481186781324 -307.29891950580566 24.0496 0.1144 1293 +1295 2 -395.30217598637796 -307.2114468685565 23.6191 0.1144 1294 +1296 2 -394.1608831776198 -307.18720775395053 23.657 0.1144 1295 +1297 2 -393.01776807188145 -307.22278618889084 23.6725 0.1144 1296 +1298 2 -391.89038487442696 -307.0732058890608 23.6947 0.1144 1297 +1299 2 -390.8055753618846 -306.7182290426361 23.7248 0.1144 1298 +1300 2 -389.96820506699623 -305.9812246401807 23.7632 0.1144 1299 +1301 2 -389.29796338803544 -305.05676217377993 23.8101 0.1144 1300 +1302 2 -388.7507382896897 -304.0744329561851 23.9258 0.1144 1301 +1303 2 -388.18492831524475 -303.08633725089203 24.0498 0.1144 1302 +1304 2 -387.7211980926699 -302.04344223667886 24.1572 0.1144 1303 +1305 2 -387.2007744092557 -301.0263794019721 24.2556 0.1144 1304 +1306 2 -386.6753977322742 -300.0108618357608 24.3513 0.1144 1305 +1307 2 -386.4699048170235 -298.89977655020357 24.448 0.1144 1306 +1308 2 -386.5878859514625 -297.76829667768413 24.5472 0.1144 1307 +1309 2 -386.64203398888463 -296.62784430689294 24.6602 0.1144 1308 +1310 2 -386.4426298486057 -295.7157520534231 24.9879 0.1144 1309 +1311 2 -386.1284913178033 -294.654573282685 25.293 0.1144 1310 +1312 2 -385.7133158878827 -293.58915245860175 25.528 0.1144 1311 +1313 2 -385.26169567014733 -292.5374439443581 25.6974 0.1144 1312 +1314 2 -384.7719944036802 -291.5041819400143 25.8066 0.1144 1313 +1315 2 -384.12441384594194 -290.56364484811445 25.8614 0.1144 1314 +1316 2 -383.62989390088717 -289.53532251346303 25.8686 0.1144 1315 +1317 2 -383.4631775922414 -288.4113076192416 25.8686 0.1144 1316 +1318 2 -384.4545564219535 -288.2362525821858 25.8686 0.1144 1317 +1319 2 -396.56290688885065 -307.4009751291154 24.4682 0.1144 1294 +1320 2 -397.34631525793884 -307.97367599976474 24.9713 0.1144 1319 +1321 2 -397.9729655008266 -308.9141692709202 25.4457 0.1144 1320 +1322 2 -398.6327574188399 -309.8312559325419 25.8874 0.1144 1321 +1323 2 -399.36624204359975 -310.7088281035004 26.2821 0.1144 1322 +1324 2 -400.01887765062764 -311.56530059835325 26.7342 0.1144 1323 +1325 2 -400.28616950463186 -312.5761765970707 27.237 0.1144 1324 +1326 2 -399.63097043565915 -313.28184245993873 27.7423 0.1144 1325 +1327 2 -399.14361837658856 -314.2337213022919 28.1879 0.1144 1326 +1328 2 -399.94456712887944 -314.6018217453828 28.6804 0.1144 1327 +1329 2 -401.0750847780546 -314.7741067850794 28.3102 0.1144 1328 +1330 2 -402.21471033084 -314.85165837718847 28.1742 0.1144 1329 +1331 2 -403.3368961181007 -314.7480123021536 27.9759 0.1144 1330 +1332 2 -404.3488660984815 -314.3634841772938 27.6441 0.1144 1331 +1333 2 -405.3318149677906 -313.92557932424484 27.2029 0.1144 1332 +1334 2 -406.36412511180407 -313.4852322264154 26.7729 0.1144 1333 +1335 2 -407.269559752369 -313.76381937914334 26.3669 0.1144 1334 +1336 2 -408.059022644426 -314.585647190832 26.045 0.1144 1335 +1337 2 -409.1313121293808 -314.73999119121896 25.7418 0.1144 1336 +1338 2 -409.88535258640684 -313.90513144301696 25.5424 0.1144 1337 +1339 2 -410.9145116038917 -313.41627011633034 25.4221 0.1144 1338 +1340 2 -412.0574336614859 -313.47289820356946 25.3064 0.1144 1339 +1341 2 -398.80249513450826 -314.1391738342526 28.7582 0.1144 1327 +1342 2 -397.7717838554914 -313.81584728213033 29.2376 0.1144 1341 +1343 2 -396.6344964332902 -313.7698376168072 29.582 0.1144 1342 +1344 2 -395.5186467094185 -313.54907565510325 29.8494 0.1144 1343 +1345 2 -394.5977949566201 -312.9000021697659 30.0798 0.1144 1344 +1346 2 -394.00444468681246 -311.9280415855242 30.2347 0.1144 1345 +1347 2 -393.680760585529 -310.83290162982166 30.3226 0.1144 1346 +1348 2 -393.49064753217687 -309.7048072335298 30.387 0.1144 1347 +1349 2 -393.3190656693522 -308.5743474667315 30.4382 0.1144 1348 +1350 2 -393.0196555594056 -307.46957094812615 30.4788 0.1144 1349 +1351 2 -392.5760998943419 -306.4161822582353 30.5152 0.1144 1350 +1352 2 -392.0727226285122 -305.3966802335949 30.6001 0.1144 1351 +1353 2 -391.5149837206334 -304.4037930896364 30.7079 0.1144 1352 +1354 2 -391.0649899929734 -303.35201726985986 30.7933 0.1144 1353 +1355 2 -390.84247790006026 -302.2303604379779 30.8566 0.1144 1354 +1356 2 -390.9378485440016 -301.09077219204244 30.8988 0.1144 1355 +1357 2 -390.9410227326913 -299.94618258238927 30.9226 0.1144 1356 +1358 2 -390.8091920273178 -298.8101491739365 30.9299 0.1144 1357 +1359 2 -397.73283222575833 -309.2177938091332 16.5177 0.1144 908 +1360 2 -396.925967001568 -309.41275134295074 15.3416 0.1144 1359 +1361 2 -396.1078162734548 -309.931965129447 14.9384 0.1144 1360 +1362 2 -395.6342170880208 -310.9009140762736 14.5367 0.1144 1361 +1363 2 -395.28730805121506 -311.98248778165964 14.1783 0.1144 1362 +1364 2 -394.8627994237947 -313.0445242524297 13.8876 0.1144 1363 +1365 2 -394.28642572289004 -314.0286022762192 13.6559 0.1144 1364 +1366 2 -393.81027898000593 -315.03226490840234 13.3998 0.1144 1365 +1367 2 -393.40861395683794 -316.0248404567429 13.0278 0.1144 1366 +1368 2 -393.20809385817813 -317.1318229950123 12.6926 0.1144 1367 +1369 2 -392.97275871872614 -318.25089490607934 12.4088 0.1144 1368 +1370 2 -392.7124038975257 -319.3642575680532 12.1624 0.1144 1369 +1371 2 -392.8783475719238 -320.485795965491 11.9433 0.1144 1370 +1372 2 -393.219081347739 -321.5769410997507 11.7429 0.1144 1371 +1373 2 -393.5073403252573 -322.60405377705547 11.406 0.1144 1372 +1374 2 -394.0689926874136 -323.24756688809856 10.9836 0.1144 1373 +1375 2 -394.00724660740366 -322.2079883669644 10.5869 0.1144 1374 +1376 2 -393.549636540013 -322.0921251880732 10.1445 0.1144 1375 +1377 2 -394.2411097473845 -322.9065353387267 9.7274 0.1144 1376 +1378 2 -395.32942223074065 -323.17574727860165 9.3907 0.1144 1377 +1379 2 -396.391288898584 -323.3098461589974 9.0282 0.1144 1378 +1380 2 -397.45445671438205 -323.1939849685537 8.6755 0.1144 1379 +1381 2 -398.4771516087775 -323.46221099819576 8.3668 0.1144 1380 +1382 2 -399.56414632588564 -323.5502590247433 8.0846 0.1144 1381 +1383 2 -400.2834602479073 -324.27259124857517 7.7871 0.1144 1382 +1384 2 -399.8994930833666 -325.2893162441145 7.556 0.1144 1383 +1385 2 -399.67872756862937 -326.40686302054166 7.3963 0.1144 1384 +1386 2 -399.21310775705314 -327.44859012063444 7.2833 0.1144 1385 +1387 2 -398.69323141399684 -328.4667276299771 7.2012 0.1144 1386 +1388 2 -398.3390272018198 -329.5540136393031 7.142 0.1144 1387 +1389 2 -397.99462841561433 -330.6186927111647 7.0154 0.1144 1388 +1390 2 -396.9993317517633 -329.99689916751294 6.8345 0.1144 1389 +1391 2 -396.07612824841954 -329.3227891235188 6.775 0.1144 1390 +1392 2 -395.4786644266388 -328.3904887043067 6.7325 0.1144 1391 +1393 2 -394.7557312143481 -327.5055139868333 6.7038 0.1144 1392 +1394 2 -394.49275227225525 -326.39353052651757 6.686 0.1144 1393 +1395 2 -394.8166250983361 -325.84492685124155 5.7212 0.1144 1394 +1396 2 -395.4332617390763 -324.98234362436034 5.2683 0.1144 1395 +1397 2 -396.2511111080439 -324.2017819678083 5.0878 0.1144 1396 +1398 2 -396.1351079983675 -323.17262576559926 5.0334 0.1144 1397 +1399 2 -395.9271658262554 -322.04930237803126 5.0081 0.1144 1398 +1400 2 -395.20825437924367 -321.16850801987755 5.0035 0.1144 1399 +1401 2 -394.6230561014962 -320.1868771189166 5.0166 0.1144 1400 +1402 2 -394.3317105442213 -319.080420424664 5.0446 0.1144 1401 +1403 2 -394.2572377685187 -317.93892094780074 5.0604 0.1144 1402 +1404 2 -394.41248675364466 -316.8058927519392 5.0613 0.1144 1403 +1405 2 -393.7352713849301 -325.3929419770442 6.6335 0.1144 1394 +1406 2 -393.32241365565216 -324.36882113194076 6.5684 0.1144 1405 +1407 2 -393.247920746094 -323.236938286225 6.4957 0.1144 1406 +1408 2 -392.81804363705334 -322.2361163834257 6.4295 0.1144 1407 +1409 2 -392.7743236621374 -321.8744803595103 6.4258 0.1144 1408 +1410 2 -393.8919014336204 -322.0466675968047 6.4915 0.1144 1409 +1411 2 -394.3287813594152 -321.2225282697261 6.6955 0.1144 1410 +1412 2 -394.1078617066747 -320.11706755263435 6.9434 0.1144 1411 +1413 2 -393.93550365656904 -318.9858283416078 7.1618 0.1144 1412 +1414 2 -393.7623661622352 -317.8553653178624 7.3438 0.1144 1413 +1415 2 -393.5891578093352 -316.724972856597 7.4848 0.1144 1414 +1416 2 -393.41679975922955 -315.5937336455705 7.5892 0.1144 1415 +1417 2 -393.24366226489565 -314.463270621825 7.664 0.1144 1416 +1418 2 -393.07052477056186 -313.3328075980795 7.7302 0.1144 1417 +1419 2 -392.8972458551817 -312.20234427824795 7.7981 0.1144 1418 +1420 2 -392.7257345548371 -311.07195537001587 7.8682 0.1144 1419 +1421 2 -392.5590351230996 -309.9398794761561 7.9353 0.1144 1420 +1422 2 -392.39721456941595 -308.8078845077903 7.9967 0.1144 1421 +1423 2 -392.18764590722844 -307.68462842575514 8.0772 0.1144 1422 +1424 2 -391.91891409739844 -306.5847244734095 8.202 0.1144 1423 +1425 2 -391.7813542111767 -305.44945688922394 8.2975 0.1144 1424 +1426 2 -391.6429472791078 -304.3134804232902 8.4356 0.1144 1425 +1427 2 -398.3192876789602 -330.8765477338494 6.7483 0.1144 1389 +1428 2 -399.1200102730623 -331.6904087952686 6.631 0.1144 1427 +1429 2 -399.53691325240777 -332.74126680461757 6.584 0.1144 1428 +1430 2 -399.05427801830274 -333.7368548172012 6.5225 0.1144 1429 +1431 2 -398.3801679743086 -334.6600583205451 6.4463 0.1144 1430 +1432 2 -397.7917217775147 -335.6012603039039 6.2758 0.1144 1431 +1433 2 -397.5078592874309 -336.69597679995377 6.1018 0.1144 1432 +1434 2 -397.38427727141527 -337.8007162512804 5.8809 0.1144 1433 +1435 2 -397.00832649149606 -338.8725417693 5.6941 0.1144 1434 +1436 2 -396.7244944982817 -339.95269189758216 5.5367 0.1144 1435 +1437 2 -396.25239676059863 -340.94752415282653 5.4005 0.1144 1436 +1438 2 -396.3649473280858 -342.072132751299 5.2594 0.1144 1437 +1439 2 -396.4006172536342 -343.17154875373467 5.0641 0.1144 1438 +1440 2 -395.8454372761039 -344.09740542328416 4.8672 0.1144 1439 +1441 2 -394.96704529922033 -344.81717043003755 4.6805 0.1144 1440 +1442 2 -394.5008161049579 -345.7108984806308 4.3601 0.1144 1441 +1443 2 -394.71237366662 -346.6609878964773 3.8405 0.1144 1442 +1444 2 -394.0941975900362 -346.7390312071418 3.2315 0.1144 1443 +1445 2 -393.82348825363 -347.7657514198495 2.625 0.1144 1444 +1446 2 -393.6593415860323 -348.8931041204346 2.1405 0.1144 1445 +1447 2 -393.5509874457547 -350.01965439018943 1.807 0.1144 1446 +1448 2 -392.91500937730336 -350.9000869636719 1.5802 0.1144 1447 +1449 2 -392.7955277914863 -351.9376597084231 1.4029 0.1144 1448 +1450 2 -393.0244812039429 -353.0561480386816 1.2521 0.1144 1449 +1451 2 -393.1913603599495 -354.102381357445 0.5622 0.1144 1450 +1452 2 -397.35738908793314 -309.6756382262226 16.4587 0.1144 1360 +1453 2 -397.114382302078 -310.6087245845134 16.8239 0.1144 1452 +1454 2 -397.1403950326818 -311.7274951364348 16.9812 0.1144 1453 +1455 2 -397.7645047302002 -312.66557892025344 17.0981 0.1144 1454 +1456 2 -398.58960267107466 -313.4551664885222 17.1697 0.1144 1455 +1457 2 -399.39521450624454 -314.26415873881524 17.1755 0.1144 1456 +1458 2 -399.8257798649913 -315.3077621365901 17.1016 0.1144 1457 +1459 2 -399.9172314566596 -316.44533735449056 17.0201 0.1144 1458 +1460 2 -399.8282247598012 -317.58493892430107 16.9518 0.1144 1459 +1461 2 -399.517763269571 -318.6852565980135 16.8708 0.1144 1460 +1462 2 -440.4574412648665 -279.06132170934404 28.856 0.1144 815 +1463 2 -439.4027714152909 -279.3737768075521 29.5352 0.1144 1462 +1464 2 -438.2820223269088 -279.5680064677244 29.8026 0.1144 1463 +1465 2 -437.2038684953387 -279.85050171630525 30.1109 0.1144 1464 +1466 2 -436.22788584973205 -280.4398130478395 30.3789 0.1144 1465 +1467 2 -435.1649314555047 -280.8590241590862 30.6292 0.1144 1466 +1468 2 -434.12203644129147 -281.32275438166096 30.8748 0.1144 1467 +1469 2 -433.1105782432951 -281.8343509450836 31.1184 0.1144 1468 +1470 2 -432.2443028791312 -282.57592025637075 31.3816 0.1144 1469 +1471 2 -431.35867701670134 -283.27212341048255 31.6652 0.1144 1470 +1472 2 -430.2811632667872 -283.6541808521663 31.9617 0.1144 1471 +1473 2 -429.399189804671 -284.1594724037707 32.3464 0.1144 1472 +1474 2 -428.7036963026206 -284.82623365684833 32.8692 0.1144 1473 +1475 2 -427.8173043198374 -285.5168490511582 33.3382 0.1144 1474 +1476 2 -427.0438354938982 -286.34353637735853 33.8022 0.1144 1475 +1477 2 -426.08837925008766 -286.78807489780826 34.3423 0.1144 1476 +1478 2 -424.99197195676174 -286.940282575478 34.9255 0.1144 1477 +1479 2 -423.8969204368203 -287.1879527163389 35.5174 0.1144 1478 +1480 2 -422.8497551894819 -287.4284398984644 36.1878 0.1144 1479 +1481 2 -421.8487025465321 -287.1917255008393 36.9303 0.1144 1480 +1482 2 -421.1685903966412 -286.35471166966875 37.6704 0.1144 1481 +1483 2 -421.0187818432945 -285.2607135675935 38.3953 0.1144 1482 +1484 2 -420.517621218758 -284.2970070311343 39.1283 0.1144 1483 +1485 2 -420.30360353903416 -283.37364115957223 39.9644 0.1144 1484 +1486 2 -419.64096895970437 -282.6659940340383 40.8346 0.1144 1485 +1487 2 -418.71619338961466 -282.37124431823645 41.7074 0.1144 1486 +1488 2 -418.4593050456945 -282.53814973683626 43.3294 0.1144 1487 +1489 2 -417.5011376967865 -283.16306591640466 43.4924 0.1144 1488 +1490 2 -416.5443845583412 -283.78798505683426 43.5616 0.1144 1489 +1491 2 -415.58621720943313 -284.4129012364027 43.6442 0.1144 1490 +1492 2 -414.629464070988 -285.0378203768323 43.736 0.1144 1491 +1493 2 -413.672005603828 -285.66188951055364 43.8332 0.1144 1492 +1494 2 -412.71376739635366 -286.28687625260216 43.9326 0.1144 1493 +1495 2 -411.7570851164746 -286.91172483055163 44.0308 0.1144 1494 +1496 2 -410.79969721179475 -287.53586482283913 44.1274 0.1144 1495 +1497 2 -409.8413884418403 -288.1607807063215 44.2215 0.1144 1496 +1498 2 -408.88477672444145 -288.7857001428372 44.3128 0.1144 1497 +1499 2 -407.9272473987153 -289.40983983903857 44.3999 0.1144 1498 +1500 2 -406.9689386287609 -290.0347557225209 44.4805 0.1144 1499 +1501 2 -406.0123269113619 -290.65967515903657 44.5522 0.1144 1500 +1502 2 -405.0540181414076 -291.28459104251897 44.6118 0.1144 1501 +1503 2 -404.0965596742476 -291.90866017624023 44.6566 0.1144 1502 +1504 2 -403.1399479568487 -292.53357961275594 44.6841 0.1144 1503 +1505 2 -402.9159839418051 -293.625239527732 44.6592 0.1144 1504 +1506 2 -402.91847518146403 -294.7657397704873 44.5852 0.1144 1505 +1507 2 -402.92329794382715 -295.9071641354643 44.4755 0.1144 1506 +1508 2 -402.9282621272364 -297.04858879652744 44.3428 0.1144 1507 +1509 2 -402.9347819421549 -298.1900167145378 44.1991 0.1144 1508 +1510 2 -402.93960470451793 -299.33144107951483 44.0552 0.1144 1509 +1511 2 -403.13056806066453 -300.4586887260456 43.9407 0.1144 1510 +1512 2 -403.20341434629177 -301.6002555084418 43.8533 0.1144 1511 +1513 2 -403.4948307621329 -302.7066416402142 43.7842 0.1144 1512 +1514 2 -403.8168110008803 -303.8050307269481 43.7256 0.1144 1513 +1515 2 -404.1397121049023 -304.90264392248713 43.6708 0.1144 1514 +1516 2 -404.3016304609881 -306.0216990131607 43.5551 0.1144 1515 +1517 2 -404.2967624766902 -307.1647294382715 43.4255 0.1144 1516 +1518 2 -404.2134817037329 -308.3051208153239 43.3112 0.1144 1517 +1519 2 -404.1285744407002 -309.4455794979093 43.2132 0.1144 1518 +1520 2 -404.04614041750386 -310.5868211777561 43.1309 0.1144 1519 +1521 2 -404.1359726251634 -311.7210695960786 43.0245 0.1144 1520 +1522 2 -404.2265807240177 -312.8562388796755 42.7395 0.1144 1521 +1523 2 -418.9161179651205 -281.51493043646826 42.3326 0.1144 1487 +1524 2 -419.17569659903995 -280.4007883302662 42.742 0.1144 1523 +1525 2 -419.3932194966403 -279.27842642828466 42.9568 0.1144 1524 +1526 2 -419.5799932355578 -278.15126252252344 43.0074 0.1144 1525 +1527 2 -419.7611827677067 -277.0231676845601 42.9517 0.1144 1526 +1528 2 -419.9415255500945 -275.89422254380224 42.84 0.1144 1527 +1529 2 -420.1226442236773 -274.76619826831893 42.719 0.1144 1528 +1530 2 -420.3037631933461 -273.6380325717894 42.593 0.1144 1529 +1531 2 -420.48488186692884 -272.51000829630607 42.4665 0.1144 1530 +1532 2 -420.66522464931666 -271.3810631555483 42.3422 0.1144 1531 +1533 2 -420.8463433228993 -270.253038880065 42.2206 0.1144 1532 +1534 2 -421.02753285504826 -269.1249440421016 42.1036 0.1144 1533 +1535 2 -421.208651528631 -267.99691976661825 41.9927 0.1144 1534 +1536 2 -421.38977049829975 -266.8687540700887 41.8897 0.1144 1535 +1537 2 -421.535331993712 -265.7357763028517 41.7956 0.1144 1536 +1538 2 -420.8401663204161 -265.09764052837187 41.725 0.1144 1537 +1539 2 -419.7732234355839 -264.6862031327622 41.6808 0.1144 1538 +1540 2 -418.7055046595568 -264.27384487187805 41.6567 0.1144 1539 +1541 2 -417.63771532104977 -263.86141575242783 41.6472 0.1144 1540 +1542 2 -416.5716935975782 -263.44906104457704 41.6475 0.1144 1541 +1543 2 -415.50475100883216 -263.0374822279211 41.6531 0.1144 1542 +1544 2 -414.4370322328051 -262.625123967037 41.6595 0.1144 1543 +1545 2 -413.3700187854929 -262.21361571286116 41.6662 0.1144 1544 +1546 2 -412.30230000946585 -261.801257451977 41.6727 0.1144 1545 +1547 2 -411.2353574207198 -261.38967863532105 41.6794 0.1144 1546 +1548 2 -410.16763864469283 -260.977320374437 41.6858 0.1144 1547 +1549 2 -409.1007701714602 -260.5641153637918 41.6926 0.1144 1548 +1550 2 -408.0337567241479 -260.152607109616 41.699 0.1144 1549 +1551 2 -406.96681413540193 -259.74102829296004 41.7052 0.1144 1550 +1552 2 -405.8990953593749 -259.32867003207593 41.7116 0.1144 1551 +1553 2 -404.8322233331089 -258.9171620739862 41.7178 0.1144 1552 +1554 2 -403.7644339946018 -258.5047329545359 41.7236 0.1144 1553 +1555 2 -402.6975619683359 -258.09322499644617 41.7292 0.1144 1554 +1556 2 -401.63055207405694 -257.68001968971487 41.7343 0.1144 1555 +1557 2 -400.5629006035628 -257.2692879189061 41.739 0.1144 1556 +1558 2 -399.49596127176403 -256.85615347074105 41.7427 0.1144 1557 +1559 2 -398.42901868301794 -256.44457465408505 41.7452 0.1144 1558 +1560 2 -397.36129990699095 -256.032216393201 41.7463 0.1144 1559 +1561 2 -396.2943573182449 -255.6206375765451 41.7449 0.1144 1560 +1562 2 -395.22663854221787 -255.20827931566097 41.7407 0.1144 1561 +1563 2 -394.1604753977 -254.79592431172406 41.732 0.1144 1562 +1564 2 -393.2477824469422 -254.13392782560268 41.7166 0.1144 1563 +1565 2 -392.7459202488246 -253.1338037412509 41.6926 0.1144 1564 +1566 2 -392.694118459172 -252.00529181194364 41.6573 0.1144 1565 +1567 2 -392.7337069388071 -250.86155626021846 41.61 0.1144 1566 +1568 2 -392.8929779852981 -249.73256700263016 41.5318 0.1144 1567 +1569 2 -393.13233518611514 -248.61753402983652 41.4176 0.1144 1568 +1570 2 -393.3838460104157 -247.50662773079077 41.2773 0.1144 1569 +1571 2 -393.6352895291834 -246.39409494166955 41.123 0.1144 1570 +1572 2 -393.88672979100386 -245.28311778405757 40.9657 0.1144 1571 +1573 2 -393.91661745705017 -244.14579660803986 40.8397 0.1144 1572 +1574 2 -393.86972533840697 -243.00265781541268 40.7537 0.1144 1573 +1575 2 -393.8171037428294 -241.86042626809885 40.7016 0.1144 1574 +1576 2 -394.49023448447076 -241.03345815828007 40.6745 0.1144 1575 +1577 2 -395.46058900857867 -240.43041714181155 40.6636 0.1144 1576 +1578 2 -396.34387022652993 -239.70578332393208 40.6616 0.1144 1577 +1579 2 -396.9912804131285 -238.7688060188236 40.6616 0.1144 1578 +1580 2 -397.61215259331937 -237.80829715584258 40.6616 0.1144 1579 +1581 2 -398.2047796476193 -236.8290614975296 40.6616 0.1144 1580 +1582 2 -398.7908372852044 -235.84663009767098 40.6616 0.1144 1581 +1583 2 -399.41573478370753 -234.88860454145413 40.6616 0.1144 1582 +1584 2 -400.0544023288418 -233.93944666902604 40.6616 0.1144 1583 +1585 2 -400.6445561433053 -232.9594280134515 40.6613 0.1144 1584 +1586 2 -401.0318241599609 -231.88592912976526 40.6613 0.1144 1585 +1587 2 -401.22185058294303 -230.75877203398463 40.6613 0.1144 1586 +1588 2 -400.91272278249943 -229.66847089072516 40.6613 0.1144 1587 +1589 2 -400.651303024949 -228.55479363480123 40.661 0.1144 1588 +1590 2 -400.5339713818102 -227.4171642331425 40.6608 0.1144 1589 +1591 2 -400.42392455102885 -226.2787722641639 40.6605 0.1144 1590 +1592 2 -400.4594809023712 -225.13580608973913 40.6599 0.1144 1591 +1593 2 -400.91465065691375 -224.08684460591354 40.6594 0.1144 1592 +1594 2 -401.37314069713995 -223.03937500109754 40.6585 0.1144 1593 +1595 2 -401.8323393230281 -221.99119977148067 40.6574 0.1144 1594 +1596 2 -402.29160880748253 -220.94295397938367 40.6557 0.1144 1595 +1597 2 -402.5422796920026 -219.82794469347886 40.6532 0.1144 1596 +1598 2 -402.7832698967894 -218.70973315213405 40.6501 0.1144 1597 +1599 2 -403.31600223118284 -217.69798653371035 40.6459 0.1144 1598 +1600 2 -403.8730350025628 -216.69774594684694 40.6386 0.1144 1599 +1601 2 -404.3484801718657 -215.6576657667712 40.6288 0.1144 1600 +1602 2 -404.7567389989241 -214.58908987796926 40.6171 0.1144 1601 +1603 2 -405.09313777923 -213.49526119366413 40.6042 0.1144 1602 +1604 2 -405.27433056832615 -212.36561072419155 40.5902 0.1144 1603 +1605 2 -405.38991583538933 -211.23016602891227 40.4902 0.1144 1604 +1606 2 -451.3827872811541 -281.44622022382805 21.8436 0.1144 803 +1607 2 -450.2677543083605 -281.206863023011 21.6472 0.1144 1606 +1608 2 -449.1518710327725 -280.96835257195505 21.5538 0.1144 1607 +1609 2 -448.0906712448357 -280.5495025629027 21.4722 0.1144 1608 +1610 2 -447.18695384719666 -279.8559878368843 21.4066 0.1144 1609 +1611 2 -446.2840363237275 -279.15193887139105 21.3548 0.1144 1610 +1612 2 -445.30074810717997 -278.5698392465853 21.3139 0.1144 1611 +1613 2 -444.4335498149694 -277.8271155281091 21.2801 0.1144 1612 +1614 2 -443.5014080653568 -277.1667046721799 21.2426 0.1144 1613 +1615 2 -442.50109336298004 -276.6112980947893 21.1904 0.1144 1614 +1616 2 -441.5202952631773 -276.0219204676066 21.1196 0.1144 1615 +1617 2 -440.4411781228197 -275.6499849390718 21.0283 0.1144 1616 +1618 2 -439.3195924081192 -275.43324148569974 20.8918 0.1144 1617 +1619 2 -438.2509013418202 -275.07999544564706 20.665 0.1144 1618 +1620 2 -437.2529956285939 -274.55606023256223 20.3701 0.1144 1619 +1621 2 -436.28844427430624 -273.94090716629194 20.0944 0.1144 1620 +1622 2 -435.2459513499464 -273.4695581738674 19.8336 0.1144 1621 +1623 2 -434.1390508791292 -273.56757938435084 19.5002 0.1144 1622 +1624 2 -433.3917093365627 -274.2762343206594 19.0481 0.1144 1623 +1625 2 -432.99638032026877 -275.3497163274373 18.6789 0.1144 1624 +1626 2 -432.3545347047698 -276.2632292862205 18.3239 0.1144 1625 +1627 2 -431.8801119582772 -277.2540261562249 17.9397 0.1144 1626 +1628 2 -431.71753809518316 -278.37317969307253 17.6247 0.1144 1627 +1629 2 -432.0242735812842 -279.45781896101664 17.3954 0.1144 1628 +1630 2 -432.50184491115675 -280.47564060790955 17.1596 0.1144 1629 +1631 2 -432.1534344265999 -281.53133100487776 16.957 0.1144 1630 +1632 2 -432.2457395780098 -282.666503841508 16.7989 0.1144 1631 +1633 2 -431.87295048973346 -283.74802336313587 16.6681 0.1144 1632 +1634 2 -431.7872670394197 -284.887702601493 16.5262 0.1144 1633 +1635 2 -431.61338955955046 -286.00202413587806 16.3154 0.1144 1634 +1636 2 -431.315861433118 -287.10555087501115 16.1227 0.1144 1635 +1637 2 -430.9302163535045 -288.1806795057199 15.9306 0.1144 1636 +1638 2 -430.760384621889 -289.2877262946754 15.6667 0.1144 1637 +1639 2 -430.55525932272724 -290.29768392826395 15.2658 0.1144 1638 +1640 2 -430.1542079355656 -291.3686790752444 14.9427 0.1144 1639 +1641 2 -429.849398253723 -292.47141275018816 14.686 0.1144 1640 +1642 2 -429.55582814006993 -293.57579630601003 14.4766 0.1144 1641 +1643 2 -429.44908331687327 -294.7104816909167 14.2972 0.1144 1642 +1644 2 -429.3480477427698 -295.82014739407487 14.0802 0.1144 1643 +1645 2 -429.4582160628422 -296.93428580165823 13.8769 0.1144 1644 +1646 2 -429.03213187215744 -297.97206515799974 13.641 0.1144 1645 +1647 2 -428.47192378917356 -298.9691171093841 13.4399 0.1144 1646 +1648 2 -428.18412066140513 -300.02090387943156 13.227 0.1144 1647 +1649 2 -428.2756400567926 -301.1260936777322 12.9677 0.1144 1648 +1650 2 -428.3897999413607 -302.2588373913565 12.7668 0.1144 1649 +1651 2 -427.975849240304 -303.31036005259335 12.6337 0.1144 1650 +1652 2 -427.38362140406673 -304.1326892080936 12.5604 0.1144 1651 +1653 2 -426.55361841161556 -304.9091241908978 12.537 0.1144 1652 +1654 2 -425.46649533872085 -305.2538969049864 12.5661 0.1144 1653 +1655 2 -424.4347000884535 -305.4483128033221 12.6398 0.1144 1654 +1656 2 -424.0725231102989 -306.4934384639462 12.7413 0.1144 1655 +1657 2 -424.1907355531015 -307.6156547480762 12.8696 0.1144 1656 +1658 2 -424.11487540204047 -308.65664222998026 13.089 0.1144 1657 +1659 2 -424.5742474539153 -309.51829625449153 13.4781 0.1144 1658 +1660 2 -425.1602251758909 -310.4991509681715 13.8104 0.1144 1659 +1661 2 -425.83785983262527 -311.40496125294004 14.1128 0.1144 1660 +1662 2 -426.6515800412111 -312.1913430127355 14.4035 0.1144 1661 +1663 2 -427.13671696705956 -313.1080640080106 14.6527 0.1144 1662 +1664 2 -427.1245777903653 -314.2453516323121 14.791 0.1144 1663 +1665 2 -427.52692822400456 -315.25580328803363 14.804 0.1144 1664 +1666 2 -428.1252660354685 -316.1759432737817 14.8235 0.1144 1665 +1667 2 -428.49112786054866 -317.22103755419334 14.8642 0.1144 1666 +1668 2 -428.7866275335938 -318.26845940007496 14.7476 0.1144 1667 +1669 2 -428.824720270354 -319.35897091005836 14.5422 0.1144 1668 +1670 2 -428.7325990535301 -320.5001215974835 14.3338 0.1144 1669 +1671 2 -428.70848163031553 -321.58329035621756 14.0193 0.1144 1670 +1672 2 -428.6624520332372 -322.6963239209373 13.6762 0.1144 1671 +1673 2 -428.36014303325356 -323.75295936825523 13.3031 0.1144 1672 +1674 2 -428.21308690007083 -324.8568011430099 12.9543 0.1144 1673 +1675 2 -428.28346675584226 -325.99433224407994 12.6857 0.1144 1674 +1676 2 -428.3918873926344 -327.132650097545 12.4918 0.1144 1675 +1677 2 -428.3313146164909 -328.2683513913677 12.3858 0.1144 1676 +1678 2 -427.85512730980963 -329.29138870689223 12.2943 0.1144 1677 +1679 2 -428.0089206176715 -330.40724479907294 12.2294 0.1144 1678 +1680 2 -428.4175906794629 -331.4726520031951 12.1617 0.1144 1679 +1681 2 -428.47850638843363 -332.5373311315717 11.9664 0.1144 1680 +1682 2 -428.1962431485031 -333.644991058347 11.829 0.1144 1681 +1683 2 -427.91745569597896 -334.27458231965477 11.2473 0.1144 1682 +1684 2 -427.1224771711859 -334.97267231751886 11.1523 0.1144 1683 +1685 2 -426.0073325174137 -335.1919453463284 11.1123 0.1144 1684 +1686 2 -424.9580336926072 -335.6071545300656 11.0593 0.1144 1685 +1687 2 -423.84788359257226 -335.7374837876881 10.9939 0.1144 1686 +1688 2 -422.7239083222901 -335.54753473716664 10.9179 0.1144 1687 +1689 2 -421.8002921639789 -335.8473241334207 10.6731 0.1144 1688 +1690 2 -421.8083125998201 -335.8667156936704 10.1226 0.1144 1689 +1691 2 -421.92410223141076 -336.9978364702527 9.8152 0.1144 1690 +1692 2 -421.934691481472 -338.1206759591304 9.658 0.1144 1691 +1693 2 -422.0148803162482 -339.23390307018065 9.4321 0.1144 1692 +1694 2 -422.264909017635 -340.3507384647141 9.2543 0.1144 1693 +1695 2 -422.3805436082183 -341.4883643133395 8.9978 0.1144 1694 +1696 2 -421.1681287184741 -335.27727337413035 10.4769 0.1144 1689 +1697 2 -420.54723134332346 -334.3247005950047 10.3271 0.1144 1696 +1698 2 -420.6037616281603 -333.19471841510267 10.2206 0.1144 1697 +1699 2 -420.5447055230197 -332.05240268534766 10.1538 0.1144 1698 +1700 2 -420.186135818464 -330.9692812438764 10.1226 0.1144 1699 +1701 2 -419.34970050699764 -330.1909836724218 10.1226 0.1144 1700 +1702 2 -428.6035197449032 -333.85613777043284 11.7867 0.1144 1682 +1703 2 -429.5810337804289 -333.71746978440024 11.8797 0.1144 1702 +1704 2 -430.55129731211514 -333.12411596155937 11.9854 0.1144 1703 +1705 2 -431.66572982719197 -332.9072456101061 12.0758 0.1144 1704 +1706 2 -432.70771078611125 -332.44103859466156 12.1479 0.1144 1705 +1707 2 -433.7968805843426 -332.672280612082 12.1016 0.1144 1706 +1708 2 -434.84676648647593 -333.1249774228743 12.0521 0.1144 1707 +1709 2 -435.8122047126503 -333.3503035230966 12.0137 0.1144 1708 +1710 2 -436.91089965142106 -333.6252647776754 11.9759 0.1144 1709 +1711 2 -438.0011569174212 -333.7423817872585 11.9873 0.1144 1710 +1712 2 -439.0236616354632 -333.32464162689337 12.0894 0.1144 1711 +1713 2 -440.08763939235894 -333.1934378814011 12.2621 0.1144 1712 +1714 2 -440.82048669422363 -334.0039041374227 12.4893 0.1144 1713 +1715 2 -441.8577470165287 -333.9348699881082 12.7862 0.1144 1714 +1716 2 -442.9356268744608 -333.7494601397606 13.1583 0.1144 1715 +1717 2 -444.0631627583625 -333.79233811212373 13.5007 0.1144 1716 +1718 2 -445.187679866227 -333.72348664793935 13.7999 0.1144 1717 +1719 2 -446.3281148619235 -333.81970759467504 13.9741 0.1144 1718 +1720 2 -446.0446652663783 -334.34569772460645 13.9904 0.1144 1719 +1721 2 -445.3140414858139 -335.20889083236034 13.8858 0.1144 1720 +1722 2 -444.70775255029895 -336.16136919257235 13.6757 0.1144 1721 +1723 2 -444.2461648670154 -337.2023269153647 13.4182 0.1144 1722 +1724 2 -443.6648482394712 -338.1831418920757 13.1387 0.1144 1723 +1725 2 -443.0465309248975 -339.07167247596027 12.7609 0.1144 1724 +1726 2 -442.1673831906746 -339.7808999862916 12.4279 0.1144 1725 +1727 2 -441.20189747769285 -340.38883024382784 12.1254 0.1144 1726 +1728 2 -440.25683660897135 -340.90049510915617 11.7377 0.1144 1727 +1729 2 -439.26795464946963 -341.4703339549468 11.4231 0.1144 1728 +1730 2 -438.28462995290045 -342.05397304815176 11.1737 0.1144 1729 +1731 2 -437.15822579918347 -342.2473423386019 10.9774 0.1144 1730 +1732 2 -436.16134758891576 -342.7524640307646 10.7338 0.1144 1731 +1733 2 -435.6641459870432 -343.748021546479 10.4413 0.1144 1732 +1734 2 -434.97969099658457 -344.6137861946579 10.2056 0.1144 1733 +1735 2 -433.921463992437 -345.03788625088623 9.9961 0.1144 1734 +1736 2 -432.99152163556425 -345.69114585693427 9.8092 0.1144 1735 +1737 2 -432.23579419291053 -346.5211937365292 9.6091 0.1144 1736 +1738 2 -431.4803647068697 -347.24270111114157 9.2907 0.1144 1737 +1739 2 -430.4665751882696 -347.71950306371366 8.9829 0.1144 1738 +1740 2 -429.41575448577055 -348.11858699122683 8.7411 0.1144 1739 +1741 2 -428.48812026079906 -348.7839429821533 8.5592 0.1144 1740 +1742 2 -427.44877884812456 -349.13772529926325 8.4457 0.1144 1741 +1743 2 -426.4362362937211 -349.39044723246656 8.3788 0.1144 1742 +1744 2 -425.68457453107635 -350.23747422411316 8.302 0.1144 1743 +1745 2 -424.97001530908324 -351.1281367686633 8.2219 0.1144 1744 +1746 2 -424.1553780603831 -351.92807991853726 8.1173 0.1144 1745 +1747 2 -423.2142104555686 -352.50530187727395 7.937 0.1144 1746 +1748 2 -422.13227498455524 -352.6689242979961 7.6985 0.1144 1747 +1749 2 -421.0478454395631 -352.9092627509084 7.4834 0.1144 1748 +1750 2 -420.34157352098254 -353.72562556058585 7.3042 0.1144 1749 +1751 2 -419.59884319462617 -354.56220604823216 7.1462 0.1144 1750 +1752 2 -418.64379066176974 -355.18543168913965 7.0021 0.1144 1751 +1753 2 -417.69761182841 -355.8257879300728 6.8641 0.1144 1752 +1754 2 -416.6685274246251 -356.279011153095 6.6664 0.1144 1753 +1755 2 -415.61695096478667 -356.6675575841862 6.3772 0.1144 1754 +1756 2 -414.88316974589935 -357.4514772374723 5.999 0.1144 1755 +1757 2 -413.9910654591763 -358.13479745641087 5.6528 0.1144 1756 +1758 2 -412.9764791212532 -358.65444850557753 5.3437 0.1144 1757 +1759 2 -412.57245277879855 -359.5927839011598 4.499 0.1144 1758 +1760 2 -446.54094550479 -333.3849280097622 14.6213 0.1144 1719 +1761 2 -447.2505989048932 -332.5070538549303 14.9028 0.1144 1760 +1762 2 -448.19708285253216 -332.09247794286847 15.0777 0.1144 1761 +1763 2 -449.24268865671286 -332.2928695401563 15.3219 0.1144 1762 +1764 2 -450.37120364086707 -332.2733826076234 15.4991 0.1144 1763 +1765 2 -450.86068085062266 -331.42099835675424 15.4585 0.1144 1764 +1766 2 -451.59374411720694 -330.57471024553865 15.3638 0.1144 1765 +1767 2 -452.5689573855133 -329.9813667857117 15.247 0.1144 1766 +1768 2 -453.34569577242536 -329.14662526985353 15.1066 0.1144 1767 +1769 2 -454.1530718956569 -328.3361310035965 14.9613 0.1144 1768 +1770 2 -455.01047000729073 -327.5791281448392 14.8273 0.1144 1769 +1771 2 -455.8574989873848 -326.8100120242951 14.6983 0.1144 1770 +1772 2 -456.80101834274467 -326.2578266242152 14.43 0.1144 1771 +1773 2 -457.82128648773823 -325.7600371181875 14.1188 0.1144 1772 +1774 2 -458.79087163454574 -325.15296397342615 13.8231 0.1144 1773 +1775 2 -459.7426246077463 -324.51834698026903 13.5393 0.1144 1774 +1776 2 -460.70935347327617 -324.12721873972464 13.1044 0.1144 1775 +1777 2 -460.73027909313504 -323.8255394258274 13.6035 0.1144 1776 +1778 2 -460.5818905638589 -322.796315419899 14.3277 0.1144 1777 +1779 2 -460.11487716035003 -321.7679799634729 14.587 0.1144 1778 +1780 2 -459.4898866631679 -320.8453092971829 14.8881 0.1144 1779 +1781 2 -459.69914920119174 -319.78437781486195 15.2147 0.1144 1780 +1782 2 -460.04204979659346 -318.6922598030734 15.4566 0.1144 1781 +1783 2 -460.5481528360714 -317.6668102414511 15.7461 0.1144 1782 +1784 2 -460.65184725606355 -324.54125169129 12.6297 0.1144 1776 +1785 2 -460.77012394955204 -325.6327796083757 12.195 0.1144 1784 +1786 2 -460.60436470792615 -326.75355282531814 11.8461 0.1144 1785 +1787 2 -460.40647684734415 -327.78537525899276 11.4273 0.1144 1786 +1788 2 -460.20423926618724 -328.90211229642273 11.1138 0.1144 1787 +1789 2 -460.0013467849402 -330.02768681685814 10.9152 0.1144 1788 +1790 2 -459.65357382537894 -331.11661264013446 10.7931 0.1144 1789 +1791 2 -459.9060926435105 -332.2261700322912 10.7222 0.1144 1790 +1792 2 -460.1602240356701 -333.34230690809045 10.6877 0.1144 1791 +1793 2 -459.9928181701134 -334.47276406171335 10.6848 0.1144 1792 +1794 2 -434.66153757438224 -333.88579173670166 11.2473 0.1144 1708 +1795 2 -434.2477289946585 -334.86943229572046 11.2679 0.1144 1794 +1796 2 -433.9179338830704 -335.91632281261934 11.2649 0.1144 1795 +1797 2 -433.4750840584196 -336.85620327459674 11.3747 0.1144 1796 +1798 2 -432.5994092963275 -337.4602203364707 11.3188 0.1144 1797 +1799 2 -431.60644477990843 -338.021141069848 11.2483 0.1144 1798 +1800 2 -430.551507268489 -338.46144079389984 11.1745 0.1144 1799 +1801 2 -429.4250254462253 -338.6581333308947 11.0996 0.1144 1800 +1802 2 -428.36136642356985 -339.00861203712907 10.9457 0.1144 1801 +1803 2 -427.256596714945 -339.30476946301104 10.6848 0.1144 1802 +1804 2 -426.89339168040726 -302.9465492761965 11.2492 0.1144 1651 +1805 2 -426.8339943661223 -303.5208090162582 10.65 0.1144 1804 +1806 2 -427.8731152321154 -303.7114289413912 10.0722 0.1144 1805 +1807 2 -428.96898400132136 -303.41115165174193 9.6254 0.1144 1806 +1808 2 -430.02237594815944 -302.9660403551691 9.3078 0.1144 1807 +1809 2 -431.0555706469703 -302.47471259862664 9.1085 0.1144 1808 +1810 2 -431.98699039306007 -303.1084639588571 8.9978 0.1144 1809 +1811 2 -456.0027198179703 -281.7309578842584 20.8074 0.1144 799 +1812 2 -455.81146568130396 -282.32997319725797 20.5961 0.1144 1811 +1813 2 -455.62628132771215 -283.44101836068955 20.4994 0.1144 1812 +1814 2 -455.2527193091021 -284.5202028065801 20.4292 0.1144 1813 +1815 2 -455.08131832601646 -285.6337517067175 20.3843 0.1144 1814 +1816 2 -455.1824606643455 -286.76972086448427 20.3614 0.1144 1815 +1817 2 -455.21086215625843 -287.8958503442765 20.4 0.1144 1816 +1818 2 -454.5603487150952 -288.72767414344673 20.4615 0.1144 1817 +1819 2 -453.5972588694892 -289.3395692237429 20.4987 0.1144 1818 +1820 2 -452.6857730894442 -290.02610156294895 20.5033 0.1144 1819 +1821 2 -451.6110544249686 -290.2552173245799 20.4792 0.1144 1820 +1822 2 -450.58452444512926 -290.26515968300464 20.2713 0.1144 1821 +1823 2 -450.3681900046207 -289.6377845082887 20.1001 0.1144 1822 +1824 2 -450.2759486057105 -288.5059352142892 19.977 0.1144 1823 +1825 2 -450.13187979832617 -287.37235106269793 19.9082 0.1144 1824 +1826 2 -449.5068424255527 -286.4382958541388 19.8922 0.1144 1825 +1827 2 -449.49790611121654 -285.3365316541913 19.9249 0.1144 1826 +1828 2 -449.805182222915 -284.2378336605736 20.0009 0.1144 1827 +1829 2 -450.10824698023805 -283.19173570967763 20.203 0.1144 1828 +1830 2 -449.94150698470344 -282.07903449915926 20.4167 0.1144 1829 +1831 2 -449.71255682919394 -280.95899053739157 20.5881 0.1144 1830 +1832 2 -449.47865693706444 -279.83893621261007 20.719 0.1144 1831 +1833 2 -449.3718627903477 -278.700551053612 20.8145 0.1144 1832 +1834 2 -449.55298146393045 -277.5725267781287 20.8796 0.1144 1833 +1835 2 -450.04537524841567 -276.5429472858114 20.9185 0.1144 1834 +1836 2 -450.5700566500985 -275.52637547490565 20.9544 0.1144 1835 +1837 2 -451.1924640318569 -274.57562792106575 21.0379 0.1144 1836 +1838 2 -451.9594615395696 -273.73266355458134 21.1466 0.1144 1837 +1839 2 -452.6982373121941 -272.85980013010817 21.2324 0.1144 1838 +1840 2 -453.51125843383284 -272.05497454914706 21.2958 0.1144 1839 +1841 2 -454.42924277202656 -271.3717085139667 21.3385 0.1144 1840 +1842 2 -454.8683008903063 -270.3177635397044 21.3624 0.1144 1841 +1843 2 -455.1060384110285 -269.19954518837903 21.3698 0.1144 1842 +1844 2 -455.1779381947499 -268.05750363436243 21.3699 0.1144 1843 +1845 2 -449.8561975501092 -290.4027937412547 19.3615 0.1144 1822 +1846 2 -448.7329689100965 -290.56548117855493 19.1715 0.1144 1845 +1847 2 -447.61380219495925 -290.78071526909116 19.1026 0.1144 1846 +1848 2 -446.590318672751 -291.26067891330604 19.0362 0.1144 1847 +1849 2 -445.68045257280073 -291.9503966310439 18.9718 0.1144 1848 +1850 2 -444.75287578853477 -292.5883169389905 18.8598 0.1144 1849 +1851 2 -443.7696589612956 -293.15420783892944 18.7353 0.1144 1850 +1852 2 -442.67641641445937 -293.3484243773271 18.6362 0.1144 1851 +1853 2 -441.53254575348205 -293.3395948272164 18.5526 0.1144 1852 +1854 2 -440.42059654516936 -293.5524398603575 18.4819 0.1144 1853 +1855 2 -439.48096719676937 -294.17173798535487 18.4218 0.1144 1854 +1856 2 -439.71439281546475 -295.1130343311125 18.3701 0.1144 1855 +1857 2 -439.4995193289366 -296.15203370781455 18.2516 0.1144 1856 +1858 2 -439.2448331930319 -297.2597513713814 18.1334 0.1144 1857 +1859 2 -439.2456979426156 -298.40031891966964 18.0288 0.1144 1858 +1860 2 -439.49170458263745 -299.51311537592983 17.9384 0.1144 1859 +1861 2 -439.83477017724283 -300.6050432113649 17.8622 0.1144 1860 +1862 2 -439.9772193045323 -301.7354419844245 17.8001 0.1144 1861 +1863 2 -440.0621892149601 -302.86168989866087 17.6924 0.1144 1862 +1864 2 -439.4252255323618 -303.8075986400577 17.4334 0.1144 1863 +1865 2 -497.5391301192761 -258.85719382471666 14.6213 0.1144 753 +1866 2 -497.9123713021686 -259.89014129162535 15.1749 0.1144 1865 +1867 2 -497.78641810203885 -260.9115784171388 15.459 0.1144 1866 +1868 2 -497.26251288763706 -261.9289296722727 15.7072 0.1144 1867 +1869 2 -496.9966418654876 -262.9751054938157 15.9687 0.1144 1868 +1870 2 -496.94419789270177 -264.0784382449467 16.2692 0.1144 1869 +1871 2 -496.47290989401597 -265.09179843377143 16.5135 0.1144 1870 +1872 2 -496.49580525190765 -266.14593275755897 16.6778 0.1144 1871 +1873 2 -496.91657525161077 -267.20733477722433 16.7783 0.1144 1872 +1874 2 -496.8221564679997 -268.29756885452224 16.8398 0.1144 1873 +1875 2 -496.3054723134557 -269.3108339997054 16.8665 0.1144 1874 +1876 2 -495.6999928208519 -270.28198171454403 16.8708 0.1144 1875 +1877 2 -495.47367359621546 -271.3840311910014 16.8708 0.1144 1876 +1878 2 -495.9770846158617 -272.387411216365 16.8708 0.1144 1877 +1879 2 -496.1632532763956 -273.50814342783883 16.8708 0.1144 1878 +1880 2 -499.8461549700106 -234.56740802434177 16.8708 0.1144 39 +1881 2 -500.8911312011347 -235.03473169845404 16.9056 0.1144 1880 +1882 2 -501.9133790055033 -235.51650350798997 16.889 0.1144 1881 +1883 2 -503.00323300222107 -235.8262359826166 16.8876 0.1144 1882 +1884 2 -504.08476614380993 -236.19251970276375 16.9374 0.1144 1883 +1885 2 -505.1819021941244 -236.46903333190443 17.0928 0.1144 1884 +1886 2 -505.951153922107 -237.25129147279893 17.3213 0.1144 1885 +1887 2 -505.6102316610656 -238.20906304364783 17.7418 0.1144 1886 +1888 2 -506.01029183608466 -239.13133349550225 18.1976 0.1144 1887 +1889 2 -507.06296246064267 -239.4360383628617 18.6026 0.1144 1888 +1890 2 -508.1571674329233 -239.15364743057754 18.9642 0.1144 1889 +1891 2 -509.1807832491081 -239.0157830738484 19.3301 0.1144 1890 +1892 2 -509.7567000651851 -239.83730521655656 19.7322 0.1144 1891 +1893 2 -510.46421695951483 -240.3176402706991 20.27 0.1144 1892 +1894 2 -511.2646232494956 -239.76275107368843 20.8372 0.1144 1893 +1895 2 -511.24932850989626 -240.110616350686 21.4446 0.1144 1894 +1896 2 -510.6010783835172 -241.0434906689355 22.013 0.1144 1895 +1897 2 -510.60526663826073 -241.74495090196532 22.6936 0.1144 1896 +1898 2 -510.2510756043733 -242.454428957661 23.4853 0.1144 1897 +1899 2 -511.2388935808947 -242.0212719246335 24.1936 0.1144 1898 +1900 2 -512.3636747975695 -241.82627288716083 24.7996 0.1144 1899 +1901 2 -512.8255344095286 -242.61432214250027 25.4274 0.1144 1900 +1902 2 -513.4100479906033 -243.55147449593025 26.0317 0.1144 1901 +1903 2 -513.4191121060246 -244.6597443600931 26.5301 0.1144 1902 +1904 2 -514.098407006651 -245.54936534005202 26.9819 0.1144 1903 +1905 2 -514.9310069931022 -246.20065822544345 27.4943 0.1144 1904 +1906 2 -515.065620710729 -245.29817485328263 28.8448 0.1144 1905 +1907 2 -515.2870406273701 -244.20580250352515 29.8346 0.1144 1906 +1908 2 -515.4567781096166 -243.10999853970654 30.2476 0.1144 1907 +1909 2 -515.7146423158858 -242.03792578978462 30.7432 0.1144 1908 +1910 2 -515.4179798610852 -241.20814945370867 31.3936 0.1144 1909 +1911 2 -514.8884523252807 -240.25011110435895 31.9928 0.1144 1910 +1912 2 -514.3031834850531 -239.2684093448318 32.4624 0.1144 1911 +1913 2 -513.5024167741205 -238.4756200193094 32.8549 0.1144 1912 +1914 2 -512.4539778773647 -238.51387155221062 33.2293 0.1144 1913 +1915 2 -511.35932563200083 -238.19932069508252 33.7417 0.1144 1914 +1916 2 -515.504883893823 -246.44291295257793 27.9309 0.1144 1905 +1917 2 -516.481649865333 -247.03305995706094 28.2579 0.1144 1916 +1918 2 -517.3238249227618 -247.77177147899954 28.5527 0.1144 1917 +1919 2 -517.07190319237 -247.93062626097483 28.7106 0.1144 1918 +1920 2 -516.0951521658358 -248.44788164486593 28.7048 0.1144 1919 +1921 2 -514.9695579532164 -248.6259083802675 28.6532 0.1144 1920 +1922 2 -514.2266140031888 -249.1930094357396 28.5905 0.1144 1921 +1923 2 -514.4378797179319 -250.31626907080803 28.5303 0.1144 1922 +1924 2 -514.3732616917209 -251.42523320038512 28.4572 0.1144 1923 +1925 2 -514.3240338904222 -252.51223848260744 28.3766 0.1144 1924 +1926 2 -514.6177853820008 -253.61785168404612 28.2677 0.1144 1925 +1927 2 -514.8419977844164 -254.73795643745228 28.1086 0.1144 1926 +1928 2 -515.1486422780958 -255.83228289902394 27.898 0.1144 1927 +1929 2 -515.3316124383234 -256.92712824904663 27.6396 0.1144 1928 +1930 2 -515.1781626179901 -257.5723261742136 27.1391 0.1144 1929 +1931 2 -515.5814814037113 -257.7487455809817 26.3073 0.1144 1930 +1932 2 -515.5759182706561 -258.0754886934578 25.6311 0.1144 1931 +1933 2 -515.6269839386384 -259.21785840487075 25.1026 0.1144 1932 +1934 2 -514.7306036051824 -259.61316444807426 24.7123 0.1144 1933 +1935 2 -513.9203339503382 -260.2521081752041 24.3126 0.1144 1934 +1936 2 -513.983638420618 -261.32414623145144 24.0539 0.1144 1935 +1937 2 -514.1332917308571 -262.4585198941987 23.9182 0.1144 1936 +1938 2 -513.8374066753222 -263.5540597492067 23.8354 0.1144 1937 +1939 2 -513.5503351198179 -264.66170960905424 23.8048 0.1144 1938 +1940 2 -513.2753501783503 -265.7717182315281 23.8246 0.1144 1939 +1941 2 -513.1136699406085 -266.90310661343926 23.8976 0.1144 1940 +1942 2 -513.3985204927681 -268.0045999511107 23.9997 0.1144 1941 +1943 2 -513.9384640357035 -268.9861361045162 24.2028 0.1144 1942 +1944 2 -514.5261420671818 -269.96543873972035 24.4091 0.1144 1943 +1945 2 -515.2620358831925 -270.8406117863559 24.6117 0.1144 1944 +1946 2 -515.9889806482489 -271.3631311721753 25.0503 0.1144 1945 +1947 2 -516.2485941588993 -271.38064531182863 25.4025 0.1144 1946 +1948 2 -517.391641258818 -271.411322785117 25.677 0.1144 1947 +1949 2 -518.5315246086197 -271.3319675783273 25.8851 0.1144 1948 +1950 2 -519.6746260943971 -271.30289451151623 26.051 0.1144 1949 +1951 2 -520.8142211503131 -271.3950124713929 26.1857 0.1144 1950 +1952 2 -521.9555102039376 -271.4548191271832 26.2984 0.1144 1951 +1953 2 -523.05202586478 -271.2508513465723 26.5024 0.1144 1952 +1954 2 -524.0496630893342 -270.7547115193224 26.7871 0.1144 1953 +1955 2 -525.1486693651078 -270.5094538266594 27.0786 0.1144 1954 +1956 2 -526.0404967498874 -271.10670621531693 27.422 0.1144 1955 +1957 2 -526.88504043477 -271.8623932962739 27.76 0.1144 1956 +1958 2 -527.8098804951169 -272.53162771916135 28.0314 0.1144 1957 +1959 2 -528.7160708365061 -273.22606686348763 28.2632 0.1144 1958 +1960 2 -529.5995799228175 -273.9461972644606 28.474 0.1144 1959 +1961 2 -530.4384244255345 -274.72209571159215 28.6625 0.1144 1960 +1962 2 -531.3031358579476 -275.4705418009361 28.8207 0.1144 1961 +1963 2 -532.2539302873789 -276.1043337249637 28.9696 0.1144 1962 +1964 2 -533.1285313282046 -276.82373836728016 29.1838 0.1144 1963 +1965 2 -534.0055113594979 -277.555168831995 29.3782 0.1144 1964 +1966 2 -534.9132540754492 -278.25116686477764 29.563 0.1144 1965 +1967 2 -535.7166125171773 -278.5828562738703 29.9986 0.1144 1966 +1968 2 -536.803170009086 -278.9135122533669 30.3657 0.1144 1967 +1969 2 -537.9403013939069 -279.0340508100835 30.9299 0.1144 1968 +1970 2 -515.7099355117382 -271.33900024202944 25.8686 0.1144 1946 +1971 2 -514.6020146765846 -271.58664343905434 26.0065 0.1144 1970 +1972 2 -513.7019098857754 -272.27482595522457 26.0716 0.1144 1971 +1973 2 -512.6349003766531 -272.63823772917067 26.1834 0.1144 1972 +1974 2 -511.5662404884664 -273.0469009809815 26.2748 0.1144 1973 +1975 2 -510.5281905984905 -273.526834128327 26.3435 0.1144 1974 +1976 2 -509.58285525794463 -274.1695963035638 26.3911 0.1144 1975 +1977 2 -508.53509468955264 -274.6268816535617 26.4195 0.1144 1976 +1978 2 -507.4214951021754 -274.8849781645674 26.4306 0.1144 1977 +1979 2 -506.4083698503065 -275.4160167168643 26.4312 0.1144 1978 +1980 2 -505.2987582743916 -275.69441558646645 26.4312 0.1144 1979 +1981 2 -515.8541162157342 -257.7274667353082 24.7439 0.1144 1931 +1982 2 -516.6084721500533 -257.11343757935754 24.8861 0.1144 1981 +1983 2 -516.896380388391 -256.01144633787817 24.927 0.1144 1982 +1984 2 -517.0370725744907 -254.90759123924857 25.0368 0.1144 1983 +1985 2 -517.3515692478607 -253.83881904535536 25.1889 0.1144 1984 +1986 2 -517.355462183126 -252.72244456291006 25.2955 0.1144 1985 +1987 2 -517.1871362613131 -251.59043597458322 25.3367 0.1144 1986 +1988 2 -517.6228333280117 -250.58824429328155 25.2522 0.1144 1987 +1989 2 -518.0974045076314 -249.56032454666976 25.0767 0.1144 1988 +1990 2 -518.5534076880601 -248.51857731272153 24.8403 0.1144 1989 +1991 2 -519.0086314242607 -247.47760626605424 24.5758 0.1144 1990 +1992 2 -519.5712923171393 -246.49109536412513 24.3156 0.1144 1991 +1993 2 -520.2429863599021 -245.57354366916897 24.0783 0.1144 1992 +1994 2 -520.7046413487185 -244.53421243645198 23.8907 0.1144 1993 +1995 2 -520.4188999299674 -243.452940531883 23.764 0.1144 1994 +1996 2 -520.0514224760122 -242.36895191070906 23.6859 0.1144 1995 +1997 2 -519.9219908949617 -241.23532769350714 23.6435 0.1144 1996 +1998 2 -519.9252323891843 -240.09236457392922 23.6248 0.1144 1997 +1999 2 -520.1710240995644 -238.9774157835768 23.6195 0.1144 1998 +2000 2 -520.840315761057 -238.059010528879 23.6191 0.1144 1999 +2001 2 -520.9809779484738 -236.93570988834193 23.6191 0.1144 2000 +2002 2 -520.5415285272163 -235.87992562716138 23.6191 0.1144 2001 +2003 2 -517.9112121602087 -248.45090601889902 30.7392 0.1144 1918 +2004 2 -518.6424264581036 -249.26455084347177 31.7153 0.1144 2003 +2005 2 -519.3857570726321 -250.10014139362454 32.1236 0.1144 2004 +2006 2 -519.9742654751497 -251.0543434215863 32.5931 0.1144 2005 +2007 2 -520.7371504972886 -251.8041319604398 33.1649 0.1144 2006 +2008 2 -521.2292513862651 -252.80579124635915 33.7047 0.1144 2007 +2009 2 -520.9018213490974 -253.87135437483175 34.1863 0.1144 2008 +2010 2 -521.6176016013355 -254.72788836160976 34.6923 0.1144 2009 +2011 2 -522.153516771112 -255.6746263511315 35.2428 0.1144 2010 +2012 2 -522.8192987218368 -256.4663552467068 35.8431 0.1144 2011 +2013 2 -523.1868144790147 -257.46450099669823 36.505 0.1144 2012 +2014 2 -523.9554082520604 -258.22328176347844 37.1353 0.1144 2013 +2015 2 -524.8689247638767 -258.8634303264221 37.739 0.1144 2014 +2016 2 -525.2310931831745 -259.7475083071813 38.3841 0.1144 2015 +2017 2 -525.1900712616081 -260.7991046422601 39.0684 0.1144 2016 +2018 2 -524.7026277119293 -261.79468258791604 39.6323 0.1144 2017 +2019 2 -524.4188292704312 -262.8925812055503 40.0652 0.1144 2018 +2020 2 -524.6358047324536 -263.95680924919515 40.5031 0.1144 2019 +2021 2 -525.3677611677268 -264.7874969383191 40.9069 0.1144 2020 +2022 2 -526.4681904659029 -265.044642694099 41.6147 0.1144 2021 +2023 2 -512.6701990336038 -241.8972719204193 24.7439 0.1144 1900 +2024 2 -513.7697916489466 -242.14875905783106 25.3217 0.1144 2023 +2025 2 -514.8574304989305 -242.30066031525098 25.6046 0.1144 2024 +2026 2 -515.9941415919752 -242.25043133010195 25.9138 0.1144 2025 +2027 2 -517.1209489584597 -242.26976106978466 26.2394 0.1144 2026 +2028 2 -518.1769403294169 -242.10290234371973 26.5639 0.1144 2027 +2029 2 -519.2067941105022 -241.6537112489903 26.8922 0.1144 2028 +2030 2 -520.2595322992083 -241.52085762262 27.3005 0.1144 2029 +2031 2 -521.3570476358302 -241.61621089146655 27.6898 0.1144 2030 +2032 2 -522.4908487620256 -241.77379495232995 27.9977 0.1144 2031 +2033 2 -523.6092664732892 -241.95008517648333 28.2836 0.1144 2032 +2034 2 -524.6177542979544 -242.4181809866568 28.5373 0.1144 2033 +2035 2 -525.6554694036099 -242.8749535443859 28.7353 0.1144 2034 +2036 2 -526.7232691051308 -243.28243292721623 28.891 0.1144 2035 +2037 2 -527.7040977018029 -243.8572441866312 29.0531 0.1144 2036 +2038 2 -528.7426363685171 -244.29216882118249 29.2561 0.1144 2037 +2039 2 -529.8405581748538 -244.5986654886528 29.4711 0.1144 2038 +2040 2 -530.8859003684104 -244.89119274955385 29.7794 0.1144 2039 +2041 2 -531.9284981072533 -245.3124786915926 30.074 0.1144 2040 +2042 2 -532.9832833173823 -245.75549837568502 30.3176 0.1144 2041 +2043 2 -534.1049032840858 -245.9221079201052 30.518 0.1144 2042 +2044 2 -535.2052582646481 -246.21475035850318 30.69 0.1144 2043 +2045 2 -536.3206337150859 -246.2567543411832 30.903 0.1144 2044 +2046 2 -537.4350192980567 -246.43381394263704 31.1363 0.1144 2045 +2047 2 -538.5377967937447 -246.71769330962906 31.3788 0.1144 2046 +2048 2 -539.5016871382484 -247.2770541446655 31.6638 0.1144 2047 +2049 2 -540.5507496814234 -247.7177283900067 31.908 0.1144 2048 +2050 2 -541.6632724036169 -247.97398022434817 32.1 0.1144 2049 +2051 2 -542.684807773204 -248.45829613228676 32.2941 0.1144 2050 +2052 2 -543.7004755957436 -248.97569242552603 32.4719 0.1144 2051 +2053 2 -544.7747471136776 -249.36543693896525 32.6108 0.1144 2052 +2054 2 -545.8735091558808 -249.67589517224826 32.7387 0.1144 2053 +2055 2 -546.9591117326124 -250.0235904632627 32.8745 0.1144 2054 +2056 2 -548.083147498447 -250.21841868792424 33.0 0.1144 2055 +2057 2 -549.2252734370052 -250.25001347345383 33.0901 0.1144 2056 +2058 2 -550.3011983888505 -250.626821366148 33.1545 0.1144 2057 +2059 2 -551.4402544224599 -250.60488162372033 33.2024 0.1144 2058 +2060 2 -552.5666285209791 -250.7973812865389 33.2371 0.1144 2059 +2061 2 -553.64338008873 -251.18465611317498 33.2693 0.1144 2060 +2062 2 -554.737927721711 -251.51539953206 33.3043 0.1144 2061 +2063 2 -555.8382385854429 -251.8291137063548 33.3491 0.1144 2062 +2064 2 -556.9556911125012 -252.06112204622875 33.4211 0.1144 2063 +2065 2 -558.0739195307542 -252.29405125137728 33.5107 0.1144 2064 +2066 2 -559.1914426202927 -252.5261304498174 33.7417 0.1144 2065 +2067 2 -496.1723372744834 -233.2338175062175 18.4423 0.1144 35 +2068 2 -496.158669410116 -234.3582325583596 18.6548 0.1144 2067 +2069 2 -495.65986174810973 -235.34409932741298 18.8475 0.1144 2068 +2070 2 -494.9147389053105 -236.2088884283728 18.9741 0.1144 2069 +2071 2 -494.9998817300268 -237.2525464515774 19.0313 0.1144 2070 +2072 2 -495.193321582957 -238.3790214638606 19.0642 0.1144 2071 +2073 2 -494.7300910308764 -239.39409558214896 19.0757 0.1144 2072 +2074 2 -494.4697198309541 -240.48150733408613 19.0042 0.1144 2073 +2075 2 -494.2587496752607 -241.5812554886227 19.0248 0.1144 2074 +2076 2 -494.01776272742103 -242.69791139845844 19.0502 0.1144 2075 +2077 2 -494.2532250610402 -243.81471629612255 19.0757 0.1144 2076 +2078 2 -494.565655974173 -244.91471173907632 19.0997 0.1144 2077 +2079 2 -494.3416345184239 -246.0338073370321 19.1213 0.1144 2078 +2080 2 -494.06506720371146 -247.12281152914187 19.1398 0.1144 2079 +2081 2 -494.6050339353494 -248.1270459085197 19.1537 0.1144 2080 +2082 2 -494.8189497614512 -249.09906062000462 19.2078 0.1144 2081 +2083 2 -494.3509860056831 -250.04447465802568 19.1646 0.1144 2082 +2084 2 -494.4239064068238 -251.18441524643265 19.1453 0.1144 2083 +2085 2 -494.50722643637346 -252.32190272885865 19.1507 0.1144 2084 +2086 2 -494.5193272011134 -253.4658172105804 19.1609 0.1144 2085 +2087 2 -494.6261954633436 -254.60257617558915 19.1781 0.1144 2086 +2088 2 -494.7775490830852 -255.73539775986055 19.2057 0.1144 2087 +2089 2 -494.77028552749766 -256.874321941165 19.2515 0.1144 2088 +2090 2 -494.6489707835001 -258.0106738817578 19.2993 0.1144 2089 +2091 2 -494.77933734797256 -259.1030049299605 19.382 0.1144 2090 +2092 2 -494.98908168320946 -260.1761273991298 19.5166 0.1144 2091 +2093 2 -494.92603270636846 -261.3124599061537 19.6528 0.1144 2092 +2094 2 -494.79178815160634 -262.44390572877046 19.7554 0.1144 2093 +2095 2 -494.48126616582385 -263.5393442283429 19.8003 0.1144 2094 +2096 2 -494.34811864757194 -264.5858686372237 19.7051 0.1144 2095 +2097 2 -494.3320521570681 -265.67386258843993 19.5149 0.1144 2096 +2098 2 -493.62460113452505 -266.27660550271 19.3972 0.1144 2097 +2099 2 -492.8747858539358 -267.0184893514322 19.2478 0.1144 2098 +2100 2 -492.91619858029355 -268.11063416147147 19.0674 0.1144 2099 +2101 2 -493.129023479579 -269.2322000009317 18.9147 0.1144 2100 +2102 2 -493.28681160888374 -270.3651057676442 18.8173 0.1144 2101 +2103 2 -493.1518317267239 -271.4762560416451 18.8324 0.1144 2102 +2104 2 -492.668342434691 -272.50825834517417 18.8451 0.1144 2103 +2105 2 -492.52518687358224 -273.6403926195974 18.858 0.1144 2104 +2106 2 -492.27936486843316 -274.73603728908853 18.7885 0.1144 2105 +2107 2 -492.0173871101906 -275.8477702040399 18.7252 0.1144 2106 +2108 2 -491.79745827828674 -276.97097559883525 18.6678 0.1144 2107 +2109 2 -491.69473551645524 -278.10969992201524 18.6173 0.1144 2108 +2110 2 -491.61477473309526 -279.25172459912363 18.5879 0.1144 2109 +2111 2 -491.74901137277243 -280.38691451476245 18.5776 0.1144 2110 +2112 2 -492.1083537115757 -281.47251245301743 18.5816 0.1144 2111 +2113 2 -492.5906927932249 -282.5097188501795 18.5819 0.1144 2112 +2114 2 -493.4922405381918 -282.3481936399334 19.5042 0.1144 2113 +2115 2 -494.51545995158955 -281.9943775690068 20.2144 0.1144 2114 +2116 2 -495.5775361028136 -281.65690634208363 20.518 0.1144 2115 +2117 2 -496.6540712506618 -281.3032018956207 20.8236 0.1144 2116 +2118 2 -497.6776593852528 -280.80704568964893 21.078 0.1144 2117 +2119 2 -498.74952458372655 -280.4210166152246 21.266 0.1144 2118 +2120 2 -499.6261653242965 -279.72712810690854 21.3927 0.1144 2119 +2121 2 -500.1726469792932 -278.73414864551376 21.4726 0.1144 2120 +2122 2 -500.56236099586306 -277.6744434953474 21.5747 0.1144 2121 +2123 2 -500.94482395389207 -276.5993789132242 21.6463 0.1144 2122 +2124 2 -501.3879142004646 -275.54466456166153 21.6823 0.1144 2123 +2125 2 -501.9352665881974 -274.54108029831184 21.6846 0.1144 2124 +2126 2 -502.16330329533093 -273.42927632269397 21.6383 0.1144 2125 +2127 2 -502.73560756109293 -272.46378672803706 21.5064 0.1144 2126 +2128 2 -503.61556523641343 -271.7392166626572 21.3702 0.1144 2127 +2129 2 -504.3091608879258 -270.83062038696426 21.2443 0.1144 2128 +2130 2 -504.9000331528788 -269.87895827964394 21.0504 0.1144 2129 +2131 2 -505.21459407693465 -268.77949771870647 20.8942 0.1144 2130 +2132 2 -505.8668902476537 -267.83920723398097 20.7741 0.1144 2131 +2133 2 -506.38329074678865 -267.7044528852821 20.6238 0.1144 2132 +2134 2 -507.51294057248936 -267.548213577506 20.5045 0.1144 2133 +2135 2 -508.64504109309587 -267.70749113789145 20.4228 0.1144 2134 +2136 2 -509.7854929657007 -267.7956510849887 20.3749 0.1144 2135 +2137 2 -510.91844023606836 -267.9557789481686 20.3438 0.1144 2136 +2138 2 -511.959377528919 -268.42712468364584 20.3277 0.1144 2137 +2139 2 -512.9450716797701 -269.0083808156378 20.3245 0.1144 2138 +2140 2 -513.9786868534134 -269.49830817026714 20.322 0.1144 2139 +2141 2 -515.035034208946 -269.93821984828844 20.3185 0.1144 2140 +2142 2 -516.2562947941008 -269.6276691710276 20.3067 0.1144 2141 +2143 2 -517.3986173338363 -269.5653603818224 20.2971 0.1144 2142 +2144 2 -518.5425253016637 -269.55637088010087 20.2836 0.1144 2143 +2145 2 -519.6864397833854 -269.544270115361 20.2647 0.1144 2144 +2146 2 -520.7939550321672 -269.8280886907146 20.2388 0.1144 2145 +2147 2 -521.7967530413082 -270.379469949793 20.2028 0.1144 2146 +2148 2 -522.4218578891591 -270.09920816289866 20.27 0.1144 2147 +2149 2 -523.2000841038612 -269.2968553235876 20.9928 0.1144 2148 +2150 2 -523.7821096131535 -268.31519330102935 21.2586 0.1144 2149 +2151 2 -524.6248561782056 -267.632618274316 21.6875 0.1144 2150 +2152 2 -525.4271157602225 -266.96933325031637 22.3326 0.1144 2151 +2153 2 -526.3794544292205 -266.49402899036164 23.1215 0.1144 2152 +2154 2 -526.3201921541611 -265.4164132412401 23.9373 0.1144 2153 +2155 2 -525.576498632047 -264.78793396141816 24.9047 0.1144 2154 +2156 2 -524.991260232174 -264.1969803292997 26.0167 0.1144 2155 +2157 2 -523.9653774025862 -263.86404721295764 27.0527 0.1144 2156 +2158 2 -522.9501137326722 -263.8966406256771 28.0098 0.1144 2157 +2159 2 -522.2771692291943 -264.6346548973812 28.9075 0.1144 2158 +2160 2 -521.6944867613378 -265.52481572647486 29.6192 0.1144 2159 +2161 2 -520.626135098792 -265.78625966910045 30.1955 0.1144 2160 +2162 2 -519.5232934980033 -265.9045126757002 30.6502 0.1144 2161 +2163 2 -518.5070542243553 -266.4030884359366 31.0682 0.1144 2162 +2164 2 -517.5149228377361 -266.97136484023747 31.4378 0.1144 2163 +2165 2 -516.5849436721999 -267.6084315884426 31.817 0.1144 2164 +2166 2 -516.2118728604471 -268.4529985185423 32.3501 0.1144 2165 +2167 2 -515.8904059121548 -269.4060731961807 32.9633 0.1144 2166 +2168 2 -515.1815118224242 -270.29278779487925 33.5563 0.1144 2167 +2169 2 -514.434708803978 -271.1495123431673 34.1452 0.1144 2168 +2170 2 -513.7897289388585 -272.006450073455 34.8135 0.1144 2169 +2171 2 -513.5937279220287 -272.94762516949277 35.5998 0.1144 2170 +2172 2 -513.2406318096625 -273.87715763015876 36.4448 0.1144 2171 +2173 2 -512.5528535726592 -274.74284460979095 37.2019 0.1144 2172 +2174 2 -511.55441292090177 -275.2512157290712 37.8476 0.1144 2173 +2175 2 -510.5805709778739 -274.81805289594763 38.4328 0.1144 2174 +2176 2 -509.61009739459394 -274.2958721761238 39.011 0.1144 2175 +2177 2 -508.54914528023096 -274.1302381789227 39.6119 0.1144 2176 +2178 2 -507.6135104246322 -273.5846544025982 40.2282 0.1144 2177 +2179 2 -506.8022026642442 -272.79431788697065 40.7921 0.1144 2178 +2180 2 -506.7111114935277 -273.0044211916031 41.2731 0.1144 2179 +2181 2 -506.29169827709376 -273.9968888706136 41.788 0.1144 2180 +2182 2 -505.6531832163064 -274.8732149042037 42.2621 0.1144 2181 +2183 2 -504.72404399055074 -275.5143846392678 42.6479 0.1144 2182 +2184 2 -503.6666337374812 -275.91988945638286 42.9867 0.1144 2183 +2185 2 -502.57319083433407 -276.2435771106997 43.2774 0.1144 2184 +2186 2 -501.44754619309015 -276.4119163563875 43.5187 0.1144 2185 +2187 2 -500.3044411542795 -276.44268647575404 43.7259 0.1144 2186 +2188 2 -499.1804288732335 -276.2704150560184 43.9314 0.1144 2187 +2189 2 -498.0864066425979 -276.060234707567 44.2257 0.1144 2188 +2190 2 -497.07224751946137 -275.9367716241821 44.6967 0.1144 2189 +2191 2 -495.98665239648216 -275.9232557459752 45.1973 0.1144 2190 +2192 2 -494.87718273979993 -276.1676430019882 45.638 0.1144 2191 +2193 2 -493.7854517076425 -276.3829345332299 46.0972 0.1144 2192 +2194 2 -492.7341970934062 -276.6177562870067 46.6155 0.1144 2193 +2195 2 -491.831656867797 -277.25332484440804 47.0585 0.1144 2194 +2196 2 -491.0396669182579 -278.07756922554097 47.4079 0.1144 2195 +2197 2 -490.264548413541 -278.881625631302 47.7856 0.1144 2196 +2198 2 -489.3169190592413 -279.4717741438559 48.1877 0.1144 2197 +2199 2 -488.2330486704112 -279.816553667925 48.5332 0.1144 2198 +2200 2 -487.1298141633539 -280.122472402948 48.8354 0.1144 2199 +2201 2 -486.06087304987705 -280.2601711535556 49.2475 0.1144 2200 +2202 2 -484.9822742432691 -280.4512363633242 49.7339 0.1144 2201 +2203 2 -483.8408536334257 -280.42049158450294 50.1516 0.1144 2202 +2204 2 -482.73065542185543 -280.2022870450767 50.5798 0.1144 2203 +2205 2 -481.7699875606332 -279.6573579667421 51.0664 0.1144 2204 +2206 2 -481.42635620198564 -278.4303712555858 51.3724 0.1144 2205 +2207 2 -481.0905048572576 -277.33760999426465 51.4136 0.1144 2206 +2208 2 -480.6818416054468 -276.2689501060778 51.4172 0.1144 2207 +2209 2 -480.30389040756904 -275.189040784874 51.382 0.1144 2208 +2210 2 -479.9793595565246 -274.09305052637706 51.2812 0.1144 2209 +2211 2 -479.7397977890797 -272.97538851593794 51.1067 0.1144 2210 +2212 2 -479.66127245514264 -271.84441646856897 50.8452 0.1144 2211 +2213 2 -479.4120199410369 -270.72836051826357 50.5784 0.1144 2212 +2214 2 -479.0300298048859 -269.65247325842483 50.3037 0.1144 2213 +2215 2 -479.14641844263735 -268.9101117662915 48.9255 0.1144 2214 +2216 2 -481.6401540353148 -279.8302569710869 51.501 0.1144 2205 +2217 2 -480.9701270464245 -280.72836667716876 51.9554 0.1144 2216 +2218 2 -480.3001000575341 -281.62647638325063 52.4345 0.1144 2217 +2219 2 -479.62922276584936 -282.5254328390936 52.9396 0.1144 2218 +2220 2 -478.9599011056738 -283.42439255188384 53.4537 0.1144 2219 +2221 2 -478.2898741167835 -284.32250225796565 53.9728 0.1144 2220 +2222 2 -477.61899682509875 -285.22145871380866 54.4986 0.1144 2221 +2223 2 -477.0353856856143 -286.18367193751203 54.9898 0.1144 2222 +2224 2 -476.825218957124 -287.2711888000184 55.4151 0.1144 2223 +2225 2 -476.708241310113 -288.2611076856347 55.9056 0.1144 2224 +2226 2 -476.12412490213876 -289.09314120775696 56.4645 0.1144 2225 +2227 2 -476.7267594488925 -289.85235233324113 56.9173 0.1144 2226 +2228 2 -477.7392182060114 -290.38268199027823 57.2653 0.1144 2227 +2229 2 -477.9562035328613 -291.4759722069782 57.5999 0.1144 2228 +2230 2 -478.0460926830398 -292.616796851996 57.8444 0.1144 2229 +2231 2 -478.3875317875698 -293.70879199296405 58.0129 0.1144 2230 +2232 2 -478.6149263115701 -294.8288326977846 58.1403 0.1144 2231 +2233 2 -478.5648035924602 -295.97176837533993 58.2655 0.1144 2232 +2234 2 -478.1751031958514 -297.0249681573771 58.4783 0.1144 2233 +2235 2 -477.5615057610902 -297.9895227686119 58.6888 0.1144 2234 +2236 2 -476.7694416960378 -298.8153933437341 58.9117 0.1144 2235 +2237 2 -475.8152222929814 -299.4459746555652 59.15 0.1144 2236 +2238 2 -475.7955626292163 -299.2105371317491 58.2887 0.1144 2237 +2239 2 -475.7978222644256 -298.0974826389012 57.9228 0.1144 2238 +2240 2 -475.78245519566 -296.9600667153282 57.7682 0.1144 2239 +2241 2 -475.63194832567933 -295.8280954338512 57.6512 0.1144 2240 +2242 2 -475.1389706882587 -294.8061403032299 57.577 0.1144 2241 +2243 2 -474.139309687499 -294.343790550813 57.5551 0.1144 2242 +2244 2 -473.05366349212335 -293.98315508602013 57.5812 0.1144 2243 +2245 2 -471.96886404650877 -293.6233699240217 57.6481 0.1144 2244 +2246 2 -470.88321785113317 -293.2627344592288 57.734 0.1144 2245 +2247 2 -469.7975683988102 -292.90365462594514 57.8287 0.1144 2246 +2248 2 -468.7127689531957 -292.54386946394663 57.9284 0.1144 2247 +2249 2 -467.6278989451009 -292.184013443382 58.0311 0.1144 2248 +2250 2 -466.54225274972526 -291.8233779785892 58.1389 0.1144 2249 +2251 2 -465.4574533041107 -291.4635928165907 58.2537 0.1144 2250 +2252 2 -464.3717329932216 -291.10458354578714 58.3761 0.1144 2251 +2253 2 -463.28608679784594 -290.7439480809942 58.5038 0.1144 2252 +2254 2 -462.20128735223136 -290.38416291899574 58.6345 0.1144 2253 +2255 2 -461.6125722816088 -289.5286727813426 58.8624 0.1144 2254 +2256 2 -461.2589318837314 -288.455319755079 59.085 0.1144 2255 +2257 2 -461.00642342861386 -287.3408126263023 59.2463 0.1144 2256 +2258 2 -460.96914438808477 -286.19939102008607 59.3471 0.1144 2257 +2259 2 -460.99183142421487 -285.0563979018252 59.3956 0.1144 2258 +2260 2 -460.9164645249736 -283.9366754895736 59.327 0.1144 2259 +2261 2 -460.7214654875009 -282.8118942728986 59.2388 0.1144 2260 +2262 2 -460.52236701620245 -281.6862559434488 59.1646 0.1144 2261 +2263 2 -460.50941594866816 -280.54318821148814 59.1119 0.1144 2262 +2264 2 -460.5150633771943 -279.3993815990964 59.0806 0.1144 2263 +2265 2 -460.5190137531649 -278.2555714336713 59.0685 0.1144 2264 +2266 2 -460.5246611816911 -277.11176482127956 59.0747 0.1144 2265 +2267 2 -460.53030861021716 -275.96795820888786 59.0853 0.1144 2266 +2268 2 -460.5351092889822 -274.8233012937018 59.1002 0.1144 2267 +2269 2 -460.5407567175083 -273.6794946813101 59.1206 0.1144 2268 +2270 2 -460.54640414603443 -272.5356880689183 59.1492 0.1144 2269 +2271 2 -460.5512048247996 -271.3910311537322 59.1906 0.1144 2270 +2272 2 -460.4637889144575 -270.2509895059758 59.2491 0.1144 2271 +2273 2 -460.3294814162142 -269.115870152817 59.3272 0.1144 2272 +2274 2 -460.1918542244596 -267.978976078556 59.4252 0.1144 2273 +2275 2 -460.0430343401066 -266.8518166656862 59.5818 0.1144 2274 +2276 2 -459.7515768622819 -265.7988171269302 59.8564 0.1144 2275 +2277 2 -458.7739094590663 -265.26771178079866 60.1644 0.1144 2276 +2278 2 -457.746752777961 -264.76641350386114 60.4243 0.1144 2277 +2279 2 -456.630106935053 -264.5206182404478 60.6273 0.1144 2278 +2280 2 -455.48722494306935 -264.47862737954244 60.7816 0.1144 2279 +2281 2 -454.34517006517774 -264.4130915429039 60.8936 0.1144 2280 +2282 2 -453.2187419850007 -264.21260144292705 60.975 0.1144 2281 +2283 2 -452.0758131174258 -264.1592260397525 61.0492 0.1144 2282 +2284 2 -451.1099141247488 -264.5592655827297 61.2881 0.1144 2283 +2285 2 -451.02899759938356 -264.57040990517754 61.9063 0.1144 2284 +2286 2 -449.92446881086687 -264.71772153179893 62.9429 0.1144 2285 +2287 2 -448.82001058483024 -264.86510401698666 63.3833 0.1144 2286 +2288 2 -447.7154817963135 -265.01241564360816 63.9106 0.1144 2287 +2289 2 -446.61095300779687 -265.15972727022955 64.5011 0.1144 2288 +2290 2 -445.5064947817603 -265.3071097554173 65.1322 0.1144 2289 +2291 2 -444.40051872925085 -265.4026580221503 65.7868 0.1144 2290 +2292 2 -443.3233163163395 -265.26449651659243 66.4619 0.1144 2291 +2293 2 -442.2608228907153 -265.0244714960109 67.1488 0.1144 2292 +2294 2 -441.1984003236572 -264.7843759129492 67.8266 0.1144 2293 +2295 2 -440.1351307107519 -264.5435714481394 68.4751 0.1144 2294 +2296 2 -439.07270814369383 -264.30347586507776 69.0757 0.1144 2295 +2297 2 -438.01028557663574 -264.06338028201606 69.6125 0.1144 2296 +2298 2 -437.3200902720018 -263.3816263297274 69.876 0.1144 2297 +2299 2 -437.0092855528583 -262.281705002287 69.9835 0.1144 2298 +2300 2 -436.6993278795619 -261.1824925565948 69.9756 0.1144 2299 +2301 2 -436.3894443217789 -260.08165391691335 69.8897 0.1144 2300 +2302 2 -436.0794863523965 -258.9825828922674 69.7595 0.1144 2301 +2303 2 -435.7687524918191 -257.882591002347 69.6153 0.1144 2302 +2304 2 -435.4587948185228 -256.7833785566547 69.4837 0.1144 2303 +2305 2 -435.14806095794546 -255.68338666673435 69.3543 0.1144 2304 +2306 2 -434.83810328464904 -254.58417422104208 69.2278 0.1144 2305 +2307 2 -434.52736942407176 -253.48418233112164 69.106 0.1144 2306 +2308 2 -434.2181911950036 -252.38419369814847 68.9903 0.1144 2307 +2309 2 -433.9074573344262 -251.284201808228 68.8822 0.1144 2308 +2310 2 -433.59749966112986 -250.18498936253582 68.7828 0.1144 2309 +2311 2 -433.2414838258184 -249.09791346131846 68.7086 0.1144 2310 +2312 2 -432.8723766248406 -248.01554777718655 68.6594 0.1144 2311 +2313 2 -432.50256379906205 -246.93247350739264 68.6302 0.1144 2312 +2314 2 -432.1335271605644 -245.8501786818269 68.6151 0.1144 2313 +2315 2 -431.7636437723056 -244.7670335534668 68.6084 0.1144 2314 +2316 2 -450.99353954862994 -265.66642429223486 61.4757 0.1144 2284 +2317 2 -451.00246174481856 -266.80870576998683 61.6137 0.1144 2316 +2318 2 -451.0542330376019 -267.9517840670617 61.7042 0.1144 2317 +2319 2 -451.0478094217948 -269.09481123522517 61.7476 0.1144 2318 +2320 2 -450.95081258386415 -270.23432536564724 61.7456 0.1144 2319 +2321 2 -450.9233204891075 -271.37575278547115 61.7 0.1144 2320 +2322 2 -450.9533111642458 -272.51963401156274 61.64 0.1144 2321 +2323 2 -451.2705203942694 -273.6001939795367 61.5616 0.1144 2322 +2324 2 -451.4648715437328 -274.6966895065235 61.4104 0.1144 2323 +2325 2 -451.2425239518368 -275.7930904315406 61.2217 0.1144 2324 +2326 2 -450.89157568067156 -276.8788276193379 61.0246 0.1144 2325 +2327 2 -450.5406950111254 -277.96604987616433 60.8244 0.1144 2326 +2328 2 -450.20508248502824 -279.0558496891239 60.6189 0.1144 2327 +2329 2 -449.8841003752842 -280.14886212053733 60.4086 0.1144 2328 +2330 2 -449.7968212278506 -281.27390087561344 60.2025 0.1144 2329 +2331 2 -449.96106459274614 -282.39699135152705 60.0032 0.1144 2330 +2332 2 -450.18280730835886 -283.5146160551162 59.8172 0.1144 2331 +2333 2 -450.40540032676586 -284.6313940089443 59.654 0.1144 2332 +2334 2 -450.6473007229814 -285.74658603649414 59.5294 0.1144 2333 +2335 2 -450.8027605865293 -286.87701204947587 59.4695 0.1144 2334 +2336 2 -450.6806127127318 -288.00600831914494 59.4726 0.1144 2335 +2337 2 -450.2303087144684 -289.0275441869185 59.5871 0.1144 2336 +2338 2 -450.05411629271725 -290.1330220204898 59.7652 0.1144 2337 +2339 2 -450.151291251626 -291.20506027883744 60.046 0.1144 2338 +2340 2 -450.573026233434 -292.2446146714112 60.3002 0.1144 2339 +2341 2 -451.0797234888612 -293.26574999610756 60.4316 0.1144 2340 +2342 2 -451.59045642561443 -294.28441889094796 60.4433 0.1144 2341 +2343 2 -452.1028155563569 -295.3031619013018 60.3515 0.1144 2342 +2344 2 -452.6143952428712 -296.32268109893664 60.1818 0.1144 2343 +2345 2 -453.1251281796244 -297.341349993777 59.9572 0.1144 2344 +2346 2 -453.63656644509246 -298.36086889532567 59.7092 0.1144 2345 +2347 2 -454.1473699443259 -299.37960864873236 59.453 0.1144 2346 +2348 2 -454.6588790683601 -300.399056987801 59.1836 0.1144 2347 +2349 2 -455.16961170902715 -301.4178673036877 58.8974 0.1144 2348 +2350 2 -455.6811208330614 -302.43731564275623 58.5922 0.1144 2349 +2351 2 -456.1919243322947 -303.4560553961628 58.2683 0.1144 2350 +2352 2 -456.9594379457384 -304.2916965770406 57.927 0.1144 2351 +2353 2 -457.84855809358385 -304.2231300932799 57.3709 0.1144 2352 +2354 2 -458.660839836605 -303.4337179259336 56.8534 0.1144 2353 +2355 2 -459.4722075243323 -302.6418289657175 56.3858 0.1144 2354 +2356 2 -460.2835784690068 -301.8483843739922 55.9751 0.1144 2355 +2357 2 -461.0304014192084 -301.01591368318554 55.5934 0.1144 2356 +2358 2 -461.8974630375809 -300.2703155005528 55.1116 0.1144 2357 +2359 2 -475.2353952230593 -299.3775854094396 59.514 0.1144 2237 +2360 2 -474.24584150560304 -299.1199646799389 60.041 0.1144 2359 +2361 2 -473.23475895181025 -298.6753394338992 60.5665 0.1144 2360 +2362 2 -472.21172213447215 -298.1651402175428 61.0327 0.1144 2361 +2363 2 -471.3152759292294 -297.4773682923336 61.4611 0.1144 2362 +2364 2 -470.54922270155305 -296.7209970128903 61.9388 0.1144 2363 +2365 2 -469.94418321686874 -295.89460556086965 62.487 0.1144 2364 +2366 2 -469.67785003317533 -294.83112270944997 62.9457 0.1144 2365 +2367 2 -469.50301548628596 -293.70065613267116 63.2968 0.1144 2366 +2368 2 -469.313681877162 -292.5717855490983 63.5695 0.1144 2367 +2369 2 -469.0993013463673 -291.4502164526908 63.7865 0.1144 2368 +2370 2 -468.8783416280162 -290.33011850926533 63.9612 0.1144 2369 +2371 2 -468.6558259820698 -289.2101587299388 64.1147 0.1144 2370 +2372 2 -468.4332397736433 -288.09012809204614 64.2751 0.1144 2371 +2373 2 -468.210724423783 -286.97002689167334 64.4428 0.1144 2372 +2374 2 -467.9873584750422 -285.85091386210786 64.6103 0.1144 2373 +2375 2 -467.8262735448424 -284.73907302131164 64.8175 0.1144 2374 +2376 2 -467.86746808461123 -283.6050282162474 64.9942 0.1144 2375 +2377 2 -468.0033456433431 -282.47040382507953 65.1255 0.1144 2376 +2378 2 -468.1554160599178 -281.33574262524814 65.2212 0.1144 2377 +2379 2 -468.3009102497972 -280.20113836793576 65.291 0.1144 2378 +2380 2 -468.47885035482875 -279.07148108848264 65.3428 0.1144 2379 +2381 2 -468.67538244202615 -277.9441961916168 65.3836 0.1144 2380 +2382 2 -468.92279383250104 -276.83243277979614 65.4581 0.1144 2381 +2383 2 -469.0990941235822 -275.70920675295883 65.569 0.1144 2382 +2384 2 -469.1701403475621 -274.5695675802123 65.6695 0.1144 2383 +2385 2 -469.2583002946594 -273.4291157076076 65.7516 0.1144 2384 +2386 2 -469.35614743538434 -272.28875482742444 65.8176 0.1144 2385 +2387 2 -469.4499624478166 -271.14916332454175 65.8703 0.1144 2386 +2388 2 -469.515498284455 -270.00710844665014 65.9103 0.1144 2387 +2389 2 -469.55586295137107 -268.8641523391532 65.9604 0.1144 2388 +2390 2 -469.4481915580239 -267.73948324512827 66.0601 0.1144 2389 +2391 2 -468.59946651744895 -267.0558417488006 66.1441 0.1144 2390 +2392 2 -468.24491511912464 -266.01232678678707 66.2007 0.1144 2391 +2393 2 -468.30797090594626 -264.87274159569847 66.2298 0.1144 2392 +2394 2 -468.3887787351533 -263.73142580033823 66.2326 0.1144 2393 +2395 2 -468.4874726256393 -262.59191522294947 66.1965 0.1144 2394 +2396 2 -468.58609269669796 -261.45388941850376 66.1296 0.1144 2395 +2397 2 -468.68478658718396 -260.314378841115 66.0472 0.1144 2396 +2398 2 -468.7841861024708 -259.17557684938834 65.9548 0.1144 2397 +2399 2 -468.88365618023784 -258.0368457162278 65.8563 0.1144 2398 +2400 2 -468.98305569552474 -256.8980437245011 65.7546 0.1144 2399 +2401 2 -469.0825966318579 -255.75924202886046 65.6527 0.1144 2400 +2402 2 -469.1812199598638 -254.6196605929056 65.5511 0.1144 2401 +2403 2 -469.27984328786977 -253.4800791569507 65.4492 0.1144 2402 +2404 2 -469.3793133656367 -252.3413480237902 65.3472 0.1144 2403 +2405 2 -469.4787834434037 -251.20261689062966 65.2453 0.1144 2404 +2406 2 -469.5774035144624 -250.06459108618387 65.1437 0.1144 2405 +2407 2 -469.6760974049484 -248.92508050879525 65.0418 0.1144 2406 +2408 2 -469.77549692023524 -247.7862785170685 64.9398 0.1144 2407 +2409 2 -469.87496699800215 -246.64754738390803 64.8382 0.1144 2408 +2410 2 -469.9745079343354 -245.50874568826737 64.7363 0.1144 2409 +2411 2 -470.0739074496223 -244.3699436965407 64.6344 0.1144 2410 +2412 2 -470.1725307776282 -243.23036226058574 64.5327 0.1144 2411 +2413 2 -470.2712246681142 -242.09085168319703 64.4308 0.1144 2412 +2414 2 -470.3706241834011 -240.9520496914703 64.3292 0.1144 2413 +2415 2 -470.470094261168 -239.81331855830982 64.2272 0.1144 2414 +2416 2 -470.56871433222676 -238.67529275386406 64.1256 0.1144 2415 +2417 2 -470.66740822271277 -237.53578217647532 64.024 0.1144 2416 +2418 2 -470.76680773799967 -236.39698018474868 63.9223 0.1144 2417 +2419 2 -470.8663486743328 -235.25817848910802 63.821 0.1144 2418 +2420 2 -470.96581875209984 -234.11944735594753 63.7196 0.1144 2419 +2421 2 -471.0652182673866 -232.9806453642208 63.6182 0.1144 2420 +2422 2 -471.16384159539257 -231.8410639282659 63.5174 0.1144 2421 +2423 2 -471.26253548587863 -230.7015533508772 63.4169 0.1144 2422 +2424 2 -471.3619350011655 -229.56275135915052 63.317 0.1144 2423 +2425 2 -471.4614759374987 -228.42394966350992 63.2178 0.1144 2424 +2426 2 -471.55924896271017 -227.28521497731603 63.1198 0.1144 2425 +2427 2 -471.6587190404772 -226.14648384415557 63.0232 0.1144 2426 +2428 2 -471.75896885855843 -225.00683510266776 62.9283 0.1144 2427 +2429 2 -471.85765949209724 -223.86888015678824 62.8365 0.1144 2428 +2430 2 -471.9571295698642 -222.73014902362772 62.7497 0.1144 2429 +2431 2 -472.0557528978701 -221.59056758767278 62.6688 0.1144 2430 +2432 2 -472.1552229756371 -220.45183645451232 62.5932 0.1144 2431 +2433 2 -472.35656012146114 -219.3261172560834 62.5254 0.1144 2432 +2434 2 -472.76403920820525 -218.2584589756087 62.4719 0.1144 2433 +2435 2 -473.09961442745254 -217.18647821448135 62.5005 0.1144 2434 +2436 2 -473.04613601518605 -216.04820467994693 62.4772 0.1144 2435 +2437 2 -472.9894790343685 -214.90829814144274 62.4053 0.1144 2436 +2438 2 -473.021003257418 -213.76610134431837 62.2913 0.1144 2437 +2439 2 -473.33874275002506 -212.6682737873506 62.1491 0.1144 2438 +2440 2 -473.6574031079066 -211.569670339188 61.9696 0.1144 2439 +2441 2 -473.9767690905891 -210.47177547668736 61.7484 0.1144 2440 +2442 2 -474.29613507327144 -209.37388061418676 61.497 0.1144 2441 +2443 2 -474.615571618434 -208.27605661025234 61.213 0.1144 2442 +2444 2 -474.88157824802215 -207.16510994950968 60.8933 0.1144 2443 +2445 2 -474.7124805187898 -207.17854453057762 60.177 0.1144 2444 +2446 2 -474.70028826344173 -206.0783291521587 59.4992 0.1144 2445 +2447 2 -474.6920981377035 -204.9578988545318 58.8882 0.1144 2446 +2448 2 -474.8975344212671 -203.83317818992404 58.4413 0.1144 2447 +2449 2 -475.10770845792445 -202.70839673367794 58.1434 0.1144 2448 +2450 2 -475.3204262968982 -201.58446913325955 57.9233 0.1144 2449 +2451 2 -505.91935720089225 -271.7909919888503 41.0866 0.1144 2179 +2452 2 -505.0374882246174 -271.06428891421535 41.1009 0.1144 2451 +2453 2 -504.035530155257 -270.5170106419959 41.1211 0.1144 2452 +2454 2 -503.1220378285158 -269.8315364856742 41.1477 0.1144 2453 +2455 2 -502.5085029342693 -268.874877892684 41.181 0.1144 2454 +2456 2 -501.7401594479729 -268.0303254093735 41.2266 0.1144 2455 +2457 2 -500.9158709500095 -267.25940719573134 41.3364 0.1144 2456 +2458 2 -499.9033179435216 -266.7403203638311 41.4383 0.1144 2457 +2459 2 -498.80713375353747 -266.41445256605266 41.5187 0.1144 2458 +2460 2 -497.67740235857093 -266.23813865501046 41.5792 0.1144 2459 +2461 2 -496.5361438018158 -266.16376563145263 41.6214 0.1144 2460 +2462 2 -495.3932686198128 -266.1185220864827 41.6489 0.1144 2461 +2463 2 -494.2913010652222 -265.81930016444204 41.666 0.1144 2462 +2464 2 -493.1689391632407 -265.6017772668416 41.6875 0.1144 2463 +2465 2 -492.19458563992873 -265.00767550652654 41.7166 0.1144 2464 +2466 2 -491.2243555334174 -264.402975754237 41.7536 0.1144 2465 +2467 2 -490.2882489610449 -263.74496076568346 41.7981 0.1144 2466 +2468 2 -489.7766287107334 -262.7448162513901 41.911 0.1144 2467 +2469 2 -489.29343606934276 -261.7100122354982 42.0305 0.1144 2468 +2470 2 -488.68954830311316 -260.738807408596 42.1341 0.1144 2469 +2471 2 -488.00472308339033 -259.8225168660105 42.2232 0.1144 2470 +2472 2 -487.2371658513026 -258.9739355113545 42.299 0.1144 2471 +2473 2 -486.37478949462695 -258.2247164916768 42.376 0.1144 2472 +2474 2 -485.38903109309 -257.6741487267293 42.5023 0.1144 2473 +2475 2 -484.3944624484697 -257.1099153254331 42.6096 0.1144 2474 +2476 2 -483.37469519210447 -256.591661919419 42.6989 0.1144 2475 +2477 2 -482.29794036740645 -256.20594272429196 42.7734 0.1144 2476 +2478 2 -481.17394190842174 -255.99329544779835 42.8347 0.1144 2477 +2479 2 -480.03276072412723 -255.91574059874196 42.884 0.1144 2478 +2480 2 -479.14069679910097 -256.6135566229681 42.9635 0.1144 2479 +2481 2 -478.2977808727936 -257.37702448815776 43.0744 0.1144 2480 +2482 2 -478.18343857522217 -257.9187836311228 44.4209 0.1144 2481 +2483 2 -478.0913148017378 -258.99360755175303 44.8549 0.1144 2482 +2484 2 -478.0283295773962 -260.13326360140775 45.0139 0.1144 2483 +2485 2 -477.9321086306606 -261.27369859710427 45.1531 0.1144 2484 +2486 2 -477.6345164556426 -262.3740432146528 45.2906 0.1144 2485 +2487 2 -476.89502548947576 -263.2169944593626 45.3874 0.1144 2486 +2488 2 -475.77464937560705 -263.19930453363014 45.4605 0.1144 2487 +2489 2 -474.69938493535926 -262.9123007818451 45.6378 0.1144 2488 +2490 2 -473.6240531895787 -262.6236705399847 45.9007 0.1144 2489 +2491 2 -472.54963905212537 -262.33582003843856 46.676 0.1144 2490 +2492 2 -478.3660240593961 -256.09015949233185 43.2264 0.1144 2481 +2493 2 -477.9200556500484 -255.0408669793194 43.2706 0.1144 2492 +2494 2 -477.7032021755035 -253.91837346460414 43.2964 0.1144 2493 +2495 2 -477.2005471152969 -252.8916604470337 43.3054 0.1144 2494 +2496 2 -476.9295039166184 -251.78121574131885 43.3068 0.1144 2495 +2497 2 -476.5061901145988 -250.71895986582567 43.3087 0.1144 2496 +2498 2 -476.23267367608383 -249.60773216284932 43.3112 0.1144 2497 +2499 2 -475.9624099216336 -248.4965112698535 43.3152 0.1144 2498 +2500 2 -475.68075836796686 -247.38689288395807 43.3202 0.1144 2499 +2501 2 -475.349789454326 -246.2925154955754 43.3275 0.1144 2500 +2502 2 -475.32545384452254 -245.14949463920593 43.3376 0.1144 2501 +2503 2 -475.3683658667884 -244.00569533498123 43.3516 0.1144 2502 +2504 2 -475.7475829507334 -242.92737125881285 43.372 0.1144 2503 +2505 2 -475.9318870028478 -241.79772730323475 43.4008 0.1144 2504 +2506 2 -476.3442420067847 -240.73156415871688 43.4386 0.1144 2505 +2507 2 -476.6782381097343 -239.6370233357164 43.4865 0.1144 2506 +2508 2 -477.4503216617924 -238.6614160947422 43.7097 0.1144 2507 +2509 2 -477.6177174604213 -237.53576725669308 43.8444 0.1144 2508 +2510 2 -477.8279623556448 -236.41091523796683 43.9603 0.1144 2509 +2511 2 -478.3938827425686 -235.42115846195367 44.0748 0.1144 2510 +2512 2 -479.34401909052133 -234.81567094738443 44.4268 0.1144 2511 +2513 2 -522.1331932122393 -270.41418624832494 20.1503 0.1144 2147 +2514 2 -523.2695250189767 -270.5451176234701 20.0757 0.1144 2513 +2515 2 -524.4073957824149 -270.65024276657186 19.9767 0.1144 2514 +2516 2 -525.5512933872284 -270.6462030014703 19.8544 0.1144 2515 +2517 2 -526.662633452426 -270.6905319929599 19.6599 0.1144 2516 +2518 2 -527.6571807272467 -270.92723277062396 19.2973 0.1144 2517 +2519 2 -528.6553614104839 -271.2860587641252 18.9021 0.1144 2518 +2520 2 -529.7640815651059 -271.46720773247694 18.6059 0.1144 2519 +2521 2 -530.9080132198221 -271.4469045470523 18.4047 0.1144 2520 +2522 2 -532.0494958197771 -271.3804927709881 18.2936 0.1144 2521 +2523 2 -533.185461922697 -271.24703557553926 18.2709 0.1144 2522 +2524 2 -534.3191338097627 -271.0948352060365 18.3266 0.1144 2523 +2525 2 -535.4567732783491 -270.97269524732394 18.4286 0.1144 2524 +2526 2 -536.5932272746642 -271.0114906627698 18.5588 0.1144 2525 +2527 2 -537.6692200302289 -271.35591313586417 18.7249 0.1144 2526 +2528 2 -538.5436285776118 -271.7281978955085 19.0824 0.1144 2527 +2529 2 -539.5138781742069 -271.98584891977833 19.5333 0.1144 2528 +2530 2 -540.645236261349 -272.1282250366588 19.9158 0.1144 2529 +2531 2 -541.4367753657275 -271.5530939766042 20.2233 0.1144 2530 +2532 2 -542.0610439159018 -272.0437906520191 20.4632 0.1144 2531 +2533 2 -543.1096014866732 -272.3541437747329 20.6431 0.1144 2532 +2534 2 -544.1808675524447 -272.6257949045416 20.8668 0.1144 2533 +2535 2 -545.124434610224 -273.2329137129093 21.1093 0.1144 2534 +2536 2 -546.2027050008205 -273.60399893864974 21.3181 0.1144 2535 +2537 2 -547.344109231942 -273.60879280743427 21.4932 0.1144 2536 +2538 2 -548.4837579734298 -273.70904262551545 21.6368 0.1144 2537 +2539 2 -549.5823886615145 -274.01469224713856 21.7785 0.1144 2538 +2540 2 -550.6553349594482 -273.88909343444277 22.0117 0.1144 2539 +2541 2 -551.7875196624959 -274.0419364852652 22.1785 0.1144 2540 +2542 2 -552.9282835158754 -273.94730958199295 22.288 0.1144 2541 +2543 2 -554.0659096605868 -273.8315335703634 22.3432 0.1144 2542 +2544 2 -554.4887860543507 -274.3259098294993 22.5898 0.1144 2543 +2545 2 -555.1647604671931 -275.24790941907753 22.7877 0.1144 2544 +2546 2 -555.9873751013035 -276.04152230565853 22.8539 0.1144 2545 +2547 2 -556.8383464857684 -276.8005462531213 22.9621 0.1144 2546 +2548 2 -557.5720004717834 -277.59722558560344 23.1942 0.1144 2547 +2549 2 -558.5463471851149 -278.19458002998323 23.3778 0.1144 2548 +2550 2 -559.3957460611623 -278.96166172013716 23.5138 0.1144 2549 +2551 2 -558.9678590070662 -280.11752439318127 23.653 0.1144 2550 +2552 2 -558.3235565304525 -281.0562052647397 23.6624 0.1144 2551 +2553 2 -557.631651121515 -281.9680577775306 23.6398 0.1144 2552 +2554 2 -556.8815853520763 -282.8295838314119 23.6065 0.1144 2553 +2555 2 -555.9426275785745 -283.46585396239436 23.5608 0.1144 2554 +2556 2 -554.9046550610592 -283.9426052842415 23.5023 0.1144 2555 +2557 2 -553.8400036142764 -284.3618128424549 23.4321 0.1144 2556 +2558 2 -552.7964644671875 -284.76168983415744 23.2775 0.1144 2557 +2559 2 -551.6874628286603 -284.7487613484075 23.0626 0.1144 2558 +2560 2 -550.5586733726816 -284.89934559084884 22.8841 0.1144 2559 +2561 2 -549.4836296056567 -285.28374166130334 22.7506 0.1144 2560 +2562 2 -548.4576186598538 -285.7888023597273 22.6587 0.1144 2561 +2563 2 -547.4469565808936 -286.32543222485947 22.6045 0.1144 2562 +2564 2 -546.4862522396495 -286.9462418645356 22.5836 0.1144 2563 +2565 2 -545.3807032888967 -287.2093049890697 22.5789 0.1144 2564 +2566 2 -544.2811613042788 -286.9336348527428 22.5746 0.1144 2565 +2567 2 -543.1693747037557 -286.66352523629575 22.5685 0.1144 2566 +2568 2 -542.0298505064059 -286.571336713939 22.5599 0.1144 2567 +2569 2 -540.9058419239786 -286.76881224819533 22.548 0.1144 2568 +2570 2 -539.9249299716935 -287.3483551645219 22.5313 0.1144 2569 +2571 2 -538.9763487570636 -287.9878578457134 22.5084 0.1144 2570 +2572 2 -538.418556675311 -288.97925798871023 22.476 0.1144 2571 +2573 2 -537.750024324191 -289.9065036872745 22.4291 0.1144 2572 +2574 2 -536.9402490766365 -290.7145887622808 22.3644 0.1144 2573 +2575 2 -536.1546061972721 -291.54690746692705 22.2787 0.1144 2574 +2576 2 -535.3916206839967 -292.39871908725866 22.1708 0.1144 2575 +2577 2 -535.2242103820636 -292.7882681224347 22.5898 0.1144 2576 +2578 2 -534.9678844322087 -293.9024170386174 22.5362 0.1144 2577 +2579 2 -534.7730493975666 -295.0297054885166 22.5147 0.1144 2578 +2580 2 -534.0907469998157 -295.94808350329214 22.4884 0.1144 2579 +2581 2 -533.2655891316017 -296.740721410867 22.459 0.1144 2580 +2582 2 -532.5878669224492 -296.6535302575232 22.37 0.1144 2581 +2583 2 -531.453801485343 -296.6559642585771 22.2725 0.1144 2582 +2584 2 -530.3860594075837 -297.0315367620734 22.2096 0.1144 2583 +2585 2 -529.2964598379054 -297.37708211040956 22.1854 0.1144 2584 +2586 2 -529.1891865575166 -298.35888956776284 22.1979 0.1144 2585 +2587 2 -529.7404942127796 -299.3501368977711 22.2435 0.1144 2586 +2588 2 -530.266681329045 -300.3162999992587 22.4223 0.1144 2587 +2589 2 -530.3848970287949 -301.4369606518796 22.6342 0.1144 2588 +2590 2 -529.9232319730507 -302.4811002001703 22.8006 0.1144 2589 +2591 2 -529.1868550286631 -303.35651423694054 22.9225 0.1144 2590 +2592 2 -528.4989752341239 -304.2707086354493 23.0035 0.1144 2591 +2593 2 -527.8878474861658 -305.23774329650115 23.0569 0.1144 2592 +2594 2 -533.7291491660932 -296.7165895973782 22.5898 0.1144 2581 +2595 2 -534.8108242269149 -297.04886170393615 22.5898 0.1144 2594 +2596 2 -535.6124140007196 -297.853815015956 22.5898 0.1144 2595 +2597 2 -536.1790674679785 -298.8443166555526 22.5898 0.1144 2596 +2598 2 -536.7148470303162 -299.85582548427385 22.5898 0.1144 2597 +2599 2 -537.3283650476544 -300.8205450769024 22.5898 0.1144 2598 +2600 2 -537.7492732114565 -301.88350302416313 22.5898 0.1144 2599 +2601 2 -537.8487858027631 -303.0210951189719 22.5898 0.1144 2600 +2602 2 -537.8116738199117 -304.1640580364495 22.5898 0.1144 2601 +2603 2 -537.2320542449229 -305.14487656619383 22.5898 0.1144 2602 +2604 2 -536.4391434301095 -305.9698968385216 22.5898 0.1144 2603 +2605 2 -534.6734583674001 -292.3422024788978 21.9669 0.1144 2576 +2606 2 -533.5850646999348 -292.51705440088176 21.6763 0.1144 2605 +2607 2 -532.70425672182 -293.24247121602264 21.4018 0.1144 2606 +2608 2 -531.8977245895886 -294.0213595069081 21.0934 0.1144 2607 +2609 2 -530.8805908963158 -294.54185375280235 20.8316 0.1144 2608 +2610 2 -529.8120083805895 -294.9473351791148 20.6063 0.1144 2609 +2611 2 -528.7804169831516 -295.41589740415225 20.3652 0.1144 2610 +2612 2 -527.778638966702 -295.96470813269013 20.1411 0.1144 2611 +2613 2 -526.9755895774431 -296.6337190805907 19.9514 0.1144 2612 +2614 2 -526.9295670864315 -297.7433585401996 19.6875 0.1144 2613 +2615 2 -526.8837436592718 -298.791692124286 19.3074 0.1144 2614 +2616 2 -526.7220334228471 -299.9036349642896 18.9605 0.1144 2615 +2617 2 -526.0704529438566 -300.8398257191033 18.7413 0.1144 2616 +2618 2 -525.2147556399119 -301.5612645897097 18.6373 0.1144 2617 +2619 2 -525.1646669707047 -302.687936846942 18.6392 0.1144 2618 +2620 2 -525.5822616588039 -303.7461502311286 18.757 0.1144 2619 +2621 2 -525.913413553661 -304.75312941290565 19.0794 0.1144 2620 +2622 2 -526.1460123543505 -305.7178293133502 19.5542 0.1144 2621 +2623 2 -526.556305353184 -306.78486626449495 19.9485 0.1144 2622 +2624 2 -526.8695157105449 -307.8840855201678 20.2715 0.1144 2623 +2625 2 -527.1179887804226 -309.00091765775403 20.5329 0.1144 2624 +2626 2 -527.0811313376403 -309.9885294078419 20.7601 0.1144 2625 +2627 2 -526.1495324920093 -310.6224107775152 21.0081 0.1144 2626 +2628 2 -525.2187130906065 -311.2555159599076 21.28 0.1144 2627 +2629 2 -524.2878904322564 -311.8901767738091 21.5799 0.1144 2628 +2630 2 -523.3571418894198 -312.52321139372134 21.8819 0.1144 2629 +2631 2 -522.4674904125915 -313.21707266211536 22.1584 0.1144 2630 +2632 2 -522.3198211415889 -314.20848292855476 22.3144 0.1144 2631 +2633 2 -522.5172394372402 -315.3260567053329 22.3304 0.1144 2632 +2634 2 -522.7162842229667 -316.4435631765781 22.2447 0.1144 2633 +2635 2 -523.1590977506521 -317.4799090019178 22.1222 0.1144 2634 +2636 2 -523.7418159785826 -318.46400958968184 22.001 0.1144 2635 +2637 2 -524.1659937033578 -319.5189133472847 21.8943 0.1144 2636 +2638 2 -524.4500544482752 -320.62613260885706 21.8111 0.1144 2637 +2639 2 -524.6377651203572 -321.7533734454073 21.7456 0.1144 2638 +2640 2 -525.2223465051511 -322.65814037923747 21.6272 0.1144 2639 +2641 2 -526.2439433666634 -323.07931164196566 21.5004 0.1144 2640 +2642 2 -527.3712587603987 -323.2612773613955 21.3908 0.1144 2641 +2643 2 -527.9195105348748 -324.1247438180595 21.2964 0.1144 2642 +2644 2 -527.7868284216025 -325.25294021355876 21.2005 0.1144 2643 +2645 2 -527.3680762149525 -326.30120012380326 21.0634 0.1144 2644 +2646 2 -527.0454608051526 -327.39753254481417 20.9644 0.1144 2645 +2647 2 -526.8586835132019 -328.52639350313086 20.8929 0.1144 2646 +2648 2 -526.988111837305 -329.661573351842 20.8074 0.1144 2647 +2649 2 -559.5509585662666 -278.9943722422862 24.4878 0.1144 2550 +2650 2 -560.3053958112362 -279.15208128895904 25.401 0.1144 2649 +2651 2 -561.4016104980897 -279.4633827189698 25.7199 0.1144 2650 +2652 2 -562.3873656426795 -280.01550611542643 25.9927 0.1144 2651 +2653 2 -563.1784179200622 -280.82121518478556 26.2532 0.1144 2652 +2654 2 -563.9193562202482 -281.65114385962306 26.5485 0.1144 2653 +2655 2 -564.8150431151184 -282.33007534096555 26.8204 0.1144 2654 +2656 2 -565.7820104706373 -282.93957659884836 27.015 0.1144 2655 +2657 2 -566.7929100432139 -283.4716000514937 27.1814 0.1144 2656 +2658 2 -567.8654845085922 -283.8613410118996 27.3304 0.1144 2657 +2659 2 -568.9895575812767 -284.03835018472887 27.474 0.1144 2658 +2660 2 -570.1318017521787 -284.0472470403723 27.6303 0.1144 2659 +2661 2 -571.2748531054176 -284.00834506280125 27.8273 0.1144 2660 +2662 2 -572.4081759069591 -284.0228801068713 28.1277 0.1144 2661 +2663 2 -573.4998126332328 -284.2241458959427 28.5807 0.1144 2662 +2664 2 -574.5610802248888 -284.6106104853952 29.1234 0.1144 2663 +2665 2 -575.5209316311191 -285.17399338179655 29.79 0.1144 2664 +2666 2 -576.4093674674483 -285.8375654311823 30.6043 0.1144 2665 +2667 2 -577.1267845353049 -286.2500388130485 31.6938 0.1144 2666 +2668 2 -577.3444137554593 -287.00200918649085 32.9837 0.1144 2667 +2669 2 -577.7241467430348 -287.6361611463135 34.4585 0.1144 2668 +2670 2 -578.553448988733 -287.9712282817952 35.9654 0.1144 2669 +2671 2 -579.3000633388967 -288.3529328693096 37.4643 0.1144 2670 +2672 2 -580.3236556137781 -288.5978262028308 38.7534 0.1144 2671 +2673 2 -581.2190362714548 -287.9031991101698 39.699 0.1144 2672 +2674 2 -581.4654924881372 -287.2476599936722 41.7911 0.1144 2673 +2675 2 -554.6079157958827 -273.42261622015485 22.3487 0.1144 2543 +2676 2 -555.4403383425986 -272.63883237640766 22.3109 0.1144 2675 +2677 2 -556.4434174504881 -272.2453760722068 22.1189 0.1144 2676 +2678 2 -557.450107896708 -271.714394758515 21.9297 0.1144 2677 +2679 2 -557.6658566979339 -271.7771427048523 21.4603 0.1144 2678 +2680 2 -558.7312300352098 -272.19522363269016 21.5482 0.1144 2679 +2681 2 -559.802221925243 -272.597830651361 21.585 0.1144 2680 +2682 2 -560.8496209675789 -273.05624983302096 21.6347 0.1144 2681 +2683 2 -561.8872818894762 -273.53890244222066 21.6975 0.1144 2682 +2684 2 -562.4448070796982 -274.2285810864225 21.3851 0.1144 2683 +2685 2 -562.8397678864968 -275.2898583598495 21.3842 0.1144 2684 +2686 2 -562.6878056353382 -276.40662994536865 21.3846 0.1144 2685 +2687 2 -562.2374474533166 -277.4540458646129 21.3858 0.1144 2686 +2688 2 -561.5971602280875 -278.4000183585092 21.3875 0.1144 2687 +2689 2 -561.0207797172022 -279.38734906636324 21.3892 0.1144 2688 +2690 2 -560.8016575694488 -280.49676753761923 21.4293 0.1144 2689 +2691 2 -560.8009061919709 -281.6324526548202 21.4199 0.1144 2690 +2692 2 -560.8560007312988 -282.77560862044186 21.4079 0.1144 2691 +2693 2 -561.3699223035311 -283.7911022036783 21.3966 0.1144 2692 +2694 2 -561.7049268984981 -284.8830131622051 21.3863 0.1144 2693 +2695 2 -561.5367412926271 -286.0143879241553 21.3699 0.1144 2694 +2696 2 -562.6083750445353 -273.7491505378765 21.7719 0.1144 2683 +2697 2 -563.6642716114222 -274.03286104179983 21.9673 0.1144 2696 +2698 2 -564.7288660026562 -274.4177062472436 22.1788 0.1144 2697 +2699 2 -565.7844339139606 -274.8583941125458 22.3495 0.1144 2698 +2700 2 -566.9108657492712 -275.02331667133836 22.4775 0.1144 2699 +2701 2 -568.0520869991765 -275.11550874672844 22.567 0.1144 2700 +2702 2 -569.1904384043578 -275.0248365992885 22.6231 0.1144 2701 +2703 2 -570.314470673674 -274.8160473813291 22.6515 0.1144 2702 +2704 2 -571.4560034061675 -274.75946451602493 22.6772 0.1144 2703 +2705 2 -572.5990716363145 -274.7125015388155 22.7119 0.1144 2704 +2706 2 -573.7305442006669 -274.86774726699423 22.7599 0.1144 2705 +2707 2 -574.8511785532237 -275.0998329793288 22.8279 0.1144 2706 +2708 2 -575.8587548792555 -275.6317787634274 22.9244 0.1144 2707 +2709 2 -576.7608962154437 -276.3350482846925 23.0594 0.1144 2708 +2710 2 -577.7555354225441 -276.89935254455486 23.2405 0.1144 2709 +2711 2 -578.8803337556985 -277.10146558157373 23.4734 0.1144 2710 +2712 2 -579.2089877839724 -277.7816847739664 22.5898 0.1144 2711 +2713 2 -579.5156527075935 -278.86625318334427 22.5898 0.1144 2712 +2714 2 -579.8547973001832 -279.9396465713047 22.5898 0.1144 2713 +2715 2 -580.3760677333586 -280.9575597088058 22.5898 0.1144 2714 +2716 2 -580.871360312661 -281.9883585402409 22.5898 0.1144 2715 +2717 2 -581.2307130144782 -283.0690067418757 22.5898 0.1144 2716 +2718 2 -581.5139234566013 -284.17707275320913 22.5898 0.1144 2717 +2719 2 -581.8465894227976 -285.27145369462517 22.5898 0.1144 2718 +2720 2 -582.100660615491 -286.38256997523825 22.5898 0.1144 2719 +2721 2 -582.5848015641786 -287.36971687504786 22.5898 0.1144 2720 +2722 2 -583.2315386291032 -288.30784803264424 22.5898 0.1144 2721 +2723 2 -584.2152333718802 -288.69577656089734 22.5898 0.1144 2722 +2724 2 -585.2432408539664 -289.1622161783986 22.5898 0.1144 2723 +2725 2 -586.2353967543027 -289.7305457565732 22.5898 0.1144 2724 +2726 2 -586.7438389342493 -290.69504535722166 22.5898 0.1144 2725 +2727 2 -587.3079518561389 -291.6831375094814 22.5898 0.1144 2726 +2728 2 -588.1096056785293 -292.49127294308573 22.5898 0.1144 2727 +2729 2 -588.8471324985097 -293.36326742117006 22.5898 0.1144 2728 +2730 2 -589.6478518356646 -294.17868411409836 22.5898 0.1144 2729 +2731 2 -590.4040043916276 -295.03692897549325 22.5898 0.1144 2730 +2732 2 -591.2185408531052 -295.83872740585065 22.5898 0.1144 2731 +2733 2 -592.0906248333501 -296.57827936575615 22.5898 0.1144 2732 +2734 2 -593.0260225239746 -297.23714140015676 22.5898 0.1144 2733 +2735 2 -594.0946457865541 -297.6227728598092 22.5898 0.1144 2734 +2736 2 -595.1159822943896 -298.13452415464144 22.5898 0.1144 2735 +2737 2 -595.9087111943862 -298.94999482922765 22.5898 0.1144 2736 +2738 2 -595.8165531688988 -300.07495265880993 22.5898 0.1144 2737 +2739 2 -596.0901469798745 -301.1829985362878 22.5898 0.1144 2738 +2740 2 -596.5392939577733 -302.23392405327 22.5898 0.1144 2739 +2741 2 -596.7480831757327 -303.3579563225861 22.5898 0.1144 2740 +2742 2 -596.4682964325858 -304.4648436151138 22.5898 0.1144 2741 +2743 2 -579.3965210728338 -277.0685343862018 23.8903 0.1144 2711 +2744 2 -580.4542915637987 -277.20022052231343 24.4305 0.1144 2743 +2745 2 -581.4195468652716 -277.10763033396506 25.1239 0.1144 2744 +2746 2 -582.3098463566507 -277.6578568197417 25.8048 0.1144 2745 +2747 2 -582.8385510316834 -278.5698606939651 26.5006 0.1144 2746 +2748 2 -583.5372642342952 -279.4724624114996 27.0262 0.1144 2747 +2749 2 -584.3502150655806 -280.2548120430022 27.3329 0.1144 2748 +2750 2 -584.726678252612 -280.4918451183527 27.1079 0.1144 2749 +2751 2 -585.2172950689323 -281.4255481865407 27.6554 0.1144 2750 +2752 2 -585.7426112503615 -282.43618657861214 27.8576 0.1144 2751 +2753 2 -586.4000307857875 -283.3718652223997 28.0134 0.1144 2752 +2754 2 -587.0054741835263 -284.34307330624927 28.1257 0.1144 2753 +2755 2 -587.5445132399091 -285.35133626088646 28.1977 0.1144 2754 +2756 2 -588.0665598603655 -286.3700288426157 28.2332 0.1144 2755 +2757 2 -588.4008555735843 -287.46278684698973 28.2372 0.1144 2756 +2758 2 -588.8410811821227 -288.51935055239846 28.2372 0.1144 2757 +2759 2 -588.87426049274 -289.660056466886 28.2372 0.1144 2758 +2760 2 -584.3898239751572 -279.1013184390831 27.7588 0.1144 2749 +2761 2 -584.5862242100497 -278.0032368402326 28.0288 0.1144 2760 +2762 2 -584.8175168581951 -276.8898840430861 28.2999 0.1144 2761 +2763 2 -584.9630209129019 -275.78434195882886 28.6446 0.1144 2762 +2764 2 -585.0875510341142 -274.66581588004885 29.0298 0.1144 2763 +2765 2 -585.2233544773326 -273.53281768287025 29.3714 0.1144 2764 +2766 2 -585.3624141576489 -272.3981292431167 29.6713 0.1144 2765 +2767 2 -585.3066039265924 -271.25907300740687 29.9541 0.1144 2766 +2768 2 -584.910799923066 -270.1952483786299 30.2543 0.1144 2767 +2769 2 -584.7091904068948 -269.12065801342595 30.6886 0.1144 2768 +2770 2 -584.5667917082299 -267.9999467300802 31.1993 0.1144 2769 +2771 2 -583.7571622480714 -267.9278236599605 31.9242 0.1144 2770 +2772 2 -582.8523816942802 -268.51891041288366 32.7216 0.1144 2771 +2773 2 -582.3280351334326 -268.1934620235385 33.7383 0.1144 2772 +2774 2 -582.069844373058 -267.091105261298 34.6433 0.1144 2773 +2775 2 -581.752591026204 -266.0316170292209 35.4729 0.1144 2774 +2776 2 -582.0709030928338 -265.0655956639096 36.2267 0.1144 2775 +2777 2 -582.0236490629777 -264.06154432226305 36.8626 0.1144 2776 +2778 2 -581.3637147275454 -263.21248118390565 37.5133 0.1144 2777 +2779 2 -580.4246777583818 -262.77203729355836 38.2147 0.1144 2778 +2780 2 -580.2062094252751 -263.1638835994355 39.1882 0.1144 2779 +2781 2 -580.0806341864384 -262.89025260815146 39.0068 0.1144 2780 +2782 2 -580.2454383107867 -261.8203891913558 38.9312 0.1144 2781 +2783 2 -580.7475092219718 -260.795709007034 38.9068 0.1144 2782 +2784 2 -581.3497392874582 -259.82299885070563 38.8945 0.1144 2783 +2785 2 -581.9285930381798 -258.8364511401131 38.9001 0.1144 2784 +2786 2 -582.492050252195 -257.84110305126467 38.9208 0.1144 2785 +2787 2 -583.2720416192578 -257.0062269243408 38.9542 0.1144 2786 +2788 2 -583.8298437679382 -256.01001846577014 38.9973 0.1144 2787 +2789 2 -583.6873674007265 -254.8926304289691 39.0768 0.1144 2788 +2790 2 -583.28923157841 -253.82802309901675 39.3655 0.1144 2789 +2791 2 -580.4202632324198 -263.3269666692094 39.9916 0.1144 2780 +2792 2 -581.3744428985073 -263.8636797068983 40.7151 0.1144 2791 +2793 2 -582.4993800960475 -263.9994662732083 41.2429 0.1144 2792 +2794 2 -583.6416416420442 -263.9662902195384 41.5834 0.1144 2793 +2795 2 -584.7404238181031 -264.2671318216738 41.7766 0.1144 2794 +2796 2 -585.8594183567094 -264.5056487866242 41.869 0.1144 2795 +2797 2 -586.9516140370447 -264.8452261354813 41.9384 0.1144 2796 +2798 2 -587.8651131737664 -265.5274476077384 41.9958 0.1144 2797 +2799 2 -588.3928349934131 -266.53738392804235 42.0619 0.1144 2798 +2800 2 -588.6752259256973 -267.631588900323 42.1982 0.1144 2799 +2801 2 -588.914862306842 -268.71361280709755 42.4178 0.1144 2800 +2802 2 -589.1079329969073 -269.6111253689248 42.5866 0.1144 2801 +2803 2 -589.3224513957149 -270.7343918139738 42.7056 0.1144 2802 +2804 2 -589.4438524739965 -271.85343278649987 42.7759 0.1144 2803 +2805 2 -589.1188114942239 -272.926213421797 42.8 0.1144 2804 +2806 2 -588.434970637958 -273.83638575894065 42.7815 0.1144 2805 +2807 2 -587.7293224223116 -274.72635985168444 42.7361 0.1144 2806 +2808 2 -587.4052128729278 -275.7595443705377 42.6409 0.1144 2807 +2809 2 -587.6068387678208 -276.86008564577855 42.5001 0.1144 2808 +2810 2 -587.8050231838253 -277.9832471823586 42.3814 0.1144 2809 +2811 2 -587.9361450074507 -279.1201276366585 42.2932 0.1144 2810 +2812 2 -588.0680465713904 -280.2560904826312 42.233 0.1144 2811 +2813 2 -588.1676264682299 -281.3953090675153 42.1985 0.1144 2812 +2814 2 -588.2776732990112 -282.53370103649394 42.1868 0.1144 2813 +2815 2 -588.4394938526948 -283.6656960048598 42.1887 0.1144 2814 +2816 2 -588.4832142127674 -284.80394910945256 42.1949 0.1144 2815 +2817 2 -588.4395968617868 -285.946898406969 42.2027 0.1144 2816 +2818 2 -588.3966848395208 -287.0906977111938 42.2111 0.1144 2817 +2819 2 -588.219679219725 -288.21307373132277 42.198 0.1144 2818 +2820 2 -588.1849264976861 -289.3099381250885 42.257 0.1144 2819 +2821 2 -587.661278380014 -290.2382649796275 42.3284 0.1144 2820 +2822 2 -587.2789169795208 -291.26482214287415 42.3038 0.1144 2821 +2823 2 -587.113214680414 -292.39217158651206 42.266 0.1144 2822 +2824 2 -586.5553621031091 -293.37869255536896 42.224 0.1144 2823 +2825 2 -586.1139421673563 -294.4124092865482 42.1201 0.1144 2824 +2826 2 -585.6709061045419 -295.4412435866403 42.1137 0.1144 2825 +2827 2 -585.5472630947877 -296.57511577350215 42.1772 0.1144 2826 +2828 2 -589.4288091127389 -267.82571223794116 42.7622 0.1144 2801 +2829 2 -590.2748935406697 -267.06868569229505 42.7507 0.1144 2828 +2830 2 -591.2049304429975 -266.4040418400639 42.7468 0.1144 2829 +2831 2 -592.2204444561755 -265.8803622156379 42.7437 0.1144 2830 +2832 2 -593.2060974185015 -265.2992028761637 42.7414 0.1144 2831 +2833 2 -594.0514933946258 -264.5332653241709 42.74 0.1144 2832 +2834 2 -594.8338903999062 -263.69768712547943 42.7395 0.1144 2833 +2835 2 -595.4603367199379 -262.7429175102744 42.7395 0.1144 2834 +2836 2 -595.9518870116092 -261.7109320836536 42.7395 0.1144 2835 +2837 2 -596.6737144651377 -260.82742655037555 42.7395 0.1144 2836 +2838 2 -597.5593912543786 -260.10689897630243 42.7395 0.1144 2837 +2839 2 -598.5071962817276 -259.4666168508826 42.7395 0.1144 2838 +2840 2 -599.3960551925529 -258.74602522822374 42.7395 0.1144 2839 +2841 2 -600.3567562768499 -258.12677122005675 42.7395 0.1144 2840 +2842 2 -601.2473051341641 -257.4095772555421 42.7395 0.1144 2841 +2843 2 -602.2297122224061 -256.8251584220228 42.7395 0.1144 2842 +2844 2 -602.9870426703467 -255.9724864319692 42.7395 0.1144 2843 +2845 2 -603.8323745978853 -255.20336675839175 42.7395 0.1144 2844 +2846 2 -604.2908510181505 -254.162402521705 42.7395 0.1144 2845 +2847 2 -604.7200938456311 -253.10200231185198 42.7395 0.1144 2846 +2848 2 -605.1639602794846 -252.0480674045174 42.7395 0.1144 2847 +2849 2 -605.3499581272074 -250.91998263348185 42.7395 0.1144 2848 +2850 2 -605.0456555192458 -249.82163055751178 42.7395 0.1144 2849 +2851 2 -604.5430713176054 -248.79484697746116 42.7395 0.1144 2850 +2852 2 -603.8525809656201 -247.88250438072728 42.7395 0.1144 2851 +2853 2 -558.2286222031954 -270.7744392411663 21.7154 0.1144 2678 +2854 2 -558.9164314352545 -269.8601739840914 21.6933 0.1144 2853 +2855 2 -559.6124294680371 -268.9524312681401 21.7278 0.1144 2854 +2856 2 -560.4747604393826 -268.2034997720349 21.8172 0.1144 2855 +2857 2 -561.0955516940796 -267.2478697871078 21.9381 0.1144 2856 +2858 2 -561.5514500600252 -266.2561856035452 22.2018 0.1144 2857 +2859 2 -562.377333188709 -265.48865156016 22.509 0.1144 2858 +2860 2 -563.3574152681414 -264.90019734140066 22.8094 0.1144 2859 +2861 2 -564.4260751563281 -264.4915340895899 23.1093 0.1144 2860 +2862 2 -565.5676419387244 -264.4186878039626 23.4143 0.1144 2861 +2863 2 -565.4779220932861 -263.6022848156446 23.8589 0.1144 2862 +2864 2 -565.3626168020572 -262.64511370251245 24.4773 0.1144 2863 +2865 2 -565.7929707276809 -261.86458929629543 25.145 0.1144 2864 +2866 2 -566.6647930857492 -261.1754990366254 25.7221 0.1144 2865 +2867 2 -567.3453338841728 -260.28794725690716 26.2527 0.1144 2866 +2868 2 -568.1074925794424 -259.4595391912626 26.6806 0.1144 2867 +2869 2 -568.9851353128809 -258.72612542506886 26.9631 0.1144 2868 +2870 2 -569.9457285278477 -258.12461961016794 27.1418 0.1144 2869 +2871 2 -571.0136089718064 -257.7167325456381 27.2707 0.1144 2870 +2872 2 -572.1271138116282 -257.5038907694443 27.3876 0.1144 2871 +2873 2 -573.2701782866417 -257.49249533341913 27.5094 0.1144 2872 +2874 2 -574.4081400425018 -257.58793328289335 27.6646 0.1144 2873 +2875 2 -575.5239592695041 -257.82326161236483 27.8844 0.1144 2874 +2876 2 -576.5984205786348 -258.1223552351338 28.2302 0.1144 2875 +2877 2 -577.3298959304934 -258.77753762929854 28.6717 0.1144 2876 +2878 2 -577.7881094539327 -259.78725771275595 29.1788 0.1144 2877 +2879 2 -578.2510293502535 -260.06887820134034 29.944 0.1144 2878 +2880 2 -578.0423588063095 -259.2934505876392 30.7171 0.1144 2879 +2881 2 -578.1974043802776 -258.2575786505771 31.4437 0.1144 2880 +2882 2 -578.4715188850953 -257.15803340901186 32.0342 0.1144 2881 +2883 2 -578.8257230972723 -256.07074739968596 32.452 0.1144 2882 +2884 2 -579.0440254391009 -254.94760931042347 32.7281 0.1144 2883 +2885 2 -579.1855616162009 -253.8121482364223 32.8899 0.1144 2884 +2886 2 -579.3350846774258 -252.6783302333187 33.0002 0.1144 2885 +2887 2 -579.6189504244568 -251.58205810575973 33.0873 0.1144 2886 +2888 2 -580.0924649292631 -250.65355557817136 33.3343 0.1144 2887 +2889 2 -579.8906698561713 -250.44439471071323 34.438 0.1144 2888 +2890 2 -579.7196027740629 -249.87863273477373 35.7739 0.1144 2889 +2891 2 -580.7268094955582 -249.8103134829153 36.3549 0.1144 2890 +2892 2 -581.7545390093017 -250.0042329677041 36.9858 0.1144 2891 +2893 2 -582.7858634261386 -250.43999102814158 37.501 0.1144 2892 +2894 2 -583.7634055849294 -251.03091747685275 37.8557 0.1144 2893 +2895 2 -584.6906512834937 -251.6994498279727 38.0629 0.1144 2894 +2896 2 -585.5604001880013 -252.43977471821196 38.1184 0.1144 2895 +2897 2 -586.4033310027694 -253.18902373657258 38.0372 0.1144 2896 +2898 2 -587.281104098252 -253.91317264587715 37.9184 0.1144 2897 +2899 2 -588.2546105757167 -254.50656552444426 37.8224 0.1144 2898 +2900 2 -589.1972530130878 -255.1500277651912 37.7549 0.1144 2899 +2901 2 -590.0604793764718 -255.8985414561541 37.7138 0.1144 2900 +2902 2 -591.1187345038845 -256.2040358346694 37.6964 0.1144 2901 +2903 2 -592.2574588270646 -256.30675859650114 37.6978 0.1144 2902 +2904 2 -593.4004960621559 -256.30837389673445 37.7054 0.1144 2903 +2905 2 -594.5309253320847 -256.1513584016774 37.7166 0.1144 2904 +2906 2 -595.642915602381 -255.88512677551986 37.7325 0.1144 2905 +2907 2 -596.7613502470678 -255.64804150485858 37.7544 0.1144 2906 +2908 2 -597.8987155399159 -255.6568574350081 37.7818 0.1144 2907 +2909 2 -599.0121155087397 -255.89939320437637 37.8143 0.1144 2908 +2910 2 -600.0685306679916 -256.30691946279785 37.8955 0.1144 2909 +2911 2 -600.9788040644847 -256.9762648098623 37.9938 0.1144 2910 +2912 2 -601.8347254816558 -257.7351576992926 38.0722 0.1144 2911 +2913 2 -602.7757381720044 -258.3802428770815 38.1256 0.1144 2912 +2914 2 -603.7257463472268 -259.0180636724547 38.1536 0.1144 2913 +2915 2 -604.1879181795316 -260.0284991515547 38.1562 0.1144 2914 +2916 2 -604.5011285368926 -261.12771840722746 38.1335 0.1144 2915 +2917 2 -604.715505514654 -262.25098455619036 38.0948 0.1144 2916 +2918 2 -604.7358122531118 -263.39321915835103 38.0453 0.1144 2917 +2919 2 -604.768225739462 -264.52819589199044 37.9431 0.1144 2918 +2920 2 -604.9236182974771 -265.65699541489676 37.8092 0.1144 2919 +2921 2 -605.1104786667646 -266.785083001208 37.683 0.1144 2920 +2922 2 -605.300662578683 -267.9131068350198 37.5642 0.1144 2921 +2923 2 -605.4892200005261 -269.0411979743644 37.4486 0.1144 2922 +2924 2 -605.6826565965091 -270.1692286181568 37.331 0.1144 2923 +2925 2 -606.3765014861812 -271.03292918494833 37.1367 0.1144 2924 +2926 2 -606.8766966304263 -272.0524952581744 36.9225 0.1144 2925 +2927 2 -607.1930991762995 -273.1468421496877 36.682 0.1144 2926 +2928 2 -607.5007285838391 -274.2435748416491 36.4235 0.1144 2927 +2929 2 -607.8065195177769 -275.3403036844911 36.1564 0.1144 2928 +2930 2 -607.9295266561921 -276.46903540367805 35.882 0.1144 2929 +2931 2 -607.6716788286446 -277.56705906363675 35.6023 0.1144 2930 +2932 2 -607.4048526892177 -278.6641446853266 35.3231 0.1144 2931 +2933 2 -607.1388024409856 -279.7621511722908 35.0563 0.1144 2932 +2934 2 -607.0401859229603 -280.8984799241812 34.8477 0.1144 2933 +2935 2 -607.0207515708946 -282.0414798524225 34.7262 0.1144 2934 +2936 2 -606.5018366569101 -283.0394667872289 34.8664 0.1144 2935 +2937 2 -580.572193396951 -250.26953947526712 33.5317 0.1144 2888 +2938 2 -581.4659211189025 -249.55383709367592 33.682 0.1144 2937 +2939 2 -582.3580223507788 -248.83820201761765 33.7907 0.1144 2938 +2940 2 -583.2510411909823 -248.1233466818737 33.8638 0.1144 2939 +2941 2 -584.1439186101395 -247.40849105004358 33.9094 0.1144 2940 +2942 2 -585.0368665917767 -246.69370627677964 33.9366 0.1144 2941 +2943 2 -585.9330607435842 -245.98203957651467 33.9805 0.1144 2942 +2944 2 -586.8784497697019 -245.34740925948248 34.0474 0.1144 2943 +2945 2 -587.7106930903351 -244.61545608115657 34.1474 0.1144 2944 +2946 2 -588.5042954118019 -243.8316616722951 34.326 0.1144 2945 +2947 2 -589.4472046841887 -243.1993596210198 34.5654 0.1144 2946 +2948 2 -590.4884462644904 -242.74856601918995 34.8174 0.1144 2947 +2949 2 -591.5389962502987 -242.4450118604008 35.1708 0.1144 2948 +2950 2 -592.4727973604602 -242.34662824051824 35.7137 0.1144 2949 +2951 2 -593.521646040393 -242.11264997955524 36.2314 0.1144 2950 +2952 2 -594.6200250601992 -241.7954780563816 36.6293 0.1144 2951 +2953 2 -595.6153650140525 -241.24828019795805 36.918 0.1144 2952 +2954 2 -596.4210945133532 -240.44746986838143 37.1146 0.1144 2953 +2955 2 -597.24060738316 -239.64916327551063 37.2299 0.1144 2954 +2956 2 -597.8703535589336 -238.70564359150907 37.2898 0.1144 2955 +2957 2 -598.4119427159155 -237.71908857274954 37.4041 0.1144 2956 +2958 2 -599.0634458224454 -236.78607964343425 37.5166 0.1144 2957 +2959 2 -599.8587489516012 -235.96672124642183 37.6096 0.1144 2958 +2960 2 -600.721859367175 -235.2170135630357 37.6866 0.1144 2959 +2961 2 -601.6728328961474 -234.58317275715947 37.7516 0.1144 2960 +2962 2 -602.5681731921272 -233.874049859211 37.8084 0.1144 2961 +2963 2 -603.4328392392101 -233.12434543277217 37.8605 0.1144 2962 +2964 2 -604.2927778962131 -232.3697520613516 37.9271 0.1144 2963 +2965 2 -605.0710414177651 -231.54958017020832 38.0604 0.1144 2964 +2966 2 -605.9380897122626 -230.81034593465856 38.2096 0.1144 2965 +2967 2 -606.8787009196759 -230.16113918293107 38.3594 0.1144 2966 +2968 2 -607.8997790057672 -229.64800712185482 38.5129 0.1144 2967 +2969 2 -608.9451472598167 -229.1850598965415 38.6733 0.1144 2968 +2970 2 -609.9888320812719 -228.71560375006558 38.8413 0.1144 2969 +2971 2 -610.9408695367097 -228.35039562660253 39.1818 0.1144 2970 +2972 2 -611.9688357737562 -228.05973426781404 39.6172 0.1144 2971 +2973 2 -613.0599335342381 -227.74162785940482 39.9745 0.1144 2972 +2974 2 -613.9931553169113 -227.10937623675412 40.2881 0.1144 2973 +2975 2 -614.1928082358684 -226.0113014478841 40.5163 0.1144 2974 +2976 2 -614.6100388609119 -224.94677486036935 40.6294 0.1144 2975 +2977 2 -615.0781387223051 -223.90257807347345 40.6316 0.1144 2976 +2978 2 -616.0908407166214 -223.94521562391495 41.9233 0.1144 2977 +2979 2 -617.1325570685437 -223.63916809143385 42.8812 0.1144 2978 +2980 2 -618.1767466603025 -223.33390355621427 43.2877 0.1144 2979 +2981 2 -618.7271250757246 -222.81009863084861 43.7777 0.1144 2980 +2982 2 -618.6703597273906 -221.72195219528558 44.2618 0.1144 2981 +2983 2 -618.8077760407233 -220.59539206070335 44.632 0.1144 2982 +2984 2 -619.0867898535364 -219.48616969243832 44.9014 0.1144 2983 +2985 2 -619.4320154577479 -218.3980870658897 45.0839 0.1144 2984 +2986 2 -619.7425374435304 -217.30264856631717 45.2138 0.1144 2985 +2987 2 -619.6169827476651 -216.2086305324868 45.3183 0.1144 2986 +2988 2 -619.2002448762548 -215.14645913552093 45.4479 0.1144 2987 +2989 2 -618.9412101248798 -214.0757083486521 45.677 0.1144 2988 +2990 2 -618.7962436409234 -212.96559831422795 45.948 0.1144 2989 +2991 2 -618.4636785319764 -211.89059235223934 46.2202 0.1144 2990 +2992 2 -618.1228605737199 -210.80588172754264 46.4531 0.1144 2991 +2993 2 -618.0500374767951 -209.68701317111865 46.6684 0.1144 2992 +2994 2 -618.2917769250269 -208.5824503892142 46.8387 0.1144 2993 +2995 2 -618.3540328376787 -207.45339943760038 46.9316 0.1144 2994 +2996 2 -618.4283721074199 -206.32826288012203 46.9171 0.1144 2995 +2997 2 -618.5771794769162 -205.19854460693014 46.8748 0.1144 2996 +2998 2 -618.8026892586415 -204.0778257758462 46.8381 0.1144 2997 +2999 2 -618.7169499709132 -202.947545733317 46.8138 0.1144 2998 +3000 2 -618.532424677363 -201.81868521667192 46.8107 0.1144 2999 +3001 2 -618.286428104269 -200.70108044483797 46.8336 0.1144 3000 +3002 2 -618.0388017841524 -199.58509861004606 46.8874 0.1144 3001 +3003 2 -617.8234734442474 -198.47717472004567 47.0109 0.1144 3002 +3004 2 -617.8849602756848 -197.34395021909276 47.1335 0.1144 3003 +3005 2 -617.685844927478 -196.22637288928135 47.2427 0.1144 3004 +3006 2 -617.5620043631768 -195.09042692021697 47.3416 0.1144 3005 +3007 2 -617.646128628948 -193.9524414774681 47.4348 0.1144 3006 +3008 2 -617.7139962843767 -192.8111693007518 47.5272 0.1144 3007 +3009 2 -618.2579976874562 -191.854530014789 47.6935 0.1144 3008 +3010 2 -618.7309595499949 -190.81847515302545 47.864 0.1144 3009 +3011 2 -619.161966735564 -189.7597049862811 48.0287 0.1144 3010 +3012 2 -619.0250948029623 -188.66736031811732 48.26 0.1144 3011 +3013 2 -619.1697621748358 -187.5561596154919 48.5288 0.1144 3012 +3014 2 -619.2805426793586 -186.41900780072936 48.7684 0.1144 3013 +3015 2 -619.1073948220107 -185.29349451360392 48.9854 0.1144 3014 +3016 2 -619.0110439223472 -184.16559642240335 49.2058 0.1144 3015 +3017 2 -618.9698068690388 -183.0233179994983 49.3727 0.1144 3016 +3018 2 -618.9284992532503 -181.88096871802705 49.4808 0.1144 3017 +3019 2 -618.8871913413757 -180.7387608576021 49.5387 0.1144 3018 +3020 2 -618.8458837255871 -179.5964115761308 49.5564 0.1144 3019 +3021 2 -618.5982473385427 -178.48523805691272 49.4855 0.1144 3020 +3022 2 -618.2154472612942 -177.4246933521225 49.315 0.1144 3021 +3023 2 -617.8350528222632 -176.36344657556478 49.0837 0.1144 3022 +3024 2 -617.4465268211136 -175.30211206353252 48.8267 0.1144 3023 +3025 2 -617.0078568440844 -174.24555161507104 48.629 0.1144 3024 +3026 2 -616.5684074228268 -173.18976735389057 48.4896 0.1144 3025 +3027 2 -616.1297374457977 -172.13320690542903 48.3633 0.1144 3026 +3028 2 -615.260663597897 -222.87970375089506 40.4765 0.1144 2977 +3029 2 -615.2355485438654 -221.73745908180663 40.2909 0.1144 3028 +3030 2 -614.5830754881121 -220.80334643254204 40.0837 0.1144 3029 +3031 2 -613.9128403230457 -219.87577270312298 39.8692 0.1144 3030 +3032 2 -613.8499495176179 -219.78824244211214 40.4348 0.1144 3031 +3033 2 -613.19494903827 -218.87922684705657 40.9581 0.1144 3032 +3034 2 -612.4225293068504 -218.05651547694336 41.1807 0.1144 3033 +3035 2 -611.5137396869272 -217.45526776865657 41.5089 0.1144 3034 +3036 2 -610.4025082853321 -217.3590372531796 41.8508 0.1144 3035 +3037 2 -609.2995442553945 -217.16425314534857 42.2159 0.1144 3036 +3038 2 -608.6737070084512 -216.24073217626423 42.5071 0.1144 3037 +3039 2 -608.4058491883044 -215.12866779045456 42.721 0.1144 3038 +3040 2 -608.205974529725 -214.00225001677651 42.8666 0.1144 3039 +3041 2 -608.2326868841674 -212.8617402052798 42.9906 0.1144 3040 +3042 2 -608.3377245878809 -211.73185958291364 43.302 0.1144 3041 +3043 2 -614.5747082512802 -219.42977098163013 39.4517 0.1144 3031 +3044 2 -615.3541849266974 -218.80695556557114 38.9189 0.1144 3043 +3045 2 -615.0427636106863 -217.63002884995367 38.2754 0.1144 3044 +3046 2 -614.8323410926712 -216.5093165702351 38.1612 0.1144 3045 +3047 2 -614.6147013639174 -215.39085192686545 38.1735 0.1144 3046 +3048 2 -614.2407654174243 -214.31823422799957 38.2796 0.1144 3047 +3049 2 -613.8061207587073 -213.26415708630228 38.4199 0.1144 3048 +3050 2 -613.4047390623066 -212.1962902623047 38.5739 0.1144 3049 +3051 2 -612.9118456073272 -211.1679006221204 38.7579 0.1144 3050 +3052 2 -612.383269931853 -210.16050810413307 38.9824 0.1144 3051 +3053 2 -611.6138999715264 -209.4009478931246 39.2563 0.1144 3052 +3054 2 -610.6647484108923 -208.79303957360096 39.5634 0.1144 3053 +3055 2 -609.9952115624599 -207.90343902358362 39.8894 0.1144 3054 +3056 2 -609.5945183178658 -206.8444832059328 40.2293 0.1144 3055 +3057 2 -609.2788274125014 -205.78174554673828 40.6255 0.1144 3056 +3058 2 -608.834515491912 -204.7518312701006 41.0144 0.1144 3057 +3059 2 -608.2646093405885 -203.76132282052347 41.3678 0.1144 3058 +3060 2 -607.6543508172955 -202.79335735381088 41.7144 0.1144 3059 +3061 2 -606.8438091772607 -202.00860859798522 42.0762 0.1144 3060 +3062 2 -605.9826328526756 -201.4292395118459 42.604 0.1144 3061 +3063 2 -606.0247153307305 -201.458460481042 43.1777 0.1144 3062 +3064 2 -606.3393624999998 -201.83763433149963 44.1014 0.1144 3063 +3065 2 -606.4536276972374 -202.88630308506302 45.0747 0.1144 3064 +3066 2 -606.4941694887589 -204.02292318568598 45.9724 0.1144 3065 +3067 2 -606.8674244937129 -205.01549479583653 46.8059 0.1144 3066 +3068 2 -607.6746419473448 -205.4628752072895 47.6588 0.1144 3067 +3069 2 -608.1057893788292 -205.04637183116344 48.7197 0.1144 3068 +3070 2 -608.5177378565364 -204.17437978319813 49.7773 0.1144 3069 +3071 2 -608.4501026010641 -203.27953400753782 50.8337 0.1144 3070 +3072 2 -608.5936346332046 -202.33909758983074 51.8563 0.1144 3071 +3073 2 -609.3273422347648 -201.5227922208587 52.736 0.1144 3072 +3074 2 -610.0263830265599 -200.71532383670566 53.5091 0.1144 3073 +3075 2 -610.4815999527798 -199.67760547410293 54.0442 0.1144 3074 +3076 2 -610.6190298860736 -198.54453997139146 54.404 0.1144 3075 +3077 2 -610.5914415922055 -197.40151230504145 54.6389 0.1144 3076 +3078 2 -610.4094601009717 -196.27350564422412 54.8122 0.1144 3077 +3079 2 -610.165852585273 -195.1631183792147 54.9808 0.1144 3078 +3080 2 -609.917362638487 -194.05434724126675 55.1533 0.1144 3079 +3081 2 -609.6713491884848 -192.94480346907122 55.3423 0.1144 3080 +3082 2 -609.2958712304436 -191.86567714512896 55.4994 0.1144 3081 +3083 2 -608.8952049296854 -190.79385201226594 55.6195 0.1144 3082 +3084 2 -608.3902147937415 -189.7679119250292 55.7074 0.1144 3083 +3085 2 -607.8251978834858 -188.77253466432595 55.7721 0.1144 3084 +3086 2 -607.5629918717267 -187.6628862797476 55.8253 0.1144 3085 +3087 2 -607.5670836687436 -186.5190764104087 55.8852 0.1144 3086 +3088 2 -607.2303719542933 -185.43197021442225 55.991 0.1144 3087 +3089 2 -606.9009518621813 -184.3408487670513 56.1254 0.1144 3088 +3090 2 -606.4963207386631 -183.2714195015641 56.247 0.1144 3089 +3091 2 -606.0212027168719 -182.2301269944513 56.3587 0.1144 3090 +3092 2 -605.083487212575 -182.34059397142354 56.7501 0.1144 3091 +3093 2 -603.9459288715829 -182.42398456345333 56.8224 0.1144 3092 +3094 2 -602.8194738475697 -182.23636377868857 56.8509 0.1144 3093 +3095 2 -601.7066910112708 -182.47586505058118 56.8837 0.1144 3094 +3096 2 -600.7596754950778 -183.11056267314618 56.9212 0.1144 3095 +3097 2 -600.1364110005443 -184.0654096608118 56.9621 0.1144 3096 +3098 2 -599.4236062718121 -184.92864007541553 57.0858 0.1144 3097 +3099 2 -599.5314029095841 -185.9934880668608 57.1838 0.1144 3098 +3100 2 -599.6463289145054 -187.13181954028713 57.2589 0.1144 3099 +3101 2 -599.7628102548498 -188.27029569170688 57.3121 0.1144 3100 +3102 2 -599.8769600724902 -189.40784772090493 57.3454 0.1144 3101 +3103 2 -599.7403063264774 -190.54169266784461 57.3611 0.1144 3102 +3104 2 -599.7847993207977 -191.68242226922106 57.3611 0.1144 3103 +3105 2 -599.874617908496 -192.82317605567275 57.3611 0.1144 3104 +3106 2 -599.9661335487499 -193.9639333951578 57.3611 0.1144 3105 +3107 2 -600.0599842647412 -195.10391780430902 57.3611 0.1144 3106 +3108 2 -600.1514290464287 -196.24474570627413 57.3611 0.1144 3107 +3109 2 -600.2436535684308 -197.38465599991193 57.3611 0.1144 3108 +3110 2 -600.3359486529127 -198.52463715211596 57.3611 0.1144 3109 +3111 2 -600.4289490661096 -199.66546831102832 57.3611 0.1144 3110 +3112 2 -600.5212441505917 -200.80544946323235 57.3611 0.1144 3111 +3113 2 -600.6135392350736 -201.94543061543638 57.3611 0.1144 3112 +3114 2 -600.7057637570756 -203.0853409090743 57.3608 0.1144 3113 +3115 2 -600.7988347327525 -204.22624292655271 57.3608 0.1144 3114 +3116 2 -599.9665241065863 -204.95656961480339 57.3608 0.1144 3115 +3117 2 -599.0582741336978 -205.65116976362836 57.3605 0.1144 3116 +3118 2 -598.1483979668197 -206.34569579693985 57.3602 0.1144 3117 +3119 2 -597.240147993931 -207.04029594576488 57.36 0.1144 3118 +3120 2 -596.3310512712812 -207.7340457917954 57.3597 0.1144 3119 +3121 2 -595.4211042458371 -208.42864238758702 57.3591 0.1144 3120 +3122 2 -594.5128542729484 -209.123242536412 57.3583 0.1144 3121 +3123 2 -593.6030486685506 -209.81783942828972 57.3572 0.1144 3122 +3124 2 -592.6947281331817 -210.51236871854846 57.3555 0.1144 3123 +3125 2 -591.7848516702177 -211.20703617290636 57.3532 0.1144 3124 +3126 2 -590.876601697329 -211.90163632173133 57.3504 0.1144 3125 +3127 2 -589.9675049746793 -212.59538616776186 57.346 0.1144 3126 +3128 2 -589.0576288078012 -213.2899122010734 57.3398 0.1144 3127 +3129 2 -588.1493788349126 -213.98451234989838 57.3314 0.1144 3128 +3130 2 -587.2394318094683 -214.67910894569 57.3199 0.1144 3129 +3131 2 -586.3086154629125 -215.34452898520212 57.3048 0.1144 3130 +3132 2 -586.4396174005376 -214.20826803703105 57.2788 0.1144 3131 +3133 2 -586.5713955254437 -213.07278653308825 57.244 0.1144 3132 +3134 2 -586.702397463069 -211.9365255849173 57.2032 0.1144 3133 +3135 2 -586.8342497034885 -210.79941788698525 57.1575 0.1144 3134 +3136 2 -586.9652516411136 -209.66315693881424 57.1094 0.1144 3135 +3137 2 -587.0970297660199 -208.52767543487138 57.0606 0.1144 3136 +3138 2 -587.228031703645 -207.39141448670048 57.0125 0.1144 3137 +3139 2 -587.3590336412701 -206.2551535385294 56.9657 0.1144 3138 +3140 2 -587.4908150231236 -205.1181164030775 56.9206 0.1144 3139 +3141 2 -587.6226640065959 -203.98256433665458 56.8772 0.1144 3140 +3142 2 -587.7536659442211 -202.84630338848356 56.8358 0.1144 3141 +3143 2 -588.0243414702959 -202.2410196702289 56.8033 0.1144 3142 +3144 2 -588.4431241738151 -201.17819339221685 56.7764 0.1144 3143 +3145 2 -588.7019132965788 -200.06963578886948 56.7532 0.1144 3144 +3146 2 -588.8619637872979 -198.9398703440003 56.7294 0.1144 3145 +3147 2 -589.2040713185104 -197.85503388762183 56.6969 0.1144 3146 +3148 2 -589.6842474309266 -196.8181455999722 56.6518 0.1144 3147 +3149 2 -590.1644941058228 -195.78132817088877 56.5989 0.1144 3148 +3150 2 -590.5372595072101 -194.71112233296392 56.553 0.1144 3149 +3151 2 -590.5080480741997 -193.60033540822027 56.5513 0.1144 3150 +3152 2 -590.1900021613428 -192.51411682187822 56.6028 0.1144 3151 +3153 2 -590.0231880502948 -191.40304180534903 56.6616 0.1144 3152 +3154 2 -590.1460480627877 -190.27164285832364 56.6656 0.1144 3153 +3155 2 -590.2795837358017 -189.1410440815541 56.5796 0.1144 3154 +3156 2 -590.2293648175803 -187.99952467293562 56.392 0.1144 3155 +3157 2 -590.0278571550311 -186.8762854678088 56.1036 0.1144 3156 +3158 2 -589.5825907044211 -186.6400275833664 55.5923 0.1144 3157 +3159 2 -589.0443727224631 -187.16470649841526 54.773 0.1144 3158 +3160 2 -588.723891943019 -187.61297860328793 53.7118 0.1144 3159 +3161 2 -588.295012023124 -188.46626754281002 52.7411 0.1144 3160 +3162 2 -587.6806452110623 -189.42679002575207 52.0366 0.1144 3161 +3163 2 -587.2973624471082 -190.4881349898687 51.5584 0.1144 3162 +3164 2 -587.3290166230856 -191.61427127964154 51.2845 0.1144 3163 +3165 2 -587.6713196503712 -192.69891430271926 51.1692 0.1144 3164 +3166 2 -588.2622639858753 -193.67171837977466 51.142 0.1144 3165 +3167 2 -588.7470964412162 -194.70009114305068 51.1322 0.1144 3166 +3168 2 -589.0934215298668 -195.78877310440177 51.1154 0.1144 3167 +3169 2 -588.6369466326644 -196.7180891261211 51.0964 0.1144 3168 +3170 2 -587.5190033969352 -196.68668639236265 51.077 0.1144 3169 +3171 2 -586.4009347146812 -196.7489752498128 50.9832 0.1144 3170 +3172 2 -585.3137980218254 -197.10025333203052 50.9211 0.1144 3171 +3173 2 -584.3418205606754 -197.70166460147644 50.8976 0.1144 3172 +3174 2 -583.5537818139353 -198.5300184833628 50.9144 0.1144 3173 +3175 2 -583.0613847725028 -199.5611536071892 50.9737 0.1144 3174 +3176 2 -582.6127200900033 -200.61027013202218 51.1008 0.1144 3175 +3177 2 -582.0419445119145 -201.5886322988384 51.3184 0.1144 3176 +3178 2 -581.4729365488612 -202.56706887725423 51.5922 0.1144 3177 +3179 2 -580.9021609707722 -203.5454310440704 51.9036 0.1144 3178 +3180 2 -580.3322353993917 -204.5230878821719 52.2343 0.1144 3179 +3181 2 -579.7630860152922 -205.50152416450143 52.5692 0.1144 3180 +3182 2 -579.2554374112328 -206.5221621536027 52.8702 0.1144 3181 +3183 2 -578.7597944957163 -207.550037783384 53.1325 0.1144 3182 +3184 2 -578.2649983299608 -208.5787637159597 53.3638 0.1144 3183 +3185 2 -578.4554191672823 -209.1883362175653 53.5648 0.1144 3184 +3186 2 -578.7936933232223 -210.27219298643425 53.7592 0.1144 3185 +3187 2 -579.1320380416423 -211.35612061386948 53.9414 0.1144 3186 +3188 2 -579.469532753354 -212.4407535700195 54.1061 0.1144 3187 +3189 2 -579.8078069092938 -213.52461033888844 54.2447 0.1144 3188 +3190 2 -579.2795641562338 -214.31709206349765 54.175 0.1144 3189 +3191 2 -578.1596764339467 -214.43764283898483 54.0652 0.1144 3190 +3192 2 -577.0420852820739 -214.67713404394962 53.942 0.1144 3191 +3193 2 -576.1201567531622 -215.31916740568303 53.7488 0.1144 3192 +3194 2 -575.0154107314263 -215.60401114786205 53.5696 0.1144 3193 +3195 2 -573.8841074718141 -215.7731870763831 53.429 0.1144 3194 +3196 2 -572.8815535641696 -216.32107693964647 53.3319 0.1144 3195 +3197 2 -571.907970042886 -216.91279746243143 53.2162 0.1144 3196 +3198 2 -570.9094547774287 -217.4568066853761 53.0818 0.1144 3197 +3199 2 -569.8785818304802 -217.95372545866772 52.9855 0.1144 3198 +3200 2 -568.8696099940948 -218.4936115608978 52.9124 0.1144 3199 +3201 2 -567.8830462334221 -219.070738475993 52.857 0.1144 3200 +3202 2 -566.9094422821968 -219.6722170509718 52.8153 0.1144 3201 +3203 2 -566.047951546718 -220.42511011288966 52.7842 0.1144 3202 +3204 2 -565.2559716641067 -221.24454617844887 52.7556 0.1144 3203 +3205 2 -564.1247697599301 -221.39908517672225 52.7187 0.1144 3204 +3206 2 -562.985026270887 -221.34409009345293 52.6512 0.1144 3205 +3207 2 -561.9231727248184 -221.23749775460325 52.5384 0.1144 3206 +3208 2 -561.467516825757 -220.18825567021545 52.4496 0.1144 3207 +3209 2 -561.0126406670097 -219.13809597750034 52.3835 0.1144 3208 +3210 2 -560.5578318137954 -218.08956277486064 52.3387 0.1144 3209 +3211 2 -560.1029556550482 -217.03940308214558 52.313 0.1144 3210 +3212 2 -559.6473000520728 -215.9900195767115 52.3043 0.1144 3211 +3213 2 -559.1924944558057 -214.9399307425626 52.3062 0.1144 3212 +3214 2 -558.7384650468196 -213.89062135264194 52.3088 0.1144 3213 +3215 2 -558.2827385852779 -212.8413084096879 52.3124 0.1144 3214 +3216 2 -557.8278624265308 -211.79114871697286 52.3172 0.1144 3215 +3217 2 -557.2741213949417 -210.84762610466586 52.3242 0.1144 3216 +3218 2 -556.1827591404924 -210.51526300568602 52.334 0.1144 3217 +3219 2 -555.054687989418 -210.32275978983418 52.3477 0.1144 3218 +3220 2 -553.92661328531 -210.1319536265377 52.3664 0.1144 3219 +3221 2 -552.7986094397684 -209.9410769007612 52.3925 0.1144 3220 +3222 2 -551.6713850384549 -209.74942398770364 52.43 0.1144 3221 +3223 2 -550.543310334347 -209.55861782440726 52.484 0.1144 3222 +3224 2 -549.4152356302391 -209.36781166111078 52.5568 0.1144 3223 +3225 2 -548.2879507333732 -209.17127957391332 52.6478 0.1144 3224 +3226 2 -547.5543070538572 -208.77496499998742 52.7797 0.1144 3225 +3227 2 -548.1232671449463 -207.8531676986528 53.0354 0.1144 3226 +3228 2 -548.5062585601677 -206.93098104408293 53.3484 0.1144 3227 +3229 2 -548.3411853224195 -205.79897926573662 53.59 0.1144 3228 +3230 2 -547.7559296039666 -204.84478404775538 53.7636 0.1144 3229 +3231 2 -547.0256339107718 -203.96389514414656 53.874 0.1144 3230 +3232 2 -546.2864838576633 -203.09041234008592 53.9249 0.1144 3231 +3233 2 -545.5473341006407 -202.21678811497904 53.926 0.1144 3232 +3234 2 -544.8689504965475 -201.29718764972384 53.9017 0.1144 3233 +3235 2 -544.6471737310322 -200.19582636645774 53.8709 0.1144 3234 +3236 2 -544.5176781013961 -199.05902002767127 53.8342 0.1144 3235 +3237 2 -544.3226589300677 -197.94385544214387 53.7412 0.1144 3236 +3238 2 -543.8742745194887 -196.90021473751912 53.6357 0.1144 3237 +3239 2 -543.4526610269718 -195.8364067835502 53.5497 0.1144 3238 +3240 2 -543.020429112539 -194.77823346497442 53.4848 0.1144 3239 +3241 2 -542.3128517791718 -193.88770474151565 53.4394 0.1144 3240 +3242 2 -541.4423939929161 -193.14822689712352 53.4108 0.1144 3241 +3243 2 -540.4762096346586 -192.53625239940433 53.3966 0.1144 3242 +3244 2 -539.491365786602 -191.95414951765136 53.3845 0.1144 3243 +3245 2 -538.5973023269605 -191.24283587365622 53.3686 0.1144 3244 +3246 2 -537.6619010833026 -190.58567089181108 53.3467 0.1144 3245 +3247 2 -536.6559749342351 -190.04234411847662 53.3156 0.1144 3246 +3248 2 -535.7108592570276 -189.39809888046815 53.2717 0.1144 3247 +3249 2 -534.8087884833194 -188.6949002177693 53.2104 0.1144 3248 +3250 2 -533.8482796203384 -188.07402803757842 53.1261 0.1144 3249 +3251 2 -532.741382260883 -187.79904961000526 53.0155 0.1144 3250 +3252 2 -531.6475835752608 -187.48209637160684 52.8374 0.1144 3251 +3253 2 -530.5349393637763 -187.25009809866063 52.5896 0.1144 3252 +3254 2 -529.4214582673582 -187.04631169597516 52.2701 0.1144 3253 +3255 2 -528.3935012138966 -186.5895595681877 51.8826 0.1144 3254 +3256 2 -527.9008559306773 -185.78037403017927 51.9565 0.1144 3255 +3257 2 -527.3059600962883 -184.80360187341668 51.8686 0.1144 3256 +3258 2 -526.9733481117498 -183.7172113691589 51.8336 0.1144 3257 +3259 2 -526.6982051831596 -182.60605097171546 51.7877 0.1144 3258 +3260 2 -526.4481732248257 -181.4907712086911 51.7202 0.1144 3259 +3261 2 -526.2498473877749 -180.3676093760249 51.613 0.1144 3260 +3262 2 -526.0621299057124 -179.24362122353924 51.4749 0.1144 3261 +3263 2 -525.8736329794217 -178.12040925833455 51.3184 0.1144 3262 +3264 2 -525.6866916846401 -176.99720055007708 51.1557 0.1144 3263 +3265 2 -525.0681697469237 -176.05835064590525 51.0224 0.1144 3264 +3266 2 -524.1677118433297 -175.3615900458027 50.9292 0.1144 3265 +3267 2 -523.236356347926 -174.6971503185279 50.8721 0.1144 3266 +3268 2 -522.3058511553164 -174.03186384149203 50.8418 0.1144 3267 +3269 2 -521.8323760023223 -173.01645493888316 50.8298 0.1144 3268 +3270 2 -521.2592171669343 -172.02593967932555 50.827 0.1144 3269 +3271 2 -528.8517762292611 -187.5361350064347 51.0068 0.1144 3255 +3272 2 -529.3157431186239 -188.49976367224693 50.4442 0.1144 3271 +3273 2 -529.7527465399671 -189.54175419990744 49.9542 0.1144 3272 +3274 2 -530.0603018319933 -190.64011308585808 49.5768 0.1144 3273 +3275 2 -530.4043424756313 -191.70538497862773 49.2486 0.1144 3274 +3276 2 -531.0082375500278 -192.63932521179024 48.925 0.1144 3275 +3277 2 -531.655065607374 -193.56776917575885 48.6724 0.1144 3276 +3278 2 -531.7652954193716 -194.61876293813188 48.4949 0.1144 3277 +3279 2 -531.1081546226018 -195.50883858841146 48.358 0.1144 3278 +3280 2 -530.3379752893907 -196.35172558243525 48.2482 0.1144 3279 +3281 2 -529.641977256608 -197.25946829838657 48.1611 0.1144 3280 +3282 2 -529.0251303947293 -198.2224604681317 48.0855 0.1144 3281 +3283 2 -528.8085525474787 -199.29872088554023 47.9531 0.1144 3282 +3284 2 -528.0155056835551 -199.8172094115666 47.728 0.1144 3283 +3285 2 -526.8756427636949 -199.8868065661625 47.5465 0.1144 3284 +3286 2 -525.7836508796742 -200.22669003918335 47.4102 0.1144 3285 +3287 2 -524.6644400477065 -200.46299586561642 47.3164 0.1144 3286 +3288 2 -523.5563672263925 -200.74945899180412 47.2606 0.1144 3287 +3289 2 -522.5392975817053 -201.27313535928292 47.2391 0.1144 3288 +3290 2 -521.4923096475609 -201.73289720606448 47.2385 0.1144 3289 +3291 2 -520.3675047439972 -201.9392099272402 47.2385 0.1144 3290 +3292 2 -519.2259142747121 -202.02336989657044 47.2385 0.1144 3291 +3293 2 -518.082968530229 -201.97805549303433 47.2385 0.1144 3292 +3294 2 -516.9400933482259 -201.93281194806443 47.2385 0.1144 3293 +3295 2 -577.4478158408997 -209.07457424385515 54.5493 0.1144 3184 +3296 2 -576.449328313551 -209.5715608208661 54.4611 0.1144 3295 +3297 2 -575.3165472930768 -209.70353975726644 54.425 0.1144 3296 +3298 2 -574.1877986969814 -209.83460789532003 54.3746 0.1144 3297 +3299 2 -573.0958136229413 -210.1712386842763 54.3074 0.1144 3298 +3300 2 -572.0271569917015 -210.57834630457793 54.2231 0.1144 3299 +3301 2 -571.0077897802273 -211.0511060619294 54.0772 0.1144 3300 +3302 2 -570.059320486147 -211.6371515876244 53.8432 0.1144 3301 +3303 2 -569.110762958406 -212.26534058511297 53.5984 0.1144 3302 +3304 2 -568.2073144911105 -212.9632034849303 53.3792 0.1144 3303 +3305 2 -567.3554872623704 -213.7275012229728 53.1798 0.1144 3304 +3306 2 -566.5036635866636 -214.49010190845988 52.9939 0.1144 3305 +3307 2 -565.6157028505967 -215.1532075042766 52.7528 0.1144 3306 +3308 2 -564.6182513660194 -215.59440540308688 52.4171 0.1144 3307 +3309 2 -563.5191372209158 -215.85741128901586 52.0724 0.1144 3308 +3310 2 -562.4473057762586 -216.22731836416344 51.7619 0.1144 3309 +3311 2 -561.4632626292 -216.78260090911417 51.4402 0.1144 3310 +3312 2 -560.5568085076419 -217.39624091392986 51.0521 0.1144 3311 +3313 2 -559.6560127083658 -218.00918565695852 50.6229 0.1144 3312 +3314 2 -558.655955929547 -218.5126743451515 50.2508 0.1144 3313 +3315 2 -557.6621547302944 -219.0679364601606 49.9713 0.1144 3314 +3316 2 -556.7418489363245 -219.74547005754553 49.7678 0.1144 3315 +3317 2 -555.843255660194 -220.4547275665598 49.6289 0.1144 3316 +3318 2 -554.9390244917231 -221.1549222851672 49.5373 0.1144 3317 +3319 2 -553.9260411590869 -221.6519492238751 49.4659 0.1144 3318 +3320 2 -552.8718899018762 -222.08822007658134 49.3797 0.1144 3319 +3321 2 -552.1526412969399 -222.8882922260136 49.224 0.1144 3320 +3322 2 -551.6449558842171 -223.8927373572719 49.0123 0.1144 3321 +3323 2 -551.2027260073667 -224.94179664349977 48.8155 0.1144 3322 +3324 2 -550.6731826045384 -225.95022652927312 48.6556 0.1144 3323 +3325 2 -549.7439716368733 -225.8488616558151 48.515 0.1144 3324 +3326 2 -548.947240607267 -225.05360590043685 48.4114 0.1144 3325 +3327 2 -548.0093223030285 -224.41658823618067 48.3434 0.1144 3326 +3328 2 -546.9130602423973 -224.12791417357593 48.2955 0.1144 3327 +3329 2 -545.773174335935 -224.14094261357084 48.2471 0.1144 3328 +3330 2 -544.6532584338679 -223.93721344949043 48.1894 0.1144 3329 +3331 2 -543.6123110740893 -223.47067602958694 48.1188 0.1144 3330 +3332 2 -542.5933973774656 -222.95002024230251 48.0329 0.1144 3331 +3333 2 -541.5061010051259 -222.6007657667455 47.9332 0.1144 3332 +3334 2 -540.5562082469716 -222.31310525849656 47.6372 0.1144 3333 +3335 2 -539.4442855408233 -222.14177839092423 47.3505 0.1144 3334 +3336 2 -538.3071405360414 -222.0277452023369 47.1397 0.1144 3335 +3337 2 -537.2036173499416 -221.72852002334903 47.0067 0.1144 3336 +3338 2 -536.2779910353861 -221.06331447180708 46.9504 0.1144 3337 +3339 2 -535.6408907354647 -220.1155868169188 46.9759 0.1144 3338 +3340 2 -535.3002278182157 -219.02437112017898 47.0708 0.1144 3339 +3341 2 -534.9108651342328 -217.95737798977856 47.2388 0.1144 3340 +3342 2 -534.4487341618112 -216.927426406291 47.4667 0.1144 3341 +3343 2 -533.9873826336177 -215.8966986355224 47.7296 0.1144 3342 +3344 2 -533.5251808026298 -214.8668176145149 48.3633 0.1144 3343 +3345 2 -587.7446190343497 -202.9119041005359 55.9933 0.1144 3142 +3346 2 -587.8215106830742 -203.26957905682505 53.9885 0.1144 3345 +3347 2 -588.4311354365054 -204.16874155604532 53.2087 0.1144 3346 +3348 2 -589.0514154205162 -205.07846227771526 52.4398 0.1144 3347 +3349 2 -589.6723334277087 -205.98740651601813 51.7168 0.1144 3348 +3350 2 -590.292471990673 -206.897126941602 51.0709 0.1144 3349 +3351 2 -590.9118311094093 -207.80762355446686 50.5288 0.1144 3350 +3352 2 -591.3674935223652 -208.8537543758363 50.2415 0.1144 3351 +3353 2 -591.8215970468648 -209.90143757176773 50.1192 0.1144 3352 +3354 2 -592.275629712798 -210.94919133017922 50.1225 0.1144 3353 +3355 2 -592.7288156289703 -211.99609478579637 50.2146 0.1144 3354 +3356 2 -593.1820688506755 -213.04462473148888 50.363 0.1144 3355 +3357 2 -593.6353220723806 -214.0931546771814 50.5378 0.1144 3356 +3358 2 -594.0893550344001 -215.14076701454653 50.7128 0.1144 3357 +3359 2 -594.5418320688243 -216.18851751601088 50.8878 0.1144 3358 +3360 2 -594.9957941722776 -217.23620041585625 51.0625 0.1144 3359 +3361 2 -595.4498268382109 -218.28395417426768 51.2369 0.1144 3360 +3362 2 -595.9030836129493 -219.33078706740477 51.4108 0.1144 3361 +3363 2 -596.3563368346545 -220.37931701309722 51.5841 0.1144 3362 +3364 2 -596.8095900563596 -221.42784695878973 51.7569 0.1144 3363 +3365 2 -597.263622722293 -222.47560071720127 51.9282 0.1144 3364 +3366 2 -597.7168794970315 -223.5224336103383 52.0979 0.1144 3365 +3367 2 -598.1701327187366 -224.57096355603082 52.2656 0.1144 3366 +3368 2 -598.62416538467 -225.6187173144423 52.43 0.1144 3367 +3369 2 -599.0773513008423 -226.66562077005946 52.5902 0.1144 3368 +3370 2 -599.5306045225475 -227.71415071575197 52.7447 0.1144 3369 +3371 2 -599.7450556158221 -228.83579067072557 52.8884 0.1144 3370 +3372 2 -599.8826190550772 -229.96936120235577 53.0194 0.1144 3371 +3373 2 -600.0202497998653 -231.10455822406126 53.1373 0.1144 3372 +3374 2 -600.156962936326 -232.23897550545254 53.2423 0.1144 3373 +3375 2 -600.0922774024817 -233.38018363358307 53.3198 0.1144 3374 +3376 2 -599.958093343272 -234.51650863033976 53.37 0.1144 3375 +3377 2 -599.8666807121101 -235.65695369296398 53.3994 0.1144 3376 +3378 2 -599.861809470865 -236.8015397495839 53.4142 0.1144 3377 +3379 2 -599.8586385391225 -237.944573727728 53.419 0.1144 3378 +3380 2 -599.7882943869101 -239.0866185386919 53.4181 0.1144 3379 +3381 2 -599.7146975506332 -240.22865653967526 53.4153 0.1144 3380 +3382 2 -599.6420215796309 -241.3699186494637 53.4117 0.1144 3381 +3383 2 -599.568424743354 -242.51195665044705 53.4066 0.1144 3382 +3384 2 -599.4099230741633 -243.64497803632807 53.3996 0.1144 3383 +3385 2 -599.1559995055786 -244.75998051225233 53.3896 0.1144 3384 +3386 2 -598.8818613138722 -245.87083943752052 53.3753 0.1144 3385 +3387 2 -598.5947897583677 -246.9784892973681 53.3557 0.1144 3386 +3388 2 -598.3068714531023 -248.08528885442124 53.3305 0.1144 3387 +3389 2 -598.6700632350684 -249.257374200935 53.2258 0.1144 3388 +3390 2 -599.1589278187022 -250.28497758691063 53.1471 0.1144 3389 +3391 2 -599.7287598545123 -251.277112230477 53.0743 0.1144 3390 +3392 2 -600.2638340881354 -252.28777105249006 53.006 0.1144 3391 +3393 2 -600.7737066551663 -253.3120950126653 52.9357 0.1144 3392 +3394 2 -601.2714757312524 -254.3421212098527 52.8553 0.1144 3393 +3395 2 -601.7344938151318 -255.3874189014222 52.7576 0.1144 3394 +3396 2 -602.0815983480106 -256.4753246754924 52.6338 0.1144 3395 +3397 2 -602.3769760335783 -257.58101199244436 52.4784 0.1144 3396 +3398 2 -602.3933458894851 -258.64474932741837 52.1847 0.1144 3397 +3399 2 -602.2973215439267 -259.6912807483801 51.7474 0.1144 3398 +3400 2 -602.2658515046355 -260.80759749403387 51.3282 0.1144 3399 +3401 2 -602.2643035099352 -261.9522612192005 50.9846 0.1144 3400 +3402 2 -602.2619087654737 -263.0960746415727 50.7102 0.1144 3401 +3403 2 -602.2296187181571 -264.2325422578489 50.4616 0.1144 3402 +3404 2 -602.1625814337675 -265.34871382732274 50.197 0.1144 3403 +3405 2 -602.128601143876 -266.48192520650093 49.9587 0.1144 3404 +3406 2 -602.122177528069 -267.6249523746644 49.7568 0.1144 3405 +3407 2 -602.2848548984414 -268.7529893302508 49.5785 0.1144 3406 +3408 2 -602.6328097341145 -269.84004835455994 49.4116 0.1144 3407 +3409 2 -603.0237111726982 -270.91510574154586 49.2456 0.1144 3408 +3410 2 -603.7183619522481 -271.7991727155195 49.0652 0.1144 3409 +3411 2 -604.5361715277318 -272.5912199036636 48.8166 0.1144 3410 +3412 2 -605.3372122123025 -273.2869238289527 48.3941 0.1144 3411 +3413 2 -606.0918943155702 -274.07070710448704 47.8646 0.1144 3412 +3414 2 -606.6714712817995 -275.035355636449 47.3211 0.1144 3413 +3415 2 -607.2073587134672 -276.0291162719044 46.7681 0.1144 3414 +3416 2 -607.8412778881768 -276.90888415602797 46.1636 0.1144 3415 +3417 2 -608.6372327305023 -277.7033604671781 45.607 0.1144 3416 +3418 2 -609.4445963001723 -278.4524643093588 45.0593 0.1144 3417 +3419 2 -610.2695924439397 -278.8853862223741 44.4016 0.1144 3418 +3420 2 -610.3816397878994 -277.9537227409005 43.302 0.1144 3419 +3421 2 -610.645173177651 -276.84199308289635 43.472 0.1144 3420 +3422 2 -611.1755668832739 -275.8327164473619 43.5487 0.1144 3421 +3423 2 -611.7374720188132 -274.8356680490108 43.6489 0.1144 3422 +3424 2 -612.331651151589 -273.8581327002004 43.7668 0.1144 3423 +3425 2 -612.8579554903138 -272.8431906363172 43.8967 0.1144 3424 +3426 2 -613.0411887494674 -271.8534811775669 44.2106 0.1144 3425 +3427 2 -613.2093370484884 -270.73992546744887 44.989 0.1144 3426 +3428 2 -610.2171994544799 -279.5590800583675 43.9057 0.1144 3419 +3429 2 -610.1881484712667 -280.70205985275334 43.5467 0.1144 3428 +3430 2 -610.4042429315251 -281.8155715025557 43.2964 0.1144 3429 +3431 2 -611.0171062508734 -282.7552580895608 43.118 0.1144 3430 +3432 2 -611.5367068714154 -283.76015693777015 42.9839 0.1144 3431 +3433 2 -611.683205003906 -284.8817253338909 42.861 0.1144 3432 +3434 2 -611.5052817757828 -286.00332161370557 42.6835 0.1144 3433 +3435 2 -611.211809464532 -287.0947652918353 42.4091 0.1144 3434 +3436 2 -611.937432947778 -287.87686137964147 42.0994 0.1144 3435 +3437 2 -612.8276953344075 -288.4110364286215 41.6128 0.1144 3436 +3438 2 -613.8566206269213 -288.8443852978081 41.0799 0.1144 3437 +3439 2 -614.7135417763868 -289.4972847415196 40.4796 0.1144 3438 +3440 2 -615.5746341206311 -290.0492178485931 39.8079 0.1144 3439 +3441 2 -616.6899715639322 -290.17692328140936 39.2619 0.1144 3440 +3442 2 -617.4964475239578 -290.9446929251833 38.7999 0.1144 3441 +3443 2 -617.7667112784081 -292.0559138181791 38.2407 0.1144 3442 +3444 2 -597.840346713302 -248.78244017024454 53.4246 0.1144 3388 +3445 2 -596.9144644249309 -249.35403726442965 53.7054 0.1144 3444 +3446 2 -595.7924716858143 -249.3654768172852 53.8129 0.1144 3445 +3447 2 -594.6790888899849 -249.1147386272323 53.9476 0.1144 3446 +3448 2 -593.5885806369488 -249.1512757324834 54.1898 0.1144 3447 +3449 2 -592.525199343065 -249.36910149730025 54.553 0.1144 3448 +3450 2 -591.4326243199073 -249.61599900391357 54.9452 0.1144 3449 +3451 2 -590.3066977530865 -249.58125614670215 55.3036 0.1144 3450 +3452 2 -589.2762742697689 -249.12046833758856 55.5946 0.1144 3451 +3453 2 -588.3717101223688 -248.42610330877565 55.8169 0.1144 3452 +3454 2 -587.4930802101975 -247.70591241225046 56.021 0.1144 3453 +3455 2 -586.5803126457399 -247.07955402979346 56.2652 0.1144 3454 +3456 2 -585.7535580140067 -246.30445871377887 56.4631 0.1144 3455 +3457 2 -584.9463232417949 -245.49383671646322 56.6079 0.1144 3456 +3458 2 -584.0109792367422 -244.84310654026714 56.7092 0.1144 3457 +3459 2 -583.0236520819215 -244.26502897682647 56.7717 0.1144 3458 +3460 2 -582.0737112122318 -243.62883467152867 56.8 0.1144 3459 +3461 2 -581.15533290137 -242.9466736948239 56.8056 0.1144 3460 +3462 2 -580.0695851484586 -242.63454564890756 56.8084 0.1144 3461 +3463 2 -578.9522271668553 -242.39115306285058 56.8123 0.1144 3462 +3464 2 -577.8372279478783 -242.13567386275676 56.8176 0.1144 3463 +3465 2 -576.7450290105958 -241.79765214540876 56.8252 0.1144 3464 +3466 2 -575.7227648275052 -241.28992942583605 56.8358 0.1144 3465 +3467 2 -575.0297538619058 -240.39943119924666 56.8506 0.1144 3466 +3468 2 -574.3214845236988 -239.50168852199673 56.8714 0.1144 3467 +3469 2 -573.5677379020394 -238.642600167788 56.9008 0.1144 3468 +3470 2 -572.8317767804958 -237.76580063107716 56.9411 0.1144 3469 +3471 2 -572.0812893567954 -236.9036078238307 56.9968 0.1144 3470 +3472 2 -571.2789438256514 -236.08811701538892 57.0763 0.1144 3471 +3473 2 -570.4294708340906 -235.32266151922423 57.1911 0.1144 3472 +3474 2 -569.5582404135871 -234.58070717804847 57.3485 0.1144 3473 +3475 2 -568.704799046233 -233.81934460181517 57.5492 0.1144 3474 +3476 2 -567.8796910384308 -233.03456534912013 57.8281 0.1144 3475 +3477 2 -567.2470465095114 -232.2890092948704 58.3271 0.1144 3476 +3478 2 -567.1073009205373 -231.45468244023706 59.0349 0.1144 3477 +3479 2 -567.5082103884663 -230.4176989068457 59.6613 0.1144 3478 +3480 2 -568.0603642817923 -229.41737739448834 60.1311 0.1144 3479 +3481 2 -568.6570166544045 -228.4406250429395 60.4545 0.1144 3480 +3482 2 -569.1510401859124 -227.40942261358023 60.6446 0.1144 3481 +3483 2 -569.2229399696339 -226.26738105956352 60.7225 0.1144 3482 +3484 2 -569.3053739928301 -225.1261393797167 60.7351 0.1144 3483 +3485 2 -599.3068577112954 -184.28931113534068 57.3611 0.1144 3098 +3486 2 -599.0988479375642 -183.16450267874362 57.3611 0.1144 3485 +3487 2 -598.8916884666274 -182.0388474723854 57.3611 0.1144 3486 +3488 2 -598.6173925838843 -180.92839595669008 57.3611 0.1144 3487 +3489 2 -598.5372579328664 -179.7892887941692 57.3611 0.1144 3488 +3490 2 -598.2297767563537 -178.68930371422928 57.3611 0.1144 3489 +3491 2 -598.1010573139985 -177.55327681967103 57.3611 0.1144 3490 +3492 2 -598.0249583443066 -176.41170322729434 57.3611 0.1144 3491 +3493 2 -597.6252060988425 -175.34235488730107 57.3611 0.1144 3492 +3494 2 -597.1946747899983 -174.28248806920314 57.3611 0.1144 3493 +3495 2 -596.7389483284567 -173.23317512624917 57.3611 0.1144 3494 +3496 2 -605.2859727259209 -181.0378879620396 56.621 0.1144 3091 +3497 2 -604.840001059626 -179.99015108053638 56.7854 0.1144 3496 +3498 2 -604.5641427353931 -178.88294899195833 56.9467 0.1144 3497 +3499 2 -604.0485273675527 -177.8658962241794 57.1192 0.1144 3498 +3500 2 -603.304481559482 -177.0003934942632 57.3157 0.1144 3499 +3501 2 -602.4226125832072 -176.27369041962825 57.547 0.1144 3500 +3502 2 -601.5156288815424 -175.58667425175847 57.8614 0.1144 3501 +3503 2 -600.9466098416768 -174.6115119102632 58.2613 0.1144 3502 +3504 2 -600.6044496734821 -173.83014794942235 58.9562 0.1144 3503 +3505 2 -600.3653996884213 -172.83955437754614 59.7299 0.1144 3504 +3506 2 -600.4523837319887 -171.8892414732011 60.5066 0.1144 3505 +3507 2 -600.6057160012208 -172.04321713755135 61.3528 0.1144 3506 +3508 2 -600.7191065084886 -173.17192872288283 62.0312 0.1144 3507 +3509 2 -600.2990501555518 -174.03251935167063 62.5881 0.1144 3508 +3510 2 -599.2418828810644 -174.38951704599535 62.998 0.1144 3509 +3511 2 -598.1587687477602 -174.7108221568113 63.2744 0.1144 3510 +3512 2 -597.551087230197 -175.55164519598915 63.441 0.1144 3511 +3513 2 -597.0337347577022 -176.54638270367812 63.5292 0.1144 3512 +3514 2 -596.147437320374 -177.22561385180492 63.5841 0.1144 3513 +3515 2 -595.0835890047083 -177.63273153903438 63.6188 0.1144 3514 +3516 2 -593.9988277492866 -177.99773249620588 63.6516 0.1144 3515 +3517 2 -592.8852924125954 -178.2251406401672 63.6941 0.1144 3516 +3518 2 -591.7725464414747 -178.07552027472647 63.7487 0.1144 3517 +3519 2 -590.7445727132051 -177.59295865794846 63.814 0.1144 3518 +3520 2 -589.6827670391006 -177.42972704201756 63.9528 0.1144 3519 +3521 2 -588.808641098537 -178.0370000449034 64.1561 0.1144 3520 +3522 2 -587.9528795439063 -178.78912728255418 64.3294 0.1144 3521 +3523 2 -586.8747862078885 -179.07650170527498 64.4532 0.1144 3522 +3524 2 -585.8109346352755 -179.4851750240136 64.5299 0.1144 3523 +3525 2 -584.7809757436211 -179.98457059017503 64.5632 0.1144 3524 +3526 2 -583.8468530274288 -180.64185196150194 64.559 0.1144 3525 +3527 2 -583.0040008536209 -181.40864336932256 64.5072 0.1144 3526 +3528 2 -582.1788666722958 -182.18996759319444 64.4148 0.1144 3527 +3529 2 -581.5184626263472 -183.11885665874243 64.3437 0.1144 3528 +3530 2 -580.9824105984424 -184.12882855606395 64.2978 0.1144 3529 +3531 2 -580.9849287819375 -185.25645948360707 64.3012 0.1144 3530 +3532 2 -581.3734512300537 -186.31949104819475 64.3664 0.1144 3531 +3533 2 -580.5983390371307 -187.1543066795663 64.4109 0.1144 3532 +3534 2 -579.7941382255032 -187.9679895813023 64.4308 0.1144 3533 +3535 2 -578.9907841636366 -188.78252278583264 64.4213 0.1144 3534 +3536 2 -578.1875042172834 -189.5954297963738 64.3866 0.1144 3535 +3537 2 -577.3841501554168 -190.40996300090418 64.3311 0.1144 3536 +3538 2 -576.5799493437892 -191.22364590264007 64.2645 0.1144 3537 +3539 2 -575.7765985388698 -192.0366234756613 64.199 0.1144 3538 +3540 2 -574.9732444770033 -192.85115668019162 64.1354 0.1144 3539 +3541 2 -574.1698939681701 -193.66399283216654 64.0746 0.1144 3540 +3542 2 -573.3665399063035 -194.47852603669688 64.0178 0.1144 3541 +3543 2 -572.562409657156 -195.29227979699905 63.9663 0.1144 3542 +3544 2 -571.7589882897565 -196.1051865114541 63.922 0.1144 3543 +3545 2 -570.95563422789 -196.91971971598443 63.889 0.1144 3544 +3546 2 -570.1515039787424 -197.7334734762866 63.8725 0.1144 3545 +3547 2 -569.3490002196702 -198.54715993105586 63.875 0.1144 3546 +3548 2 -568.5447994080425 -199.36084283279186 63.8985 0.1144 3547 +3549 2 -568.4076205182996 -199.9349397254928 63.9537 0.1144 3548 +3550 2 -568.0576949660309 -200.9712521821725 64.1449 0.1144 3549 +3551 2 -567.9161892858003 -202.092146888406 64.3745 0.1144 3550 +3552 2 -568.0302717979077 -203.22807242752876 64.5772 0.1144 3551 +3553 2 -568.2948769339898 -204.34013000335787 64.7595 0.1144 3552 +3554 2 -568.2908829393753 -205.47099999500463 64.9642 0.1144 3553 +3555 2 -568.3459101731703 -206.6125294705508 65.1356 0.1144 3554 +3556 2 -568.3120508743834 -207.75549919800895 65.2571 0.1144 3555 +3557 2 -568.131714901976 -208.88119165470212 65.38 0.1144 3556 +3558 2 -567.7775311197406 -209.9587196118342 65.5262 0.1144 3557 +3559 2 -566.9063833914174 -210.69709673460906 65.6298 0.1144 3558 +3560 2 -566.0070142240921 -211.40543337834887 65.6956 0.1144 3559 +3561 2 -565.0721826261517 -212.06356179552304 65.735 0.1144 3560 +3562 2 -564.1211317247187 -212.70058442689762 65.7524 0.1144 3561 +3563 2 -563.2628160047576 -213.4568075453407 65.749 0.1144 3562 +3564 2 -562.5297593460537 -214.33371346112054 65.7303 0.1144 3563 +3565 2 -561.9202545351375 -215.30237786919494 65.7056 0.1144 3564 +3566 2 -561.9504953139685 -215.54999980945 65.8549 0.1144 3565 +3567 2 -562.0912473887026 -216.68039502947616 66.1276 0.1144 3566 +3568 2 -562.2304438319275 -217.8107869925552 66.2477 0.1144 3567 +3569 2 -562.3712667652277 -218.94111165010125 66.3818 0.1144 3568 +3570 2 -562.4101788097265 -220.0793546877663 66.5073 0.1144 3569 +3571 2 -562.077066763388 -221.15692676172895 66.5809 0.1144 3570 +3572 2 -561.646130140299 -222.21576778703948 66.5974 0.1144 3571 +3573 2 -561.2159697044909 -223.27538825657817 66.5647 0.1144 3572 +3574 2 -560.7858092686829 -224.33500872611685 66.4969 0.1144 3573 +3575 2 -560.3556488328749 -225.3946291956556 66.4073 0.1144 3574 +3576 2 -559.9263386998613 -226.45340291543326 66.3071 0.1144 3575 +3577 2 -559.4961782640532 -227.513023384972 66.2052 0.1144 3576 +3578 2 -559.0660178282452 -228.5726438545107 66.1032 0.1144 3577 +3579 2 -558.6367076952315 -229.6314175742883 66.0016 0.1144 3578 +3580 2 -558.2065472594236 -230.6910380438271 65.9 0.1144 3579 +3581 2 -557.7763868236154 -231.75065851336578 65.7989 0.1144 3580 +3582 2 -557.3470766906019 -232.80943223314338 65.6978 0.1144 3581 +3583 2 -556.9169162547938 -233.86905270268218 65.5973 0.1144 3582 +3584 2 -556.4867558189858 -234.92867317222087 65.4976 0.1144 3583 +3585 2 -556.0574456859722 -235.98744689199847 65.3988 0.1144 3584 +3586 2 -555.627285250164 -237.0470673615372 65.301 0.1144 3585 +3587 2 -555.1971248143561 -238.106687831076 65.2053 0.1144 3586 +3588 2 -554.7678146813424 -239.1654615508536 65.1118 0.1144 3587 +3589 2 -554.3376542455344 -240.22508202039234 65.0222 0.1144 3588 +3590 2 -553.9075646682927 -241.284631927451 64.9376 0.1144 3589 +3591 2 -553.4781836767128 -242.34347620970868 64.8589 0.1144 3590 +3592 2 -553.1693519335051 -243.44217094637915 64.7892 0.1144 3591 +3593 2 -553.4016089568374 -244.5363416666568 64.7388 0.1144 3592 +3594 2 -553.7480013510208 -245.6266501180832 64.7069 0.1144 3593 +3595 2 -554.0943228866379 -246.7170291319897 64.6887 0.1144 3594 +3596 2 -554.439935540507 -247.80825519174343 64.6808 0.1144 3595 +3597 2 -554.8210721169164 -248.8865448328524 64.6797 0.1144 3596 +3598 2 -555.3933910125239 -249.87295710555102 64.6822 0.1144 3597 +3599 2 -556.0045704010914 -250.84014668106883 64.6862 0.1144 3598 +3600 2 -556.4561301232745 -251.8869760211725 64.6929 0.1144 3599 +3601 2 -556.5103980466969 -253.01966505285216 64.7021 0.1144 3600 +3602 2 -556.6164127491854 -254.1588263991312 64.7125 0.1144 3601 +3603 2 -556.9943740139909 -255.23392740476123 64.7228 0.1144 3602 +3604 2 -557.3908700223571 -256.3049659873294 64.7461 0.1144 3603 +3605 2 -557.675737451425 -257.3983983253624 64.822 0.1144 3604 +3606 2 -557.9558502504908 -258.49995245467227 64.8388 0.1144 3605 +3607 2 -558.2843527342758 -259.5902941617288 64.8052 0.1144 3606 +3608 2 -558.7756131852854 -260.6218623704644 64.769 0.1144 3607 +3609 2 -559.3236409165618 -261.62611362675045 64.7354 0.1144 3608 +3610 2 -559.886960774262 -262.62148733442035 64.7055 0.1144 3609 +3611 2 -560.474635548793 -263.6023456011336 64.6814 0.1144 3610 +3612 2 -561.0696019456622 -264.57918861646243 64.6724 0.1144 3611 +3613 2 -561.565744827759 -265.60914069813646 64.6719 0.1144 3612 +3614 2 -562.0222474765815 -266.6592330853186 64.6722 0.1144 3613 +3615 2 -562.6196230647013 -267.63367697632447 64.6724 0.1144 3614 +3616 2 -563.2372473258457 -268.5960009976634 64.6727 0.1144 3615 +3617 2 -563.9302177276481 -269.50587390759404 64.673 0.1144 3616 +3618 2 -564.6482619949571 -270.3955760151473 64.6736 0.1144 3617 +3619 2 -565.3598581327421 -271.2916993083886 64.6744 0.1144 3618 +3620 2 -565.9564542766337 -272.26691938667534 64.6755 0.1144 3619 +3621 2 -566.4874222664505 -273.27997377997804 64.6769 0.1144 3620 +3622 2 -566.8920533899685 -274.34940304546524 64.6792 0.1144 3621 +3623 2 -567.3250611955963 -275.40849722931546 64.682 0.1144 3622 +3624 2 -567.567879200139 -276.52446899717967 64.6862 0.1144 3623 +3625 2 -567.6690147284877 -277.663690839011 64.6918 0.1144 3624 +3626 2 -567.5905422711041 -278.8040922829912 64.6999 0.1144 3625 +3627 2 -567.6998164676379 -279.94000775518623 64.7122 0.1144 3626 +3628 2 -567.8276856071986 -281.0768813995055 64.729 0.1144 3627 +3629 2 -567.8657372819754 -282.2207795025054 64.7478 0.1144 3628 +3630 2 -567.9887275434824 -283.35757222133077 64.7662 0.1144 3629 +3631 2 -568.2299427448386 -284.46229761102484 64.8413 0.1144 3630 +3632 2 -568.353716003607 -285.59661709001386 64.9211 0.1144 3631 +3633 2 -568.3998319349694 -286.73897643841286 64.9662 0.1144 3632 +3634 2 -568.3740810095985 -287.85933567537325 64.9219 0.1144 3633 +3635 2 -568.3813938887063 -288.9934820379734 64.8466 0.1144 3634 +3636 2 -568.5133191395348 -290.11813120024306 64.8612 0.1144 3635 +3637 2 -568.6500559628844 -291.2412347979314 64.9533 0.1144 3636 +3638 2 -568.7666149717754 -292.37638770280637 65.0888 0.1144 3637 +3639 2 -568.8580633064964 -293.51551855221607 65.2308 0.1144 3638 +3640 2 -568.7117220707698 -294.6494139277803 65.3764 0.1144 3639 +3641 2 -568.412496891782 -295.7529371138801 65.5273 0.1144 3640 +3642 2 -568.0527217967114 -296.83292824392083 65.7 0.1144 3641 +3643 2 -567.6913237645986 -297.91128962693915 65.8952 0.1144 3642 +3644 2 -567.3307019197669 -298.99043045418557 66.1097 0.1144 3643 +3645 2 -566.9684535848597 -300.06963858696486 66.3356 0.1144 3644 +3646 2 -566.6070555527469 -301.14799996998306 66.5588 0.1144 3645 +3647 2 -566.2464337079152 -302.2271407972295 66.7635 0.1144 3646 +3648 2 -565.884185373008 -303.3063489300089 66.9427 0.1144 3647 +3649 2 -565.8219763359475 -304.4467844238918 67.0608 0.1144 3648 +3650 2 -566.0048081299757 -305.5739443349481 67.1006 0.1144 3649 +3651 2 -566.1868601836895 -306.7020218543317 67.083 0.1144 3650 +3652 2 -566.3697625401977 -307.8292526239542 66.9211 0.1144 3651 +3653 2 -561.8717640496841 -214.88890081684443 65.6687 0.1144 3565 +3654 2 -561.7398624857444 -213.75293797087173 65.611 0.1144 3653 +3655 2 -561.6071109150964 -212.61768045361387 65.5379 0.1144 3654 +3656 2 -561.4744299069284 -211.4824937949222 65.4559 0.1144 3655 +3657 2 -561.3416783362804 -210.34723627766434 65.3708 0.1144 3656 +3658 2 -561.2089973281127 -209.21204961897266 65.2896 0.1144 3657 +3659 2 -561.0763163199447 -208.07686296028098 65.2196 0.1144 3658 +3660 2 -560.944344193525 -206.94082925574216 65.168 0.1144 3659 +3661 2 -560.811663185357 -205.80564259705048 65.1392 0.1144 3660 +3662 2 -560.678911614709 -204.67038507979262 65.1375 0.1144 3661 +3663 2 -560.5494764806252 -203.5384579151461 65.2067 0.1144 3662 +3664 2 -560.4215196055899 -202.40971583294518 65.3562 0.1144 3663 +3665 2 -560.2937041516009 -201.2809740468305 65.5687 0.1144 3664 +3666 2 -560.0905599320486 -200.16261046281025 65.8224 0.1144 3665 +3667 2 -559.7846275770645 -199.06588132388217 66.0974 0.1144 3666 +3668 2 -559.4472137908468 -197.97636948967832 66.383 0.1144 3667 +3669 2 -559.11057619191 -196.88763709970274 66.6697 0.1144 3668 +3670 2 -558.773020984646 -195.79812496941273 66.9558 0.1144 3669 +3671 2 -559.1809915178186 -194.90102224727733 67.2865 0.1144 3670 +3672 2 -560.273485117296 -194.69301552839303 67.6595 0.1144 3671 +3673 2 -561.3692213339102 -194.48982393506313 68.0551 0.1144 3672 +3674 2 -562.0539124929704 -193.5788048481584 68.3771 0.1144 3673 +3675 2 -562.7134798560858 -192.64425716424225 68.6314 0.1144 3674 +3676 2 -563.3739648275284 -191.71048922064043 68.8282 0.1144 3675 +3677 2 -564.0343789404048 -190.77679183951867 68.9805 0.1144 3676 +3678 2 -564.6939430465732 -189.8437997871117 69.1079 0.1144 3677 +3679 2 -565.3535809721685 -188.90932296176172 69.2311 0.1144 3678 +3680 2 -566.0139953811312 -187.97548415959372 69.3686 0.1144 3679 +3681 2 -565.1358526245974 -187.05638470950836 69.7374 0.1144 3680 +3682 2 -564.2490402234966 -186.36043049747005 70.002 0.1144 3681 +3683 2 -563.3623019379093 -185.66285009144244 70.2898 0.1144 3682 +3684 2 -562.4747839120075 -184.96618729374214 70.5802 0.1144 3683 +3685 2 -561.6966345015533 -184.17825365757122 70.8319 0.1144 3684 +3686 2 -561.2239188610322 -183.1378147102001 70.9758 0.1144 3685 +3687 2 -560.7512740790773 -182.0973052003488 71.0259 0.1144 3686 +3688 2 -560.2794087413507 -181.05601950321656 71.0055 0.1144 3687 +3689 2 -559.8051374693205 -180.01557729889825 70.9372 0.1144 3688 +3690 2 -559.3324218287995 -178.97513835152708 70.8406 0.1144 3689 +3691 2 -558.8597770468447 -177.93462884167585 70.7344 0.1144 3690 +3692 2 -558.3855057748144 -176.89418663735748 70.6311 0.1144 3691 +3693 2 -557.9128609928596 -175.8536771275062 70.5323 0.1144 3692 +3694 2 -557.4409956551331 -174.81239143037405 70.4393 0.1144 3693 +3695 2 -556.9667243831029 -173.77194922605563 70.3545 0.1144 3694 +3696 2 -556.4940087425819 -172.73151027868445 70.2794 0.1144 3695 +3697 2 -556.048897446009 -171.67811833184638 70.222 0.1144 3696 +3698 2 -556.5207849625535 -170.78369501946608 71.1894 0.1144 3697 +3699 2 -557.0072260211772 -169.8616542413629 72.963 0.1144 3698 +3700 2 -557.4945843920418 -168.94053462462026 73.719 0.1144 3699 +3701 2 -557.9810254506656 -168.01849384651703 74.6147 0.1144 3700 +3702 2 -558.4674662132029 -167.09659448946016 75.5978 0.1144 3701 +3703 2 -558.9539778343067 -166.1746245699231 76.6318 0.1144 3702 +3704 2 -559.4404894554103 -165.25265465038612 77.6572 0.1144 3703 +3705 2 -559.926930514034 -164.33061387228295 78.6234 0.1144 3704 +3706 2 -560.2995366210939 -163.3364925572607 79.4998 0.1144 3705 +3707 2 -560.2120801469548 -162.21582559284573 80.2052 0.1144 3706 +3708 2 -560.1246266336768 -161.09374441796783 81.3235 0.1144 3707 +3709 2 -555.1979505187462 -172.46101486203546 70.1921 0.1144 3697 +3710 2 -554.3566370995393 -173.23587052644163 70.2162 0.1144 3709 +3711 2 -553.5144769305714 -174.00987588805341 70.2573 0.1144 3710 +3712 2 -552.6732343699305 -174.78466098997953 70.3094 0.1144 3711 +3713 2 -551.8310742009626 -175.5586663515913 70.3671 0.1144 3712 +3714 2 -550.9898316403219 -176.33345145351737 70.4262 0.1144 3713 +3715 2 -550.1476714713539 -177.10745681512915 70.4852 0.1144 3714 +3716 2 -549.3064289107131 -177.88224191705527 70.5443 0.1144 3715 +3717 2 -548.4643393042252 -178.65631813723323 70.6034 0.1144 3716 +3718 2 -547.6230258850183 -179.4311738016394 70.6628 0.1144 3717 +3719 2 -546.7809365746165 -180.20510860077118 70.7218 0.1144 3718 +3720 2 -545.9396231554094 -180.9799642651773 70.7809 0.1144 3719 +3721 2 -545.0975338450078 -181.75389906430897 70.8403 0.1144 3720 +3722 2 -544.2562204258008 -182.52875472871514 70.8994 0.1144 3721 +3723 2 -543.414131115399 -183.3026895278468 70.9584 0.1144 3722 +3724 2 -542.572817696192 -184.07754519225298 71.0178 0.1144 3723 +3725 2 -541.7307989482704 -184.851550849951 71.0769 0.1144 3724 +3726 2 -540.8894855290634 -185.62640651435711 71.1362 0.1144 3725 +3727 2 -540.0473253600953 -186.4004118759689 71.1956 0.1144 3726 +3728 2 -539.2060827994546 -187.175196977895 71.255 0.1144 3727 +3729 2 -538.3639226304867 -187.94920233950674 71.3143 0.1144 3728 +3730 2 -537.5226800698459 -188.72398744143285 71.374 0.1144 3729 +3731 2 -536.6805199008779 -189.49799280304464 71.4336 0.1144 3730 +3732 2 -535.8392773402372 -190.27277790497075 71.4935 0.1144 3731 +3733 2 -534.9971877337492 -191.0468541251487 71.5537 0.1144 3732 +3734 2 -534.1558746106284 -191.8215683685086 71.6145 0.1144 3733 +3735 2 -533.3137850041405 -192.59564458868655 71.6755 0.1144 3734 +3736 2 -532.4724715849336 -193.37050025309273 71.7377 0.1144 3735 +3737 2 -531.6303822745318 -194.14443505222445 71.801 0.1144 3736 +3738 2 -530.7890688553249 -194.91929071663063 71.8659 0.1144 3737 +3739 2 -529.9469795449231 -195.69322551576235 71.9331 0.1144 3738 +3740 2 -529.1056661257162 -196.46808118016853 72.0031 0.1144 3739 +3741 2 -528.2636473777944 -197.24208683786642 72.0782 0.1144 3740 +3742 2 -527.4222633961074 -198.01687164370637 72.1599 0.1144 3741 +3743 2 -526.5801737896195 -198.79094786388433 72.2504 0.1144 3742 +3744 2 -525.7389312289788 -199.5657329658105 72.3503 0.1144 3743 +3745 2 -524.8967710600107 -200.33973832742222 72.4601 0.1144 3744 +3746 2 -524.3738754427307 -201.28015830989253 72.6228 0.1144 3745 +3747 2 -524.6468193072229 -202.25957982121238 72.8232 0.1144 3746 +3748 2 -525.373082872125 -203.14123810212155 73.0128 0.1144 3747 +3749 2 -526.0984255717524 -204.02367227422567 73.1898 0.1144 3748 +3750 2 -526.8246150211411 -204.90695674912413 73.353 0.1144 3749 +3751 2 -527.5499577207686 -205.78939092122832 73.502 0.1144 3750 +3752 2 -528.2762180287234 -206.67260483364666 73.6361 0.1144 3751 +3753 2 -529.001631290831 -207.55510986431696 73.7624 0.1144 3752 +3754 2 -529.7269739904585 -208.4375440364211 73.8872 0.1144 3753 +3755 2 -530.4531634398471 -209.32082851131955 74.0099 0.1144 3754 +3756 2 -531.1785061394746 -210.20326268342365 74.1297 0.1144 3755 +3757 2 -531.9055458916575 -211.08570040856102 74.2456 0.1144 3756 +3758 2 -532.6308885912852 -211.96813458066518 74.3554 0.1144 3757 +3759 2 -533.3563018533928 -212.85063961133542 74.4573 0.1144 3758 +3760 2 -534.0824915988676 -213.73378266518762 74.5497 0.1144 3759 +3761 2 -534.7042226020046 -214.65969920556168 74.6273 0.1144 3760 +3762 2 -534.8118634984824 -215.79893466735413 74.6732 0.1144 3761 +3763 2 -534.95997124414 -216.92849675758032 74.6914 0.1144 3762 +3764 2 -535.3427375675719 -218.0051634616473 74.6852 0.1144 3763 +3765 2 -535.8470188217677 -219.0319505947312 74.6609 0.1144 3764 +3766 2 -536.3917333734271 -220.03131586689676 74.6178 0.1144 3765 +3767 2 -537.1301306300575 -220.89284696407248 74.5276 0.1144 3766 +3768 2 -537.9203933962842 -221.70414053628633 74.4027 0.1144 3767 +3769 2 -538.6336194831922 -222.56477040385667 74.2823 0.1144 3768 +3770 2 -539.0342925939308 -223.6333428526551 74.2526 0.1144 3769 +3771 2 -539.4348981030504 -224.70043023242442 74.3016 0.1144 3770 +3772 2 -539.8355003552228 -225.76907324370288 74.4164 0.1144 3771 +3773 2 -540.2369529101898 -226.83686950522033 74.5839 0.1144 3772 +3774 2 -540.6374878568294 -227.9038860264235 74.7846 0.1144 3773 +3775 2 -541.038160967568 -228.97245847522186 74.9994 0.1144 3774 +3776 2 -541.4387632197404 -230.04110148650037 75.2139 0.1144 3775 +3777 2 -541.8393687288601 -231.10818886626961 75.4284 0.1144 3776 +3778 2 -542.2400418395988 -232.17676131506803 75.6431 0.1144 3777 +3779 2 -542.6405767862383 -233.24377783627116 75.8576 0.1144 3778 +3780 2 -543.0411790384109 -234.3124208475497 76.0721 0.1144 3779 +3781 2 -543.4426315933777 -235.38021710906713 76.2866 0.1144 3780 +3782 2 -543.8424576582692 -236.44808067611743 76.501 0.1144 3781 +3783 2 -544.243839650756 -237.51580607906862 76.7155 0.1144 3782 +3784 2 -544.6444419029284 -238.58444909034708 76.9297 0.1144 3783 +3785 2 -545.045047412048 -239.6515364701164 77.1439 0.1144 3784 +3786 2 -545.4464999670149 -240.71933273163387 77.3576 0.1144 3785 +3787 2 -545.8462554694263 -241.787125440118 77.5712 0.1144 3786 +3788 2 -546.2477080243931 -242.85492170163542 77.7843 0.1144 3787 +3789 2 -546.6483102765656 -243.9235647129139 77.9968 0.1144 3788 +3790 2 -547.0489866442514 -244.99058153020314 78.2085 0.1144 3789 +3791 2 -547.4495888964238 -246.0592245414816 78.4188 0.1144 3790 +3792 2 -547.8509705928245 -247.12709136547915 78.6276 0.1144 3791 +3793 2 -548.2507260952359 -248.19488407396327 78.8357 0.1144 3792 +3794 2 -548.6513992059746 -249.26345652276163 79.0384 0.1144 3793 +3795 2 -549.0527809023752 -250.33132334675918 79.2313 0.1144 3794 +3796 2 -549.3425171425691 -251.42964492585992 79.429 0.1144 3795 +3797 2 -549.5715446705392 -252.5465070621291 79.6076 0.1144 3796 +3798 2 -549.6710540048986 -253.6856547884471 79.8554 0.1144 3797 +3799 2 -567.0563450047289 -187.7722515042802 70.1901 0.1144 3680 +3800 2 -568.1003211184019 -187.56895154343377 71.5501 0.1144 3799 +3801 2 -569.1433796237477 -187.36487184227312 72.1339 0.1144 3800 +3802 2 -570.1873557374207 -187.1615718814268 72.8064 0.1144 3801 +3803 2 -571.2304815482994 -186.9591186703415 73.5168 0.1144 3802 +3804 2 -572.2736814746914 -186.75503926526696 74.2188 0.1144 3803 +3805 2 -572.0690919408889 -187.880610232669 74.7244 0.1144 3804 +3806 2 -571.8644315485202 -189.00625176255116 75.0501 0.1144 3805 +3807 2 -571.6590625704894 -190.13259891723422 75.238 0.1144 3806 +3808 2 -571.453696849406 -191.2573904404081 75.3281 0.1144 3807 +3809 2 -571.2490364570372 -192.38303197029032 75.3567 0.1144 3808 +3810 2 -567.8868848541108 -199.1006637411556 63.4847 0.1144 3548 +3811 2 -566.8239912705658 -198.68025454756085 63.2027 0.1144 3810 +3812 2 -565.761168545587 -198.25977479148608 63.0854 0.1144 3811 +3813 2 -564.6974955178139 -197.84014178517228 62.9364 0.1144 3812 +3814 2 -563.6345313717889 -197.41966173301134 62.7553 0.1144 3813 +3815 2 -562.5186612179755 -197.20865782350128 62.529 0.1144 3814 +3816 2 -561.5549882332325 -197.72756693738992 62.2283 0.1144 3815 +3817 2 -560.6177443891945 -198.3557796217673 61.8643 0.1144 3816 +3818 2 -559.6812767324375 -198.98477175037297 61.4513 0.1144 3817 +3819 2 -558.7569425653082 -199.62750718387392 61.0005 0.1144 3818 +3820 2 -557.8406454148426 -200.28171459903248 60.5223 0.1144 3819 +3821 2 -556.9251953102241 -200.93663089593915 60.0312 0.1144 3820 +3822 2 -556.0105246498337 -201.5907710055649 59.5353 0.1144 3821 +3823 2 -555.0950745452152 -202.2456873024715 59.0369 0.1144 3822 +3824 2 -554.1900641346165 -202.91278771973109 58.5348 0.1144 3823 +3825 2 -553.3480390749006 -203.65603415181843 58.0306 0.1144 3824 +3826 2 -552.4455082159324 -204.35467679195003 57.5926 0.1144 3825 +3827 2 -551.5335413524726 -204.8657038361968 57.0615 0.1144 3826 +3828 2 -550.5109118881924 -205.30925318946626 56.5404 0.1144 3827 +3829 2 -549.455377913761 -205.66293089419358 56.0319 0.1144 3828 +3830 2 -548.4193133702264 -205.9713944279059 55.512 0.1144 3829 +3831 2 -547.2841203997406 -206.07331621046328 55.1121 0.1144 3830 +3832 2 -546.141727001439 -206.13569556214858 54.8374 0.1144 3831 +3833 2 -545.001816707801 -206.2279200841505 54.6753 0.1144 3832 +3834 2 -543.8817623830196 -206.46181997628005 54.5885 0.1144 3833 +3835 2 -542.757723303723 -206.673861878304 54.5538 0.1144 3834 +3836 2 -541.6617330452259 -206.99839272934847 54.5493 0.1144 3835 +3837 2 -540.6244525325503 -207.48235800498688 54.5493 0.1144 3836 +3838 2 -539.8388870256467 -208.3114948841347 54.5493 0.1144 3837 +3839 2 -605.5356251571208 -202.46372236337837 41.9849 0.1144 3062 +3840 2 -605.081231293773 -203.51360471247855 41.9656 0.1144 3839 +3841 2 -604.6267668679452 -204.56341620301245 41.9574 0.1144 3840 +3842 2 -604.1732197543586 -205.61414885490686 41.9476 0.1144 3841 +3843 2 -603.718826187097 -206.66388978296064 41.9367 0.1144 3842 +3844 2 -603.2644323237491 -207.71377213206077 41.9252 0.1144 3843 +3845 2 -602.8100384604015 -208.76365448116084 41.9135 0.1144 3844 +3846 2 -602.3564207843347 -209.81431627448913 41.9014 0.1144 3845 +3847 2 -601.9020977795531 -210.86412806110914 41.8897 0.1144 3846 +3848 2 -601.4484833604336 -211.91323422292825 41.8779 0.1144 3847 +3849 2 -600.9948656843668 -212.96389601625654 41.8664 0.1144 3848 +3850 2 -600.5405426795853 -214.01370780287655 41.855 0.1144 3849 +3851 2 -600.0861488162375 -215.0635901519765 41.8438 0.1144 3850 +3852 2 -599.6317549528898 -216.1134725010766 41.8328 0.1144 3851 +3853 2 -599.178137276823 -217.164134294405 41.8222 0.1144 3852 +3854 2 -598.7238142720414 -218.21394608102494 41.8121 0.1144 3853 +3855 2 -598.2693498462136 -219.26375757155884 41.8026 0.1144 3854 +3856 2 -598.1505320289414 -220.38957882571006 41.795 0.1144 3855 +3857 2 -598.1092464967508 -221.53331082440198 41.7892 0.1144 3856 +3858 2 -598.1012672494345 -222.67633473561827 41.7838 0.1144 3857 +3859 2 -598.099648692254 -223.8209276022187 41.7788 0.1144 3858 +3860 2 -598.0988801417818 -224.96481514010443 41.7735 0.1144 3859 +3861 2 -598.0981118873956 -226.10856125694377 41.7682 0.1144 3860 +3862 2 -598.0957171429341 -227.2523746793161 41.7626 0.1144 3861 +3863 2 -598.0949485924618 -228.39626221720172 41.7567 0.1144 3862 +3864 2 -598.0933300352813 -229.5408550838022 41.7508 0.1144 3863 +3865 2 -598.092561484809 -230.6847426216879 41.7449 0.1144 3864 +3866 2 -598.091863792903 -231.82855959709346 41.739 0.1144 3865 +3867 2 -598.0893981898753 -232.97244358194584 41.7332 0.1144 3866 +3868 2 -598.0886299354893 -234.11618969878523 41.7273 0.1144 3867 +3869 2 -598.0870819407887 -235.26085342395194 41.7214 0.1144 3868 +3870 2 -598.0862428278364 -236.4046701032714 41.7152 0.1144 3869 +3871 2 -598.0846948331359 -237.54933382843805 41.7094 0.1144 3870 +3872 2 -598.0830795329027 -238.69237106352935 41.7035 0.1144 3871 +3873 2 -598.0823112785165 -239.83611718036875 41.6976 0.1144 3872 +3874 2 -598.080763283816 -240.9807809055354 41.6917 0.1144 3873 +3875 2 -598.0799241708637 -242.12459758485485 41.6858 0.1144 3874 +3876 2 -598.0783761761633 -243.26926131002156 41.68 0.1144 3875 +3877 2 -598.07676087593 -244.4122985451128 41.6744 0.1144 3876 +3878 2 -598.0751423187494 -245.55689141171328 41.6685 0.1144 3877 +3879 2 -598.0744446268434 -246.70070838711885 41.6626 0.1144 3878 +3880 2 -598.073605513891 -247.84452506643837 41.657 0.1144 3879 +3881 2 -598.0712813319096 -248.9884093473768 41.6511 0.1144 3880 +3882 2 -598.0704422189572 -250.13222602669637 41.6458 0.1144 3881 +3883 2 -598.0688942242568 -251.27688975186297 41.6402 0.1144 3882 +3884 2 -598.0680551113045 -252.42070643118248 41.6352 0.1144 3883 +3885 2 -598.0673574193984 -253.56452340658805 41.6301 0.1144 3884 +3886 2 -598.0649626749369 -254.70833682896037 41.6256 0.1144 3885 +3887 2 -598.0641235619846 -255.85215350827983 41.6214 0.1144 3886 +3888 2 -597.9283133087856 -256.9884043895231 41.6184 0.1144 3887 +3889 2 -597.7843747504155 -258.12301190378264 41.6167 0.1144 3888 +3890 2 -597.628275462495 -259.2568868494053 41.6156 0.1144 3889 +3891 2 -597.6193753499044 -260.4006866518165 41.615 0.1144 3890 +3892 2 -597.536094576947 -261.5410780288689 41.6147 0.1144 3891 +3893 2 -597.3614777184603 -262.6708129768688 41.6147 0.1144 3892 +3894 2 -597.6997418074723 -263.7594780613115 41.6147 0.1144 3893 +3895 2 -615.5343054325715 -219.30400556643988 37.1199 0.1144 3044 +3896 2 -615.36131506416 -220.43367320890687 38.1931 0.1144 3895 +3897 2 -615.0625266687 -220.92328585655648 37.116 0.1144 3896 +3898 2 -614.4781224650262 -221.89278063567005 36.8259 0.1144 3897 +3899 2 -615.0573365801847 -222.65922594278678 36.6772 0.1144 3898 +3900 2 -614.8495513613516 -223.38605183172743 36.4381 0.1144 3899 +3901 2 -614.0656503516598 -224.1294199552062 36.1197 0.1144 3900 +3902 2 -613.1674056628672 -224.70595396032277 35.6964 0.1144 3901 +3903 2 -612.2794958536113 -225.344735136178 35.2526 0.1144 3902 +3904 2 -611.3946053185789 -226.06123383890568 34.8796 0.1144 3903 +3905 2 -610.8118008632449 -227.00966013906967 34.5486 0.1144 3904 +3906 2 -610.5604384720715 -228.08344356150812 34.1874 0.1144 3905 +3907 2 -610.7312582657627 -229.17260660627383 33.8551 0.1144 3906 +3908 2 -610.7564174366248 -230.29377953946536 33.5821 0.1144 3907 +3909 2 -610.2754520151532 -231.30238184134086 33.3236 0.1144 3908 +3910 2 -609.9859954534733 -232.36710523213335 33.0151 0.1144 3909 +3911 2 -610.0944835978985 -233.473179087045 32.6623 0.1144 3910 +3912 2 -609.8496775016654 -234.52265170948303 32.2669 0.1144 3911 +3913 2 -608.8224297151085 -234.84166961652582 31.9026 0.1144 3912 +3914 2 -608.1380057197057 -235.65885598726194 30.9299 0.1144 3913 +3915 2 -615.5198765089551 -222.3455311320341 36.7912 0.1144 3899 +3916 2 -616.4224477296202 -221.66138429719004 36.8113 0.1144 3915 +3917 2 -617.396797075171 -221.0753929552533 36.8267 0.1144 3916 +3918 2 -618.400272144176 -220.52658577974879 36.8749 0.1144 3917 +3919 2 -619.4117068573839 -219.9924324114003 36.9611 0.1144 3918 +3920 2 -620.4433491816328 -219.49954576640144 37.0955 0.1144 3919 +3921 2 -621.5151606945349 -219.10538483377255 37.3103 0.1144 3920 +3922 2 -622.5918236434682 -218.75818605152497 37.6379 0.1144 3921 +3923 2 -623.6152970987487 -218.28303072288375 38.0456 0.1144 3922 +3924 2 -624.0548433125239 -217.36746787088728 38.5409 0.1144 3923 +3925 2 -623.9514310890013 -216.5388739522359 39.2496 0.1144 3924 +3926 2 -623.1865370335322 -215.97186871071855 41.0525 0.1144 3925 +3927 2 -615.6370979478647 -220.4285937349708 38.6299 0.1144 3896 +3928 2 -616.3969731379798 -219.91406627657076 39.3128 0.1144 3927 +3929 2 -616.624660759589 -218.96899771452567 40.1727 0.1144 3928 +3930 2 -615.9367765851885 -218.7369694994114 41.1757 0.1144 3929 +3931 2 -615.6338748773264 -219.67141538622045 42.1865 0.1144 3930 +3932 2 -616.4564114012186 -220.09704893384506 43.2586 0.1144 3931 +3933 2 -617.3976768084353 -219.50688709741613 44.2296 0.1144 3932 +3934 2 -618.217322174319 -219.0168093034023 45.2281 0.1144 3933 +3935 2 -619.1992378536033 -218.70087847430264 46.1034 0.1144 3934 +3936 2 -620.0685873004769 -219.19293679322473 46.979 0.1144 3935 +3937 2 -621.086368270543 -219.54536913704615 47.7613 0.1144 3936 +3938 2 -622.1681859508841 -219.77574723171116 48.4081 0.1144 3937 +3939 2 -623.2011164278546 -220.22119603880955 48.9143 0.1144 3938 +3940 2 -624.1685714937123 -220.1924623382807 49.3007 0.1144 3939 +3941 2 -624.8460900896067 -220.41068023905288 49.5894 0.1144 3940 +3942 2 -625.3818832719055 -221.41568369964492 49.6843 0.1144 3941 +3943 2 -626.2211844899057 -221.60192546580774 49.6283 0.1144 3942 +3944 2 -627.2631954475079 -221.15516399227076 49.4637 0.1144 3943 +3945 2 -628.2931742709177 -220.68002228359072 49.2302 0.1144 3944 +3946 2 -629.322302791533 -220.20572732467164 48.9608 0.1144 3945 +3947 2 -630.3522816149427 -219.73058561599154 48.6889 0.1144 3946 +3948 2 -631.3822604383527 -219.2554439073115 48.4439 0.1144 3947 +3949 2 -632.3057647326289 -218.6037971713777 48.2656 0.1144 3948 +3950 2 -633.1559690243271 -217.83786968631264 48.1726 0.1144 3949 +3951 2 -634.0326908924911 -217.10523181131376 48.1558 0.1144 3950 +3952 2 -634.9208441785157 -216.383931602993 48.2023 0.1144 3951 +3953 2 -635.8572717696622 -215.74030224805355 48.3319 0.1144 3952 +3954 2 -636.442386913558 -214.8702990995628 48.6007 0.1144 3953 +3955 2 -636.4575967894734 -213.75239267249722 48.8874 0.1144 3954 +3956 2 -636.4049719369486 -212.61171675669257 49.1596 0.1144 3955 +3957 2 -636.3507914529147 -211.47103758394073 49.4119 0.1144 3956 +3958 2 -636.2860029099786 -210.33104330996204 49.6404 0.1144 3957 +3959 2 -636.2212849295225 -209.19111989454947 49.8436 0.1144 3958 +3960 2 -636.1549404589912 -208.05126378466994 50.0312 0.1144 3959 +3961 2 -636.1419188289767 -206.90812519414303 50.197 0.1144 3960 +3962 2 -636.2688750183481 -205.77913899140165 50.3804 0.1144 3961 +3963 2 -636.8719112697984 -204.82665382120913 50.57 0.1144 3962 +3964 2 -637.0198073427616 -203.72691503331353 50.8021 0.1144 3963 +3965 2 -636.8846498378101 -202.5925010088695 51.175 0.1144 3964 +3966 2 -578.9428792190965 -252.63140562935857 32.9297 0.1144 2886 +3967 2 -577.8766039519287 -252.30637826954714 32.8944 0.1144 3966 +3968 2 -576.8664633936388 -251.78333668181463 32.8513 0.1144 3967 +3969 2 -575.8312620916168 -251.3079724380057 32.7978 0.1144 3968 +3970 2 -574.7684461766186 -250.88423999786627 32.7622 0.1144 3969 +3971 2 -573.694110610099 -250.49131336284248 32.7446 0.1144 3970 +3972 2 -572.7383893176201 -250.72470878075464 32.7513 0.1144 3971 +3973 2 -572.6348603698245 -251.84320811779884 32.786 0.1144 3972 +3974 2 -572.5814849666501 -252.9861369853737 32.8448 0.1144 3973 +3975 2 -572.5281836789891 -254.12743965895936 32.9146 0.1144 3974 +3976 2 -572.4748082758146 -255.2703685265342 32.9865 0.1144 3975 +3977 2 -572.4214364256734 -256.4116003415536 33.0562 0.1144 3976 +3978 2 -572.258126440909 -257.5446116605069 33.1086 0.1144 3977 +3979 2 -572.2508560753408 -258.68678852587607 33.1433 0.1144 3978 +3980 2 -571.8279804518903 -259.7456464280949 33.1643 0.1144 3979 +3981 2 -570.952824282163 -260.47347924446717 33.1747 0.1144 3980 +3982 2 -570.0954229135821 -261.2320377347337 33.1789 0.1144 3981 +3983 2 -569.2428230505942 -261.99385897599257 33.1794 0.1144 3982 +3984 2 -568.9581707532684 -263.0943013959434 33.1794 0.1144 3983 +3985 2 -565.788381538554 -264.4280595202971 22.5898 0.1144 2862 +3986 2 -566.9312935292205 -264.48949592311 22.5929 0.1144 3985 +3987 2 -568.0234992764836 -264.82426495639334 22.5942 0.1144 3986 +3988 2 -569.1115718361044 -265.17429887617857 22.5959 0.1144 3987 +3989 2 -570.1419207057222 -265.6707247889566 22.5983 0.1144 3988 +3990 2 -571.2332660832631 -266.0111488875748 22.6016 0.1144 3989 +3991 2 -572.3707298788003 -265.93914254172796 22.6063 0.1144 3990 +3992 2 -573.5138586044998 -265.89705873865853 22.6129 0.1144 3991 +3993 2 -574.6585596365163 -265.88078768152684 22.6221 0.1144 3992 +3994 2 -575.7638103720408 -266.1654500457803 22.6344 0.1144 3993 +3995 2 -576.8852309788062 -266.3935068867694 22.6525 0.1144 3994 +3996 2 -577.9978038335381 -266.65958763187086 22.679 0.1144 3995 +3997 2 -579.1381919536434 -266.74442403633736 22.7151 0.1144 3996 +3998 2 -579.680563994857 -266.56602476809394 22.7597 0.1144 3997 +3999 2 -580.8139314114153 -266.52547616659194 22.8101 0.1144 3998 +4000 2 -581.9179957348105 -266.633783229178 22.9487 0.1144 3999 +4001 2 -583.0257408403999 -266.8415881401952 23.1173 0.1144 4000 +4002 2 -584.1639634481232 -266.81243414789026 23.2353 0.1144 4001 +4003 2 -585.2663980810107 -266.51704965234205 23.2963 0.1144 4002 +4004 2 -586.3631204099582 -266.2143699814225 23.2651 0.1144 4003 +4005 2 -587.4136908257082 -265.9010577704396 23.0913 0.1144 4004 +4006 2 -588.5469425665831 -265.9495338656185 22.9183 0.1144 4005 +4007 2 -589.6821864638799 -265.8232876630998 22.7769 0.1144 4006 +4008 2 -590.7692522981695 -265.47208014336206 22.6768 0.1144 4007 +4009 2 -591.8194119908845 -265.01720398461487 22.6154 0.1144 4008 +4010 2 -592.809147510128 -264.4449627575541 22.5886 0.1144 4009 +4011 2 -593.4848668712029 -263.52989436936207 22.5853 0.1144 4010 +4012 2 -594.4721090167545 -262.96648677618737 22.5842 0.1144 4011 +4013 2 -595.5721077166554 -262.65250023154533 22.5837 0.1144 4012 +4014 2 -596.6625507791475 -262.3093608175127 22.574 0.1144 4013 +4015 2 -597.6602462386799 -261.7516319765616 22.568 0.1144 4014 +4016 2 -598.8024462927515 -261.7816005681019 22.5706 0.1144 4015 +4017 2 -599.8954282272955 -262.1171490456135 22.5831 0.1144 4016 +4018 2 -601.0344474522415 -262.07901644534286 22.6072 0.1144 4017 +4019 2 -602.0056318492022 -261.48488673130703 22.6481 0.1144 4018 +4020 2 -602.575479752036 -260.5105531397503 22.7109 0.1144 4019 +4021 2 -602.4322612474461 -259.376122238398 22.7963 0.1144 4020 +4022 2 -602.1960194695987 -258.26009352801486 22.9062 0.1144 4021 +4023 2 -602.2428017691695 -257.1252826025974 23.0546 0.1144 4022 +4024 2 -602.4262074444251 -256.0869951624903 23.3589 0.1144 4023 +4025 2 -603.1164319774286 -255.23496049533182 23.7154 0.1144 4024 +4026 2 -604.1294659407898 -254.71375055770895 24.0229 0.1144 4025 +4027 2 -605.1375935840746 -254.23934091947936 24.3336 0.1144 4026 +4028 2 -606.0079683820641 -253.4986287209671 24.5645 0.1144 4027 +4029 2 -606.8298735662133 -252.70598400341171 24.7251 0.1144 4028 +4030 2 -607.4886514181728 -251.7770208223503 24.8277 0.1144 4029 +4031 2 -607.8734794506222 -250.72062885180097 24.9061 0.1144 4030 +4032 2 -607.7982035438025 -249.59121924592168 24.9891 0.1144 4031 +4033 2 -607.4485483986268 -248.50571230008845 25.1 0.1144 4032 +4034 2 -607.0989641120173 -247.4201347917751 25.2411 0.1144 4033 +4035 2 -606.751006019397 -246.3346313989753 25.4013 0.1144 4034 +4036 2 -606.4013508742212 -245.24912445314206 25.5694 0.1144 4035 +4037 2 -606.0517662915256 -244.16368836587506 25.734 0.1144 4036 +4038 2 -605.702182004916 -243.07811085756177 25.884 0.1144 4037 +4039 2 -605.3080142623066 -242.00955202872447 26.0077 0.1144 4038 +4040 2 -604.6416222286086 -241.1377064819537 26.0884 0.1144 4039 +4041 2 -603.5982621245462 -240.67526523892863 26.1094 0.1144 4040 +4042 2 -602.5085533040083 -240.3299655192038 26.0639 0.1144 4041 +4043 2 -601.4171806865452 -240.00255215684408 25.953 0.1144 4042 +4044 2 -600.3258083651683 -239.67499737343806 25.797 0.1144 4043 +4045 2 -599.2352860504996 -239.34673726131726 25.6155 0.1144 4044 +4046 2 -598.1438428705562 -239.01925304039136 25.4266 0.1144 4045 +4047 2 -597.0525411116594 -238.69176911555147 25.2444 0.1144 4046 +4048 2 -595.977462909575 -238.31581152565164 25.0841 0.1144 4047 +4049 2 -595.0371517928077 -237.70714389575537 24.968 0.1144 4048 +4050 2 -594.4647013409813 -236.74979350002567 24.9029 0.1144 4049 +4051 2 -594.3134014068114 -235.62510377395884 24.88 0.1144 4050 +4052 2 -594.3845926048708 -234.48376784474314 24.8906 0.1144 4051 +4053 2 -594.5138974899405 -233.34750334353876 24.9262 0.1144 4052 +4054 2 -594.5291983582777 -232.21990972284553 25.0083 0.1144 4053 +4055 2 -594.5137771057539 -231.108373850743 25.1443 0.1144 4054 +4056 2 -594.6544493600985 -229.98026489463214 25.2655 0.1144 4055 +4057 2 -594.7005399509155 -228.83809859437716 25.3759 0.1144 4056 +4058 2 -594.8072915840927 -227.70016052540595 25.4799 0.1144 4057 +4059 2 -594.6818548244851 -226.58358598273574 25.5921 0.1144 4058 +4060 2 -594.2836549535828 -225.51579653119884 25.731 0.1144 4059 +4061 2 -593.8441281598648 -224.46319409551674 25.9028 0.1144 4060 +4062 2 -593.54710355428 -223.36733213629137 26.1004 0.1144 4061 +4063 2 -593.2711678575866 -222.2633118732118 26.3304 0.1144 4062 +4064 2 -593.02430410479 -221.15461485077728 26.5926 0.1144 4063 +4065 2 -592.9765211195552 -220.03169749125252 26.9049 0.1144 4064 +4066 2 -593.2594690561587 -218.9685161120082 27.2805 0.1144 4065 +4067 2 -593.6685542030365 -217.91054857819447 27.6778 0.1144 4066 +4068 2 -593.9927958068256 -216.81429027269698 28.0535 0.1144 4067 +4069 2 -594.6466670426225 -215.93226881207525 28.4245 0.1144 4068 +4070 2 -595.5273631001876 -215.2603091524309 28.8526 0.1144 4069 +4071 2 -596.2279764004002 -214.44478302558664 29.3451 0.1144 4070 +4072 2 -596.9852289211788 -214.03461926588287 30.9299 0.1144 4071 +4073 2 -579.3937087892289 -266.7935373413818 23.1303 0.1144 3997 +4074 2 -580.0252689052262 -267.68553326058844 23.2347 0.1144 4073 +4075 2 -580.4760592501088 -268.7283304723994 23.2514 0.1144 4074 +4076 2 -581.138273979334 -269.63651264156874 23.2033 0.1144 4075 +4077 2 -581.9844169143696 -270.4051431532513 23.16 0.1144 4076 +4078 2 -582.7908722423533 -271.21654133784796 23.1218 0.1144 4077 +4079 2 -583.5584294744409 -272.06512269250396 23.0886 0.1144 4078 +4080 2 -584.3105463490778 -272.9258339837547 23.0604 0.1144 4079 +4081 2 -585.1356543568802 -273.71061323644966 23.0479 0.1144 4080 +4082 2 -586.118102633647 -274.2886098743964 23.0444 0.1144 4081 +4083 2 -587.1890977806274 -274.68966126155806 23.0394 0.1144 4082 +4084 2 -588.2860750348009 -275.0082475039262 23.0325 0.1144 4083 +4085 2 -589.4126346711967 -275.1796757269341 23.0228 0.1144 4084 +4086 2 -590.5413021396978 -275.08735695556317 23.0092 0.1144 4085 +4087 2 -591.6163595266837 -274.6964555169794 22.9902 0.1144 4086 +4088 2 -592.6841590451484 -274.29344733050345 22.9637 0.1144 4087 +4089 2 -593.7999715186851 -274.12671384886323 22.9268 0.1144 4088 +4090 2 -594.9338532742884 -274.279560452719 22.8749 0.1144 4089 +4091 2 -596.05778442774 -274.4905812391373 22.8014 0.1144 4090 +4092 2 -597.1760632746177 -274.73319793399946 22.6993 0.1144 4091 +4093 2 -598.2918487478036 -274.9846482627478 22.5611 0.1144 4092 +4094 2 -599.4109274688511 -275.2167307181352 22.3695 0.1144 4093 +4095 2 -600.5094221078257 -275.2158485934567 22.0759 0.1144 4094 +4096 2 -601.5610353763277 -274.8434950202086 21.6551 0.1144 4095 +4097 2 -602.6376378297086 -274.491417063821 21.1608 0.1144 4096 +4098 2 -603.2843531961917 -273.92008402193153 20.5658 0.1144 4097 +4099 2 -603.3340220152942 -272.9939468083346 19.7953 0.1144 4098 +4100 2 -603.7242377473206 -272.06611841230495 18.9606 0.1144 4099 +4101 2 -603.9287189136068 -270.992307547844 18.1849 0.1144 4100 +4102 2 -604.1809616062575 -269.9371229175521 17.4634 0.1144 4101 +4103 2 -604.6660365284827 -268.92456941287776 16.8476 0.1144 4102 +4104 2 -605.0564763037089 -267.85595621722587 16.3792 0.1144 4103 +4105 2 -605.2521512781314 -266.7327707541857 16.0352 0.1144 4104 +4106 2 -604.7606604721277 -265.8112281194618 15.7166 0.1144 4105 +4107 2 -603.9598463874175 -265.0410661613454 15.3494 0.1144 4106 +4108 2 -603.3202998854816 -264.11341526156593 15.0058 0.1144 4107 +4109 2 -603.2342966910431 -263.0754123036962 14.582 0.1144 4108 +4110 2 -603.3426238874847 -261.9617313491535 14.1627 0.1144 4109 +4111 2 -603.682865503073 -260.92377226854296 13.7252 0.1144 4110 +4112 2 -604.4910205723464 -260.1465137246802 13.3927 0.1144 4111 +4113 2 -605.3089105051113 -259.34657738478677 13.1693 0.1144 4112 +4114 2 -606.3348135815842 -258.85926487962877 13.0291 0.1144 4113 +4115 2 -607.2818391647049 -258.21975894149 12.9583 0.1144 4114 +4116 2 -608.2223830665853 -257.56892569968716 12.9278 0.1144 4115 +4117 2 -609.254798025082 -257.0785155514719 12.9208 0.1144 4116 +4118 2 -610.3137507878857 -256.64550744975804 12.9153 0.1144 4117 +4119 2 -611.4393754973746 -256.45291434658884 12.9078 0.1144 4118 +4120 2 -612.5789806202183 -256.5402239908917 12.8977 0.1144 4119 +4121 2 -613.7029858891835 -256.74961858332085 12.8825 0.1144 4120 +4122 2 -614.8458948250031 -256.77874012901395 12.8609 0.1144 4121 +4123 2 -615.9571898335124 -256.5068501805745 12.832 0.1144 4122 +4124 2 -617.0987397390002 -256.44206489458566 12.796 0.1144 4123 +4125 2 -618.2366641880104 -256.555321895892 12.7533 0.1144 4124 +4126 2 -619.357033990085 -256.5422525960138 12.6246 0.1144 4125 +4127 2 -620.4941048793536 -256.6579119785905 12.5177 0.1144 4126 +4128 2 -621.6387854814286 -256.6513989736525 12.4297 0.1144 4127 +4129 2 -621.7187027161709 -257.1175506824246 12.3577 0.1144 4128 +4130 2 -622.369654688504 -258.00138474474363 12.299 0.1144 4129 +4131 2 -623.3416292213485 -258.58346068266064 12.2519 0.1144 4130 +4132 2 -624.4485406989514 -258.8179218324294 12.2149 0.1144 4131 +4133 2 -624.9086349564493 -259.67236486401043 12.1094 0.1144 4132 +4134 2 -624.9183537698606 -260.8056677337968 12.0064 0.1144 4133 +4135 2 -624.6920004953215 -261.92398063057715 11.9269 0.1144 4134 +4136 2 -624.223064247181 -262.9623773780586 11.8693 0.1144 4135 +4137 2 -623.5133836071557 -263.853262269149 11.8319 0.1144 4136 +4138 2 -622.67616310788 -264.63208630934844 11.8127 0.1144 4137 +4139 2 -622.3753860525167 -265.7000386973166 11.8096 0.1144 4138 +4140 2 -622.7809012326456 -266.752499213766 11.8096 0.1144 4139 +4141 2 -622.1205687455499 -267.6134353185299 11.8096 0.1144 4140 +4142 2 -622.8762011193901 -256.3926424492356 12.4273 0.1144 4128 +4143 2 -623.1397745747524 -255.29555001756526 12.4381 0.1144 4142 +4144 2 -623.6245617012783 -254.42045776988223 12.8732 0.1144 4143 +4145 2 -624.3252697490459 -253.55967690822607 12.1991 0.1144 4144 +4146 2 -625.1834367397937 -252.84071808743667 11.9124 0.1144 4145 +4147 2 -625.7847822504827 -251.91898858982145 11.5616 0.1144 4146 +4148 2 -626.0055172683506 -250.81600818116178 11.2115 0.1144 4147 +4149 2 -626.3596506219615 -249.72879273431593 10.6848 0.1144 4148 +4150 2 -622.9375927241297 -254.49432653483476 12.5052 0.1144 4143 +4151 2 -622.6900271956515 -253.38308245313655 12.558 0.1144 4150 +4152 2 -622.5993550482115 -252.24473104795507 12.5718 0.1144 4151 +4153 2 -622.2076504785108 -251.181763531953 12.5387 0.1144 4152 +4154 2 -621.5883523535133 -250.24213418355302 12.4063 0.1144 4153 +4155 2 -620.8564874088484 -249.3677473911262 12.2373 0.1144 4154 +4156 2 -619.9964628027179 -248.64356493010533 12.0037 0.1144 4155 +4157 2 -618.9952673006774 -248.10357147024334 11.7972 0.1144 4156 +4158 2 -618.5524094540611 -247.12216786942943 11.2473 0.1144 4157 +4159 2 -514.8520787350789 -270.38996187044495 20.3308 0.1144 2141 +4160 2 -514.5100316994187 -271.4796775009633 20.1796 0.1144 4159 +4161 2 -514.0621432042002 -272.5295734700245 20.1195 0.1144 4160 +4162 2 -513.3378697507576 -273.3992852697826 20.0405 0.1144 4161 +4163 2 -512.3232907210014 -273.8816717252093 19.9417 0.1144 4162 +4164 2 -511.29270507156593 -274.2751411511848 19.7305 0.1144 4163 +4165 2 -510.24263686945903 -274.6863182066292 19.4738 0.1144 4164 +4166 2 -509.32553333092903 -275.35417112428087 19.2449 0.1144 4165 +4167 2 -508.7063755783883 -276.27261063098166 18.9684 0.1144 4166 +4168 2 -508.1300018774837 -277.25668865477115 18.7354 0.1144 4167 +4169 2 -507.3250349455028 -278.06478379670517 18.5525 0.1144 4168 +4170 2 -507.10754935475234 -279.1693266468545 18.4108 0.1144 4169 +4171 2 -507.0340067022337 -280.28548459636727 18.3689 0.1144 4170 +4172 2 -506.3654160270652 -280.49756080690906 19.1204 0.1144 4171 +4173 2 -505.7033955579689 -281.42170886241615 19.3827 0.1144 4172 +4174 2 -505.2183541874601 -282.4520108564426 19.4805 0.1144 4173 +4175 2 -504.3934909249261 -283.10393482296155 19.605 0.1144 4174 +4176 2 -503.39317335075873 -283.32670095775745 19.8352 0.1144 4175 +4177 2 -502.59182882040864 -283.92443895527646 20.2047 0.1144 4176 +4178 2 -501.6553170468211 -284.5745028197789 20.5109 0.1144 4177 +4179 2 -500.819726294568 -285.3517039229363 20.7695 0.1144 4178 +4180 2 -499.8915053774263 -285.9257710000106 21.0099 0.1144 4179 +4181 2 -498.7659585385846 -286.0811703680062 21.2154 0.1144 4180 +4182 2 -497.6620462013499 -285.9340433762573 21.3557 0.1144 4181 +4183 2 -496.6089684067903 -285.4860775085782 21.4537 0.1144 4182 +4184 2 -495.5509809412215 -285.052738504219 21.5465 0.1144 4183 +4185 2 -494.4929496549081 -284.6403298147103 21.6666 0.1144 4184 +4186 2 -493.4406003777657 -284.2159121797116 21.8051 0.1144 4185 +4187 2 -492.3606397445943 -283.84157071687326 21.9252 0.1144 4186 +4188 2 -491.25790962268377 -283.5350639824752 22.0397 0.1144 4187 +4189 2 -490.1543828835508 -283.2375358560429 22.1533 0.1144 4188 +4190 2 -489.04776369453856 -283.2012070725532 22.2688 0.1144 4189 +4191 2 -487.92140010461867 -283.3752016796619 22.388 0.1144 4190 +4192 2 -486.9493239012086 -283.6522621509742 22.6313 0.1144 4191 +4193 2 -486.1244374499722 -284.281487891521 22.9703 0.1144 4192 +4194 2 -485.2485623315691 -285.0149760693142 23.2544 0.1144 4193 +4195 2 -484.4023127957032 -285.7833160025773 23.4765 0.1144 4194 +4196 2 -483.7072525051034 -286.68222182769534 23.6409 0.1144 4195 +4197 2 -482.90316006099204 -287.44414462649013 23.7864 0.1144 4196 +4198 2 -481.8374716315799 -287.5818501870782 23.9095 0.1144 4197 +4199 2 -481.65984887925913 -288.2221891659465 23.9914 0.1144 4198 +4200 2 -481.6227578245357 -289.3213821215551 24.0444 0.1144 4199 +4201 2 -481.14731591218003 -290.35990667012175 24.0709 0.1144 4200 +4202 2 -480.7349881481653 -291.41305907838114 24.0733 0.1144 4201 +4203 2 -480.1637814170999 -292.259615349627 24.0548 0.1144 4202 +4204 2 -479.1410773391198 -292.7388028065609 23.9801 0.1144 4203 +4205 2 -478.594006233192 -293.60803707593755 23.884 0.1144 4204 +4206 2 -478.14451493478697 -294.6466866668286 23.8163 0.1144 4205 +4207 2 -477.85996754593 -295.73079510397633 23.7785 0.1144 4206 +4208 2 -477.9797288102612 -296.85626732911817 23.7721 0.1144 4207 +4209 2 -478.15696929145395 -297.98589041308315 23.7979 0.1144 4208 +4210 2 -478.1044610679822 -299.11991153125854 23.8549 0.1144 4209 +4211 2 -477.8343582615157 -300.2284454477171 23.9391 0.1144 4210 +4212 2 -477.8983950983321 -301.3221932630431 24.1014 0.1144 4211 +4213 2 -477.98011232469537 -302.448434367299 24.3093 0.1144 4212 +4214 2 -477.80707152765933 -303.56841452005233 24.5211 0.1144 4213 +4215 2 -477.24450162720234 -304.54523822835375 24.705 0.1144 4214 +4216 2 -476.47262849838296 -305.38656603783505 24.8595 0.1144 4215 +4217 2 -475.5265242787232 -305.99128417510383 25.033 0.1144 4216 +4218 2 -474.7910654408492 -306.8334660425131 25.1879 0.1144 4217 +4219 2 -474.30358132737325 -307.8484186715105 25.3505 0.1144 4218 +4220 2 -474.3522078054219 -308.97374196533883 25.4579 0.1144 4219 +4221 2 -474.4485350181967 -310.11295374024246 25.5043 0.1144 4220 +4222 2 -474.53510092183046 -311.2537007167135 25.4935 0.1144 4221 +4223 2 -475.10500076135986 -312.2134499406801 25.3783 0.1144 4222 +4224 2 -475.28384424783957 -313.32044891418633 25.1821 0.1144 4223 +4225 2 -475.1779562413317 -314.4511762863135 24.9503 0.1144 4224 +4226 2 -475.0695952910736 -315.58097924013305 24.7114 0.1144 4225 +4227 2 -475.0025106329064 -316.7197781770128 24.4995 0.1144 4226 +4228 2 -474.93704535874804 -317.86190391347066 24.3502 0.1144 4227 +4229 2 -474.71874301691946 -318.98504200273317 24.2584 0.1144 4228 +4230 2 -474.4995230667637 -320.10740035168135 24.2093 0.1144 4229 +4231 2 -474.28122072493517 -321.23053844094386 24.1875 0.1144 4230 +4232 2 -474.132402992425 -322.36520645075575 24.1817 0.1144 4231 +4233 2 -474.0175903596094 -323.5031276428187 24.1816 0.1144 4232 +4234 2 -473.9610331309366 -324.64597913793295 24.1816 0.1144 4233 +4235 2 -506.65437214178826 -280.82018291365966 18.1541 0.1144 4171 +4236 2 -505.8946599446194 -281.628372803149 17.8856 0.1144 4235 +4237 2 -505.8906390061686 -282.77211211000787 17.6663 0.1144 4236 +4238 2 -505.5324669163847 -283.82947912958997 17.417 0.1144 4237 +4239 2 -505.4540650214812 -284.96995143213644 17.2518 0.1144 4238 +4240 2 -505.35067068475144 -286.0917037493313 17.1573 0.1144 4239 +4241 2 -504.73707650693746 -287.054702729057 17.1452 0.1144 4240 +4242 2 -504.3562669828199 -288.11683069043517 17.1838 0.1144 4241 +4243 2 -504.4315192027507 -289.2575539800175 17.2552 0.1144 4242 +4244 2 -504.3402147370049 -290.38010942832943 17.3783 0.1144 4243 +4245 2 -503.95057178110153 -291.4058735273868 17.6177 0.1144 4244 +4246 2 -503.5034662831446 -292.45329625661157 17.8697 0.1144 4245 +4247 2 -503.14926207096744 -293.5405822659375 18.0965 0.1144 4246 +4248 2 -502.7919534057527 -294.6246090773045 18.3023 0.1144 4247 +4249 2 -502.30923349102005 -295.66064350912643 18.4885 0.1144 4248 +4250 2 -501.8945912833099 -296.67094030689685 18.7105 0.1144 4249 +4251 2 -501.53510122517787 -297.58101390178035 19.0918 0.1144 4250 +4252 2 -501.1333379014212 -298.6205412374883 19.4513 0.1144 4251 +4253 2 -500.7177305095057 -299.6865561509793 19.7022 0.1144 4252 +4254 2 -500.2560619007283 -300.7323927518255 19.8475 0.1144 4253 +4255 2 -499.8064831629349 -301.7790324837887 19.8873 0.1144 4254 +4256 2 -499.4645170527686 -302.8638692362532 19.7998 0.1144 4255 +4257 2 -499.1168487055902 -303.93660249777275 19.5775 0.1144 4256 +4258 2 -498.7222522579332 -304.9979237750006 19.3011 0.1144 4257 +4259 2 -498.24603090134923 -306.0372245108481 19.0338 0.1144 4258 +4260 2 -497.85799706042656 -307.1049942136861 18.7832 0.1144 4259 +4261 2 -497.45864016915993 -308.10966614690506 18.4788 0.1144 4260 +4262 2 -496.7663177253934 -308.84919548632115 18.0339 0.1144 4261 +4263 2 -495.94373159970485 -309.56179411516126 17.6021 0.1144 4262 +4264 2 -495.188101757353 -310.4127726056928 17.2641 0.1144 4263 +4265 2 -494.49697253569656 -311.3254045627118 17.0017 0.1144 4264 +4266 2 -493.8535067419163 -312.26974405263843 16.803 0.1144 4265 +4267 2 -493.0978128509788 -313.11754042158543 16.6667 0.1144 4266 +4268 2 -492.32277171872244 -313.91841500184796 16.4914 0.1144 4267 +4269 2 -492.0099352892444 -314.9709978909315 16.3158 0.1144 4268 +4270 2 -491.63719357474577 -316.02989004515337 16.1044 0.1144 4269 +4271 2 -490.72119438089294 -316.5755569553295 15.8421 0.1144 4270 +4272 2 -489.8395565299254 -317.29206246803767 15.6424 0.1144 4271 +4273 2 -489.04347366045516 -318.11233847337735 15.5226 0.1144 4272 +4274 2 -488.43156015647475 -319.0493900960996 15.539 0.1144 4273 +4275 2 -487.66935083048025 -319.90198116065926 15.5644 0.1144 4274 +4276 2 -486.90721206696594 -320.75464308378525 15.5894 0.1144 4275 +4277 2 -486.14337625089604 -321.60730145387777 15.6008 0.1144 4276 +4278 2 -485.3812374873817 -322.45996337700376 15.5816 0.1144 4277 +4279 2 -485.1762474105019 -322.6285330907153 15.8182 0.1144 4278 +4280 2 -484.29622923962904 -323.34822398195513 16.2964 0.1144 4279 +4281 2 -483.41698695995115 -324.0688357384696 16.4946 0.1144 4280 +4282 2 -482.5370360946112 -324.7901531197848 16.7207 0.1144 4281 +4283 2 -481.6096223598063 -325.3164213636446 17.0394 0.1144 4282 +4284 2 -480.61041233074843 -325.82076035463194 17.3232 0.1144 4283 +4285 2 -479.574754755115 -326.3063553772929 17.5126 0.1144 4284 +4286 2 -478.74802132363675 -327.0747361704392 17.6107 0.1144 4285 +4287 2 -477.7672172406817 -327.6365308934997 17.617 0.1144 4286 +4288 2 -476.7654934079902 -328.1594615705669 17.5078 0.1144 4287 +4289 2 -475.96066513829487 -328.935100730421 17.2981 0.1144 4288 +4290 2 -475.5247823316192 -329.9922343401623 17.1244 0.1144 4289 +4291 2 -475.4295573620442 -331.0622434313243 16.9927 0.1144 4290 +4292 2 -474.9306582094297 -332.0918093036805 16.8996 0.1144 4291 +4293 2 -474.4439802819178 -333.1269869188136 16.8399 0.1144 4292 +4294 2 -473.9572314958396 -334.16223509642685 16.8048 0.1144 4293 +4295 2 -473.4899110786746 -335.20565569604173 16.7779 0.1144 4294 +4296 2 -473.0751536934675 -336.270965280818 16.7413 0.1144 4295 +4297 2 -472.6886553501985 -337.34835487175076 16.6939 0.1144 4296 +4298 2 -472.3935429289112 -338.4463712235425 16.623 0.1144 4297 +4299 2 -472.19702801470817 -339.56545369972366 16.5041 0.1144 4298 +4300 2 -471.80816074789936 -340.62600915268433 16.3558 0.1144 4299 +4301 2 -471.3473560618774 -341.66449363564027 16.2125 0.1144 4300 +4302 2 -471.1904405210654 -342.78295191070094 16.0688 0.1144 4301 +4303 2 -471.1881198921173 -343.9251391390839 15.9184 0.1144 4302 +4304 2 -471.12584680647115 -345.06239251138237 15.7273 0.1144 4303 +4305 2 -471.1016482556623 -346.1843106367992 15.4486 0.1144 4304 +4306 2 -471.1720553513558 -347.3088310016107 15.1157 0.1144 4305 +4307 2 -471.17540666465084 -348.4438176000775 14.7749 0.1144 4306 +4308 2 -470.6582646153946 -349.3042756762736 14.3586 0.1144 4307 +4309 2 -469.6432312439597 -349.6321580101578 13.8881 0.1144 4308 +4310 2 -468.69613415850097 -349.93430241390456 13.3286 0.1144 4309 +4311 2 -467.86875028235283 -350.60807075056795 12.8042 0.1144 4310 +4312 2 -467.1453740072959 -351.4883203428341 12.4146 0.1144 4311 +4313 2 -466.53255275981564 -352.4536543982971 12.1558 0.1144 4312 +4314 2 -466.23342864017724 -353.54268207519544 12.0129 0.1144 4313 +4315 2 -466.1825365437669 -354.6815856244581 11.9647 0.1144 4314 +4316 2 -466.2214690182073 -355.81007060992926 12.0297 0.1144 4315 +4317 2 -465.89719060575476 -356.89013605758385 12.1034 0.1144 4316 +4318 2 -465.5244720799585 -357.9717264377779 12.1482 0.1144 4317 +4319 2 -465.77541533482565 -359.05702671550597 12.1651 0.1144 4318 +4320 2 -465.7301382381395 -360.18215340815686 12.1238 0.1144 4319 +4321 2 -465.25959237683196 -361.2125564615328 12.0278 0.1144 4320 +4322 2 -464.9523803137192 -362.31443657673503 11.9405 0.1144 4321 +4323 2 -464.85128374587686 -363.45323501542833 11.8096 0.1144 4322 +4324 2 -475.1440497948055 -330.2745633953647 16.7661 0.1144 4290 +4325 2 -474.209404933215 -330.8097260647489 16.1659 0.1144 4324 +4326 2 -473.2373871103683 -331.3966415289073 15.9398 0.1144 4325 +4327 2 -472.2106740927978 -331.8992965891139 15.738 0.1144 4326 +4328 2 -471.17346769563574 -332.381635670763 15.5539 0.1144 4327 +4329 2 -470.1273232543051 -332.8438034518481 15.3824 0.1144 4328 +4330 2 -469.0795694958936 -333.29783611778146 15.1998 0.1144 4329 +4331 2 -468.2118811197401 -333.9375081602282 14.9055 0.1144 4330 +4332 2 -467.2722485143928 -334.55836191673484 14.5841 0.1144 4331 +4333 2 -466.2140993808923 -334.9452682377896 14.2541 0.1144 4332 +4334 2 -465.0982627787952 -334.7520128176317 13.9552 0.1144 4333 +4335 2 -464.0036510972286 -334.41808727716216 13.7412 0.1144 4334 +4336 2 -462.97898453286786 -333.90951099784786 13.6055 0.1144 4335 +4337 2 -462.0233008623689 -333.2805878849463 13.5367 0.1144 4336 +4338 2 -461.1268314684238 -332.570117733765 13.5056 0.1144 4337 +4339 2 -460.25808109773743 -331.8256937057861 13.4968 0.1144 4338 +4340 2 -485.20189079518434 -322.7078536228745 15.525 0.1144 4278 +4341 2 -484.532589066764 -323.63106719314607 15.4129 0.1144 4340 +4342 2 -483.8641340881047 -324.55513106621197 15.2693 0.1144 4341 +4343 2 -483.0091555307356 -325.30478506402625 15.1243 0.1144 4342 +4344 2 -482.09201794230285 -325.98890140200103 14.985 0.1144 4343 +4345 2 -481.367822157407 -326.8552899552143 14.8055 0.1144 4344 +4346 2 -480.85926275500105 -327.87189551993663 14.5957 0.1144 4345 +4347 2 -480.37738959002945 -328.908780254553 14.3904 0.1144 4346 +4348 2 -479.89389023106867 -329.94559087365576 14.1808 0.1144 4347 +4349 2 -479.3433592747847 -330.9475421330357 13.9383 0.1144 4348 +4350 2 -478.27526115593525 -331.12165872762205 13.5933 0.1144 4349 +4351 2 -477.2113075841148 -331.20753687973604 13.1059 0.1144 4350 +4352 2 -476.0674941617425 -331.2051421352745 12.6569 0.1144 4351 +4353 2 -475.1713542502082 -331.48561428889275 12.9343 0.1144 4352 +4354 2 -474.937350257394 -332.37417167102797 12.8524 0.1144 4353 +4355 2 -475.338806069308 -333.44041230103625 12.8188 0.1144 4354 +4356 2 -475.1401561395925 -334.43093801267827 12.7716 0.1144 4355 +4357 2 -474.79651666375963 -335.5044575284065 12.7089 0.1144 4356 +4358 2 -474.8031242141526 -336.6377538842984 12.6304 0.1144 4357 +4359 2 -474.84762757148667 -337.7735337490547 12.4982 0.1144 4358 +4360 2 -475.1317021384656 -338.84037715386904 12.2758 0.1144 4359 +4361 2 -475.5016059566659 -339.9137642300353 12.0434 0.1144 4360 +4362 2 -475.8187778798396 -341.0121432498415 11.8404 0.1144 4361 +4363 2 -476.31415464158323 -342.03650757171357 11.6682 0.1144 4362 +4364 2 -476.7253080101388 -343.0978894575235 11.4998 0.1144 4363 +4365 2 -477.0062007516192 -344.1646554898771 11.2687 0.1144 4364 +4366 2 -477.0903947708522 -345.2899825388391 11.0616 0.1144 4365 +4367 2 -477.53795256552564 -346.3231563095219 10.9048 0.1144 4366 +4368 2 -477.7832639437604 -347.4302944435001 10.7915 0.1144 4367 +4369 2 -477.3345155770062 -348.4518335682209 10.7171 0.1144 4368 +4370 2 -477.2043840760309 -349.5776311354833 10.6774 0.1144 4369 +4371 2 -477.2343747511692 -350.7215123615748 10.6634 0.1144 4370 +4372 2 -477.4779721999402 -351.836707942158 10.6542 0.1144 4371 +4373 2 -477.85345015798146 -352.9158342661003 10.642 0.1144 4372 +4374 2 -478.26373989986763 -353.9844268487542 10.6254 0.1144 4373 +4375 2 -477.85465445690363 -355.0425358036142 10.6018 0.1144 4374 +4376 2 -477.97764827144385 -356.17763146988415 10.5673 0.1144 4375 +4377 2 -478.28279081918595 -357.28008653271326 10.5195 0.1144 4376 +4378 2 -478.50243588265096 -357.84602092475484 10.4572 0.1144 4377 +4379 2 -478.8196078058246 -358.944399944561 10.3809 0.1144 4378 +4380 2 -478.7404842034845 -360.0580713303624 10.235 0.1144 4379 +4381 2 -478.9031653289906 -361.15054074476444 10.0037 0.1144 4380 +4382 2 -478.993064842183 -362.28641565316224 9.7973 0.1144 4381 +4383 2 -478.6461522523439 -363.36968641110377 9.628 0.1144 4382 +4384 2 -478.3235335855968 -364.4675744636238 9.4947 0.1144 4383 +4385 2 -478.02833727795456 -365.5718839039323 9.3954 0.1144 4384 +4386 2 -478.01145028123887 -366.71404063544594 9.3276 0.1144 4385 +4387 2 -477.6104563347826 -367.7576000994467 8.9978 0.1144 4386 +4388 2 -478.098666068713 -357.1082272697587 10.2728 0.1144 4377 +4389 2 -477.3642056946337 -356.3251934397697 9.7365 0.1144 4388 +4390 2 -476.5399207497036 -355.5525781735721 9.5051 0.1144 4389 +4391 2 -475.48168323695677 -355.61018395987304 9.3101 0.1144 4390 +4392 2 -474.9442683296008 -356.52808749911424 9.166 0.1144 4391 +4393 2 -474.71543530133073 -357.64872866165143 9.0688 0.1144 4392 +4394 2 -474.51402759302664 -358.77437700151415 8.9978 0.1144 4393 +4395 2 -475.81553838144805 -331.38026033757296 12.1257 0.1144 4352 +4396 2 -475.0722625188908 -332.1058943859332 11.5277 0.1144 4395 +4397 2 -474.7740975677496 -333.10830330045405 10.9732 0.1144 4396 +4398 2 -474.04305695445646 -333.76530274620427 10.3469 0.1144 4397 +4399 2 -473.4796135625027 -334.7202749782946 9.8283 0.1144 4398 +4400 2 -473.29128744902323 -335.84587999559943 9.4074 0.1144 4399 +4401 2 -472.7998901398852 -336.7710216737071 8.9916 0.1144 4400 +4402 2 -471.8772736573534 -337.3701321194187 8.5879 0.1144 4401 +4403 2 -470.7680718646155 -337.45280426095906 8.2429 0.1144 4402 +4404 2 -469.7184639308249 -337.2726275828792 7.8329 0.1144 4403 +4405 2 -468.7439246675359 -336.7334677510036 7.4492 0.1144 4404 +4406 2 -467.9570058738815 -335.9123523740963 7.1225 0.1144 4405 +4407 2 -466.9009636326282 -335.6982210249464 6.7721 0.1144 4406 +4408 2 -465.76466537760734 -335.58503813915354 6.4677 0.1144 4407 +4409 2 -464.76739669119 -335.128350262052 6.1029 0.1144 4408 +4410 2 -464.09761991902224 -334.3195716919448 5.6554 0.1144 4409 +4411 2 -463.37391022336453 -333.4339589512896 5.2924 0.1144 4410 +4412 2 -462.72307372461444 -332.4949706809183 4.9949 0.1144 4411 +4413 2 -462.20583166459835 -331.51185570730115 4.7034 0.1144 4412 +4414 2 -461.77493814845525 -330.59121776123004 4.3977 0.1144 4413 +4415 2 -460.7664913857736 -330.06973535804013 4.188 0.1144 4414 +4416 2 -459.6946290590904 -329.67759172027786 4.0476 0.1144 4415 +4417 2 -459.097527590194 -328.9775064355863 3.9431 0.1144 4416 +4418 2 -459.347351724953 -327.8616468468871 3.8697 0.1144 4417 +4419 2 -459.4282064297513 -326.73171559379597 3.8217 0.1144 4418 +4420 2 -459.10850382603576 -325.6599892597081 3.7843 0.1144 4419 +4421 2 -458.5734732110568 -324.66227061147345 3.701 0.1144 4420 +4422 2 -458.1096484430269 -323.63075984344334 3.5886 0.1144 4421 +4423 2 -457.88470347197415 -322.5228158195873 3.4981 0.1144 4422 +4424 2 -458.0293841677227 -321.40525116987897 3.4276 0.1144 4423 +4425 2 -458.1773952160825 -320.2843700836065 3.3769 0.1144 4424 +4426 2 -457.7969501463265 -319.2473063059639 3.3451 0.1144 4425 +4427 2 -457.8912837511235 -318.23153055757945 3.3316 0.1144 4426 +4428 2 -458.5031335026044 -317.29115539222636 3.2696 0.1144 4427 +4429 2 -458.34182147435786 -316.2877844939326 3.2357 0.1144 4428 +4430 2 -457.8805576816389 -315.24892516104546 3.2684 0.1144 4429 +4431 2 -457.616651064291 -314.1409702759893 3.3117 0.1144 4430 +4432 2 -457.47187692819193 -313.00653611768973 3.3558 0.1144 4431 +4433 2 -457.8461778272331 -311.9459501678597 3.4004 0.1144 4432 +4434 2 -458.5978529137528 -311.09255922913013 3.4462 0.1144 4433 +4435 2 -459.47138614643796 -310.36309666573527 3.5162 0.1144 4434 +4436 2 -459.52143425184795 -309.25579909184427 3.5719 0.1144 4435 +4437 2 -459.58526296900334 -308.1185489764931 3.5996 0.1144 4436 +4438 2 -459.5044229892706 -306.978591807264 3.6455 0.1144 4437 +4439 2 -459.67738286081266 -305.86349053256464 3.7154 0.1144 4438 +4440 2 -460.21815200976914 -304.89708638442744 3.821 0.1144 4439 +4441 2 -459.91464196781044 -303.8254646627223 4.0076 0.1144 4440 +4442 2 -459.24517292309736 -302.90347869310517 4.2356 0.1144 4441 +4443 2 -458.6346409243527 -301.9985867169506 4.529 0.1144 4442 +4444 2 -458.2841584629847 -300.9704952354796 4.9281 0.1144 4443 +4445 2 -457.9288041356436 -299.905199655821 5.3148 0.1144 4444 +4446 2 -458.11869850422056 -298.84111634668454 5.7194 0.1144 4445 +4447 2 -458.7781537446858 -297.99389630689393 6.2033 0.1144 4446 +4448 2 -459.3824641437401 -297.2096348762505 6.801 0.1144 4447 +4449 2 -458.8471590569368 -296.3430135379242 7.3375 0.1144 4448 +4450 2 -458.1282239230362 -295.47353286347345 7.815 0.1144 4449 +4451 2 -457.2763954257963 -294.7186083498364 8.1885 0.1144 4450 +4452 2 -456.3912702124236 -293.99359551777627 8.4573 0.1144 4451 +4453 2 -455.49565467430614 -293.28058156427846 8.6408 0.1144 4452 +4454 2 -454.7896967249477 -292.3933796403977 8.8029 0.1144 4453 +4455 2 -454.59132301593286 -291.3268570848127 9.0217 0.1144 4454 +4456 2 -453.7823904908788 -290.5841139327677 9.2363 0.1144 4455 +4457 2 -453.6488491129888 -289.4545823394109 9.4079 0.1144 4456 +4458 2 -453.3775966895447 -288.3765227572097 9.5438 0.1144 4457 +4459 2 -453.6994323590302 -287.28110794452607 9.6502 0.1144 4458 +4460 2 -454.11665617409324 -286.21983404107596 9.7367 0.1144 4459 +4461 2 -454.2281551291054 -285.11103877456765 9.8198 0.1144 4460 +4462 2 -453.80405832982433 -284.05125613891096 9.9238 0.1144 4461 +4463 2 -453.4260592599826 -283.0279860947883 10.0596 0.1144 4462 +4464 2 -453.4768971726347 -281.9149625969963 10.2493 0.1144 4463 +4465 2 -453.62396992411044 -281.2422448064084 10.5723 0.1144 4464 +4466 2 -454.4655623405887 -281.85395845226424 11.0034 0.1144 4465 +4467 2 -455.4912727540742 -282.235469549963 11.4755 0.1144 4466 +4468 2 -456.4615899713323 -281.6502475853267 11.8882 0.1144 4467 +4469 2 -457.334821788357 -281.0647516470524 12.3908 0.1144 4468 +4470 2 -458.11157053828293 -280.22506039457426 12.7824 0.1144 4469 +4471 2 -458.70573279415044 -279.2555860454023 13.0801 0.1144 4470 +4472 2 -458.83416950314466 -278.1962531129477 13.4379 0.1144 4471 +4473 2 -459.25777719704575 -277.1592463908539 13.7194 0.1144 4472 +4474 2 -459.1315241845465 -276.0272551776218 13.9262 0.1144 4473 +4475 2 -459.1896537195365 -274.91021642844527 14.1166 0.1144 4474 +4476 2 -459.4290714159059 -273.8000626297915 14.2316 0.1144 4475 +4477 2 -459.35297244621404 -272.6584890374149 14.278 0.1144 4476 +4478 2 -459.2841041051213 -271.54203292918885 14.2244 0.1144 4477 +4479 2 -459.2127315291365 -270.47337210114415 14.0386 0.1144 4478 +4480 2 -459.22402750910294 -269.3335371214928 13.8891 0.1144 4479 +4481 2 -459.38337592805453 -268.20136603840615 13.7803 0.1144 4480 +4482 2 -459.6565254507674 -267.1236684239327 13.7278 0.1144 4481 +4483 2 -460.30571361541536 -266.1818157938037 13.7317 0.1144 4482 +4484 2 -460.76166942206635 -265.1626959272613 13.7895 0.1144 4483 +4485 2 -460.8561933162466 -264.02225737853155 13.889 0.1144 4484 +4486 2 -460.74769105367375 -262.9567008014243 14.0588 0.1144 4485 +4487 2 -460.3484513848665 -261.9802675692723 14.3649 0.1144 4486 +4488 2 -460.57382180401953 -260.95988711857234 14.6612 0.1144 4487 +4489 2 -461.01533954217456 -259.91323050970084 14.8898 0.1144 4488 +4490 2 -461.1842841623321 -258.7908376126635 15.0545 0.1144 4489 +4491 2 -461.47944345921064 -257.70420580314095 15.1596 0.1144 4490 +4492 2 -461.5374615718373 -256.60661229978587 15.2142 0.1144 4491 +4493 2 -461.99331532276597 -255.6700117617954 15.2849 0.1144 4492 +4494 2 -462.92636824237024 -255.0846410679458 15.2859 0.1144 4493 +4495 2 -463.9418618256068 -254.57071949571358 15.2592 0.1144 4494 +4496 2 -464.8000761901322 -253.82913330751822 15.2327 0.1144 4495 +4497 2 -465.29490590760395 -252.81815586429465 15.2069 0.1144 4496 +4498 2 -465.09000364175745 -251.7289214627763 15.181 0.1144 4497 +4499 2 -464.84570086427163 -250.61287587548483 15.1545 0.1144 4498 +4500 2 -465.5058445565435 -249.77456684204085 15.1368 0.1144 4499 +4501 2 -466.3318491745185 -248.98277923726042 15.1209 0.1144 4500 +4502 2 -466.7805912294786 -247.93048088692902 15.1054 0.1144 4501 +4503 2 -466.9725326194782 -247.44227088825522 15.1838 0.1144 4502 +4504 2 -467.3719610695979 -246.3696459942522 15.2694 0.1144 4503 +4505 2 -467.6654603246847 -245.26533300091046 15.3053 0.1144 4504 +4506 2 -468.11737088126824 -244.2194759701226 15.3539 0.1144 4505 +4507 2 -469.1607605988571 -243.92474567437785 15.4152 0.1144 4506 +4508 2 -470.19307449800425 -243.44883103536404 15.489 0.1144 4507 +4509 2 -471.2164695844514 -243.0448813515716 15.6724 0.1144 4508 +4510 2 -472.2836662150802 -243.33512091051293 15.8873 0.1144 4509 +4511 2 -473.42575839982175 -243.38283769531932 16.0556 0.1144 4510 +4512 2 -474.4967535468022 -243.78388908248095 16.1792 0.1144 4511 +4513 2 -475.61089565300426 -244.04346771640044 16.3086 0.1144 4512 +4514 2 -467.4209339634805 -248.07253609806537 15.0434 0.1144 4502 +4515 2 -468.40783007835455 -247.70817877558312 14.9787 0.1144 4514 +4516 2 -469.4610869159404 -247.29382640853473 14.9498 0.1144 4515 +4517 2 -470.55434657925616 -247.49672194462875 14.9542 0.1144 4516 +4518 2 -471.53849566371207 -248.03915459442447 15.0453 0.1144 4517 +4519 2 -472.62238642596895 -248.08993151333777 15.2296 0.1144 4518 +4520 2 -473.6627575696208 -247.64960129241658 15.3987 0.1144 4519 +4521 2 -474.72733490089024 -247.23201992819241 15.5299 0.1144 4520 +4522 2 -475.8329380354012 -246.94307675218775 15.6165 0.1144 4521 +4523 2 -476.93288886333795 -246.68572948462696 15.608 0.1144 4522 +4524 2 -477.6287248430324 -245.8216150134122 15.589 0.1144 4523 +4525 2 -478.50948870431677 -245.11726993416812 15.632 0.1144 4524 +4526 2 -478.76262927563994 -244.0047406980802 15.7461 0.1144 4525 +4527 2 -505.9154678438538 -267.06276256940566 20.0967 0.1144 2132 +4528 2 -505.8344153824082 -265.9567461551994 19.6333 0.1144 4527 +4529 2 -505.9500037043183 -264.85361631703984 19.4292 0.1144 4528 +4530 2 -505.86329262450454 -263.7484365856669 19.2209 0.1144 4529 +4531 2 -506.3142808212544 -262.80539117509943 19.0332 0.1144 4530 +4532 2 -506.9415368802834 -261.86914949347477 18.8119 0.1144 4531 +4533 2 -507.21563125124555 -260.7792208830571 18.6117 0.1144 4532 +4534 2 -507.43718272410536 -259.6577866563307 18.4524 0.1144 4533 +4535 2 -508.08537896281234 -258.7506509685055 18.304 0.1144 4534 +4536 2 -508.61649111892456 -257.76973088122526 18.1081 0.1144 4535 +4537 2 -508.9560984664646 -256.69698074279745 17.8823 0.1144 4536 +4538 2 -509.65206600237786 -255.80380439461376 17.7112 0.1144 4537 +4539 2 -510.34234521732617 -254.89187776630945 17.5927 0.1144 4538 +4540 2 -511.0528859309875 -253.9954792309305 17.5186 0.1144 4539 +4541 2 -511.61714607401944 -253.02191175972698 17.4321 0.1144 4540 +4542 2 -512.3970597725356 -252.1903588793478 17.4149 0.1144 4541 +4543 2 -513.1244812976599 -251.33684645132715 17.5351 0.1144 4542 +4544 2 -513.079026578182 -250.21640884553327 17.6442 0.1144 4543 +4545 2 -513.8004306285724 -249.5351354084463 16.3473 0.1144 4544 +4546 2 -513.1693015525217 -249.58557437516254 14.9135 0.1144 4545 +4547 2 -512.0776779480227 -249.41181512763706 14.6469 0.1144 4546 +4548 2 -510.98547901074016 -249.07379341028908 14.5595 0.1144 4547 +4549 2 -509.8727327435334 -248.92431446589464 14.4215 0.1144 4548 +4550 2 -508.8443771532517 -249.400944500551 14.2899 0.1144 4549 +4551 2 -507.81758646713445 -249.90692280730224 14.191 0.1144 4550 +4552 2 -506.74977007176153 -250.31799199341663 14.1235 0.1144 4551 +4553 2 -505.6117573890905 -250.24687846390393 14.0844 0.1144 4552 +4554 2 -504.4729521404165 -250.14903458012614 14.0637 0.1144 4553 +4555 2 -503.37456956757705 -250.46790355585532 14.0592 0.1144 4554 +4556 2 -502.4453797110965 -251.13325628983452 14.0591 0.1144 4555 +4557 2 -501.5984212934825 -251.90244326894484 14.0591 0.1144 4556 +4558 2 -500.7377067452846 -252.65611577509077 14.0591 0.1144 4557 +4559 2 -499.81979652260424 -253.33775561628192 14.0591 0.1144 4558 +4560 2 -515.0140366838036 -249.4357112529009 15.8827 0.1144 4545 +4561 2 -515.8749994037619 -248.90124284893088 15.6329 0.1144 4560 +4562 2 -516.7073304033546 -248.56647260366273 15.3208 0.1144 4561 +4563 2 -517.7109050979631 -249.08462139729411 15.055 0.1144 4562 +4564 2 -518.8277744858843 -249.22364377076056 14.8281 0.1144 4563 +4565 2 -519.6727913778014 -248.60499609043296 14.4883 0.1144 4564 +4566 2 -520.7298671051657 -248.69701199458734 14.1353 0.1144 4565 +4567 2 -521.7467335217514 -249.08097945521422 13.779 0.1144 4566 +4568 2 -522.8242378485096 -249.04116242597632 13.4034 0.1144 4567 +4569 2 -523.7572766499663 -248.49630900993114 13.1059 0.1144 4568 +4570 2 -524.5816213201355 -247.72056928891402 12.8784 0.1144 4569 +4571 2 -525.4769074323569 -247.03732644243604 12.6639 0.1144 4570 +4572 2 -526.2641326849663 -246.22601216815372 12.4678 0.1144 4571 +4573 2 -526.9940143281524 -245.3457761958487 12.3101 0.1144 4572 +4574 2 -527.6179909613811 -244.38852653082674 12.1778 0.1144 4573 +4575 2 -528.5810432980368 -243.82832099099167 12.0102 0.1144 4574 +4576 2 -528.8995484128106 -242.77009310350107 11.8357 0.1144 4575 +4577 2 -529.0781973995903 -241.6395887782008 11.6974 0.1144 4576 +4578 2 -529.653811588022 -240.68054079917357 11.2473 0.1144 4577 +4579 2 -513.2883873037647 -249.9191545661974 17.9221 0.1144 4544 +4580 2 -513.8669975777177 -249.01512588807046 18.2307 0.1144 4579 +4581 2 -514.4951445033383 -248.05866277334334 18.5061 0.1144 4580 +4582 2 -515.3758947446615 -247.36082306222843 18.7993 0.1144 4581 +4583 2 -515.0835388899782 -246.39918003894363 19.0211 0.1144 4582 +4584 2 -514.8267512767658 -245.36965837248846 19.1936 0.1144 4583 +4585 2 -515.4516455183216 -244.4131884477808 19.3206 0.1144 4584 +4586 2 -515.8130634821896 -243.35908092224386 19.4607 0.1144 4585 +4587 2 -516.0465896485364 -242.2934626136402 19.6469 0.1144 4586 +4588 2 -516.5826283525663 -241.28985466340163 19.8094 0.1144 4587 +4589 2 -516.7855102686991 -240.20310036821516 19.9983 0.1144 4588 +4590 2 -517.0707217221869 -239.20709901942124 20.2543 0.1144 4589 +4591 2 -517.6115213680129 -238.2261285035164 20.4985 0.1144 4590 +4592 2 -517.8330491539839 -237.1160079604929 20.6867 0.1144 4591 +4593 2 -518.0417247977371 -235.9976580529487 20.829 0.1144 4592 +4594 2 -518.3303519847506 -234.89001145004832 20.9397 0.1144 4593 +4595 2 -518.4799186646196 -233.76913362072307 21.0651 0.1144 4594 +4596 2 -518.4103046331153 -232.63733170050128 21.1909 0.1144 4595 +4597 2 -518.2468578854425 -231.50526261662205 21.3001 0.1144 4596 +4598 2 -517.8106306513802 -230.4640515331897 21.3952 0.1144 4597 +4599 2 -517.1313899345121 -229.54855050176013 21.479 0.1144 4598 +4600 2 -516.4951366804379 -228.60153172861996 21.5546 0.1144 4599 +4601 2 -516.1147490513874 -227.53703226799757 21.6549 0.1144 4600 +4602 2 -516.4606220454217 -226.51124724081217 21.7948 0.1144 4601 +4603 2 -517.123502588154 -225.5815855410165 21.9286 0.1144 4602 +4604 2 -516.9833984014293 -224.47947601067838 22.0501 0.1144 4603 +4605 2 -516.867682885352 -223.34672904010685 22.1994 0.1144 4604 +4606 2 -516.960704833595 -222.21441909263436 22.3755 0.1144 4605 +4607 2 -517.1903881646592 -221.09293118033605 22.5251 0.1144 4606 +4608 2 -517.4361834280727 -219.97628533742815 22.6569 0.1144 4607 +4609 2 -516.2548540397681 -219.3509203189566 22.8683 0.1144 4608 +4610 2 -515.222018310353 -218.86021677704625 22.9416 0.1144 4609 +4611 2 -514.3158375377049 -218.1949812268214 22.9997 0.1144 4610 +4612 2 -513.9425389141069 -217.18946944289252 23.0441 0.1144 4611 +4613 2 -513.7119453916139 -216.0775537862961 23.0767 0.1144 4612 +4614 2 -513.1517667956148 -215.1016321344282 23.1001 0.1144 4613 +4615 2 -512.3866860603107 -214.25227814552449 23.1178 0.1144 4614 +4616 2 -511.59567789975847 -213.4254973402686 23.1427 0.1144 4615 +4617 2 -510.77299270316803 -212.6318135951214 23.1757 0.1144 4616 +4618 2 -509.8140021648462 -212.02876372370986 23.2171 0.1144 4617 +4619 2 -508.78449678804236 -211.53474374523537 23.2879 0.1144 4618 +4620 2 -507.83373235729414 -210.92039736311534 23.4045 0.1144 4619 +4621 2 -506.9137142324821 -210.24466763902637 23.5242 0.1144 4620 +4622 2 -505.8425933428905 -209.93744926411946 23.6309 0.1144 4621 +4623 2 -504.72679780277696 -209.69080725094503 23.7284 0.1144 4622 +4624 2 -503.6410774918879 -209.33179798014137 23.8204 0.1144 4623 +4625 2 -502.63995965839405 -208.78848127373467 23.9117 0.1144 4624 +4626 2 -501.6614961361422 -208.23234262589352 24.0722 0.1144 4625 +4627 2 -500.76506355086065 -207.5380653325552 24.2576 0.1144 4626 +4628 2 -499.87511669803905 -206.81940638065026 24.4467 0.1144 4627 +4629 2 -498.8024003134279 -206.46367703383345 24.6415 0.1144 4628 +4630 2 -497.7386121081578 -206.0990568145254 24.9071 0.1144 4629 +4631 2 -497.0178473691101 -205.32665828336067 25.2885 0.1144 4630 +4632 2 -496.03929541109704 -204.84653359594205 25.7207 0.1144 4631 +4633 2 -495.31018957003516 -204.9509319317979 26.0849 0.1144 4632 +4634 2 -494.1757551156495 -205.09584748894326 26.3839 0.1144 4633 +4635 2 -493.0350013291978 -205.1856660766416 26.6183 0.1144 4634 +4636 2 -491.9029864290768 -205.3232327728439 26.8172 0.1144 4635 +4637 2 -490.817903384568 -205.43664391215358 27.0833 0.1144 4636 +4638 2 -489.7141498434744 -205.24744430717732 27.3268 0.1144 4637 +4639 2 -488.58077916996876 -205.2895485401884 27.5347 0.1144 4638 +4640 2 -487.592751268395 -205.8229730950336 27.7187 0.1144 4639 +4641 2 -486.5225122639106 -206.2090762849714 27.8922 0.1144 4640 +4642 2 -485.73784137873196 -206.98242418983244 28.1168 0.1144 4641 +4643 2 -485.1654965491729 -207.96728846783068 28.3214 0.1144 4642 +4644 2 -484.46555057053854 -208.86936605151942 28.5233 0.1144 4643 +4645 2 -484.07711046200143 -209.69212186710482 28.9386 0.1144 4644 +4646 2 -484.4656332062038 -210.75501201064623 29.2706 0.1144 4645 +4647 2 -484.7909402445293 -211.85178171337145 29.517 0.1144 4646 +4648 2 -485.19960349634016 -212.92044160155822 29.6859 0.1144 4647 +4649 2 -485.7095466258513 -213.94483642029965 29.7965 0.1144 4648 +4650 2 -486.08098919865256 -215.02628775305158 29.8589 0.1144 4649 +4651 2 -486.3577615781793 -216.1359666344993 29.8827 0.1144 4650 +4652 2 -486.67337461289657 -217.23589802886738 29.9127 0.1144 4651 +4653 2 -486.96059655127056 -218.38682320372308 30.0107 0.1144 4652 +4654 2 -487.2421976763127 -219.4867540999048 30.1188 0.1144 4653 +4655 2 -487.40240535988204 -220.61231100567423 30.2324 0.1144 4654 +4656 2 -487.4437129756705 -221.75466028714547 30.3296 0.1144 4655 +4657 2 -487.3895616813012 -222.8966682894459 30.4125 0.1144 4656 +4658 2 -487.01116134843437 -223.95639712650103 30.483 0.1144 4657 +4659 2 -486.3063666925294 -224.8439688379745 30.5435 0.1144 4658 +4660 2 -485.59509716536473 -225.71696056171928 30.6561 0.1144 4659 +4661 2 -485.0146409075427 -226.69212047309546 30.7748 0.1144 4660 +4662 2 -484.09357955833366 -227.32524608542946 30.8764 0.1144 4661 +4663 2 -482.98886077651986 -227.59707909135003 30.9635 0.1144 4662 +4664 2 -482.18637409645623 -228.36883405785207 31.0377 0.1144 4663 +4665 2 -481.97533012133556 -229.47006698533164 31.1013 0.1144 4664 +4666 2 -481.43861984240755 -230.45670292958513 31.2068 0.1144 4665 +4667 2 -480.4239193233604 -230.9633429464071 31.3278 0.1144 4666 +4668 2 -479.3891049444547 -231.4514853244179 31.4308 0.1144 4667 +4669 2 -478.55908507509514 -232.23598130686042 31.5188 0.1144 4668 +4670 2 -478.1249666265078 -233.2947449597104 31.5988 0.1144 4669 +4671 2 -477.83704832124243 -234.40154451676355 31.6767 0.1144 4670 +4672 2 -477.4004598897658 -235.4579695408427 31.7568 0.1144 4671 +4673 2 -477.1231431295081 -236.5671954621411 31.8517 0.1144 4672 +4674 2 -476.7446754911083 -237.62529780912087 31.9827 0.1144 4673 +4675 2 -476.00786413679697 -238.37046158182986 32.2759 0.1144 4674 +4676 2 -475.6490955840012 -239.34120658208732 32.5396 0.1144 4675 +4677 2 -476.1558775200559 -240.3218954875454 32.8084 0.1144 4676 +4678 2 -476.0903926102284 -241.43962594547563 33.0691 0.1144 4677 +4679 2 -475.5925226904048 -242.41665582369578 33.32 0.1144 4678 +4680 2 -474.61122064712674 -242.81100625143532 33.5482 0.1144 4679 +4681 2 -473.61603317762035 -243.28537227102092 33.7142 0.1144 4680 +4682 2 -472.8668446548121 -244.13318225992901 33.8568 0.1144 4681 +4683 2 -472.6324613756904 -245.20290000235835 33.9864 0.1144 4682 +4684 2 -473.07601072896 -246.22552946663865 34.1188 0.1144 4683 +4685 2 -472.9274163393628 -247.28729507513245 34.2706 0.1144 4684 +4686 2 -471.89429369759137 -247.67665796121562 34.4602 0.1144 4685 +4687 2 -470.8648361362367 -247.5313132008363 34.8589 0.1144 4686 +4688 2 -470.8387902200293 -248.01576929817526 35.25 0.1144 4687 +4689 2 -470.11476350030256 -248.8014064339585 35.6989 0.1144 4688 +4690 2 -469.18592618839375 -249.26459763422685 36.2807 0.1144 4689 +4691 2 -468.35620048304264 -249.53707709011238 37.0381 0.1144 4690 +4692 2 -468.4892835810639 -249.7371845338047 38.2407 0.1144 4691 +4693 2 -468.57037384754574 -250.79136998650353 38.7422 0.1144 4692 +4694 2 -468.48798719812714 -251.90998429894447 38.962 0.1144 4693 +4695 2 -468.32308201442936 -252.99434322494153 39.305 0.1144 4694 +4696 2 -467.58757224974437 -253.86084951231229 39.6382 0.1144 4695 +4697 2 -467.160874220953 -254.8540797586427 40.0862 0.1144 4696 +4698 2 -467.10583226209246 -255.98243870541663 40.542 0.1144 4697 +4699 2 -467.41751748481363 -257.0670883363746 40.9917 0.1144 4698 +4700 2 -467.40462255078 -258.193838464254 41.4277 0.1144 4699 +4701 2 -467.62958439874103 -259.2937214884716 41.8474 0.1144 4700 +4702 2 -467.8215200451595 -260.36185691417086 42.2912 0.1144 4701 +4703 2 -467.8062055568613 -261.4959559029934 42.6614 0.1144 4702 +4704 2 -467.71729666240515 -262.62261759511154 42.9436 0.1144 4703 +4705 2 -467.29852402581355 -263.68063555754986 43.1326 0.1144 4704 +4706 2 -466.632421295886 -264.59572407959735 43.2482 0.1144 4705 +4707 2 -465.8363520463768 -265.4094947168079 43.3101 0.1144 4706 +4708 2 -465.25272047695074 -266.38146599270505 43.3384 0.1144 4707 +4709 2 -465.07972379674516 -267.4803744095614 43.3583 0.1144 4708 +4710 2 -465.15816465215494 -268.6179223875398 43.3807 0.1144 4709 +4711 2 -465.05473981855573 -269.7542410725023 43.4084 0.1144 4710 +4712 2 -464.8946152123233 -270.8856327113608 43.4482 0.1144 4711 +4713 2 -465.04203145132743 -271.97396893812066 43.5263 0.1144 4712 +4714 2 -465.59405124528587 -272.9628135907725 43.6251 0.1144 4713 +4715 2 -466.18087571702256 -273.94451860724683 43.6974 0.1144 4714 +4716 2 -466.98429183902726 -274.6539454074898 43.7433 0.1144 4715 +4717 2 -468.01060858035214 -275.1511406975683 43.7629 0.1144 4716 +4718 2 -468.99871873243444 -275.7267450211725 43.7559 0.1144 4717 +4719 2 -469.9957671307856 -276.2886501567118 43.7214 0.1144 4718 +4720 2 -470.9230332592915 -276.94742445563793 43.6638 0.1144 4719 +4721 2 -471.83978508007783 -277.62965273787563 43.5854 0.1144 4720 +4722 2 -472.7231560022901 -278.3482272112533 43.4826 0.1144 4721 +4723 2 -473.07784300805304 -279.32697133406725 43.3194 0.1144 4722 +4724 2 -473.01566091482846 -280.45453751273794 43.0777 0.1144 4723 +4725 2 -472.9235028893411 -281.57949534232023 42.7784 0.1144 4724 +4726 2 -472.83212075504855 -282.70537403717685 42.4432 0.1144 4725 +4727 2 -472.74080947932225 -283.8311821695535 42.0941 0.1144 4726 +4728 2 -472.6495014605431 -284.9554346704208 41.7528 0.1144 4727 +4729 2 -472.6212470945526 -286.0894358568411 41.4543 0.1144 4728 +4730 2 -472.6682165856565 -287.2293928239698 41.2236 0.1144 4729 +4731 2 -472.7354110628962 -288.36854360513473 41.0572 0.1144 4730 +4732 2 -472.7564266831022 -289.5099311614482 40.973 0.1144 4731 +4733 2 -472.58262331874624 -290.622626501844 40.9906 0.1144 4732 +4734 2 -472.2511205894886 -291.7083336909584 41.071 0.1144 4733 +4735 2 -471.92285692433444 -292.8005530581826 41.1634 0.1144 4734 +4736 2 -471.7069637737567 -293.9212920231221 41.2244 0.1144 4735 +4737 2 -471.5468359105768 -295.0542392934897 41.2311 0.1144 4736 +4738 2 -471.3066284069654 -296.1701190160444 41.1732 0.1144 4737 +4739 2 -470.4923435007367 -296.8017711208364 41.0332 0.1144 4738 +4740 2 -469.4245507922526 -297.20152662324773 40.8215 0.1144 4739 +4741 2 -468.4463078867087 -297.7221022928224 40.5076 0.1144 4740 +4742 2 -467.57941938472504 -298.3512400957944 40.0747 0.1144 4741 +4743 2 -466.5833952323853 -298.8199474970118 39.6256 0.1144 4742 +4744 2 -465.4931240878088 -299.14852083936296 39.2361 0.1144 4743 +4745 2 -464.375465630403 -299.38638555425234 38.9337 0.1144 4744 +4746 2 -463.27149224291475 -299.67370579321494 38.6938 0.1144 4745 +4747 2 -462.19569597549764 -300.0460087357384 38.4894 0.1144 4746 +4748 2 -461.11353701598574 -299.91108955123127 38.3303 0.1144 4747 +4749 2 -460.8041347437178 -298.95188571788015 38.2108 0.1144 4748 +4750 2 -461.30123528624085 -297.9708237113672 38.061 0.1144 4749 +4751 2 -462.01339212696377 -297.07930760707546 37.9288 0.1144 4750 +4752 2 -462.5889931936208 -296.0927530865023 37.8361 0.1144 4751 +4753 2 -463.05059094383193 -295.0469870481362 37.7768 0.1144 4752 +4754 2 -463.3013291338849 -293.93360425230674 37.7378 0.1144 4753 +4755 2 -463.1709257607489 -292.8250803462611 37.7846 0.1144 4754 +4756 2 -462.85452647182285 -291.7291778232385 37.8067 0.1144 4755 +4757 2 -462.887599516401 -290.59023696712603 37.7717 0.1144 4756 +4758 2 -462.93368655418476 -289.4497677194265 37.6841 0.1144 4757 +4759 2 -462.9789941477403 -288.31007465900797 37.553 0.1144 4758 +4760 2 -463.02501062304395 -287.1695345527422 37.3884 0.1144 4759 +4761 2 -463.0710976608278 -286.0290653050427 37.1994 0.1144 4760 +4762 2 -463.1155585046223 -284.8885219418298 37.0062 0.1144 4761 +4763 2 -463.16164554240606 -283.7480526941303 36.8144 0.1144 4762 +4764 2 -463.20850876747073 -282.6083628906589 36.6243 0.1144 4763 +4765 2 -463.25296961126526 -281.467819527446 36.4367 0.1144 4764 +4766 2 -463.299056649049 -280.3273502797465 36.2524 0.1144 4765 +4767 2 -463.34429338403845 -279.187727781808 36.0727 0.1144 4766 +4768 2 -463.3903098593421 -278.0471876755422 35.8996 0.1144 4767 +4769 2 -463.43646775569204 -276.9066478653627 35.7367 0.1144 4768 +4770 2 -463.4817044906814 -275.76702536742414 35.5872 0.1144 4769 +4771 2 -463.5277209659851 -274.62648526115845 35.4539 0.1144 4770 +4772 2 -463.5738080037689 -273.486016013459 35.3391 0.1144 4771 +4773 2 -463.6256277754342 -272.3430838889369 35.2654 0.1144 4772 +4774 2 -463.5583387527395 -271.2153173539551 35.292 0.1144 4773 +4775 2 -463.1690638042311 -270.14019266143623 35.3276 0.1144 4774 +4776 2 -462.6235831322185 -269.13523962946874 35.3651 0.1144 4775 +4777 2 -462.0941743269443 -268.12049144055777 35.429 0.1144 4776 +4778 2 -467.8107010021892 -249.6556484457957 37.6354 0.1144 4691 +4779 2 -467.14577998939944 -250.4453691348691 38.0509 0.1144 4778 +4780 2 -467.0237772917818 -251.53879815944003 38.4398 0.1144 4779 +4781 2 -466.76183328735596 -252.6344090751146 38.7923 0.1144 4780 +4782 2 -466.188644964983 -253.61686741880928 39.0726 0.1144 4781 +4783 2 -465.4596272445523 -254.48975127322404 39.354 0.1144 4782 +4784 2 -465.08524897305045 -255.55351904855257 39.6763 0.1144 4783 +4785 2 -464.18194242498765 -256.21737033478087 40.0299 0.1144 4784 +4786 2 -463.2848600197641 -256.61027073976686 40.5647 0.1144 4785 +4787 2 -462.89453292188927 -257.15222988644183 41.0735 0.1144 4786 +4788 2 -462.2171870707388 -258.06736558016667 41.5374 0.1144 4787 +4789 2 -461.47200698933443 -258.9257198754774 41.9516 0.1144 4788 +4790 2 -460.68558161089504 -259.7264999102849 42.3811 0.1144 4789 +4791 2 -459.94778769728373 -260.56945470802793 42.8112 0.1144 4790 +4792 2 -459.4215244205424 -261.5310101788946 43.2104 0.1144 4791 +4793 2 -459.5155439996024 -262.6241136592446 43.6551 0.1144 4792 +4794 2 -459.4299729680249 -263.67632383242994 44.1266 0.1144 4793 +4795 2 -458.7091041848074 -264.5072225130058 44.6284 0.1144 4794 +4796 2 -458.49297017063634 -265.37149278202946 45.2502 0.1144 4795 +4797 2 -458.62596266139246 -266.35790450002673 45.9785 0.1144 4796 +4798 2 -458.4327682349733 -267.4446083665887 46.6256 0.1144 4797 +4799 2 -457.6013111685489 -268.17253267356904 47.1436 0.1144 4798 +4800 2 -456.55935765165214 -268.5918584641263 47.6218 0.1144 4799 +4801 2 -455.5164658943862 -269.054033055192 48.0214 0.1144 4800 +4802 2 -454.4534305746648 -269.4781230444926 48.3473 0.1144 4801 +4803 2 -453.4081432461092 -269.936191391752 48.662 0.1144 4802 +4804 2 -452.5253359164353 -270.062966107978 49.2114 0.1144 4803 +4805 2 -452.2102732769229 -271.030549914779 49.8252 0.1144 4804 +4806 2 -451.68252592752543 -271.92414916791427 50.3317 0.1144 4805 +4807 2 -451.00281144892136 -272.8223093026207 50.8054 0.1144 4806 +4808 2 -449.91488574309597 -273.1451599780181 51.2056 0.1144 4807 +4809 2 -448.8768663499895 -273.61052675759606 51.5374 0.1144 4808 +4810 2 -447.87585771084025 -274.16336961442664 51.7611 0.1144 4809 +4811 2 -447.54077237343563 -273.88682510325987 51.9445 0.1144 4810 +4812 2 -446.66059689668293 -273.16182263421376 52.136 0.1144 4811 +4813 2 -445.7803508574501 -272.43674930660126 52.3314 0.1144 4812 +4814 2 -444.9009548249256 -271.7109706502741 52.5364 0.1144 4813 +4815 2 -444.0215555354539 -270.986747625456 52.7506 0.1144 4814 +4816 2 -443.1413094962211 -270.2616742978436 52.9738 0.1144 4815 +4817 2 -442.26191346369654 -269.53589564151645 53.198 0.1144 4816 +4818 2 -441.38251417422475 -268.8116726166984 53.4178 0.1144 4817 +4819 2 -440.50226813499194 -268.086599289086 53.632 0.1144 4818 +4820 2 -439.62209265823924 -267.3615968200397 53.8384 0.1144 4819 +4821 2 -438.7434728129957 -266.63659760794076 54.0333 0.1144 4820 +4822 2 -437.8632267737629 -265.9115242803283 54.2114 0.1144 4821 +4823 2 -436.9830512970102 -265.1865218112821 54.367 0.1144 4822 +4824 2 -436.1044314517666 -264.461522599183 54.4944 0.1144 4823 +4825 2 -435.22418541253376 -263.7364492715707 54.5888 0.1144 4824 +4826 2 -435.3112482100911 -263.4915478030543 55.5223 0.1144 4825 +4827 2 -435.17932976924305 -262.36364595672 55.7206 0.1144 4826 +4828 2 -435.00046309406105 -261.2339487572416 55.7987 0.1144 4827 +4829 2 -434.82166698135904 -260.1043224163294 55.8807 0.1144 4828 +4830 2 -434.64287086865704 -258.9746960754172 55.9647 0.1144 4829 +4831 2 -434.46315389068053 -257.84584562569995 56.0482 0.1144 4830 +4832 2 -434.2843577779786 -256.7162192847877 56.1291 0.1144 4831 +4833 2 -434.10549110279646 -255.58652208530938 56.2061 0.1144 4832 +4834 2 -433.92669499009446 -254.45689574439717 56.2828 0.1144 4833 +4835 2 -433.74789887739246 -253.327269403485 56.3598 0.1144 4834 +4836 2 -433.568181899416 -252.19841895376763 56.4365 0.1144 4835 +4837 2 -433.389385786714 -251.06879261285547 56.5132 0.1144 4836 +4838 2 -433.21051911153194 -249.9390954133771 56.5897 0.1144 4837 +4839 2 -433.0317229988299 -248.8094690724649 56.6661 0.1144 4838 +4840 2 -432.85292688612793 -247.67984273155272 56.7423 0.1144 4839 +4841 2 -432.6732099081514 -246.55099228183542 56.8179 0.1144 4840 +4842 2 -432.4944137954494 -245.42136594092324 56.8926 0.1144 4841 +4843 2 -432.31554712026735 -244.2916687414448 56.968 0.1144 4842 +4844 2 -432.1366801489992 -243.16211296301273 57.0419 0.1144 4843 +4845 2 -431.9578840362972 -242.03248662210058 57.113 0.1144 4844 +4846 2 -431.77823791688684 -240.90356560990313 57.1796 0.1144 4845 +4847 2 -431.59944180418483 -239.77393926899094 57.2412 0.1144 4846 +4848 2 -431.4205042704366 -238.64431263199265 57.3611 0.1144 4847 +4849 2 -434.79244133498116 -263.2558430590659 54.5908 0.1144 4825 +4850 2 -434.0313859179894 -262.4089723769263 54.4992 0.1144 4849 +4851 2 -433.27033079708366 -261.5619602737405 54.3357 0.1144 4850 +4852 2 -432.50927538009194 -260.715089591601 54.1204 0.1144 4851 +4853 2 -431.74906700894724 -259.86892779120956 53.872 0.1144 4852 +4854 2 -430.9888618947499 -259.021210359309 53.608 0.1144 4853 +4855 2 -430.227735915278 -258.1742688186033 53.3434 0.1144 4854 +4856 2 -429.46668049828617 -257.3273981364638 53.0827 0.1144 4855 +4857 2 -428.70569593986056 -256.4804568918442 52.8276 0.1144 4856 +4858 2 -427.9454202631831 -255.6326686013774 52.579 0.1144 4857 +4859 2 -427.27429423152523 -254.7253163050608 52.3421 0.1144 4858 +4860 2 -426.79350752443804 -253.68966879635508 52.1254 0.1144 4859 +4861 2 -426.3119413731227 -252.65479747493038 51.9263 0.1144 4860 +4862 2 -425.83037492572123 -251.62006757455197 51.7426 0.1144 4861 +4863 2 -425.3488087744059 -250.58519625312724 51.5724 0.1144 4862 +4864 2 -424.86724262309053 -249.55032493170253 51.4136 0.1144 4863 +4865 2 -424.5766623918963 -248.48360932797343 51.2708 0.1144 4864 +4866 2 -424.7116932008671 -247.3481346340112 51.1526 0.1144 4865 +4867 2 -424.84594782255687 -246.21188049582068 51.0544 0.1144 4866 +4868 2 -424.98012832873326 -245.07725255161952 50.9709 0.1144 4867 +4869 2 -425.11431238794296 -243.9409275548629 50.8976 0.1144 4868 +4870 2 -425.24941375939386 -242.8055237194668 50.8304 0.1144 4869 +4871 2 -425.38359781860356 -241.6691987227101 50.7654 0.1144 4870 +4872 2 -425.51785244029327 -240.53294458451967 50.7004 0.1144 4871 +4873 2 -425.6521038050359 -239.3982460778384 50.6355 0.1144 4872 +4874 2 -425.78635842672566 -238.26199193964794 50.5705 0.1144 4873 +4875 2 -425.92138923569644 -237.12651724568562 50.5056 0.1144 4874 +4876 2 -426.0556438573862 -235.99026310749522 50.4409 0.1144 4875 +4877 2 -426.18982762050985 -234.85407953178483 50.3759 0.1144 4876 +4878 2 -426.3240789852524 -233.71938102510356 50.311 0.1144 4877 +4879 2 -426.4583336069422 -232.58312688691313 50.246 0.1144 4878 +4880 2 -426.5933644159129 -231.4476521929508 50.181 0.1144 4879 +4881 2 -426.7276190376027 -230.31139805476036 50.1161 0.1144 4880 +4882 2 -426.8618736592925 -229.1751439165699 50.0511 0.1144 4881 +4883 2 -426.9960541654689 -228.04051597236872 49.9864 0.1144 4882 +4884 2 -427.1303087871587 -226.9042618341783 49.9215 0.1144 4883 +4885 2 -427.2653395961295 -225.76878714021603 49.8565 0.1144 4884 +4886 2 -427.3995236553392 -224.63246214345932 49.7916 0.1144 4885 +4887 2 -427.5329988328008 -223.49698419254986 49.7266 0.1144 4886 +4888 2 -427.66802964177157 -222.36150949858762 49.6619 0.1144 4887 +4889 2 -427.8022842634613 -221.22525536039714 49.597 0.1144 4888 +4890 2 -427.93731507243206 -220.08978066643485 49.532 0.1144 4889 +4891 2 -428.0715696941219 -218.95352652824445 49.4673 0.1144 4890 +4892 2 -428.20497401301725 -217.81811913981502 49.4024 0.1144 4891 +4893 2 -428.34000482198803 -216.6826444458528 49.3377 0.1144 4892 +4894 2 -428.47425944367785 -215.54639030766236 49.2727 0.1144 4893 +4895 2 -428.6092902526485 -214.41091561370004 49.208 0.1144 4894 +4896 2 -428.74354487433834 -213.2746614755096 49.1436 0.1144 4895 +4897 2 -428.87694919323377 -212.1392540870802 49.0792 0.1144 4896 +4898 2 -429.01198000220455 -211.00377939311795 49.0148 0.1144 4897 +4899 2 -429.1462346238943 -209.86752525492747 48.951 0.1144 4898 +4900 2 -429.2812654328651 -208.7320505609652 48.8874 0.1144 4899 +4901 2 -429.41552005455486 -207.59579642277475 48.8244 0.1144 4900 +4902 2 -429.5497714192975 -206.46109791609345 48.762 0.1144 4901 +4903 2 -429.6839554785072 -205.3247729193368 48.7007 0.1144 4902 +4904 2 -429.8182101001969 -204.18851878114637 48.641 0.1144 4903 +4905 2 -429.9532409091677 -203.0530440871841 48.5834 0.1144 4904 +4906 2 -430.0866452280631 -201.91763669875473 48.5288 0.1144 4905 +4907 2 -430.2216760370339 -200.78216200479244 48.4778 0.1144 4906 +4908 2 -430.35593065872365 -199.64590786660196 48.4313 0.1144 4907 +4909 2 -430.6786198879508 -198.5480906726481 48.3994 0.1144 4908 +4910 2 -430.9995415021424 -197.45019906709464 48.3633 0.1144 4909 +4911 2 -447.5471529388117 -274.31796241130166 51.9047 0.1144 4810 +4912 2 -446.53017804167985 -274.7963840439685 52.9589 0.1144 4911 +4913 2 -445.5026152195014 -275.265873944261 53.3988 0.1144 4912 +4914 2 -444.4597370821965 -275.7215431671974 53.9174 0.1144 4913 +4915 2 -443.42906349518614 -276.1570146439203 54.5401 0.1144 4914 +4916 2 -442.52648857590236 -276.4714145247725 55.3734 0.1144 4915 +4917 2 -441.70749347163223 -276.245617205963 56.3811 0.1144 4916 +4918 2 -440.7840567980188 -276.05439095299073 57.4616 0.1144 4917 +4919 2 -439.97058050787314 -275.5567927462307 58.5427 0.1144 4918 +4920 2 -439.43450328500853 -274.65368300144564 59.5389 0.1144 4919 +4921 2 -439.44062193212187 -273.6563195109581 60.4492 0.1144 4920 +4922 2 -439.4251807478429 -272.5205297813743 61.0814 0.1144 4921 +4923 2 -439.40013980932457 -271.3766589182966 61.4802 0.1144 4922 +4924 2 -439.3749574497601 -270.23278775913275 61.7078 0.1144 4923 +4925 2 -439.3506926985227 -269.08969634028324 61.8184 0.1144 4924 +4926 2 -439.32551033895817 -267.9458251811194 61.8579 0.1144 4925 +4927 2 -439.29968995621175 -266.8027305053227 61.8604 0.1144 4926 +4928 2 -439.27450759664725 -265.6588593461589 61.8607 0.1144 4927 +4929 2 -439.2486199083679 -264.51413818028686 61.861 0.1144 4928 +4930 2 -439.2242842985645 -263.37111732391736 61.8612 0.1144 4929 +4931 2 -439.19924336004624 -262.22724646083975 61.8618 0.1144 4930 +4932 2 -439.1732815562535 -261.0841514889569 61.8626 0.1144 4931 +4933 2 -439.14824061773527 -259.9402806258792 61.8638 0.1144 4932 +4934 2 -438.97496170235513 -258.80981730604753 61.8652 0.1144 4933 +4935 2 -438.73710024441294 -257.69060321713266 61.8674 0.1144 4934 +4936 2 -438.49428579290344 -256.5729343967131 61.8702 0.1144 4935 +4937 2 -438.25239220666845 -255.4544896850986 61.8744 0.1144 4936 +4938 2 -438.00957775515894 -254.336820864679 61.8803 0.1144 4937 +4939 2 -437.76768416892395 -253.21837615306453 61.8884 0.1144 4938 +4940 2 -437.52486971741445 -252.1007073326449 61.8996 0.1144 4939 +4941 2 -437.1752919446993 -251.01201856131325 61.9158 0.1144 4940 +4942 2 -436.5965352825816 -250.02707773768262 61.9385 0.1144 4941 +4943 2 -436.0040486394434 -249.04790645659702 61.9696 0.1144 4942 +4944 2 -435.8615995121539 -247.91750768353754 62.0071 0.1144 4943 +4945 2 -436.0063815633379 -246.7853061035815 62.0679 0.1144 4944 +4946 2 -436.39199940302933 -245.72318820913102 62.1866 0.1144 4945 +4947 2 -436.60139399545835 -244.5991829401659 62.2807 0.1144 4946 +4948 2 -436.81170945316194 -243.47440178000588 62.4224 0.1144 4947 +4949 2 -452.51565961656365 -271.205986466161 50.1959 0.1144 4805 +4950 2 -453.2623112170626 -271.9751864970193 49.9411 0.1144 4949 +4951 2 -453.80709307425474 -272.97617825926034 49.854 0.1144 4950 +4952 2 -454.18660671362215 -274.0528381533468 49.7876 0.1144 4951 +4953 2 -454.4819879522231 -275.1568284177433 49.74 0.1144 4952 +4954 2 -454.81132711884135 -276.2528287431681 49.7101 0.1144 4953 +4955 2 -455.2718755159178 -277.2956463849206 49.6955 0.1144 4954 +4956 2 -455.9762137851814 -278.1796629302696 49.6947 0.1144 4955 +4957 2 -456.909239591405 -278.823105037161 49.6933 0.1144 4956 +4958 2 -458.0040543880434 -279.06001573987743 49.6916 0.1144 4957 +4959 2 -459.1460082065856 -279.1400470857174 49.6891 0.1144 4958 +4960 2 -460.28228603166485 -279.26298802370417 49.6857 0.1144 4959 +4961 2 -461.4169575945101 -279.41010870365886 49.681 0.1144 4960 +4962 2 -462.4368432853196 -279.8717936911582 49.6742 0.1144 4961 +4963 2 -463.37628702028394 -280.52323955908287 49.665 0.1144 4962 +4964 2 -464.31813965041295 -281.1724277237308 49.6518 0.1144 4963 +4965 2 -465.2738233209119 -281.8013508366323 49.6322 0.1144 4964 +4966 2 -466.2431998676816 -282.408452970192 49.6059 0.1144 4965 +4967 2 -467.21271783549764 -283.0155553998379 49.5734 0.1144 4966 +4968 2 -468.17641888699086 -283.6315552158693 49.537 0.1144 4967 +4969 2 -469.09729432667814 -284.26931501750374 49.4318 0.1144 4968 +4970 2 -469.57095196270205 -285.2313376231822 49.3114 0.1144 4969 +4971 2 -469.7967202927131 -286.35130421248925 49.2288 0.1144 4970 +4972 2 -469.87042013808195 -287.4904686136152 49.1924 0.1144 4971 +4973 2 -469.4880045538306 -288.5429058283323 49.203 0.1144 4972 +4974 2 -469.08045786546745 -289.60907903977795 49.259 0.1144 4973 +4975 2 -468.5492882686498 -290.61743481003793 49.3562 0.1144 4974 +4976 2 -467.8381102320933 -291.4467274304799 49.576 0.1144 4975 +4977 2 -467.04303340671146 -292.1917692157114 49.8982 0.1144 4976 +4978 2 -466.2469777771634 -292.9990344847926 50.1805 0.1144 4977 +4979 2 -465.5574783025295 -293.91004350476965 50.3972 0.1144 4978 +4980 2 -465.0392317064958 -294.92655807707024 50.5529 0.1144 4979 +4981 2 -464.320737862526 -295.80519154227494 50.6783 0.1144 4980 +4982 2 -463.3447115982753 -296.38156270003077 50.75 0.1144 4981 +4983 2 -462.2575885253806 -296.7263354141194 50.7844 0.1144 4982 +4984 2 -461.13753449668513 -296.9600938852026 50.8066 0.1144 4983 +4985 2 -460.049628426529 -297.3073398391275 50.8211 0.1144 4984 +4986 2 -459.042991665881 -297.84645301102387 50.8292 0.1144 4985 +4987 2 -458.09201487996137 -298.4818494484092 50.8315 0.1144 4986 +4988 2 -457.1651497362043 -299.15137898867476 50.8329 0.1144 4987 +4989 2 -456.23588576421025 -299.81835791664315 50.8354 0.1144 4988 +4990 2 -455.3034464806123 -300.4821482091327 50.839 0.1144 4989 +4991 2 -454.4847871705472 -301.2780524207333 50.8446 0.1144 4990 +4992 2 -453.7426946652723 -302.14772691364135 50.85 0.1144 4991 +4993 2 -453.1259219189071 -303.1090928893973 50.8536 0.1144 4992 +4994 2 -452.75808937723133 -304.18737008997437 50.8729 0.1144 4993 +4995 2 -452.9118758751126 -305.3064788662197 50.9121 0.1144 4994 +4996 2 -453.0493651988543 -306.4416755918391 50.9359 0.1144 4995 +4997 2 -452.60479038143916 -307.4624456353456 50.8654 0.1144 4996 +4998 2 -452.6355673107862 -308.60229799009164 50.8063 0.1144 4997 +4999 2 -452.67927760393104 -309.7453594102582 50.7637 0.1144 4998 +5000 2 -452.72220815676155 -310.889338438752 50.7382 0.1144 4999 +5001 2 -452.7659184499064 -312.0323998589186 50.7349 0.1144 5000 +5002 2 -452.8096284469651 -313.17560270013144 50.7556 0.1144 5001 +5003 2 -453.01191229679523 -314.2996213494865 50.8169 0.1144 5002 +5004 2 -453.38987711463403 -315.373025302561 50.9169 0.1144 5003 +5005 2 -453.77674968187216 -316.44729643533833 51.0166 0.1144 5004 +5006 2 -454.40570124668056 -317.4031387754368 51.175 0.1144 5005 +5007 2 -463.473214143479 -257.0248891475585 41.2776 0.1144 4786 +5008 2 -463.77693766352337 -257.99454629489037 42.2929 0.1144 5007 +5009 2 -464.0993302421082 -258.9635354203574 42.7865 0.1144 5008 +5010 2 -464.6967330701502 -259.9249685751048 43.1922 0.1144 5009 +5011 2 -464.6976247635698 -261.0526668081808 43.4946 0.1144 5010 +5012 2 -464.86510719256887 -262.1822694622042 43.7007 0.1144 5011 +5013 2 -465.33938172154626 -263.22115603501334 43.82 0.1144 5012 +5014 2 -465.0604420242465 -264.3287522092891 43.8642 0.1144 5013 +5015 2 -470.26152458613376 -247.46697601475867 34.8664 0.1144 4687 +5016 2 -469.11929353700634 -247.48558570066118 34.9527 0.1144 5015 +5017 2 -468.115184199953 -247.99960181834842 34.9894 0.1144 5016 +5018 2 -467.12382574366757 -248.57021329838662 35.0372 0.1144 5017 +5019 2 -466.0358591779591 -248.9125800781717 35.0963 0.1144 5018 +5020 2 -464.91098602900445 -248.77997563344604 35.1646 0.1144 5019 +5021 2 -463.94099728427284 -248.3977326673971 35.3906 0.1144 5020 +5022 2 -462.8060505493164 -248.44959169565482 35.5701 0.1144 5021 +5023 2 -461.7784267333992 -248.94821433148257 35.6978 0.1144 5022 +5024 2 -460.9282259947345 -249.71244476399218 35.7832 0.1144 5023 +5025 2 -459.9441959694505 -250.29523385048884 35.8364 0.1144 5024 +5026 2 -459.233993480113 -251.06385861859022 35.7067 0.1144 5025 +5027 2 -459.5872545916828 -252.31837200514795 35.6048 0.1144 5026 +5028 2 -460.052817676352 -253.26262924456591 35.8089 0.1144 5027 +5029 2 -460.05698929375853 -254.3773235513641 36.0654 0.1144 5028 +5030 2 -458.99668501089 -254.6452897390273 36.3499 0.1144 5029 +5031 2 -457.8630739154627 -254.80222786162372 36.6668 0.1144 5030 +5032 2 -458.0324357535055 -254.66264570726747 37.1428 0.1144 5031 +5033 2 -458.944294451549 -254.16950827733302 37.6855 0.1144 5032 +5034 2 -459.35903771860865 -253.14471597036115 38.1962 0.1144 5033 +5035 2 -459.7663066782002 -252.2111957003331 38.7699 0.1144 5034 +5036 2 -460.3100814814194 -251.3290144471975 39.4274 0.1144 5035 +5037 2 -460.83192347873296 -250.52032654087034 40.2074 0.1144 5036 +5038 2 -461.1084438613393 -249.8252523016676 40.9951 0.1144 5037 +5039 2 -460.93489352898166 -248.8582011488641 41.7466 0.1144 5038 +5040 2 -460.9769043216422 -247.7395730143618 42.394 0.1144 5039 +5041 2 -461.2654125760251 -246.7225067396516 42.9965 0.1144 5040 +5042 2 -461.41006632793744 -245.61781140515546 43.5252 0.1144 5041 +5043 2 -461.43586462708595 -244.47482480078904 43.9272 0.1144 5042 +5044 2 -461.2756602004638 -243.34771226351037 44.2854 0.1144 5043 +5045 2 -461.05879310595776 -242.2317241169244 44.6323 0.1144 5044 +5046 2 -460.9130507308065 -241.12069321722566 45.015 0.1144 5045 +5047 2 -461.4456337247705 -240.99085179648333 44.989 0.1144 5046 +5048 2 -462.02660887104355 -240.1393662185591 45.4157 0.1144 5047 +5049 2 -462.7281372229227 -239.2582930652343 45.57 0.1144 5048 +5050 2 -463.18404515760966 -238.29581247577318 45.8758 0.1144 5049 +5051 2 -463.29392798556034 -237.1821347781777 46.2132 0.1144 5050 +5052 2 -463.3359760850708 -236.0456875918432 46.578 0.1144 5051 +5053 2 -463.0743869662652 -235.01290317439563 47.0476 0.1144 5052 +5054 2 -462.59355614234755 -233.99832740158678 47.5149 0.1144 5053 +5055 2 -461.9419298363554 -233.06506505511655 47.938 0.1144 5054 +5056 2 -461.70231714209956 -231.97172746463895 48.337 0.1144 5055 +5057 2 -462.08396334905046 -230.91525812162897 48.7351 0.1144 5056 +5058 2 -462.3200678658029 -229.80021833885476 49.1033 0.1144 5057 +5059 2 -462.3070459397024 -228.65722116937417 49.425 0.1144 5058 +5060 2 -461.7897938127585 -227.6789145113308 49.8285 0.1144 5059 +5061 2 -461.2652533204239 -226.70306747316272 50.309 0.1144 5060 +5062 2 -460.8434878417466 -225.67807944835656 50.8508 0.1144 5061 +5063 2 -460.5472530434039 -224.57649156523016 51.3663 0.1144 5062 +5064 2 -460.16371053269097 -223.49904541693505 51.8333 0.1144 5063 +5065 2 -460.5628752591567 -223.32918517689768 52.446 0.1144 5064 +5066 2 -460.33534580896065 -223.05039097090793 53.1896 0.1144 5065 +5067 2 -459.2299489008833 -222.86931967110294 53.8516 0.1144 5066 +5068 2 -458.10747182140483 -222.7068095605084 54.4202 0.1144 5067 +5069 2 -456.98587929672374 -222.49331879120083 54.8811 0.1144 5068 +5070 2 -455.87009056659076 -222.24342409396178 55.2222 0.1144 5069 +5071 2 -454.7489551423493 -222.21689372436282 55.5167 0.1144 5070 +5072 2 -453.6348507846687 -222.31079862411224 55.8046 0.1144 5071 +5073 2 -452.5082942031197 -222.1716852582241 56.0423 0.1144 5072 +5074 2 -451.41689789876773 -221.85558557956733 56.2531 0.1144 5073 +5075 2 -450.3043787296076 -221.59763669267045 56.4164 0.1144 5074 +5076 2 -449.1680335989955 -221.47306926460826 56.5152 0.1144 5075 +5077 2 -448.08645634057615 -221.12785728035797 56.523 0.1144 5076 +5078 2 -447.07797908102503 -220.62094124493552 56.4533 0.1144 5077 +5079 2 -446.1028055496878 -220.04699035524274 56.3536 0.1144 5078 +5080 2 -445.4333296949941 -219.12825706969022 56.3032 0.1144 5079 +5081 2 -445.1646115051252 -218.02184774921534 56.3114 0.1144 5080 +5082 2 -445.14896365274103 -216.98476990994013 56.5365 0.1144 5081 +5083 2 -445.0566411262365 -215.8916699826234 56.8669 0.1144 5082 +5084 2 -444.82924660223625 -214.77162927780302 57.1446 0.1144 5083 +5085 2 -444.7110679132503 -213.6332909943962 57.358 0.1144 5084 +5086 2 -444.71112758197444 -212.49025050235767 57.5016 0.1144 5085 +5087 2 -444.77977468163135 -211.34820213836045 57.5809 0.1144 5086 +5088 2 -444.8492720840826 -210.20530702460218 57.6036 0.1144 5087 +5089 2 -444.8986153589643 -209.06314753432778 57.6041 0.1144 5088 +5090 2 -444.965706827112 -207.9210959133833 57.6041 0.1144 5089 +5091 2 -445.15905679272487 -206.79387506510315 57.6041 0.1144 5090 +5092 2 -445.52209463878796 -205.7090824294691 57.6041 0.1144 5091 +5093 2 -446.0475522277518 -204.69329006279153 57.6041 0.1144 5092 +5094 2 -446.5747065731849 -203.67764267019365 57.6041 0.1144 5093 +5095 2 -447.0404040533079 -202.63259232355617 57.6041 0.1144 5094 +5096 2 -447.4649126807283 -201.57055585278613 57.6041 0.1144 5095 +5097 2 -448.02836989474343 -200.57520776393767 57.6041 0.1144 5096 +5098 2 -448.65567007060287 -199.61789434641616 57.6041 0.1144 5097 +5099 2 -449.282119943668 -198.66142767865574 57.6041 0.1144 5098 +5100 2 -449.9094906820075 -197.7041851197004 57.6041 0.1144 5099 +5101 2 -459.43594270476234 -222.96436204461824 51.175 0.1144 5064 +5102 2 -458.4803263397963 -222.3370654217921 50.7674 0.1144 5101 +5103 2 -457.4712396410441 -222.08746483204655 50.5599 0.1144 5102 +5104 2 -456.8615685802346 -222.76402244054077 50.1892 0.1144 5103 +5105 2 -457.00481758169394 -223.88388697412552 49.9534 0.1144 5104 +5106 2 -457.1642422680018 -225.01191711973135 49.8448 0.1144 5105 +5107 2 -457.324517257104 -226.13910051557622 49.8434 0.1144 5106 +5108 2 -457.48471813069284 -227.2679101054103 49.9293 0.1144 5107 +5109 2 -457.6449225573149 -228.3950226426889 50.0828 0.1144 5108 +5110 2 -457.8059737336981 -229.52298548276195 50.267 0.1144 5109 +5111 2 -457.8755673352608 -230.66454545517755 50.4098 0.1144 5110 +5112 2 -457.9015291390535 -231.80764042706036 50.5044 0.1144 5111 +5113 2 -457.92586119582364 -232.95235833598525 50.561 0.1144 5112 +5114 2 -457.9501259470609 -234.0954497548348 50.5893 0.1144 5113 +5115 2 -457.97516688557914 -235.2393206179125 50.5985 0.1144 5114 +5116 2 -458.00034924514375 -236.38319177707626 50.5966 0.1144 5115 +5117 2 -458.02461399638094 -237.52628319592577 50.5901 0.1144 5116 +5118 2 -458.0480993033901 -238.6701508020563 50.5814 0.1144 5117 +5119 2 -458.0732816629545 -239.8140219612201 50.5691 0.1144 5118 +5120 2 -458.0975431572447 -240.95866901157882 50.5509 0.1144 5119 +5121 2 -458.12180790848186 -242.10176043042827 50.5266 0.1144 5120 +5122 2 -458.14691940948023 -243.2457021520722 50.4941 0.1144 5121 +5123 2 -458.1712550192837 -244.3887230084416 50.456 0.1144 5122 +5124 2 -457.4187565738057 -245.23009138172006 50.3695 0.1144 5123 +5125 2 -456.5686367606349 -245.98944293617583 50.2589 0.1144 5124 +5126 2 -455.6362007339842 -246.6516775971562 50.1724 0.1144 5125 +5127 2 -454.7561588762225 -247.38268217209912 50.0503 0.1144 5126 +5128 2 -460.7573702640623 -240.9399839416632 45.3849 0.1144 5046 +5129 2 -460.1459738443758 -240.07645599307406 45.8542 0.1144 5128 +5130 2 -459.5275464521144 -239.1262218427192 46.2764 0.1144 5129 +5131 2 -458.6772632233699 -238.3762503226494 46.6463 0.1144 5130 +5132 2 -458.2313419856995 -237.33820093085995 46.9574 0.1144 5131 +5133 2 -458.08158080613043 -236.22157546137873 47.2298 0.1144 5132 +5134 2 -457.86147464752094 -235.09907513668296 47.3908 0.1144 5133 +5135 2 -457.7942866841757 -233.95681309249977 47.4516 0.1144 5134 +5136 2 -457.55798115382873 -232.83746083948577 47.4432 0.1144 5135 +5137 2 -457.55075703912394 -232.80923209231676 47.8008 0.1144 5136 +5138 2 -457.2618879786328 -231.7020027638166 47.9282 0.1144 5137 +5139 2 -456.9082075151448 -230.61401251121924 47.9674 0.1144 5138 +5140 2 -456.40310269989027 -229.60907330131312 48.0808 0.1144 5139 +5141 2 -455.8421887764936 -228.6128561008294 48.183 0.1144 5140 +5142 2 -455.4367073501811 -227.5442735851032 48.2616 0.1144 5141 +5143 2 -455.22310981664793 -226.42023124885932 48.3633 0.1144 5142 +5144 2 -456.7596786447333 -233.1643120043483 47.3371 0.1144 5136 +5145 2 -455.64064072705423 -233.31802793974956 47.1839 0.1144 5144 +5146 2 -454.5164391529978 -233.20239550100902 46.9636 0.1144 5145 +5147 2 -453.4589838997548 -232.88636688301875 46.6441 0.1144 5146 +5148 2 -452.3349002619562 -232.7481779354384 46.3358 0.1144 5147 +5149 2 -451.28745384584255 -232.31238612118437 46.058 0.1144 5148 +5150 2 -450.2392047967984 -231.85467226823914 45.8074 0.1144 5149 +5151 2 -449.2321402531509 -231.44979492270338 45.4616 0.1144 5150 +5152 2 -448.3812983099159 -230.96668491697787 44.9686 0.1144 5151 +5153 2 -447.99197924457707 -229.91263196035578 44.5645 0.1144 5152 +5154 2 -447.87464760143826 -228.77500255869714 44.2621 0.1144 5153 +5155 2 -447.7613480865923 -227.63660377973795 44.0524 0.1144 5154 +5156 2 -447.8794134034724 -226.49868939765557 43.927 0.1144 5155 +5157 2 -448.1495935823996 -225.38697365569863 43.8768 0.1144 5156 +5158 2 -448.3880399848699 -224.26790825852603 43.8738 0.1144 5157 +5159 2 -448.47301781038277 -223.12752043450692 43.8777 0.1144 5158 +5160 2 -448.5546723893508 -221.98705494194098 43.883 0.1144 5159 +5161 2 -448.6330775412015 -220.84502700788542 43.8903 0.1144 5160 +5162 2 -448.3554548588803 -219.73619487619874 43.9006 0.1144 5161 +5163 2 -448.07635066056343 -218.62573329357562 43.9149 0.1144 5162 +5164 2 -448.08355372059873 -217.4819299381311 43.9354 0.1144 5163 +5165 2 -448.13692912377326 -216.33900107055626 43.9648 0.1144 5164 +5166 2 -448.0891867023356 -215.1967090276901 44.0051 0.1144 5165 +5167 2 -448.27286462139693 -215.1429290867334 43.6962 0.1144 5166 +5168 2 -449.30658046923315 -214.84174385148404 42.882 0.1144 5167 +5169 2 -450.3401548960231 -214.54055832014853 42.5186 0.1144 5168 +5170 2 -451.37380018137924 -214.23930222633285 42.1257 0.1144 5169 +5171 2 -452.4075908450156 -213.86860839879023 41.776 0.1144 5170 +5172 2 -453.1292421273082 -213.06924838805324 41.7245 0.1144 5171 +5173 2 -453.8314347459186 -212.24241183445324 41.939 0.1144 5172 +5174 2 -454.53369822309526 -211.41550471837323 42.3553 0.1144 5173 +5175 2 -455.2360322627519 -210.58866846085934 42.8912 0.1144 5174 +5176 2 -455.80912959270313 -209.6158973107923 43.405 0.1144 5175 +5177 2 -455.9538375283738 -208.4853219248255 43.8292 0.1144 5176 +5178 2 -456.0986163226106 -207.35467597637862 44.4268 0.1144 5177 +5179 2 -447.56842523626904 -214.67872254576213 44.0569 0.1144 5166 +5180 2 -446.7896011960696 -213.8415020464864 44.1188 0.1144 5179 +5181 2 -446.91554121790966 -213.19787287460335 44.2719 0.1144 5180 +5182 2 -447.34404496285913 -212.1527446573188 44.4287 0.1144 5181 +5183 2 -447.8063505984456 -211.17415539245587 44.6023 0.1144 5182 +5184 2 -447.7788331631437 -210.0310571636258 44.725 0.1144 5183 +5185 2 -447.73108748475886 -208.89032075226885 44.7978 0.1144 5184 +5186 2 -447.5036120352646 -207.77515892550227 44.8204 0.1144 5185 +5187 2 -446.9516290499697 -206.80250713069339 44.7922 0.1144 5186 +5188 2 -446.09002207059444 -206.05732023930855 44.7283 0.1144 5187 +5189 2 -445.1034574830935 -205.48652748822525 44.6345 0.1144 5188 +5190 2 -444.08768504817124 -204.98532375674284 44.4892 0.1144 5189 +5191 2 -443.1035795823592 -204.45583128072542 44.2512 0.1144 5190 +5192 2 -442.09504813904994 -203.9747952967737 43.9516 0.1144 5191 +5193 2 -441.01974333710535 -203.67329573970105 43.6671 0.1144 5192 +5194 2 -439.91613547037804 -203.41451697995143 43.4364 0.1144 5193 +5195 2 -438.8783530591897 -202.95611793214695 43.2328 0.1144 5194 +5196 2 -437.97543859056736 -202.28438382377337 43.0825 0.1144 5195 +5197 2 -437.1600550832426 -201.48187651166788 43.0108 0.1144 5196 +5198 2 -436.1774205683122 -200.9928337118359 42.9982 0.1144 5197 +5199 2 -435.13746276087056 -201.23574015213998 43.0441 0.1144 5198 +5200 2 -434.38587205889235 -202.04882609267761 43.1623 0.1144 5199 +5201 2 -434.2590882856232 -203.1292343140623 43.3073 0.1144 5200 +5202 2 -434.6264583684348 -204.19695921882703 43.4482 0.1144 5201 +5203 2 -435.3186563380898 -205.0704851433453 43.6391 0.1144 5202 +5204 2 -436.00931535104365 -205.96981729990685 43.829 0.1144 5203 +5205 2 -436.49251805936217 -206.9998130002249 43.9958 0.1144 5204 +5206 2 -436.9053248618291 -208.04825826528977 44.2148 0.1144 5205 +5207 2 -437.2201485874907 -209.11990367388375 44.3811 0.1144 5206 +5208 2 -437.84270946348056 -210.05473151669054 44.5488 0.1144 5207 +5209 2 -438.5510461072203 -210.95410068401586 44.7429 0.1144 5208 +5210 2 -439.2466966190646 -211.73217421227062 45.1175 0.1144 5209 +5211 2 -439.9327614948171 -212.46164932922716 45.6672 0.1144 5210 +5212 2 -440.72155025531544 -213.2001783681359 46.2554 0.1144 5211 +5213 2 -441.6213065853282 -213.86052142034583 46.807 0.1144 5212 +5214 2 -442.3369718621698 -214.7381977055007 47.2318 0.1144 5213 +5215 2 -442.83236579690777 -215.75435960668815 47.5479 0.1144 5214 +5216 2 -442.6432168226564 -216.83393014886664 47.6375 0.1144 5215 +5217 2 -442.0143141396966 -217.77985576717177 47.6118 0.1144 5216 +5218 2 -441.2384121395316 -218.62039732244435 47.5222 0.1144 5217 +5219 2 -440.410858700028 -219.40892898621306 47.3962 0.1144 5218 +5220 2 -439.6933073497475 -220.17513420004974 47.1005 0.1144 5219 +5221 2 -439.49850281197484 -221.28785628218128 46.8157 0.1144 5220 +5222 2 -439.6393189352945 -222.421433623792 46.566 0.1144 5221 +5223 2 -439.96462597362 -223.51820332651724 46.342 0.1144 5222 +5224 2 -440.50288884272186 -224.5256868369263 46.1446 0.1144 5223 +5225 2 -441.3303927179 -225.3144309123812 45.9749 0.1144 5224 +5226 2 -442.0491381171187 -225.86924798232593 44.989 0.1144 5225 +5227 2 -447.4487786512484 -213.53224944328963 45.372 0.1144 5180 +5228 2 -448.3696304605617 -213.77600843345078 46.5679 0.1144 5227 +5229 2 -449.1763705293979 -214.41763050393635 47.1103 0.1144 5228 +5230 2 -450.0025970000248 -215.03970647135134 47.7599 0.1144 5229 +5231 2 -450.94135574223026 -215.64681521279135 48.3358 0.1144 5230 +5232 2 -451.9879181017329 -216.0995757760832 48.7967 0.1144 5231 +5233 2 -453.0809032932242 -216.43356862208557 49.1585 0.1144 5232 +5234 2 -454.21396879593567 -216.57099855537936 49.4455 0.1144 5233 +5235 2 -455.2973210340724 -216.47370586231312 49.7893 0.1144 5234 +5236 2 -456.35778481336865 -216.09578466311845 50.1276 0.1144 5235 +5237 2 -457.46285262419184 -216.06253073880134 50.5126 0.1144 5236 +5238 2 -458.46032404052426 -215.6455866974724 50.9558 0.1144 5237 +5239 2 -459.5715784852364 -215.39307143237417 51.7373 0.1144 5238 +5240 2 -457.6708474885245 -255.46035539545485 35.9912 0.1144 5031 +5241 2 -458.04234800021754 -256.4803591355518 35.3702 0.1144 5240 +5242 2 -458.54180100708436 -257.4828823442266 35.0882 0.1144 5241 +5243 2 -458.8210534364281 -258.59009153887126 34.839 0.1144 5242 +5244 2 -459.1100581043579 -259.63255002817175 34.498 0.1144 5243 +5245 2 -459.4653042662828 -260.71573522214265 34.2034 0.1144 5244 +5246 2 -459.2355630528414 -261.49335623191956 33.6501 0.1144 5245 +5247 2 -458.87024827203334 -262.4836037166035 32.6385 0.1144 5246 +5248 2 -458.3521367852518 -263.4693593593797 32.2123 0.1144 5247 +5249 2 -457.681208566756 -264.3926402351841 31.8116 0.1144 5248 +5250 2 -456.8270671904066 -265.11394094169145 31.3729 0.1144 5249 +5251 2 -456.0176949160483 -265.72955197270056 30.8207 0.1144 5250 +5252 2 -455.8775276906225 -266.58266755626266 30.2355 0.1144 5251 +5253 2 -456.81771593656924 -266.5069954862271 29.7651 0.1144 5252 +5254 2 -457.1022431915707 -265.43250368022706 29.465 0.1144 5253 +5255 2 -457.1790521481151 -264.30984717256564 29.3286 0.1144 5254 +5256 2 -457.5242540654377 -263.23307822972004 29.3751 0.1144 5255 +5257 2 -457.91721069914433 -262.178188205108 29.5739 0.1144 5256 +5258 2 -458.26968380886325 -261.10716206307177 29.8505 0.1144 5257 +5259 2 -458.50182350285576 -259.9945181476734 30.1185 0.1144 5258 +5260 2 -458.5995897180867 -258.8590361455441 30.3425 0.1144 5259 +5261 2 -458.48144132386983 -257.7400019829986 30.546 0.1144 5260 +5262 2 -458.1609393441709 -256.6447979787103 30.7068 0.1144 5261 +5263 2 -457.8849428558391 -255.53603996253707 30.809 0.1144 5262 +5264 2 -457.60498509778057 -254.42798076118413 30.8697 0.1144 5263 +5265 2 -457.3533198393907 -253.31602098775724 30.9047 0.1144 5264 +5266 2 -457.3896891866774 -252.1900271154036 30.9215 0.1144 5265 +5267 2 -457.6403633281447 -251.0734621979897 30.9246 0.1144 5266 +5268 2 -457.66292887498366 -249.95472264112408 30.9224 0.1144 5267 +5269 2 -457.446854844667 -248.83145293912784 30.9193 0.1144 5268 +5270 2 -457.5324568713002 -247.7306644884997 30.9151 0.1144 5269 +5271 2 -458.4081553202812 -247.11533374292267 30.9095 0.1144 5270 +5272 2 -459.21072943973314 -246.33558863534842 30.9008 0.1144 5271 +5273 2 -459.55513148288594 -245.26935393197766 30.8882 0.1144 5272 +5274 2 -459.08960590716697 -244.27340715209857 30.872 0.1144 5273 +5275 2 -458.53924310015327 -243.26992882614624 30.8529 0.1144 5274 +5276 2 -458.3773247440674 -242.15087373547266 30.8333 0.1144 5275 +5277 2 -458.5608624737283 -241.0495125087215 30.7474 0.1144 5276 +5278 2 -458.7694740688959 -239.9279804795927 30.6827 0.1144 5277 +5279 2 -458.9466382827325 -238.79740233486515 30.6544 0.1144 5278 +5280 2 -459.2602783415139 -237.69871766512247 30.6634 0.1144 5279 +5281 2 -459.6281918086836 -236.61556158649154 30.7098 0.1144 5280 +5282 2 -459.9088016147028 -235.52083828046125 30.8683 0.1144 5281 +5283 2 -460.1724058630207 -234.409038059977 31.0688 0.1144 5282 +5284 2 -460.41339606780747 -233.29082651863217 31.267 0.1144 5283 +5285 2 -460.9210378618863 -232.27344121359553 31.4894 0.1144 5284 +5286 2 -461.5240978002255 -231.30964235970004 31.7313 0.1144 5285 +5287 2 -461.7074099399106 -232.24114640126083 32.6169 0.1144 5286 +5288 2 -458.91449188260844 -261.48059246894815 33.9931 0.1144 5245 +5289 2 -458.1135369450649 -262.2975348647292 33.8607 0.1144 5288 +5290 2 -457.3085667561369 -263.1071856381724 33.7848 0.1144 5289 +5291 2 -456.8009624710083 -264.072881402748 33.7459 0.1144 5290 +5292 2 -457.18613472874375 -265.1487046140011 33.7389 0.1144 5291 +5293 2 -457.37392632631975 -266.2710665724975 33.7378 0.1144 5292 +5294 2 -457.2284353933876 -267.4041151983007 33.7361 0.1144 5293 +5295 2 -456.92030572194744 -268.5052155731886 33.7341 0.1144 5294 +5296 2 -456.6380424820169 -269.6128754999638 33.731 0.1144 5295 +5297 2 -456.47799199129776 -270.74264094483306 33.7268 0.1144 5296 +5298 2 -456.57665783284324 -271.87938273684745 33.7207 0.1144 5297 +5299 2 -456.8259844624625 -272.99381249316355 33.7123 0.1144 5298 +5300 2 -456.9189884286926 -274.13294659952044 33.7008 0.1144 5299 +5301 2 -456.91985317827624 -275.2735141478086 33.6846 0.1144 5300 +5302 2 -456.7241678408398 -276.40164934746883 33.6619 0.1144 5301 +5303 2 -456.51314705442155 -277.52558050092057 33.6297 0.1144 5302 +5304 2 -456.3328042720336 -278.6545256416784 33.5838 0.1144 5303 +5305 2 -456.21311601811146 -279.7908102767382 33.5216 0.1144 5304 +5306 2 -455.97855706594044 -280.91066163203334 33.4407 0.1144 5305 +5307 2 -455.7651439651796 -282.0289309101697 33.3259 0.1144 5306 +5308 2 -455.572694933086 -283.1311220097737 33.1178 0.1144 5307 +5309 2 -455.26792936807385 -284.2127839488207 32.8602 0.1144 5308 +5310 2 -455.1280466248853 -285.33530840207686 32.622 0.1144 5309 +5311 2 -455.1896197906067 -286.45747681424285 32.3624 0.1144 5310 +5312 2 -455.05296604459386 -287.5913217611825 32.1552 0.1144 5311 +5313 2 -454.75615005685677 -288.6924458229592 32.0001 0.1144 5312 +5314 2 -454.3656565960588 -289.7529271604065 31.8685 0.1144 5313 +5315 2 -454.18535112052086 -290.8640532493321 31.7078 0.1144 5314 +5316 2 -453.9565886547309 -291.98476527043556 31.5829 0.1144 5315 +5317 2 -453.71962732128964 -293.10376306598914 31.4852 0.1144 5316 +5318 2 -453.4584426272365 -294.2082144255303 31.3978 0.1144 5317 +5319 2 -452.75583998587797 -294.82560463306197 31.3146 0.1144 5318 +5320 2 -451.68956166386306 -294.4682624161308 31.2312 0.1144 5319 +5321 2 -450.67063153200274 -294.3269702139859 31.1276 0.1144 5320 +5322 2 -449.69140676744564 -294.87745451029065 30.9747 0.1144 5321 +5323 2 -449.2665484107291 -295.76879429776125 30.7432 0.1144 5322 +5324 2 -449.37503655515445 -296.8748681526729 30.4828 0.1144 5323 +5325 2 -449.4479133376511 -298.0018685673014 30.2484 0.1144 5324 +5326 2 -449.56604485495967 -299.12896372948535 30.0804 0.1144 5325 +5327 2 -449.8210301029471 -300.2425568029681 30.0152 0.1144 5326 +5328 2 -449.8308640938554 -301.32084688574867 30.1249 0.1144 5327 +5329 2 -449.1001790799809 -301.8079996549077 30.5054 0.1144 5328 +5330 2 -448.24529527016705 -302.51239891791 30.8636 0.1144 5329 +5331 2 -447.4588830135024 -303.3406854942635 31.1385 0.1144 5330 +5332 2 -447.1840091983119 -304.4313902919621 31.3222 0.1144 5331 +5333 2 -447.16139627769525 -305.57275721623364 31.4107 0.1144 5332 +5334 2 -447.36205393353606 -306.69670175007525 31.407 0.1144 5333 +5335 2 -447.69061691287345 -307.79192263127186 31.3298 0.1144 5334 +5336 2 -448.00870644437435 -308.8910813913923 31.2194 0.1144 5335 +5337 2 -448.49190234271225 -309.924329775775 31.0646 0.1144 5336 +5338 2 -447.8921023966046 -310.8508708459113 30.7908 0.1144 5337 +5339 2 -447.1986078044417 -311.74497161240276 30.4508 0.1144 5338 +5340 2 -446.38713905736495 -312.55135608182024 30.1059 0.1144 5339 +5341 2 -445.52816212551954 -313.2856574576582 29.7049 0.1144 5340 +5342 2 -444.6491023288715 -313.95288291724216 29.2306 0.1144 5341 +5343 2 -443.77082227253766 -314.61919076849887 28.7224 0.1144 5342 +5344 2 -442.8925386631706 -315.28719567231104 28.2128 0.1144 5343 +5345 2 -442.01347916260863 -315.9542797108487 27.1079 0.1144 5344 +5346 2 -458.7441746060299 -251.23508469893994 35.6199 0.1144 5026 +5347 2 -457.89980836088296 -251.91447434712157 35.8747 0.1144 5346 +5348 2 -457.3404810775628 -252.89611318097735 35.9654 0.1144 5347 +5349 2 -456.7349410894067 -253.86238172167594 36.0528 0.1144 5348 +5350 2 -455.95178151680636 -254.69067510800997 36.1402 0.1144 5349 +5351 2 -455.07258966575307 -255.42097435423813 36.2295 0.1144 5350 +5352 2 -454.18845844109353 -256.1463135008323 36.3222 0.1144 5351 +5353 2 -453.3303859958007 -256.8538880754387 36.4994 0.1144 5352 +5354 2 -452.5666817359498 -257.67748456856225 36.7326 0.1144 5353 +5355 2 -451.89815619481044 -258.601477583062 36.9438 0.1144 5354 +5356 2 -451.21592465562554 -259.5197850353574 37.123 0.1144 5355 +5357 2 -450.5733023546592 -260.46653045958755 37.2733 0.1144 5356 +5358 2 -450.07518619930624 -261.4936230921073 37.3979 0.1144 5357 +5359 2 -449.7065844824303 -262.53399767576275 37.5931 0.1144 5358 +5360 2 -449.07934204336243 -263.46373398925823 37.8087 0.1144 5359 +5361 2 -448.2848856639675 -264.283942689065 37.984 0.1144 5360 +5362 2 -447.50813691404153 -265.12363394154323 38.117 0.1144 5361 +5363 2 -446.8049382513426 -266.0257047152513 38.2108 0.1144 5362 +5364 2 -445.9031195310697 -266.7219446780267 38.2712 0.1144 5363 +5365 2 -445.01179448647446 -267.43835919831315 38.3043 0.1144 5364 +5366 2 -444.1818383696145 -268.2261787233865 38.3317 0.1144 5365 +5367 2 -443.38815462446735 -269.04886391997695 38.3662 0.1144 5366 +5368 2 -442.8085317925313 -270.03123808123047 38.4087 0.1144 5367 +5369 2 -442.2280619147482 -271.01290336073583 38.4916 0.1144 5368 +5370 2 -441.6355225959227 -271.98400745693044 38.6114 0.1144 5369 +5371 2 -441.231225334677 -273.05174310986575 38.7257 0.1144 5370 +5372 2 -440.8358257559029 -274.1251542580775 38.8273 0.1144 5371 +5373 2 -440.5237377755974 -275.22553923732283 38.922 0.1144 5372 +5374 2 -439.9029465209004 -276.18116922225 39.0158 0.1144 5373 +5375 2 -439.52288594414165 -277.25708736411474 39.114 0.1144 5374 +5376 2 -439.4517691576817 -278.396655678295 39.2232 0.1144 5375 +5377 2 -440.4911177654934 -278.81623775779775 39.4293 0.1144 5376 +5378 2 -441.529757491557 -279.2366668831477 39.7034 0.1144 5377 +5379 2 -442.56832665514054 -279.6570251499314 40.0179 0.1144 5378 +5380 2 -443.556643475328 -280.1339175832271 40.3323 0.1144 5379 +5381 2 -444.03662725339836 -281.14778447428785 40.5014 0.1144 5380 +5382 2 -444.36193429172386 -282.2445541770131 40.6204 0.1144 5381 +5383 2 -444.7407426023764 -283.32036406439124 40.7025 0.1144 5382 +5384 2 -445.27574953046656 -284.3293963963289 40.7845 0.1144 5383 +5385 2 -445.81082702103663 -285.3384995868327 40.8778 0.1144 5384 +5386 2 -446.3458339491268 -286.3475319187704 40.992 0.1144 5385 +5387 2 -446.88239650872606 -287.3565675076553 41.1323 0.1144 5386 +5388 2 -447.41747399929625 -288.3656706981592 41.2807 0.1144 5387 +5389 2 -447.9524809273863 -289.3747030300969 41.4324 0.1144 5388 +5390 2 -448.48748785547645 -290.3837353620346 41.5842 0.1144 5389 +5391 2 -449.0224947835666 -291.39276769397225 41.7357 0.1144 5390 +5392 2 -449.55912790564594 -292.4018741414233 41.8869 0.1144 5391 +5393 2 -450.094134833736 -293.410906473361 42.0378 0.1144 5392 +5394 2 -450.6291417618261 -294.41993880529867 42.1887 0.1144 5393 +5395 2 -451.16414868991626 -295.42897113723643 42.3388 0.1144 5394 +5396 2 -451.7000023677674 -296.4388537719685 42.4883 0.1144 5395 +5397 2 -452.2357887400857 -297.4471099166252 42.637 0.1144 5396 +5398 2 -452.77079566817577 -298.45614224856286 42.7843 0.1144 5397 +5399 2 -453.30587315874595 -299.4652454390667 42.9296 0.1144 5398 +5400 2 -453.84165627411704 -300.4750572152326 43.0724 0.1144 5399 +5401 2 -454.3767337646873 -301.4841604057365 43.2116 0.1144 5400 +5402 2 -454.9117406927773 -302.4931927376741 43.3454 0.1144 5401 +5403 2 -455.4475979236619 -303.5013783198508 43.472 0.1144 5402 +5404 2 -455.9834516015129 -304.51126095458284 43.5898 0.1144 5403 +5405 2 -456.5184585296031 -305.52029328652054 43.6974 0.1144 5404 +5406 2 -456.7060950861717 -306.64916031706 43.7718 0.1144 5405 +5407 2 -456.8930968765055 -307.7772481994575 43.8197 0.1144 5406 +5408 2 -457.0815837358685 -308.9052684802359 43.8474 0.1144 5407 +5409 2 -457.26936171348336 -310.0341358068615 43.8642 0.1144 5408 +5410 2 -487.1518807431347 -217.40193893745484 29.9345 0.1144 4652 +5411 2 -488.22703631767956 -217.77471470185617 30.1554 0.1144 5410 +5412 2 -489.34453266548223 -217.98579272687968 30.247 0.1144 5411 +5413 2 -490.40650094737623 -217.66606969322254 30.329 0.1144 5412 +5414 2 -491.37043783882945 -217.05488349467444 30.4024 0.1144 5413 +5415 2 -492.29483655273066 -216.3813182730828 30.4702 0.1144 5414 +5416 2 -493.1748784104923 -215.65031369813988 30.5326 0.1144 5415 +5417 2 -494.08552395467063 -214.9598197931211 30.5892 0.1144 5416 +5418 2 -495.161045548163 -214.75248464913506 30.709 0.1144 5417 +5419 2 -496.18833152491294 -215.15825286126238 30.8952 0.1144 5418 +5420 2 -497.2218826499706 -215.6449980943072 31.0332 0.1144 5419 +5421 2 -498.3559274550349 -215.68619263407606 31.0957 0.1144 5420 +5422 2 -499.49749373924465 -215.64735825812397 31.0892 0.1144 5421 +5423 2 -500.63892215544143 -215.60682653353035 31.0251 0.1144 5422 +5424 2 -501.7804211341182 -215.56636566750288 30.9159 0.1144 5423 +5425 2 -502.9211439255141 -215.5251253572472 30.7835 0.1144 5424 +5426 2 -504.06264645722433 -215.48296743866428 30.6527 0.1144 5425 +5427 2 -505.2041454359012 -215.44250657263686 30.5298 0.1144 5426 +5428 2 -505.1970376216077 -216.50704328359427 30.438 0.1144 5427 +5429 2 -505.10965386179134 -217.64827460042724 30.371 0.1144 5428 +5430 2 -505.0231204047694 -218.78865916749916 30.3212 0.1144 5429 +5431 2 -504.9358780659993 -219.9298907804183 30.2828 0.1144 5430 +5432 2 -504.5194609350867 -220.97737776032906 30.2358 0.1144 5431 +5433 2 -503.97542853695137 -221.98259532373464 30.1762 0.1144 5432 +5434 2 -503.4224278938642 -222.9820665332976 30.1064 0.1144 5433 +5435 2 -502.8815035018 -223.98884624210677 30.0345 0.1144 5434 +5436 2 -503.00227031203326 -225.0730961568156 29.9922 0.1144 5435 +5437 2 -503.2992071821434 -226.17708967815943 29.981 0.1144 5436 +5438 2 -503.59458842074446 -227.28107994255606 29.9922 0.1144 5437 +5439 2 -503.8915958533347 -228.38514432246612 30.0163 0.1144 5438 +5440 2 -504.18860358201107 -229.48906728132985 30.0437 0.1144 5439 +5441 2 -504.4282026563059 -230.58891023993672 29.9908 0.1144 5440 +5442 2 -504.8514627727537 -231.64303425722528 29.9214 0.1144 5441 +5443 2 -504.73587089781023 -232.7478611479403 29.8556 0.1144 5442 +5444 2 -503.8575434676988 -233.436796366603 29.7948 0.1144 5443 +5445 2 -502.8275240804919 -233.93131275862444 29.7382 0.1144 5444 +5446 2 -501.8612553702486 -234.54171625599713 29.685 0.1144 5445 +5447 2 -500.7789000491306 -234.90587372035483 29.6344 0.1144 5446 +5448 2 -499.71432271786114 -235.32345508457894 29.5742 0.1144 5447 +5449 2 -498.6915508361617 -235.83502796111273 29.4832 0.1144 5448 +5450 2 -497.90280044891267 -236.63177261068023 29.3023 0.1144 5449 +5451 2 -497.0631135197811 -237.4065609695535 29.1273 0.1144 5450 +5452 2 -496.43991633078065 -238.36303444729452 28.9666 0.1144 5451 +5453 2 -496.31457626847083 -239.49690308112298 28.8221 0.1144 5452 +5454 2 -496.87326448001943 -240.37410928964906 28.1182 0.1144 5453 +5455 2 -496.1602615677568 -203.84290515924695 25.7225 0.1144 4632 +5456 2 -496.1479578900454 -202.7621350266495 25.1129 0.1144 5455 +5457 2 -495.59751060450446 -201.76523263130647 24.8688 0.1144 5456 +5458 2 -495.0462874277687 -200.76740937068897 24.5982 0.1144 5457 +5459 2 -494.49591100079397 -199.77043641286593 24.3074 0.1144 5458 +5460 2 -493.94390808374385 -198.77353076057565 24.002 0.1144 5459 +5461 2 -493.39346079820297 -197.77662836523268 23.6874 0.1144 5460 +5462 2 -492.84223762146723 -196.77880510461517 23.3673 0.1144 5461 +5463 2 -492.39217253705453 -195.7611117569939 22.9865 0.1144 5462 +5464 2 -492.184148941262 -194.6766791571549 22.5624 0.1144 5463 +5465 2 -492.1549276434241 -193.53683005935613 22.1386 0.1144 5464 +5466 2 -492.12499746383816 -192.3978280074045 21.7104 0.1144 5465 +5467 2 -492.0391739936687 -191.27398247443833 21.2498 0.1144 5466 +5468 2 -492.2056446737031 -190.21868897844357 20.7179 0.1144 5467 +5469 2 -492.58952795188884 -189.20825707142092 20.1117 0.1144 5468 +5470 2 -492.9903386210427 -188.2522372350721 19.449 0.1144 5469 +5471 2 -493.88248702459623 -187.54784528023666 18.8406 0.1144 5470 +5472 2 -494.849819661305 -187.20607446527717 18.2349 0.1144 5471 +5473 2 -495.9304373095556 -187.26660262640382 17.6049 0.1144 5472 +5474 2 -496.63994873391124 -186.82805458033718 17.075 0.1144 5473 +5475 2 -496.67465458035883 -185.71980564430234 16.7329 0.1144 5474 +5476 2 -496.9615507914556 -185.84422097317423 16.1951 0.1144 5475 +5477 2 -497.85767071471986 -185.94480945725098 15.5269 0.1144 5476 +5478 2 -498.4492316145357 -185.81254592558363 14.846 0.1144 5477 +5479 2 -497.5023841345832 -185.25244295316898 14.2599 0.1144 5478 +5480 2 -496.94704109408013 -184.26352063197038 13.8677 0.1144 5479 +5481 2 -496.64753623657816 -183.20399884817698 13.5406 0.1144 5480 +5482 2 -496.48161249393524 -182.1067143082206 12.9343 0.1144 5481 +5483 2 -518.608312891417 -219.59202181956533 22.9707 0.1144 4608 +5484 2 -519.6493820556167 -219.18980619909215 23.2165 0.1144 5483 +5485 2 -520.2620785568586 -218.25028133653356 23.4243 0.1144 5484 +5486 2 -520.8975675334416 -217.29949046013567 23.5947 0.1144 5485 +5487 2 -521.5959646905472 -216.3941569354351 23.7309 0.1144 5486 +5488 2 -522.3564331432419 -215.56249263269254 23.9058 0.1144 5487 +5489 2 -523.3138916104019 -214.93842349897125 24.0407 0.1144 5488 +5490 2 -524.098684483058 -214.10681012303976 24.1405 0.1144 5489 +5491 2 -524.7744207210415 -213.18368073520938 24.2266 0.1144 5490 +5492 2 -525.4486048805489 -212.25885103787638 24.3039 0.1144 5491 +5493 2 -525.5879049262721 -211.41464320371378 24.1816 0.1144 5492 +5494 2 -525.4673205990688 -210.27700699207455 24.2621 0.1144 5493 +5495 2 -525.3467362718654 -209.13937078043529 24.2955 0.1144 5494 +5496 2 -525.1420396777511 -208.0194483079587 24.3419 0.1144 5495 +5497 2 -524.7770082237103 -206.9492534203047 24.4017 0.1144 5496 +5498 2 -524.8336226909882 -205.81283673083962 24.4786 0.1144 5497 +5499 2 -525.2094487246692 -204.7668204057244 24.6117 0.1144 5498 +5500 2 -525.9440230077457 -203.975619197028 24.8484 0.1144 5499 +5501 2 -526.8474611120273 -203.28270603383075 25.0383 0.1144 5500 +5502 2 -527.5546617022359 -202.3942908295434 25.1869 0.1144 5501 +5503 2 -528.1157064680531 -201.40289749652717 25.3105 0.1144 5502 +5504 2 -528.7971517530291 -200.48861891557723 25.4054 0.1144 5503 +5505 2 -529.5520089611333 -199.63516392826207 25.4482 0.1144 5504 +5506 2 -530.3998141285083 -198.86682725194615 25.427 0.1144 5505 +5507 2 -531.2071562018373 -198.07259640601225 25.3402 0.1144 5506 +5508 2 -531.8092778998073 -197.15164635262514 25.1319 0.1144 5507 +5509 2 -532.1949393581427 -196.1024686319531 24.8503 0.1144 5508 +5510 2 -532.616175167643 -195.05004198235 24.5743 0.1144 5509 +5511 2 -533.1522271955478 -194.0400700850286 24.3556 0.1144 5510 +5512 2 -533.6025148150893 -192.99258330721815 24.191 0.1144 5511 +5513 2 -533.9559360300049 -191.90777053772857 24.0738 0.1144 5512 +5514 2 -534.390897971406 -190.85141281918217 23.9838 0.1144 5513 +5515 2 -534.7757633107053 -189.7772017968006 23.8797 0.1144 5514 +5516 2 -535.1590024560153 -188.70291665890565 23.7571 0.1144 5515 +5517 2 -535.429081575593 -187.6056964261501 23.6302 0.1144 5516 +5518 2 -535.5801902670102 -186.49132722190123 23.5117 0.1144 5517 +5519 2 -536.2050840103796 -185.5688692068688 23.3994 0.1144 5518 +5520 2 -537.1583820499752 -184.97307569590774 23.2768 0.1144 5519 +5521 2 -538.2323754539808 -184.71885607008713 23.0839 0.1144 5520 +5522 2 -539.338104274588 -184.74139437700396 22.8507 0.1144 5521 +5523 2 -540.4523610601007 -184.9799721335929 22.6588 0.1144 5522 +5524 2 -541.5217264600585 -185.3826464577966 22.4995 0.1144 5523 +5525 2 -542.5390913351536 -185.9000463040692 22.3668 0.1144 5524 +5526 2 -543.4858435693643 -186.53941592097098 22.2553 0.1144 5525 +5527 2 -544.3271073302599 -187.30810692820583 22.147 0.1144 5526 +5528 2 -544.9934386663051 -188.2089437894655 21.9814 0.1144 5527 +5529 2 -545.5446991498907 -189.18894799825077 21.7547 0.1144 5528 +5530 2 -545.8627687496365 -190.26385290088993 21.533 0.1144 5529 +5531 2 -545.8215774668149 -191.39634207444496 21.3394 0.1144 5530 +5532 2 -545.6048307564956 -192.51948342065467 21.1623 0.1144 5531 +5533 2 -545.4464067558517 -193.64918155999098 20.9921 0.1144 5532 +5534 2 -545.4601408206474 -194.7897760521153 20.8211 0.1144 5533 +5535 2 -545.5928487726515 -195.91209339559484 20.5887 0.1144 5534 +5536 2 -545.6545164838278 -197.02287756157764 20.2607 0.1144 5535 +5537 2 -545.7779470253811 -197.9493771845737 19.7433 0.1144 5536 +5538 2 -545.729515545219 -199.0275452798767 19.2641 0.1144 5537 +5539 2 -545.6082681067542 -200.16552371054482 18.8886 0.1144 5538 +5540 2 -545.1336296216017 -201.19181696708122 18.6044 0.1144 5539 +5541 2 -544.5144544939662 -202.15232938309552 18.3942 0.1144 5540 +5542 2 -544.6553822417496 -203.2325909902559 18.2343 0.1144 5541 +5543 2 -545.2526723224137 -203.09956163432136 18.0969 0.1144 5542 +5544 2 -546.3693113553411 -203.34860958179942 17.9308 0.1144 5543 +5545 2 -547.3805232047782 -203.69770476302895 17.6557 0.1144 5544 +5546 2 -548.1541525935447 -204.31415516560568 17.1957 0.1144 5545 +5547 2 -549.1862058238847 -204.77332003767717 16.7731 0.1144 5546 +5548 2 -550.3118478519534 -204.94396852037076 16.3642 0.1144 5547 +5549 2 -551.3133107762666 -204.950944280259 15.848 0.1144 5548 +5550 2 -551.9883116303374 -204.41283383898914 15.2595 0.1144 5549 +5551 2 -552.806350733987 -203.94693578694316 14.7515 0.1144 5550 +5552 2 -552.7662811709372 -204.91516604370904 14.3224 0.1144 5551 +5553 2 -552.2779162577976 -205.94553179023504 13.9756 0.1144 5552 +5554 2 -551.8437305036773 -207.0026689530096 13.7058 0.1144 5553 +5555 2 -551.438789109556 -208.00655137507258 13.377 0.1144 5554 +5556 2 -551.1356434267389 -209.05752820402242 13.0126 0.1144 5555 +5557 2 -551.1510677341096 -210.20137893324457 12.7364 0.1144 5556 +5558 2 -551.4933740183423 -211.28446632481322 12.5339 0.1144 5557 +5559 2 -551.9922326071596 -210.27427513579832 12.3203 0.1144 5558 +5560 2 -552.8269693014847 -209.53348832358628 12.1906 0.1144 5559 +5561 2 -553.5612290471262 -208.85874719846456 12.253 0.1144 5560 +5562 2 -553.8546776714882 -207.778617204038 12.2798 0.1144 5561 +5563 2 -554.8277396721014 -208.24656813411755 12.2433 0.1144 5562 +5564 2 -555.4024137773018 -209.22259084533496 12.1422 0.1144 5563 +5565 2 -555.6441502407132 -209.7068297659695 13.2645 0.1144 5564 +5566 2 -556.3378700880609 -210.59648094671175 14.3245 0.1144 5565 +5567 2 -557.1517080308041 -211.39417668629628 14.7318 0.1144 5566 +5568 2 -557.6424564598583 -211.89350338233893 15.272 0.1144 5567 +5569 2 -556.9350629345356 -212.06349611845306 16.0574 0.1144 5568 +5570 2 -556.7398587370287 -212.96182211789633 16.9721 0.1144 5569 +5571 2 -556.6648146367589 -214.05209675899127 17.8097 0.1144 5570 +5572 2 -557.1063108963829 -214.87326676132832 18.6166 0.1144 5571 +5573 2 -557.0591321940251 -215.7921259725483 19.3757 0.1144 5572 +5574 2 -556.7479592653863 -216.82696392531304 20.8074 0.1144 5573 +5575 2 -555.0939605500885 -208.58689106035652 11.9014 0.1144 5564 +5576 2 -554.5254301039047 -207.71609893145197 11.4548 0.1144 5575 +5577 2 -553.636038153925 -207.17146050156336 10.8807 0.1144 5576 +5578 2 -553.0643291391902 -206.29903536868895 10.3453 0.1144 5577 +5579 2 -552.3858709213972 -205.4150730070982 9.8752 0.1144 5578 +5580 2 -552.0902356409134 -204.4324220004161 9.3544 0.1144 5579 +5581 2 -551.8635731873637 -203.33423247572065 8.8855 0.1144 5580 +5582 2 -551.3989858520139 -202.2954368953332 8.4913 0.1144 5581 +5583 2 -551.0807877508962 -201.2819087267828 8.0152 0.1144 5582 +5584 2 -550.855907472201 -200.51457892138356 7.4388 0.1144 5583 +5585 2 -550.1906302917796 -199.88704163706458 6.8664 0.1144 5584 +5586 2 -550.0692087835565 -198.77775871673228 6.3164 0.1144 5585 +5587 2 -549.6036895196316 -197.81257116246374 5.7914 0.1144 5586 +5588 2 -548.9478523574505 -196.89789694904013 5.345 0.1144 5587 +5589 2 -548.8409798419002 -195.83071743489077 5.0157 0.1144 5588 +5590 2 -548.968624483078 -194.7106422384961 4.721 0.1144 5589 +5591 2 -548.5832932271012 -193.71076212909932 4.4552 0.1144 5590 +5592 2 -548.5239326514532 -192.68009816734516 4.2274 0.1144 5591 +5593 2 -548.6855582072503 -191.6086017465797 3.9306 0.1144 5592 +5594 2 -548.6652040950148 -190.48899451182498 3.6506 0.1144 5593 +5595 2 -547.7877535263772 -190.38759658483704 3.3796 0.1144 5594 +5596 2 -547.0255575242577 -191.23382370231386 3.157 0.1144 5595 +5597 2 -547.9217456929127 -191.67332935229186 3.0063 0.1144 5596 +5598 2 -548.9578509833009 -192.15597870454442 2.9167 0.1144 5597 +5599 2 -549.8632623786484 -192.81718212647647 2.8804 0.1144 5598 +5600 2 -550.4501277102685 -193.7793710385632 2.8738 0.1144 5599 +5601 2 -551.2551226524847 -194.5114993217255 2.8909 0.1144 5600 +5602 2 -552.2326612582423 -195.10412282299214 2.9267 0.1144 5601 +5603 2 -553.1818899892365 -195.74271980564626 2.9802 0.1144 5602 +5604 2 -553.9193936205146 -196.59201605775846 3.025 0.1144 5603 +5605 2 -554.4689974132416 -197.58651251879795 3.0636 0.1144 5604 +5606 2 -554.801856427582 -198.58868693803456 3.27 0.1144 5605 +5607 2 -555.192852613721 -199.6184895902086 3.5829 0.1144 5606 +5608 2 -555.2260624212078 -200.74462913692864 3.8833 0.1144 5607 +5609 2 -555.7772523423134 -201.72456248714772 4.1534 0.1144 5608 +5610 2 -556.0130224033871 -202.72815998530186 4.5539 0.1144 5609 +5611 2 -555.7483409047288 -203.5776914704559 4.8881 0.1144 5610 +5612 2 -555.2342138763763 -204.58544652438385 5.1757 0.1144 5611 +5613 2 -554.5325776551672 -205.48426787097472 5.3862 0.1144 5612 +5614 2 -553.9578268913044 -206.4699756417867 5.5345 0.1144 5613 +5615 2 -553.4233978004418 -207.48157728613077 5.6299 0.1144 5614 +5616 2 -552.8857898449417 -208.49168734755133 5.6809 0.1144 5615 +5617 2 -552.3813097425059 -209.51876665619616 5.7235 0.1144 5616 +5618 2 -551.7773894344444 -210.48822057542648 5.7648 0.1144 5617 +5619 2 -551.4911109431293 -211.5885888798638 5.8134 0.1144 5618 +5620 2 -551.6506165549312 -212.71174014741595 5.8963 0.1144 5619 +5621 2 -551.691870485148 -213.8459575706826 6.0204 0.1144 5620 +5622 2 -551.8020355482731 -214.9616516097751 6.1984 0.1144 5621 +5623 2 -551.7154380426655 -216.09885405526254 6.3305 0.1144 5622 +5624 2 -551.1746114530035 -217.09269388637952 6.3688 0.1144 5623 +5625 2 -550.5352486460823 -218.03619343652545 6.3426 0.1144 5624 +5626 2 -549.8400973630607 -218.9447864552712 6.303 0.1144 5625 +5627 2 -549.2394902346164 -219.91912635862204 6.2576 0.1144 5626 +5628 2 -548.6816139704225 -220.91696101118188 6.2164 0.1144 5627 +5629 2 -548.2199421046979 -221.96435324353726 6.193 0.1144 5628 +5630 2 -547.8188907175363 -223.03534839051778 6.186 0.1144 5629 +5631 2 -556.5665046280753 -201.87018216102305 5.0613 0.1144 5610 +5632 2 -557.0968342851124 -200.8577234039041 4.7672 0.1144 5631 +5633 2 -557.4914544196583 -199.7850884429732 4.6555 0.1144 5632 +5634 2 -557.8755471247098 -198.708400923808 4.5197 0.1144 5633 +5635 2 -558.8262666117994 -198.19589937564646 4.2913 0.1144 5634 +5636 2 -559.6946159412221 -198.0173340596099 3.8249 0.1144 5635 +5637 2 -560.8055762219258 -198.27683532106872 3.4514 0.1144 5636 +5638 2 -561.8286130392639 -198.78703453742511 3.1696 0.1144 5637 +5639 2 -562.8686864093593 -199.26573239079264 2.9731 0.1144 5638 +5640 2 -563.7465131904135 -199.99801315830186 2.8118 0.1144 5639 +5641 2 -545.9794422547819 -190.56751735912806 2.6425 0.1144 5596 +5642 2 -544.890458694714 -190.24732150359281 2.5784 0.1144 5641 +5643 2 -543.8023796211987 -189.900398846826 2.4888 0.1144 5642 +5644 2 -542.9795656271504 -189.16823325681375 2.329 0.1144 5643 +5645 2 -541.9636341939865 -188.74297262718764 2.1449 0.1144 5644 +5646 2 -540.8560448296914 -188.46078024582332 1.9596 0.1144 5645 +5647 2 -540.1214894119706 -187.72314257169253 1.6616 0.1144 5646 +5648 2 -539.7054399923668 -186.66988218107323 1.1248 0.1144 5647 +5649 2 -544.4166347387489 -203.65112353356758 18.6831 0.1144 5542 +5650 2 -544.2657601574595 -204.61989962262052 18.5237 0.1144 5649 +5651 2 -544.8267013207783 -205.60310608684583 18.4399 0.1144 5650 +5652 2 -545.2727302256785 -206.65727777399812 18.3477 0.1144 5651 +5653 2 -545.6514913646537 -207.72184454015334 18.2136 0.1144 5652 +5654 2 -545.4432457319186 -208.66858015607093 18.0089 0.1144 5653 +5655 2 -544.7471856389977 -208.052362867249 17.8015 0.1144 5654 +5656 2 -544.4348016014562 -206.96375196656444 17.6398 0.1144 5655 +5657 2 -543.5001385379428 -206.3930678790837 17.4587 0.1144 5656 +5658 2 -542.3832285862244 -206.27342018895868 17.4101 0.1144 5657 +5659 2 -541.2665895532971 -206.02437224148062 17.4334 0.1144 5658 +5660 2 -526.114864474685 -212.41715329061395 24.3741 0.1144 5492 +5661 2 -527.2151171599538 -212.38714198343374 24.4379 0.1144 5660 +5662 2 -528.1722847765675 -211.86821924958406 24.572 0.1144 5661 +5663 2 -529.0899845760091 -211.3208588398859 24.7812 0.1144 5662 +5664 2 -529.8656221712773 -210.60660627894794 24.9362 0.1144 5663 +5665 2 -530.5493519012659 -209.71573776657942 25.0368 0.1144 5664 +5666 2 -531.24369324319 -208.8224873028822 25.0831 0.1144 5665 +5667 2 -531.7983200802663 -207.82309020883272 25.0763 0.1144 5666 +5668 2 -532.4683879290399 -206.90546439836314 25.0185 0.1144 5667 +5669 2 -533.317765106646 -206.1630818890313 24.885 0.1144 5668 +5670 2 -534.2315622755395 -205.48709030319444 24.7057 0.1144 5669 +5671 2 -534.9913049695779 -204.66433404593752 24.4863 0.1144 5670 +5672 2 -535.6678678234668 -203.75167159204906 24.2537 0.1144 5671 +5673 2 -536.4122649076096 -202.89579053657488 24.0187 0.1144 5672 +5674 2 -537.3414646289176 -202.25949997565075 23.8187 0.1144 5673 +5675 2 -538.4403557271942 -202.0692550699936 23.6764 0.1144 5674 +5676 2 -539.2724801151967 -201.42788221985776 23.5801 0.1144 5675 +5677 2 -539.9812832125056 -200.55085481478685 23.4656 0.1144 5676 +5678 2 -540.7410765372687 -199.70391555861468 23.3747 0.1144 5677 +5679 2 -541.760422820615 -199.2749257631322 23.326 0.1144 5678 +5680 2 -542.4683144192904 -198.4617483319865 23.3509 0.1144 5679 +5681 2 -543.2021976939 -197.59530935014854 23.4175 0.1144 5680 +5682 2 -544.0193081824366 -196.7961491975362 23.4865 0.1144 5681 +5683 2 -544.9799215312589 -196.1850267514877 23.5497 0.1144 5682 +5684 2 -546.0429364210386 -195.77069481438096 23.5975 0.1144 5683 +5685 2 -547.174019890771 -195.6727242346224 23.6279 0.1144 5684 +5686 2 -548.3186868728849 -195.67271659781366 23.6436 0.1144 5685 +5687 2 -549.4609756588038 -195.6265298078852 23.6545 0.1144 5686 +5688 2 -550.6047212774567 -195.6613099719465 23.6692 0.1144 5687 +5689 2 -551.7374954879504 -195.5325837196108 23.69 0.1144 5688 +5690 2 -552.8782424644216 -195.44601781597706 23.7173 0.1144 5689 +5691 2 -554.0198092468177 -195.37317153034977 23.7506 0.1144 5690 +5692 2 -555.1611388642394 -195.41360350279868 23.7999 0.1144 5691 +5693 2 -555.5958850804923 -196.4191732256194 23.9186 0.1144 5692 +5694 2 -555.9625157846865 -197.502311543999 24.0134 0.1144 5693 +5695 2 -556.0008143062087 -197.75150599267155 24.0852 0.1144 5694 +5696 2 -556.3755128200216 -198.83140850389483 24.1355 0.1144 5695 +5697 2 -557.5888408503953 -198.86477871081334 24.1816 0.1144 5696 +5698 2 -557.997055358523 -197.85114504653703 24.1816 0.1144 5697 +5699 2 -558.3600932045861 -196.766352410903 24.1816 0.1144 5698 +5700 2 -559.0286187457255 -195.84235939640334 24.1816 0.1144 5699 +5701 2 -559.7438904025 -194.94915275345053 24.1816 0.1144 5700 +5702 2 -560.1450090951946 -193.87978409654536 24.1816 0.1144 5701 +5703 2 -555.3270848735367 -199.60745689222446 24.1788 0.1144 5696 +5704 2 -554.9318004722595 -200.62585525343044 24.1777 0.1144 5703 +5705 2 -554.9585553402416 -201.76166866990312 24.1762 0.1144 5704 +5706 2 -555.4231595524997 -202.7924032506522 24.1741 0.1144 5705 +5707 2 -556.19158396429 -203.63207685590882 24.171 0.1144 5706 +5708 2 -556.788045497116 -204.60404395404484 24.1668 0.1144 5707 +5709 2 -556.7193784657038 -205.72183846056075 24.1608 0.1144 5708 +5710 2 -556.7146519024523 -206.8648691817576 24.1525 0.1144 5709 +5711 2 -557.2586038867917 -207.85694964156576 24.1413 0.1144 5710 +5712 2 -557.9369842339377 -208.77810573833014 24.1249 0.1144 5711 +5713 2 -558.7344440770473 -209.59676830534252 24.1013 0.1144 5712 +5714 2 -559.7388955200997 -210.1352129436759 24.0697 0.1144 5713 +5715 2 -560.8702067316506 -210.26620451828725 24.0281 0.1144 5714 +5716 2 -561.8961803706037 -209.77896287169548 23.9762 0.1144 5715 +5717 2 -562.3026981548177 -209.9472572302395 23.858 0.1144 5716 +5718 2 -563.0581627571605 -210.76257917561256 23.7282 0.1144 5717 +5719 2 -563.1585899019475 -211.86863615361594 23.619 0.1144 5718 +5720 2 -562.848965592737 -212.94060053602144 23.4623 0.1144 5719 +5721 2 -562.2127881643476 -213.88248040607257 23.3435 0.1144 5720 +5722 2 -562.0664809785237 -215.0001123613138 23.2729 0.1144 5721 +5723 2 -562.599092039238 -216.00517987049156 23.2468 0.1144 5722 +5724 2 -562.842689488009 -217.12037545107475 23.253 0.1144 5723 +5725 2 -562.7004280504391 -218.23073266088633 23.3674 0.1144 5724 +5726 2 -562.3429330205192 -218.1879112458855 23.5079 0.1144 5725 +5727 2 -561.2191411731249 -218.2818665742595 22.962 0.1144 5726 +5728 2 -560.3238792459786 -218.91978382735928 22.734 0.1144 5727 +5729 2 -559.6167938332671 -219.75318624464077 22.4093 0.1144 5728 +5730 2 -558.6036789444121 -220.27927506031764 22.1415 0.1144 5729 +5731 2 -557.6711892321896 -220.93337786309334 21.8935 0.1144 5730 +5732 2 -556.7420126995839 -221.5923666499896 21.6733 0.1144 5731 +5733 2 -555.8942816477223 -222.35907713231623 21.5239 0.1144 5732 +5734 2 -554.7966651952361 -222.68353386784733 21.3699 0.1144 5733 +5735 2 -562.9668627916683 -219.24570809342944 23.4698 0.1144 5725 +5736 2 -562.9587557432668 -220.38222634043044 23.5299 0.1144 5735 +5737 2 -562.8860225336593 -221.5170536445698 23.5947 0.1144 5736 +5738 2 -562.6587857006956 -222.61832338071284 23.72 0.1144 5737 +5739 2 -562.1777832684601 -223.64460331337423 23.8967 0.1144 5738 +5740 2 -561.6854031039359 -224.66767743756233 24.1002 0.1144 5739 +5741 2 -561.2472764160449 -225.68202629538078 24.3723 0.1144 5740 +5742 2 -560.6540592105271 -226.60539915997978 24.678 0.1144 5741 +5743 2 -560.0614593961493 -227.57162408203433 24.917 0.1144 5742 +5744 2 -559.7364655880542 -228.65564783855436 25.0563 0.1144 5743 +5745 2 -559.6596362015681 -229.7880623984096 25.1212 0.1144 5744 +5746 2 -560.0936130405206 -230.78959999293758 25.1593 0.1144 5745 +5747 2 -560.7873628865511 -231.69869671558737 25.1968 0.1144 5746 +5748 2 -561.307820323782 -232.69963755101722 25.2837 0.1144 5747 +5749 2 -561.829890631127 -233.70701644904355 25.4325 0.1144 5748 +5750 2 -562.4791919283095 -234.6362434102737 25.6353 0.1144 5749 +5751 2 -562.9809530670777 -235.65086300382697 25.8412 0.1144 5750 +5752 2 -563.121870249747 -236.76994483623625 26.0277 0.1144 5751 +5753 2 -562.582781774624 -237.71040162737003 26.2441 0.1144 5752 +5754 2 -561.7576475932989 -238.4917258512419 26.4639 0.1144 5753 +5755 2 -560.7075257056201 -238.89477104848166 26.6628 0.1144 5754 +5756 2 -559.6005063021723 -239.08337258715522 26.913 0.1144 5755 +5757 2 -558.6464393834627 -239.64112206014823 27.2224 0.1144 5756 +5758 2 -557.5441431167746 -239.90419199466288 27.4938 0.1144 5757 +5759 2 -556.4110569820213 -239.81039060219177 27.7443 0.1144 5758 +5760 2 -555.2786555439407 -239.7610677572517 28.0036 0.1144 5759 +5761 2 -554.1371630791582 -239.7984173602608 28.2254 0.1144 5760 +5762 2 -553.0798532981812 -239.44668007612614 28.4718 0.1144 5761 +5763 2 -551.982578383481 -239.23649291769416 28.7375 0.1144 5762 +5764 2 -551.3695702165945 -239.5143051516409 28.8957 0.1144 5763 +5765 2 -550.2650719249473 -239.64705041049476 28.943 0.1144 5764 +5766 2 -549.1272044184561 -239.54036963588382 28.98 0.1144 5765 +5767 2 -547.9982660876789 -239.35677416943142 29.0237 0.1144 5766 +5768 2 -546.8995512171529 -239.05755905737126 29.0811 0.1144 5767 +5769 2 -545.8237036377682 -238.6775693391787 29.1679 0.1144 5768 +5770 2 -544.7790018219537 -238.4844628503343 29.3779 0.1144 5769 +5771 2 -543.7856946448342 -238.43224923254246 29.75 0.1144 5770 +5772 2 -542.6542788209005 -238.31745021968797 30.0684 0.1144 5771 +5773 2 -541.5457754013113 -238.03278104545382 30.3324 0.1144 5772 +5774 2 -540.4332662990789 -237.77002384298314 30.5525 0.1144 5773 +5775 2 -539.3498904305683 -237.47331572457608 30.7734 0.1144 5774 +5776 2 -538.3632815241366 -236.95746519801855 31.0176 0.1144 5775 +5777 2 -537.4757871851237 -236.24948871661522 31.2262 0.1144 5776 +5778 2 -536.5890153478201 -235.5341598212356 31.3956 0.1144 5777 +5779 2 -535.6219774298211 -234.9245877047866 31.5342 0.1144 5778 +5780 2 -534.557362406545 -234.58337104016564 31.6509 0.1144 5779 +5781 2 -533.4226840337193 -234.4395030442755 31.7554 0.1144 5780 +5782 2 -532.3451323896984 -234.09663294574304 31.8626 0.1144 5781 +5783 2 -531.3619079256505 -233.51785686356808 31.99 0.1144 5782 +5784 2 -530.3864435437669 -233.0490523737469 32.2294 0.1144 5783 +5785 2 -529.4037984637223 -232.5988297991639 32.5814 0.1144 5784 +5786 2 -528.4115243310423 -232.05319815087532 32.9213 0.1144 5785 +5787 2 -527.381171706291 -231.59233977928162 33.2548 0.1144 5786 +5788 2 -526.4408033509184 -230.9772373437361 33.5574 0.1144 5787 +5789 2 -525.5646804324 -230.2417074451956 33.7991 0.1144 5788 +5790 2 -524.6641688432344 -229.53681498688852 33.9912 0.1144 5789 +5791 2 -523.7125241110087 -228.903869812622 34.1684 0.1144 5790 +5792 2 -522.7373810765409 -228.31535255516155 34.391 0.1144 5791 +5793 2 -521.7216290715602 -227.80439077148526 34.6696 0.1144 5792 +5794 2 -520.756200470642 -227.2029537701881 34.9706 0.1144 5793 +5795 2 -519.7956268022738 -227.05209636189304 35.4203 0.1144 5794 +5796 2 -519.2413006996151 -227.13105117119096 36.1642 0.1144 5795 +5797 2 -519.1985572117762 -227.04603797076086 36.7461 0.1144 5796 +5798 2 -518.7104856923318 -226.0111530293751 37.1756 0.1144 5797 +5799 2 -518.2362144203015 -224.9707108250567 37.4699 0.1144 5798 +5800 2 -517.6575215106832 -223.98909354405683 37.6499 0.1144 5799 +5801 2 -517.0511504376896 -223.0219140354668 37.7322 0.1144 5800 +5802 2 -516.5226589446563 -222.00808700791646 37.7538 0.1144 5801 +5803 2 -516.6960119620383 -221.11049307892375 37.7798 0.1144 5802 +5804 2 -517.637355239902 -220.48313750732123 37.8137 0.1144 5803 +5805 2 -517.7417696823529 -219.65094818738996 37.8972 0.1144 5804 +5806 2 -517.6672730176612 -218.55463288285856 37.9915 0.1144 5805 +5807 2 -517.5750248087704 -217.4260362729237 38.0638 0.1144 5806 +5808 2 -517.3394750357628 -216.3172215163317 38.0769 0.1144 5807 +5809 2 -517.2286315877589 -215.1878081553188 38.0657 0.1144 5808 +5810 2 -517.0894419545145 -214.05416350817524 38.073 0.1144 5809 +5811 2 -517.353740966433 -212.98203351964818 38.1083 0.1144 5810 +5812 2 -518.2407899077804 -212.38291931880295 38.185 0.1144 5811 +5813 2 -519.2661306602146 -212.5694798757209 38.4261 0.1144 5812 +5814 2 -519.5334247612815 -211.6203930074445 38.7215 0.1144 5813 +5815 2 -519.4880882741475 -210.47725747176446 39.0032 0.1144 5814 +5816 2 -519.425000040714 -209.33571111930996 39.268 0.1144 5815 +5817 2 -519.2517109453763 -209.02068510540468 39.0202 0.1144 5816 +5818 2 -518.7806754805025 -207.9883107107052 39.4472 0.1144 5817 +5819 2 -518.3386986356504 -206.95762350373377 39.6654 0.1144 5818 +5820 2 -518.0854104402184 -205.84403398328433 39.8588 0.1144 5819 +5821 2 -517.9114261961236 -204.71272065674444 40.0246 0.1144 5820 +5822 2 -517.6403053288983 -203.6055991975743 40.1951 0.1144 5821 +5823 2 -517.5236951910958 -202.52864120128953 40.4541 0.1144 5822 +5824 2 -517.2145205150609 -201.4269555157609 40.6319 0.1144 5823 +5825 2 -516.4385707559617 -201.51350735776205 40.7294 0.1144 5824 +5826 2 -515.302550671384 -201.63897411605268 40.7644 0.1144 5825 +5827 2 -514.1673773365673 -201.7652911771376 40.7498 0.1144 5826 +5828 2 -513.0322042978368 -201.89146681717634 40.7002 0.1144 5827 +5829 2 -511.8961842132589 -202.0169335754669 40.6372 0.1144 5828 +5830 2 -510.76094031596216 -202.14317977798564 40.5983 0.1144 5829 +5831 2 -509.6249875369173 -202.27027302635156 40.5941 0.1144 5830 +5832 2 -508.48506086455757 -202.33654663831675 40.6347 0.1144 5831 +5833 2 -507.6044894266894 -201.76689504057418 40.7876 0.1144 5832 +5834 2 -506.80773115716073 -200.98465002145426 41.0522 0.1144 5833 +5835 2 -506.31043004271464 -200.10262257768022 41.4686 0.1144 5834 +5836 2 -506.48664565316824 -199.01984297008113 41.8737 0.1144 5835 +5837 2 -506.5553600583579 -197.87942109615926 42.1744 0.1144 5836 +5838 2 -506.34012952085504 -196.7585573284666 42.3696 0.1144 5837 +5839 2 -505.964584257281 -195.6778045144489 42.467 0.1144 5838 +5840 2 -505.6174124188694 -194.58827225030348 42.488 0.1144 5839 +5841 2 -505.7233268710268 -193.47868747263922 42.1772 0.1144 5840 +5842 2 -516.7338149355681 -200.35255864037248 41.1544 0.1144 5824 +5843 2 -516.2482199129072 -199.31690106473906 41.1883 0.1144 5842 +5844 2 -515.7075511095018 -198.3102610471438 41.2471 0.1144 5843 +5845 2 -515.1579336968135 -197.32226995423363 41.3624 0.1144 5844 +5846 2 -514.8034737890973 -196.23505588891717 41.4557 0.1144 5845 +5847 2 -514.7694509856663 -195.09194404012598 41.5257 0.1144 5846 +5848 2 -514.8778288128326 -193.95408008666823 41.5747 0.1144 5847 +5849 2 -514.9360125315809 -192.81116128602113 41.6147 0.1144 5848 +5850 2 -520.2649622684982 -209.57774511670678 39.6802 0.1144 5816 +5851 2 -521.1379849872988 -210.24043636642867 40.1279 0.1144 5850 +5852 2 -521.9687753003581 -211.01306525258744 40.507 0.1144 5851 +5853 2 -522.5953309977907 -211.964942769926 40.8027 0.1144 5852 +5854 2 -522.944949334303 -213.03425685791618 41.0614 0.1144 5853 +5855 2 -523.0768508982427 -214.17021970388888 41.1953 0.1144 5854 +5856 2 -523.23626877457 -215.3015025335593 41.2152 0.1144 5855 +5857 2 -523.3957575094635 -216.43271480074978 41.1636 0.1144 5856 +5858 2 -523.5559515730718 -217.5647770746485 41.0659 0.1144 5857 +5859 2 -523.7283131762108 -218.69431923311944 40.9438 0.1144 5858 +5860 2 -523.9702773249259 -219.81283480330012 40.8122 0.1144 5859 +5861 2 -524.1717076150143 -220.93925583392536 40.6812 0.1144 5860 +5862 2 -524.3353267787893 -222.022746936448 40.5017 0.1144 5861 +5863 2 -524.4013590289749 -222.94021682256707 40.1478 0.1144 5862 +5864 2 -524.5276019745463 -224.07701635137306 39.8737 0.1144 5863 +5865 2 -524.6344029312437 -225.21214882630653 39.6724 0.1144 5864 +5866 2 -524.597220089826 -226.35518230626414 39.5385 0.1144 5865 +5867 2 -524.2262537967163 -227.34287236867053 39.4682 0.1144 5866 +5868 2 -523.7875780195909 -228.24797183975838 39.4584 0.1144 5867 +5869 2 -524.0789608837158 -229.33660948217874 39.4965 0.1144 5868 +5870 2 -524.6244448126756 -230.34000688263706 39.5455 0.1144 5869 +5871 2 -524.969292140464 -231.39149185186739 39.6043 0.1144 5870 +5872 2 -524.5976612845369 -232.32508673559528 39.7208 0.1144 5871 +5873 2 -523.7201806041865 -233.0148722570523 39.9067 0.1144 5872 +5874 2 -523.2862453389157 -233.95236721466776 40.075 0.1144 5873 +5875 2 -523.4165408427216 -235.07863931397947 40.1892 0.1144 5874 +5876 2 -523.9095457200644 -236.08758370834232 40.2492 0.1144 5875 +5877 2 -524.8133583634452 -236.70183178987367 40.2528 0.1144 5876 +5878 2 -525.9325691388981 -236.87084045861687 40.1974 0.1144 5877 +5879 2 -526.8877374739793 -237.37439218551103 40.0879 0.1144 5878 +5880 2 -527.4680974374701 -238.33656747763663 39.9333 0.1144 5879 +5881 2 -528.0719952706274 -239.30296398896508 39.7188 0.1144 5880 +5882 2 -528.5997851900793 -240.28037346862288 39.3781 0.1144 5881 +5883 2 -529.0790336407521 -241.2739448110678 38.9141 0.1144 5882 +5884 2 -529.5436988467488 -242.2755466562817 38.3614 0.1144 5883 +5885 2 -529.833553521387 -243.31729981686746 37.7325 0.1144 5884 +5886 2 -529.8207329049671 -244.40855326212878 37.0807 0.1144 5885 +5887 2 -529.6452897266608 -245.52767985514038 36.5002 0.1144 5886 +5888 2 -529.318673183624 -246.57620337600898 35.9386 0.1144 5887 +5889 2 -528.9606293931118 -247.6060641501312 35.3889 0.1144 5888 +5890 2 -528.7544610390978 -248.70893363461389 34.9182 0.1144 5889 +5891 2 -528.7003263255506 -249.84302205832225 34.5372 0.1144 5890 +5892 2 -528.6121767414671 -250.97852419430694 34.2292 0.1144 5891 +5893 2 -528.3641585249665 -252.00861532342316 34.1384 0.1144 5892 +5894 2 -527.9566559534337 -253.0537167989719 34.0281 0.1144 5893 +5895 2 -527.4764193454654 -254.0857259124816 33.9038 0.1144 5894 +5896 2 -527.4141530697998 -255.21972660071532 33.7565 0.1144 5895 +5897 2 -526.9097339611026 -256.2176731738249 33.5504 0.1144 5896 +5898 2 -526.4084324272179 -257.2463854864395 33.1794 0.1144 5897 +5899 2 -518.8821324870851 -227.88740008876005 37.469 0.1144 5796 +5900 2 -518.0974815336617 -228.68500185110256 37.2201 0.1144 5899 +5901 2 -517.1689934528627 -229.35290164434545 37.123 0.1144 5900 +5902 2 -516.1535371764761 -229.84900416474545 37.0283 0.1144 5901 +5903 2 -515.1865096540465 -230.41655530857636 36.9286 0.1144 5902 +5904 2 -514.5083511030377 -231.31457727918377 36.8136 0.1144 5903 +5905 2 -514.1663310112135 -232.39142359448996 36.6744 0.1144 5904 +5906 2 -513.8162434058565 -233.47136429590628 36.5056 0.1144 5905 +5907 2 -513.3206642428396 -234.50256346831833 36.2886 0.1144 5906 +5908 2 -512.8188441165901 -235.40746002643473 35.8943 0.1144 5907 +5909 2 -512.3517981712495 -236.31978331614124 35.3304 0.1144 5908 +5910 2 -511.93626509694775 -237.3503015470141 34.7519 0.1144 5909 +5911 2 -511.1798733875628 -238.12611282688422 34.2454 0.1144 5910 +5912 2 -510.33088130987187 -238.75210611120772 33.7011 0.1144 5911 +5913 2 -509.3374420783472 -238.76296628005997 33.1173 0.1144 5912 +5914 2 -508.21920373875173 -238.9062893970327 32.6572 0.1144 5913 +5915 2 -507.18441334282096 -239.38297667029417 32.3322 0.1144 5914 +5916 2 -506.413404136757 -240.2169523618852 32.1031 0.1144 5915 +5917 2 -505.8821568713927 -241.22863137868987 31.948 0.1144 5916 +5918 2 -505.0587066208484 -241.98245261404918 31.7806 0.1144 5917 +5919 2 -504.1440422722522 -242.66735194928538 31.6733 0.1144 5918 +5920 2 -503.21400211297725 -243.33355143302572 31.5972 0.1144 5919 +5921 2 -502.3290914440895 -244.05966676690085 31.5431 0.1144 5920 +5922 2 -501.4999147714577 -244.84671010469322 31.5092 0.1144 5921 +5923 2 -500.8258047274636 -245.769913608037 31.493 0.1144 5922 +5924 2 -500.0627450986747 -246.62335142235779 31.4924 0.1144 5923 +5925 2 -499.3877883049195 -247.54570462290718 31.4924 0.1144 5924 +5926 2 -498.8857105837539 -248.57363749129357 31.4924 0.1144 5925 +5927 2 -498.41111216421206 -249.6145679741638 31.4924 0.1144 5926 +5928 2 -498.0553523205258 -250.70185072654252 31.4924 0.1144 5927 +5929 2 -497.7682807650215 -251.80950058639013 31.4924 0.1144 5928 +5930 2 -497.34377213760104 -252.87153705716014 31.4924 0.1144 5929 +5931 2 -496.8094136092184 -253.88320956007036 31.4924 0.1144 5930 +5932 2 -496.0810843405941 -254.76500442083181 31.4924 0.1144 5931 +5933 2 -495.3787324276563 -255.66792549733435 31.4924 0.1144 5932 +5934 2 -494.626260723914 -256.5302950440296 31.4924 0.1144 5933 +5935 2 -493.8010355501673 -257.32130646152905 31.4924 0.1144 5934 +5936 2 -492.91132988958077 -258.04104778139356 31.4924 0.1144 5935 +5937 2 -552.0410610877708 -239.0990827896142 29.6534 0.1144 5763 +5938 2 -552.1431910852092 -238.24348340110154 31.1758 0.1144 5937 +5939 2 -552.0737275496042 -238.5596275252305 31.74 0.1144 5938 +5940 2 -552.1698549607695 -239.38898401120179 32.4439 0.1144 5939 +5941 2 -552.4790251678722 -238.56768858138378 33.0529 0.1144 5940 +5942 2 -552.4069414495649 -237.43340661134502 33.5255 0.1144 5941 +5943 2 -551.8014403150346 -236.48977563152158 33.882 0.1144 5942 +5944 2 -551.7422526536751 -235.3765217787356 34.1446 0.1144 5943 +5945 2 -551.3457430253478 -234.31198856429666 34.375 0.1144 5944 +5946 2 -551.3351401553255 -233.1956544435482 34.6668 0.1144 5945 +5947 2 -551.8044974895147 -232.29387190721093 35.0538 0.1144 5946 +5948 2 -550.8496371214592 -232.0822858549368 35.5796 0.1144 5947 +5949 2 -551.3180319736889 -231.67399220766237 36.1595 0.1144 5948 +5950 2 -552.380193303727 -231.2620626518258 36.6218 0.1144 5949 +5951 2 -553.1746900448188 -230.45634975730653 37.0023 0.1144 5950 +5952 2 -553.9150146389719 -229.5867422738452 37.2775 0.1144 5951 +5953 2 -554.5471599390687 -228.64563178109447 37.3926 0.1144 5952 +5954 2 -555.1590802530296 -227.70532747430755 37.5166 0.1144 5953 +5955 2 -556.1237965887109 -227.09336508847852 37.6782 0.1144 5954 +5956 2 -551.3278516947149 -237.41990435309918 31.4924 0.1144 5938 +5957 2 -551.5063749388833 -236.3832330400537 31.4924 0.1144 5956 +5958 2 -552.2564238314137 -235.52976798581074 31.4924 0.1144 5957 +5959 2 -552.4245688734876 -234.41776790720192 31.4924 0.1144 5958 +5960 2 -551.8555699674775 -233.43298893455918 31.4924 0.1144 5959 +5961 2 -562.6481299289477 -208.79447462305754 24.8655 0.1144 5716 +5962 2 -562.9194559562071 -207.8784888661095 25.2439 0.1144 5961 +5963 2 -564.0272548038832 -207.68911114015506 25.6743 0.1144 5962 +5964 2 -565.1479328315988 -207.52882253109178 26.1182 0.1144 5963 +5965 2 -566.2766776725605 -207.4333219342225 26.5485 0.1144 5964 +5966 2 -567.3721267372472 -207.70502369475602 26.973 0.1144 5965 +5967 2 -568.4318218204858 -208.09954602689967 27.3416 0.1144 5966 +5968 2 -569.5065951103911 -208.21585279929914 27.7657 0.1144 5967 +5969 2 -570.6406734671716 -208.27479582842008 28.1579 0.1144 5968 +5970 2 -571.7500720066723 -208.46966411869235 28.5457 0.1144 5969 +5971 2 -572.858761664425 -208.6653794548117 28.9173 0.1144 5970 +5972 2 -573.9690105067202 -208.85940099532277 29.2578 0.1144 5971 +5973 2 -575.0825457868965 -209.0373073465377 29.5495 0.1144 5972 +5974 2 -576.2221882165901 -209.1067979390085 29.7382 0.1144 5973 +5975 2 -577.3643313281427 -209.13019030385337 29.8116 0.1144 5974 +5976 2 -578.5006837669218 -209.21749313817574 29.7556 0.1144 5975 +5977 2 -579.6354097156257 -209.30486327803098 29.598 0.1144 5976 +5978 2 -580.7709827101766 -209.3929422996343 29.3642 0.1144 5977 +5979 2 -581.9065554086415 -209.481162742284 29.0746 0.1144 5978 +5980 2 -583.0429078474206 -209.56846557660637 28.7482 0.1144 5979 +5981 2 -584.1736662146036 -209.62577530567145 28.3878 0.1144 5980 +5982 2 -585.285368191014 -209.5310168461804 27.9715 0.1144 5981 +5983 2 -586.3348032670309 -209.3884689201158 27.53 0.1144 5982 +5984 2 -587.2255149151911 -208.99880787531933 26.9499 0.1144 5983 +5985 2 -588.3006642344567 -208.93550991893395 26.4132 0.1144 5984 +5986 2 -589.4353090555662 -209.06162942547192 25.9738 0.1144 5985 +5987 2 -590.539996640224 -208.87224518562303 25.5993 0.1144 5986 +5988 2 -591.6182457175357 -208.510483292555 25.2605 0.1144 5987 +5989 2 -592.730497281367 -208.49096231011944 24.9547 0.1144 5988 +5990 2 -593.650806073669 -208.25105806503055 24.5386 0.1144 5989 +5991 2 -594.5007973854678 -207.55308324466344 24.1666 0.1144 5990 +5992 2 -595.5628944648199 -207.17184205587128 23.8795 0.1144 5991 +5993 2 -596.6355595374635 -206.7752787419722 23.6703 0.1144 5992 +5994 2 -597.348438381709 -205.91042213337917 23.5146 0.1144 5993 +5995 2 -597.8480796717017 -204.8978991255743 23.3578 0.1144 5994 +5996 2 -598.3493070900731 -203.8708130069489 23.2655 0.1144 5995 +5997 2 -599.4074431017989 -203.45640014434812 23.2088 0.1144 5996 +5998 2 -599.3808217397783 -204.58722276221724 23.1797 0.1144 5997 +5999 2 -599.3533263880743 -205.73020581355027 23.1794 0.1144 5998 +6000 2 -599.306456353029 -206.87314830108622 23.2086 0.1144 5999 +6001 2 -599.2143383931525 -208.01274335700222 23.2672 0.1144 6000 +6002 2 -598.694557295838 -208.95161422185774 23.3485 0.1144 6001 +6003 2 -597.8291218714546 -209.69728652000381 23.4654 0.1144 6002 +6004 2 -597.0306774805973 -210.49719286121424 23.6484 0.1144 6003 +6005 2 -596.7000557531038 -211.5336164441711 23.8593 0.1144 6004 +6006 2 -596.6937372478659 -212.62643914090265 24.1566 0.1144 6005 +6007 2 -597.0637295018275 -213.6238122566464 24.5384 0.1144 6006 +6008 2 -597.5915358000013 -214.627172646341 24.8655 0.1144 6007 +6009 2 -597.9823731899994 -215.69904791174244 25.1055 0.1144 6008 +6010 2 -597.9404634566883 -216.80318053704335 25.3272 0.1144 6009 +6011 2 -597.7495967978397 -217.9263760670112 25.4695 0.1144 6010 +6012 2 -597.5555415035119 -219.05274690858315 25.519 0.1144 6011 +6013 2 -597.8590379255095 -220.13087399841746 25.4912 0.1144 6012 +6014 2 -598.5009598648796 -221.07224777315062 25.4184 0.1144 6013 +6015 2 -598.8482768794711 -222.12621279219783 25.2332 0.1144 6014 +6016 2 -598.5078532790394 -223.18354626006365 24.9693 0.1144 6015 +6017 2 -598.0204465380241 -224.1953170635626 24.6721 0.1144 6016 +6018 2 -597.6088677213681 -225.26225965230864 24.1816 0.1144 6017 +6019 2 -600.3461878388866 -203.29339717324004 23.0569 0.1144 5997 +6020 2 -600.9793096260605 -202.62890950397454 22.4274 0.1144 6019 +6021 2 -601.5152974032793 -201.64962597369745 22.1879 0.1144 6020 +6022 2 -602.2419094854927 -200.7774441910502 21.9523 0.1144 6021 +6023 2 -602.8247681245848 -199.8031378394156 21.7339 0.1144 6022 +6024 2 -602.9621776279371 -198.67983038889795 21.575 0.1144 6023 +6025 2 -603.1150947942729 -197.54601949186096 21.4765 0.1144 6024 +6026 2 -603.6873554413908 -196.56758972342575 21.4331 0.1144 6025 +6027 2 -604.5326805589489 -195.80172273391295 21.4182 0.1144 6026 +6028 2 -605.1931655303915 -194.86795479031113 21.4253 0.1144 6027 +6029 2 -606.0231180942181 -194.08183231779324 21.4467 0.1144 6028 +6030 2 -606.745728545008 -193.19585354467884 21.4754 0.1144 6029 +6031 2 -607.3698498562302 -192.23704854423383 21.51 0.1144 6030 +6032 2 -608.0448033930381 -191.31625097519358 21.5783 0.1144 6031 +6033 2 -608.7350586250116 -190.41577945163866 21.6912 0.1144 6032 +6034 2 -609.2855895812955 -189.4138281922587 21.7811 0.1144 6033 +6035 2 -609.7084752716738 -188.35016197446615 21.8484 0.1144 6034 +6036 2 -610.2646580363455 -187.35062671631752 21.8947 0.1144 6035 +6037 2 -610.7862314319572 -186.3324927600082 21.9218 0.1144 6036 +6038 2 -611.5071480871388 -185.4449548023513 21.9321 0.1144 6037 +6039 2 -554.8523893715403 -197.62132711791858 24.1816 0.1144 5694 +6040 2 -554.1940887778353 -197.14024657546477 25.7684 0.1144 6039 +6041 2 -553.8072878959915 -197.21382454638584 26.5064 0.1144 6040 +6042 2 -554.8367454573462 -197.35916930676527 27.1638 0.1144 6041 +6043 2 -555.9225237071271 -197.65673098491405 27.7909 0.1144 6042 +6044 2 -556.6560183988147 -198.52949484029872 28.3318 0.1144 6043 +6045 2 -557.7186921924799 -199.02110938265614 28.1232 0.1144 6044 +6046 2 -558.8500669544301 -199.1892949885271 28.1252 0.1144 6045 +6047 2 -559.906773020743 -199.0863603519007 28.128 0.1144 6046 +6048 2 -560.1610962490619 -198.18575395866478 28.1319 0.1144 6047 +6049 2 -559.7669388694665 -197.11224539320736 28.1375 0.1144 6048 +6050 2 -559.5734581566528 -196.00528648531187 28.145 0.1144 6049 +6051 2 -559.1978887080036 -194.9698592646724 28.1557 0.1144 6050 +6052 2 -558.4570887740168 -194.10761602880146 28.1705 0.1144 6051 +6053 2 -557.6392960754413 -193.30750784101886 28.1924 0.1144 6052 +6054 2 -557.0021655747366 -192.37420513285187 28.222 0.1144 6053 +6055 2 -556.4542084059406 -191.37002473513198 28.2607 0.1144 6054 +6056 2 -556.2477505085849 -190.28078707666643 28.3086 0.1144 6055 +6057 2 -555.9386426398964 -189.21473979088833 28.4113 0.1144 6056 +6058 2 -555.3411793163023 -188.248427462001 28.5407 0.1144 6057 +6059 2 -554.8029870096804 -187.24101481015813 28.6608 0.1144 6058 +6060 2 -554.2930438801692 -186.2166199914167 28.7714 0.1144 6059 +6061 2 -553.7879831817452 -185.19060904561374 28.8809 0.1144 6060 +6062 2 -553.1565515671198 -184.23723639231835 29.001 0.1144 6061 +6063 2 -552.5672470455661 -183.25800106264714 29.141 0.1144 6062 +6064 2 -552.1423740590039 -182.19743898276218 29.3152 0.1144 6063 +6065 2 -551.6624409116585 -181.15938909278626 29.538 0.1144 6064 +6066 2 -552.1068121158153 -180.26964579670803 29.9603 0.1144 6065 +6067 2 -552.6384837241756 -179.39302535953837 30.5371 0.1144 6066 +6068 2 -552.8826351224191 -178.31851973147687 31.1282 0.1144 6067 +6069 2 -552.9440510952902 -177.18536579300414 31.6526 0.1144 6068 +6070 2 -552.9973423160236 -176.04887143499226 32.1 0.1144 6069 +6071 2 -553.0523302932262 -174.9125220510601 32.4654 0.1144 6070 +6072 2 -553.2108251524362 -173.78275334924362 32.7298 0.1144 6071 +6073 2 -553.37412832722 -172.65299471435495 32.9244 0.1144 6072 +6074 2 -553.9923440842579 -171.81297154934688 33.0672 0.1144 6073 +6075 2 -554.9522757912544 -171.18968541288714 33.1685 0.1144 6074 +6076 2 -555.9241791368909 -170.58990033743046 33.2436 0.1144 6075 +6077 2 -556.9308090875583 -170.05403984959875 33.3068 0.1144 6076 +6078 2 -557.8245299995293 -169.3415901520722 33.3698 0.1144 6077 +6079 2 -558.7947693461402 -168.79356192260948 33.4396 0.1144 6078 +6080 2 -559.9187874973088 -168.62528998245458 33.5577 0.1144 6079 +6081 2 -561.0403022078577 -168.4706599917594 33.7308 0.1144 6080 +6082 2 -562.1634431123958 -168.3161041165777 33.9391 0.1144 6081 +6083 2 -562.7249931467029 -167.4548904851425 34.1256 0.1144 6082 +6084 2 -563.2447953742458 -166.4383791697891 34.2779 0.1144 6083 +6085 2 -563.9730404604288 -165.56301881859062 34.4019 0.1144 6084 +6086 2 -564.7417450876248 -164.7152496895658 34.5033 0.1144 6085 +6087 2 -565.4884976774466 -163.84883765156403 34.5937 0.1144 6086 +6088 2 -565.990507594893 -162.8532902027774 34.7581 0.1144 6087 +6089 2 -566.3374234416792 -161.76846381332675 34.9353 0.1144 6088 +6090 2 -566.4304521999027 -160.63290118178966 35.1257 0.1144 6089 +6091 2 -565.9431732464609 -159.6247465946689 35.3228 0.1144 6090 +6092 2 -565.1999068826184 -158.75846767747166 35.5211 0.1144 6091 +6093 2 -564.6191812527813 -157.97094737751095 35.9078 0.1144 6092 +6094 2 -563.8491639026317 -157.14908956713938 36.2709 0.1144 6093 +6095 2 -563.3464514017198 -156.1498122325486 37.116 0.1144 6094 +6096 2 -556.437248208376 -198.6940051857953 28.8092 0.1144 6044 +6097 2 -555.8303592568158 -199.5615585792382 29.2975 0.1144 6096 +6098 2 -555.0262933148691 -199.93930947731965 29.871 0.1144 6097 +6099 2 -553.9131645044076 -199.97254652472847 30.4931 0.1144 6098 +6100 2 -552.8142772177796 -199.72190939402506 31.108 0.1144 6099 +6101 2 -551.7287051379174 -199.35964773524293 31.7341 0.1144 6100 +6102 2 -550.9972267312119 -198.67215048395846 32.5298 0.1144 6101 +6103 2 -550.6412554544024 -197.93530543234547 33.5961 0.1144 6102 +6104 2 -549.8137628255812 -197.88421679127268 34.8174 0.1144 6103 +6105 2 -549.4189250726595 -198.31776678708357 36.2564 0.1144 6104 +6106 2 -549.6582556582821 -198.3975347053558 37.0812 0.1144 6105 +6107 2 -550.7406423596126 -198.76141604423267 36.9636 0.1144 6106 +6108 2 -551.8238793637377 -199.12445063334857 36.9096 0.1144 6107 +6109 2 -552.9054125053265 -199.4907343534957 36.8542 0.1144 6108 +6110 2 -553.9438765583408 -199.96129709171143 36.82 0.1144 6109 +6111 2 -554.8533503767503 -200.64103525720432 36.8197 0.1144 6110 +6112 2 -555.5998121860523 -201.50088617873294 36.8628 0.1144 6111 +6113 2 -556.2352186903654 -202.44705464907875 36.9695 0.1144 6112 +6114 2 -556.7792243602767 -203.4472669670915 37.1328 0.1144 6113 +6115 2 -557.0471194872733 -204.541512301069 37.3184 0.1144 6114 +6116 2 -557.0916833401598 -205.68217133996532 37.5074 0.1144 6115 +6117 2 -556.9614308480798 -206.79821055894777 37.751 0.1144 6116 +6118 2 -556.7295414408366 -207.82508275781592 38.1237 0.1144 6117 +6119 2 -556.6698499625431 -208.9113590244347 38.526 0.1144 6118 +6120 2 -556.935335898289 -210.00800348273512 38.8514 0.1144 6119 +6121 2 -557.3626853816347 -211.06779292837243 39.0863 0.1144 6120 +6122 2 -557.8563482139147 -212.10021469684952 39.2392 0.1144 6121 +6123 2 -558.1477174580783 -213.19535770739904 39.3173 0.1144 6122 +6124 2 -558.304726439241 -214.32889824034626 39.3378 0.1144 6123 +6125 2 -558.4455390095274 -215.46417263451244 39.3319 0.1144 6124 +6126 2 -558.5328843573893 -216.6041434237026 39.3187 0.1144 6125 +6127 2 -558.3898094256886 -217.73154024111815 39.3 0.1144 6126 +6128 2 -558.1633787786888 -218.85303496339705 39.2734 0.1144 6127 +6129 2 -558.0355622195952 -219.98767623147316 39.2361 0.1144 6128 +6130 2 -558.3537091918017 -221.0593993086139 39.1863 0.1144 6129 +6131 2 -558.8109912848524 -222.10871550851513 39.123 0.1144 6130 +6132 2 -559.0125329973043 -223.21569129331888 39.0062 0.1144 6131 +6133 2 -559.1428148811492 -224.3484687607598 38.8567 0.1144 6132 +6134 2 -559.3944934634139 -225.45406458710372 38.6728 0.1144 6133 +6135 2 -559.9846215460263 -226.41145199359724 38.479 0.1144 6134 +6136 2 -560.9159639196555 -227.04838517932606 38.3141 0.1144 6135 +6137 2 -561.8497318632574 -227.70887015076872 38.1814 0.1144 6136 +6138 2 -562.0934644212805 -228.79330680182753 38.0783 0.1144 6137 +6139 2 -562.1493152161343 -229.9129883541959 37.9201 0.1144 6138 +6140 2 -562.6325179244527 -230.94298405451403 37.7978 0.1144 6139 +6141 2 -562.7369233098603 -232.0740102856412 37.679 0.1144 6140 +6142 2 -562.5840935829128 -233.19983104160607 37.5676 0.1144 6141 +6143 2 -562.9878779566699 -234.2684100042989 37.4984 0.1144 6142 +6144 2 -563.6477066833468 -235.20168952376346 37.4713 0.1144 6143 +6145 2 -564.2313898933821 -236.1639424844358 37.546 0.1144 6144 +6146 2 -564.7841654446797 -237.1633246335097 37.5998 0.1144 6145 +6147 2 -565.392095702216 -238.12881034649146 37.6533 0.1144 6146 +6148 2 -565.9084869612514 -239.1467839795449 37.7045 0.1144 6147 +6149 2 -566.5438833986368 -240.09776076546447 37.7471 0.1144 6148 +6150 2 -567.1380804182054 -241.0705716525005 37.7611 0.1144 6149 +6151 2 -567.711216064891 -242.03838868608594 37.7695 0.1144 6150 +6152 2 -568.1523799137985 -243.05210359098626 37.9098 0.1144 6151 +6153 2 -568.6380664270677 -244.0440620633169 38.0859 0.1144 6152 +6154 2 -569.3926938483908 -244.88773729999693 38.2656 0.1144 6153 +6155 2 -569.6914971323117 -245.91084153589773 38.4681 0.1144 6154 +6156 2 -569.768443349951 -247.01925352139367 38.6394 0.1144 6155 +6157 2 -569.9335740284047 -248.12381961676024 38.7663 0.1144 6156 +6158 2 -569.715214447971 -249.2405229003736 38.8528 0.1144 6157 +6159 2 -569.5632521968124 -250.3572944858927 38.9222 0.1144 6158 +6160 2 -569.968005307808 -251.36845828030948 38.9861 0.1144 6159 +6161 2 -570.8207246716393 -252.1031613608441 39.0508 0.1144 6160 +6162 2 -571.8324382365331 -252.58413329621027 39.1801 0.1144 6161 +6163 2 -572.8085127013896 -253.1330544372269 39.3506 0.1144 6162 +6164 2 -573.734192701517 -253.80639184697338 39.5108 0.1144 6163 +6165 2 -574.624143107372 -254.5233537463229 39.662 0.1144 6164 +6166 2 -575.3762804119503 -255.37430698537972 39.807 0.1144 6165 +6167 2 -575.7348369947315 -256.429921885305 39.9454 0.1144 6166 +6168 2 -575.7365184953933 -257.55189419448004 40.1262 0.1144 6167 +6169 2 -575.5881004791322 -258.495643791804 40.4905 0.1144 6168 +6170 2 -575.9524139808701 -259.5034702215287 40.8198 0.1144 6169 +6171 2 -576.5774107898465 -260.4569001134292 41.0396 0.1144 6170 +6172 2 -577.0597836253121 -261.47798451131445 41.1298 0.1144 6171 +6173 2 -577.3284276996676 -262.58602002577857 41.1594 0.1144 6172 +6174 2 -577.5655838288951 -263.7043841079852 41.1468 0.1144 6173 +6175 2 -577.8722820081462 -264.80684242776147 41.1071 0.1144 6174 +6176 2 -578.2307743402413 -265.8931456947312 41.0791 0.1144 6175 +6177 2 -578.6840275619466 -266.9416756404237 41.0696 0.1144 6176 +6178 2 -579.2003414485212 -267.96283109897547 41.0724 0.1144 6177 +6179 2 -579.4358847076344 -269.07475711858575 41.0819 0.1144 6178 +6180 2 -579.3121743923472 -270.2070028153722 41.0984 0.1144 6179 +6181 2 -579.1552992132318 -271.33995689572043 41.1152 0.1144 6180 +6182 2 -578.999274040825 -272.4722056473538 41.1233 0.1144 6181 +6183 2 -578.8423280031435 -273.605230290182 41.1113 0.1144 6182 +6184 2 -578.6846766367473 -274.73740492630213 41.0497 0.1144 6183 +6185 2 -578.9055761556322 -275.85248227454133 40.9394 0.1144 6184 +6186 2 -579.5904787478157 -276.7655909916284 40.782 0.1144 6185 +6187 2 -580.2567256053336 -277.6730037834974 40.5182 0.1144 6186 +6188 2 -580.8479103627593 -278.5309739709676 40.0898 0.1144 6187 +6189 2 -581.4382451134768 -279.3896494871524 38.803 0.1144 6188 +6190 2 -549.3301067854684 -198.65812420489678 37.6222 0.1144 6105 +6191 2 -548.8793522006597 -199.48958840994354 39.0048 0.1144 6190 +6192 2 -548.6692734097442 -200.53510322170254 40.2668 0.1144 6191 +6193 2 -549.0044368008522 -201.58494156700195 41.3736 0.1144 6192 +6194 2 -549.588340557569 -202.00279228543135 42.5718 0.1144 6193 +6195 2 -549.0124540688167 -202.3826472604844 42.9072 0.1144 6194 +6196 2 -548.0058682349797 -202.89743601241932 42.3287 0.1144 6195 +6197 2 -546.9782784689653 -203.3797952279239 42.0854 0.1144 6196 +6198 2 -545.9491363283887 -203.86059555497215 41.8015 0.1144 6197 +6199 2 -544.9199941878123 -204.34139588202035 41.4915 0.1144 6198 +6200 2 -543.8924785373113 -204.8221289035358 41.1678 0.1144 6199 +6201 2 -542.8641125840157 -205.3037086748122 40.8422 0.1144 6200 +6202 2 -541.8349704434393 -205.78450900186047 40.5264 0.1144 6201 +6203 2 -540.8058283028629 -206.26530932890873 40.2223 0.1144 6202 +6204 2 -539.7782417937955 -206.74611291290418 39.9364 0.1144 6203 +6205 2 -538.749029090739 -207.22684238138615 39.674 0.1144 6204 +6206 2 -537.8313380332106 -206.65548671900726 39.4041 0.1144 6205 +6207 2 -536.7113888755132 -206.43386764452848 39.2246 0.1144 6206 +6208 2 -535.5752121097833 -206.29643119734024 39.1208 0.1144 6207 +6209 2 -535.1792294483872 -206.8715418839682 39.1574 0.1144 6208 +6210 2 -535.2078244866304 -207.87145293190596 40.5208 0.1144 6209 +6211 2 -535.7478895188572 -208.82873552391627 40.9536 0.1144 6210 +6212 2 -536.0102553231302 -209.82828747591682 41.4263 0.1144 6211 +6213 2 -535.9650555989045 -210.95023234306936 41.8788 0.1144 6212 +6214 2 -536.2232740973877 -212.00556645937618 42.3489 0.1144 6213 +6215 2 -537.1301518051403 -212.0001819276758 42.7582 0.1144 6214 +6216 2 -538.1398141518061 -211.56954550826245 43.0769 0.1144 6215 +6217 2 -539.1542209485165 -211.94622460349856 43.4017 0.1144 6216 +6218 2 -540.0911300082341 -212.25471762419588 43.7819 0.1144 6217 +6219 2 -541.1124083376066 -212.422743437553 44.1638 0.1144 6218 +6220 2 -541.9830959806698 -213.08620761760866 44.546 0.1144 6219 +6221 2 -542.9510048335052 -213.65130444347395 44.8409 0.1144 6220 +6222 2 -543.9870733152297 -214.11776093788345 45.0657 0.1144 6221 +6223 2 -545.0166664275081 -214.60364935423948 45.2332 0.1144 6222 +6224 2 -546.0892477028672 -214.9901376305808 45.3821 0.1144 6223 +6225 2 -547.1855433152145 -215.29656018253766 45.5221 0.1144 6224 +6226 2 -548.2468577824618 -215.69440931425927 45.6366 0.1144 6225 +6227 2 -549.0360868230065 -216.22264525733866 45.8917 0.1144 6226 +6228 2 -549.8333055064369 -216.78498054948162 46.2566 0.1144 6227 +6229 2 -550.8046367006781 -217.2690499258047 46.4136 0.1144 6228 +6230 2 -551.7889652133172 -217.72578142155024 46.3526 0.1144 6229 +6231 2 -552.7732231634759 -218.1824420587296 46.1356 0.1144 6230 +6232 2 -553.8672448959251 -218.42663431685625 45.8881 0.1144 6231 +6233 2 -554.990368923555 -218.28013944131285 45.6856 0.1144 6232 +6234 2 -556.0943591879516 -217.9847582027118 45.5658 0.1144 6233 +6235 2 -557.1746144833179 -217.81307122931796 45.6607 0.1144 6234 +6236 2 -558.3047965213445 -217.77414230791075 45.8685 0.1144 6235 +6237 2 -559.4478675102524 -217.75963560886734 46.0894 0.1144 6236 +6238 2 -560.586585319538 -217.8654696337172 46.2902 0.1144 6237 +6239 2 -561.7269867635182 -217.9439420911008 46.4596 0.1144 6238 +6240 2 -562.762556345062 -217.90566361436353 46.7569 0.1144 6239 +6241 2 -563.8873579916785 -217.70090652469693 47.2385 0.1144 6240 +6242 2 -535.2760414997103 -208.15069141264675 39.2722 0.1144 6209 +6243 2 -535.6054515248948 -209.24662117559146 39.3288 0.1144 6242 +6244 2 -535.9371998827639 -210.34022237669322 39.3672 0.1144 6243 +6245 2 -536.7034154596145 -211.0528239903537 39.3896 0.1144 6244 +6246 2 -537.6711859462505 -211.65023537725241 39.3994 0.1144 6245 +6247 2 -538.0702867506719 -212.69299508011315 39.4128 0.1144 6246 +6248 2 -538.3980702857812 -213.78899214859067 39.4316 0.1144 6247 +6249 2 -538.7533063807782 -214.87698565813528 39.4579 0.1144 6248 +6250 2 -539.1117987128733 -215.963288925105 39.4948 0.1144 6249 +6251 2 -539.382912770118 -217.07366306833976 39.5475 0.1144 6250 +6252 2 -539.6054248630311 -218.19531990022168 39.6197 0.1144 6251 +6253 2 -539.8247515774124 -219.31859641219847 39.7155 0.1144 6252 +6254 2 -540.0756338385409 -220.43302942546174 39.8516 0.1144 6253 +6255 2 -540.4325405404438 -221.49988389357665 40.0744 0.1144 6254 +6256 2 -540.8048063782176 -222.55962872419698 40.3648 0.1144 6255 +6257 2 -541.1755168805682 -223.6192288768239 40.6958 0.1144 6256 +6258 2 -541.5462238298857 -224.68052608200622 41.0399 0.1144 6257 +6259 2 -541.8804522375717 -225.77165759630486 41.3129 0.1144 6258 +6260 2 -542.2082357726807 -226.86765466478246 41.5097 0.1144 6259 +6261 2 -542.537574939299 -227.96365499020717 41.6413 0.1144 6260 +6262 2 -542.8661379186364 -229.05887587140379 41.7262 0.1144 6261 +6263 2 -543.1947011940598 -230.15395533155404 41.799 0.1144 6262 +6264 2 -543.514373300906 -231.24024803340956 41.9104 0.1144 6263 +6265 2 -543.800063792846 -232.3458443579399 42.0062 0.1144 6264 +6266 2 -544.0816480409799 -233.45383625375996 42.0787 0.1144 6265 +6267 2 -544.3188006171739 -234.573897388522 42.1299 0.1144 6266 +6268 2 -544.5331775949352 -235.69716353748495 42.1616 0.1144 6267 +6269 2 -544.7331228159946 -236.82365216972917 42.1758 0.1144 6268 +6270 2 -544.8609213930754 -237.96045495548233 42.1772 0.1144 6269 +6271 2 -544.9621277799902 -239.0996062348336 42.1772 0.1144 6270 +6272 2 -545.0260627631847 -240.2420028900825 42.1772 0.1144 6271 +6273 2 -544.8949935200267 -241.37663734817818 42.1772 0.1144 6272 +6274 2 -544.4221057730012 -242.41106601595246 42.1772 0.1144 6273 +6275 2 -544.1221044067324 -243.51380975782396 42.1772 0.1144 6274 +6276 2 -544.3996698504484 -244.6162070838615 42.1772 0.1144 6275 +6277 2 -544.7849094137168 -245.69365678518994 42.1772 0.1144 6276 +6278 2 -544.8731015113399 -246.83447787717452 42.1772 0.1144 6277 +6279 2 -535.1747254767794 -205.5440779845571 38.6523 0.1144 6208 +6280 2 -534.226506286392 -205.23386422441556 37.3996 0.1144 6279 +6281 2 -533.2407520251454 -205.42434599896106 36.8192 0.1144 6280 +6282 2 -532.2509273888979 -205.2961255268133 36.1208 0.1144 6281 +6283 2 -531.4629214235608 -204.58899373669706 35.5211 0.1144 6282 +6284 2 -530.7450502161257 -203.98814574465948 34.9311 0.1144 6283 +6285 2 -529.6688915958243 -204.12823355266224 34.3602 0.1144 6284 +6286 2 -528.5759506667489 -204.14461297731046 33.8192 0.1144 6285 +6287 2 -527.4903143362008 -203.8130396855727 33.3474 0.1144 6286 +6288 2 -526.3981259075174 -203.8415122381521 32.8289 0.1144 6287 +6289 2 -525.5215945308369 -204.41561682417662 32.205 0.1144 6288 +6290 2 -524.987927067436 -205.09721260505214 32.4982 0.1144 6289 +6291 2 -524.1999760561703 -205.91743492482007 32.6939 0.1144 6290 +6292 2 -523.3958458070229 -206.73118868512225 32.765 0.1144 6291 +6293 2 -522.518132215018 -207.46467301379596 32.8297 0.1144 6292 +6294 2 -521.4187835181153 -207.50196942941972 32.9375 0.1144 6293 +6295 2 -521.198514512145 -206.45725068018203 33.0316 0.1144 6294 +6296 2 -521.0010457878692 -205.32998941369007 33.0996 0.1144 6295 +6297 2 -520.4336196863627 -204.33701127730987 33.1794 0.1144 6296 +6298 2 -524.8009720961785 -204.3858237601002 31.612 0.1144 6289 +6299 2 -523.7744629879523 -204.75731065183217 31.003 0.1144 6298 +6300 2 -522.8958165275144 -205.22711233079897 30.2924 0.1144 6299 +6301 2 -522.2427582876619 -206.12610609349184 29.6537 0.1144 6300 +6302 2 -521.2492043203117 -206.56328163485105 29.1043 0.1144 6301 +6303 2 -520.2270824981255 -206.3928498871903 28.56 0.1144 6302 +6304 2 -519.350428635781 -207.0592318539604 28.1238 0.1144 6303 +6305 2 -519.14185079443 -208.16464188381244 27.7706 0.1144 6304 +6306 2 -519.2211318857064 -209.30615142760348 27.4687 0.1144 6305 +6307 2 -519.2293966251444 -210.39094362156598 27.1036 0.1144 6306 +6308 2 -519.0041141435662 -211.36932202151868 26.5612 0.1144 6307 +6309 2 -519.4968551707136 -212.0652290053647 26.024 0.1144 6308 +6310 2 -520.1877687237367 -212.80920999453645 25.4327 0.1144 6309 +6311 2 -520.5892887863366 -213.84476225750038 24.8868 0.1144 6310 +6312 2 -520.6977331100177 -214.9717664272626 24.4376 0.1144 6311 +6313 2 -521.2660573862827 -215.90725853680064 23.6191 0.1144 6312 +6314 2 -550.2987191051125 -201.96065098514154 43.6741 0.1144 6194 +6315 2 -551.2054143298351 -202.0086527503715 44.7756 0.1144 6314 +6316 2 -552.3125798493207 -202.12177464242578 45.6582 0.1144 6315 +6317 2 -553.3340782081441 -202.62376818115027 46.2949 0.1144 6316 +6318 2 -554.1275192468361 -203.43683617838022 46.7547 0.1144 6317 +6319 2 -554.889577154883 -204.21016969296696 47.1576 0.1144 6318 +6320 2 -555.5087706674977 -205.16599160312384 47.4158 0.1144 6319 +6321 2 -556.1304979155011 -206.12747568468214 47.5611 0.1144 6320 +6322 2 -556.7578229902342 -207.08338533031352 47.6451 0.1144 6321 +6323 2 -557.3908102363688 -208.03676124055616 47.684 0.1144 6322 +6324 2 -557.7364297002184 -209.1247346162452 47.6722 0.1144 6323 +6325 2 -557.9119731288558 -210.25435414717688 47.6176 0.1144 6324 +6326 2 -558.0859609259841 -211.38397042116137 47.5499 0.1144 6325 +6327 2 -558.2599487231123 -212.51358669514573 47.4762 0.1144 6326 +6328 2 -558.4339329672072 -213.64490002168563 47.4012 0.1144 6327 +6329 2 -558.6491602477629 -214.7673194208875 47.3348 0.1144 6328 +6330 2 -558.9315912456577 -215.87616161950191 47.2889 0.1144 6329 +6331 2 -559.214872546347 -216.98415706835524 47.2592 0.1144 6330 +6332 2 -559.4988591757511 -218.0930025239169 47.2422 0.1144 6331 +6333 2 -559.7821404764404 -219.2009979727703 47.2329 0.1144 6332 +6334 2 -560.0653509185635 -220.30906398410374 47.2282 0.1144 6333 +6335 2 -560.3494084065337 -221.41783887718535 47.224 0.1144 6334 +6336 2 -560.6326188486569 -222.5259048885188 47.2184 0.1144 6335 +6337 2 -560.8462872407562 -223.64987666228254 47.2105 0.1144 6336 +6338 2 -560.7540984223133 -224.7895422806786 47.199 0.1144 6337 +6339 2 -560.6610595971621 -225.9299132277895 47.1828 0.1144 6338 +6340 2 -560.5688675217721 -227.0711344776947 47.1604 0.1144 6339 +6341 2 -560.4767495618953 -228.2107295336107 47.1313 0.1144 6340 +6342 2 -561.1657517009343 -228.31406637312014 47.5154 0.1144 6341 +6343 2 -562.2942767520161 -228.2897711250134 48.0127 0.1144 6342 +6344 2 -563.3006869128038 -227.8251159859444 48.2138 0.1144 6343 +6345 2 -564.0144092498633 -226.962665311655 48.4635 0.1144 6344 +6346 2 -564.5591291034323 -226.03438257394632 48.8202 0.1144 6345 +6347 2 -565.3736547276688 -225.28775515852274 49.1529 0.1144 6346 +6348 2 -566.3913881409009 -224.85232730044393 49.4908 0.1144 6347 +6349 2 -566.6146165324606 -223.74051325789836 49.7356 0.1144 6348 +6350 2 -566.8232349376087 -222.61572854470492 49.8985 0.1144 6349 +6351 2 -567.0318533427568 -221.4909438315116 49.9926 0.1144 6350 +6352 2 -567.3011867719229 -220.37837778676024 50.034 0.1144 6351 +6353 2 -567.8710687246594 -219.3877807748805 50.05 0.1144 6352 +6354 2 -568.4442739239407 -218.39726143154738 50.0503 0.1144 6353 +6355 2 -568.997207261495 -217.39616373190907 50.0503 0.1144 6354 +6356 2 -569.3109214357897 -216.29585286817715 50.0503 0.1144 6355 +6357 2 -569.7314047448979 -215.23133309064295 50.0503 0.1144 6356 +6358 2 -570.3159067509739 -214.24889843383713 50.0503 0.1144 6357 +6359 2 -570.901188201278 -213.26568758975034 50.0503 0.1144 6358 +6360 2 -560.2268344347146 -229.3362763159375 47.0212 0.1144 6341 +6361 2 -559.9794197872925 -230.44959535926742 46.9216 0.1144 6360 +6362 2 -559.8710552840012 -231.58109536564226 46.8227 0.1144 6361 +6363 2 -559.7756173345269 -232.71905712150235 46.7424 0.1144 6362 +6364 2 -559.5363274392427 -233.83571658437134 46.6791 0.1144 6363 +6365 2 -559.2419778813614 -234.94087632747423 46.6304 0.1144 6364 +6366 2 -558.946001833405 -236.04610337610998 46.5917 0.1144 6365 +6367 2 -558.6500966440146 -237.15125986226556 46.5536 0.1144 6366 +6368 2 -558.3557470861334 -238.25641960536842 46.5046 0.1144 6367 +6369 2 -558.0597710381768 -239.36164665400412 46.4349 0.1144 6368 +6370 2 -557.7637949902203 -240.46687370263982 46.3369 0.1144 6369 +6371 2 -557.4694454323391 -241.5720334457427 46.2064 0.1144 6370 +6372 2 -557.1759426242188 -242.6780434916399 46.0379 0.1144 6371 +6373 2 -556.7111433188544 -243.66560781143514 45.7534 0.1144 6372 +6374 2 -556.0041428828566 -244.45842238843224 45.3278 0.1144 6373 +6375 2 -555.2057324479163 -245.20833624173696 44.8342 0.1144 6374 +6376 2 -554.3927453761803 -245.99689840237502 44.3836 0.1144 6375 +6377 2 -553.8431120964684 -246.97537554458793 44.0082 0.1144 6376 +6378 2 -553.5252344397622 -248.0716471739604 43.6979 0.1144 6377 +6379 2 -553.3352886461879 -249.19406681273347 43.4168 0.1144 6378 +6380 2 -553.591209577884 -250.19848431891293 43.0489 0.1144 6379 +6381 2 -554.1360766138903 -251.1250177522405 42.6059 0.1144 6380 +6382 2 -554.341771943926 -252.20697059834865 42.2064 0.1144 6381 +6383 2 -554.5400269224106 -253.33020299349494 41.8799 0.1144 6382 +6384 2 -554.994849395586 -254.3722308280054 41.6161 0.1144 6383 +6385 2 -555.5574066859664 -255.36031972331796 41.37 0.1144 6384 +6386 2 -556.1337745867751 -256.33790161907774 41.1278 0.1144 6385 +6387 2 -556.7109219318119 -257.3147073275567 40.8727 0.1144 6386 +6388 2 -557.4946689668957 -258.13093701642947 40.6224 0.1144 6387 +6389 2 -558.3756843834288 -258.8600424723347 40.3869 0.1144 6388 +6390 2 -559.2453760493313 -259.59393255692487 40.126 0.1144 6389 +6391 2 -560.0883172271133 -260.33823183866537 39.8146 0.1144 6390 +6392 2 -560.9264497932355 -261.08266247452445 39.4612 0.1144 6391 +6393 2 -561.7637323526494 -261.8277984390983 39.0816 0.1144 6392 +6394 2 -562.5978058466426 -262.58586776746995 38.7016 0.1144 6393 +6395 2 -563.4107261810586 -263.3827837667402 38.369 0.1144 6394 +6396 2 -564.2179710201983 -264.188597448482 38.0985 0.1144 6395 +6397 2 -564.8218827694028 -265.1483471706351 37.8952 0.1144 6396 +6398 2 -565.0824726541005 -266.25311312412623 37.7588 0.1144 6397 +6399 2 -565.2709595134634 -267.3811334049047 37.6712 0.1144 6398 +6400 2 -565.4563315567748 -268.51084422434417 37.6121 0.1144 6399 +6401 2 -565.6415657320731 -269.63885769514206 37.5659 0.1144 6400 +6402 2 -565.7630003620709 -270.7756471570203 37.5172 0.1144 6401 +6403 2 -565.5560422008147 -271.884242565404 37.4259 0.1144 6402 +6404 2 -565.3449573658107 -273.0049915972712 37.3251 0.1144 6403 +6405 2 -565.0441798122608 -274.10695589491456 37.2431 0.1144 6404 +6406 2 -564.797463683573 -275.22437762901734 37.1834 0.1144 6405 +6407 2 -564.8719465262034 -276.3610687903069 37.144 0.1144 6406 +6408 2 -564.3949794792079 -277.3850237141587 37.1227 0.1144 6407 +6409 2 -563.5521172384724 -278.1566234375531 37.1165 0.1144 6408 +6410 2 -562.6712991934297 -278.88684856826774 37.116 0.1144 6409 +6411 2 -561.7444343457588 -279.55623668748694 37.116 0.1144 6410 +6412 2 -560.7297602723612 -280.084019298772 37.116 0.1144 6411 +6413 2 -559.6940991436944 -280.57131137398835 37.116 0.1144 6412 +6414 2 -558.6190453097418 -280.9605157600167 37.116 0.1144 6413 +6415 2 -557.4869694158821 -281.1272151917542 37.116 0.1144 6414 +6416 2 -556.3629303365854 -281.3392570937781 37.116 0.1144 6415 +6417 2 -555.2206146068304 -281.39831319891874 37.116 0.1144 6416 +6418 2 -554.0782920670949 -281.460621988124 37.116 0.1144 6417 +6419 2 -552.9367184747182 -281.5367209578159 37.116 0.1144 6418 +6420 2 -515.8862749537868 -247.77116592147345 19.57 0.1144 4582 +6421 2 -516.5743866113908 -248.67134127476274 19.9746 0.1144 6420 +6422 2 -516.941030935546 -249.74797422501308 20.125 0.1144 6421 +6423 2 -517.3174265019145 -250.82788028926967 20.3042 0.1144 6422 +6424 2 -517.2545365233148 -251.88826969443724 20.6438 0.1144 6423 +6425 2 -517.9987012640161 -252.66319209616336 21.0825 0.1144 6424 +6426 2 -518.2105530462014 -252.69595049027654 21.5008 0.1144 6425 +6427 2 -519.2655718682715 -253.02738896884824 21.9445 0.1144 6426 +6428 2 -520.253685277301 -253.60143766094328 22.3503 0.1144 6427 +6429 2 -521.2125883762344 -254.21247767342692 22.7641 0.1144 6428 +6430 2 -521.9162893226028 -255.02938830383894 23.209 0.1144 6429 +6431 2 -522.2652098406676 -256.0267173027522 23.7799 0.1144 6430 +6432 2 -523.0337628103448 -256.3996996787439 24.5275 0.1144 6431 +6433 2 -523.7755455997175 -257.16401046853446 25.2636 0.1144 6432 +6434 2 -524.2463023959618 -257.9917471288255 26.1504 0.1144 6433 +6435 2 -524.8917921115329 -258.37734122511324 27.2136 0.1144 6434 +6436 2 -525.9791869865618 -258.64577342467396 28.1114 0.1144 6435 +6437 2 -526.9259424777197 -259.28358741006656 28.8355 0.1144 6436 +6438 2 -526.7603380940448 -259.58736798565974 29.4669 0.1144 6437 +6439 2 -525.9569540334953 -260.38245564828253 30.0535 0.1144 6438 +6440 2 -525.0327343626204 -260.1937026351467 30.7734 0.1144 6439 +6441 2 -525.036488376985 -259.54896911858634 31.5932 0.1144 6440 +6442 2 -525.7940868154112 -259.75038407854254 32.4128 0.1144 6441 +6443 2 -526.2959762534509 -260.73749742663597 33.1915 0.1144 6442 +6444 2 -526.9962720314079 -261.6272330859054 33.845 0.1144 6443 +6445 2 -527.0863782127053 -262.66439610399465 34.4294 0.1144 6444 +6446 2 -526.4802349515567 -263.5472953094332 34.9961 0.1144 6445 +6447 2 -526.3025758322441 -264.54274401595967 35.6185 0.1144 6446 +6448 2 -526.1450091464754 -265.63447223284146 36.2454 0.1144 6447 +6449 2 -526.4922487886064 -266.69161907738714 36.8477 0.1144 6448 +6450 2 -526.2101171048946 -267.7702171271934 37.4287 0.1144 6449 +6451 2 -525.5506823508858 -268.20236461961395 37.9708 0.1144 6450 +6452 2 -524.5563310660262 -268.7164011672428 38.4748 0.1144 6451 +6453 2 -523.5156860052513 -268.848502293221 40.0674 0.1144 6452 +6454 2 -523.0482151487018 -268.03866235330884 40.5863 0.1144 6453 +6455 2 -522.5164271508597 -267.0457588306284 41.095 0.1144 6454 +6456 2 -522.1300699190392 -266.0968590838586 41.6825 0.1144 6455 +6457 2 -521.8395574915643 -264.9977580605296 42.1291 0.1144 6456 +6458 2 -521.5612294805284 -263.8880759221347 42.4334 0.1144 6457 +6459 2 -521.0471765541777 -262.8677737272384 42.609 0.1144 6458 +6460 2 -520.5291656150475 -261.84661471565323 42.7003 0.1144 6459 +6461 2 -520.378729603633 -260.7145728716962 42.7395 0.1144 6460 +6462 2 -524.6320942415132 -268.83627322920944 38.8662 0.1144 6452 +6463 2 -524.7819370468629 -269.8801374223327 39.2372 0.1144 6462 +6464 2 -524.1362823498981 -270.7216587781445 39.5867 0.1144 6463 +6465 2 -523.1441746501678 -271.2786214987424 39.9087 0.1144 6464 +6466 2 -522.1352879925964 -271.7440492720591 40.2973 0.1144 6465 +6467 2 -521.1409172741681 -272.19982005253144 40.7876 0.1144 6466 +6468 2 -520.0454487193979 -272.2751670200176 41.2782 0.1144 6467 +6469 2 -519.1360128325662 -272.7593999574998 41.8121 0.1144 6468 +6470 2 -518.2756601955809 -273.37398501266523 42.4393 0.1144 6469 +6471 2 -517.268362425149 -273.85730595332757 43.0472 0.1144 6470 +6472 2 -516.3596822956566 -274.3520763872318 43.7086 0.1144 6471 +6473 2 -516.1504330489522 -274.22457092556994 44.2487 0.1144 6472 +6474 2 -515.1849434542953 -273.652266659808 44.7252 0.1144 6473 +6475 2 -514.1578437157089 -273.15754460956595 45.0811 0.1144 6474 +6476 2 -513.1100112033073 -272.9061658396707 45.4261 0.1144 6475 +6477 2 -512.9146646448961 -273.4672008672019 45.7629 0.1144 6476 +6478 2 -513.363878928328 -274.5197528742593 46.0191 0.1144 6477 +6479 2 -513.7547803669117 -275.59481026124536 46.2437 0.1144 6478 +6480 2 -514.1213405086257 -276.67787772105874 46.4442 0.1144 6479 +6481 2 -514.701764224616 -277.64337655581517 46.5842 0.1144 6480 +6482 2 -514.7081786003234 -277.65307736940395 45.5515 0.1144 6481 +6483 2 -515.2132461087281 -278.67583563114226 45.376 0.1144 6482 +6484 2 -515.3443851053479 -279.80451366475745 45.3076 0.1144 6483 +6485 2 -515.0516786183641 -280.9016865237353 45.2192 0.1144 6484 +6486 2 -514.490647472508 -281.8865744886224 45.071 0.1144 6485 +6487 2 -513.868176042164 -282.8341399208778 44.861 0.1144 6486 +6488 2 -513.2401269189457 -283.7776631579127 44.6051 0.1144 6487 +6489 2 -512.6136334272367 -284.72118965189475 44.3212 0.1144 6488 +6490 2 -512.0453139159898 -285.7085372366572 44.0485 0.1144 6489 +6491 2 -511.60229778493067 -286.7616253942306 43.8301 0.1144 6490 +6492 2 -511.4082868095337 -287.83305401127683 43.5551 0.1144 6491 +6493 2 -511.35415564901984 -288.9654453824297 43.3205 0.1144 6492 +6494 2 -511.0969862063512 -290.0771883643088 43.167 0.1144 6493 +6495 2 -510.25832851001053 -290.799440729046 43.1614 0.1144 6494 +6496 2 -509.4896736867113 -290.47510719297725 43.1805 0.1144 6495 +6497 2 -508.4422108918758 -290.01336446868646 43.2144 0.1144 6496 +6498 2 -507.40540352972016 -289.52830947821656 43.2594 0.1144 6497 +6499 2 -506.3213870813671 -289.1660510763817 43.2947 0.1144 6498 +6500 2 -505.20145480057795 -288.9363710022645 43.3135 0.1144 6499 +6501 2 -504.0726988963157 -289.10470373405786 43.318 0.1144 6500 +6502 2 -502.96223701760647 -289.38394935342103 43.3241 0.1144 6501 +6503 2 -501.8438023729197 -289.6210346240823 43.3336 0.1144 6502 +6504 2 -500.70832767895746 -289.48600381511153 43.3471 0.1144 6503 +6505 2 -499.60965337222865 -289.16741401971007 43.3633 0.1144 6504 +6506 2 -498.5386582252482 -288.76636263254835 43.381 0.1144 6505 +6507 2 -497.47341268905757 -288.3547873689257 43.4193 0.1144 6506 +6508 2 -496.451884129451 -287.86721877692264 43.5025 0.1144 6507 +6509 2 -496.43945923457534 -288.3979482767503 43.5473 0.1144 6508 +6510 2 -496.36508621101746 -289.53920683350543 43.5523 0.1144 6509 +6511 2 -496.28823669067594 -290.6812380245082 43.5179 0.1144 6510 +6512 2 -496.0715640958699 -291.80275317672863 43.4417 0.1144 6511 +6513 2 -495.58489999041944 -292.7975549351037 43.2298 0.1144 6512 +6514 2 -495.0789015633242 -293.80681193496906 42.9523 0.1144 6513 +6515 2 -494.69721123954287 -294.88435301387585 42.7034 0.1144 6514 +6516 2 -494.3317001536434 -295.9683626522484 42.4824 0.1144 6515 +6517 2 -493.8015335460674 -296.86916934528045 42.1266 0.1144 6516 +6518 2 -493.26490368093516 -295.8585072663202 41.6147 0.1144 6517 +6519 2 -492.3327682431168 -295.2288556360015 41.7298 0.1144 6518 +6520 2 -491.46231075294713 -294.48923637056316 41.7676 0.1144 6519 +6521 2 -491.12967478543385 -293.4143009710547 41.8443 0.1144 6520 +6522 2 -491.0470535707044 -292.2807747583553 41.9577 0.1144 6521 +6523 2 -490.8019037473715 -291.16402028931566 42.0473 0.1144 6522 +6524 2 -490.7484356981189 -290.0207970181612 42.1772 0.1144 6523 +6525 2 -494.2693972523706 -297.8966580519455 41.8449 0.1144 6517 +6526 2 -494.4733446030399 -299.0029317649817 41.6262 0.1144 6525 +6527 2 -494.4087296316758 -300.14421075167854 41.4417 0.1144 6526 +6528 2 -494.35698071857666 -301.2870723137205 41.2714 0.1144 6527 +6529 2 -494.46463899014924 -302.3842348661994 41.0998 0.1144 6528 +6530 2 -494.9147678270614 -303.40525175645143 40.8696 0.1144 6529 +6531 2 -495.09532574119123 -304.4701813736775 40.5392 0.1144 6530 +6532 2 -494.85040822259475 -305.53909924193704 40.1685 0.1144 6531 +6533 2 -494.1577881183014 -306.38702766528934 39.8112 0.1144 6532 +6534 2 -493.148003784158 -306.87592955577315 39.5329 0.1144 6533 +6535 2 -492.0360135138617 -307.14216118193065 39.3257 0.1144 6534 +6536 2 -490.91117505858165 -307.3307254137542 39.1563 0.1144 6535 +6537 2 -489.7785800741707 -307.40762100066866 38.9939 0.1144 6536 +6538 2 -488.6618767340424 -307.59457591541127 38.8508 0.1144 6537 +6539 2 -487.5396035073934 -307.7062121315184 38.7321 0.1144 6538 +6540 2 -486.42222553752003 -307.8438801831563 38.598 0.1144 6539 +6541 2 -485.38424670821064 -308.28987227939285 38.4426 0.1144 6540 +6542 2 -484.4590249314373 -308.9512735144871 38.3006 0.1144 6541 +6543 2 -483.61855855807744 -309.7268380606414 38.1811 0.1144 6542 +6544 2 -482.77724869190376 -310.4999966724921 38.0708 0.1144 6543 +6545 2 -481.95533995472124 -311.294338442603 37.9624 0.1144 6544 +6546 2 -481.36765306829994 -312.24438086982855 37.8084 0.1144 6545 +6547 2 -480.79130305428407 -313.217145209915 37.6166 0.1144 6546 +6548 2 -480.0646708382153 -314.0989436237097 37.4108 0.1144 6547 +6549 2 -479.3153777030243 -314.9629461743747 37.1832 0.1144 6548 +6550 2 -478.6565224786042 -315.8950911809345 36.9244 0.1144 6549 +6551 2 -478.20465929579836 -316.9183208443164 36.5722 0.1144 6550 +6552 2 -477.9104453453557 -317.9587097482196 36.0749 0.1144 6551 +6553 2 -477.6510325196581 -318.99365606850074 35.4502 0.1144 6552 +6554 2 -477.1332330136512 -319.7966248609075 34.6884 0.1144 6553 +6555 2 -476.26802468731466 -320.43382721655115 33.9455 0.1144 6554 +6556 2 -475.62788944824604 -321.34097978128466 33.2968 0.1144 6555 +6557 2 -474.75607795137796 -321.9911083946595 32.6973 0.1144 6556 +6558 2 -474.3550603180329 -323.04598154236317 32.2585 0.1144 6557 +6559 2 -473.9386868057643 -324.1064086960523 31.918 0.1144 6558 +6560 2 -473.48430656237764 -325.14978567702315 31.6473 0.1144 6559 +6561 2 -473.06305061902185 -326.2118289577737 31.437 0.1144 6560 +6562 2 -472.44546161976496 -327.1577782629676 31.2256 0.1144 6561 +6563 2 -471.87713204159036 -328.1499341633038 30.9299 0.1144 6562 +6564 2 -496.3393166285406 -287.1559856732647 43.8642 0.1144 6508 +6565 2 -496.53091535783983 -286.05464132342183 44.0972 0.1144 6564 +6566 2 -496.9133750589217 -284.9811323728078 44.2011 0.1144 6565 +6567 2 -497.73521243935164 -284.2208730748522 44.2915 0.1144 6566 +6568 2 -498.77965301814623 -283.7619544247983 44.3677 0.1144 6567 +6569 2 -499.60155444716185 -283.0048772484273 44.3576 0.1144 6568 +6570 2 -500.40087963768286 -282.18955778968814 44.3803 0.1144 6569 +6571 2 -501.17350852384163 -281.3587674766288 44.4679 0.1144 6570 +6572 2 -501.57126992008875 -280.30558457150005 44.6236 0.1144 6571 +6573 2 -501.9424260043953 -279.2272436184235 44.8008 0.1144 6572 +6574 2 -502.37746206131 -278.16925970588784 44.9646 0.1144 6573 +6575 2 -502.8204817454024 -277.11447449575894 45.1153 0.1144 6574 +6576 2 -503.15037841452624 -276.01907655998355 45.2418 0.1144 6575 +6577 2 -503.6241701499178 -274.9919330006528 45.4065 0.1144 6576 +6578 2 -504.17865536384755 -274.026406099146 45.6305 0.1144 6577 +6579 2 -504.2902826181314 -272.8901045871779 45.8144 0.1144 6578 +6580 2 -504.1154480712421 -271.75963801039904 45.9525 0.1144 6579 +6581 2 -503.96494445820866 -270.62611109741295 46.1138 0.1144 6580 +6582 2 -511.1283157214509 -291.72990754840623 43.4006 0.1144 6495 +6583 2 -512.0548560913005 -292.3975898928179 43.4353 0.1144 6582 +6584 2 -513.0250861978118 -293.0022896451074 43.4764 0.1144 6583 +6585 2 -514.0587492434192 -293.4355777226556 43.5977 0.1144 6584 +6586 2 -514.9867880061729 -294.0968285183654 43.7046 0.1144 6585 +6587 2 -515.5000647452426 -295.11635126903354 43.7912 0.1144 6586 +6588 2 -515.8480127709352 -296.2066629774072 43.8589 0.1144 6587 +6589 2 -515.9424358213779 -297.07328050408495 43.8642 0.1144 6588 +6590 2 -516.0654260828849 -298.2100732229103 43.5562 0.1144 6589 +6591 2 -516.0290970972949 -299.3505629005515 43.4311 0.1144 6590 +6592 2 -515.708071368907 -300.43063515818653 43.2309 0.1144 6591 +6593 2 -515.4348240437919 -301.5212726503523 42.9761 0.1144 6592 +6594 2 -515.8881246392748 -302.5471752286388 42.6936 0.1144 6593 +6595 2 -516.2555315307499 -303.63109299124653 42.4794 0.1144 6594 +6596 2 -516.623717866453 -304.7142345665733 42.3287 0.1144 6595 +6597 2 -517.0001134328215 -305.79414063082993 42.2363 0.1144 6596 +6598 2 -517.3845026932955 -306.87243708191943 42.1915 0.1144 6597 +6599 2 -517.7688952107168 -307.9491779014998 42.1772 0.1144 6598 +6600 2 -518.1541347739851 -309.0266276028283 42.1772 0.1144 6599 +6601 2 -516.2488173113512 -296.030371484754 43.9135 0.1144 6588 +6602 2 -517.2965138311577 -295.5699040131716 43.9606 0.1144 6601 +6603 2 -518.3434309067359 -295.11021272887007 44.0 0.1144 6602 +6604 2 -519.3911241695951 -294.6513008887967 44.0437 0.1144 6603 +6605 2 -520.4388915479676 -294.1907628547342 44.0902 0.1144 6604 +6606 2 -521.4858086235458 -293.7310715704327 44.1367 0.1144 6605 +6607 2 -522.5326551366439 -293.2713094275649 44.1806 0.1144 6606 +6608 2 -523.5803516564504 -292.8108419559825 44.2196 0.1144 6607 +6609 2 -524.6273395905947 -292.3510801092009 44.252 0.1144 6608 +6610 2 -525.6742566661729 -291.8913888248994 44.2767 0.1144 6609 +6611 2 -526.7025926207855 -291.39036351171535 44.2848 0.1144 6610 +6612 2 -527.7036012599348 -290.8375206548848 44.2686 0.1144 6611 +6613 2 -528.7038369687502 -290.28234272231686 44.2324 0.1144 6612 +6614 2 -529.7031553653245 -289.7262436283883 44.1818 0.1144 6613 +6615 2 -530.7033913702261 -289.17092427477405 44.1213 0.1144 6614 +6616 2 -531.7027803292805 -288.6148960394117 44.0546 0.1144 6615 +6617 2 -532.7029454756159 -288.05964724827754 43.9866 0.1144 6616 +6618 2 -533.7023311777231 -287.50517464442436 43.9186 0.1144 6617 +6619 2 -534.7017201367773 -286.94914640906205 43.8508 0.1144 6618 +6620 2 -535.701956141679 -286.3938270554478 43.7839 0.1144 6619 +6621 2 -536.7013451007333 -285.8377988200855 43.7178 0.1144 6620 +6622 2 -537.7015102470688 -285.2825500289513 43.6531 0.1144 6621 +6623 2 -538.7008959491759 -284.7280774250981 43.5901 0.1144 6622 +6624 2 -539.7002849082304 -284.1720491897358 43.5296 0.1144 6623 +6625 2 -540.7004500545657 -283.61680039860164 43.4725 0.1144 6624 +6626 2 -541.6999098721864 -283.0607016007592 43.4196 0.1144 6625 +6627 2 -542.5871390359893 -282.3417329151423 43.3728 0.1144 6626 +6628 2 -542.7739163279401 -281.2128719568258 43.3409 0.1144 6627 +6629 2 -542.9615403696521 -280.0848613013035 43.3205 0.1144 6628 +6630 2 -543.1483885201691 -278.95592978050684 43.3087 0.1144 6629 +6631 2 -543.33516581212 -277.8270688221902 43.302 0.1144 6630 +6632 2 -514.8691194594478 -276.5371024011074 47.2483 0.1144 6481 +6633 2 -515.0247376074386 -275.63303665570174 47.9111 0.1144 6632 +6634 2 -514.9525928953925 -274.5278874211982 48.5657 0.1144 6633 +6635 2 -515.3244336763719 -273.4940250156526 49.0706 0.1144 6634 +6636 2 -516.126120684366 -272.69893379999644 49.4626 0.1144 6635 +6637 2 -516.9818989138047 -271.9726160513362 49.8187 0.1144 6636 +6638 2 -517.7072574239411 -271.2938964834934 50.1724 0.1144 6637 +6639 2 -517.1303776842332 -270.5945606443471 50.6806 0.1144 6638 +6640 2 -517.1215747493169 -270.5436304142587 51.7373 0.1144 6639 +6641 2 -517.0673910083357 -269.404506873016 52.1842 0.1144 6640 +6642 2 -517.1255006115705 -268.26321426635815 52.3401 0.1144 6641 +6643 2 -516.4846730955353 -267.5759068062705 52.6649 0.1144 6642 +6644 2 -515.5688151961874 -266.90577194805013 53.0177 0.1144 6643 +6645 2 -514.9616170091017 -265.96213741519335 53.4282 0.1144 6644 +6646 2 -514.3997985991523 -264.99264701594126 53.8768 0.1144 6645 +6647 2 -513.8389010544774 -264.0223807254943 54.3301 0.1144 6646 +6648 2 -513.0707547566153 -263.8266712594975 54.959 0.1144 6647 +6649 2 -512.7327115803973 -263.8145790714243 55.3829 0.1144 6648 +6650 2 -511.5888477294004 -263.80249683724907 55.6346 0.1144 6649 +6651 2 -510.4528107679144 -263.9360245951781 55.7253 0.1144 6650 +6652 2 -509.39167567233517 -263.8577888045825 55.5467 0.1144 6651 +6653 2 -508.2478726129767 -263.85044432350094 55.3134 0.1144 6652 +6654 2 -507.2566759702084 -263.9722544846726 54.8685 0.1144 6653 +6655 2 -507.3211225902017 -264.870275571937 53.9137 0.1144 6654 +6656 2 -507.4044358097709 -266.01101573842755 53.7894 0.1144 6655 +6657 2 -507.4869728420591 -267.15097646069 53.7359 0.1144 6656 +6658 2 -507.5688009925992 -268.29178422879954 53.6743 0.1144 6657 +6659 2 -507.6521142121685 -269.43252439529016 53.6091 0.1144 6658 +6660 2 -507.7346512444567 -270.57248511755256 53.5441 0.1144 6659 +6661 2 -507.3336875927695 -271.6353487024146 53.4932 0.1144 6660 +6662 2 -507.11043877126815 -272.756920797154 53.4596 0.1144 6661 +6663 2 -507.43172049128134 -273.85120719311504 53.4391 0.1144 6662 +6664 2 -508.2600743731677 -274.63924593985524 53.4246 0.1144 6663 +6665 2 -506.41187148997756 -262.9358448503185 54.2822 0.1144 6654 +6666 2 -505.797503465931 -261.97183058640474 54.1274 0.1144 6665 +6667 2 -505.54258197044317 -260.8615610555528 54.0526 0.1144 6666 +6668 2 -505.3888259694313 -259.72788591153983 54.0257 0.1144 6667 +6669 2 -505.4559141806318 -258.58738992210465 54.042 0.1144 6668 +6670 2 -505.00023814771475 -257.54776446886433 54.0649 0.1144 6669 +6671 2 -504.37779876101604 -256.5886830646623 54.0957 0.1144 6670 +6672 2 -503.73348095427014 -255.64334446716924 54.1344 0.1144 6671 +6673 2 -503.6451338156397 -254.50902844722776 54.1811 0.1144 6672 +6674 2 -503.8115944287464 -253.45854326680674 54.3127 0.1144 6673 +6675 2 -503.96040860822325 -252.32557230955032 54.4281 0.1144 6674 +6676 2 -504.07847392510337 -251.1876579274679 54.5278 0.1144 6675 +6677 2 -504.1455653932511 -250.04560630652344 54.6188 0.1144 6676 +6678 2 -504.21103066740955 -248.90348057006562 54.7005 0.1144 6677 +6679 2 -504.2765665040481 -247.76142569217402 54.7725 0.1144 6678 +6680 2 -504.3411814754122 -246.62014670547717 54.8341 0.1144 6679 +6681 2 -504.40671731205066 -245.4780918275856 54.8988 0.1144 6680 +6682 2 -504.4721825862092 -244.33596609112774 54.9646 0.1144 6681 +6683 2 -504.5384237515625 -243.19476121994435 55.0306 0.1144 6682 +6684 2 -504.603959588201 -242.05270634205274 55.097 0.1144 6683 +6685 2 -504.6694248623595 -240.9105806055949 55.1636 0.1144 6684 +6686 2 -504.7341103962036 -239.76937247746432 55.2308 0.1144 6685 +6687 2 -504.7995756703621 -238.6272467410065 55.2986 0.1144 6686 +6688 2 -504.8651115070006 -237.48519186311484 55.3675 0.1144 6687 +6689 2 -504.9297264783647 -236.34391287641813 55.4372 0.1144 6688 +6690 2 -504.99526231500323 -235.20185799852646 55.5086 0.1144 6689 +6691 2 -505.06079815164185 -234.0598031206348 55.5834 0.1144 6690 +6692 2 -505.12541312300584 -232.91852413393804 55.6623 0.1144 6691 +6693 2 -505.1035543060721 -231.77458922227464 55.7444 0.1144 6692 +6694 2 -504.72397336117194 -230.69630283811287 55.8219 0.1144 6693 +6695 2 -504.4432326058519 -229.5907168765964 55.9275 0.1144 6694 +6696 2 -504.2570606883708 -228.4715402966317 56.0776 0.1144 6695 +6697 2 -504.0207548619377 -227.35232946466405 56.2083 0.1144 6696 +6698 2 -503.6274474890505 -226.27811557049193 56.3245 0.1144 6697 +6699 2 -503.3401340600684 -225.17088949893898 56.4354 0.1144 6698 +6700 2 -503.2749821678751 -223.8667039097901 56.2859 0.1144 6699 +6701 2 -503.2118266289088 -222.7235310672602 56.3052 0.1144 6700 +6702 2 -503.25954341371516 -221.5814388825186 56.3307 0.1144 6701 +6703 2 -503.3120685140953 -220.4393567647048 56.371 0.1144 6702 +6704 2 -503.14614171660537 -219.3097573676287 56.4298 0.1144 6703 +6705 2 -502.96083697882705 -218.18167303826456 56.5037 0.1144 6704 +6706 2 -502.77560280352867 -217.05365956746667 56.5886 0.1144 6705 +6707 2 -502.5893804574229 -215.92479549778827 56.6815 0.1144 6706 +6708 2 -502.4057019136337 -214.7967852839376 56.7792 0.1144 6707 +6709 2 -502.2203971758553 -213.6687009545735 56.8789 0.1144 6708 +6710 2 -502.035163000557 -212.54068748377554 56.98 0.1144 6709 +6711 2 -501.8497874042124 -211.41267371689153 57.0828 0.1144 6710 +6712 2 -501.6637064791529 -210.28380994329925 57.1878 0.1144 6711 +6713 2 -501.47833088280834 -209.1557961764152 57.2964 0.1144 6712 +6714 2 -501.2947231975853 -208.02771540008447 57.4092 0.1144 6713 +6715 2 -501.10934760124076 -206.89970163320046 57.5282 0.1144 6714 +6716 2 -500.92326667618136 -205.77083785960812 57.6579 0.1144 6715 +6717 2 -500.73789107983663 -204.64282409272408 57.8012 0.1144 6716 +6718 2 -500.5526569045383 -203.5148106219262 57.9597 0.1144 6717 +6719 2 -500.36735216675993 -202.3867262925621 58.1314 0.1144 6718 +6720 2 -500.15041776672103 -201.26911165590067 58.3386 0.1144 6719 +6721 2 -499.7957375709386 -200.2871148490221 58.6891 0.1144 6720 +6722 2 -499.7706593255704 -199.16106303777661 59.0248 0.1144 6721 +6723 2 -499.8951558950664 -198.02478846964456 59.2816 0.1144 6722 +6724 2 -500.02368459285515 -196.88774452421202 59.467 0.1144 6723 +6725 2 -500.1530603364911 -195.75140946052767 59.5904 0.1144 6724 +6726 2 -500.28165989284605 -194.614294952615 59.6627 0.1144 6725 +6727 2 -500.41103534039587 -193.4781013099769 59.6988 0.1144 6726 +6728 2 -500.53963489675084 -192.34098680206432 59.7338 0.1144 6727 +6729 2 -500.6690106403868 -191.20465173837988 59.7808 0.1144 6728 +6730 2 -500.83154088483684 -190.07255802775384 59.8514 0.1144 6729 +6731 2 -501.04178222702694 -188.94940306158307 59.9558 0.1144 6730 +6732 2 -501.25279975649806 -187.82702753964048 60.086 0.1144 6731 +6733 2 -501.4647348942965 -186.70543175801222 60.2403 0.1144 6732 +6734 2 -501.7468766449359 -185.6220253926321 60.4674 0.1144 6733 +6735 2 -502.1737876536266 -184.56084248160371 60.6553 0.1144 6734 +6736 2 -502.65156464171963 -183.52154500270328 60.8045 0.1144 6735 +6737 2 -503.11648238152833 -182.47741226439308 60.935 0.1144 6736 +6738 2 -503.54018106785117 -181.43071834867163 61.2976 0.1144 6737 +6739 2 -504.05812281860466 -224.97256390145944 56.572 0.1144 6699 +6740 2 -505.1291140273952 -224.59869526049917 56.726 0.1144 6739 +6741 2 -506.01072138149334 -223.8967561155586 56.8904 0.1144 6740 +6742 2 -506.942259731572 -223.25799557174528 57.0758 0.1144 6741 +6743 2 -507.9250695343951 -222.92028767803407 57.4126 0.1144 6742 +6744 2 -508.98256866489737 -222.81007148599747 57.8662 0.1144 6743 +6745 2 -510.11648517068994 -222.87877227122618 58.2789 0.1144 6744 +6746 2 -511.2357569398815 -223.01864820443416 58.69 0.1144 6745 +6747 2 -512.3730408090494 -223.0663549223127 59.0005 0.1144 6746 +6748 2 -513.4970730218506 -223.26288019952966 59.2668 0.1144 6747 +6749 2 -514.5962758422866 -223.3290334273082 59.5753 0.1144 6748 +6750 2 -515.6490691546088 -223.50759042529322 59.9508 0.1144 6749 +6751 2 -515.6602711573332 -223.9662443418087 60.7351 0.1144 6750 +6752 2 -515.6877885926352 -225.10934257063874 60.7351 0.1144 6751 +6753 2 -515.7162236362643 -226.25322053978311 60.7351 0.1144 6752 +6754 2 -515.7437410715662 -227.39631876861313 60.7351 0.1144 6753 +6755 2 -515.6062337658118 -228.53256609682307 60.7351 0.1144 6754 +6756 2 -515.4696473253318 -229.66803753383815 60.7351 0.1144 6755 +6757 2 -515.3329194638056 -230.80350867476704 60.7351 0.1144 6756 +6758 2 -515.1954121580513 -231.939756002977 60.7351 0.1144 6757 +6759 2 -515.853614811152 -222.80826426791796 60.2294 0.1144 6750 +6760 2 -516.0574249007266 -221.68346948779686 60.4204 0.1144 6759 +6761 2 -516.2175527639063 -220.55052221742923 60.5388 0.1144 6760 +6762 2 -516.3728017490323 -219.41749402156765 60.5847 0.1144 6761 +6763 2 -516.5288301783864 -218.28368963842502 60.5662 0.1144 6762 +6764 2 -516.6007972676408 -217.14327457448377 60.4974 0.1144 6763 +6765 2 -516.5466167836069 -216.00259540173195 60.3935 0.1144 6764 +6766 2 -516.4745431322272 -214.86350511611943 60.2585 0.1144 6765 +6767 2 -516.403319783642 -213.72356808074585 60.0978 0.1144 6766 +6768 2 -516.3320964350568 -212.5836310453722 59.9158 0.1144 6767 +6769 2 -516.2600936422434 -211.4444701972796 59.717 0.1144 6768 +6770 2 -516.1880199908637 -210.3053799116671 59.5053 0.1144 6769 +6771 2 -516.2227127155365 -209.16962443408633 59.2626 0.1144 6770 +6772 2 -516.2970653091529 -208.038123929525 58.9898 0.1144 6771 +6773 2 -516.375517632681 -206.90733911669233 58.6989 0.1144 6772 +6774 2 -516.4538955446095 -205.77832191889522 58.4024 0.1144 6773 +6775 2 -516.5315716808566 -204.64675766183433 58.112 0.1144 6774 +6776 2 -516.6099531458185 -203.51604341148166 57.8388 0.1144 6775 +6777 2 -516.565389292932 -202.37538437258536 57.6352 0.1144 6776 +6778 2 -516.8395106077303 -201.27258644695564 57.5008 0.1144 6777 +6779 2 -517.5507433262314 -200.3834018653679 57.4202 0.1144 6778 +6780 2 -518.4437553564544 -199.6717992136885 57.3793 0.1144 6779 +6781 2 -519.1873293777251 -198.80375417171683 57.3636 0.1144 6780 +6782 2 -519.1889209910694 -197.67203062032857 57.3611 0.1144 6781 +6783 2 -519.0457024864795 -196.53759971897628 57.3611 0.1144 6782 +6784 2 -518.8976048077498 -195.40322931317624 57.3611 0.1144 6783 +6785 2 -518.7413723099542 -194.27032680341094 57.3611 0.1144 6784 +6786 2 -518.5844341873576 -193.13671570798365 57.3611 0.1144 6785 +6787 2 -518.4282722520422 -192.00388405678453 57.3611 0.1144 6786 +6788 2 -518.2712635669657 -190.870202102791 57.3611 0.1144 6787 +6789 2 -518.0568157306382 -189.74700651630823 57.3611 0.1144 6788 +6790 2 -517.2358343965836 -188.95007364012966 57.3611 0.1144 6789 +6791 2 -516.4156325067574 -188.15236457667018 57.3611 0.1144 6790 +6792 2 -503.35355409172234 -253.9534793633474 54.9091 0.1144 6673 +6793 2 -502.91538207501605 -253.06436321020684 56.1095 0.1144 6792 +6794 2 -502.6927991235367 -251.94277694080503 56.5132 0.1144 6793 +6795 2 -502.51362422271364 -250.96029905051176 57.0164 0.1144 6794 +6796 2 -502.3810792636558 -250.13164413812163 57.7147 0.1144 6795 +6797 2 -502.3721603244144 -248.98780702886046 58.2464 0.1144 6796 +6798 2 -502.3632413851729 -247.84396991959937 58.6228 0.1144 6797 +6799 2 -502.31627840796347 -246.70090168945225 58.8568 0.1144 6798 +6800 2 -502.2621014769628 -245.55852546414502 58.9952 0.1144 6799 +6801 2 -502.2086331316241 -244.41544361403683 59.0481 0.1144 6800 +6802 2 -513.0830712274596 -263.7530163577873 56.609 0.1144 6648 +6803 2 -513.0278173372893 -263.09125941024456 58.6625 0.1144 6802 +6804 2 -512.4952772807267 -262.4575653451341 59.5566 0.1144 6803 +6805 2 -512.547836872681 -261.67052239249836 60.566 0.1144 6804 +6806 2 -511.93743355836466 -261.5147412515613 62.4224 0.1144 6805 +6807 2 -510.828147141514 -261.2325453171637 62.4224 0.1144 6806 +6808 2 -509.7197110274577 -260.9495026330049 62.4224 0.1144 6807 +6809 2 -508.6112749134014 -260.6664599488462 62.4224 0.1144 6808 +6810 2 -507.50276794077894 -260.38348782716747 62.4224 0.1144 6809 +6811 2 -506.3935523824945 -260.10122133028966 62.4224 0.1144 6810 +6812 2 -505.285045409872 -259.81824920861106 62.4224 0.1144 6811 +6813 2 -504.1774560455767 -259.5360568272466 62.4224 0.1144 6812 +6814 2 -503.0690199315204 -259.2530141430879 62.4224 0.1144 6813 +6815 2 -501.96058381746417 -258.9699714589291 62.4224 0.1144 6814 +6816 2 -500.8512974006135 -258.6877755245314 62.4224 0.1144 6815 +6817 2 -499.7428612865573 -258.4047328403726 62.4224 0.1144 6816 +6818 2 -498.63435431393475 -258.12176071869396 62.4224 0.1144 6817 +6819 2 -497.5267649496395 -257.8395683373296 62.4224 0.1144 6818 +6820 2 -496.41747853278883 -257.55737240293183 62.4224 0.1144 6819 +6821 2 -495.3090424187326 -257.2743297187731 62.4224 0.1144 6820 +6822 2 -494.2006063046763 -256.9912870346143 62.4224 0.1144 6821 +6823 2 -513.663618351162 -261.552367188301 61.3393 0.1144 6805 +6824 2 -514.7587313630285 -261.24155240222973 61.8929 0.1144 6823 +6825 2 -515.7766981861014 -260.728413827259 62.246 0.1144 6824 +6826 2 -516.7510780285215 -260.12785611755464 62.421 0.1144 6825 +6827 2 -517.7029018602882 -259.4931685619174 62.4926 0.1144 6826 +6828 2 -518.7513944991308 -259.0577343920445 62.5206 0.1144 6827 +6829 2 -519.8585464551703 -258.77204715705165 62.5612 0.1144 6828 +6830 2 -520.9898292848409 -258.6126292807243 62.6172 0.1144 6829 +6831 2 -522.074465497938 -258.2735789375035 62.6906 0.1144 6830 +6832 2 -523.1956651728653 -258.269420940058 62.7836 0.1144 6831 +6833 2 -524.2704380210993 -258.0144251269565 62.9636 0.1144 6832 +6834 2 -525.3534170451514 -257.7238789456649 63.2117 0.1144 6833 +6835 2 -526.4860755799617 -257.6841773900102 63.4544 0.1144 6834 +6836 2 -527.6281614529091 -257.701134949206 63.674 0.1144 6835 +6837 2 -528.771168191131 -257.71731661720685 63.8672 0.1144 6836 +6838 2 -529.9133823633501 -257.70676793094276 64.0321 0.1144 6837 +6839 2 -530.7052569332918 -256.97140682544455 64.1656 0.1144 6838 +6840 2 -531.4214426453602 -256.0806769753615 64.2788 0.1144 6839 +6841 2 -532.1376283574289 -255.18994712527848 64.3832 0.1144 6840 +6842 2 -532.8537467639644 -254.29759078512012 64.4798 0.1144 6841 +6843 2 -533.5698619135528 -253.40679007647086 64.5677 0.1144 6842 +6844 2 -534.2860476256214 -252.51606022638782 64.6439 0.1144 6843 +6845 2 -535.0013865879288 -251.62448007351043 64.7035 0.1144 6844 +6846 2 -535.7175722999973 -250.73375022342734 64.7424 0.1144 6845 +6847 2 -536.4336874495857 -249.84294951477813 64.757 0.1144 6846 +6848 2 -537.1368861122846 -248.94087874106998 64.7349 0.1144 6847 +6849 2 -537.7617566669517 -247.99572250006526 64.6254 0.1144 6848 +6850 2 -538.5795583660555 -247.23792963196556 64.4216 0.1144 6849 +6851 2 -539.326418623107 -246.38763988932658 64.1841 0.1144 6850 +6852 2 -540.0174636623224 -245.48144244187054 63.9447 0.1144 6851 +6853 2 -540.3425215190031 -244.40060080693505 63.7255 0.1144 6852 +6854 2 -540.1337186810827 -243.28307390574813 63.5491 0.1144 6853 +6855 2 -539.8933807263568 -242.16463245108088 63.4152 0.1144 6854 +6856 2 -539.653818958912 -241.04697044064184 63.313 0.1144 6855 +6857 2 -539.4134810041861 -239.9285289859746 63.2265 0.1144 6856 +6858 2 -539.172363605232 -238.81086371858828 63.1473 0.1144 6857 +6859 2 -538.9320256505063 -237.6924222639211 63.0689 0.1144 6858 +6860 2 -538.6933141858558 -236.5739135037209 62.9874 0.1144 6859 +6861 2 -538.4821190335929 -235.45072472721864 62.9009 0.1144 6860 +6862 2 -538.3113166149964 -234.31948877313943 62.8102 0.1144 6861 +6863 2 -538.1430615517497 -233.18740962233247 62.7094 0.1144 6862 +6864 2 -537.9747356299368 -232.0554010340055 62.5926 0.1144 6863 +6865 2 -537.8056302638959 -230.92416863295958 62.4529 0.1144 6864 +6866 2 -537.4565277609877 -229.94621402130153 62.1253 0.1144 6865 +6867 2 -537.3522245578438 -229.9484705261051 62.8037 0.1144 6866 +6868 2 -537.0529607469914 -229.95590500753372 64.5786 0.1144 6867 +6869 2 -536.6759530526875 -230.7219746704467 65.3498 0.1144 6868 +6870 2 -536.4180006127573 -231.83619089216225 65.9467 0.1144 6869 +6871 2 -536.4188585523605 -232.9800111245151 66.3751 0.1144 6870 +6872 2 -536.4197164919635 -234.1238313568679 66.6487 0.1144 6871 +6873 2 -536.4205744315666 -235.26765158922072 66.7831 0.1144 6872 +6874 2 -536.4214323711697 -236.41147182157354 66.7951 0.1144 6873 +6875 2 -536.4221488897265 -237.55529175784025 66.7666 0.1144 6874 +6876 2 -536.4222273851015 -238.69988817747404 66.7383 0.1144 6875 +6877 2 -536.4230144661384 -239.8437789723069 66.712 0.1144 6876 +6878 2 -536.4238724057415 -240.98759920465972 66.6876 0.1144 6877 +6879 2 -536.4247303453446 -242.13141943701254 66.64 0.1144 6878 +6880 2 -537.5944323528722 -229.7685235782913 61.8218 0.1144 6866 +6881 2 -538.5083132060204 -229.12010939256666 61.5135 0.1144 6880 +6882 2 -539.537468966558 -228.63280369738925 61.1912 0.1144 6881 +6883 2 -540.4404736007739 -228.14693094595663 60.7463 0.1144 6882 +6884 2 -540.2913497441 -227.0974113914124 60.3548 0.1144 6883 +6885 2 -540.1003659580117 -225.97992179707546 60.0037 0.1144 6884 +6886 2 -539.9182934743563 -224.86160232988573 59.6714 0.1144 6885 +6887 2 -539.713526317762 -223.74160899884293 59.3872 0.1144 6886 +6888 2 -539.4659708562116 -222.625556601571 59.1864 0.1144 6887 +6889 2 -539.2150212895504 -221.50949709823223 59.0584 0.1144 6888 +6890 2 -538.96258665386 -220.39350519651265 58.9677 0.1144 6889 +6891 2 -538.2557550109045 -219.5183222850497 58.8641 0.1144 6890 +6892 2 -537.2001561045444 -219.12621269719017 58.7826 0.1144 6891 +6893 2 -536.1055411660304 -218.79384278822977 58.7157 0.1144 6892 +6894 2 -535.0763685285847 -219.28920948304568 58.653 0.1144 6893 +6895 2 -534.0480325739721 -219.7902347962296 58.5883 0.1144 6894 +6896 2 -533.1542375464877 -220.5043106877454 58.5169 0.1144 6895 +6897 2 -532.2612860118171 -221.22079251356476 58.4284 0.1144 6896 +6898 2 -531.3715839042638 -221.9388367808738 58.3058 0.1144 6897 +6899 2 -530.5682366523779 -222.75011730133957 58.1381 0.1144 6898 +6900 2 -529.796356713578 -223.59469779488543 57.8956 0.1144 6899 +6901 2 -528.7672317459959 -224.06729570124904 57.5915 0.1144 6900 +6902 2 -527.7382181633063 -224.08140479903233 57.0704 0.1144 6901 +6903 2 -526.7723392154141 -223.6950692091382 56.4136 0.1144 6902 +6904 2 -525.807307017283 -223.30958392203857 55.6836 0.1144 6903 +6905 2 -524.8414277733049 -222.92338975319075 53.9868 0.1144 6904 +6906 2 -517.1724779790543 -270.95301128973074 51.0728 0.1144 6639 +6907 2 -517.2971652931168 -272.0898075615895 51.371 0.1144 6906 +6908 2 -517.2001144735283 -273.2213312548532 51.5752 0.1144 6907 +6909 2 -516.9858410030454 -274.3452555983244 51.6905 0.1144 6908 +6910 2 -516.8969116786476 -275.48167534263644 51.7362 0.1144 6909 +6911 2 -517.3081328509224 -276.5106718088465 51.7356 0.1144 6910 +6912 2 -518.0513387192127 -277.3720715519038 51.735 0.1144 6911 +6913 2 -518.7823501041361 -278.2488607256008 51.7342 0.1144 6912 +6914 2 -519.4802061939729 -279.15556187696086 51.7331 0.1144 6913 +6915 2 -520.280152600794 -279.9686434941519 51.7311 0.1144 6914 +6916 2 -521.1401129562385 -280.7235143222171 51.7289 0.1144 6915 +6917 2 -522.0299892465798 -281.44210241555584 51.7255 0.1144 6916 +6918 2 -522.7862295380173 -282.2922157148322 51.7208 0.1144 6917 +6919 2 -522.9432724750969 -283.3757637598738 51.714 0.1144 6918 +6920 2 -522.8147470342553 -284.51125207379715 51.7056 0.1144 6919 +6921 2 -522.5915690713202 -285.6327536060565 51.6925 0.1144 6920 +6922 2 -522.4921022505005 -286.76992910770787 51.6729 0.1144 6921 +6923 2 -522.6410602989524 -287.89864444817294 51.6468 0.1144 6922 +6924 2 -523.3753349330547 -288.73662020660163 51.6172 0.1144 6923 +6925 2 -524.2142467413047 -289.5141451438086 51.5875 0.1144 6924 +6926 2 -525.1935880083734 -290.0225558170014 51.4721 0.1144 6925 +6927 2 -526.19801270969 -290.5399992819181 51.3316 0.1144 6926 +6928 2 -527.323048207819 -290.62883406086075 51.2896 0.1144 6927 +6929 2 -528.456205403239 -290.68869440222284 51.333 0.1144 6928 +6930 2 -529.5893593417117 -290.7501103750941 51.441 0.1144 6929 +6931 2 -530.5540926808428 -291.3458890541092 51.5477 0.1144 6930 +6932 2 -531.5007672465066 -291.9885819175557 51.6466 0.1144 6931 +6933 2 -532.4523378632188 -292.62315328581155 51.7224 0.1144 6932 +6934 2 -533.4217852685547 -293.23018485689124 51.7689 0.1144 6933 +6935 2 -534.3287485402778 -293.92695907695474 51.7992 0.1144 6934 +6936 2 -535.2357082589676 -294.6254303495739 51.8249 0.1144 6935 +6937 2 -536.1906124852385 -295.2551296497563 51.856 0.1144 6936 +6938 2 -537.1243098663601 -295.9155437626328 51.8921 0.1144 6937 +6939 2 -537.9364812534174 -296.6986695814164 51.9971 0.1144 6938 +6940 2 -538.3289552004186 -297.76566922571124 52.0985 0.1144 6939 +6941 2 -538.2230538700359 -298.9027605449214 52.1763 0.1144 6940 +6942 2 -538.3064376520852 -300.0435715699782 52.2315 0.1144 6941 +6943 2 -538.4569409690325 -301.17723990401066 52.2656 0.1144 6942 +6944 2 -538.2652880559749 -302.30446430532413 52.2802 0.1144 6943 +6945 2 -537.9233083258475 -303.39580642591784 52.2768 0.1144 6944 +6946 2 -537.4381119143313 -304.43261349198735 52.2679 0.1144 6945 +6947 2 -537.1599481082264 -305.54113053153765 52.2553 0.1144 6946 +6948 2 -536.930264777162 -306.662618443836 52.2374 0.1144 6947 +6949 2 -536.8397733073607 -307.80214619421906 52.2124 0.1144 6948 +6950 2 -536.7492074259599 -308.94344155963773 52.178 0.1144 6949 +6951 2 -536.6594212848734 -310.0838193167291 52.1298 0.1144 6950 +6952 2 -536.3586404743763 -311.1873392458816 52.0615 0.1144 6951 +6953 2 -536.010158633067 -312.27711211500514 51.9646 0.1144 6952 +6954 2 -535.663303281833 -313.3668176785957 51.8311 0.1144 6953 +6955 2 -535.3147508780436 -314.45651968915297 51.6558 0.1144 6954 +6956 2 -535.8197433875916 -314.7382989738784 53.09 0.1144 6955 +6957 2 -536.6662691619681 -315.3240720727114 53.6782 0.1144 6956 +6958 2 -537.1900604108578 -316.28627035143904 53.9045 0.1144 6957 +6959 2 -537.3033871656258 -317.4116583941397 54.0593 0.1144 6958 +6960 2 -537.2346760173833 -318.55052463655244 54.1198 0.1144 6959 +6961 2 -536.8312628127486 -319.6012915404499 54.08 0.1144 6960 +6962 2 -536.2531920592885 -320.58536601120613 53.9997 0.1144 6961 +6963 2 -535.8966764582628 -321.6621112671628 53.8658 0.1144 6962 +6964 2 -535.7065960536229 -322.78127792578516 53.7071 0.1144 6963 +6965 2 -535.8296740506044 -323.9099390824921 53.5805 0.1144 6964 +6966 2 -536.0060642290027 -325.04040891621815 53.492 0.1144 6965 +6967 2 -536.1824544074012 -326.17087874994417 53.4335 0.1144 6966 +6968 2 -536.3580651415715 -327.30212477095114 53.3915 0.1144 6967 +6969 2 -536.5336791326889 -328.431815160449 53.3602 0.1144 6968 +6970 2 -536.7101401696535 -329.56221443169494 53.3322 0.1144 6969 +6971 2 -536.8678577364783 -330.6950493398414 53.2997 0.1144 6970 +6972 2 -537.0175816091974 -331.82949386115473 53.2624 0.1144 6971 +6973 2 -537.1139461288221 -332.95088658422605 53.165 0.1144 6972 +6974 2 -537.2005561492863 -334.07056182480045 53.027 0.1144 6973 +6975 2 -537.3656394539623 -335.19775528757305 52.9432 0.1144 6974 +6976 2 -537.7128145493211 -336.2857319202093 52.9334 0.1144 6975 +6977 2 -537.9118694019755 -337.3984300758808 53.0502 0.1144 6976 +6978 2 -538.0681326927265 -338.5166247968323 53.2857 0.1144 6977 +6979 2 -538.2226986348361 -339.6349573857966 53.6169 0.1144 6978 +6980 2 -538.378891067021 -340.7532226692282 54.01 0.1144 6979 +6981 2 -538.5335278676966 -341.87148469571247 54.4317 0.1144 6980 +6982 2 -538.6881646683723 -342.98974672219674 54.8638 0.1144 6981 +6983 2 -538.8435809132761 -344.1072325614001 55.2905 0.1144 6982 +6984 2 -538.9980762929056 -345.2254942917983 55.7066 0.1144 6983 +6985 2 -539.1542687250904 -346.34375957522985 56.1072 0.1144 6984 +6986 2 -539.3089055257661 -347.4620216017141 56.4866 0.1144 6985 +6987 2 -539.4635423264418 -348.5802836281984 56.8386 0.1144 6986 +6988 2 -539.6197347586267 -349.6985489116299 57.1528 0.1144 6987 +6989 2 -539.8285340435139 -350.81777286537226 57.3961 0.1144 6988 +6990 2 -539.6401575014097 -351.93369039296334 57.5484 0.1144 6989 +6991 2 -539.887736649849 -353.03842910653236 57.6248 0.1144 6990 +6992 2 -540.4470379992175 -354.0280668233735 57.6069 0.1144 6991 +6993 2 -540.6251421070797 -355.1504792104945 57.3611 0.1144 6992 +6994 2 -535.1768362192313 -314.63901844773704 51.408 0.1144 6955 +6995 2 -534.5344137763894 -315.4903046657231 50.988 0.1144 6994 +6996 2 -533.8919913335476 -316.3415908837093 50.4512 0.1144 6995 +6997 2 -533.2502742194206 -317.19372710840366 49.849 0.1144 6996 +6998 2 -532.9108930865841 -317.41540213332684 49.2736 0.1144 6997 +6999 2 -533.209271515811 -316.31102864443267 48.8474 0.1144 6998 +7000 2 -533.5084261323186 -315.2074345997668 48.5596 0.1144 6999 +7001 2 -533.8068045615455 -314.10306111087266 48.3916 0.1144 7000 +7002 2 -534.1068091847615 -312.998761737492 48.3062 0.1144 7001 +7003 2 -534.4051876139882 -311.8943882485978 48.27 0.1144 7002 +7004 2 -534.7035660432151 -310.7900147597037 48.2524 0.1144 7003 +7005 2 -535.002015331008 -309.6855707083296 48.235 0.1144 7004 +7006 2 -535.3003937602349 -308.58119721943547 48.2174 0.1144 7005 +7007 2 -535.6003278209708 -307.47682698748855 48.1998 0.1144 7006 +7008 2 -535.8987062501976 -306.3724534985944 48.1824 0.1144 7007 +7009 2 -536.1979314291855 -305.2689303124947 48.1648 0.1144 7008 +7010 2 -536.4963098584122 -304.1645568236006 48.1474 0.1144 7009 +7011 2 -536.7946882876391 -303.0601833347065 48.1298 0.1144 7010 +7012 2 -537.0930667168659 -301.9558098458124 48.1124 0.1144 7011 +7013 2 -537.3930716361681 -300.8513690513854 48.0948 0.1144 7012 +7014 2 -537.6914500653949 -299.7469955624913 48.0774 0.1144 7013 +7015 2 -537.9898284946216 -298.6426220735972 48.0598 0.1144 7014 +7016 2 -538.2882069238484 -297.53824858470307 48.0424 0.1144 7015 +7017 2 -538.5874321028363 -296.4347253986033 48.0248 0.1144 7016 +7018 2 -538.885810532063 -295.3303519097092 48.0074 0.1144 7017 +7019 2 -539.185744592799 -294.2259816777623 47.99 0.1144 7018 +7020 2 -539.4841230220258 -293.1216081888682 47.973 0.1144 7019 +7021 2 -539.7825014512525 -292.0172346999741 47.9559 0.1144 7020 +7022 2 -540.0809507390456 -290.91279064859987 47.9388 0.1144 7021 +7023 2 -540.3793291682724 -289.80841715970575 47.922 0.1144 7022 +7024 2 -540.6785543472603 -288.7048939736061 47.9055 0.1144 7023 +7025 2 -540.976932776487 -287.600520484712 47.8895 0.1144 7024 +7026 2 -541.276866837223 -286.4961502527651 47.8741 0.1144 7025 +7027 2 -541.5752452664498 -285.391776763871 47.8596 0.1144 7026 +7028 2 -541.8736236956765 -284.28740327497684 47.8464 0.1144 7027 +7029 2 -542.1720021249034 -283.18302978608267 47.8344 0.1144 7028 +7030 2 -542.5035252841027 -282.0875645447745 47.8251 0.1144 7029 +7031 2 -542.8803396906912 -281.00852832991086 47.8198 0.1144 7030 +7032 2 -543.2700877571638 -279.93255975942145 47.8184 0.1144 7031 +7033 2 -543.6573622877138 -278.8559496127169 47.8206 0.1144 7032 +7034 2 -543.9347466495906 -277.74820876044765 47.8265 0.1144 7033 +7035 2 -544.1142423861312 -276.61855473794174 47.836 0.1144 7034 +7036 2 -544.4368542428978 -275.5239193694863 47.85 0.1144 7035 +7037 2 -544.8007388387218 -274.4399770366466 47.8699 0.1144 7036 +7038 2 -545.1654031748603 -273.35511709547967 47.8971 0.1144 7037 +7039 2 -545.5009516523719 -272.2621351609356 47.9326 0.1144 7038 +7040 2 -545.7338808575203 -271.1439067426825 47.9906 0.1144 7039 +7041 2 -545.9352180033443 -270.0181875442536 48.0721 0.1144 7040 +7042 2 -546.134999221573 -268.89260650992367 48.1732 0.1144 7041 +7043 2 -546.3355566270828 -267.7678049198221 48.2899 0.1144 7042 +7044 2 -546.5182309321747 -266.63978390128597 48.4193 0.1144 7043 +7045 2 -546.4745746206877 -265.5047129182776 48.5685 0.1144 7044 +7046 2 -546.376614107857 -264.36882113297156 48.7332 0.1144 7045 +7047 2 -546.3879133447707 -263.22743052181113 48.8961 0.1144 7046 +7048 2 -546.580339188162 -262.10254119623494 49.051 0.1144 7047 +7049 2 -546.883519122982 -261.00143045833323 49.212 0.1144 7048 +7050 2 -547.2029524111973 -259.90516208590793 49.3805 0.1144 7049 +7051 2 -547.5223148408463 -258.8089642759628 49.555 0.1144 7050 +7052 2 -548.0260591176982 -257.7956013283773 49.7594 0.1144 7051 +7053 2 -548.5846205767511 -256.8082333136733 49.9918 0.1144 7052 +7054 2 -549.1440287855652 -255.82171560176366 50.2398 0.1144 7053 +7055 2 -550.0279674602672 -255.15457106767363 50.3961 0.1144 7054 +7056 2 -551.0826640515786 -254.86311714288232 50.6038 0.1144 7055 +7057 2 -552.1993570286929 -254.68111196475976 50.8113 0.1144 7056 +7058 2 -553.3119744984417 -254.89210906428923 50.9634 0.1144 7057 +7059 2 -554.0836452825026 -255.70103025391586 51.065 0.1144 7058 +7060 2 -554.3644500864082 -256.80979833701684 51.175 0.1144 7059 +7061 2 -516.8821924413764 -274.7778596039277 44.7121 0.1144 6472 +7062 2 -517.7551100496078 -275.49075532508164 45.0982 0.1144 7061 +7063 2 -518.6289452661665 -276.2044307865499 45.2805 0.1144 7062 +7064 2 -519.4280721631487 -277.0036513646881 45.4801 0.1144 7063 +7065 2 -519.2615231142809 -278.13015050553156 45.5823 0.1144 7064 +7066 2 -519.0933475753375 -279.256716951908 45.5515 0.1144 7065 +7067 2 -526.7170447718306 -268.2760123827019 38.677 0.1144 6450 +7068 2 -527.3752101997685 -269.19316634985637 38.5134 0.1144 7067 +7069 2 -528.072216282897 -270.10057282993125 38.4572 0.1144 7068 +7070 2 -528.7206272116745 -271.0160093145887 38.3054 0.1144 7069 +7071 2 -529.3496561489435 -271.9686698291888 38.1405 0.1144 7070 +7072 2 -529.8523449629668 -272.9792608474825 37.9271 0.1144 7071 +7073 2 -530.3752451431645 -273.99555104794155 37.7336 0.1144 7072 +7074 2 -530.9888004673527 -274.94245158873787 37.5172 0.1144 7073 +7075 2 -531.5449028182285 -275.940214353803 37.361 0.1144 7074 +7076 2 -532.0264621595633 -276.97833835929237 37.2658 0.1144 7075 +7077 2 -532.3429287540221 -278.07586737239023 37.2148 0.1144 7076 +7078 2 -532.5193189324206 -279.20633720611625 37.2028 0.1144 7077 +7079 2 -532.7636184529591 -280.32393842491695 37.2184 0.1144 7078 +7080 2 -532.9182247567654 -281.4567668191688 37.2585 0.1144 7079 +7081 2 -533.1083378101177 -282.5848612154606 37.3108 0.1144 7080 +7082 2 -533.2775140347248 -283.71602305402644 37.3727 0.1144 7081 +7083 2 -533.2799782365621 -284.8356635444113 37.522 0.1144 7082 +7084 2 -532.8125521215709 -285.1865420234098 37.7003 0.1144 7083 +7085 2 -531.8655602922667 -285.8099259622718 37.8636 0.1144 7084 +7086 2 -530.8622301973412 -286.357036381307 37.9742 0.1144 7085 +7087 2 -529.9288901823243 -287.0119859338438 38.0324 0.1144 7086 +7088 2 -528.9746743323012 -287.64087019311944 38.0386 0.1144 7087 +7089 2 -528.0413948128365 -288.30069891979616 37.9921 0.1144 7088 +7090 2 -527.162975892117 -289.0333332417616 37.9056 0.1144 7089 +7091 2 -526.2958434151782 -289.7790019868745 37.7544 0.1144 7090 +7092 2 -525.4812029095308 -290.5805007682575 37.5561 0.1144 7091 +7093 2 -524.4234325641514 -290.8202586386933 37.322 0.1144 7092 +7094 2 -523.3505740582073 -290.5324113940944 36.9986 0.1144 7093 +7095 2 -522.2785018064717 -290.24053527815 36.5859 0.1144 7094 +7096 2 -521.9358567432138 -289.7245480587104 34.8664 0.1144 7095 +7097 2 -533.6787340066791 -286.0094496986143 37.4536 0.1144 7083 +7098 2 -533.7896311402549 -287.14699491783176 37.3758 0.1144 7097 +7099 2 -533.9749358780333 -288.2750792471959 37.2896 0.1144 7098 +7100 2 -534.2056236498953 -289.37575207865547 37.1288 0.1144 7099 +7101 2 -534.8549894938499 -290.27414925179505 36.5537 0.1144 7100 +7102 2 -527.4604883106651 -259.7360538093501 29.6318 0.1144 6437 +7103 2 -528.2236606303171 -260.3823930008874 31.5554 0.1144 7102 +7104 2 -528.986695081956 -261.0270348437832 32.3795 0.1144 7103 +7105 2 -529.7497965430417 -261.67344459780065 33.3404 0.1144 7104 +7106 2 -530.5128983002135 -262.3197129307718 34.3711 0.1144 7105 +7107 2 -531.2759291988191 -262.966051826223 35.4091 0.1144 7106 +7108 2 -532.0438287064505 -263.6511504513709 36.3784 0.1144 7107 +7109 2 -532.5796319556771 -264.6513455963892 37.1078 0.1144 7108 +7110 2 -532.8815321823683 -265.7488441126177 37.6323 0.1144 7109 +7111 2 -533.1388489530598 -266.8633613083221 37.9562 0.1144 7110 +7112 2 -533.596134599144 -267.91098045566787 38.1332 0.1144 7111 +7113 2 -533.9328326936329 -269.00459201978356 38.2124 0.1144 7112 +7114 2 -534.1245754940078 -270.13106347903334 38.2388 0.1144 7113 +7115 2 -534.6571732308471 -271.14249493529405 38.2483 0.1144 7114 +7116 2 -535.3825091204941 -272.02818179146277 38.2514 0.1144 7115 +7117 2 -536.1071396814264 -272.91301864092316 38.2556 0.1144 7116 +7118 2 -536.8316993837923 -273.79792605286366 38.2614 0.1144 7117 +7119 2 -537.5538498949077 -274.6852325891272 38.2698 0.1144 7118 +7120 2 -538.188470145012 -275.63542993081865 38.2816 0.1144 7119 +7121 2 -538.6408834269366 -276.6798568896521 38.2976 0.1144 7120 +7122 2 -538.6013050142293 -277.8187841258035 38.32 0.1144 7121 +7123 2 -538.2852290224614 -278.89886674645254 38.3533 0.1144 7122 +7124 2 -538.6421084844421 -279.97873195082593 38.3986 0.1144 7123 +7125 2 -538.6890006030854 -281.1218707434531 38.456 0.1144 7124 +7126 2 -538.8015375506116 -282.25298471005476 38.5314 0.1144 7125 +7127 2 -539.2661790697196 -283.2659002389717 38.6767 0.1144 7126 +7128 2 -539.9576417119769 -284.11913061487405 38.8951 0.1144 7127 +7129 2 -540.4999367093716 -285.1258447479827 39.0648 0.1144 7128 +7130 2 -541.1046074728627 -286.09457633504854 39.1877 0.1144 7129 +7131 2 -541.7871008737953 -287.01008417645863 39.2664 0.1144 7130 +7132 2 -542.3520504785182 -288.0038349470865 39.3039 0.1144 7131 +7133 2 -542.9024909540786 -289.00399002649414 39.3044 0.1144 7132 +7134 2 -543.5532568903486 -289.94290743829913 39.2798 0.1144 7133 +7135 2 -544.0956295562901 -290.94629832486305 39.2442 0.1144 7134 +7136 2 -544.5634055271188 -291.9819185936466 39.1958 0.1144 7135 +7137 2 -545.261265169989 -292.8869226924512 39.1348 0.1144 7136 +7138 2 -545.9947598616766 -293.75968654783594 39.0491 0.1144 7137 +7139 2 -546.6310572325812 -294.68563358507936 38.89 0.1144 7138 +7140 2 -547.2333326268829 -295.61638843971014 38.6702 0.1144 7139 +7141 2 -547.930416082472 -296.5206130942866 38.4966 0.1144 7140 +7142 2 -548.7124960636833 -297.35628477203363 38.3662 0.1144 7141 +7143 2 -549.4848719743586 -298.19992645699745 38.2743 0.1144 7142 +7144 2 -550.2507321538908 -299.04850425862014 38.2166 0.1144 7143 +7145 2 -551.1002119554322 -299.8107070707201 38.1844 0.1144 7144 +7146 2 -552.0583252471235 -300.4274730071049 38.1618 0.1144 7145 +7147 2 -553.102390679901 -300.89076425683817 38.1326 0.1144 7146 +7148 2 -554.1312111579316 -301.3741761764105 38.0954 0.1144 7147 +7149 2 -555.1315633692586 -301.87789321334014 38.024 0.1144 7148 +7150 2 -556.2263507238746 -302.16168514094375 37.9126 0.1144 7149 +7151 2 -557.3348173348002 -302.430161457335 37.8255 0.1144 7150 +7152 2 -558.4400721215445 -302.6791148593579 37.7611 0.1144 7151 +7153 2 -559.5119308951944 -303.0729555496756 37.718 0.1144 7152 +7154 2 -560.447532495163 -303.6006494156016 37.6942 0.1144 7153 +7155 2 -560.7737878407855 -304.64976200224464 37.6877 0.1144 7154 +7156 2 -560.9906718121998 -305.7576891491923 37.6914 0.1144 7155 +7157 2 -561.5013374434202 -306.7747315539574 37.6967 0.1144 7156 +7158 2 -562.0931184617575 -307.75319424938095 37.704 0.1144 7157 +7159 2 -562.4208856181448 -308.8232404078217 37.714 0.1144 7158 +7160 2 -562.3878193835471 -309.9589285798696 37.7289 0.1144 7159 +7161 2 -562.2479096965226 -311.0943223483379 37.7496 0.1144 7160 +7162 2 -562.1079997134118 -312.2298575378526 37.7768 0.1144 7161 +7163 2 -561.9737450917221 -313.366111676043 37.8101 0.1144 7162 +7164 2 -561.8889154972361 -314.5032471120836 37.8692 0.1144 7163 +7165 2 -561.5533639648777 -315.56391418950795 37.9716 0.1144 7164 +7166 2 -560.6952342809798 -316.26505395846516 38.0685 0.1144 7165 +7167 2 -560.0575622148199 -317.17779783603396 38.1424 0.1144 7166 +7168 2 -559.5570401251633 -318.2057339613675 38.1954 0.1144 7167 +7169 2 -559.3258215925314 -319.3174605645248 38.229 0.1144 7168 +7170 2 -558.9377136360954 -320.3868564613521 38.2458 0.1144 7169 +7171 2 -558.2458351709939 -321.28583965893085 38.2516 0.1144 7170 +7172 2 -557.431120549833 -322.0889646343031 38.2561 0.1144 7171 +7173 2 -556.5010904574858 -322.75035580246964 38.262 0.1144 7172 +7174 2 -555.6275436048396 -323.48632373399374 38.2707 0.1144 7173 +7175 2 -554.6918720671187 -324.14034916430876 38.2824 0.1144 7174 +7176 2 -553.7505519779573 -324.79040296188344 38.2992 0.1144 7175 +7177 2 -552.8631781361609 -325.51092698292337 38.3222 0.1144 7176 +7178 2 -552.0986438013568 -326.3594826622431 38.3544 0.1144 7177 +7179 2 -551.6273149427878 -327.39235895545545 38.4003 0.1144 7178 +7180 2 -551.7123020262101 -328.5104044490072 38.4653 0.1144 7179 +7181 2 -552.0692419837433 -329.5951488275205 38.5532 0.1144 7180 +7182 2 -552.0312428894339 -330.72276563691617 38.6728 0.1144 7181 +7183 2 -551.6932988406327 -331.811641327654 38.838 0.1144 7182 +7184 2 -551.2493887881351 -332.85263606121015 39.1258 0.1144 7183 +7185 2 -551.1637293207965 -333.9808601948181 39.4682 0.1144 7184 +7186 2 -550.561482580502 -334.9277608621559 39.828 0.1144 7185 +7187 2 -550.0122999438502 -335.6909951719193 40.4096 0.1144 7186 +7188 2 -549.1198328060564 -336.17611216601256 41.0925 0.1144 7187 +7189 2 -548.1732442460346 -336.60688063983116 42.7395 0.1144 7188 +7190 2 -517.2401166567416 -252.96657970897292 21.7414 0.1144 6425 +7191 2 -516.2068919592479 -253.43846192360786 21.7575 0.1144 7190 +7192 2 -515.3414401561427 -254.1581833117172 21.7676 0.1144 7191 +7193 2 -514.4711296088391 -254.86820714318503 21.7209 0.1144 7192 +7194 2 -513.6235031693602 -255.61872506375477 21.6588 0.1144 7193 +7195 2 -512.8330620413499 -256.44622538589954 21.622 0.1144 7194 +7196 2 -512.2364366125737 -257.4101084222362 21.6134 0.1144 7195 +7197 2 -511.8006279214114 -258.4656158379882 21.6339 0.1144 7196 +7198 2 -511.68175641856726 -259.5833052339349 21.7151 0.1144 7197 +7199 2 -511.3495284288396 -260.6439085588596 21.8724 0.1144 7198 +7200 2 -510.467927884722 -261.34259501973565 22.0419 0.1144 7199 +7201 2 -509.65653651010587 -262.1457976636547 22.2128 0.1144 7200 +7202 2 -508.80797558539143 -262.9035968435485 22.4163 0.1144 7201 +7203 2 -507.9288515380573 -263.6015106701769 22.6748 0.1144 7202 +7204 2 -506.8663989158014 -263.74728404038393 23.0042 0.1144 7203 +7205 2 -505.92032519301097 -264.33743580988505 23.3289 0.1144 7204 +7206 2 -505.1792808423977 -263.22042093065375 23.6252 0.1144 7205 +7207 2 -504.5494689078671 -262.27023365589 23.5976 0.1144 7206 +7208 2 -503.9197278319027 -261.31997581864624 23.486 0.1144 7207 +7209 2 -503.29069534160027 -260.3690123566016 23.3225 0.1144 7208 +7210 2 -502.66095426563584 -259.4187545193579 23.1444 0.1144 7209 +7211 2 -502.03121289358535 -258.4686381031604 22.9785 0.1144 7210 +7212 2 -501.53824206614524 -257.4434302884745 22.851 0.1144 7211 +7213 2 -501.1513727558543 -256.36760352418804 22.7732 0.1144 7212 +7214 2 -500.78396586437924 -255.2836857615803 22.7413 0.1144 7213 +7215 2 -500.4165589729041 -254.19976799897253 22.7478 0.1144 7214 +7216 2 -500.04837263720094 -253.11662642364578 22.784 0.1144 7215 +7217 2 -499.6817419330067 -252.03348810526617 22.8409 0.1144 7216 +7218 2 -499.26651231932794 -250.9939473326535 22.9775 0.1144 7217 +7219 2 -498.77847079856633 -249.9785079331753 23.1624 0.1144 7218 +7220 2 -498.3923708655758 -248.90671329718165 23.3199 0.1144 7219 +7221 2 -498.4456988949727 -247.7864117970128 23.4335 0.1144 7220 +7222 2 -498.5354109205458 -246.64766023391064 23.5051 0.1144 7221 +7223 2 -498.3930359087697 -245.51563526686186 23.5369 0.1144 7222 +7224 2 -498.59597881864136 -244.3997482361402 23.5314 0.1144 7223 +7225 2 -498.7213221378985 -243.26432397080254 23.5001 0.1144 7224 +7226 2 -498.5974783166499 -242.12993363324733 23.4503 0.1144 7225 +7227 2 -498.37581652653114 -241.0074300516043 23.3818 0.1144 7226 +7228 2 -498.1395107000982 -239.88821921963665 23.2941 0.1144 7227 +7229 2 -497.7007633506082 -238.8348405966736 23.1864 0.1144 7228 +7230 2 -497.17295655424795 -237.86549211665417 22.9666 0.1144 7229 +7231 2 -496.5430493739755 -236.99457148637762 22.6331 0.1144 7230 +7232 2 -495.45237862617967 -236.70343425086426 22.363 0.1144 7231 +7233 2 -494.39106404590257 -237.11621410949513 22.1614 0.1144 7232 +7234 2 -493.4682141535301 -237.79303527209865 21.9321 0.1144 7233 +7235 2 -505.91701101702114 -264.40057364511483 24.4055 0.1144 7205 +7236 2 -505.46548705491205 -265.22800572186884 25.4814 0.1144 7235 +7237 2 -504.67182048275924 -266.04248849777457 25.857 0.1144 7236 +7238 2 -503.8571832340591 -266.8424316476485 26.2043 0.1144 7237 +7239 2 -502.9682943245506 -267.54357772839984 26.5542 0.1144 7238 +7240 2 -502.0685318092852 -268.0682775150618 27.5559 0.1144 7239 +7241 2 -492.4292289053593 -282.76096994553103 18.6131 0.1144 2113 +7242 2 -492.12928172284865 -283.837833635932 18.6632 0.1144 7241 +7243 2 -491.08451559983325 -284.08073000930824 18.6574 0.1144 7242 +7244 2 -490.05457408327345 -284.5380526661561 18.5542 0.1144 7243 +7245 2 -489.4409766485122 -285.50260727739095 18.4364 0.1144 7244 +7246 2 -489.66828299536644 -286.2594769588288 18.5578 0.1144 7245 +7247 2 -489.6804714955809 -287.39525987843206 18.6215 0.1144 7246 +7248 2 -489.34330689100784 -288.48335938188893 18.6479 0.1144 7247 +7249 2 -488.9099678866486 -289.5413468474578 18.6836 0.1144 7248 +7250 2 -488.4628487687305 -290.5952749448119 18.7293 0.1144 7249 +7251 2 -488.21302818700485 -291.70943748095556 18.786 0.1144 7250 +7252 2 -487.8653026012213 -292.77573593682587 18.9272 0.1144 7251 +7253 2 -487.187113553343 -293.68832427520096 19.0641 0.1144 7252 +7254 2 -486.53397388981017 -294.6262088256228 19.1932 0.1144 7253 +7255 2 -485.823504034715 -295.52253679852174 19.3233 0.1144 7254 +7256 2 -485.3318828844774 -296.5545927876226 19.4616 0.1144 7255 +7257 2 -484.7433555600892 -297.5345441376643 19.6145 0.1144 7256 +7258 2 -484.1104071288754 -298.487744501399 19.7928 0.1144 7257 +7259 2 -483.61818220745886 -299.47044306491506 20.1182 0.1144 7258 +7260 2 -483.1000744758111 -300.42063116650695 20.5743 0.1144 7259 +7261 2 -483.069414175517 -301.55547584574094 21.0103 0.1144 7260 +7262 2 -483.5169956570794 -302.57733593272087 21.4653 0.1144 7261 +7263 2 -483.5408401165405 -303.54965980970474 22.0207 0.1144 7262 +7264 2 -484.35965899306 -304.2649171462315 22.6116 0.1144 7263 +7265 2 -484.51498424554217 -305.39209017906245 23.1255 0.1144 7264 +7266 2 -485.02158243006727 -304.90694312977143 23.7656 0.1144 7265 +7267 2 -485.65977919828595 -304.18264472094023 24.5277 0.1144 7266 +7268 2 -485.86007950706596 -303.14686753143343 25.2475 0.1144 7267 +7269 2 -485.9077962918723 -302.0047753466919 25.8202 0.1144 7268 +7270 2 -486.1261321854171 -300.8993857467815 26.3162 0.1144 7269 +7271 2 -486.5334081570894 -299.92874230405994 26.854 0.1144 7270 +7272 2 -486.8396681577717 -298.9100868461243 27.3792 0.1144 7271 +7273 2 -487.41275492260877 -297.9761359213062 27.7977 0.1144 7272 +7274 2 -488.43363946236946 -297.58922229208446 28.1744 0.1144 7273 +7275 2 -489.2828477769068 -296.8937207115538 28.4987 0.1144 7274 +7276 2 -489.44369438666223 -295.7889885683941 28.7456 0.1144 7275 +7277 2 -490.06366889028095 -294.8519538225802 28.9293 0.1144 7276 +7278 2 -490.85255438678223 -294.0244502434882 29.0805 0.1144 7277 +7279 2 -491.48941651184464 -293.1270489209679 29.3247 0.1144 7278 +7280 2 -492.07529797819393 -292.22876304365036 29.6671 0.1144 7279 +7281 2 -492.5265132729904 -291.17724769058043 29.9326 0.1144 7280 +7282 2 -493.11659622888783 -290.197299597486 30.1302 0.1144 7281 +7283 2 -493.12539472742776 -289.5073217091276 30.2655 0.1144 7282 +7284 2 -492.9068673890298 -288.40752286735125 30.3442 0.1144 7283 +7285 2 -492.3872267028771 -287.3879867928082 30.3724 0.1144 7284 +7286 2 -491.92101643048534 -286.3475614653981 30.3744 0.1144 7285 +7287 2 -491.46045470953396 -285.3111077707284 30.3769 0.1144 7286 +7288 2 -490.82746420645213 -284.359287491995 30.3808 0.1144 7287 +7289 2 -490.3119128871973 -283.3454168458006 30.3859 0.1144 7288 +7290 2 -489.97761717397844 -282.2526588414266 30.3932 0.1144 7289 +7291 2 -489.7065772322472 -281.14065850420263 30.4032 0.1144 7290 +7292 2 -489.344035894951 -280.06318561417174 30.4175 0.1144 7291 +7293 2 -489.00077469554117 -278.99713753412107 30.4371 0.1144 7292 +7294 2 -489.02903942454543 -277.8581866110808 30.4651 0.1144 7293 +7295 2 -489.2214685248839 -276.7317416539954 30.5052 0.1144 7294 +7296 2 -489.38808813623194 -275.6053133717181 30.5586 0.1144 7295 +7297 2 -489.34274483911724 -274.46543052010276 30.6261 0.1144 7296 +7298 2 -489.2294284473629 -273.335092740782 30.7348 0.1144 7297 +7299 2 -489.212407944686 -272.21061343795395 30.9179 0.1144 7298 +7300 2 -489.4249942274409 -271.1157477145045 31.1284 0.1144 7299 +7301 2 -489.88418959638193 -270.0691281163968 31.3144 0.1144 7300 +7302 2 -490.10495786987985 -268.98403761813563 31.4591 0.1144 7301 +7303 2 -489.91954851971866 -267.87214585052834 31.603 0.1144 7302 +7304 2 -489.5990261100781 -266.78669989843394 31.7349 0.1144 7303 +7305 2 -489.2907687462844 -265.6859353742659 31.8049 0.1144 7304 +7306 2 -488.93389609428414 -264.60281748582787 31.8287 0.1144 7305 +7307 2 -488.7419677560326 -263.49741746638875 31.8184 0.1144 7306 +7308 2 -488.9772655886347 -262.396164607154 31.7803 0.1144 7307 +7309 2 -489.2804617000763 -261.3548752679179 31.6268 0.1144 7308 +7310 2 -489.4597953835287 -260.2688494901487 31.4286 0.1144 7309 +7311 2 -489.2971480118392 -259.16025807646974 31.2838 0.1144 7310 +7312 2 -488.85606529052586 -258.10779380488674 31.1898 0.1144 7311 +7313 2 -488.2983367456609 -257.10995692430816 31.1461 0.1144 7312 +7314 2 -487.8749720168302 -256.0720254687765 31.1965 0.1144 7313 +7315 2 -488.2928089697132 -255.12318307364146 31.285 0.1144 7314 +7316 2 -489.2687001247116 -254.57757084541007 31.362 0.1144 7315 +7317 2 -490.06633783141854 -253.79145142773902 31.416 0.1144 7316 +7318 2 -490.18104564975096 -252.70359328606176 31.4482 0.1144 7317 +7319 2 -490.6919668696301 -251.70721596442246 31.46 0.1144 7318 +7320 2 -491.27399889281685 -250.72244267884594 31.453 0.1144 7319 +7321 2 -491.9925804722611 -249.83567765152281 31.4364 0.1144 7320 +7322 2 -492.8411582738838 -249.06981747199063 31.4135 0.1144 7321 +7323 2 -493.470064509877 -248.12219480113004 31.3838 0.1144 7322 +7324 2 -493.39313161611267 -247.0074188685512 31.3477 0.1144 7323 +7325 2 -493.9920447468485 -246.06539026928672 31.2794 0.1144 7324 +7326 2 -494.76234181421705 -245.23381725505206 31.1632 0.1144 7325 +7327 2 -495.42515505141654 -244.30252906518106 31.068 0.1144 7326 +7328 2 -496.1340491411471 -243.41581446648254 30.994 0.1144 7327 +7329 2 -497.2154904069712 -243.0491802092551 30.9386 0.1144 7328 +7330 2 -498.14637080211276 -242.38694229132756 30.898 0.1144 7329 +7331 2 -498.9538174878245 -241.5765188836367 30.87 0.1144 7330 +7332 2 -499.7449974962659 -240.76761705755237 30.8482 0.1144 7331 +7333 2 -500.844972509278 -240.4649441966134 30.8216 0.1144 7332 +7334 2 -501.9751514924578 -240.39370041808655 30.7636 0.1144 7333 +7335 2 -502.947836838983 -239.85946592214378 30.6737 0.1144 7334 +7336 2 -503.6009729494825 -238.92327842427733 30.6163 0.1144 7335 +7337 2 -504.1588459567291 -237.92699940322666 30.592 0.1144 7336 +7338 2 -504.8378316218299 -237.00543245688598 30.6009 0.1144 7337 +7339 2 -505.5426363446626 -236.11305242983872 30.6558 0.1144 7338 +7340 2 -506.3975947681762 -235.37301506317198 30.7894 0.1144 7339 +7341 2 -507.2768266848402 -234.65735304327765 30.9364 0.1144 7340 +7342 2 -508.0171311451379 -233.7973621909639 31.0904 0.1144 7341 +7343 2 -508.83418063993565 -233.02733477388668 31.2878 0.1144 7342 +7344 2 -509.6179976692866 -232.2565306713421 31.4558 0.1144 7343 +7345 2 -510.72038868353 -231.94820600201547 31.5949 0.1144 7344 +7346 2 -511.8330767722737 -231.75395946493492 31.736 0.1144 7345 +7347 2 -512.9174010045963 -231.59769597208353 31.9124 0.1144 7346 +7348 2 -513.9184131967788 -231.0431560626975 32.0608 0.1144 7347 +7349 2 -514.9250564713213 -230.50093162778282 32.1894 0.1144 7348 +7350 2 -515.7944456551638 -229.82569559718507 32.3117 0.1144 7349 +7351 2 -516.1477353138606 -228.76994470466454 32.4612 0.1144 7350 +7352 2 -516.553445587096 -227.8041063205695 32.6953 0.1144 7351 +7353 2 -517.0578546288655 -226.81096806303367 32.9218 0.1144 7352 +7354 2 -517.3028668950172 -225.69679545996223 33.1078 0.1144 7353 +7355 2 -517.3278688730293 -224.56264604251515 33.292 0.1144 7354 +7356 2 -516.7644675916486 -223.6061631225743 33.4664 0.1144 7355 +7357 2 -516.7611326570754 -222.49712743414432 33.5885 0.1144 7356 +7358 2 -517.2106508993165 -221.44560852804108 33.6622 0.1144 7357 +7359 2 -516.9500138429415 -220.329599453327 33.9783 0.1144 7358 +7360 2 -516.3170165298791 -219.3810318586582 34.0539 0.1144 7359 +7361 2 -515.5292678633721 -218.55100517931814 34.1001 0.1144 7360 +7362 2 -514.7236628381827 -217.73876024496045 34.118 0.1144 7361 +7363 2 -513.9245026855704 -216.92164975642385 34.0981 0.1144 7362 +7364 2 -513.1407452874727 -216.11036980417103 33.9956 0.1144 7363 +7365 2 -512.1923668592727 -215.47092607175583 33.9007 0.1144 7364 +7366 2 -511.0904834871234 -215.16526964015216 33.8285 0.1144 7365 +7367 2 -510.0349155758191 -214.72458177484987 33.7417 0.1144 7366 +7368 2 -517.9995434078986 -220.58098177625564 33.7375 0.1144 7358 +7369 2 -518.9746793037441 -219.990820141927 33.7495 0.1144 7368 +7370 2 -519.9853413827045 -219.45419027679486 33.754 0.1144 7369 +7371 2 -521.0113555854546 -218.94757394686172 33.7588 0.1144 7370 +7372 2 -522.1104596636304 -218.6893763765065 33.7658 0.1144 7371 +7373 2 -523.1866049035418 -218.9609670107629 33.7756 0.1144 7372 +7374 2 -524.3026718606329 -219.04419685690925 33.7887 0.1144 7373 +7375 2 -525.4418800825033 -218.9495666966898 33.8069 0.1144 7374 +7376 2 -526.5024520272157 -218.55375588318287 33.8335 0.1144 7375 +7377 2 -527.6111858583137 -218.32308498822917 33.8722 0.1144 7376 +7378 2 -528.7434216902727 -218.41773313046122 33.924 0.1144 7377 +7379 2 -529.8822068050911 -218.52519364538654 33.9889 0.1144 7378 +7380 2 -531.0180781604556 -218.43699118474964 34.0659 0.1144 7379 +7381 2 -532.0859958547492 -218.4165995635638 34.277 0.1144 7380 +7382 2 -533.2012291838539 -218.52648564846172 34.4918 0.1144 7381 +7383 2 -534.3347823403892 -218.4309951185202 34.6626 0.1144 7382 +7384 2 -535.4628061742011 -218.24081120660176 34.7914 0.1144 7383 +7385 2 -536.5804714415874 -217.99969380764773 34.8796 0.1144 7384 +7386 2 -537.6965137719316 -217.75694666167112 34.9499 0.1144 7385 +7387 2 -538.7497673525702 -217.34414992613196 35.0224 0.1144 7386 +7388 2 -539.6830228890599 -216.69577630420443 35.0599 0.1144 7387 +7389 2 -540.7684315343045 -216.39307294639613 35.0501 0.1144 7388 +7390 2 -541.8972920509495 -216.20854765284585 34.9894 0.1144 7389 +7391 2 -543.0204876374323 -215.99409981651834 34.8824 0.1144 7390 +7392 2 -544.1395422299195 -215.8661933701076 34.6752 0.1144 7391 +7393 2 -545.2024560038349 -215.87167143737852 34.3188 0.1144 7392 +7394 2 -546.2555711617592 -215.89650375804914 33.8638 0.1144 7393 +7395 2 -547.356630032992 -215.8867174370047 33.4121 0.1144 7394 +7396 2 -548.3831093821065 -215.90095807749518 33.2475 0.1144 7395 +7397 2 -549.5009885692499 -215.92917868966904 33.2335 0.1144 7396 +7398 2 -550.6079674089005 -215.75995183433687 33.1946 0.1144 7397 +7399 2 -551.661338925797 -215.3245985899579 33.1974 0.1144 7398 +7400 2 -552.5065866708945 -214.56191342594357 33.2203 0.1144 7399 +7401 2 -553.3188316052522 -213.75630840075425 33.2343 0.1144 7400 +7402 2 -554.3915097996704 -213.38725162840106 33.2237 0.1144 7401 +7403 2 -555.53266700099 -213.47626158220666 33.2184 0.1144 7402 +7404 2 -556.6670981984284 -213.33290165657044 33.2326 0.1144 7403 +7405 2 -557.8102301810751 -213.28926222199183 33.2548 0.1144 7404 +7406 2 -558.9497375015166 -213.38951174398701 33.2833 0.1144 7405 +7407 2 -560.0913042839127 -213.31666545835972 33.3183 0.1144 7406 +7408 2 -560.2935227601427 -213.32359422962693 33.3794 0.1144 7407 +7409 2 -561.4227118758554 -213.38740606987395 33.4911 0.1144 7408 +7410 2 -562.5641702907351 -213.36631988718787 33.5896 0.1144 7409 +7411 2 -563.7080547737739 -213.33477358054043 33.6669 0.1144 7410 +7412 2 -564.844356285742 -213.44640083482417 33.7252 0.1144 7411 +7413 2 -565.8844841356816 -213.8990772156749 33.7669 0.1144 7412 +7414 2 -566.9433251609921 -214.3300138387639 33.7966 0.1144 7413 +7415 2 -568.0476346013006 -214.6252101464062 33.8212 0.1144 7414 +7416 2 -569.0934812690746 -215.0820704396098 33.8528 0.1144 7415 +7417 2 -570.1725883425045 -215.45881428371834 33.8932 0.1144 7416 +7418 2 -571.2363286758103 -215.8800737801075 33.9416 0.1144 7417 +7419 2 -572.2887422036388 -216.2738030480618 34.0684 0.1144 7418 +7420 2 -573.3776178943766 -216.611747096863 34.1942 0.1144 7419 +7421 2 -574.5131200303614 -216.69989668094647 34.3048 0.1144 7420 +7422 2 -575.6355797912599 -216.49916520567828 34.4022 0.1144 7421 +7423 2 -576.7723588901243 -216.38268031230055 34.4887 0.1144 7422 +7424 2 -577.8585601013717 -216.1067073087572 34.6374 0.1144 7423 +7425 2 -578.9881290015785 -215.95534687903498 34.7648 0.1144 7424 +7426 2 -580.0076277692717 -215.45352524471448 34.8785 0.1144 7425 +7427 2 -580.6712708793239 -214.5311483572763 34.9835 0.1144 7426 +7428 2 -581.1975752180488 -213.51620629339314 35.0829 0.1144 7427 +7429 2 -581.7925305381054 -212.539450388811 35.1775 0.1144 7428 +7430 2 -582.584530352472 -211.7442681807331 35.3424 0.1144 7429 +7431 2 -583.3466618078194 -210.928870851347 35.5796 0.1144 7430 +7432 2 -584.0757672637245 -210.04785543481367 35.775 0.1144 7431 +7433 2 -584.866208391735 -209.22035511266895 35.9293 0.1144 7432 +7434 2 -585.7848948016962 -208.53949471570607 36.0436 0.1144 7433 +7435 2 -586.7133082687956 -207.90723302612756 36.1959 0.1144 7434 +7436 2 -587.5093943952129 -207.0854013892787 36.2894 0.1144 7435 +7437 2 -588.3668630693268 -206.32846938908753 36.3331 0.1144 7436 +7438 2 -589.3476777173961 -205.72785444077803 36.3054 0.1144 7437 +7439 2 -590.2260898281352 -204.99847280287722 36.2376 0.1144 7438 +7440 2 -591.2029227765362 -204.40831472158195 36.143 0.1144 7439 +7441 2 -592.0771097108384 -203.77190898316084 35.9257 0.1144 7440 +7442 2 -592.7007607433313 -203.00395153663757 35.5606 0.1144 7441 +7443 2 -593.0912847009988 -201.92890383142273 35.3203 0.1144 7442 +7444 2 -593.2842025780755 -201.71731665623432 35.208 0.1144 7443 +7445 2 -594.0512300844712 -200.89379783165745 35.2747 0.1144 7444 +7446 2 -594.6282779169344 -199.99301858064788 35.5552 0.1144 7445 +7447 2 -595.0187272609021 -198.95360897909737 35.9464 0.1144 7446 +7448 2 -595.7097649919505 -198.08467612538115 36.3572 0.1144 7447 +7449 2 -596.5797509348911 -197.49592069306172 36.8382 0.1144 7448 +7450 2 -597.1366753387546 -196.54744020913952 37.2352 0.1144 7449 +7451 2 -597.8923692296921 -195.69964384019252 37.529 0.1144 7450 +7452 2 -598.6933209102884 -194.88425707592054 37.7381 0.1144 7451 +7453 2 -599.4950484820796 -194.06979117692302 37.8893 0.1144 7452 +7454 2 -600.2975557941851 -193.25440766959824 37.9982 0.1144 7453 +7455 2 -601.0985780372616 -192.43909176389255 38.0733 0.1144 7454 +7456 2 -601.8647388621409 -191.59046877903992 38.1363 0.1144 7455 +7457 2 -602.587423132358 -190.70300523298263 38.1816 0.1144 7456 +7458 2 -602.9488110975431 -189.6294521655382 38.2108 0.1144 7457 +7459 2 -603.3555142930925 -188.560873019789 38.227 0.1144 7458 +7460 2 -604.2402934057612 -187.8638195628828 38.2343 0.1144 7459 +7461 2 -605.2984631713036 -187.43328470100536 38.236 0.1144 7460 +7462 2 -606.2107215855964 -186.74922885858294 38.2346 0.1144 7461 +7463 2 -607.1045166130808 -186.03515296706715 38.232 0.1144 7462 +7464 2 -608.1377009488779 -185.54877494714472 38.2284 0.1144 7463 +7465 2 -609.1072860956854 -184.94170180238345 38.2242 0.1144 7464 +7466 2 -609.6724270383809 -183.9527212136512 38.2169 0.1144 7465 +7467 2 -609.8033548604926 -182.81808645946947 38.2063 0.1144 7466 +7468 2 -609.7710291096171 -181.67497816371164 38.1928 0.1144 7467 +7469 2 -609.8292128283654 -180.53205936306452 38.1786 0.1144 7468 +7470 2 -609.6818913369164 -179.3984684014928 38.166 0.1144 7469 +7471 2 -609.8104399664603 -178.28567831354152 38.0794 0.1144 7470 +7472 2 -609.3849705168864 -177.13849421433204 38.0293 0.1144 7471 +7473 2 -608.9875604532263 -176.06497883889412 38.0741 0.1144 7472 +7474 2 -608.5901468365327 -174.9931605160116 38.162 0.1144 7473 +7475 2 -608.2834007853173 -173.94734147331647 38.3544 0.1144 7474 +7476 2 -607.8233881536003 -173.02013716537752 38.652 0.1144 7475 +7477 2 -607.2766237087276 -172.22307129493575 39.0513 0.1144 7476 +7478 2 -607.0124628473966 -171.27032615622298 39.4534 0.1144 7477 +7479 2 -606.5614457005533 -170.33585746586814 39.5847 0.1144 7478 +7480 2 -606.2869532166328 -169.3193095249076 39.5993 0.1144 7479 +7481 2 -605.8814244165427 -168.27335437658738 39.5492 0.1144 7480 +7482 2 -606.5589027072551 -168.07176197689583 39.3896 0.1144 7481 +7483 2 -607.680685023133 -168.19460185553314 39.1194 0.1144 7482 +7484 2 -608.6642650865995 -168.6035312611169 38.719 0.1144 7483 +7485 2 -609.5307345653068 -169.32284816795888 38.3412 0.1144 7484 +7486 2 -610.2382445931411 -170.2117504013423 37.9898 0.1144 7485 +7487 2 -610.8357011067549 -171.18131541429423 37.6737 0.1144 7486 +7488 2 -611.4557517321444 -172.13303789062545 37.3976 0.1144 7487 +7489 2 -612.3943416112811 -172.78702756086662 37.1991 0.1144 7488 +7490 2 -613.4393210993524 -173.25279560346965 37.0563 0.1144 7489 +7491 2 -614.2164875088351 -173.76721767917368 37.011 0.1144 7490 +7492 2 -613.9156764035691 -174.85143348746485 36.927 0.1144 7491 +7493 2 -614.0550457610825 -175.899235559512 36.7002 0.1144 7492 +7494 2 -614.2732508122069 -176.78145649310167 36.3334 0.1144 7493 +7495 2 -614.0483994836052 -177.8916407886247 36.0662 0.1144 7494 +7496 2 -613.6896168126618 -178.90290306668655 35.7767 0.1144 7495 +7497 2 -612.9316021662348 -179.67708459953408 35.4654 0.1144 7496 +7498 2 -611.9388710596564 -180.1602946160195 35.2666 0.1144 7497 +7499 2 -610.8123892373928 -180.35698715301433 35.1708 0.1144 7498 +7500 2 -609.6843689566143 -180.54547401237724 35.1498 0.1144 7499 +7501 2 -608.5468038056416 -180.63211728847173 35.1705 0.1144 7500 +7502 2 -607.4375783260148 -180.72610311371514 35.2962 0.1144 7501 +7503 2 -606.3386708490164 -180.89039710933545 35.5102 0.1144 7502 +7504 2 -605.2029383580377 -180.91227309926356 35.7031 0.1144 7503 +7505 2 -604.1089808762745 -180.63739247409265 35.8543 0.1144 7504 +7506 2 -603.1363075286097 -180.05135526644918 35.9691 0.1144 7505 +7507 2 -602.1441110644764 -179.50240037161595 36.0517 0.1144 7506 +7508 2 -601.0788082896806 -179.08439030234425 36.1063 0.1144 7507 +7509 2 -599.998068212281 -178.71082502678686 36.1525 0.1144 7508 +7510 2 -598.9334806310276 -178.32272713727858 36.2435 0.1144 7509 +7511 2 -597.8811381638657 -177.89505681821524 36.349 0.1144 7510 +7512 2 -596.8035970849589 -177.51336649443388 36.4314 0.1144 7511 +7513 2 -595.7106892659282 -177.17619182293308 36.4918 0.1144 7512 +7514 2 -594.5956731700428 -176.92877362247768 36.5322 0.1144 7513 +7515 2 -593.4626417172342 -176.77508026886088 36.5543 0.1144 7514 +7516 2 -592.3205258456037 -176.73867716775752 36.563 0.1144 7515 +7517 2 -591.1845430678759 -176.84632487421587 36.5691 0.1144 7516 +7518 2 -590.0485734119227 -176.98147912222012 36.5739 0.1144 7517 +7519 2 -588.914901524857 -177.13367949172297 36.5691 0.1144 7518 +7520 2 -587.779050599434 -177.212123900166 36.5736 0.1144 7519 +7521 2 -586.6815080228901 -177.12978136757792 36.6472 0.1144 7520 +7522 2 -585.6453729168752 -177.43817404272406 36.7027 0.1144 7521 +7523 2 -584.7343747906541 -177.8917859186948 36.5408 0.1144 7522 +7524 2 -583.7910351595634 -178.3581287436783 36.2166 0.1144 7523 +7525 2 -582.7264515164999 -178.74495088229187 35.9117 0.1144 7524 +7526 2 -581.6369156993211 -179.0938197732589 35.6544 0.1144 7525 +7527 2 -580.6061269348138 -179.58430403698756 35.4466 0.1144 7526 +7528 2 -579.4806615196524 -179.70081261725412 35.2926 0.1144 7527 +7529 2 -578.4716871266066 -180.1743719526893 35.1417 0.1144 7528 +7530 2 -577.3854143565063 -180.51829791701684 35.0358 0.1144 7529 +7531 2 -576.2821934694101 -180.81771128391065 34.9563 0.1144 7530 +7532 2 -575.2780299485985 -181.35760745306843 34.897 0.1144 7531 +7533 2 -574.306821864749 -181.96305085080715 34.8547 0.1144 7532 +7534 2 -573.2101027927488 -182.2641748902175 34.8272 0.1144 7533 +7535 2 -572.1615728470563 -182.71742811192266 34.8093 0.1144 7534 +7536 2 -571.6990947953677 -183.74459535814228 34.7861 0.1144 7535 +7537 2 -571.7700597222085 -183.8596490376074 35.2089 0.1144 7536 +7538 2 -572.320154721793 -184.6195279828561 36.1057 0.1144 7537 +7539 2 -572.2802845186815 -185.52631094305318 36.4633 0.1144 7538 +7540 2 -571.7378113050886 -186.52983471085057 36.7503 0.1144 7539 +7541 2 -571.4919860429923 -187.6270350118509 36.9684 0.1144 7540 +7542 2 -570.8714556401587 -188.4580730549989 37.1238 0.1144 7541 +7543 2 -570.0898786429036 -189.273500383068 37.2235 0.1144 7542 +7544 2 -569.6121321516799 -190.2982314942008 37.2817 0.1144 7543 +7545 2 -569.2231875124105 -191.36196877265994 37.3789 0.1144 7544 +7546 2 -568.8003860044734 -192.4192004808895 37.4814 0.1144 7545 +7547 2 -568.2328426805075 -193.40732750988005 37.5603 0.1144 7546 +7548 2 -567.6539924828191 -194.3921781679172 37.6177 0.1144 7547 +7549 2 -567.0364402922257 -195.35432033095415 37.655 0.1144 7548 +7550 2 -566.4430406036781 -196.3310794924835 37.6737 0.1144 7549 +7551 2 -565.815743980852 -197.28669585744953 37.6782 0.1144 7550 +7552 2 -565.5497310394699 -198.36688329258155 37.6782 0.1144 7551 +7553 2 -565.5465633646745 -199.50836163921653 37.6782 0.1144 7552 +7554 2 -565.4948144515754 -200.6512232012585 37.6782 0.1144 7553 +7555 2 -566.0193854407794 -201.61250387165902 37.6782 0.1144 7554 +7556 2 -565.9387200289916 -202.68579614375508 37.6782 0.1144 7555 +7557 2 -565.3550852026183 -203.6593230511614 37.6782 0.1144 7556 +7558 2 -564.684926361423 -204.5866360552586 37.6782 0.1144 7557 +7559 2 -564.4908980109312 -205.7001375816184 37.6782 0.1144 7558 +7560 2 -564.505475568541 -206.84313800804617 37.6782 0.1144 7559 +7561 2 -564.1497293448158 -207.9239153922957 37.6782 0.1144 7560 +7562 2 -563.6565561161024 -208.95427107189394 37.6782 0.1144 7561 +7563 2 -563.3783923099975 -210.06278811144418 37.6782 0.1144 7562 +7564 2 -563.4269177286967 -211.20260691447393 37.6782 0.1144 7563 +7565 2 -570.6897979129479 -184.03444727401964 34.7536 0.1144 7536 +7566 2 -569.6074390387967 -184.40030179093273 34.7094 0.1144 7565 +7567 2 -568.4986709556956 -184.68110659483844 34.6531 0.1144 7566 +7568 2 -567.3971135694385 -184.96277502541338 34.5638 0.1144 7567 +7569 2 -566.3544078482357 -185.36986626699328 34.4134 0.1144 7568 +7570 2 -565.3816173911414 -185.95430523436798 34.2558 0.1144 7569 +7571 2 -564.359794112825 -186.41807957377333 34.0726 0.1144 7570 +7572 2 -563.3467298546949 -186.91998539053495 33.9343 0.1144 7571 +7573 2 -562.3916705118579 -187.54646371550697 33.8383 0.1144 7572 +7574 2 -561.343255245476 -187.97871605988152 33.7803 0.1144 7573 +7575 2 -560.2553595383336 -188.32101227718644 33.7532 0.1144 7574 +7576 2 -559.2503593346887 -188.8552498279761 33.7431 0.1144 7575 +7577 2 -558.2928300089625 -189.47938952417755 33.7434 0.1144 7576 +7578 2 -557.348274408731 -190.12123409108702 33.7442 0.1144 7577 +7579 2 -556.4303641860506 -190.80287393227812 33.745 0.1144 7578 +7580 2 -555.51477897218 -191.48854915870916 33.7464 0.1144 7579 +7581 2 -554.580730075415 -192.1443457570932 33.7484 0.1144 7580 +7582 2 -553.5242379288592 -192.51661840484743 33.7512 0.1144 7581 +7583 2 -552.4066704638751 -192.74479592610922 33.7551 0.1144 7582 +7584 2 -551.3823434488529 -193.22235363602064 33.7604 0.1144 7583 +7585 2 -550.4305904756525 -193.85697062917788 33.7677 0.1144 7584 +7586 2 -549.5909373003374 -194.61563698877436 33.7781 0.1144 7585 +7587 2 -548.9474783165376 -195.55672379463633 33.7932 0.1144 7586 +7588 2 -548.2216628515471 -196.4199269693179 33.8142 0.1144 7587 +7589 2 -547.2288671981967 -196.93396677389396 33.8408 0.1144 7588 +7590 2 -546.1505775570877 -197.31510335030336 33.8724 0.1144 7589 +7591 2 -545.1013087309641 -197.74975807594805 33.9444 0.1144 7590 +7592 2 -544.2132570024754 -198.42255086539242 34.0424 0.1144 7591 +7593 2 -543.5471406525867 -199.34414475556915 34.1242 0.1144 7592 +7594 2 -542.939262331746 -200.31274185811063 34.1796 0.1144 7593 +7595 2 -542.0859910959605 -201.0237206047556 34.2087 0.1144 7594 +7596 2 -541.0784975186236 -201.56679178943133 34.2129 0.1144 7595 +7597 2 -540.2655341337766 -202.34404026636642 34.1936 0.1144 7596 +7598 2 -539.3339489081065 -202.97141626791054 34.1603 0.1144 7597 +7599 2 -538.3362267068385 -203.50814393544485 34.0766 0.1144 7598 +7600 2 -537.4707544737917 -204.23762337574797 33.9741 0.1144 7599 +7601 2 -536.5343203687509 -204.8843639937057 33.889 0.1144 7600 +7602 2 -535.7568327383938 -205.70545675012355 33.8268 0.1144 7601 +7603 2 -534.9898251637534 -206.55322943218178 33.7862 0.1144 7602 +7604 2 -534.0114202051213 -207.11743334649302 33.7658 0.1144 7603 +7605 2 -532.9010296831646 -207.36259649370086 33.7638 0.1144 7604 +7606 2 -531.7721691665195 -207.54712178725114 33.7708 0.1144 7605 +7607 2 -530.6811049577537 -207.88297668501244 33.7826 0.1144 7606 +7608 2 -530.0037427278814 -208.77216146870055 33.7999 0.1144 7607 +7609 2 -529.1204783868385 -209.48873428694165 33.8232 0.1144 7608 +7610 2 -528.0334498593987 -209.82212275484716 33.8528 0.1144 7609 +7611 2 -526.8978063023678 -209.7339728746775 33.8884 0.1144 7610 +7612 2 -525.9364878269309 -210.31037482538895 33.9718 0.1144 7611 +7613 2 -525.1234130197205 -211.10706854814543 34.0802 0.1144 7612 +7614 2 -524.2764546021065 -211.8762555272557 34.1662 0.1144 7613 +7615 2 -523.279532072908 -212.43631944394417 34.2297 0.1144 7614 +7616 2 -522.3381446782138 -213.08474675144348 34.2726 0.1144 7615 +7617 2 -521.4339099567095 -213.78663852260638 34.2966 0.1144 7616 +7618 2 -520.4385362490395 -214.34995838030667 34.3042 0.1144 7617 +7619 2 -610.0735099574899 -178.98266008505337 37.6782 0.1144 7471 +7620 2 -610.4773616367797 -180.0528655378216 37.7283 0.1144 7619 +7621 2 -610.8812130199835 -181.1232124116361 37.7482 0.1144 7620 +7622 2 -611.2850646992733 -182.19341786440427 37.7765 0.1144 7621 +7623 2 -611.6888455199969 -183.26369387965255 37.816 0.1144 7622 +7624 2 -612.0926971992868 -184.3338993324207 37.8697 0.1144 7623 +7625 2 -612.4966194410567 -185.40417564375505 37.9428 0.1144 7624 +7626 2 -613.207953660579 -184.87179813846708 38.0556 0.1144 7625 +7627 2 -614.1226180091753 -184.18689880323083 38.2141 0.1144 7626 +7628 2 -615.0373529202516 -183.50207032656076 38.4166 0.1144 7627 +7629 2 -615.9528675716421 -182.81632424156348 38.6585 0.1144 7628 +7630 2 -616.5849415149862 -181.90929622096795 38.9973 0.1144 7629 +7631 2 -616.964026544526 -180.8940459314438 39.4439 0.1144 7630 +7632 2 -617.3212772708489 -179.8714667127317 39.9568 0.1144 7631 +7633 2 -617.3745780603235 -178.7641759488213 40.4572 0.1144 7632 +7634 2 -617.1108027970942 -177.66102967542494 40.8744 0.1144 7633 +7635 2 -617.090492801689 -176.5203507047734 41.1799 0.1144 7634 +7636 2 -617.4413734712352 -175.43312844794693 41.3619 0.1144 7635 +7637 2 -617.9411193736108 -174.40441287838516 41.4431 0.1144 7636 +7638 2 -618.4737808494381 -173.39273682244155 41.4492 0.1144 7637 +7639 2 -618.7892593818212 -172.2940560018183 41.4061 0.1144 7638 +7640 2 -618.7843020083924 -171.14937865669063 41.3322 0.1144 7639 +7641 2 -618.7801913847247 -170.00555161435724 41.2378 0.1144 7640 +7642 2 -618.4826040699447 -168.80694563653051 40.7641 0.1144 7641 +7643 2 -618.7243835837871 -167.71702008095977 40.4914 0.1144 7642 +7644 2 -619.6057137073002 -167.1137219677615 40.2937 0.1144 7643 +7645 2 -620.6993116514548 -166.78352924140174 40.1685 0.1144 7644 +7646 2 -621.8320891188957 -166.6532473575568 40.1134 0.1144 7645 +7647 2 -622.9481246392593 -166.41375289564482 40.1232 0.1144 7646 +7648 2 -624.066559283946 -166.1766676249836 40.1853 0.1144 7647 +7649 2 -625.1952509375224 -166.0390232602346 40.3071 0.1144 7648 +7650 2 -626.320905645694 -165.86587569897293 40.4793 0.1144 7649 +7651 2 -627.3765784845114 -165.44587152353697 40.6596 0.1144 7650 +7652 2 -628.4709321860051 -165.12621629359913 40.838 0.1144 7651 +7653 2 -629.5700125772921 -164.87933240694693 41.078 0.1144 7652 +7654 2 -630.5342382043026 -164.46797562723347 41.4484 0.1144 7653 +7655 2 -631.5859293434517 -164.05842831881168 41.7707 0.1144 7654 +7656 2 -632.5473929950683 -163.44645912300203 42.0216 0.1144 7655 +7657 2 -633.5500918767925 -162.8968725032694 42.222 0.1144 7656 +7658 2 -634.4009405034666 -162.16092776044772 42.4287 0.1144 7657 +7659 2 -635.2656670461017 -161.4161025081489 42.572 0.1144 7658 +7660 2 -636.06012697853 -160.5941967557866 42.6577 0.1144 7659 +7661 2 -636.9271885969026 -159.8485985731539 42.7165 0.1144 7660 +7662 2 -637.8331135609817 -159.14996303908893 42.754 0.1144 7661 +7663 2 -638.8412855231973 -158.62061117633365 42.7966 0.1144 7662 +7664 2 -639.9564231648885 -158.4384613202176 42.8646 0.1144 7663 +7665 2 -640.917104646072 -158.9768850304229 42.8249 0.1144 7664 +7666 2 -640.7606244181877 -157.9960810039827 42.7395 0.1144 7665 +7667 2 -640.598733302024 -156.86401517705073 42.3727 0.1144 7666 +7668 2 -640.6454677296306 -155.78584352871442 42.1515 0.1144 7667 +7669 2 -640.6818471438452 -154.655041340787 41.911 0.1144 7668 +7670 2 -640.534522395449 -153.5230060107244 41.7038 0.1144 7669 +7671 2 -640.3290599770677 -152.3973543573995 41.5324 0.1144 7670 +7672 2 -639.8490658359833 -151.38843720295884 41.3129 0.1144 7671 +7673 2 -639.3844180050812 -150.34476244843134 41.1384 0.1144 7672 +7674 2 -639.3301601485866 -149.2072651011779 41.0138 0.1144 7673 +7675 2 -639.6787024854484 -148.12237140619433 40.9156 0.1144 7674 +7676 2 -640.2317063854828 -147.12134456512226 40.8296 0.1144 7675 +7677 2 -640.8791468668503 -146.20367138087502 40.4902 0.1144 7676 +7678 2 -640.9087630458714 -159.88769380711872 42.7829 0.1144 7665 +7679 2 -640.8254822729141 -161.02808518417115 42.7384 0.1144 7678 +7680 2 -640.775359553804 -162.1710208617266 42.6902 0.1144 7679 +7681 2 -640.7511168861647 -163.31401072304018 42.6334 0.1144 7680 +7682 2 -640.8085500542634 -164.45469670577265 42.5656 0.1144 7681 +7683 2 -640.9008451387455 -165.59467785797668 42.4956 0.1144 7682 +7684 2 -640.9938491049757 -166.7338119643335 42.4127 0.1144 7683 +7685 2 -641.0853680021767 -167.87301367230938 42.3209 0.1144 7684 +7686 2 -641.1775925241786 -169.01292396594724 42.2232 0.1144 7685 +7687 2 -641.2706670528889 -170.1521289308703 42.1235 0.1144 7686 +7688 2 -641.3629621373709 -171.29211008307433 42.0238 0.1144 7687 +7689 2 -641.4560366660811 -172.43131504799734 41.9244 0.1144 7688 +7690 2 -641.5482611880831 -173.57122534163526 41.8258 0.1144 7689 +7691 2 -641.6413357167933 -174.71043030655832 41.7284 0.1144 7690 +7692 2 -641.7335599427092 -175.85048202124247 41.6324 0.1144 7691 +7693 2 -641.8250082774301 -176.98961287065205 41.5386 0.1144 7692 +7694 2 -641.9180828061403 -178.12881783557512 41.4476 0.1144 7693 +7695 2 -642.0103073281423 -179.26872812921297 41.3608 0.1144 7694 +7696 2 -642.1033818568525 -180.40793309413604 41.2793 0.1144 7695 +7697 2 -642.1956769413346 -181.54791424634013 41.2042 0.1144 7696 +7698 2 -642.3720706727663 -182.67668702751067 41.1438 0.1144 7697 +7699 2 -642.6116324402112 -183.79434903794973 41.102 0.1144 7698 +7700 2 -642.8827429444225 -184.90642023373996 41.076 0.1144 7699 +7701 2 -643.0809946659599 -186.0312082603954 41.062 0.1144 7700 +7702 2 -643.4055323269849 -187.12394583482782 41.0561 0.1144 7701 +7703 2 -644.0004482952295 -188.09110136044288 41.055 0.1144 7702 +7704 2 -644.6197023033964 -189.05180244473976 41.0556 0.1144 7703 +7705 2 -644.604499735648 -190.1324442780656 41.057 0.1144 7704 +7706 2 -644.5818936250118 -191.27055851827257 41.0586 0.1144 7705 +7707 2 -644.7283680706134 -192.40344059809624 41.0609 0.1144 7706 +7708 2 -644.9953791409991 -193.51465468111152 41.0642 0.1144 7707 +7709 2 -645.3368891040955 -194.60657925959944 41.0698 0.1144 7708 +7710 2 -645.885709899561 -195.60354896047536 41.0771 0.1144 7709 +7711 2 -646.3834825286804 -196.6318781051073 41.0847 0.1144 7710 +7712 2 -646.9047529618556 -197.64979124260836 41.0894 0.1144 7711 +7713 2 -647.2931980375113 -198.7160046326945 41.123 0.1144 7712 +7714 2 -647.5699807800519 -199.82073377752212 41.1695 0.1144 7713 +7715 2 -647.4907558222761 -200.9490420935712 41.183 0.1144 7714 +7716 2 -647.1390349168632 -202.0323027845849 41.1342 0.1144 7715 +7717 2 -646.6830418033624 -203.0692417029595 41.0043 0.1144 7716 +7718 2 -645.96208508257 -203.94214243428254 40.8212 0.1144 7717 +7719 2 -645.5627854299084 -204.95324917315057 40.5348 0.1144 7718 +7720 2 -645.2636376233812 -206.05359053375187 40.2993 0.1144 7719 +7721 2 -644.7713111444289 -207.0847965161445 40.1274 0.1144 7720 +7722 2 -643.9702921582996 -207.89855679034113 40.0156 0.1144 7721 +7723 2 -642.9644988904654 -208.440075896541 39.9543 0.1144 7722 +7724 2 -641.8247080276446 -208.40770818067764 39.9277 0.1144 7723 +7725 2 -618.8446031279872 -169.7719164557661 41.6147 0.1144 7641 +7726 2 -619.1470809910397 -168.66840007964694 41.6226 0.1144 7725 +7727 2 -619.4478620976229 -167.56473872944818 41.6256 0.1144 7726 +7728 2 -619.7502691021091 -166.46129291580908 41.6304 0.1144 7727 +7729 2 -620.0429924660011 -165.35605905719282 41.6363 0.1144 7728 +7730 2 -620.2193063770433 -164.22632766222628 41.6438 0.1144 7729 +7731 2 -620.2710552901424 -163.08346610018427 41.6567 0.1144 7730 +7732 2 -620.3284595646626 -161.94132348681816 41.6769 0.1144 7731 +7733 2 -620.4415751449226 -160.8033987417219 41.7004 0.1144 7732 +7734 2 -620.5621000816781 -159.67277272503028 41.7169 0.1144 7733 +7735 2 -620.3492076747594 -158.5834508841235 41.7427 0.1144 7734 +7736 2 -620.3716071172905 -157.54404853422514 41.9126 0.1144 7735 +7737 2 -620.0777540681762 -156.486942751663 42.0398 0.1144 7736 +7738 2 -620.1322339616132 -155.59327188315999 41.9297 0.1144 7737 +7739 2 -620.6815353287955 -154.7733277338352 41.6377 0.1144 7738 +7740 2 -621.3838729214854 -153.9447944237659 41.4327 0.1144 7739 +7741 2 -621.4935286513894 -152.93958666867283 41.3778 0.1144 7740 +7742 2 -621.492552277342 -151.852334854835 41.4781 0.1144 7741 +7743 2 -621.2926234350044 -150.7517971326275 41.6648 0.1144 7742 +7744 2 -620.9341278459622 -149.66704949716697 41.8678 0.1144 7743 +7745 2 -621.4958504984717 -148.72338739574636 42.1086 0.1144 7744 +7746 2 -622.4282623400472 -148.10647832814416 42.1772 0.1144 7745 +7747 2 -612.7894320110232 -185.77616198607106 37.6631 0.1144 7625 +7748 2 -613.4969892105348 -186.67630734067743 37.6029 0.1144 7747 +7749 2 -614.2045496669937 -187.5748970637745 37.5771 0.1144 7748 +7750 2 -614.9112598206582 -188.4743335366327 37.5463 0.1144 7749 +7751 2 -615.618820277117 -189.37292325972984 37.5119 0.1144 7750 +7752 2 -616.3256012893476 -190.27228917010794 37.4749 0.1144 7751 +7753 2 -617.0331617458064 -191.17087889320507 37.436 0.1144 7752 +7754 2 -617.7398013369907 -192.0702445074971 37.3962 0.1144 7753 +7755 2 -618.4473617934495 -192.96883423059418 37.3551 0.1144 7754 +7756 2 -619.1541428056802 -193.86820014097228 37.3122 0.1144 7755 +7757 2 -619.8625500119001 -194.76764016686386 37.2669 0.1144 7756 +7758 2 -620.5692601655644 -195.66707663972207 37.2179 0.1144 7757 +7759 2 -621.2767500595432 -196.56559550425297 37.1636 0.1144 7758 +7760 2 -621.9835310717738 -197.46496141463112 37.1022 0.1144 7759 +7761 2 -622.6902412254383 -198.36439788748928 37.0317 0.1144 7760 +7762 2 -623.3978016818971 -199.2629876105864 36.9505 0.1144 7761 +7763 2 -623.552616698771 -198.37101173616472 36.8418 0.1144 7762 +7764 2 -623.7466687361515 -197.246196526102 36.7041 0.1144 7763 +7765 2 -623.9415002177602 -196.12060512875829 36.5406 0.1144 7764 +7766 2 -624.0887587657278 -194.98763091455456 36.3541 0.1144 7765 +7767 2 -624.197909523228 -193.85210203683417 36.1469 0.1144 7766 +7768 2 -624.3062135309672 -192.71572285631927 35.9215 0.1144 7767 +7769 2 -624.5172948129378 -191.59667087700748 35.6689 0.1144 7768 +7770 2 -624.8406692370243 -190.50932032090938 35.3811 0.1144 7769 +7771 2 -625.1697695850116 -189.42275957205342 35.0672 0.1144 7770 +7772 2 -625.4568139005938 -188.32812044846432 34.7301 0.1144 7771 +7773 2 -625.645166755809 -187.2235166045762 34.3638 0.1144 7772 +7774 2 -625.830341042473 -186.11727975671837 33.987 0.1144 7773 +7775 2 -626.0211908244135 -185.00214522638882 33.6311 0.1144 7774 +7776 2 -625.9119201809131 -183.8645327016384 33.3634 0.1144 7775 +7777 2 -625.8155962250855 -182.72376529522566 33.171 0.1144 7776 +7778 2 -626.0145306935531 -181.59733395810136 33.0392 0.1144 7777 +7779 2 -626.2167110361049 -180.47416211502232 32.9238 0.1144 7778 +7780 2 -626.4220563272469 -179.35912864404222 32.6169 0.1144 7779 +7781 2 -624.4245786915384 -199.16882916714067 36.7363 0.1144 7762 +7782 2 -625.551643356853 -199.06526401759962 36.2628 0.1144 7781 +7783 2 -626.6778612724064 -198.96084856526429 36.0542 0.1144 7782 +7784 2 -627.7761790963734 -198.7066798662547 35.812 0.1144 7783 +7785 2 -627.7361390203087 -197.70193651976822 35.6034 0.1144 7784 +7786 2 -627.4812987464009 -196.58664668981615 35.4351 0.1144 7785 +7787 2 -627.9743837414533 -195.59843448201147 35.3016 0.1144 7786 +7788 2 -628.3745815688734 -194.52984171630126 35.1868 0.1144 7787 +7789 2 -628.7570412699552 -193.45633276568728 35.0496 0.1144 7788 +7790 2 -629.1200690490905 -192.37634844562697 34.8874 0.1144 7789 +7791 2 -629.2332519348836 -191.24005019060607 34.7304 0.1144 7790 +7792 2 -629.3286931413049 -190.10053280323686 34.5722 0.1144 7791 +7793 2 -629.3140886398592 -188.97040169202117 34.3577 0.1144 7792 +7794 2 -629.0946840548309 -187.88431891521796 34.0704 0.1144 7793 +7795 2 -628.9028703958897 -186.75791801844824 33.8383 0.1144 7794 +7796 2 -629.2061143792955 -185.659989402131 33.6218 0.1144 7795 +7797 2 -629.5732347822759 -184.58411487891024 33.1794 0.1144 7796 +7798 2 -593.2011036634201 -201.622531581549 34.0477 0.1144 7443 +7799 2 -593.703157697697 -200.6059123968656 33.7187 0.1144 7798 +7800 2 -594.0953045924064 -199.5324944386733 33.5989 0.1144 7799 +7801 2 -594.107447322134 -198.39350976181638 33.4774 0.1144 7800 +7802 2 -593.8500660046705 -197.30982235420257 33.2693 0.1144 7801 +7803 2 -594.1031019636107 -196.21348567987158 33.0285 0.1144 7802 +7804 2 -593.8093335951241 -195.11593347807124 32.814 0.1144 7803 +7805 2 -593.327703395223 -194.07788003506212 32.6452 0.1144 7804 +7806 2 -592.9595843650527 -192.99636494981067 32.4943 0.1144 7805 +7807 2 -592.5913239138359 -191.9148495684731 32.3646 0.1144 7806 +7808 2 -592.2230634626192 -190.83333418713553 32.2596 0.1144 7807 +7809 2 -591.8548735738827 -189.7518896643642 32.0547 0.1144 7808 +7810 2 -588.5883008727606 -207.1864432751764 36.7086 0.1144 7437 +7811 2 -588.8747002464488 -208.2911925538596 36.951 0.1144 7810 +7812 2 -589.1596145511078 -209.39600943416175 37.0625 0.1144 7811 +7813 2 -589.2510596288815 -210.53669591508051 37.1706 0.1144 7812 +7814 2 -589.3328169208555 -211.67757424567023 37.2784 0.1144 7813 +7815 2 -589.4145745089155 -212.8183111552136 37.3895 0.1144 7814 +7816 2 -589.1584958474778 -213.40905900257005 37.5491 0.1144 7815 +7817 2 -588.3593090231561 -214.19206390027554 37.7418 0.1144 7816 +7818 2 -587.2468991613705 -214.21964558626345 37.9467 0.1144 7817 +7819 2 -586.1191094376863 -214.2642363829859 38.2066 0.1144 7818 +7820 2 -585.1746112781601 -214.87864526691558 38.4754 0.1144 7819 +7821 2 -584.5352620911999 -215.8156394489324 38.7685 0.1144 7820 +7822 2 -584.2401632898739 -216.90715043259493 39.0835 0.1144 7821 +7823 2 -584.0251204420905 -218.0270426477733 39.389 0.1144 7822 +7824 2 -583.8301439864022 -219.15433080158638 39.6502 0.1144 7823 +7825 2 -583.8286942922905 -220.25204273938564 39.9826 0.1144 7824 +7826 2 -583.8481953429708 -221.3400404457354 40.3704 0.1144 7825 +7827 2 -583.5895375743257 -222.45340666074267 40.6613 0.1144 7826 +7828 2 -583.5611919198275 -223.5972364618368 41.0525 0.1144 7827 +7829 2 -589.5666394405243 -212.80081039595015 36.3115 0.1144 7815 +7830 2 -590.1919715320075 -212.78352267310086 34.435 0.1144 7829 +7831 2 -590.8862252649985 -213.11420583600474 33.574 0.1144 7830 +7832 2 -590.6587102615915 -213.9768259280642 32.7911 0.1144 7831 +7833 2 -590.5972776139124 -215.08417037754649 32.1992 0.1144 7832 +7834 2 -590.792343956918 -216.2105780842967 31.7831 0.1144 7833 +7835 2 -591.3613629967836 -217.18574042579203 31.5207 0.1144 7834 +7836 2 -591.8810777984497 -218.2036503063458 31.3967 0.1144 7835 +7837 2 -591.9110079780356 -219.34265235829744 31.3398 0.1144 7836 +7838 2 -591.8730456923897 -220.4864620255361 31.2967 0.1144 7837 +7839 2 -591.7824969839833 -221.61955497027006 31.2074 0.1144 7838 +7840 2 -591.8585354581229 -222.75624938850675 30.9299 0.1144 7839 +7841 2 -560.5136895273342 -213.64034473811014 32.6455 0.1144 7407 +7842 2 -561.4379396385636 -214.2198458786547 32.3456 0.1144 7841 +7843 2 -562.4748175631994 -214.7049717276909 32.2445 0.1144 7842 +7844 2 -563.4020705699306 -215.336239485071 32.1689 0.1144 7843 +7845 2 -564.1655215582122 -216.18721641101675 32.1138 0.1144 7844 +7846 2 -564.8812271967505 -217.0793885014592 32.0706 0.1144 7845 +7847 2 -565.4130928631394 -218.0689687775949 32.0516 0.1144 7846 +7848 2 -565.2945668927862 -219.0216198125241 32.132 0.1144 7847 +7849 2 -564.375659866117 -218.6257658920712 32.1216 0.1144 7848 +7850 2 -563.4248145098748 -218.01629838800503 31.9743 0.1144 7849 +7851 2 -562.4780789504721 -217.40273826009368 31.7072 0.1144 7850 +7852 2 -561.5320487197843 -216.79002813889068 31.3412 0.1144 7851 +7853 2 -560.5844628575871 -216.17731476074047 30.8977 0.1144 7852 +7854 2 -559.5189196608698 -215.87413858105404 30.3794 0.1144 7853 +7855 2 -558.413177718488 -215.82409373259125 29.8206 0.1144 7854 +7856 2 -557.3557222631446 -215.54193560322986 29.223 0.1144 7855 +7857 2 -556.286244942637 -215.19271843452285 28.6566 0.1144 7856 +7858 2 -555.2159276823488 -214.83939827895674 28.133 0.1144 7857 +7859 2 -554.1473515914465 -214.4650099405272 27.6704 0.1144 7858 +7860 2 -553.1529600579199 -214.15392169251604 27.1638 0.1144 7859 +7861 2 -552.0100881328642 -214.10712251603687 26.4312 0.1144 7860 +7862 2 -493.6182708638274 -290.1724697634492 30.3677 0.1144 7282 +7863 2 -494.7259517187307 -290.41096304151085 30.2991 0.1144 7862 +7864 2 -495.83774512923446 -290.6778199738933 30.2705 0.1144 7863 +7865 2 -496.9350639211939 -290.46176232229845 30.2322 0.1144 7864 +7866 2 -498.0511098045714 -290.21731812376635 30.1823 0.1144 7865 +7867 2 -499.1711605763196 -289.98511528419226 30.1196 0.1144 7866 +7868 2 -499.866034628756 -289.175163297189 29.9754 0.1144 7867 +7869 2 -500.8862175949356 -288.75183212007465 29.8222 0.1144 7868 +7870 2 -501.9910513521461 -288.45885681577715 29.6741 0.1144 7869 +7871 2 -503.1226123522598 -288.5380885835334 29.5302 0.1144 7870 +7872 2 -504.2496127668883 -288.4652118010368 29.3353 0.1144 7871 +7873 2 -505.36311760671015 -288.2523700248431 29.1133 0.1144 7872 +7874 2 -506.4595891507221 -288.0694739801289 28.838 0.1144 7873 +7875 2 -507.56240750629354 -288.33383724273335 28.5782 0.1144 7874 +7876 2 -508.68962509762645 -288.52874283985545 28.3847 0.1144 7875 +7877 2 -509.82263967352696 -288.6904971931107 28.2548 0.1144 7876 +7878 2 -510.9213175332891 -289.0073899359567 28.1826 0.1144 7877 +7879 2 -512.0419619527736 -289.2346673327175 28.1537 0.1144 7878 +7880 2 -513.0504422671715 -289.7738982252597 28.1551 0.1144 7879 +7881 2 -514.0451894566316 -289.50982530150344 28.1702 0.1144 7880 +7882 2 -514.9670876907743 -288.8484878189087 28.1918 0.1144 7881 +7883 2 -516.0292525738457 -288.4348612105167 28.2206 0.1144 7882 +7884 2 -517.1357024581176 -288.14676833730647 28.2565 0.1144 7883 +7885 2 -518.1334584132023 -287.5939186704953 28.3038 0.1144 7884 +7886 2 -519.1882771940914 -287.21032878600477 28.427 0.1144 7885 +7887 2 -520.3263808691843 -287.2717551218899 28.5326 0.1144 7886 +7888 2 -521.4479502616778 -287.0572331700489 28.6177 0.1144 7887 +7889 2 -522.5474208895431 -287.36698577853105 28.6868 0.1144 7888 +7890 2 -523.679581905702 -287.53114251305647 28.7431 0.1144 7889 +7891 2 -524.8235203703987 -287.5075866435673 28.7893 0.1144 7890 +7892 2 -525.13825873419 -287.8432028117683 28.6804 0.1144 7891 +7893 2 -525.998266463412 -288.5754462724276 29.8346 0.1144 7892 +7894 2 -526.7491838041449 -289.23229572046483 30.3657 0.1144 7893 +7895 2 -527.2760551754117 -289.87163478398236 31.122 0.1144 7894 +7896 2 -528.1428291246264 -290.47929992282354 31.8674 0.1144 7895 +7897 2 -529.1008546808431 -291.1041974213267 32.4321 0.1144 7896 +7898 2 -529.8408579976071 -291.97541926516334 32.8266 0.1144 7897 +7899 2 -530.3418833107912 -293.0037552197758 33.1794 0.1144 7898 +7900 2 -525.4347399941215 -287.27346995989 28.8288 0.1144 7891 +7901 2 -526.482436513928 -286.8130024883076 28.875 0.1144 7900 +7902 2 -527.3858103675236 -286.15077769215463 29.0094 0.1144 7901 +7903 2 -528.4177067336553 -285.53655178944115 29.2258 0.1144 7902 +7904 2 -529.4782791765541 -285.10672906625905 29.3076 0.1144 7903 +7905 2 -530.5106873250702 -284.61957160210846 29.37 0.1144 7904 +7906 2 -531.6016225342776 -284.37910534811095 29.4812 0.1144 7905 +7907 2 -532.7137074956142 -284.4729334823177 29.6173 0.1144 7906 +7908 2 -533.8406300395958 -284.4372504349948 29.7063 0.1144 7907 +7909 2 -534.9563372004629 -284.35459191341545 29.6184 0.1144 7908 +7910 2 -536.0601348583871 -284.52271978249485 29.4109 0.1144 7909 +7911 2 -537.0670023026707 -285.0555126124406 29.1197 0.1144 7910 +7912 2 -538.0950541036879 -285.4670100054162 28.6818 0.1144 7911 +7913 2 -539.129936229798 -285.3517967029819 28.1355 0.1144 7912 +7914 2 -540.0726995317323 -284.7892152275262 27.518 0.1144 7913 +7915 2 -541.04995958189 -284.3665720040319 26.8114 0.1144 7914 +7916 2 -541.8286535561317 -283.7460884067631 25.9696 0.1144 7915 +7917 2 -542.7340131978401 -283.28369658247806 25.1037 0.1144 7916 +7918 2 -543.783925658653 -282.9469069973808 24.2837 0.1144 7917 +7919 2 -544.6616671343518 -282.53784402932087 23.4106 0.1144 7918 +7920 2 -545.6521893494754 -282.3328765164156 22.6174 0.1144 7919 +7921 2 -546.7705259896595 -282.1426016120755 21.9947 0.1144 7920 +7922 2 -547.8935990904783 -282.0204311564936 21.4926 0.1144 7921 +7923 2 -548.4942304740247 -282.62188221942324 20.9824 0.1144 7922 +7924 2 -549.1428344509461 -283.4451121819013 20.5108 0.1144 7923 +7925 2 -550.0303789224974 -284.1629175740647 20.1736 0.1144 7924 +7926 2 -550.81899151176 -284.98559213551437 19.9446 0.1144 7925 +7927 2 -551.3839579933912 -285.9712819065039 19.7962 0.1144 7926 +7928 2 -551.7230015266315 -287.05917080366567 19.7168 0.1144 7927 +7929 2 -552.0071295770819 -288.16801655531344 19.6918 0.1144 7928 +7930 2 -552.1972461834673 -289.2944138990498 19.6912 0.1144 7929 +7931 2 -552.334026625461 -290.4304576705165 19.6946 0.1144 7930 +7932 2 -552.0753252381719 -291.53088371174533 19.6995 0.1144 7931 +7933 2 -551.9588223627815 -292.6655486667104 19.7062 0.1144 7932 +7934 2 -551.9467401286063 -293.80941251770724 19.7157 0.1144 7933 +7935 2 -552.0948410642833 -294.94222729199805 19.7285 0.1144 7934 +7936 2 -552.352937575289 -296.0558268793753 19.7465 0.1144 7935 +7937 2 -552.5593208589448 -297.1807026415052 19.7734 0.1144 7936 +7938 2 -552.641857891233 -298.3206633637676 19.8109 0.1144 7937 +7939 2 -552.7697273268799 -299.45739558704076 19.8589 0.1144 7938 +7940 2 -553.0537880717975 -300.56461484861313 19.9157 0.1144 7939 +7941 2 -553.3087160811797 -301.67177311644673 20.0219 0.1144 7940 +7942 2 -553.671348909084 -302.7055469031749 20.227 0.1144 7941 +7943 2 -554.1100221430605 -303.7605517201272 20.3813 0.1144 7942 +7944 2 -554.1230473261082 -304.9019932580986 20.4769 0.1144 7943 +7945 2 -554.3488121030858 -306.02365689996105 20.5157 0.1144 7944 +7946 2 -554.5591569525544 -307.1476924262244 20.5014 0.1144 7945 +7947 2 -554.2662778473683 -308.3273137551878 20.1902 0.1144 7946 +7948 2 -553.8806531976965 -309.39268433370285 19.9696 0.1144 7947 +7949 2 -553.4965572356977 -310.47092748437717 19.7878 0.1144 7948 +7950 2 -553.2466657954058 -311.585160583001 19.6416 0.1144 7949 +7951 2 -553.4846555526196 -312.67686842645605 19.5258 0.1144 7950 +7952 2 -554.1579496158489 -313.32549432358024 19.3607 0.1144 7951 +7953 2 -553.3666990449274 -314.13432529109843 19.2442 0.1144 7952 +7954 2 -553.0288056268511 -315.19901798292113 19.1492 0.1144 7953 +7955 2 -553.3639286562623 -316.234360522933 19.067 0.1144 7954 +7956 2 -554.2417622472971 -316.9633886063776 18.9931 0.1144 7955 +7957 2 -554.8812923705111 -317.86508859612024 18.9241 0.1144 7956 +7958 2 -554.9323784684351 -318.9977002553393 18.8499 0.1144 7957 +7959 2 -554.7625094299697 -320.1225660961269 18.7289 0.1144 7958 +7960 2 -554.4650319342622 -321.2019098363448 18.553 0.1144 7959 +7961 2 -553.941147149802 -322.20950303928487 18.3605 0.1144 7960 +7962 2 -553.5191318960735 -323.26270587616887 18.196 0.1144 7961 +7963 2 -553.1552473002494 -324.34664820900855 18.0761 0.1144 7962 +7964 2 -552.6152606503679 -325.3445910269845 17.9802 0.1144 7963 +7965 2 -552.1350444723412 -326.36684208830036 17.8851 0.1144 7964 +7966 2 -551.7469297059245 -327.4394906691922 17.8307 0.1144 7965 +7967 2 -551.4590519644562 -328.526915542904 17.8804 0.1144 7966 +7968 2 -551.5295228126494 -329.65475945034643 17.9565 0.1144 7967 +7969 2 -552.0225108130837 -330.67176484434765 18.0354 0.1144 7968 +7970 2 -552.5477460690189 -331.68728211447296 18.1278 0.1144 7969 +7971 2 -552.9775319835376 -332.7316616995288 18.2738 0.1144 7970 +7972 2 -552.7511587772433 -333.82572073882784 18.3928 0.1144 7971 +7973 2 -552.0519854328567 -334.73027481930023 18.4752 0.1144 7972 +7974 2 -552.5979295736179 -335.54763298141063 18.5355 0.1144 7973 +7975 2 -553.5837020933023 -336.0576834685537 18.5791 0.1144 7974 +7976 2 -554.4510082548429 -336.7826589937639 18.6089 0.1144 7975 +7977 2 -554.313687187252 -337.829952483859 18.6319 0.1144 7976 +7978 2 -554.189190617756 -338.96622705199115 18.6623 0.1144 7977 +7979 2 -554.1115649101336 -340.1074787987657 18.7043 0.1144 7978 +7980 2 -553.760680687554 -341.1963981081476 18.7585 0.1144 7979 +7981 2 -553.3410476812402 -342.2600711359207 18.8242 0.1144 7980 +7982 2 -552.5571023526177 -343.05838148392525 18.9808 0.1144 7981 +7983 2 -551.8563940087639 -343.91930376662765 19.1399 0.1144 7982 +7984 2 -551.9494990343435 -345.0439423637831 19.3283 0.1144 7983 +7985 2 -551.9082508090029 -346.1698553106428 19.4704 0.1144 7984 +7986 2 -552.333970545326 -347.23126769332214 19.569 0.1144 7985 +7987 2 -552.6351013947169 -348.3247340812578 19.6274 0.1144 7986 +7988 2 -552.8366226772271 -349.4414679182554 19.6492 0.1144 7987 +7989 2 -553.4900213497613 -350.2712133157905 19.6516 0.1144 7988 +7990 2 -554.5188077778893 -350.7708886556859 19.6391 0.1144 7989 +7991 2 -555.2727068838956 -351.5571451710566 19.6212 0.1144 7990 +7992 2 -555.6401342053123 -352.6313048814705 19.5963 0.1144 7991 +7993 2 -556.3049579839128 -353.44162872007297 19.564 0.1144 7992 +7994 2 -557.3817911774445 -353.7561422703512 19.5242 0.1144 7993 +7995 2 -558.4830503484733 -354.02219932856383 19.4432 0.1144 7994 +7996 2 -559.5264442063524 -354.46851857231206 19.3306 0.1144 7995 +7997 2 -560.4529377006107 -355.12481637445455 19.2257 0.1144 7996 +7998 2 -561.1896313907912 -355.9894551816153 19.1334 0.1144 7997 +7999 2 -562.0845794052302 -356.64978816689745 19.0539 0.1144 7998 +8000 2 -563.1830672342243 -356.6521587262837 18.9873 0.1144 7999 +8001 2 -564.1106720852406 -357.1491473482571 18.9334 0.1144 8000 +8002 2 -565.114280035479 -357.6851860522869 18.886 0.1144 8001 +8003 2 -565.499705836911 -358.67368191550065 18.5578 0.1144 8002 +8004 2 -552.0121662130709 -335.2074188643596 19.4007 0.1144 7973 +8005 2 -552.1085748495261 -336.30773985153417 19.5059 0.1144 8004 +8006 2 -551.9411823078444 -337.4318330580742 19.5462 0.1144 8005 +8007 2 -551.1257693700497 -338.1969848540448 19.556 0.1144 8006 +8008 2 -550.5420841150519 -339.1608242717374 19.5071 0.1144 8007 +8009 2 -550.215470626862 -340.24166264972575 19.5297 0.1144 8008 +8010 2 -549.9170954545824 -341.3444805071107 19.572 0.1144 8009 +8011 2 -549.6987931127538 -342.46761859637314 19.6049 0.1144 8010 +8012 2 -549.7748247769129 -343.6075656986745 19.635 0.1144 8011 +8013 2 -550.313934691862 -344.61575809083166 19.6826 0.1144 8012 +8014 2 -554.954685770458 -306.3840657083787 21.3511 0.1144 7946 +8015 2 -555.219136768537 -305.27311579068885 21.5226 0.1144 8014 +8016 2 -555.1924423961073 -304.14218154835623 21.6267 0.1144 8015 +8017 2 -554.9269869572307 -303.0309707222881 21.7354 0.1144 8016 +8018 2 -554.6040858532089 -301.9333575267491 21.8194 0.1144 8017 +8019 2 -554.3143664899231 -300.82697494801005 21.9321 0.1144 8018 +8020 2 -526.8105709399525 -285.4109986907173 30.07 0.1144 7902 +8021 2 -526.3226590434771 -285.4819608022825 31.2458 0.1144 8020 +8022 2 -526.042902355528 -286.2029791415415 31.7638 0.1144 8021 +8023 2 -524.9978491371 -286.51545437360505 32.3086 0.1144 8022 +8024 2 -524.5139733071073 -287.3605671359918 32.7718 0.1144 8023 +8025 2 -524.128382411252 -288.40981571523 33.1663 0.1144 8024 +8026 2 -523.0331137146063 -288.3897034764723 33.4793 0.1144 8025 +8027 2 -522.900901053235 -288.1791326518713 33.7417 0.1144 8026 +8028 2 -522.3472787521762 -287.17890020000306 33.9108 0.1144 8027 +8029 2 -522.2654942202802 -286.0510326056718 33.976 0.1144 8028 +8030 2 -522.46845400706 -284.9270845753117 34.062 0.1144 8029 +8031 2 -522.9018434400439 -283.8787845994565 34.2098 0.1144 8030 +8032 2 -523.3553733806361 -282.8362543682467 34.4084 0.1144 8031 +8033 2 -523.8089741797945 -281.79365357455686 34.643 0.1144 8032 +8034 2 -524.2617246761587 -280.75189953062807 34.9 0.1144 8033 +8035 2 -524.7152546167509 -279.7093692994183 35.1663 0.1144 8034 +8036 2 -524.7273131640374 -278.5768191321244 35.4166 0.1144 8035 +8037 2 -524.5404492417165 -277.4504285983685 35.6384 0.1144 8036 +8038 2 -524.3453796417637 -276.3255765231274 35.8372 0.1144 8037 +8039 2 -524.1487544103016 -275.200721190939 36.0192 0.1144 8038 +8040 2 -523.952908623068 -274.07508967146975 36.1906 0.1144 8039 +8041 2 -523.7570628358342 -272.94945815200043 36.3569 0.1144 8040 +8042 2 -523.5604376043722 -271.8246028198121 36.5224 0.1144 8041 +8043 2 -523.3654385668995 -270.69982160313725 36.6892 0.1144 8042 +8044 2 -523.1695927796657 -269.5741900836679 36.857 0.1144 8043 +8045 2 -522.9728966896375 -268.4494053139597 37.0336 0.1144 8044 +8046 2 -522.6459566473422 -267.3558141797856 37.214 0.1144 8045 +8047 2 -521.9813768436968 -266.42895939904236 37.3926 0.1144 8046 +8048 2 -521.3078080690718 -265.5062577376966 37.5651 0.1144 8047 +8049 2 -520.6335307087849 -264.5842617011518 37.7286 0.1144 8048 +8050 2 -519.7337675687916 -263.92717133300647 38.2407 0.1144 8049 +8051 2 -522.6320082002013 -289.08126417974705 33.7165 0.1144 8026 +8052 2 -522.4526613949743 -290.1397834159703 33.8817 0.1144 8051 +8053 2 -522.6808353632026 -291.2590479335098 33.9626 0.1144 8052 +8054 2 -523.0061424015281 -292.355817636235 33.9805 0.1144 8053 +8055 2 -523.475612167965 -293.39299708956105 33.9402 0.1144 8054 +8056 2 -524.0301185256349 -294.37626079239146 33.8047 0.1144 8055 +8057 2 -524.2066306915108 -295.4484651550471 33.5938 0.1144 8056 +8058 2 -524.1395460333437 -296.5872640919269 33.3553 0.1144 8057 +8059 2 -524.1404107829273 -297.72783164021513 33.1198 0.1144 8058 +8060 2 -524.1962847664834 -298.87021141855575 32.9025 0.1144 8059 +8061 2 -524.2351973091686 -299.97444254654556 32.6214 0.1144 8060 +8062 2 -523.8206092852167 -300.9588592928455 32.3075 0.1144 8061 +8063 2 -523.043877412199 -301.7904895456853 32.027 0.1144 8062 +8064 2 -522.0719473248267 -302.36927344772516 31.7688 0.1144 8063 +8065 2 -521.1363874115694 -302.96998314359007 31.4639 0.1144 8064 +8066 2 -520.5842713232797 -303.91847369443997 31.1525 0.1144 8065 +8067 2 -520.413835322299 -305.01017496748574 30.828 0.1144 8066 +8068 2 -520.1227863204465 -306.05870224348797 30.4721 0.1144 8067 +8069 2 -519.9376725293348 -307.1698182654858 30.2554 0.1144 8068 +8070 2 -520.0138019958961 -308.2968254900949 30.1823 0.1144 8069 +8071 2 -519.6555925992623 -309.3720115615091 30.196 0.1144 8070 +8072 2 -519.298986005815 -310.45844401109355 30.2389 0.1144 8071 +8073 2 -519.3929108373196 -311.59680222625553 30.2935 0.1144 8072 +8074 2 -519.2310859215843 -312.7297459435898 30.3677 0.1144 8073 +8075 2 -513.4861101055005 -290.3054951634052 28.1182 0.1144 7880 +8076 2 -513.3867751369856 -291.4134673670413 28.1084 0.1144 8075 +8077 2 -513.0681853415842 -292.5121416737701 28.1047 0.1144 8076 +8078 2 -512.7584291800688 -293.61330935419085 28.0997 0.1144 8077 +8079 2 -512.1504835536952 -294.58027996665703 28.0916 0.1144 8078 +8080 2 -511.26078470308926 -295.29676860245695 28.0795 0.1144 8079 +8081 2 -510.66790296313457 -296.0599114216123 28.0658 0.1144 8080 +8082 2 -511.4021839090309 -296.9286464056514 28.0521 0.1144 8081 +8083 2 -511.8765393635023 -297.9626541004068 28.026 0.1144 8082 +8084 2 -512.2115845222664 -299.03519037559226 27.9414 0.1144 8083 +8085 2 -512.4907660930439 -300.142470132717 27.8865 0.1144 8084 +8086 2 -512.2175797616676 -301.2039748893475 27.9273 0.1144 8085 +8087 2 -511.8650794120266 -302.2880117676422 27.98 0.1144 8086 +8088 2 -512.514229221235 -303.22204674836007 28.0286 0.1144 8087 +8089 2 -513.341732800327 -304.01093224486135 28.1182 0.1144 8088 +8090 2 -483.98997098784446 -306.16188048768004 22.5898 0.1144 7265 +8091 2 -483.31345856258 -307.0842304312822 22.8578 0.1144 8090 +8092 2 -482.8607050113691 -308.0936696180913 23.0162 0.1144 8091 +8093 2 -482.60046161253194 -309.1875870342438 23.2147 0.1144 8092 +8094 2 -482.5268007276694 -310.32644291364255 23.3677 0.1144 8093 +8095 2 -482.9250106654993 -311.38942404960574 23.4677 0.1144 8094 +8096 2 -483.70639212797636 -312.2209930365799 23.5161 0.1144 8095 +8097 2 -484.4373967029193 -313.1010348943415 23.5111 0.1144 8096 +8098 2 -484.54420446959705 -314.2329146852104 23.4474 0.1144 8097 +8099 2 -484.6421581724473 -315.3720591545811 23.3356 0.1144 8098 +8100 2 -484.45856270599484 -316.50099748535837 23.1835 0.1144 8099 +8101 2 -484.02050343666644 -316.7063438428996 23.0332 0.1144 8100 +8102 2 -483.8954852199587 -317.6864877994138 22.6909 0.1144 8101 +8103 2 -484.01484238817926 -317.8566558234206 23.0569 0.1144 8102 +8104 2 -484.47865027930084 -318.8962275910891 23.0033 0.1144 8103 +8105 2 -484.9164732104829 -319.9520791578025 22.9808 0.1144 8104 +8106 2 -485.0022934237051 -321.0774803222778 22.9488 0.1144 8105 +8107 2 -484.8922891064633 -322.21541158126854 22.9083 0.1144 8106 +8108 2 -484.70473562723146 -323.3434930953569 22.862 0.1144 8107 +8109 2 -484.9985581794765 -324.4151652456866 22.777 0.1144 8108 +8110 2 -485.63982621512923 -325.2973526840749 22.5957 0.1144 8109 +8111 2 -486.3814055933441 -326.15881973266494 22.4514 0.1144 8110 +8112 2 -487.14330776009695 -327.00654071759885 22.3959 0.1144 8111 +8113 2 -487.9570110917745 -327.80098347703273 22.4245 0.1144 8112 +8114 2 -488.4887685927472 -328.8084533674807 22.4813 0.1144 8113 +8115 2 -489.17933306024605 -329.7191697702252 22.5642 0.1144 8114 +8116 2 -489.8795986374197 -330.6233303762161 22.6683 0.1144 8115 +8117 2 -490.9294978634281 -331.0696632399254 22.7749 0.1144 8116 +8118 2 -492.0420001556799 -331.33567312646073 22.8822 0.1144 8117 +8119 2 -492.19102532660844 -331.655527387695 23.061 0.1144 8118 +8120 2 -492.70509938318753 -332.5981891320934 23.3606 0.1144 8119 +8121 2 -493.2685102333096 -333.5838756461357 23.6438 0.1144 8120 +8122 2 -493.7517028747002 -334.6186796620275 23.8563 0.1144 8121 +8123 2 -494.384693377782 -335.5704999407609 24.0021 0.1144 8122 +8124 2 -495.102804950624 -336.46182853838945 24.0856 0.1144 8123 +8125 2 -495.82006977370486 -337.3523068332237 24.1105 0.1144 8124 +8126 2 -496.4685275780736 -338.2791278601503 24.093 0.1144 8125 +8127 2 -496.8197416117057 -339.3630824314216 24.0594 0.1144 8126 +8128 2 -497.4122383217716 -340.3374453969334 24.0178 0.1144 8127 +8129 2 -497.9668024162329 -341.29313199573784 23.9434 0.1144 8128 +8130 2 -498.2776040805295 -342.3607384660584 23.8147 0.1144 8129 +8131 2 -498.90989251184385 -343.31015310657443 23.7043 0.1144 8130 +8132 2 -499.6255275879021 -344.2022543384507 23.608 0.1144 8131 +8133 2 -500.35249648151887 -345.08476262606814 23.5218 0.1144 8132 +8134 2 -501.09979171670705 -345.95182779747404 23.4421 0.1144 8133 +8135 2 -501.81705979673507 -346.8407504607991 23.3642 0.1144 8134 +8136 2 -502.2355962782367 -347.8544179919217 23.2468 0.1144 8135 +8137 2 -502.60150547709446 -348.87688490492735 23.073 0.1144 8136 +8138 2 -503.25956658873577 -349.8100900127924 22.893 0.1144 8137 +8139 2 -503.86267491073716 -350.7820710269757 22.7128 0.1144 8138 +8140 2 -504.1023755425678 -351.8334065667059 22.4885 0.1144 8139 +8141 2 -504.1211409697644 -352.90125014548613 22.1436 0.1144 8140 +8142 2 -504.52104214654213 -353.8994636991969 21.7854 0.1144 8141 +8143 2 -505.0650377495257 -354.9044843327834 21.4893 0.1144 8142 +8144 2 -504.96731960835905 -355.94945656920254 21.2373 0.1144 8143 +8145 2 -504.6107871304252 -357.0342628247977 21.0202 0.1144 8144 +8146 2 -504.2299808632548 -358.0948351546667 20.7759 0.1144 8145 +8147 2 -504.0133692621876 -359.1872175713519 20.4879 0.1144 8146 +8148 2 -503.8572130317482 -360.31451629027924 20.2125 0.1144 8147 +8149 2 -503.8842113764988 -361.36781067428615 19.8404 0.1144 8148 +8150 2 -504.2702273291485 -362.41216933121405 19.5046 0.1144 8149 +8151 2 -504.490414413252 -363.52979077785585 19.2455 0.1144 8150 +8152 2 -504.23327221050545 -364.62852302347665 19.0539 0.1144 8151 +8153 2 -503.77726547704344 -365.6719673099803 18.8851 0.1144 8152 +8154 2 -503.94893557352896 -366.7602836049849 18.7037 0.1144 8153 +8155 2 -504.0824633314579 -367.896320566471 18.5699 0.1144 8154 +8156 2 -503.93930421731596 -369.03015189344956 18.4551 0.1144 8155 +8157 2 -503.7315766787593 -370.1347151735405 18.2813 0.1144 8156 +8158 2 -503.5002704106529 -371.2545733388163 18.1458 0.1144 8157 +8159 2 -503.40404946391726 -372.3950083345128 18.0464 0.1144 8158 +8160 2 -503.24470104496555 -373.5271794175994 17.9722 0.1144 8159 +8161 2 -503.15193569526593 -374.60447687415217 17.9099 0.1144 8160 +8162 2 -503.6148932835932 -375.6448953915817 17.8565 0.1144 8161 +8163 2 -503.8624487451435 -376.76094778885374 17.8068 0.1144 8162 +8164 2 -504.24524556544486 -377.82304812515304 17.7246 0.1144 8163 +8165 2 -504.7900747964148 -378.80141251998805 17.574 0.1144 8164 +8166 2 -505.0709100971898 -379.89561423532143 17.4564 0.1144 8165 +8167 2 -505.23933402350525 -380.98081245732726 17.3479 0.1144 8166 +8168 2 -505.33090760265094 -382.0601222041573 17.1536 0.1144 8167 +8169 2 -505.1142418178255 -383.1783846723131 16.963 0.1144 8168 +8170 2 -504.8231045823121 -384.269055420109 16.762 0.1144 8169 +8171 2 -504.845844697096 -385.3635653045685 16.5698 0.1144 8170 +8172 2 -504.67461613011244 -386.42853622334934 16.4189 0.1144 8171 +8173 2 -504.61245141198265 -387.5140294927065 16.3067 0.1144 8172 +8174 2 -504.6635306999261 -388.64989383599016 16.2268 0.1144 8173 +8175 2 -504.2455279388213 -389.67793201704615 16.1584 0.1144 8174 +8176 2 -503.51565636256294 -390.5533596737774 16.0942 0.1144 8175 +8177 2 -502.6453589370341 -391.2908900467911 16.026 0.1144 8176 +8178 2 -501.80169781850157 -392.00500019030994 15.8632 0.1144 8177 +8179 2 -501.0121611770437 -392.805773711223 15.6595 0.1144 8178 +8180 2 -500.25807334623994 -393.6632608268311 15.4906 0.1144 8179 +8181 2 -499.4918416627944 -394.51195437416374 15.3689 0.1144 8180 +8182 2 -498.5488585709803 -395.14574119838204 15.2919 0.1144 8181 +8183 2 -497.4963874894167 -395.59007660375994 15.257 0.1144 8182 +8184 2 -496.7456065264357 -396.4216904778779 15.2617 0.1144 8183 +8185 2 -496.0576558733304 -397.33595543886673 15.2896 0.1144 8184 +8186 2 -495.3415374667948 -398.22831177902515 15.3322 0.1144 8185 +8187 2 -494.36559538498534 -398.798248427218 15.3917 0.1144 8186 +8188 2 -493.30418300230593 -399.22396816354114 15.4747 0.1144 8187 +8189 2 -492.44997707918446 -399.9760986581391 15.5863 0.1144 8188 +8190 2 -491.463484177078 -400.55315501075427 15.7397 0.1144 8189 +8191 2 -490.3966397758908 -400.90525339708347 16.0052 0.1144 8190 +8192 2 -489.26701719011226 -401.0484819686011 16.2908 0.1144 8191 +8193 2 -488.2309522049061 -400.98564291681237 16.7414 0.1144 8192 +8194 2 -487.241819131827 -400.4933338129547 17.172 0.1144 8193 +8195 2 -486.65539807495816 -399.69045733798436 17.743 0.1144 8194 +8196 2 -485.7656884761817 -399.63527862972694 18.3078 0.1144 8195 +8197 2 -484.663409382488 -399.8901461435569 18.7371 0.1144 8196 +8198 2 -483.57313192611736 -400.1879602602975 19.0588 0.1144 8197 +8199 2 -482.472441719563 -400.460720941473 19.2917 0.1144 8198 +8200 2 -481.3435912698457 -400.64043791944954 19.4808 0.1144 8199 +8201 2 -480.3160248055634 -400.33486637057376 19.6449 0.1144 8200 +8202 2 -479.4325323940601 -399.6405454585914 19.8826 0.1144 8201 +8203 2 -478.49468465230166 -399.0035986529015 20.1689 0.1144 8202 +8204 2 -477.8323441804654 -398.1892494959868 20.5826 0.1144 8203 +8205 2 -477.7972174740286 -397.5396262401723 21.1035 0.1144 8204 +8206 2 -476.89098340096547 -397.6428759124203 21.6478 0.1144 8205 +8207 2 -475.76232579729185 -397.76425685684626 22.1462 0.1144 8206 +8208 2 -474.7037629424244 -397.57196987784073 22.6843 0.1144 8207 +8209 2 -473.65384634132135 -397.16770992344493 23.1891 0.1144 8208 +8210 2 -472.5253923509059 -397.15806412044265 23.6334 0.1144 8209 +8211 2 -471.70850165224914 -397.88601892429244 24.086 0.1144 8210 +8212 2 -470.90840027444716 -398.7005589388033 24.4819 0.1144 8211 +8213 2 -469.78396834539683 -398.69495207407437 24.8458 0.1144 8212 +8214 2 -468.70146009826027 -398.7606387917689 25.2821 0.1144 8213 +8215 2 -467.88209577461043 -398.7111935176798 25.9125 0.1144 8214 +8216 2 -467.1275424688006 -397.8658920870105 26.4959 0.1144 8215 +8217 2 -466.2601274415572 -397.2266885744167 27.035 0.1144 8216 +8218 2 -465.1964347216001 -397.1879747847516 27.607 0.1144 8217 +8219 2 -464.05494580985095 -397.22362733520526 28.0619 0.1144 8218 +8220 2 -462.9245639136997 -397.3580154628563 28.4427 0.1144 8219 +8221 2 -461.81233653494394 -397.3322108519138 28.7756 0.1144 8220 +8222 2 -460.71847685558305 -397.0443903490506 29.0931 0.1144 8221 +8223 2 -459.5958203479215 -396.96758139250625 29.4353 0.1144 8222 +8224 2 -458.4895998787856 -396.808358015879 29.7489 0.1144 8223 +8225 2 -457.46454366510346 -396.48589183347883 30.1339 0.1144 8224 +8226 2 -456.4919458709965 -396.2015071979969 30.6625 0.1144 8225 +8227 2 -455.4066655815385 -396.071389815169 31.1562 0.1144 8226 +8228 2 -454.2637500378386 -396.01165046491167 31.556 0.1144 8227 +8229 2 -453.34681197888875 -395.41837602078874 31.8741 0.1144 8228 +8230 2 -452.49066681460397 -394.80012650993433 32.2622 0.1144 8229 +8231 2 -451.41460575713364 -394.52210136611495 32.6301 0.1144 8230 +8232 2 -450.27715252671067 -394.5552874867127 32.9031 0.1144 8231 +8233 2 -449.17110191701624 -394.2811593619339 33.1142 0.1144 8232 +8234 2 -448.07570072429365 -393.9528183243192 33.2808 0.1144 8233 +8235 2 -447.6050149322011 -393.49645510809546 33.4891 0.1144 8234 +8236 2 -446.6622641273135 -392.9047529702897 33.8657 0.1144 8235 +8237 2 -445.5977375397988 -392.48752234524613 34.0052 0.1144 8236 +8238 2 -444.5210159707308 -392.1196930605176 34.174 0.1144 8237 +8239 2 -443.39526933027946 -391.96523713958084 34.4109 0.1144 8238 +8240 2 -442.2696641108744 -391.81078151473025 34.7004 0.1144 8239 +8241 2 -441.14476422018396 -391.657175896588 35.0288 0.1144 8240 +8242 2 -440.0688124700881 -391.6646813256533 35.4606 0.1144 8241 +8243 2 -438.9992275198216 -391.73838542434225 35.966 0.1144 8242 +8244 2 -437.86560961441376 -391.8985762310033 36.3807 0.1144 8243 +8245 2 -436.8588131742817 -391.73715684512484 36.7332 0.1144 8244 +8246 2 -436.12444449291087 -390.8765534232041 37.0737 0.1144 8245 +8247 2 -435.38937048282526 -390.0150999945751 37.3985 0.1144 8246 +8248 2 -434.6542256141734 -389.15371712842625 37.7037 0.1144 8247 +8249 2 -434.00252824751476 -388.254395833065 37.9938 0.1144 8248 +8250 2 -433.8559829433468 -387.1215843157214 38.2488 0.1144 8249 +8251 2 -433.7078820076697 -385.98876954143054 38.4675 0.1144 8250 +8252 2 -433.56062782175366 -384.8568050699341 38.6526 0.1144 8251 +8253 2 -433.06679562821864 -383.90527613993333 38.8038 0.1144 8252 +8254 2 -432.2141340011789 -383.1429959553727 38.9231 0.1144 8253 +8255 2 -431.1997677117507 -383.1522566719715 39.0454 0.1144 8254 +8256 2 -430.1141833934569 -383.50509364264565 39.1857 0.1144 8255 +8257 2 -429.0295199404376 -383.85715472212496 39.3403 0.1144 8256 +8258 2 -427.94315943486276 -384.2092122485709 39.51 0.1144 8257 +8259 2 -426.85764597513514 -384.56197865676495 39.6875 0.1144 8258 +8260 2 -425.77213547626855 -384.91333085449617 39.8647 0.1144 8259 +8261 2 -424.686622016541 -385.2660972626902 40.0333 0.1144 8260 +8262 2 -423.60111181376055 -385.61730803937513 40.1884 0.1144 8261 +8263 2 -422.5155980579468 -385.9702158686155 40.4902 0.1144 8262 +8264 2 -447.72115385141626 -394.42696998247595 33.4099 0.1144 8234 +8265 2 -446.92520964423153 -395.2147900057357 33.5538 0.1144 8264 +8266 2 -445.98309343603404 -395.83981050160094 33.7221 0.1144 8265 +8267 2 -444.90901209445354 -396.1360321781689 33.8884 0.1144 8266 +8268 2 -443.7799212793294 -396.0252685505545 34.0609 0.1144 8267 +8269 2 -442.64352827675316 -395.95734039957335 34.2504 0.1144 8268 +8270 2 -441.57030730489487 -396.24790701080656 34.5072 0.1144 8269 +8271 2 -440.55813391335624 -396.72959139446573 34.848 0.1144 8270 +8272 2 -439.48571962564824 -397.0063710821595 35.2615 0.1144 8271 +8273 2 -438.3698126066565 -397.1844888099828 35.7076 0.1144 8272 +8274 2 -437.29484720846506 -397.4976792355885 36.1844 0.1144 8273 +8275 2 -436.23611423554087 -397.85948198853976 36.6814 0.1144 8274 +8276 2 -435.1780192857986 -398.2205082581239 37.1795 0.1144 8275 +8277 2 -434.09126167715 -398.4244964686766 37.6816 0.1144 8276 +8278 2 -432.95867725785314 -398.46257183034203 38.1091 0.1144 8277 +8279 2 -431.8386771733447 -398.2652771758246 38.458 0.1144 8278 +8280 2 -430.9283422849263 -397.6590764739706 38.8287 0.1144 8279 +8281 2 -429.9359297860469 -397.14575938671567 39.2087 0.1144 8280 +8282 2 -428.8723139968789 -396.73256118605104 39.5349 0.1144 8281 +8283 2 -427.83865470640507 -396.26370556731854 39.8605 0.1144 8282 +8284 2 -426.96433133783603 -395.81696247876073 40.3416 0.1144 8283 +8285 2 -425.84769230490866 -395.56791453128267 40.7274 0.1144 8284 +8286 2 -424.7539140492281 -395.2412032406905 41.0292 0.1144 8285 +8287 2 -423.79992743128463 -394.6122836808223 41.2748 0.1144 8286 +8288 2 -422.7767892585109 -394.1167213947137 41.519 0.1144 8287 +8289 2 -421.6771255825016 -393.8991753084109 41.7746 0.1144 8288 +8290 2 -420.57476201028066 -394.16061875285016 42.0386 0.1144 8289 +8291 2 -419.4708496165311 -394.41880625627755 42.3335 0.1144 8290 +8292 2 -418.3565416455922 -394.6437379034553 42.6314 0.1144 8291 +8293 2 -417.22687494298316 -394.80803821086977 42.8901 0.1144 8292 +8294 2 -416.14058224112773 -395.127710317716 43.1614 0.1144 8293 +8295 2 -415.01910789227554 -395.29683611369865 43.4258 0.1144 8294 +8296 2 -413.90835096621487 -395.34549308861665 43.7158 0.1144 8295 +8297 2 -412.83884758521424 -395.75175040612385 43.9648 0.1144 8296 +8298 2 -411.7493826266017 -396.1005487346109 44.1949 0.1144 8297 +8299 2 -410.6678977421335 -396.4542428180599 44.445 0.1144 8298 +8300 2 -409.64033847298833 -396.9220356657969 44.7549 0.1144 8299 +8301 2 -408.6120735790423 -397.389119927872 45.1175 0.1144 8300 +8302 2 -407.58049224853215 -397.85287383733566 45.5151 0.1144 8301 +8303 2 -406.5522109758643 -398.29400718937393 45.9452 0.1144 8302 +8304 2 -405.57095936121084 -398.6980451068272 46.4825 0.1144 8303 +8305 2 -404.5001170837339 -399.0007789615049 47.0028 0.1144 8304 +8306 2 -403.3633044331533 -399.0995153655306 47.4558 0.1144 8305 +8307 2 -402.2394377699587 -399.26297928619783 47.8853 0.1144 8306 +8308 2 -401.15697739478634 -399.2720267268113 48.314 0.1144 8307 +8309 2 -400.18617140079016 -398.9423909095507 48.8432 0.1144 8308 +8310 2 -399.1700264895409 -398.61909485429777 49.3562 0.1144 8309 +8311 2 -398.0672691277082 -398.3255988561582 49.7664 0.1144 8310 +8312 2 -396.9498234106305 -398.0903378322196 50.0954 0.1144 8311 +8313 2 -395.8315276868444 -397.8557821369957 50.3488 0.1144 8312 +8314 2 -394.71330252553855 -397.6212973003381 50.5327 0.1144 8313 +8315 2 -393.63494114252023 -397.25989926822535 50.6556 0.1144 8314 +8316 2 -392.55081001485667 -396.9186417437211 50.7534 0.1144 8315 +8317 2 -391.4186253118089 -396.76579869289867 50.85 0.1144 8316 +8318 2 -390.2889271724726 -396.6073746922548 50.9698 0.1144 8317 +8319 2 -389.1665178967134 -396.41247916206055 51.1322 0.1144 8318 +8320 2 -388.04416585955937 -396.22401843751527 51.3366 0.1144 8319 +8321 2 -386.9209667765581 -396.034848831222 51.5743 0.1144 8320 +8322 2 -385.79854388083777 -395.84645866915673 51.8364 0.1144 8321 +8323 2 -384.6753415408894 -395.65884469437265 52.1133 0.1144 8322 +8324 2 -383.55291864516914 -395.4704545323075 52.3972 0.1144 8323 +8325 2 -382.4304957494488 -395.2820643702423 52.6842 0.1144 8324 +8326 2 -381.3031024850666 -395.13729238598603 52.9749 0.1144 8325 +8327 2 -380.170083655846 -395.04511748359033 53.2717 0.1144 8326 +8328 2 -379.03526641863436 -394.967575958409 53.5738 0.1144 8327 +8329 2 -377.9012997803033 -394.8890462624204 53.8798 0.1144 8328 +8330 2 -376.76732929285276 -394.81235504003337 54.189 0.1144 8329 +8331 2 -375.6325829142074 -394.7347429523719 54.4995 0.1144 8330 +8332 2 -374.497836535562 -394.65713086471055 54.8108 0.1144 8331 +8333 2 -373.36379903866475 -394.57867173120195 55.1225 0.1144 8332 +8334 2 -372.22989940978033 -394.5019099463349 55.4344 0.1144 8333 +8335 2 -371.09515303113494 -394.4242978586734 55.7469 0.1144 8334 +8336 2 -369.96118609671777 -394.3459095837311 56.0594 0.1144 8335 +8337 2 -368.8280190364703 -394.2569870693138 56.3721 0.1144 8336 +8338 2 -367.72920586535577 -394.0047237446212 56.6871 0.1144 8337 +8339 2 -366.65332453215444 -393.64085602570526 57.0044 0.1144 8338 +8340 2 -365.5782193862342 -393.2777677510177 57.3199 0.1144 8339 +8341 2 -364.5038228259759 -392.91397385152914 57.6293 0.1144 8340 +8342 2 -363.4279414927745 -392.5501061326132 57.9264 0.1144 8341 +8343 2 -362.3536157910824 -392.1862416706447 58.2033 0.1144 8342 +8344 2 -361.2784394905098 -391.8233653794834 58.45 0.1144 8343 +8345 2 -360.2027710290932 -391.45914455208094 58.6564 0.1144 8344 +8346 2 -359.1279490213516 -391.09591544851924 58.8134 0.1144 8345 +8347 2 -358.01517976754263 -390.8898677895237 58.8818 0.1144 8346 +8348 2 -356.90052521614035 -391.0101466781043 58.802 0.1144 8347 +8349 2 -355.80207929500205 -391.2579511339449 58.5768 0.1144 8348 +8350 2 -354.7028571865826 -391.5049761455573 58.2406 0.1144 8349 +8351 2 -353.6042692522258 -391.7530631474043 57.825 0.1144 8350 +8352 2 -352.5058233310873 -392.0008676032449 57.36 0.1144 8351 +8353 2 -351.406601222668 -392.2478926148573 56.8714 0.1144 8352 +8354 2 -350.30829672257585 -392.49569736678393 56.3766 0.1144 8353 +8355 2 -349.2097799428713 -392.7435723851046 55.8799 0.1144 8354 +8356 2 -348.11034525875334 -392.99080908415726 55.3804 0.1144 8355 +8357 2 -347.01197019618115 -393.2385429775177 54.8783 0.1144 8356 +8358 2 -345.9126772291956 -393.48563855161024 54.3763 0.1144 8357 +8359 2 -344.8216681065751 -393.6938605109681 53.858 0.1144 8358 +8360 2 -343.80905684606523 -394.080720750704 53.3201 0.1144 8359 +8361 2 -343.01676423079294 -394.813111125972 52.7856 0.1144 8360 +8362 2 -342.30719551131733 -395.6505388615657 52.2794 0.1144 8361 +8363 2 -342.1389230723589 -396.6882922987014 51.8644 0.1144 8362 +8364 2 -342.8650050566181 -397.5215839896082 51.639 0.1144 8363 +8365 2 -343.68586155044846 -398.31059699110847 51.5788 0.1144 8364 +8366 2 -344.50749423155975 -399.10038943683696 51.6398 0.1144 8365 +8367 2 -345.32842158395636 -399.8893318758572 51.7759 0.1144 8366 +8368 2 -346.18280139378 -400.5739751629533 52.0206 0.1144 8367 +8369 2 -346.55664654995167 -401.62240956681796 52.2368 0.1144 8368 +8370 2 -346.53969905768366 -402.7596871241916 52.3261 0.1144 8369 +8371 2 -346.522538989717 -403.89717636900554 52.3163 0.1144 8370 +8372 2 -346.50672168147486 -405.0350219792532 52.2346 0.1144 8371 +8373 2 -346.43680268065975 -406.17664341533657 52.1405 0.1144 8372 +8374 2 -346.35585313432034 -407.318100335657 52.0531 0.1144 8373 +8375 2 -346.2736319829088 -408.45898890701733 51.9565 0.1144 8374 +8376 2 -502.41811240451057 -373.4833758849702 18.5578 0.1144 8160 +8377 2 -501.4723532756701 -373.5517530757204 18.5096 0.1144 8376 +8378 2 -501.0696822084137 -374.6195628441692 18.487 0.1144 8377 +8379 2 -500.6257520220606 -375.6701742088728 18.4569 0.1144 8378 +8380 2 -500.45761053302004 -376.78047723492625 18.4259 0.1144 8379 +8381 2 -500.5515318114914 -377.92053250264365 18.3824 0.1144 8380 +8382 2 -500.4868800314638 -379.04561863149746 18.3262 0.1144 8381 +8383 2 -500.0083172873484 -380.05493307206825 18.2409 0.1144 8382 +8384 2 -499.35677411520794 -380.97330477504977 18.0879 0.1144 8383 +8385 2 -498.77718503708854 -381.9395569370265 17.8902 0.1144 8384 +8386 2 -498.38180914520336 -383.0016544015353 17.7166 0.1144 8385 +8387 2 -498.0397585565098 -384.09306708460906 17.5869 0.1144 8386 +8388 2 -497.8134120919512 -385.20812729732495 17.4924 0.1144 8387 +8389 2 -497.3816728359316 -386.24504628394425 17.4233 0.1144 8388 +8390 2 -497.3276873497841 -387.30785850032373 17.4318 0.1144 8389 +8391 2 -496.9833664342256 -388.3353438370118 17.453 0.1144 8390 +8392 2 -496.0022509251972 -388.6405990055903 17.3939 0.1144 8391 +8393 2 -495.07998323210364 -389.0731154587754 17.1615 0.1144 8392 +8394 2 -495.7896409555534 -389.74677841274274 16.8708 0.1144 8393 +8395 2 -492.41725018884614 -331.3753497267269 22.3948 0.1144 8118 +8396 2 -493.25929956017876 -331.8025797657439 21.5313 0.1144 8395 +8397 2 -493.463985791279 -332.92745197484055 21.2292 0.1144 8396 +8398 2 -493.8885533674758 -333.76237514690035 20.8967 0.1144 8397 +8399 2 -494.9672598413134 -333.5874322324946 20.465 0.1144 8398 +8400 2 -495.90211818098965 -332.9503049887373 20.0707 0.1144 8399 +8401 2 -496.38638010727027 -331.92077918199175 19.718 0.1144 8400 +8402 2 -496.58106896935954 -330.8970817965412 19.2419 0.1144 8401 +8403 2 -496.5540673111469 -330.25065753921956 19.1204 0.1144 8402 +8404 2 -496.780680882848 -329.4470791055114 20.111 0.1144 8403 +8405 2 -496.9180598893307 -328.3383380227614 20.5055 0.1144 8404 +8406 2 -497.209902453559 -327.24851728167374 20.798 0.1144 8405 +8407 2 -497.8000462010948 -326.273306941673 20.9912 0.1144 8406 +8408 2 -498.55172809759495 -325.4166633188788 21.0893 0.1144 8407 +8409 2 -499.51867725119104 -324.9203178198967 21.0975 0.1144 8408 +8410 2 -500.64980503985413 -324.76740501561244 21.0063 0.1144 8409 +8411 2 -501.7417223101751 -324.4631596462561 20.8395 0.1144 8410 +8412 2 -502.7579719468371 -323.95963414939956 20.6293 0.1144 8411 +8413 2 -503.71782953831996 -323.3379742069291 20.4061 0.1144 8412 +8414 2 -504.64066906767874 -322.6661027809457 20.1509 0.1144 8413 +8415 2 -505.5824976822772 -322.144673053443 19.7943 0.1144 8414 +8416 2 -506.4198576706666 -322.48131269734216 19.3438 0.1144 8415 +8417 2 -507.2585764872874 -322.94572966155215 18.7934 0.1144 8416 +8418 2 -508.3131852866094 -323.0677217940556 18.2573 0.1144 8417 +8419 2 -509.4201741931878 -322.89368662314973 17.846 0.1144 8418 +8420 2 -510.54812696633303 -322.73744376234026 17.6217 0.1144 8419 +8421 2 -511.6870710793928 -322.7689611754093 17.6303 0.1144 8420 +8422 2 -512.7756141763581 -322.48896255746746 17.8732 0.1144 8421 +8423 2 -513.8592135898822 -322.67889778592763 18.3354 0.1144 8422 +8424 2 -514.9038202164699 -322.5459564240829 19.1021 0.1144 8423 +8425 2 -515.2197166670251 -322.36220394783663 20.3688 0.1144 8424 +8426 2 -515.5356131175802 -322.1784514715903 21.9816 0.1144 8425 +8427 2 -515.8514390056554 -321.9946281367778 23.7972 0.1144 8426 +8428 2 -516.1681149004387 -321.81009947325055 25.6869 0.1144 8427 +8429 2 -516.4839407885138 -321.62627613843813 27.5369 0.1144 8428 +8430 2 -516.4871697856895 -321.6375966321217 28.8722 0.1144 8429 +8431 2 -516.8359678180905 -322.7272030117805 29.7598 0.1144 8430 +8432 2 -517.2147020132295 -323.80463909314796 30.3131 0.1144 8431 +8433 2 -517.7789664230932 -324.78792322591994 30.6382 0.1144 8432 +8434 2 -518.5975521858579 -325.5807498582923 30.847 0.1144 8433 +8435 2 -519.3028087637355 -326.39766374565147 31.0738 0.1144 8434 +8436 2 -519.3919053479112 -327.5117580364044 31.3566 0.1144 8435 +8437 2 -519.1146427714117 -328.5951039062322 31.6487 0.1144 8436 +8438 2 -518.5246177544061 -329.5136044066717 32.0079 0.1144 8437 +8439 2 -517.9968162212505 -330.43308371127756 32.3859 0.1144 8438 +8440 2 -517.8319037293857 -331.55470723101445 32.646 0.1144 8439 +8441 2 -517.8448547969199 -332.69777496297513 32.7933 0.1144 8440 +8442 2 -517.5780860981985 -333.76742490168516 32.8429 0.1144 8441 +8443 2 -516.9136499239569 -334.69708334453355 32.8096 0.1144 8442 +8444 2 -516.4237331344417 -335.691878292928 32.704 0.1144 8443 +8445 2 -516.317082560614 -336.81532085269794 32.5114 0.1144 8444 +8446 2 -516.4037873286336 -337.88974135846024 32.177 0.1144 8445 +8447 2 -516.845882904016 -338.86371872587046 31.7839 0.1144 8446 +8448 2 -517.4878653389384 -339.80997167474357 31.43 0.1144 8447 +8449 2 -517.9038575199372 -340.85679725971363 31.1038 0.1144 8448 +8450 2 -517.7479243363248 -341.91133499836906 30.7387 0.1144 8449 +8451 2 -517.6753471640975 -342.971633411115 30.3162 0.1144 8450 +8452 2 -518.3416718922624 -343.8418524678104 29.9012 0.1144 8451 +8453 2 -518.6228317974003 -344.81478578399543 29.3759 0.1144 8452 +8454 2 -518.3891505900461 -345.88690916464225 28.7902 0.1144 8453 +8455 2 -518.733252227423 -346.9230483218767 28.177 0.1144 8454 +8456 2 -519.2197008098256 -347.9563035162399 27.6225 0.1144 8455 +8457 2 -518.5864678963745 -348.64009501028056 26.8985 0.1144 8456 +8458 2 -518.9723740999782 -349.02762050882245 26.2868 0.1144 8457 +8459 2 -519.1456235148618 -350.1046263770713 25.6986 0.1144 8458 +8460 2 -518.582149184367 -350.7028623914282 24.9466 0.1144 8459 +8461 2 -519.0530481584593 -351.05740245432503 25.4668 0.1144 8460 +8462 2 -519.5055803730146 -352.0112490849684 25.273 0.1144 8461 +8463 2 -519.3811989810156 -353.0925108660947 25.1523 0.1144 8462 +8464 2 -519.1467174013052 -354.2091803958915 25.0165 0.1144 8463 +8465 2 -519.1323280316014 -355.2729240426596 24.7476 0.1144 8464 +8466 2 -519.6293413503482 -356.292412743425 24.1816 0.1144 8465 +8467 2 -518.0908321194802 -350.84664953185086 24.3425 0.1144 8460 +8468 2 -517.3112840873106 -351.50354742006516 23.7559 0.1144 8467 +8469 2 -516.4098076425814 -352.0363046533323 23.2027 0.1144 8468 +8470 2 -515.3126004750856 -352.1990465704768 22.6984 0.1144 8469 +8471 2 -514.2424428942815 -352.54625897268545 22.3203 0.1144 8470 +8472 2 -513.1423869557755 -352.8538107116783 22.071 0.1144 8471 +8473 2 -512.4159540996448 -353.6741618289043 21.8951 0.1144 8472 +8474 2 -512.9744424530688 -354.64682724367424 21.7648 0.1144 8473 +8475 2 -513.5524469108806 -355.61953351832744 21.6246 0.1144 8474 +8476 2 -514.0170206262693 -356.6648344668441 21.5277 0.1144 8475 +8477 2 -514.6839995542377 -357.59409843883816 21.4579 0.1144 8476 +8478 2 -515.257091084093 -358.58298720832045 21.4094 0.1144 8477 +8479 2 -515.7758814674513 -359.60337003262464 21.3699 0.1144 8478 +8480 2 -518.1940048996441 -348.3108922214142 26.4312 0.1144 8457 +8481 2 -517.3623915237126 -347.52609934875807 26.2475 0.1144 8480 +8482 2 -516.709098163848 -346.61227899116216 26.128 0.1144 8481 +8483 2 -516.069659531242 -345.6668798981167 26.0127 0.1144 8482 +8484 2 -515.48120856943 -344.6852421871753 25.9152 0.1144 8483 +8485 2 -515.2327218795913 -343.5749154177181 25.8314 0.1144 8484 +8486 2 -515.117796170756 -342.43644252324566 25.7563 0.1144 8485 +8487 2 -515.0571138716261 -341.2940526779772 25.6812 0.1144 8486 +8488 2 -514.9527253631268 -340.1549654472116 25.6078 0.1144 8487 +8489 2 -514.8264118550751 -339.0180950598394 25.5265 0.1144 8488 +8490 2 -514.5269979899949 -337.9488860824185 25.348 0.1144 8489 +8491 2 -513.9125822960847 -337.0076406069569 25.1271 0.1144 8490 +8492 2 -512.8910874902947 -336.503950015677 24.7439 0.1144 8491 +8493 2 -516.4526087867802 -321.52834674720464 30.3677 0.1144 8429 +8494 2 -516.1038813168595 -320.4388112261119 30.3464 0.1144 8493 +8495 2 -515.5064248032456 -319.46924621316003 30.338 0.1144 8494 +8496 2 -515.0257086586386 -318.43366956302054 30.3268 0.1144 8495 +8497 2 -514.7319539101129 -317.329611993091 30.3097 0.1144 8496 +8498 2 -514.5134739454927 -316.2071857839086 30.2856 0.1144 8497 +8499 2 -514.5740532355305 -315.06837322706775 30.2537 0.1144 8498 +8500 2 -514.6994001078209 -313.93125190917465 30.2134 0.1144 8499 +8501 2 -514.5658655399114 -312.79846763175317 30.1588 0.1144 8500 +8502 2 -513.881731826842 -311.92340295263404 30.0286 0.1144 8501 +8503 2 -513.089870106548 -311.09902452864833 29.9104 0.1144 8502 +8504 2 -512.4268560013395 -310.1673646892786 29.8057 0.1144 8503 +8505 2 -511.7996014890865 -309.21152590221345 29.7105 0.1144 8504 +8506 2 -511.5025905034629 -308.10915857485884 29.6223 0.1144 8505 +8507 2 -511.3350407689311 -306.9779294307601 29.54 0.1144 8506 +8508 2 -511.2751951526344 -305.84119820385985 29.4244 0.1144 8507 +8509 2 -511.15529552210387 -304.7480405397516 29.2051 0.1144 8508 +8510 2 -510.825102499658 -303.6545840166434 29.0147 0.1144 8509 +8511 2 -510.7125791720929 -302.51696468191244 28.8702 0.1144 8510 +8512 2 -510.74255102058044 -301.37320899633175 28.7686 0.1144 8511 +8513 2 -510.70852821714936 -300.2300971475406 28.6804 0.1144 8512 +8514 2 -496.21005530247214 -331.9073992263536 18.7634 0.1144 8402 +8515 2 -496.0849725389923 -332.91837297095833 18.2014 0.1144 8514 +8516 2 -495.8570709411109 -333.99941801705177 17.6911 0.1144 8515 +8517 2 -495.39054033118794 -335.0371126927656 17.2989 0.1144 8516 +8518 2 -494.8650089227969 -336.05438983238616 17.0228 0.1144 8517 +8519 2 -494.93063464675276 -337.16603081505787 16.8491 0.1144 8518 +8520 2 -494.97837706819035 -338.30832285792394 16.7327 0.1144 8519 +8521 2 -494.665459215032 -339.39979653473654 16.6493 0.1144 8520 +8522 2 -494.8006235299641 -340.530957875116 16.5599 0.1144 8521 +8523 2 -495.4465710837326 -341.47467353556704 16.4443 0.1144 8522 +8524 2 -496.1987552639023 -342.3370113168931 16.2975 0.1144 8523 +8525 2 -496.92110613132854 -343.09484673723745 15.9594 0.1144 8524 +8526 2 -497.6296246333703 -342.759039452825 14.7769 0.1144 8525 +8527 2 -498.19136040765454 -341.8428838929503 14.0375 0.1144 8526 +8528 2 -499.1915255539899 -341.28763510181614 13.7667 0.1144 8527 +8529 2 -500.1933708759724 -340.7404508633537 13.4877 0.1144 8528 +8530 2 -501.06663644681373 -340.13883292580266 13.1433 0.1144 8529 +8531 2 -501.15098626385566 -340.7844580092411 12.5753 0.1144 8530 +8532 2 -501.68063223410445 -341.6859279400759 11.9787 0.1144 8531 +8533 2 -502.75083481508204 -342.06024897297266 11.4886 0.1144 8532 +8534 2 -503.8727630074266 -342.07963920820765 11.0772 0.1144 8533 +8535 2 -503.8442264762881 -342.6053852175987 10.6883 0.1144 8534 +8536 2 -502.73005481307456 -342.69766362727273 10.2845 0.1144 8535 +8537 2 -501.70189502969777 -343.11454341791574 9.9018 0.1144 8536 +8538 2 -501.15803249100406 -344.0048562331698 9.5392 0.1144 8537 +8539 2 -500.92688827598585 -345.08108615370895 9.0845 0.1144 8538 +8540 2 -500.28297900172697 -345.83195987579774 8.4927 0.1144 8539 +8541 2 -499.69305879920466 -346.7003973258515 7.8276 0.1144 8540 +8542 2 -498.9858012664771 -347.5822363034434 7.2272 0.1144 8541 +8543 2 -498.17850262873606 -347.5789197538495 6.5203 0.1144 8542 +8544 2 -497.1805391787181 -347.08256164479076 5.9234 0.1144 8543 +8545 2 -496.068630092531 -346.9047294090892 5.4306 0.1144 8544 +8546 2 -494.9738117428592 -346.66951575892824 5.0481 0.1144 8545 +8547 2 -493.91572271975446 -346.2846841734456 4.7272 0.1144 8546 +8548 2 -492.79496687790663 -346.0768520225063 4.4897 0.1144 8547 +8549 2 -491.6758271631204 -345.8739023026541 4.3127 0.1144 8548 +8550 2 -490.57314065985395 -345.5803357420344 4.1497 0.1144 8549 +8551 2 -489.50368376928793 -345.2213605211334 3.9892 0.1144 8550 +8552 2 -488.62737836773977 -344.53921691952337 3.7738 0.1144 8551 +8553 2 -488.3323020413177 -343.694877472627 3.3704 0.1144 8552 +8554 2 -488.13455253342335 -342.667954290433 2.95 0.1144 8553 +8555 2 -487.9816364721919 -341.538382133279 2.6163 0.1144 8554 +8556 2 -487.642515566491 -340.4536750616156 2.3594 0.1144 8555 +8557 2 -486.9349919186956 -339.5712781963615 2.1633 0.1144 8556 +8558 2 -486.13257227203815 -338.75741358190896 2.0241 0.1144 8557 +8559 2 -485.7909980582559 -337.6961773704654 1.9289 0.1144 8558 +8560 2 -485.74246938260956 -336.5579141989448 1.8216 0.1144 8559 +8561 2 -486.5244162430161 -335.9035669230276 1.5865 0.1144 8560 +8562 2 -487.1371364311469 -334.95272837676595 1.1248 0.1144 8561 +8563 2 -497.1447254407094 -343.31614484945726 15.6421 0.1144 8525 +8564 2 -498.0283360845566 -343.9877678315536 15.2961 0.1144 8563 +8565 2 -499.01911272671964 -344.43807814161113 14.8612 0.1144 8564 +8566 2 -500.06587168739964 -344.79693513016815 14.4477 0.1144 8565 +8567 2 -501.19261756195897 -344.87940951506124 14.126 0.1144 8566 +8568 2 -502.14789476274314 -345.297189229339 13.8032 0.1144 8567 +8569 2 -502.29466411011083 -346.2892159470605 13.4414 0.1144 8568 +8570 2 -501.59562963011 -347.1274435568241 13.1327 0.1144 8569 +8571 2 -501.5132875957083 -348.19097422369293 12.8299 0.1144 8570 +8572 2 -501.68237108025164 -347.00225485594683 12.4418 0.1144 8571 +8573 2 -501.96137837917047 -345.8961437507002 12.334 0.1144 8572 +8574 2 -502.1012676362534 -344.7705080344257 12.2592 0.1144 8573 +8575 2 -501.90129872830516 -343.6553330858845 12.1932 0.1144 8574 +8576 2 -502.2132911667828 -342.6343561721725 12.1261 0.1144 8575 +8577 2 -502.88259644823654 -341.7094455493455 12.0424 0.1144 8576 +8578 2 -502.7350204167185 -340.7312057551635 11.8764 0.1144 8577 +8579 2 -502.015258464812 -339.88512863539967 11.6409 0.1144 8578 +8580 2 -501.37247941266696 -338.94785429449223 11.4311 0.1144 8579 +8581 2 -501.5509895350608 -337.8836764399007 11.2229 0.1144 8580 +8582 2 -502.16138471438194 -336.92880250839903 11.0273 0.1144 8581 +8583 2 -503.09217382101576 -336.2763932051454 10.8899 0.1144 8582 +8584 2 -503.514981640747 -335.2499207225264 10.8779 0.1144 8583 +8585 2 -504.0041091212066 -334.2268397883578 10.8317 0.1144 8584 +8586 2 -504.6531725396162 -333.3107963511331 10.7576 0.1144 8585 +8587 2 -504.21208981830296 -332.2583320795501 10.696 0.1144 8586 +8588 2 -504.13831891226755 -331.1531087295331 10.6405 0.1144 8587 +8589 2 -504.83593988209225 -330.24699576060436 10.5869 0.1144 8588 +8590 2 -505.473608691305 -329.33580751454474 10.5092 0.1144 8589 +8591 2 -505.59153514379926 -328.2642196031711 10.3546 0.1144 8590 +8592 2 -505.5972498778583 -327.1220394808547 10.2792 0.1144 8591 +8593 2 -505.65207630015914 -325.9953064319839 10.2903 0.1144 8592 +8594 2 -505.4294895935462 -324.9092877037664 10.4574 0.1144 8593 +8595 2 -505.4180157886876 -323.8374288736017 10.773 0.1144 8594 +8596 2 -505.6420372444366 -322.7183332756459 11.0976 0.1144 8595 +8597 2 -505.5917200256266 -321.6237656543948 11.3959 0.1144 8596 +8598 2 -505.1918292118628 -320.62060236406404 11.7179 0.1144 8597 +8599 2 -505.26099470178417 -319.6362402431939 12.1135 0.1144 8598 +8600 2 -505.80261435563546 -318.63511885666674 12.4216 0.1144 8599 +8601 2 -505.9026302656895 -317.60719274174596 12.6328 0.1144 8600 +8602 2 -505.4308254235151 -316.5707862187537 12.7737 0.1144 8601 +8603 2 -505.0423026793128 -315.5078960752124 12.8526 0.1144 8602 +8604 2 -504.9750945821121 -314.3752506621767 12.8757 0.1144 8603 +8605 2 -504.5808724536441 -313.3664423734389 12.8627 0.1144 8604 +8606 2 -504.08463857912557 -312.34617748539245 12.8423 0.1144 8605 +8607 2 -504.1629689151761 -311.27365814363014 12.7732 0.1144 8606 +8608 2 -504.39991011476184 -310.16427697922416 12.7028 0.1144 8607 +8609 2 -504.29541373693246 -309.0429379417246 12.6712 0.1144 8608 +8610 2 -504.1902392703106 -307.9077381612582 12.6799 0.1144 8609 +8611 2 -504.32935589314593 -306.7796259482001 12.7321 0.1144 8610 +8612 2 -504.77235189034946 -305.73615442177413 12.8283 0.1144 8611 +8613 2 -505.6125909635622 -305.1029303067512 13.0558 0.1144 8612 +8614 2 -506.7042884440034 -304.86989028615744 13.3442 0.1144 8613 +8615 2 -507.6818229659856 -304.31614975275477 13.6131 0.1144 8614 +8616 2 -508.0065962839142 -303.37121374330144 13.9963 0.1144 8615 +8617 2 -508.9259769592896 -302.7640354879709 14.3319 0.1144 8616 +8618 2 -509.40782318042505 -301.7400200685667 14.5996 0.1144 8617 +8619 2 -509.980178076912 -300.7503474749947 14.8028 0.1144 8618 +8620 2 -510.8593631179848 -300.02330091283125 14.9608 0.1144 8619 +8621 2 -511.82084364650973 -299.4032707173832 15.0868 0.1144 8620 +8622 2 -512.6868544036766 -298.8218608890596 15.7461 0.1144 8621 +8623 2 -501.683628679589 -348.360471170988 12.3721 0.1144 8571 +8624 2 -502.1757595672485 -349.3815759988149 12.089 0.1144 8623 +8625 2 -502.408073829186 -350.4821815247417 11.9455 0.1144 8624 +8626 2 -502.52377622348854 -351.58742195376726 11.7231 0.1144 8625 +8627 2 -502.9664851387912 -352.6399603408637 11.5439 0.1144 8626 +8628 2 -503.73482862508763 -353.4845128241742 11.41 0.1144 8627 +8629 2 -504.3686694309638 -354.43548635314653 11.3182 0.1144 8628 +8630 2 -504.9052992960959 -355.44614843210684 11.2473 0.1144 8629 +8631 2 -483.8021438562328 -317.823047126513 22.1481 0.1144 8102 +8632 2 -483.03994371382305 -317.92822470449676 21.5556 0.1144 8631 +8633 2 -482.253587629364 -317.20985334619087 21.0129 0.1144 8632 +8634 2 -481.948437773455 -316.14466287710155 20.5294 0.1144 8633 +8635 2 -480.9248893193179 -315.87883922872976 20.1643 0.1144 8634 +8636 2 -479.8057501027181 -315.6418775992024 19.9481 0.1144 8635 +8637 2 -478.6818189492663 -315.4308568127841 19.8451 0.1144 8636 +8638 2 -477.5693202100478 -315.1631498736933 19.8139 0.1144 8637 +8639 2 -476.47470527153394 -314.83077996473304 19.8301 0.1144 8638 +8640 2 -475.5669590025493 -314.13647898450586 19.8804 0.1144 8639 +8641 2 -474.89416996823866 -313.2128597148328 19.9507 0.1144 8640 +8642 2 -474.25148190851536 -312.26589818029765 20.0351 0.1144 8641 +8643 2 -474.26420466601803 -311.59289910790494 20.266 0.1144 8642 +8644 2 -474.5770816592932 -310.52094153548 20.4915 0.1144 8643 +8645 2 -475.02250372465585 -309.4670098850927 20.6766 0.1144 8644 +8646 2 -475.29911189925156 -308.35848958859526 20.8239 0.1144 8645 +8647 2 -475.119337311025 -308.4730183073865 21.3819 0.1144 8646 +8648 2 -474.0330174257622 -308.4003866553148 23.0469 0.1144 8647 +8649 2 -472.9861304053819 -308.47420898634755 23.6711 0.1144 8648 +8650 2 -472.48460488481226 -309.238391603408 24.4409 0.1144 8649 +8651 2 -472.29818650574214 -309.7905357584481 25.4491 0.1144 8650 +8652 2 -471.68637017943615 -309.53285734867075 28.1182 0.1144 8651 +8653 2 -475.48307741191195 -308.2011188792761 20.9566 0.1144 8646 +8654 2 -476.3622352130626 -307.48708305337107 21.1006 0.1144 8653 +8655 2 -477.2995296878256 -306.8346873700784 21.201 0.1144 8654 +8656 2 -478.19973909101753 -306.1303122921514 21.273 0.1144 8655 +8657 2 -478.71382525948684 -305.142073342611 21.3238 0.1144 8656 +8658 2 -479.38233392371797 -304.2261413277497 21.355 0.1144 8657 +8659 2 -479.52137948588677 -303.13197016580057 21.3689 0.1144 8658 +8660 2 -479.95144892927306 -302.0820368898895 21.3709 0.1144 8659 +8661 2 -480.4511239730824 -301.0533918828078 21.3713 0.1144 8660 +8662 2 -480.60551258848625 -299.92601875228104 21.3719 0.1144 8661 +8663 2 -480.80041818560835 -298.798801160948 21.3727 0.1144 8662 +8664 2 -480.78746386112687 -297.6572890604965 21.3739 0.1144 8663 +8665 2 -480.9362780406037 -296.52431810324003 21.3755 0.1144 8664 +8666 2 -481.2314037857659 -295.4199378043654 21.3777 0.1144 8665 +8667 2 -481.4092733283172 -294.29020966634613 21.3808 0.1144 8666 +8668 2 -481.65273677294056 -293.1727811222628 21.3851 0.1144 8667 +8669 2 -481.78614109183593 -292.0373737338334 21.3912 0.1144 8668 +8670 2 -481.4397318207443 -290.95512628204534 21.3997 0.1144 8669 +8671 2 -481.18807337233494 -289.83991382455383 21.4115 0.1144 8670 +8672 2 -481.0019218847954 -288.71097919239537 21.4282 0.1144 8671 +8673 2 -481.315689744662 -287.61880018686804 21.4516 0.1144 8672 +8674 2 -481.59060412364954 -286.50872070582807 21.484 0.1144 8673 +8675 2 -481.17463237259244 -285.4521370686641 21.5284 0.1144 8674 +8676 2 -480.815289737703 -284.36668055145554 21.5923 0.1144 8675 +8677 2 -480.692299476196 -283.22988783263014 21.6841 0.1144 8676 +8678 2 -480.36861892794593 -282.13305082437205 21.8101 0.1144 8677 +8679 2 -480.2156423711622 -280.99859949307813 21.9737 0.1144 8678 +8680 2 -479.8757588981413 -279.90660760905735 22.1774 0.1144 8679 +8681 2 -479.23449435900704 -279.42803761328986 22.6199 0.1144 8680 +8682 2 -479.0270914113016 -278.38490143939737 23.1424 0.1144 8681 +8683 2 -478.18269384245707 -277.9309377891682 23.6737 0.1144 8682 +8684 2 -477.24485922247334 -277.32149752502414 24.1446 0.1144 8683 +8685 2 -476.30037030304675 -276.7831784272016 24.6386 0.1144 8684 +8686 2 -475.4524282597334 -276.09706369103753 25.1326 0.1144 8685 +8687 2 -474.8161445087899 -275.1646112856649 25.5004 0.1144 8686 +8688 2 -474.3224075609966 -274.13381571117696 25.7635 0.1144 8687 +8689 2 -473.8529244706847 -273.1030002049339 26.001 0.1144 8688 +8690 2 -472.97101463452657 -272.39581323468656 26.1896 0.1144 8689 +8691 2 -472.04951499371884 -271.71845405966116 26.3061 0.1144 8690 +8692 2 -471.28443425841476 -270.86910007075744 26.3749 0.1144 8691 +8693 2 -470.78014619423845 -269.84556562173816 26.421 0.1144 8692 +8694 2 -470.21760578076635 -268.84941572678724 26.4506 0.1144 8693 +8695 2 -469.2652388429176 -268.22368154545086 26.4667 0.1144 8694 +8696 2 -468.23482266776705 -267.7256291425974 26.4814 0.1144 8695 +8697 2 -467.15813840554904 -267.3399808060367 26.5013 0.1144 8696 +8698 2 -466.0936859335477 -266.9211239870039 26.5285 0.1144 8697 +8699 2 -465.2126669639812 -266.1937155836541 26.5676 0.1144 8698 +8700 2 -464.40380244474676 -265.38471652338046 26.6246 0.1144 8699 +8701 2 -463.5122258449027 -264.6676805085176 26.7023 0.1144 8700 +8702 2 -462.41354798514055 -264.35078776567156 26.8017 0.1144 8701 +8703 2 -462.1947227276005 -263.79857299163655 27.1985 0.1144 8702 +8704 2 -461.4561089380376 -263.00669161171436 27.483 0.1144 8703 +8705 2 -460.59947538217125 -262.25020139964033 27.5791 0.1144 8704 +8706 2 -459.9113637245672 -261.35002604635105 27.6934 0.1144 8705 +8707 2 -459.2313367534904 -260.43855388626713 27.8306 0.1144 8706 +8708 2 -458.5634334072141 -259.5117628580234 27.9449 0.1144 8707 +8709 2 -458.4695048205759 -258.4089721840458 28.0249 0.1144 8708 +8710 2 -458.14338784115284 -257.3275450363692 28.0742 0.1144 8709 +8711 2 -458.4505555853349 -256.28060714569267 28.1039 0.1144 8710 +8712 2 -458.70928065951273 -255.16886742076076 28.1162 0.1144 8711 +8713 2 -458.7027608445942 -254.02743950275044 28.1182 0.1144 8712 +8714 2 -459.3373085259612 -253.08718256974126 28.1182 0.1144 8713 +8715 2 -459.971879894217 -252.1356119530291 28.1182 0.1144 8714 +8716 2 -460.2298287811139 -251.02309278386903 28.1182 0.1144 8715 +8717 2 -460.3083047915308 -249.88099428733335 28.1182 0.1144 8716 +8718 2 -460.1998135922586 -248.74260557530192 28.1182 0.1144 8717 +8719 2 -461.76079077579175 -264.3291978225666 26.9233 0.1144 8702 +8720 2 -460.6961693842068 -264.36253642751126 27.1962 0.1144 8719 +8721 2 -459.6142569563104 -264.1774130676582 27.5486 0.1144 8720 +8722 2 -458.49839736761123 -263.9275889328992 27.8423 0.1144 8721 +8723 2 -457.3964434329817 -263.62186164272936 28.0756 0.1144 8722 +8724 2 -456.3391101672163 -263.2475675536687 28.3307 0.1144 8723 +8725 2 -455.2265978080367 -262.9863659827072 28.5118 0.1144 8724 +8726 2 -454.129560058311 -262.662900566199 28.6236 0.1144 8725 +8727 2 -453.0236173179467 -262.3710242481543 28.6975 0.1144 8726 +8728 2 -451.8897355623434 -262.2181776442985 28.7577 0.1144 8727 +8729 2 -450.74739940264686 -262.286991801633 28.8126 0.1144 8728 +8730 2 -449.61112838754815 -262.16079817958166 28.8674 0.1144 8729 +8731 2 -448.46730134521476 -262.1649088032493 28.9408 0.1144 8730 +8732 2 -447.79846275690136 -261.71859592781004 29.0346 0.1144 8731 +8733 2 -446.8622820690154 -261.0622071332459 29.1668 0.1144 8732 +8734 2 -445.9794098074128 -260.44319455688503 29.4417 0.1144 8733 +8735 2 -445.0188535706542 -259.8449497441002 29.7175 0.1144 8734 +8736 2 -443.9437753685699 -259.46899215420035 29.9771 0.1144 8735 +8737 2 -442.817137861527 -259.33475766636604 30.2456 0.1144 8736 +8738 2 -441.6951824292603 -259.3283781673895 30.5452 0.1144 8737 +8739 2 -440.63971601897697 -259.24449737838694 30.924 0.1144 8738 +8740 2 -439.53834848043164 -259.0302004231154 31.1592 0.1144 8739 +8741 2 -438.3977605022019 -259.04082322489296 31.3174 0.1144 8740 +8742 2 -437.2801761603095 -259.27706174579305 31.4143 0.1144 8741 +8743 2 -436.1513123867172 -259.4631426708525 31.4572 0.1144 8742 +8744 2 -435.01134130144095 -259.55062943976077 31.4574 0.1144 8743 +8745 2 -433.9166890560772 -259.2360785826326 31.4311 0.1144 8744 +8746 2 -432.83759234566116 -258.854385001904 31.4054 0.1144 8745 +8747 2 -431.77470231514957 -258.4322787557539 31.374 0.1144 8746 +8748 2 -430.7516687547586 -257.9205239078883 31.3368 0.1144 8747 +8749 2 -429.86657354006877 -257.2149566177358 31.2396 0.1144 8748 +8750 2 -428.9181850449412 -256.5803212008944 31.1324 0.1144 8749 +8751 2 -428.0574452452685 -255.8262265601101 31.0484 0.1144 8750 +8752 2 -427.48014911450355 -255.29199964446113 29.909 0.1144 8751 +8753 2 -426.6140523516945 -254.79994813551957 29.3563 0.1144 8752 +8754 2 -427.0943542767483 -255.29034339527402 29.1852 0.1144 8753 +8755 2 -427.73955614010515 -256.21871324372927 29.076 0.1144 8754 +8756 2 -427.9912584092589 -257.31299538637023 29.0228 0.1144 8755 +8757 2 -427.7463781975123 -258.36409420279756 29.0688 0.1144 8756 +8758 2 -427.2994894345881 -259.30799672613995 29.248 0.1144 8757 +8759 2 -427.2744272571099 -260.4371255484008 29.4073 0.1144 8758 +8760 2 -427.4103710162702 -261.5675107014992 29.5131 0.1144 8759 +8761 2 -427.49539816530313 -262.70019342138477 29.5534 0.1144 8760 +8762 2 -427.7211765622419 -263.815351695118 29.5173 0.1144 8761 +8763 2 -427.80940596671485 -264.93835373527037 29.4445 0.1144 8762 +8764 2 -427.72131687818376 -266.0787350453951 29.3748 0.1144 8763 +8765 2 -427.773948244603 -267.2162996981814 29.3311 0.1144 8764 +8766 2 -427.9405771138604 -268.34830473347495 29.3168 0.1144 8765 +8767 2 -428.1219238388595 -269.47553224615024 29.3194 0.1144 8766 +8768 2 -428.43508732062924 -270.56336695955383 29.3177 0.1144 8767 +8769 2 -428.86966112078005 -271.61751466373124 29.3348 0.1144 8768 +8770 2 -429.1547110328777 -272.6575607048338 29.4868 0.1144 8769 +8771 2 -429.2575846757653 -273.74339950668195 29.7483 0.1144 8770 +8772 2 -429.1088110600856 -274.856995780597 30.0166 0.1144 8771 +8773 2 -428.74909320361996 -275.943421716287 30.2935 0.1144 8772 +8774 2 -428.2688870925209 -276.960864462029 30.6239 0.1144 8773 +8775 2 -427.7460632361942 -277.7994609950863 31.1192 0.1144 8774 +8776 2 -426.92708519188864 -278.37609024594474 31.6817 0.1144 8775 +8777 2 -425.82015372601563 -278.52268973387083 32.1622 0.1144 8776 +8778 2 -424.6865831943855 -278.6602531731259 32.5517 0.1144 8777 +8779 2 -423.6002398618051 -279.0041082788872 32.8734 0.1144 8778 +8780 2 -422.8333948384393 -279.7742408065336 33.1895 0.1144 8779 +8781 2 -421.94129736169674 -280.45430834140757 33.4519 0.1144 8780 +8782 2 -420.8913675257892 -280.8331708358184 33.7456 0.1144 8781 +8783 2 -420.15183925277245 -281.69394113236035 34.0239 0.1144 8782 +8784 2 -419.39222209924503 -282.4567348659915 34.8664 0.1144 8783 +8785 2 -427.487291805528 -255.3591191793592 30.9854 0.1144 8751 +8786 2 -426.5122329535012 -254.76416741233575 30.9417 0.1144 8785 +8787 2 -425.50623949890075 -254.21921414892591 30.9148 0.1144 8786 +8788 2 -424.5221783520196 -253.63477944838286 30.9025 0.1144 8787 +8789 2 -423.53648094422135 -253.05507894790014 30.891 0.1144 8788 +8790 2 -422.41238092770084 -252.890939090283 30.8745 0.1144 8789 +8791 2 -421.27012589559854 -252.92100388093476 30.8526 0.1144 8790 +8792 2 -420.1681414640997 -252.6298429585325 30.826 0.1144 8791 +8793 2 -419.4395292034992 -251.7554629760862 30.7958 0.1144 8792 +8794 2 -418.60055640151046 -251.00707077441442 30.6936 0.1144 8793 +8795 2 -417.5808564506781 -250.4904438584756 30.609 0.1144 8794 +8796 2 -416.5073779969334 -250.0934177896262 30.5528 0.1144 8795 +8797 2 -415.4022147007973 -249.80076528430038 30.5222 0.1144 8796 +8798 2 -414.8629802226662 -249.6288696543539 30.5141 0.1144 8797 +8799 2 -413.7590406455094 -249.49475339886348 30.6037 0.1144 8798 +8800 2 -412.7481778250815 -249.3842372992374 30.9299 0.1144 8799 +8801 2 -411.7989927127312 -248.7585804903616 30.6715 0.1144 8800 +8802 2 -410.8433057852851 -248.13121300896924 30.5676 0.1144 8801 +8803 2 -409.8105441713833 -247.6388832730697 30.4287 0.1144 8802 +8804 2 -408.83535070829083 -247.0406785258955 30.2462 0.1144 8803 +8805 2 -407.85210561220106 -246.5055309845433 29.9348 0.1144 8804 +8806 2 -407.67156589999405 -246.54644812418223 30.3568 0.1144 8805 +8807 2 -406.58606250719424 -246.89440621680257 30.1188 0.1144 8806 +8808 2 -405.5181820632356 -247.3022932813324 30.0174 0.1144 8807 +8809 2 -404.45121922760427 -247.71096008617656 29.8976 0.1144 8808 +8810 2 -403.3833387836456 -248.11884715070642 29.7693 0.1144 8809 +8811 2 -402.84538535216956 -248.8886810779681 29.5464 0.1144 8810 +8812 2 -402.063438491763 -249.5430283538853 29.3356 0.1144 8811 +8813 2 -401.18265420053694 -250.2571314853233 29.2088 0.1144 8812 +8814 2 -400.442332863331 -251.12518333727542 29.162 0.1144 8813 +8815 2 -399.6785512310194 -251.9519616558974 29.2496 0.1144 8814 +8816 2 -399.1514475163112 -252.94342604958024 29.4064 0.1144 8815 +8817 2 -398.98242878064025 -254.06744514060682 29.5974 0.1144 8816 +8818 2 -398.3215635830321 -254.8450827686768 29.9298 0.1144 8817 +8819 2 -397.3915034920019 -255.48702839493575 30.2487 0.1144 8818 +8820 2 -396.8919564513781 -256.4883085776039 30.5682 0.1144 8819 +8821 2 -396.2696337502473 -257.3986097122057 30.9184 0.1144 8820 +8822 2 -395.1760494260538 -257.7222970704363 31.1772 0.1144 8821 +8823 2 -394.05438578419137 -257.948061847414 31.4924 0.1144 8822 +8824 2 -408.31098594552043 -245.60938337968537 29.4857 0.1144 8805 +8825 2 -408.63594274285174 -244.5430372539512 29.0032 0.1144 8824 +8826 2 -408.79360367798927 -243.44006621193262 28.4676 0.1144 8825 +8827 2 -408.7852031290123 -242.45391534579858 27.7725 0.1144 8826 +8828 2 -408.3560681573499 -241.47013630755055 27.1123 0.1144 8827 +8829 2 -407.59585623317196 -240.6256715597146 26.5516 0.1144 8828 +8830 2 -406.90182234657567 -239.81846855287176 25.9342 0.1144 8829 +8831 2 -407.2138562887084 -239.11540763164442 25.1378 0.1144 8830 +8832 2 -408.0269109620634 -238.3283305400354 24.4907 0.1144 8831 +8833 2 -408.321202783153 -237.25074790095863 23.9734 0.1144 8832 +8834 2 -409.1782316754071 -236.6700970869216 23.3926 0.1144 8833 +8835 2 -409.3636571886782 -235.81537919835947 22.787 0.1144 8834 +8836 2 -408.6316092627969 -235.02839061253826 22.3531 0.1144 8835 +8837 2 -407.52642227977185 -234.7470517909155 22.0515 0.1144 8836 +8838 2 -406.41784779951627 -234.4963236677903 21.806 0.1144 8837 +8839 2 -405.3630893311231 -234.07430515711465 21.5867 0.1144 8838 +8840 2 -404.54359206972487 -233.34532849866753 21.4201 0.1144 8839 +8841 2 -404.0385177513398 -232.32582292099377 21.2984 0.1144 8840 +8842 2 -403.32914456664207 -231.51625434154425 21.1427 0.1144 8841 +8843 2 -402.2930795814359 -231.45341528975558 20.982 0.1144 8842 +8844 2 -401.1682580030642 -231.63391852194076 20.8548 0.1144 8843 +8845 2 -400.02513608734523 -231.67274964094563 20.7512 0.1144 8844 +8846 2 -398.88961401960535 -231.56034619938083 20.6594 0.1144 8845 +8847 2 -397.7795176616571 -231.2934928200317 20.5708 0.1144 8846 +8848 2 -396.65523771876724 -231.2490660261399 20.4872 0.1144 8847 +8849 2 -395.6127862415475 -231.50094752137628 20.2956 0.1144 8848 +8850 2 -394.5411277111789 -231.78826470549197 20.08 0.1144 8849 +8851 2 -393.41357465428274 -231.75358915381346 19.9125 0.1144 8850 +8852 2 -392.34035368242445 -232.04415576504658 19.6826 0.1144 8851 +8853 2 -414.2622980953654 -249.8622305806918 30.6796 0.1144 8799 +8854 2 -414.3991022242477 -250.9869606684554 30.7252 0.1144 8853 +8855 2 -414.20659900839587 -252.11503181952995 30.737 0.1144 8854 +8856 2 -414.03683132536605 -253.2252607300699 30.7121 0.1144 8855 +8857 2 -414.45767544058253 -254.28503655574607 30.6499 0.1144 8856 +8858 2 -415.00246736470257 -255.28122000241325 30.5446 0.1144 8857 +8859 2 -415.2136894608015 -256.39153946370334 30.3814 0.1144 8858 +8860 2 -415.2323500735149 -257.50944609286927 30.1314 0.1144 8859 +8861 2 -415.41684862532946 -258.6173054360977 29.8368 0.1144 8860 +8862 2 -415.35626933529153 -259.7561179929385 29.5481 0.1144 8861 +8863 2 -415.37492284193826 -260.8774187272154 29.2107 0.1144 8862 +8864 2 -415.58625636040057 -261.968292942684 28.8467 0.1144 8863 +8865 2 -415.7853384529771 -263.0679803620971 28.527 0.1144 8864 +8866 2 -415.41427667455434 -263.72976399486066 28.1352 0.1144 8865 +8867 2 -414.4774698536153 -264.1492392149179 27.7801 0.1144 8866 +8868 2 -413.87527028499824 -265.1073830034786 27.5614 0.1144 8867 +8869 2 -413.41765097750806 -266.14424780633976 27.4878 0.1144 8868 +8870 2 -413.5528253593679 -267.2706008311454 27.4691 0.1144 8869 +8871 2 -413.74053277450264 -268.3993972992048 27.4823 0.1144 8870 +8872 2 -413.8756867264209 -269.53550837620423 27.5178 0.1144 8871 +8873 2 -414.00758829036056 -270.6714712221768 27.5477 0.1144 8872 +8874 2 -414.2276944489701 -271.7939715468727 27.5608 0.1144 8873 +8875 2 -414.45671191001236 -272.9156419987157 27.5636 0.1144 8874 +8876 2 -414.7561252769062 -274.01886288581187 27.5666 0.1144 8875 +8877 2 -415.1688242100432 -275.0850563441428 27.5709 0.1144 8876 +8878 2 -415.7719325320445 -276.05703735832606 27.5769 0.1144 8877 +8879 2 -416.0179359151191 -277.1713894460954 27.5852 0.1144 8878 +8880 2 -416.24617718888044 -278.2922804537102 27.5964 0.1144 8879 +8881 2 -416.6273137652898 -279.3705700948192 27.613 0.1144 8880 +8882 2 -416.78269951332436 -280.50262230179015 27.6368 0.1144 8881 +8883 2 -416.9266942051952 -281.6378326473706 27.6688 0.1144 8882 +8884 2 -416.7908166464633 -282.7724570385385 27.709 0.1144 8883 +8885 2 -416.9324827764914 -283.9053290514345 27.7573 0.1144 8884 +8886 2 -417.03366597470375 -285.02178210481355 27.8936 0.1144 8885 +8887 2 -417.152694670398 -286.1594150595056 28.0137 0.1144 8886 +8888 2 -417.3387755954574 -287.2882788330978 28.1184 0.1144 8887 +8889 2 -417.63083003448037 -288.3938884815032 28.21 0.1144 8888 +8890 2 -418.0833711174902 -289.44482110455203 28.2898 0.1144 8889 +8891 2 -418.38217421835463 -289.65743777114653 28.4161 0.1144 8890 +8892 2 -419.2640031290188 -290.36950361944776 28.5407 0.1144 8891 +8893 2 -420.1045446842914 -291.1454056196127 28.6502 0.1144 8892 +8894 2 -421.02441457807663 -291.8243877316802 28.7479 0.1144 8893 +8895 2 -421.8536187627573 -292.6115797286593 28.8411 0.1144 8894 +8896 2 -422.68346097062 -293.39799524227135 28.9377 0.1144 8895 +8897 2 -422.92143029789224 -294.4994611379202 29.0483 0.1144 8896 +8898 2 -423.9014998802777 -295.0652905324223 29.1906 0.1144 8897 +8899 2 -424.99186201727593 -294.72702999644343 29.3748 0.1144 8898 +8900 2 -425.9296718274566 -294.2000056991583 29.7086 0.1144 8899 +8901 2 -426.98053990373336 -293.7782944042391 30.1073 0.1144 8900 +8902 2 -428.00708655838065 -293.79416153480486 30.6684 0.1144 8901 +8903 2 -428.2140723447156 -293.44917247084015 31.2035 0.1144 8902 +8904 2 -428.21027344320737 -292.5617435619424 31.824 0.1144 8903 +8905 2 -427.21959856068054 -292.02905534437946 32.412 0.1144 8904 +8906 2 -426.18031775658807 -291.5770878452769 32.9412 0.1144 8905 +8907 2 -425.10716434887786 -291.43009596278023 33.4765 0.1144 8906 +8908 2 -424.0136574536599 -291.3452870003362 34.013 0.1144 8907 +8909 2 -423.1283760008066 -290.72867354829845 34.5358 0.1144 8908 +8910 2 -422.3446357757034 -289.909191175361 35.0246 0.1144 8909 +8911 2 -421.6675164543867 -289.1287522765998 35.5964 0.1144 8910 +8912 2 -420.97197756700615 -288.2973630138946 36.1542 0.1144 8911 +8913 2 -420.3324242550897 -287.3729647981799 36.6691 0.1144 8912 +8914 2 -419.5884185126297 -286.52209929459747 37.1112 0.1144 8913 +8915 2 -418.9925748691302 -285.55897234424185 37.4749 0.1144 8914 +8916 2 -418.11050198351097 -284.9634374380815 37.8504 0.1144 8915 +8917 2 -417.3175863471645 -284.27093251128514 38.2973 0.1144 8916 +8918 2 -416.6900041757017 -283.40404726624865 38.7923 0.1144 8917 +8919 2 -416.02540068516737 -282.4885061692084 39.2106 0.1144 8918 +8920 2 -415.3291740462671 -281.5803235018526 39.5158 0.1144 8919 +8921 2 -414.62968820940773 -280.6752452875345 39.7155 0.1144 8920 +8922 2 -413.92949349080027 -279.77101411906364 39.8188 0.1144 8921 +8923 2 -413.2300076539409 -278.8659359047456 39.8482 0.1144 8922 +8924 2 -412.621304762157 -277.8979736949801 39.825 0.1144 8923 +8925 2 -412.04580404105104 -276.91148404982084 39.7793 0.1144 8924 +8926 2 -411.4727125111958 -275.92259528033856 39.7272 0.1144 8925 +8927 2 -410.9004004255688 -274.9329303235753 39.678 0.1144 8926 +8928 2 -410.32737975427983 -273.9439709916129 39.6421 0.1144 8927 +8929 2 -409.7542882244246 -272.9550822221306 39.6346 0.1144 8928 +8930 2 -409.1811966945694 -271.96619345264827 39.6715 0.1144 8929 +8931 2 -408.60895546750857 -270.9764579334049 39.7659 0.1144 8930 +8932 2 -408.0358639376534 -269.98756916392256 39.9255 0.1144 8931 +8933 2 -407.55590029343847 -268.9640856417143 40.2234 0.1144 8932 +8934 2 -406.9857363450986 -268.13048399103604 40.7677 0.1144 8933 +8935 2 -406.28915410677956 -267.3921480002714 41.494 0.1144 8934 +8936 2 -405.4175617750634 -266.7892811100762 42.3072 0.1144 8935 +8937 2 -404.4042225143668 -266.2742231495215 43.062 0.1144 8936 +8938 2 -403.48264875804557 -265.5984901684852 43.7276 0.1144 8937 +8939 2 -402.6176669050279 -264.9454324268192 44.4231 0.1144 8938 +8940 2 -401.75268475592407 -264.29251610619934 45.1307 0.1144 8939 +8941 2 -400.88692671562535 -263.6386789203051 45.8511 0.1144 8940 +8942 2 -400.0218740040415 -262.985691741119 46.5811 0.1144 8941 +8943 2 -399.1568921510237 -262.3326339994529 47.3085 0.1144 8942 +8944 2 -399.80404492576247 -262.32918057392067 48.0553 0.1144 8943 +8945 2 -400.77451900722883 -262.8173493840694 48.6819 0.1144 8944 +8946 2 -401.6904205252208 -263.50042441606814 49.1109 0.1144 8945 +8947 2 -402.3793587987304 -264.4110667032993 49.3744 0.1144 8946 +8948 2 -403.07395894755535 -265.319316676188 49.506 0.1144 8947 +8949 2 -403.8487437533953 -266.16070065787505 49.539 0.1144 8948 +8950 2 -404.6641272607201 -266.96320796998054 49.5076 0.1144 8949 +8951 2 -405.70173094401224 -267.4394257735312 49.4519 0.1144 8950 +8952 2 -406.48473909866493 -268.2370569663435 49.3147 0.1144 8951 +8953 2 -407.10006934605553 -269.1467673249997 49.0952 0.1144 8952 +8954 2 -406.82632980419874 -268.51361509747136 48.9619 0.1144 8953 +8955 2 -406.3722935852321 -267.4675583916153 48.9171 0.1144 8954 +8956 2 -405.9190371065797 -266.42058407743195 48.9457 0.1144 8955 +8957 2 -405.4658511904074 -265.37368062181486 49.0325 0.1144 8956 +8958 2 -405.01337060295 -264.327627172906 49.1638 0.1144 8957 +8959 2 -404.6969748670572 -263.230027597328 49.2948 0.1144 8958 +8960 2 -404.56019087203026 -262.09568087841683 49.383 0.1144 8959 +8961 2 -404.4372006105234 -260.9588881595915 49.4441 0.1144 8960 +8962 2 -404.31421034901643 -259.82209544076613 49.499 0.1144 8961 +8963 2 -404.19114952502946 -258.6852318633745 49.5667 0.1144 8962 +8964 2 -404.06900601328357 -257.5492894473434 49.6644 0.1144 8963 +8965 2 -404.0527616978875 -256.4255895887436 49.8929 0.1144 8964 +8966 2 -404.05347606460157 -255.30758210232852 50.2435 0.1144 8965 +8967 2 -404.0541901352294 -254.1897160369597 50.6881 0.1144 8966 +8968 2 -404.0557545086517 -253.07100322182984 51.1988 0.1144 8967 +8969 2 -404.0564688753658 -251.95299573541473 51.7499 0.1144 8968 +8970 2 -404.0580332487881 -250.83428292028486 52.3177 0.1144 8969 +8971 2 -404.05867675693594 -249.71634599634987 52.8808 0.1144 8970 +8972 2 -404.06031198892447 -248.59756261873994 53.4338 0.1144 8971 +8973 2 -404.0609554970723 -247.47962569480492 53.9717 0.1144 8972 +8974 2 -404.0625198704946 -246.36091287967506 54.4883 0.1144 8973 +8975 2 -404.0640136814369 -245.24212920597898 54.9766 0.1144 8974 +8976 2 -404.064798610631 -244.12419257813008 55.4305 0.1144 8975 +8977 2 -404.0639001072308 -242.99974702911865 55.8345 0.1144 8976 +8978 2 -404.0420377372637 -241.85750917001073 56.1184 0.1144 8977 +8979 2 -404.095342281872 -240.71465086491597 56.301 0.1144 8978 +8980 2 -404.1592519245213 -239.57252187151093 56.4066 0.1144 8979 +8981 2 -404.22471719867974 -238.4303961350531 56.457 0.1144 8980 +8982 2 -404.0863775721437 -237.2960461591947 56.4738 0.1144 8981 +8983 2 -403.5496703345509 -236.28856590573287 56.4746 0.1144 8982 +8984 2 -402.998527787223 -235.28600518810782 56.4746 0.1144 8983 +8985 2 -402.70470218013116 -234.18201818065842 56.4746 0.1144 8984 +8986 2 -402.4708731465678 -233.0618932933968 56.4746 0.1144 8985 +8987 2 -402.23859944842764 -231.94191308412866 56.4746 0.1144 8986 +8988 2 -402.2750025495309 -230.79979721249822 56.4746 0.1144 8987 +8989 2 -402.3566603854463 -229.6577760884232 56.4746 0.1144 8988 +8990 2 -402.3712158594579 -228.5146952346879 56.4746 0.1144 8989 +8991 2 -401.63525473791435 -227.63789569797703 56.4746 0.1144 8990 +8992 2 -400.90014036613195 -226.76194646406046 56.4746 0.1144 8991 +8993 2 -400.1642501031546 -225.88507636486952 56.4746 0.1144 8992 +8994 2 -399.4291357313722 -225.009127130953 56.4746 0.1144 8993 +8995 2 -407.59729901467847 -269.28611873920534 48.3974 0.1144 8953 +8996 2 -408.6991755768473 -269.59502785487365 48.5125 0.1144 8995 +8997 2 -409.80034681030145 -269.90308696383363 48.5626 0.1144 8996 +8998 2 -410.9014439282421 -270.21277226678285 48.6214 0.1144 8997 +8999 2 -412.00254430313 -270.520901938223 48.6844 0.1144 8998 +9000 2 -413.103715536584 -270.82896104718293 48.7477 0.1144 8999 +9001 2 -414.2048126545247 -271.13864635013215 48.8082 0.1144 9000 +9002 2 -415.3059130294126 -271.44677602157225 48.9255 0.1144 9001 +9003 2 -398.616074618405 -261.36325827951134 48.0768 0.1144 8943 +9004 2 -398.06166251010416 -260.36875175154415 48.3946 0.1144 9003 +9005 2 -397.50802658908424 -259.3750246678051 48.5352 0.1144 9004 +9006 2 -396.95354391830335 -258.3804472812717 48.699 0.1144 9005 +9007 2 -396.55504345856883 -258.6045441210339 48.9255 0.1144 9006 +9008 2 -395.5992011184703 -259.2334956858423 48.9255 0.1144 9007 +9009 2 -394.8886772817172 -260.1218332215829 48.9255 0.1144 9008 +9010 2 -394.1701597508586 -261.01178037049056 48.9255 0.1144 9009 +9011 2 -393.8378135287871 -262.0950816253014 48.9255 0.1144 9010 +9012 2 -394.5130089955877 -262.98384549248544 48.9255 0.1144 9011 +9013 2 -396.83292228425 -257.2606301214647 48.8337 0.1144 9006 +9014 2 -397.0828101715085 -256.14809407539633 48.9423 0.1144 9013 +9015 2 -397.42238752036565 -255.05589839506092 49.0342 0.1144 9014 +9016 2 -397.74344700257024 -253.9597041381491 49.1229 0.1144 9015 +9017 2 -398.06365973501374 -252.86265957844287 49.2125 0.1144 9016 +9018 2 -398.38542809896643 -251.76561827568383 49.3055 0.1144 9017 +9019 2 -398.70564083140994 -250.6685737159776 49.4026 0.1144 9018 +9020 2 -399.0258535638534 -249.57152915627137 49.4984 0.1144 9019 +9021 2 -399.0630295952905 -248.4317483603783 49.5793 0.1144 9020 +9022 2 -398.76198973832135 -247.328594778815 49.6345 0.1144 9021 +9023 2 -398.45529155907013 -246.22613645903868 49.6689 0.1144 9022 +9024 2 -398.85626202073786 -245.16002019011205 49.6877 0.1144 9023 +9025 2 -399.33573606138634 -244.120726264245 49.6978 0.1144 9024 +9026 2 -428.2116097965348 -294.62537131281226 30.9299 0.1144 8902 +9027 2 -428.4252915125091 -295.74297913949306 30.8204 0.1144 9026 +9028 2 -428.41639139991844 -296.88677894190425 30.7768 0.1144 9027 +9029 2 -428.47795449871205 -298.01375566964396 30.716 0.1144 9028 +9030 2 -428.91252148888236 -299.071156057886 30.6317 0.1144 9029 +9031 2 -429.23960345041024 -300.1307355784709 30.5141 0.1144 9030 +9032 2 -429.08027190836685 -301.2548456619192 30.338 0.1144 9031 +9033 2 -428.86114324671894 -302.36737539619344 30.1078 0.1144 9032 +9034 2 -428.96168556900284 -303.418419587191 29.7996 0.1144 9033 +9035 2 -429.70117079158854 -304.1318137668544 29.3709 0.1144 9034 +9036 2 -430.6065516900667 -304.80758355655405 28.9682 0.1144 9035 +9037 2 -431.29637727713447 -305.69970146323817 28.6289 0.1144 9036 +9038 2 -431.69297108790295 -306.75780016811416 28.315 0.1144 9037 +9039 2 -431.94464315627346 -307.8665072574764 28.0126 0.1144 9038 +9040 2 -432.3274568534831 -308.92054659413736 27.7012 0.1144 9039 +9041 2 -432.94616502936304 -309.7704426601945 27.3096 0.1144 9040 +9042 2 -433.7842338429856 -310.51154975342274 26.9683 0.1144 9041 +9043 2 -434.8496586052588 -310.87129435162404 26.7129 0.1144 9042 +9044 2 -435.9835035521985 -311.00794809763687 26.5352 0.1144 9043 +9045 2 -437.1238813092899 -311.09773423872343 26.4208 0.1144 9044 +9046 2 -438.26461772064687 -311.04998856033853 26.3535 0.1144 9045 +9047 2 -439.4030233095866 -310.933436361428 26.3151 0.1144 9046 +9048 2 -440.54611828146943 -310.9074745576353 26.2764 0.1144 9047 +9049 2 -441.6627880133665 -311.1080856487167 26.1978 0.1144 9048 +9050 2 -442.78192447120557 -311.3125910000781 26.0844 0.1144 9049 +9051 2 -443.9017894464618 -311.54064458411995 25.9823 0.1144 9050 +9052 2 -444.96796265790744 -311.9481912724831 25.8976 0.1144 9051 +9053 2 -445.9179171475581 -312.57788020965165 25.8277 0.1144 9052 +9054 2 -446.70574673955923 -313.40302801093776 25.7704 0.1144 9053 +9055 2 -447.3492916159713 -314.3460315326935 25.7242 0.1144 9054 +9056 2 -447.7402167414439 -315.40977523597655 25.6433 0.1144 9055 +9057 2 -448.1610644096937 -316.4678540090972 25.5356 0.1144 9056 +9058 2 -448.68722053090346 -317.4825953880277 25.4463 0.1144 9057 +9059 2 -449.1363675088024 -318.5335209050098 25.3786 0.1144 9058 +9060 2 -449.88602150661666 -319.388499462379 25.3301 0.1144 9059 +9061 2 -450.94242659894064 -319.8008340363742 25.2994 0.1144 9060 +9062 2 -452.0821532110755 -319.863890119282 25.2858 0.1144 9061 +9063 2 -453.20851724266686 -320.06119809767426 25.2858 0.1144 9062 +9064 2 -454.29911692979624 -320.3862763842967 25.2571 0.1144 9063 +9065 2 -455.31003693231435 -320.9085417847482 25.2179 0.1144 9064 +9066 2 -456.45054022991656 -320.9383654022089 25.2224 0.1144 9065 +9067 2 -456.9093092674141 -321.27746510765496 24.7439 0.1144 9066 +9068 2 -457.9535466181071 -321.7261902857068 24.5796 0.1144 9067 +9069 2 -458.9506933170469 -322.2411436338787 24.467 0.1144 9068 +9070 2 -459.95544954573677 -321.8234370252298 24.3662 0.1144 9069 +9071 2 -460.7095341195933 -320.967505541131 24.2888 0.1144 9070 +9072 2 -461.4910808220792 -320.13277409220063 24.2333 0.1144 9071 +9073 2 -462.6244109317877 -320.1100445425309 24.1816 0.1144 9072 +9074 2 -456.6768456324917 -319.8766917825096 25.4824 0.1144 9066 +9075 2 -456.46395648252013 -318.78581431009377 25.7414 0.1144 9074 +9076 2 -455.9532099258059 -317.77365078338255 26.0205 0.1144 9075 +9077 2 -455.2828704444428 -316.8621281946741 26.2921 0.1144 9076 +9078 2 -454.7639817604958 -315.8886971577373 26.5509 0.1144 9077 +9079 2 -455.1571351409653 -315.1113475649379 26.7883 0.1144 9078 +9080 2 -456.06455474281483 -314.4418480233553 26.9599 0.1144 9079 +9081 2 -456.3538255645176 -313.4320665610025 27.0896 0.1144 9080 +9082 2 -456.2113592642337 -312.3098702086276 27.227 0.1144 9081 +9083 2 -456.10779411469264 -311.18280554331307 27.3769 0.1144 9082 +9084 2 -456.1246642345001 -310.04870981143785 27.5259 0.1144 9083 +9085 2 -455.96932210510965 -308.92959777824524 27.6377 0.1144 9084 +9086 2 -455.59536247172764 -307.8682937630824 27.6474 0.1144 9085 +9087 2 -455.1995075413902 -306.8287935542669 27.5405 0.1144 9086 +9088 2 -454.84666701768276 -305.74490628852845 27.446 0.1144 9087 +9089 2 -454.7665255566842 -304.60905181007223 27.3877 0.1144 9088 +9090 2 -455.1392877011245 -303.54040160365656 27.3708 0.1144 9089 +9091 2 -455.05021154689047 -302.41654926070987 27.3977 0.1144 9090 +9092 2 -455.5684140260937 -301.4211064243061 27.4648 0.1144 9091 +9093 2 -456.26004851624015 -300.6386541688682 28.1182 0.1144 9092 +9094 2 -424.78714981475315 -295.13439077528494 29.9516 0.1144 8899 +9095 2 -424.9944312731674 -296.2017805105727 30.7549 0.1144 9094 +9096 2 -424.40908251733043 -297.18336486458406 31.0489 0.1144 9095 +9097 2 -423.6576269246044 -297.96569187559726 31.4157 0.1144 9096 +9098 2 -422.67851995071976 -298.1221756565148 31.9861 0.1144 9097 +9099 2 -421.774915798645 -298.489111531503 32.7051 0.1144 9098 +9100 2 -420.7515439009004 -298.9157594412676 33.4219 0.1144 9099 +9101 2 -419.6923845265062 -299.04216493811384 34.1004 0.1144 9100 +9102 2 -418.62693282039686 -298.6952896551246 34.7136 0.1144 9101 +9103 2 -417.6087375742627 -298.20299041609445 35.2453 0.1144 9102 +9104 2 -416.59622818641884 -297.6968437579725 35.6958 0.1144 9103 +9105 2 -415.5837152455416 -297.192394152406 36.0914 0.1144 9104 +9106 2 -414.57191118641254 -296.6870975009923 36.4566 0.1144 9105 +9107 2 -413.75804856040753 -295.9687392644611 36.7945 0.1144 9106 +9108 2 -413.73758608065555 -294.9008921326475 37.0857 0.1144 9107 +9109 2 -413.99878439466977 -293.7899354049772 37.3276 0.1144 9108 +9110 2 -414.2648615867379 -292.67905960280075 37.5312 0.1144 9109 +9111 2 -414.3916464264066 -293.1517441217245 37.7202 0.1144 9110 +9112 2 -414.7032678966282 -294.23307021005166 37.8288 0.1144 9111 +9113 2 -415.30396722947916 -295.1735798599291 37.9548 0.1144 9112 +9114 2 -416.10067131524954 -295.9817049305194 38.0624 0.1144 9113 +9115 2 -417.0093384495087 -296.6752300195518 38.1352 0.1144 9114 +9116 2 -418.00228060405357 -297.23953072638085 38.18 0.1144 9115 +9117 2 -419.02126841619065 -297.758560319676 38.2035 0.1144 9116 +9118 2 -420.020732815773 -298.31481364682776 38.2144 0.1144 9117 +9119 2 -420.93500813977573 -298.99781456331306 38.2088 0.1144 9118 +9120 2 -421.8322569779491 -299.70750852721346 38.1965 0.1144 9119 +9121 2 -422.40538907160135 -300.6770226133543 38.1783 0.1144 9120 +9122 2 -423.1915488509692 -301.4891561253487 38.1525 0.1144 9121 +9123 2 -424.12127785629775 -302.1536631581564 38.1181 0.1144 9122 +9124 2 -424.8450144957915 -303.0264065835995 38.0741 0.1144 9123 +9125 2 -425.8015454142379 -303.62216808962023 38.0131 0.1144 9124 +9126 2 -426.650239459757 -304.3543878633907 37.8812 0.1144 9125 +9127 2 -427.4534453606233 -305.16422360649767 37.749 0.1144 9126 +9128 2 -428.41723414759105 -305.77209186041057 37.6289 0.1144 9127 +9129 2 -429.41748154443496 -306.3258719477259 37.5144 0.1144 9128 +9130 2 -430.3317533154043 -307.01056991676666 37.394 0.1144 9129 +9131 2 -431.2720407452829 -307.630551230366 37.2103 0.1144 9130 +9132 2 -432.3627591629426 -307.8989196774271 37.0849 0.1144 9131 +9133 2 -433.2382210716769 -308.57865734473364 36.8934 0.1144 9132 +9134 2 -433.9111557803539 -309.43269745963335 36.591 0.1144 9133 +9135 2 -434.7490962947048 -310.2013107983214 36.3084 0.1144 9134 +9136 2 -435.624510331475 -310.93768774270904 36.0772 0.1144 9135 +9137 2 -436.50148355278776 -311.67237089148847 35.8946 0.1144 9136 +9138 2 -437.37760647130597 -312.4079007900289 35.7451 0.1144 9137 +9139 2 -438.2529532025434 -313.1426512443413 35.6328 0.1144 9138 +9140 2 -439.12907612106164 -313.8781811428818 35.5443 0.1144 9139 +9141 2 -440.00519903957996 -314.6137110414222 35.4578 0.1144 9140 +9142 2 -440.8813925205784 -315.3493117985289 35.3702 0.1144 9141 +9143 2 -441.6959867188475 -316.1235331248603 35.2204 0.1144 9142 +9144 2 -442.1630404840531 -317.16636438657395 35.0896 0.1144 9143 +9145 2 -442.5968280299952 -318.22454096209685 34.9924 0.1144 9144 +9146 2 -443.03217120744637 -319.2827207945671 34.9247 0.1144 9145 +9147 2 -443.46602931586864 -320.34096822865627 34.8816 0.1144 9146 +9148 2 -443.901443351886 -321.3990774986464 34.8592 0.1144 9147 +9149 2 -444.33523089782807 -322.4572540741693 34.8527 0.1144 9148 +9150 2 -444.76986519353125 -323.5162809524868 34.8468 0.1144 9149 +9151 2 -445.2052083709825 -324.57446078495695 34.839 0.1144 9150 +9152 2 -445.6389959169245 -325.6326373604799 34.8286 0.1144 9151 +9153 2 -446.0744805154221 -326.69081748903625 34.8149 0.1144 9152 +9154 2 -446.5082680613641 -327.7489940645592 34.7908 0.1144 9153 +9155 2 -446.9436818012955 -328.80724475559566 34.7589 0.1144 9154 +9156 2 -447.37746934723754 -329.86542133111857 34.7206 0.1144 9155 +9157 2 -447.812883383255 -330.9235306011087 34.6777 0.1144 9156 +9158 2 -448.2466709291971 -331.98170717663174 34.6321 0.1144 9157 +9159 2 -448.7817284880121 -332.9665565096543 34.3042 0.1144 9158 +9160 2 -417.4188669564731 -289.596377397694 28.1182 0.1144 8890 +9161 2 -416.2869939755848 -289.6999324803072 27.8173 0.1144 9160 +9162 2 -415.16861401284274 -289.8771257898227 27.72 0.1144 9161 +9163 2 -414.1309229792327 -290.18565662906803 27.5123 0.1144 9162 +9164 2 -413.06042978728004 -290.3216550701728 27.2122 0.1144 9163 +9165 2 -411.93737632213026 -290.4682208042824 26.9495 0.1144 9164 +9166 2 -410.8391500452862 -290.27337590481295 26.7578 0.1144 9165 +9167 2 -409.7804199441526 -289.8570059455776 26.6651 0.1144 9166 +9168 2 -408.67287563654577 -289.89103250414246 26.6021 0.1144 9167 +9169 2 -407.565056415443 -289.68485378711443 26.5893 0.1144 9168 +9170 2 -406.494054458482 -289.2870550840174 26.6165 0.1144 9169 +9171 2 -405.44346322763386 -288.8335082665168 26.6576 0.1144 9170 +9172 2 -404.51612979359504 -288.1731074775153 26.7166 0.1144 9171 +9173 2 -403.5153984980608 -287.81668031225104 26.9065 0.1144 9172 +9174 2 -402.3854904336721 -287.75852383342493 27.0717 0.1144 9173 +9175 2 -401.27125052506767 -287.5118850771977 27.1876 0.1144 9174 +9176 2 -400.4590821928574 -286.7610741155338 27.1765 0.1144 9175 +9177 2 -400.27787777224773 -286.3764520699468 27.1517 0.1144 9176 +9178 2 -399.63266909891024 -285.4513349055562 27.1169 0.1144 9177 +9179 2 -398.9161703961826 -284.566444370524 27.0769 0.1144 9178 +9180 2 -398.5818537548357 -283.51745632801897 27.0538 0.1144 9179 +9181 2 -398.6765021931539 -282.3850790750136 27.0499 0.1144 9180 +9182 2 -398.7572018569449 -281.2616528939657 27.097 0.1144 9181 +9183 2 -398.47478042779125 -280.1820142894526 27.1481 0.1144 9182 +9184 2 -398.0474344974789 -279.12052779125986 27.1629 0.1144 9183 +9185 2 -397.6865125441914 -278.04638170080705 27.105 0.1144 9184 +9186 2 -397.4364195921186 -276.9602346733178 26.9444 0.1144 9185 +9187 2 -397.3044910843428 -275.8371411425574 26.7644 0.1144 9186 +9188 2 -397.207387684287 -274.6971499234256 26.6126 0.1144 9187 +9189 2 -397.00099759065074 -273.57552684536023 26.4946 0.1144 9188 +9190 2 -396.6497195084329 -272.4883901525045 26.4117 0.1144 9189 +9191 2 -396.1203676456777 -271.48021819028895 26.3572 0.1144 9190 +9192 2 -395.2749971427894 -270.7479346640189 26.3172 0.1144 9191 +9193 2 -394.3493103326814 -270.07784993833707 26.2718 0.1144 9192 +9194 2 -393.34903924894866 -269.5353835347247 26.2121 0.1144 9193 +9195 2 -392.44522404890733 -268.85480868639854 26.1346 0.1144 9194 +9196 2 -391.4699658369425 -268.3213042159438 25.9794 0.1144 9195 +9197 2 -390.5718664938745 -267.64632749043346 25.7947 0.1144 9196 +9198 2 -390.25937408881646 -266.60947669269007 25.6035 0.1144 9197 +9199 2 -390.2358855248602 -265.4671647180687 25.3984 0.1144 9198 +9200 2 -390.1808209842152 -264.34345429435473 25.1098 0.1144 9199 +9201 2 -390.2147407785544 -263.2053637410366 24.8089 0.1144 9200 +9202 2 -389.89075901674414 -262.2186228692702 24.3787 0.1144 9201 +9203 2 -390.1396302948 -261.22014126855896 23.8488 0.1144 9202 +9204 2 -390.564044174665 -260.20335953260087 23.3124 0.1144 9203 +9205 2 -391.53823777892165 -259.69175566101126 22.8225 0.1144 9204 +9206 2 -391.6776027565736 -259.59333511943544 22.4912 0.1144 9205 +9207 2 -392.57210311277277 -258.88010923462787 22.2975 0.1144 9206 +9208 2 -393.4916362724951 -258.20009914045943 22.2275 0.1144 9207 +9209 2 -393.34429414900427 -257.1101367197103 22.2444 0.1144 9208 +9210 2 -393.5503512637114 -256.8372000503553 22.3652 0.1144 9209 +9211 2 -394.144361035232 -255.94055754002133 22.605 0.1144 9210 +9212 2 -394.02572193234425 -255.02212898359141 22.8007 0.1144 9211 +9213 2 -393.095155745996 -254.3859752420907 22.9531 0.1144 9212 +9214 2 -392.11921964733887 -253.8047395400405 23.0637 0.1144 9213 +9215 2 -391.62041027516125 -252.90008147191315 23.1777 0.1144 9214 +9216 2 -391.0031657419959 -252.12789967578126 23.2784 0.1144 9215 +9217 2 -390.2379529522866 -251.34161947352177 23.3148 0.1144 9216 +9218 2 -390.1859686796041 -250.26649384114492 23.2828 0.1144 9217 +9219 2 -390.1778796132154 -249.13156803431656 23.2341 0.1144 9218 +9220 2 -390.2846211794648 -247.99843828091912 23.1923 0.1144 9219 +9221 2 -390.57246536921684 -246.8932649178552 23.16 0.1144 9220 +9222 2 -391.0082034978991 -245.837686643537 23.1463 0.1144 9221 +9223 2 -391.3842387563456 -244.75928519490807 23.1592 0.1144 9222 +9224 2 -391.42457618333947 -243.62933982366948 23.1921 0.1144 9223 +9225 2 -391.38093674876086 -242.48620784102283 23.2331 0.1144 9224 +9226 2 -391.45279241565186 -241.36523802290296 23.34 0.1144 9225 +9227 2 -391.1541751677942 -240.2870504375163 23.4456 0.1144 9226 +9228 2 -390.15054673109915 -240.16608428085658 23.6191 0.1144 9227 +9229 2 -393.5094577544463 -257.05066114962165 21.9321 0.1144 9209 +9230 2 -394.6054280246733 -257.10719093627205 21.2408 0.1144 9229 +9231 2 -395.73370584385293 -257.2009822618154 20.9739 0.1144 9230 +9232 2 -396.711423732208 -257.33646060248446 20.5326 0.1144 9231 +9233 2 -397.8173486558061 -257.2991072443417 20.1281 0.1144 9232 +9234 2 -398.9350889785637 -257.3936543272244 19.7382 0.1144 9233 +9235 2 -399.9767857838875 -257.8399700179393 19.4374 0.1144 9234 +9236 2 -400.9697952439653 -258.4058972148437 19.2306 0.1144 9235 +9237 2 -401.24339636310776 -259.4766784985819 19.0984 0.1144 9236 +9238 2 -401.26935816690053 -260.6197734704648 19.0227 0.1144 9237 +9239 2 -401.3462368769067 -261.76042945451417 18.9663 0.1144 9238 +9240 2 -401.37461468193067 -262.8978726180094 18.8789 0.1144 9239 +9241 2 -401.48622721114896 -264.03145952836144 18.7679 0.1144 9240 +9242 2 -401.6214520216334 -265.16750004288076 18.681 0.1144 9241 +9243 2 -401.44188542652654 -266.2972246278668 18.5578 0.1144 9242 +9244 2 -400.40252478112814 -287.09343804134176 26.9934 0.1144 9176 +9245 2 -399.9497742847641 -288.1351920852706 26.7796 0.1144 9244 +9246 2 -399.219130074258 -289.00814324521826 26.7051 0.1144 9245 +9247 2 -398.71224453570494 -290.0020541370017 26.5406 0.1144 9246 +9248 2 -398.5861451630225 -291.1270823269637 26.3658 0.1144 9247 +9249 2 -398.8329348003058 -292.23740554338747 26.1954 0.1144 9248 +9250 2 -398.87269033761845 -293.378054515356 26.0301 0.1144 9249 +9251 2 -398.7702044446752 -294.4036420015061 25.7076 0.1144 9250 +9252 2 -398.8010254908527 -295.5224226203553 25.3722 0.1144 9251 +9253 2 -398.7517530745372 -296.6645115481496 25.1223 0.1144 9252 +9254 2 -398.834215991312 -297.8060984644013 24.9412 0.1144 9253 +9255 2 -399.03897308097856 -298.9309001110178 24.8214 0.1144 9254 +9256 2 -399.1886969536977 -300.06534463233123 24.7439 0.1144 9255 +9257 2 -415.53934360358727 -249.58828348738683 30.3937 0.1144 8797 +9258 2 -416.1618387208201 -248.6294043714284 30.5418 0.1144 9257 +9259 2 -416.7834129727786 -247.67130114666486 30.6065 0.1144 9258 +9260 2 -417.4059080900115 -246.71242203070642 30.6835 0.1144 9259 +9261 2 -418.0283326447643 -245.75347205618186 30.7692 0.1144 9260 +9262 2 -418.31530589967997 -244.69277398370167 30.7944 0.1144 9261 +9263 2 -418.6767069866396 -243.64672745780314 30.8658 0.1144 9262 +9264 2 -419.1690231025781 -242.6204712120306 30.9543 0.1144 9263 +9265 2 -419.3817276176769 -241.5029075586951 31.0433 0.1144 9264 +9266 2 -419.04909846014414 -240.42471947512198 31.1422 0.1144 9265 +9267 2 -418.61290497989853 -239.36738639241284 31.2595 0.1144 9266 +9268 2 -418.1126594070288 -238.33813282947304 31.4023 0.1144 9267 +9269 2 -418.49501725448863 -237.31327271878186 31.6123 0.1144 9268 +9270 2 -419.1933365409472 -236.4451329292549 31.9169 0.1144 9269 +9271 2 -419.9021023314061 -235.5859245760162 32.289 0.1144 9270 +9272 2 -420.61093898043123 -234.7266456602974 32.6964 0.1144 9271 +9273 2 -421.21551043344914 -233.78392179924595 33.1013 0.1144 9272 +9274 2 -421.00516558398067 -232.65988627298265 33.4004 0.1144 9273 +9275 2 -420.76404818502664 -231.54222100559633 33.6025 0.1144 9274 +9276 2 -420.4062647346796 -230.45507069277943 33.7274 0.1144 9275 +9277 2 -420.04777240258454 -229.36876742580978 33.7999 0.1144 9276 +9278 2 -419.69090656056477 -228.28239685330723 33.845 0.1144 9277 +9279 2 -419.3599409038711 -227.1864638334153 33.887 0.1144 9278 +9280 2 -419.10092352759096 -226.073640137233 33.9503 0.1144 9279 +9281 2 -418.8411267070826 -224.96159262833163 34.0278 0.1144 9280 +9282 2 -418.5814040020876 -223.84791892544098 34.1121 0.1144 9281 +9283 2 -418.3224571882875 -222.73516608782487 34.3042 0.1144 9282 +9284 2 -448.06259030608726 -263.05876565130075 28.6804 0.1144 8731 +9285 2 -447.2238111204555 -263.80527157743325 28.5522 0.1144 9284 +9286 2 -446.72906913845827 -264.8081174585383 28.5104 0.1144 9285 +9287 2 -447.0430493713061 -265.87735693282866 28.39 0.1144 9286 +9288 2 -447.05281861334197 -267.0203472923287 28.2926 0.1144 9287 +9289 2 -447.01160364363153 -268.1641501495868 28.2187 0.1144 9288 +9290 2 -447.01811664856945 -269.30883075166184 28.166 0.1144 9289 +9291 2 -446.8288661167822 -270.4369087127169 28.1333 0.1144 9290 +9292 2 -446.7827758220512 -271.5789335919256 28.1182 0.1144 9291 +9293 2 -446.56687586149286 -272.70292524092963 28.1182 0.1144 9292 +9294 2 -479.78940010428414 -279.0384513277787 21.3126 0.1144 8680 +9295 2 -479.9082647971477 -277.9240146158967 21.1814 0.1144 9294 +9296 2 -480.14994019679375 -276.8162697124077 21.1144 0.1144 9295 +9297 2 -480.33756423850576 -275.6882590568854 21.079 0.1144 9296 +9298 2 -480.55268475483587 -274.5650435951623 21.0751 0.1144 9297 +9299 2 -480.7653857169014 -273.44917699438224 21.1334 0.1144 9298 +9300 2 -480.9845179315826 -272.33495020755254 21.2479 0.1144 9299 +9301 2 -481.24402244998873 -271.22243429533967 21.3788 0.1144 9300 +9302 2 -481.56909747966387 -270.13339023971946 21.5349 0.1144 9301 +9303 2 -481.87396084707825 -269.03878842298025 21.6851 0.1144 9302 +9304 2 -482.0663899474168 -267.912343465895 21.7923 0.1144 9303 +9305 2 -482.37604475349656 -266.8258127157219 21.86 0.1144 9304 +9306 2 -483.1042019021048 -265.9924544152708 21.8972 0.1144 9305 +9307 2 -483.6142045172839 -265.06332117266754 21.9137 0.1144 9306 +9308 2 -483.87130665441975 -263.94995170071303 21.9142 0.1144 9307 +9309 2 -484.4565137871101 -263.00223753924433 21.9071 0.1144 9308 +9310 2 -485.2404596139191 -262.1699152815647 21.8973 0.1144 9309 +9311 2 -485.91060128211996 -261.25080469815225 21.8835 0.1144 9310 +9312 2 -486.44742979339185 -260.2414708240126 21.8635 0.1144 9311 +9313 2 -486.98743657712885 -259.23391137488915 21.8356 0.1144 9312 +9314 2 -487.56636089033054 -258.24743452286276 21.7987 0.1144 9313 +9315 2 -488.1289713545847 -257.2512361312199 21.7518 0.1144 9314 +9316 2 -488.7143135965272 -256.2727630402268 21.6711 0.1144 9315 +9317 2 -488.6679574453435 -255.21136709278426 21.5412 0.1144 9316 +9318 2 -488.31830230016783 -254.12586014695103 21.4097 0.1144 9317 +9319 2 -488.19854784581713 -252.9971352377446 21.2919 0.1144 9318 +9320 2 -488.2486602019132 -251.85914929680922 21.1577 0.1144 9319 +9321 2 -488.36508570484307 -250.72766616734262 21.0004 0.1144 9320 +9322 2 -488.3463986464799 -249.58861694371365 20.8609 0.1144 9321 +9323 2 -488.1619406584625 -248.46138291714394 20.7428 0.1144 9322 +9324 2 -487.89570903230504 -247.34939264684772 20.6338 0.1144 9323 +9325 2 -487.1832487696644 -246.4944919601256 20.5291 0.1144 9324 +9326 2 -486.2339862848535 -245.87201697674817 20.3923 0.1144 9325 +9327 2 -485.34061383367884 -245.23594110589454 20.1583 0.1144 9326 +9328 2 -484.30865840574097 -244.76383635613075 19.9559 0.1144 9327 +9329 2 -483.1862216879593 -244.61582205082374 19.765 0.1144 9328 +9330 2 -482.048039644033 -244.62560135978734 19.6018 0.1144 9329 +9331 2 -480.9041757930362 -244.61351912561216 19.5135 0.1144 9330 +9332 2 -479.9654881114972 -243.97246933306317 19.5002 0.1144 9331 +9333 2 -478.97821789919544 -243.4009679963179 19.5778 0.1144 9332 +9334 2 -477.88188853303143 -243.11066744363777 19.7312 0.1144 9333 +9335 2 -477.90714449641126 -242.26049326365248 19.9897 0.1144 9334 +9336 2 -477.68537128392927 -241.15743492783088 20.2492 0.1144 9335 +9337 2 -477.5147034763985 -240.02945195390237 20.4458 0.1144 9336 +9338 2 -477.4199318951329 -238.89024343594596 20.5723 0.1144 9337 +9339 2 -477.57523782277786 -237.76379146677976 20.6316 0.1144 9338 +9340 2 -478.0231195080157 -236.71714818178327 20.6292 0.1144 9339 +9341 2 -478.53734759571773 -235.6948976186538 20.5741 0.1144 9340 +9342 2 -478.914088182879 -234.61734617673318 20.4841 0.1144 9341 +9343 2 -479.2214416670382 -233.51546635761704 20.3675 0.1144 9342 +9344 2 -479.87206723085137 -232.59631491432125 20.198 0.1144 9343 +9345 2 -480.45961199593967 -231.71415458931375 19.8755 0.1144 9344 +9346 2 -480.83234364351057 -230.6600707506657 19.5268 0.1144 9345 +9347 2 -480.5189676800281 -229.606176792285 19.164 0.1144 9346 +9348 2 -479.8819314286924 -228.66163125898117 18.8767 0.1144 9347 +9349 2 -479.24164930327254 -227.71382623163217 18.6676 0.1144 9348 +9350 2 -478.5923749499261 -226.77172995518984 18.5257 0.1144 9349 +9351 2 -477.82970014892567 -225.92153247347233 18.4348 0.1144 9350 +9352 2 -476.9973814442793 -225.135889594108 18.3609 0.1144 9351 +9353 2 -476.0360154685234 -224.51911684774277 18.2855 0.1144 9352 +9354 2 -474.95447551695395 -224.15608581166023 18.1843 0.1144 9353 +9355 2 -473.8652041046719 -224.37866570829266 17.9872 0.1144 9354 +9356 2 -472.74110452982285 -224.5858284361766 17.7722 0.1144 9355 +9357 2 -471.5997917893095 -224.5373354640893 17.5529 0.1144 9356 +9358 2 -470.4764032111975 -224.4386753274199 17.271 0.1144 9357 +9359 2 -469.43849455921156 -224.10812120154532 16.8952 0.1144 9358 +9360 2 -468.40122748344083 -223.77509353974818 16.4678 0.1144 9359 +9361 2 -467.3945183371118 -223.23424000625013 15.7461 0.1144 9360 +9362 2 -476.78686331315424 -243.00803617241434 19.6826 0.1144 9334 +9363 2 -475.7962156705496 -242.46233721859295 19.7703 0.1144 9362 +9364 2 -474.89088540279624 -241.7623844299781 19.8056 0.1144 9363 +9365 2 -474.18326069565137 -240.89448307392533 19.8571 0.1144 9364 +9366 2 -473.98012959787377 -239.80362603145102 19.9273 0.1144 9365 +9367 2 -474.115929784145 -238.67218346578161 20.0168 0.1144 9366 +9368 2 -474.34638930249037 -237.55147499771147 20.124 0.1144 9367 +9369 2 -474.57097346743467 -236.53512341835707 20.3752 0.1144 9368 +9370 2 -474.4307437401992 -235.49297641164478 20.6929 0.1144 9369 +9371 2 -473.9144061667357 -234.4831346367959 20.9577 0.1144 9370 +9372 2 -473.4271072815387 -233.4507261921938 21.157 0.1144 9371 +9373 2 -473.40116866644837 -232.33032944628312 21.2962 0.1144 9372 +9374 2 -472.94464538558395 -231.32386559992364 21.3817 0.1144 9373 +9375 2 -472.2816312803754 -230.39220576055385 21.4206 0.1144 9374 +9376 2 -471.3348216054594 -229.78027182663178 21.4475 0.1144 9375 +9377 2 -470.21725064395685 -229.6048319052728 21.48 0.1144 9376 +9378 2 -469.0734508415457 -229.59593179268205 21.5186 0.1144 9377 +9379 2 -467.931345036843 -229.5547203760049 21.5616 0.1144 9378 +9380 2 -466.9813096216984 -228.92991031689021 21.6255 0.1144 9379 +9381 2 -465.87593689869635 -228.70351342370702 21.9321 0.1144 9380 +9382 2 -473.9204660062535 -311.9707652399983 19.6826 0.1144 8642 +9383 2 -472.8029328497874 -311.74349435713185 19.3655 0.1144 9382 +9384 2 -471.68220069482845 -311.5243485224895 19.2502 0.1144 9383 +9385 2 -470.59838780321866 -311.4363778684026 18.9973 0.1144 9384 +9386 2 -469.5712543108157 -310.9577778174373 18.7453 0.1144 9385 +9387 2 -468.8879577787659 -310.0543598470112 18.528 0.1144 9386 +9388 2 -467.8600143452653 -309.5911023510945 18.2968 0.1144 9387 +9389 2 -466.8196055096069 -309.2726345431705 18.0157 0.1144 9388 +9390 2 -465.7297479598558 -308.96459912109935 17.8254 0.1144 9389 +9391 2 -464.7008627329527 -308.5458874782465 17.7214 0.1144 9390 +9392 2 -463.5762271906442 -308.6713073609459 17.6784 0.1144 9391 +9393 2 -462.5155909952458 -309.09780654149716 17.6883 0.1144 9392 +9394 2 -461.46789773238663 -309.5567183815705 17.7462 0.1144 9393 +9395 2 -460.4864094509452 -310.04002264742485 17.8944 0.1144 9394 +9396 2 -459.60833556453 -310.64163051804815 18.1403 0.1144 9395 +9397 2 -458.5882400942537 -310.651657058914 18.3462 0.1144 9396 +9398 2 -457.48292786680406 -310.43013933987083 18.5166 0.1144 9397 +9399 2 -456.480017735013 -309.9660857249179 18.6576 0.1144 9398 +9400 2 -455.4845146051572 -309.40913358294586 18.7748 0.1144 9399 +9401 2 -454.38478993540906 -309.2207202321782 18.9067 0.1144 9400 +9402 2 -453.2532999959619 -309.1075474133131 19.0605 0.1144 9401 +9403 2 -452.11953923146336 -308.9644591577373 19.2148 0.1144 9402 +9404 2 -451.04674852923847 -308.64422649353855 19.4294 0.1144 9403 +9405 2 -450.3817435361078 -309.40651120354613 19.6295 0.1144 9404 +9406 2 -450.32211610640013 -310.4959695917494 19.804 0.1144 9405 +9407 2 -449.8631684675479 -311.390490706532 19.9636 0.1144 9406 +9408 2 -448.926717687699 -312.0114218354993 20.1692 0.1144 9407 +9409 2 -448.173561287284 -312.82931283466337 20.386 0.1144 9408 +9410 2 -447.696520124775 -313.8548939525044 20.6202 0.1144 9409 +9411 2 -447.0870526207089 -314.80573930874675 20.8798 0.1144 9410 +9412 2 -446.7143955868378 -315.8241850437303 21.217 0.1144 9411 +9413 2 -445.8717163273185 -316.50838656051906 21.5418 0.1144 9412 +9414 2 -444.78695137327816 -316.5036405636987 21.8678 0.1144 9413 +9415 2 -443.65259153259234 -316.61291801717965 22.1123 0.1144 9414 +9416 2 -442.55416534110884 -316.9188468191304 22.2551 0.1144 9415 +9417 2 -441.47006045699453 -316.632602377718 22.2981 0.1144 9416 +9418 2 -440.59875266403054 -315.8938298620407 22.3323 0.1144 9417 +9419 2 -439.55952249066297 -315.417679364023 22.3866 0.1144 9418 +9420 2 -438.45671825323916 -315.1127988236142 22.4729 0.1144 9419 +9421 2 -438.1533345221046 -315.534448739638 22.66 0.1144 9420 +9422 2 -437.5164287783982 -316.41890988837986 22.9855 0.1144 9421 +9423 2 -436.93369538373065 -317.3333951374349 23.3927 0.1144 9422 +9424 2 -436.68063268305457 -318.4087306383492 23.7963 0.1144 9423 +9425 2 -436.88795420707953 -319.4907575999707 24.0979 0.1144 9424 +9426 2 -437.5096582663805 -320.4295434555569 24.2524 0.1144 9425 +9427 2 -437.54704587652634 -321.48533447020304 24.2961 0.1144 9426 +9428 2 -436.91414156214296 -322.41746309804097 24.2864 0.1144 9427 +9429 2 -435.9874183376186 -323.0529810247174 24.2504 0.1144 9428 +9430 2 -434.97280525795986 -323.5516309004672 24.2381 0.1144 9429 +9431 2 -434.1154885700065 -324.26974297149565 24.2387 0.1144 9430 +9432 2 -433.5900687860791 -325.23370437666574 24.1978 0.1144 9431 +9433 2 -433.31430765733046 -326.34293355491127 24.1572 0.1144 9432 +9434 2 -432.68468672598146 -327.2266321363333 24.1088 0.1144 9433 +9435 2 -431.76924293315705 -327.9123076588505 24.0496 0.1144 9434 +9436 2 -431.10320119696826 -328.79826344536275 23.9748 0.1144 9435 +9437 2 -430.7304186225863 -329.8766717039723 23.8849 0.1144 9436 +9438 2 -430.4563545463932 -330.9859044352512 23.7667 0.1144 9437 +9439 2 -430.1175770717059 -332.06756587611176 23.582 0.1144 9438 +9440 2 -429.90008467097493 -333.17536141032565 23.3665 0.1144 9439 +9441 2 -429.4265502344134 -334.0796100804327 23.0376 0.1144 9440 +9442 2 -428.9383408604675 -335.0694588452404 22.7053 0.1144 9441 +9443 2 -428.3361112931675 -336.0081570918935 22.3576 0.1144 9442 +9444 2 -427.24386492559245 -336.0980772371278 22.0766 0.1144 9443 +9445 2 -426.22525347145745 -336.58137449090134 21.8032 0.1144 9444 +9446 2 -425.35325899337306 -337.3189013108817 21.592 0.1144 9445 +9447 2 -426.4249316418892 -336.9910668489616 21.4526 0.1144 9446 +9448 2 -427.5592068019474 -336.9222358147189 21.3558 0.1144 9447 +9449 2 -428.69960824592766 -337.00070827210243 21.285 0.1144 9448 +9450 2 -429.537042791502 -337.70702430751345 21.2217 0.1144 9449 +9451 2 -430.19928070942956 -338.6379047026551 21.1614 0.1144 9450 +9452 2 -430.6662671691023 -339.67910947429334 21.0917 0.1144 9451 +9453 2 -430.8531580352593 -340.79263069283706 20.9631 0.1144 9452 +9454 2 -431.07581885738557 -341.8770232270653 20.7429 0.1144 9453 +9455 2 -430.9295081185285 -342.996352234862 20.5506 0.1144 9454 +9456 2 -430.8429746615065 -344.1367368019339 20.4015 0.1144 9455 +9457 2 -430.96596817996067 -345.27197388925015 20.2917 0.1144 9456 +9458 2 -431.0364120843177 -346.41268711190475 20.2164 0.1144 9457 +9459 2 -430.9409708778963 -347.552204499274 20.1684 0.1144 9458 +9460 2 -430.62563702350667 -348.64932998447415 20.1331 0.1144 9459 +9461 2 -430.5043258325424 -349.7839848725114 20.0892 0.1144 9460 +9462 2 -430.0055176723497 -350.80386355123994 20.0316 0.1144 9461 +9463 2 -429.48966339065845 -351.826039998856 19.9581 0.1144 9462 +9464 2 -428.81159227903805 -352.7160718283912 19.7871 0.1144 9463 +9465 2 -427.47672794810103 -352.40504856882364 19.6826 0.1144 9464 +9466 2 -426.4723606874898 -351.8601694209272 19.6826 0.1144 9465 +9467 2 -425.739584944478 -350.98175020412145 19.6826 0.1144 9466 +9468 2 -425.07338546073777 -350.0517100448466 19.6826 0.1144 9467 +9469 2 -424.2402131963499 -349.26846954675244 19.6826 0.1144 9468 +9470 2 -429.11489526773494 -353.10978835972753 19.6243 0.1144 9464 +9471 2 -429.7512158273421 -354.0584336229431 19.4637 0.1144 9470 +9472 2 -430.1064592305062 -355.1091625387479 19.2502 0.1144 9471 +9473 2 -430.45288537850615 -356.18334899089757 19.0183 0.1144 9472 +9474 2 -430.4174273277525 -357.27936337795495 18.8004 0.1144 9473 +9475 2 -430.0229049956089 -358.33905846119353 18.5397 0.1144 9474 +9476 2 -429.1962867416276 -359.05242646733404 18.1796 0.1144 9475 +9477 2 -428.79048122265044 -360.0975314959162 17.8384 0.1144 9476 +9478 2 -428.45005712403224 -361.18887687345716 17.5298 0.1144 9477 +9479 2 -428.37102195745337 -362.226534298836 17.0894 0.1144 9478 +9480 2 -428.4068607460705 -363.2790693724703 16.5641 0.1144 9479 +9481 2 -428.63505188729334 -364.3901314693252 16.1246 0.1144 9480 +9482 2 -428.42399399612543 -365.4980111859802 15.7472 0.1144 9481 +9483 2 -428.0043609898117 -366.5616842137533 15.4777 0.1144 9482 +9484 2 -427.8119318894732 -367.6881291708387 15.3067 0.1144 9483 +9485 2 -427.26542654758754 -368.6924223159365 15.2242 0.1144 9484 +9486 2 -426.7722497658408 -369.7244750480902 15.1838 0.1144 9485 +9487 2 -424.0838951984821 -337.77402564138913 21.2454 0.1144 9446 +9488 2 -422.95030423691026 -337.9213471328381 21.1951 0.1144 9487 +9489 2 -421.81314235521995 -337.8153749438891 21.1266 0.1144 9488 +9490 2 -420.7711925934569 -338.199133193262 21.0346 0.1144 9489 +9491 2 -420.3192820368733 -339.24499022404984 20.9047 0.1144 9490 +9492 2 -419.5726315027739 -340.0288829335 20.6716 0.1144 9491 +9493 2 -418.5353746769872 -340.5015345254353 20.4272 0.1144 9492 +9494 2 -417.506452824477 -340.8771175940457 20.1287 0.1144 9493 +9495 2 -416.4020860890485 -340.9808009759306 19.7295 0.1144 9494 +9496 2 -415.68081083611617 -341.60055625788266 19.2462 0.1144 9495 +9497 2 -415.59682167959716 -342.7077827711071 18.7521 0.1144 9496 +9498 2 -415.5557118204559 -343.8013811569332 18.2311 0.1144 9497 +9499 2 -415.17786611830417 -343.44788444497476 17.637 0.1144 9498 +9500 2 -415.18905393285456 -342.32593907963576 17.1718 0.1144 9499 +9501 2 -415.55202752823163 -341.2718348110461 16.3086 0.1144 9500 +9502 2 -437.2425868521773 -314.68634541354965 22.352 0.1144 9420 +9503 2 -436.1585194770133 -314.3484114316762 22.5211 0.1144 9502 +9504 2 -435.1216042455276 -313.88110463447225 22.6811 0.1144 9503 +9505 2 -434.1463117815597 -313.39773407296957 22.911 0.1144 9504 +9506 2 -433.09190985244317 -313.1431595615287 23.1872 0.1144 9505 +9507 2 -431.9531177255439 -313.0728222192969 23.4045 0.1144 9506 +9508 2 -430.8108153196639 -313.12551437735465 23.5686 0.1144 9507 +9509 2 -429.7334339202411 -313.444356611348 23.6925 0.1144 9508 +9510 2 -428.88331105222346 -314.17139330868406 23.7867 0.1144 9509 +9511 2 -427.92725479236776 -314.5310068623646 23.9122 0.1144 9510 +9512 2 -426.86014965234705 -314.1970682001205 24.0335 0.1144 9511 +9513 2 -425.73770257155155 -314.0540036314335 24.1385 0.1144 9512 +9514 2 -424.71346704713756 -314.4878622380421 24.231 0.1144 9513 +9515 2 -423.60186287312933 -314.56968081984087 24.3158 0.1144 9514 +9516 2 -422.4876161545444 -314.3262947476782 24.3968 0.1144 9515 +9517 2 -421.3693304976862 -314.0869307368806 24.4776 0.1144 9516 +9518 2 -420.2705039461817 -314.24634585444716 24.6383 0.1144 9517 +9519 2 -419.13935267273 -314.37670185380546 24.8031 0.1144 9518 +9520 2 -418.02272770143526 -314.49245112369937 25.0289 0.1144 9519 +9521 2 -416.89158629281104 -314.65186929611275 25.2247 0.1144 9520 +9522 2 -415.8301835919028 -314.29616363618476 25.4389 0.1144 9521 +9523 2 -414.7363312207089 -313.97107853958187 25.6185 0.1144 9522 +9524 2 -413.725509020593 -313.435873261438 25.7386 0.1144 9523 +9525 2 -412.5917482560945 -313.2927850058623 25.8686 0.1144 9524 +9526 2 -484.39272107383437 -316.64079637474754 24.2027 0.1144 8100 +9527 2 -483.8711225532894 -317.36696524860906 24.9308 0.1144 9526 +9528 2 -483.0487393405724 -318.01641952832495 25.138 0.1144 9527 +9529 2 -482.21963777982694 -318.7338128527777 25.2911 0.1144 9528 +9530 2 -481.41227527655644 -319.5378017509055 25.4648 0.1144 9529 +9531 2 -480.6032830262633 -320.3434135860753 25.6479 0.1144 9530 +9532 2 -479.79910915847177 -321.14422717259913 25.8564 0.1144 9531 +9533 2 -479.0006748345422 -321.9393251982358 26.0993 0.1144 9532 +9534 2 -478.19409177549994 -322.7425379090826 26.3453 0.1144 9533 +9535 2 -477.38346977818424 -323.5497726812945 26.5558 0.1144 9534 +9536 2 -476.5882240897338 -324.3416953953272 26.7948 0.1144 9535 +9537 2 -475.7825354503163 -325.12298962051614 27.0614 0.1144 9536 +9538 2 -474.80174143428894 -325.6799760280029 27.2814 0.1144 9537 +9539 2 -473.92413245466696 -326.39726779491974 27.4426 0.1144 9538 +9540 2 -473.2928611442534 -327.3262178542065 27.5131 0.1144 9539 +9541 2 -472.3870476025377 -328.00540814245005 27.5979 0.1144 9540 +9542 2 -471.4137045031757 -328.4822947756496 27.7897 0.1144 9541 +9543 2 -470.3081217986064 -328.7614798994605 27.9404 0.1144 9542 +9544 2 -469.22819471715127 -328.4048869259743 28.0574 0.1144 9543 +9545 2 -468.1335762256041 -328.07421406956945 28.1453 0.1144 9544 +9546 2 -467.0373988456005 -327.7450935877265 28.2055 0.1144 9545 +9547 2 -465.99234524201586 -327.28095173911265 28.2313 0.1144 9546 +9548 2 -464.89858031021026 -326.9478765014375 28.2307 0.1144 9547 +9549 2 -464.08891946983925 -326.14771462808324 28.2282 0.1144 9548 +9550 2 -463.83803720871083 -325.03328161481994 28.2246 0.1144 9549 +9551 2 -463.96721635116944 -323.99085012587034 28.2195 0.1144 9550 +9552 2 -464.07797968269784 -322.86190073179256 28.2125 0.1144 9551 +9553 2 -463.80763855578687 -321.75386166429513 28.2027 0.1144 9552 +9554 2 -463.4799727548352 -320.6691785756067 28.189 0.1144 9553 +9555 2 -463.464541637484 -319.5285805304491 28.17 0.1144 9554 +9556 2 -463.6149114484699 -318.39561283013984 28.1436 0.1144 9555 +9557 2 -463.7985069149224 -317.2666744993626 28.1056 0.1144 9556 +9558 2 -463.96266364944785 -316.1345134832037 28.0515 0.1144 9557 +9559 2 -464.08228459783714 -314.99660235806857 27.9797 0.1144 9558 +9560 2 -464.1162853176703 -313.8536329266965 27.8881 0.1144 9559 +9561 2 -464.08464120862055 -312.72268832135 27.7431 0.1144 9560 +9562 2 -464.051394094284 -311.61436782646217 27.4901 0.1144 9561 +9563 2 -464.02216598646555 -310.477771412728 27.2177 0.1144 9562 +9564 2 -464.0172759185697 -309.3347205576756 26.9702 0.1144 9563 +9565 2 -464.0698615145021 -308.19751761400187 26.7201 0.1144 9564 +9566 2 -464.1385320989475 -307.07802605493055 26.412 0.1144 9565 +9567 2 -464.19426902350904 -305.9554668514849 26.0785 0.1144 9566 +9568 2 -464.2209176254519 -304.81163349735743 25.7818 0.1144 9567 +9569 2 -464.2589504735778 -303.667894688685 25.4932 0.1144 9568 +9570 2 -464.3300607461433 -302.531437637523 25.1769 0.1144 9569 +9571 2 -464.7114735432534 -301.55267901140496 24.7736 0.1144 9570 +9572 2 -465.2706244532375 -300.68905618871906 24.2436 0.1144 9571 +9573 2 -465.359282562758 -299.68217812280625 23.5852 0.1144 9572 +9574 2 -465.57428790159116 -298.6139754480889 22.9613 0.1144 9573 +9575 2 -466.2652646389008 -297.77417532990785 22.3893 0.1144 9574 +9576 2 -467.0289416588296 -296.9635895730427 21.8545 0.1144 9575 +9577 2 -467.57367463417324 -296.06281337688006 21.3104 0.1144 9576 +9578 2 -468.54139316506974 -295.5705000061906 20.8998 0.1144 9577 +9579 2 -469.60435762622484 -295.1464805793702 20.6241 0.1144 9578 +9580 2 -470.54326171415494 -294.50207859018315 20.4398 0.1144 9579 +9581 2 -470.8884767532521 -293.45281618888345 20.3266 0.1144 9580 +9582 2 -470.76299311805326 -292.32485710394405 20.2655 0.1144 9581 +9583 2 -470.9344142349945 -291.2016915726592 20.23 0.1144 9582 +9584 2 -471.024976563362 -290.0620932597959 20.1874 0.1144 9583 +9585 2 -471.2886481172127 -288.95191952938706 20.1312 0.1144 9584 +9586 2 -471.49726652236086 -287.82713481619373 20.0621 0.1144 9585 +9587 2 -471.6306708412562 -286.6917274277643 19.9818 0.1144 9586 +9588 2 -471.7978093410552 -285.6889734789389 19.7203 0.1144 9587 +9589 2 -472.14063582094354 -284.5984816611396 19.5099 0.1144 9588 +9590 2 -472.6038600612301 -283.5526483172406 19.3597 0.1144 9589 +9591 2 -473.48958422424874 -282.80949337576135 20.0352 0.1144 9590 +9592 2 -474.5504716462542 -282.6345131545057 20.344 0.1144 9591 +9593 2 -475.684858430776 -282.5123663858126 20.5999 0.1144 9592 +9594 2 -476.7760471836798 -282.1845727837757 20.8113 0.1144 9593 +9595 2 -477.80282069680266 -281.6867968977091 20.9879 0.1144 9594 +9596 2 -478.8689904682447 -281.28541164827516 21.1416 0.1144 9595 +9597 2 -479.923148535436 -280.84588811150434 21.2963 0.1144 9596 +9598 2 -480.8071582708045 -280.14480252630534 21.4868 0.1144 9597 +9599 2 -481.5966848453345 -279.348837320966 21.7708 0.1144 9598 +9600 2 -482.35719010669254 -278.53336587606645 22.1334 0.1144 9599 +9601 2 -483.28442816844824 -278.05723124507256 22.5883 0.1144 9600 +9602 2 -484.3402501216353 -278.37657985266026 23.6191 0.1144 9601 +9603 2 -472.2638749741585 -282.9144783472726 19.2499 0.1144 9590 +9604 2 -471.7896004451811 -281.8755917744634 19.176 0.1144 9603 +9605 2 -471.8120505184371 -280.8120064256498 19.1321 0.1144 9604 +9606 2 -472.47563618778383 -279.91706522119136 19.1123 0.1144 9605 +9607 2 -472.94760562619524 -278.94973921140695 19.0801 0.1144 9606 +9608 2 -473.07139686697644 -277.8126146365665 19.0308 0.1144 9607 +9609 2 -473.39319522961205 -276.735018875715 18.9623 0.1144 9608 +9610 2 -474.0794082663648 -275.84012504503426 18.8693 0.1144 9609 +9611 2 -475.0512337413543 -275.27753370475114 18.7479 0.1144 9610 +9612 2 -476.09485075909015 -274.84046297787506 18.5501 0.1144 9611 +9613 2 -477.13042996589013 -274.42607360006286 18.2485 0.1144 9612 +9614 2 -478.14505311247666 -273.9226154087393 17.9312 0.1144 9613 +9615 2 -479.1745276072545 -273.65458467430403 17.5204 0.1144 9614 +9616 2 -480.23490344897596 -273.3186655258567 17.1171 0.1144 9615 +9617 2 -481.3172519601135 -272.95776074556363 16.7544 0.1144 9616 +9618 2 -482.2511241874563 -272.42012157939575 16.3488 0.1144 9617 +9619 2 -483.1738389705767 -271.77405934631673 16.01 0.1144 9618 +9620 2 -484.1939415094488 -271.3215951375811 15.6905 0.1144 9619 +9621 2 -485.16283952946435 -271.81951874297647 15.4606 0.1144 9620 +9622 2 -486.17863189614195 -272.3449763319403 15.1838 0.1144 9621 +9623 2 -463.5247361310551 -325.53099562380476 28.2839 0.1144 9550 +9624 2 -463.3219489624775 -326.5724951841793 28.9246 0.1144 9623 +9625 2 -462.55742519278766 -327.38223063825 29.1645 0.1144 9624 +9626 2 -461.5356019144713 -327.8460049776553 29.4336 0.1144 9625 +9627 2 -462.24314155583187 -327.9777356722689 29.6817 0.1144 9626 +9628 2 -463.3646768419078 -328.18479163592735 29.4232 0.1144 9627 +9629 2 -464.4870591738309 -328.3925564813338 29.3121 0.1144 9628 +9630 2 -465.6093706471879 -328.6003918892204 29.1838 0.1144 9629 +9631 2 -466.731752979111 -328.8081567346269 29.0483 0.1144 9630 +9632 2 -467.78438655543437 -328.6914956700134 28.9176 0.1144 9631 +9633 2 -468.2725957272799 -327.73551739383464 28.8165 0.1144 9632 +9634 2 -468.5216436747579 -326.6188783609073 28.7504 0.1144 9633 +9635 2 -468.77153837199694 -325.5030896307743 28.7115 0.1144 9634 +9636 2 -469.07231918249397 -324.3995697016218 28.6924 0.1144 9635 +9637 2 -469.4103408998419 -323.3073707643392 28.686 0.1144 9636 +9638 2 -469.4329097036282 -322.1870755759644 28.6868 0.1144 9637 +9639 2 -469.18605957079257 -321.0718731854007 28.6896 0.1144 9638 +9640 2 -469.5611666557977 -320.0315122217064 28.693 0.1144 9639 +9641 2 -469.7576783130536 -318.91398537703435 28.6961 0.1144 9640 +9642 2 -469.79160817432046 -317.77108650814245 28.702 0.1144 9641 +9643 2 -469.809419589344 -316.62645683287855 28.7199 0.1144 9642 +9644 2 -469.82638070157304 -315.4826739073756 28.7479 0.1144 9643 +9645 2 -470.1763571806528 -314.42203703073454 28.7179 0.1144 9644 +9646 2 -470.46426867593766 -313.31849015774594 28.7017 0.1144 9645 +9647 2 -470.27067633866056 -312.26484698430085 28.8358 0.1144 9646 +9648 2 -469.3157242404257 -311.6917869611995 29.2429 0.1144 9647 +9649 2 -460.2329946473476 -327.96787026244317 29.8206 0.1144 9626 +9650 2 -459.09375918555514 -328.075511158921 29.9508 0.1144 9649 +9651 2 -457.95452727679594 -328.18145500284334 30.0468 0.1144 9650 +9652 2 -456.8933210640354 -328.5424747585331 30.198 0.1144 9651 +9653 2 -456.08915400622436 -329.3400356609923 30.3677 0.1144 9652 +9654 2 -455.2801549459507 -330.14890018022675 30.529 0.1144 9653 +9655 2 -454.469532948635 -330.9561349524386 30.6785 0.1144 9654 +9656 2 -453.65891095131934 -331.7633697246505 30.8168 0.1144 9655 +9657 2 -452.88384968520745 -332.57386093606056 31.0204 0.1144 9656 +9658 2 -452.2727325023635 -333.5020753718635 31.2805 0.1144 9657 +9659 2 -452.0036692917017 -334.553123557566 31.6067 0.1144 9658 +9660 2 -451.30317492411996 -335.27806935622 31.7072 0.1144 9659 +9661 2 -450.4456230596396 -334.5886818021358 31.7895 0.1144 9660 +9662 2 -449.3440926737335 -334.4521664223223 31.8598 0.1144 9661 +9663 2 -448.2787973901611 -334.8073793286171 31.9225 0.1144 9662 +9664 2 -447.42317795686347 -335.4916244640499 32.0698 0.1144 9663 +9665 2 -446.418452225043 -335.89476470493116 32.2857 0.1144 9664 +9666 2 -445.288253310108 -335.9417546259767 32.5394 0.1144 9665 +9667 2 -444.39322061504146 -335.3218680599327 32.7793 0.1144 9666 +9668 2 -443.72942351257143 -334.39268146039933 32.9585 0.1144 9667 +9669 2 -443.34176824415783 -333.3207421464122 33.0772 0.1144 9668 +9670 2 -442.7703029082919 -332.33192749244336 33.1411 0.1144 9669 +9671 2 -442.3251916117191 -331.2785355456052 33.1696 0.1144 9670 +9672 2 -441.84766439867707 -330.2396421628155 33.1789 0.1144 9671 +9673 2 -441.5223573603515 -329.1428724600903 33.1794 0.1144 9672 +9674 2 -441.2585316684976 -328.0300386969802 33.1794 0.1144 9673 +9675 2 -440.88383315468457 -326.95013618575695 33.1794 0.1144 9674 +9676 2 -440.536661316273 -325.8606039216115 33.1794 0.1144 9675 +9677 2 -440.17243980332967 -324.7750664789089 33.1794 0.1144 9676 +9678 2 -440.2289937750553 -323.63377061530383 33.1794 0.1144 9677 +9679 2 -488.60370415602614 -284.75266299724336 18.1214 0.1144 7245 +9680 2 -487.677122724193 -284.1383672458482 17.8439 0.1144 9679 +9681 2 -486.9419408447773 -283.29466201048524 17.5761 0.1144 9680 +9682 2 -486.20766996580875 -282.4211187108723 17.3464 0.1144 9681 +9683 2 -485.5243903106674 -281.50963974080776 17.1174 0.1144 9682 +9684 2 -484.7689834451159 -280.6667406914088 16.8726 0.1144 9683 +9685 2 -483.9811533549284 -279.87560479979777 16.5884 0.1144 9684 +9686 2 -483.1860553292917 -279.07717047586834 16.3003 0.1144 9685 +9687 2 -482.3803729316418 -278.26810736700907 16.0592 0.1144 9686 +9688 2 -481.42386895703146 -277.6594765457762 15.8764 0.1144 9687 +9689 2 -480.3192613580098 -277.5066912317452 15.7082 0.1144 9688 +9690 2 -479.3772121267033 -276.95140664183214 15.638 0.1144 9689 +9691 2 -478.5188041458209 -276.1980947022233 15.6008 0.1144 9690 +9692 2 -477.5266986741093 -275.6394526137624 15.5578 0.1144 9691 +9693 2 -476.71044473013467 -274.84740868256546 15.4919 0.1144 9692 +9694 2 -475.7759542848237 -274.1942761250992 15.3995 0.1144 9693 +9695 2 -474.65243059745956 -274.12637491795425 15.2834 0.1144 9694 +9696 2 -473.59224430736367 -273.96647010160143 15.013 0.1144 9695 +9697 2 -472.66121365589396 -273.5859350493082 14.5876 0.1144 9696 +9698 2 -471.8628228805819 -272.7728566890644 14.2615 0.1144 9697 +9699 2 -470.99485195412376 -272.0276564738046 14.0382 0.1144 9698 +9700 2 -470.03668497686067 -271.40275867921537 13.9171 0.1144 9699 +9701 2 -468.89788603998085 -271.33567402104813 13.899 0.1144 9700 +9702 2 -467.75498717108894 -271.30174415978126 13.9836 0.1144 9701 +9703 2 -466.63100233206535 -271.08259151515836 14.1473 0.1144 9702 +9704 2 -465.4906109550129 -270.99931074220103 14.3621 0.1144 9703 +9705 2 -465.3554815168118 -270.999805647677 13.554 0.1144 9704 +9706 2 -464.210804171684 -271.0047630211058 13.3759 0.1144 9705 +9707 2 -463.1576890702745 -270.57461620525885 13.3158 0.1144 9706 +9708 2 -462.3115055714418 -269.82536037691773 13.19 0.1144 9707 +9709 2 -461.6541397215875 -268.8978135913346 13.032 0.1144 9708 +9710 2 -460.91016477208296 -268.0322402989384 12.8695 0.1144 9709 +9711 2 -460.1287901195865 -267.1974186278996 12.7262 0.1144 9710 +9712 2 -459.4264342684587 -267.32541967628026 12.249 0.1144 9711 +9713 2 -458.31606062341035 -267.5625218238498 12.0959 0.1144 9712 +9714 2 -457.2193857247554 -267.437259632187 12.042 0.1144 9713 +9715 2 -456.0993619533582 -267.2512786613727 12.0009 0.1144 9714 +9716 2 -454.9655911219319 -267.1129987213706 11.9529 0.1144 9715 +9717 2 -453.831769861881 -266.9650312916549 11.8765 0.1144 9716 +9718 2 -453.07276477977416 -266.2871637932926 11.6514 0.1144 9717 +9719 2 -452.29877579688423 -265.4709545343614 11.4376 0.1144 9718 +9720 2 -451.31870621449866 -264.9051251398593 11.1809 0.1144 9719 +9721 2 -450.3215527055783 -264.39342447575194 10.8444 0.1144 9720 +9722 2 -449.38523753316815 -264.94958476551955 10.385 0.1144 9721 +9723 2 -448.36976082684 -265.45544533811335 9.8545 0.1144 9722 +9724 2 -447.68211790118914 -266.2565028995923 9.6546 0.1144 9723 +9725 2 -447.8723154330687 -267.3780213652748 9.4105 0.1144 9724 +9726 2 -448.38719893255893 -268.33935246429985 9.07 0.1144 9725 +9727 2 -449.23470356761663 -268.4575875841067 8.5687 0.1144 9726 +9728 2 -449.71866713308367 -267.6043432596015 7.9909 0.1144 9727 +9729 2 -449.7410292687648 -266.5827599615353 7.3456 0.1144 9728 +9730 2 -450.50420495839376 -266.4169145312109 6.7499 0.1144 9729 +9731 2 -451.56606487277134 -266.148951600495 6.2449 0.1144 9730 +9732 2 -452.16572645267956 -265.2547250913923 5.8427 0.1144 9731 +9733 2 -452.96334402553094 -264.47822230486884 5.525 0.1144 9732 +9734 2 -453.8877223094905 -263.814415135471 5.2545 0.1144 9733 +9735 2 -454.9445203080832 -264.03908398104295 5.046 0.1144 9734 +9736 2 -455.7961207348626 -263.38311476445654 4.8724 0.1144 9735 +9737 2 -456.29331602494113 -262.35679802313166 4.7181 0.1144 9736 +9738 2 -456.17053613015804 -261.49104036798957 4.2043 0.1144 9737 +9739 2 -456.76794781314294 -260.5231284603073 3.8862 0.1144 9738 +9740 2 -457.34516145382815 -259.5431534233768 3.6453 0.1144 9739 +9741 2 -457.92879983323473 -258.567929463415 3.5199 0.1144 9740 +9742 2 -458.67244441698546 -257.69995528000953 3.5116 0.1144 9741 +9743 2 -459.3423426084177 -256.8633637290626 3.6922 0.1144 9742 +9744 2 -460.09021310636285 -256.2735748106322 4.0994 0.1144 9743 +9745 2 -461.1515544283756 -255.88179612541802 4.489 0.1144 9744 +9746 2 -462.23060337985726 -255.50949999287528 4.8036 0.1144 9745 +9747 2 -463.31612039261825 -255.1550365321257 5.0452 0.1144 9746 +9748 2 -464.328442217284 -254.63622927185912 5.2218 0.1144 9747 +9749 2 -465.18494265234574 -253.90270053026885 5.3703 0.1144 9748 +9750 2 -466.12767525531035 -253.38855591120964 5.5181 0.1144 9749 +9751 2 -467.17685940080634 -252.99434760480307 5.6979 0.1144 9750 +9752 2 -468.1729787988878 -252.44637355909856 5.8763 0.1144 9751 +9753 2 -469.02477197772527 -251.69833924137902 6.0162 0.1144 9752 +9754 2 -469.7651001249117 -250.82703470536228 6.116 0.1144 9753 +9755 2 -470.36492099914744 -249.85672367335698 6.1803 0.1144 9754 +9756 2 -471.2773759015877 -249.88939324655232 6.2185 0.1144 9755 +9757 2 -472.38742864089187 -250.14330645212308 6.2423 0.1144 9756 +9758 2 -473.43984454232435 -249.79287491756608 6.2658 0.1144 9757 +9759 2 -474.5342118637793 -249.466714319499 6.299 0.1144 9758 +9760 2 -475.6164998793645 -249.100930365066 6.3449 0.1144 9759 +9761 2 -476.5441139704804 -248.44519100528709 6.4036 0.1144 9760 +9762 2 -477.21340563197305 -247.5267857505893 6.4755 0.1144 9761 +9763 2 -477.8914936205018 -246.6286929214157 6.6236 0.1144 9762 +9764 2 -478.2456199620318 -245.57860064726327 6.8465 0.1144 9763 +9765 2 -478.42758893840886 -244.44972962201894 7.0258 0.1144 9764 +9766 2 -478.7841955318562 -243.36329717243456 7.1595 0.1144 9765 +9767 2 -479.44051021090695 -242.42874267853784 7.3108 0.1144 9766 +9768 2 -456.62544965227005 -262.11806651369614 4.8183 0.1144 9737 +9769 2 -457.3431431238836 -261.28397919764154 4.5858 0.1144 9768 +9770 2 -457.78452625097293 -260.2340696086193 4.5017 0.1144 9769 +9771 2 -458.33909890429106 -259.2605525660403 4.4202 0.1144 9770 +9772 2 -459.14805127202976 -259.25079107384295 4.3383 0.1144 9771 +9773 2 -460.0477866739145 -259.9549040879219 4.2543 0.1144 9772 +9774 2 -461.1135670356064 -260.144802009532 4.1076 0.1144 9773 +9775 2 -462.2516207802611 -260.16252894602826 3.9575 0.1144 9774 +9776 2 -463.38148097268567 -260.2773247019355 3.7838 0.1144 9775 +9777 2 -464.2821213593094 -260.9206990051076 3.5976 0.1144 9776 +9778 2 -464.49496689063676 -261.99863630374523 3.4411 0.1144 9777 +9779 2 -463.7257633067451 -262.74698495679945 3.3189 0.1144 9778 +9780 2 -462.7884720889293 -263.3978250085829 3.1989 0.1144 9779 +9781 2 -461.91247597942163 -264.12155483809613 3.0623 0.1144 9780 +9782 2 -461.27876498088796 -265.06747038947344 2.9611 0.1144 9781 +9783 2 -461.32162822818555 -266.2098229278919 2.8914 0.1144 9782 +9784 2 -461.256092391547 -267.3518778057836 2.8118 0.1144 9783 +9785 2 -450.3231989443525 -263.60712345839414 10.3869 0.1144 9721 +9786 2 -449.50690018326077 -262.90403366139816 9.9329 0.1144 9785 +9787 2 -448.4235684315804 -262.5862538070942 9.6208 0.1144 9786 +9788 2 -447.60483393960243 -261.83069147237563 9.2976 0.1144 9787 +9789 2 -446.78866773110224 -261.0305159790602 9.0578 0.1144 9788 +9790 2 -445.65283062774085 -261.06858453074517 8.8875 0.1144 9789 +9791 2 -444.96051392755544 -260.25176844578823 10.1337 0.1144 9790 +9792 2 -444.3815911611297 -259.34616482912475 10.619 0.1144 9791 +9793 2 -443.64068591447347 -258.56799655331463 11.1208 0.1144 9792 +9794 2 -442.6790595850407 -258.0418038390534 11.6751 0.1144 9793 +9795 2 -442.15999097472434 -257.18808586584197 12.2382 0.1144 9794 +9796 2 -441.5801536548182 -256.31401736598394 12.7663 0.1144 9795 +9797 2 -440.80207856197757 -255.49058704719482 13.1769 0.1144 9796 +9798 2 -440.2184157818838 -254.51857603432867 13.5024 0.1144 9797 +9799 2 -439.63801900972953 -253.5402078843601 13.7762 0.1144 9798 +9800 2 -438.8899947589378 -252.68360638994892 13.9724 0.1144 9799 +9801 2 -438.14673520507586 -251.81407478868712 14.1053 0.1144 9800 +9802 2 -437.7096407913109 -250.7817714546542 14.2425 0.1144 9801 +9803 2 -437.5202903052786 -249.66096187071975 14.3751 0.1144 9802 +9804 2 -437.0160390497657 -248.65362027954336 14.4732 0.1144 9803 +9805 2 -436.3951585515234 -247.69298650077943 14.538 0.1144 9804 +9806 2 -435.99617597944575 -246.6275288680327 14.5796 0.1144 9805 +9807 2 -435.62629259118705 -245.54438373967255 14.6014 0.1144 9806 +9808 2 -435.1317761991656 -244.51436435246566 14.6052 0.1144 9807 +9809 2 -435.18347418545375 -243.3958272103851 14.6002 0.1144 9808 +9810 2 -434.87511576231054 -242.30955819541845 14.5919 0.1144 9809 +9811 2 -434.1716514827302 -241.41338121660536 14.5802 0.1144 9810 +9812 2 -433.35137547739055 -240.61729834713515 14.5632 0.1144 9811 +9813 2 -432.6122221673347 -239.7453711745837 14.5397 0.1144 9812 +9814 2 -432.17686892295575 -238.6919996576872 14.5082 0.1144 9813 +9815 2 -432.04248760528515 -237.5583650774714 14.4705 0.1144 9814 +9816 2 -432.32141723565724 -236.4555772187694 14.3991 0.1144 9815 +9817 2 -432.4087805655319 -235.32410395413024 14.2845 0.1144 9816 +9818 2 -432.35128009190043 -234.18179148132253 14.1933 0.1144 9817 +9819 2 -431.9797669566192 -233.10026929000443 14.0591 0.1144 9818 +9820 2 -444.68285450659744 -260.7478600159174 8.7637 0.1144 9790 +9821 2 -443.63767891553516 -260.3419836383739 8.5772 0.1144 9820 +9822 2 -442.5026984267622 -260.40996466590843 8.41 0.1144 9821 +9823 2 -441.39245008265345 -260.1819312157221 8.2211 0.1144 9822 +9824 2 -440.3953812543607 -259.62978413237664 8.0277 0.1144 9823 +9825 2 -439.4251544047966 -259.023528748578 7.8633 0.1144 9824 +9826 2 -438.5425092412408 -258.29604622971476 7.7206 0.1144 9825 +9827 2 -438.74639438618647 -257.50691593143034 7.873 0.1144 9826 +9828 2 -439.4309809328639 -256.6120894062824 7.9861 0.1144 9827 +9829 2 -439.9676939705528 -255.65790974019487 8.0323 0.1144 9828 +9830 2 -440.4680945709182 -254.6542271762565 8.0933 0.1144 9829 +9831 2 -441.3471881213828 -253.9708797173958 8.1693 0.1144 9830 +9832 2 -442.407044816038 -253.95047121930168 8.3026 0.1144 9831 +9833 2 -443.4985464330596 -254.18249593789756 8.5188 0.1144 9832 +9834 2 -444.6210335794658 -254.34019773291837 8.741 0.1144 9833 +9835 2 -445.7576163732389 -254.3174749932291 8.9296 0.1144 9834 +9836 2 -446.89602877215907 -254.19767011025397 9.0895 0.1144 9835 +9837 2 -448.0264176803912 -254.0261588099093 9.2247 0.1144 9836 +9838 2 -449.16167519764906 -253.8934072392614 9.3396 0.1144 9837 +9839 2 -450.1428453886221 -253.52826010953706 9.5641 0.1144 9838 +9840 2 -451.18476159866896 -253.126753370812 9.7914 0.1144 9839 +9841 2 -452.3079871838347 -252.93175107639203 9.9802 0.1144 9840 +9842 2 -453.41444062114 -252.6419611506263 10.1347 0.1144 9841 +9843 2 -454.5080418222417 -252.31021279275734 10.2591 0.1144 9842 +9844 2 -455.6428597597401 -252.31987191963458 10.3669 0.1144 9843 +9845 2 -456.7705648027966 -252.31572754215023 10.5173 0.1144 9844 +9846 2 -457.9088922250032 -252.23651049945954 10.6622 0.1144 9845 +9847 2 -459.0184836670625 -251.967728261005 10.7965 0.1144 9846 +9848 2 -460.0267297447915 -251.43675020426045 10.9208 0.1144 9847 +9849 2 -460.83972993830207 -250.67569458516832 11.1128 0.1144 9848 +9850 2 -461.3626532936907 -249.6882519567645 11.3455 0.1144 9849 +9851 2 -461.8510250168109 -248.65463352617388 11.5224 0.1144 9850 +9852 2 -462.8036078628643 -248.02892783544945 11.6525 0.1144 9851 +9853 2 -463.8078591191503 -247.4809001041732 11.741 0.1144 9852 +9854 2 -464.77582132891575 -246.8721972123893 11.7916 0.1144 9853 +9855 2 -465.5727542050943 -246.05121587833483 11.8087 0.1144 9854 +9856 2 -466.0780104948111 -245.02491601391822 11.8096 0.1144 9855 +9857 2 -466.43701946952865 -243.93933712407542 11.8096 0.1144 9856 +9858 2 -437.721714972178 -258.5580791815999 7.5946 0.1144 9826 +9859 2 -436.6370182635285 -258.89225035068085 7.4693 0.1144 9858 +9860 2 -435.6457811134778 -258.6281207000176 7.2687 0.1144 9859 +9861 2 -434.65171398221383 -258.2296345414869 6.9609 0.1144 9860 +9862 2 -433.66749709403854 -257.71958731129104 6.6658 0.1144 9861 +9863 2 -432.83026871838285 -256.94857129524655 6.4398 0.1144 9862 +9864 2 -431.8305235351819 -256.4926560523927 6.2795 0.1144 9863 +9865 2 -430.7276409289246 -256.25898115683265 6.125 0.1144 9864 +9866 2 -429.626479560298 -255.97998422092775 6.0206 0.1144 9865 +9867 2 -428.84899767352204 -255.2447315529725 6.0544 0.1144 9866 +9868 2 -428.3909260693154 -254.20099985592603 6.106 0.1144 9867 +9869 2 -427.6493635680089 -253.33147180769757 6.1587 0.1144 9868 +9870 2 -426.9442123028008 -252.4304829602774 6.2116 0.1144 9869 +9871 2 -426.1969138106655 -251.56497342038065 6.2626 0.1144 9870 +9872 2 -425.50855530631577 -251.55950172141874 6.186 0.1144 9871 +9873 2 -424.4014512787553 -251.3832351841542 5.7239 0.1144 9872 +9874 2 -423.31504882785384 -251.04607413261448 5.5441 0.1144 9873 +9875 2 -422.21716077533375 -250.7234554658674 5.364 0.1144 9874 +9876 2 -421.10957916087705 -250.77530107626436 5.1088 0.1144 9875 +9877 2 -420.0222049178901 -250.46324033588095 4.8632 0.1144 9876 +9878 2 -418.9321205096635 -250.6688479304422 4.5577 0.1144 9877 +9879 2 -417.9091205009889 -250.1748415719288 4.2902 0.1144 9878 +9880 2 -416.9074368469379 -249.90178048497725 3.8884 0.1144 9879 +9881 2 -415.8323790747953 -249.51606484288362 3.5624 0.1144 9880 +9882 2 -414.7120130278543 -249.4935666015774 3.2983 0.1144 9881 +9883 2 -413.9491426920759 -250.2903654349032 3.0191 0.1144 9882 +9884 2 -412.9523827706669 -250.36747470200362 2.7537 0.1144 9883 +9885 2 -412.00149329759427 -249.77907893383428 2.546 0.1144 9884 +9886 2 -410.976043735972 -249.27297589435636 2.4145 0.1144 9885 +9887 2 -410.0561032797067 -248.59392292372266 2.3246 0.1144 9886 +9888 2 -408.9179927946334 -248.53574927190218 2.2725 0.1144 9887 +9889 2 -407.8036170199752 -248.79306633867972 2.2495 0.1144 9888 +9890 2 -426.4506651462043 -251.30903649511933 6.3396 0.1144 9871 +9891 2 -426.799844509875 -250.29139013611905 6.4212 0.1144 9890 +9892 2 -426.9073050248004 -249.15260502130064 6.4665 0.1144 9891 +9893 2 -427.2235393145228 -248.0644616970994 6.4769 0.1144 9892 +9894 2 -427.33746789072734 -246.94350925407426 6.4548 0.1144 9893 +9895 2 -427.73925440318646 -245.92668014433855 6.3366 0.1144 9894 +9896 2 -427.4356733005613 -244.8889994737424 6.1789 0.1144 9895 +9897 2 -426.72474873767453 -244.00984818648615 5.9884 0.1144 9896 +9898 2 -426.42298667508226 -242.913905597853 5.8395 0.1144 9897 +9899 2 -426.3234067782428 -241.7746870129688 5.7334 0.1144 9898 +9900 2 -426.645168332215 -240.6808983942744 5.6666 0.1144 9899 +9901 2 -426.44698391621046 -239.5577368576943 5.635 0.1144 9900 +9902 2 -425.81555259767117 -238.60422278335255 5.6231 0.1144 9901 +9903 2 -425.0431766869958 -237.76058109838885 5.6221 0.1144 9902 +9904 2 -424.21248091939157 -236.9765679660471 5.6215 0.1144 9903 +9905 2 -423.2405502072915 -236.37356171327968 5.6207 0.1144 9904 +9906 2 -422.31897674705635 -235.69768731119717 5.6195 0.1144 9905 +9907 2 -421.5433413423359 -234.85729150031753 5.6179 0.1144 9906 +9908 2 -420.87791804587664 -233.9280307852707 5.6157 0.1144 9907 +9909 2 -420.3380286866993 -232.92061458039456 5.6126 0.1144 9908 +9910 2 -419.9747247820833 -231.83585687800624 5.6086 0.1144 9909 +9911 2 -419.5311655639863 -230.78416524067083 5.6022 0.1144 9910 +9912 2 -418.93216022884394 -229.8113442867071 5.5925 0.1144 9911 +9913 2 -418.28210643126926 -228.87002419754577 5.581 0.1144 9912 +9914 2 -417.80696472258916 -227.84004537413597 5.5696 0.1144 9913 +9915 2 -417.03695042728657 -227.0505024208841 5.5524 0.1144 9914 +9916 2 -416.07475082354426 -226.46038591327044 5.4853 0.1144 9915 +9917 2 -415.2520215101233 -225.68777390402008 5.4257 0.1144 9916 +9918 2 -414.9121070420467 -224.64436029744203 5.458 0.1144 9917 +9919 2 -414.3745830533759 -223.65547528309335 5.5143 0.1144 9918 +9920 2 -413.35036046768016 -223.30635286194163 5.5714 0.1144 9919 +9921 2 -412.53500414376265 -222.89614930875396 5.6304 0.1144 9920 +9922 2 -413.4562310990932 -222.21769839912793 5.6909 0.1144 9921 +9923 2 -414.037646670998 -221.52736373192172 5.7454 0.1144 9922 +9924 2 -413.48481693594204 -220.55386163431848 5.7953 0.1144 9923 +9925 2 -413.25819859922274 -219.43460037372617 5.8679 0.1144 9924 +9926 2 -413.3364243228905 -218.37827359372076 5.992 0.1144 9925 +9927 2 -414.1492624633129 -217.66084621936525 6.1046 0.1144 9926 +9928 2 -414.8660139394236 -216.90517524500328 6.2384 0.1144 9927 +9929 2 -415.0874943516169 -215.8176820693858 6.4396 0.1144 9928 +9930 2 -415.3074768690925 -214.702608532795 6.6292 0.1144 9929 +9931 2 -415.5686111345212 -213.58846968354007 6.7841 0.1144 9930 +9932 2 -415.8265635744514 -212.47425346182456 6.9083 0.1144 9931 +9933 2 -415.4896451918961 -211.48585915614674 7.124 0.1144 9932 +9934 2 -415.63998756085965 -210.39977268072482 7.326 0.1144 9933 +9935 2 -416.0773685583392 -209.37007801091056 7.3902 0.1144 9934 +9936 2 -416.7756915999314 -208.46637068019928 7.4316 0.1144 9935 +9937 2 -417.1315187491505 -207.38071441789586 7.4615 0.1144 9936 +9938 2 -416.9453637085776 -206.2534768382928 7.4829 0.1144 9937 +9939 2 -416.3058610273861 -205.3048956236629 6.5166 0.1144 9938 +9940 2 -416.63004113925 -204.27178196337573 6.2652 0.1144 9939 +9941 2 -416.6274791350106 -203.1650813506831 5.9722 0.1144 9940 +9942 2 -416.4113879316994 -202.05001406937154 5.6917 0.1144 9941 +9943 2 -416.21878801854973 -200.92764204394737 5.4437 0.1144 9942 +9944 2 -415.5768660791796 -199.98626826921424 5.2732 0.1144 9943 +9945 2 -415.45705438622383 -198.85110855435863 5.1769 0.1144 9944 +9946 2 -415.0825524170733 -198.08261696357678 4.957 0.1144 9945 +9947 2 -414.73438134455375 -197.06506623547494 3.9955 0.1144 9946 +9948 2 -414.34074561216994 -196.1476882816355 3.5291 0.1144 9947 +9949 2 -413.42790698704584 -195.55527095028754 3.0652 0.1144 9948 +9950 2 -412.5095080441422 -194.91673851440547 2.618 0.1144 9949 +9951 2 -411.66208133624644 -194.35599516424878 2.0891 0.1144 9950 +9952 2 -410.5592122934353 -194.52112939573573 1.6863 0.1144 9951 +9953 2 -409.44231285031617 -194.767975975538 1.4189 0.1144 9952 +9954 2 -408.5598819351592 -195.4917630436564 1.2585 0.1144 9953 +9955 2 -407.86063802829256 -196.39624626556255 1.1668 0.1144 9954 +9956 2 -407.10654338750817 -197.25698606523514 1.1248 0.1144 9955 +9957 2 -415.8852812292298 -199.08655294467013 5.1259 0.1144 9945 +9958 2 -416.95870511405957 -198.73284198431276 5.1106 0.1144 9957 +9959 2 -417.6724848918245 -197.84295562704355 5.1125 0.1144 9958 +9960 2 -418.5556751173541 -197.12800900279177 5.1277 0.1144 9959 +9961 2 -419.11582546354646 -196.15853415543333 5.2104 0.1144 9960 +9962 2 -419.39476140571253 -195.08650552234192 5.2473 0.1144 9961 +9963 2 -419.11794490935534 -193.997898376791 5.195 0.1144 9962 +9964 2 -418.8192872998009 -192.9052149861168 5.1425 0.1144 9963 +9965 2 -418.3765141338123 -191.88336496606473 5.0891 0.1144 9964 +9966 2 -418.4056356795055 -190.74045603024507 5.0331 0.1144 9965 +9967 2 -418.4865140711926 -189.599211093451 4.9741 0.1144 9966 +9968 2 -418.4564928991849 -188.469896235127 4.9228 0.1144 9967 +9969 2 -418.02996647871146 -187.42227077598713 4.8743 0.1144 9968 +9970 2 -417.60650700232543 -186.42959405526736 4.7932 0.1144 9969 +9971 2 -417.6040561243633 -185.30358961779953 4.6563 0.1144 9970 +9972 2 -417.157162596421 -184.32465244684155 4.5172 0.1144 9971 +9973 2 -416.3142085929504 -183.55270520250875 4.3884 0.1144 9972 +9974 2 -415.6917114694602 -182.6212009023328 4.2675 0.1144 9973 +9975 2 -415.1103190162313 -181.71311723585234 4.0975 0.1144 9974 +9976 2 -414.2324411062657 -181.03903137693348 3.8722 0.1144 9975 +9977 2 -413.5984410060621 -180.16414237086366 3.6877 0.1144 9976 +9978 2 -413.21164255433735 -179.08824504409716 3.5564 0.1144 9977 +9979 2 -412.5460367748482 -178.21237062598084 3.4269 0.1144 9978 +9980 2 -411.6934084034385 -177.46798035181857 3.349 0.1144 9979 +9981 2 -410.71657818124265 -176.9085217143799 3.3751 0.1144 9980 +9982 2 -409.75601158147015 -176.31522663821505 3.4794 0.1144 9981 +9983 2 -408.98763078832377 -175.48849320673685 3.6148 0.1144 9982 +9984 2 -408.1892364599785 -174.6771118990485 3.738 0.1144 9983 +9985 2 -407.3082916059253 -173.94807730170945 3.8395 0.1144 9984 +9986 2 -406.36068936500635 -173.30941301352243 3.9185 0.1144 9985 +9987 2 -405.58907581955066 -172.50692662954498 3.928 0.1144 9986 +9988 2 -405.0313232917107 -171.5205448537157 3.9345 0.1144 9987 +9989 2 -405.05786678308436 -170.42691597102024 3.9756 0.1144 9988 +9990 2 -405.9037407877763 -169.80416885686694 4.1316 0.1144 9989 +9991 2 -406.86604787569206 -169.59992009053718 4.4836 0.1144 9990 +9992 2 -407.93772427934186 -169.23651808743273 4.8065 0.1144 9991 +9993 2 -409.0782235257243 -169.30205066712406 5.0498 0.1144 9992 +9994 2 -410.20631466506893 -169.11349324528103 5.2043 0.1144 9993 +9995 2 -411.3215006203959 -169.24600669758493 5.0613 0.1144 9994 +9996 2 -417.05202097935614 -205.9374105848109 7.5128 0.1144 9938 +9997 2 -417.5265515951787 -204.92886552154056 7.6 0.1144 9996 +9998 2 -418.3992443898969 -204.22931188096186 7.7051 0.1144 9997 +9999 2 -419.35980986675514 -203.67482871199454 7.7612 0.1144 9998 +10000 2 -419.8268490021153 -202.76575810635262 7.8494 0.1144 9999 +10001 2 -419.9770867586959 -201.69586419268754 7.9886 0.1144 10000 +10002 2 -420.59304601093027 -200.75153782453566 8.2159 0.1144 10001 +10003 2 -421.1094224380197 -199.85148007886238 8.597 0.1144 10002 +10004 2 -421.74615556352364 -199.04946740010607 9.0472 0.1144 10003 +10005 2 -422.4041007599103 -199.6665241305221 9.4406 0.1144 10004 +10006 2 -423.1049111029716 -199.1283970144442 9.7745 0.1144 10005 +10007 2 -423.15509144584325 -198.76851322321528 9.6788 0.1144 10006 +10008 2 -423.2843557671158 -197.65162340535235 9.8704 0.1144 10007 +10009 2 -423.22683466144247 -196.5529394733673 9.9888 0.1144 10008 +10010 2 -422.9354855511342 -195.44817983167025 10.0463 0.1144 10009 +10011 2 -422.8617920175595 -194.33977465615484 10.0073 0.1144 10010 +10012 2 -423.0483558314247 -193.31287827221144 9.7714 0.1144 10011 +10013 2 -423.058740514858 -192.20302277785643 9.5167 0.1144 10012 +10014 2 -422.81117824332716 -191.09022306464908 9.3054 0.1144 10013 +10015 2 -423.11351448323296 -190.02057688107266 9.1512 0.1144 10014 +10016 2 -423.3868291138809 -188.9315658789823 8.9969 0.1144 10015 +10017 2 -423.457089083652 -187.79595557758148 8.9174 0.1144 10016 +10018 2 -423.6405831946689 -186.6816541770519 8.9668 0.1144 10017 +10019 2 -424.0020616540892 -185.63242582565496 9.1283 0.1144 10018 +10020 2 -424.7052298199187 -184.74492141971436 9.2772 0.1144 10019 +10021 2 -424.6695230857068 -183.62931255943585 9.3982 0.1144 10020 +10022 2 -423.8169015242777 -182.88166960120898 9.56 0.1144 10021 +10023 2 -423.1130898367674 -199.13972787114162 10.0628 0.1144 10006 +10024 2 -423.7837922257162 -199.8441391895192 10.4705 0.1144 10023 +10025 2 -424.7321442082664 -200.4624403274714 10.8415 0.1144 10024 +10026 2 -424.58845901053627 -200.6992329243853 11.2132 0.1144 10025 +10027 2 -423.603226194401 -201.07971579917765 11.548 0.1144 10026 +10028 2 -422.90179634521087 -201.87996667650614 11.959 0.1144 10027 +10029 2 -422.00343697710764 -202.47750155895338 12.3631 0.1144 10028 +10030 2 -421.1308251078833 -203.17217632147822 12.7665 0.1144 10029 +10031 2 -420.1066778171302 -203.56389145629316 13.2 0.1144 10030 +10032 2 -418.9755502305674 -203.68293377194846 13.5827 0.1144 10031 +10033 2 -417.8331772622073 -203.73555507143996 13.9114 0.1144 10032 +10034 2 -416.9638005754115 -203.2565074887763 14.3644 0.1144 10033 +10035 2 -416.0461881828027 -202.6138047605024 14.8152 0.1144 10034 +10036 2 -414.91158392549033 -202.46831057062303 15.1919 0.1144 10035 +10037 2 -414.4470952758859 -202.15918028354545 15.5167 0.1144 10036 +10038 2 -413.427280645743 -201.66355424493727 15.8545 0.1144 10037 +10039 2 -412.3237074726902 -201.72594416173675 16.2061 0.1144 10038 +10040 2 -412.0309294833685 -202.48575548632246 16.7164 0.1144 10039 +10041 2 -411.55968885846045 -203.4764883077412 17.2064 0.1144 10040 +10042 2 -410.4770621768797 -203.59874344395072 17.6329 0.1144 10041 +10043 2 -410.2913886048782 -203.4236282399843 18.3686 0.1144 10042 +10044 2 -410.0333704061911 -202.64413750293465 20.6836 0.1144 10043 +10045 2 -409.83587799502646 -201.52818992014576 21.4727 0.1144 10044 +10046 2 -409.8891619075928 -200.4289601558737 21.8314 0.1144 10045 +10047 2 -409.9998677984157 -199.32744644477563 22.273 0.1144 10046 +10048 2 -410.14533830140624 -198.20415587116625 22.7073 0.1144 10047 +10049 2 -410.11771249858793 -197.1128177452774 23.1782 0.1144 10048 +10050 2 -410.8836762241036 -196.39211024483478 24.1816 0.1144 10049 +10051 2 -409.97607849389226 -204.10412554630528 18.7739 0.1144 10043 +10052 2 -409.29880044646114 -204.9868758204303 18.9941 0.1144 10051 +10053 2 -408.4598929615578 -205.76088799202265 19.1018 0.1144 10052 +10054 2 -407.5089262425659 -206.39147611383427 19.1421 0.1144 10053 +10055 2 -406.4258557279056 -206.72572139842856 19.1313 0.1144 10054 +10056 2 -405.3515813381812 -207.11414959717587 19.0764 0.1144 10055 +10057 2 -404.3159270194949 -207.59818898832762 19.0472 0.1144 10056 +10058 2 -403.20371651764736 -207.5643233777467 19.0182 0.1144 10057 +10059 2 -402.0862912305113 -207.31930430161427 18.9816 0.1144 10058 +10060 2 -400.9941595987616 -206.98290907434165 18.9377 0.1144 10059 +10061 2 -399.87789328173244 -206.96112652476415 18.8187 0.1144 10060 +10062 2 -398.7427504437851 -207.0728772180815 18.7037 0.1144 10061 +10063 2 -397.59972682865487 -207.064756549719 18.6058 0.1144 10062 +10064 2 -396.49531928985806 -206.7826415408152 18.5234 0.1144 10063 +10065 2 -395.37295738787657 -206.56511864321487 18.4548 0.1144 10064 +10066 2 -394.24419872485345 -206.70099509684226 18.3989 0.1144 10065 +10067 2 -393.12638378839597 -206.64208611762405 18.2816 0.1144 10066 +10068 2 -392.0032423856714 -206.83065390248095 18.1814 0.1144 10067 +10069 2 -390.8677102510037 -206.72305877648992 18.1044 0.1144 10068 +10070 2 -389.9947558341088 -205.993970197493 18.0493 0.1144 10069 +10071 2 -389.2020470679677 -205.16888289175918 18.0142 0.1144 10070 +10072 2 -388.7237368576642 -204.13246274880586 17.997 0.1144 10071 +10073 2 -388.528744630172 -203.00442884806634 17.9956 0.1144 10072 +10074 2 -388.61209626169557 -201.8639669085338 17.9956 0.1144 10073 +10075 2 -415.0159538094392 -201.28589040108744 15.5278 0.1144 10036 +10076 2 -415.16636072517485 -200.16897413757488 15.6726 0.1144 10075 +10077 2 -414.9907263041157 -199.04904180027086 15.8092 0.1144 10076 +10078 2 -414.24495876022786 -198.26287302037466 15.961 0.1144 10077 +10079 2 -413.31358964486293 -197.60493866122906 16.1313 0.1144 10078 +10080 2 -412.4034309276803 -196.91459243683403 16.2965 0.1144 10079 +10081 2 -411.516675967285 -196.19120254181593 16.4369 0.1144 10080 +10082 2 -410.5828538399249 -195.55659762184393 16.6069 0.1144 10081 +10083 2 -409.60760569488775 -195.01828483581545 16.8306 0.1144 10082 +10084 2 -408.82142252471726 -194.2173235864778 17.0109 0.1144 10083 +10085 2 -408.7258775149314 -193.10979190245922 17.1278 0.1144 10084 +10086 2 -408.7314543809774 -191.96591443150132 17.1921 0.1144 10085 +10087 2 -408.71523019943686 -190.8325979417539 17.1611 0.1144 10086 +10088 2 -408.72737618611166 -189.69205763338786 17.0812 0.1144 10087 +10089 2 -408.9885071945931 -188.57947441564215 17.0016 0.1144 10088 +10090 2 -409.3232794848237 -187.48571303686987 16.9402 0.1144 10089 +10091 2 -409.6241311538869 -186.38212254523728 16.8993 0.1144 10090 +10092 2 -409.5488789339561 -185.241399255655 16.8769 0.1144 10091 +10093 2 -409.73403003191765 -184.11246418182498 16.8708 0.1144 10092 +10094 2 -460.1221208186532 -266.56645190102324 12.5957 0.1144 9711 +10095 2 -460.32259048868843 -265.44978187304014 12.4931 0.1144 10094 +10096 2 -461.12412856536884 -264.72582544366657 12.4296 0.1144 10095 +10097 2 -462.1098523862611 -264.1445955417123 12.3914 0.1144 10096 +10098 2 -462.716090394965 -263.2164416014617 12.3686 0.1144 10097 +10099 2 -463.54360327067144 -262.44728462103444 12.3541 0.1144 10098 +10100 2 -464.37927169147133 -261.66676027133235 12.3442 0.1144 10099 +10101 2 -464.8255100097257 -260.628245291507 12.3331 0.1144 10100 +10102 2 -465.5319308596198 -259.74074769554704 12.3169 0.1144 10101 +10103 2 -466.2020897008151 -258.81343469144974 12.293 0.1144 10102 +10104 2 -466.85113644441674 -257.8715817652346 12.2657 0.1144 10103 +10105 2 -467.5979563397715 -257.00679621730814 12.2353 0.1144 10104 +10106 2 -468.10000356406766 -255.99342971668935 12.1546 0.1144 10105 +10107 2 -468.52450212456034 -254.9362015614931 12.0526 0.1144 10106 +10108 2 -469.07582890379445 -253.959425024869 11.8971 0.1144 10107 +10109 2 -468.8340040611366 -253.14588556948067 12.0055 0.1144 10108 +10110 2 -468.2559484744136 -252.23137420341774 12.0098 0.1144 10109 +10111 2 -468.1377123447222 -251.12047160299073 11.9458 0.1144 10110 +10112 2 -467.8576837280975 -250.01248296411785 11.895 0.1144 10111 +10113 2 -467.7169417202913 -248.8772794285179 11.849 0.1144 10112 +10114 2 -467.72987070422755 -247.73426588031546 11.799 0.1144 10113 +10115 2 -467.50240887469437 -246.6125986854196 11.7312 0.1144 10114 +10116 2 -467.7596901248831 -246.25802753839648 11.8096 0.1144 10115 +10117 2 -468.7169869806264 -246.04888923491288 10.5409 0.1144 10116 +10118 2 -469.67365626527214 -246.61233617989996 10.0378 0.1144 10117 +10119 2 -470.65309189473953 -246.29887503760338 9.4004 0.1144 10118 +10120 2 -471.7384735396331 -246.41435549018354 8.8277 0.1144 10119 +10121 2 -472.1003596672414 -245.47437622943102 8.1702 0.1144 10120 +10122 2 -471.7180918023188 -244.53114191100983 7.5844 0.1144 10121 +10123 2 -470.807747049073 -243.89587903610067 7.0314 0.1144 10122 +10124 2 -469.97936217213083 -243.1564185668033 6.5148 0.1144 10123 +10125 2 -469.5341019442444 -242.17416140624783 6.0288 0.1144 10124 +10126 2 -468.84006776156195 -241.36709982045133 5.571 0.1144 10125 +10127 2 -467.8674047769111 -240.77611287618782 5.2074 0.1144 10126 +10128 2 -466.88007762209025 -240.1980353127471 4.9195 0.1144 10127 +10129 2 -465.813870360742 -239.80675204470703 4.6889 0.1144 10128 +10130 2 -464.85794902708216 -239.32511909955687 4.3808 0.1144 10129 +10131 2 -464.0765469325632 -238.5371786534054 4.0808 0.1144 10130 +10132 2 -463.36900640785956 -237.6628427877896 3.7702 0.1144 10131 +10133 2 -462.3610550488403 -237.24247791312564 3.4685 0.1144 10132 +10134 2 -461.2353757139218 -237.08964848226432 3.1893 0.1144 10133 +10135 2 -460.2285314583405 -236.5795538782907 2.9772 0.1144 10134 +10136 2 -459.15183031921424 -236.20196654136836 2.8359 0.1144 10135 +10137 2 -458.1750507277432 -235.61832490501453 2.7357 0.1144 10136 +10138 2 -457.29077256021753 -234.89402095470257 2.6653 0.1144 10137 +10139 2 -456.86015627465974 -233.87474197688917 2.5375 0.1144 10138 +10140 2 -456.23275027443265 -232.92371120931165 2.4358 0.1144 10139 +10141 2 -455.4312041192719 -232.13169807107025 2.4239 0.1144 10140 +10142 2 -455.1049925943938 -231.06165516957668 2.2495 0.1144 10141 +10143 2 -467.4373317417864 -245.64421899915376 11.6833 0.1144 10115 +10144 2 -467.349885334575 -244.51874371916492 11.6391 0.1144 10143 +10145 2 -467.6628097016277 -243.42415877933402 11.5693 0.1144 10144 +10146 2 -467.898097467302 -242.32771423567308 11.4306 0.1144 10145 +10147 2 -467.98300473033476 -241.1872555530877 11.3096 0.1144 10146 +10148 2 -467.9707753702371 -240.07098873787209 11.2054 0.1144 10147 +10149 2 -467.63086821032744 -238.99031053755428 11.0972 0.1144 10148 +10150 2 -467.430966607912 -237.87676207908842 10.9601 0.1144 10149 +10151 2 -466.98415420756396 -236.85907554144765 10.8515 0.1144 10150 +10152 2 -466.1403935199431 -236.10091522065426 10.7779 0.1144 10151 +10153 2 -465.191235647515 -235.46224767552005 10.7253 0.1144 10152 +10154 2 -464.2234179892017 -234.85359316739834 10.6914 0.1144 10153 +10155 2 -463.5115446208315 -234.05611090589946 10.674 0.1144 10154 +10156 2 -462.9716956233511 -233.0631905063108 10.6672 0.1144 10155 +10157 2 -462.0083201160786 -232.66321296695688 10.6602 0.1144 10156 +10158 2 -460.8728353551886 -232.53299047355995 10.6504 0.1144 10157 +10159 2 -459.754546145297 -232.29532351531776 10.6366 0.1144 10158 +10160 2 -458.62563455625553 -232.13272922228208 10.6178 0.1144 10159 +10161 2 -457.5081046567367 -231.90390270790652 10.5912 0.1144 10160 +10162 2 -456.48424753528707 -231.41399578321872 10.5525 0.1144 10161 +10163 2 -455.53104036157174 -230.78430003606965 10.4989 0.1144 10162 +10164 2 -454.6735499890166 -230.03176783677503 10.4286 0.1144 10163 +10165 2 -454.0445006218058 -229.08886537436877 10.3413 0.1144 10164 +10166 2 -453.56862634448885 -228.0710472805092 10.1752 0.1144 10165 +10167 2 -453.46733201999916 -226.97389805190525 9.9269 0.1144 10166 +10168 2 -453.1881264662468 -225.8780733995298 9.6907 0.1144 10167 +10169 2 -452.6701054601889 -224.8617227035184 9.4804 0.1144 10168 +10170 2 -451.8644731950774 -224.06248850541917 9.2882 0.1144 10169 +10171 2 -451.0693955993824 -223.25429612929588 9.063 0.1144 10170 +10172 2 -450.1486552689473 -222.585777398137 8.8291 0.1144 10171 +10173 2 -449.1011652341897 -222.13704541010463 8.597 0.1144 10172 +10174 2 -448.0425038766333 -222.0255807070955 8.2386 0.1144 10173 +10175 2 -446.93132636271025 -221.90361156119417 7.857 0.1144 10174 +10176 2 -446.61703928575093 -221.69018465741593 6.919 0.1144 10175 +10177 2 -445.72681464764287 -221.50949314210484 6.3941 0.1144 10176 +10178 2 -445.68520327514545 -222.43734428516544 6.1693 0.1144 10177 +10179 2 -445.66513139808444 -223.54710878709872 5.9684 0.1144 10178 +10180 2 -445.5518743967781 -224.6850332361089 5.82 0.1144 10179 +10181 2 -445.34651193264176 -225.80826912777366 5.7204 0.1144 10180 +10182 2 -445.13789352749365 -226.933053840967 5.6655 0.1144 10181 +10183 2 -444.97691891455275 -228.06515080854024 5.651 0.1144 10182 +10184 2 -444.5290576592564 -229.10203604134296 5.6576 0.1144 10183 +10185 2 -444.0067786388438 -230.1194614119903 5.6724 0.1144 10184 +10186 2 -443.99314482437916 -231.22761304380933 5.6878 0.1144 10185 +10187 2 -443.79097780570237 -232.34442093980545 5.7008 0.1144 10186 +10188 2 -443.19597561005435 -233.30979230211847 5.7369 0.1144 10187 +10189 2 -442.26619274960933 -233.853096896635 5.8897 0.1144 10188 +10190 2 -441.45882980466735 -234.2857832092617 6.7763 0.1144 10189 +10191 2 -440.86738496569154 -235.1056391249255 7.7181 0.1144 10190 +10192 2 -440.9922827029927 -236.1081559652913 8.1828 0.1144 10191 +10193 2 -440.96185275769267 -237.1329750705138 8.7795 0.1144 10192 +10194 2 -440.32236452329033 -237.32580815393314 9.2826 0.1144 10193 +10195 2 -439.31093356521603 -237.82439398109733 9.6971 0.1144 10194 +10196 2 -438.4633718746096 -238.51021162494754 10.1086 0.1144 10195 +10197 2 -437.56020374926106 -238.73643385496595 10.5771 0.1144 10196 +10198 2 -436.53034652817223 -238.37669301189823 10.965 0.1144 10197 +10199 2 -435.4609707652004 -237.9789684243146 11.2136 0.1144 10198 +10200 2 -434.34594460238736 -237.73635853943296 11.3601 0.1144 10199 +10201 2 -433.21663329709673 -237.76468265888522 11.4109 0.1144 10200 +10202 2 -432.0992621372039 -237.89909802645846 11.3218 0.1144 10201 +10203 2 -431.0082836054386 -238.1264826856313 11.1058 0.1144 10202 +10204 2 -430.26655932317067 -238.88782895316933 10.8832 0.1144 10203 +10205 2 -429.43741038864755 -239.62784964502816 10.6698 0.1144 10204 +10206 2 -428.68654850017265 -240.46434239719994 10.4666 0.1144 10205 +10207 2 -427.93740359600844 -241.3250925598864 10.3134 0.1144 10206 +10208 2 -427.1235357246087 -242.12906783805315 10.2177 0.1144 10207 +10209 2 -426.09124245750354 -242.56135393624427 10.1647 0.1144 10208 +10210 2 -425.1878653469607 -243.2251343639063 10.136 0.1144 10209 +10211 2 -425.2939717421577 -244.28672611825363 10.1244 0.1144 10210 +10212 2 -426.2619277666704 -244.86306606534174 10.1226 0.1144 10211 +10213 2 -427.3459406619902 -245.2270215197321 10.1226 0.1144 10212 +10214 2 -428.4897982011929 -245.2083445282968 10.1226 0.1144 10213 +10215 2 -441.28006365194324 -236.99207820475647 10.1267 0.1144 10193 +10216 2 -442.3284411132888 -236.61165682188934 10.2526 0.1144 10215 +10217 2 -443.31785567027316 -236.93574544314507 10.1778 0.1144 10216 +10218 2 -443.29815594089746 -236.68567069299525 10.1771 0.1144 10217 +10219 2 -443.2486958348624 -235.58700363791849 10.304 0.1144 10218 +10220 2 -443.2583617717202 -234.44893301635557 10.4245 0.1144 10219 +10221 2 -442.92893161268023 -233.3626198845584 10.5207 0.1144 10220 +10222 2 -442.52274485765304 -232.29318736212397 10.5937 0.1144 10221 +10223 2 -442.17309652245774 -231.20442773222618 10.6554 0.1144 10222 +10224 2 -442.6774851342856 -230.22104752688418 10.6821 0.1144 10223 +10225 2 -443.39042497227 -229.32705818275596 10.6848 0.1144 10224 +10226 2 -444.11868367841413 -228.44519246342836 10.6848 0.1144 10225 +10227 2 -444.6457606513866 -227.43272689632883 10.6848 0.1144 10226 +10228 2 -444.36927633230266 -237.02690097757733 9.2229 0.1144 10217 +10229 2 -445.3011259063543 -236.67855047687488 8.999 0.1144 10228 +10230 2 -446.3136212890805 -236.41458542244868 8.7362 0.1144 10229 +10231 2 -447.40719554634614 -236.09570637979175 8.5564 0.1144 10230 +10232 2 -448.49608136052666 -236.02352761784297 8.5178 0.1144 10231 +10233 2 -449.5690344119259 -236.29999061625878 8.6186 0.1144 10232 +10234 2 -449.61922658841144 -237.4205088514605 8.7306 0.1144 10233 +10235 2 -450.3479129645252 -238.29326263991751 8.8463 0.1144 10234 +10236 2 -451.3424816091455 -238.8574960412137 8.9978 0.1144 10235 +10237 2 -442.15885102172933 -234.5298576767159 5.8805 0.1144 10189 +10238 2 -442.6133438994641 -235.39157219677944 5.7833 0.1144 10237 +10239 2 -442.5564681386512 -236.2812782425226 5.6824 0.1144 10238 +10240 2 -442.1528830161008 -237.34661121810157 5.5781 0.1144 10239 +10241 2 -441.4238922395062 -238.20662575730424 5.4713 0.1144 10240 +10242 2 -440.3229206055614 -238.24229242590536 5.2867 0.1144 10241 +10243 2 -439.2327511315506 -237.71172935902743 5.042 0.1144 10242 +10244 2 -438.2457088441237 -238.17967774595826 5.0344 0.1144 10243 +10245 2 -437.38259842854995 -238.92938542934434 5.0236 0.1144 10244 +10246 2 -436.549396437606 -239.71394546037257 5.0086 0.1144 10245 +10247 2 -435.72261888929734 -240.50339798941573 4.9876 0.1144 10246 +10248 2 -434.86275109086046 -241.25792079835617 4.9589 0.1144 10247 +10249 2 -434.29047732196784 -242.20884402524538 4.9174 0.1144 10248 +10250 2 -433.6220059645866 -243.1069569882745 4.8585 0.1144 10249 +10251 2 -432.8057389688639 -243.90852307519046 4.7779 0.1144 10250 +10252 2 -431.9459452859404 -244.66141969014166 4.6716 0.1144 10251 +10253 2 -430.91842983753963 -245.10828222302814 4.5369 0.1144 10252 +10254 2 -430.0236683008353 -244.76416847376112 4.247 0.1144 10253 +10255 2 -429.1515097068906 -244.06025461752006 3.9392 0.1144 10254 +10256 2 -428.52248708141553 -243.13835332853048 3.5911 0.1144 10255 +10257 2 -427.7775940253974 -242.30601220549514 3.2168 0.1144 10256 +10258 2 -426.94838608558297 -241.55438774970034 2.8434 0.1144 10257 +10259 2 -426.8099317797364 -240.4410386511726 2.5695 0.1144 10258 +10260 2 -427.210983166898 -239.37004350419213 2.2495 0.1144 10259 +10261 2 -440.20862262692077 -238.72910934434464 5.1515 0.1144 10242 +10262 2 -439.5280243877918 -239.64409680704267 5.0405 0.1144 10261 +10263 2 -438.46338981791723 -240.05524336561766 4.9389 0.1144 10262 +10264 2 -437.7351852955313 -240.91122903347465 4.8449 0.1144 10263 +10265 2 -437.4999310815733 -242.0254220664878 4.7446 0.1144 10264 +10266 2 -437.3156340415397 -243.11794284937244 4.5627 0.1144 10265 +10267 2 -437.0326150442698 -244.2150652797257 4.3637 0.1144 10266 +10268 2 -436.7035046293546 -245.30643434415555 4.2078 0.1144 10267 +10269 2 -436.07302638313035 -246.22810284803208 4.0863 0.1144 10268 +10270 2 -435.4914820137676 -246.97995567037327 4.0477 0.1144 10269 +10271 2 -435.63244025842033 -248.0456509097661 4.1094 0.1144 10270 +10272 2 -435.40689416621797 -249.1161649733319 4.0795 0.1144 10271 +10273 2 -434.8121492693998 -249.95864144642113 3.8534 0.1144 10272 +10274 2 -434.4589069844809 -250.99176497153573 3.5446 0.1144 10273 +10275 2 -434.07729432924623 -252.06598280389787 3.2785 0.1144 10274 +10276 2 -433.79835107891313 -253.1752760307291 3.0664 0.1144 10275 +10277 2 -434.054908835318 -254.28081136152068 2.9151 0.1144 10276 +10278 2 -433.7929479539838 -255.3844832768337 2.8366 0.1144 10277 +10279 2 -433.50580583599935 -256.49206227811504 2.8136 0.1144 10278 +10280 2 -433.4015271465725 -257.63092476539407 2.8118 0.1144 10279 +10281 2 -433.5002570367037 -258.770848678993 2.8118 0.1144 10280 +10282 2 -433.7219896853886 -259.8932816981559 2.8118 0.1144 10281 +10283 2 -446.9322041640421 -221.45056909136946 7.5233 0.1144 10175 +10284 2 -446.7080487041453 -220.3370405646588 7.2432 0.1144 10283 +10285 2 -445.8699735787286 -219.56517424581997 7.0627 0.1144 10284 +10286 2 -444.8102379316929 -219.19002659701772 7.0206 0.1144 10285 +10287 2 -443.68221039926243 -219.0104635549442 7.0056 0.1144 10286 +10288 2 -442.6193773112698 -218.5949335354894 6.9835 0.1144 10287 +10289 2 -441.53479554054604 -218.4689188434346 6.9351 0.1144 10288 +10290 2 -441.02530625452727 -217.63304005591078 6.8532 0.1144 10289 +10291 2 -439.93577404689665 -217.5748973991461 6.6527 0.1144 10290 +10292 2 -438.8625190816506 -217.47641293552604 6.3332 0.1144 10291 +10293 2 -437.7995912461026 -217.1061376508832 6.0259 0.1144 10292 +10294 2 -436.9686824985991 -216.39007718323944 5.745 0.1144 10293 +10295 2 -436.57854668218215 -215.3546194657306 5.5136 0.1144 10294 +10296 2 -436.57525586443944 -214.22451204140376 5.3853 0.1144 10295 +10297 2 -436.89946016137867 -213.1460727877385 5.3687 0.1144 10296 +10298 2 -437.69059555480317 -212.39225460722608 5.3982 0.1144 10297 +10299 2 -437.8356900284334 -211.4485687624017 5.4221 0.1144 10298 +10300 2 -437.85587688089106 -210.3176619620915 5.429 0.1144 10299 +10301 2 -437.54911770790113 -209.24433637785037 5.4102 0.1144 10300 +10302 2 -436.88693347554533 -208.32158784091337 5.3604 0.1144 10301 +10303 2 -436.2344195599088 -207.40699129603644 5.2186 0.1144 10302 +10304 2 -435.4165895544835 -206.62470216008614 5.0547 0.1144 10303 +10305 2 -434.92443172298795 -205.61646664747138 4.8926 0.1144 10304 +10306 2 -434.1536518055185 -204.78732402474236 4.7286 0.1144 10305 +10307 2 -433.1086483344723 -204.3330110868886 4.561 0.1144 10306 +10308 2 -432.6203633369421 -203.40009071987598 4.2468 0.1144 10307 +10309 2 -432.0885347753029 -202.42656188053695 3.8813 0.1144 10308 +10310 2 -432.33945289172516 -201.19346602098224 3.1658 0.1144 10309 +10311 2 -432.8253108112118 -200.17843927647144 3.0523 0.1144 10310 +10312 2 -432.7668005383582 -199.14692856495623 2.9161 0.1144 10311 +10313 2 -432.0478686614049 -198.27589225899635 2.7988 0.1144 10312 +10314 2 -431.3037855464842 -197.42820858091235 2.642 0.1144 10313 +10315 2 -430.8156835301703 -196.40789000729413 2.5035 0.1144 10314 +10316 2 -430.801072218744 -195.28101158014306 2.4074 0.1144 10315 +10317 2 -430.82128601503774 -194.13723546462074 2.353 0.1144 10316 +10318 2 -430.527517646551 -193.03968326282043 2.329 0.1144 10317 +10319 2 -429.93664387352715 -192.0669500443312 2.3304 0.1144 10318 +10320 2 -429.27603895956935 -191.1328910806384 2.3568 0.1144 10319 +10321 2 -428.56040388351107 -190.24078984876223 2.3972 0.1144 10320 +10322 2 -427.779879533809 -189.40512142796234 2.4554 0.1144 10321 +10323 2 -426.8031639909236 -188.82466191319307 2.5271 0.1144 10322 +10324 2 -426.2113383575694 -187.9012828633414 2.6878 0.1144 10323 +10325 2 -426.43365950381576 -186.7837393438614 2.83 0.1144 10324 +10326 2 -426.7182578194837 -185.6753064867524 2.9515 0.1144 10325 +10327 2 -426.51592659587595 -184.5739152048033 3.3743 0.1144 10326 +10328 2 -431.4801008138626 -202.84997729660734 3.5821 0.1144 10309 +10329 2 -430.4203956071814 -202.86557777521378 3.2789 0.1144 10328 +10330 2 -429.40211617860604 -202.3797130457466 3.0323 0.1144 10329 +10331 2 -428.2979392343744 -202.39274553696126 2.8565 0.1144 10330 +10332 2 -427.1595540753763 -202.49953968367805 2.7427 0.1144 10331 +10333 2 -426.02672893807164 -202.6525903559752 2.6596 0.1144 10332 +10334 2 -424.9701453009077 -203.06856210703228 2.5679 0.1144 10333 +10335 2 -423.93946114878315 -203.54285380900404 2.4487 0.1144 10334 +10336 2 -423.0659316712316 -204.2367488312146 2.2798 0.1144 10335 +10337 2 -422.1399576901522 -204.88591551733137 2.1559 0.1144 10336 +10338 2 -421.097973676386 -205.31980767565625 2.1029 0.1144 10337 +10339 2 -420.1834212483395 -205.95124985539587 2.1623 0.1144 10338 +10340 2 -419.0945842459812 -206.30408001608944 2.247 0.1144 10339 +10341 2 -417.9858431067162 -206.57201550478297 2.3545 0.1144 10340 +10342 2 -417.09192239313546 -206.97460991337724 2.4796 0.1144 10341 +10343 2 -416.6949976797216 -208.03345143687417 2.6118 0.1144 10342 +10344 2 -415.87881911976007 -208.75900356336763 2.772 0.1144 10343 +10345 2 -414.9432965133527 -209.3418942074002 3.0179 0.1144 10344 +10346 2 -414.2886594532886 -210.21818648717368 3.3078 0.1144 10345 +10347 2 -413.4564567529674 -210.525450486982 3.6791 0.1144 10346 +10348 2 -412.45514912827684 -210.07278467124553 4.0243 0.1144 10347 +10349 2 -411.5327566889449 -210.53111031733502 4.2885 0.1144 10348 +10350 2 -410.73752412226906 -211.35053957291362 4.4792 0.1144 10349 +10351 2 -409.63717994639205 -211.42424998339666 4.613 0.1144 10350 +10352 2 -408.5825260903817 -210.9860389109641 4.7159 0.1144 10351 +10353 2 -407.5619085312221 -210.46863225471094 4.8071 0.1144 10352 +10354 2 -406.74652176695014 -209.66768057411463 4.9135 0.1144 10353 +10355 2 -405.8346692541593 -208.97577516517705 5.0532 0.1144 10354 +10356 2 -404.8373603891015 -209.31507905209432 5.3601 0.1144 10355 +10357 2 -403.9821210363839 -209.78401049651154 5.6693 0.1144 10356 +10358 2 -402.8695509404128 -209.55038602957603 5.9836 0.1144 10357 +10359 2 -402.3460722405107 -209.99250555046248 6.3241 0.1144 10358 +10360 2 -402.1416958887078 -211.01625336453765 6.7748 0.1144 10359 +10361 2 -401.1805409609185 -211.44699134148692 7.1885 0.1144 10360 +10362 2 -400.28614897223565 -212.10845712335328 7.5947 0.1144 10361 +10363 2 -399.9611216124243 -213.17473239052114 7.953 0.1144 10362 +10364 2 -399.2538842135524 -214.04695473696552 8.297 0.1144 10363 +10365 2 -398.9171019501337 -214.986208737248 8.7089 0.1144 10364 +10366 2 -397.7789677781716 -214.93934876913045 9.0482 0.1144 10365 +10367 2 -396.6598822471435 -214.71051899780767 9.3601 0.1144 10366 +10368 2 -395.5219646081139 -214.59400931243673 9.6644 0.1144 10367 +10369 2 -394.3831457394789 -214.50267079678815 9.9798 0.1144 10368 +10370 2 -393.3823055782418 -214.23201564414023 10.3785 0.1144 10369 +10371 2 -392.7529920457056 -213.82057525019857 11.0737 0.1144 10370 +10372 2 -391.88427942354065 -213.4296347558886 11.8974 0.1144 10371 +10373 2 -390.84804533569445 -213.0085035587711 12.6425 0.1144 10372 +10374 2 -389.7648723801552 -212.64865109123977 13.2251 0.1144 10373 +10375 2 -388.6645073326651 -212.36081696841555 13.6801 0.1144 10374 +10376 2 -387.6623902650633 -211.8894817980525 14.0742 0.1144 10375 +10377 2 -386.700112790674 -211.33655902561244 14.3902 0.1144 10376 +10378 2 -385.597287625122 -211.0754484470726 14.6185 0.1144 10377 +10379 2 -384.4566527713009 -211.07468670658088 14.8104 0.1144 10378 +10380 2 -383.31847428040805 -211.08276896298906 14.988 0.1144 10379 +10381 2 -382.2034208776728 -210.85316981436583 15.1575 0.1144 10380 +10382 2 -381.12077332447893 -210.6138804172681 15.3808 0.1144 10381 +10383 2 -380.038867706563 -210.42550437335046 15.6937 0.1144 10382 +10384 2 -378.9674965302223 -210.20405771497377 16.0775 0.1144 10383 +10385 2 -377.87218697369326 -210.2034615806036 16.4939 0.1144 10384 +10386 2 -376.7932232010256 -210.50129938423305 16.8411 0.1144 10385 +10387 2 -375.7367272993362 -210.90913957317167 17.1333 0.1144 10386 +10388 2 -374.6343322903879 -210.84785870955258 17.3877 0.1144 10387 +10389 2 -373.52719401082436 -210.72172608123992 17.6656 0.1144 10388 +10390 2 -372.4707593049741 -211.0665630460145 17.971 0.1144 10389 +10391 2 -371.41494736219977 -211.14772061802927 18.3444 0.1144 10390 +10392 2 -370.5380967530925 -211.5365621529868 18.8768 0.1144 10391 +10393 2 -370.2958560875906 -212.47523627107952 19.5547 0.1144 10392 +10394 2 -369.58699249472943 -213.3473845020105 20.1848 0.1144 10393 +10395 2 -368.4666503742485 -213.71874565113134 21.074 0.1144 10394 +10396 2 -367.7399436009948 -214.23086767341422 21.6034 0.1144 10395 +10397 2 -367.5466227507217 -214.63492889259976 22.6934 0.1144 10396 +10398 2 -367.05508252597804 -215.6621060036468 22.9867 0.1144 10397 +10399 2 -366.56269229452613 -216.6899884434086 23.1155 0.1144 10398 +10400 2 -366.0711520697825 -217.7171655544557 23.2628 0.1144 10399 +10401 2 -365.59330777615656 -218.7548365432807 23.3974 0.1144 10400 +10402 2 -365.1276105921197 -219.7997454688719 23.497 0.1144 10401 +10403 2 -364.8777158948806 -220.9155341990049 23.5633 0.1144 10402 +10404 2 -365.01690552812494 -222.0491788461485 23.5993 0.1144 10403 +10405 2 -365.2119683180972 -223.17728360545422 23.6149 0.1144 10404 +10406 2 -365.6383969361684 -224.23784894228632 23.619 0.1144 10405 +10407 2 -366.1977519711088 -225.235618517332 23.6191 0.1144 10406 +10408 2 -367.20844091221807 -214.6552926866064 21.9595 0.1144 10396 +10409 2 -367.03862167764953 -214.60805586230043 23.501 0.1144 10408 +10410 2 -366.87605611479694 -214.2371907415699 24.2558 0.1144 10409 +10411 2 -366.9115519140721 -213.49465988818142 24.4954 0.1144 10410 +10412 2 -365.8524704668398 -213.17855715467775 24.5736 0.1144 10411 +10413 2 -365.0985882377418 -212.38423963966872 24.6178 0.1144 10412 +10414 2 -364.2694712903491 -211.6229279902463 24.71 0.1144 10413 +10415 2 -363.32839760626183 -211.00697554799254 24.8098 0.1144 10414 +10416 2 -362.3060792394131 -210.5251328798904 24.8552 0.1144 10415 +10417 2 -361.30158673437717 -210.04007483457357 25.0259 0.1144 10416 +10418 2 -360.3889789059185 -209.7089345147151 25.3935 0.1144 10417 +10419 2 -359.98234969934117 -209.5600854019925 25.7504 0.1144 10418 +10420 2 -360.4253751970413 -208.57007132714935 26.059 0.1144 10419 +10421 2 -360.2949718239053 -207.46154742110366 26.2961 0.1144 10420 +10422 2 -359.99966470081773 -206.35593096271776 26.4684 0.1144 10421 +10423 2 -360.22506235989295 -205.32253977575934 26.6298 0.1144 10422 +10424 2 -360.6826884773637 -204.2824222888336 26.7441 0.1144 10423 +10425 2 -360.64527107063526 -203.173315243651 26.816 0.1144 10424 +10426 2 -360.49724425047157 -202.03887427537092 26.8507 0.1144 10425 +10427 2 -360.6646367921533 -200.91478106883093 26.857 0.1144 10426 +10428 2 -360.88944094907777 -199.79335365208502 26.8389 0.1144 10427 +10429 2 -361.1142454020883 -198.67178481429278 26.8003 0.1144 10428 +10430 2 -361.34066923910746 -197.55354277607856 26.7278 0.1144 10429 +10431 2 -360.63053023014277 -196.7382450157808 26.4312 0.1144 10430 +10432 2 -366.6421809194409 -215.06422996857012 22.1808 0.1144 10408 +10433 2 -365.7000140805184 -215.7134334633504 22.3111 0.1144 10432 +10434 2 -364.74487706913476 -216.34323503486715 22.3702 0.1144 10433 +10435 2 -363.7109502998733 -216.81271161128464 22.3605 0.1144 10434 +10436 2 -362.70206364230205 -217.27813938460136 22.2281 0.1144 10435 +10437 2 -361.68825724679357 -217.7630023368118 22.0614 0.1144 10436 +10438 2 -360.63649504697804 -218.20649069634257 21.9397 0.1144 10437 +10439 2 -359.65805959147656 -218.78526097842143 21.8861 0.1144 10438 +10440 2 -359.1642084760708 -219.76788542642407 21.9024 0.1144 10439 +10441 2 -358.94025432585477 -220.8886075144553 21.9875 0.1144 10440 +10442 2 -358.74536234869373 -222.009319737659 22.1718 0.1144 10441 +10443 2 -358.25068136043524 -222.98303288322887 22.4918 0.1144 10442 +10444 2 -357.5759072518102 -223.818129298219 22.9356 0.1144 10443 +10445 2 -356.66131751691375 -224.4673905297908 23.3734 0.1144 10444 +10446 2 -355.66185769929314 -225.02348932763323 23.7599 0.1144 10445 +10447 2 -354.6245839965983 -225.50420191920696 24.0995 0.1144 10446 +10448 2 -353.5913961077679 -225.99227699168486 24.4159 0.1144 10447 +10449 2 -352.6445093890329 -226.56545645911487 24.7908 0.1144 10448 +10450 2 -351.65248948129204 -226.70897312241806 25.2932 0.1144 10449 +10451 2 -350.6709698196381 -226.4642385850378 25.8932 0.1144 10450 +10452 2 -349.8149977717421 -225.7295286945226 26.3693 0.1144 10451 +10453 2 -348.9072550557908 -225.03353066173995 26.7135 0.1144 10452 +10454 2 -347.96377238255303 -224.38610685518032 26.936 0.1144 10453 +10455 2 -346.9350565169051 -223.88650237385107 27.0512 0.1144 10454 +10456 2 -346.02163504873016 -223.20095765504928 27.0869 0.1144 10455 +10457 2 -345.27596275058403 -222.33552223066596 27.0819 0.1144 10456 +10458 2 -344.47120802818915 -221.52243054654718 27.0716 0.1144 10457 +10459 2 -343.66397325597734 -220.71180854923153 27.0575 0.1144 10458 +10460 2 -342.7261628210688 -220.05704269170934 27.0373 0.1144 10459 +10461 2 -341.6291182613626 -219.73682995926583 27.0081 0.1144 10460 +10462 2 -340.559688812819 -219.33097351347763 26.9673 0.1144 10461 +10463 2 -339.5407045537153 -218.810246867627 26.9147 0.1144 10462 +10464 2 -338.3976363235682 -218.85720984483643 26.8517 0.1144 10463 +10465 2 -338.69279733061785 -219.6611028724946 26.7207 0.1144 10464 +10466 2 -339.0538135332743 -220.72400613781065 26.5329 0.1144 10465 +10467 2 -339.25613468995437 -221.83020573533346 26.3494 0.1144 10466 +10468 2 -339.2699325072497 -222.97412377008857 26.2233 0.1144 10467 +10469 2 -339.28373387757836 -224.11634475228817 26.165 0.1144 10468 +10470 2 -339.3411771126047 -225.25222241944678 26.1905 0.1144 10469 +10471 2 -339.50541366751963 -226.37856557942496 26.2679 0.1144 10470 +10472 2 -339.8187049503746 -227.4729059570439 26.3481 0.1144 10471 +10473 2 -340.22730089665254 -228.53993935515533 26.4186 0.1144 10472 +10474 2 -340.5478669249371 -229.63832548102812 26.4761 0.1144 10473 +10475 2 -340.82534818621195 -230.7471573166287 26.5227 0.1144 10474 +10476 2 -341.1054441083695 -231.85677244557687 26.5612 0.1144 10475 +10477 2 -341.3837721194055 -232.96645458397182 26.5984 0.1144 10476 +10478 2 -341.66217098900756 -234.0760661598867 26.6379 0.1144 10477 +10479 2 -341.9404992961296 -235.18560687723536 26.6786 0.1144 10478 +10480 2 -342.21805111988454 -236.2945095714021 26.7196 0.1144 10479 +10481 2 -342.4964499894867 -237.40412114731697 26.7605 0.1144 10480 +10482 2 -342.7756283033169 -238.51295653595085 26.8015 0.1144 10481 +10483 2 -343.0548033602 -239.62334755609393 26.8424 0.1144 10482 +10484 2 -343.3324260425211 -240.73217968778056 26.8833 0.1144 10483 +10485 2 -343.61082491212323 -241.84179126369546 26.9243 0.1144 10484 +10486 2 -343.88915292315914 -242.95147340209044 26.9653 0.1144 10485 +10487 2 -344.1683312369894 -244.0603087907243 27.0062 0.1144 10486 +10488 2 -344.44673010659153 -245.16992036663916 27.0471 0.1144 10487 +10489 2 -344.7251289761936 -246.27953194255403 27.0881 0.1144 10488 +10490 2 -345.00352784579576 -247.3891435184689 27.1291 0.1144 10489 +10491 2 -345.2818558568316 -248.4988256568639 27.17 0.1144 10490 +10492 2 -345.56025472643375 -249.60843723277873 27.2109 0.1144 10491 +10493 2 -345.839362477784 -250.7172017628464 27.2519 0.1144 10492 +10494 2 -346.117761347386 -251.8268133387613 27.2928 0.1144 10493 +10495 2 -346.39616021698816 -252.93642491467617 27.3337 0.1144 10494 +10496 2 -346.6744882280241 -254.04610705307107 27.3746 0.1144 10495 +10497 2 -346.9528870976262 -255.15571862898597 27.4155 0.1144 10496 +10498 2 -347.23128596722825 -256.2653302049008 27.4564 0.1144 10497 +10499 2 -347.5104642810586 -257.3741655935347 27.4973 0.1144 10498 +10500 2 -347.78886315066075 -258.4837771694496 27.5381 0.1144 10499 +10501 2 -348.06719116169666 -259.59345930784457 27.5789 0.1144 10500 +10502 2 -348.3455900312987 -260.70307088375944 27.6196 0.1144 10501 +10503 2 -348.6239889009008 -261.81268245967425 27.6602 0.1144 10502 +10504 2 -348.9031672147311 -262.92151784830816 27.7007 0.1144 10503 +10505 2 -349.1815660843332 -264.0311294242231 27.7409 0.1144 10504 +10506 2 -349.4598940953691 -265.14081156261796 27.781 0.1144 10505 +10507 2 -349.73829296497127 -266.2504231385328 27.8207 0.1144 10506 +10508 2 -350.0174712788015 -267.35925852716673 27.8598 0.1144 10507 +10509 2 -350.29587014840365 -268.4688701030816 27.8982 0.1144 10508 +10510 2 -350.57426901800574 -269.57848167899647 27.9357 0.1144 10509 +10511 2 -350.85259702904165 -270.6881638173914 27.9717 0.1144 10510 +10512 2 -351.13099589864373 -271.7977753933063 28.0059 0.1144 10511 +10513 2 -351.41017421247403 -272.9066107819401 28.0375 0.1144 10512 +10514 2 -351.6084327439919 -274.028146124531 28.0652 0.1144 10513 +10515 2 -351.664306727548 -275.17052590287165 28.0862 0.1144 10514 +10516 2 -351.8042861680344 -276.29844462611425 28.0997 0.1144 10515 +10517 2 -351.7204154459596 -277.3491027208237 28.107 0.1144 10516 +10518 2 -351.14721024667836 -278.3396220641568 28.1095 0.1144 10517 +10519 2 -350.694456493367 -279.38293173959477 28.1086 0.1144 10518 +10520 2 -350.4939159647656 -280.49967233005805 28.1053 0.1144 10519 +10521 2 -350.5870073703842 -281.63081629534275 28.1002 0.1144 10520 +10522 2 -350.51189596458164 -282.71946444636234 28.093 0.1144 10521 +10523 2 -350.10766600886876 -283.788826589373 28.0829 0.1144 10522 +10524 2 -349.8561584415154 -284.89817725690966 28.0686 0.1144 10523 +10525 2 -349.7429722987752 -286.0360311434397 28.0493 0.1144 10524 +10526 2 -349.61762542648484 -287.17315246133285 28.0218 0.1144 10525 +10527 2 -349.5044389876586 -288.3111477689092 27.9824 0.1144 10526 +10528 2 -349.6404167967215 -289.4252695016846 27.9274 0.1144 10527 +10529 2 -349.79421010458344 -290.5411255938654 27.8548 0.1144 10528 +10530 2 -349.7408347014089 -291.68405446144027 27.764 0.1144 10529 +10531 2 -349.8404219064153 -292.7860084525846 27.5938 0.1144 10530 +10532 2 -350.0371754371489 -293.8833575393131 27.351 0.1144 10531 +10533 2 -350.2120304139798 -295.00406606389805 27.0904 0.1144 10532 +10534 2 -350.69522000052365 -296.0065552226702 26.8622 0.1144 10533 +10535 2 -351.170351642276 -297.04134236165373 26.6531 0.1144 10534 +10536 2 -351.40255448185 -298.16139313340193 26.4986 0.1144 10535 +10537 2 -351.81054615876263 -299.21308101560373 26.4312 0.1144 10536 +10538 2 -352.4111106784475 -300.1842081739592 27.4234 0.1144 10537 +10539 2 -352.948143516776 -301.0023962089224 27.9124 0.1144 10538 +10540 2 -353.48882549847104 -301.63122827288726 28.6443 0.1144 10539 +10541 2 -354.41294000226185 -302.27550025263145 29.2939 0.1144 10540 +10542 2 -355.3605836012504 -302.8606365267556 29.8962 0.1144 10541 +10543 2 -356.342181575223 -303.43947991446345 30.3761 0.1144 10542 +10544 2 -357.2978652457219 -304.0684030273649 30.7006 0.1144 10543 +10545 2 -358.39326643844447 -304.39674406497966 30.8862 0.1144 10544 +10546 2 -359.51884421582713 -304.59808091471757 30.9845 0.1144 10545 +10547 2 -360.6249215672572 -304.8932102129131 31.0537 0.1144 10546 +10548 2 -361.7276584991482 -305.1964642632465 31.1069 0.1144 10547 +10549 2 -362.8434540392617 -305.44310627642096 31.1822 0.1144 10548 +10550 2 -363.9659179969656 -305.5781098454696 31.3191 0.1144 10549 +10551 2 -364.59543088943985 -305.92810294284243 31.4457 0.1144 10550 +10552 2 -365.594045282314 -306.4850615987089 31.5644 0.1144 10551 +10553 2 -366.5927302376682 -307.0420911131416 31.6728 0.1144 10552 +10554 2 -367.59141519302244 -307.5991206275743 31.7677 0.1144 10553 +10555 2 -368.59010014837673 -308.156150142007 31.8472 0.1144 10554 +10556 2 -369.5895645479591 -308.71240346915874 31.9124 0.1144 10555 +10557 2 -370.5330572881246 -309.35501896014455 31.9656 0.1144 10556 +10558 2 -371.4254168852302 -310.069581735171 32.0015 0.1144 10557 +10559 2 -372.30727934761063 -310.7993960728244 32.0225 0.1144 10558 +10560 2 -373.18907420837206 -311.52772534144856 32.0312 0.1144 10559 +10561 2 -374.07008962490534 -312.2568307973538 32.0309 0.1144 10560 +10562 2 -374.9527315315139 -312.9858689477262 32.0242 0.1144 10561 +10563 2 -375.8443084274441 -313.70276354154277 32.013 0.1144 10562 +10564 2 -376.9081167665697 -314.0577671297032 31.9962 0.1144 10563 +10565 2 -378.02632505096733 -314.3003129659992 31.9701 0.1144 10564 +10566 2 -379.143757148084 -314.54207935806704 31.9362 0.1144 10565 +10567 2 -380.2620392519089 -314.78314042142006 31.8965 0.1144 10566 +10568 2 -381.38109783910096 -315.024839507955 31.8531 0.1144 10567 +10569 2 -382.42673439876626 -314.77147975367006 31.7268 0.1144 10568 +10570 2 -382.40331995032335 -313.6275415850595 31.4924 0.1144 10569 +10571 2 -363.98239228219893 -305.8151670493805 31.4605 0.1144 10550 +10572 2 -364.0642239857723 -306.9542777649346 31.2334 0.1144 10571 +10573 2 -364.1459848307795 -308.09345904296885 31.1363 0.1144 10572 +10574 2 -364.2285218630678 -309.2334197652313 31.0223 0.1144 10573 +10575 2 -364.31021214559496 -310.3725301846993 30.8988 0.1144 10574 +10576 2 -364.39197299060214 -311.5117114627335 30.7731 0.1144 10575 +10577 2 -364.4737338356094 -312.65089274076774 30.6522 0.1144 10576 +10578 2 -364.55464467390834 -313.7907793475167 30.5416 0.1144 10577 +10579 2 -364.5401600584629 -314.93378963877205 30.4634 0.1144 10578 +10580 2 -364.6809020662692 -316.068993174372 30.413 0.1144 10579 +10581 2 -364.8840999713932 -317.1954886165968 30.3677 0.1144 10580 +10582 2 -350.2546816912628 -298.17277850249934 26.3179 0.1144 10536 +10583 2 -349.10999102226003 -298.184099823011 26.2567 0.1144 10582 +10584 2 -347.98212648277575 -298.2981992120268 26.146 0.1144 10583 +10585 2 -346.84822054209724 -298.1906782015492 26.0235 0.1144 10584 +10586 2 -345.7568751645563 -297.85025410293105 25.9176 0.1144 10585 +10587 2 -344.6345941880688 -297.62785232727686 25.8236 0.1144 10586 +10588 2 -343.5297536208777 -297.9240803156389 25.7357 0.1144 10587 +10589 2 -342.74205602676705 -297.4411732228849 25.6495 0.1144 10588 +10590 2 -341.9452645016082 -296.64103829336665 25.5616 0.1144 10589 +10591 2 -341.24910546432693 -295.7343406950399 25.4592 0.1144 10590 +10592 2 -340.54220196643234 -294.92725216540737 25.2215 0.1144 10591 +10593 2 -339.8620434391367 -294.04484188229236 24.9531 0.1144 10592 +10594 2 -339.1893990828195 -293.1196672771963 24.7144 0.1144 10593 +10595 2 -338.3228759185405 -292.3922185121497 24.5011 0.1144 10594 +10596 2 -337.3224354735525 -291.9306449470138 24.223 0.1144 10595 +10597 2 -336.3926250445436 -291.3050287019351 23.9317 0.1144 10596 +10598 2 -335.44189792064526 -290.6728632679829 23.6859 0.1144 10597 +10599 2 -334.4423626624967 -290.1166805033112 23.4664 0.1144 10598 +10600 2 -333.50942103871427 -289.46680388685684 23.2223 0.1144 10599 +10601 2 -332.6153573769724 -288.78936073149055 22.9131 0.1144 10600 +10602 2 -331.73672391176774 -288.07086688752076 22.5935 0.1144 10601 +10603 2 -331.0882761743268 -287.13923754502036 22.2992 0.1144 10602 +10604 2 -330.4390958682489 -286.2197689320701 21.9621 0.1144 10603 +10605 2 -329.60448053667346 -285.72050011840435 21.4667 0.1144 10604 +10606 2 -328.6113964628958 -285.1902110251644 21.0304 0.1144 10605 +10607 2 -327.58026133906947 -284.6978139837319 20.7068 0.1144 10606 +10608 2 -326.441347722879 -284.65173020289535 20.4747 0.1144 10607 +10609 2 -325.29680548700344 -284.6259286467997 20.3156 0.1144 10608 +10610 2 -324.15759726513323 -284.72055880701913 20.2177 0.1144 10609 +10611 2 -323.0207909263467 -284.8500544366552 20.1581 0.1144 10610 +10612 2 -322.0036640430544 -285.36729599848496 20.0884 0.1144 10611 +10613 2 -320.8788591394906 -285.5736087196606 19.9889 0.1144 10612 +10614 2 -319.798106325473 -285.94915398323474 19.8503 0.1144 10613 +10615 2 -318.7801931879719 -286.47042441641 19.6692 0.1144 10614 +10616 2 -317.63717588463584 -286.49306297365797 19.4424 0.1144 10615 +10617 2 -317.4251186137745 -287.3014802198093 20.3308 0.1144 10616 +10618 2 -317.02724905211124 -288.3725527392504 20.3308 0.1144 10617 +10619 2 -316.7006050670519 -289.4679574850063 20.3308 0.1144 10618 +10620 2 -316.1435891725803 -290.4601370722313 20.3308 0.1144 10619 +10621 2 -316.3792407992099 -291.5203029889004 20.3308 0.1144 10620 +10622 2 -316.5798981589646 -292.6443889437884 20.3308 0.1144 10621 +10623 2 -316.58238584559035 -293.7865862390991 20.3308 0.1144 10622 +10624 2 -316.59618366288566 -294.9305042738542 20.3308 0.1144 10623 +10625 2 -317.07451430313085 -295.95716636461367 20.3308 0.1144 10624 +10626 2 -317.6784020693604 -296.92837119151596 20.3308 0.1144 10625 +10627 2 -318.600853072312 -297.5903881075789 20.3308 0.1144 10626 +10628 2 -319.74062755641097 -297.59680491340544 20.3308 0.1144 10627 +10629 2 -320.8843905501586 -297.58951216815325 20.3308 0.1144 10628 +10630 2 -322.0290678952864 -297.58455479472445 20.3308 0.1144 10629 +10631 2 -323.1729014515142 -297.57733290803844 20.3308 0.1144 10630 +10632 2 -324.31290303365984 -297.4752797713626 20.3308 0.1144 10631 +10633 2 -325.45370369570276 -297.3968457259333 20.3308 0.1144 10632 +10634 2 -326.582496906815 -297.2106939423077 20.3308 0.1144 10633 +10635 2 -317.31613615113014 -286.80302351874496 18.9993 0.1144 10616 +10636 2 -316.5075978008444 -287.39183688995627 18.3982 0.1144 10635 +10637 2 -315.96853626955743 -288.3194243658778 17.7561 0.1144 10636 +10638 2 -315.37436394676223 -289.29370703062364 17.2273 0.1144 10637 +10639 2 -314.6818590199658 -290.08662266697013 16.6665 0.1144 10638 +10640 2 -313.72117155563006 -290.6993713070079 16.2631 0.1144 10639 +10641 2 -312.6727089154705 -291.1542510187884 16.0089 0.1144 10640 +10642 2 -311.63944365417944 -291.6455079167647 15.8577 0.1144 10641 +10643 2 -310.72230606574686 -292.32962425473943 15.7658 0.1144 10642 +10644 2 -309.8268916542537 -293.04037334667714 15.7028 0.1144 10643 +10645 2 -308.8686501898322 -293.6669157202349 15.6577 0.1144 10644 +10646 2 -307.8571446180581 -294.2011396510635 15.5927 0.1144 10645 +10647 2 -306.78778265810377 -294.6073972646569 15.5028 0.1144 10646 +10648 2 -305.82299220690896 -295.22098584447514 15.3871 0.1144 10647 +10649 2 -304.69323712505366 -295.0559856171359 15.2474 0.1144 10648 +10650 2 -303.80445238625646 -295.36963655062925 14.9715 0.1144 10649 +10651 2 -302.86143835590144 -295.64668715711406 14.5179 0.1144 10650 +10652 2 -301.9160457767505 -296.28301452670166 14.1532 0.1144 10651 +10653 2 -301.03445154442693 -297.0124602131882 13.8784 0.1144 10652 +10654 2 -299.96172597623104 -297.40414435294736 13.6863 0.1144 10653 +10655 2 -298.8361516953668 -297.6064249458302 13.569 0.1144 10654 +10656 2 -297.73693243969404 -297.91963530319117 13.5169 0.1144 10655 +10657 2 -296.79237002948196 -298.5647325541653 13.5009 0.1144 10656 +10658 2 -295.9801956576044 -299.3704084379208 13.4796 0.1144 10657 +10659 2 -295.04775687219285 -300.00018682073517 13.4501 0.1144 10658 +10660 2 -293.9097578094828 -299.92256792309314 13.4096 0.1144 10659 +10661 2 -292.8102331999596 -299.60482487745276 13.3514 0.1144 10660 +10662 2 -291.7514662901625 -299.1722620603745 13.2675 0.1144 10661 +10663 2 -290.7429622888757 -298.6443448515354 13.1537 0.1144 10662 +10664 2 -289.89763234978454 -297.892686641924 13.0076 0.1144 10663 +10665 2 -288.8111152195725 -297.5765264677149 12.8107 0.1144 10664 +10666 2 -287.78077685855413 -297.4465948248642 12.4204 0.1144 10665 +10667 2 -286.8172524199681 -297.1177520717929 11.9267 0.1144 10666 +10668 2 -286.15501450204056 -296.1868716766513 11.5058 0.1144 10667 +10669 2 -285.40365664169025 -295.3351422503134 11.115 0.1144 10668 +10670 2 -284.6045196777803 -294.54072998774905 10.7421 0.1144 10669 +10671 2 -283.79974452544377 -293.7373963558241 10.4264 0.1144 10670 +10672 2 -283.04512391410105 -292.89046843507947 10.2061 0.1144 10671 +10673 2 -282.5303656590356 -291.8693162334749 10.0339 0.1144 10672 +10674 2 -281.9224422114799 -290.90057783642845 9.874 0.1144 10673 +10675 2 -281.1913902627593 -290.0431633460728 9.7192 0.1144 10674 +10676 2 -280.1617666536116 -289.5718412974844 9.5499 0.1144 10675 +10677 2 -279.0837575565499 -289.44746671546596 9.2786 0.1144 10676 +10678 2 -278.19014838207227 -289.2959716881896 8.8127 0.1144 10677 +10679 2 -277.9582068360331 -288.4226315601634 8.392 0.1144 10678 +10680 2 -278.15625349275615 -287.34873651326126 8.0413 0.1144 10679 +10681 2 -277.621893954489 -286.40200178068676 7.7506 0.1144 10680 +10682 2 -276.98964558878544 -285.4672243665045 7.512 0.1144 10681 +10683 2 -276.47814357081785 -284.444381922325 7.3114 0.1144 10682 +10684 2 -275.9378139315943 -283.6472588132782 6.9708 0.1144 10683 +10685 2 -275.23724368181297 -282.8886204639171 6.5493 0.1144 10684 +10686 2 -274.39831825360193 -282.1176008948393 6.1982 0.1144 10685 +10687 2 -273.52382508210616 -281.3804480592568 5.9354 0.1144 10686 +10688 2 -272.69228226865476 -280.59572604516694 5.7534 0.1144 10687 +10689 2 -271.96693631208 -279.714847504572 5.6436 0.1144 10688 +10690 2 -271.10048045333383 -278.98902522960077 5.5956 0.1144 10689 +10691 2 -270.2485810975278 -278.2341712784438 5.5705 0.1144 10690 +10692 2 -269.4413463253159 -277.4235492811281 5.5383 0.1144 10691 +10693 2 -268.6146963059656 -276.63226140335667 5.4938 0.1144 10692 +10694 2 -267.6191962309566 -276.1076241185043 5.4364 0.1144 10693 +10695 2 -266.49581771977245 -276.0041556662611 5.3671 0.1144 10694 +10696 2 -265.44100595096415 -276.35062237805823 5.2328 0.1144 10695 +10697 2 -264.65395311445695 -277.1133586709839 5.0056 0.1144 10696 +10698 2 -263.5387239821575 -277.3392076304028 4.8232 0.1144 10697 +10699 2 -262.45080458812635 -277.6928175314107 4.6866 0.1144 10698 +10700 2 -261.308651409646 -277.6742334821396 4.5923 0.1144 10699 +10701 2 -260.19286593646024 -277.4227831533914 4.5181 0.1144 10700 +10702 2 -304.51088048780264 -294.85018885610566 15.2113 0.1144 10649 +10703 2 -304.06450910525854 -293.9933703870904 14.4347 0.1144 10702 +10704 2 -303.9697302158259 -292.8914264628738 14.1374 0.1144 10703 +10705 2 -303.95685326380504 -291.7467325369239 13.9105 0.1144 10704 +10706 2 -303.735036432679 -290.630734027324 13.7503 0.1144 10705 +10707 2 -303.6039783615531 -289.4971771156549 13.6524 0.1144 10706 +10708 2 -303.4137911926875 -288.3707089133523 13.6117 0.1144 10707 +10709 2 -303.05692179763446 -287.2860353934052 13.6235 0.1144 10708 +10710 2 -302.8383644605535 -286.1667910097212 13.6523 0.1144 10709 +10711 2 -302.4742707486954 -285.087759231234 13.693 0.1144 10710 +10712 2 -301.8071267127918 -284.16980864685684 13.7466 0.1144 10711 +10713 2 -301.366870607384 -283.12781130921576 13.8124 0.1144 10712 +10714 2 -301.817920296059 -282.1216212534379 13.9142 0.1144 10713 +10715 2 -302.6663050495377 -281.44796759608505 14.1319 0.1144 10714 +10716 2 -303.014735964036 -280.38251914692296 14.3268 0.1144 10715 +10717 2 -302.7274729636785 -279.28498056508374 14.4762 0.1144 10716 +10718 2 -302.7759591257853 -278.14692050863505 14.5822 0.1144 10717 +10719 2 -303.1616042053988 -277.07179187792616 14.6486 0.1144 10718 +10720 2 -302.8087465086969 -275.9961070328725 14.6795 0.1144 10719 +10721 2 -302.4016388883952 -274.9274504016329 14.6835 0.1144 10720 +10722 2 -343.0578587961662 -298.85576822175904 26.664 0.1144 10588 +10723 2 -342.4418491153074 -299.79040710019717 26.9863 0.1144 10722 +10724 2 -341.8857137244134 -300.76731499093984 27.3289 0.1144 10723 +10725 2 -341.69493480103915 -301.8823789587893 27.638 0.1144 10724 +10726 2 -341.78800932974934 -303.02158392371234 27.8628 0.1144 10725 +10727 2 -341.9999806692932 -304.1455521444428 28.009 0.1144 10726 +10728 2 -341.98945406662716 -305.2894192523869 28.1182 0.1144 10727 +10729 2 -337.2959701846381 -218.41402129767525 27.1848 0.1144 10464 +10730 2 -336.27456637126977 -217.90064351276766 27.2153 0.1144 10729 +10731 2 -335.2279435162148 -217.44300377533585 27.2593 0.1144 10730 +10732 2 -334.1479929499711 -217.0638539969238 27.32 0.1144 10731 +10733 2 -333.12984182066737 -216.55048302199674 27.4022 0.1144 10732 +10734 2 -332.04577799853666 -216.21085198756785 27.5082 0.1144 10733 +10735 2 -330.9453151486442 -215.93595774243587 27.686 0.1144 10734 +10736 2 -329.9148506033431 -215.52855652633875 27.9614 0.1144 10735 +10737 2 -329.10265908243036 -214.7550473387027 28.2279 0.1144 10736 +10738 2 -328.13599358424335 -214.3728820412005 28.588 0.1144 10737 +10739 2 -327.0600580672839 -214.03489437375526 28.8926 0.1144 10738 +10740 2 -326.0678144314732 -213.47469635769912 29.1116 0.1144 10739 +10741 2 -325.21273325016875 -212.71976503408152 29.2519 0.1144 10740 +10742 2 -324.84845755346726 -211.66010764284954 29.33 0.1144 10741 +10743 2 -324.85812704335837 -210.52033996873115 29.3686 0.1144 10742 +10744 2 -324.97703910999957 -209.38327588944313 29.3765 0.1144 10743 +10745 2 -324.94223686234034 -208.24094022793298 29.3804 0.1144 10744 +10746 2 -324.79335973938225 -207.10734600941396 29.3857 0.1144 10745 +10747 2 -324.82163127836714 -205.96514240230906 29.3933 0.1144 10746 +10748 2 -325.482038581263 -205.03469770525192 29.4042 0.1144 10747 +10749 2 -325.26511099120466 -203.91383038452594 29.4188 0.1144 10748 +10750 2 -324.8636652462184 -202.8427814389439 29.4392 0.1144 10749 +10751 2 -324.35541916926263 -201.81839017323574 29.4689 0.1144 10750 +10752 2 -323.5081646378977 -200.8038957675924 29.568 0.1144 10751 +10753 2 -322.6644949426985 -200.0360482531714 29.64 0.1144 10752 +10754 2 -321.7874511589058 -199.30129424582577 29.7388 0.1144 10753 +10755 2 -321.0376787266473 -198.50288410697158 29.9513 0.1144 10754 +10756 2 -320.070535698079 -197.94351646195466 30.1795 0.1144 10755 +10757 2 -319.05807694096006 -197.41318680491753 30.3769 0.1144 10756 +10758 2 -318.12274300283514 -196.75764831314774 30.5452 0.1144 10757 +10759 2 -317.3138011111401 -195.9518310783725 30.6916 0.1144 10758 +10760 2 -316.62975207869823 -195.03631998001524 30.8238 0.1144 10759 +10761 2 -315.56797334842975 -194.86021904887218 30.9557 0.1144 10760 +10762 2 -314.4778343147734 -194.72040410940292 31.1968 0.1144 10761 +10763 2 -313.4709595623227 -194.22487587319694 31.4625 0.1144 10762 +10764 2 -312.5086888979139 -193.66870041669227 31.78 0.1144 10763 +10765 2 -311.62434618361624 -192.97522625447093 32.0947 0.1144 10764 +10766 2 -311.0010564941231 -192.01699160002994 32.314 0.1144 10765 +10767 2 -310.47900661671963 -190.99985464980986 32.4388 0.1144 10766 +10768 2 -310.1658703748721 -189.89900920014784 32.4736 0.1144 10767 +10769 2 -309.9101089396037 -188.7846366824369 32.4341 0.1144 10768 +10770 2 -310.02414568122435 -187.64579462509946 32.3229 0.1144 10769 +10771 2 -310.1405845080292 -186.50794754854994 32.1532 0.1144 10770 +10772 2 -310.32410911591546 -185.37907978025277 31.9376 0.1144 10771 +10773 2 -310.48423366563316 -184.65300263657056 32.7552 0.1144 10772 +10774 2 -310.68875263695566 -183.5273608106023 32.954 0.1144 10773 +10775 2 -310.74212123014956 -182.38768462709203 33.0347 0.1144 10774 +10776 2 -310.9313581419758 -181.26611203416616 33.1442 0.1144 10775 +10777 2 -310.95233124864217 -180.1311763625104 33.285 0.1144 10776 +10778 2 -310.7095432427823 -179.03465013655378 33.5121 0.1144 10777 +10779 2 -310.33150736427706 -177.9951872345882 33.8531 0.1144 10778 +10780 2 -309.9291874275072 -176.97016921109906 34.2871 0.1144 10779 +10781 2 -309.79235280175544 -175.86000549110307 34.7248 0.1144 10780 +10782 2 -310.14248402575646 -174.79300496346517 35.1151 0.1144 10781 +10783 2 -310.9400547230166 -174.0051176346725 35.4472 0.1144 10782 +10784 2 -312.0266424722235 -173.9160341722715 35.8218 0.1144 10783 +10785 2 -312.9740449680477 -173.83952867634997 36.3378 0.1144 10784 +10786 2 -314.1149164886568 -173.76102406844066 36.7217 0.1144 10785 +10787 2 -315.25110006436717 -173.89520783156425 37.2733 0.1144 10786 +10788 2 -309.9307008102201 -185.53516345976456 31.5991 0.1144 10772 +10789 2 -309.1502747045918 -185.05785774677355 31.0531 0.1144 10788 +10790 2 -308.4366627234962 -184.34777043493307 30.3503 0.1144 10789 +10791 2 -307.40522312916244 -183.96702516150143 29.7142 0.1144 10790 +10792 2 -306.34967514961335 -183.5505911536805 29.2062 0.1144 10791 +10793 2 -305.4006225333399 -183.2331631436616 28.5723 0.1144 10792 +10794 2 -304.48877307539595 -182.5735725918438 27.9797 0.1144 10793 +10795 2 -303.5173103249358 -182.11856509248977 27.386 0.1144 10794 +10796 2 -302.59407700596546 -182.23549707589427 26.7035 0.1144 10795 +10797 2 -302.60816140697534 -181.31741710680217 26.1264 0.1144 10796 +10798 2 -302.34671440950274 -180.21675058713666 25.6647 0.1144 10797 +10799 2 -302.29193109414786 -179.3640046646259 25.0751 0.1144 10798 +10800 2 -302.34280957059707 -178.23160648349253 24.6362 0.1144 10799 +10801 2 -302.0919641181322 -177.13336632807219 24.318 0.1144 10800 +10802 2 -302.39666217551115 -176.08394838757877 24.084 0.1144 10801 +10803 2 -303.07052824455025 -175.27727582637579 23.8869 0.1144 10802 +10804 2 -302.9806927799435 -174.14458303956246 23.7156 0.1144 10803 +10805 2 -302.7209428350264 -173.0439200729303 23.5364 0.1144 10804 +10806 2 -302.49827500081926 -171.99665071139552 23.208 0.1144 10805 +10807 2 -301.7130785867538 -171.4336334813405 22.8258 0.1144 10806 +10808 2 -300.91451114201965 -170.73871255331287 22.4268 0.1144 10807 +10809 2 -300.27018652529324 -169.79662663988438 22.1036 0.1144 10808 +10810 2 -299.50829422336784 -168.9779678280056 21.7829 0.1144 10809 +10811 2 -299.09878066876263 -167.91015468957985 21.3699 0.1144 10810 +10812 2 -324.5764829882985 -200.92987640974457 29.9956 0.1144 10751 +10813 2 -324.87809041470103 -199.83682341453402 30.5379 0.1144 10812 +10814 2 -324.73324216308856 -198.7040154502237 30.7518 0.1144 10813 +10815 2 -324.4742920923412 -197.59281824411676 31.0108 0.1144 10814 +10816 2 -324.21456257736577 -196.48239722529073 31.3102 0.1144 10815 +10817 2 -325.09089109758975 -195.56612249321415 31.3228 0.1144 10816 +10818 2 -325.86361097617015 -194.72564498652721 31.4874 0.1144 10817 +10819 2 -326.6354099894761 -193.88594337103518 31.6907 0.1144 10818 +10820 2 -326.9280756165765 -192.80828661644497 31.9682 0.1144 10819 +10821 2 -327.0646887987922 -191.69381635284665 32.3011 0.1144 10820 +10822 2 -327.1956466195869 -190.57862714057248 32.6614 0.1144 10821 +10823 2 -327.7712272563023 -189.60183067219316 32.9762 0.1144 10822 +10824 2 -327.8116592287512 -188.46050105477153 33.234 0.1144 10823 +10825 2 -327.85284695853954 -187.32970893377188 33.7417 0.1144 10824 +10826 2 -324.14132338546983 -195.52849617131793 31.6884 0.1144 10816 +10827 2 -324.05462918256444 -194.4152554403066 32.1376 0.1144 10826 +10828 2 -323.9680058382252 -193.3019441468152 32.6332 0.1144 10827 +10829 2 -323.88300868787525 -192.1887069688372 33.1607 0.1144 10828 +10830 2 -323.7963144849698 -191.0754662378259 33.6988 0.1144 10829 +10831 2 -323.71047058485874 -189.96137875705355 34.2286 0.1144 10830 +10832 2 -323.6238472405196 -188.84806746356216 34.7318 0.1144 10831 +10833 2 -323.5371530376141 -187.73482673255083 35.2008 0.1144 10832 +10834 2 -323.5904979439192 -186.60646423274358 35.6045 0.1144 10833 +10835 2 -323.92117080032415 -185.5118457411964 35.891 0.1144 10834 +10836 2 -324.26081871166133 -184.41972091942725 36.0861 0.1144 10835 +10837 2 -324.51629791175515 -183.3047217004502 36.2169 0.1144 10836 +10838 2 -324.7225844981131 -182.17915428608146 36.3107 0.1144 10837 +10839 2 -324.8947989753297 -181.04856577834 36.3944 0.1144 10838 +10840 2 -325.1778416594885 -179.94012966428372 36.5036 0.1144 10839 +10841 2 -325.67906907785977 -178.91304354565838 36.6422 0.1144 10840 +10842 2 -326.18439593005667 -177.88681453980794 36.8026 0.1144 10841 +10843 2 -326.63377530791195 -176.90162210441355 37.1073 0.1144 10842 +10844 2 -327.3732189003011 -176.08129822710976 37.4811 0.1144 10843 +10845 2 -328.1886182181347 -175.3226517992684 38.4028 0.1144 10844 +10846 2 -370.2455403768515 -213.30506397563803 20.8074 0.1144 10394 +10847 2 -371.263866794048 -212.9916842570219 21.2284 0.1144 10846 +10848 2 -372.287056095733 -213.42905163454026 21.4205 0.1144 10847 +10849 2 -373.18923473877123 -214.11450210397314 21.6598 0.1144 10848 +10850 2 -374.0751804583557 -214.7853521557357 21.9701 0.1144 10849 +10851 2 -375.1226942365171 -214.8174559648888 22.2785 0.1144 10850 +10852 2 -376.21059349669275 -214.47346269502847 22.5441 0.1144 10851 +10853 2 -377.330606961591 -214.2590789072866 22.7669 0.1144 10852 +10854 2 -378.4521385490482 -214.09638791695306 22.9957 0.1144 10853 +10855 2 -378.77208036270065 -213.12874361459976 23.2772 0.1144 10854 +10856 2 -378.69031596466004 -211.99125938912098 23.498 0.1144 10855 +10857 2 -378.2224253145208 -210.97663999766812 23.7489 0.1144 10856 +10858 2 -377.5740685695016 -210.0353234615401 23.9368 0.1144 10857 +10859 2 -377.13695422398155 -208.9787662700258 24.065 0.1144 10858 +10860 2 -377.02690739320013 -207.84037430104718 24.1816 0.1144 10859 +10861 2 -469.2271176481223 -253.9411448213774 11.4148 0.1144 10108 +10862 2 -470.25327826299645 -253.73611050112567 11.9115 0.1144 10861 +10863 2 -471.10259444686375 -253.02286072732895 12.0816 0.1144 10862 +10864 2 -471.49472446466496 -251.95750376877504 12.2134 0.1144 10863 +10865 2 -471.66693894188154 -250.82691526103358 12.3102 0.1144 10864 +10866 2 -471.98868687589254 -249.7396320104684 12.3757 0.1144 10865 +10867 2 -472.29668123598015 -248.70316105373382 12.4144 0.1144 10866 +10868 2 -472.10974645509305 -247.576841082458 12.4311 0.1144 10867 +10869 2 -472.28992363135933 -246.49322123899233 12.454 0.1144 10868 +10870 2 -472.80089903499663 -245.4709638658824 12.4875 0.1144 10869 +10871 2 -473.35304611834215 -244.4738950375896 12.5357 0.1144 10870 +10872 2 -473.92306268214446 -243.48655100586058 12.5998 0.1144 10871 +10873 2 -474.43968634113617 -242.4684066865374 12.6785 0.1144 10872 +10874 2 -475.04112334243325 -241.50297808561928 12.7954 0.1144 10873 +10875 2 -475.6269947418549 -240.60950052387545 13.0335 0.1144 10874 +10876 2 -476.2347810739011 -239.71861443431186 13.3059 0.1144 10875 +10877 2 -477.0582585643675 -238.9517824626941 13.4927 0.1144 10876 +10878 2 -477.9858995993195 -238.2831737877031 13.5966 0.1144 10877 +10879 2 -478.8585961491714 -237.54805260594011 13.604 0.1144 10878 +10880 2 -479.8288491157433 -236.9935190083482 13.5004 0.1144 10879 +10881 2 -480.84186244706245 -236.5159376115479 13.2833 0.1144 10880 +10882 2 -481.73715536926454 -235.8294420810054 13.0355 0.1144 10881 +10883 2 -482.51714999327464 -234.9930103225724 12.8149 0.1144 10882 +10884 2 -483.2566850762719 -234.12898734196574 12.5907 0.1144 10883 +10885 2 -484.05673552726273 -233.3387717474163 12.3391 0.1144 10884 +10886 2 -484.93349400199014 -232.6561972188893 12.0481 0.1144 10885 +10887 2 -485.8923861131818 -232.09039681318572 11.772 0.1144 10886 +10888 2 -486.9706420004742 -231.725382236053 11.5679 0.1144 10887 +10889 2 -488.08348257356477 -231.45830386013446 11.4248 0.1144 10888 +10890 2 -489.20429265568566 -231.23494146442704 11.3368 0.1144 10889 +10891 2 -490.3363718064926 -231.06668640118036 11.293 0.1144 10890 +10892 2 -491.4730118388709 -231.05039846714027 11.2774 0.1144 10891 +10893 2 -492.6117260951231 -231.1579295445456 11.2704 0.1144 10892 +10894 2 -493.7479903002413 -231.28737585066162 11.2606 0.1144 10893 +10895 2 -494.8875752892296 -231.38430212611212 11.2468 0.1144 10894 +10896 2 -496.031354661699 -231.40296029089666 11.2276 0.1144 10895 +10897 2 -497.1633526849118 -231.27345459433275 11.2014 0.1144 10896 +10898 2 -498.28257032686 -231.0338960838351 11.1645 0.1144 10897 +10899 2 -499.2665456701993 -230.51099895848415 11.1103 0.1144 10898 +10900 2 -499.6811641910207 -229.5120158444167 11.0347 0.1144 10899 +10901 2 -499.6697551350344 -228.37545673753243 10.9364 0.1144 10900 +10902 2 -499.4861474498115 -227.24737596120164 10.8156 0.1144 10901 +10903 2 -499.0384646128135 -226.24015280446946 10.5984 0.1144 10902 +10904 2 -498.5841710950169 -225.31699098783713 10.214 0.1144 10903 +10905 2 -498.72160428525785 -224.18236985361648 9.8899 0.1144 10904 +10906 2 -498.0272311779647 -223.5709644334016 9.56 0.1144 10905 +10907 2 -497.97530784250614 -222.87202056066587 9.5899 0.1144 10906 +10908 2 -498.3057060249863 -221.942369867656 9.602 0.1144 10907 +10909 2 -497.695994034267 -221.01732702087907 9.6196 0.1144 10908 +10910 2 -498.430341515383 -220.3344543336389 9.6435 0.1144 10909 +10911 2 -498.8168734103683 -219.27481323205822 9.6738 0.1144 10910 +10912 2 -499.043233494888 -218.15324765121312 9.7104 0.1144 10911 +10913 2 -499.23486953103725 -217.03408424953804 9.798 0.1144 10912 +10914 2 -499.5049687844704 -215.92724738563496 9.9051 0.1144 10913 +10915 2 -499.36336640694196 -214.79769891536986 9.991 0.1144 10914 +10916 2 -498.6355267805892 -213.9257954297072 10.0543 0.1144 10915 +10917 2 -497.4990901593689 -213.84492710494783 10.1226 0.1144 10916 +10918 2 -499.17919022408813 -223.93824413070953 9.6225 0.1144 10905 +10919 2 -500.20914230576216 -223.44210124861272 9.4071 0.1144 10918 +10920 2 -501.18677463014654 -222.8754208375178 9.2189 0.1144 10919 +10921 2 -501.9057901213281 -222.1529179839311 8.9411 0.1144 10920 +10922 2 -502.29859447278824 -221.1369893095282 8.7432 0.1144 10921 +10923 2 -503.2980306035199 -220.59220419538877 8.5882 0.1144 10922 +10924 2 -504.37308118052545 -220.2045554408696 8.4709 0.1144 10923 +10925 2 -505.3490060893405 -219.64282121336137 8.3865 0.1144 10924 +10926 2 -506.0126290655372 -218.73006095707075 8.3308 0.1144 10925 +10927 2 -506.32554336566227 -217.64028433281362 8.2956 0.1144 10926 +10928 2 -506.3400075511661 -216.5070320937522 8.2311 0.1144 10927 +10929 2 -506.11503889322455 -215.4104017535993 8.1164 0.1144 10928 +10930 2 -505.4947483440998 -214.53950125717824 8.0255 0.1144 10929 +10931 2 -504.4273314254047 -214.35447895667468 7.9573 0.1144 10930 +10932 2 -503.4439952803783 -214.23433310412642 7.9099 0.1144 10931 +10933 2 -502.7663706905717 -213.32371450378406 7.8816 0.1144 10932 +10934 2 -501.9516784878 -212.59630354377384 7.8701 0.1144 10933 +10935 2 -501.06733222046904 -211.90452643410788 7.8689 0.1144 10934 +10936 2 -500.54359160230416 -210.91814515646502 7.8672 0.1144 10935 +10937 2 -500.9989682645231 -210.17564485646085 7.8649 0.1144 10936 +10938 2 -502.1091425496333 -209.9999900054601 7.8618 0.1144 10937 +10939 2 -503.11492475416685 -209.53130303418433 7.8572 0.1144 10938 +10940 2 -503.8067691693656 -208.64858325692873 7.8508 0.1144 10939 +10941 2 -504.27238898094186 -207.60685615683593 7.842 0.1144 10940 +10942 2 -504.5926017133854 -206.50981159712967 7.8302 0.1144 10941 +10943 2 -505.2191388237385 -205.57922527692594 7.8131 0.1144 10942 +10944 2 -505.7017609360689 -204.55613072279627 7.7865 0.1144 10943 +10945 2 -505.76719571335786 -203.42857135410603 7.7523 0.1144 10944 +10946 2 -505.6352941494182 -202.29260850813344 7.7125 0.1144 10945 +10947 2 -505.39084995088615 -201.17656262475583 7.6607 0.1144 10946 +10948 2 -504.4665960845232 -200.6326290253956 7.5373 0.1144 10947 +10949 2 -503.4253776929238 -201.1061208531976 7.3108 0.1144 10948 +10950 2 -464.89631951653075 -271.2536861658307 14.7373 0.1144 9704 +10951 2 -463.81518016455345 -271.4423418882624 15.2507 0.1144 10950 +10952 2 -462.75405281881274 -271.6981440894282 15.8483 0.1144 10951 +10953 2 -461.71056785548205 -272.0721410296601 16.4622 0.1144 10952 +10954 2 -460.9113569026001 -272.4951570255674 17.2438 0.1144 10953 +10955 2 -460.189942785282 -273.1812387782282 18.0644 0.1144 10954 +10956 2 -459.25189630831335 -273.7875294239144 18.7486 0.1144 10955 +10957 2 -458.52944515185084 -274.59742367412616 19.3183 0.1144 10956 +10958 2 -457.63513478894873 -275.1861281796346 19.838 0.1144 10957 +10959 2 -456.57721862361757 -275.1240211982964 20.3675 0.1144 10958 +10960 2 -455.4808688275119 -274.84347869781016 20.7917 0.1144 10959 +10961 2 -454.60378398173555 -274.16211128348107 21.2026 0.1144 10960 +10962 2 -453.5162134336574 -273.94381269678615 21.6309 0.1144 10961 +10963 2 -452.41764743793016 -273.9787772936198 22.0543 0.1144 10962 +10964 2 -451.2780728119558 -273.8769012815493 22.3814 0.1144 10963 +10965 2 -450.13919274748173 -273.84856599006486 22.6347 0.1144 10964 +10966 2 -449.04072199749623 -273.80426394241135 22.8427 0.1144 10965 +10967 2 -448.06769029165196 -273.35561713319294 23.0857 0.1144 10966 +10968 2 -447.0558992977826 -273.28314151850157 23.4278 0.1144 10967 +10969 2 -445.918489888104 -273.2953973242488 23.7152 0.1144 10968 +10970 2 -444.7870745623567 -273.14658640171916 23.937 0.1144 10969 +10971 2 -443.6598569710237 -272.951680804597 24.0992 0.1144 10970 +10972 2 -442.5293425787957 -272.77784013339124 24.2087 0.1144 10971 +10973 2 -441.3955248717782 -272.62817565112 24.2735 0.1144 10972 +10974 2 -440.2558078283847 -272.5943231623137 24.3163 0.1144 10973 +10975 2 -439.14145623880177 -272.8063146357131 24.3722 0.1144 10974 +10976 2 -438.10428359545637 -273.27253171808536 24.4493 0.1144 10975 +10977 2 -437.0718113983546 -273.75650706065153 24.5493 0.1144 10976 +10978 2 -436.0051127280487 -273.6337117970311 24.6733 0.1144 10977 +10979 2 -434.9505066874875 -273.54417594269364 24.9207 0.1144 10978 +10980 2 -433.9296664666576 -273.8761473473897 25.2795 0.1144 10979 +10981 2 -432.84026250178374 -274.1958129403414 25.6014 0.1144 10980 +10982 2 -431.7030023195048 -274.1367925387598 25.8679 0.1144 10981 +10983 2 -430.6321431651196 -274.4475873930759 26.1646 0.1144 10982 +10984 2 -429.4936939575359 -274.55119941820817 26.398 0.1144 10983 +10985 2 -428.385251033499 -274.271409418114 26.5779 0.1144 10984 +10986 2 -427.7276309396617 -273.4990723788744 26.4312 0.1144 10985 +10987 2 -427.3779689845054 -272.4168181171058 25.889 0.1144 10986 +10988 2 -426.8291209491177 -271.4328591524884 25.6399 0.1144 10987 +10989 2 -426.5232289558304 -270.3506258188479 25.3456 0.1144 10988 +10990 2 -426.9419705973662 -269.3411861338523 24.9483 0.1144 10989 +10991 2 -427.5793475596598 -268.60316810701465 24.3684 0.1144 10990 +10992 2 -427.44295365562584 -267.65401387669044 23.7874 0.1144 10991 +10993 2 -426.90227478529255 -266.65218217466895 23.2923 0.1144 10992 +10994 2 -426.00165127557716 -266.00074687185844 22.8991 0.1144 10993 +10995 2 -425.2200593898614 -265.30345731637715 22.4468 0.1144 10994 +10996 2 -424.14489275201583 -265.00351368689985 22.0942 0.1144 10995 +10997 2 -423.02496372817393 -264.7722779812736 21.8417 0.1144 10996 +10998 2 -422.31543154523496 -264.0386525036804 21.4867 0.1144 10997 +10999 2 -422.4760308100583 -263.86263592452315 21.2262 0.1144 10998 +11000 2 -423.18487447116433 -262.966233836111 21.0507 0.1144 10999 +11001 2 -423.6618483281403 -261.9390262281945 20.9548 0.1144 11000 +11002 2 -424.0694015303979 -260.8697417537306 20.9087 0.1144 11001 +11003 2 -424.66999178193396 -259.90346285001806 20.9052 0.1144 11002 +11004 2 -425.20928642697567 -258.8983060782509 20.9402 0.1144 11003 +11005 2 -425.8502757239723 -257.954739222572 20.9822 0.1144 11004 +11006 2 -426.3991292633699 -256.97717968868636 21.0955 0.1144 11005 +11007 2 -426.65790476617235 -255.8751274534682 21.2078 0.1144 11006 +11008 2 -426.6562605723605 -254.73533609246098 21.3006 0.1144 11007 +11009 2 -426.9675486784963 -253.64548535269046 21.3763 0.1144 11008 +11010 2 -427.0095899680262 -252.51229085042056 21.4399 0.1144 11009 +11011 2 -426.3489071834214 -251.61542562190138 21.4966 0.1144 11010 +11012 2 -425.58305026083633 -250.76529218876945 21.5512 0.1144 11011 +11013 2 -424.7765949328527 -249.95389400417278 21.6193 0.1144 11012 +11014 2 -423.86877810138793 -249.2595221653794 21.7083 0.1144 11013 +11015 2 -423.6219446433603 -248.1701292638062 21.8828 0.1144 11014 +11016 2 -423.1621792435454 -247.1248383822172 22.0918 0.1144 11015 +11017 2 -422.6855020372116 -246.08523967071272 22.3118 0.1144 11016 +11018 2 -422.80008149975754 -245.43020226967158 22.555 0.1144 11017 +11019 2 -423.0973785709093 -244.50458350285413 22.9061 0.1144 11018 +11020 2 -423.67990905260535 -243.65324260292343 23.3708 0.1144 11019 +11021 2 -424.07443443959585 -242.62586237680458 23.8797 0.1144 11020 +11022 2 -424.41316779745273 -241.56527267184086 24.3639 0.1144 11021 +11023 2 -424.8255091814285 -240.5056148954522 24.7564 0.1144 11022 +11024 2 -425.22724171222967 -239.4807953485582 25.1454 0.1144 11023 +11025 2 -425.2440911999952 -238.39032815750562 25.4989 0.1144 11024 +11026 2 -425.2189388391136 -237.2659025402494 25.8121 0.1144 11025 +11027 2 -424.9946891298479 -236.16361683867552 26.0592 0.1144 11026 +11028 2 -424.7293751120177 -235.05240630869352 26.2319 0.1144 11027 +11029 2 -424.2363906646165 -234.03370386213683 26.3447 0.1144 11028 +11030 2 -423.5361182774623 -233.13279594021066 26.4036 0.1144 11029 +11031 2 -423.32645486771946 -232.05479459298746 26.4287 0.1144 11030 +11032 2 -423.1281998892349 -230.9315621978412 26.4363 0.1144 11031 +11033 2 -423.29626726276206 -229.82288536577707 26.4382 0.1144 11032 +11034 2 -424.0560031468198 -229.00338179258472 26.4399 0.1144 11033 +11035 2 -424.66230895924303 -228.04284243273435 26.4435 0.1144 11034 +11036 2 -425.1627601903333 -227.0149768698808 26.4531 0.1144 11035 +11037 2 -425.25570121308226 -225.8875458004622 26.4731 0.1144 11036 +11038 2 -425.1520450711196 -224.77016832877536 26.4415 0.1144 11037 +11039 2 -425.222446461937 -223.63455832346057 26.449 0.1144 11038 +11040 2 -425.22151440682046 -222.49236428509704 26.53 0.1144 11039 +11041 2 -425.53038295869163 -221.40986240626953 26.7193 0.1144 11040 +11042 2 -426.08577946915455 -220.41435601946648 26.9441 0.1144 11041 +11043 2 -426.3573186784135 -219.39654710919157 27.3397 0.1144 11042 +11044 2 -426.6715786849953 -218.4070412636994 27.8727 0.1144 11043 +11045 2 -427.2746454333151 -217.43998972573928 28.3102 0.1144 11044 +11046 2 -427.3668506304798 -216.32627501738 28.7283 0.1144 11045 +11047 2 -428.28683813188104 -215.80076904475402 29.1421 0.1144 11046 +11048 2 -429.38189971875016 -215.54829058831936 28.9134 0.1144 11047 +11049 2 -430.4914944177567 -215.2779527183556 28.8291 0.1144 11048 +11050 2 -431.5906496248438 -214.9615602394101 28.7633 0.1144 11049 +11051 2 -432.6472773788382 -214.5245167524562 28.7143 0.1144 11050 +11052 2 -433.6119969714668 -213.910998735118 28.6807 0.1144 11051 +11053 2 -434.20454310027276 -212.93664195485886 28.6602 0.1144 11052 +11054 2 -434.8003451700906 -211.9607363530711 28.6502 0.1144 11053 +11055 2 -435.56410687064704 -211.10970417696774 28.6381 0.1144 11054 +11056 2 -436.5884880694274 -210.6062664155858 28.6216 0.1144 11055 +11057 2 -436.53474179321677 -209.629707995524 28.975 0.1144 11056 +11058 2 -436.29269947776856 -208.5485275815632 29.1858 0.1144 11057 +11059 2 -435.47575708198747 -207.74757264401967 29.2614 0.1144 11058 +11060 2 -434.6319560326697 -206.9749165179388 29.339 0.1144 11059 +11061 2 -433.76072235521906 -206.2345178082722 29.4241 0.1144 11060 +11062 2 -432.8894213722357 -205.49249260853028 29.5212 0.1144 11061 +11063 2 -432.048947122496 -204.71821709844065 29.6321 0.1144 11062 +11064 2 -431.32435011328005 -203.85112873833236 29.7741 0.1144 11063 +11065 2 -430.8612637274948 -202.87222837603784 30.0544 0.1144 11064 +11066 2 -430.3617364030142 -201.90520184998113 30.406 0.1144 11065 +11067 2 -429.7028249885785 -200.97284349187714 30.7042 0.1144 11066 +11068 2 -429.0430635674346 -200.0411904624879 30.9369 0.1144 11067 +11069 2 -428.3841524490851 -199.10869068333758 31.0948 0.1144 11068 +11070 2 -427.72517047216934 -198.1762614666674 31.1696 0.1144 11069 +11071 2 -427.0662593538198 -197.2437616875171 31.1578 0.1144 11070 +11072 2 -426.4687181595785 -196.3146430938033 31.0268 0.1144 11071 +11073 2 -426.0200933270777 -195.38583627876392 30.6852 0.1144 11072 +11074 2 -425.41128907985825 -194.43251099924615 30.3019 0.1144 11073 +11075 2 -424.80493744043326 -193.5235972578127 29.8332 0.1144 11074 +11076 2 -424.08045930733306 -192.9712430646905 29.2916 0.1144 11075 +11077 2 -423.3807368737122 -193.76654775843227 28.8422 0.1144 11076 +11078 2 -422.80188312299055 -194.75309546902488 28.5228 0.1144 11077 +11079 2 -422.18906187551033 -195.71842952448796 28.3153 0.1144 11078 +11080 2 -421.5658578765293 -196.67815568629354 28.1789 0.1144 11079 +11081 2 -420.9854520473318 -197.66300308738346 28.0938 0.1144 11080 +11082 2 -420.41867454763303 -198.6568592972223 28.0302 0.1144 11081 +11083 2 -419.74936956226543 -199.581628499003 27.9492 0.1144 11082 +11084 2 -418.74051715669714 -199.99692236336776 27.8231 0.1144 11083 +11085 2 -417.62372188428924 -199.85627379591207 27.6498 0.1144 11084 +11086 2 -416.50535835678386 -199.65410352028806 27.4452 0.1144 11085 +11087 2 -415.3862859475305 -199.45278029051124 27.2261 0.1144 11086 +11088 2 -414.26792242002523 -199.25061001488726 27.008 0.1144 11087 +11089 2 -413.21394339586027 -198.82781531693053 26.8148 0.1144 11088 +11090 2 -412.70891269611917 -197.8212499130352 26.689 0.1144 11089 +11091 2 -412.39407584868286 -196.7220979628953 26.6268 0.1144 11090 +11092 2 -412.00076877188167 -195.64774264767684 26.6177 0.1144 11091 +11093 2 -411.63251157761215 -194.56467163483018 26.65 0.1144 11092 +11094 2 -411.24734287291005 -193.48715137102158 26.7128 0.1144 11093 +11095 2 -410.61504082163464 -192.5442420986348 26.8385 0.1144 11094 +11096 2 -410.0734806534512 -191.5918354238172 27.0707 0.1144 11095 +11097 2 -409.1867796747138 -190.87643596595743 27.2588 0.1144 11096 +11098 2 -408.1279386494033 -190.44549934286843 27.4002 0.1144 11097 +11099 2 -407.0251507907013 -190.16656971249643 27.5381 0.1144 11098 +11100 2 -405.94359396222353 -189.81159967605225 27.6639 0.1144 11099 +11101 2 -404.99839034744116 -189.20935648879117 27.5559 0.1144 11100 +11102 2 -437.7529876295948 -210.75910641156125 28.5642 0.1144 11056 +11103 2 -438.8720527306813 -210.99769423507792 28.5177 0.1144 11102 +11104 2 -440.01283325886874 -210.92887682079623 28.4567 0.1144 11103 +11105 2 -441.15670086499927 -210.90539151378712 28.3755 0.1144 11104 +11106 2 -441.06183768009566 -210.62051108948606 28.5827 0.1144 11105 +11107 2 -440.9766045442003 -210.3630159195402 28.3122 0.1144 11106 +11108 2 -440.62049445951993 -209.28718284345968 28.1792 0.1144 11107 +11109 2 -440.2846226848503 -208.20417963433226 28.0109 0.1144 11108 +11110 2 -440.0637234620515 -207.08896086504663 27.8433 0.1144 11109 +11111 2 -439.95042039417217 -205.952259138643 27.7164 0.1144 11110 +11112 2 -439.7198440446735 -204.8321410613619 27.6271 0.1144 11111 +11113 2 -439.4584242871231 -203.71846380543798 27.5717 0.1144 11112 +11114 2 -439.20598965143273 -202.60247190371828 27.5434 0.1144 11113 +11115 2 -438.88952305697387 -201.5049428906204 27.5291 0.1144 11114 +11116 2 -438.6321485494908 -200.41800279894198 27.5195 0.1144 11115 +11117 2 -438.92559391690554 -199.33942843602452 27.5094 0.1144 11116 +11118 2 -439.57153265443617 -198.3960133644058 27.4899 0.1144 11117 +11119 2 -440.32395017442013 -197.55952386918122 27.4369 0.1144 11118 +11120 2 -441.3054525740092 -197.03570232552244 27.3953 0.1144 11119 +11121 2 -442.4085345967196 -196.8026154293374 27.4206 0.1144 11120 +11122 2 -443.53815738459843 -196.62551636919088 27.4415 0.1144 11121 +11123 2 -444.6502016365526 -196.36727518019163 27.456 0.1144 11122 +11124 2 -445.7212470291013 -195.96752648776075 27.4626 0.1144 11123 +11125 2 -446.66248569458224 -195.35636347791515 27.4595 0.1144 11124 +11126 2 -447.0147355553739 -194.39196880477954 27.4413 0.1144 11125 +11127 2 -446.63029211114167 -193.33955240516062 27.3862 0.1144 11126 +11128 2 -445.8707953805059 -192.52499983708802 27.2962 0.1144 11127 +11129 2 -444.9354614423811 -191.86946134531817 27.2139 0.1144 11128 +11130 2 -444.24727191412995 -191.0064797272026 27.1595 0.1144 11129 +11131 2 -443.6230981680259 -190.0652138217994 27.1343 0.1144 11130 +11132 2 -442.86609530926853 -189.20781571016565 27.1404 0.1144 11131 +11133 2 -442.0847915153382 -188.37292347664675 27.1784 0.1144 11132 +11134 2 -441.2775567431264 -187.56230147933107 27.244 0.1144 11133 +11135 2 -440.42411211882506 -186.80249453460684 27.3296 0.1144 11134 +11136 2 -439.4951043227468 -186.1988003282194 27.4984 0.1144 11135 +11137 2 -438.58802261657945 -185.55859452667067 27.7351 0.1144 11136 +11138 2 -437.73372087950315 -184.80288701577211 27.9523 0.1144 11137 +11139 2 -436.81372268644634 -184.15141114916452 28.1722 0.1144 11138 +11140 2 -435.76545270927414 -183.73746725808826 28.3718 0.1144 11139 +11141 2 -434.7171764203078 -183.29276414140148 28.5127 0.1144 11140 +11142 2 -433.832857392899 -182.58797629547712 28.597 0.1144 11141 +11143 2 -432.85599312080035 -182.04478107836152 28.6412 0.1144 11142 +11144 2 -431.7367891553281 -181.8725197255537 28.6628 0.1144 11143 +11145 2 -430.6054512020414 -181.72052697752562 28.6667 0.1144 11144 +11146 2 -429.5465559929727 -181.3154704059072 28.6622 0.1144 11145 +11147 2 -428.513794675157 -180.8229992489614 28.6549 0.1144 11146 +11148 2 -427.4207653668352 -180.51007813885582 28.6451 0.1144 11147 +11149 2 -426.3481064229295 -180.12691310905925 28.6306 0.1144 11148 +11150 2 -425.2649334673903 -179.76706064152793 28.6098 0.1144 11149 +11151 2 -424.14340824824205 -179.5551963622957 28.5827 0.1144 11150 +11152 2 -423.06773091345565 -179.83691897662897 28.5494 0.1144 11151 +11153 2 -421.9934565237311 -180.22534717537624 28.4953 0.1144 11152 +11154 2 -420.8779255340997 -180.2238601744146 28.3903 0.1144 11153 +11155 2 -419.7396356208434 -180.25138767664424 28.2904 0.1144 11154 +11156 2 -418.6172598968005 -180.074240635802 28.2128 0.1144 11155 +11157 2 -417.55520980606934 -179.65623737651083 28.1557 0.1144 11156 +11158 2 -416.68309858590226 -178.92969615286373 28.1168 0.1144 11157 +11159 2 -416.1569860833366 -177.92789494771168 28.093 0.1144 11158 +11160 2 -415.7441457291534 -176.86170119329464 28.0792 0.1144 11159 +11161 2 -415.5871975396292 -175.7328984134411 28.0636 0.1144 11160 +11162 2 -416.04316341320794 -174.70897023132503 28.0423 0.1144 11161 +11163 2 -416.4571413541869 -173.64443683382976 28.0148 0.1144 11162 +11164 2 -416.7562959706946 -172.54084278916386 27.9671 0.1144 11163 +11165 2 -416.78703719648263 -171.4011192318759 27.9029 0.1144 11164 +11166 2 -416.4600194856406 -170.3108513442466 27.8262 0.1144 11165 +11167 2 -416.0594240434487 -169.23895564890347 27.7406 0.1144 11166 +11168 2 -416.0755989014691 -168.09920159474615 27.6495 0.1144 11167 +11169 2 -416.36329366172106 -167.09917492763998 26.9934 0.1144 11168 +11170 2 -441.4139148661699 -210.14387938151233 28.604 0.1144 11106 +11171 2 -442.09205022847635 -209.22315918493277 29.1063 0.1144 11170 +11172 2 -442.7638251967332 -208.30072861192272 29.2992 0.1144 11171 +11173 2 -443.38216314334886 -207.3685694872154 29.6092 0.1144 11172 +11174 2 -443.9988748959753 -206.43633624699467 30.0096 0.1144 11173 +11175 2 -444.61728370115713 -205.50410655980727 30.4755 0.1144 11174 +11176 2 -445.2347748980118 -204.57109713230562 30.9837 0.1144 11175 +11177 2 -445.6882842065621 -203.5721954419185 31.5031 0.1144 11176 +11178 2 -445.82817375973127 -202.44641830459776 31.9987 0.1144 11177 +11179 2 -445.9680630168142 -201.32078258832325 32.475 0.1144 11178 +11180 2 -446.1088028727778 -200.19415870124143 32.9518 0.1144 11179 +11181 2 -446.24939775466163 -199.06923157062897 33.446 0.1144 11180 +11182 2 -446.4305837337772 -197.94283378522098 33.9382 0.1144 11181 +11183 2 -446.6343232608715 -196.81796814653367 34.4308 0.1144 11182 +11184 2 -446.63693142690374 -195.97750464496448 35.2338 0.1144 11183 +11185 2 -447.10748779681046 -195.3135958615159 36.1911 0.1144 11184 +11186 2 -448.09050426773865 -194.87717607749607 37.1557 0.1144 11185 +11187 2 -449.1570162582095 -194.7176225937302 38.0999 0.1144 11186 +11188 2 -450.22345768620033 -194.55799825139806 38.99 0.1144 11187 +11189 2 -451.02579878096805 -194.6325809413931 41.0525 0.1144 11188 +11190 2 -441.4247649115796 -211.54744142378712 28.2248 0.1144 11105 +11191 2 -442.0366668018563 -212.5072785853285 28.0297 0.1144 11190 +11192 2 -442.8869227906787 -213.27026084165672 27.8321 0.1144 11191 +11193 2 -443.84417215961446 -213.89437889593165 27.6231 0.1144 11192 +11194 2 -444.506769229994 -214.65371556192667 27.2456 0.1144 11193 +11195 2 -445.4308779201771 -215.2332164063851 26.871 0.1144 11194 +11196 2 -446.53209652740895 -215.51864814793913 26.5452 0.1144 11195 +11197 2 -447.6295171164754 -215.65925615159762 26.2714 0.1144 11196 +11198 2 -448.7294684425987 -215.3678969743617 26.0816 0.1144 11197 +11199 2 -449.7932527096789 -214.95759716554772 25.9836 0.1144 11198 +11200 2 -450.8979914232479 -214.71001801710852 25.9553 0.1144 11199 +11201 2 -452.0371626343544 -214.63306548767508 25.9266 0.1144 11200 +11202 2 -453.1514332984433 -214.42595289232958 25.9061 0.1144 11201 +11203 2 -454.13058750052033 -213.8753977374586 25.8927 0.1144 11202 +11204 2 -454.9435982591451 -213.07552189311755 25.8798 0.1144 11203 +11205 2 -455.9097407285908 -212.59296331767482 25.8675 0.1144 11204 +11206 2 -456.8863470771316 -212.07726326920675 25.8585 0.1144 11205 +11207 2 -457.9161766731417 -211.67339776785553 25.8527 0.1144 11206 +11208 2 -459.0190696424129 -211.90212292679553 25.8453 0.1144 11207 +11209 2 -460.14064173715235 -212.12537174829689 25.8357 0.1144 11208 +11210 2 -461.2752560613925 -212.2660576226025 25.8272 0.1144 11209 +11211 2 -462.39183459876756 -212.51022639594055 25.8231 0.1144 11210 +11212 2 -463.5096759808746 -212.59027796962178 25.7593 0.1144 11211 +11213 2 -464.63038139409787 -212.78842263084738 25.7151 0.1144 11212 +11214 2 -465.4117701647418 -213.5827270240818 25.7086 0.1144 11213 +11215 2 -465.53005692515814 -214.66944662559374 25.824 0.1144 11214 +11216 2 -466.1758651728692 -215.30818617125246 25.9575 0.1144 11215 +11217 2 -466.89072406164655 -216.19950795890043 26.1111 0.1144 11216 +11218 2 -467.399756392811 -217.219870353263 26.2842 0.1144 11217 +11219 2 -467.89186359358166 -218.25228886479292 26.4774 0.1144 11218 +11220 2 -468.11718083886103 -219.21619570104826 26.8509 0.1144 11219 +11221 2 -468.43291911800304 -220.25630599283676 27.2751 0.1144 11220 +11222 2 -468.7193822441908 -221.36437881415077 27.6059 0.1144 11221 +11223 2 -468.99856055802104 -222.47321420278467 27.8483 0.1144 11222 +11224 2 -469.2518454965058 -223.58835935474326 28.0092 0.1144 11223 +11225 2 -469.32058879527403 -224.73076607691996 28.0963 0.1144 11224 +11226 2 -469.7637917327096 -225.1758287312154 28.1207 0.1144 11225 +11227 2 -470.58888286360366 -225.96866898354875 28.1218 0.1144 11226 +11228 2 -471.22188017666593 -226.9172365782176 28.1232 0.1144 11227 +11229 2 -471.8071457599463 -227.90049396925394 28.1254 0.1144 11228 +11230 2 -472.25629273784523 -228.95141948623606 28.1282 0.1144 11229 +11231 2 -472.67550029605866 -230.0160709330189 28.1324 0.1144 11230 +11232 2 -473.05430179673067 -231.09513350446161 28.138 0.1144 11231 +11233 2 -473.14172451705326 -232.23192246815344 28.1456 0.1144 11232 +11234 2 -472.9007411222469 -233.34688132543363 28.1565 0.1144 11233 +11235 2 -473.05373455593906 -234.47327165708916 28.1728 0.1144 11234 +11236 2 -473.5052907250887 -235.52179804974836 28.1949 0.1144 11235 +11237 2 -474.13991097519306 -236.47199539143978 28.2237 0.1144 11236 +11238 2 -474.7421689944001 -237.44482315538409 28.2582 0.1144 11237 +11239 2 -475.2172973792052 -238.48116592587675 28.3262 0.1144 11238 +11240 2 -476.0448314551666 -239.2554850546104 28.4393 0.1144 11239 +11241 2 -476.7855403967315 -240.1274154841091 28.5292 0.1144 11240 +11242 2 -477.52957939482167 -240.99617089808987 28.5967 0.1144 11241 +11243 2 -478.3717506971169 -241.77044996121276 28.6429 0.1144 11242 +11244 2 -479.2380918765525 -242.51727311351468 28.67 0.1144 11243 +11245 2 -480.1442721510141 -243.2165205734147 28.6804 0.1144 11244 +11246 2 -480.87853622000216 -244.09331655709227 28.6804 0.1144 11245 +11247 2 -481.5172594569655 -245.0426739590032 28.6804 0.1144 11246 +11248 2 -482.1680926987684 -245.98321786088357 28.6804 0.1144 11247 +11249 2 -482.6452401838314 -246.83196901846634 28.6804 0.1144 11248 +11250 2 -483.53524477344445 -247.5230508663452 28.6804 0.1144 11249 +11251 2 -484.58585969118144 -247.96528400014276 28.6804 0.1144 11250 +11252 2 -485.70252241099763 -248.20301826391778 28.6804 0.1144 11251 +11253 2 -486.82407762882883 -248.43432808505756 28.6804 0.1144 11252 +11254 2 -487.96372331546974 -248.5022630460191 28.6804 0.1144 11253 +11255 2 -489.03872740204054 -248.87984682990813 28.6804 0.1144 11254 +11256 2 -489.9011206356246 -249.62100484994738 28.6804 0.1144 11255 +11257 2 -490.3746257873015 -250.65585929446382 28.6804 0.1144 11256 +11258 2 -490.8084133332436 -251.71403586998684 28.6804 0.1144 11257 +11259 2 -491.2268450002622 -252.77776645149513 28.6804 0.1144 11258 +11260 2 -491.6736533493904 -253.8311619513665 28.6804 0.1144 11259 +11261 2 -492.0790606601894 -254.90137066108196 28.6804 0.1144 11260 +11262 2 -492.3104873124825 -256.02064198860194 28.6804 0.1144 11261 +11263 2 -492.6390502918198 -257.11586286979855 28.6804 0.1144 11262 +11264 2 -492.9992396764703 -258.20216968980156 28.6804 0.1144 11263 +11265 2 -493.40146486568483 -259.2724424481026 28.6804 0.1144 11264 +11266 2 -493.37475251124243 -260.41295225959925 28.6804 0.1144 11265 +11267 2 -493.1645111690523 -261.53610722577 28.6804 0.1144 11266 +11268 2 -493.20907146890545 -262.6784633172218 28.6804 0.1144 11267 +11269 2 -492.7789110330974 -263.73808378676057 28.6804 0.1144 11268 +11270 2 -492.3762334519465 -264.80900481822755 28.6804 0.1144 11269 +11271 2 -492.0083905472568 -265.89223175542475 28.6804 0.1144 11270 +11272 2 -491.64040622152095 -266.97545839653577 28.6804 0.1144 11271 +11273 2 -482.21234050614885 -245.3159416575449 29.6374 0.1144 11248 +11274 2 -482.1443325347783 -244.1938304839841 30.172 0.1144 11273 +11275 2 -481.8108392523897 -243.1568650069302 30.4548 0.1144 11274 +11276 2 -481.2708589007907 -242.1591359956816 30.7504 0.1144 11275 +11277 2 -480.755321201497 -241.13875998135796 31.0153 0.1144 11276 +11278 2 -480.5279198675162 -240.02197196060217 31.25 0.1144 11277 +11279 2 -480.2300006402063 -238.9818989756635 31.5767 0.1144 11278 +11280 2 -479.80338953910524 -237.97471993576184 31.9466 0.1144 11279 +11281 2 -479.130674620308 -237.04947447209952 32.2148 0.1144 11280 +11282 2 -478.5259365512841 -236.07911639495833 32.4078 0.1144 11281 +11283 2 -477.9019415330762 -235.1200317338091 32.6169 0.1144 11282 +11284 2 -468.969602630002 -225.09157572450104 28.1182 0.1144 11225 +11285 2 -468.06138315398266 -225.77160950555836 28.0918 0.1144 11284 +11286 2 -467.0579786474576 -226.32048753962906 28.0815 0.1144 11285 +11287 2 -466.01430418901623 -226.7849939494849 28.0669 0.1144 11286 +11288 2 -465.03911460759883 -227.3670237256089 28.047 0.1144 11287 +11289 2 -464.13248431480497 -228.06480925296563 28.0182 0.1144 11288 +11290 2 -463.2742427103573 -228.8194061774194 27.9766 0.1144 11289 +11291 2 -462.5338540676185 -229.6858315392962 27.9203 0.1144 11290 +11292 2 -461.9946403480708 -230.68610943300956 27.8475 0.1144 11291 +11293 2 -461.6509703753686 -231.7741953165053 27.7581 0.1144 11292 +11294 2 -461.42707416404426 -232.8334698118816 27.552 0.1144 11293 +11295 2 -460.7005968059265 -232.89827558432697 27.308 0.1144 11294 +11296 2 -459.58390684618814 -232.67355205681042 27.1055 0.1144 11295 +11297 2 -458.4556968307278 -232.5473753116673 26.896 0.1144 11296 +11298 2 -457.33822742676125 -232.3234279714317 26.7091 0.1144 11297 +11299 2 -456.4417174690189 -231.63233250359175 26.5794 0.1144 11298 +11300 2 -455.66530291615635 -230.79257145894675 26.5049 0.1144 11299 +11301 2 -454.6893836944075 -230.20327475725813 26.4625 0.1144 11300 +11302 2 -453.6849491282634 -229.65676911928637 26.4388 0.1144 11301 +11303 2 -452.5683637809078 -229.41585303001295 26.4317 0.1144 11302 +11304 2 -451.4245503585355 -229.41345828555143 26.4312 0.1144 11303 +11305 2 -465.42802522830834 -215.47809422673896 25.9649 0.1144 11215 +11306 2 -465.28649230815563 -216.61199966923098 26.0383 0.1144 11305 +11307 2 -465.14503024656904 -217.74583454924291 26.0741 0.1144 11306 +11308 2 -465.001871132427 -218.87966587622154 26.1097 0.1144 11307 +11309 2 -464.9323772830091 -220.0208639374244 26.1159 0.1144 11308 +11310 2 -464.9161956150082 -221.1638706756463 26.0765 0.1144 11309 +11311 2 -464.90326663107186 -222.30688422384873 25.9957 0.1144 11310 +11312 2 -464.8896323184208 -223.44904776534295 25.8796 0.1144 11311 +11313 2 -464.8759238902563 -224.59283750082636 25.7377 0.1144 11312 +11314 2 -464.8540299183154 -225.72854906367698 25.5519 0.1144 11313 +11315 2 -464.8314979231926 -226.8650371098947 25.3385 0.1144 11314 +11316 2 -464.80967480981803 -228.00067811026528 25.1124 0.1144 11315 +11317 2 -464.8590466821921 -229.14148863713567 24.9106 0.1144 11316 +11318 2 -464.86874861869507 -230.28285250656037 24.7323 0.1144 11317 +11319 2 -464.8744889893853 -231.42505661185166 24.5791 0.1144 11318 +11320 2 -464.8793823142285 -232.56655183539488 24.4538 0.1144 11319 +11321 2 -465.2734759413245 -233.63673685822144 24.3734 0.1144 11320 +11322 2 -465.95108010118946 -234.55711351075763 24.3381 0.1144 11321 +11323 2 -466.4893397133442 -235.56615265267587 24.3346 0.1144 11322 +11324 2 -467.0543566235999 -236.56152991337905 24.3589 0.1144 11323 +11325 2 -467.2639288388208 -237.68308894285877 24.4231 0.1144 11324 +11326 2 -467.4734975010083 -238.80634502489394 24.5116 0.1144 11325 +11327 2 -467.6831402787093 -239.92797491293985 24.7439 0.1144 11326 +11328 2 -426.932000426572 -216.51868801112343 29.0237 0.1144 11046 +11329 2 -425.89481416326544 -216.99141046162498 29.239 0.1144 11328 +11330 2 -424.92140050142336 -217.46822623625846 29.4627 0.1144 11329 +11331 2 -423.9542850414191 -218.0777794308367 29.5565 0.1144 11330 +11332 2 -423.19864157910615 -218.93526328949753 29.5462 0.1144 11331 +11333 2 -422.3976972066768 -219.71338546002966 29.3426 0.1144 11332 +11334 2 -421.5065342151698 -220.38617173557952 28.996 0.1144 11333 +11335 2 -420.3681528113053 -220.457398341112 28.5939 0.1144 11334 +11336 2 -419.24798642038866 -220.3733113821907 28.0885 0.1144 11335 +11337 2 -418.1709706873123 -220.5174986240192 27.4657 0.1144 11336 +11338 2 -417.2459310084121 -220.34889648150565 26.6717 0.1144 11337 +11339 2 -416.40545670215755 -219.97993546659234 25.7733 0.1144 11338 +11340 2 -415.5823621075468 -220.15859553018421 24.7936 0.1144 11339 +11341 2 -414.6676773855239 -220.447938422438 23.9225 0.1144 11340 +11342 2 -413.5548436224137 -220.71176411429198 23.3093 0.1144 11341 +11343 2 -412.51521816917347 -221.16744014720896 22.9256 0.1144 11342 +11344 2 -411.5254758399496 -221.74293405833438 22.7321 0.1144 11343 +11345 2 -410.5357403207063 -222.3151752853952 22.6755 0.1144 11344 +11346 2 -409.4648569812457 -222.6712957330895 22.7201 0.1144 11345 +11347 2 -408.3455992736868 -222.89621701725332 22.819 0.1144 11346 +11348 2 -407.22556182581354 -223.12205590974443 22.9417 0.1144 11347 +11349 2 -406.11357836549786 -223.38503485183733 23.0691 0.1144 11348 +11350 2 -405.0046756713311 -223.66258667559228 23.1931 0.1144 11349 +11351 2 -403.88861291104524 -223.9150918737627 23.3208 0.1144 11350 +11352 2 -402.75429668900347 -224.037309501022 23.4651 0.1144 11351 +11353 2 -401.61118484021233 -224.0713323044531 23.643 0.1144 11352 +11354 2 -400.4690147848237 -224.0608092548204 23.8774 0.1144 11353 +11355 2 -399.3750704248352 -223.8134351711954 24.2101 0.1144 11354 +11356 2 -398.40869351662013 -223.25965528598041 24.6521 0.1144 11355 +11357 2 -397.6198371919737 -222.9586847408015 25.3426 0.1144 11356 +11358 2 -396.82404810135523 -222.49032713890674 26.1826 0.1144 11357 +11359 2 -395.93311889133406 -221.83558872340706 26.9456 0.1144 11358 +11360 2 -395.018840014298 -221.15428485947723 27.5816 0.1144 11359 +11361 2 -394.0623600226626 -220.53419893349508 28.1072 0.1144 11360 +11362 2 -392.98054609745515 -220.26825329764574 28.565 0.1144 11361 +11363 2 -392.09942557035265 -219.58935231317255 28.9139 0.1144 11362 +11364 2 -391.02703452786204 -219.48351573166218 29.2558 0.1144 11363 +11365 2 -389.992287567519 -219.16265560939576 29.6638 0.1144 11364 +11366 2 -389.0202621078636 -218.6049040914403 30.074 0.1144 11365 +11367 2 -388.08972316143746 -217.95573961368117 30.4486 0.1144 11366 +11368 2 -387.1211260588959 -217.3478612928405 30.744 0.1144 11367 +11369 2 -386.1070411077877 -216.81745752028996 30.9694 0.1144 11368 +11370 2 -385.00914624528707 -216.4980915376075 31.1399 0.1144 11369 +11371 2 -383.8778455988503 -216.32827973774727 31.2785 0.1144 11370 +11372 2 -382.7756713761546 -216.1277697060152 31.493 0.1144 11371 +11373 2 -383.0184964492932 -216.80130380600957 31.6949 0.1144 11372 +11374 2 -383.2208644815645 -217.9188879458016 31.911 0.1144 11373 +11375 2 -383.6807861208599 -218.85577944736823 32.2462 0.1144 11374 +11376 2 -384.67819998345715 -219.27690007937153 32.5842 0.1144 11375 +11377 2 -385.7060859762523 -219.76759325826802 32.8821 0.1144 11376 +11378 2 -386.56621894989917 -220.44001561634772 33.2441 0.1144 11377 +11379 2 -387.1815156455734 -221.3319774856517 33.6697 0.1144 11378 +11380 2 -387.3815117934439 -222.4341416979345 34.0242 0.1144 11379 +11381 2 -387.2812387866602 -223.55109221345015 34.3557 0.1144 11380 +11382 2 -387.303887410836 -224.68930120121243 34.6147 0.1144 11381 +11383 2 -387.43826547155936 -225.82449141293745 34.8009 0.1144 11382 +11384 2 -387.37923825999724 -226.965004279281 34.9255 0.1144 11383 +11385 2 -387.1439772360587 -228.08244999635875 35.0146 0.1144 11384 +11386 2 -387.0565970292756 -229.22198426063628 35.0941 0.1144 11385 +11387 2 -386.9757892000686 -230.36330005599652 35.1683 0.1144 11386 +11388 2 -386.76883153699885 -231.4378835547051 35.3556 0.1144 11387 +11389 2 -386.5650451343134 -232.5513646511232 35.5667 0.1144 11388 +11390 2 -386.3895815260655 -233.6802492963287 35.737 0.1144 11389 +11391 2 -386.21496466757867 -234.80998424432852 35.8515 0.1144 11390 +11392 2 -386.0426796278821 -235.94050189350378 35.9047 0.1144 11391 +11393 2 -385.86806276939524 -237.0702368415036 35.8952 0.1144 11392 +11394 2 -385.69422209818936 -238.20075123373158 35.8268 0.1144 11393 +11395 2 -385.53164468206194 -239.32160182313473 35.6588 0.1144 11394 +11396 2 -385.47122069164664 -240.01472432412737 35.1644 0.1144 11395 +11397 2 -385.4628591596909 -240.90127924334183 33.8848 0.1144 11396 +11398 2 -385.4685254148677 -242.04510954262238 33.8604 0.1144 11397 +11399 2 -385.50410384980796 -243.18822464836077 33.8509 0.1144 11398 +11400 2 -385.52928620937246 -244.33209580752455 33.838 0.1144 11399 +11401 2 -385.4209148961005 -245.46684849796407 33.8187 0.1144 11400 +11402 2 -385.2858840871297 -246.6023231919263 33.791 0.1144 11401 +11403 2 -385.37091478919604 -247.73330885925643 33.754 0.1144 11402 +11404 2 -386.072918683009 -248.55021593663514 33.7078 0.1144 11403 +11405 2 -387.07815312332286 -249.08618733513208 33.6529 0.1144 11404 +11406 2 -387.3784293465727 -248.62896336402954 33.4897 0.1144 11405 +11407 2 -386.4470091022965 -248.02922391347423 33.3528 0.1144 11406 +11408 2 -385.3073334169727 -247.94184341060514 33.2391 0.1144 11407 +11409 2 -384.164407806345 -247.88691237592144 33.1447 0.1144 11408 +11410 2 -383.0215530542836 -247.83191077875773 33.0644 0.1144 11409 +11411 2 -381.87862744365594 -247.77697974407408 32.9935 0.1144 11410 +11412 2 -380.7796754081555 -247.5910428900902 32.9207 0.1144 11411 +11413 2 -379.82646142445964 -246.96459982700563 32.8045 0.1144 11412 +11414 2 -378.87644318230946 -246.33158734720624 32.6528 0.1144 11413 +11415 2 -377.92727494686756 -245.69786953869203 32.4736 0.1144 11414 +11416 2 -376.97895375727273 -245.06486061192598 32.2734 0.1144 11415 +11417 2 -376.02900607760256 -244.43191899069276 32.0583 0.1144 11416 +11418 2 -375.08061402944156 -243.79898062640672 31.8335 0.1144 11417 +11419 2 -374.13144579399966 -243.1652628178926 31.6 0.1144 11418 +11420 2 -373.16524455883393 -242.56134931981177 31.3544 0.1144 11419 +11421 2 -372.1397140717177 -242.0601251583877 31.096 0.1144 11420 +11422 2 -371.1004032689424 -241.58871211737758 30.8207 0.1144 11421 +11423 2 -370.0700843980076 -241.1117317465071 30.5133 0.1144 11422 +11424 2 -369.0736493395767 -240.628387630654 30.1221 0.1144 11423 +11425 2 -368.06013390764434 -240.19747519264027 29.6733 0.1144 11424 +11426 2 -366.98969771472554 -239.9347353652643 29.2163 0.1144 11425 +11427 2 -365.9131391386038 -239.86056851162508 28.7325 0.1144 11426 +11428 2 -364.77931136465855 -239.71571234492762 28.3452 0.1144 11427 +11429 2 -363.6491630804485 -239.738519267058 28.0423 0.1144 11428 +11430 2 -362.5331779887093 -239.98770121868372 27.8013 0.1144 11429 +11431 2 -361.40535401302213 -240.08242592435815 27.5907 0.1144 11430 +11432 2 -360.3037152595996 -239.99767064748593 27.3227 0.1144 11431 +11433 2 -359.24429183290977 -239.84490922244422 26.957 0.1144 11432 +11434 2 -358.186310679135 -239.44232944369554 26.561 0.1144 11433 +11435 2 -357.23376125825655 -238.86998155928956 26.0904 0.1144 11434 +11436 2 -356.4117233384592 -238.94922440385807 25.6085 0.1144 11435 +11437 2 -355.4690580975423 -239.05968101781627 25.1255 0.1144 11436 +11438 2 -354.61208306040476 -238.43252020452908 24.5817 0.1144 11437 +11439 2 -353.95172881835276 -238.18930660498344 23.8437 0.1144 11438 +11440 2 -353.46700949554634 -239.03201343306665 23.1324 0.1144 11439 +11441 2 -352.94395784088607 -240.04696230693034 22.5904 0.1144 11440 +11442 2 -352.56311456295185 -241.12521226758525 22.1983 0.1144 11441 +11443 2 -352.3843982706394 -242.25409010281018 21.9323 0.1144 11442 +11444 2 -352.42895857049245 -243.39644619426193 21.7663 0.1144 11443 +11445 2 -352.3302646800065 -244.53595677165066 21.6605 0.1144 11444 +11446 2 -351.95995179242766 -245.61684508007713 21.5478 0.1144 11445 +11447 2 -352.0813191168926 -246.75200805187998 21.3965 0.1144 11446 +11448 2 -352.48113866788964 -247.82298288194858 21.2018 0.1144 11447 +11449 2 -352.3017172489627 -248.91714022183635 20.8836 0.1144 11448 +11450 2 -352.21612578744356 -249.9791084472155 20.4489 0.1144 11449 +11451 2 -351.60634286259926 -250.30380871603012 19.8101 0.1144 11450 +11452 2 -351.3064736072506 -250.93816417608122 19.1889 0.1144 11451 +11453 2 -352.39268157196364 -251.06425298364948 18.6697 0.1144 11452 +11454 2 -353.36278936235567 -250.5452866311558 18.2183 0.1144 11453 +11455 2 -354.1941917468354 -249.87725428532116 17.7431 0.1144 11454 +11456 2 -355.0279564469747 -249.19543827289436 17.3034 0.1144 11455 +11457 2 -355.724794715624 -248.2916571227557 16.973 0.1144 11456 +11458 2 -356.5112001623083 -247.46662323046684 16.6911 0.1144 11457 +11459 2 -357.22893469590537 -246.57914932139562 16.4307 0.1144 11458 +11460 2 -358.1533165328983 -245.91364509944236 16.182 0.1144 11459 +11461 2 -358.9209609322475 -245.1669902419963 15.8979 0.1144 11460 +11462 2 -358.9634908154593 -244.13816595231708 15.4601 0.1144 11461 +11463 2 -359.1579122552759 -243.64748626684025 14.7798 0.1144 11462 +11464 2 -360.1383435658179 -243.26374064105553 14.1751 0.1144 11463 +11465 2 -359.9546959605696 -242.49246664493833 12.9822 0.1144 11464 +11466 2 -359.5978164985888 -241.412601440565 12.751 0.1144 11465 +11467 2 -359.2344316684788 -240.33272261623057 12.6445 0.1144 11466 +11468 2 -358.9325418048013 -239.23027436338202 12.5459 0.1144 11467 +11469 2 -358.9350038547957 -238.0880874310851 12.4709 0.1144 11468 +11470 2 -358.92113517893415 -236.9442399588102 12.4189 0.1144 11469 +11471 2 -359.061891911806 -235.80955507208995 12.3876 0.1144 11470 +11472 2 -358.6313434299674 -234.75789067467673 12.375 0.1144 11471 +11473 2 -358.52447516773725 -233.6211317096679 12.3722 0.1144 11472 +11474 2 -358.99101939762124 -232.57693166582482 12.3721 0.1144 11473 +11475 2 -360.3392212136389 -244.28260933750562 13.1653 0.1144 11464 +11476 2 -360.4460289803167 -245.4144891283745 12.8176 0.1144 11475 +11477 2 -360.282739425494 -246.53774239513396 12.6081 0.1144 11476 +11478 2 -360.4957333899485 -247.5785568171641 12.5479 0.1144 11477 +11479 2 -360.85991483728117 -248.64945703353285 12.529 0.1144 11478 +11480 2 -361.42815768986577 -249.62383993079987 12.4986 0.1144 11479 +11481 2 -362.00691790501685 -250.60708370187513 12.4385 0.1144 11480 +11482 2 -362.3177800648658 -251.6795693463357 12.2738 0.1144 11481 +11483 2 -361.8425380106347 -252.62263468865837 12.0693 0.1144 11482 +11484 2 -362.18428839565263 -253.59972537756096 11.7784 0.1144 11483 +11485 2 -362.5859440656912 -254.57050680132525 11.3688 0.1144 11484 +11486 2 -363.28139451731056 -255.47791002445288 10.6848 0.1144 11485 +11487 2 -385.2649950990274 -241.11115900296093 34.7892 0.1144 11396 +11488 2 -385.05560050659824 -242.23516427192607 34.5276 0.1144 11487 +11489 2 -384.84535916440814 -243.3583192380969 34.3722 0.1144 11488 +11490 2 -384.63504370670455 -244.4831003982569 34.3132 0.1144 11489 +11491 2 -384.42402292028623 -245.60703155170864 34.3403 0.1144 11490 +11492 2 -384.2137107195299 -246.73025708035954 34.4316 0.1144 11491 +11493 2 -384.00431612710076 -247.85426234932467 34.5232 0.1144 11492 +11494 2 -383.7932953406825 -248.97819350277646 34.6147 0.1144 11493 +11495 2 -383.5838301857733 -250.10212791317542 34.7063 0.1144 11494 +11496 2 -383.3728091032689 -251.22620048767348 34.7978 0.1144 11495 +11497 2 -383.1625677610788 -252.34935545384423 34.8897 0.1144 11496 +11498 2 -382.9522523033752 -253.47413661400427 34.9812 0.1144 11497 +11499 2 -382.74201096118503 -254.59729158017507 35.0728 0.1144 11498 +11500 2 -382.53183692452774 -255.7220730364212 35.1646 0.1144 11499 +11501 2 -382.32159558233764 -256.84522800259197 35.2562 0.1144 11500 +11502 2 -382.1105039373531 -257.9692297185238 35.3483 0.1144 11501 +11503 2 -381.9010387824439 -259.0931641289228 35.4402 0.1144 11502 +11504 2 -381.6899471374594 -260.21716584485466 35.5326 0.1144 11503 +11505 2 -381.48055254503026 -261.34117111381977 35.6252 0.1144 11504 +11506 2 -381.26953175861195 -262.4651022672715 35.7179 0.1144 11505 +11507 2 -381.0600666037028 -263.5890366776705 35.8114 0.1144 11506 +11508 2 -380.84897495871826 -264.71303839360235 35.9058 0.1144 11507 +11509 2 -380.63873361652816 -265.8361933597731 36.0013 0.1144 11508 +11510 2 -380.429339024099 -266.9601986287383 36.0982 0.1144 11509 +11511 2 -380.21824737911453 -268.08420034467014 36.1973 0.1144 11510 +11512 2 -380.00722659269616 -269.2081314981219 36.2992 0.1144 11511 +11513 2 -379.797761437787 -270.33206590852086 36.4056 0.1144 11512 +11514 2 -379.58666979280247 -271.45606762445277 36.5176 0.1144 11513 +11515 2 -379.3772752003734 -272.5800728934179 36.638 0.1144 11514 +11516 2 -379.1661835553889 -273.70407460934973 36.7696 0.1144 11515 +11517 2 -378.9559422131987 -274.8272295755205 36.9172 0.1144 11516 +11518 2 -378.74647705828954 -275.9511639859195 37.0885 0.1144 11517 +11519 2 -378.5354562718712 -277.07509513937123 37.2921 0.1144 11518 +11520 2 -378.3243646268867 -278.1990968553031 37.5326 0.1144 11519 +11521 2 -378.18616531629243 -279.32813022972175 37.8252 0.1144 11520 +11522 2 -378.3651408571774 -280.37205541658375 38.2407 0.1144 11521 +11523 2 -378.20232257745675 -281.2364373100712 38.8058 0.1144 11522 +11524 2 -377.46960108822975 -281.9532546014537 39.4615 0.1144 11523 +11525 2 -376.65750182823837 -282.68928047186955 40.0635 0.1144 11524 +11526 2 -375.95100686283087 -283.5784042618189 40.5191 0.1144 11525 +11527 2 -375.61635606189145 -284.6479120791959 40.8313 0.1144 11526 +11528 2 -375.2743226461922 -285.7311223415851 41.0203 0.1144 11527 +11529 2 -374.5735769954885 -286.60986367611974 41.1188 0.1144 11528 +11530 2 -373.7734723607393 -287.42595932213976 41.1776 0.1144 11529 +11531 2 -372.98458686423805 -288.2534629012317 41.2353 0.1144 11530 +11532 2 -372.197394867259 -289.0826670859125 41.3039 0.1144 11531 +11533 2 -371.410203166366 -289.911729849547 41.379 0.1144 11532 +11534 2 -370.6246376594623 -290.74086672869487 41.4557 0.1144 11533 +11535 2 -369.91572669282345 -291.63564232703175 41.5198 0.1144 11534 +11536 2 -369.0486383327151 -292.3602393362477 41.5643 0.1144 11535 +11537 2 -368.05087882459713 -292.9147860556143 41.5923 0.1144 11536 +11538 2 -366.94939605204 -293.1608163825249 41.6074 0.1144 11537 +11539 2 -365.8079170051184 -293.2255311060337 41.6144 0.1144 11538 +11540 2 -364.6655876554023 -293.2910925793035 41.6164 0.1144 11539 +11541 2 -363.558564755436 -293.0760766753562 41.6175 0.1144 11540 +11542 2 -362.43783260047707 -292.85693084071386 41.6184 0.1144 11541 +11543 2 -361.3073217612824 -292.68139311695256 41.62 0.1144 11542 +11544 2 -360.1767400635215 -292.5059259556714 41.622 0.1144 11543 +11545 2 -359.0462256712934 -292.3320852844655 41.6248 0.1144 11544 +11546 2 -357.91578539457885 -292.15661841927044 41.629 0.1144 11545 +11547 2 -356.7852004398708 -291.98270688949844 41.6346 0.1144 11546 +11548 2 -355.6547601631561 -291.8072400243033 41.6424 0.1144 11547 +11549 2 -354.524175208448 -291.63332849453127 41.6536 0.1144 11548 +11550 2 -353.3936640731672 -291.45793219181627 41.6696 0.1144 11549 +11551 2 -352.2623029311781 -291.283241217816 41.6917 0.1144 11550 +11552 2 -351.1326388417445 -291.10855379684915 41.7194 0.1144 11551 +11553 2 -350.0265378034255 -290.8247381823566 41.7575 0.1144 11552 +11554 2 -349.3739727588778 -289.96833654607 41.8317 0.1144 11553 +11555 2 -348.8931792418101 -288.93594172142895 41.9292 0.1144 11554 +11556 2 -348.9051969292133 -287.82290765852275 42.0109 0.1144 11555 +11557 2 -349.3265101111741 -286.7672991834213 42.0678 0.1144 11556 +11558 2 -349.3433565440927 -285.6445171352491 42.1 0.1144 11557 +11559 2 -349.1896711055609 -284.5109128498023 42.1092 0.1144 11558 +11560 2 -349.2268503939452 -283.3695764224001 42.098 0.1144 11559 +11561 2 -349.2655885707859 -282.2266876204359 42.0748 0.1144 11560 +11562 2 -349.14987305470856 -281.09394064986435 42.0134 0.1144 11561 +11563 2 -348.82370919969435 -280.00112895991856 41.9412 0.1144 11562 +11564 2 -348.32027469525957 -278.97519212962914 41.8832 0.1144 11563 +11565 2 -347.805516440194 -277.9540399280245 41.8404 0.1144 11564 +11566 2 -347.30456198557624 -276.9256334109318 41.8118 0.1144 11565 +11567 2 -346.8059426066958 -275.89645396350545 41.7959 0.1144 11566 +11568 2 -346.0295176908194 -275.06164265548057 41.7914 0.1144 11567 +11569 2 -345.22065317158496 -274.2526435952069 41.7911 0.1144 11568 +11570 2 -344.39477933951554 -273.46213516166364 41.7911 0.1144 11569 +11571 2 -343.5631692205312 -272.6757866574984 41.7911 0.1144 11570 +11572 2 -342.6464915152583 -271.99193218127147 41.7911 0.1144 11571 +11573 2 -341.66816991223925 -271.40178191984126 41.7911 0.1144 11572 +11574 2 -340.62638586962737 -270.92958588156955 41.7911 0.1144 11573 +11575 2 -339.57088852080324 -270.4889688748335 41.7911 0.1144 11574 +11576 2 -338.50636874326904 -270.0684855657254 41.7911 0.1144 11575 +11577 2 -337.43295759505725 -269.67308598695126 41.7911 0.1144 11576 +11578 2 -336.30737300769414 -269.475001821278 41.7911 0.1144 11577 +11579 2 -335.18172111479805 -269.2752911655293 41.7911 0.1144 11578 +11580 2 -334.0903084317242 -268.93324057683583 41.7911 0.1144 11579 +11581 2 -333.00223942513674 -268.5815096044952 41.7911 0.1144 11580 +11582 2 -331.9271985299024 -268.18773296276316 41.7911 0.1144 11581 +11583 2 -330.8578399399251 -267.78180595449487 41.7911 0.1144 11582 +11584 2 -329.8210257677888 -267.3000036480895 41.7911 0.1144 11583 +11585 2 -328.7987752046595 -266.78577556038755 41.7911 0.1144 11584 +11586 2 -327.85443571473286 -266.14230976660735 41.7911 0.1144 11585 +11587 2 -327.12179458278683 -265.2671435299523 41.7911 0.1144 11586 +11588 2 -327.149279867563 -264.128968794193 41.7911 0.1144 11587 +11589 2 -327.04241486228 -262.990654197675 41.7911 0.1144 11588 +11590 2 -326.954222764657 -261.84983310569044 41.7911 0.1144 11589 +11591 2 -326.97273950839525 -260.7060534371348 41.7911 0.1144 11590 +11592 2 -327.0059640409474 -259.5623045615346 41.7911 0.1144 11591 +11593 2 -327.0617418253921 -258.42022925370134 41.7914 0.1144 11592 +11594 2 -327.1199255441404 -257.2773104530542 41.7914 0.1144 11593 +11595 2 -327.2234280462863 -256.137668521547 41.7914 0.1144 11594 +11596 2 -327.22907547481236 -254.99386190915527 41.7917 0.1144 11595 +11597 2 -327.1116729731074 -253.85630306997666 41.7917 0.1144 11596 +11598 2 -326.99681782675225 -252.7179010340703 41.792 0.1144 11597 +11599 2 -326.8689486871915 -251.58102738975091 41.7922 0.1144 11598 +11600 2 -326.7168188801687 -250.44742636125142 41.7928 0.1144 11599 +11601 2 -326.61561249325393 -249.30827508190012 41.7936 0.1144 11600 +11602 2 -326.548495388475 -248.16594247523685 41.7945 0.1144 11601 +11603 2 -326.53469757117966 -247.0220244404818 41.7959 0.1144 11602 +11604 2 -326.6333208991855 -245.8824430045269 41.7978 0.1144 11603 +11605 2 -326.7595177781841 -244.74461635791897 41.8006 0.1144 11604 +11606 2 -326.99400291092786 -243.62624977556675 41.8043 0.1144 11605 +11607 2 -327.22849100453266 -242.5064689827517 41.8096 0.1144 11606 +11608 2 -327.4711076993949 -241.38819013587397 41.8169 0.1144 11607 +11609 2 -327.7201556468729 -240.2715511029466 41.8272 0.1144 11608 +11610 2 -328.1632458934454 -239.2168367513839 41.841 0.1144 11609 +11611 2 -328.64674525240616 -238.180026132281 41.8606 0.1144 11610 +11612 2 -329.0534484479555 -237.11144698653186 41.8919 0.1144 11611 +11613 2 -329.46093108773294 -236.04209165350173 41.9322 0.1144 11612 +11614 2 -329.8676342832822 -234.97351250775256 41.9793 0.1144 11613 +11615 2 -330.27356129155055 -233.9041539177752 42.0314 0.1144 11614 +11616 2 -330.68104393132796 -232.83479858474507 42.086 0.1144 11615 +11617 2 -331.0877471268773 -231.76621943899593 42.142 0.1144 11616 +11618 2 -331.4944503224266 -230.69764029324676 42.1982 0.1144 11617 +11619 2 -331.9020035246841 -229.62835581878286 42.2542 0.1144 11618 +11620 2 -332.30870672023343 -228.55977667303364 42.3108 0.1144 11619 +11621 2 -332.71618936001084 -227.49042134000354 42.3676 0.1144 11620 +11622 2 -333.1221163682792 -226.4210627500262 42.425 0.1144 11621 +11623 2 -333.52881956382845 -225.352483604277 42.483 0.1144 11622 +11624 2 -333.9363022036059 -224.2831282712469 42.5418 0.1144 11623 +11625 2 -334.3430053991552 -223.2145491254977 42.602 0.1144 11624 +11626 2 -334.7497085947045 -222.14596997974857 42.6636 0.1144 11625 +11627 2 -335.15719123448196 -221.07661464671847 42.7277 0.1144 11626 +11628 2 -335.56311824275025 -220.00725605674108 42.7955 0.1144 11627 +11629 2 -335.96982143829956 -218.93867691099192 42.868 0.1144 11628 +11630 2 -336.37730407807703 -217.8693215779618 42.9472 0.1144 11629 +11631 2 -336.7840778361064 -216.80081329077885 43.0343 0.1144 11630 +11632 2 -336.6603568856784 -216.3507626531555 42.9206 0.1144 11631 +11633 2 -336.35613520321084 -215.2475316991315 42.9206 0.1144 11632 +11634 2 -336.05997777732887 -214.1427619905067 42.9206 0.1144 11633 +11635 2 -335.7662262857504 -213.03714878906806 42.9206 0.1144 11634 +11636 2 -335.4740304256811 -211.9315388445766 42.9206 0.1144 11635 +11637 2 -335.1811292368971 -210.82507889337688 42.9206 0.1144 11636 +11638 2 -335.0443487949035 -209.6890351219103 42.9206 0.1144 11637 +11639 2 -335.1882873532737 -208.5544276076507 42.9206 0.1144 11638 +11640 2 -335.3305997176547 -207.4197459778777 42.9206 0.1144 11639 +11641 2 -335.46895377317014 -206.28434895246218 42.9206 0.1144 11640 +11642 2 -335.60801671043373 -205.14810488119946 42.9206 0.1144 11641 +11643 2 -335.7802311876503 -204.01751637345802 42.9206 0.1144 11642 +11644 2 -335.96142397674646 -202.88786590398547 42.9206 0.1144 11643 +11645 2 -336.6253489797985 -217.26554611743862 43.1337 0.1144 11631 +11646 2 -336.25418934245863 -218.3455841230707 43.2611 0.1144 11645 +11647 2 -335.88388030399926 -219.42463395789545 43.4101 0.1144 11646 +11648 2 -335.51434715673474 -220.50460465799466 43.5758 0.1144 11647 +11649 2 -335.143258377961 -221.58457210114665 43.7531 0.1144 11648 +11650 2 -334.77294904341545 -222.66376335701767 43.9373 0.1144 11649 +11651 2 -334.40341589615093 -223.74373405711685 44.1244 0.1144 11650 +11652 2 -334.0322565548971 -224.82363064170264 44.3117 0.1144 11651 +11653 2 -333.66194722035164 -225.90282189757366 44.4987 0.1144 11652 +11654 2 -333.2924140730871 -226.98279259767287 44.686 0.1144 11653 +11655 2 -332.9212547318333 -228.06268918225865 44.8731 0.1144 11654 +11656 2 -332.5509453972878 -229.1418804381297 45.0604 0.1144 11655 +11657 2 -332.1798566185141 -230.22184788128166 45.2474 0.1144 11656 +11658 2 -331.81032347124955 -231.30181858138084 45.4348 0.1144 11657 +11659 2 -331.4399435742239 -232.3809389786857 45.6218 0.1144 11658 +11660 2 -331.06885479545025 -233.46090642183765 45.8088 0.1144 11659 +11661 2 -330.6993216481857 -234.54087712193686 45.9962 0.1144 11660 +11662 2 -330.3290123136402 -235.62006837780788 46.1832 0.1144 11661 +11663 2 -329.9578529723864 -236.69996496239364 46.3702 0.1144 11662 +11664 2 -329.58831982512186 -237.77993566249285 46.5576 0.1144 11663 +11665 2 -329.21808134914255 -238.8590563558838 46.7446 0.1144 11664 +11666 2 -328.84685114932256 -239.93902350294968 46.9314 0.1144 11665 +11667 2 -328.47731800205804 -241.0189942030489 47.1184 0.1144 11666 +11668 2 -328.1070795260787 -242.09811489643982 47.3052 0.1144 11667 +11669 2 -327.7359198887388 -243.17815290207187 47.4916 0.1144 11668 +11670 2 -327.3656108502794 -244.2572027368966 47.6781 0.1144 11669 +11671 2 -326.99445121293945 -245.33724074252868 47.864 0.1144 11670 +11672 2 -326.62498892424117 -246.41714088014777 48.0497 0.1144 11671 +11673 2 -326.25460902721557 -247.49626127745262 48.2348 0.1144 11672 +11674 2 -325.88352024844187 -248.5762287206046 48.4187 0.1144 11673 +11675 2 -325.51398710117735 -249.6561994207038 48.6016 0.1144 11674 +11676 2 -325.1436777666318 -250.73539067657484 48.783 0.1144 11675 +11677 2 -324.77251842537805 -251.81528726116062 48.9616 0.1144 11676 +11678 2 -324.4029852781135 -252.8952579612598 49.1364 0.1144 11677 +11679 2 -324.03267594356794 -253.97444921713083 49.3069 0.1144 11678 +11680 2 -323.66158716479424 -255.0544166602828 49.4732 0.1144 11679 +11681 2 -323.2855522024339 -256.1326766878655 49.6303 0.1144 11680 +11682 2 -322.8861237523142 -257.2053015818685 49.761 0.1144 11681 +11683 2 -322.4883214961838 -258.27800059138497 49.8764 0.1144 11682 +11684 2 -322.2165892387808 -259.38801602383927 49.9993 0.1144 11683 +11685 2 -322.1575688371993 -260.52527620611824 50.1556 0.1144 11684 +11686 2 -322.0977689913895 -261.6633125756781 50.3406 0.1144 11685 +11687 2 -322.03874858980794 -262.80057275795707 50.5498 0.1144 11686 +11688 2 -321.9789487439982 -263.938609127517 50.7808 0.1144 11687 +11689 2 -322.72597243566736 -263.7532844014685 50.827 0.1144 11688 +11690 2 -323.83642395136275 -263.47898851872543 50.7794 0.1144 11689 +11691 2 -324.94687902009144 -263.2029955834268 50.7609 0.1144 11690 +11692 2 -326.05733053578683 -262.92869970068375 50.7338 0.1144 11691 +11693 2 -327.1677147459493 -262.65277732786524 50.6948 0.1144 11692 +11694 2 -327.7365732795027 -261.7794874454072 50.643 0.1144 11693 +11695 2 -328.09968198413196 -260.69462424729306 50.5786 0.1144 11694 +11696 2 -328.48695325773474 -259.61956973209766 50.4932 0.1144 11695 +11697 2 -329.08094940929425 -258.7294325898929 50.2804 0.1144 11696 +11698 2 -329.6452131053595 -257.7541680661339 50.0772 0.1144 11697 +11699 2 -330.1061055268559 -256.70755202105954 49.9206 0.1144 11698 +11700 2 -330.53944453121517 -255.64956455549057 49.8078 0.1144 11699 +11701 2 -330.95102334787106 -254.58262196674457 49.7347 0.1144 11700 +11702 2 -331.42555090884673 -253.54176204635448 49.6972 0.1144 11701 +11703 2 -331.95673086867816 -252.5284565394744 49.6891 0.1144 11702 +11704 2 -332.7729605575511 -251.74470950439067 49.6857 0.1144 11703 +11705 2 -333.5933169201717 -250.94880884582344 49.681 0.1144 11704 +11706 2 -334.3886268593082 -250.1261977647464 49.6742 0.1144 11705 +11707 2 -335.2258473585839 -249.34737372454697 49.665 0.1144 11706 +11708 2 -335.9969478531556 -248.503569418282 49.6518 0.1144 11707 +11709 2 -336.5716950639849 -247.51955870002539 49.6339 0.1144 11708 +11710 2 -337.109303019485 -246.50944863860485 49.6079 0.1144 11709 +11711 2 -337.7648415112548 -245.57411470047998 49.5712 0.1144 11710 +11712 2 -338.45356835164114 -244.66062918371932 49.5219 0.1144 11711 +11713 2 -339.11080389596646 -243.72529879862782 49.4603 0.1144 11712 +11714 2 -339.74374226025236 -242.7769067504668 49.357 0.1144 11713 +11715 2 -340.3532130212658 -241.82450576271543 49.1946 0.1144 11714 +11716 2 -340.96035225957513 -240.87118065274242 48.995 0.1144 11715 +11717 2 -341.5787479429824 -239.91144442400906 48.8289 0.1144 11716 +11718 2 -342.19877307732605 -238.95022667927998 48.7071 0.1144 11717 +11719 2 -342.8187985077559 -237.9888675135046 48.6259 0.1144 11718 +11720 2 -343.4114255620558 -237.00963185519157 48.5811 0.1144 11719 +11721 2 -343.99670701236005 -236.02642101110476 48.5635 0.1144 11720 +11722 2 -344.583540837226 -235.04476905547432 48.559 0.1144 11721 +11723 2 -345.1753175887317 -234.06638014692234 48.5551 0.1144 11722 +11724 2 -345.7678737844654 -233.08721505108943 48.55 0.1144 11723 +11725 2 -346.2934019359093 -232.07149354297812 48.5428 0.1144 11724 +11726 2 -346.80113146546256 -231.045976675823 48.5327 0.1144 11725 +11727 2 -347.3072345049404 -230.02052711420077 48.5184 0.1144 11726 +11728 2 -347.7932071037377 -228.98449949235942 48.4985 0.1144 11727 +11729 2 -348.37361293293515 -227.99965209126944 48.4702 0.1144 11728 +11730 2 -349.21328298515846 -227.23292473203455 48.4316 0.1144 11729 +11731 2 -350.09085515611696 -226.49944010727467 48.3809 0.1144 11730 +11732 2 -350.9846466305681 -225.78706126831432 48.3039 0.1144 11731 +11733 2 -351.8993009122365 -225.10697024865183 48.1846 0.1144 11732 +11734 2 -352.8156418834466 -224.43183251864278 48.0337 0.1144 11733 +11735 2 -353.73283315745107 -223.7558480388726 47.864 0.1144 11734 +11736 2 -354.64431538446274 -223.07101275222203 47.6935 0.1144 11735 +11737 2 -355.52590635983904 -222.34312269724464 47.5577 0.1144 11736 +11738 2 -356.4696925827702 -221.69724600204236 47.4575 0.1144 11737 +11739 2 -357.47950110198883 -221.16301851818045 47.3841 0.1144 11738 +11740 2 -358.37568489078245 -220.45630155453546 47.325 0.1144 11739 +11741 2 -359.2533279203072 -219.72274636729554 47.269 0.1144 11740 +11742 2 -360.0784116730077 -218.9317346537099 47.208 0.1144 11741 +11743 2 -360.9108306666901 -218.1496478625181 47.1128 0.1144 11742 +11744 2 -361.7715013941437 -217.41690567122262 46.9552 0.1144 11743 +11745 2 -362.63533707018746 -216.69230185202616 46.753 0.1144 11744 +11746 2 -363.5105068598757 -215.95796366752467 46.5842 0.1144 11745 +11747 2 -364.3881495933143 -215.224549901331 46.459 0.1144 11746 +11748 2 -365.2398354010082 -214.46025186720235 46.3753 0.1144 11747 +11749 2 -365.9608899242028 -213.57441125818704 46.3288 0.1144 11748 +11750 2 -366.5307718769393 -212.58381424630724 46.3114 0.1144 11749 +11751 2 -366.62216407815964 -211.45312723587682 46.3092 0.1144 11750 +11752 2 -366.45708758346416 -210.3226810890396 46.3092 0.1144 11751 +11753 2 -366.2256609311711 -209.20340976151962 46.3092 0.1144 11752 +11754 2 -365.9626146835453 -208.08979981112853 46.3092 0.1144 11753 +11755 2 -365.9674791148099 -206.9484664385732 46.3092 0.1144 11754 +11756 2 -366.21327437822333 -205.8318205956653 46.3092 0.1144 11755 +11757 2 -366.6370035614155 -204.77056031217623 46.3092 0.1144 11756 +11758 2 -366.84314546978 -203.64654823323056 46.3092 0.1144 11757 +11759 2 -366.83669977037493 -202.50349412123097 46.3092 0.1144 11758 +11760 2 -366.52108347871035 -201.405118358372 46.3092 0.1144 11759 +11761 2 -365.90749134585883 -200.44202495973272 46.3092 0.1144 11760 +11762 2 -365.1740067210989 -199.56445278877416 46.3092 0.1144 11761 +11763 2 -364.43648671109906 -198.6892056266252 46.3092 0.1144 11762 +11764 2 -363.88279355147404 -197.68904373723709 46.3092 0.1144 11763 +11765 2 -363.4166642045762 -196.64373953177315 46.3092 0.1144 11764 +11766 2 -363.00467415318735 -195.57669902759505 46.3092 0.1144 11765 +11767 2 -362.7683683267543 -194.4574881956274 46.3092 0.1144 11766 +11768 2 -321.68909401284515 -263.30217046210754 50.9989 0.1144 11688 +11769 2 -321.21645248783756 -262.26010532074713 51.2154 0.1144 11768 +11770 2 -320.74289009755546 -261.2188160705816 51.4399 0.1144 11769 +11771 2 -320.26946912831966 -260.1775271165021 51.681 0.1144 11770 +11772 2 -320.08159673179125 -260.27584610054214 52.0568 0.1144 11771 +11773 2 -319.51711591553646 -260.5780137495061 52.7492 0.1144 11772 +11774 2 -318.71635402613697 -261.30274962310784 53.3716 0.1144 11773 +11775 2 -317.88160321366433 -262.0840537131242 53.8751 0.1144 11774 +11776 2 -317.04671098014546 -262.86535750705445 54.2646 0.1144 11775 +11777 2 -316.2118896051928 -263.6465907385047 54.5471 0.1144 11776 +11778 2 -315.37869442422937 -264.4278980854683 54.7313 0.1144 11777 +11779 2 -314.54387275319056 -265.2092727379648 54.8456 0.1144 11778 +11780 2 -313.7089805196717 -265.99057653189504 54.9522 0.1144 11779 +11781 2 -312.874159144719 -266.77180976334523 55.0589 0.1144 11780 +11782 2 -312.0401136609612 -267.5539638600699 55.1656 0.1144 11781 +11783 2 -311.20607173023666 -268.3344209042391 55.2723 0.1144 11782 +11784 2 -310.3713209177641 -269.1157249942555 55.379 0.1144 11783 +11785 2 -309.53642868424515 -269.8970287881858 55.4856 0.1144 11784 +11786 2 -308.7024540590535 -270.67911232243034 55.5923 0.1144 11785 +11787 2 -307.86756182553466 -271.46041611636065 55.699 0.1144 11786 +11788 2 -307.0335904572902 -272.24094401909605 55.8057 0.1144 11787 +11789 2 -306.1986982237714 -273.02224781302635 55.9124 0.1144 11788 +11790 2 -305.3647235985797 -273.8043313472709 56.0188 0.1144 11789 +11791 2 -304.52983136506083 -274.5856351412011 56.1252 0.1144 11790 +11792 2 -303.69508055258825 -275.36693923121754 56.2316 0.1144 11791 +11793 2 -302.8610386218637 -276.14739627538677 56.3377 0.1144 11792 +11794 2 -302.0269931381059 -276.9295503721114 56.4432 0.1144 11793 +11795 2 -301.192100904587 -277.7108541660417 56.5488 0.1144 11794 +11796 2 -300.3572795296343 -278.4920873974919 56.6538 0.1144 11795 +11797 2 -299.52245785859554 -279.2734620499883 56.758 0.1144 11796 +11798 2 -298.6892626776321 -280.054769396952 56.8613 0.1144 11797 +11799 2 -297.85444130267945 -280.8360026284022 56.9629 0.1144 11798 +11800 2 -297.0195490691605 -281.61730642233243 57.0629 0.1144 11799 +11801 2 -296.1847273981217 -282.3986810748289 57.16 0.1144 11800 +11802 2 -295.3507527729301 -283.1807646090735 57.2533 0.1144 11801 +11803 2 -294.5167108422056 -283.96122165324266 57.3409 0.1144 11802 +11804 2 -293.68181860868674 -284.742525447173 57.4227 0.1144 11803 +11805 2 -292.8526386791077 -285.53112441647454 57.4932 0.1144 11804 +11806 2 -292.03961755746906 -286.33594999743565 57.5434 0.1144 11805 +11807 2 -291.4462987944154 -287.30783028091116 57.5753 0.1144 11806 +11808 2 -291.4705771656138 -288.4444163316315 57.594 0.1144 11807 +11809 2 -291.5231984651053 -289.58678929999155 57.6033 0.1144 11808 +11810 2 -291.5749697578885 -290.7298675970664 57.6069 0.1144 11809 +11811 2 -291.62681161315174 -291.87301675270743 57.6083 0.1144 11810 +11812 2 -291.6778067186541 -293.0153156055541 57.61 0.1144 11811 +11813 2 -291.72964857391736 -294.15846476119515 57.6125 0.1144 11812 +11814 2 -291.81699392177933 -295.2984355503853 57.6159 0.1144 11813 +11815 2 -292.0007397711014 -296.4280722543114 57.6206 0.1144 11814 +11816 2 -292.18837632766997 -297.55693928485096 57.6271 0.1144 11815 +11817 2 -292.37700460807923 -298.68495986171547 57.6358 0.1144 11816 +11818 2 -292.73472075289334 -299.77048368445696 57.6484 0.1144 11817 +11819 2 -293.601061932329 -300.51730683675885 57.6682 0.1144 11818 +11820 2 -294.4666942300165 -301.2649770349078 57.6943 0.1144 11819 +11821 2 -295.33310597193224 -302.01187104577593 57.7245 0.1144 11820 +11822 2 -296.20036475969516 -302.75947393839203 57.7581 0.1144 11821 +11823 2 -297.0659970573827 -303.50714413654106 57.7937 0.1144 11822 +11824 2 -297.9323382368183 -304.2539672888429 57.8298 0.1144 11823 +11825 2 -298.79797053450585 -305.00163748699197 57.8659 0.1144 11824 +11826 2 -299.66445313498775 -305.7484609353799 57.902 0.1144 11825 +11827 2 -300.53079431442336 -306.49528408768174 57.9382 0.1144 11826 +11828 2 -301.3964266121109 -307.24295428583076 57.9743 0.1144 11827 +11829 2 -302.26290921259283 -307.9897777342187 58.0104 0.1144 11828 +11830 2 -303.1284709478003 -308.73737707380155 58.0465 0.1144 11829 +11831 2 -303.994882689716 -309.48427108466956 58.0829 0.1144 11830 +11832 2 -304.8613652901979 -310.23109453305756 58.119 0.1144 11831 +11833 2 -305.7269270254054 -310.9786938726404 58.1552 0.1144 11832 +11834 2 -306.5933387673211 -311.7255878835084 58.1913 0.1144 11833 +11835 2 -307.45897106500865 -312.4732580816575 58.2271 0.1144 11834 +11836 2 -308.32531224444426 -313.2200812339593 58.2632 0.1144 11835 +11837 2 -309.1917948449262 -313.9669046823473 58.2994 0.1144 11836 +11838 2 -310.05742714261373 -314.71457488049634 58.3355 0.1144 11837 +11839 2 -310.92383888452946 -315.46146889136435 58.3713 0.1144 11838 +11840 2 -311.7902509225313 -316.2082214811861 58.4072 0.1144 11839 +11841 2 -312.65665940749983 -316.9566711235633 58.443 0.1144 11840 +11842 2 -313.5230711494155 -317.70356513443136 58.4786 0.1144 11841 +11843 2 -314.388703447103 -318.4512353325804 58.5136 0.1144 11842 +11844 2 -315.25511548510485 -319.19798792240215 58.5491 0.1144 11843 +11845 2 -316.12152722702064 -319.9448819332702 58.5838 0.1144 11844 +11846 2 -316.98715952470815 -320.69255213141923 58.6172 0.1144 11845 +11847 2 -317.85357156270993 -321.439304721241 58.6485 0.1144 11846 +11848 2 -318.7192038603975 -322.18697491939 58.6774 0.1144 11847 +11849 2 -319.5856156023132 -322.9338689302581 58.7336 0.1144 11848 +11850 2 -320.22113068554165 -259.3199156398125 51.3458 0.1144 11771 +11851 2 -320.1595302798981 -258.21075796390494 51.8983 0.1144 11850 +11852 2 -320.0971504300263 -257.10237647527845 52.1598 0.1144 11851 +11853 2 -319.98468078803313 -255.97288899875207 52.4068 0.1144 11852 +11854 2 -319.81147243513306 -254.84249653748665 52.5658 0.1144 11853 +11855 2 -319.6350081412212 -253.71365289774988 52.6411 0.1144 11854 +11856 2 -319.45861796282276 -252.58318306402387 52.6411 0.1144 11855 +11857 2 -319.28222423139096 -251.45441028285327 52.5748 0.1144 11856 +11858 2 -319.10505460876436 -250.32471663640823 52.4667 0.1144 11857 +11859 2 -318.92936975908066 -249.19509680939046 52.3379 0.1144 11858 +11860 2 -318.752200136454 -248.0654031629454 52.1959 0.1144 11859 +11861 2 -318.5765858492504 -246.93585419449383 52.0352 0.1144 11860 +11862 2 -318.4001924139048 -245.80693999227697 51.8543 0.1144 11861 +11863 2 -318.2237313769401 -244.67654072103105 51.6544 0.1144 11862 +11864 2 -318.080566557922 -243.5502416778833 51.4058 0.1144 11863 +11865 2 -318.04636758325523 -242.4912753516332 51.023 0.1144 11864 +11866 2 -317.9288229602172 -241.42159861467243 50.5702 0.1144 11865 +11867 2 -317.3250698050533 -240.4536467679209 50.2208 0.1144 11866 +11868 2 -316.7130401136915 -239.4873039421642 49.9685 0.1144 11867 +11869 2 -316.10023423504856 -238.5201816721793 49.8028 0.1144 11868 +11870 2 -315.48834596473296 -237.55383914250874 49.7123 0.1144 11869 +11871 2 -314.8577646529019 -236.59961973945227 49.6798 0.1144 11870 +11872 2 -314.21259683944777 -235.65498647067395 49.672 0.1144 11871 +11873 2 -313.56827903270187 -234.7096478731809 49.6616 0.1144 11872 +11874 2 -313.3658537618254 -233.58562892773975 49.6471 0.1144 11873 +11875 2 -313.23557868796104 -232.44959877623424 49.6269 0.1144 11874 +11876 2 -313.0260132827208 -231.32478706268995 49.5992 0.1144 11875 +11877 2 -312.66348882233285 -230.2392531730207 49.5594 0.1144 11876 +11878 2 -312.30174054922594 -229.1544987275796 49.5034 0.1144 11877 +11879 2 -311.9399955330663 -228.0681886506294 49.4259 0.1144 11878 +11880 2 -311.5782472599593 -226.98343420518833 49.3226 0.1144 11879 +11881 2 -311.0694759827585 -225.80460938041773 48.9412 0.1144 11880 +11882 2 -310.62432412238854 -224.77059211692102 48.6282 0.1144 11881 +11883 2 -310.1783252161714 -223.73586597167625 48.2658 0.1144 11882 +11884 2 -309.7331024972352 -222.7019192706597 47.8783 0.1144 11883 +11885 2 -309.2888006435735 -221.66719667844822 47.4883 0.1144 11884 +11886 2 -308.84280173735647 -220.63247053320342 47.1159 0.1144 11885 +11887 2 -308.34345334287235 -219.61375476277175 46.7972 0.1144 11886 +11888 2 -307.72334903191097 -218.65390042823597 46.5766 0.1144 11887 +11889 2 -307.5016063162983 -217.53627572464683 46.4366 0.1144 11888 +11890 2 -307.5557579067538 -216.39412630130016 46.3574 0.1144 11889 +11891 2 -307.6107595039175 -215.2512715492387 46.321 0.1144 11890 +11892 2 -307.49342786077875 -214.11364214757998 46.3098 0.1144 11891 +11893 2 -307.3744697275646 -212.97608005145415 46.3092 0.1144 11892 +11894 2 -306.96736210726294 -211.9074234202146 46.3092 0.1144 11893 +11895 2 -306.52303025491835 -210.85325528609556 46.3092 0.1144 11894 +11896 2 -306.0406206107891 -209.81597803036732 46.3092 0.1144 11895 +11897 2 -305.5056877982124 -208.80531950444038 46.3092 0.1144 11896 +11898 2 -304.9690579330803 -207.79465742548012 46.3092 0.1144 11897 +11899 2 -304.7439984848174 -206.6738437903259 46.3092 0.1144 11898 +11900 2 -304.57729905307986 -205.54176789646613 46.3092 0.1144 11899 +11901 2 -304.4122258153316 -204.4097661181198 46.3092 0.1144 11900 +11902 2 -304.1330475015013 -203.30093072948588 46.3092 0.1144 11901 +11903 2 -303.7721495311888 -202.21532953428377 46.3092 0.1144 11902 +11904 2 -303.41125126479017 -201.12986976012792 46.3092 0.1144 11903 +11905 2 -303.0510618801396 -200.04356294012493 46.3092 0.1144 11904 +11906 2 -302.6901639098271 -198.9579617449228 46.3092 0.1144 11905 +11907 2 -302.32919508094835 -197.87243111220073 46.3092 0.1144 11906 +11908 2 -311.5650493456794 -226.735070127555 49.6978 0.1144 11880 +11909 2 -311.5010435039187 -225.59274403478614 49.6381 0.1144 11908 +11910 2 -311.43880557327975 -224.45035093257053 49.6166 0.1144 11909 +11911 2 -310.69227290541147 -223.59057057352206 49.5793 0.1144 11910 +11912 2 -309.885888435994 -222.7791018264453 49.5286 0.1144 11911 +11913 2 -309.0794298510631 -221.96925927335784 49.4679 0.1144 11912 +11914 2 -308.27219507885127 -221.15863727604216 49.3996 0.1144 11913 +11915 2 -307.46573975086756 -220.34723909144552 49.3268 0.1144 11914 +11916 2 -306.6593517284167 -219.53746739692423 49.252 0.1144 11915 +11917 2 -305.8521169562049 -218.72684539960855 49.177 0.1144 11916 +11918 2 -305.0457324867874 -217.91537665253182 49.1028 0.1144 11917 +11919 2 -304.2392739018565 -217.10553409944433 49.0288 0.1144 11918 +11920 2 -303.43203912964464 -216.29491210212865 48.9549 0.1144 11919 +11921 2 -302.626430551422 -215.48436422032637 48.8821 0.1144 11920 +11922 2 -301.8191957792102 -214.6737422230107 48.8121 0.1144 11921 +11923 2 -301.01196100699826 -213.863120225695 48.7466 0.1144 11922 +11924 2 -300.2063527248618 -213.0524309228465 48.6861 0.1144 11923 +11925 2 -299.39911795264993 -212.24180892553082 48.5682 0.1144 11924 +11926 2 -382.3895580062594 -215.87296800745705 31.4924 0.1144 11372 +11927 2 -381.33393916814407 -215.45660456211618 31.9788 0.1144 11926 +11928 2 -380.3620319408325 -214.87615511427467 32.1546 0.1144 11927 +11929 2 -379.8364990243705 -213.96903692808561 32.48 0.1144 11928 +11930 2 -379.9479843594216 -212.86674702970654 32.8558 0.1144 11929 +11931 2 -379.21595360653464 -212.07155602320069 33.3365 0.1144 11930 +11932 2 -378.57921565949766 -211.35604350283288 33.962 0.1144 11931 +11933 2 -377.7905861933267 -210.5414299410215 34.4708 0.1144 11932 +11934 2 -376.79190123797247 -209.98440042658885 34.874 0.1144 11933 +11935 2 -375.82243044183383 -209.38854111816588 35.1966 0.1144 11934 +11936 2 -374.75129287743425 -209.05551325426842 35.5239 0.1144 11935 +11937 2 -373.69550491763493 -209.12521572153392 35.8887 0.1144 11936 +11938 2 -372.7888579500331 -209.79719175990013 36.178 0.1144 11937 +11939 2 -372.0254586588759 -210.4751245753477 36.4764 0.1144 11938 +11940 2 -371.0818209255868 -210.67856389876633 36.9687 0.1144 11939 +11941 2 -369.98347521792573 -210.60831123716216 37.4478 0.1144 11940 +11942 2 -368.8624754011229 -210.51701002836356 37.8756 0.1144 11941 +11943 2 -367.7475817343867 -210.58262894233886 38.3177 0.1144 11942 +11944 2 -366.6656047597181 -210.42833537057646 38.7878 0.1144 11943 +11945 2 -365.6017865557651 -210.04426960936095 39.2078 0.1144 11944 +11946 2 -364.4989649432465 -209.78146197826567 39.5536 0.1144 11945 +11947 2 -363.3594034390468 -209.7070925077411 39.8656 0.1144 11946 +11948 2 -362.21556327493875 -209.6836965898629 40.1542 0.1144 11947 +11949 2 -361.1320616638169 -209.4808214837105 40.5012 0.1144 11948 +11950 2 -360.1402958544736 -209.0976843941228 40.9716 0.1144 11949 +11951 2 -359.1785874010737 -208.6782648658947 41.5503 0.1144 11950 +11952 2 -358.17964209204257 -208.21181538356606 42.1291 0.1144 11951 +11953 2 -357.1631275197419 -207.69356878753234 42.618 0.1144 11952 +11954 2 -356.38173874909796 -206.89926439429797 43.0066 0.1144 11953 +11955 2 -356.0531115190747 -205.83473188014574 43.3062 0.1144 11954 +11956 2 -355.883138973331 -204.71240722849927 43.58 0.1144 11955 +11957 2 -355.56643145876393 -203.76372401466193 43.9771 0.1144 11956 +11958 2 -354.90244130814983 -202.92674393730795 44.394 0.1144 11957 +11959 2 -354.2037248485909 -202.02569785128264 44.7336 0.1144 11958 +11960 2 -353.6622730479239 -201.02153107352385 44.9907 0.1144 11959 +11961 2 -353.0965439989729 -200.02855649017698 45.1741 0.1144 11960 +11962 2 -352.45782076200953 -199.07919908826608 45.2962 0.1144 11961 +11963 2 -351.80125152937785 -198.1426736947174 45.3785 0.1144 11962 +11964 2 -351.1448237177925 -197.20614859725487 45.4628 0.1144 11963 +11965 2 -350.48825448516084 -196.26962320370617 45.57 0.1144 11964 +11966 2 -349.8318299305227 -195.33154247473445 45.7013 0.1144 11965 +11967 2 -349.40032633140663 -194.33078787746803 45.95 0.1144 11966 +11968 2 -349.1079474901211 -193.31257613958218 46.333 0.1144 11967 +11969 2 -348.9087948350645 -192.21281786160293 46.713 0.1144 11968 +11970 2 -348.7566617710946 -191.08077246461252 47.012 0.1144 11969 +11971 2 -348.31959785419906 -190.033902762812 47.2245 0.1144 11970 +11972 2 -347.76767586264293 -189.03211823246792 47.3581 0.1144 11971 +11973 2 -347.16775291917327 -188.05851753818985 47.4205 0.1144 11972 +11974 2 -346.5996179359187 -187.06638644765678 47.437 0.1144 11973 +11975 2 -346.29368232398735 -185.9712129402379 47.4387 0.1144 11974 +11976 2 -346.1237266551519 -184.84082728895305 47.4387 0.1144 11975 +11977 2 -346.0759842337143 -183.69853524608692 47.4387 0.1144 11976 +11978 2 -346.29434381414796 -182.5818319624736 47.4387 0.1144 11977 +11979 2 -346.48112110609884 -181.45297100415695 47.4387 0.1144 11978 +11980 2 -346.21247022176277 -180.34818817375748 47.4387 0.1144 11979 +11981 2 -346.33215166570443 -179.21515622276223 47.4387 0.1144 11980 +11982 2 -345.96062491046206 -178.1401393995734 47.4387 0.1144 11981 +11983 2 -421.729340338145 -245.31312611997168 21.9321 0.1144 11017 +11984 2 -420.95129248522653 -244.47668506492417 21.9321 0.1144 11983 +11985 2 -420.1878450499784 -243.62401108642297 21.9321 0.1144 11984 +11986 2 -419.6827739885405 -242.6029498772401 21.9321 0.1144 11985 +11987 2 -419.15095924896275 -241.58904518114295 21.9321 0.1144 11986 +11988 2 -418.54062661015627 -240.62270590841962 21.9321 0.1144 11987 +11989 2 -418.2865589704961 -239.5098925752511 21.9321 0.1144 11988 +11990 2 -418.491071131838 -238.38750343334743 21.9321 0.1144 11989 +11991 2 -419.0812922518345 -237.40911126784826 21.9321 0.1144 11990 +11992 2 -422.0930248915329 -264.0487227762201 20.6525 0.1144 10998 +11993 2 -421.8937579423223 -263.7465824562488 19.6703 0.1144 11992 +11994 2 -421.8255531676741 -262.75224534605167 19.2249 0.1144 11993 +11995 2 -422.28860123672496 -261.79055752469367 18.7128 0.1144 11994 +11996 2 -422.3248731667661 -261.45412061070965 18.2966 0.1144 11995 +11997 2 -422.572277249074 -260.37962179262865 17.9526 0.1144 11996 +11998 2 -423.33838389019525 -259.5568788592467 17.6313 0.1144 11997 +11999 2 -424.0012170591499 -258.64984452685707 17.3939 0.1144 11998 +12000 2 -424.36260828128206 -257.5747358279034 17.1803 0.1144 11999 +12001 2 -424.787110098722 -256.51595204119803 17.0067 0.1144 12000 +12002 2 -425.2682070764125 -255.4782878623535 16.8666 0.1144 12001 +12003 2 -425.7306551294181 -254.43167507422635 16.7533 0.1144 12002 +12004 2 -425.9529926543863 -253.34008246478314 16.6374 0.1144 12003 +12005 2 -425.8849446174051 -252.20333406488848 16.5155 0.1144 12004 +12006 2 -425.96494901940895 -251.07424956155847 16.4103 0.1144 12005 +12007 2 -426.2843518107549 -249.99254755690083 16.2459 0.1144 12006 +12008 2 -426.528483277243 -248.89378807135796 16.0283 0.1144 12007 +12009 2 -426.82273433243523 -247.86945060425143 15.7063 0.1144 12008 +12010 2 -427.5232939470758 -247.04579261920264 15.3416 0.1144 12009 +12011 2 -428.0552495960019 -246.06727846622596 15.0105 0.1144 12010 +12012 2 -428.9043596099506 -245.4187286730627 14.6817 0.1144 12011 +12013 2 -429.7138908825501 -244.7271745401972 14.2593 0.1144 12012 +12014 2 -430.0001356200486 -243.6429282350366 13.8849 0.1144 12013 +12015 2 -429.9028119319266 -242.60815427434264 13.4139 0.1144 12014 +12016 2 -430.03535262415267 -241.47995758275724 13.0014 0.1144 12015 +12017 2 -430.5033640497846 -240.51177475628393 12.5355 0.1144 12016 +12018 2 -430.3768336371554 -240.69436806032292 11.704 0.1144 12017 +12019 2 -429.8773276585151 -241.64226164997456 11.3057 0.1144 12018 +12020 2 -430.37356578635377 -242.5929470871615 11.1676 0.1144 12019 +12021 2 -431.4375470397679 -242.86536078429003 11.0072 0.1144 12020 +12022 2 -431.7998838804628 -243.33125525074703 10.8149 0.1144 12021 +12023 2 -431.6163529607825 -244.42936379343362 10.6123 0.1144 12022 +12024 2 -432.2815154618933 -245.07790195508335 10.4242 0.1144 12023 +12025 2 -433.18623159545393 -245.73344705473332 10.2936 0.1144 12024 +12026 2 -433.64678019463065 -246.742394207857 10.2043 0.1144 12025 +12027 2 -433.97124048319506 -247.83831360778782 10.1525 0.1144 12026 +12028 2 -433.9413901239986 -248.9578157319733 10.1293 0.1144 12027 +12029 2 -433.8492721641219 -250.0974107878893 10.1226 0.1144 12028 +12030 2 -434.70100241728795 -250.49397259371747 10.1226 0.1144 12029 +12031 2 -435.82746736264335 -250.30534105636102 10.1226 0.1144 12030 +12032 2 -430.124782724149 -240.13812391675592 12.1925 0.1144 12017 +12033 2 -429.3062105813453 -239.33879191625437 11.9559 0.1144 12032 +12034 2 -428.6455887904792 -238.41279395219996 11.7914 0.1144 12033 +12035 2 -429.1763148503033 -237.61628690927847 11.6858 0.1144 12034 +12036 2 -429.8060542160965 -236.67601990934148 11.6027 0.1144 12035 +12037 2 -429.91911561259843 -235.56397521571583 11.5316 0.1144 12036 +12038 2 -430.2409507838975 -234.50257231270737 11.3767 0.1144 12037 +12039 2 -430.68480715082325 -233.4534457209466 11.2186 0.1144 12038 +12040 2 -430.84405776737265 -232.3342145155522 11.0232 0.1144 12039 +12041 2 -431.1876536245615 -231.24775482604562 10.8296 0.1144 12040 +12042 2 -431.39633607829523 -230.1261522344368 10.6494 0.1144 12041 +12043 2 -431.56124857016005 -229.00452871469994 10.4615 0.1144 12042 +12044 2 -431.4309699432623 -227.87019561574982 10.3326 0.1144 12043 +12045 2 -431.2739612581858 -226.73651366175636 10.2498 0.1144 12044 +12046 2 -431.7808941705165 -225.71997540256686 10.2088 0.1144 12045 +12047 2 -432.63913577496413 -224.96537847811308 10.1988 0.1144 12046 +12048 2 -433.377057987847 -224.09491743491014 10.2126 0.1144 12047 +12049 2 -433.77895967780313 -223.0230755381686 10.2437 0.1144 12048 +12050 2 -434.152450837847 -221.94396165475825 10.2848 0.1144 12049 +12051 2 -434.7223627892665 -220.97281018478603 10.387 0.1144 12050 +12052 2 -435.5176659184225 -220.15345178777358 10.489 0.1144 12051 +12053 2 -436.42260902348835 -219.48472488043865 10.5675 0.1144 12052 +12054 2 -437.5442658553703 -219.26221278752556 10.624 0.1144 12053 +12055 2 -438.63380443130984 -218.94580017472455 10.6601 0.1144 12054 +12056 2 -439.4676505551296 -218.2250933745687 10.6779 0.1144 12055 +12057 2 -439.8089249565421 -217.13290124726672 10.6799 0.1144 12056 +12058 2 -440.09761589605523 -216.02857818699715 10.6779 0.1144 12057 +12059 2 -440.3272823502113 -214.91515127433726 10.6752 0.1144 12058 +12060 2 -440.6578773359691 -213.85772651796364 10.6714 0.1144 12059 +12061 2 -440.28388720571775 -212.81098887056837 10.6663 0.1144 12060 +12062 2 -439.60224736452665 -211.8930786478881 10.6588 0.1144 12061 +12063 2 -439.28654263710087 -210.87071684545165 10.6476 0.1144 12062 +12064 2 -439.13249904248994 -209.84063246980114 10.6326 0.1144 12063 +12065 2 -438.40878934683224 -208.95501972914587 10.6145 0.1144 12064 +12066 2 -437.94336512654877 -207.9444360190191 10.5952 0.1144 12065 +12067 2 -438.00794584590983 -206.85329094127425 10.5332 0.1144 12066 +12068 2 -438.0538877075137 -205.74838893867295 10.4588 0.1144 12067 +12069 2 -438.1048402994763 -204.6143645635503 10.4201 0.1144 12068 +12070 2 -438.2164002482273 -203.4764365615068 10.4159 0.1144 12069 +12071 2 -438.2592378588936 -202.33440487231758 10.4528 0.1144 12070 +12072 2 -438.4872002484134 -201.25809757931788 10.5939 0.1144 12071 +12073 2 -438.68283110600544 -200.1559838521745 10.7875 0.1144 12072 +12074 2 -439.0103049639175 -199.06949040885138 10.9526 0.1144 12073 +12075 2 -439.29249083138745 -197.96501230757445 11.0703 0.1144 12074 +12076 2 -439.14681546568306 -196.8557493189974 11.1428 0.1144 12075 +12077 2 -438.9453113561673 -195.73081306131513 11.1744 0.1144 12076 +12078 2 -438.5471719808173 -194.6679027839182 11.1728 0.1144 12077 +12079 2 -438.30999897468155 -193.55759970135 11.1567 0.1144 12078 +12080 2 -438.31560583941064 -192.4331677722996 11.0768 0.1144 12079 +12081 2 -438.2863845415727 -191.29331867450085 11.0013 0.1144 12080 +12082 2 -438.3866139297123 -190.16342798520694 10.9896 0.1144 12081 +12083 2 -438.93801837749317 -189.1833282020381 11.0214 0.1144 12082 +12084 2 -439.30747740924426 -188.10498369592815 11.0477 0.1144 12083 +12085 2 -440.043830370657 -187.24102476390723 11.0635 0.1144 12084 +12086 2 -441.1116062022328 -186.8493302611342 11.0688 0.1144 12085 +12087 2 -442.2019482053755 -186.52068635630297 11.0162 0.1144 12086 +12088 2 -443.2327165399412 -186.03996014476812 10.9149 0.1144 12087 +12089 2 -444.1466082542898 -185.35258431274823 10.828 0.1144 12088 +12090 2 -445.2152613324961 -184.94717374500203 10.763 0.1144 12089 +12091 2 -446.3192616638204 -184.64698419082723 10.7188 0.1144 12090 +12092 2 -447.36456616537043 -184.1807134228831 10.6935 0.1144 12091 +12093 2 -448.5069187037889 -184.13785017558544 10.6848 0.1144 12092 +12094 2 -422.41321005541243 -261.7827573769186 18.1352 0.1144 11995 +12095 2 -423.49039209489706 -261.525362439494 18.4398 0.1144 12094 +12096 2 -424.6090570380628 -261.5835660899975 18.5413 0.1144 12095 +12097 2 -425.66960617922933 -261.94167413119567 18.689 0.1144 12096 +12098 2 -425.9927106944092 -262.9421310679353 18.8114 0.1144 12097 +12099 2 -426.1480223269303 -264.0758094688955 18.8868 0.1144 12098 +12100 2 -426.589968674913 -265.12106304363454 18.9202 0.1144 12099 +12101 2 -427.45323915512745 -265.8485049987006 18.9167 0.1144 12100 +12102 2 -428.1066371273748 -266.7461327945397 18.8109 0.1144 12101 +12103 2 -428.37520382926976 -267.8573501345022 18.7141 0.1144 12102 +12104 2 -428.64475870197197 -268.9694180733452 18.5578 0.1144 12103 +12105 2 -427.915198752653 -274.3230341531878 26.7324 0.1144 10985 +12106 2 -427.48674948754797 -275.34214089795546 26.8902 0.1144 12105 +12107 2 -426.5318491429523 -275.8926761210712 27.1424 0.1144 12106 +12108 2 -425.4369059905273 -276.08858615899095 27.4279 0.1144 12107 +12109 2 -424.3844785841227 -276.140547242971 27.8002 0.1144 12108 +12110 2 -423.38426300916274 -276.6861085443914 28.1406 0.1144 12109 +12111 2 -422.4131559846627 -277.2770564329287 28.4813 0.1144 12110 +12112 2 -421.43230452793 -277.86147852339525 28.7946 0.1144 12111 +12113 2 -420.4313263856501 -278.3997550124583 29.0629 0.1144 12112 +12114 2 -419.34514560434434 -278.66596996380775 29.3493 0.1144 12113 +12115 2 -418.2377328529564 -278.67093464540346 29.724 0.1144 12114 +12116 2 -417.124952831933 -278.53757770028574 30.1568 0.1144 12115 +12117 2 -416.08141024484064 -278.1285227541912 30.5959 0.1144 12116 +12118 2 -415.19794833020666 -277.4196354744411 31.0318 0.1144 12117 +12119 2 -415.0502571211915 -276.49640846726487 31.5454 0.1144 12118 +12120 2 -415.3854399323567 -275.5780815248857 32.2272 0.1144 12119 +12121 2 -414.3610442302721 -275.3454194833947 32.853 0.1144 12120 +12122 2 -413.32875146135336 -275.7436936719107 33.5149 0.1144 12121 +12123 2 -413.4556040482264 -276.58930726641097 34.2742 0.1144 12122 +12124 2 -414.22702721522836 -276.73969794901006 34.9714 0.1144 12123 +12125 2 -414.0273062529808 -277.4649850833499 35.7434 0.1144 12124 +12126 2 -413.8389361357006 -277.80103284619895 36.7766 0.1144 12125 +12127 2 -413.3063431638794 -278.71244108423866 37.7479 0.1144 12126 +12128 2 -412.3081532970575 -279.10102857731346 38.5871 0.1144 12127 +12129 2 -411.22713874783346 -278.85856061166453 39.3322 0.1144 12128 +12130 2 -410.19236484365433 -278.5505698046103 40.0355 0.1144 12129 +12131 2 -409.11069022450425 -278.58960028355324 40.6333 0.1144 12130 +12132 2 -407.9914493938536 -278.8064605680787 41.0724 0.1144 12131 +12133 2 -406.90043305705194 -279.08567618875895 41.4383 0.1144 12132 +12134 2 -405.82069309710334 -279.3827345481602 41.767 0.1144 12133 +12135 2 -404.76844511888163 -279.3489944780901 42.1828 0.1144 12134 +12136 2 -403.74510051757403 -279.35731715642 42.7367 0.1144 12135 +12137 2 -402.6846878671891 -279.67704344702435 43.2874 0.1144 12136 +12138 2 -401.8259276703766 -280.30782461697993 43.89 0.1144 12137 +12139 2 -400.8415927329138 -280.6309628859764 44.5418 0.1144 12138 +12140 2 -399.8046228194834 -280.22354804991824 45.1032 0.1144 12139 +12141 2 -398.6886816050036 -280.04648519151715 45.6075 0.1144 12140 +12142 2 -397.6970515486843 -279.97002126927725 46.2381 0.1144 12141 +12143 2 -396.65502065932696 -280.3925288853329 46.804 0.1144 12142 +12144 2 -395.5366465667074 -280.22917883495785 47.3099 0.1144 12143 +12145 2 -395.6683873847637 -279.1115163828473 47.789 0.1144 12144 +12146 2 -395.7238806304563 -278.10534670049617 46.9162 0.1144 12145 +12147 2 -395.78615371610243 -276.9680933281978 47.2072 0.1144 12146 +12148 2 -395.84757649895425 -275.83168670566045 47.336 0.1144 12147 +12149 2 -395.90984958460047 -274.694433333362 47.4832 0.1144 12148 +12150 2 -395.60958591491215 -273.59205919602687 47.6078 0.1144 12149 +12151 2 -395.19037835669883 -272.52740774924405 47.6983 0.1144 12150 +12152 2 -394.7710999399192 -271.46282686494135 47.7571 0.1144 12151 +12153 2 -394.35358943426127 -270.3981789711918 47.7873 0.1144 12152 +12154 2 -393.9343110174817 -269.3335980868891 47.8008 0.1144 12153 +12155 2 -395.55645389328635 -278.8742593208118 48.4971 0.1144 12145 +12156 2 -394.9835529249413 -279.34795382201406 49.4292 0.1144 12155 +12157 2 -394.2771794488248 -280.2128240505681 50.2911 0.1144 12156 +12158 2 -393.2335014373501 -280.67902751297936 51.0583 0.1144 12157 +12159 2 -393.15534999874046 -280.51778461346674 50.5067 0.1144 12158 +12160 2 -392.6234707123906 -279.5347097054603 49.7106 0.1144 12159 +12161 2 -391.94898037220446 -278.68066633361343 49.3592 0.1144 12160 +12162 2 -391.3862431554546 -277.81229050202626 48.8995 0.1144 12161 +12163 2 -390.94270386911285 -276.7848527221722 48.5069 0.1144 12162 +12164 2 -390.4975217139738 -275.73153133781426 48.228 0.1144 12163 +12165 2 -390.0531898616292 -274.6773632036952 48.0553 0.1144 12164 +12166 2 -389.6202526184815 -273.6183398784112 47.9814 0.1144 12165 +12167 2 -389.23416304850485 -272.54159550579743 47.983 0.1144 12166 +12168 2 -389.2155228657331 -271.4139308244377 48.0354 0.1144 12167 +12169 2 -388.9313875071157 -270.3423496665297 48.1732 0.1144 12168 +12170 2 -388.5218638855828 -269.2793448436778 48.319 0.1144 12169 +12171 2 -388.20865352822176 -268.180125588005 48.4571 0.1144 12170 +12172 2 -387.8096842800191 -267.1083040081753 48.5912 0.1144 12171 +12173 2 -387.55389590091465 -266.0068008056765 48.769 0.1144 12172 +12174 2 -387.89031105994246 -264.9389230314082 48.9594 0.1144 12173 +12175 2 -388.366458301013 -263.9012484895498 49.1448 0.1144 12174 +12176 2 -388.71485822045554 -262.8843783178305 49.4379 0.1144 12175 +12177 2 -389.08354106492567 -261.80525436749235 49.6712 0.1144 12176 +12178 2 -389.64861825512173 -260.8129502361294 49.8392 0.1144 12177 +12179 2 -390.3728546038148 -259.9271869995747 49.9467 0.1144 12178 +12180 2 -390.85070245047405 -258.8878189581942 50.0074 0.1144 12179 +12181 2 -391.0156353722805 -257.7564373862635 50.0312 0.1144 12180 +12182 2 -390.969519144832 -256.61421945891084 50.0259 0.1144 12181 +12183 2 -390.5972298222698 -255.5319178233645 50.0147 0.1144 12182 +12184 2 -390.2241610554793 -254.45039237509926 49.9999 0.1144 12183 +12185 2 -389.85109228868885 -253.36886692683393 49.9825 0.1144 12184 +12186 2 -389.4772440776702 -252.28811766584957 49.9629 0.1144 12185 +12187 2 -389.104954755108 -251.20581603030334 49.9425 0.1144 12186 +12188 2 -388.73266217559853 -250.12507002626623 49.9215 0.1144 12187 +12189 2 -388.359593408808 -249.04354457800093 49.9005 0.1144 12188 +12190 2 -387.9873040862458 -247.96124294245467 49.8795 0.1144 12189 +12191 2 -387.6142353194553 -246.87971749418938 49.859 0.1144 12190 +12192 2 -387.2410956940987 -245.79826260840417 49.8386 0.1144 12191 +12193 2 -386.86724748308 -244.7175133474198 49.8184 0.1144 12192 +12194 2 -386.4941787162896 -243.63598789915457 49.7986 0.1144 12193 +12195 2 -386.1211099494991 -242.55446245088925 49.7795 0.1144 12194 +12196 2 -385.74966737669786 -241.47301111813732 49.7613 0.1144 12195 +12197 2 -385.37737805413565 -240.3907094825911 49.7442 0.1144 12196 +12198 2 -385.00430928734517 -239.3091840343258 49.7286 0.1144 12197 +12199 2 -384.6352020863675 -238.22681835019387 49.716 0.1144 12198 +12200 2 -384.2823716295877 -237.13812276888171 49.7073 0.1144 12199 +12201 2 -384.2581068783504 -235.9950313500322 49.702 0.1144 12200 +12202 2 -384.23462157134134 -234.85116374390174 49.6992 0.1144 12201 +12203 2 -384.209510070343 -233.7072220222578 49.698 0.1144 12202 +12204 2 -384.186024763334 -232.56335441612734 49.6978 0.1144 12203 +12205 2 -392.8794898881605 -280.8974899194486 51.8916 0.1144 12158 +12206 2 -392.62582341630554 -281.9234679947781 52.7363 0.1144 12205 +12207 2 -392.45211855463856 -282.95534105917756 53.6194 0.1144 12206 +12208 2 -392.15717904763994 -283.97076751993745 54.5395 0.1144 12207 +12209 2 -391.8273980541994 -284.9771407590319 55.5108 0.1144 12208 +12210 2 -391.4969081790108 -285.9843610439735 56.5102 0.1144 12209 +12211 2 -391.3135694241314 -286.2476578934785 57.5011 0.1144 12210 +12212 2 -391.44446625118735 -285.1616014167395 58.4458 0.1144 12211 +12213 2 -391.4198700856066 -284.143031081103 59.3104 0.1144 12212 +12214 2 -390.530363897988 -283.99069611404616 60.2582 0.1144 12213 +12215 2 -389.7016953091219 -284.5350609364094 61.2097 0.1144 12214 +12216 2 -389.03648975757994 -285.46068725096495 62.0388 0.1144 12215 +12217 2 -388.4293235754345 -286.4268816761502 62.7864 0.1144 12216 +12218 2 -388.25999261941774 -287.32851454341625 63.5435 0.1144 12217 +12219 2 -389.15351080147354 -287.48969676432023 64.4487 0.1144 12218 +12220 2 -389.73223264337537 -286.9376668469192 65.4912 0.1144 12219 +12221 2 -390.63511558619984 -286.5099181455107 66.54 0.1144 12220 +12222 2 -391.6018408986964 -286.12048695752185 67.555 0.1144 12221 +12223 2 -392.56764534591844 -285.7318316607278 68.495 0.1144 12222 +12224 2 -393.4314235812567 -285.034663524511 69.2381 0.1144 12223 +12225 2 -394.1346862925413 -284.1357748723874 69.7228 0.1144 12224 +12226 2 -394.7280151225227 -283.15908627333806 70.0022 0.1144 12225 +12227 2 -394.96984556317625 -282.044836297806 70.1408 0.1144 12226 +12228 2 -395.17931071808533 -280.92090188740696 70.1828 0.1144 12227 +12229 2 -395.3894847547426 -279.79612043116083 70.1655 0.1144 12228 +12230 2 -395.32801945835126 -278.6562038257289 70.1131 0.1144 12229 +12231 2 -394.91283721845014 -277.5940356857102 70.0325 0.1144 12230 +12232 2 -394.48711422517977 -276.5341789345401 69.93 0.1144 12231 +12233 2 -394.0605441860622 -275.47361330162187 69.8116 0.1144 12232 +12234 2 -393.63489175527195 -274.4138274090179 69.6822 0.1144 12233 +12235 2 -393.2083217161544 -273.3532617760997 69.5461 0.1144 12234 +12236 2 -392.7826692853641 -272.2934758834957 69.4081 0.1144 12235 +12237 2 -392.3569495490409 -271.2320635008165 69.27 0.1144 12236 +12238 2 -391.93129711825065 -270.17227760821254 69.1317 0.1144 12237 +12239 2 -391.5055032664141 -269.1124914195225 68.9937 0.1144 12238 +12240 2 -391.07907464834284 -268.05192608269033 68.8556 0.1144 12239 +12241 2 -390.65335165507247 -266.99206933152016 68.7179 0.1144 12240 +12242 2 -390.2267816159549 -265.931503698602 68.5801 0.1144 12241 +12243 2 -389.80112918516465 -264.871717805998 68.4424 0.1144 12242 +12244 2 -389.3745591460471 -263.8111521730798 68.3049 0.1144 12243 +12245 2 -388.94968615948505 -262.7505900931949 68.168 0.1144 12244 +12246 2 -388.5239631662146 -261.69073334202477 68.031 0.1144 12245 +12247 2 -388.09753454814336 -260.6301680051926 67.895 0.1144 12246 +12248 2 -387.67174069630676 -259.57038181650256 67.76 0.1144 12247 +12249 2 -387.24531207823554 -258.50981647967046 67.6259 0.1144 12248 +12250 2 -386.819518226399 -257.4500302909804 67.4937 0.1144 12249 +12251 2 -386.3930190458476 -256.3893940955821 67.3635 0.1144 12250 +12252 2 -385.96736661505736 -255.32960820297814 67.237 0.1144 12251 +12253 2 -385.54164687873424 -254.26819582029884 67.1152 0.1144 12252 +12254 2 -385.11592358937776 -253.20848049017496 67.0001 0.1144 12253 +12255 2 -384.6902005961074 -252.14862373900485 66.8928 0.1144 12254 +12256 2 -384.2669573565679 -251.0864387220779 66.7948 0.1144 12255 +12257 2 -384.28546729032564 -249.94591173758687 66.7265 0.1144 12256 +12258 2 -384.32427632573246 -248.8029523731426 66.6823 0.1144 12257 +12259 2 -384.37687554162596 -247.65924406133956 66.6565 0.1144 12258 +12260 2 -384.41243189296824 -246.51627788691474 66.6442 0.1144 12259 +12261 2 -384.4018159011713 -245.3724372246203 66.64 0.1144 12260 +12262 2 -384.3880886463561 -244.22859004843144 66.64 0.1144 12261 +12263 2 -384.4640878639032 -243.08740560718974 66.64 0.1144 12262 +12264 2 -384.64280770924904 -241.95683071940934 66.64 0.1144 12263 +12265 2 -384.82307963307073 -240.82795614113166 66.64 0.1144 12264 +12266 2 -384.94609468657086 -239.69005212206312 66.64 0.1144 12265 +12267 2 -384.0772028948382 -238.94562779799816 66.64 0.1144 12266 +12268 2 -383.21000815566094 -238.20120702696656 66.64 0.1144 12267 +12269 2 -382.4165199452917 -237.37689590851372 66.64 0.1144 12268 +12270 2 -381.624661481945 -236.55096185301883 66.64 0.1144 12269 +12271 2 -380.8320235743701 -235.72580398480494 66.64 0.1144 12270 +12272 2 -381.54369000250824 -235.03475206558247 66.6856 0.1144 12271 +12273 2 -382.4954860961665 -234.4470871558788 67.2837 0.1144 12272 +12274 2 -383.5309916856395 -234.00031206238071 67.5559 0.1144 12273 +12275 2 -384.62749046957356 -233.80440528140818 67.8703 0.1144 12274 +12276 2 -385.76800007896986 -233.86498812447945 68.1932 0.1144 12275 +12277 2 -386.902959935701 -233.8406356377677 68.558 0.1144 12276 +12278 2 -387.99952978030154 -233.61078780568616 69.0113 0.1144 12277 +12279 2 -389.0760944286462 -233.31054081080597 69.5562 0.1144 12278 +12280 2 -390.1518123272298 -233.00944351313137 70.1842 0.1144 12279 +12281 2 -391.2294928252237 -232.88548096135253 70.9148 0.1144 12280 +12282 2 -392.1942468529116 -233.03231660436867 71.7987 0.1144 12281 +12283 2 -393.18647337224274 -233.19540254593318 72.7605 0.1144 12282 +12284 2 -394.1848665937076 -233.1149732892353 73.7472 0.1144 12283 +12285 2 -394.9998464465933 -233.3334789857068 74.7863 0.1144 12284 +12286 2 -394.9401418465253 -234.3922487107796 75.64 0.1144 12285 +12287 2 -394.7986765279915 -235.5276392223007 76.242 0.1144 12286 +12288 2 -395.07056647643105 -236.63893423080992 76.6371 0.1144 12287 +12289 2 -395.82756933518846 -237.49633234244374 76.8852 0.1144 12288 +12290 2 -396.6364338544229 -238.30533140271737 77.0403 0.1144 12289 +12291 2 -397.4866157277319 -239.06993985303484 77.1523 0.1144 12290 +12292 2 -396.4291744796066 -239.52402294759275 77.4998 0.1144 12291 +12293 2 -395.3928221403726 -239.96994773829647 77.7955 0.1144 12292 +12294 2 -394.3564730580857 -240.414316897491 78.1424 0.1144 12293 +12295 2 -393.3200498602855 -240.8603122506748 78.5176 0.1144 12294 +12296 2 -392.2837007779987 -241.30468140986935 78.8995 0.1144 12295 +12297 2 -391.2473484387647 -241.75060620057306 79.2683 0.1144 12296 +12298 2 -390.2287337276825 -242.23545908585572 79.6034 0.1144 12297 +12299 2 -389.65886283824653 -243.1532239628114 79.8552 0.1144 12298 +12300 2 -389.24650457736243 -244.22094273883843 80.0209 0.1144 12299 +12301 2 -388.83577251046756 -245.28873563037888 80.1203 0.1144 12300 +12302 2 -387.96483826022995 -245.9251481787805 80.1713 0.1144 12301 +12303 2 -386.8520685457055 -246.19215599221894 80.1906 0.1144 12302 +12304 2 -385.75045697569027 -246.49970447426458 80.194 0.1144 12303 +12305 2 -384.64799865591397 -246.80640265351576 80.194 0.1144 12304 +12306 2 -383.5463870858987 -247.1139511355614 80.194 0.1144 12305 +12307 2 -382.412006613171 -247.26685712986506 80.194 0.1144 12306 +12308 2 -381.27681314449876 -247.40279082209756 80.194 0.1144 12307 +12309 2 -380.1415420072798 -247.54204776087477 80.194 0.1144 12308 +12310 2 -379.0054985318993 -247.67868678182205 80.194 0.1144 12309 +12311 2 -377.87502514513994 -247.85677401277593 80.194 0.1144 12310 +12312 2 -376.752592125977 -248.0785066614608 80.194 0.1144 12311 +12313 2 -375.6310094096085 -248.2993925603847 80.194 0.1144 12312 +12314 2 -374.50850553187945 -248.52119577154966 80.194 0.1144 12313 +12315 2 -373.3860019502364 -248.7428575616684 80.194 0.1144 12314 +12316 2 -372.2627927437925 -248.96381076612508 80.194 0.1144 12315 +12317 2 -371.141210027424 -249.18469666504896 80.194 0.1144 12316 +12318 2 -370.01870644578094 -249.40635845516763 80.194 0.1144 12317 +12319 2 -397.81465617651435 -239.26642495161127 76.8054 0.1144 12291 +12320 2 -398.77431503278706 -239.8880024605169 76.7698 0.1144 12319 +12321 2 -399.5613111989021 -240.70593601192573 76.7542 0.1144 12320 +12322 2 -400.02188328286735 -241.7374399699753 76.7332 0.1144 12321 +12323 2 -400.36098731166 -242.83020804127707 76.7119 0.1144 12322 +12324 2 -400.6870737942137 -243.92620155672125 76.685 0.1144 12323 +12325 2 -400.985755090657 -245.00757126369248 76.596 0.1144 12324 +12326 2 -401.3969389560819 -246.0543867817348 76.4733 0.1144 12325 +12327 2 -402.10287016370455 -246.9205875321988 76.4448 0.1144 12326 +12328 2 -402.7142461534494 -247.7938735329817 76.592 0.1144 12327 +12329 2 -402.8040816180561 -248.92656631979503 76.7295 0.1144 12328 +12330 2 -402.61886321456166 -250.0538749035497 76.8491 0.1144 12329 +12331 2 -402.54696343084015 -251.19591645756637 76.949 0.1144 12330 +12332 2 -402.3383450256921 -252.32070117075972 77.0437 0.1144 12331 +12333 2 -380.37297310948225 -235.14961026678455 66.64 0.1144 12271 +12334 2 -379.7447873689408 -234.19949710753426 66.64 0.1144 12333 +12335 2 -379.2535304709645 -233.16623184624328 66.64 0.1144 12334 +12336 2 -378.8075656146501 -232.11524228067546 66.6397 0.1144 12335 +12337 2 -378.4911731357047 -231.01608707358835 66.6397 0.1144 12336 +12338 2 -378.22246501276345 -229.90486943753976 66.6397 0.1144 12337 +12339 2 -377.9845329923412 -228.78558449005865 66.6397 0.1144 12338 +12340 2 -377.74667153439896 -227.66637040114375 66.6394 0.1144 12339 +12341 2 -377.50788921118226 -226.5479322034237 66.6392 0.1144 12340 +12342 2 -377.2700277532401 -225.42871811450883 66.6389 0.1144 12341 +12343 2 -377.0328719200987 -224.3102126112559 66.6386 0.1144 12342 +12344 2 -376.7957899063847 -223.19022233506004 66.638 0.1144 12343 +12345 2 -376.55707844173423 -222.0717135748599 66.6372 0.1144 12344 +12346 2 -376.3192169837921 -220.95249948594503 66.6358 0.1144 12345 +12347 2 -376.0820611506507 -219.8339939826921 66.6344 0.1144 12346 +12348 2 -375.8441996927085 -218.71477989377718 66.6322 0.1144 12347 +12349 2 -375.6062676722862 -217.59549494629613 66.6288 0.1144 12348 +12350 2 -375.36840621434396 -216.4762808573812 66.6243 0.1144 12349 +12351 2 -375.1296238911273 -215.35784265966117 66.6182 0.1144 12350 +12352 2 -374.891691870705 -214.23855771218007 66.6095 0.1144 12351 +12353 2 -374.7128889480225 -213.1121840553325 66.5974 0.1144 12352 +12354 2 -374.7079988801266 -211.9691332002801 66.5804 0.1144 12353 +12355 2 -374.78802696901937 -210.8287350132471 66.5566 0.1144 12354 +12356 2 -374.96193494575806 -209.69984711109447 66.5232 0.1144 12355 +12357 2 -375.224695701262 -208.58564095630666 66.4787 0.1144 12356 +12358 2 -375.31038191033645 -207.4784179961155 66.4149 0.1144 12357 +12359 2 -374.88945361267884 -206.42507668000238 66.316 0.1144 12358 +12360 2 -374.3091377660186 -205.44182965197993 66.1839 0.1144 12359 +12361 2 -373.7303775508674 -204.45858588090465 66.0257 0.1144 12360 +12362 2 -373.15077058595523 -203.47449180703504 65.8484 0.1144 12361 +12363 2 -372.57201037080415 -202.49124803595984 65.6569 0.1144 12362 +12364 2 -372.1009680959497 -201.462126325325 65.4581 0.1144 12363 +12365 2 -371.8605560257105 -200.34531106464698 65.2613 0.1144 12364 +12366 2 -371.6834569655639 -199.21568827676816 65.0597 0.1144 12365 +12367 2 -371.97633020062744 -198.37661030769527 64.8446 0.1144 12366 +12368 2 -373.0916782090426 -198.46549551526252 64.5554 0.1144 12367 +12369 2 -374.0620903569122 -198.64550638512057 64.0716 0.1144 12368 +12370 2 -374.8956628357357 -199.20381656105155 63.4662 0.1144 12369 +12371 2 -376.025519771213 -199.32016794846794 62.9535 0.1144 12370 +12372 2 -375.93317088812944 -198.98268392841194 62.1219 0.1144 12371 +12373 2 -375.6314257024455 -197.87868034014033 62.1219 0.1144 12372 +12374 2 -375.32868879292084 -196.77552320554372 62.1219 0.1144 12373 +12375 2 -375.0260227419624 -195.67229550846693 62.1219 0.1144 12374 +12376 2 -374.7476947309265 -194.56261337007197 62.1219 0.1144 12375 +12377 2 -374.6359508475897 -193.42421784806 62.1219 0.1144 12376 +12378 2 -374.53318882916574 -192.28506331176155 62.1219 0.1144 12377 +12379 2 -374.3042386736563 -191.1650193499939 62.1219 0.1144 12378 +12380 2 -374.06793284722323 -190.04580851802623 62.1219 0.1144 12379 +12381 2 -373.8324067611045 -188.92568007773127 62.1219 0.1144 12380 +12382 2 -373.8162030095056 -187.78260553579005 62.1219 0.1144 12381 +12383 2 -373.89948378246294 -186.6422141587376 62.1219 0.1144 12382 +12384 2 -373.9852410522039 -185.50105014743747 62.1219 0.1144 12383 +12385 2 -373.991664668011 -184.35802297927395 62.1219 0.1144 12384 +12386 2 -373.9753936108792 -183.21332194725736 62.1219 0.1144 12385 +12387 2 -373.69946798111357 -182.104493368604 62.1219 0.1144 12386 +12388 2 -373.12312376719376 -181.11559778914113 62.1219 0.1144 12387 +12389 2 -372.5468468588068 -180.1283286997537 62.1219 0.1144 12388 +12390 2 -371.97057350345324 -179.1393625578107 62.1219 0.1144 12389 +12391 2 -371.3877844169565 -178.15533253252678 62.1219 0.1144 12390 +12392 2 -370.54483367043315 -177.38182965668483 62.1219 0.1144 12391 +12393 2 -376.1582336498544 -199.69662743688068 62.5744 0.1144 12371 +12394 2 -376.5377404792413 -200.7765400150317 62.3188 0.1144 12393 +12395 2 -376.91816817390253 -201.85567670198785 62.1746 0.1144 12394 +12396 2 -377.29689881600837 -202.9348098359107 62.1194 0.1144 12395 +12397 2 -377.67725594818955 -204.01387566430068 62.1085 0.1144 12396 +12398 2 -378.0576130803707 -205.09294149269058 62.1032 0.1144 12397 +12399 2 -378.4363437224765 -206.1720746266134 62.0956 0.1144 12398 +12400 2 -378.77863312980094 -207.26322301782037 62.085 0.1144 12399 +12401 2 -379.1128547275064 -208.35760721618368 62.0701 0.1144 12400 +12402 2 -379.44552069370263 -209.4519881575997 62.0497 0.1144 12401 +12403 2 -379.7797422914082 -210.54637235596297 62.0231 0.1144 12402 +12404 2 -380.37010034385776 -210.6171171077675 61.9811 0.1144 12403 +12405 2 -381.50557148478674 -210.75384496929368 61.9189 0.1144 12404 +12406 2 -382.64026673452076 -210.88965196554545 61.8414 0.1144 12405 +12407 2 -383.77489112568867 -211.02552952427726 61.7529 0.1144 12406 +12408 2 -384.91029170413753 -211.16218652723725 61.658 0.1144 12407 +12409 2 -386.0457663980998 -211.29721733620806 61.5611 0.1144 12408 +12410 2 -387.1803907892677 -211.43309489493984 61.4664 0.1144 12409 +12411 2 -388.3158622262828 -211.56968133541977 61.3771 0.1144 12410 +12412 2 -389.4504866174506 -211.7055588941516 61.2951 0.1144 12411 +12413 2 -390.5860286169458 -211.84221619319774 61.222 0.1144 12412 +12414 2 -391.72065300811363 -211.97809375192955 61.1596 0.1144 12413 +12415 2 -392.90501440725996 -211.93206575814213 61.1218 0.1144 12414 +12416 2 -394.04807938045985 -211.88665841244176 61.1433 0.1144 12415 +12417 2 -395.1903646133455 -211.84216867506876 61.1828 0.1144 12416 +12418 2 -396.3335674545583 -211.79845867801004 61.2343 0.1144 12417 +12419 2 -397.4767029902382 -211.75312219087593 61.2923 0.1144 12418 +12420 2 -398.6189176606438 -211.70856159493673 61.3516 0.1144 12419 +12421 2 -399.76205319632373 -211.6632251078026 61.411 0.1144 12420 +12422 2 -400.90518517897044 -211.61958567322398 61.4704 0.1144 12421 +12423 2 -402.0482501521703 -211.5741783275237 61.5297 0.1144 12422 +12424 2 -403.190606243622 -211.52961802767058 61.5891 0.1144 12423 +12425 2 -404.3337382262687 -211.48597859309191 61.6484 0.1144 12424 +12426 2 -405.4768737619487 -211.44064210595778 61.7078 0.1144 12425 +12427 2 -406.61908843235415 -211.3960815100186 61.7669 0.1144 12426 +12428 2 -407.76222396803416 -211.3507450228845 61.826 0.1144 12427 +12429 2 -408.9053559506808 -211.3071055883059 61.8848 0.1144 12428 +12430 2 -410.0484914863607 -211.26176910117175 61.9433 0.1144 12429 +12431 2 -411.19077701533246 -211.2171379427525 62.0012 0.1144 12430 +12432 2 -412.333062248218 -211.17264820537946 62.0589 0.1144 12431 +12433 2 -413.47704453365907 -211.12816202103969 62.116 0.1144 12432 +12434 2 -414.6192592040646 -211.08360142510048 62.1718 0.1144 12433 +12435 2 -415.76239473974454 -211.0382649379664 62.2261 0.1144 12434 +12436 2 -416.90475083119634 -210.99370463811331 62.2784 0.1144 12435 +12437 2 -418.0486622580712 -210.94928901625366 62.3283 0.1144 12436 +12438 2 -419.1909477870429 -210.90465785783434 62.3753 0.1144 12437 +12439 2 -419.23768615283956 -210.60140623761995 62.4224 0.1144 12438 +12440 2 -419.4131530180346 -209.47096596090535 62.4224 0.1144 12439 +12441 2 -419.5886907417959 -208.34045512171068 62.4224 0.1144 12440 +12442 2 -419.75765253494785 -207.20985980398865 62.4224 0.1144 12441 +12443 2 -419.87734404581727 -206.07201953741966 62.4224 0.1144 12442 +12444 2 -419.9970358527728 -204.93403784980438 62.4224 0.1144 12443 +12445 2 -420.1166568011621 -203.7961267246692 62.4224 0.1144 12444 +12446 2 -420.25264509363103 -211.11964957670642 62.4126 0.1144 12438 +12447 2 -421.37413981590987 -211.34608022370617 62.4425 0.1144 12446 +12448 2 -422.4956345381886 -211.57251087070597 62.4674 0.1144 12447 +12449 2 -423.61712926046744 -211.7989415177057 62.4884 0.1144 12448 +12450 2 -424.73955846798185 -212.01809090538146 62.5148 0.1144 12449 +12451 2 -425.8661596645477 -212.10212062569758 62.5904 0.1144 12450 +12452 2 -427.006042516163 -212.05677732858294 62.6382 0.1144 12451 +12453 2 -428.1468094243894 -211.9944652824305 62.648 0.1144 12452 +12454 2 -429.28913196412486 -211.93215649322525 62.6273 0.1144 12453 +12455 2 -430.42989887235126 -211.8698444470728 62.5825 0.1144 12454 +12456 2 -431.5644932648362 -211.98627646389707 62.5218 0.1144 12455 +12457 2 -432.2211270442399 -212.8919720693551 62.4646 0.1144 12456 +12458 2 -432.9172860815212 -213.79866966768185 62.4212 0.1144 12457 +12459 2 -433.73430259281577 -214.59799841123615 62.3882 0.1144 12458 +12460 2 -434.6647404798923 -215.2616583981967 62.3599 0.1144 12459 +12461 2 -435.70894052373546 -215.7282026280807 62.3314 0.1144 12460 +12462 2 -436.78242253051343 -216.12353164437468 62.2952 0.1144 12461 +12463 2 -437.8265520118764 -216.5900050156925 62.2423 0.1144 12462 +12464 2 -438.6500267196228 -217.378104257985 62.167 0.1144 12463 +12465 2 -439.40299064010685 -218.2395244309838 62.0707 0.1144 12464 +12466 2 -440.0635246954984 -219.1736539571567 61.9654 0.1144 12465 +12467 2 -440.8109489302449 -219.94533048479872 61.7322 0.1144 12466 +12468 2 -441.66736481122047 -220.46805022692908 61.371 0.1144 12467 +12469 2 -442.39218536544985 -221.22836569709045 60.9857 0.1144 12468 +12470 2 -443.36444449356134 -221.26922151434886 61.1044 0.1144 12469 +12471 2 -444.4167360904271 -221.31590175819733 61.5558 0.1144 12470 +12472 2 -445.5278380507923 -221.13621833193713 62.0491 0.1144 12471 +12473 2 -446.5340720403442 -220.75570871540907 62.5621 0.1144 12472 +12474 2 -447.0090232440291 -219.91778977295803 63.0361 0.1144 12473 +12475 2 -447.09478051377005 -218.77662576165793 63.3192 0.1144 12474 +12476 2 -446.98133206761054 -217.7093617689813 63.3494 0.1144 12475 +12477 2 -446.69468971534013 -216.6531196130886 63.224 0.1144 12476 +12478 2 -446.3014327710775 -215.58859320863016 63.0585 0.1144 12477 +12479 2 -445.9137638827028 -214.52315926277225 62.8603 0.1144 12478 +12480 2 -445.64101682148834 -213.41596368808865 62.6858 0.1144 12479 +12481 2 -445.3965758799035 -212.29836217320195 62.5736 0.1144 12480 +12482 2 -445.1222799971604 -211.18791065750656 62.5201 0.1144 12481 +12483 2 -444.72818637006435 -210.11772563467997 62.5066 0.1144 12482 +12484 2 -444.24259134740345 -209.0820680590466 62.5178 0.1144 12483 +12485 2 -443.7431252187619 -208.0520383088258 62.5509 0.1144 12484 +12486 2 -443.3295727258834 -206.98824723176511 62.603 0.1144 12485 +12487 2 -442.97596282487547 -205.90032783773395 62.6774 0.1144 12486 +12488 2 -442.6222823613875 -204.81233758513653 62.7771 0.1144 12487 +12489 2 -442.26867246037955 -203.72441819110537 62.9031 0.1144 12488 +12490 2 -441.79917575010654 -202.7001080529915 63.0972 0.1144 12489 +12491 2 -441.0904872620817 -201.93501802107303 63.443 0.1144 12490 +12492 2 -440.1256854189446 -201.43950715996172 63.8397 0.1144 12491 +12493 2 -439.0449385315644 -201.069194568469 64.1897 0.1144 12492 +12494 2 -437.95601922218253 -200.7183103458894 64.4882 0.1144 12493 +12495 2 -436.86632046857244 -200.36820231059082 64.745 0.1144 12494 +12496 2 -435.7526868878074 -200.23724774674332 65.0152 0.1144 12495 +12497 2 -434.62832581732323 -200.23157031953426 65.3243 0.1144 12496 +12498 2 -433.50465971254005 -200.23169263565356 65.6807 0.1144 12497 +12499 2 -432.38028502209477 -200.2325205765737 66.0825 0.1144 12498 +12500 2 -431.26041012549615 -200.38071931465305 66.4871 0.1144 12499 +12501 2 -430.16288466543165 -200.69548885655652 66.8559 0.1144 12500 +12502 2 -429.0772867271768 -201.05483119535987 67.1891 0.1144 12501 +12503 2 -428.0505673978121 -201.5267270299559 67.5545 0.1144 12502 +12504 2 -427.1933860212112 -202.1802096828309 68.0403 0.1144 12503 +12505 2 -426.29330571156345 -202.82292518457666 68.6017 0.1144 12504 +12506 2 -425.3536796201106 -203.44066767806495 69.2093 0.1144 12505 +12507 2 -424.30528528185664 -203.8291500605705 69.8418 0.1144 12506 +12508 2 -423.3535151921766 -204.06665497923612 70.6096 0.1144 12507 +12509 2 -422.3138182365983 -204.18496947776097 71.4176 0.1144 12508 +12510 2 -421.28357861784013 -204.3793886330439 72.2392 0.1144 12509 +12511 2 -420.20635976969197 -204.62059071262556 73.0083 0.1144 12510 +12512 2 -419.09837794079976 -204.89736664518563 73.6366 0.1144 12511 +12513 2 -418.0004357045214 -204.60062802990916 74.1594 0.1144 12512 +12514 2 -417.0951694853537 -203.90385736287888 74.6194 0.1144 12513 +12515 2 -416.41834476971695 -202.98270452306176 75.0758 0.1144 12514 +12516 2 -415.5108938441699 -202.5188507662334 75.7574 0.1144 12515 +12517 2 -414.5827740994074 -202.26779334375377 76.6755 0.1144 12516 +12518 2 -413.5179802917204 -202.3497099300551 77.684 0.1144 12517 +12519 2 -412.8050386870498 -201.75848893217892 78.8978 0.1144 12518 +12520 2 -412.0818957518071 -200.93991124789437 80.1349 0.1144 12519 +12521 2 -411.6454045545198 -200.39629174429774 81.5195 0.1144 12520 +12522 2 -411.07552315648456 -200.94756235132607 83.0382 0.1144 12521 +12523 2 -410.49512745072974 -201.52228694166595 84.6336 0.1144 12522 +12524 2 -409.98607951115673 -202.02920779862137 86.2876 0.1144 12523 +12525 2 -409.48960178822455 -202.3412759171983 87.9528 0.1144 12524 +12526 2 -408.5455062167382 -201.98659367645354 89.397 0.1144 12525 +12527 2 -408.1308328874307 -201.82966668718421 90.7936 0.1144 12526 +12528 2 -408.26649726416304 -200.79686544934324 93.8862 0.1144 12527 +12529 2 -408.2737676297312 -199.6546885839741 93.8689 0.1144 12528 +12530 2 -408.1919394791911 -198.51388081586447 93.861 0.1144 12529 +12531 2 -407.9063231027644 -197.4066582973449 93.8473 0.1144 12530 +12532 2 -408.0300366749989 -196.27285696904923 93.8232 0.1144 12531 +12533 2 -408.1011570144922 -195.13159160231353 93.7905 0.1144 12532 +12534 2 -407.8729863032109 -194.01077145326494 93.7493 0.1144 12533 +12535 2 -407.85840548865406 -192.86932665834627 93.6782 0.1144 12534 +12536 2 -407.84538030560634 -191.72788512037482 93.588 0.1144 12535 +12537 2 -407.8307994910495 -190.5864403254562 93.3523 0.1144 12536 +12538 2 -407.3788219501913 -202.06667059067996 91.7151 0.1144 12527 +12539 2 -406.79278168770094 -203.00702908122503 92.2132 0.1144 12538 +12540 2 -406.2544215278948 -204.00490459366813 92.386 0.1144 12539 +12541 2 -405.7168408123169 -205.00200391883027 92.3387 0.1144 12540 +12542 2 -405.1799654254538 -205.99995325070066 92.1726 0.1144 12541 +12543 2 -404.5777489799284 -206.96615803889972 91.964 0.1144 12542 +12544 2 -403.85436263794367 -207.85121594673961 91.8257 0.1144 12543 +12545 2 -403.1203848178791 -208.72903917476063 91.7501 0.1144 12544 +12546 2 -402.38011816261775 -209.537199065567 91.8204 0.1144 12545 +12547 2 -401.4227811847488 -210.13701463789303 91.9181 0.1144 12546 +12548 2 -400.3541278104565 -210.54256662668558 91.9654 0.1144 12547 +12549 2 -399.21495008545554 -210.62263041913735 91.9517 0.1144 12548 +12550 2 -398.0884539994589 -210.48839622738916 91.8285 0.1144 12549 +12551 2 -397.26434936605483 -210.37268497814364 91.3948 0.1144 12550 +12552 2 -397.037619348357 -209.71205394717796 90.3594 0.1144 12551 +12553 2 -396.6661767755558 -208.6306026144261 90.3594 0.1144 12552 +12554 2 -396.28496963666635 -207.55224211475092 90.3594 0.1144 12553 +12555 2 -395.8179899869741 -206.50778465904799 90.3594 0.1144 12554 +12556 2 -395.51695042609106 -205.40448965643841 90.3594 0.1144 12555 +12557 2 -395.6964461626318 -204.27483563393258 90.3594 0.1144 12556 +12558 2 -397.72390533900386 -211.48423147187515 90.7374 0.1144 12551 +12559 2 -398.16172501323877 -212.5416386700977 90.5349 0.1144 12558 +12560 2 -398.5988393587588 -213.59819586161197 90.4109 0.1144 12559 +12561 2 -399.0658222653983 -214.6410976858057 90.3568 0.1144 12560 +12562 2 -399.6825997767817 -215.6025714043502 90.356 0.1144 12561 +12563 2 -400.3715312403107 -216.51646637564596 90.3546 0.1144 12562 +12564 2 -401.05805676953617 -217.4312048397556 90.3526 0.1144 12563 +12565 2 -401.7339570668652 -218.35483062332307 90.3501 0.1144 12564 +12566 2 -402.3176402769006 -219.31708358399538 90.3462 0.1144 12565 +12567 2 -402.47868464330327 -220.44829910813303 90.3412 0.1144 12566 +12568 2 -402.4900127737955 -221.58973709307116 90.3336 0.1144 12567 +12569 2 -402.1989905136788 -222.65926554249012 90.3235 0.1144 12568 +12570 2 -401.6373557987441 -223.56092559316346 90.3095 0.1144 12569 +12571 2 -401.8421128884106 -224.68572723978 90.2896 0.1144 12570 +12572 2 -401.9578215945074 -225.82172689441614 90.2611 0.1144 12571 +12573 2 -401.9383872424419 -226.9647268226575 90.221 0.1144 12572 +12574 2 -401.86648745872037 -228.1067683766742 90.1681 0.1144 12573 +12575 2 -401.77507482755846 -229.24721343929843 90.0992 0.1144 12574 +12576 2 -401.67724456374185 -230.37951331984317 89.9889 0.1144 12575 +12577 2 -401.6247703901727 -231.49727101769554 89.8022 0.1144 12576 +12578 2 -401.83038124168115 -232.58579979441294 89.6 0.1144 12577 +12579 2 -402.33622493736664 -233.60933750037947 89.4432 0.1144 12578 +12580 2 -402.68906546107416 -234.69322476611785 89.329 0.1144 12579 +12581 2 -402.8622770709214 -235.82206159587412 89.2528 0.1144 12580 +12582 2 -402.89707961466684 -236.964255836338 89.2094 0.1144 12581 +12583 2 -402.8227065911089 -238.10551439309313 89.1887 0.1144 12582 +12584 2 -402.6836469107926 -239.2402028328467 89.1724 0.1144 12583 +12585 2 -402.6496666209011 -240.37341421202487 89.1495 0.1144 12584 +12586 2 -402.84713534517687 -241.5006754785167 89.1173 0.1144 12585 +12587 2 -402.9847088513597 -242.62943769457314 89.0719 0.1144 12586 +12588 2 -402.95565786814666 -243.77241748895898 89.0098 0.1144 12587 +12589 2 -403.0075065333905 -244.91231396053544 88.9263 0.1144 12588 +12590 2 -403.11996610845597 -246.04660975263556 88.8012 0.1144 12589 +12591 2 -403.1410623580698 -247.18325985194156 88.6133 0.1144 12590 +12592 2 -403.16378509775905 -248.31984264571463 88.3758 0.1144 12591 +12593 2 -403.185590229121 -249.4556456991734 88.1017 0.1144 12592 +12594 2 -403.2083129688101 -250.59222849294648 87.803 0.1144 12593 +12595 2 -403.23018895873827 -251.72796098392516 87.4905 0.1144 12594 +12596 2 -403.2528408398613 -252.86461434017835 87.1735 0.1144 12595 +12597 2 -403.27478739226945 -254.00041768972324 86.858 0.1144 12596 +12598 2 -403.2975101319587 -255.13700048349628 86.5446 0.1144 12597 +12599 2 -403.3185358190924 -256.2735797242361 86.2333 0.1144 12598 +12600 2 -403.3404823715007 -257.409383073781 85.9219 0.1144 12599 +12601 2 -403.36638367974103 -258.5475988715238 85.6142 0.1144 12600 +12602 2 -403.4044386114649 -259.68994134301454 85.3255 0.1144 12601 +12603 2 -403.4869791967865 -260.82820501272147 85.0567 0.1144 12602 +12604 2 -403.78243149605396 -261.89825422600916 84.7535 0.1144 12603 +12605 2 -404.33372928648964 -262.8604393829622 84.3718 0.1144 12604 +12606 2 -404.8850306299586 -263.8209274873598 83.9373 0.1144 12605 +12607 2 -405.4363316773414 -264.7815570128037 83.475 0.1144 12606 +12608 2 -405.84758008953844 -265.79754274275535 83.0186 0.1144 12607 +12609 2 -405.6471784253228 -266.84795686250993 82.6434 0.1144 12608 +12610 2 -405.0674779248401 -267.8336542703081 82.3892 0.1144 12609 +12611 2 -404.48713940117545 -268.82012816147335 82.2366 0.1144 12610 +12612 2 -403.90666271341183 -269.8050461250434 82.159 0.1144 12611 +12613 2 -403.32618276870085 -270.79151972012255 82.1316 0.1144 12612 +12614 2 -402.7465531267844 -271.7771465654407 82.1324 0.1144 12613 +12615 2 -402.1661437445536 -272.7636910190861 82.1433 0.1144 12614 +12616 2 -401.5864432440709 -273.74938842688425 82.1584 0.1144 12615 +12617 2 -401.00596329936 -274.7358620219635 82.1772 0.1144 12616 +12618 2 -400.2632970215892 -275.5756246311943 82.2086 0.1144 12617 +12619 2 -399.3517338690836 -276.26533879589874 82.2584 0.1144 12618 +12620 2 -398.43784570776836 -276.95101757536315 82.3166 0.1144 12619 +12621 2 -397.53763985760975 -277.6536956007348 82.3712 0.1144 12620 +12622 2 -396.7052949794407 -278.43415619793734 82.4018 0.1144 12621 +12623 2 -395.9293224167956 -279.2746268946437 82.3948 0.1144 12622 +12624 2 -395.1541966039116 -280.1159478941445 82.348 0.1144 12623 +12625 2 -394.96615878431794 -281.0700797447828 82.2441 0.1144 12624 +12626 2 -395.4243045040381 -282.11218524784 82.0739 0.1144 12625 +12627 2 -395.92852526268155 -283.134093206784 81.8448 0.1144 12626 +12628 2 -396.43274602132504 -284.15600116572784 81.5634 0.1144 12627 +12629 2 -396.9371082010148 -285.17790942075794 81.2372 0.1144 12628 +12630 2 -397.4404786568639 -286.20066412946295 80.8746 0.1144 12629 +12631 2 -397.94469941550744 -287.2225720884069 80.488 0.1144 12630 +12632 2 -398.36740644801614 -287.7978411860192 79.8983 0.1144 12631 +12633 2 -399.1215791990187 -287.305080725303 79.1862 0.1144 12632 +12634 2 -400.17487334345446 -286.87290930642246 78.6136 0.1144 12633 +12635 2 -401.1516891188611 -286.2909536458118 78.1404 0.1144 12634 +12636 2 -400.42749614924094 -286.7844839820149 77.9066 0.1144 12635 +12637 2 -399.49185836533655 -287.42238741305323 78.342 0.1144 12636 +12638 2 -398.49255053387645 -287.9396662817328 78.5333 0.1144 12637 +12639 2 -397.38722187119 -288.0975121478291 78.743 0.1144 12638 +12640 2 -396.25054482804796 -288.1314777126551 78.9463 0.1144 12639 +12641 2 -395.16112418836616 -288.42533381661633 79.1154 0.1144 12640 +12642 2 -394.10934836858956 -288.8753275442764 79.2383 0.1144 12641 +12643 2 -393.0568672200983 -289.3244712652281 79.3187 0.1144 12642 +12644 2 -392.0050914003217 -289.77446499288806 79.3696 0.1144 12643 +12645 2 -390.95253939326415 -290.2236792763199 79.4032 0.1144 12644 +12646 2 -389.901613876282 -290.6728262542189 79.4284 0.1144 12645 +12647 2 -388.84906186922444 -291.12204053765066 79.4511 0.1144 12646 +12648 2 -387.79728604944785 -291.57203426531066 79.4738 0.1144 12647 +12649 2 -386.74558108823754 -292.0219574304906 79.4962 0.1144 12648 +12650 2 -385.693805268461 -292.47195115815055 79.518 0.1144 12649 +12651 2 -384.64125326140345 -292.9211654415824 79.5396 0.1144 12650 +12652 2 -383.58947744162685 -293.3711591692424 79.56 0.1144 12651 +12653 2 -382.53777573736375 -293.81952670291315 79.5796 0.1144 12652 +12654 2 -381.4859999175872 -294.26952043057315 79.5978 0.1144 12653 +12655 2 -380.43422409781067 -294.7195141582332 79.6138 0.1144 12654 +12656 2 -379.38258969908037 -295.16950818197927 79.627 0.1144 12655 +12657 2 -378.32996712954275 -295.6186516068449 79.6359 0.1144 12656 +12658 2 -377.2782618722463 -296.06871619307105 79.6393 0.1144 12657 +12659 2 -376.22648960550305 -296.5170128681757 79.6348 0.1144 12658 +12660 2 -375.1747843482066 -296.9670774544019 79.6188 0.1144 12659 +12661 2 -374.1221617786689 -297.4162208792675 79.5866 0.1144 12660 +12662 2 -373.0704568174586 -297.8661440444474 79.5329 0.1144 12661 +12663 2 -372.0187515601621 -298.3162086306736 79.4522 0.1144 12662 +12664 2 -370.9669084348527 -298.7645758682583 79.333 0.1144 12663 +12665 2 -369.9168974713508 -299.18218772935177 79.1308 0.1144 12664 +12666 2 -368.84763401408554 -299.5076230669489 78.8365 0.1144 12665 +12667 2 -367.7598907912901 -299.7770874454158 78.4812 0.1144 12666 +12668 2 -366.67285615415653 -300.0458461990819 78.0937 0.1144 12667 +12669 2 -365.6446726838909 -300.4740396734278 77.7076 0.1144 12668 +12670 2 -365.1218176304081 -301.39508497255673 77.3917 0.1144 12669 +12671 2 -364.8273972139607 -302.5003152781397 77.1677 0.1144 12670 +12672 2 -364.5331182185596 -303.6055458798087 77.0188 0.1144 12671 +12673 2 -364.24039159772036 -304.7123353699341 76.925 0.1144 12672 +12674 2 -363.9460420398392 -305.817495113037 76.8667 0.1144 12673 +12675 2 -363.6533186759472 -306.9227289716532 76.8278 0.1144 12674 +12676 2 -363.35896911806594 -308.02788871475605 76.7948 0.1144 12675 +12677 2 -363.0654663099458 -309.13389876065327 76.7637 0.1144 12676 +12678 2 -362.77196350182567 -310.2399088065505 76.7354 0.1144 12677 +12679 2 -362.47924013793374 -311.3451426651668 76.7116 0.1144 12678 +12680 2 -362.1848905800525 -312.45030240826964 76.6937 0.1144 12679 +12681 2 -361.89138777193233 -313.55631245416686 76.6844 0.1144 12680 +12682 2 -361.59781440133213 -314.66225164149785 76.6858 0.1144 12681 +12683 2 -361.30509103744015 -315.7674855001141 76.6998 0.1144 12682 +12684 2 -361.1789815978299 -316.8973220056498 76.7432 0.1144 12683 +12685 2 -361.20812878015437 -318.0387972974379 76.8247 0.1144 12684 +12686 2 -361.2712911291012 -319.1787174559032 76.9398 0.1144 12685 +12687 2 -361.33275642549256 -320.31863406133505 77.0795 0.1144 12686 +12688 2 -361.39513933021124 -321.4593304070813 77.2372 0.1144 12687 +12689 2 -361.4582308205919 -322.59932112802676 77.4054 0.1144 12688 +12690 2 -361.4857518089271 -323.74072230430136 77.5793 0.1144 12689 +12691 2 -361.06458735617946 -324.7590664817491 77.7532 0.1144 12690 +12692 2 -360.4494375468563 -325.7220622045277 77.929 0.1144 12691 +12693 2 -359.8342844805859 -326.6866135588152 78.1105 0.1144 12692 +12694 2 -359.2190641087826 -327.64953842302754 78.3012 0.1144 12693 +12695 2 -358.8666043229387 -328.71420061798085 78.5252 0.1144 12694 +12696 2 -358.89085595240135 -329.82978549528445 78.7998 0.1144 12695 +12697 2 -359.00179364977424 -330.94795603116063 79.1076 0.1144 12696 +12698 2 -359.11273134714713 -332.0661265670368 79.4245 0.1144 12697 +12699 2 -359.2244484887482 -333.18352091563196 79.7289 0.1144 12698 +12700 2 -359.374192791409 -334.30820738475154 79.9753 0.1144 12699 +12701 2 -359.67933909428467 -335.3750949063964 80.0386 0.1144 12700 +12702 2 -359.27687824816667 -336.342495731981 79.966 0.1144 12701 +12703 2 -358.3436123486631 -336.9958190905286 79.849 0.1144 12702 +12704 2 -357.3926355627435 -337.631215527914 79.7104 0.1144 12703 +12705 2 -356.4423641055387 -338.2674619720076 79.5682 0.1144 12704 +12706 2 -355.4922340693801 -338.9037087121874 79.4374 0.1144 12705 +12707 2 -354.5419626121753 -339.53995515628105 79.3229 0.1144 12706 +12708 2 -353.59183583296397 -340.17464626495155 79.21 0.1144 12707 +12709 2 -352.6415643757591 -340.8108927090452 79.0888 0.1144 12708 +12710 2 -351.6913634810344 -341.447210011705 78.9606 0.1144 12709 +12711 2 -350.7621063190209 -342.11093625560886 78.8178 0.1144 12710 +12712 2 -350.4647813076603 -343.11744815698876 78.5394 0.1144 12711 +12713 2 -350.12188396920567 -344.20801053726825 78.3241 0.1144 12712 +12714 2 -349.7791247948502 -345.3001288451429 78.1684 0.1144 12713 +12715 2 -349.4362274563956 -346.3906912254224 78.0665 0.1144 12714 +12716 2 -349.0925506737128 -347.48202979298287 78.013 0.1144 12715 +12717 2 -348.74979149935723 -348.57414810085754 78.0027 0.1144 12716 +12718 2 -348.40689416090265 -349.6647104811369 78.0293 0.1144 12717 +12719 2 -348.06321737821986 -350.7560490486974 78.0665 0.1144 12718 +12720 2 -347.72031678281803 -351.84816706048593 78.122 0.1144 12719 +12721 2 -347.37756086540975 -352.93872973685154 78.192 0.1144 12720 +12722 2 -347.1203881657938 -354.05202835023977 78.2925 0.1144 12721 +12723 2 -346.9861504210123 -355.18022148879186 78.4412 0.1144 12722 +12724 2 -346.8519126762308 -356.30841462734395 78.6192 0.1144 12723 +12725 2 -346.71774579001556 -357.4365372034159 79.0644 0.1144 12724 +12726 2 -401.3608636062803 -286.0826532045907 77.8044 0.1144 12635 +12727 2 -402.17141148808264 -285.27704462636814 77.579 0.1144 12726 +12728 2 -402.9828802351593 -284.47066015695066 77.448 0.1144 12727 +12729 2 -403.793502232475 -283.66342538473873 77.3637 0.1144 12728 +12730 2 -404.6041209728435 -282.85774624403604 77.2856 0.1144 12729 +12731 2 -405.4155897199202 -282.05136177461856 77.2122 0.1144 12730 +12732 2 -406.2261376017225 -281.245753196396 77.1372 0.1144 12731 +12733 2 -407.0376063487993 -280.4393687269785 77.0622 0.1144 12732 +12734 2 -407.8490045333958 -279.6329133989948 76.9874 0.1144 12733 +12735 2 -408.6588470864833 -278.82645481406394 76.9124 0.1144 12734 +12736 2 -409.47024527108 -278.0199994860802 76.8373 0.1144 12735 +12737 2 -410.2817140181568 -277.21361501666274 76.7626 0.1144 12736 +12738 2 -411.092261899959 -276.4080064384401 76.6875 0.1144 12737 +12739 2 -411.9037306470358 -275.60162196902263 76.6125 0.1144 12738 +12740 2 -412.7151288316324 -274.79516664103903 76.5377 0.1144 12739 +12741 2 -413.5249713847199 -273.98870805610807 76.4627 0.1144 12740 +12742 2 -414.3364401317966 -273.1823235866906 76.3879 0.1144 12741 +12743 2 -415.1470588721651 -272.3766444459879 76.3129 0.1144 12742 +12744 2 -415.95852761924186 -271.5702599765704 76.2381 0.1144 12743 +12745 2 -416.7699258038385 -270.76380464858676 76.1634 0.1144 12744 +12746 2 -417.58047368564075 -269.9581960703641 76.0883 0.1144 12745 +12747 2 -418.39109568295646 -269.15096129815225 76.0138 0.1144 12746 +12748 2 -419.20256443003314 -268.3445768287348 75.9391 0.1144 12747 +12749 2 -420.0131831704016 -267.5388976880321 75.8643 0.1144 12748 +12750 2 -420.8246519174784 -266.7325132186146 75.7901 0.1144 12749 +12751 2 -421.636050102075 -265.9260578906309 75.7159 0.1144 12750 +12752 2 -422.4458217965963 -265.1196698681801 75.642 0.1144 12751 +12753 2 -423.25729054367304 -264.31328539876256 75.5686 0.1144 12752 +12754 2 -424.06868872826965 -263.50683007077896 75.4958 0.1144 12753 +12755 2 -424.8793074686381 -262.7011509300762 75.4239 0.1144 12754 +12756 2 -425.6907762157149 -261.89476646065873 75.353 0.1144 12755 +12757 2 -426.5013240975171 -261.08915788243615 75.2839 0.1144 12756 +12758 2 -427.3119460948328 -260.2819231102243 75.217 0.1144 12757 +12759 2 -428.12341484190955 -259.4755386408068 75.1534 0.1144 12758 +12760 2 -428.934033582278 -258.66985950010405 75.0943 0.1144 12759 +12761 2 -429.74550232935474 -257.86347503068663 75.0417 0.1144 12760 +12762 2 -430.5569005139514 -257.057019702703 74.9972 0.1144 12761 +12763 2 -431.245485435105 -256.17754579953134 74.965 0.1144 12762 +12764 2 -431.36348294826587 -255.07201683704875 74.9526 0.1144 12763 +12765 2 -431.11995961500827 -253.9551950624763 74.9638 0.1144 12764 +12766 2 -430.8424110482006 -252.8447367368004 75.0033 0.1144 12765 +12767 2 -430.56804104994404 -251.73591141509425 75.08 0.1144 12766 +12768 2 -430.28320086079833 -250.62946834080284 75.1909 0.1144 12767 +12769 2 -429.9991365628476 -249.52394613178592 75.3273 0.1144 12768 +12770 2 -429.7142963737019 -248.41750305749446 75.4813 0.1144 12769 +12771 2 -429.4302323718372 -247.3118394274312 75.6462 0.1144 12770 +12772 2 -429.14461244237725 -246.2063139614671 75.8167 0.1144 12771 +12773 2 -428.9042644207236 -245.09268082237358 75.994 0.1144 12772 +12774 2 -428.74561562561064 -243.96557154204217 76.1832 0.1144 12773 +12775 2 -428.569141264771 -242.84153621787917 76.3734 0.1144 12774 +12776 2 -428.3369316152165 -241.72473813019556 76.55 0.1144 12775 +12777 2 -428.0868961038491 -240.61115541972666 76.7077 0.1144 12776 +12778 2 -427.90398368041315 -239.48873296567788 76.8284 0.1144 12777 +12779 2 -427.9613743349721 -238.35309572044096 76.8947 0.1144 12778 +12780 2 -428.15302369499636 -237.2275683716829 76.9202 0.1144 12779 +12781 2 -428.34552365390095 -236.10105285211753 76.9266 0.1144 12780 +12782 2 -428.6672615209843 -235.01857791712612 76.9577 0.1144 12781 +12783 2 -429.16452411659566 -233.99388766587657 77.0543 0.1144 12782 +12784 2 -429.66411853099714 -232.96998011580243 77.2094 0.1144 12783 +12785 2 -430.1620864553232 -231.94613987126118 77.413 0.1144 12784 +12786 2 -430.6617514322048 -230.92230317975321 77.6499 0.1144 12785 +12787 2 -431.15979021509713 -229.89839237273185 77.9066 0.1144 12786 +12788 2 -431.65945519197874 -228.87455568122388 78.1707 0.1144 12787 +12789 2 -432.15827341909926 -227.84986868692158 78.4353 0.1144 12788 +12790 2 -432.65708838927253 -226.82673732412837 78.701 0.1144 12789 +12791 2 -433.15590661639305 -225.80205032982607 78.9681 0.1144 12790 +12792 2 -433.6547212904802 -224.77906038807916 79.2372 0.1144 12791 +12793 2 -434.15353951760073 -223.75437339377686 79.5088 0.1144 12792 +12794 2 -434.6524250502541 -222.73131288954983 79.7843 0.1144 12793 +12795 2 -435.15124327737465 -221.70662589524753 80.0649 0.1144 12794 +12796 2 -435.6499873889817 -220.68356509493444 80.353 0.1144 12795 +12797 2 -436.14894703714856 -219.65887839671822 80.6509 0.1144 12796 +12798 2 -436.6476911487556 -218.63581759640516 80.9637 0.1144 12797 +12799 2 -437.1465093758761 -217.6111306021028 81.2966 0.1144 12798 +12800 2 -437.6461743527577 -216.58729391059487 81.6572 0.1144 12799 +12801 2 -438.14421313565003 -215.5633831035735 82.0576 0.1144 12800 +12802 2 -438.6438075500515 -214.53947555349933 82.5045 0.1144 12801 +12803 2 -438.933972495293 -213.50791702653498 83.053 0.1144 12802 +12804 2 -439.04464788924656 -212.42096968320442 83.6828 0.1144 12803 +12805 2 -439.4852383938181 -211.7496442350935 84.4724 0.1144 12804 +12806 2 -440.1435486692943 -211.44929938129613 85.4731 0.1144 12805 +12807 2 -441.08035854508023 -211.06213901835864 86.4209 0.1144 12806 +12808 2 -442.04983907950486 -210.47125843535417 87.1811 0.1144 12807 +12809 2 -442.61733502969304 -209.50575877376954 87.7643 0.1144 12808 +12810 2 -443.0094819244025 -208.43234081557722 88.2098 0.1144 12809 +12811 2 -443.374993010302 -207.34833117720467 88.5539 0.1144 12810 +12812 2 -443.6599035463157 -206.46228454385613 89.052 0.1144 12811 +12813 2 -443.6492328725742 -205.37833584270743 89.5885 0.1144 12812 +12814 2 -443.60455008705713 -204.32825713200123 90.209 0.1144 12813 +12815 2 -443.3488358234661 -203.22512773551315 90.7301 0.1144 12814 +12816 2 -443.92097448310653 -202.30496343814835 91.2103 0.1144 12815 +12817 2 -444.4780713030721 -201.30790497286947 91.5771 0.1144 12816 +12818 2 -444.28220863893 -200.19033445303856 91.8582 0.1144 12817 +12819 2 -444.0701599269255 -199.06954805780651 92.094 0.1144 12818 +12820 2 -443.8565555834119 -197.94875840562725 92.3014 0.1144 12819 +12821 2 -443.64457772997366 -196.82790144791514 92.5053 0.1144 12820 +12822 2 -443.43083196541363 -195.70711149964976 92.703 0.1144 12821 +12823 2 -443.218003809181 -194.58710129169873 92.9009 0.1144 12822 +12824 2 -443.00439946566735 -193.46631163951943 93.0941 0.1144 12823 +12825 2 -442.79072455967355 -192.345451128774 93.2814 0.1144 12824 +12826 2 -442.57874670623534 -191.22459417106182 93.4623 0.1144 12825 +12827 2 -442.42498715219006 -190.0926160796043 93.6331 0.1144 12826 +12828 2 -442.6101346971183 -188.96537805832972 93.7712 0.1144 12827 +12829 2 -442.80101171898093 -187.83723279174177 93.8904 0.1144 12828 +12830 2 -442.9918884447575 -186.70922894620008 94.0075 0.1144 12829 +12831 2 -442.94980464168805 -185.56610022050063 94.1374 0.1144 12830 +12832 2 -442.89555685212116 -184.42379455767346 94.295 0.1144 12831 +12833 2 -442.84046231279325 -183.28063859205187 94.4885 0.1144 12832 +12834 2 -442.0971211331505 -182.48386826714795 94.8394 0.1144 12833 +12835 2 -441.3157286073729 -181.72513141509788 95.3114 0.1144 12834 +12836 2 -440.53582115062443 -180.96632696142885 95.8628 0.1144 12835 +12837 2 -439.75513750659485 -180.20674306353158 96.4541 0.1144 12836 +12838 2 -439.36922793301414 -180.6314021868514 96.9472 0.1144 12837 +12839 2 -438.6047036651379 -181.47514955059734 97.365 0.1144 12838 +12840 2 -437.83925853198707 -182.31967280553812 97.7066 0.1144 12839 +12841 2 -437.0746634055446 -183.16349073176414 97.991 0.1144 12840 +12842 2 -436.3100685751882 -184.00716723694384 98.2366 0.1144 12841 +12843 2 -435.5446975575508 -184.85006429789544 98.4575 0.1144 12842 +12844 2 -434.78003186862827 -185.6938113655552 98.6661 0.1144 12843 +12845 2 -434.0155076007519 -186.53755872930117 98.8537 0.1144 12844 +12846 2 -433.2686945153779 -187.399091593163 99.0144 0.1144 12845 +12847 2 -433.10454103779966 -188.52969697781276 99.1071 0.1144 12846 +12848 2 -432.9435664248588 -189.661793945386 99.1402 0.1144 12847 +12849 2 -432.78350912415897 -190.79481207431985 99.122 0.1144 12848 +12850 2 -432.6735048069172 -191.93274333331058 99.0444 0.1144 12849 +12851 2 -432.63392994724325 -193.06997351690654 98.898 0.1144 12850 +12852 2 -432.59428422900305 -194.20727426298262 98.7042 0.1144 12851 +12853 2 -432.55633556331827 -195.34457856209204 98.4833 0.1144 12852 +12854 2 -432.8396269309353 -196.44776569537163 98.2492 0.1144 12853 +12855 2 -433.1430827891358 -197.54526746854734 98.0137 0.1144 12854 +12856 2 -433.4457624600552 -198.6419897974949 97.79 0.1144 12855 +12857 2 -433.74928888073583 -199.73956242923674 97.5867 0.1144 12856 +12858 2 -434.0526738803701 -200.83713476489257 97.4103 0.1144 12857 +12859 2 -434.357826791126 -201.9346400911016 97.2684 0.1144 12858 +12860 2 -434.7203545084611 -203.01861834926171 97.1964 0.1144 12859 +12861 2 -435.1055940717295 -204.09606805059016 97.2014 0.1144 12860 +12862 2 -433.97991849194466 -203.90767107854444 97.4817 0.1144 12861 +12863 2 -432.867250391471 -203.72085697793014 97.7844 0.1144 12862 +12864 2 -431.7545114324311 -203.53411343979585 98.1562 0.1144 12863 +12865 2 -430.64269333866577 -203.34659401046673 98.5701 0.1144 12864 +12866 2 -429.53073056690687 -203.16062991656062 99.0058 0.1144 12865 +12867 2 -428.4180624664332 -202.97381581594627 99.4462 0.1144 12866 +12868 2 -427.30617025715446 -202.78792258060642 99.8743 0.1144 12867 +12869 2 -426.1935021566808 -202.60110847999204 100.2859 0.1144 12868 +12870 2 -425.08153938492194 -202.41514438608593 100.6757 0.1144 12869 +12871 2 -423.96972129115653 -202.22762495675684 101.0394 0.1144 12870 +12872 2 -422.8439847176329 -202.06836072024637 101.3522 0.1144 12871 +12873 2 -421.7069037614366 -201.95750965324353 101.5804 0.1144 12872 +12874 2 -420.5697788905101 -201.83385983350863 101.7372 0.1144 12873 +12875 2 -419.4368283631952 -201.67528760183794 101.8438 0.1144 12874 +12876 2 -418.303817044242 -201.51197761707357 101.9217 0.1144 12875 +12877 2 -417.1716527711359 -201.3493765140573 101.9928 0.1144 12876 +12878 2 -416.03948820194364 -201.18691683208738 102.0774 0.1144 12877 +12879 2 -414.90654774155655 -201.02353628484292 102.1891 0.1144 12878 +12880 2 -413.77516291267864 -200.86015899454569 102.333 0.1144 12879 +12881 2 -413.7854366854467 -201.76216789117206 102.5864 0.1144 12880 +12882 2 -414.09863392103307 -202.8338806052989 102.9333 0.1144 12881 +12883 2 -414.3536027902986 -203.92152276874484 103.3435 0.1144 12882 +12884 2 -414.1765499988253 -205.032655667651 103.7742 0.1144 12883 +12885 2 -413.9914362077136 -206.14377168964882 104.207 0.1144 12884 +12886 2 -414.01167889758585 -207.28282417022496 104.592 0.1144 12885 +12887 2 -414.0812760521818 -208.42268709008516 104.9208 0.1144 12886 +12888 2 -414.1517232134861 -209.56184468123053 105.2117 0.1144 12887 +12889 2 -414.22209981231015 -210.7009314138097 105.4858 0.1144 12888 +12890 2 -414.29169667082004 -211.84093575471616 105.7624 0.1144 12889 +12891 2 -414.3622146906905 -212.98002278338146 106.0534 0.1144 12890 +12892 2 -414.6186547129379 -214.07424413438395 106.4151 0.1144 12891 +12893 2 -414.56612872921477 -214.47372108119555 106.8189 0.1144 12892 +12894 2 -414.42805516123167 -215.50892144335955 107.3495 0.1144 12893 +12895 2 -414.4799212015703 -216.60674500562249 107.9067 0.1144 12894 +12896 2 -414.780191681239 -217.705866458893 108.3866 0.1144 12895 +12897 2 -415.0796118581133 -218.80583466192456 108.792 0.1144 12896 +12898 2 -415.3805876664968 -219.90580612190334 109.1275 0.1144 12897 +12899 2 -415.6800787019374 -221.00570376245486 109.4058 0.1144 12898 +12900 2 -415.98034888552 -222.10496663677165 109.6371 0.1144 12899 +12901 2 -416.2813955524697 -223.2048675342704 109.8462 0.1144 12900 +12902 2 -416.58237136085324 -224.30483899424917 110.0462 0.1144 12901 +12903 2 -416.8818621002076 -225.40487805584695 110.2352 0.1144 12902 +12904 2 -417.18213257987645 -226.50399950911745 110.4107 0.1144 12903 +12905 2 -417.5406249119715 -227.59030277608719 110.5496 0.1144 12904 +12906 2 -417.9250141724455 -228.66859922717674 110.6487 0.1144 12905 +12907 2 -418.3086272456385 -229.74611623403806 110.7193 0.1144 12906 +12908 2 -418.69146087460337 -230.82440942818036 110.7714 0.1144 12907 +12909 2 -418.912275914961 -231.94606270702894 110.8243 0.1144 12908 +12910 2 -419.12920024807215 -233.06848565926413 110.8836 0.1144 12909 +12911 2 -419.34768021269247 -234.1909118684465 110.9536 0.1144 12910 +12912 2 -419.56530987451833 -235.31418482738997 111.0348 0.1144 12911 +12913 2 -419.78386040161865 -236.43668189513852 111.1261 0.1144 12912 +12914 2 -420.00156092201075 -237.55988429160186 111.2278 0.1144 12913 +12915 2 -420.2192646993501 -238.68153105655605 111.3412 0.1144 12914 +12916 2 -420.43689436117603 -239.80480401549946 111.4688 0.1144 12915 +12917 2 -420.6553743257963 -240.92723022468184 111.6136 0.1144 12916 +12918 2 -420.46498481217225 -241.45101102148712 111.3479 0.1144 12917 +12919 2 -420.07368466722386 -242.5252792824738 111.3479 0.1144 12918 +12920 2 -419.682310406762 -243.60117373744978 111.3479 0.1144 12919 +12921 2 -419.29093969933365 -244.67537113987024 111.3479 0.1144 12920 +12922 2 -418.90041574166617 -245.75041884508514 111.3479 0.1144 12921 +12923 2 -418.50826529392344 -246.82553385583287 111.3479 0.1144 12922 +12924 2 -421.17291347812636 -240.21484146437916 111.8037 0.1144 12917 +12925 2 -421.8406495081098 -239.29643295273422 112.0426 0.1144 12924 +12926 2 -422.508314679527 -238.3780950035693 112.3195 0.1144 12925 +12927 2 -423.1767592951725 -237.45898086712347 112.6238 0.1144 12926 +12928 2 -423.844495325156 -236.54057235547847 112.9464 0.1144 12927 +12929 2 -424.5121604965732 -235.62223440631362 113.2785 0.1144 12928 +12930 2 -425.1806051122187 -234.70312026986775 113.6125 0.1144 12929 +12931 2 -425.8483411422021 -233.78471175822284 113.9466 0.1144 12930 +12932 2 -426.5160063136194 -232.86637380905796 114.28 0.1144 12931 +12933 2 -427.1844509292649 -231.9472596726121 114.6135 0.1144 12932 +12934 2 -427.85218695924834 -231.02885116096712 114.9462 0.1144 12933 +12935 2 -428.5197815681855 -230.11044235323604 115.2782 0.1144 12934 +12936 2 -429.188226183831 -229.1913282167902 115.6092 0.1144 12935 +12937 2 -429.85596221381445 -228.27291970514526 115.9388 0.1144 12936 +12938 2 -430.5236273852317 -227.35458175598038 116.2664 0.1144 12937 +12939 2 -431.1921428594433 -226.4353970570544 116.5914 0.1144 12938 +12940 2 -431.85980803086056 -225.5170591078895 116.9123 0.1144 12939 +12941 2 -432.5282526465061 -224.59794497144367 117.2282 0.1144 12940 +12942 2 -433.1959886764895 -223.67953645979873 117.5367 0.1144 12941 +12943 2 -433.8636538479068 -222.76119851063382 117.8344 0.1144 12942 +12944 2 -434.53209846355224 -221.842084374188 118.1169 0.1144 12943 +12945 2 -435.1998344935357 -220.923675862543 118.3795 0.1144 12944 +12946 2 -435.865876727911 -220.0037081663556 118.6184 0.1144 12945 +12947 2 -436.44305661477955 -219.03985512870182 118.816 0.1144 12946 +12948 2 -436.72843111772846 -217.93220171582095 118.9308 0.1144 12947 +12949 2 -437.01387618315744 -216.82461916150626 118.9807 0.1144 12948 +12950 2 -437.29769505459717 -215.71696249167817 118.9838 0.1144 12949 +12951 2 -437.5832109785923 -214.6093093748834 118.9577 0.1144 12950 +12952 2 -437.8678060373131 -213.50243214928346 118.9185 0.1144 12951 +12953 2 -438.15325110274205 -212.3948495949688 118.8818 0.1144 12952 +12954 2 -438.1114149732463 -211.50493688112053 118.8617 0.1144 12953 +12955 2 -436.9805180377636 -211.51381220171797 118.8698 0.1144 12954 +12956 2 -435.8492752737038 -211.68786730437907 118.9084 0.1144 12955 +12957 2 -434.7188795554912 -211.86263128878826 118.977 0.1144 12956 +12958 2 -433.75365806434974 -211.53378498268358 119.0994 0.1144 12957 +12959 2 -433.08337552550563 -210.62883862067054 119.2918 0.1144 12958 +12960 2 -432.49235026450776 -209.66091342166894 119.5365 0.1144 12959 +12961 2 -431.9006869803278 -208.6937647060344 119.8128 0.1144 12960 +12962 2 -431.310579031571 -207.72676066839335 120.1007 0.1144 12961 +12963 2 -430.7196246291393 -206.7587649069117 120.3821 0.1144 12962 +12964 2 -430.12789048639326 -205.79168675375726 120.6416 0.1144 12963 +12965 2 -429.54912346126156 -204.8116956667467 120.8511 0.1144 12964 +12966 2 -429.0141064662437 -203.80747165038275 120.9566 0.1144 12965 +12967 2 -428.4118348270756 -202.84114925456765 120.9779 0.1144 12966 +12968 2 -427.70434167614974 -201.9441860215459 120.9625 0.1144 12967 +12969 2 -426.9684478601391 -201.06901297491035 120.9236 0.1144 12968 +12970 2 -426.23333023140935 -200.19461937250298 120.8606 0.1144 12969 +12971 2 -425.4965861126044 -199.32029307562857 120.773 0.1144 12970 +12972 2 -424.76062173411367 -198.44504917042684 120.6576 0.1144 12971 +12973 2 -423.8704609050201 -197.86236670257026 120.3969 0.1144 12972 +12974 2 -422.8069339932848 -197.74445712698426 119.9985 0.1144 12973 +12975 2 -421.69452363331266 -197.80605072264729 119.5261 0.1144 12974 +12976 2 -420.58053395494255 -197.87895474506607 119.0146 0.1144 12975 +12977 2 -419.4680999080816 -197.9518620244321 118.498 0.1144 12976 +12978 2 -418.35481911145956 -198.0239190010037 118.0127 0.1144 12977 +12979 2 -417.2407585745233 -198.09689358590256 117.5936 0.1144 12978 +12980 2 -416.12832452766236 -198.1698008652686 117.2539 0.1144 12979 +12981 2 -415.01504373104024 -198.24185784184024 117.0005 0.1144 12980 +12982 2 -414.2266993718345 -198.87844330453038 116.9678 0.1144 12981 +12983 2 -413.808777738324 -199.86773211890352 117.2125 0.1144 12982 +12984 2 -413.44180300970993 -200.87402748735087 117.6745 0.1144 12983 +12985 2 -413.057062416649 -201.9224293168281 118.2314 0.1144 12984 +12986 2 -412.6673451431319 -202.98369009850353 118.8228 0.1144 12985 +12987 2 -412.39487045226457 -204.0768040874529 119.4273 0.1144 12986 +12988 2 -412.70655943011934 -205.12588617722653 120.0394 0.1144 12987 +12989 2 -413.11691016574434 -206.16534602434524 120.6556 0.1144 12988 +12990 2 -413.526481161055 -207.20572347979123 121.2803 0.1144 12989 +12991 2 -413.8195212142249 -208.24585696028217 121.9574 0.1144 12990 +12992 2 -413.9339555706174 -209.24750336399805 122.7181 0.1144 12991 +12993 2 -414.02329938669527 -210.243511081101 123.5212 0.1144 12992 +12994 2 -413.16946949293407 -210.816036846914 124.2262 0.1144 12993 +12995 2 -412.1137021086618 -211.24742526853305 124.7366 0.1144 12994 +12996 2 -411.1602689598141 -211.87397770901856 125.0718 0.1144 12995 +12997 2 -410.55395633741034 -212.83776975293353 125.2636 0.1144 12996 +12998 2 -410.2604603392707 -213.94052711476618 125.3487 0.1144 12997 +12999 2 -410.14890039051977 -215.07845511680966 125.372 0.1144 12998 +13000 2 -410.2241526104506 -216.21917840639196 125.3736 0.1144 12999 +13001 2 -410.2711152915739 -217.36238805758532 125.3736 0.1144 13000 +13002 2 -410.1635842141685 -218.50110231383752 125.3736 0.1144 13001 +13003 2 -409.2988508615528 -219.24918025020108 125.3736 0.1144 13002 +13004 2 -408.43333806470883 -219.9980343738456 125.3736 0.1144 13003 +13005 2 -415.1791305277922 -214.5704641168146 105.3553 0.1144 12892 +13006 2 -415.9615119246639 -215.26216916944108 104.7634 0.1144 13005 +13007 2 -415.4315278001177 -216.1095895655427 104.5307 0.1144 13006 +13008 2 -414.58294644546174 -216.87714679763042 104.3686 0.1144 13007 +13009 2 -413.7230786470248 -217.63166960657082 104.2765 0.1144 13008 +13010 2 -412.6022080693516 -217.8501528281383 104.2765 0.1144 13009 +13011 2 -411.4821842414395 -218.06948635250023 104.3557 0.1144 13010 +13012 2 -410.3621639665606 -218.2871228243067 104.501 0.1144 13011 +13013 2 -409.2413639513675 -218.50567690444038 104.6718 0.1144 13012 +13014 2 -408.1213404195414 -218.724869007756 104.8533 0.1144 13013 +13015 2 -407.0005404043483 -218.9434230878897 105.0389 0.1144 13014 +13016 2 -405.8812960206644 -219.16198042497064 105.224 0.1144 13015 +13017 2 -404.7604963015574 -219.38039308405808 105.408 0.1144 13016 +13018 2 -403.6404724736452 -219.59972660841996 105.5905 0.1144 13017 +13019 2 -402.519601895972 -219.81820982998747 105.7706 0.1144 13018 +13020 2 -401.39957806805984 -220.03754335434934 105.9475 0.1144 13019 +13021 2 -400.279557793181 -220.2551798261558 106.12 0.1144 13020 +13022 2 -399.1595339652689 -220.47451335051767 106.2869 0.1144 13021 +13023 2 -398.0387342461618 -220.69292600960515 106.4448 0.1144 13022 +13024 2 -396.9187104182497 -220.91225953396705 106.5901 0.1144 13023 +13025 2 -395.798760705851 -221.12996686433968 106.7186 0.1144 13024 +13026 2 -394.6786663154587 -221.34922953013537 106.8267 0.1144 13025 +13027 2 -393.5578663002656 -221.5677836102691 106.9104 0.1144 13026 +13028 2 -393.5334098258989 -221.63080647010224 107.3016 0.1144 13027 +13029 2 -393.11299737535694 -222.69525568515635 107.3016 0.1144 13028 +13030 2 -392.6942111188042 -223.7597790157239 107.3016 0.1144 13029 +13031 2 -392.2745781124905 -224.823452043497 107.3016 0.1144 13030 +13032 2 -391.8548709906633 -225.88875126525937 107.3016 0.1144 13031 +13033 2 -391.43523798434956 -226.95242429303252 107.3016 0.1144 13032 +13034 2 -391.01645172779683 -228.01694762360006 107.3016 0.1144 13033 +13035 2 -390.59603927725493 -229.08139683865417 107.3016 0.1144 13034 +13036 2 -390.1771824582221 -230.1458493106555 107.3016 0.1144 13035 +13037 2 -389.75754945190835 -231.20952233842863 107.3016 0.1144 13036 +13038 2 -389.3387631953557 -232.27404566899617 107.3016 0.1144 13037 +13039 2 -388.9182798862475 -233.33856544653037 107.3016 0.1144 13038 +13040 2 -388.4994230672147 -234.40301791853167 107.3016 0.1144 13039 +13041 2 -388.07979006090096 -235.46669094630482 107.3016 0.1144 13040 +13042 2 -387.66008293907373 -236.5319901680672 107.3016 0.1144 13041 +13043 2 -387.24044993276 -237.59566319584033 107.3016 0.1144 13042 +13044 2 -392.4745244251427 -221.66012656671526 106.9177 0.1144 13027 +13045 2 -391.3360888375201 -221.75723322371826 106.8626 0.1144 13044 +13046 2 -390.19849999965857 -221.85519018351567 106.7592 0.1144 13045 +13047 2 -389.06098527731035 -221.95152094932385 106.622 0.1144 13046 +13048 2 -387.9226205482539 -222.04855704384678 106.4636 0.1144 13047 +13049 2 -386.7858820131868 -222.14566725388312 106.295 0.1144 13048 +13050 2 -385.6475169880442 -222.24284476945235 106.127 0.1144 13049 +13051 2 -384.5090814004215 -222.33995142645537 105.9596 0.1144 13050 +13052 2 -383.3723428653543 -222.4370616364917 105.7932 0.1144 13051 +13053 2 -382.234048698778 -222.53416858958087 105.628 0.1144 13052 +13054 2 -381.0972393051446 -222.63134936209732 105.4648 0.1144 13053 +13055 2 -379.9588745760882 -222.72838545662026 105.3044 0.1144 13054 +13056 2 -378.82050955094564 -222.82556297218946 105.1476 0.1144 13055 +13057 2 -377.6837710158785 -222.92267318222582 104.9961 0.1144 13056 +13058 2 -376.54533542825584 -223.01977983922885 104.8513 0.1144 13057 +13059 2 -375.4078207059076 -223.116110605037 104.7169 0.1144 13058 +13060 2 -374.2703027266123 -223.21399700235435 104.5976 0.1144 13059 +13061 2 -373.1318671389896 -223.31110365935734 104.4982 0.1144 13060 +13062 2 -371.99512860392247 -223.40821386939368 104.4235 0.1144 13061 +13063 2 -370.8567635787799 -223.50539138496293 104.375 0.1144 13062 +13064 2 -370.801944464646 -224.59485984009396 104.6167 0.1144 13063 +13065 2 -370.7454683635674 -225.69896196852545 105.2187 0.1144 13064 +13066 2 -370.68976844976976 -226.80384354118513 105.5071 0.1144 13065 +13067 2 -370.68002158741797 -227.9467930408019 105.7543 0.1144 13066 +13068 2 -370.6784735927175 -229.0914567659686 105.9394 0.1144 13067 +13069 2 -370.6776344797652 -230.23527344528804 106.0665 0.1144 13068 +13070 2 -370.6768659292929 -231.37916098317376 106.141 0.1144 13069 +13071 2 -370.8386864829765 -232.51115595153956 106.1684 0.1144 13070 +13072 2 -371.03537901997134 -233.63763777380325 106.1721 0.1144 13071 +13073 2 -371.2328477442472 -234.76489904029512 106.1721 0.1144 13072 +13074 2 -371.4286902745337 -235.8920861912736 106.1721 0.1144 13073 +13075 2 -371.52416718451417 -237.03214471593827 106.1721 0.1144 13074 +13076 2 -371.53471261383106 -238.17591451966652 106.1721 0.1144 13075 +13077 2 -371.5452577470618 -239.319825744441 106.1721 0.1144 13076 +13078 2 -371.55657906757347 -240.46451641344373 106.1721 0.1144 13077 +13079 2 -371.5679039411185 -241.607510029891 106.1721 0.1144 13078 +13080 2 -371.57851993291547 -242.75135069218544 106.1721 0.1144 13079 +13081 2 -371.4943888571637 -243.892588818999 106.1721 0.1144 13080 +13082 2 -371.24534090968575 -245.00922785192637 106.1721 0.1144 13081 +13083 2 -371.0084501387245 -246.1282965060461 106.1721 0.1144 13082 +13084 2 -371.17182632391734 -247.26029473135912 106.1721 0.1144 13083 +13085 2 -371.33534393015645 -248.3922932527583 106.1721 0.1144 13084 +13086 2 -371.49879067782933 -249.52436233663752 106.1721 0.1144 13085 +13087 2 -371.6630841752633 -250.65728172331114 106.1721 0.1144 13086 +13088 2 -371.8265312190223 -251.78920938614408 106.1721 0.1144 13087 +13089 2 -370.4522990012414 -222.72792749800962 104.4187 0.1144 13063 +13090 2 -369.9302286938963 -221.72054859998335 104.5439 0.1144 13089 +13091 2 -369.407378942323 -220.71394588923803 104.7262 0.1144 13090 +13092 2 -368.8302484741945 -219.7290791811208 104.9191 0.1144 13091 +13093 2 -368.22551040517055 -218.75872110397958 105.0974 0.1144 13092 +13094 2 -367.62091375719285 -217.78836332292445 105.2542 0.1144 13093 +13095 2 -367.01461679971254 -216.81955762034522 105.385 0.1144 13094 +13096 2 -366.40832309917937 -215.84919628625678 105.4967 0.1144 13095 +13097 2 -365.80287614840734 -214.87968525496277 105.5981 0.1144 13096 +13098 2 -365.1973586351552 -213.91010336510251 105.6966 0.1144 13097 +13099 2 -364.59184112190303 -212.94052147524226 105.7949 0.1144 13098 +13100 2 -363.98476797714176 -211.97093632843487 105.8929 0.1144 13099 +13101 2 -363.37932102636967 -211.00142529714083 105.9906 0.1144 13100 +13102 2 -362.77380351311757 -210.0318434072806 106.0878 0.1144 13101 +13103 2 -362.1683565623455 -209.06233237598653 106.1844 0.1144 13102 +13104 2 -361.5636893518878 -208.09190373636528 106.2802 0.1144 13103 +13105 2 -360.9573920983213 -207.1232394548323 106.3745 0.1144 13104 +13106 2 -360.3511692563544 -206.1528075582638 106.4672 0.1144 13105 +13107 2 -359.74565174310226 -205.18322566840357 106.5574 0.1144 13106 +13108 2 -359.1401342298501 -204.21364377854331 106.6442 0.1144 13107 +13109 2 -358.53468727907807 -203.2441327472493 106.7265 0.1144 13108 +13110 2 -357.9291697658259 -202.27455085738907 106.8018 0.1144 13109 +13111 2 -357.3220966210646 -201.3049657105816 106.867 0.1144 13110 +13112 2 -356.7166496702925 -200.33545467928755 106.9194 0.1144 13111 +13113 2 -356.11113215704034 -199.3658727894273 106.9552 0.1144 13112 +13114 2 -355.5065355090627 -198.39551500837226 106.9712 0.1144 13113 +13115 2 -355.49271726182576 -197.261355025811 106.9323 0.1144 13114 +13116 2 -355.63983113179995 -196.1299361470304 106.8393 0.1144 13115 +13117 2 -355.78779500848236 -194.99781193953498 106.7038 0.1144 13116 +13118 2 -355.93505029950285 -193.86639335684046 106.5369 0.1144 13117 +13119 2 -356.0837903634663 -192.73504859357323 106.3493 0.1144 13118 +13120 2 -356.2317545362349 -191.60278296503154 106.1528 0.1144 13119 +13121 2 -356.07720191800036 -190.47808642898426 105.9391 0.1144 13120 +13122 2 -355.90072400412737 -189.35574815737667 105.7179 0.1144 13121 +13123 2 -355.7243169488206 -188.233339323289 105.499 0.1144 13122 +13124 2 -355.3836504785383 -187.14382067910464 105.315 0.1144 13123 +13125 2 -354.90449677542097 -186.10499460184778 105.187 0.1144 13124 +13126 2 -354.42371687831434 -185.06609440907746 105.1058 0.1144 13125 +13127 2 -353.9437837309688 -184.02804451910154 105.0428 0.1144 13126 +13128 2 -435.52166373821865 -204.32908281970927 96.7263 0.1144 12861 +13129 2 -436.50650758627523 -204.91118570146222 96.621 0.1144 13128 +13130 2 -437.36973750269254 -205.6580023398696 96.5804 0.1144 13129 +13131 2 -437.83589053647927 -206.69199286163052 96.5146 0.1144 13130 +13132 2 -438.2640903226194 -207.75093555750675 96.4278 0.1144 13131 +13133 2 -438.69306599995434 -208.81079911865746 96.3245 0.1144 13132 +13134 2 -439.1219711148092 -209.87059182124193 96.21 0.1144 13133 +13135 2 -439.5509503451775 -210.92875832983717 96.0884 0.1144 13134 +13136 2 -439.97985546003247 -211.98855103242164 95.9638 0.1144 13135 +13137 2 -440.4088314334535 -213.04827317252602 95.8392 0.1144 13136 +13138 2 -440.8369603610274 -214.1072864308823 95.7149 0.1144 13137 +13139 2 -441.2667157786767 -215.16623238370573 95.5912 0.1144 13138 +13140 2 -441.69562089353155 -216.22602508629015 95.468 0.1144 13139 +13141 2 -442.12374982110543 -217.2850383446465 95.3456 0.1144 13140 +13142 2 -442.5526549359604 -218.344831047231 95.2244 0.1144 13141 +13143 2 -442.9817014718616 -219.40462404590158 95.1048 0.1144 13142 +13144 2 -443.41053928118356 -220.46279025841068 94.9878 0.1144 13143 +13145 2 -443.83958581708475 -221.5225832570813 94.8741 0.1144 13144 +13146 2 -444.26849093193965 -222.58237595966574 94.7649 0.1144 13145 +13147 2 -444.6966198595136 -223.641389218022 94.6607 0.1144 13146 +13148 2 -445.19191243881596 -224.67218804945713 94.5655 0.1144 13147 +13149 2 -445.86952015171426 -225.59086764943785 94.4899 0.1144 13148 +13150 2 -446.4765932964756 -226.56045279624533 94.4292 0.1144 13149 +13151 2 -447.1444930897185 -227.48894087704443 94.3779 0.1144 13150 +13152 2 -447.8179877488301 -228.41326873237944 94.3323 0.1144 13151 +13153 2 -448.35379099805664 -229.4134638773978 94.2416 0.1144 13152 +13154 2 -449.00711435660423 -230.34672977690127 94.1352 0.1144 13153 +13155 2 -449.6020807534733 -231.32357279223007 94.05 0.1144 13154 +13156 2 -450.1889055212961 -232.30513638765817 93.9873 0.1144 13155 +13157 2 -450.55143323863126 -233.38911464581827 93.9453 0.1144 13156 +13158 2 -450.71169816080567 -234.52110635723685 93.9218 0.1144 13157 +13159 2 -451.11151741571666 -235.5922226083518 93.9148 0.1144 13158 +13160 2 -451.3275208835533 -236.7154214517818 93.9145 0.1144 13159 +13161 2 -451.24833954442164 -237.8566699416092 93.9145 0.1144 13160 +13162 2 -451.17474270814466 -238.99870794259255 93.9145 0.1144 13161 +13163 2 -450.9636510631601 -240.12270965852437 93.9145 0.1144 13162 +13164 2 -450.5505166149951 -241.1896489903232 93.9145 0.1144 13163 +13165 2 -439.9958534791285 -179.62480190622512 97.0634 0.1144 12837 +13166 2 -440.43251247308524 -178.56844774071212 96.8582 0.1144 13165 +13167 2 -440.8682506017674 -177.51286946639394 96.7711 0.1144 13166 +13168 2 -441.3049095957241 -176.45651530088094 96.6658 0.1144 13167 +13169 2 -441.7414271686346 -175.40016083928177 96.5504 0.1144 13168 +13170 2 -442.17886234987225 -174.34458611799693 96.4323 0.1144 13169 +13171 2 -442.61552134382896 -173.28823195248393 96.3178 0.1144 13170 +13172 2 -443.0513300349912 -172.23272453673195 96.2122 0.1144 13171 +13173 2 -443.4879184664679 -171.17629951265272 96.0067 0.1144 13172 +13174 2 -441.9005673830889 -221.48210755295852 58.9702 0.1144 12469 +13175 2 -440.8851239323909 -222.00585803595078 58.8372 0.1144 13174 +13176 2 -439.87038610649387 -222.530317104605 58.7765 0.1144 13175 +13177 2 -438.8557223961102 -223.0531499792699 58.7101 0.1144 13176 +13178 2 -438.27447307409886 -224.0355914460563 58.6701 0.1144 13177 +13179 2 -438.0141182528984 -225.14895410803027 58.6592 0.1144 13178 +13180 2 -438.01009701836153 -226.29283483593537 58.6807 0.1144 13179 +13181 2 -438.06681804776474 -227.43592349602412 58.7376 0.1144 13180 +13182 2 -438.1266503401864 -228.57901867000723 58.828 0.1144 13181 +13183 2 -438.0975993569733 -229.72199846439312 58.9467 0.1144 13182 +13184 2 -438.06144674471943 -230.74447213086438 59.1682 0.1144 13183 +13185 2 -438.0194427620395 -231.85984758130203 59.4686 0.1144 13184 +13186 2 -437.97906497334884 -232.97529714725314 59.8158 0.1144 13185 +13187 2 -437.9832060938859 -234.10455782181887 60.1558 0.1144 13186 +13188 2 -438.09169729315806 -235.2429465338503 60.4089 0.1144 13187 +13189 2 -438.01810045688114 -236.38498453483368 60.5805 0.1144 13188 +13190 2 -437.9906051051773 -237.5279675861667 60.6774 0.1144 13189 +13191 2 -438.1241328631062 -238.6640045476528 60.7219 0.1144 13190 +13192 2 -438.42679891406465 -239.7672322447295 60.7348 0.1144 13191 +13193 2 -438.7739707524762 -240.85676450887496 60.7351 0.1144 13192 +13194 2 -439.04996368777483 -241.96721957760366 60.7351 0.1144 13193 +13195 2 -439.11142572721894 -243.10869181454478 60.7351 0.1144 13194 +13196 2 -439.1413455437911 -244.25264360311647 60.7351 0.1144 13195 +13197 2 -392.33513345089625 -212.85463895067156 60.9927 0.1144 12414 +13198 2 -392.99170268352793 -213.7911643442202 60.9997 0.1144 13197 +13199 2 -393.6482013536795 -214.72761887920268 61.0025 0.1144 13198 +13200 2 -394.3055467735921 -215.6649237169795 61.0067 0.1144 13199 +13201 2 -394.96119514094926 -216.60222500172307 61.012 0.1144 13200 +13202 2 -395.61776437358094 -217.53875039527173 61.0198 0.1144 13201 +13203 2 -396.2742630437325 -218.4752049302542 61.0308 0.1144 13202 +13204 2 -396.93076141779795 -219.41180088628298 61.0459 0.1144 13203 +13205 2 -397.5880362752305 -220.34903486549362 61.0669 0.1144 13204 +13206 2 -398.2437552050677 -221.28640700880334 61.0963 0.1144 13205 +13207 2 -398.9002538752193 -222.2228615437858 61.1383 0.1144 13206 +13208 2 -399.55682310785096 -223.1593869373345 61.1971 0.1144 13207 +13209 2 -400.2140979652835 -224.09662091654513 61.2763 0.1144 13208 +13210 2 -400.87059633934894 -225.0332168725739 61.3785 0.1144 13209 +13211 2 -400.9167463206139 -226.15931280064984 61.5527 0.1144 13210 +13212 2 -400.6345876930661 -227.25078016566832 61.7999 0.1144 13211 +13213 2 -400.3532793683127 -228.3414007809257 62.0934 0.1144 13212 +13214 2 -400.0719001849932 -229.4320919586632 62.4092 0.1144 13213 +13215 2 -399.79694899734216 -230.52597858186022 62.7197 0.1144 13214 +13216 2 -399.63448931537215 -231.65814315105243 62.942 0.1144 13215 +13217 2 -399.4718882123559 -232.79030742415853 63.0823 0.1144 13216 +13218 2 -399.3093576718197 -233.92254255583086 63.1554 0.1144 13217 +13219 2 -399.14597712457527 -235.05548301621795 63.1789 0.1144 13218 +13220 2 -398.97538913743404 -236.18600421842652 63.1674 0.1144 13219 +13221 2 -398.6681062157551 -237.28795489610874 63.1338 0.1144 13220 +13222 2 -398.2970141800341 -238.36947797076994 63.0879 0.1144 13221 +13223 2 -397.92507184151884 -239.45184779519212 63.0227 0.1144 13222 +13224 2 -397.55228245715637 -240.53350873786624 62.9286 0.1144 13223 +13225 2 -397.18196660871644 -241.6158112567556 62.7992 0.1144 13224 +13226 2 -396.8262067650302 -242.70309400913433 62.6284 0.1144 13225 +13227 2 -396.50600084256723 -243.79688588477597 62.4042 0.1144 13226 +13228 2 -396.29020974771174 -244.8351055211637 61.9993 0.1144 13227 +13229 2 -396.414409168379 -245.79964918212778 61.4258 0.1144 13228 +13230 2 -396.7511513796985 -246.87218901034657 60.8877 0.1144 13229 +13231 2 -397.04022029831435 -247.88395913260277 60.2756 0.1144 13230 +13232 2 -397.40862011210334 -248.86513613355635 59.6652 0.1144 13231 +13233 2 -398.1447574048825 -249.65779014772622 59.2206 0.1144 13232 +13234 2 -399.2401553406579 -249.98768681685016 58.9246 0.1144 13233 +13235 2 -400.3241818559387 -250.3451369031113 58.7353 0.1144 13234 +13236 2 -401.18753070498667 -251.00137321332858 58.6068 0.1144 13235 +13237 2 -401.6974738344978 -252.02576803207003 58.5214 0.1144 13236 +13238 2 -402.2016845262136 -253.05248430658773 58.4438 0.1144 13237 +13239 2 -402.57719979110476 -254.11379157869783 58.3324 0.1144 13238 +13240 2 -402.4399019122162 -255.18378329476513 58.1342 0.1144 13239 +13241 2 -402.32041025947143 -256.2261643550902 57.8813 0.1144 13240 +13242 2 -402.6692082918722 -257.3157707347491 57.6484 0.1144 13241 +13243 2 -403.0139777490136 -258.4044494391529 57.4356 0.1144 13242 +13244 2 -403.3692879595242 -259.49081675470825 57.2351 0.1144 13243 +13245 2 -403.7852496436535 -260.55220870744597 57.0172 0.1144 13244 +13246 2 -404.12596348771353 -261.61909998422436 56.7328 0.1144 13245 +13247 2 -404.3348136994116 -262.71399951800527 56.3755 0.1144 13246 +13248 2 -404.48542843872224 -263.82822260621623 55.9717 0.1144 13247 +13249 2 -404.64403006215787 -264.94408876532475 55.5461 0.1144 13248 +13250 2 -404.8398894693527 -266.06321491666483 55.1496 0.1144 13249 +13251 2 -405.15792857222914 -267.1526861870715 54.7854 0.1144 13250 +13252 2 -405.5189175349633 -268.22860018864606 54.4244 0.1144 13251 +13253 2 -405.786009530843 -269.33493539360745 54.0711 0.1144 13252 +13254 2 -406.0027992528884 -270.4541053656918 53.72 0.1144 13253 +13255 2 -406.3762639807943 -271.38027994265354 53.2532 0.1144 13254 +13256 2 -407.00473396400173 -272.1946288974679 52.7285 0.1144 13255 +13257 2 -407.91186665349494 -272.40519578387887 52.2995 0.1144 13256 +13258 2 -408.87161250748454 -272.64748056621124 51.8185 0.1144 13257 +13259 2 -409.41255903966163 -273.52146764238887 51.333 0.1144 13258 +13260 2 -409.8188977808493 -274.55208023566047 50.9505 0.1144 13259 +13261 2 -409.98649488915885 -275.6606820123533 50.715 0.1144 13260 +13262 2 -409.73837173163366 -275.52503412737263 50.7797 0.1144 13261 +13263 2 -408.98617011985425 -275.1100837505363 51.2568 0.1144 13262 +13264 2 -408.28543050881774 -274.4323382396517 51.9722 0.1144 13263 +13265 2 -407.2969002105448 -274.05741038072915 52.6952 0.1144 13264 +13266 2 -406.2858589017918 -274.36988611097917 53.4089 0.1144 13265 +13267 2 -405.6143543541397 -275.19692833631143 54.0806 0.1144 13266 +13268 2 -404.8764427063709 -276.02856915426537 54.644 0.1144 13267 +13269 2 -403.8063224324168 -276.3579625046419 55.0362 0.1144 13268 +13270 2 -402.7852680332144 -276.8597808820151 55.309 0.1144 13269 +13271 2 -402.09580586543035 -277.75297085015995 55.5089 0.1144 13270 +13272 2 -401.50325292664377 -278.7305803144837 55.6545 0.1144 13271 +13273 2 -401.00439108087926 -279.7423271350077 55.83 0.1144 13272 +13274 2 -400.7620009858774 -280.78614794905815 56.1081 0.1144 13273 +13275 2 -400.84129895406204 -281.9195964932108 56.3301 0.1144 13274 +13276 2 -400.9400285481071 -283.0596618278561 56.4866 0.1144 13275 +13277 2 -401.03798225095727 -284.1988062972267 56.5793 0.1144 13276 +13278 2 -401.01621282315443 -285.3425791558019 56.6112 0.1144 13277 +13279 2 -401.0121210261375 -286.48638902514085 56.5838 0.1144 13278 +13280 2 -401.09875749225137 -287.62720686017815 56.4878 0.1144 13279 +13281 2 -401.43298264299017 -288.719894005986 56.3578 0.1144 13280 +13282 2 -401.57132197344004 -289.85438540289067 56.2033 0.1144 13281 +13283 2 -401.48401232913716 -290.9939905257344 56.0314 0.1144 13282 +13284 2 -401.34337057166204 -292.1075331140777 55.7732 0.1144 13283 +13285 2 -401.2395294035207 -293.0036462273614 54.5493 0.1144 13284 +13286 2 -379.71375848139974 -211.15936784274632 60.9367 0.1144 12403 +13287 2 -379.6426723939095 -212.2504993005301 60.4366 0.1144 13286 +13288 2 -379.5958059118975 -213.3917447355106 60.2574 0.1144 13287 +13289 2 -379.7342161009136 -214.52616556993513 60.0972 0.1144 13288 +13290 2 -379.8329593149198 -215.65972553645113 59.9119 0.1144 13289 +13291 2 -379.9875051231738 -216.78767475656306 59.717 0.1144 13290 +13292 2 -380.29745953952295 -217.8884428337645 59.5552 0.1144 13291 +13293 2 -380.41316824561966 -219.02444248840058 59.4129 0.1144 13292 +13294 2 -380.486028151208 -220.15950390266755 59.2337 0.1144 13293 +13295 2 -380.4593863592457 -221.3000845727304 59.0486 0.1144 13294 +13296 2 -380.7353119890114 -222.40891315138376 58.8848 0.1144 13295 +13297 2 -380.4038060028065 -223.49617597200734 58.6947 0.1144 13296 +13298 2 -380.03752879655383 -224.5745978505779 58.4791 0.1144 13297 +13299 2 -379.67047569910625 -225.65209886387402 58.2467 0.1144 13298 +13300 2 -379.30334848614524 -226.7312260711594 58.0042 0.1144 13299 +13301 2 -378.9362245301315 -227.80879764693557 57.752 0.1144 13300 +13302 2 -378.570018182445 -228.88714896302608 57.4935 0.1144 13301 +13303 2 -378.2045171634732 -229.96635028582483 57.2373 0.1144 13302 +13304 2 -377.8382402533066 -231.04463074334913 56.9845 0.1144 13303 +13305 2 -377.4719630470539 -232.12305262191973 56.7356 0.1144 13304 +13306 2 -377.10568613688724 -233.201333079444 56.4934 0.1144 13305 +13307 2 -376.73940893063457 -234.27975495801462 56.2601 0.1144 13306 +13308 2 -376.37072963919775 -235.3571818557973 56.0395 0.1144 13307 +13309 2 -376.00445243294496 -236.43560373436787 55.8337 0.1144 13308 +13310 2 -375.6381755227784 -237.51388419189217 55.6455 0.1144 13309 +13311 2 -375.7968139548775 -238.64594320884365 55.5128 0.1144 13310 +13312 2 -375.9845210739262 -239.77488109794933 55.4271 0.1144 13311 +13313 2 -376.17307879185535 -240.90283081624767 55.377 0.1144 13312 +13314 2 -376.36078591090404 -242.03176870535341 55.3451 0.1144 13313 +13315 2 -453.79634559626555 -273.4825160335937 21.9762 0.1144 10962 +13316 2 -454.2699417268526 -272.48125222964745 22.8041 0.1144 13315 +13317 2 -454.68396654342274 -271.42810337442126 23.1393 0.1144 13316 +13318 2 -455.0501323273121 -270.36912674167223 23.5458 0.1144 13317 +13319 2 -455.5966344122505 -269.36638922808356 23.9434 0.1144 13318 +13320 2 -456.18516479148565 -268.41875273516155 24.3895 0.1144 13319 +13321 2 -457.0747449115613 -267.75897393892296 24.8446 0.1144 13320 +13322 2 -457.8702486365995 -267.2153175001214 25.3556 0.1144 13321 +13323 2 -457.75667139298184 -266.2095716625797 25.8269 0.1144 13322 +13324 2 -457.4073857958276 -266.1296442478798 26.2385 0.1144 13323 +13325 2 -457.6032756998919 -267.23420403145235 26.4533 0.1144 13324 +13326 2 -457.9561162235994 -268.31809129719073 26.5759 0.1144 13325 +13327 2 -458.3429146753241 -269.3939886239573 26.6597 0.1144 13326 +13328 2 -458.5412405123749 -270.5171504566234 26.7298 0.1144 13327 +13329 2 -458.7313603757076 -271.64199216885066 26.8071 0.1144 13328 +13330 2 -458.9976625643452 -272.7540532977132 26.8701 0.1144 13329 +13331 2 -459.00573475382566 -273.89704010417984 26.9271 0.1144 13330 +13332 2 -459.0034105718442 -275.0409243851184 26.9655 0.1144 13331 +13333 2 -459.1789540004816 -276.17054391604995 26.9856 0.1144 13332 +13334 2 -459.42091814919667 -277.2890594862307 26.9928 0.1144 13333 +13335 2 -459.3327617551327 -278.42781430627997 26.9934 0.1144 13334 +13336 2 -459.24544885388264 -279.5689750606329 26.9934 0.1144 13335 +13337 2 -459.39114385525613 -280.70263332773754 26.9934 0.1144 13336 +13338 2 -459.88077455924315 -281.7358244735151 26.9934 0.1144 13337 +13339 2 -492.9768807234542 -223.65825456242752 17.5082 0.1144 7 +13340 2 -493.65492764999937 -222.81354832627048 17.1234 0.1144 13339 +13341 2 -494.397725483989 -221.94472384007065 16.9836 0.1144 13340 +13342 2 -495.43571482189765 -221.86522601376134 16.859 0.1144 13341 +13343 2 -496.1288818248774 -222.68119534895732 16.7438 0.1144 13342 +13344 2 -496.2060853413468 -223.66671244522945 16.6305 0.1144 13343 +13345 2 -497.32580775359844 -223.59134554598816 16.5115 0.1144 13344 +13346 2 -498.31869815450415 -223.03205100660008 16.3689 0.1144 13345 +13347 2 -499.07652656276764 -222.34682331186735 16.1417 0.1144 13346 +13348 2 -499.12494492115513 -221.2411486750184 15.8698 0.1144 13347 +13349 2 -499.46485037089354 -220.43130203815554 15.4981 0.1144 13348 +13350 2 -499.77039887665234 -219.75248135444838 15.0691 0.1144 13349 +13351 2 -499.7598886201525 -219.74022637552932 14.0591 0.1144 13350 +13352 2 -499.11142045276995 -218.81835508522275 13.6813 0.1144 13351 +13353 2 -498.490506200711 -217.87384330573553 13.5135 0.1144 13352 +13354 2 -497.82267696994813 -216.94542608350264 13.3568 0.1144 13353 +13355 2 -497.29893635178337 -215.95904480585972 13.1595 0.1144 13354 +13356 2 -497.0164342932219 -214.88414365835425 12.9005 0.1144 13355 +13357 2 -496.3509363830628 -213.99052104697193 12.6824 0.1144 13356 +13358 2 -495.8669406105551 -212.96780690206404 12.5233 0.1144 13357 +13359 2 -495.2938422707193 -211.98217081664632 12.4107 0.1144 13358 +13360 2 -494.5336439665025 -211.13120070068115 12.3327 0.1144 13359 +13361 2 -493.9111236543098 -210.176998174533 12.2906 0.1144 13360 +13362 2 -494.03870404480165 -209.0876113451827 12.2285 0.1144 13361 +13363 2 -493.56032277383156 -208.0851322533383 12.1692 0.1144 13362 +13364 2 -493.3402634908133 -206.97401647091175 12.1102 0.2206 13363 +13365 2 -493.45823781527173 -205.84578928245696 12.0649 0.2288 13364 +13366 2 -492.602967284442 -205.55281143501065 12.2473 0.1332 13365 +13367 2 -491.57252692421616 -205.10008462553543 12.485 0.1144 13366 +13368 2 -490.4555348485306 -205.08721012144343 12.7746 0.1144 13367 +13369 2 -489.414496881487 -205.40697697584494 13.1722 0.1144 13368 +13370 2 -488.45229810457283 -205.96478013440978 13.6132 0.1144 13369 +13371 2 -487.44812777378075 -206.50792898763223 13.9747 0.1144 13370 +13372 2 -486.3113350549554 -206.63091924913917 14.2586 0.1144 13371 +13373 2 -485.1755826322215 -206.62854138158593 14.5178 0.1144 13372 +13374 2 -484.1573308287249 -206.90628299653767 14.8917 0.1144 13373 +13375 2 -483.12174381557156 -207.39194887776483 15.1994 0.1144 13374 +13376 2 -482.1022281709701 -207.9018315117237 15.475 0.1144 13375 +13377 2 -481.07742993736076 -208.23294609973087 15.7899 0.1144 13376 +13378 2 -480.3303830004743 -208.80088709498355 16.1973 0.1144 13377 +13379 2 -479.19167555420256 -208.69010333351358 16.5559 0.1144 13378 +13380 2 -478.10428112084526 -208.79297371945395 16.906 0.1144 13379 +13381 2 -477.09255156238623 -209.06266795472843 17.358 0.1144 13380 +13382 2 -476.0688241782527 -208.8485335507316 17.8949 0.1144 13381 +13383 2 -474.98370969701654 -208.63922038198285 18.4137 0.1144 13382 +13384 2 -473.94907841235687 -208.22933556303553 18.8434 0.1144 13383 +13385 2 -472.86520432490806 -208.20436813311264 19.1854 0.1144 13384 +13386 2 -473.3686449580806 -208.4505766197065 20.2817 0.1144 13385 +13387 2 -474.3520720390139 -208.96634977380342 20.3736 0.1144 13386 +13388 2 -475.36374454192406 -209.5007083021861 20.4082 0.1144 13387 +13389 2 -476.43895479841365 -209.81359210544176 20.3317 0.1144 13388 +13390 2 -477.522184992558 -210.1798793786222 20.2497 0.1144 13389 +13391 2 -478.537832385156 -210.70703372405532 20.1668 0.1144 13390 +13392 2 -479.60488689445174 -211.06515538521458 20.0149 0.1144 13391 +13393 2 -480.68164852913037 -211.44762189627698 19.8792 0.1144 13392 +13394 2 -481.72904076148575 -211.9092937620016 19.7846 0.1144 13393 +13395 2 -482.8719328203971 -211.9464763073331 19.6826 0.1144 13394 +13396 2 -472.8216782814792 -208.49313075802007 19.4489 0.1144 13385 +13397 2 -472.30143177918524 -209.35032963625716 19.8082 0.1144 13396 +13398 2 -471.27545133025166 -209.84082396691355 20.0923 0.1144 13397 +13399 2 -470.4301125927325 -210.61319632455556 20.3321 0.1144 13398 +13400 2 -469.53314580667734 -211.322386528037 20.5493 0.1144 13399 +13401 2 -469.2622197352383 -212.45262694662702 20.5816 0.1144 13400 +13402 2 -469.88095159800713 -213.29120932898113 20.7588 0.1144 13401 +13403 2 -470.80006218141966 -213.961350997182 20.9549 0.1144 13402 +13404 2 -470.88607849763275 -215.0268604965977 21.1519 0.1144 13403 +13405 2 -470.36870283643543 -215.99889977831455 21.4564 0.1144 13404 +13406 2 -469.73657441324696 -216.931949271427 21.8088 0.1144 13405 +13407 2 -469.29998627785653 -217.9882328744599 22.1162 0.1144 13406 +13408 2 -468.84636860178966 -219.03889466778818 22.3753 0.1144 13407 +13409 2 -468.02869540405777 -219.7353108017992 22.7312 0.1144 13408 +13410 2 -467.0473112368126 -220.23643441557186 23.6191 0.1144 13409 +13411 2 -468.5553094838781 -211.24347660588276 21.0858 0.1144 13400 +13412 2 -467.458695522447 -211.49439617386113 21.4397 0.1144 13411 +13413 2 -466.34040655212664 -211.66190228974898 21.7876 0.1144 13412 +13414 2 -465.36373645108637 -212.17427879558622 22.0958 0.1144 13413 +13415 2 -464.298532362036 -212.48593401962444 22.3678 0.1144 13414 +13416 2 -463.18170028096455 -212.3290925943258 22.6504 0.1144 13415 +13417 2 -462.3437644050903 -212.26751688545556 23.1415 0.1144 13416 +13418 2 -461.2578739761444 -212.4625973466087 23.5621 0.1144 13417 +13419 2 -460.15464627906766 -212.76526339756705 23.884 0.1144 13418 +13420 2 -459.04173840044416 -213.03071528341033 24.1146 0.1144 13419 +13421 2 -458.01897594190064 -213.2000477474981 24.4191 0.1144 13420 +13422 2 -457.9610792485385 -212.65227112979912 24.254 0.1144 13421 +13423 2 -457.621951532857 -211.57081674220032 24.1119 0.1144 13422 +13424 2 -456.9532719992998 -210.64324626972845 24.0591 0.1144 13423 +13425 2 -456.7880808252938 -209.53380100022187 23.9988 0.1144 13424 +13426 2 -457.7391012298574 -208.9113447366149 23.9049 0.1144 13425 +13427 2 -458.3710361067154 -208.10451367535703 23.7541 0.1144 13426 +13428 2 -458.6022445724195 -206.99759538777352 23.6158 0.1144 13427 +13429 2 -459.29728423097754 -206.14231810347815 23.4839 0.1144 13428 +13430 2 -460.2482610168971 -205.5069216660928 23.3518 0.1144 13429 +13431 2 -461.16700792241073 -204.8309404432699 23.2117 0.1144 13430 +13432 2 -461.92267131647884 -203.99771044209047 23.0219 0.1144 13431 +13433 2 -462.38259825768387 -203.00695393378288 22.7424 0.1144 13432 +13434 2 -462.9864101982288 -202.08926011749372 22.4153 0.1144 13433 +13435 2 -463.9317586605493 -201.4740044838029 22.1241 0.1144 13434 +13436 2 -464.834282709537 -200.77861452773595 21.8804 0.1144 13435 +13437 2 -465.73047330831116 -200.06864488002634 21.6727 0.1144 13436 +13438 2 -466.48695019651007 -199.21837527124288 21.5 0.1144 13437 +13439 2 -466.3402461662277 -199.74875292678556 21.2003 0.1144 13438 +13440 2 -466.97095577733035 -200.67546608438215 20.9537 0.1144 13439 +13441 2 -467.5018970254114 -201.66751930426815 20.6839 0.1144 13440 +13442 2 -467.4761055362435 -202.80725322456996 20.2451 0.1144 13441 +13443 2 -457.41069821994085 -213.51506378354617 24.5902 0.1144 13421 +13444 2 -456.95397896262693 -213.78429366672887 24.5495 0.1144 13443 +13445 2 -455.9822013596016 -214.2902457299308 24.4019 0.1144 13444 +13446 2 -455.0787934561032 -214.96873394640676 24.2348 0.1144 13445 +13447 2 -454.4927799353486 -215.93009361036854 24.1008 0.1144 13446 +13448 2 -453.89133286712365 -216.90033052686044 24.0164 0.1144 13447 +13449 2 -453.62691562286136 -217.99515844527355 24.0092 0.1144 13448 +13450 2 -453.7652857462668 -219.1149420533643 24.1105 0.1144 13449 +13451 2 -453.97739545201006 -220.20659571306112 24.338 0.1144 13450 +13452 2 -454.4606891527502 -221.22690421975153 24.5829 0.1144 13451 +13453 2 -455.0774699210808 -222.1868223067869 24.82 0.1144 13452 +13454 2 -455.8911969396472 -222.96995138251768 25.0672 0.1144 13453 +13455 2 -456.6433914828308 -223.8273394272237 25.2782 0.1144 13454 +13456 2 -456.9363705422619 -224.8966056432498 25.4994 0.1144 13455 +13457 2 -456.879813313589 -226.03945713836404 25.6497 0.1144 13456 +13458 2 -456.91864443259385 -227.18257905408296 25.7503 0.1144 13457 +13459 2 -456.0251226084341 -226.24633538401073 25.5301 0.1144 13458 +13460 2 -455.024767046174 -225.71044491100778 25.4516 0.1144 13459 +13461 2 -453.9415267851019 -225.3489659534011 25.391 0.1144 13460 +13462 2 -452.86405982170857 -224.96564943563047 25.3471 0.1144 13461 +13463 2 -451.77997932476984 -224.600208912211 25.3185 0.1144 13462 +13464 2 -450.67645939561737 -224.29942810171403 25.3034 0.1144 13463 +13465 2 -449.56074478099777 -224.04790721048573 25.3002 0.1144 13464 +13466 2 -448.5042960700297 -223.62263246271206 25.2973 0.1144 13465 +13467 2 -447.72542465605255 -222.80803933084235 25.2938 0.1144 13466 +13468 2 -447.2955782459816 -221.7587805716466 25.2896 0.1144 13467 +13469 2 -447.189550219618 -220.6259831724505 25.2836 0.1144 13468 +13470 2 -447.19194496407954 -219.4821697500782 25.2745 0.1144 13469 +13471 2 -447.29063885456554 -218.3426591726895 25.2406 0.1144 13470 +13472 2 -447.2630067399531 -217.22056182119007 25.2552 0.1144 13471 +13473 2 -446.6875191406218 -216.26157871757675 25.2421 0.1144 13472 +13474 2 -447.1836405828925 -215.34288161595987 25.1923 0.1144 13473 +13475 2 -447.93935816071877 -214.48377156330983 25.1122 0.1144 13474 +13476 2 -447.71620237660153 -213.6695640860566 24.1816 0.1144 13475 +13477 2 -457.14813622358514 -228.07769298977362 25.8105 0.1144 13458 +13478 2 -457.65234661921477 -229.10455068533764 25.8383 0.1144 13477 +13479 2 -458.08776065523216 -230.16265995532774 25.8457 0.1144 13478 +13480 2 -458.46167972481703 -231.24333865383198 25.8357 0.1144 13479 +13481 2 -458.2651476376195 -232.37062355069781 25.8205 0.1144 13480 +13482 2 -458.0686864089883 -233.49783788508356 25.8025 0.1144 13481 +13483 2 -457.8713075720298 -234.624272479155 25.7845 0.1144 13482 +13484 2 -457.6748463433985 -235.75148681354077 25.7689 0.1144 13483 +13485 2 -457.6251130340388 -236.30313932005197 25.8686 0.1144 13484 +13486 2 -457.6348822760747 -237.446129679552 25.8686 0.1144 13485 +13487 2 -457.67936846041437 -238.59011196499304 25.8686 0.1144 13486 +13488 2 -457.4716036150079 -239.71249429691616 25.8686 0.1144 13487 +13489 2 -456.99213312739266 -240.75009117022782 25.8686 0.1144 13488 +13490 2 -456.88948773802167 -241.88563366790936 25.8686 0.1144 13489 +13491 2 -456.5563416417804 -242.97946916219504 25.8686 0.1144 13490 +13492 2 -456.4835951082979 -244.12066041341734 25.8686 0.1144 13491 +13493 2 -456.41162446601015 -245.26277252991406 25.8686 0.1144 13492 +13494 2 -457.23536088379086 -236.23274385587197 25.6419 0.1144 13484 +13495 2 -456.4127810698965 -236.9761017103227 25.5547 0.1144 13494 +13496 2 -455.5111015100955 -237.60587378134292 25.615 0.1144 13495 +13497 2 -454.57305098190704 -238.24787338925975 25.6955 0.1144 13496 +13498 2 -453.6356788385973 -238.90359231909702 25.7744 0.1144 13497 +13499 2 -452.7306714828454 -239.60300759347626 25.8535 0.1144 13498 +13500 2 -451.8595169445416 -240.3446374003157 25.9345 0.1144 13499 +13501 2 -450.9149577912768 -240.98817901978063 25.9994 0.1144 13500 +13502 2 -449.87529858421993 -241.4599770519744 26.0516 0.1144 13501 +13503 2 -448.78653895432205 -241.80962538716958 26.1127 0.1144 13502 +13504 2 -447.6971624314707 -242.08240975523398 26.2573 0.1144 13503 +13505 2 -446.563636016671 -242.19890145859222 26.407 0.1144 13504 +13506 2 -445.5432970131112 -242.6967615271 26.5531 0.1144 13505 +13507 2 -444.6124874765358 -243.35892888254747 26.6986 0.1144 13506 +13508 2 -443.52777033794473 -243.70285810382222 26.8447 0.1144 13507 +13509 2 -442.4150280654427 -243.92298469237338 27.0388 0.1144 13508 +13510 2 -441.4125049132828 -244.01712320406395 27.4052 0.1144 13509 +13511 2 -440.31501320703484 -244.31577074669065 27.7174 0.1144 13510 +13512 2 -439.8849573836096 -245.3591986544725 27.9677 0.1144 13511 +13513 2 -439.60347033096 -246.46763802547605 28.159 0.1144 13512 +13514 2 -439.3350108914771 -247.5680436367633 28.3514 0.1144 13513 +13515 2 -439.21454645027393 -248.70354882759494 28.4987 0.1144 13514 +13516 2 -439.2906454199658 -249.84512241997163 28.6804 0.1144 13515 +13517 2 -456.84585411094395 -213.24772562216364 26.2394 0.1144 13443 +13518 2 -456.04495922728114 -213.69824460658364 28.1061 0.1144 13517 +13519 2 -455.2869678825863 -213.68449537505077 28.9859 0.1144 13518 +13520 2 -454.21127017437317 -213.57066154640157 29.8553 0.1144 13519 +13521 2 -453.1125684256218 -213.29895297588743 30.6454 0.1144 13520 +13522 2 -451.9908302265744 -213.15504136135323 31.3765 0.1144 13521 +13523 2 -450.9502620965885 -212.91265807633192 32.1014 0.1144 13522 +13524 2 -450.1151208644813 -212.32683810190775 32.8448 0.1144 13523 +13525 2 -449.66965466877656 -211.37541043335676 33.5765 0.1144 13524 +13526 2 -448.93982919779603 -210.70898847100247 34.2504 0.1144 13525 +13527 2 -447.82724577795 -210.48172795114994 34.8496 0.1144 13526 +13528 2 -446.84987386375735 -210.55251383496454 35.5216 0.1144 13527 +13529 2 -446.1245186105682 -211.22967777129816 36.2191 0.1144 13528 +13530 2 -445.2517953754954 -211.53848328446816 36.9687 0.1144 13529 +13531 2 -444.1368365182152 -211.29749988966182 37.522 0.1144 13530 +13532 2 -443.11941114756786 -210.77522086924927 38.2407 0.1144 13531 +13533 2 -493.220227426016 -204.7977099798246 10.6403 0.2288 13365 +13534 2 -492.7442591014303 -203.75726422247288 10.4454 0.2288 13533 +13535 2 -492.12347646210515 -202.37837607084043 10.2356 0.2288 13534 +13536 2 -492.17681455842967 -201.2532662550977 10.0944 0.2288 13535 +13537 2 -492.6950510875356 -200.2415599983709 9.9398 0.2288 13536 +13538 2 -492.97640303093306 -199.16387955689186 9.6925 0.2288 13537 +13539 2 -492.9932862725151 -198.05729036656254 9.3622 0.2288 13538 +13540 2 -492.70920865068933 -196.9581321046285 9.0396 0.2288 13539 +13541 2 -491.71195003119976 -196.4966359119532 8.6807 0.2288 13540 +13542 2 -491.29391588988256 -196.79663528977454 8.8496 0.1338 13541 +13543 2 -491.098197296816 -197.90688057903637 8.7613 0.1144 13542 +13544 2 -491.2228846108784 -199.0436768508951 8.7253 0.1144 13543 +13545 2 -491.20268443454574 -200.18094759828824 8.6694 0.1144 13544 +13546 2 -491.0589011192832 -201.2751795518758 8.5458 0.1144 13545 +13547 2 -491.02995219179246 -202.33564001770998 8.3111 0.1144 13546 +13548 2 -490.5095710784327 -203.1895859157963 8.1135 0.1144 13547 +13549 2 -489.7379550463431 -203.94188932468276 7.9497 0.1144 13548 +13550 2 -489.78023189755663 -204.99281152820282 7.82 0.1144 13549 +13551 2 -490.2650542859699 -206.02599260705261 7.7206 0.1144 13550 +13552 2 -490.990525284869 -206.88092053369684 7.6079 0.1144 13551 +13553 2 -491.1719710107435 -207.89331386070072 7.4848 0.1144 13552 +13554 2 -490.89861907324564 -209.0001439146232 7.3709 0.1144 13553 +13555 2 -490.7264114060097 -210.12747973830005 7.2732 0.1144 13554 +13556 2 -491.0655799815744 -211.18941802151122 7.1909 0.1144 13555 +13557 2 -491.38852845937396 -212.26440384964422 7.0596 0.1144 13556 +13558 2 -491.7793726593526 -213.33302643098116 6.9468 0.1144 13557 +13559 2 -491.4827928402172 -214.388896054032 6.8658 0.1144 13558 +13560 2 -491.05262914746186 -215.4500721550799 6.808 0.1144 13559 +13561 2 -490.42371284454094 -216.40250314151413 6.7704 0.1144 13560 +13562 2 -489.7107730065565 -217.29649248564237 6.7483 0.1144 13561 +13563 2 -491.23738133821394 -195.96976586570102 8.4058 0.2288 13541 +13564 2 -490.7638215045924 -194.9948033823304 8.206 0.2288 13563 +13565 2 -491.1162777374029 -193.93183823993252 8.0719 0.2288 13564 +13566 2 -491.54879318070357 -192.89569869754138 7.9778 0.2288 13565 +13567 2 -491.5252468799557 -191.78096382694608 7.8971 0.199 13566 +13568 2 -490.87495266045937 -190.95447762737007 7.7962 0.1351 13567 +13569 2 -489.9184759257712 -190.33283606987877 7.6693 0.1144 13568 +13570 2 -488.95314187030806 -189.7200148223985 7.5282 0.1144 13569 +13571 2 -488.4089290341053 -188.85252630436955 7.2649 0.1144 13570 +13572 2 -488.10543261210773 -187.7743992145352 7.0003 0.1144 13571 +13573 2 -487.71445705801057 -186.70096802153847 6.7815 0.1144 13572 +13574 2 -487.3527355266393 -185.63721474951413 6.5375 0.1144 13573 +13575 2 -487.0734762873151 -184.53325823893408 6.3338 0.1144 13574 +13576 2 -486.7052863985785 -183.45181371616275 6.1809 0.1144 13575 +13577 2 -486.37347073517657 -182.35658602498566 6.0714 0.1144 13576 +13578 2 -486.06033094029567 -181.25743762787909 5.9637 0.1144 13577 +13579 2 -485.5519129454243 -180.24761243385245 5.8135 0.1144 13578 +13580 2 -485.2322577154864 -179.15325873235855 5.6807 0.1144 13579 +13581 2 -484.821188529372 -178.0854423369856 5.5599 0.1144 13580 +13582 2 -484.24080212023165 -177.10212445039699 5.4403 0.1144 13581 +13583 2 -483.5389067960354 -176.19958678144818 5.3126 0.1144 13582 +13584 2 -482.97721342841044 -175.20414576824544 5.1689 0.1144 13583 +13585 2 -481.9246884782188 -174.82986174611253 5.0025 0.1144 13584 +13586 2 -481.26106423352235 -174.22339975072364 4.7429 0.1144 13585 +13587 2 -481.00586480716265 -173.2796536499181 4.3257 0.1144 13586 +13588 2 -480.1992063641071 -172.56527030307464 3.8182 0.1144 13587 +13589 2 -479.88515201574586 -171.49765702277347 3.3126 0.1144 13588 +13590 2 -479.5436082988331 -170.4218544435623 2.8972 0.1144 13589 +13591 2 -478.80513287546955 -169.59765850260646 2.479 0.1144 13590 +13592 2 -478.129104278869 -168.7015389644988 2.1389 0.1144 13591 +13593 2 -477.37288747222004 -167.87398247014832 1.9206 0.1144 13592 +13594 2 -476.4261420479899 -167.2313601691819 1.687 0.1144 13593 +13595 2 -493.43870963769893 -203.96017332201305 11.0434 0.1527 13534 +13596 2 -494.5581470130121 -204.05472395792904 11.0668 0.1144 13595 +13597 2 -495.6796654786946 -203.86452642604954 11.0732 0.1144 13596 +13598 2 -496.80237617011426 -203.91545533112338 11.0658 0.1144 13597 +13599 2 -497.9182836307775 -204.10864018880122 10.998 0.1144 13598 +13600 2 -499.03826002839713 -204.31724852702155 10.9082 0.1144 13599 +13601 2 -500.1460888747561 -204.14731634297465 10.8315 0.1144 13600 +13602 2 -501.1872903894472 -203.68188551481103 10.7727 0.1144 13601 +13603 2 -502.1471411709496 -203.06347825640512 10.7362 0.1144 13602 +13604 2 -503.24604914613445 -202.86517235110958 10.7206 0.1144 13603 +13605 2 -504.20022067722687 -202.29123031635964 10.7248 0.1144 13604 +13606 2 -505.03186703666165 -201.50666702838421 10.7396 0.1144 13605 +13607 2 -506.08350449023885 -201.08898786175783 10.7608 0.1144 13606 +13608 2 -507.19133377826927 -201.29035826321206 10.7922 0.1144 13607 +13609 2 -508.32508092280676 -201.43995188691707 10.836 0.1144 13608 +13610 2 -509.4658478310331 -201.37763984076463 10.8968 0.1144 13609 +13611 2 -510.4740734788205 -200.85641983621397 10.9706 0.1144 13610 +13612 2 -511.4662016084924 -200.2896990634222 11.0737 0.1144 13611 +13613 2 -512.5316155660803 -200.2830908127425 11.3109 0.1144 13612 +13614 2 -513.6531544051895 -200.48844972384543 11.5065 0.1144 13613 +13615 2 -514.6509858008021 -201.04788161954838 11.8096 0.1144 13614 +13616 2 -500.22959424559326 -218.70586175634068 14.7705 0.1144 13350 +13617 2 -500.75914801143557 -217.69248213394718 14.596 0.1144 13616 +13618 2 -501.50519497645644 -216.8253615102834 14.533 0.1144 13617 +13619 2 -502.33071243879385 -216.232482459063 14.8697 0.1144 13618 +13620 2 -503.33888390282294 -215.73714250598292 15.1595 0.1144 13619 +13621 2 -504.3954443512845 -215.29847252895365 15.376 0.1144 13620 +13622 2 -505.51460405434085 -215.12036161111092 15.5226 0.1144 13621 +13623 2 -506.65507655898756 -215.16489301738548 15.6027 0.1144 13622 +13624 2 -507.7806611463508 -215.3629771830588 15.6177 0.1144 13623 +13625 2 -508.917954880346 -215.43974607399255 15.5741 0.1144 13624 +13626 2 -510.0306399142428 -215.21318467979228 15.5078 0.1144 13625 +13627 2 -511.165576084085 -215.20014587678347 15.4255 0.1144 13626 +13628 2 -512.2431985866722 -215.54294541283582 15.2935 0.1144 13627 +13629 2 -513.299965590209 -215.81619253585052 15.0397 0.1144 13628 +13630 2 -513.9023055312829 -216.71611760239057 14.7978 0.1144 13629 +13631 2 -514.3045307204973 -217.78639036069166 14.5965 0.1144 13630 +13632 2 -515.3116453966833 -218.20109661698748 14.437 0.1144 13631 +13633 2 -516.1918574990432 -218.13180437457044 14.0795 0.1144 13632 +13634 2 -516.1766782330269 -218.42451544351587 13.8704 0.1144 13633 +13635 2 -516.0449915987289 -219.5162978441559 13.8524 0.1144 13634 +13636 2 -515.7249109206906 -220.550268617218 13.9268 0.1144 13635 +13637 2 -515.8276729391146 -221.68942315351646 14.0204 0.1144 13636 +13638 2 -515.9151092793984 -222.81970674907905 14.1603 0.1144 13637 +13639 2 -516.0688352817273 -223.93393635118437 14.3504 0.1144 13638 +13640 2 -516.4662725853096 -224.9944409903639 14.482 0.1144 13639 +13641 2 -517.125193770587 -225.92213245394043 14.5651 0.1144 13640 +13642 2 -517.9098279171285 -226.75370825089516 14.6205 0.1144 13641 +13643 2 -518.803790519521 -227.44564691546285 14.6614 0.1144 13642 +13644 2 -519.8553399224935 -227.88059878993636 14.6918 0.1144 13643 +13645 2 -520.9580804074178 -228.18215578771432 14.7197 0.1144 13644 +13646 2 -522.0648731544904 -228.47332677704435 14.7551 0.1144 13645 +13647 2 -523.1708900103683 -228.76357690109987 14.7974 0.1144 13646 +13648 2 -524.0273324500232 -228.49681024734073 14.9105 0.1144 13647 +13649 2 -524.0377340103648 -227.3788937533473 15.0238 0.1144 13648 +13650 2 -524.3838099173706 -226.28996437703768 15.1187 0.1144 13649 +13651 2 -524.4395877018154 -225.14788906920444 15.1973 0.1144 13650 +13652 2 -524.1271567886827 -224.04789362625073 15.2608 0.1144 13651 +13653 2 -523.979750357991 -223.39393406772223 15.1838 0.1144 13652 +13654 2 -523.7370064689616 -222.27633610586886 15.132 0.1144 13653 +13655 2 -523.5840231021972 -221.14513745863948 15.1114 0.1144 13654 +13656 2 -523.6705364253637 -220.01436952271516 15.0876 0.1144 13655 +13657 2 -523.9349906803898 -218.90186397351616 15.063 0.1144 13656 +13658 2 -524.233284428989 -217.83793690386017 14.9642 0.1144 13657 +13659 2 -524.0209685533271 -216.8109832247968 14.8657 0.1144 13658 +13660 2 -523.722385059286 -215.71667364013334 14.8358 0.1144 13659 +13661 2 -523.440021366924 -214.60945793159428 14.8516 0.1144 13660 +13662 2 -523.0280277625018 -213.5441144799716 14.9131 0.1144 13661 +13663 2 -522.5351411175029 -212.51247215572275 15.0221 0.1144 13662 +13664 2 -522.2308316995609 -211.4173727638172 15.1855 0.1144 13663 +13665 2 -522.4692574699893 -210.34193590746736 15.4307 0.1144 13664 +13666 2 -523.2732720434534 -209.61720684384616 15.755 0.1144 13665 +13667 2 -523.8215394263382 -208.95339004919214 16.2977 0.1144 13666 +13668 2 -523.7249619268141 -207.89994999081878 16.7212 0.1144 13667 +13669 2 -523.5712764882824 -206.76634570537203 17.0318 0.1144 13668 +13670 2 -523.0265619366229 -205.76698043320644 17.2373 0.1144 13669 +13671 2 -524.0831901888037 -205.29592503657742 17.9784 0.1144 13670 +13672 2 -525.1160799189208 -204.95026095771087 18.2441 0.1144 13671 +13673 2 -526.2353622532265 -205.05131666567 18.5131 0.1144 13672 +13674 2 -527.372788041627 -205.0650117699595 18.7577 0.1144 13673 +13675 2 -528.4821082688093 -204.92577120990413 19.0544 0.1144 13674 +13676 2 -529.5877113468052 -205.0421425290758 19.3893 0.1144 13675 +13677 2 -530.7250226579954 -205.04296802206701 19.6794 0.1144 13676 +13678 2 -531.8402754771837 -204.80580537894517 19.9247 0.1144 13677 +13679 2 -532.8757100059902 -204.39297133655603 20.2255 0.1144 13678 +13680 2 -533.9072507727033 -203.94859211043374 20.5593 0.1144 13679 +13681 2 -534.9913488468371 -204.23808923591068 20.831 0.1144 13680 +13682 2 -535.9358035142606 -204.82654224268512 21.1358 0.1144 13681 +13683 2 -536.9922696003234 -205.2097440811452 21.4457 0.1144 13682 +13684 2 -538.1179078732583 -205.41596010502312 21.6696 0.1144 13683 +13685 2 -539.2361161576559 -205.65850594131908 21.9321 0.1144 13684 +13686 2 -522.7706897037191 -205.8538433161243 17.3481 0.1144 13670 +13687 2 -521.6908512410815 -206.2317239515218 17.3825 0.1144 13686 +13688 2 -520.6269792385268 -206.6501553224543 17.3622 0.1144 13687 +13689 2 -519.568026475723 -207.08316342416816 17.3338 0.1144 13688 +13690 2 -518.5113954647813 -207.5217625426312 17.2947 0.1144 13689 +13691 2 -517.5831097987673 -208.16052989642503 17.2399 0.1144 13690 +13692 2 -516.8071440461027 -208.99774790906685 17.1606 0.1144 13691 +13693 2 -516.1944069810636 -209.95664745496686 17.0501 0.1144 13692 +13694 2 -515.505713894494 -210.85401097245074 16.902 0.1144 13693 +13695 2 -514.6854283904395 -211.6498410685379 16.7126 0.1144 13694 +13696 2 -513.7765279728809 -212.24982876087995 16.403 0.1144 13695 +13697 2 -512.9397506254421 -212.04018699306351 15.8771 0.1144 13696 +13698 2 -511.98113318817514 -212.44101960022996 15.3808 0.1144 13697 +13699 2 -511.54557172891504 -213.37844044233194 14.8036 0.1144 13698 +13700 2 -511.26428028107 -214.46100005795097 14.2783 0.1144 13699 +13701 2 -511.1146157987988 -215.59481776496847 13.9023 0.1144 13700 +13702 2 -511.0863410028667 -216.73857700358255 13.4968 0.1144 13701 +13703 2 -523.8163825234265 -209.08610348616202 17.5013 0.1144 13667 +13704 2 -523.7678663626368 -210.2047180007032 18.0751 0.1144 13703 +13705 2 -523.6903621443054 -211.3217161860826 18.3298 0.1144 13704 +13706 2 -523.4453667550617 -212.42782778951573 18.592 0.1144 13705 +13707 2 -523.2011475530992 -213.534718837177 18.8411 0.1144 13706 +13708 2 -523.0718295462548 -214.64347679683544 19.0394 0.1144 13707 +13709 2 -523.2976684387459 -215.76351424470863 19.1194 0.1144 13708 +13710 2 -523.5233659101907 -216.88355139649576 19.0931 0.1144 13709 +13711 2 -523.7492048026819 -218.003588844369 18.9797 0.1144 13710 +13712 2 -524.1068873957797 -219.07136417775837 18.7973 0.1144 13711 +13713 2 -524.6629428710642 -220.05774240055433 18.5545 0.1144 13712 +13714 2 -525.2191362143617 -221.04581797199185 18.2841 0.1144 13713 +13715 2 -525.7751916896461 -222.03219619478782 18.0117 0.1144 13714 +13716 2 -526.3313141743774 -223.02034232870545 17.4334 0.1144 13715 +13717 2 -524.3586294897389 -224.03062982986143 15.2997 0.1144 13652 +13718 2 -525.3495248624321 -224.42423030035772 15.3999 0.1144 13717 +13719 2 -526.1973315943931 -225.17497445467515 15.4949 0.1144 13718 +13720 2 -526.6781452453163 -226.19775264816872 15.5626 0.1144 13719 +13721 2 -526.7792875836453 -227.33372180593543 15.6008 0.1144 13720 +13722 2 -527.6198495688595 -228.0998657539065 15.6042 0.1144 13721 +13723 2 -528.4019295500708 -228.93553743165361 15.5665 0.1144 13722 +13724 2 -529.2489028561456 -229.67906733609368 15.5477 0.1144 13723 +13725 2 -530.3003645236438 -230.1221507726857 15.4799 0.1144 13724 +13726 2 -530.9085415148958 -231.00356182169267 15.2921 0.1144 13725 +13727 2 -530.6644374904301 -232.05544008234818 14.9309 0.1144 13726 +13728 2 -530.4938769453114 -233.13908005966942 14.4615 0.1144 13727 +13729 2 -530.5815741374583 -234.14477171345283 13.9494 0.1144 13728 +13730 2 -531.0511492165649 -235.09787620671793 13.4457 0.1144 13729 +13731 2 -531.4665444363653 -236.09209168203853 12.9078 0.1144 13730 +13732 2 -531.7554913675036 -237.1621272753651 12.4036 0.1144 13731 +13733 2 -531.84296175769 -238.2761474506046 11.946 0.1144 13732 +13734 2 -531.9286942354377 -239.40968017719848 11.578 0.1144 13733 +13735 2 -532.2784103743522 -240.46605438749643 11.3488 0.1144 13734 +13736 2 -533.128384696213 -240.5867695571203 11.1785 0.1144 13735 +13737 2 -533.9379271586546 -241.03818535381322 10.9358 0.1144 13736 +13738 2 -533.940604340391 -242.08987317950007 10.7044 0.1144 13737 +13739 2 -533.395159226352 -242.99305205301914 10.3933 0.1144 13738 +13740 2 -532.353381880691 -243.32823232103536 10.1097 0.1144 13739 +13741 2 -531.2774878108717 -243.71347514125097 9.8976 0.1144 13740 +13742 2 -530.4870234941588 -244.5182772374236 9.7638 0.1144 13741 +13743 2 -530.4531374536364 -245.64024579146496 9.7018 0.1144 13742 +13744 2 -530.7371981985539 -246.74746505303733 9.6847 0.1144 13743 +13745 2 -530.7729016758185 -247.86462954482502 9.779 0.1144 13744 +13746 2 -530.6338387385549 -249.00087361608774 9.8484 0.1144 13745 +13747 2 -531.2491626741514 -249.87982474913323 9.8834 0.1144 13746 +13748 2 -531.6554978623058 -250.91213439496033 9.8839 0.1144 13747 +13749 2 -531.5706347161035 -252.0315213416488 9.8522 0.1144 13748 +13750 2 -531.3628766806776 -253.15065098950734 9.7616 0.1144 13749 +13751 2 -531.2448859774972 -254.25292726792534 9.5649 0.1144 13750 +13752 2 -531.2611270359461 -255.37818275803437 9.3637 0.1144 13751 +13753 2 -531.5970121344907 -256.45482202007884 9.2079 0.1144 13752 +13754 2 -532.0647712284111 -257.49850328850073 9.0944 0.1144 13753 +13755 2 -532.4427965418022 -258.5767864157153 9.0189 0.1144 13754 +13756 2 -532.6305140238646 -259.7007745682009 8.9768 0.1144 13755 +13757 2 -532.8424886203558 -260.8231871574222 8.9583 0.1144 13756 +13758 2 -532.8603389958855 -261.95657776268297 8.9427 0.1144 13757 +13759 2 -532.5677033674681 -263.0536800591808 8.9195 0.1144 13758 +13760 2 -532.1706067361386 -264.12708765435923 8.8872 0.1144 13759 +13761 2 -531.7332388604339 -265.18428886571945 8.8462 0.1144 13760 +13762 2 -531.2440203875525 -266.2170569935156 8.8007 0.1144 13761 +13763 2 -530.868093294522 -267.27756882783234 8.6978 0.1144 13762 +13764 2 -530.7476966570382 -268.3806885990641 8.5292 0.1144 13763 +13765 2 -530.8804618476473 -269.5094407481928 8.4004 0.1144 13764 +13766 2 -531.1580845299684 -270.61827287987944 8.3243 0.1144 13765 +13767 2 -531.5530896556979 -271.62460792878085 8.414 0.1144 13766 +13768 2 -531.9642530911813 -272.6811814990171 8.5421 0.1144 13767 +13769 2 -532.5495222274949 -273.66274183749795 8.6566 0.1144 13768 +13770 2 -533.4305545209364 -274.38378629376473 8.7453 0.1144 13769 +13771 2 -534.0449939017356 -275.3137180855233 8.7163 0.1144 13770 +13772 2 -533.5117808365285 -275.74450349276515 8.4356 0.1144 13771 +13773 2 -532.6681424085119 -276.5153237719312 8.4793 0.1144 13772 +13774 2 -531.8155425455242 -277.27714501319014 8.4977 0.1144 13773 +13775 2 -530.8032781615639 -277.768516590477 8.5225 0.1144 13774 +13776 2 -529.8120311276417 -278.3196828246938 8.5536 0.1144 13775 +13777 2 -528.8707110384804 -278.96973662226844 8.5903 0.1144 13776 +13778 2 -527.97055937208 -279.64653459616954 8.6892 0.1144 13777 +13779 2 -527.3780810469932 -280.5885059568289 8.7946 0.1144 13778 +13780 2 -526.8533996453104 -281.60507776773466 8.8767 0.1144 13779 +13781 2 -526.2429807791004 -282.57126538293926 8.9369 0.1144 13780 +13782 2 -525.3429032282133 -283.24643716285107 8.9772 0.1144 13781 +13783 2 -524.2349047245132 -283.4974036064207 8.9996 0.1144 13782 +13784 2 -523.3695101600131 -284.22355980017903 9.0066 0.1144 13783 +13785 2 -522.8552215767588 -285.2409311891685 9.0101 0.1144 13784 +13786 2 -522.2788410658736 -286.22826189702266 9.015 0.1144 13785 +13787 2 -521.4044542734468 -286.9601268416876 9.0214 0.1144 13786 +13788 2 -520.3278548749126 -287.344519655195 9.0315 0.1144 13787 +13789 2 -519.191834790335 -287.46998641348557 9.0459 0.1144 13788 +13790 2 -518.0866009317186 -287.17726304959353 9.0646 0.1144 13789 +13791 2 -518.576325556433 -287.01727979438067 9.4181 0.1144 13790 +13792 2 -519.6076427781326 -286.67967345820534 9.981 0.1144 13791 +13793 2 -520.5457333719316 -286.05231107662235 10.2163 0.1144 13792 +13794 2 -520.9160290865161 -284.9796251888805 10.4013 0.1144 13793 +13795 2 -520.8941667165491 -283.83738732977264 10.5365 0.1144 13794 +13796 2 -520.9361575774544 -282.694505337789 10.6257 0.1144 13795 +13797 2 -521.2022383225558 -281.58193248305713 10.6735 0.1144 13796 +13798 2 -522.0232967569441 -280.7884374627073 10.6848 0.1144 13797 +13799 2 -517.1904978853627 -287.0686135658784 9.0865 0.1144 13790 +13800 2 -516.0475483857459 -287.05886670352663 9.1098 0.1144 13799 +13801 2 -514.9366185453966 -287.19011356947647 9.2111 0.1144 13800 +13802 2 -515.0666692474194 -287.28499694475045 9.56 0.1144 13801 +13803 2 -515.9630713358317 -287.9938406058564 9.6655 0.1144 13802 +13804 2 -516.9269349385996 -288.5322002674761 9.6998 0.1144 13803 +13805 2 -518.0510175800255 -288.7384130344068 9.7481 0.1144 13804 +13806 2 -519.1018661097037 -289.0690649626836 9.8647 0.1144 13805 +13807 2 -520.0633676928982 -289.62106686984924 10.0154 0.1144 13806 +13808 2 -521.0198509414807 -290.2395971643222 10.0824 0.1144 13807 +13809 2 -521.7664551682019 -291.03142456258655 10.021 0.1144 13808 +13810 2 -522.2051929489505 -292.0555995914483 9.9005 0.1144 13809 +13811 2 -522.578261715741 -293.1371250397135 9.7906 0.1144 13810 +13812 2 -523.2194652046215 -294.05014226619244 9.6951 0.1144 13811 +13813 2 -523.6906090370119 -295.0307565579507 9.6279 0.1144 13812 +13814 2 -523.2194157858816 -295.9988620119634 9.5993 0.1144 13813 +13815 2 -522.5089456347002 -296.89533140590856 9.6014 0.1144 13814 +13816 2 -522.2348716936797 -297.97550196413226 9.6174 0.1144 13815 +13817 2 -522.0205982231967 -299.0994263076036 9.6404 0.1144 13816 +13818 2 -522.2067265220337 -300.20566271378993 9.6741 0.1144 13817 +13819 2 -522.9200098475467 -301.0727273870094 9.7201 0.1144 13818 +13820 2 -523.6567539663517 -301.94705368388384 9.7787 0.1144 13819 +13821 2 -524.3959072764076 -302.8189808564353 9.849 0.1144 13820 +13822 2 -524.8985726056421 -303.80701506980313 10.0099 0.1144 13821 +13823 2 -525.0006161735766 -304.9178130578474 10.2225 0.1144 13822 +13824 2 -525.1964652177577 -306.0418889458075 10.3974 0.1144 13823 +13825 2 -525.7460657535376 -307.03794103835617 10.5274 0.1144 13824 +13826 2 -526.5386396125268 -307.85991678498556 10.6158 0.1144 13825 +13827 2 -527.2957130337643 -308.71738575518555 10.6664 0.1144 13826 +13828 2 -527.2739136072785 -309.84171307185306 10.6834 0.1144 13827 +13829 2 -527.915066169348 -310.7790547182935 10.6848 0.1144 13828 +13830 2 -528.7215214973318 -311.5904529028901 10.6848 0.1144 13829 +13831 2 -529.5457658784646 -312.38244285242905 10.6848 0.1144 13830 +13832 2 -530.4162165586538 -313.12531480193206 10.6848 0.1144 13831 +13833 2 -531.1748491644338 -313.98108997652383 10.6848 0.1144 13832 +13834 2 -531.6766539218459 -315.0086497438554 10.6848 0.1144 13833 +13835 2 -532.303978996579 -315.9645593894868 10.6848 0.1144 13834 +13836 2 -533.1436738020906 -316.7396110868573 10.6848 0.1144 13835 +13837 2 -534.0903483677545 -317.3823039503038 10.6848 0.1144 13836 +13838 2 -535.0735592118413 -317.96758540060796 10.6848 0.1144 13837 +13839 2 -535.9984630246877 -318.6401433661262 10.6848 0.1144 13838 +13840 2 -536.740022269047 -319.5112270458639 10.6848 0.1144 13839 +13841 2 -537.3462451110139 -320.4816589424324 10.6848 0.1144 13840 +13842 2 -537.9039703989317 -321.48105145452007 10.6848 0.1144 13841 +13843 2 -538.5094879121839 -322.4506333443803 10.6848 0.1144 13842 +13844 2 -539.0955329396925 -323.4331145481357 10.6848 0.1144 13843 +13845 2 -539.7916887200265 -324.3413677779716 10.6848 0.1144 13844 +13846 2 -514.0444668848959 -287.89606115582103 9.3107 0.1144 13801 +13847 2 -513.262143995129 -288.73001316052324 9.31 0.1144 13846 +13848 2 -512.6631366150242 -289.6832845849245 9.2793 0.1144 13847 +13849 2 -512.0738978522274 -290.59775621401843 9.1492 0.1144 13848 +13850 2 -511.13291273044285 -291.1215918758247 8.9495 0.1144 13849 +13851 2 -510.25293562155366 -291.787896174048 8.785 0.1144 13850 +13852 2 -509.4536068779993 -292.6049126853425 8.6731 0.1144 13851 +13853 2 -508.42414926012975 -292.8648824201395 8.6125 0.1144 13852 +13854 2 -507.6235534750382 -293.51028108677406 8.5996 0.1144 13853 +13855 2 -507.1869718535421 -294.56345342678867 8.6269 0.1144 13854 +13856 2 -506.15066688808577 -294.9867508500864 8.6741 0.1144 13855 +13857 2 -505.1944349551808 -295.3964980166328 8.8829 0.1144 13856 +13858 2 -505.4704472540216 -294.94410229285916 9.56 0.1144 13857 +13859 2 -505.7377786619384 -293.9771963727505 8.6551 0.1144 13858 +13860 2 -505.10364325038233 -293.16693678483404 8.2573 0.1144 13859 +13861 2 -504.17556718077884 -292.5235050409565 7.8165 0.1144 13860 +13862 2 -503.12793502468816 -292.14265515514205 7.3467 0.1144 13861 +13863 2 -502.49641210251093 -292.0434691744557 6.6697 0.1144 13862 +13864 2 -502.1228328218358 -292.3540975393072 5.9873 0.1144 13863 +13865 2 -501.09627560207434 -292.3770506339903 5.3747 0.1144 13864 +13866 2 -500.6177014850606 -291.4329075756965 4.856 0.1144 13865 +13867 2 -499.85978387072254 -290.640915069497 4.3387 0.1144 13866 +13868 2 -499.2662710496404 -289.74659463966714 3.8332 0.1144 13867 +13869 2 -499.46433784021895 -288.66308296161753 3.3968 0.1144 13868 +13870 2 -499.0313264815578 -287.6056858303227 3.078 0.1144 13869 +13871 2 -498.4420219600041 -286.6264505006514 2.8431 0.1144 13870 +13872 2 -497.8972937883837 -285.6335905966151 2.6389 0.1144 13871 +13873 2 -497.5128236024158 -284.5601730235794 2.4843 0.1144 13872 +13874 2 -496.99076691503177 -283.54628875742395 2.3932 0.1144 13873 +13875 2 -496.2564759022077 -282.68236208895854 2.341 0.1144 13874 +13876 2 -495.2633340916385 -282.1796500997446 2.312 0.1144 13875 +13877 2 -494.1531976115647 -282.30347398923794 2.3053 0.1144 13876 +13878 2 -493.2313195112776 -282.9551948406852 2.3194 0.1144 13877 +13879 2 -492.75521383037704 -283.9054708798518 2.3472 0.1144 13878 +13880 2 -493.06045092357414 -284.9965416964978 2.3869 0.1144 13879 +13881 2 -493.55489320008223 -286.028187277694 2.442 0.1144 13880 +13882 2 -494.00814316484013 -287.07827285489554 2.5157 0.1144 13881 +13883 2 -494.44922233312013 -288.132434179034 2.6174 0.1144 13882 +13884 2 -494.82557428084453 -289.1994000695123 2.7763 0.1144 13883 +13885 2 -494.97695839745563 -290.317655286016 3.0089 0.1144 13884 +13886 2 -495.18656436649314 -291.423092316219 3.2798 0.1144 13885 +13887 2 -495.47063517833834 -292.5255032622176 3.5473 0.1144 13886 +13888 2 -495.61139080610576 -293.65420142968844 3.824 0.1144 13887 +13889 2 -495.46842779495466 -294.7281410916074 4.1616 0.1144 13888 +13890 2 -494.888913034449 -295.6588965709659 4.5636 0.1144 13889 +13891 2 -494.05900784440007 -296.42239167607784 4.9401 0.1144 13890 +13892 2 -493.06682958218965 -296.9792835381096 5.2563 0.1144 13891 +13893 2 -491.9740988177378 -297.30056851507004 5.5205 0.1144 13892 +13894 2 -490.8586182567309 -297.3087690038221 5.7971 0.1144 13893 +13895 2 -489.9228348549751 -297.61093709445754 6.7483 0.1144 13894 +13896 2 -502.0425155747582 -292.0790056640693 5.8453 0.1144 13863 +13897 2 -500.9173520734438 -292.0175357095402 5.6491 0.1144 13896 +13898 2 -499.80390141738013 -292.2044974342633 5.5839 0.1144 13897 +13899 2 -499.35147226843173 -293.126538710553 5.5146 0.1144 13898 +13900 2 -499.41135193463094 -294.24700651713016 5.388 0.1144 13899 +13901 2 -498.98610087374624 -295.29214154439524 5.2823 0.1144 13900 +13902 2 -498.6101432838464 -296.36721974647946 5.24 0.1144 13901 +13903 2 -498.46784809245986 -297.4936989555679 5.2566 0.1144 13902 +13904 2 -499.0142092680501 -298.483380291053 5.2207 0.1144 13903 +13905 2 -499.5444078805665 -299.49240255606287 5.0613 0.1144 13904 +13906 2 -504.77628164166174 -295.38190464851425 9.0328 0.1144 13857 +13907 2 -503.6505964366207 -295.5696185775434 9.1251 0.1144 13906 +13908 2 -502.5821495283331 -295.9103291646562 9.0909 0.1144 13907 +13909 2 -502.04378631368013 -296.87588981997953 9.0187 0.1144 13908 +13910 2 -500.79629388928447 -296.9153509537127 8.1533 0.1144 13909 +13911 2 -499.8989803022387 -296.27035726653185 7.9879 0.1144 13910 +13912 2 -498.9792670896056 -295.8542783599431 7.8102 0.1144 13911 +13913 2 -497.8562645512668 -295.97651967409126 7.6369 0.1144 13912 +13914 2 -496.7294876816517 -295.9426235666409 7.5184 0.1144 13913 +13915 2 -495.59564954469255 -295.8027171365635 7.4523 0.1144 13914 +13916 2 -494.4894199484868 -295.98559275133596 7.4365 0.1144 13915 +13917 2 -493.37504437592884 -296.20903932948465 7.4499 0.1144 13916 +13918 2 -492.2964325040612 -295.96728350253096 7.4935 0.1144 13917 +13919 2 -491.3424254561761 -295.3481219948567 7.5604 0.1144 13918 +13920 2 -490.3761332285886 -294.7538956904035 7.6731 0.1144 13919 +13921 2 -489.4488502231744 -294.10318239111575 7.8327 0.1144 13920 +13922 2 -488.7971798003518 -293.1909917805424 8.0043 0.1144 13921 +13923 2 -489.25582296869675 -292.4081224337606 8.237 0.1144 13922 +13924 2 -488.9260772758488 -291.5062932048884 8.4651 0.1144 13923 +13925 2 -489.2250421011597 -290.4933500508927 8.6671 0.1144 13924 +13926 2 -489.5889101161616 -289.4173272966451 8.8834 0.1144 13925 +13927 2 -489.51572836497127 -288.4359905596925 9.2536 0.1144 13926 +13928 2 -488.93455214858886 -287.45839859700493 9.527 0.1144 13927 +13929 2 -488.07302609470753 -286.7083328275662 9.6998 0.1144 13928 +13930 2 -487.60429195175436 -285.6913075018098 9.862 0.1144 13929 +13931 2 -486.81688570637635 -285.069242099509 9.6914 0.1144 13930 +13932 2 -487.32502496259167 -284.25331299946845 9.4419 0.1144 13931 +13933 2 -488.3580939187914 -283.8558182551807 9.1298 0.1144 13932 +13934 2 -489.15400081912617 -283.08581728375304 8.8047 0.1144 13933 +13935 2 -490.2494560500216 -283.0168342633499 8.4759 0.1144 13934 +13936 2 -491.1645706890769 -282.5221480118868 8.0217 0.1144 13935 +13937 2 -490.63215261999176 -281.83018847570594 7.2833 0.1144 13936 +13938 2 -490.3716826778093 -282.59324942950934 6.0971 0.1144 13937 +13939 2 -489.94244647725264 -282.8399093859915 5.563 0.1144 13938 +13940 2 -489.86807345369476 -283.98116794274665 5.0887 0.1144 13939 +13941 2 -489.47677054998564 -285.02297992556737 4.6199 0.1144 13940 +13942 2 -488.83819399727315 -285.9624506043678 4.2241 0.1144 13941 +13943 2 -488.9208598270194 -287.0408931714952 3.8747 0.1144 13942 +13944 2 -489.0708583736632 -288.01036989427143 2.8118 0.1144 13943 +13945 2 -491.48019296389384 -282.46935142450263 7.6017 0.1144 13936 +13946 2 -492.5959376337112 -282.3350033624622 7.1671 0.1144 13945 +13947 2 -493.6142741178354 -282.0168153282723 6.7078 0.1144 13946 +13948 2 -494.56738897411435 -281.5422905125458 6.1657 0.1144 13947 +13949 2 -495.42218129332 -280.88159035284616 5.6652 0.1144 13948 +13950 2 -496.12617607505507 -280.00455288084754 5.2063 0.1144 13949 +13951 2 -496.60070313784433 -278.9977048701327 4.7664 0.1144 13950 +13952 2 -496.79957335562614 -277.90196190005275 4.3386 0.1144 13951 +13953 2 -497.318497838352 -276.93317855934777 3.9343 0.1144 13952 +13954 2 -497.6282235029981 -275.84657724669455 3.6263 0.1144 13953 +13955 2 -497.29069503746985 -274.7780662898213 3.3968 0.1144 13954 +13956 2 -496.54741505366616 -273.9182927407534 3.2287 0.1144 13955 +13957 2 -495.94028091516617 -272.9778403294812 3.0292 0.1144 13956 +13958 2 -495.67884428070744 -271.87222407319564 2.869 0.1144 13957 +13959 2 -495.3713663611419 -270.7706833617466 2.7378 0.1144 13958 +13960 2 -494.8088191376893 -269.77778615086027 2.6184 0.1144 13959 +13961 2 -494.07774044723294 -268.89937048708794 2.5005 0.1144 13960 +13962 2 -493.69723112679094 -267.8929950764897 2.2648 0.1144 13961 +13963 2 -493.4099781933612 -266.7906481790767 2.063 0.1144 13962 +13964 2 -493.23033533089813 -265.6601715353701 1.9083 0.1144 13963 +13965 2 -492.7276770137444 -264.63501414930874 1.7972 0.1144 13964 +13966 2 -491.9965983232881 -263.7565984855364 1.7261 0.1144 13965 +13967 2 -491.49967925391024 -262.7258669596342 1.687 0.1144 13966 +13968 2 -487.5555338044571 -285.40567507530307 10.8709 0.1144 13930 +13969 2 -487.43251304608077 -284.28344872424526 11.2098 0.1144 13968 +13970 2 -486.9622668902626 -283.27936031531993 11.3355 0.1144 13969 +13971 2 -486.79779416674603 -282.1982715940676 11.458 0.1144 13970 +13972 2 -486.5477717771533 -281.1121954251446 11.6363 0.1144 13971 +13973 2 -485.9299819098874 -280.19519670109776 11.878 0.1144 13972 +13974 2 -485.14788505176784 -279.36758602298914 12.0801 0.1144 13973 +13975 2 -484.42169560237926 -278.4843015480906 12.2276 0.1144 13974 +13976 2 -483.67198762290695 -277.6213325535632 12.3313 0.1144 13975 +13977 2 -482.8315842317336 -276.84698648099345 12.3957 0.1144 13976 +13978 2 -482.0185524749541 -276.06951572754474 12.4875 0.1144 13977 +13979 2 -481.0831343543881 -275.4204117453379 12.5191 0.1144 13978 +13980 2 -480.02755282312273 -274.98622924816493 12.5003 0.1144 13979 +13981 2 -478.9810108935617 -274.5237106326792 12.441 0.1144 13980 +13982 2 -477.94739897686554 -274.0322276465407 12.3483 0.1144 13981 +13983 2 -476.97957806160497 -273.4251287699281 12.2293 0.1144 13982 +13984 2 -476.1533896355856 -273.15639491513576 11.2473 0.1144 13983 +13985 2 -501.86997308449673 -297.9595229873203 8.9175 0.1144 13909 +13986 2 -501.9704032841306 -299.0978948224434 8.7839 0.1144 13985 +13987 2 -502.3516376629422 -300.1632445858601 8.6406 0.1144 13986 +13988 2 -503.2115445349151 -300.8761130670919 8.4804 0.1144 13987 +13989 2 -503.65189844272516 -301.9051705270408 8.2998 0.1144 13988 +13990 2 -504.362274118478 -302.64120193893746 7.9267 0.1144 13989 +13991 2 -504.56505929860805 -303.1204802617517 9.6854 0.1144 13990 +13992 2 -504.1319221408209 -302.562230637888 10.761 0.1144 13991 +13993 2 -503.7393740783063 -301.49685718758235 11.1528 0.1144 13992 +13994 2 -503.40013118512775 -300.47041558698936 11.6047 0.1144 13993 +13995 2 -503.58428580774233 -299.445918327369 12.0418 0.1144 13994 +13996 2 -504.1332611325171 -298.44396381104184 12.3906 0.1144 13995 +13997 2 -504.7886002643488 -297.5700771694858 12.7513 0.1144 13996 +13998 2 -505.21950263543476 -296.56137005312723 13.0691 0.1144 13997 +13999 2 -505.4321463588952 -295.43906864669805 13.3144 0.1144 13998 +14000 2 -505.22253032292997 -294.3384399320688 13.4955 0.1144 13999 +14001 2 -504.9498606341761 -293.22806253188685 13.6409 0.1144 14000 +14002 2 -504.5128035272611 -292.1779401460217 13.7691 0.1144 14001 +14003 2 -503.85466504315923 -291.2479168636551 13.8869 0.1144 14002 +14004 2 -503.2443087174639 -290.29289127463466 14.0552 0.1144 14003 +14005 2 -502.95123155954445 -289.2367063573471 14.336 0.1144 14004 +14006 2 -502.807992921099 -288.11189208714234 14.6212 0.1144 14005 +14007 2 -502.73273389118765 -286.9744214816246 14.9186 0.1144 14006 +14008 2 -502.6615037326219 -285.83773713031565 15.2208 0.1144 14007 +14009 2 -503.144796921664 -284.86562649184617 15.4906 0.1144 14008 +14010 2 -503.56575494587776 -284.351167278837 15.9541 0.1144 14009 +14011 2 -502.6181390849978 -283.7190083587792 16.3014 0.1144 14010 +14012 2 -501.6608420461981 -283.11765909295644 16.5556 0.1144 14011 +14013 2 -500.55999659653617 -283.4307953348041 16.7274 0.1144 14012 +14014 2 -499.4599978966352 -283.74478187944595 16.8708 0.1144 14013 +14015 2 -505.35196620213367 -302.86650810740457 7.51 0.1144 13990 +14016 2 -505.843036420275 -303.6174246213093 7.0168 0.1144 14015 +14017 2 -505.8713711048414 -304.70791570135094 6.5071 0.1144 14016 +14018 2 -506.0228089070242 -305.83430277605925 6.102 0.1144 14017 +14019 2 -506.2420650589255 -306.95750842946984 5.8138 0.1144 14018 +14020 2 -506.3748166295735 -308.0927659467277 5.6288 0.1144 14019 +14021 2 -506.510750321806 -309.22795941539994 5.5035 0.1144 14020 +14022 2 -506.57228292373026 -310.36950251090724 5.4144 0.1144 14021 +14023 2 -506.4897815950011 -311.5091177006787 5.3323 0.1144 14022 +14024 2 -506.32237898639164 -312.6380192227925 5.2142 0.1144 14023 +14025 2 -506.1800837950051 -313.76449843188084 5.0417 0.1144 14024 +14026 2 -506.18584479773733 -314.86307399634944 4.7774 0.1144 14025 +14027 2 -506.30730992460445 -315.98529709046 4.5016 0.1144 14026 +14028 2 -507.0521520538117 -316.8419626334569 4.2951 0.1144 14027 +14029 2 -507.5976359827714 -317.8453600339152 4.1577 0.1144 14028 +14030 2 -507.82425106254357 -318.96617692601666 4.0862 0.1144 14029 +14031 2 -507.48298347111154 -320.05511636925405 4.073 0.1144 14030 +14032 2 -506.8573803478076 -321.0124333398088 4.1076 0.1144 14031 +14033 2 -505.9894011211077 -321.75725178212724 4.177 0.1144 14032 +14034 2 -505.0110060273031 -322.35051786949356 4.2762 0.1144 14033 +14035 2 -503.9802104528152 -322.8442548172868 4.4098 0.1144 14034 +14036 2 -503.06223292460203 -323.5242681684026 4.5806 0.1144 14035 +14037 2 -502.0970927441112 -323.9671600649215 4.8096 0.1144 14036 +14038 2 -502.27134713668386 -323.4158389727537 5.322 0.1144 14037 +14039 2 -501.8050552385114 -322.4481749217015 5.8313 0.1144 14038 +14040 2 -502.0531344487508 -321.3889510570501 6.3168 0.1144 14039 +14041 2 -502.04821388398545 -320.26046656976536 6.7698 0.1144 14040 +14042 2 -502.03341653649613 -319.1886714921002 7.2619 0.1144 14041 +14043 2 -502.0438922123511 -318.06912880411755 7.6938 0.1144 14042 +14044 2 -502.1589386966791 -317.2247994806638 7.9701 0.1144 14043 +14045 2 -501.9857303437791 -316.0944070193984 8.1483 0.1144 14044 +14046 2 -501.94200317372594 -314.95940659887026 8.2379 0.1144 14045 +14047 2 -501.75580075937546 -313.85479638667323 8.2228 0.1144 14046 +14048 2 -501.5308691121977 -312.74048841573426 8.164 0.1144 14047 +14049 2 -501.7927657428459 -311.6675048674657 8.1227 0.1144 14048 +14050 2 -501.9083777516449 -310.5530613456031 8.1163 0.1144 14049 +14051 2 -501.69795197668236 -309.4339046973937 8.1474 0.1144 14050 +14052 2 -501.39286992449274 -308.3363288087045 8.2452 0.1144 14051 +14053 2 -501.2600979239031 -307.2108293436405 8.4018 0.1144 14052 +14054 2 -501.28999239993 -306.0702554835582 8.5594 0.1144 14053 +14055 2 -501.30525596141723 -304.96048091469714 8.7783 0.1144 14054 +14056 2 -500.95547507363034 -303.96880698111863 9.088 0.1144 14055 +14057 2 -501.39197527144603 -302.9545254288331 9.3083 0.1144 14056 +14058 2 -501.1224940160708 -301.87484320567603 9.3392 0.1144 14057 +14059 2 -500.96221902696857 -300.74765980983113 9.283 0.1144 14058 +14060 2 -500.83026357535675 -299.6374355942828 9.1568 0.1144 14059 +14061 2 -500.2387466093151 -298.9381398207471 8.9747 0.1144 14060 +14062 2 -499.1875220502766 -298.7870926212553 8.7845 0.1144 14061 +14063 2 -498.41258851522343 -297.9829729372219 8.6619 0.1144 14062 +14064 2 -497.77067664278104 -297.036790846915 8.6091 0.1144 14063 +14065 2 -497.2032502451884 -296.0439541315811 8.6082 0.1144 14064 +14066 2 -496.7054811691024 -295.0139279343937 8.6515 0.1144 14065 +14067 2 -495.99550826444556 -294.1192929671286 8.7293 0.1144 14066 +14068 2 -495.91698293050854 -292.98832091975964 8.8576 0.1144 14067 +14069 2 -495.49350983416144 -292.0021495671691 9.1323 0.1144 14068 +14070 2 -495.60141362746504 -291.0907007088174 9.371 0.1144 14069 +14071 2 -495.83267252179377 -289.9934699109476 9.5796 0.1144 14070 +14072 2 -495.8051245896225 -288.86493804988515 9.7639 0.1144 14071 +14073 2 -495.9481859013623 -287.74404660059884 9.9298 0.1144 14072 +14074 2 -495.82109570784326 -286.6404086786736 10.1351 0.1144 14073 +14075 2 -495.58703326443907 -285.5979945083039 10.4286 0.1144 14074 +14076 2 -494.7606072317737 -285.0712363260866 10.6968 0.1144 14075 +14077 2 -493.91906627284845 -285.583259347494 10.9717 0.1144 14076 +14078 2 -492.97072903317354 -286.1062310865449 11.2582 0.1144 14077 +14079 2 -492.0229849995634 -286.71738047642935 11.5122 0.1144 14078 +14080 2 -491.29194438627025 -287.3743799221795 11.894 0.1144 14079 +14081 2 -490.7859260274199 -288.35938306456353 12.2508 0.1144 14080 +14082 2 -490.1263049787328 -289.28579889027515 12.5151 0.1144 14081 +14083 2 -489.92659432298404 -290.4114507831712 12.692 0.1144 14082 +14084 2 -489.6128801486892 -291.5117616469031 12.7912 0.1144 14083 +14085 2 -489.26673012617005 -292.60231721720197 12.8256 0.1144 14084 +14086 2 -488.9214977119781 -293.6936525278152 12.8029 0.1144 14085 +14087 2 -488.5454627496176 -294.7719125553979 12.7563 0.1144 14086 +14088 2 -487.95377699053375 -295.7406142703222 12.6753 0.1144 14087 +14089 2 -487.07618488782003 -296.44984503760077 12.5429 0.1144 14088 +14090 2 -486.0406419914972 -296.914439182931 12.4262 0.1144 14089 +14091 2 -485.00363595064607 -297.26730714866096 12.3199 0.1144 14090 +14092 2 -484.24955137678955 -298.1232386327598 12.2201 0.1144 14091 +14093 2 -483.33001190527307 -298.7724895013178 12.124 0.1144 14092 +14094 2 -482.2421058351169 -299.1197354552428 12.0198 0.1144 14093 +14095 2 -481.3494796990817 -299.6807955511923 11.8468 0.1144 14094 +14096 2 -480.6388097462907 -300.26740965620513 11.5997 0.1144 14095 +14097 2 -479.50824798028503 -300.11619635240527 11.3911 0.1144 14096 +14098 2 -478.3824940316666 -299.99900502520836 11.218 0.1144 14097 +14099 2 -477.2630261594842 -299.91902075705997 11.0482 0.1144 14098 +14100 2 -476.1863554607123 -299.9321815475463 10.8694 0.1144 14099 +14101 2 -475.16684662609146 -300.43881149744055 10.7264 0.1144 14100 +14102 2 -474.2343468469412 -301.0977226157901 10.6127 0.1144 14101 +14103 2 -473.3801946093914 -301.8579849685926 10.5046 0.1144 14102 +14104 2 -472.7925482867673 -302.78865271247673 10.3634 0.1144 14103 +14105 2 -472.723985867738 -303.8902546572357 10.2049 0.1144 14104 +14106 2 -472.69002245475485 -305.0154050367755 10.0674 0.1144 14105 +14107 2 -472.20101646358637 -306.01423240954887 9.9378 0.1144 14106 +14108 2 -471.59146477707907 -306.97151227535414 9.7805 0.1144 14107 +14109 2 -471.24698180843234 -308.0426258567787 9.5881 0.1144 14108 +14110 2 -471.4591388879532 -309.11165214906964 9.3958 0.1144 14109 +14111 2 -471.5450165418809 -310.2096176305652 9.2094 0.1144 14110 +14112 2 -471.16020864328704 -311.256392969967 8.9574 0.1144 14111 +14113 2 -470.89588949751305 -312.3381395896416 8.6313 0.1144 14112 +14114 2 -470.7002550868877 -313.44195036934036 8.2628 0.1144 14113 +14115 2 -470.59344295815816 -314.5750092641716 7.9414 0.1144 14114 +14116 2 -470.53285685813967 -315.71707450507716 7.6797 0.1144 14115 +14117 2 -470.885785319422 -316.7589597200682 7.3975 0.1144 14116 +14118 2 -470.81388248085364 -317.86868641696515 6.7483 0.1144 14117 +14119 2 -495.53211608313836 -292.1381366163316 9.6343 0.1144 14069 +14120 2 -495.82746051307583 -293.2259340228853 9.8825 0.1144 14119 +14121 2 -496.1747029139675 -294.315537145597 9.9678 0.1144 14120 +14122 2 -496.82957509404366 -295.2520589861123 10.0331 0.1144 14121 +14123 2 -497.6198038103678 -296.07961597864914 10.0795 0.1144 14122 +14124 2 -498.42866832960226 -296.8886150389228 10.1087 0.1144 14123 +14125 2 -499.1127141050969 -297.80568176878927 10.1226 0.1144 14124 +14126 2 -500.93222704460425 -318.1800801214515 8.4356 0.1144 14043 +14127 2 -500.30338535538306 -319.09687300422144 8.3197 0.1144 14126 +14128 2 -499.6171317548332 -320.0111415182436 8.2805 0.1144 14127 +14129 2 -499.2831457188114 -321.1008740256703 8.229 0.1144 14128 +14130 2 -499.6586304868331 -322.1767476655479 8.1416 0.1144 14129 +14131 2 -500.03418611342113 -323.2525507429455 7.873 0.1144 14130 +14132 2 -535.229504969953 -275.5677164699081 8.6451 0.1144 13771 +14133 2 -536.3117319917994 -275.23106525101025 8.6351 0.1144 14132 +14134 2 -537.3731443744788 -274.8053455146871 8.6633 0.1144 14133 +14135 2 -538.4996125767814 -274.61515834582144 8.734 0.1144 14134 +14136 2 -539.6180540314487 -274.3748203910957 8.8482 0.1144 14135 +14137 2 -540.3721282422913 -273.52383864361684 8.9915 0.1144 14136 +14138 2 -539.7845817670319 -272.51547413144374 9.3582 0.1144 14137 +14139 2 -538.8319682975678 -271.93994412545317 9.5518 0.1144 14138 +14140 2 -538.0190000911875 -271.19966740326413 9.7272 0.1144 14139 +14141 2 -538.4803167426501 -271.0987389281772 9.8828 0.1144 14140 +14142 2 -539.1095585897918 -270.36233021842054 10.075 0.1144 14141 +14143 2 -538.6748527352358 -269.3712563008873 10.6848 0.1144 14142 +14144 2 -540.9570917851834 -273.46927250496634 9.2487 0.1144 14137 +14145 2 -541.6839273558952 -272.89563232754847 9.6364 0.1144 14144 +14146 2 -542.0590545747557 -271.84565473270663 10.0499 0.1144 14145 +14147 2 -542.6951881824009 -270.92470517750587 10.4279 0.1144 14146 +14148 2 -543.3814281629898 -270.0169420316129 10.7525 0.1144 14147 +14149 2 -544.1662074156848 -269.19183402381066 10.986 0.1144 14148 +14150 2 -545.1494206898906 -268.6276401764271 11.1267 0.1144 14149 +14151 2 -545.7855098846192 -267.72790377816955 11.2022 0.1144 14150 +14152 2 -546.5315334588374 -266.87195541716244 11.2464 0.1144 14151 +14153 2 -546.7222481315256 -265.7875798163574 11.2059 0.1144 14152 +14154 2 -546.75942741991 -264.6462433889552 11.1963 0.1144 14153 +14155 2 -546.7852592707748 -263.5210052739409 11.301 0.1144 14154 +14156 2 -546.6986933671409 -262.3802582974697 11.4343 0.1144 14155 +14157 2 -546.9138925809463 -262.3677687667515 11.2473 0.1144 14156 +14158 2 -547.9675598829518 -262.53416533127245 11.1563 0.1144 14157 +14159 2 -548.8584044123454 -263.22935016601036 11.1192 0.1144 14158 +14160 2 -549.8408695660205 -263.79928580431874 11.069 0.1144 14159 +14161 2 -550.5954501117526 -264.63157649872954 11.0061 0.1144 14160 +14162 2 -551.1263709298919 -265.63338777080935 10.9023 0.1144 14161 +14163 2 -551.8811881424119 -266.38641211681926 10.7384 0.1144 14162 +14164 2 -552.6481728004769 -267.1031872798187 10.5432 0.1144 14163 +14165 2 -553.27393948494 -268.0266373903369 10.3504 0.1144 14164 +14166 2 -554.0529082031329 -268.8623025541895 10.2304 0.1144 14165 +14167 2 -554.3848463521988 -269.8652528646211 10.2336 0.1144 14166 +14168 2 -554.6430575425151 -270.95785157466764 10.3295 0.1144 14167 +14169 2 -554.6899869680083 -272.08317131546266 10.4428 0.1144 14168 +14170 2 -554.4555089413312 -273.19814379270395 10.5423 0.1144 14169 +14171 2 -554.2403884250011 -274.3213592544271 10.6168 0.1144 14170 +14172 2 -554.2186290641259 -275.46032379742843 10.659 0.1144 14171 +14173 2 -554.366729999803 -276.59313857171924 10.6728 0.1144 14172 +14174 2 -554.6580791101112 -277.69789821341635 10.6714 0.1144 14173 +14175 2 -555.056272171033 -278.76894034901784 10.6661 0.1144 14174 +14176 2 -555.3152222417802 -279.8801375551248 10.6589 0.1144 14175 +14177 2 -555.7433579793347 -280.9358981294164 10.6485 0.1144 14176 +14178 2 -555.9618548208633 -282.05026333896046 10.6332 0.1144 14177 +14179 2 -555.6845077658365 -283.14018513939754 10.6123 0.1144 14178 +14180 2 -554.9344893701755 -283.97908382587286 10.5862 0.1144 14179 +14181 2 -554.588467943014 -285.04199172966565 10.5559 0.1144 14180 +14182 2 -554.5246492927865 -286.1744335294431 10.4791 0.1144 14181 +14183 2 -553.813369698694 -287.0522335687616 10.3803 0.1144 14182 +14184 2 -552.9422151603902 -287.79386337560106 10.31 0.1144 14183 +14185 2 -552.269657490958 -288.71862576740114 10.2674 0.1144 14184 +14186 2 -551.4840178685408 -289.5493888405383 10.2509 0.1144 14185 +14187 2 -550.9577135298159 -290.56433090442147 10.2586 0.1144 14186 +14188 2 -550.3602985898839 -291.5337984436129 10.3227 0.1144 14187 +14189 2 -549.9844456123668 -292.59268408394036 10.4227 0.1144 14188 +14190 2 -550.0807191395699 -293.72376400063933 10.495 0.1144 14189 +14191 2 -550.5186129293181 -294.77954500487266 10.5396 0.1144 14190 +14192 2 -550.7759569399318 -295.8810514643187 10.5543 0.1144 14191 +14193 2 -550.6651731784618 -297.0197589105904 10.5382 0.1144 14192 +14194 2 -550.5632971663913 -298.15933353656465 10.4929 0.1144 14193 +14195 2 -550.3813349999947 -299.28495187774445 10.4271 0.1144 14194 +14196 2 -549.9060992575577 -300.2587764456777 10.3228 0.1144 14195 +14197 2 -548.9279314639001 -300.70970210191285 10.1142 0.1144 14196 +14198 2 -547.7991692478437 -300.84727560809563 9.9157 0.1144 14197 +14199 2 -546.6776071635172 -301.0245329661968 9.7627 0.1144 14198 +14200 2 -545.5554619400535 -301.10880435789034 9.6519 0.1144 14199 +14201 2 -544.5279362226247 -301.59434569497944 9.5791 0.1144 14200 +14202 2 -543.5728765837016 -302.2209654409978 9.5397 0.1144 14201 +14203 2 -542.5976633153954 -302.8143089008248 9.524 0.1144 14202 +14204 2 -541.772549564012 -303.5858750725029 9.51 0.1144 14203 +14205 2 -541.0886983447323 -304.5009971462667 9.4901 0.1144 14204 +14206 2 -540.3338310697003 -305.3592604491556 9.4608 0.1144 14205 +14207 2 -539.57486761779 -306.2151110077604 9.4203 0.1144 14206 +14208 2 -538.7465412479526 -307.0013075957918 9.3691 0.1144 14207 +14209 2 -537.8809611455758 -307.748535229361 9.3059 0.1144 14208 +14210 2 -537.0300958440937 -308.458670483192 9.1793 0.1144 14209 +14211 2 -536.082500741797 -308.9986850867941 8.9731 0.1144 14210 +14212 2 -535.0702225357754 -309.5304325208391 8.8188 0.1144 14211 +14213 2 -534.0764717651475 -310.09538212556197 8.7225 0.1144 14212 +14214 2 -533.0810945044442 -310.66039903581765 8.6789 0.1144 14213 +14215 2 -532.0874142962964 -311.2254194991067 8.6821 0.1144 14214 +14216 2 -531.0928840814404 -311.7911452911105 8.7258 0.1144 14215 +14217 2 -530.0983571235315 -312.3553154516053 8.7948 0.1144 14216 +14218 2 -529.1037560501094 -312.92111180608913 8.8691 0.1144 14217 +14219 2 -528.1100052794815 -313.486061410812 8.949 0.1144 14218 +14220 2 -527.1154783215726 -314.0502315713067 9.0387 0.1144 14219 +14221 2 -526.0782552496025 -314.50676116396534 9.1391 0.1144 14220 +14222 2 -525.1927546315974 -315.14314321549756 9.25 0.1144 14221 +14223 2 -524.241909900083 -315.7154658662388 9.3743 0.1144 14222 +14224 2 -523.1339792001021 -315.9340468902085 9.548 0.1144 14223 +14225 2 -522.3981237573407 -316.5941475320492 9.8397 0.1144 14224 +14226 2 -522.2557677743157 -317.71588898804384 10.106 0.1144 14225 +14227 2 -521.5786522781593 -318.5209991077571 10.4739 0.1144 14226 +14228 2 -521.4525496485295 -319.6475829292283 10.7772 0.1144 14227 +14229 2 -521.5877038965339 -320.78355258518144 10.9948 0.1144 14228 +14230 2 -521.6588531296056 -321.9251158145443 11.1338 0.1144 14229 +14231 2 -521.7322984914201 -322.8143168878837 11.2077 0.1144 14230 +14232 2 -521.7961629121346 -323.9566426845664 11.2434 0.1144 14231 +14233 2 -521.8601687538953 -325.09896877733524 11.2473 0.1144 14232 +14234 2 -522.0033872584852 -326.23339967868753 11.2473 0.1144 14233 +14235 2 -522.1174629606121 -327.3725779018748 11.2473 0.1144 14234 +14236 2 -522.0382848784277 -328.51227076019313 11.2473 0.1144 14235 +14237 2 -522.3263813046713 -329.6170235919096 11.2473 0.1144 14236 +14238 2 -522.9415963745649 -330.5817467375715 11.2473 0.1144 14237 +14239 2 -523.5308267806051 -331.56260826123207 11.2473 0.1144 14238 +14240 2 -520.5165547184306 -322.34741350554765 11.5656 0.1144 14230 +14241 2 -519.4702740258895 -322.53692002896014 11.7799 0.1144 14240 +14242 2 -518.3518595715732 -322.3590741732976 11.9852 0.1144 14241 +14243 2 -517.2131521253016 -322.2482904118276 12.1447 0.1144 14242 +14244 2 -516.0735742423799 -322.14797003126625 12.26 0.1144 14243 +14245 2 -515.0556611048788 -322.66924046444154 12.3721 0.1144 14244 +14246 2 -547.1194449818647 -261.525325990964 11.5837 0.1144 14156 +14247 2 -547.660979456902 -260.59866293335017 11.888 0.1144 14246 +14248 2 -548.4764569414689 -259.80268134928895 12.1917 0.1144 14247 +14249 2 -549.1110283097246 -258.8511107325768 12.4544 0.1144 14248 +14250 2 -549.2349553600448 -257.61534482990794 12.9105 0.1144 14249 +14251 2 -550.1936642879198 -257.1708131194388 13.2849 0.1144 14250 +14252 2 -549.9016654141844 -256.74791668088983 13.4238 0.1144 14251 +14253 2 -549.2508994779145 -255.80899926908486 13.185 0.1144 14252 +14254 2 -548.6016183145874 -254.8701556767071 13.0816 0.1144 14253 +14255 2 -547.9207514037302 -253.95458052976417 12.9596 0.1144 14254 +14256 2 -547.2553817928426 -253.03345167292196 12.8336 0.1144 14255 +14257 2 -547.2841139853006 -252.0765114129702 12.7067 0.1144 14256 +14258 2 -548.0938788698413 -251.273376074584 12.5728 0.1144 14257 +14259 2 -548.7825210295999 -250.40033697706158 12.3976 0.1144 14258 +14260 2 -549.0039440010878 -249.34027948442383 12.126 0.1144 14259 +14261 2 -548.93989759553 -248.21732807499635 11.8253 0.1144 14260 +14262 2 -548.8177576368175 -247.07968860640983 11.5511 0.1144 14261 +14263 2 -548.6338792349037 -246.04713759880312 11.1626 0.1144 14262 +14264 2 -548.7347965766635 -244.96016982553098 10.7535 0.1144 14263 +14265 2 -549.0275131305749 -243.85818865097934 10.4257 0.1144 14264 +14266 2 -548.5895545919541 -242.8671079234656 10.1829 0.1144 14265 +14267 2 -547.684939517743 -242.19706731461412 9.9864 0.1144 14266 +14268 2 -546.8598683186043 -241.4284809197621 9.7857 0.1144 14267 +14269 2 -546.1935846524227 -240.50487527005015 9.637 0.1144 14268 +14270 2 -546.5348250039326 -239.4289465630712 9.5223 0.1144 14269 +14271 2 -546.8500948097367 -238.32863895628654 9.4221 0.1144 14270 +14272 2 -546.4098354473816 -237.28819725015455 9.2879 0.1144 14271 +14273 2 -545.6779059559444 -236.4446402458184 9.1471 0.1144 14272 +14274 2 -545.626131406214 -235.30311758025272 9.0376 0.1144 14273 +14275 2 -545.5281507595278 -234.1768424260941 8.8974 0.1144 14274 +14276 2 -545.4197268657884 -233.0400802041381 8.7946 0.1144 14275 +14277 2 -545.4568388486399 -231.8971172866605 8.7517 0.1144 14276 +14278 2 -545.5368669375326 -230.75671909962747 8.7701 0.1144 14277 +14279 2 -545.4689567685643 -229.62166804837443 8.841 0.1144 14278 +14280 2 -544.9864488238466 -228.63134258001358 8.9572 0.1144 14279 +14281 2 -544.2664807020215 -227.8499654408832 9.1851 0.1144 14280 +14282 2 -544.0428741292585 -226.87955678953202 9.5736 0.1144 14281 +14283 2 -544.0857084829777 -225.73908073185189 9.94 0.1144 14282 +14284 2 -544.0193607554991 -224.60078025348145 10.2852 0.1144 14283 +14285 2 -544.4180986388234 -223.82422017183794 10.604 0.1144 14284 +14286 2 -544.895502652403 -222.99684227884225 10.9471 0.1144 14285 +14287 2 -545.1461531069815 -221.89159104513132 11.2645 0.1144 14286 +14288 2 -545.6575692323365 -221.03034316169308 11.6973 0.1144 14287 +14289 2 -546.3864037694507 -220.27872800251274 12.9343 0.1144 14288 +14290 2 -550.7778315096753 -257.12508416770754 13.6049 0.1144 14251 +14291 2 -551.7430258739244 -256.6563122197181 13.9419 0.1144 14290 +14292 2 -552.7107209200324 -256.14144204410286 14.3294 0.1144 14291 +14293 2 -553.3246978806723 -255.40090014670386 14.8143 0.1144 14292 +14294 2 -553.4887968784062 -254.29631623457095 15.212 0.1144 14293 +14295 2 -553.9989792178542 -253.28134041687122 15.4967 0.1144 14294 +14296 2 -554.9498985630685 -252.6733796624656 15.7083 0.1144 14295 +14297 2 -554.9959527303787 -252.291637585045 16.353 0.1144 14296 +14298 2 -554.8096956340835 -251.24691933399376 16.8744 0.1144 14297 +14299 2 -554.5531547545869 -250.1333230035638 17.0561 0.1144 14298 +14300 2 -554.0552873779122 -249.1502485937437 17.3156 0.1144 14299 +14301 2 -553.2262077373695 -248.3711178924891 17.5704 0.1144 14300 +14302 2 -552.620686671084 -247.40323305518436 17.8186 0.1144 14301 +14303 2 -551.6723654814892 -246.77022412841825 18.0679 0.1144 14302 +14304 2 -550.9631752780078 -245.87325734236313 18.6641 0.1144 14303 +14305 2 -550.2377315190308 -245.0053186794605 19.0144 0.1144 14304 +14306 2 -549.6266158829628 -244.04145264657353 19.3422 0.1144 14305 +14307 2 -549.0988264616973 -243.0300312572406 19.6763 0.1144 14306 +14308 2 -548.6989867768447 -241.96867305831952 20.0348 0.1144 14307 +14309 2 -548.0795155354584 -241.14550408958016 20.516 0.1144 14308 +14310 2 -547.1152627815555 -240.75924261519953 21.073 0.1144 14309 +14311 2 -546.1457783654558 -240.16988867490576 21.5445 0.1144 14310 +14312 2 -545.2160526170745 -239.5038260105889 21.9291 0.1144 14311 +14313 2 -544.430780447351 -238.67302669700126 22.2379 0.1144 14312 +14314 2 -544.3311191268313 -237.57269889984616 22.5653 0.1144 14313 +14315 2 -544.7417934569345 -236.53248311233176 22.9065 0.1144 14314 +14316 2 -544.9563289021951 -236.4317450722136 23.0569 0.1144 14315 +14317 2 -545.9073729936475 -235.79797512490356 22.8481 0.1144 14316 +14318 2 -546.7680137224181 -235.0457873917005 22.7747 0.1144 14317 +14319 2 -547.3621759782857 -234.0763130425285 22.6869 0.1144 14318 +14320 2 -547.3659464278869 -233.05221594082877 22.4261 0.1144 14319 +14321 2 -547.763745130984 -231.98121398386778 22.2062 0.1144 14320 +14322 2 -548.4928505868893 -231.10019856733453 22.0264 0.1144 14321 +14323 2 -549.3002267101208 -230.2897043010775 21.8832 0.1144 14322 +14324 2 -549.9501774420887 -229.35513648330587 21.7353 0.1144 14323 +14325 2 -550.6049296796498 -228.42383141652655 21.5939 0.1144 14324 +14326 2 -551.5502682771428 -227.7795136097807 21.5075 0.1144 14325 +14327 2 -552.4956777332022 -227.1351252405547 21.4437 0.1144 14326 +14328 2 -553.4401695809341 -226.4899571310145 21.4007 0.1144 14327 +14329 2 -554.3855790369935 -225.84556876178848 21.3699 0.1144 14328 +14330 2 -544.1752048650895 -236.69308326049818 23.1913 0.1144 14315 +14331 2 -543.1469235924216 -237.1342166125364 23.5397 0.1144 14330 +14332 2 -542.9931418595585 -237.9379475305915 23.8614 0.1144 14331 +14333 2 -542.1656967875713 -238.67471909141898 24.1957 0.1144 14332 +14334 2 -541.1696348301953 -239.19525745414376 24.5425 0.1144 14333 +14335 2 -540.4003095549122 -240.00173015722208 24.9109 0.1144 14334 +14336 2 -539.7860785523894 -240.8636113123357 25.4113 0.1144 14335 +14337 2 -538.8036473355871 -241.08804124405685 25.944 0.1144 14336 +14338 2 -537.7076639435855 -241.00400491586046 26.5083 0.1144 14337 +14339 2 -536.6628028334435 -240.88698294991875 27.1321 0.1144 14338 +14340 2 -535.6452990939628 -240.4359095743549 27.6565 0.1144 14339 +14341 2 -534.8007622190607 -239.67696980933331 28.0594 0.1144 14340 +14342 2 -533.8750685989723 -239.010137767716 28.3618 0.1144 14341 +14343 2 -532.9907904314467 -238.28583381740407 28.6012 0.1144 14342 +14344 2 -532.276541127456 -237.50864059062664 28.9394 0.1144 14343 +14345 2 -531.4610359287399 -236.76425732854517 29.3166 0.1144 14344 +14346 2 -530.3786287974677 -236.41013404186214 29.6377 0.1144 14345 +14347 2 -529.2448579660415 -236.27185410186007 29.9211 0.1144 14346 +14348 2 -528.1569897009216 -236.5672690942777 30.2126 0.1144 14347 +14349 2 -527.0691887413346 -236.8643105767706 30.4928 0.1144 14348 +14350 2 -525.9467625321523 -237.08279054139092 30.6858 0.1144 14349 +14351 2 -524.8036338064528 -237.12487434446038 30.9299 0.1144 14350 +14352 2 -543.0467781145962 -236.6704267212374 23.6191 0.1144 14331 +14353 2 -542.6339982559654 -235.60911214096035 23.6339 0.1144 14352 +14354 2 -541.9621099530737 -234.69433361124 23.6398 0.1144 14353 +14355 2 -541.0924215441183 -233.95888789514075 23.6481 0.1144 14354 +14356 2 -540.1197754363757 -233.35983995123883 23.6596 0.1144 14355 +14357 2 -539.2006076143581 -232.68326347738872 23.6754 0.1144 14356 +14358 2 -538.3455364999814 -231.92352383819744 23.6983 0.1144 14357 +14359 2 -537.68816739318 -230.99753268412354 23.7307 0.1144 14358 +14360 2 -537.657315850133 -229.89331843304194 23.7751 0.1144 14359 +14361 2 -538.2288474816473 -228.92535234160147 23.8332 0.1144 14360 +14362 2 -538.9748206272409 -228.0597164908806 23.9078 0.1144 14361 +14363 2 -539.408091827881 -227.0341144449115 24.0673 0.1144 14362 +14364 2 -539.6693574474281 -225.9247842073165 24.2388 0.1144 14363 +14365 2 -539.6320715969184 -224.78661528516483 24.4246 0.1144 14364 +14366 2 -539.1723566257281 -223.75101189328961 24.6183 0.1144 14365 +14367 2 -538.3999673911778 -222.91373415540886 24.814 0.1144 14366 +14368 2 -537.4911682025134 -222.28328285302067 25.1 0.1144 14367 +14369 2 -536.784098896397 -221.555390109309 25.5291 0.1144 14368 +14370 2 -536.5454343073377 -220.4482658913781 26.4312 0.1144 14369 +14371 2 -551.6975444010502 -247.10516334978496 18.4583 0.1144 14303 +14372 2 -552.3614163193204 -247.96484135702505 18.9165 0.1144 14371 +14373 2 -552.7687101777856 -248.94454415014988 19.3376 0.1144 14372 +14374 2 -553.2367969874307 -249.4939573813668 19.9013 0.1144 14373 +14375 2 -554.203590601833 -249.03812886410293 20.4382 0.1144 14374 +14376 2 -554.8380740325139 -248.1285602981381 20.8865 0.1144 14375 +14377 2 -555.1962261905426 -247.0469394210747 21.2073 0.1144 14376 +14378 2 -555.5439250345903 -245.95963979178762 21.4435 0.1144 14377 +14379 2 -556.2196406405319 -245.08013894477997 21.6282 0.1144 14378 +14380 2 -557.1641120583222 -244.44472888743357 21.7772 0.1144 14379 +14381 2 -558.1925826240006 -243.94695655440032 21.932 0.1144 14380 +14382 2 -558.9924942106056 -243.2230674305596 22.1602 0.1144 14381 +14383 2 -558.8754238610018 -242.33214867262276 22.567 0.1144 14382 +14384 2 -559.2357410332258 -241.39853010200605 23.029 0.1144 14383 +14385 2 -560.1424149446639 -240.7136847484277 23.4294 0.1144 14384 +14386 2 -560.1125297652513 -240.2962161315815 22.5893 0.1144 14385 +14387 2 -559.702199459568 -239.24699823226896 22.6959 0.1144 14386 +14388 2 -559.2861535929975 -238.1920407890943 22.7592 0.1144 14387 +14389 2 -558.8774631012645 -237.13639163716599 22.8647 0.1144 14388 +14390 2 -558.4833057216689 -236.06288307170857 22.9524 0.1144 14389 +14391 2 -558.0640273048894 -234.99830218740587 23.0246 0.1144 14390 +14392 2 -557.0661926523295 -234.44042592321208 23.0847 0.1144 14391 +14393 2 -556.0006968293898 -234.11462237611974 23.1355 0.1144 14392 +14394 2 -554.9010059134582 -233.9100870260754 23.1771 0.1144 14393 +14395 2 -553.847504917861 -233.63048276595836 23.2176 0.1144 14394 +14396 2 -552.7758628227291 -233.5384363649346 23.2936 0.1144 14395 +14397 2 -551.7601375594842 -233.04847575467505 23.4188 0.1144 14396 +14398 2 -550.9471632434102 -232.24356931824653 23.5243 0.1144 14397 +14399 2 -550.528708185589 -231.1910109993949 23.6145 0.1144 14398 +14400 2 -550.1079414428332 -230.12805334822033 23.6933 0.1144 14399 +14401 2 -549.4667180221973 -229.19078226426006 23.7643 0.1144 14400 +14402 2 -548.8912173010913 -228.20429261910073 23.8308 0.1144 14401 +14403 2 -548.2914357786678 -227.23069222090876 23.9034 0.1144 14402 +14404 2 -548.3115616373868 -226.12891815613378 24.0753 0.1144 14403 +14405 2 -548.5830708479627 -225.09166370395135 24.2409 0.1144 14404 +14406 2 -549.5461710565826 -224.47481888703507 24.4023 0.1144 14405 +14407 2 -550.3299911407804 -223.73632964161018 24.5622 0.1144 14406 +14408 2 -550.7313784351768 -222.87640703468728 24.8507 0.1144 14407 +14409 2 -551.547995286737 -223.46133969555328 25.1317 0.1144 14408 +14410 2 -551.8199867927125 -224.52412728518593 25.4089 0.1144 14409 +14411 2 -552.1663791868959 -225.6144357366123 25.6173 0.1144 14410 +14412 2 -552.8156063685651 -226.54528889183175 25.8686 0.1144 14411 +14413 2 -560.8813945136028 -240.52028214583248 23.7699 0.1144 14385 +14414 2 -561.9547984666774 -240.14231732799382 24.079 0.1144 14413 +14415 2 -562.9404040552258 -239.5837853559257 24.379 0.1144 14414 +14416 2 -563.8838719855881 -239.0899362854823 24.7473 0.1144 14415 +14417 2 -564.9271097170166 -238.83402591890038 25.1798 0.1144 14416 +14418 2 -565.928698327426 -239.15248316171014 25.567 0.1144 14417 +14419 2 -566.9339163890181 -239.66250365017035 25.9148 0.1144 14418 +14420 2 -568.0147981460792 -239.59688423800864 26.2141 0.1144 14419 +14421 2 -569.1108087780029 -239.66790982994652 26.4877 0.1144 14420 +14422 2 -570.2406286087307 -239.7682097805663 26.6933 0.1144 14421 +14423 2 -571.3752497429514 -239.90564297080724 26.8272 0.1144 14422 +14424 2 -572.5001153816386 -240.10938249790158 26.9147 0.1144 14423 +14425 2 -573.6272588574582 -240.30591428901286 26.9648 0.1144 14424 +14426 2 -574.7109966936966 -240.05822046126312 26.9878 0.1144 14425 +14427 2 -575.796520516438 -239.70050431644896 26.9932 0.1144 14426 +14428 2 -576.9078155249473 -239.42861436800948 26.9934 0.1144 14427 +14429 2 -578.0117417407582 -239.13005100782394 26.9934 0.1144 14428 +14430 2 -579.1357402562578 -238.93738378914136 26.9934 0.1144 14429 +14431 2 -580.2590031482735 -238.7245624428892 26.9934 0.1144 14430 +14432 2 -581.3918211795115 -238.5749058757029 26.9934 0.1144 14431 +14433 2 -582.4596483230549 -238.93550403364586 26.9934 0.1144 14432 +14434 2 -583.5936961829661 -239.00901343053445 26.9934 0.1144 14433 +14435 2 -584.7004589313558 -239.28073887795685 26.9934 0.1144 14434 +14436 2 -585.7836790585725 -239.65183446671116 26.9934 0.1144 14435 +14437 2 -586.9209498059655 -239.6720346430437 26.9934 0.1144 14436 +14438 2 -588.0025120628943 -239.31515873409623 26.9934 0.1144 14437 +14439 2 -589.1415040479183 -239.29003687008404 26.9934 0.1144 14438 +14440 2 -590.2814884570694 -239.19618615409283 26.9934 0.1144 14439 +14441 2 -591.416190516784 -239.32874046628004 26.9934 0.1144 14440 +14442 2 -592.4692819313046 -239.77020096582984 26.9934 0.1144 14441 +14443 2 -593.5998164573882 -239.9344250058882 26.9934 0.1144 14442 +14444 2 -594.7246047236149 -240.14134635848083 26.9934 0.1144 14443 +14445 2 -595.8633862854 -240.25050392596157 26.9934 0.1144 14444 +14446 2 -596.8248431270363 -239.64178741421662 26.9934 0.1144 14445 +14447 2 -555.4685694455832 -252.1972381649762 15.8584 0.1144 14296 +14448 2 -556.266898456843 -251.4862150994005 15.9651 0.1144 14447 +14449 2 -557.3183224323345 -251.1705005071473 16.0515 0.1144 14448 +14450 2 -558.082127751535 -250.3324085048223 16.1723 0.1144 14449 +14451 2 -558.80456904317 -249.49345208155546 16.3849 0.1144 14450 +14452 2 -559.7443093157469 -248.88872062041168 16.6468 0.1144 14451 +14453 2 -560.7670103388801 -248.377218306358 16.8795 0.1144 14452 +14454 2 -561.7801388476963 -247.844624122552 17.0862 0.1144 14453 +14455 2 -562.8082782011315 -247.43750238410286 17.3206 0.1144 14454 +14456 2 -563.9014426752203 -247.31435006950767 17.6056 0.1144 14455 +14457 2 -565.0346339205429 -247.35794699054674 17.8703 0.1144 14456 +14458 2 -566.1562538872465 -247.5245565349669 18.1152 0.1144 14457 +14459 2 -567.2845826332372 -247.5940234405488 18.3066 0.1144 14458 +14460 2 -568.4174815899692 -247.43948799530872 18.4362 0.1144 14459 +14461 2 -569.4940772333696 -247.09066272298568 18.5098 0.1144 14460 +14462 2 -570.4643508319834 -246.49250058457105 18.5429 0.1144 14461 +14463 2 -571.3040244372401 -245.72407617278068 18.5564 0.1144 14462 +14464 2 -571.99599034173 -244.81710283412977 18.5592 0.1144 14463 +14465 2 -572.6054883426655 -243.85169111012002 18.5456 0.1144 14464 +14466 2 -573.4764936535696 -243.18133751060944 18.5508 0.1144 14465 +14467 2 -574.1246689641487 -242.31797178465317 18.5738 0.1144 14466 +14468 2 -574.4496832021853 -241.22418997593925 18.6018 0.1144 14467 +14469 2 -574.9089390666786 -240.1824495519716 18.6376 0.1144 14468 +14470 2 -575.6299028935376 -239.3061547155376 18.6835 0.1144 14469 +14471 2 -576.4777045078794 -238.53951509177713 18.7412 0.1144 14470 +14472 2 -577.3011653235378 -237.746873631169 18.8106 0.1144 14471 +14473 2 -578.114179635196 -236.94530073427242 18.92 0.1144 14472 +14474 2 -579.1207785908076 -236.4580185238835 19.0939 0.1144 14473 +14475 2 -580.171694040862 -236.01367986155836 19.2801 0.1144 14474 +14476 2 -581.1678406788657 -235.45269507959537 19.4661 0.1144 14475 +14477 2 -582.264966422681 -235.32884395017985 19.7196 0.1144 14476 +14478 2 -583.3352328126731 -235.30117403053114 20.0852 0.1144 14477 +14479 2 -584.4504009512339 -235.10445780664745 20.4146 0.1144 14478 +14480 2 -585.5483401326653 -235.36888156480418 20.6772 0.1144 14479 +14481 2 -586.6129786407297 -235.7326550343511 20.9531 0.1144 14480 +14482 2 -587.7241253616972 -235.86933196906634 21.0909 0.1144 14481 +14483 2 -588.3665758147746 -236.55826917617648 21.4122 0.1144 14482 +14484 2 -589.433792875345 -236.83875068292403 21.5932 0.1144 14483 +14485 2 -590.571323976415 -236.76837082715267 21.7283 0.1144 14484 +14486 2 -591.6961256230315 -236.56361373748612 21.8217 0.1144 14485 +14487 2 -592.800959380242 -236.27063843318862 21.8887 0.1144 14486 +14488 2 -593.9257436517639 -236.10795425283564 21.9183 0.1144 14487 +14489 2 -595.0547467314136 -236.22684944256852 21.9117 0.1144 14488 +14490 2 -596.1833395862147 -236.17016877486216 21.8922 0.1144 14489 +14491 2 -597.2327239749918 -236.45711834288895 21.9157 0.1144 14490 +14492 2 -597.8926141935939 -237.32725321714318 21.9188 0.1144 14491 +14493 2 -598.4502822429065 -238.32021092358175 21.8478 0.1144 14492 +14494 2 -599.0251081321671 -239.29128419426522 21.67 0.1144 14493 +14495 2 -599.5981696633394 -240.2607274218399 21.4072 0.1144 14494 +14496 2 -600.1713017569917 -241.23024150798082 21.0864 0.1144 14495 +14497 2 -600.7459894821532 -242.199758851069 20.7339 0.1144 14496 +14498 2 -601.3823642255185 -243.12252406281405 20.3828 0.1144 14497 +14499 2 -602.206770274583 -243.09426868693905 20.095 0.1144 14498 +14500 2 -603.242096435873 -242.73319474749107 19.901 0.1144 14499 +14501 2 -604.3645941473934 -242.85207631726288 19.7818 0.1144 14500 +14502 2 -605.4511042655245 -243.20535966416546 19.7206 0.1144 14501 +14503 2 -606.4936072568122 -243.67190034101625 19.7042 0.1144 14502 +14504 2 -607.2790787864739 -244.44125235803503 19.685 0.1144 14503 +14505 2 -607.6692549645877 -245.49120588083142 19.6654 0.1144 14504 +14506 2 -608.0763053462842 -246.55342770642184 19.6877 0.1144 14505 +14507 2 -609.0769651394803 -246.57249333729405 19.8105 0.1144 14506 +14508 2 -610.1880335481293 -246.37506142168175 20.0212 0.1144 14507 +14509 2 -611.2991055098115 -246.17593245351398 20.2922 0.1144 14508 +14510 2 -612.4093980272656 -245.97757967262712 20.596 0.1144 14509 +14511 2 -613.5204664359145 -245.78014775701493 20.899 0.1144 14510 +14512 2 -614.6331444577305 -245.59070953550807 21.1688 0.1144 14511 +14513 2 -615.7671451459643 -245.65297581117372 21.3292 0.1144 14512 +14514 2 -616.8822729228282 -245.44176378200248 21.3762 0.1144 14513 +14515 2 -618.0206001429344 -245.39641722794065 21.3158 0.1144 14514 +14516 2 -619.0372535796209 -245.84833735326558 21.1144 0.1144 14515 +14517 2 -620.1066426664675 -246.23969799376627 20.8431 0.1144 14516 +14518 2 -620.9003276801145 -246.93623504885542 20.4167 0.1144 14517 +14519 2 -621.3351011362895 -247.92879403541772 19.9088 0.1144 14518 +14520 2 -621.899294687587 -248.91214873066988 19.4292 0.1144 14519 +14521 2 -622.9321609138716 -249.3882859048126 19.033 0.1144 14520 +14522 2 -623.5335755532944 -249.54807874410076 18.6509 0.1144 14521 +14523 2 -624.5967569325388 -249.83102668070418 18.2387 0.1144 14522 +14524 2 -625.6483842626734 -249.82347032482787 17.8561 0.1144 14523 +14525 2 -626.6792503996413 -249.3298042356008 17.5539 0.1144 14524 +14526 2 -627.7108221614101 -248.8368467320357 17.3083 0.1144 14525 +14527 2 -628.7416141828646 -248.34480683679786 17.1097 0.1144 14526 +14528 2 -629.7732565071137 -247.85192019179905 16.9563 0.1144 14527 +14529 2 -630.8048282688826 -247.35896268823396 16.8357 0.1144 14528 +14530 2 -631.8364705931315 -246.8660760432351 16.729 0.1144 14529 +14531 2 -632.8672661676194 -246.3723390954418 16.6258 0.1144 14530 +14532 2 -633.8980581890738 -245.880299200204 16.5267 0.1144 14531 +14533 2 -634.9296299508427 -245.3873416966389 16.432 0.1144 14532 +14534 2 -635.9298591457638 -244.83527502708935 16.3514 0.1144 14533 +14535 2 -636.9606411002906 -244.34804344742523 16.2871 0.1144 14534 +14536 2 -637.963248989593 -243.8081440213202 16.2324 0.1144 14535 +14537 2 -638.8585860286255 -243.10057675488085 16.1792 0.1144 14536 +14538 2 -639.623184115929 -242.25534461819197 16.118 0.1144 14537 +14539 2 -640.3256068874332 -241.3523529792092 16.0392 0.1144 14538 +14540 2 -641.0159566648615 -240.44049720947115 15.9339 0.1144 14539 +14541 2 -641.5745281908422 -239.4483208791934 15.7974 0.1144 14540 +14542 2 -641.7766339196942 -238.3607871397788 15.5727 0.1144 14541 +14543 2 -641.685907588496 -237.24831578606788 15.2513 0.1144 14542 +14544 2 -641.7505155477792 -236.14415997206456 14.8519 0.1144 14543 +14545 2 -642.3760231292554 -235.2662510670431 14.4036 0.1144 14544 +14546 2 -643.1293282588836 -234.41109577022533 13.994 0.1144 14545 +14547 2 -643.8107803538403 -233.49356450521074 13.624 0.1144 14546 +14548 2 -644.4507464337541 -232.63343429032474 13.1722 0.1144 14547 +14549 2 -645.1790452055089 -231.76620579733097 12.7751 0.1144 14548 +14550 2 -645.8400318924081 -230.9643146078657 12.2818 0.1144 14549 +14551 2 -646.8625802290942 -230.55951462127885 11.7944 0.1144 14550 +14552 2 -647.9601193091198 -230.23823971124622 11.4023 0.1144 14551 +14553 2 -649.1008831624993 -230.143612807974 11.0921 0.1144 14552 +14554 2 -650.221272896329 -230.1547973655772 10.769 0.1144 14553 +14555 2 -650.9735960539143 -230.140179685842 10.4901 0.1144 14554 +14556 2 -652.1150577257413 -230.1175378716467 10.2359 0.1144 14555 +14557 2 -653.2572955848492 -230.09567550167966 9.9709 0.1144 14556 +14558 2 -654.3995334439571 -230.07381313171263 9.6727 0.1144 14557 +14559 2 -655.5409954118702 -230.05102989647108 9.3335 0.1144 14558 +14560 2 -656.6833038334581 -230.02923838507022 8.9241 0.1144 14559 +14561 2 -657.8246949428051 -230.00652571230884 8.4545 0.1144 14560 +14562 2 -658.8431165492283 -230.01919384438176 7.7971 0.1144 14561 +14563 2 -659.7579100804392 -230.04939343468791 6.9514 0.1144 14562 +14564 2 -660.6046753368794 -230.18304196810956 5.9756 0.1144 14563 +14565 2 -660.4602151312974 -231.16151887075122 3.999 0.1144 14564 +14566 2 -622.9326356289772 -249.93834646933757 19.1204 0.1144 14521 +14567 2 -622.8921295410148 -251.08130228074847 19.0694 0.1144 14566 +14568 2 -622.7506674794282 -252.21513716076046 19.0483 0.1144 14567 +14569 2 -622.554206250797 -253.34235149514618 19.02 0.1144 14568 +14570 2 -622.6302989086948 -254.4531658619123 18.984 0.1144 14569 +14571 2 -623.1215863035404 -255.47186475543575 18.9318 0.1144 14570 +14572 2 -623.5498470834193 -256.50167471577674 18.8331 0.1144 14571 +14573 2 -623.4423535149642 -257.5886994315679 18.7152 0.1144 14572 +14574 2 -622.9516603360678 -258.61658542436294 18.6153 0.1144 14573 +14575 2 -622.2839142391565 -259.5398022515817 18.5292 0.1144 14574 +14576 2 -621.6824840478398 -260.50197816843524 18.4528 0.1144 14575 +14577 2 -621.3494256870731 -261.5876821006025 18.3821 0.1144 14576 +14578 2 -621.1690829046852 -262.71662724136024 18.3114 0.1144 14577 +14579 2 -620.9103041449355 -263.82023510808745 18.1975 0.1144 14578 +14580 2 -620.39858660392 -264.8254496166462 18.0349 0.1144 14579 +14581 2 -619.7131124475982 -265.7389419433873 17.8582 0.1144 14580 +14582 2 -619.0082199892911 -266.63945353255303 17.6694 0.1144 14581 +14583 2 -618.3042451393112 -267.5407448620331 17.4544 0.1144 14582 +14584 2 -617.6881812746941 -268.5012637919418 17.1973 0.1144 14583 +14585 2 -617.3066528019007 -269.5690471147409 16.8486 0.1144 14584 +14586 2 -617.3309616699684 -270.69106679769357 16.4245 0.1144 14585 +14587 2 -616.9636064756176 -271.1360587764792 15.7263 0.1144 14586 +14588 2 -616.1268705753189 -271.6496474963236 14.8762 0.1144 14587 +14589 2 -615.46689304387 -272.0033048276241 13.8324 0.1144 14588 +14590 2 -614.7243084483948 -272.36499166532076 11.2473 0.1144 14589 +14591 2 -588.3650430433261 -235.39903256934784 21.3454 0.1144 14482 +14592 2 -589.399003566404 -234.9134339936535 20.9154 0.1144 14591 +14593 2 -590.3250552160303 -234.26094406099205 20.7276 0.1144 14592 +14594 2 -591.2517416318912 -233.60923327647268 20.4987 0.1144 14593 +14595 2 -592.1785727257455 -232.95596715653014 20.2493 0.1144 14594 +14596 2 -593.1044829543255 -232.3034769277826 19.6826 0.1144 14595 +14597 2 -549.4585722393065 -258.98611823981537 12.1341 0.1144 14249 +14598 2 -550.5034061095263 -259.11615094201557 11.1348 0.1144 14597 +14599 2 -551.6054682660867 -258.9986741226968 10.7194 0.1144 14598 +14600 2 -552.5044987109018 -258.4521231559098 10.2706 0.1144 14599 +14601 2 -553.1091578993942 -257.50126773273985 9.8264 0.1144 14600 +14602 2 -553.6674275115281 -256.6870699372578 9.2759 0.1144 14601 +14603 2 -554.5751525237429 -256.2432093035003 8.6683 0.1144 14602 +14604 2 -554.2849351436195 -255.37469692461656 8.1511 0.1144 14603 +14605 2 -553.8940067611996 -254.3125088528427 7.6934 0.1144 14604 +14606 2 -553.7500052593482 -253.18055119132683 7.3372 0.1144 14605 +14607 2 -553.2132912117748 -252.17632362192958 7.0673 0.1144 14606 +14608 2 -553.3666936018158 -251.95906755934496 6.8039 0.1144 14607 +14609 2 -553.4107111107171 -250.99650243484157 6.5061 0.1144 14608 +14610 2 -552.9688824968918 -249.96256283989166 6.2252 0.1144 14609 +14611 2 -553.2472740448152 -249.08300795471123 5.9764 0.1144 14610 +14612 2 -553.67011867321 -248.07272832993513 5.7875 0.1144 14611 +14613 2 -553.9684229869234 -246.9699810350303 5.6547 0.1144 14612 +14614 2 -554.5448435634194 -245.99728755351006 5.5728 0.1144 14613 +14615 2 -554.6498333951687 -244.924046208225 5.526 0.1144 14614 +14616 2 -554.7686174586244 -243.81434695335048 5.4378 0.1144 14615 +14617 2 -554.7977221274093 -242.67949901716918 5.3666 0.1144 14616 +14618 2 -554.5362988168255 -241.56751881380072 5.3253 0.1144 14617 +14619 2 -555.3186416383476 -240.7578206665799 5.3104 0.1144 14618 +14620 2 -555.5199684211577 -239.63705120477104 5.3239 0.1144 14619 +14621 2 -556.0405735777173 -238.64232050706252 5.6235 0.1144 14620 +14622 2 -552.824667093093 -251.97242846657096 7.3108 0.1144 14607 +14623 2 -551.7731313100815 -251.53097122396827 7.2414 0.1144 14622 +14624 2 -550.7054057240739 -251.12186564714878 7.2098 0.1144 14623 +14625 2 -549.6016796250027 -250.88578481728518 7.1645 0.1144 14624 +14626 2 -548.4668891295269 -250.8292444655206 7.1359 0.1144 14625 +14627 2 -547.372900948794 -250.6028006967461 7.0611 0.1144 14626 +14628 2 -546.4252036642335 -250.00953256441736 6.9288 0.1144 14627 +14629 2 -545.540941818915 -249.71649401931845 6.6192 0.1144 14628 +14630 2 -546.299686547345 -250.48494154978465 6.3331 0.1144 14629 +14631 2 -547.0802076400998 -251.32216560209372 6.0843 0.1144 14630 +14632 2 -547.511552443075 -252.3649928125876 5.816 0.1144 14631 +14633 2 -547.5675078503114 -253.46848180319915 5.5087 0.1144 14632 +14634 2 -547.7423423972007 -254.598948379978 5.0613 0.1144 14633 +14635 2 -530.831049539273 -249.06923961699593 10.2238 0.1144 13746 +14636 2 -531.8906636970175 -249.46864082719344 10.5977 0.1144 14635 +14637 2 -532.9341452903711 -249.90682850882322 10.7703 0.1144 14636 +14638 2 -533.7502815001883 -250.68755846023103 10.9398 0.1144 14637 +14639 2 -534.0465331754392 -251.78108534371907 11.0705 0.1144 14638 +14640 2 -534.0020017691646 -252.9215578483658 11.1626 0.1144 14639 +14641 2 -533.9592347209784 -254.0636603961212 11.2198 0.1144 14640 +14642 2 -534.0984210972755 -255.19886067477398 11.2457 0.1144 14641 +14643 2 -534.3686848517259 -256.31008156776977 11.2542 0.1144 14642 +14644 2 -534.5249173495214 -257.44298407753513 11.2575 0.1144 14643 +14645 2 -534.4108841609341 -258.5801290823171 11.2615 0.1144 14644 +14646 2 -534.5864275895715 -259.70974861324873 11.2671 0.1144 14645 +14647 2 -534.7936611760216 -260.8337776256176 11.275 0.1144 14646 +14648 2 -534.7216199712539 -261.97581888354813 11.286 0.1144 14647 +14649 2 -534.6327615054223 -263.11216806538005 11.3012 0.1144 14648 +14650 2 -534.224435372831 -264.1791174641067 11.3229 0.1144 14649 +14651 2 -534.1193134866763 -265.3154325960359 11.3539 0.1144 14650 +14652 2 -534.300586096162 -266.44428630270045 11.3961 0.1144 14651 +14653 2 -534.65419599717 -267.53220569673164 11.4517 0.1144 14652 +14654 2 -535.0451075026814 -268.60245476814384 11.5284 0.1144 14653 +14655 2 -535.1179742182503 -269.7342634983462 11.666 0.1144 14654 +14656 2 -534.9295941231129 -270.85187807849263 11.8418 0.1144 14655 +14657 2 -534.5341945443388 -271.9252892267044 12.0117 0.1144 14656 +14658 2 -534.3118738962789 -273.00882083650924 12.2151 0.1144 14657 +14659 2 -534.4171297865812 -274.10512982924655 12.5043 0.1144 14658 +14660 2 -534.4690525673385 -275.24340010683375 12.7771 0.1144 14659 +14661 2 -534.7888060978651 -276.2908020209602 13.0094 0.1144 14660 +14662 2 -535.2808628700112 -277.3135330427764 13.2124 0.1144 14661 +14663 2 -535.4557483437114 -278.4196751995938 13.4309 0.1144 14662 +14664 2 -535.2043355239134 -279.48377113231845 13.7011 0.1144 14663 +14665 2 -535.0128688490195 -280.5220416955172 14.0502 0.1144 14664 +14666 2 -535.1569918401619 -281.62974579563786 14.3716 0.1144 14665 +14667 2 -535.0729958736624 -282.740224992927 14.5354 0.1144 14666 +14668 2 -535.2210395707344 -283.8666049615686 14.6259 0.1144 14667 +14669 2 -535.5528587871696 -284.9601356001903 14.6632 0.1144 14668 +14670 2 -535.0128083847886 -285.9547548755355 14.6602 0.1144 14669 +14671 2 -534.3127847376077 -286.8601557057689 14.6213 0.1144 14670 +14672 2 -515.9310649409452 -217.49535584433343 12.9343 0.1144 13633 +14673 2 -515.1594213402916 -217.07873841362476 12.8697 0.1144 14672 +14674 2 -514.0891417720102 -217.48421628690383 12.8448 0.1144 14673 +14675 2 -513.1019233133475 -218.03631019637567 12.8141 0.1144 14674 +14676 2 -512.2396700105487 -218.78191844593601 12.7621 0.1144 14675 +14677 2 -511.41530520652407 -219.56727479810075 12.6723 0.1144 14676 +14678 2 -510.875426924159 -220.5134575131355 12.5756 0.1144 14677 +14679 2 -510.7484639248072 -221.64569639994147 12.5035 0.1144 14678 +14680 2 -510.84480150059585 -222.779958438225 12.4552 0.1144 14679 +14681 2 -510.94594709587227 -223.9143719644826 12.4296 0.1144 14680 +14682 2 -510.68890269552793 -225.00016433241106 12.4265 0.1144 14681 +14683 2 -510.1221320058097 -225.99076785818525 12.4424 0.1144 14682 +14684 2 -509.7349149159652 -227.03994232191013 12.4691 0.1144 14683 +14685 2 -509.9372970663839 -228.11700918389772 12.5018 0.1144 14684 +14686 2 -510.1647422211091 -229.21286688980305 12.5614 0.1144 14685 +14687 2 -509.92791925386723 -230.299550124323 12.6597 0.1144 14686 +14688 2 -509.25464639089284 -231.19440033635973 12.7557 0.1144 14687 +14689 2 -508.3641076005063 -231.90678598530064 12.8286 0.1144 14688 +14690 2 -507.4025562134151 -232.5268867432287 12.8796 0.1144 14689 +14691 2 -507.586990072872 -233.2941318680003 12.9106 0.1144 14690 +14692 2 -507.43865298210505 -234.2330025872704 12.9233 0.1144 14691 +14693 2 -506.47263555498375 -234.68961054876246 12.9233 0.1144 14692 +14694 2 -505.5167041543961 -234.2127859191861 12.9189 0.1144 14693 +14695 2 -504.6640422312702 -233.45064715567176 12.9128 0.1144 14694 +14696 2 -503.6271300546314 -233.01565521558751 12.9044 0.1144 14695 +14697 2 -502.4946844997204 -232.9874041065443 12.8923 0.1144 14696 +14698 2 -501.500961171115 -233.5054724863798 12.8748 0.1144 14697 +14699 2 -500.7113872228073 -234.32406505912516 12.8509 0.1144 14698 +14700 2 -500.17216995022625 -235.3260400053939 12.8207 0.1144 14699 +14701 2 -499.7097218972207 -236.37265279352104 12.7849 0.1144 14700 +14702 2 -499.57551139236136 -237.4878351958147 12.6944 0.1144 14701 +14703 2 -500.0821887160332 -238.48471666302967 12.5898 0.1144 14702 +14704 2 -500.68197023845664 -239.45831706122166 12.5054 0.1144 14703 +14705 2 -501.3255791634544 -240.40450270456185 12.4434 0.1144 14704 +14706 2 -501.6800494341844 -241.48676703325822 12.4018 0.1144 14705 +14707 2 -501.7472439114241 -242.62591781442305 12.379 0.1144 14706 +14708 2 -502.40703257249015 -243.54456010755385 12.3726 0.1144 14707 +14709 2 -502.8132966999781 -244.61081080448992 12.3721 0.1144 14708 +14710 2 -502.82066000771033 -245.75464465680375 12.3721 0.1144 14709 +14711 2 -502.9436502692173 -246.89143737562915 12.3721 0.1144 14710 +14712 2 -502.36647341327887 -216.91689677269466 13.5651 0.1144 13618 +14713 2 -503.3567784516981 -216.44414688017068 13.1477 0.1144 14712 +14714 2 -504.0769794151511 -215.56070865242557 12.9962 0.1144 14713 +14715 2 -504.354367033975 -214.45141216864712 12.8641 0.1144 14714 +14716 2 -505.34754878361343 -213.75295931971232 12.879 0.1144 14715 +14717 2 -506.4753485742254 -213.70356020741605 12.8564 0.1144 14716 +14718 2 -507.22517441992875 -212.92285613344487 12.8246 0.1144 14717 +14719 2 -507.8678672833753 -211.97618156778103 12.7818 0.1144 14718 +14720 2 -508.8027392430126 -211.33254895589437 12.7259 0.1144 14719 +14721 2 -509.9339378902419 -211.17956558913008 12.6467 0.1144 14720 +14722 2 -510.95176605102927 -210.6988829962393 12.4871 0.1144 14721 +14723 2 -512.0204294922494 -210.288522691873 12.339 0.1144 14722 +14724 2 -513.0858233724966 -209.8862165771646 12.1685 0.1144 14723 +14725 2 -514.0883972118963 -209.36258057138258 11.9764 0.1144 14724 +14726 2 -514.8837038940856 -208.54152512181471 11.8138 0.1144 14725 +14727 2 -515.8064761179114 -207.86802720575596 11.6735 0.1144 14726 +14728 2 -516.736343658984 -207.28427619200122 11.547 0.1144 14727 +14729 2 -517.0363213383639 -206.19284613383266 11.4149 0.1144 14728 +14730 2 -517.6877230894581 -205.27447413476511 11.2448 0.1144 14729 +14731 2 -518.4384393035667 -204.50756053736671 10.9407 0.1144 14730 +14732 2 -519.240237733924 -203.69302407588907 10.6509 0.1144 14731 +14733 2 -519.9740973216449 -202.8378987777542 10.3536 0.1144 14732 +14734 2 -520.52616298131 -201.8797207371905 9.9853 0.1144 14733 +14735 2 -521.2794444240495 -201.0358791240756 9.6151 0.1144 14734 +14736 2 -521.9308524869377 -200.14826635061863 9.2803 0.1144 14735 +14737 2 -522.1071154711691 -199.04285937561352 8.928 0.1144 14736 +14738 2 -522.4230730284928 -198.01934517347954 8.5709 0.1144 14737 +14739 2 -523.1763204213296 -197.19176698068767 8.2114 0.1144 14738 +14740 2 -523.7275050792307 -196.2828725462816 7.8833 0.1144 14739 +14741 2 -524.0355369482685 -195.1947120490859 7.6691 0.1144 14740 +14742 2 -524.5295231729265 -194.18132867155882 7.4678 0.1144 14741 +14743 2 -524.9126740845754 -193.14918700545743 7.2623 0.1144 14742 +14744 2 -524.7458153585105 -192.0931956345003 7.0243 0.1144 14743 +14745 2 -524.8538111406086 -191.10403576317057 6.7854 0.1144 14744 +14746 2 -525.1997345632676 -190.08793822569888 6.6951 0.1144 14745 +14747 2 -525.2044369414439 -188.99023309788018 6.6828 0.1144 14746 +14748 2 -525.1494465163124 -187.8648964801769 6.6123 0.1144 14747 +14749 2 -525.2286477871992 -186.74790184783083 6.462 0.1144 14748 +14750 2 -525.6442045483898 -185.706069933255 6.2971 0.1144 14749 +14751 2 -525.7548431336797 -184.60292973208155 6.1354 0.1144 14750 +14752 2 -526.0701933667913 -183.53175515691814 5.9678 0.1144 14751 +14753 2 -527.001609231206 -182.98527199385038 5.7511 0.1144 14752 +14754 2 -527.6651507837224 -182.11140252528875 5.4939 0.1144 14753 +14755 2 -528.2075534348352 -181.1078078989252 5.2822 0.1144 14754 +14756 2 -528.7436022057927 -180.09939163311284 5.0944 0.1144 14755 +14757 2 -529.2270037623513 -179.07552089170215 4.9017 0.1144 14756 +14758 2 -529.0919135629326 -177.94273335733348 4.7705 0.1144 14757 +14759 2 -529.0505517633858 -176.82626412733285 4.7569 0.1144 14758 +14760 2 -529.609183784919 -175.838966971195 4.7696 0.1144 14759 +14761 2 -529.7806152648741 -174.71085170329 4.767 0.1144 14760 +14762 2 -530.251110697557 -173.67076116020039 4.7448 0.1144 14761 +14763 2 -530.8986658582351 -172.73208709862254 4.6879 0.1144 14762 +14764 2 -531.5290999876289 -171.83149033064282 4.5283 0.1144 14763 +14765 2 -531.6810489149126 -170.72108269220658 4.2947 0.1144 14764 +14766 2 -531.7626795109056 -169.59207230439006 4.0902 0.1144 14765 +14767 2 -531.4834943870949 -168.4864895998208 3.9214 0.1144 14766 +14768 2 -531.036679227986 -167.43634678401398 3.7707 0.1144 14767 +14769 2 -530.7307599947766 -166.36712418663186 3.5989 0.1144 14768 +14770 2 -531.0071246926037 -165.34112292260005 3.4547 0.1144 14769 +14771 2 -531.8427658734814 -164.5736093091564 3.3393 0.1144 14770 +14772 2 -532.5217515385823 -163.65204236281573 3.2376 0.1144 14771 +14773 2 -533.2298193084933 -162.754719409129 3.142 0.1144 14772 +14774 2 -533.8406521546855 -161.9285401101794 2.9552 0.1144 14773 +14775 2 -534.3634222689254 -161.48712621409385 2.7856 0.1144 14774 +14776 2 -535.2673051461446 -160.91951357833776 2.7013 0.1144 14775 +14777 2 -536.2159536663075 -160.2816373872215 2.6267 0.1144 14776 +14778 2 -537.0458520463758 -159.5213949661742 2.5004 0.1144 14777 +14779 2 -538.0492156930176 -158.9920330364912 2.3929 0.1144 14778 +14780 2 -538.8097310213035 -158.17175327601785 2.3718 0.1144 14779 +14781 2 -539.4014704659592 -157.21118341929812 2.2828 0.1144 14780 +14782 2 -540.1748992262877 -156.36985886676396 2.1934 0.1144 14781 +14783 2 -540.7367975518465 -155.3760631524775 2.1182 0.1144 14782 +14784 2 -540.78928889841 -154.2501030339405 1.9974 0.1144 14783 +14785 2 -540.6128951669783 -153.1213302527699 1.877 0.1144 14784 +14786 2 -540.7034574953458 -151.98173193990672 1.687 0.1144 14785 +14787 2 -503.36186953933793 -214.82304097961182 12.7536 0.1144 14715 +14788 2 -502.5792518608348 -214.98721935606366 12.5058 0.1144 14787 +14789 2 -502.57675736422857 -213.8482747448175 12.3369 0.1144 14788 +14790 2 -502.2670841731695 -213.01847116881936 12.25 0.1144 14789 +14791 2 -501.6837845727881 -213.4265949566522 12.274 0.1144 14790 +14792 2 -502.0175949357607 -212.38699606209133 12.346 0.1144 14791 +14793 2 -502.64093354580746 -211.43052288043646 12.446 0.1144 14792 +14794 2 -503.40553873917764 -210.5818966386367 12.5707 0.1144 14793 +14795 2 -504.04327505602356 -209.63846439402352 12.6881 0.1144 14794 +14796 2 -503.8724146985352 -208.56867603259917 12.8473 0.1144 14795 +14797 2 -503.92062313187034 -207.563268917568 13.1613 0.1144 14796 +14798 2 -503.8307844103164 -206.43213176226388 13.3892 0.1144 14797 +14799 2 -503.6835302244004 -205.30016729076743 13.5218 0.1144 14798 +14800 2 -503.5572804688483 -204.16662044602614 13.5757 0.1144 14799 +14801 2 -503.5491377168878 -203.02356278099313 13.5883 0.1144 14800 +14802 2 -503.20762449684435 -201.93319383401436 13.5637 0.1144 14801 +14803 2 -502.7713768328406 -200.9017408027758 13.5939 0.1144 14802 +14804 2 -503.14485849416974 -201.41453988492287 14.1848 0.1144 14803 +14805 2 -503.82741033218065 -202.23458822400283 14.6877 0.1144 14804 +14806 2 -504.4142416138979 -203.21304055641264 14.8634 0.1144 14805 +14807 2 -505.0481529822542 -204.1640849439512 14.9978 0.1144 14806 +14808 2 -505.5118766909346 -205.21009122118267 15.0936 0.1144 14807 +14809 2 -506.06875493300527 -206.2087748515223 15.1541 0.1144 14808 +14810 2 -506.6184091543569 -207.21295880227547 15.1829 0.1144 14809 +14811 2 -507.1290611656161 -208.23650657516976 15.1838 0.1144 14810 +14812 2 -507.498877248342 -209.31802521345455 15.1838 0.1144 14811 +14813 2 -507.7351830747751 -210.43723604542225 15.1838 0.1144 14812 +14814 2 -508.28073430926776 -211.4422599359559 15.1838 0.1144 14813 +14815 2 -503.3769005878603 -200.28096535858785 13.6051 0.1144 14803 +14816 2 -503.17329545621976 -199.41652341121966 13.5171 0.1144 14815 +14817 2 -502.23682717473486 -198.86372538501791 13.3542 0.1144 14816 +14818 2 -501.41083816516846 -198.12822973848043 13.221 0.1144 14817 +14819 2 -501.20040863507234 -197.0446406314553 13.1172 0.1144 14818 +14820 2 -501.159880463512 -195.9015151627031 13.0435 0.1144 14819 +14821 2 -501.629606020708 -194.89140440099584 13.0132 0.1144 14820 +14822 2 -502.19059029097286 -193.89513189383953 13.0222 0.1144 14821 +14823 2 -502.38553950673906 -192.78085447628496 13.0523 0.1144 14822 +14824 2 -501.6381495239956 -191.95904403969098 13.0906 0.1144 14823 +14825 2 -500.9499400639893 -191.071808564094 13.202 0.1144 14824 +14826 2 -500.4360285586848 -190.0515066652838 13.2938 0.1144 14825 +14827 2 -499.735759724564 -189.14890169080212 13.3599 0.1144 14826 +14828 2 -498.68099799922356 -188.7284388116356 13.4007 0.1144 14827 +14829 2 -497.5388143238739 -188.7244211301321 13.4166 0.1144 14828 +14830 2 -496.5481763065254 -187.8026112752358 13.3719 0.1144 14829 +14831 2 -496.1393678785347 -186.76951863214725 13.3232 0.1144 14830 +14832 2 -496.36169859352236 -185.68117870676866 13.258 0.1144 14831 +14833 2 -497.16318574339186 -184.9815466973565 13.162 0.1144 14832 +14834 2 -498.2989928480704 -184.92403260376395 13.0045 0.1144 14833 +14835 2 -499.43565656733745 -184.8964309860209 12.812 0.1144 14834 +14836 2 -500.57878854998404 -184.85279155144227 12.6245 0.1144 14835 +14837 2 -501.5319279764949 -185.10955822301497 12.3411 0.1144 14836 +14838 2 -502.4077727245701 -185.6064384774719 11.9684 0.1144 14837 +14839 2 -503.5172995633425 -185.77380052228423 11.6788 0.1144 14838 +14840 2 -504.6356631473627 -185.57065630273198 11.4699 0.1144 14839 +14841 2 -505.7547315619112 -185.4023739995631 11.3274 0.1144 14840 +14842 2 -506.8968978621662 -185.44846459038024 11.2388 0.1144 14841 +14843 2 -508.0381737940161 -185.48076470462456 11.1961 0.1144 14842 +14844 2 -509.1661870627136 -185.3294010179551 11.1739 0.1144 14843 +14845 2 -510.2964875351845 -185.23390367803307 11.1456 0.1144 14844 +14846 2 -511.43356523443356 -185.34631037654506 11.1101 0.1144 14845 +14847 2 -512.5666103072035 -185.49349836203265 11.0517 0.1144 14846 +14848 2 -513.6898431440213 -185.6665459690492 10.951 0.1144 14847 +14849 2 -514.8187887829655 -185.8128768417619 10.8418 0.1144 14848 +14850 2 -515.959180160018 -185.8961576147192 10.7522 0.1144 14849 +14851 2 -517.1006453848782 -185.8718187479685 10.6793 0.1144 14850 +14852 2 -518.2270999672198 -185.68813694723215 10.6187 0.1144 14851 +14853 2 -519.3567026212431 -185.52065451823316 10.5657 0.1144 14852 +14854 2 -520.4990014740898 -185.46965941273086 10.5131 0.1144 14853 +14855 2 -521.6421637515056 -185.44532409901356 10.4503 0.1144 14854 +14856 2 -522.7826466191661 -185.48490576866803 10.3541 0.1144 14855 +14857 2 -523.9159258020636 -185.48650063895977 10.196 0.1144 14856 +14858 2 -525.0542162135064 -185.42496122705492 10.0087 0.1144 14857 +14859 2 -526.1132439751668 -185.732932102354 9.8167 0.1144 14858 +14860 2 -527.1843437345301 -186.11779092775888 9.6166 0.1144 14859 +14861 2 -528.2588899263886 -186.34256764266078 9.3183 0.1144 14860 +14862 2 -528.7067930514527 -187.2445735409551 8.8885 0.1144 14861 +14863 2 -529.550543672146 -188.00754217732228 8.5118 0.1144 14862 +14864 2 -530.4023822363135 -188.75765837538555 8.1294 0.1144 14863 +14865 2 -531.176421647828 -189.58355512403048 7.7626 0.1144 14864 +14866 2 -532.1800195311387 -190.12440214363406 7.4323 0.1144 14865 +14867 2 -533.1268465811495 -190.6942631682426 7.0577 0.1144 14866 +14868 2 -534.2340557192792 -190.82032523407517 6.6496 0.1144 14867 +14869 2 -535.3520364639587 -190.80003842737247 6.2136 0.1144 14868 +14870 2 -536.4386518947593 -191.06924681421415 5.7517 0.1144 14869 +14871 2 -537.5149528759649 -191.2664499781234 5.2654 0.1144 14870 +14872 2 -538.271223922887 -191.66281192582696 4.8506 0.1144 14871 +14873 2 -537.6575446227739 -192.2949547392898 4.4851 0.1144 14872 +14874 2 -537.5619529204532 -191.98652608230825 3.9971 0.1144 14873 +14875 2 -538.6230134023325 -192.10039997656818 3.4841 0.1144 14874 +14876 2 -539.0705606884067 -192.76707947732373 2.9775 0.1144 14875 +14877 2 -538.7943484749264 -193.72024890251757 2.5418 0.1144 14876 +14878 2 -538.2875811687173 -194.69146186441495 1.687 0.1144 14877 +14879 3 -483.50402422667236 -216.029653236406 19.8075 0.3295 1 +14880 3 -482.5199220178075 -215.4986051288795 19.531 0.3267 14879 +14881 3 -482.2451523033019 -214.5806982196613 19.2763 0.3254 14880 +14882 3 -482.4213752219224 -213.4606540183224 19.0326 0.324 14881 +14883 3 -481.7152713395825 -213.08221623302023 18.6551 0.3226 14882 +14884 3 -480.70186466032317 -213.37616077274268 18.1835 0.3212 14883 +14885 3 -479.6711770681951 -213.04152053691737 17.7026 0.3199 14884 +14886 3 -478.6521824460775 -212.52574362768684 17.2875 0.3185 14885 +14887 3 -477.5713377562951 -212.16837091388632 16.9208 0.3171 14886 +14888 3 -476.4415521775704 -212.01793705431467 16.6046 0.3157 14887 +14889 3 -475.3011066167597 -211.96053633282787 16.3419 0.3144 14888 +14890 3 -474.20883300926243 -212.06346721432067 16.0156 0.313 14889 +14891 3 -473.07908423920117 -211.9292262125919 15.7293 0.3116 14890 +14892 3 -471.99500048531524 -211.56534132068168 15.4698 0.3103 14891 +14893 3 -471.01246427097345 -211.02934673348236 15.1477 0.3089 14892 +14894 3 -470.45491465610496 -209.97982060852877 14.4843 0.3089 14893 +14895 3 -469.7991821063066 -209.04895383334824 14.1417 0.2831 14894 +14896 3 -469.91821985904414 -208.2233712369818 13.6846 0.2703 14895 +14897 3 -470.94723338521885 -208.61457663437483 13.3131 0.2574 14896 +14898 3 -470.7575788703507 -207.9767214039423 13.0328 0.2574 14897 +14899 3 -470.5140555370931 -206.85989962936983 12.8232 0.2567 14898 +14900 3 -470.3068151406624 -205.73912330106558 12.6476 0.2564 14899 +14901 3 -470.1950438153031 -204.64760900394097 12.4183 0.2561 14900 +14902 3 -470.1489006440187 -203.5182603918004 12.2349 0.2558 14901 +14903 3 -470.111625156523 -202.3751417330287 12.1051 0.2554 14902 +14904 3 -470.1027566459061 -201.24099211348133 12.0724 0.2551 14903 +14905 3 -469.98616714014554 -200.12040557637388 12.023 0.2548 14904 +14906 3 -469.91246729477666 -198.98124117524793 12.006 0.2544 14905 +14907 3 -470.11137126637504 -197.86937620589129 12.0729 0.2541 14906 +14908 3 -470.1542560487187 -196.73858763792498 12.1854 0.2538 14907 +14909 3 -470.01258962260465 -195.60585704607533 12.2747 0.2535 14908 +14910 3 -469.55607364990715 -194.56212860597608 12.3229 0.2531 14909 +14911 3 -469.1255420449769 -193.50240320892445 12.3383 0.2528 14910 +14912 3 -468.7192847274696 -192.43289982792385 12.3144 0.2525 14911 +14913 3 -468.2231080915562 -191.41906974552654 12.1921 0.2521 14912 +14914 3 -467.2960049559964 -191.05395787768978 12.0033 0.2518 14913 +14915 3 -467.2069524886512 -189.91879185104006 11.8364 0.2515 14914 +14916 3 -467.32183242699966 -188.7824971490525 11.69 0.2512 14915 +14917 3 -467.17772986579877 -187.665034996738 11.5562 0.2508 14916 +14918 3 -466.60462145903523 -186.68420722689405 11.4084 0.2505 14917 +14919 3 -465.89463463833124 -185.79621904880457 11.2412 0.2502 14918 +14920 3 -465.3150781020436 -184.8218124646487 11.0523 0.2498 14919 +14921 3 -464.9371064742244 -183.75166119563877 10.862 0.2495 14920 +14922 3 -464.59391287643354 -182.68709818461713 10.7151 0.2492 14921 +14923 3 -463.9211671646808 -181.77656050976876 10.5314 0.2489 14922 +14924 3 -463.15685935971055 -180.9295415966024 10.3466 0.2485 14923 +14925 3 -462.54728879003756 -180.0044990459116 10.1092 0.2482 14924 +14926 3 -462.2971822180036 -178.9248573865517 9.821 0.2479 14925 +14927 3 -462.19922851515344 -177.78571291718094 9.5739 0.2475 14926 +14928 3 -462.093214108751 -176.6464101498556 9.3539 0.2472 14927 +14929 3 -461.9855560392788 -175.51537710874783 9.1364 0.2469 14928 +14930 3 -461.80184699862025 -174.40193326266476 8.8905 0.2466 14929 +14931 3 -461.8204277909441 -173.2613357156936 8.665 0.2462 14930 +14932 3 -461.8541955991228 -172.1620650915383 8.401 0.2459 14931 +14933 3 -461.4486088601409 -171.17755753587304 8.0367 0.2456 14932 +14934 3 -461.1100501654488 -170.22960639248623 7.6998 0.2452 14933 +14935 3 -461.63954619449953 -169.24380387411878 7.3459 0.2449 14934 +14936 3 -461.94147966330934 -168.33276124591058 6.939 0.2446 14935 +14937 3 -461.44290014793927 -167.3520895134469 6.5498 0.2443 14936 +14938 3 -460.79524873163484 -166.41162298402716 6.2802 0.2439 14937 +14939 3 -460.181653341836 -165.45008521689698 6.0749 0.2436 14938 +14940 3 -459.62880367502487 -164.45232926181237 5.906 0.2433 14939 +14941 3 -459.06144813599843 -163.45942198399834 5.7847 0.2429 14940 +14942 3 -458.6535237646186 -162.40936059187192 5.6672 0.2426 14941 +14943 3 -458.4471236040546 -161.29254582938037 5.5429 0.2423 14942 +14944 3 -458.3006420523862 -160.16305785466758 5.4506 0.2419 14943 +14945 3 -458.49623915616166 -159.07706612680101 5.374 0.2416 14944 +14946 3 -458.96516889040765 -158.04178064233793 5.2721 0.2413 14945 +14947 3 -459.03547879061693 -156.94986974032594 5.1045 0.241 14946 +14948 3 -458.86224349388084 -155.8323465942727 4.8801 0.2406 14947 +14949 3 -458.81764588717783 -154.70780955465312 4.6059 0.2403 14948 +14950 3 -458.65499496245496 -153.6009151935297 4.3097 0.24 14949 +14951 3 -458.37736547015334 -152.49533574590765 4.0344 0.2396 14950 +14952 3 -458.18965479807133 -151.3680949093574 3.812 0.2393 14951 +14953 3 -457.84486520707446 -150.28903283610106 3.63 0.239 14952 +14954 3 -457.4401362811542 -149.2325434483061 3.4334 0.2387 14953 +14955 3 -457.1010826809861 -148.14946286671807 3.2357 0.2383 14954 +14956 3 -456.6550905847495 -147.11148403740864 3.0342 0.238 14955 +14957 3 -456.01313814851005 -146.18467663044314 2.8316 0.2377 14956 +14958 3 -455.5412251409196 -145.16615972176314 2.6693 0.2373 14957 +14959 3 -455.4117025674474 -144.04222269818882 2.5908 0.237 14958 +14960 3 -455.3429524586986 -142.90306866007674 2.5786 0.2367 14959 +14961 3 -455.21505252618226 -141.7809028045713 2.6455 0.2364 14960 +14962 3 -454.9746976945482 -140.67052234954244 2.7307 0.236 14961 +14963 3 -454.97549624370345 -139.5460803535643 2.7642 0.2357 14962 +14964 3 -455.039328217806 -138.4072746067039 2.7523 0.2354 14963 +14965 3 -454.8564089843894 -137.2881048367198 2.711 0.235 14964 +14966 3 -454.75603928030796 -136.1546121757367 2.6722 0.2347 14965 +14967 3 -454.8425694803826 -135.01578324017396 2.6253 0.2344 14966 +14968 3 -454.8918418966982 -133.8736943123796 2.5713 0.2341 14967 +14969 3 -454.7930951296587 -132.74183139841904 2.4782 0.2337 14968 +14970 3 -454.5106472548555 -131.64105019944301 2.3506 0.2334 14969 +14971 3 -454.2031628213955 -130.54262075101224 2.2029 0.2331 14970 +14972 3 -454.14812196763944 -129.4075966435952 2.0591 0.2327 14971 +14973 3 -454.2920537160291 -128.27624181340033 1.9188 0.2324 14972 +14974 3 -454.2959872150915 -127.14049264761357 1.7727 0.2321 14973 +14975 3 -454.1042376047361 -126.0172738724284 1.6734 0.2318 14974 +14976 3 -453.7149591031944 -124.943846232465 1.6202 0.2314 14975 +14977 3 -453.00489165308255 -124.06059551138304 1.5878 0.2311 14976 +14978 3 -453.0622076939418 -122.96059636981059 1.559 0.2308 14977 +14979 3 -453.2935139620482 -121.84073820453489 1.5309 0.2304 14978 +14980 3 -453.40514476936534 -120.70273964001132 1.5001 0.2301 14979 +14981 3 -453.3241159948086 -119.5854095421021 1.3847 0.2298 14980 +14982 3 -453.52226746601474 -118.46145144481423 1.2848 0.2295 14981 +14983 3 -453.20494731181424 -117.36632481298668 1.1248 0.2291 14982 +14984 3 -470.2114933785697 -208.78047950540457 11.9087 0.2368 14897 +14985 3 -469.118077917445 -209.05728593483406 11.3896 0.236 14984 +14986 3 -467.9965327100267 -209.22648229329684 11.173 0.2357 14985 +14987 3 -466.87574355603385 -209.4060747271353 10.926 0.2353 14986 +14988 3 -465.75274782767565 -209.52506335721878 10.6358 0.2349 14987 +14989 3 -464.63661051020483 -209.4078921638774 10.3566 0.2345 14988 +14990 3 -463.8534428591244 -208.7202159825965 10.0451 0.2341 14989 +14991 3 -463.32811305773424 -207.71608295865425 9.69 0.2338 14990 +14992 3 -462.3859317720225 -207.2238721553853 9.29 0.2334 14991 +14993 3 -461.5686102920341 -206.57020708950694 8.763 0.233 14992 +14994 3 -460.93784955202017 -205.70168884050065 8.1337 0.2326 14993 +14995 3 -460.88343545604505 -204.67259087326948 7.4222 0.2322 14994 +14996 3 -460.22345424502134 -203.81214319264288 6.6997 0.2319 14995 +14997 3 -460.80191147992616 -203.4202727582054 6.072 0.2315 14996 +14998 3 -461.26825984639055 -202.84113745355194 5.4974 0.2311 14997 +14999 3 -460.76226692330533 -201.88887595491423 4.972 0.2307 14998 +15000 3 -459.71356042122045 -201.64965761848305 4.4826 0.2303 14999 +15001 3 -458.91152399906036 -201.4295526718583 3.8228 0.2299 15000 +15002 3 -458.04168340184435 -200.7667973735507 3.2013 0.2296 15001 +15003 3 -457.3982158978928 -199.82061202629654 2.2495 0.2292 15002 +15004 3 -470.15315824187394 -211.5493228851982 15.1116 0.2574 14893 +15005 3 -469.38455517221394 -212.34858459534647 15.0495 0.2566 15004 +15006 3 -469.14701069963576 -213.3745964244925 15.1396 0.2562 15005 +15007 3 -468.74391253062254 -214.2748913351402 15.4614 0.2557 15006 +15008 3 -468.1158666643514 -215.21685894066593 15.7916 0.2553 15007 +15009 3 -467.7479973140122 -216.27894328340003 16.1444 0.2549 15008 +15010 3 -466.9721021238279 -217.116232154608 16.4298 0.2545 15009 +15011 3 -466.31414131903256 -218.0264586755099 16.5604 0.2541 15010 +15012 3 -465.5866588001694 -218.90910383906575 16.6377 0.2537 15011 +15013 3 -464.75670949329003 -219.6936706800745 16.6907 0.2533 15012 +15014 3 -463.82273521022483 -220.3138291747941 16.8267 0.2528 15013 +15015 3 -463.1145936208864 -221.21263690142376 16.9694 0.2524 15014 +15016 3 -462.60220145012573 -222.16856454687772 17.1295 0.252 15015 +15017 3 -462.8433662228574 -223.26360244685804 17.3504 0.2516 15016 +15018 3 -462.7317898953846 -224.37557953886474 17.6191 0.2512 15017 +15019 3 -462.56934758850934 -225.46567119874342 17.9209 0.2508 15018 +15020 3 -462.49335488485667 -226.60374437696683 18.132 0.2504 15019 +15021 3 -462.57836515698125 -227.74448809649076 18.2679 0.2499 15020 +15022 3 -462.6455563772737 -228.88519450916476 18.33 0.2495 15021 +15023 3 -462.75409495032363 -230.0009558537902 18.3214 0.2491 15022 +15024 3 -463.0284013981809 -231.07258714423665 18.2557 0.2487 15023 +15025 3 -462.7518945790207 -232.16647051048642 18.1514 0.2483 15024 +15026 3 -462.264494647986 -233.17498862992073 17.9756 0.2479 15025 +15027 3 -461.69547731829164 -234.09035112560616 17.6731 0.2474 15026 +15028 3 -460.9495215477928 -234.9139140670135 17.3559 0.247 15027 +15029 3 -460.04369438611593 -235.59960972338624 17.0998 0.2466 15028 +15030 3 -459.03064680279374 -236.12732502913838 16.8972 0.2462 15029 +15031 3 -458.24274040654495 -236.89246370333433 16.7379 0.2458 15030 +15032 3 -457.7681588639114 -237.9253331865661 16.6118 0.2454 15031 +15033 3 -457.60728531032 -239.04293464493793 16.5022 0.245 15032 +15034 3 -457.4682697468341 -240.15655134879466 16.3288 0.2446 15033 +15035 3 -456.9734536493234 -241.161023423889 16.1264 0.2441 15034 +15036 3 -456.6793140164945 -242.16591564517407 15.8085 0.2437 15035 +15037 3 -456.324472279322 -243.219966228192 15.4927 0.2433 15036 +15038 3 -455.79894738482534 -244.2341321047942 15.2303 0.2429 15037 +15039 3 -455.4302645403552 -245.3132560551323 15.0171 0.2425 15038 +15040 3 -455.34214190010783 -246.4358888759049 14.793 0.2421 15039 +15041 3 -455.524275377502 -247.52507560755947 14.5192 0.2416 15040 +15042 3 -455.6189796532348 -248.66265763544044 14.3145 0.2412 15041 +15043 3 -455.41842224772506 -249.78745922554214 14.1576 0.2408 15042 +15044 3 -454.9099473238463 -250.79748885965518 14.0343 0.2404 15043 +15045 3 -455.2466554852632 -251.88629210819698 13.9362 0.24 15044 +15046 3 -455.84247594006024 -252.8267208325804 13.8554 0.2396 15045 +15047 3 -455.3834267436721 -253.76974936623958 13.7769 0.2392 15046 +15048 3 -454.4842743113796 -254.37456580409707 13.6785 0.2388 15047 +15049 3 -454.1529341333966 -255.38263283879965 13.5052 0.2383 15048 +15050 3 -454.0349844921998 -256.4315225242011 13.2296 0.2379 15049 +15051 3 -453.5039665854566 -257.4011997863446 12.945 0.2375 15050 +15052 3 -452.8887666435949 -258.3543665983631 12.7347 0.2371 15051 +15053 3 -452.47247425892067 -259.37604438536937 12.7081 0.2367 15052 +15054 3 -451.9487278406598 -260.35132302727584 12.8328 0.2363 15053 +15055 3 -451.881758858176 -261.4010972674747 13.0749 0.2358 15054 +15056 3 -452.13187499895116 -262.509942520936 13.3428 0.2354 15055 +15057 3 -452.4433850468095 -263.61071385508467 13.5795 0.235 15056 +15058 3 -452.0418115142497 -264.5595903001223 13.8542 0.2346 15057 +15059 3 -451.26265407125936 -265.3676687672484 14.1207 0.2342 15058 +15060 3 -450.47066737866754 -266.19035751687215 14.3147 0.2338 15059 +15061 3 -449.7189718622063 -267.05350650779553 14.4429 0.2334 15060 +15062 3 -448.97377164694643 -267.9214774342537 14.5227 0.2329 15061 +15063 3 -448.22857113560053 -268.78958978175825 14.562 0.2325 15062 +15064 3 -447.48492655184987 -269.6575639651637 14.5651 0.2321 15063 +15065 3 -447.22461910442706 -270.7482992597316 14.5384 0.2317 15064 +15066 3 -447.0782073062205 -271.8821237767297 14.5034 0.2313 15065 +15067 3 -446.9375214319149 -273.01673810096975 14.4657 0.2309 15066 +15068 3 -446.7984617515985 -274.15142654072326 14.4293 0.2305 15067 +15069 3 -446.6577758772929 -275.2860408649634 14.3972 0.23 15068 +15070 3 -446.04415170079596 -276.2295943027816 14.3779 0.2296 15069 +15071 3 -445.22556019445 -276.99311309478236 14.6213 0.2292 15070 +15072 3 -484.4152877689087 -213.15264024432713 21.5079 0.5148 1 +15073 3 -482.4447328930928 -211.99734223022065 21.5609 0.5123 15072 +15074 3 -481.3485182062393 -211.68604080020992 21.585 0.511 15073 +15075 3 -480.4187619609887 -211.0345445036607 21.6094 0.5097 15074 +15076 3 -479.800344635655 -210.07950203773197 21.6371 0.5085 15075 +15077 3 -479.2296622970506 -209.08821414392668 21.6714 0.5072 15076 +15078 3 -478.4912887273091 -208.21536936304798 21.7141 0.5059 15077 +15079 3 -477.5981461329419 -207.50327982785794 21.7676 0.5047 15078 +15080 3 -476.72191860204083 -206.78394249107427 21.8783 0.5034 15079 +15081 3 -475.9114142688561 -205.98137468341648 22.0023 0.5021 15080 +15082 3 -475.3100398080736 -205.02559008010954 22.1575 0.5009 15081 +15083 3 -474.6138099122261 -204.1189630442628 22.2782 0.4996 15082 +15084 3 -473.7587355409022 -203.36077903658065 22.3397 0.4983 15083 +15085 3 -473.0357347269926 -202.4743192500782 22.3427 0.4971 15084 +15086 3 -472.151527121947 -201.75008615833238 22.2887 0.4958 15085 +15087 3 -471.0355828526202 -201.5407084428116 22.1547 0.4946 15086 +15088 3 -469.96335436140424 -201.35723170688948 21.8793 0.4933 15087 +15089 3 -468.9044457154307 -201.76916807270652 21.6047 0.492 15088 +15090 3 -467.7827820735682 -201.9949328496842 21.3748 0.4908 15089 +15091 3 -466.649655577118 -201.88663565192564 21.1557 0.4895 15090 +15092 3 -465.587619106348 -201.46212702450526 20.9849 0.4882 15091 +15093 3 -464.7114793109214 -200.73465812560312 20.8329 0.487 15092 +15094 3 -463.94476201861426 -199.8901797578061 20.7091 0.4857 15093 +15095 3 -462.96146699208623 -199.311332817065 20.6172 0.4844 15094 +15096 3 -461.82441297972593 -199.18761243485 20.5585 0.4832 15095 +15097 3 -460.6954779058959 -199.00246133688836 20.5293 0.4819 15096 +15098 3 -459.57882880604086 -198.75822170498412 20.5246 0.4806 15097 +15099 3 -458.5111536486578 -198.3588036178784 20.5741 0.4794 15098 +15100 3 -457.4758076686424 -197.88499470949245 20.6211 0.4781 15099 +15101 3 -456.715565247595 -197.0550963294241 20.6113 0.4768 15100 +15102 3 -455.78498544128576 -196.4254479560526 20.6292 0.4756 15101 +15103 3 -454.9662948640379 -195.68268437406604 20.6947 0.4743 15102 +15104 3 -454.732330223036 -194.62733032600406 20.7899 0.473 15103 +15105 3 -454.570479172483 -193.50990172540583 20.8953 0.4718 15104 +15106 3 -454.0798597995022 -192.50987189042294 21.0588 0.4705 15105 +15107 3 -453.32767186419875 -191.6831016502812 21.2717 0.4692 15106 +15108 3 -452.4831281793164 -190.9274145693243 21.4857 0.468 15107 +15109 3 -451.6790651656751 -190.12167826004298 21.6452 0.4667 15108 +15110 3 -450.9699322007989 -189.23114627963704 21.7132 0.4654 15109 +15111 3 -450.3838735533292 -188.25517044401087 21.7092 0.4642 15110 +15112 3 -449.85616150452427 -187.24056722917953 21.6616 0.4629 15111 +15113 3 -449.23612124214867 -186.28389501622829 21.5967 0.4616 15112 +15114 3 -448.43779777236955 -185.47244314605985 21.5318 0.4604 15113 +15115 3 -447.53650318594225 -184.7700239275891 21.4747 0.4591 15114 +15116 3 -446.64974496859975 -184.04818966408024 21.4237 0.4579 15115 +15117 3 -445.6875654987129 -183.4484565253191 21.3499 0.4566 15116 +15118 3 -444.8486668122376 -182.69843812965803 21.2625 0.4553 15117 +15119 3 -444.30960081201863 -181.7030444902329 21.1789 0.4541 15118 +15120 3 -443.7461727889022 -180.72556039687532 21.0573 0.4528 15119 +15121 3 -442.91448785411774 -180.00872048500338 20.8779 0.4515 15120 +15122 3 -442.01956707960096 -179.3353767634628 20.7815 0.4503 15121 +15123 3 -441.46500298513956 -178.37969016465834 20.7275 0.449 15122 +15124 3 -440.9680774018674 -177.35206990177446 20.7042 0.4477 15123 +15125 3 -440.3764274415625 -176.37855723905705 20.7533 0.4465 15124 +15126 3 -439.7173680921861 -175.44930984788522 20.8657 0.4452 15125 +15127 3 -439.09567765284623 -174.50401862416982 20.9517 0.4439 15126 +15128 3 -438.76303842838564 -173.43063885617053 21.0119 0.4427 15127 +15129 3 -438.68109460216215 -172.37885578474186 21.2428 0.4414 15128 +15130 3 -437.87697364962906 -171.63456706811556 21.5367 0.4401 15129 +15131 3 -436.75961566802584 -171.39117448205843 21.7949 0.4389 15130 +15132 3 -435.79488538374164 -170.82771066016304 22.0512 0.4376 15131 +15133 3 -435.5051592104754 -169.72458076548855 22.2997 0.4363 15132 +15134 3 -435.259830457146 -168.659515540824 22.5486 0.4351 15133 +15135 3 -434.39163974080805 -167.9855206743268 22.8507 0.4338 15134 +15136 3 -433.54298280003854 -167.26935233735304 23.1615 0.4325 15135 +15137 3 -432.87748183503254 -166.34341486885094 23.4082 0.4313 15136 +15138 3 -432.3506100220942 -165.33277321983232 23.5648 0.43 15137 +15139 3 -431.9459788985762 -164.26334395434512 23.6643 0.4287 15138 +15140 3 -431.5372178443631 -163.2076239438506 23.7546 0.4275 15139 +15141 3 -430.95274157013836 -162.25265253858836 23.8622 0.4262 15140 +15142 3 -430.232281301598 -161.36860223942284 23.913 0.425 15141 +15143 3 -429.5214376642052 -160.48457207411272 23.9309 0.4237 15142 +15144 3 -428.68573116624214 -159.7296813142923 23.9709 0.4224 15143 +15145 3 -427.68055041150006 -159.2018417739999 23.957 0.4212 15144 +15146 3 -426.64446179591994 -158.7450019107379 23.8707 0.4199 15145 +15147 3 -425.6976894278538 -158.11524892498363 23.7691 0.4186 15146 +15148 3 -424.8572184350612 -157.33941778338487 23.6676 0.4174 15147 +15149 3 -424.0354508467981 -156.54651377855194 23.5461 0.4161 15148 +15150 3 -423.19249329029424 -155.77626358677463 23.3916 0.4148 15149 +15151 3 -422.37228784743456 -154.9802515758706 23.2365 0.4136 15150 +15152 3 -421.5836651912442 -154.16238532999466 23.0512 0.4123 15151 +15153 3 -421.08725820033686 -153.25858082160897 22.7822 0.411 15152 +15154 3 -421.2133338861305 -152.14486631535 22.4643 0.4098 15153 +15155 3 -421.3912571142537 -151.0232700355353 22.1601 0.4085 15154 +15156 3 -421.40006623442275 -149.8891574267517 21.8672 0.4072 15155 +15157 3 -421.091585823802 -148.86115388285543 21.5472 0.406 15156 +15158 3 -420.28426637096254 -148.0909783047779 21.2335 0.4047 15157 +15159 3 -419.627625579478 -147.22240587201347 20.9763 0.4034 15158 +15160 3 -419.1266607618463 -146.19894909154084 20.7792 0.4022 15159 +15161 3 -418.4668151582612 -145.27373057171465 20.6069 0.4009 15160 +15162 3 -417.7957163665254 -144.35336753913958 20.4611 0.3996 15161 +15163 3 -417.2550339431589 -143.3532328896735 20.383 0.3984 15162 +15164 3 -416.79533584887685 -142.30956849815996 20.3611 0.3971 15163 +15165 3 -416.1858230159954 -141.35694884344306 20.3343 0.3958 15164 +15166 3 -415.3339067832811 -140.61015589192453 20.2918 0.3946 15165 +15167 3 -414.34664012401265 -140.0369575026238 20.2398 0.3933 15166 +15168 3 -413.33574706533057 -139.50182278696016 20.1676 0.392 15167 +15169 3 -412.369478524632 -138.896282798804 20.0477 0.3908 15168 +15170 3 -411.56714611526246 -138.1082985319082 19.8647 0.3895 15169 +15171 3 -410.91629244351805 -137.17751268222162 19.6463 0.3883 15170 +15172 3 -410.0740936992004 -136.45011484398603 19.4161 0.387 15171 +15173 3 -409.14101370921856 -135.83255278856518 19.1335 0.3857 15172 +15174 3 -408.45198068815364 -134.96716523614597 18.8385 0.3845 15173 +15175 3 -407.9226356353789 -133.95574058986583 18.5911 0.3832 15174 +15176 3 -407.39407357986573 -132.94184270374927 18.3892 0.3819 15175 +15177 3 -406.77487325727054 -131.98927347765698 18.1927 0.3807 15176 +15178 3 -405.93185145008067 -131.24971165292405 17.9919 0.3794 15177 +15179 3 -404.93157681331456 -130.70894230186718 17.8226 0.3781 15178 +15180 3 -403.9709837678924 -130.09450463123932 17.6823 0.3769 15179 +15181 3 -403.21805339912464 -129.25083294759264 17.5569 0.3756 15180 +15182 3 -402.5234532502997 -128.3425829747039 17.4605 0.3743 15181 +15183 3 -401.58159331200363 -127.73065940379576 17.3965 0.3731 15182 +15184 3 -400.5511771368531 -127.23260700094232 17.3551 0.3718 15183 +15185 3 -399.6409979897289 -126.55201882874113 17.3372 0.3705 15184 +15186 3 -398.87180420063805 -125.70831309519173 17.3171 0.3693 15185 +15187 3 -398.1901611024997 -124.79195850402061 17.2738 0.368 15186 +15188 3 -397.46878322563214 -123.9071284645407 17.2046 0.3667 15187 +15189 3 -396.66322181908686 -123.10782370396134 17.0946 0.3655 15188 +15190 3 -396.0107351433726 -122.18021642282599 16.9653 0.3642 15189 +15191 3 -395.44896736414813 -121.18654302465876 16.8757 0.3629 15190 +15192 3 -394.7876402445673 -120.25969505389608 16.8501 0.3617 15191 +15193 3 -394.51812543747576 -119.1622643413869 16.8516 0.3604 15192 +15194 3 -394.390256297915 -118.02539069706751 16.851 0.3591 15193 +15195 3 -393.84306169643867 -117.02849511170504 16.8402 0.3579 15194 +15196 3 -393.1427896053706 -116.1274457687326 16.781 0.3566 15195 +15197 3 -392.8101032092327 -115.04282287951034 16.6611 0.3553 15196 +15198 3 -392.50021965144975 -113.94198423982883 16.5313 0.3541 15197 +15199 3 -391.84938285661354 -113.00313739050392 16.4109 0.3528 15198 +15200 3 -391.1126286708808 -112.13361940920325 16.2697 0.3516 15199 +15201 3 -390.439117430947 -111.2172111324603 16.109 0.3503 15200 +15202 3 -389.66179483849857 -110.40587394160241 15.9132 0.349 15201 +15203 3 -388.7531950097723 -109.71397534264545 15.798 0.3478 15202 +15204 3 -387.93050981318186 -108.92029159749825 15.7305 0.3465 15203 +15205 3 -387.2716760672929 -107.9846099928495 15.6936 0.3452 15204 +15206 3 -386.7309399583546 -106.97634348517894 15.6838 0.344 15205 +15207 3 -386.2963021096182 -105.919013659417 15.6926 0.3427 15206 +15208 3 -385.5191113694746 -105.07847317054382 15.7107 0.3414 15207 +15209 3 -384.6607807610528 -104.32197940543651 15.7264 0.3402 15208 +15210 3 -383.95244086036575 -103.42416586962037 15.7458 0.3389 15209 +15211 3 -383.0681659497874 -102.69830628779923 15.7716 0.3376 15210 +15212 3 -382.1863002304598 -101.97004758165508 15.8009 0.3364 15211 +15213 3 -381.36609153065297 -101.1755912022602 15.8526 0.3351 15212 +15214 3 -380.3162223033275 -100.74870388045841 15.9501 0.3338 15213 +15215 3 -379.5510742624906 -99.89772340147931 16.0497 0.3326 15214 +15216 3 -378.80469663562974 -99.03143797038771 16.1538 0.3313 15215 +15217 3 -377.9114630488409 -98.32903562882535 16.267 0.33 15216 +15218 3 -376.8053751322966 -98.07272655587875 16.4287 0.3288 15217 +15219 3 -375.7208574101585 -97.94989398540841 16.6805 0.3275 15218 +15220 3 -374.8081881462895 -97.27658381558405 16.9071 0.3262 15219 +15221 3 -374.07792926175824 -96.41188776981818 17.1092 0.325 15220 +15222 3 -373.1361513909144 -96.09850550805322 17.3583 0.3237 15221 +15223 3 -372.1328860448614 -96.58091565036884 17.618 0.3224 15222 +15224 3 -371.13275802231954 -96.30785782036452 17.8262 0.3212 15223 +15225 3 -370.2874517701173 -95.54488592705016 18.0027 0.3199 15224 +15226 3 -369.44370440637135 -94.78036165917388 18.1785 0.3186 15225 +15227 3 -368.4530161999695 -94.25403738869386 18.3507 0.3174 15226 +15228 3 -367.35436863497637 -93.95644876670909 18.4699 0.3161 15227 +15229 3 -366.31337360533416 -93.51268013525788 18.5411 0.3149 15228 +15230 3 -365.4995591473793 -92.73754120059928 18.5959 0.3136 15229 +15231 3 -364.9718874602712 -91.73743379105542 18.6602 0.3123 15230 +15232 3 -364.66107622723325 -90.64062372663338 18.7237 0.3111 15231 +15233 3 -364.5202565508803 -89.50874343757815 18.7773 0.3098 15232 +15234 3 -364.0110485466664 -88.53851465608145 18.852 0.3085 15233 +15235 3 -363.0650382477338 -87.95005839235972 18.9268 0.3073 15234 +15236 3 -362.45777531177566 -87.0711241362225 18.9832 0.306 15235 +15237 3 -361.9478286292311 -86.04842637003648 19.0219 0.3047 15236 +15238 3 -361.2685846554158 -85.1344809701161 19.0489 0.3035 15237 +15239 3 -360.71005949332823 -84.14562269750321 19.0691 0.3022 15238 +15240 3 -360.864443855412 -83.08782901783592 19.0866 0.3009 15239 +15241 3 -361.1013210064121 -81.97526573184538 19.1075 0.2997 15240 +15242 3 -360.92000428009595 -80.86748376107768 19.1236 0.2984 15241 +15243 3 -360.7775551528065 -79.73708498801814 19.1528 0.2971 15242 +15244 3 -360.48223115281064 -78.63952952927065 19.2189 0.2959 15243 +15245 3 -359.82723393041 -77.728958302706 19.3538 0.2946 15244 +15246 3 -359.08316443545044 -76.87476925649281 19.5654 0.2933 15245 +15247 3 -359.3782428068349 -75.79301632502414 19.8536 0.2921 15246 +15248 3 -359.3620521770107 -74.67744832462887 20.2054 0.2908 15247 +15249 3 -359.55685316175 -73.56642329505276 20.4556 0.2895 15248 +15250 3 -359.8397300376869 -72.53718296691741 20.7306 0.2883 15249 +15251 3 -359.1442153353816 -71.66046811083409 21.0536 0.287 15250 +15252 3 -358.5063119043432 -70.72483032692976 21.3551 0.2857 15251 +15253 3 -357.698243504145 -69.94086456836563 21.6743 0.2845 15252 +15254 3 -357.59865674081004 -69.21021316272233 22.0989 0.2832 15253 +15255 3 -358.65837157274746 -68.81850178304107 22.5655 0.282 15254 +15256 3 -359.1920289692206 -68.14171431773931 23.1273 0.2807 15255 +15257 3 -358.7878211923256 -67.2753674512374 23.7578 0.2794 15256 +15258 3 -358.1984897269359 -66.30900143677827 24.2798 0.2782 15257 +15259 3 -357.76131013435696 -65.35115643165868 24.8603 0.2769 15258 +15260 3 -356.8151647261721 -64.79345909746147 25.4186 0.2756 15259 +15261 3 -355.7986264669827 -64.28652618513078 25.8932 0.2744 15260 +15262 3 -354.66968813620537 -64.10293071867834 26.2517 0.2731 15261 +15263 3 -353.58390633339116 -63.807066093085126 26.5919 0.2718 15262 +15264 3 -352.7158612914195 -63.06349207181455 26.8625 0.2706 15263 +15265 3 -352.05773317033146 -62.12851905282784 27.0677 0.2693 15264 +15266 3 -351.403596317653 -61.212292760928335 27.3067 0.268 15265 +15267 3 -350.5672351217001 -60.43236899548444 27.5153 0.2668 15266 +15268 3 -349.59125895743216 -59.8364960671004 27.709 0.2655 15267 +15269 3 -348.60880031765146 -59.26344916577375 27.9303 0.2642 15268 +15270 3 -347.8080540366605 -58.46090178805753 28.1901 0.263 15269 +15271 3 -347.20818833179595 -57.49373589942857 28.4631 0.2617 15270 +15272 3 -346.4973746930861 -56.62915127602608 28.7823 0.2604 15271 +15273 3 -345.49285544631437 -56.12309205729255 29.1186 0.2592 15272 +15274 3 -344.397308081039 -55.89834208412634 29.3891 0.2579 15273 +15275 3 -343.51864767199834 -55.19271755536869 29.6792 0.2566 15274 +15276 3 -342.5410794527145 -55.35726559287187 29.99 0.2554 15275 +15277 3 -342.25270573937075 -54.75646828807399 30.284 0.2541 15276 +15278 3 -341.9832108640345 -53.683291433046094 30.6608 0.2528 15277 +15279 3 -342.0152131156517 -52.684285073761345 31.1013 0.2516 15278 +15280 3 -342.8366475228853 -52.11649981980284 31.5879 0.2503 15279 +15281 3 -343.9556685636562 -51.97084488403996 32.0611 0.249 15280 +15282 3 -345.0733338310424 -51.72972748508599 32.4766 0.2478 15281 +15283 3 -345.62889040614607 -52.21137073673509 32.8978 0.2465 15282 +15284 3 -345.62001646707813 -51.78906706257939 33.5348 0.2453 15283 +15285 3 -346.4951688816717 -51.096801787391456 34.1004 0.244 15284 +15286 3 -347.5696803798558 -51.000409825744214 34.5909 0.2427 15285 +15287 3 -348.6407602074638 -51.36101479366769 35.0619 0.2415 15286 +15288 3 -349.2291089870122 -51.20936976867836 35.6544 0.2402 15287 +15289 3 -349.0911967583189 -50.24239322957473 36.2953 0.2389 15288 +15290 3 -348.40529067870744 -49.47084549939078 36.9281 0.2377 15289 +15291 3 -347.3568351636585 -49.077973048125244 37.4884 0.2364 15290 +15292 3 -346.28822220757786 -49.09270634702901 38.057 0.2351 15291 +15293 3 -345.1630445881159 -49.071753670304275 38.5347 0.2339 15292 +15294 3 -344.19441811161926 -49.62621996236331 38.8083 0.2326 15293 +15295 3 -343.3426649983926 -50.38889150641663 38.9836 0.2313 15294 +15296 3 -343.17610282775 -51.48788410571419 39.3655 0.2301 15295 +15297 3 -483.72601805586226 -218.20942588964337 22.8262 0.3604 1 +15298 3 -482.67355753941285 -218.6149410697724 23.0152 0.3541 15297 +15299 3 -481.593692833226 -218.93780862207808 23.0919 0.351 15298 +15300 3 -480.46651574917524 -219.12884283679082 23.1046 0.3478 15299 +15301 3 -479.3769602963274 -219.45331644923021 23.0856 0.3447 15300 +15302 3 -478.3453920875919 -219.94457690023987 23.0495 0.3416 15301 +15303 3 -477.30896158162466 -220.42783684716343 23.0073 0.3384 15302 +15304 3 -476.34751835994956 -221.03004799077917 22.9676 0.3353 15303 +15305 3 -475.3042337529299 -221.27457381509197 22.9279 0.3322 15304 +15306 3 -474.1704729884314 -221.1314855595161 22.8805 0.329 15305 +15307 3 -473.17297107522955 -221.56299596861268 22.8248 0.3259 15306 +15308 3 -472.4997287091245 -222.44327981288185 22.7016 0.3228 15307 +15309 3 -471.7174231944524 -223.23515890827048 22.5162 0.3196 15308 +15310 3 -470.7244856218693 -223.78321032643564 22.3712 0.3165 15309 +15311 3 -469.6502112321448 -224.17163852518294 22.2821 0.3134 15310 +15312 3 -468.67909058768373 -224.76909178184948 22.2479 0.3102 15311 +15313 3 -467.5921268091164 -225.03777997303547 22.3253 0.3071 15312 +15314 3 -466.55495416577094 -225.5039970554078 22.4544 0.304 15313 +15315 3 -465.6635618156429 -226.21878508561895 22.5936 0.3008 15314 +15316 3 -464.7118120993895 -226.8518464472669 22.7249 0.2977 15315 +15317 3 -463.61372768526326 -227.02830442938466 22.9273 0.2946 15316 +15318 3 -462.4995555238633 -227.15459474873387 23.1699 0.2914 15317 +15319 3 -461.38587826793935 -227.41601450628434 23.3495 0.2883 15318 +15320 3 -462.0917742136745 -226.37394193021555 22.6976 0.2368 15319 +15321 3 -462.3989686995923 -225.3480052129558 22.3408 0.2362 15320 +15322 3 -461.84846042031256 -224.38023555314797 21.9238 0.2358 15321 +15323 3 -461.011943981252 -223.64068734837608 21.4959 0.2355 15322 +15324 3 -459.9317293061978 -223.3876851432523 21.0664 0.2352 15323 +15325 3 -458.8559935908479 -223.35955276473936 20.6913 0.2349 15324 +15326 3 -458.2567205938617 -222.5145764366194 20.3301 0.2346 15325 +15327 3 -458.4142905365775 -221.42129258822843 19.9934 0.2342 15326 +15328 3 -458.0562324123058 -220.49911007394886 19.6787 0.2339 15327 +15329 3 -457.6191243785797 -219.47331210804515 19.3803 0.2336 15328 +15330 3 -457.27760109160863 -218.38775147664018 19.1225 0.2333 15329 +15331 3 -456.93849350978263 -217.2966804578938 18.9092 0.233 15330 +15332 3 -456.6212510241288 -216.19823057952146 18.7421 0.2326 15331 +15333 3 -456.4068704933343 -215.07666148311407 18.6243 0.2323 15332 +15334 3 -456.2214984500229 -213.94695066367458 18.5441 0.232 15333 +15335 3 -456.0483609556891 -212.81648763992905 18.4864 0.2317 15334 +15336 3 -456.110630488302 -211.6809313201861 18.436 0.2314 15335 +15337 3 -456.2319484892467 -210.54302374808424 18.3811 0.231 15336 +15338 3 -456.3814715504717 -209.4092057449806 18.3019 0.2307 15337 +15339 3 -456.03510589802397 -208.3398984669709 18.2005 0.2304 15338 +15340 3 -455.5486605725687 -207.30508764109854 18.0819 0.2301 15339 +15341 3 -455.2144052210466 -206.22682544201203 17.8961 0.2298 15340 +15342 3 -455.6395375514012 -205.23840025430817 17.6321 0.2294 15341 +15343 3 -456.1916135740801 -204.27527247712442 16.8708 0.2291 15342 +15344 3 -460.78156091331914 -227.83208461444497 23.4809 0.2883 15319 +15345 3 -459.6687304071562 -228.0943546747898 23.5721 0.2859 15344 +15346 3 -458.5375421229408 -228.24238830493397 23.6277 0.2847 15345 +15347 3 -457.39449126788844 -228.2472783728299 23.6526 0.2834 15346 +15348 3 -456.2536734328511 -228.3339148389438 23.6657 0.2822 15347 +15349 3 -455.12447730505744 -228.30722617139023 23.6839 0.281 15348 +15350 3 -454.01023008828605 -228.0978520089028 23.7105 0.2798 15349 +15351 3 -452.8719127330073 -228.1722607360197 23.7483 0.2786 15350 +15352 3 -451.75832646950505 -228.4239932999425 23.7982 0.2774 15351 +15353 3 -450.71546195216126 -228.87315715474975 23.8599 0.2762 15352 +15354 3 -449.7362135007154 -229.4349551347575 23.9602 0.2749 15353 +15355 3 -448.687049785161 -229.8194053889702 24.1427 0.2737 15354 +15356 3 -447.58652212988136 -230.01452591573405 24.3394 0.2725 15355 +15357 3 -446.4529689733459 -230.11001644567554 24.4876 0.2713 15356 +15358 3 -445.32419619217535 -230.28641017710734 24.5886 0.2701 15357 +15359 3 -444.19137135095673 -230.43931942835817 24.6451 0.2689 15358 +15360 3 -443.0769347846601 -230.69189874204204 24.6608 0.2677 15359 +15361 3 -441.99788257623123 -231.06575050609405 24.6456 0.2664 15360 +15362 3 -440.91393807188774 -231.41215622415237 24.6027 0.2652 15361 +15363 3 -439.8164599856009 -231.70429839864983 24.5238 0.264 15362 +15364 3 -438.8034060904846 -232.2012544787915 24.4452 0.2628 15363 +15365 3 -437.764647816947 -232.648022762309 24.3975 0.2616 15364 +15366 3 -436.7128989410065 -233.08514717475688 24.3799 0.2604 15365 +15367 3 -435.64835210660647 -233.4881621712134 24.3938 0.2592 15366 +15368 3 -434.54762183444143 -233.7462856260552 24.4801 0.2579 15367 +15369 3 -433.45577512660054 -234.0506018539778 24.6014 0.2567 15368 +15370 3 -432.3517107466905 -234.34760928656806 24.7121 0.2555 15369 +15371 3 -431.2541784766454 -234.66563151253612 24.8107 0.2543 15370 +15372 3 -430.1413010948913 -234.91651703061171 24.9007 0.2531 15371 +15373 3 -429.0045320629547 -235.02819360841568 24.9868 0.2519 15372 +15374 3 -427.8807805772571 -235.1366447420772 25.1251 0.2507 15373 +15375 3 -426.7800263221171 -235.40622330166826 25.2849 0.2494 15374 +15376 3 -425.68003798523 -235.71526010969012 25.4356 0.2482 15375 +15377 3 -424.5672210990282 -235.9710248019057 25.5975 0.247 15376 +15378 3 -423.4924487489808 -236.1920087053321 25.8444 0.2458 15377 +15379 3 -422.71505941921237 -236.9661496743825 26.0747 0.2446 15378 +15380 3 -421.9876474628294 -237.84886569650453 26.2489 0.2434 15379 +15381 3 -421.2141448830735 -238.69167502198158 26.3792 0.2422 15380 +15382 3 -420.214030367463 -239.22274081420056 26.4766 0.2409 15381 +15383 3 -419.09083202221944 -239.4047323723621 26.5485 0.2397 15382 +15384 3 -417.9860756374695 -239.69452585116116 26.606 0.2385 15383 +15385 3 -417.0028386763749 -240.27003338224765 26.6722 0.2373 15384 +15386 3 -415.9543122837157 -240.72158955139736 26.7764 0.2361 15385 +15387 3 -414.87756791110206 -241.10767912137402 26.911 0.2349 15386 +15388 3 -413.9338928144481 -241.7342519918011 27.1146 0.2337 15387 +15389 3 -413.09745856938116 -242.50904716065494 27.3511 0.2324 15388 +15390 3 -412.3231830592916 -243.34952141039466 27.5742 0.2312 15389 +15391 3 -411.5932167919927 -243.8648893067616 28.6804 0.23 15390 +15392 3 -484.17335805525295 -212.79447833450075 24.7374 0.4118 1 +15393 3 -483.28893066032765 -212.1414505915176 25.272 0.4078 15392 +15394 3 -482.412814495275 -211.80798250408878 25.6679 0.4057 15393 +15395 3 -483.1297763946245 -210.91803209823394 25.9606 0.4037 15394 +15396 3 -483.48041338530174 -209.94719936250198 26.1962 0.4017 15395 +15397 3 -482.7086574224269 -209.21273650178875 26.4405 0.3996 15396 +15398 3 -481.59505809366493 -209.03164802898934 26.6891 0.3976 15397 +15399 3 -480.4806551355995 -208.89666133684906 26.9319 0.3956 15398 +15400 3 -479.44031410366034 -208.54580810932526 27.2505 0.3935 15399 +15401 3 -478.9145484020853 -208.8981907948354 27.7099 0.3915 15400 +15402 3 -478.24758392090615 -209.1103411208907 28.2414 0.3895 15401 +15403 3 -477.16747761336836 -208.80557881282576 28.7249 0.3874 15402 +15404 3 -476.1313554460719 -208.33099046021167 29.1136 0.3854 15403 +15405 3 -475.03172552387923 -208.0973223746321 29.4132 0.3834 15404 +15406 3 -473.8995103239621 -207.9590456915773 29.6542 0.3813 15405 +15407 3 -473.1683199525272 -207.53926025743155 30.0502 0.3793 15406 +15408 3 -472.37454039342526 -206.85410744852547 30.3164 0.3773 15407 +15409 3 -471.45706281398253 -206.1807872117734 30.4727 0.3752 15408 +15410 3 -470.4241595769341 -205.7223276684166 30.5105 0.3732 15409 +15411 3 -469.3279413370473 -205.4127232909613 30.469 0.3712 15410 +15412 3 -468.57333059053207 -204.59485754327176 30.3526 0.3691 15411 +15413 3 -467.9775002709076 -203.62536664583322 30.1994 0.3671 15412 +15414 3 -467.17103487599616 -202.81877677681035 30.1036 0.3651 15413 +15415 3 -466.18454766095584 -202.24480220022872 30.0706 0.363 15414 +15416 3 -465.1005244026222 -201.88579648245843 30.0972 0.361 15415 +15417 3 -464.04809399788564 -201.50012821414242 30.0944 0.359 15416 +15418 3 -463.11747993957323 -200.9206137497229 30.2669 0.3569 15417 +15419 3 -462.2135763037707 -200.31605286181917 30.5785 0.3549 15418 +15420 3 -461.30154811793057 -199.6742810657475 30.9364 0.3529 15419 +15421 3 -460.28908255083104 -199.147204092775 31.2455 0.3508 15420 +15422 3 -459.39182690267717 -198.44076281293923 31.507 0.3488 15421 +15423 3 -458.55056639872873 -197.67051617419526 31.733 0.3468 15422 +15424 3 -457.58594448196095 -197.05529224935867 31.9186 0.3447 15423 +15425 3 -456.6838603843778 -196.35845753374272 32.0981 0.3427 15424 +15426 3 -456.0651587223923 -195.50545020466728 32.3548 0.3407 15425 +15427 3 -456.1384914498587 -194.4895597769723 32.7953 0.3386 15426 +15428 3 -456.1116282143602 -193.40550646344082 33.2562 0.3366 15427 +15429 3 -455.7952289254342 -192.30960394041836 33.6417 0.3346 15428 +15430 3 -455.3241629636909 -191.29179591348645 34.0049 0.3325 15429 +15431 3 -454.652945737511 -190.42800129942634 34.3773 0.3305 15430 +15432 3 -453.79049832016875 -189.7127233308577 34.6861 0.3285 15431 +15433 3 -452.90869309639345 -188.9893437988535 34.8765 0.3264 15432 +15434 3 -451.94643299709884 -188.3943481170999 34.9712 0.3244 15433 +15435 3 -450.94050329499794 -187.8527183963209 34.9849 0.3224 15434 +15436 3 -450.00499042687653 -187.24886914892605 34.8634 0.3203 15435 +15437 3 -449.1262080303583 -186.6015100912388 34.6091 0.3183 15436 +15438 3 -448.0768505854172 -186.30169120799982 34.3675 0.3162 15437 +15439 3 -447.0366047992199 -185.87157133598893 34.2026 0.3142 15438 +15440 3 -446.1547895085168 -185.15300011955847 34.1138 0.3122 15439 +15441 3 -445.2493949900775 -184.48373569798807 34.1513 0.3101 15440 +15442 3 -444.4007450613889 -183.73044418832077 34.2616 0.3081 15441 +15443 3 -443.40533597880165 -183.19611970984084 34.4025 0.3061 15442 +15444 3 -442.42693345028863 -182.6108483264645 34.5526 0.3041 15443 +15445 3 -441.57504445749646 -181.85104463868743 34.7136 0.302 15444 +15446 3 -440.5771656881061 -181.31424011039047 34.8972 0.3 15445 +15447 3 -439.5108636792025 -180.96821157716238 35.184 0.2979 15446 +15448 3 -439.10941368089607 -179.96674208243985 35.5718 0.2959 15447 +15449 3 -439.0510054637648 -178.8527120423729 35.926 0.2939 15448 +15450 3 -438.86959349170695 -177.82419671609233 36.4686 0.2918 15449 +15451 3 -438.74872838088504 -176.7868985887509 37.1417 0.2898 15450 +15452 3 -439.0460428271315 -175.81920691261993 37.896 0.2878 15451 +15453 3 -439.02872792087487 -174.8015710622189 38.6579 0.2857 15452 +15454 3 -439.24693551514804 -173.72368770776845 39.3145 0.2837 15453 +15455 3 -439.99364654479984 -172.94467417245832 39.9518 0.2817 15454 +15456 3 -439.58536657400134 -172.064459456923 40.5857 0.2796 15455 +15457 3 -438.85597812611996 -171.1893000302486 41.0976 0.2776 15456 +15458 3 -438.52562986056626 -170.1362190678123 41.6016 0.2756 15457 +15459 3 -438.4988271206202 -169.05704492842082 42.1162 0.2735 15458 +15460 3 -437.594249353259 -168.36918526773718 42.5723 0.2715 15459 +15461 3 -436.8501493614301 -167.52956258929157 42.9948 0.2695 15460 +15462 3 -436.5353155688406 -166.4627254962714 43.3446 0.2674 15461 +15463 3 -436.8716402336331 -165.3705230059555 43.65 0.2654 15462 +15464 3 -436.80837908591116 -164.3115665445328 43.9594 0.2634 15463 +15465 3 -436.1931471391092 -163.35490439850932 44.2968 0.2613 15464 +15466 3 -435.84822875065436 -162.33736048038799 44.6832 0.2593 15465 +15467 3 -435.9565932539458 -161.20586047401306 45.1268 0.2573 15466 +15468 3 -435.9476405608877 -160.07814536402873 45.6386 0.2552 15467 +15469 3 -436.2691712616794 -159.12839422902107 46.2801 0.2532 15468 +15470 3 -436.9193023616882 -158.44541593302517 47.1248 0.2512 15469 +15471 3 -437.0554956372843 -157.93679520823866 48.2294 0.2491 15470 +15472 3 -436.3969911907499 -157.18156833908316 49.252 0.2471 15471 +15473 3 -435.609876792291 -156.3863327175604 50.1603 0.2451 15472 +15474 3 -434.995938628762 -155.62228958961367 51.0661 0.243 15473 +15475 3 -434.5084976222321 -154.65776324722947 51.849 0.241 15474 +15476 3 -433.8382523902379 -153.7349978333841 52.3891 0.239 15475 +15477 3 -433.60837455947353 -152.61898244687595 52.7366 0.2369 15476 +15478 3 -433.34534824360287 -151.5296263539662 53.0457 0.2349 15477 +15479 3 -432.9382406233012 -150.46096972272667 53.2398 0.2329 15478 +15480 3 -432.13100585108936 -149.650347725411 53.4246 0.2308 15479 +15481 3 -486.71986477561154 -211.27584995231874 21.8606 0.9781 1 +15482 3 -486.89608414119874 -210.15750280353535 22.006 0.8939 15481 +15483 3 -487.30037814549723 -209.0913227821092 22.1126 0.8518 15482 +15484 3 -487.9720789982406 -208.17051840308844 22.1725 0.8096 15483 +15485 3 -488.25998042659774 -207.07177984567363 22.1883 0.7675 15484 +15486 3 -488.2623010555458 -205.9295926172906 22.1625 0.7254 15485 +15487 3 -488.23231038040757 -204.78571139119907 22.0958 0.6833 15486 +15488 3 -488.1700588298074 -203.64982365711268 21.9655 0.6412 15487 +15489 3 -488.4610710229964 -202.58510352326743 21.7401 0.599 15488 +15490 3 -488.87660459548454 -201.52057338271942 21.5511 0.5569 15489 +15491 3 -489.1280715990407 -200.43059739852416 21.3241 0.5148 15490 +15492 3 -489.3264373751607 -200.3525943930416 21.0886 0.4633 15491 +15493 3 -490.2666768065337 -199.8134129192396 21.8468 0.4376 15492 +15494 3 -491.1878324051117 -199.1690444817688 22.1657 0.4247 15493 +15495 3 -491.86599125220664 -198.27088109011515 22.4726 0.4118 15494 +15496 3 -492.0218976940833 -197.19534217804295 22.8152 0.399 15495 +15497 3 -491.25993758843856 -196.40906878576394 23.1342 0.3861 15496 +15498 3 -490.5045612197565 -195.55160336859728 23.3636 0.3732 15497 +15499 3 -490.1808803754203 -194.45490778138554 23.5019 0.3604 15498 +15500 3 -489.90742886883413 -194.08946737099595 23.6068 0.3089 15499 +15501 3 -489.22653146110736 -193.18845859182056 23.6928 0.3089 15500 +15502 3 -488.90268806549653 -192.1694031590206 23.7077 0.3089 15501 +15503 3 -489.32379507753876 -191.17849466455252 23.6363 0.3089 15502 +15504 3 -490.0180549957824 -190.32413498858446 23.4443 0.3089 15503 +15505 3 -490.22002541328186 -189.30123066732313 23.199 0.3089 15504 +15506 3 -490.0880464768815 -188.16844964684887 22.9961 0.3089 15505 +15507 3 -490.26747796273617 -187.06948399138736 22.8647 0.3089 15506 +15508 3 -490.24717427912526 -185.9595642463464 22.8106 0.3089 15507 +15509 3 -489.6619049407112 -185.01187439649442 22.828 0.3089 15508 +15510 3 -488.85621218004746 -184.20776102425515 22.932 0.3089 15509 +15511 3 -488.1266984877413 -183.39242270016024 23.1647 0.3089 15510 +15512 3 -488.31405536579575 -182.35824476080668 23.3853 0.3089 15511 +15513 3 -489.02777444590805 -181.49734971802638 23.6328 0.3089 15512 +15514 3 -489.1926869377728 -180.37572619828953 23.8146 0.3089 15513 +15515 3 -488.9248223076455 -179.26691449654444 23.9277 0.3089 15514 +15516 3 -488.4942907027153 -178.20718909949287 23.977 0.3089 15515 +15517 3 -488.6464499967228 -177.36781652474005 23.9374 0.3089 15516 +15518 3 -489.1355195382905 -176.40618318322635 23.8364 0.3077 15517 +15519 3 -490.105569591891 -175.9147939347587 23.7607 0.3071 15518 +15520 3 -491.1176920566187 -175.4574339710609 23.7016 0.3065 15519 +15521 3 -491.1651852964116 -174.42211467626632 23.616 0.306 15520 +15522 3 -490.7427114341726 -173.36396178763215 23.5341 0.3054 15521 +15523 3 -490.97559326554335 -172.268360736785 23.4538 0.3048 15522 +15524 3 -491.7377151521494 -171.42375981329747 23.3646 0.3042 15523 +15525 3 -492.19612752382886 -170.37961345502615 23.2501 0.3036 15524 +15526 3 -492.16297821189454 -169.25835308244612 23.0533 0.303 15525 +15527 3 -491.7971168850009 -168.17924689235934 22.8691 0.3025 15526 +15528 3 -491.7653571002678 -167.1373269836938 22.5478 0.3019 15527 +15529 3 -492.1970290507545 -166.0987815069991 22.2896 0.3013 15528 +15530 3 -493.1012027785199 -165.42602247137143 22.092 0.3007 15529 +15531 3 -494.1802310979597 -165.09735487965133 21.9483 0.3001 15530 +15532 3 -494.95765092459743 -164.3086475428333 21.8507 0.2995 15531 +15533 3 -495.1784128863013 -163.19279781896157 21.7809 0.2989 15532 +15534 3 -495.2212235531316 -162.0636354449845 21.719 0.2984 15533 +15535 3 -495.6230002007632 -161.01774416219365 21.596 0.2978 15534 +15536 3 -496.14198923026134 -160.018131033398 21.4849 0.2972 15535 +15537 3 -496.48800059049506 -158.960031445179 21.3898 0.2966 15536 +15538 3 -497.2477402296864 -158.10496033080233 21.3078 0.296 15537 +15539 3 -498.05187047883385 -157.29120657050015 21.2363 0.2954 15538 +15540 3 -498.6815251639995 -156.3913859898014 21.1673 0.2949 15539 +15541 3 -498.9806929022819 -155.31529848668143 21.0679 0.2943 15540 +15542 3 -499.5869245991918 -154.3563853208203 20.9298 0.2937 15541 +15543 3 -500.22877071287724 -153.408860452362 20.8064 0.2931 15542 +15544 3 -500.9304036771392 -152.5115947372804 20.696 0.2925 15543 +15545 3 -501.5867077910758 -151.61586046863263 20.5654 0.2919 15544 +15546 3 -501.9367820725578 -150.54228371429934 20.4045 0.2913 15545 +15547 3 -502.2593971862715 -149.44609271433467 20.2708 0.2908 15546 +15548 3 -502.6062525375055 -148.35638715074407 20.1559 0.2902 15547 +15549 3 -503.07524276730385 -147.32598084042093 20.0487 0.2896 15548 +15550 3 -503.8888976588043 -146.58995822695223 19.9052 0.289 15549 +15551 3 -504.705116782563 -145.84503141711738 19.7388 0.2884 15550 +15552 3 -505.1109258545735 -144.79822933597987 19.5921 0.2878 15551 +15553 3 -505.4812079491968 -143.73204881636727 19.4092 0.2872 15552 +15554 3 -506.15455492768467 -142.83557241034129 19.2259 0.2867 15553 +15555 3 -507.08363996968217 -142.2202827267478 19.0212 0.2861 15554 +15556 3 -507.91599796962583 -141.4673286710912 18.8483 0.2855 15555 +15557 3 -508.53848301993105 -140.51325787070658 18.7286 0.2849 15556 +15558 3 -509.4014651362331 -139.7910564327803 18.6517 0.2843 15557 +15559 3 -510.25003968090857 -139.0267518847572 18.6144 0.2837 15558 +15560 3 -511.0631313650274 -138.2219971623623 18.605 0.2832 15559 +15561 3 -511.9890652804961 -137.5581932499117 18.6168 0.2826 15560 +15562 3 -512.8101169049039 -136.76795091362655 18.64 0.282 15561 +15563 3 -513.501310175146 -135.858501078192 18.6718 0.2814 15562 +15564 3 -514.3828703575668 -135.1453188120285 18.7296 0.2808 15563 +15565 3 -515.3516019446328 -134.54064804853743 18.7806 0.2802 15564 +15566 3 -515.5609922837418 -133.4862222304318 18.8523 0.2797 15565 +15567 3 -516.1469652406993 -132.54423724981132 19.0021 0.2791 15566 +15568 3 -517.0889022228141 -131.97104741936744 19.1393 0.2785 15567 +15569 3 -518.2119546915911 -131.8925055046082 19.2794 0.2779 15568 +15570 3 -519.1668414162257 -131.3484756496217 19.4542 0.2773 15569 +15571 3 -519.8917597028308 -130.474734682432 19.6153 0.2767 15570 +15572 3 -520.7814517434562 -129.76149873069676 19.7556 0.2762 15571 +15573 3 -521.7082049666635 -129.14542634592786 19.9297 0.2756 15572 +15574 3 -522.7291303663075 -128.73899661231843 20.0912 0.275 15573 +15575 3 -523.6726292917257 -128.19656926443238 20.1132 0.2744 15574 +15576 3 -524.4267035025683 -127.3455875169536 20.1284 0.2738 15575 +15577 3 -525.1413167062193 -126.4629154095617 20.154 0.2732 15576 +15578 3 -525.8832541704867 -125.59974598869675 20.1575 0.2726 15577 +15579 3 -526.5807945109036 -124.69837047677555 20.1412 0.2721 15578 +15580 3 -527.3833723854892 -123.88305782801703 20.1174 0.2715 15579 +15581 3 -527.8934022405904 -122.9409138491553 20.0906 0.2709 15580 +15582 3 -527.7176632071485 -121.83717407360811 20.044 0.2703 15581 +15583 3 -527.6252965638135 -120.76514588218822 19.9414 0.2697 15582 +15584 3 -528.1402262250966 -119.77931286695141 19.8027 0.2691 15583 +15585 3 -528.3697606248475 -118.72895974093564 19.6742 0.2685 15584 +15586 3 -528.3074518356422 -117.58663720120015 19.5544 0.268 15585 +15587 3 -528.3202726541624 -116.46151326731004 19.3869 0.2674 15586 +15588 3 -528.974049142404 -115.62474654150026 19.265 0.2668 15587 +15589 3 -529.7417955974755 -114.79557235550243 19.1278 0.2662 15588 +15590 3 -530.5645306544776 -114.01183894037982 18.9633 0.2656 15589 +15591 3 -531.4647228846752 -113.31566628313735 18.7824 0.265 15590 +15592 3 -531.9659334261381 -112.29664116415037 18.6333 0.2645 15591 +15593 3 -532.8298064090318 -111.55421829312172 18.5136 0.2639 15592 +15594 3 -533.6953192058756 -110.80536416947723 18.4082 0.2633 15593 +15595 3 -534.4130572925062 -109.91619320785051 18.3172 0.2627 15594 +15596 3 -535.2066664239535 -109.12914611492454 18.1651 0.2621 15595 +15597 3 -535.4524848760693 -108.0351984979888 18.0186 0.2615 15596 +15598 3 -536.4380972745982 -107.47341384185603 17.8608 0.2609 15597 +15599 3 -537.4486199909862 -107.03712235710779 17.678 0.2604 15598 +15600 3 -538.1857763796021 -106.1609321330566 17.5369 0.2598 15599 +15601 3 -538.9720671469757 -105.3568991180984 17.4152 0.2592 15600 +15602 3 -539.9254055482681 -104.77560141242489 17.2934 0.2586 15601 +15603 3 -540.6915048812225 -103.9901230727827 17.2606 0.258 15602 +15604 3 -541.3340084516585 -103.10008748811381 17.2358 0.2574 15603 +15605 3 -542.3350170908077 -102.54724463128323 17.2108 0.2569 15604 +15606 3 -543.1131415458735 -101.82726969947754 17.1706 0.2563 15605 +15607 3 -543.487422014973 -100.77644180184132 17.0589 0.2557 15606 +15608 3 -543.8859222916512 -99.74185739277289 16.8831 0.2551 15607 +15609 3 -544.1559910482151 -98.64958689663737 16.7709 0.2545 15608 +15610 3 -544.5569645647297 -97.61578548483047 16.7268 0.2539 15609 +15611 3 -545.24398754258 -96.70554909910118 16.6988 0.2534 15610 +15612 3 -545.7590081962849 -95.71002889023674 16.6817 0.2528 15611 +15613 3 -545.8308301093592 -94.60518107139364 16.6273 0.2522 15612 +15614 3 -546.204276452286 -93.61502132218416 16.5536 0.2516 15613 +15615 3 -546.7677203424262 -92.62603718041862 16.4912 0.251 15614 +15616 3 -547.444269576354 -91.7198800946594 16.4479 0.2504 15615 +15617 3 -548.4608578790114 -91.45988341602646 16.4289 0.2498 15616 +15618 3 -549.2153390577553 -90.7860331574962 16.4302 0.2493 15617 +15619 3 -549.7440793294667 -89.7896931427068 16.506 0.2487 15618 +15620 3 -550.494890789317 -88.9435129008213 16.5878 0.2481 15619 +15621 3 -551.2013320691526 -88.04625725266735 16.6454 0.2475 15620 +15622 3 -551.9522445883524 -87.18558150158046 16.665 0.2469 15621 +15623 3 -552.757181023464 -86.39205272741398 16.6036 0.2463 15622 +15624 3 -553.7796889984531 -85.97275693553968 16.5946 0.2458 15623 +15625 3 -554.9123311545416 -85.90710446984812 16.5656 0.2452 15624 +15626 3 -555.791441083728 -85.24970792102422 16.4572 0.2446 15625 +15627 3 -556.3193479295533 -84.24615365635742 16.3552 0.244 15626 +15628 3 -557.0613630623675 -83.37966098894773 16.2691 0.2434 15627 +15629 3 -557.8509506306362 -82.55456304807328 16.1723 0.2428 15628 +15630 3 -558.0894875273418 -81.4598223669482 16.0352 0.2422 15629 +15631 3 -558.7264443999596 -80.51716630961607 15.9364 0.2417 15630 +15632 3 -559.707302666673 -79.92949153508496 15.8787 0.2411 15631 +15633 3 -560.5340129094487 -79.13841251596645 15.849 0.2405 15632 +15634 3 -561.2614886183314 -78.25902003647519 15.8451 0.2399 15633 +15635 3 -562.2285972683552 -77.65271952596154 15.8651 0.2393 15634 +15636 3 -562.9730853449198 -76.7871512768597 15.9069 0.2387 15635 +15637 3 -563.6585053174832 -75.89953900158909 15.9946 0.2382 15636 +15638 3 -564.6610459012527 -75.35801308540869 16.1018 0.2376 15637 +15639 3 -565.5683503256053 -74.74352633083191 16.1889 0.237 15638 +15640 3 -565.9524362206764 -73.67009149573136 16.2617 0.2364 15639 +15641 3 -566.5174221223647 -72.68761597904222 16.2952 0.2358 15640 +15642 3 -567.0525868367113 -71.69616846226768 16.2932 0.2352 15641 +15643 3 -567.1706110916078 -70.61164067320186 16.3275 0.2346 15642 +15644 3 -567.2489078759421 -69.52137284208743 16.4648 0.2341 15643 +15645 3 -567.9745476678835 -68.7083032802717 16.712 0.2335 15644 +15646 3 -568.8763663881564 -68.0120633174964 16.9747 0.2329 15645 +15647 3 -569.6368953364034 -67.18527818889385 17.2973 0.2323 15646 +15648 3 -569.8462926875933 -66.09372919809474 17.6253 0.2317 15647 +15649 3 -570.207548598373 -65.08324991729441 18.0271 0.2311 15648 +15650 3 -570.0691752180203 -63.9650219407128 18.3497 0.2306 15649 +15651 3 -570.6834878463237 -63.03037950924127 18.6488 0.23 15650 +15652 3 -571.6360775023577 -62.40142113445228 19.1204 0.2294 15651 +15653 3 -488.2618614463373 -177.97208392987812 24.1816 0.3089 15516 +15654 3 -487.84658821401445 -176.9196029834871 24.15 0.3073 15653 +15655 3 -488.10453710091133 -175.80708381432706 24.1373 0.3065 15654 +15656 3 -488.54600115349456 -174.7522953472509 24.1198 0.3056 15655 +15657 3 -488.9317200525354 -173.67568194359913 24.0955 0.3048 15656 +15658 3 -489.17433674739766 -172.55740309672143 24.0608 0.304 15657 +15659 3 -489.38613372109694 -171.43425138749785 24.0112 0.3032 15658 +15660 3 -489.6611121486701 -170.32735402804244 23.9438 0.3024 15659 +15661 3 -489.73138218536906 -169.18693541106776 23.8563 0.3016 15660 +15662 3 -489.6440267705793 -168.05177293745137 23.7324 0.3008 15661 +15663 3 -489.3307450564657 -166.9866361539339 23.511 0.3 15662 +15664 3 -488.81265624668845 -166.00267087752232 23.2257 0.2992 15663 +15665 3 -488.5464145536032 -164.8954889227998 22.9676 0.2984 15664 +15666 3 -488.7218066029982 -163.83455723837852 22.6939 0.2976 15665 +15667 3 -488.8904906673785 -162.8366148620741 22.3643 0.2967 15666 +15668 3 -488.663845090737 -161.7303643377403 22.062 0.2959 15667 +15669 3 -488.61050128953633 -160.59534378335658 21.7889 0.2951 15668 +15670 3 -488.55942200159296 -159.45947944007293 21.5284 0.2943 15669 +15671 3 -488.1806472426567 -158.40141804204694 21.3009 0.2935 15670 +15672 3 -487.7703169369733 -157.35220014273435 21.0594 0.2927 15671 +15673 3 -487.7095131485524 -156.23406385886122 20.8374 0.2919 15672 +15674 3 -488.25440186519006 -155.25890019235143 20.6452 0.2911 15673 +15675 3 -488.542995298387 -154.1673755887278 20.4743 0.2903 15674 +15676 3 -488.49273226333526 -153.04692791600613 20.2579 0.2895 15675 +15677 3 -488.34117197548846 -152.01281822204336 19.9121 0.2887 15676 +15678 3 -487.82154766805763 -151.0192330575371 19.6249 0.2879 15677 +15679 3 -487.3715539403976 -149.9674572377605 19.4114 0.287 15678 +15680 3 -486.5278605583096 -149.21092340704254 19.2623 0.2862 15679 +15681 3 -485.63061172013624 -148.5012294431422 19.1723 0.2854 15680 +15682 3 -484.7503656809034 -147.77615611552974 19.1356 0.2846 15681 +15683 3 -484.39024360178576 -146.6914757856021 19.1356 0.2838 15682 +15684 3 -484.3294904440897 -145.5491565028138 19.1413 0.283 15683 +15685 3 -484.08512036107106 -144.43148442544694 19.1499 0.2822 15684 +15686 3 -483.866630329523 -143.31386653183833 19.1634 0.2814 15685 +15687 3 -483.1858102942569 -142.40967592716464 19.1799 0.2806 15686 +15688 3 -482.1706073785104 -142.00796353021894 19.1974 0.2798 15687 +15689 3 -481.57647411144137 -141.03847618581372 19.2214 0.279 15688 +15690 3 -481.17095212133177 -139.989268353429 19.2966 0.2781 15689 +15691 3 -480.86398677842317 -138.98064274982127 19.4092 0.2773 15690 +15692 3 -480.7294729081609 -137.94409386592474 19.3675 0.2765 15691 +15693 3 -480.2454872025809 -136.91657140544314 19.3229 0.2757 15692 +15694 3 -479.82460933354776 -135.87291757904376 19.2861 0.2749 15693 +15695 3 -479.2215446301904 -134.91387673863883 19.2602 0.2741 15694 +15696 3 -478.95040007607633 -133.81806896317164 19.2499 0.2733 15695 +15697 3 -478.89218746374956 -132.6781591677203 19.267 0.2725 15696 +15698 3 -478.7585888472545 -131.5421927687143 19.3204 0.2717 15697 +15699 3 -479.1087782497185 -130.81891772255145 19.3869 0.2709 15698 +15700 3 -480.15287635086906 -130.55735229063467 19.5161 0.2701 15699 +15701 3 -480.9835471630847 -129.8334568549999 19.7175 0.2692 15700 +15702 3 -481.8094439117297 -129.05941744348536 19.9048 0.2684 15701 +15703 3 -482.3630581908231 -128.13836583256236 20.0459 0.2676 15702 +15704 3 -482.23348794748716 -127.03719759744033 20.1448 0.2668 15703 +15705 3 -482.3175580295001 -125.92509220616199 20.2035 0.266 15704 +15706 3 -482.74438485574956 -124.87034380469663 20.2242 0.2652 15705 +15707 3 -483.53476499002124 -124.07197621808703 20.2183 0.2644 15706 +15708 3 -484.17579435262854 -123.14304658874192 20.21 0.2636 15707 +15709 3 -483.8421722727819 -122.16759926682298 20.2448 0.2628 15708 +15710 3 -484.466474248131 -121.4602423671075 20.1743 0.262 15709 +15711 3 -485.3893137774898 -120.78837094112404 20.0879 0.2612 15710 +15712 3 -486.0965075577177 -119.9032084209014 19.9836 0.2604 15711 +15713 3 -486.43048678375897 -118.81672859753937 19.8496 0.2595 15712 +15714 3 -486.9308064586304 -117.81792491165484 19.6169 0.2587 15713 +15715 3 -487.37794195527033 -116.78994772433757 19.3377 0.2579 15714 +15716 3 -487.6593516354593 -115.68469017883254 19.0812 0.2571 15715 +15717 3 -487.9997520471886 -114.60465848499456 18.8192 0.2563 15716 +15718 3 -488.4193850535024 -113.54098545722144 18.6083 0.2555 15717 +15719 3 -488.85675292920723 -112.48378424586124 18.4402 0.2547 15718 +15720 3 -489.2044517732551 -111.39648461657418 18.3047 0.2539 15719 +15721 3 -489.4357580413615 -110.27662645129845 18.1768 0.2531 15720 +15722 3 -489.50356420486503 -109.1984989197926 17.9847 0.2523 15721 +15723 3 -489.4854194257556 -108.17195176695884 17.705 0.2515 15722 +15724 3 -489.78866340916136 -107.07402315064161 17.4564 0.2506 15723 +15725 3 -490.0207254346071 -105.96470248178792 17.1965 0.2498 15724 +15726 3 -490.35709371804364 -104.88544016525037 16.9296 0.249 15725 +15727 3 -490.5600265609876 -103.77436145010248 16.6979 0.2482 15726 +15728 3 -490.36008084174165 -102.68188472753346 16.4596 0.2474 15727 +15729 3 -489.8493242180996 -101.67452951639603 16.2074 0.2466 15728 +15730 3 -489.68573860604084 -100.60878690322556 15.9459 0.2458 15729 +15731 3 -489.7795163116231 -99.48701445217509 15.6604 0.245 15730 +15732 3 -490.28463018392085 -98.52873811102268 15.4058 0.2442 15731 +15733 3 -490.6832013191652 -97.49408313947421 15.1962 0.2434 15732 +15734 3 -490.8424587456951 -96.37159925001524 14.9955 0.2426 15733 +15735 3 -491.30082700054413 -95.34852462764073 14.8407 0.2417 15734 +15736 3 -491.8683806875239 -94.35544786203013 14.7403 0.2409 15735 +15737 3 -491.8237016571404 -93.2698016101395 14.6822 0.2401 15736 +15738 3 -492.0533207375189 -92.17900206488562 14.6502 0.2393 15737 +15739 3 -492.36222985318716 -91.07712550271677 14.6371 0.2385 15738 +15740 3 -492.0764952444166 -89.99260091408323 14.6388 0.2377 15739 +15741 3 -491.92761160756413 -88.86211795858256 14.6458 0.2369 15740 +15742 3 -492.0698463033983 -87.73075957535423 14.6555 0.2361 15741 +15743 3 -492.5663327117287 -86.70528987987643 14.6691 0.2353 15742 +15744 3 -492.88972401272343 -85.60987832414 14.6881 0.2345 15743 +15745 3 -492.9989488857369 -84.47272325243028 14.7163 0.2337 15744 +15746 3 -493.34502479274283 -83.38379387612065 14.7515 0.2328 15745 +15747 3 -493.36926065040154 -82.24405669887167 14.7991 0.232 15746 +15748 3 -493.07139610503634 -81.14409175278732 14.8794 0.2312 15747 +15749 3 -492.76787294130304 -80.04496348953617 14.9811 0.2304 15748 +15750 3 -492.79784153284334 -78.90276343546466 15.1838 0.2296 15749 +15751 3 -490.47420088356694 -194.21277160172497 23.8529 0.3604 15499 +15752 3 -491.4725059278858 -193.76917132164442 24.6148 0.3536 15751 +15753 3 -492.59387822101553 -193.68256485421352 24.8942 0.3502 15752 +15754 3 -493.45900847460484 -193.11642672237232 25.2758 0.3469 15753 +15755 3 -494.442201318869 -192.56199092718262 25.6547 0.3435 15754 +15756 3 -495.57097715488646 -192.41791205287055 25.9852 0.3401 15755 +15757 3 -496.694565591123 -192.42111298329598 26.3436 0.3367 15756 +15758 3 -497.83589195159743 -192.4631005872541 26.6535 0.3334 15757 +15759 3 -498.97632013731345 -192.5625742180544 26.9435 0.33 15758 +15760 3 -500.09999375236396 -192.49131681956646 27.2997 0.3266 15759 +15761 3 -500.8734525113755 -191.66943780893996 27.6847 0.3232 15760 +15762 3 -501.7921616118527 -191.04528754762438 28.1445 0.3199 15761 +15763 3 -502.8059825106652 -191.29652439828695 28.765 0.3165 15762 +15764 3 -503.3018809761355 -192.07170483660065 29.5344 0.3131 15763 +15765 3 -502.8360988718998 -192.75188710730004 30.464 0.3098 15764 +15766 3 -502.71241230001635 -193.46750462520728 31.3006 0.3064 15765 +15767 3 -503.6989459489763 -193.68156115855703 32.1012 0.303 15766 +15768 3 -504.7253842361072 -193.749188392064 32.8574 0.2996 15767 +15769 3 -505.7973723054015 -194.04749901757154 33.5101 0.2963 15768 +15770 3 -506.90285389410644 -194.18812389813837 34.0738 0.2929 15769 +15771 3 -508.02656431782043 -194.13305935749344 34.5195 0.2895 15770 +15772 3 -509.09357382694276 -193.7696475835473 34.858 0.2861 15771 +15773 3 -509.9976666292142 -193.1017674259735 35.1464 0.2828 15772 +15774 3 -510.72433920697983 -192.2344648174662 35.3923 0.2794 15773 +15775 3 -511.4961246003247 -191.40126857010338 35.593 0.276 15774 +15776 3 -512.2696103031722 -190.5665202442647 35.779 0.2726 15775 +15777 3 -513.0108560586859 -189.6959954485622 35.9769 0.2693 15776 +15778 3 -513.7689659508547 -188.84254727122763 36.2258 0.2659 15777 +15779 3 -514.5003286118504 -187.99795265953418 36.5795 0.2625 15778 +15780 3 -515.2382165727302 -187.17762552528313 37.0507 0.2592 15779 +15781 3 -515.988919665064 -186.38320538633883 37.6219 0.2558 15780 +15782 3 -516.4148854213047 -185.40199444851228 38.2463 0.2524 15781 +15783 3 -516.6880989926032 -184.32747895562335 38.8892 0.249 15782 +15784 3 -517.0535150348611 -183.28886547310904 39.5223 0.2457 15783 +15785 3 -517.8655263572776 -182.5948416534405 40.096 0.2423 15784 +15786 3 -518.4603932415732 -181.69409970928086 40.5992 0.2389 15785 +15787 3 -518.0167493428486 -180.68285449118363 41.0376 0.2355 15786 +15788 3 -517.2889301464375 -179.8011929533272 41.6147 0.2322 15787 +15789 3 -488.6921900430549 -199.5957919606218 21.164 0.5148 15491 +15790 3 -487.8192928647651 -198.873138187274 21.0802 0.469 15789 +15791 3 -486.9957168015831 -198.0996758752292 21.1027 0.4462 15790 +15792 3 -486.75619184280174 -196.99820672263309 21.1417 0.4233 15791 +15793 3 -487.0012073659008 -195.88247848805244 21.1672 0.4004 15792 +15794 3 -487.1855822765815 -194.75276396999425 21.1779 0.3775 15793 +15795 3 -487.46862496074027 -193.64432785593792 21.1611 0.3546 15794 +15796 3 -487.72733315800986 -192.54064913064443 21.068 0.3604 15795 +15797 3 -486.5560296858432 -191.7535894276418 22.1892 0.3604 15796 +15798 3 -485.51339513833676 -191.31611062776008 22.4574 0.3572 15797 +15799 3 -484.5536720313781 -190.72522148589883 22.7053 0.3557 15798 +15800 3 -483.7001260516412 -189.98005147142226 22.9591 0.3541 15799 +15801 3 -482.80694970345746 -189.284083935509 23.1995 0.3526 15800 +15802 3 -481.89352468224916 -188.6002362692626 23.3923 0.351 15801 +15803 3 -480.9727303701561 -187.92372710094548 23.5155 0.3494 15802 +15804 3 -479.9819879799961 -187.423282881936 23.5215 0.3479 15803 +15805 3 -478.92468826594694 -187.0667372822275 23.5429 0.3463 15804 +15806 3 -477.8413597712139 -186.74740179641447 23.5362 0.3448 15805 +15807 3 -477.6493561189758 -185.7455222789438 23.5187 0.3432 15806 +15808 3 -478.7774645769003 -185.9202064429635 23.5336 0.3416 15807 +15809 3 -479.8145661030643 -185.8932449068764 23.5721 0.3401 15808 +15810 3 -479.689418079014 -184.9764997830408 23.8399 0.3385 15809 +15811 3 -479.1874439603466 -184.02983285418563 24.2101 0.337 15810 +15812 3 -478.87902759831167 -183.00501143187384 24.6765 0.3354 15811 +15813 3 -478.35271899275506 -182.06310189178143 25.1557 0.3338 15812 +15814 3 -477.6686699603132 -181.14759079342414 25.5455 0.3323 15813 +15815 3 -477.0817441331409 -180.18052270719747 25.8668 0.3307 15814 +15816 3 -476.4762803054606 -179.21907267554184 26.0845 0.3292 15815 +15817 3 -475.5837987208775 -178.56277537158576 26.2053 0.3276 15816 +15818 3 -474.7035758703471 -177.86040026994553 26.2576 0.326 15817 +15819 3 -474.59075438406876 -176.86519192882596 26.2181 0.3245 15818 +15820 3 -475.06043661870683 -175.84199957229404 26.1532 0.3229 15819 +15821 3 -474.86673917086057 -174.8385608702809 26.1034 0.3214 15820 +15822 3 -473.9109093278089 -174.31322882182795 26.0757 0.3198 15821 +15823 3 -473.0338212250853 -173.633417039008 26.1316 0.3182 15822 +15824 3 -472.8824570402294 -172.53941567998558 26.2041 0.3167 15823 +15825 3 -472.3829636716657 -171.5223966660233 26.2679 0.3151 15824 +15826 3 -472.1475653866322 -170.40877388994363 26.3131 0.3136 15825 +15827 3 -472.2696492118441 -169.27659549869 26.3381 0.312 15826 +15828 3 -472.4127241435449 -168.14919868127444 26.3052 0.3104 15827 +15829 3 -472.7094660157686 -167.04970081348694 26.2469 0.3089 15828 +15830 3 -472.4472971978296 -166.73286236742896 25.8707 0.2574 15829 +15831 3 -471.73080175204916 -165.84641620088757 26.1527 0.2562 15830 +15832 3 -470.82207036710406 -165.1835794788996 26.3134 0.2555 15831 +15833 3 -469.8599990626334 -164.5659567258261 26.4662 0.2549 15832 +15834 3 -469.0598802397102 -163.80145308999175 26.6162 0.2543 15833 +15835 3 -468.8559323908545 -162.72919128663068 26.7746 0.2537 15834 +15836 3 -467.94155926444944 -162.05913024783763 26.9839 0.2531 15835 +15837 3 -467.05478367201215 -161.3793688936423 27.2164 0.2524 15836 +15838 3 -466.01527626805944 -161.001859427367 27.5031 0.2518 15837 +15839 3 -465.16578590140386 -160.27847684051588 27.8261 0.2512 15838 +15840 3 -464.2620243869344 -159.60603385039423 28.1165 0.2506 15839 +15841 3 -463.31196202795377 -158.99409310649162 28.3928 0.2499 15840 +15842 3 -462.4034295047603 -158.30382099761002 28.6272 0.2493 15841 +15843 3 -461.3623195937072 -157.91492373211827 28.819 0.2487 15842 +15844 3 -460.2301517675677 -157.75401968165747 28.9862 0.2481 15843 +15845 3 -459.12901408582997 -157.46370906204962 29.1525 0.2474 15844 +15846 3 -458.46889025528685 -156.7051553933161 29.3502 0.2468 15845 +15847 3 -457.923054482042 -155.83603712826454 29.6814 0.2462 15846 +15848 3 -456.9474917995698 -155.4141844258107 30.1006 0.2456 15847 +15849 3 -455.882205699582 -155.0219838455295 30.5239 0.245 15848 +15850 3 -454.99695474359805 -154.3908040257241 31.0097 0.2443 15849 +15851 3 -453.968069516695 -153.97209238287127 31.4552 0.2437 15850 +15852 3 -452.8407372460515 -153.79818766307974 31.8363 0.2431 15851 +15853 3 -451.8082064288152 -153.56713493866968 32.2804 0.2425 15852 +15854 3 -450.7988309945056 -153.1177049300895 32.7219 0.2419 15853 +15855 3 -449.70639489224857 -152.89296147081777 33.1439 0.2412 15854 +15856 3 -448.74984028691335 -152.3085136485 33.4771 0.2406 15855 +15857 3 -448.0438891475354 -151.41805904055468 33.7322 0.24 15856 +15858 3 -447.24316655343335 -150.60419797913548 33.9296 0.2394 15857 +15859 3 -446.3613512627303 -149.88562676270504 34.1113 0.2388 15858 +15860 3 -445.50703945872624 -149.13472756738028 34.2958 0.2381 15859 +15861 3 -444.7330237341006 -148.29751713503234 34.4817 0.2375 15860 +15862 3 -443.9711215673477 -147.44979615009842 34.6755 0.2369 15861 +15863 3 -443.1387993096682 -146.6658503232895 34.8533 0.2363 15862 +15864 3 -442.3639403883148 -145.82609253559175 35.0081 0.2356 15863 +15865 3 -441.88321417678 -144.795324201026 35.1464 0.235 15864 +15866 3 -441.12135562867115 -143.96054338987045 35.317 0.2344 15865 +15867 3 -440.19803744601677 -143.3074342232069 35.5376 0.2338 15866 +15868 3 -439.2968069081753 -142.60819712632073 35.7728 0.2331 15867 +15869 3 -438.39869770027974 -141.9041582277552 36.0394 0.2325 15868 +15870 3 -437.5006590548644 -141.20019018775588 36.3236 0.2319 15869 +15871 3 -436.60254984696894 -140.4961512891904 36.6114 0.2313 15870 +15872 3 -435.7045820601197 -139.792112686711 36.8908 0.2307 15871 +15873 3 -434.63760897450436 -139.39510023782265 37.133 0.23 15872 +15874 3 -433.79285580624105 -139.1109832641845 38.2407 0.2294 15873 +15875 3 -472.8246043758613 -166.93828946740788 26.2252 0.3089 15829 +15876 3 -473.6465163699911 -166.14239206578782 26.2427 0.3089 15875 +15877 3 -474.66194945767523 -165.62359131941565 26.3031 0.3089 15876 +15878 3 -475.4910273315319 -164.91751167866582 26.5095 0.3089 15877 +15879 3 -476.29270427259814 -164.1272287785835 26.7684 0.3089 15878 +15880 3 -477.1670809980972 -163.40017214949222 27.0135 0.3089 15879 +15881 3 -478.1680928941936 -162.84577366115244 27.1803 0.3089 15880 +15882 3 -479.0036904564273 -162.06531987393043 27.2753 0.3089 15881 +15883 3 -479.31982368680036 -160.99167205893056 27.3061 0.3089 15882 +15884 3 -478.8973397576335 -159.93832748587022 27.2494 0.3089 15883 +15885 3 -478.79523144082657 -158.89222977454548 27.0768 0.3089 15884 +15886 3 -479.54589041632994 -158.11888137149793 26.8864 0.3089 15885 +15887 3 -480.6252006613465 -157.99329588267707 26.8513 0.3089 15886 +15888 3 -481.7037987111528 -158.2754275663888 26.946 0.3089 15887 +15889 3 -482.8080298391427 -158.2365150237036 27.1144 0.3089 15888 +15890 3 -483.78633324023883 -157.72081852826886 27.2887 0.3089 15889 +15891 3 -484.5719020040898 -156.89012601761186 27.4253 0.3089 15890 +15892 3 -485.3461810672127 -156.04795471531668 27.505 0.3089 15891 +15893 3 -486.1042909593815 -155.194506537982 27.5215 0.3089 15892 +15894 3 -486.7502095630566 -154.26070809751084 27.4668 0.3089 15893 +15895 3 -487.2910325996852 -153.26856531894927 27.3421 0.3089 15894 +15896 3 -487.7163005374782 -152.21536929204584 27.2104 0.3089 15895 +15897 3 -488.1254701628834 -151.1508258276228 27.1127 0.3089 15896 +15898 3 -488.85033376754393 -150.33697682157887 27.0632 0.3089 15897 +15899 3 -489.8794895280814 -149.8496711264014 27.062 0.3089 15898 +15900 3 -490.9094279897943 -149.3600336124338 27.0832 0.3089 15899 +15901 3 -491.9200832587741 -148.82665643136633 27.1095 0.3089 15900 +15902 3 -492.8162532255062 -148.16031532447943 27.1277 0.3089 15901 +15903 3 -493.12412935325005 -147.14654229763093 27.1422 0.3089 15902 +15904 3 -493.14750128815325 -146.01415723827225 27.1717 0.3089 15903 +15905 3 -493.7002819392603 -145.11976186610076 27.1612 0.3089 15904 +15906 3 -494.6696946699657 -144.56126670269614 27.0694 0.3089 15905 +15907 3 -495.52620822680205 -143.85524450265171 26.9377 0.3089 15906 +15908 3 -496.17615570182267 -142.92223231638926 26.8068 0.3089 15907 +15909 3 -496.593359086944 -141.87071646513294 26.7287 0.3089 15908 +15910 3 -496.596472281895 -140.75525959101486 26.7239 0.3089 15909 +15911 3 -496.36263643835116 -139.6383873878179 26.7541 0.3089 15910 +15912 3 -496.41186829086956 -138.5156731433649 26.7949 0.3089 15911 +15913 3 -496.928451386064 -137.51690350738312 26.8344 0.3089 15912 +15914 3 -497.8623916192265 -136.91300843298657 26.8668 0.3089 15913 +15915 3 -498.7512974056432 -136.2038013525968 26.889 0.3089 15914 +15916 3 -498.4112478283144 -135.19114667554328 26.8725 0.3089 15915 +15917 3 -498.38525552765225 -134.06261807142803 26.8328 0.3089 15916 +15918 3 -498.75557117399194 -133.01418604116762 26.9065 0.3089 15917 +15919 3 -499.0215099998607 -131.9356248000248 27.0479 0.3089 15918 +15920 3 -499.5785695129764 -130.9563853865781 27.1071 0.3089 15919 +15921 3 -500.5044220047647 -130.33147226185653 27.0775 0.3089 15920 +15922 3 -501.47454972691196 -129.83675976684418 27.126 0.3089 15921 +15923 3 -502.1090399675735 -128.92393851681473 27.0587 0.3089 15922 +15924 3 -502.53987098190686 -127.94931387261141 26.8645 0.3089 15923 +15925 3 -503.15422091706023 -126.99685238930775 26.7413 0.3089 15924 +15926 3 -504.08404809643594 -126.39860557026546 26.7 0.3089 15925 +15927 3 -505.21751331539656 -126.3451170910713 26.7602 0.3089 15926 +15928 3 -505.7585915168223 -126.37941329992736 27.0029 0.3089 15927 +15929 3 -504.99324019136895 -126.84139114423033 27.4987 0.3089 15928 +15930 3 -503.9035960631886 -126.83670564296224 28.0274 0.3089 15929 +15931 3 -503.29996909230744 -126.14622336945703 28.4682 0.3089 15930 +15932 3 -504.0463449524822 -125.52729845854421 28.8308 0.3089 15931 +15933 3 -505.0617949170746 -125.00043671253368 29.127 0.3089 15932 +15934 3 -505.85524149724733 -124.29102977401936 29.4955 0.3089 15933 +15935 3 -506.3677183486356 -123.29465570932723 29.834 0.3089 15934 +15936 3 -506.05363705643833 -122.23991174423824 30.1428 0.3089 15935 +15937 3 -505.24301748924165 -121.89767121876244 30.527 0.3089 15936 +15938 3 -506.0191699217412 -121.34280195350706 31.0358 0.3089 15937 +15939 3 -506.51307877393845 -120.33260040147837 31.4689 0.3089 15938 +15940 3 -507.12724572787556 -119.4675371247803 31.8357 0.3089 15939 +15941 3 -507.90551230427434 -118.67968009075668 32.2025 0.3089 15940 +15942 3 -508.2714341132088 -117.73723440014834 32.6872 0.3089 15941 +15943 3 -508.8845037155055 -117.80159201616749 33.2595 0.3089 15942 +15944 3 -509.89672136946 -117.67027990315893 33.724 0.3089 15943 +15945 3 -510.4738843794204 -116.7144878651435 34.0886 0.3089 15944 +15946 3 -510.4552305766875 -115.59332855191298 34.3834 0.3089 15945 +15947 3 -509.94437289369586 -114.60046884997692 34.6326 0.3089 15946 +15948 3 -509.3266871406263 -113.70128947384842 34.785 0.3089 15947 +15949 3 -509.20693949625627 -112.56931188057737 34.879 0.3089 15948 +15950 3 -508.9260472529622 -111.46853393854846 34.981 0.3089 15949 +15951 3 -508.4435693069273 -110.49765401209527 35.0792 0.3089 15950 +15952 3 -507.8363542429332 -109.56208047887685 35.1215 0.3089 15951 +15953 3 -507.50056694679085 -108.47250133914011 35.1624 0.3089 15952 +15954 3 -507.4349512897628 -107.35605204089461 35.2517 0.3089 15953 +15955 3 -507.6208513350832 -106.24090714755124 35.397 0.3089 15954 +15956 3 -507.64504307591153 -105.12224170619905 35.5653 0.3089 15955 +15957 3 -507.7686992074405 -104.01587606088316 35.7221 0.3089 15956 +15958 3 -508.53545274019825 -103.28944263653952 35.8422 0.3089 15957 +15959 3 -509.53807750640897 -102.74148221079608 35.9223 0.3089 15958 +15960 3 -510.4132268661556 -102.01690207848847 35.9685 0.3089 15959 +15961 3 -510.76000740158946 -100.99670510719113 35.9912 0.3089 15960 +15962 3 -510.9322856313056 -99.86944014208055 35.9839 0.3089 15961 +15963 3 -511.6498508036475 -99.06285907148569 35.9456 0.3089 15962 +15964 3 -512.4102751395117 -98.25226650463998 35.9934 0.3089 15963 +15965 3 -512.635055407447 -97.17602326022592 36.1024 0.3089 15964 +15966 3 -512.6139251079304 -96.055636581243 36.1323 0.3089 15965 +15967 3 -513.0205909966298 -95.00487648732602 36.1542 0.3089 15966 +15968 3 -512.933917223666 -93.88187770412094 36.1872 0.3089 15967 +15969 3 -513.0058843129203 -92.7414626401796 36.2292 0.3089 15968 +15970 3 -513.5370610158046 -91.72971276480871 36.2746 0.3089 15969 +15971 3 -513.3239355842018 -91.49471872147129 35.6115 0.3089 15970 +15972 3 -512.9513579677537 -90.58389025259149 35.037 0.2974 15971 +15973 3 -513.2318868482789 -89.49404582461503 34.8326 0.2917 15972 +15974 3 -513.6378002365861 -88.43119260276686 34.6354 0.286 15973 +15975 3 -513.3819234217204 -87.40570336069061 34.3801 0.2803 15974 +15976 3 -513.7131957959841 -86.4300217455878 34.1194 0.2746 15975 +15977 3 -514.3299717992966 -85.4671001383227 33.8733 0.2688 15976 +15978 3 -514.7883466620258 -84.47464332051246 33.5261 0.2631 15977 +15979 3 -514.592385697295 -83.40402458804891 33.1632 0.2574 15978 +15980 3 -514.6124069436312 -82.31844308503085 32.7342 0.2517 15979 +15981 3 -515.1282206615252 -81.31564132075619 32.3641 0.246 15980 +15982 3 -515.3842010788892 -80.36653076559091 31.8702 0.2402 15981 +15983 3 -515.6881503910097 -79.26945215598192 31.08 0.2345 15982 +15984 3 -513.5019338111814 -91.11410141866949 36.3871 0.3089 15970 +15985 3 -513.843093035097 -90.07692207837326 36.5884 0.3042 15984 +15986 3 -514.5768785073044 -89.22342297422765 36.7643 0.3018 15985 +15987 3 -515.38750050462 -88.41618820201577 36.8889 0.2995 15986 +15988 3 -516.4270817845149 -88.38689840017182 37.0266 0.2971 15987 +15989 3 -517.5107858669368 -88.15532657169885 37.0597 0.2948 15988 +15990 3 -517.9124745769936 -87.15143733965536 36.9687 0.2924 15989 +15991 3 -518.2374515081804 -86.07547458277367 36.8337 0.29 15990 +15992 3 -518.9350019155249 -85.16929075527875 36.78 0.2877 15991 +15993 3 -519.7456239128406 -84.36205598306688 36.818 0.2853 15992 +15994 3 -520.5570894029702 -83.55722714515855 36.9452 0.283 15993 +15995 3 -521.5346102484764 -83.41530647506139 37.3304 0.2806 15994 +15996 3 -522.3915316000422 -84.03433543014398 37.877 0.2783 15995 +15997 3 -523.2879874305411 -84.34599645427832 38.4759 0.2759 15996 +15998 3 -524.1613071851407 -83.71849846525666 39.0684 0.2736 15997 +15999 3 -525.2219501905196 -83.2887466006407 39.5172 0.2712 15998 +16000 3 -526.2792290894705 -82.87843317186562 39.8532 0.2688 15999 +16001 3 -527.262353927915 -82.39025328490467 40.1134 0.2665 16000 +16002 3 -528.1778108425142 -81.73208430393336 40.2676 0.2641 16001 +16003 3 -529.0810632068187 -81.09411306917573 40.3214 0.2618 16002 +16004 3 -529.804499977428 -80.21874265104958 40.3194 0.2594 16003 +16005 3 -530.5020261996974 -79.35788441693279 40.3903 0.2571 16004 +16006 3 -531.1938096211574 -78.5042973752123 40.5244 0.2547 16005 +16007 3 -531.9825536966123 -77.67679350003422 40.6171 0.2524 16006 +16008 3 -532.909300109839 -77.06397379932994 40.6465 0.25 16007 +16009 3 -533.978712498418 -76.66740367545029 40.6062 0.2476 16008 +16010 3 -534.9038564045444 -76.0431961755296 40.5502 0.2453 16009 +16011 3 -535.7217327173481 -75.24976520376546 40.448 0.2429 16010 +16012 3 -536.5379997130708 -74.44819911684948 40.2928 0.2406 16011 +16013 3 -537.4668201480713 -73.99306891621956 40.0098 0.2382 16012 +16014 3 -538.4364939702112 -73.71515488516567 39.5536 0.2359 16013 +16015 3 -539.2711933576865 -72.99218712478591 39.1432 0.2335 16014 +16016 3 -540.0615498050693 -72.20513322187935 38.2407 0.2312 16015 +16017 3 -488.54240742980903 -191.53196851645035 20.7752 0.4633 15796 +16018 3 -488.9864194249991 -191.21908344469497 20.6975 0.3089 16017 +16019 3 -489.67821646642017 -190.3589910348453 20.6515 0.3089 16018 +16020 3 -489.6804554695876 -189.2895650828202 20.6333 0.3089 16019 +16021 3 -488.84463024109425 -188.59138416256098 20.7252 0.3089 16020 +16022 3 -488.01954897502765 -187.82760608328272 20.9017 0.3089 16021 +16023 3 -488.0752052701813 -186.70978433684465 21.0889 0.3089 16022 +16024 3 -488.3962683054192 -185.61189302737736 21.2339 0.3089 16023 +16025 3 -488.3276201393629 -185.2008486510661 21.2884 0.3089 16024 +16026 3 -488.2352608041949 -184.0915558659064 20.7375 0.3063 16025 +16027 3 -488.28126316135103 -182.99153303744512 20.4693 0.3051 16026 +16028 3 -488.27396715915165 -181.84932567520656 20.2252 0.3038 16027 +16029 3 -488.39118217323744 -180.7122580428852 20.0045 0.3025 16028 +16030 3 -488.64253449748304 -179.64328293602054 19.7495 0.3012 16029 +16031 3 -489.0385441592301 -178.64998843900415 19.4029 0.3 16030 +16032 3 -489.1613903496616 -177.55896534873682 19.0915 0.2987 16031 +16033 3 -488.7404784307258 -176.5315749426605 18.8651 0.2974 16032 +16034 3 -487.8950539461796 -175.7913009792322 18.7026 0.2962 16033 +16035 3 -486.87201712884143 -175.28110176287583 18.5979 0.2949 16034 +16036 3 -485.98762704076603 -174.61025496806045 18.5445 0.2936 16035 +16037 3 -485.43560724680765 -173.6214103154086 18.5255 0.2924 16036 +16038 3 -485.15068613216806 -172.51984611917106 18.5126 0.2911 16037 +16039 3 -484.96785789117325 -171.39098915555928 18.4949 0.2898 16038 +16040 3 -484.8343233232638 -170.2582048781379 18.4697 0.2885 16039 +16041 3 -484.8601889279451 -169.11684476384679 18.4337 0.2873 16040 +16042 3 -484.907055409957 -167.9755993288663 18.384 0.286 16041 +16043 3 -484.81079550271505 -166.83801404403806 18.3179 0.2847 16042 +16044 3 -484.46755473324686 -165.76220791179355 18.2296 0.2835 16043 +16045 3 -483.96006441363045 -164.7483541425075 18.0775 0.2822 16044 +16046 3 -483.59501933962844 -163.68466462298267 17.8646 0.2809 16045 +16047 3 -483.7421526431714 -162.61151151135854 17.6403 0.2796 16046 +16048 3 -484.2474089328883 -161.58521164694193 17.3987 0.2784 16047 +16049 3 -484.8372751537528 -160.70878375972984 17.0289 0.2771 16048 +16050 3 -485.1815378343333 -159.742887436743 16.5507 0.2758 16049 +16051 3 -484.6308126179204 -158.91250847144644 16.0907 0.2746 16050 +16052 3 -484.1101285808293 -157.98602566884372 15.6069 0.2733 16051 +16053 3 -483.49234857839076 -157.09808911785203 15.0547 0.272 16052 +16054 3 -482.83652155316395 -157.79972314851344 14.4275 0.2708 16053 +16055 3 -483.7988565812886 -157.51458124762118 13.7562 0.2695 16054 +16056 3 -484.3071347018896 -156.63232567687183 13.1741 0.2682 16055 +16057 3 -483.86347747929005 -155.62744440585757 12.6461 0.2669 16056 +16058 3 -483.1809561381485 -154.79282969900999 12.112 0.2657 16057 +16059 3 -483.12280240457153 -153.9287629867296 11.6892 0.2644 16058 +16060 3 -483.9842825749363 -153.21469015006068 11.3311 0.2631 16059 +16061 3 -484.35357224543213 -152.21723848242712 10.9345 0.2619 16060 +16062 3 -484.3429557554488 -151.1074097298079 10.5191 0.2606 16061 +16063 3 -483.8998579285825 -150.6121426040804 9.9809 0.2593 16062 +16064 3 -484.0600197851502 -149.86824640856602 9.4648 0.258 16063 +16065 3 -484.8306428384111 -149.62399825651 9.0358 0.2568 16064 +16066 3 -484.4792936955268 -148.57080261476315 8.6809 0.2555 16065 +16067 3 -484.9079331935002 -147.8323475648264 8.2911 0.2542 16066 +16068 3 -485.89061419886525 -147.5561578262502 7.851 0.2529 16067 +16069 3 -486.61049005976895 -146.8279999073287 7.5183 0.2517 16068 +16070 3 -487.0292422664189 -145.77973999708416 7.2174 0.2504 16069 +16071 3 -487.6460586314282 -144.8313141951066 6.9352 0.2491 16070 +16072 3 -488.5452756104927 -144.1956679691585 6.7095 0.2479 16071 +16073 3 -489.5026695308806 -143.60242862352789 6.5374 0.2466 16072 +16074 3 -490.1921047548286 -142.72210797059523 6.3482 0.2453 16073 +16075 3 -490.1027576818035 -141.7276558850014 6.1386 0.244 16074 +16076 3 -489.47860762258824 -140.7750762958953 5.9294 0.2428 16075 +16077 3 -489.0003037240788 -139.7694153785525 5.6703 0.2415 16076 +16078 3 -488.9580711917961 -138.66355095050673 5.3851 0.2402 16077 +16079 3 -488.8050608811958 -137.5452216184896 5.1358 0.239 16078 +16080 3 -488.9093523963112 -136.4340070938028 4.9106 0.2377 16079 +16081 3 -489.5672930672509 -135.53339720404836 4.6726 0.2364 16080 +16082 3 -490.24626866542394 -134.6166385732815 4.4677 0.2352 16081 +16083 3 -490.7960198813937 -133.6156049222288 4.3032 0.2339 16082 +16084 3 -491.2310559383084 -132.55762100969324 4.1656 0.2326 16083 +16085 3 -491.488154818497 -131.44580716924793 4.0445 0.2313 16084 +16086 3 -491.18922273711814 -130.48422108848217 3.3743 0.2301 16085 +16087 3 -488.90472979239325 -185.4188563306998 21.3494 0.3089 16024 +16088 3 -489.89520419206764 -184.86521359969942 21.4369 0.308 16087 +16089 3 -490.7307816204458 -184.09437644362492 21.4967 0.3075 16088 +16090 3 -491.3694287356384 -183.1549766233907 21.5543 0.3071 16089 +16091 3 -492.04264791304104 -182.25199455314933 21.6524 0.3066 16090 +16092 3 -492.6860832099519 -181.32222143099042 21.7631 0.3062 16091 +16093 3 -492.9448246628516 -180.23643261609527 21.8544 0.3057 16092 +16094 3 -493.05645547016877 -179.09843405157167 21.9269 0.3053 16093 +16095 3 -493.6916505413586 -178.2204747179257 21.9802 0.3049 16094 +16096 3 -494.7501730910441 -177.9929513964674 22.0194 0.3044 16095 +16097 3 -495.57931195863944 -177.25773902018236 22.1129 0.304 16096 +16098 3 -495.9568924855813 -176.1842905651207 22.1756 0.3035 16097 +16099 3 -496.215614302812 -175.07410647169797 22.1764 0.3031 16098 +16100 3 -496.4404015828281 -173.96074005459036 22.1173 0.3026 16099 +16101 3 -496.5495387203672 -172.83171654499913 22.0624 0.3022 16100 +16102 3 -497.4012613367245 -172.08361136871346 22.0123 0.3017 16101 +16103 3 -498.4594210353392 -171.65788482240976 21.9684 0.3013 16102 +16104 3 -499.3886749404054 -170.99571421001502 21.9431 0.3008 16103 +16105 3 -500.14368037953636 -170.13900683472133 21.9349 0.3004 16104 +16106 3 -500.8007644358877 -169.20848446911748 21.936 0.2999 16105 +16107 3 -501.61941693597237 -168.41583294158147 21.9375 0.2995 16106 +16108 3 -501.77682362712676 -167.46807164590643 21.9397 0.299 16107 +16109 3 -501.5403179425691 -166.44432002018266 21.9426 0.2986 16108 +16110 3 -502.2432729263991 -165.65863876756902 21.9469 0.2981 16109 +16111 3 -503.19508639515203 -165.02890094855178 21.9528 0.2977 16110 +16112 3 -504.09289993096814 -164.32056104786477 21.9608 0.2972 16111 +16113 3 -504.7483842389797 -163.4111071612105 21.9722 0.2968 16112 +16114 3 -505.3619784167937 -162.44810818148477 21.9887 0.2964 16113 +16115 3 -506.13863943124534 -161.61654849112506 22.0118 0.2959 16114 +16116 3 -507.03236034321634 -160.90409879359856 22.0421 0.2955 16115 +16117 3 -508.0776507266189 -160.4783453034588 22.0797 0.295 16116 +16118 3 -509.1438204980609 -160.07696005402485 22.1468 0.2946 16117 +16119 3 -510.1576846303609 -159.56451999778835 22.2578 0.2941 16118 +16120 3 -511.1054019222354 -158.9323694344871 22.3658 0.2937 16119 +16121 3 -512.0331138157535 -158.2636901970159 22.4507 0.2932 16120 +16122 3 -512.9333196659121 -157.56101217164428 22.5313 0.2928 16121 +16123 3 -513.9831816981005 -157.21453509683334 22.6344 0.2923 16122 +16124 3 -514.9861190698136 -157.66557797552778 22.6891 0.2919 16123 +16125 3 -516.0807030697865 -157.6412116667546 22.6502 0.2914 16124 +16126 3 -516.5486945636634 -156.64877498279992 22.6024 0.291 16125 +16127 3 -516.3107489232799 -155.53599540344808 22.5565 0.2905 16126 +16128 3 -516.9695769077778 -154.61686113314667 22.5124 0.2901 16127 +16129 3 -517.7745539066865 -153.80395767563888 22.4727 0.2896 16128 +16130 3 -518.577907968553 -152.98942447110852 22.4434 0.2892 16129 +16131 3 -519.3053904874163 -152.1067793075527 22.4209 0.2887 16130 +16132 3 -519.9293638636976 -151.15108527403993 22.3937 0.2883 16131 +16133 3 -520.2907482758493 -150.07922925915088 22.3593 0.2879 16132 +16134 3 -521.1975099227617 -149.38625234345406 22.2963 0.2874 16133 +16135 3 -522.1258119674977 -148.773435899697 22.1848 0.287 16134 +16136 3 -522.6973168572763 -147.78446863483975 22.1019 0.2865 16135 +16137 3 -523.2542616910813 -146.82623009872376 22.0445 0.2861 16136 +16138 3 -524.2459086808237 -146.48931852614905 21.9873 0.2856 16137 +16139 3 -525.2753153153674 -146.6589877064898 21.9446 0.2852 16138 +16140 3 -526.1664541217991 -146.03152702431814 22.0247 0.2847 16139 +16141 3 -526.8454060330833 -145.12608207725424 22.1467 0.2843 16140 +16142 3 -527.5243848882036 -144.20776781497818 22.2415 0.2838 16141 +16143 3 -528.2260279193933 -143.30569378432276 22.3076 0.2834 16142 +16144 3 -528.9680326891937 -142.44415085353316 22.3471 0.2829 16143 +16145 3 -529.8947526567708 -141.81018855836584 22.3281 0.2825 16144 +16146 3 -530.8811913751192 -141.25901225722131 22.2534 0.282 16145 +16147 3 -531.7540192790896 -140.52869968711818 22.1931 0.2816 16146 +16148 3 -532.4321309545071 -139.61929317424162 22.1639 0.2811 16147 +16149 3 -533.1498821629123 -138.75762875416095 22.1815 0.2807 16148 +16150 3 -534.1690727049644 -138.4030264290256 22.2735 0.2802 16149 +16151 3 -535.0850348880534 -137.8750371496354 22.351 0.2798 16150 +16152 3 -535.7809283084532 -136.983486995441 22.4236 0.2794 16151 +16153 3 -536.6349275634695 -136.3300683911516 22.597 0.2789 16152 +16154 3 -537.7194448439361 -136.08159837612087 22.8101 0.2785 16153 +16155 3 -538.7726442408167 -135.69468169205223 23.0418 0.278 16154 +16156 3 -539.6316179157149 -134.96193594772342 23.2494 0.2776 16155 +16157 3 -540.4430866627915 -134.15555147830597 23.4088 0.2771 16156 +16158 3 -541.3771993120561 -133.5030784225528 23.5137 0.2767 16157 +16159 3 -542.338676583634 -132.88460385861399 23.5648 0.2762 16158 +16160 3 -543.4305096715137 -132.58679299882058 23.582 0.2758 16159 +16161 3 -544.5514006226136 -132.7638662202355 23.5775 0.2753 16160 +16162 3 -545.6926664875358 -132.80097465005363 23.5594 0.2749 16161 +16163 3 -546.8206630814253 -132.62380147439367 23.54 0.2744 16162 +16164 3 -547.8063664723759 -132.05232962463327 23.5101 0.274 16163 +16165 3 -548.837165303811 -131.5570370453309 23.4659 0.2735 16164 +16166 3 -549.9603976989573 -131.3587820668463 23.3952 0.2731 16165 +16167 3 -550.9587199162706 -130.90697936608112 23.2081 0.2726 16166 +16168 3 -552.0087782535501 -130.46674013758164 23.0209 0.2722 16167 +16169 3 -553.0340130120721 -129.9608999949294 22.8815 0.2717 16168 +16170 3 -553.6911812508645 -129.0239431197625 22.7927 0.2713 16169 +16171 3 -554.2005337174597 -128.00005599962998 22.7551 0.2709 16170 +16172 3 -554.815754089263 -127.0371311354177 22.7665 0.2704 16171 +16173 3 -555.6336407650806 -126.23875042703344 22.8204 0.27 16172 +16174 3 -556.6861587222354 -125.80579956392472 22.8968 0.2695 16173 +16175 3 -557.7927620307123 -125.78216552770238 23.0741 0.2691 16174 +16176 3 -558.8291343017014 -125.36049459447997 23.2894 0.2686 16175 +16177 3 -559.7019117770474 -124.62049453466312 23.4572 0.2682 16176 +16178 3 -560.5996307674084 -123.92353888015921 23.5805 0.2677 16177 +16179 3 -561.6698261532488 -123.52449551644315 23.6626 0.2673 16178 +16180 3 -562.6821684078564 -122.99593020398274 23.7076 0.2668 16179 +16181 3 -563.6371939968767 -122.38557387828746 23.7203 0.2664 16180 +16182 3 -564.7435155818771 -122.12498725053698 23.7206 0.2659 16181 +16183 3 -565.8873658129128 -122.14357485284148 23.7212 0.2655 16182 +16184 3 -567.013529544708 -122.06503945197662 23.7219 0.265 16183 +16185 3 -568.0709367429306 -121.62721977774177 23.7229 0.2646 16184 +16186 3 -569.1386656989151 -121.2241407326996 23.7243 0.2641 16185 +16187 3 -570.2570219747683 -121.0582611068871 23.7263 0.2637 16186 +16188 3 -571.3651630414732 -121.11071514660068 23.729 0.2632 16187 +16189 3 -572.3725691794216 -120.57563410299718 23.7329 0.2628 16188 +16190 3 -573.3445125906688 -119.99048625387431 23.7383 0.2624 16189 +16191 3 -574.4308194106718 -119.63029686922371 23.7459 0.2619 16190 +16192 3 -575.5171226776415 -119.27180453712865 23.7562 0.2615 16191 +16193 3 -576.613106126158 -118.95052637014876 23.7707 0.261 16192 +16194 3 -577.7404210782217 -118.76118950407752 23.7921 0.2606 16193 +16195 3 -578.7837472454113 -118.42926517707306 23.8223 0.2601 16194 +16196 3 -579.5217335068799 -117.56198625545466 23.8608 0.2597 16195 +16197 3 -580.2217062272499 -116.68090984518267 23.9072 0.2592 16196 +16198 3 -581.1823226309192 -116.1021022562538 23.9929 0.2588 16197 +16199 3 -582.1904230342818 -115.64070335428272 24.1483 0.2583 16198 +16200 3 -583.0962365759976 -114.96151306603917 24.2892 0.2579 16199 +16201 3 -583.9028196350399 -114.15830035519241 24.3527 0.2574 16200 +16202 3 -584.7004745147411 -113.36397851683671 24.3049 0.257 16201 +16203 3 -585.4996882828988 -112.56810430391909 24.1932 0.2565 16202 +16204 3 -586.2424727930135 -111.70564376480223 24.0915 0.2561 16203 +16205 3 -586.8907433493341 -110.76301139435884 24.0198 0.2556 16204 +16206 3 -587.66505241114 -109.94028563397131 23.9971 0.2552 16205 +16207 3 -588.6699275724604 -109.43199869713231 24.0304 0.2547 16206 +16208 3 -589.6668020275946 -108.96244454615379 24.1508 0.2543 16207 +16209 3 -590.5079667175883 -108.22485317940135 24.3494 0.2539 16208 +16210 3 -591.3331109658411 -107.43872063995568 24.5364 0.2534 16209 +16211 3 -592.1881099531519 -106.67930858994757 24.6788 0.253 16210 +16212 3 -593.131036102447 -106.03894553903382 24.7741 0.2525 16211 +16213 3 -594.1457066228112 -105.51285998030426 24.8241 0.2521 16212 +16214 3 -595.1884527057107 -105.12026454401195 24.885 0.2516 16213 +16215 3 -596.1352748776736 -104.57791486467261 24.9559 0.2512 16214 +16216 3 -597.115645490563 -104.2231605533768 24.8998 0.2507 16215 +16217 3 -598.1982116765914 -104.0960262430273 24.6827 0.2503 16216 +16218 3 -599.1030154190851 -103.52763771607633 24.3662 0.2498 16217 +16219 3 -599.9160060438543 -102.73737850288282 24.0526 0.2494 16218 +16220 3 -600.8113430828869 -102.02981123644344 23.7791 0.2489 16219 +16221 3 -601.7640104074674 -101.39752961510973 23.5532 0.2485 16220 +16222 3 -602.6302620847424 -100.66727398752565 23.3444 0.248 16221 +16223 3 -603.4278897245216 -99.88596288542837 23.1024 0.2476 16222 +16224 3 -604.3417237020785 -99.22616415743457 22.8794 0.2471 16223 +16225 3 -605.2936180963254 -98.5915474603635 22.6946 0.2467 16224 +16226 3 -606.1413390812594 -97.82964529361064 22.5376 0.2462 16225 +16227 3 -606.9519610785751 -97.02241052139877 22.403 0.2458 16226 +16228 3 -607.7625830758907 -96.2151757491869 22.2873 0.2454 16227 +16229 3 -608.5732050732064 -95.40794097697503 22.1813 0.2449 16228 +16230 3 -609.3280280293075 -94.60461989861173 21.9812 0.2445 16229 +16231 3 -609.9285774209604 -93.65785709928693 21.7549 0.244 16230 +16232 3 -610.7278587907371 -92.86346795539842 21.5517 0.2436 16231 +16233 3 -611.6780561324284 -92.22884770529404 21.3755 0.2431 16232 +16234 3 -612.5273965013711 -91.47027233811914 21.2229 0.2427 16233 +16235 3 -613.3323498133908 -90.66868256431437 21.0491 0.2422 16234 +16236 3 -614.1243360077963 -89.88000572436576 20.822 0.2418 16235 +16237 3 -614.9300687640441 -89.07763976328002 20.6028 0.2413 16236 +16238 3 -615.7010984000497 -88.23390601949515 20.4077 0.2409 16237 +16239 3 -616.3180057574806 -87.27579302388997 20.2395 0.2404 16238 +16240 3 -616.895165712594 -86.28768612875487 20.0964 0.24 16239 +16241 3 -617.4933669067348 -85.31418971821788 19.9546 0.2395 16240 +16242 3 -617.9241815423464 -84.31361416397772 19.7228 0.2391 16241 +16243 3 -618.1085864517099 -83.20334518782707 19.4975 0.2386 16242 +16244 3 -618.3608129677392 -82.0883391588695 19.3085 0.2382 16243 +16245 3 -619.0446200701884 -81.19428882100252 19.1504 0.2377 16244 +16246 3 -620.0085332747526 -80.59441630615754 19.0185 0.2373 16245 +16247 3 -620.8933597611992 -79.87473548184533 18.909 0.2369 16246 +16248 3 -621.7047675145373 -79.09748374796308 18.7471 0.2364 16247 +16249 3 -622.5040453312805 -78.3047916566299 18.533 0.236 16248 +16250 3 -623.3130375815737 -77.49917982146007 18.335 0.2355 16249 +16251 3 -623.9588989466436 -76.5589465753398 18.1716 0.2351 16250 +16252 3 -624.3930814438166 -75.5033650440744 18.039 0.2346 16251 +16253 3 -625.0397863017004 -74.56553773225758 17.9312 0.2342 16252 +16254 3 -625.8245050588431 -73.73555055031531 17.8435 0.2337 16253 +16255 3 -626.6222141223026 -72.91534866048903 17.7602 0.2333 16254 +16256 3 -627.6038480781103 -72.36246523986131 17.611 0.2328 16255 +16257 3 -628.6673883702356 -72.06869637318815 17.366 0.2324 16256 +16258 3 -629.6909969347682 -71.56278211502251 17.1568 0.2319 16257 +16259 3 -630.6330896581773 -70.91520481423157 16.9992 0.2315 16258 +16260 3 -631.5800242488763 -70.28538606972037 16.8489 0.231 16259 +16261 3 -632.4833302987527 -69.65554669316725 16.6481 0.2306 16260 +16262 3 -633.2947957888822 -68.85071785525895 16.522 0.2301 16261 +16263 3 -634.0948598598342 -68.0539968925803 16.5322 0.2297 16262 +16264 3 -634.8811773689437 -67.27096505103867 16.9422 0.2292 16263 +16265 3 -487.9070860477951 -190.9166562123674 19.8531 0.3089 16017 +16266 3 -487.14198843558273 -190.07536322310213 19.6278 0.3075 16265 +16267 3 -486.4133930518906 -189.19292224101744 19.543 0.3068 16266 +16268 3 -485.6563160776198 -188.3371503233729 19.458 0.3061 16267 +16269 3 -485.0201028891563 -187.4047687765665 19.3377 0.3054 16268 +16270 3 -484.7351412107196 -186.3225792636703 19.1862 0.3047 16269 +16271 3 -484.55060910718885 -185.19697143108982 19.0559 0.3041 16270 +16272 3 -484.12252379825895 -184.1508983465119 18.927 0.3034 16271 +16273 3 -483.57208657964577 -183.1491876355951 18.7784 0.3027 16272 +16274 3 -483.19253918646183 -182.08864974078546 18.5809 0.302 16273 +16275 3 -482.8655182186726 -180.9999374846653 18.3528 0.3013 16274 +16276 3 -482.442224052322 -179.9620768876998 18.0739 0.3006 16275 +16277 3 -481.6387946064424 -179.25901403453983 17.7464 0.2999 16276 +16278 3 -480.72361834892035 -178.6010428667307 17.4352 0.2992 16277 +16279 3 -479.8052872097361 -177.93012501124883 17.1743 0.2985 16278 +16280 3 -479.0774980120078 -177.0679090153 16.9976 0.2978 16279 +16281 3 -478.420149335148 -176.1321598090323 16.9125 0.2971 16280 +16282 3 -478.1221628023053 -175.09046033401827 16.9817 0.2965 16281 +16283 3 -477.6170947957143 -174.10171398195516 17.1028 0.2958 16282 +16284 3 -476.8357738287896 -173.27502416912094 17.2155 0.2951 16283 +16285 3 -476.36228860886786 -172.26442358208584 17.3083 0.2944 16284 +16286 3 -476.53683766363537 -171.1670740536858 17.3784 0.2937 16285 +16287 3 -475.87278701746897 -170.32521480219185 17.4445 0.293 16286 +16288 3 -475.05506162442634 -169.52673310448472 17.4833 0.2923 16287 +16289 3 -474.1765295146572 -168.79360233026728 17.4992 0.2916 16288 +16290 3 -473.43729883214087 -167.92485698321423 17.4956 0.2909 16289 +16291 3 -472.82130431801903 -166.96091002483328 17.4703 0.2902 16290 +16292 3 -472.89006234185274 -165.83342832468978 17.4128 0.2895 16291 +16293 3 -472.9037639600367 -164.69289127327096 17.313 0.2889 16292 +16294 3 -472.21878349720623 -163.8169762913575 17.2088 0.2882 16293 +16295 3 -471.17527771877735 -163.42411420310583 17.054 0.2875 16294 +16296 3 -470.4546654640765 -162.57888383310308 16.8441 0.2868 16295 +16297 3 -469.9860427434867 -161.54241326152516 16.7017 0.2861 16296 +16298 3 -469.69466994628965 -160.44896730353113 16.6428 0.2854 16297 +16299 3 -469.39523614945426 -159.35550446862874 16.5784 0.2847 16298 +16300 3 -469.30618999390316 -158.2510976675896 16.4254 0.284 16299 +16301 3 -469.4678666786117 -157.12140633823375 16.2796 0.2833 16300 +16302 3 -469.5616547472077 -155.99468415056324 16.1652 0.2826 16301 +16303 3 -469.3681876543553 -154.88121987453852 15.9956 0.282 16302 +16304 3 -469.2878294583239 -153.84888560196472 15.7259 0.2813 16303 +16305 3 -469.9747944972824 -153.00009680889025 15.4456 0.2806 16304 +16306 3 -470.9040415923681 -152.34117888056016 15.2182 0.2799 16305 +16307 3 -471.51830358994664 -151.43071944800383 15.0238 0.2792 16306 +16308 3 -471.71878687994297 -150.3075440518914 14.8496 0.2785 16307 +16309 3 -471.98805250538976 -149.22736342673986 14.6647 0.2778 16308 +16310 3 -472.6435804320454 -148.330849713864 14.4393 0.2771 16309 +16311 3 -473.41698195245175 -147.50253589758833 14.2057 0.2764 16310 +16312 3 -474.158153592452 -146.63363729587508 13.9919 0.2757 16311 +16313 3 -474.9727772211912 -145.84019951413038 13.7825 0.2751 16312 +16314 3 -475.7624116650512 -145.02648611552502 13.5817 0.2744 16313 +16315 3 -476.2587801371238 -144.0235729288871 13.4016 0.2737 16314 +16316 3 -476.12106095657464 -142.96438986760407 13.2378 0.273 16315 +16317 3 -475.6694339288587 -141.915934037425 13.0944 0.2723 16316 +16318 3 -475.7404527108161 -140.8231760895659 12.9704 0.2716 16317 +16319 3 -476.14711178953496 -139.77566867971356 12.8006 0.2709 16318 +16320 3 -476.55944636353024 -138.7192635873895 12.6079 0.2702 16319 +16321 3 -477.19808015484784 -137.78622771423818 12.4382 0.2695 16320 +16322 3 -477.78977923780667 -136.81116205223094 12.2987 0.2688 16321 +16323 3 -478.11160158341727 -135.72211118663017 12.182 0.2682 16322 +16324 3 -478.4600425648433 -134.65185442189434 12.0229 0.2675 16323 +16325 3 -479.0146560780448 -133.65882127492773 11.8869 0.2668 16324 +16326 3 -479.39223986193383 -132.5838171883569 11.7769 0.2661 16325 +16327 3 -479.171303332285 -131.48641747090352 11.682 0.2654 16326 +16328 3 -478.3257944631974 -130.78644850566707 11.5262 0.2647 16327 +16329 3 -477.92274896987146 -129.73646803903475 11.3983 0.264 16328 +16330 3 -478.5128722874657 -128.7710157512278 11.3041 0.2633 16329 +16331 3 -478.39709272280277 -127.63508665907173 11.2283 0.2626 16330 +16332 3 -478.26844413901375 -126.49898920203336 11.1635 0.2619 16331 +16333 3 -478.3241878735558 -125.3731773145231 11.1051 0.2612 16332 +16334 3 -479.0911990012296 -124.52370757990946 11.0473 0.2606 16333 +16335 3 -479.8905241917505 -123.7083881211704 10.9718 0.2599 16334 +16336 3 -480.5396382408851 -122.7681616850306 10.8641 0.2592 16335 +16337 3 -481.16285180860746 -121.8376391173264 10.6721 0.2585 16336 +16338 3 -481.52990520214115 -120.75999668298402 10.4795 0.2578 16337 +16339 3 -482.1958864427775 -119.86916172233174 10.2191 0.2571 16338 +16340 3 -483.09523142502763 -119.20615067197008 9.9232 0.2564 16339 +16341 3 -483.4902685944025 -118.30583888441407 9.6628 0.2557 16340 +16342 3 -482.7032893051957 -117.47984433336691 9.4505 0.255 16341 +16343 3 -482.19852996591726 -116.71518125761966 9.2543 0.2543 16342 +16344 3 -482.70687964537126 -115.7649727260862 9.0014 0.2536 16343 +16345 3 -482.8249212753626 -114.6383720277068 8.765 0.253 16344 +16346 3 -483.00681968925966 -113.5094301438962 8.589 0.2523 16345 +16347 3 -483.05287623017404 -112.38352726396425 8.4356 0.2516 16346 +16348 3 -482.81730602722484 -111.28447055956613 8.28 0.2509 16347 +16349 3 -482.3146744518068 -110.28031434692156 8.1921 0.2502 16348 +16350 3 -481.55850146590217 -109.43182753772055 8.1876 0.2495 16349 +16351 3 -480.98933724985665 -108.49223244132352 8.26 0.2488 16350 +16352 3 -480.82750307621194 -107.36674284108696 8.3399 0.2481 16351 +16353 3 -480.62920072394974 -106.2661378133466 8.4209 0.2474 16352 +16354 3 -480.06098481520115 -105.2788856008674 8.4998 0.2467 16353 +16355 3 -479.34775567344644 -104.38594087617736 8.5694 0.2461 16354 +16356 3 -478.5096772910825 -103.61563018884775 8.6322 0.2454 16355 +16357 3 -477.5296445173605 -103.06599365218855 8.7286 0.2447 16356 +16358 3 -476.58353315907834 -102.49203289766825 8.8649 0.244 16357 +16359 3 -475.7066035564096 -101.77028992266722 8.9992 0.2433 16358 +16360 3 -474.81896453940334 -101.063868776687 9.1437 0.2426 16359 +16361 3 -473.8965571550957 -100.41479203440232 9.263 0.2419 16360 +16362 3 -472.81379442440493 -100.23051542431034 9.3348 0.2412 16361 +16363 3 -471.7667413562315 -99.97836046713408 9.3612 0.2405 16362 +16364 3 -470.99186150675007 -99.18237264130534 9.3088 0.2399 16363 +16365 3 -470.43007359367004 -98.19831587428564 9.2214 0.2392 16364 +16366 3 -469.7573281780035 -97.28763677839095 9.1406 0.2385 16365 +16367 3 -469.10723707357886 -96.36413574106186 9.1032 0.2378 16366 +16368 3 -468.6103011272928 -95.34146521479798 9.0975 0.2371 16367 +16369 3 -467.9051092982876 -94.45985105071921 9.0745 0.2364 16368 +16370 3 -467.10763938825005 -93.64599679928057 8.9915 0.2357 16369 +16371 3 -466.35954457497826 -92.7893244463032 8.8346 0.235 16370 +16372 3 -465.6576356308209 -91.89329214548363 8.6143 0.2343 16371 +16373 3 -465.23667989114074 -90.88683205425778 8.2842 0.2336 16372 +16374 3 -465.2439061398785 -89.76572692478544 7.9505 0.2329 16373 +16375 3 -465.4694494733201 -88.66275658305358 7.599 0.2323 16374 +16376 3 -465.6490092584463 -87.53628468213225 7.2959 0.2316 16375 +16377 3 -465.50001390314446 -86.4253883934993 6.9965 0.2309 16376 +16378 3 -465.0071035712567 -85.40505975295338 6.7393 0.2302 16377 +16379 3 -465.27787745443493 -84.34750975215499 6.186 0.2295 16378 +16380 3 -491.79689660731844 -213.5077895885622 20.8662 0.5663 1 +16381 3 -492.6687491661701 -212.8042743821708 20.9057 0.429 16380 +16382 3 -493.6696529908362 -212.30149457572588 21.0507 0.3604 16381 +16383 3 -493.39951823594424 -211.09488503896623 21.3217 0.3604 16382 +16384 3 -493.64681750376906 -210.070449271271 21.4388 0.3568 16383 +16385 3 -494.35169634211513 -209.1764430502345 21.5354 0.355 16384 +16386 3 -495.1105892315454 -208.3205216330634 21.6169 0.3533 16385 +16387 3 -495.69582656501905 -207.35838252487346 21.7359 0.3515 16386 +16388 3 -496.40226408972114 -206.49669441790388 21.9128 0.3497 16387 +16389 3 -497.3749466774856 -205.93000364379515 22.0949 0.3479 16388 +16390 3 -498.2282718009433 -205.19328626672586 22.2459 0.3462 16389 +16391 3 -498.5621900332459 -204.13593917889895 22.3624 0.3444 16390 +16392 3 -498.7101574629616 -203.0021179188481 22.4494 0.3426 16391 +16393 3 -499.0230853830477 -201.90583592646178 22.515 0.3408 16392 +16394 3 -499.3852764793497 -200.8201929880333 22.5742 0.3391 16393 +16395 3 -499.6247077956802 -199.70353382125043 22.6443 0.3373 16394 +16396 3 -500.0103493222604 -198.630102243097 22.7341 0.3355 16395 +16397 3 -500.64412081634634 -197.68906586585967 22.8721 0.3337 16396 +16398 3 -501.58854465825874 -197.11015366454808 23.0915 0.332 16397 +16399 3 -502.5193841935171 -196.46743185100817 23.3519 0.3302 16398 +16400 3 -503.2774298349999 -195.64467204071784 23.6577 0.3284 16399 +16401 3 -503.63152262481367 -194.57683127721333 23.9294 0.3266 16400 +16402 3 -504.4387868274955 -193.81979416645297 24.1825 0.3249 16401 +16403 3 -505.54912316569397 -193.60051107071564 24.4101 0.3231 16402 +16404 3 -506.6483424213667 -193.28730071335468 24.5918 0.3213 16403 +16405 3 -507.6154510713905 -192.681000202841 24.7261 0.3195 16404 +16406 3 -508.55988498023066 -192.09727968595567 24.9184 0.3178 16405 +16407 3 -509.2259440915142 -191.16925099012983 25.0595 0.316 16406 +16408 3 -509.66412496316343 -190.12902208084077 25.1548 0.3142 16407 +16409 3 -510.79635023000833 -190.2624904483218 25.211 0.3124 16408 +16410 3 -511.8856756239484 -190.04790098884777 25.2312 0.3107 16409 +16411 3 -512.6890261327816 -189.23506483687282 25.2219 0.3089 16410 +16412 3 -513.4987845034279 -188.43504076150495 25.2123 0.3071 16411 +16413 3 -514.1914993552766 -187.54185760334067 25.2135 0.3053 16412 +16414 3 -514.8638475978429 -186.6833508236831 25.0834 0.3035 16413 +16415 3 -515.5126902299999 -185.9065365545715 24.8078 0.3018 16414 +16416 3 -515.8998803760085 -184.87023140605876 24.6013 0.3 16415 +16417 3 -515.787342930296 -183.77312934913218 24.5569 0.2982 16416 +16418 3 -516.0459019001659 -182.7407268311675 24.5902 0.2965 16417 +16419 3 -516.1930019480786 -181.649683809145 24.6593 0.2947 16418 +16420 3 -515.8304401808408 -180.58196897130796 24.7591 0.2929 16419 +16421 3 -515.5576121941324 -179.47965227467824 24.8652 0.2911 16420 +16422 3 -515.1125409631702 -178.44089755417394 24.9469 0.2894 16421 +16423 3 -514.9051211385565 -177.4058223799198 25.1169 0.2876 16422 +16424 3 -515.1152914200802 -176.31660846485804 25.2861 0.2858 16423 +16425 3 -515.8055091431033 -175.46782648176415 25.3434 0.284 16424 +16426 3 -516.5531589113107 -174.61195223627038 25.3531 0.2822 16425 +16427 3 -517.4137860201203 -173.86626987119664 25.3447 0.2805 16426 +16428 3 -518.2938278778819 -173.1352652962537 25.3094 0.2787 16427 +16429 3 -518.8888336265633 -172.16819688138528 25.2652 0.2769 16428 +16430 3 -519.5734574800906 -171.25555130440512 25.2207 0.2752 16429 +16431 3 -520.1102824383291 -170.247914482821 25.2002 0.2734 16430 +16432 3 -520.8490481440259 -169.37985937392162 25.2158 0.2716 16431 +16433 3 -521.61358247883 -168.5313036946019 25.2809 0.2698 16432 +16434 3 -522.2651697678009 -167.5918602557236 25.3704 0.2681 16433 +16435 3 -523.1571863190495 -166.91667159890355 25.5368 0.2663 16434 +16436 3 -524.1298179800029 -166.37430524475616 25.7668 0.2645 16435 +16437 3 -525.146941310262 -165.85876073548192 25.9634 0.2627 16436 +16438 3 -526.2565123223796 -165.5997365492212 26.0506 0.2609 16437 +16439 3 -527.3089524088874 -165.203979421286 26.0055 0.2592 16438 +16440 3 -528.1422217053644 -164.4210458803332 25.9248 0.2574 16439 +16441 3 -528.0601594446966 -163.42583122741948 25.8813 0.2574 16440 +16442 3 -527.6270157355441 -162.43164930381513 25.8307 0.2569 16441 +16443 3 -526.893436363229 -161.59933186766858 25.6762 0.2566 16442 +16444 3 -526.4780815051254 -160.61961219763543 25.4868 0.2563 16443 +16445 3 -526.7222432663825 -159.5401568329539 25.3226 0.2561 16444 +16446 3 -527.3890581350054 -158.62266563355004 25.19 0.2558 16445 +16447 3 -528.1480047100075 -157.77487607458357 25.083 0.2555 16446 +16448 3 -528.9738467767079 -157.06072862421485 25.0943 0.2552 16447 +16449 3 -529.8367878310263 -156.39191377930513 25.2249 0.255 16448 +16450 3 -530.4947153801915 -155.46379734800482 25.3632 0.2547 16449 +16451 3 -530.7760232067583 -154.4071886424226 25.4874 0.2544 16450 +16452 3 -530.4660080927566 -153.3354118797101 25.632 0.2542 16451 +16453 3 -530.3566628355563 -152.23343745862408 25.8513 0.2539 16452 +16454 3 -530.9547146001972 -151.36508774404476 26.1943 0.2536 16453 +16455 3 -531.7159387537163 -150.9492754329006 26.826 0.2534 16454 +16456 3 -532.647070079379 -150.53869789531504 27.6018 0.2531 16455 +16457 3 -533.0691394603507 -149.86492950213665 28.4642 0.2528 16456 +16458 3 -533.4381209052057 -149.01469714368824 29.2958 0.2525 16457 +16459 3 -534.4405589350665 -148.58970246573475 29.9589 0.2523 16458 +16460 3 -535.5300269485259 -148.2732189943675 30.4357 0.252 16459 +16461 3 -536.3865336953818 -147.5704494783878 30.7686 0.2517 16460 +16462 3 -537.2647832548462 -146.91870799489865 31.0744 0.2515 16461 +16463 3 -538.3116156497967 -146.49946312983536 31.3541 0.2512 16462 +16464 3 -539.4274379881609 -146.36179182125028 31.6117 0.2509 16463 +16465 3 -540.5686698031803 -146.41516367139144 31.8643 0.2507 16464 +16466 3 -541.6844885885112 -146.27918941536183 32.1364 0.2504 16465 +16467 3 -542.7746476104376 -146.03794371713616 32.4677 0.2501 16466 +16468 3 -543.8760152054979 -145.8469261772313 32.8359 0.2498 16467 +16469 3 -544.7824018194228 -145.26553017096916 33.1386 0.2496 16468 +16470 3 -545.585738708295 -144.45919938712348 33.3841 0.2493 16469 +16471 3 -546.5590412438598 -144.0016874372652 33.7263 0.249 16470 +16472 3 -547.6412377688368 -143.67960258613496 34.1029 0.2488 16471 +16473 3 -548.6526455382087 -143.15831853299866 34.463 0.2485 16472 +16474 3 -549.3032804686629 -142.30224117243307 34.9191 0.2482 16473 +16475 3 -549.8103257432149 -141.6035483432481 35.6023 0.248 16474 +16476 3 -550.4770153674131 -140.7458782464239 36.2625 0.2477 16475 +16477 3 -551.1390423504038 -139.81861892789848 36.8122 0.2474 16476 +16478 3 -552.1045479951408 -139.23494252784357 37.2506 0.2471 16477 +16479 3 -553.1697994579688 -138.90065993639934 37.6272 0.2469 16478 +16480 3 -553.3460019466478 -137.79037378725428 37.9772 0.2466 16479 +16481 3 -553.486700942728 -136.68326600456015 38.3048 0.2463 16480 +16482 3 -554.115617245649 -135.7308350181258 38.5851 0.2461 16481 +16483 3 -554.5885249244295 -134.7206602078329 38.8088 0.2458 16482 +16484 3 -554.6927728209009 -133.59650550936772 39.041 0.2455 16483 +16485 3 -555.0613745377768 -132.5561309257123 39.291 0.2453 16484 +16486 3 -555.5634754476448 -131.55089628329807 39.4859 0.245 16485 +16487 3 -555.9474297864971 -130.50652332516648 39.6488 0.2447 16486 +16488 3 -556.6691931914397 -129.61983567030398 39.8012 0.2444 16487 +16489 3 -557.3247957317952 -128.68768385376367 39.9568 0.2442 16488 +16490 3 -557.740342426058 -127.65066025476153 40.1624 0.2439 16489 +16491 3 -557.9909487638059 -126.56648075694736 40.4538 0.2436 16490 +16492 3 -558.4324428150721 -125.53113783177884 40.7616 0.2434 16491 +16493 3 -559.1161962319495 -124.62895563570734 41.0911 0.2431 16492 +16494 3 -559.7588044147685 -123.72272748928162 41.4828 0.2428 16493 +16495 3 -560.3036530657955 -122.73292659643795 41.8729 0.2426 16494 +16496 3 -560.5508509781848 -121.72312775899047 42.2629 0.2423 16495 +16497 3 -560.4349897877411 -120.65995994319229 42.7244 0.242 16496 +16498 3 -560.4510162126344 -119.55732876564241 43.1925 0.2418 16497 +16499 3 -560.4534041471153 -118.41676802733471 43.5789 0.2415 16498 +16500 3 -560.4712120091054 -117.27383540462623 43.8698 0.2412 16499 +16501 3 -560.6805761046652 -116.16439650342866 44.0894 0.2409 16500 +16502 3 -561.1398387791389 -115.11940339539629 44.256 0.2407 16501 +16503 3 -561.5497709718641 -114.0621447433306 44.4041 0.2404 16502 +16504 3 -561.9233261804936 -112.98621298150482 44.5463 0.2401 16503 +16505 3 -562.2927816592114 -111.90956552795026 44.7059 0.2399 16504 +16506 3 -562.1898538325656 -110.84960677757269 44.9369 0.2396 16505 +16507 3 -561.5202965541915 -109.96976427974923 45.1615 0.2393 16506 +16508 3 -560.840273136148 -109.05659506710981 45.3331 0.2391 16507 +16509 3 -560.0848864044522 -108.20407938656322 45.4538 0.2388 16508 +16510 3 -559.2776516322402 -107.39345738924754 45.533 0.2385 16509 +16511 3 -558.429032200421 -106.62559951181271 45.579 0.2382 16510 +16512 3 -557.4588525225342 -106.03058724923696 45.603 0.238 16511 +16513 3 -556.547759320116 -105.34752228416599 45.6254 0.2377 16512 +16514 3 -555.631857506038 -104.66458867321353 45.6546 0.2374 16513 +16515 3 -554.5583042364933 -104.33707119665743 45.691 0.2372 16514 +16516 3 -553.47505035546 -103.98209760717995 45.7402 0.2369 16515 +16517 3 -552.6069037559525 -103.28703100478597 45.8542 0.2366 16516 +16518 3 -551.7907271844385 -102.49180524809069 45.969 0.2364 16517 +16519 3 -550.8699296153983 -101.8168517112826 46.0622 0.2361 16518 +16520 3 -549.779379858707 -101.53547282404915 46.1376 0.2358 16519 +16521 3 -548.9054667715014 -100.85899109775448 46.2434 0.2355 16520 +16522 3 -548.0949656952638 -100.05486765858748 46.3128 0.2353 16521 +16523 3 -547.1733886819954 -99.3806903090605 46.3313 0.235 16522 +16524 3 -546.3345409223311 -98.60634749343802 46.3103 0.2347 16523 +16525 3 -545.5313178484704 -97.80471417101572 46.207 0.2345 16524 +16526 3 -544.74913275669 -97.01924696470067 45.9925 0.2342 16525 +16527 3 -543.7844803430528 -96.41858940763166 45.7797 0.2339 16526 +16528 3 -542.7314630440455 -95.97550271409247 45.5949 0.2337 16527 +16529 3 -541.6726220187351 -95.54456609100356 45.4437 0.2334 16528 +16530 3 -540.6146312962189 -95.11278271815343 45.3281 0.2331 16529 +16531 3 -539.5550140836274 -94.68106665083621 45.25 0.2328 16530 +16532 3 -538.496243916883 -94.25005946526713 45.201 0.2326 16531 +16533 3 -537.5803355889105 -93.57023711733308 45.187 0.2323 16532 +16534 3 -536.7324887913389 -92.80485573668184 45.2071 0.232 16533 +16535 3 -535.8888259061204 -92.03375553819623 45.2511 0.2318 16534 +16536 3 -535.0443127181073 -91.26350208947167 45.3051 0.2315 16535 +16537 3 -534.2281497665545 -90.46177096464717 45.3566 0.2312 16536 +16538 3 -533.5140703220052 -89.56967298971816 45.3866 0.231 16537 +16539 3 -532.8073601683408 -88.67023651685994 45.3961 0.2307 16538 +16540 3 -532.1435630658708 -87.74104991732662 45.3751 0.2304 16539 +16541 3 -531.7808188156031 -86.72672137641999 45.2256 0.2301 16540 +16542 3 -531.0919377806986 -85.82251389483798 45.1587 0.2299 16541 +16543 3 -530.3964772621515 -84.91991898728406 45.1643 0.2296 16542 +16544 3 -530.521800447553 -83.79411135309391 45.2334 0.2293 16543 +16545 3 -530.7021328669271 -82.67011594895621 45.5515 0.2291 16544 +16546 3 -529.0237376253693 -163.35749134351911 25.9182 0.2574 16440 +16547 3 -530.1244988925902 -163.05078961123456 25.9688 0.2557 16546 +16548 3 -531.2035914627158 -162.69143365247012 26.0265 0.2549 16547 +16549 3 -532.3331499999088 -162.54502295936794 26.1012 0.254 16548 +16550 3 -533.429855451948 -162.25040428808677 26.2255 0.2532 16549 +16551 3 -534.5193025372794 -161.97769077858857 26.3758 0.2524 16550 +16552 3 -535.2578109441462 -161.23253055891297 26.5148 0.2515 16551 +16553 3 -535.1865570986917 -160.10715989130696 26.6545 0.2507 16552 +16554 3 -534.7826076169995 -159.04989431623093 26.8261 0.2498 16553 +16555 3 -534.2994585942529 -158.0280304741175 27.0292 0.249 16554 +16556 3 -534.2651754371448 -156.9754986574304 27.2129 0.2481 16555 +16557 3 -534.9545764090898 -156.14531191344972 27.4489 0.2473 16556 +16558 3 -535.9585060218741 -155.7171383708589 27.7444 0.2465 16557 +16559 3 -537.0871871103362 -155.6183142313588 28.0098 0.2456 16558 +16560 3 -537.9958163130175 -155.14786821741598 28.2517 0.2448 16559 +16561 3 -538.3401810493203 -154.09945256587739 28.4964 0.2439 16560 +16562 3 -538.9778665333411 -153.21407380880822 28.7137 0.2431 16561 +16563 3 -540.0012754418495 -152.7697482682577 28.9022 0.2423 16562 +16564 3 -540.9997702773653 -152.23549709750696 29.097 0.2414 16563 +16565 3 -541.9620874887236 -151.6211255204272 29.3166 0.2406 16564 +16566 3 -542.9115053861867 -150.98728145760376 29.5506 0.2397 16565 +16567 3 -543.9687094693376 -150.646476621122 29.8407 0.2389 16566 +16568 3 -544.9892484766074 -150.42460135291765 30.2677 0.2381 16567 +16569 3 -546.0038310593968 -149.94051784493544 30.6468 0.2372 16568 +16570 3 -546.9096040373155 -149.2807022400333 31.0262 0.2364 16569 +16571 3 -547.6669309322227 -148.42972730253507 31.3328 0.2355 16570 +16572 3 -548.4678153072862 -147.61271404818777 31.5711 0.2347 16571 +16573 3 -549.3712670315289 -146.9132955168613 31.7593 0.2338 16572 +16574 3 -550.2569506307505 -146.18951525872342 31.9105 0.233 16573 +16575 3 -551.0327507772934 -145.3976225433737 32.1448 0.2322 16574 +16576 3 -551.84971608965 -144.63402963585952 32.4268 0.2313 16575 +16577 3 -552.8893614746455 -144.20260746042385 32.7194 0.2305 16576 +16578 3 -553.982834874662 -143.86435343833946 33.1794 0.2296 16577 +16579 3 -494.0983069355989 -212.7044538238384 21.3699 0.3089 16382 +16580 3 -494.869916725921 -213.54250774900024 21.5853 0.3061 16579 +16581 3 -495.5612742576091 -214.44594259633462 21.6857 0.3047 16580 +16582 3 -496.16845882473376 -215.39608249732058 21.8314 0.3033 16581 +16583 3 -496.4719688666924 -216.4677042190257 21.982 0.3019 16582 +16584 3 -495.95249875377976 -217.2918120528621 22.0403 0.3004 16583 +16585 3 -494.9217709830112 -217.75316358105553 22.0474 0.299 16584 +16586 3 -494.6205532059299 -218.66010647935195 22.0412 0.2976 16585 +16587 3 -495.57787343343205 -219.2841539711468 22.0271 0.2962 16586 +16588 3 -496.60169650497886 -219.79032431615755 22.0153 0.2948 16587 +16589 3 -497.5672029765441 -220.35456758228116 22.0191 0.2934 16588 +16590 3 -498.6661245716899 -220.14975630885644 22.0476 0.292 16589 +16591 3 -499.68970589630055 -219.65685278694926 22.0937 0.2906 16590 +16592 3 -500.79685785234005 -219.37116555195638 22.1557 0.2892 16591 +16593 3 -501.9126965694261 -219.25944515340808 22.2385 0.2878 16592 +16594 3 -502.90352769143345 -219.6837339909487 22.3762 0.2864 16593 +16595 3 -503.7010517852292 -220.47170819091684 22.5789 0.285 16594 +16596 3 -504.69089324186996 -220.9971821586025 22.78 0.2836 16595 +16597 3 -505.749036448733 -221.35613369261452 23.0371 0.2822 16596 +16598 3 -506.503982162625 -222.04778130453562 23.4016 0.2808 16597 +16599 3 -507.2635535069605 -222.82669576894378 23.763 0.2794 16598 +16600 3 -508.25657658699936 -223.386117597719 24.0502 0.278 16599 +16601 3 -509.25604779656237 -223.93911824080607 24.288 0.2766 16600 +16602 3 -510.1541201957943 -224.6269642815286 24.5226 0.2752 16601 +16603 3 -510.98405013913145 -225.40524823302218 24.7262 0.2738 16602 +16604 3 -511.85947098588224 -226.1383724933452 24.8829 0.2724 16603 +16605 3 -512.7737059481881 -226.806877604543 25.0638 0.2709 16604 +16606 3 -513.7757182013067 -227.32827582529183 25.2617 0.2695 16605 +16607 3 -514.6933376999822 -227.96758444845483 25.4799 0.2681 16606 +16608 3 -515.2972224113648 -228.90647441823737 25.6763 0.2667 16607 +16609 3 -515.6695185439077 -229.9855233697191 25.8298 0.2653 16608 +16610 3 -516.2580168794974 -230.9445337132546 25.9478 0.2639 16609 +16611 3 -517.2383268838047 -231.3955292181714 26.0914 0.2625 16610 +16612 3 -518.2127547247303 -231.9541342958684 26.214 0.2611 16611 +16613 3 -519.0564244199295 -232.72198181028938 26.2965 0.2597 16612 +16614 3 -519.6433502471018 -233.68904989651602 26.3507 0.2583 16613 +16615 3 -520.2966736056494 -234.62231579601962 26.3832 0.2569 16614 +16616 3 -521.1662979660191 -235.3545793905344 26.3939 0.2555 16615 +16617 3 -521.9476826854433 -236.18459274599945 26.384 0.2541 16616 +16618 3 -522.9789266749726 -236.59121777481548 26.3653 0.2527 16617 +16619 3 -523.8851646862257 -237.26288813068953 26.343 0.2513 16618 +16620 3 -524.6680982271786 -238.0961574271664 26.3194 0.2499 16619 +16621 3 -525.3749334231675 -238.96964328607388 26.2288 0.2485 16620 +16622 3 -526.1116134933868 -239.84078746136385 26.1542 0.2471 16621 +16623 3 -526.7033272061913 -240.81762366671217 26.109 0.2457 16622 +16624 3 -527.2618354913706 -241.81454293896346 26.0998 0.2443 16623 +16625 3 -528.172163071622 -242.45800823455724 26.1764 0.2428 16624 +16626 3 -529.1123930607951 -243.10542523113634 26.2561 0.2414 16625 +16627 3 -529.9925549175866 -243.8369330683118 26.3284 0.24 16626 +16628 3 -530.6353271597511 -244.77746009328388 26.3813 0.2386 16627 +16629 3 -531.0521323366943 -245.8412579803251 26.4144 0.2372 16628 +16630 3 -531.8091553293073 -246.68903946081136 26.4298 0.2358 16629 +16631 3 -532.6966965439112 -247.40840048448382 26.4312 0.2344 16630 +16632 3 -533.8035470842904 -247.26667987461153 26.4312 0.233 16631 +16633 3 -534.9139985999857 -246.9923839918684 26.4312 0.2316 16632 +16634 3 -536.0282453185707 -247.235770064031 26.4312 0.2302 16633 +16635 3 -490.95390742364737 -220.8583956680779 24.1776 0.3604 1 +16636 3 -491.52867933125003 -221.82147850160305 24.635 0.3539 16635 +16637 3 -492.19084668669757 -222.7522880381784 24.9578 0.3507 16636 +16638 3 -493.13284854422625 -223.3301999954975 25.1581 0.3475 16637 +16639 3 -493.66394177846774 -224.28343328622068 25.2685 0.3443 16638 +16640 3 -494.3358976829784 -225.1996968849701 25.3196 0.341 16639 +16641 3 -495.1738918829012 -225.97644208186279 25.3391 0.3378 16640 +16642 3 -495.95845517087656 -226.80808844129763 25.3521 0.3346 16641 +16643 3 -496.4011777061403 -227.85412146026485 25.3695 0.3314 16642 +16644 3 -497.0009660385442 -228.82446917439216 25.3956 0.3282 16643 +16645 3 -497.7353006700123 -229.7013360166359 25.4331 0.325 16644 +16646 3 -498.5530969216212 -230.49974715186298 25.4831 0.3218 16645 +16647 3 -498.93829612319274 -231.56270104790394 25.545 0.3185 16646 +16648 3 -499.3138413867668 -232.6434538619216 25.6171 0.3153 16647 +16649 3 -500.0256474496041 -233.4393096333451 25.8387 0.3121 16648 +16650 3 -500.84096690834315 -234.2386348238661 26.034 0.3089 16649 +16651 3 -501.0826158758513 -235.1361783807491 26.1803 0.3089 16650 +16652 3 -500.9241378935495 -236.2578860829272 26.2819 0.3048 16651 +16653 3 -500.69456924179565 -237.3583731178948 26.346 0.3027 16652 +16654 3 -500.751165727061 -238.49340048225903 26.352 0.3007 16653 +16655 3 -500.7423734838003 -239.6194520914042 26.2916 0.2986 16654 +16656 3 -500.54182969825166 -240.7377483133767 26.2654 0.2966 16655 +16657 3 -500.2224841455108 -241.82588512368343 26.3105 0.2945 16656 +16658 3 -500.2193542757519 -242.91553250881103 26.4401 0.2925 16657 +16659 3 -500.53094169607084 -244.01312201746123 26.5901 0.2904 16658 +16660 3 -500.81502968091047 -245.1073305427752 26.7285 0.2883 16659 +16661 3 -500.83868760612194 -246.16874967892014 26.9314 0.2863 16660 +16662 3 -500.7669576818421 -247.19588648478526 27.2981 0.2842 16661 +16663 3 -500.6368536228893 -248.27480282716036 27.6761 0.2822 16662 +16664 3 -500.5608949691393 -249.3966125850607 28.0347 0.2801 16663 +16665 3 -500.8571806942929 -250.47387604822572 28.3458 0.2781 16664 +16666 3 -500.9397751672865 -251.5864010875083 28.5796 0.276 16665 +16667 3 -500.67858366325277 -252.6941051311141 28.7378 0.274 16666 +16668 3 -500.3301021180295 -253.78373657919133 28.8408 0.2719 16667 +16669 3 -500.254939785416 -254.89670915017234 28.971 0.2699 16668 +16670 3 -500.41599777177976 -256.02141930618075 29.0942 0.2678 16669 +16671 3 -500.6790472763527 -257.13347362506266 29.1945 0.2658 16670 +16672 3 -500.9362934845641 -258.2479199622009 29.2796 0.2637 16671 +16673 3 -501.1443032582953 -259.3727284187979 29.3504 0.2617 16672 +16674 3 -501.33045829886805 -260.49996599840097 29.4258 0.2596 16673 +16675 3 -501.4866371110918 -261.6247366499618 29.5316 0.2575 16674 +16676 3 -501.51982323168966 -262.76218988038477 29.6324 0.2555 16675 +16677 3 -501.2723513456624 -263.8690741180655 29.7114 0.2534 16676 +16678 3 -500.92881598402596 -264.960412981712 29.7674 0.2514 16677 +16679 3 -500.5252913570278 -266.03062513143095 29.7973 0.2493 16678 +16680 3 -500.165445699477 -267.11054540290564 29.8323 0.2473 16679 +16681 3 -499.8323805287297 -268.1995020191374 29.8749 0.2452 16680 +16682 3 -499.603483451874 -269.31696106009014 29.8914 0.2432 16681 +16683 3 -499.2454328513812 -270.350074518277 29.7777 0.2411 16682 +16684 3 -498.30040297771563 -270.81316110616257 29.5669 0.2391 16683 +16685 3 -497.1709761988418 -270.8966394336668 29.4392 0.237 16684 +16686 3 -496.02866727906746 -270.9524428547429 29.3406 0.235 16685 +16687 3 -495.05593017890305 -270.3630821044686 29.2723 0.2329 16686 +16688 3 -494.58568777821847 -269.32342615435897 29.2429 0.2308 16687 +16689 3 -501.4899897064408 -233.74728056515906 26.1851 0.278 16650 +16690 3 -502.32077214312017 -232.97006939507392 26.2037 0.2682 16689 +16691 3 -502.84140424351574 -231.96246938215327 26.2103 0.2632 16690 +16692 3 -503.68105741883073 -231.20380302255674 26.2555 0.2583 16691 +16693 3 -504.6698615076855 -230.67115791193967 26.4015 0.2534 16692 +16694 3 -505.56843761082143 -229.97010282361012 26.5614 0.2485 16693 +16695 3 -506.36938929141786 -229.15471605933814 26.7344 0.2436 16694 +16696 3 -507.1468733687416 -228.3353203554758 26.9546 0.2386 16695 +16697 3 -507.86694958595626 -227.4776913206351 27.5559 0.2337 16696 diff --git a/example_data/upright_swcs/694146546.swc b/example_data/upright_swcs/694146546.swc new file mode 100644 index 0000000..be228e3 --- /dev/null +++ b/example_data/upright_swcs/694146546.swc @@ -0,0 +1,5683 @@ +1 1 59.62781108816057 -840.365844886024 41.5128 4.3758 -1 +2 3 60.90988464274329 -834.8379982193155 40.451 0.3558 1 +3 3 61.42410036002673 -832.6191018864288 40.171 0.4213 2 +4 3 61.25745740172377 -831.4877546300798 40.1212 0.4868 3 +5 3 60.75650968124583 -830.4644541505784 40.168 0.5523 4 +6 3 60.049265051740036 -829.5871720100813 40.3206 0.6178 5 +7 3 59.42711103482404 -830.1830487332676 38.6943 0.4633 6 +8 3 58.53236477935238 -830.7184993736813 37.6188 0.4373 7 +9 3 57.443645502440916 -830.9074509708735 37.1694 0.4242 8 +10 3 56.74968699784955 -831.7134122378741 36.6114 0.4112 9 +11 3 56.113133036193176 -832.5339683138978 35.919 0.3982 10 +12 3 55.65171419744786 -833.5364684162673 35.2078 0.3852 11 +13 3 55.23423978680259 -834.5684036547666 34.5134 0.3721 12 +14 3 54.67423554812635 -835.5293156708558 33.854 0.3591 13 +15 3 53.87140155192492 -836.3195369465395 33.2601 0.3461 14 +16 3 52.91084500126985 -836.9126450673689 32.7247 0.333 15 +17 3 51.87529467374273 -837.3245513299559 32.2031 0.32 16 +18 3 51.1529083745132 -838.2009516521177 31.7148 0.307 17 +19 3 50.14542136081076 -838.7394356790127 31.2939 0.2939 18 +20 3 49.01345229784806 -838.5998522613181 30.8932 0.2809 19 +21 3 48.25886956793104 -837.8768223631043 30.3671 0.2679 20 +22 3 47.54678550350562 -837.081876726478 29.7791 0.2549 21 +23 3 46.89400387826012 -836.3497657992668 28.1786 0.2418 22 +24 3 59.76463173659323 -829.3147583982544 40.5017 0.6178 6 +25 3 58.97524803146018 -828.5176435344673 40.7358 0.6102 24 +26 3 58.23549471364885 -827.6590684831251 40.9601 0.6065 25 +27 3 57.557129604338314 -826.7415339723464 41.1172 0.6027 26 +28 3 56.90161577563765 -825.8039527916574 41.1776 0.599 27 +29 3 56.24791638534202 -824.8701169832161 41.137 0.5952 28 +30 3 55.63148212625302 -823.9162043225278 41.0074 0.5914 29 +31 3 55.15110281904737 -822.8912484350826 40.8086 0.5877 30 +32 3 54.95287472586375 -821.7790045620616 40.5866 0.5839 31 +33 3 55.169618156735396 -820.6752938140963 40.3802 0.5801 32 +34 3 55.72862429897182 -819.6876637553487 40.2024 0.5764 33 +35 3 56.36895736985352 -818.7422504074764 40.0299 0.5726 34 +36 3 56.8145963240718 -817.7089740927942 39.8345 0.5689 35 +37 3 56.78842444143896 -816.5978074434748 39.6278 0.5651 36 +38 3 56.196652172203045 -815.6536434368725 39.4453 0.5613 37 +39 3 55.40053705987475 -814.8331540536856 39.3011 0.5576 38 +40 3 54.871004748031396 -813.8332437673529 39.1933 0.5538 39 +41 3 54.91934459878186 -812.7148209766206 39.1115 0.55 40 +42 3 55.41906397560737 -811.6996722070182 39.0323 0.5463 41 +43 3 56.14218092522813 -810.8196765893183 38.9558 0.5425 42 +44 3 56.90052262701926 -809.9656668684577 38.8917 0.5388 43 +45 3 57.482163684512756 -808.9891786502809 38.8301 0.535 44 +46 3 57.62228451933831 -807.8680188973252 38.8226 0.5312 45 +47 3 57.3785076708065 -806.7672733235798 38.9127 0.5275 46 +48 3 56.93286780894201 -805.73135655399 39.0902 0.5237 47 +49 3 56.47926387928635 -804.6910371006485 39.31 0.5199 48 +50 3 56.15112867687742 -803.5986172779888 39.5226 0.5162 49 +51 3 55.992662422556634 -802.4665341466589 39.7032 0.5124 50 +52 3 56.06798104199646 -801.3278326468944 39.8518 0.5087 51 +53 3 56.39068693819141 -800.2356234615454 39.9829 0.5049 52 +54 3 56.791767309356175 -799.167202123371 40.1078 0.5011 53 +55 3 56.90414887299096 -798.0371063291327 40.231 0.4974 54 +56 3 56.81286939696318 -796.9017161110772 40.3449 0.4936 55 +57 3 56.540192129877425 -795.7941349095327 40.4233 0.4898 56 +58 3 56.14057438558302 -794.7223006693421 40.444 0.4861 57 +59 3 55.69567412786134 -793.668510651986 40.406 0.4823 58 +60 3 55.49484734015155 -792.5444322199635 40.3217 0.4786 59 +61 3 55.67766692934117 -791.5304035380179 40.0436 0.4748 60 +62 3 55.77632885623757 -790.4581960981159 39.6715 0.471 61 +63 3 55.345916661900844 -789.4490938421645 39.2865 0.4673 62 +64 3 55.341386822674906 -788.334122990278 39.1062 0.4635 63 +65 3 55.18811393694429 -787.2377043920685 39.1129 0.4598 64 +66 3 55.13389740511144 -786.1109198795391 39.2255 0.456 65 +67 3 55.03144068158613 -784.9719787266235 39.349 0.4522 66 +68 3 54.98357194568899 -783.8291643829423 39.4405 0.4485 67 +69 3 54.93509767836312 -782.6847583949261 39.478 0.4447 68 +70 3 54.92425768386195 -781.5481313212915 39.4117 0.4409 69 +71 3 55.130077134943406 -780.4736889293707 39.2073 0.4372 70 +72 3 55.43534550493359 -779.3940070214536 38.9673 0.4334 71 +73 3 55.745050470174306 -778.2947249445938 38.827 0.4297 72 +74 3 55.8948339372852 -777.1866767719134 38.8242 0.4259 73 +75 3 56.00383031653877 -776.100529134937 38.9508 0.4221 74 +76 3 56.14761156904905 -775.4101085157297 39.0401 0.4221 75 +77 3 56.215832339231014 -774.2817660958431 39.0768 0.4212 76 +78 3 55.72114639288816 -773.2802093553181 38.9948 0.4207 77 +79 3 54.9829926435568 -772.4943901379735 38.7209 0.4202 78 +80 3 54.47017392754438 -771.5351418205357 38.3247 0.4198 79 +81 3 54.21923144568373 -770.4355767970842 37.9417 0.4193 80 +82 3 54.38099954850591 -769.3223848410814 37.6354 0.4188 81 +83 3 54.90604900609446 -768.3159828999635 37.3932 0.4183 82 +84 3 55.536104959510595 -767.370144279709 37.1442 0.4179 83 +85 3 55.975213663938916 -766.3724502055084 36.7982 0.4174 84 +86 3 55.99746712640808 -765.3154771531516 36.3244 0.4169 85 +87 3 55.70278286928067 -764.2832557047204 35.756 0.4164 86 +88 3 55.30052626476535 -763.2870903248142 35.142 0.416 87 +89 3 54.74020995205902 -762.3734560217613 34.5456 0.4155 88 +90 3 53.9195464900545 -761.6021263632294 34.0816 0.415 89 +91 3 53.02624083422924 -760.8913046519187 33.8064 0.4145 90 +92 3 52.343000883072534 -760.0299207948938 33.7296 0.4141 91 +93 3 52.15515309835192 -758.9534665739556 33.8148 0.4136 92 +94 3 52.33690904076485 -757.8396694167507 33.9721 0.4131 93 +95 3 52.60292686607494 -756.7317760795485 34.1253 0.4127 94 +96 3 52.747411248563964 -755.6025163604329 34.2129 0.4122 95 +97 3 52.57924070083524 -754.507003116845 34.1841 0.4117 96 +98 3 52.09156135735995 -753.5210888670507 34.0057 0.4112 97 +99 3 51.61526667298352 -752.5218149938634 33.7613 0.4108 98 +100 3 51.16388827577387 -751.4774697480119 33.5566 0.4103 99 +101 3 50.43559262572205 -750.6264856023809 33.4194 0.4098 100 +102 3 49.48374027445004 -749.9957332013723 33.3542 0.4093 101 +103 3 48.56350543520318 -749.3288700965027 33.357 0.4089 102 +104 3 47.93876006919123 -748.4135543981524 33.4373 0.4084 103 +105 3 47.70511026141526 -747.3157791855854 33.5894 0.4079 104 +106 3 47.68494166062058 -746.1817649848181 33.7733 0.4074 105 +107 3 47.638940968858265 -745.0543804956765 33.9746 0.407 106 +108 3 47.67098997112569 -743.9348359849696 34.1611 0.4065 107 +109 3 48.04980858911361 -742.8711331577356 34.2787 0.406 108 +110 3 48.846805053955705 -742.1365303432642 34.3112 0.4055 109 +111 3 49.92373096716685 -741.7750347036579 34.244 0.4051 110 +112 3 50.918823746544916 -741.2872875761117 34.0757 0.4046 111 +113 3 51.54012914231481 -740.3928289883687 33.8209 0.4041 112 +114 3 51.57437096965708 -739.3046622009412 33.523 0.4036 113 +115 3 51.17267926505431 -738.2721306157326 33.1848 0.4032 114 +116 3 50.655790395854126 -737.2987488679601 32.809 0.4027 115 +117 3 50.107587897210124 -736.3303376947074 32.4548 0.4022 116 +118 3 49.47876313295859 -735.4011119816194 32.1686 0.4017 117 +119 3 48.81482605258603 -734.4810413357957 32.0166 0.4013 118 +120 3 47.96525069324181 -733.7669713680788 32.0541 0.4008 119 +121 3 46.97563013202577 -733.2917624089688 32.319 0.4003 120 +122 3 46.06850733887566 -732.7406979407369 32.7925 0.3998 121 +123 3 45.86998002391536 -731.8844667831547 33.4421 0.3994 122 +124 3 46.24146622848923 -730.8768129141048 34.1076 0.3989 123 +125 3 46.62696666840469 -729.8128047088614 34.6858 0.3984 124 +126 3 46.75993604824262 -728.6903195534917 35.1411 0.3979 125 +127 3 46.65794000402596 -727.5672871332276 35.4984 0.3975 126 +128 3 46.392099860167235 -726.4686274643979 35.7697 0.397 127 +129 3 46.14476162759607 -725.3555151391097 35.9302 0.3965 128 +130 3 46.055925544794974 -724.2227325693318 35.9747 0.396 129 +131 3 45.97567323955488 -723.0934383749327 35.917 0.3956 130 +132 3 45.70841495146399 -721.9901097804302 35.8165 0.3951 131 +133 3 45.25035473232674 -720.946069912588 35.7165 0.3946 132 +134 3 44.67166419125604 -719.9594332278477 35.6334 0.3941 133 +135 3 44.030312149572495 -719.012769988555 35.5757 0.3937 134 +136 3 43.40577792432376 -718.0544937802031 35.5426 0.3932 135 +137 3 42.92216603448091 -717.0211235948375 35.5247 0.3927 136 +138 3 42.70817928535561 -715.9067953123288 35.5093 0.3922 137 +139 3 42.9056938837102 -714.7950825646117 35.4886 0.3918 138 +140 3 43.44076868648489 -713.7941085562401 35.4612 0.3913 139 +141 3 44.179320715234894 -712.9240168939255 35.4239 0.3908 140 +142 3 44.96381033518219 -712.0936032824072 35.3665 0.3903 141 +143 3 45.55679811981372 -711.1273869571064 35.278 0.3899 142 +144 3 45.563890203398245 -710.0149559694264 35.1733 0.3894 143 +145 3 44.89225650128296 -709.1207959780475 35.0784 0.3889 144 +146 3 43.939039611508605 -708.497059133658 34.9992 0.3884 145 +147 3 43.02155727265941 -707.8134355472453 34.9334 0.388 146 +148 3 42.4219799660936 -706.8480458158667 34.8746 0.3875 147 +149 3 42.2221016895559 -705.7270055290935 34.8082 0.387 148 +150 3 42.21444991701392 -704.5868848554906 34.722 0.3865 149 +151 3 42.34328658418272 -703.4528597397225 34.6251 0.3861 150 +152 3 42.571961045035835 -702.332320726143 34.5369 0.3856 151 +153 3 42.79708859149112 -701.2109635449438 34.4644 0.3851 152 +154 3 42.937266761208306 -700.0754383225315 34.4064 0.3847 153 +155 3 43.02797609909932 -698.9347328802636 34.3582 0.3842 154 +156 3 43.16762207627508 -697.8001703473644 34.3134 0.3837 155 +157 3 43.3703717043424 -696.6744406647503 34.2616 0.3832 156 +158 3 43.6264125656065 -695.5610318775732 34.186 0.3828 157 +159 3 43.94249919935518 -694.4665346002968 34.0743 0.3823 158 +160 3 44.31885502118557 -693.390958077973 33.9408 0.3818 159 +161 3 44.73006243310614 -692.3255071009769 33.8173 0.3813 160 +162 3 45.05201827597891 -691.2276271643536 33.7226 0.3809 161 +163 3 45.081893856102354 -690.0859709771798 33.6591 0.3804 162 +164 3 44.88934546794442 -688.9586990986085 33.6221 0.3799 163 +165 3 44.67832907999758 -687.834243775344 33.6028 0.3794 164 +166 3 44.488954735457654 -686.7059842495122 33.5944 0.379 165 +167 3 44.32783245171913 -685.5764320286376 33.602 0.3785 166 +168 3 44.17987535398578 -684.4489016577693 33.6213 0.378 167 +169 3 43.95856767023224 -683.3265270148306 33.5936 0.3775 168 +170 3 43.541304988131685 -682.2841306103251 33.4527 0.3771 169 +171 3 42.935690488229014 -681.353224531546 33.2077 0.3766 170 +172 3 42.41533670596942 -680.3532464611424 32.9232 0.3761 171 +173 3 42.21964847699246 -679.229380665311 32.6645 0.3756 172 +174 3 42.31237071113834 -678.0897879892661 32.466 0.3752 173 +175 3 42.58517205394564 -676.9791317024867 32.3386 0.3747 174 +176 3 42.916243866920894 -675.883777451729 32.2764 0.3742 175 +177 3 43.22807266903786 -674.7829271539272 32.2613 0.3737 176 +178 3 43.46231618559557 -673.6640956585934 32.2728 0.3733 177 +179 3 43.518241717467404 -672.5224432005814 32.2997 0.3728 178 +180 3 43.32160497731836 -671.3955392595005 32.34 0.3723 179 +181 3 43.02420838548798 -670.2925748733268 32.3963 0.3718 180 +182 3 43.03197228914432 -669.153092108297 32.4705 0.3714 181 +183 3 43.45724501710201 -668.0927886437853 32.5746 0.3709 182 +184 3 44.035697852636304 -667.119794025577 32.7401 0.3704 183 +185 3 44.40125481363904 -666.0682989194246 32.9784 0.3699 184 +186 3 44.4235394880515 -664.9381004000103 33.2374 0.3695 185 +187 3 44.4709256030403 -663.8048674645083 33.4583 0.369 186 +188 3 44.914314397292074 -662.7545788960035 33.6151 0.3685 187 +189 3 45.5455456764125 -661.8041339095578 33.7053 0.368 188 +190 3 45.89285622756887 -660.7360388477512 33.7341 0.3676 189 +191 3 45.61783353366428 -659.6494423781096 33.7134 0.3671 190 +192 3 44.84665038227173 -658.8191976208192 33.6608 0.3666 191 +193 3 43.86130319086163 -658.2418002166163 33.5773 0.3661 192 +194 3 42.930078083181414 -657.632848889476 33.4379 0.3657 193 +195 3 42.37978562023338 -656.6868205679007 33.2396 0.3652 194 +196 3 42.223869679298616 -655.5666595128008 33.0518 0.3647 195 +197 3 42.21217793590567 -654.4268192594599 32.942 0.3642 196 +198 3 42.41800111614893 -653.3263269157906 32.9532 0.3638 197 +199 3 43.021117436964104 -652.4009029029369 33.0946 0.3633 198 +200 3 43.88716872423393 -651.6784228562794 33.3127 0.3628 199 +201 3 44.634431144935405 -650.8444545807392 33.5353 0.3624 200 +202 3 44.93571285850416 -649.7626830387447 33.7187 0.3619 201 +203 3 44.83689981165702 -648.6243850189921 33.8526 0.3614 202 +204 3 44.6491078664002 -647.4957433773287 33.9436 0.3609 203 +205 3 44.48492247966509 -646.3644978165495 34.0085 0.3605 204 +206 3 44.18573085236052 -645.2670541049401 34.071 0.36 205 +207 3 43.609440547966045 -644.2948845852262 34.1494 0.3595 206 +208 3 42.74613240314871 -643.5535696068991 34.2527 0.359 207 +209 3 41.75526976176384 -642.9861491667423 34.3952 0.3586 208 +210 3 40.79390602011746 -642.3959582431864 34.6167 0.3581 209 +211 3 39.98978144971362 -641.6467975960134 34.9376 0.3576 210 +212 3 39.55596466806482 -640.6723774505115 35.3248 0.3571 211 +213 3 39.753045040285784 -639.5852197724881 35.6997 0.3567 212 +214 3 40.393760226999134 -638.6413888238989 36.0086 0.3562 213 +215 3 41.09430482084426 -637.7476578956914 36.2608 0.3557 214 +216 3 41.5352517172972 -636.7325836301776 36.4991 0.3552 215 +217 3 41.53746746360767 -635.6384813449829 36.7374 0.3548 216 +218 3 41.1249038895166 -634.6090806468419 36.9328 0.3543 217 +219 3 40.4266057504727 -633.7276032341944 36.9956 0.3538 218 +220 3 39.712571349273645 -632.9289513614085 36.8589 0.3533 219 +221 3 39.00814597463014 -632.1317265866064 36.5856 0.3529 220 +222 3 38.33657483199613 -631.2349731252909 36.3129 0.3524 221 +223 3 37.83333901959091 -630.2182919082356 36.1421 0.3519 222 +224 3 37.58627225353028 -629.1234975060266 36.1497 0.3514 223 +225 3 37.551909158347385 -628.0339688796521 36.3815 0.351 224 +226 3 37.58380957933292 -626.9547914090103 36.7878 0.3505 225 +227 3 37.556380078356995 -625.8599547442625 37.2702 0.35 226 +228 3 37.39377336174317 -624.7543770194 37.7292 0.3495 227 +229 3 37.125504002998895 -623.6506037495847 38.059 0.3491 228 +230 3 36.768082537042574 -622.575815851591 38.2119 0.3486 229 +231 3 36.37970459972695 -621.5049390763238 38.255 0.3481 230 +232 3 36.203157686038594 -620.3890268991041 38.2505 0.3476 231 +233 3 36.406343035667376 -619.2765640980649 38.2337 0.3472 232 +234 3 36.85598315487492 -618.2244752694962 38.2301 0.3467 233 +235 3 37.29147044081685 -617.1671905473031 38.2572 0.3462 234 +236 3 37.66842101466996 -616.0880578655294 38.3194 0.3458 235 +237 3 37.99940531041675 -614.9926552336316 38.414 0.3453 236 +238 3 38.27325685996573 -613.8825795205337 38.5482 0.3448 237 +239 3 38.45199285593253 -612.7552295066757 38.7352 0.3443 238 +240 3 38.459756759588885 -611.6157467416458 38.9914 0.3439 239 +241 3 38.34934119286211 -610.4841749044988 39.3478 0.3434 240 +242 3 38.38134853400693 -609.4143118618092 39.87 0.3429 241 +243 3 38.7692918033641 -608.5660118914211 40.6227 0.3424 242 +244 3 39.15226748905691 -607.7620421941265 41.5394 0.342 243 +245 3 38.97466933902042 -606.7331887608798 42.4474 0.3415 244 +246 3 38.399346948728834 -605.7733234332273 43.2678 0.341 245 +247 3 37.73763287576797 -604.8990443612797 44.0283 0.3405 246 +248 3 37.169570356051196 -603.9876408152624 44.7356 0.3401 247 +249 3 36.68002819303078 -602.9980687104487 45.3552 0.3396 248 +250 3 36.06084143354407 -602.0609165313037 45.8492 0.3391 249 +251 3 35.20410939462252 -601.3337491616526 46.1941 0.3386 250 +252 3 34.28351184247482 -600.6745697043121 46.4318 0.3382 251 +253 3 34.03767194863542 -599.7621320535123 46.718 0.3377 252 +254 3 34.576699670854055 -598.8862905126616 47.1302 0.3372 253 +255 3 34.857982066046304 -597.8692194904833 47.605 0.3367 254 +256 3 34.6127297383907 -596.778170460522 48.0511 0.3363 255 +257 3 34.20795925702235 -595.7086295368482 48.4394 0.3358 256 +258 3 33.778701490031224 -594.6478329166246 48.7718 0.3353 257 +259 3 33.37324873941168 -593.5817997712604 49.0728 0.3348 258 +260 3 33.10931577577611 -592.4987058553388 49.4113 0.3344 259 +261 3 33.03384081179581 -591.4151298959283 49.8313 0.3339 260 +262 3 32.98382477670303 -590.3090638733811 50.293 0.3334 261 +263 3 32.77535870214217 -589.1965306263465 50.7248 0.3329 262 +264 3 32.373031614000524 -588.1295973509505 51.0863 0.3325 263 +265 3 31.91710941008077 -587.0814833094582 51.3724 0.332 264 +266 3 31.708111142978495 -585.969912751937 51.6211 0.3315 265 +267 3 32.100228320305945 -584.9580100050068 51.8918 0.331 266 +268 3 32.96351815342659 -584.2665683921207 52.1749 0.3306 267 +269 3 33.88880409580547 -583.5977445252948 52.3919 0.3301 268 +270 3 34.384711811740075 -582.6130536157823 52.4835 0.3296 269 +271 3 34.219879562680276 -581.5115016834296 52.5112 0.3291 270 +272 3 33.87058119497631 -580.4242934281633 52.5636 0.3287 271 +273 3 33.84224111478912 -579.3027871018971 52.7349 0.3282 272 +274 3 34.20275375430508 -578.3007216914825 53.0762 0.3277 273 +275 3 34.60718706830134 -577.3492169807586 53.5676 0.3272 274 +276 3 34.7801064312674 -576.3245734261936 54.1335 0.3268 275 +277 3 34.318191394688796 -575.32285093519 54.6319 0.3263 276 +278 3 33.51664834961423 -574.5123868971891 54.9158 0.3258 277 +279 3 33.15251907437673 -573.5229018437826 54.8758 0.3253 278 +280 3 33.54177580154072 -572.6060844680978 54.5597 0.3249 279 +281 3 34.368008944662535 -571.8301698315513 54.2223 0.3244 280 +282 3 35.00193538928903 -570.877329833019 53.9641 0.3239 281 +283 3 35.13956847020992 -569.7416545338967 53.8166 0.3234 282 +284 3 34.538288869988094 -568.7936058577429 53.8614 0.323 283 +285 3 33.73846901692821 -568.0128887625982 54.0683 0.3225 284 +286 3 32.9301529035358 -567.2287316732148 54.3558 0.322 285 +287 3 32.305706195515526 -566.2705038460032 54.6017 0.3215 286 +288 3 31.84516344706327 -565.2237204315148 54.7904 0.3211 287 +289 3 31.603621084728942 -564.1046711130315 54.9307 0.3206 288 +290 3 31.936754175099196 -563.0103421112681 55.032 0.3201 289 +291 3 32.8694094332465 -562.3494770876437 55.1174 0.3196 290 +292 3 34.01159361797852 -562.2789786610792 55.2093 0.3192 291 +293 3 34.18057208137013 -562.1554072286613 54.8458 0.3192 292 +294 3 34.97566359972306 -561.3413667582649 54.7548 0.3173 293 +295 3 35.40743569575406 -560.3003103250736 54.714 0.3163 294 +296 3 35.590149103090525 -559.17527336089 54.691 0.3153 295 +297 3 35.783100491804205 -558.0505257707199 54.6882 0.3144 296 +298 3 36.081764107916 -556.9476536229117 54.6706 0.3134 297 +299 3 36.38325323308615 -555.8489715226642 54.6 0.3125 298 +300 3 36.58271294362466 -554.7291930115863 54.4849 0.3115 299 +301 3 36.876150483775206 -553.6260598464469 54.3575 0.3106 300 +302 3 37.505563304028485 -552.6838649028706 54.2298 0.3096 301 +303 3 38.33061589685636 -551.9007846329953 54.0887 0.3086 302 +304 3 39.14783476544534 -551.1198867390154 53.9235 0.3077 303 +305 3 39.93140605655745 -550.3008488328445 53.7606 0.3067 304 +306 3 40.66747555599241 -549.4280136238838 53.6581 0.3058 305 +307 3 41.20657615127692 -548.4292651479581 53.6528 0.3048 306 +308 3 41.506952510224096 -547.3325959439655 53.7258 0.3038 307 +309 3 41.76093209409313 -546.218161907794 53.8451 0.3029 308 +310 3 42.289600270612645 -545.2097612487622 53.9966 0.3019 309 +311 3 43.147362709151345 -544.4669306496131 54.1733 0.301 310 +312 3 44.03680791875183 -543.7469852425727 54.3788 0.3 311 +313 3 44.74667216513897 -542.8649193937262 54.6515 0.2991 312 +314 3 45.38850683809281 -541.9686694996708 55.0421 0.2981 313 +315 3 45.984951786159776 -541.0670948638667 55.545 0.2971 314 +316 3 46.18770813424463 -539.9909591320413 56.0944 0.2962 315 +317 3 46.06291814430973 -538.8736079122308 56.6269 0.2952 316 +318 3 46.057797282222914 -537.7361432680456 57.1052 0.2943 317 +319 3 46.32175383013796 -536.6272246818487 57.505 0.2933 318 +320 3 46.6973595986462 -535.5459774082506 57.8323 0.2924 319 +321 3 46.78144594492914 -534.429033825804 58.1868 0.2914 320 +322 3 46.687033348099796 -533.3466436412772 58.623 0.2904 321 +323 3 46.85675134037196 -532.2403603217342 59.0778 0.2895 322 +324 3 47.22053208623076 -531.1755428636961 59.5378 0.2885 323 +325 3 47.20506661390771 -530.0425289541762 59.9724 0.2876 324 +326 3 46.88280062062289 -528.9467264721695 60.352 0.2866 325 +327 3 46.480533936081315 -527.87617016608 60.681 0.2857 326 +328 3 45.98244779204156 -526.8464531937445 60.9857 0.2847 327 +329 3 45.732402332578 -525.7717221258947 61.3981 0.2837 328 +330 3 46.518008136499006 -525.1728515214687 61.9836 0.2828 329 +331 3 47.39423571956566 -524.4954179286544 62.6091 0.2818 330 +332 3 48.4180834049242 -524.0656159077356 63.2506 0.2809 331 +333 3 49.45851579906286 -523.7401634792197 63.9122 0.2799 332 +334 3 49.94291381478875 -522.7091176691993 64.4798 0.279 333 +335 3 49.99945905643047 -521.5665509028141 64.9244 0.278 334 +336 3 50.94475853315816 -521.3129398831436 65.9823 0.278 335 +337 3 51.91229915600429 -521.0215768910829 67.5578 0.2737 336 +338 3 52.83002571473135 -520.5462494214296 68.2472 0.2716 337 +339 3 53.512641512646766 -519.7180208464358 69.0021 0.2694 338 +340 3 53.92459495742736 -518.6702360358313 69.7354 0.2673 339 +341 3 54.440906540282995 -517.6748862232483 70.4558 0.2652 340 +342 3 55.24931034931077 -517.0258882713645 71.2289 0.263 341 +343 3 56.0085586286666 -516.451753286979 72.0826 0.2609 342 +344 3 56.24834567939668 -515.545088045392 72.9714 0.2587 343 +345 3 55.7391952675829 -514.6075209074495 73.7696 0.2566 344 +346 3 54.8226703547309 -513.9451082459448 74.3999 0.2545 345 +347 3 53.83218829482348 -513.3738989856894 74.8535 0.2523 346 +348 3 52.980813335868795 -512.6167853025051 75.1288 0.2502 347 +349 3 52.35578265523184 -511.6672614385277 75.273 0.2481 348 +350 3 52.10092316560162 -510.56176033470854 75.4256 0.2459 349 +351 3 52.21828641338912 -509.44972977844276 75.6672 0.2438 350 +352 3 52.38359682754649 -508.32124233191485 75.957 0.2416 351 +353 3 52.443610711409384 -507.1792219364123 76.2555 0.2395 352 +354 3 51.83136422722078 -506.31880640156965 76.692 0.2374 353 +355 3 50.962869899652205 -505.71688210983416 77.2215 0.2352 354 +356 3 50.15600770657156 -504.9127328690977 77.6678 0.2331 355 +357 3 50.177321359246285 -503.7919384507454 78.5375 0.2309 356 +358 3 49.618786247603204 -520.5712339117908 65.3517 0.278 335 +359 3 49.085762161446006 -519.5875611595118 65.7908 0.2746 358 +360 3 48.33285655399032 -518.7655923545917 66.2469 0.2729 359 +361 3 47.48221743109025 -518.0491061072765 66.7223 0.2712 360 +362 3 46.93239866059085 -517.0602624191202 67.1762 0.2695 361 +363 3 46.52856097769915 -515.9908943740222 67.5676 0.2678 362 +364 3 45.804313960949514 -515.1112973192697 67.9204 0.2661 363 +365 3 44.870231005992885 -514.482712533215 68.2884 0.2644 364 +366 3 43.934023592632954 -513.8600376267269 68.6798 0.2627 365 +367 3 43.0278137292073 -513.1744187213355 69.0698 0.261 366 +368 3 42.22356627357486 -512.3665731110184 69.4582 0.2593 367 +369 3 41.85696412215356 -511.29082343633877 69.86 0.2576 368 +370 3 41.63041431951663 -510.18371870465114 70.2932 0.2559 369 +371 3 40.93328375655307 -509.3356802926779 70.7955 0.2542 370 +372 3 40.122240352884006 -508.61743080443244 71.3636 0.2525 371 +373 3 39.76817132501136 -507.56654899685304 71.9415 0.2509 372 +374 3 39.63325611997519 -506.46565317187685 72.5147 0.2492 373 +375 3 39.16431632065213 -505.43033882608097 73.0167 0.2475 374 +376 3 38.396311854866674 -504.5827693477881 73.416 0.2458 375 +377 3 37.45244948088665 -503.9363236277274 73.7363 0.2441 376 +378 3 36.459389042211185 -503.3722587332891 74.039 0.2424 377 +379 3 35.48088664579926 -502.8306389587091 74.4131 0.2407 378 +380 3 34.567344116585666 -502.1545637429838 74.8322 0.239 379 +381 3 33.90068658273314 -501.2526424534259 75.3214 0.2373 380 +382 3 33.48276348149374 -500.23810397143006 75.8881 0.2356 381 +383 3 33.563626043185394 -499.2282710663826 76.5618 0.2339 382 +384 3 34.51082600022955 -498.66697145710464 77.2027 0.2322 383 +385 3 35.343545867437754 -497.91818102396815 78.4 0.2305 384 +386 3 34.17578794483053 -561.0952564035249 55.5551 0.3192 292 +387 3 34.19395930950472 -559.9627839705245 55.8267 0.3192 386 +388 3 34.11720955798452 -558.8224000458563 56.1179 0.3192 387 +389 3 34.297786445531344 -557.7392592065911 56.4578 0.3192 388 +390 3 34.8413068937645 -556.8056846127035 56.887 0.3192 389 +391 3 35.20019397744689 -555.8158608348693 57.3653 0.3192 390 +392 3 35.08213017011755 -554.7101121349384 57.7951 0.3192 391 +393 3 34.81109786179623 -553.5995553476258 58.1459 0.3192 392 +394 3 34.69054107597252 -552.4675191020083 58.4312 0.3192 393 +395 3 34.92850127786899 -551.3702812689414 58.6706 0.3192 394 +396 3 35.51412497132178 -550.4078780999594 58.9123 0.3192 395 +397 3 35.9074710800833 -549.4030534691295 59.232 0.3192 396 +398 3 35.840386990630506 -548.3189742953871 59.6319 0.3192 397 +399 3 35.91571974948512 -547.2102175748016 60.0468 0.3192 398 +400 3 36.19441679351791 -546.1041916991335 60.4254 0.3192 399 +401 3 36.424571958084535 -544.9857281412903 60.7656 0.3192 400 +402 3 36.616392711998635 -543.8590986199445 61.0775 0.3192 401 +403 3 36.45926384362547 -542.7487792520491 61.3847 0.3192 402 +404 3 36.07142701367638 -541.6951125669275 61.7515 0.3192 403 +405 3 35.862832090991105 -540.6138162115143 62.2129 0.3192 404 +406 3 35.61673510361429 -539.5183010254926 62.7239 0.3192 405 +407 3 34.966112955730004 -538.6161033361349 63.2523 0.3192 406 +408 3 34.274644190289145 -537.7815928230677 63.8546 0.3192 407 +409 3 34.436960625243174 -536.8282154450353 64.5425 0.3192 408 +410 3 35.072238595232065 -535.9270839891162 65.2086 0.3192 409 +411 3 35.20706370544452 -534.8095096651198 65.7927 0.3192 410 +412 3 34.573368488961975 -533.8735922635254 66.2794 0.3192 411 +413 3 33.69417470465946 -533.1484047914578 66.7164 0.3192 412 +414 3 32.776456267299906 -532.5050998639698 67.1712 0.3192 413 +415 3 31.911346832812285 -531.8451728783415 67.6948 0.3192 414 +416 3 31.61965975919138 -530.792441264357 68.269 0.3192 415 +417 3 32.49226066025562 -530.0760957559171 68.791 0.3192 416 +418 3 32.7032574370051 -529.0528488256988 69.4089 0.3192 417 +419 3 32.61681939607263 -527.9659545920772 70.0342 0.3192 418 +420 3 32.093143649366446 -526.9705388184873 70.5936 0.3192 419 +421 3 31.09194655562441 -526.417058575405 71.0192 0.3192 420 +422 3 31.17089717702943 -526.0202192384186 71.3661 0.3192 421 +423 3 31.05490882543628 -524.9129898347742 72.4926 0.3127 422 +424 3 30.528018325743126 -523.9455053225813 72.9716 0.3095 423 +425 3 29.97339776098456 -523.0013120853957 73.5619 0.3063 424 +426 3 29.634321292809354 -521.962374864612 74.2336 0.3031 425 +427 3 29.582096972320237 -520.8685711206299 74.9538 0.2999 426 +428 3 29.69816657331117 -519.7510263574433 75.6554 0.2967 427 +429 3 29.576224603000306 -518.625422938882 76.309 0.2934 428 +430 3 28.773960987560656 -517.8929451226024 76.9927 0.2902 429 +431 3 27.966654915215152 -517.1968720261865 77.735 0.287 430 +432 3 27.27570113419246 -516.3207116056639 78.4703 0.2838 431 +433 3 26.18955285687344 -515.9748472251953 79.1451 0.2806 432 +434 3 25.091127423268382 -515.698523634437 79.812 0.2774 433 +435 3 24.79040457404458 -514.8392720834029 80.6602 0.2741 434 +436 3 24.359438394796058 -514.0155413007171 81.6169 0.2709 435 +437 3 23.808248831598178 -513.1095804873141 82.5524 0.2677 436 +438 3 23.41360822484051 -512.7633268064703 83.6903 0.2677 437 +439 3 22.720180207800937 -511.9069372775849 85.1679 0.2628 438 +440 3 22.23730871814898 -510.9627589181203 85.806 0.2604 439 +441 3 21.910505851619106 -509.9917375916666 86.611 0.258 440 +442 3 21.754227450157394 -508.9257654526139 87.4852 0.2555 441 +443 3 21.944800995981375 -507.8714606467669 88.401 0.2531 442 +444 3 21.996071411368632 -506.77956730742187 89.3063 0.2507 443 +445 3 22.0433225408161 -505.65608638601475 90.1368 0.2482 444 +446 3 21.826387241698292 -504.608686020349 90.972 0.2458 445 +447 3 21.516303390220962 -503.52784500287555 91.7577 0.2434 446 +448 3 21.684173906490308 -502.4716160221297 92.568 0.241 447 +449 3 22.04964863259621 -501.6406034623102 93.4802 0.2385 448 +450 3 21.66223334586742 -500.6027096114714 94.2976 0.2361 449 +451 3 21.531294056773064 -499.4663048849011 94.9203 0.2337 450 +452 3 21.133235093736886 -498.55907155661856 96.32 0.2312 451 +453 3 24.00641133940419 -512.6366145049221 83.3504 0.2677 437 +454 3 24.466805880908588 -511.61343782606707 84.0616 0.2634 453 +455 3 24.79447003786332 -510.54202324699554 84.6852 0.2612 454 +456 3 24.86919017611862 -509.43292785842914 85.2362 0.259 455 +457 3 25.2448261269637 -508.36609443542784 85.71 0.2569 456 +458 3 26.259634366594717 -507.84971130559404 86.1008 0.2547 457 +459 3 27.09184239594599 -507.0884117549024 86.4931 0.2526 458 +460 3 27.74103780006984 -506.1635517291339 86.8776 0.2504 459 +461 3 28.353445164370797 -505.208299432539 87.2441 0.2482 460 +462 3 29.054907135297455 -504.32593065286477 87.6156 0.2461 461 +463 3 29.619940565365624 -503.3408327476262 87.9743 0.2439 462 +464 3 29.684745094928623 -502.19986102451116 88.3025 0.2418 463 +465 3 30.01211867374228 -501.1149170121793 88.6371 0.2396 464 +466 3 30.513836477181215 -500.08933242487683 88.9426 0.2374 465 +467 3 31.004845131828546 -499.0564564637559 89.206 0.2353 466 +468 3 30.932234851921336 -497.9447557183879 89.5149 0.2331 467 +469 3 29.865465133491668 -497.8964048358575 90.44 0.231 468 +470 3 30.374261155018296 -525.813720937132 71.3787 0.3192 421 +471 3 29.40821430935808 -525.2274541105163 71.71 0.3152 470 +472 3 28.315029421355746 -524.9629401210124 72.0076 0.3132 471 +473 3 27.178600009522917 -524.8640824358215 72.2918 0.3112 472 +474 3 26.080415860091527 -524.5916629175456 72.5945 0.3092 473 +475 3 25.08882592832412 -524.0526347483211 72.9322 0.3072 474 +476 3 24.166863837674036 -523.4004708475998 73.3065 0.3052 475 +477 3 23.254365921459375 -522.7640511331786 73.7341 0.3032 476 +478 3 22.31165935347363 -522.2010851957751 74.214 0.3012 477 +479 3 21.295061557922494 -521.7515261650788 74.7001 0.2992 478 +480 3 20.25383750967152 -521.3000081351577 75.1293 0.2972 479 +481 3 19.368290374616933 -520.5974746899776 75.4726 0.2952 480 +482 3 18.757614384030624 -519.6428603571073 75.7408 0.2932 481 +483 3 18.257691912547152 -518.6174986002109 75.9682 0.2911 482 +484 3 17.595562181408994 -517.7024263029889 76.1956 0.2891 483 +485 3 16.674017943743763 -517.0596344564118 76.435 0.2871 484 +486 3 15.643769655358305 -516.5711067967253 76.6721 0.2851 485 +487 3 14.632455970039786 -516.038200191505 76.8975 0.2831 486 +488 3 13.642688226301324 -515.4648720276625 77.1176 0.2811 487 +489 3 12.619075243284179 -514.9631015313212 77.3612 0.2791 488 +490 3 11.589855233675287 -514.5157057648898 77.6773 0.2771 489 +491 3 10.615818663097023 -513.9916375258445 78.0805 0.2751 490 +492 3 9.64581194441707 -513.4253486722407 78.5263 0.2731 491 +493 3 8.600118962697564 -512.9779873999087 78.9592 0.2711 492 +494 3 7.501667367217777 -512.6752545434363 79.3761 0.2691 493 +495 3 6.412335101849202 -512.3998443482238 79.8182 0.2671 494 +496 3 5.344834092685659 -512.1182207600164 80.306 0.2651 495 +497 3 4.263963845924295 -511.87628285545 80.8242 0.2631 496 +498 3 3.1507949830877635 -511.7301815795786 81.345 0.2611 497 +499 3 2.0338202853661755 -511.89562889641917 81.8325 0.2591 498 +500 3 0.9158837331058507 -512.1351583624986 82.266 0.2571 499 +501 3 0.01634695130377395 -511.54246803173123 82.6865 0.2551 500 +502 3 0.6911243440648391 -510.76520963826187 83.2208 0.2531 501 +503 3 1.8326921790357105 -510.7204224954649 83.7575 0.2511 502 +504 3 2.9561848127870007 -510.5088739149766 84.3438 0.2491 503 +505 3 3.8227239319202653 -509.7735232809171 85.045 0.2471 504 +506 3 3.787910798649534 -509.55911636462974 85.9496 0.2471 505 +507 3 3.757363092224125 -508.9279499779834 87.2388 0.2452 506 +508 3 3.7580333214950272 -508.1718980017326 88.7813 0.2442 507 +509 3 3.632506484714675 -507.34276832354715 90.4831 0.2432 508 +510 3 3.333357507917526 -506.65532460971946 92.3059 0.2423 509 +511 3 2.951831026580358 -505.97593053847766 94.1688 0.2413 510 +512 3 2.7675829847549167 -505.0461235536236 95.9437 0.2404 511 +513 3 2.830152289814329 -504.02514942953206 97.5657 0.2394 512 +514 3 2.7559329238906543 -503.0680713889722 99.1015 0.2384 513 +515 3 2.997883820191035 -502.71700748627154 100.7048 0.2375 514 +516 3 3.055290070706164 -503.3632502985347 102.2792 0.2365 515 +517 3 2.4994547677845134 -504.1952928070798 103.658 0.2355 516 +518 3 1.5796522284626349 -504.8527508351371 104.7407 0.2346 517 +519 3 0.7258234232161911 -505.614095659334 105.5144 0.2336 518 +520 3 -0.10513967070532004 -506.3993931294308 106.043 0.2327 519 +521 3 -1.0881789040263925 -506.9798438816497 106.3955 0.2317 520 +522 3 -2.1435876793456856 -507.4216782589666 106.6206 0.2307 521 +523 3 -3.0594506802214667 -507.79896972935364 107.52 0.2298 522 +524 3 4.0398848641440495 -509.48611122564506 83.44 0.2471 505 +525 3 4.44545631018994 -508.451937810713 84.6376 0.2434 524 +526 3 4.683342182519063 -507.4073342295655 85.1654 0.2416 525 +527 3 5.137704133749303 -506.43475486145496 85.8024 0.2398 526 +528 3 5.829536684509556 -505.59688152275237 86.4814 0.238 527 +529 3 6.187032116061161 -504.6104018897038 87.1937 0.2361 528 +530 3 6.655171912822311 -503.6077323076936 87.8335 0.2343 529 +531 3 7.343611102682367 -502.6939404923085 88.277 0.2325 530 +532 3 7.794739014773967 -501.642674143122 88.76 0.2306 531 +533 3 56.0042555889209 -776.0902520174714 39.7832 0.4221 75 +534 3 55.97836832153331 -775.0825366561778 41.2516 0.4087 533 +535 3 55.80177452213266 -774.0045339474551 41.8709 0.402 534 +536 3 55.62241627772707 -772.8819257699668 42.5093 0.3953 535 +537 3 55.31793601497998 -771.7868145109628 43.1634 0.3886 536 +538 3 54.669382369256056 -771.0282465584244 43.9575 0.3818 537 +539 3 53.93570780664538 -770.9389382935324 44.9663 0.3751 538 +540 3 53.100296796983685 -770.6483882205052 46.0578 0.3684 539 +541 3 52.87292490293319 -769.7331340143986 47.1439 0.3617 540 +542 3 53.32332552464223 -768.7102599361446 48.0385 0.355 541 +543 3 53.860675445130596 -767.7289400326722 48.7824 0.3483 542 +544 3 54.372370503915846 -766.7229254319755 49.3536 0.3416 543 +545 3 54.49808150860676 -765.5898004462395 49.7311 0.3348 544 +546 3 54.16070521713277 -764.5000418775869 49.9775 0.3281 545 +547 3 53.45637734307567 -763.6009482140423 50.1595 0.3214 546 +548 3 53.04125300641928 -762.5360814406309 50.3314 0.3147 547 +549 3 52.738630338627644 -761.4328560371259 50.5151 0.308 548 +550 3 52.84359420535387 -760.2948889169147 50.7329 0.3013 549 +551 3 53.26656466304311 -759.2437106675573 51.0418 0.2946 550 +552 3 53.49251470769613 -758.3620753533137 51.6037 0.2878 551 +553 3 53.74046129321158 -757.3815362869165 52.2735 0.2811 552 +554 3 53.935487108054986 -756.3429473106874 52.9522 0.2744 553 +555 3 53.92851760476421 -755.1993188587749 53.4456 0.2681 554 +556 3 53.69160450586034 -754.7742354039476 56.4446 0.2677 555 +557 3 53.765233843488886 -754.1090209117422 60.2185 0.265 556 +558 3 53.980663854184854 -753.556246888753 61.8156 0.2637 557 +559 3 53.9820038631303 -753.1896314303009 63.7762 0.2623 558 +560 3 53.947990407375784 -752.9721244308098 65.9971 0.261 559 +561 3 53.95159046168209 -752.8591658117982 68.3684 0.2596 560 +562 3 53.93179136906804 -752.7319005536496 70.7787 0.2583 561 +563 3 53.82280326688755 -752.569612865937 73.1245 0.257 562 +564 3 53.28528765754811 -752.1823106328986 75.2738 0.2556 563 +565 3 52.79677689975463 -751.4533717880563 77.1823 0.2543 564 +566 3 52.95474126583102 -750.4439990575696 78.745 0.2529 565 +567 3 52.74630178003994 -749.5157870770593 80.127 0.2516 566 +568 3 52.38656250564091 -748.558665859838 81.3999 0.2502 567 +569 3 52.404049076029594 -747.479518571533 82.5418 0.2489 568 +570 3 52.67372522218048 -746.4952236837087 83.6864 0.2476 569 +571 3 52.72883248846887 -745.6956799955951 84.9601 0.2462 570 +572 3 52.911620865715236 -744.754876780707 86.2644 0.2449 571 +573 3 53.076202998810004 -743.7099701908791 87.5104 0.2435 572 +574 3 52.669807427429504 -742.7781321687087 88.7132 0.2422 573 +575 3 52.171375079232405 -741.8660291842433 89.8755 0.2408 574 +576 3 51.89817131001635 -740.8966439406554 91.0025 0.2395 575 +577 3 52.795954215309536 -740.322422837801 92.0472 0.2381 576 +578 3 53.693873018971374 -739.7481625988582 93.0362 0.2368 577 +579 3 53.050219308435544 -739.0799433078216 93.9232 0.2368 578 +580 3 52.28226501051836 -738.2841628002 94.747 0.2364 579 +581 3 51.51589311188431 -737.4880001767467 95.5259 0.2362 580 +582 3 50.749521213250205 -736.6918375532935 96.2783 0.236 581 +583 3 49.98156691533302 -735.8960570456718 97.0236 0.2358 582 +584 3 49.21577559038053 -735.0988442154769 97.7735 0.2356 583 +585 3 48.4483393066636 -734.30460697105 98.5362 0.2354 584 +586 3 47.681904848548214 -733.5110378175332 99.3124 0.2352 585 +587 3 46.92668673509232 -732.753606229132 100.133 0.235 586 +588 3 46.16986279896031 -731.9992861248674 100.9865 0.2349 587 +589 3 45.41462126211141 -731.2445839047712 101.8598 0.2347 588 +590 3 44.49768828500058 -730.6331355786743 102.7037 0.2345 589 +591 3 43.52113900277044 -730.0919099423859 103.5062 0.2343 590 +592 3 42.54131398135263 -729.5541295249258 104.279 0.2341 591 +593 3 41.561440578794674 -729.0164366246942 105.0339 0.2339 592 +594 3 40.79157135103043 -728.2431357310301 105.8187 0.2337 593 +595 3 40.2453936932485 -727.3372032743094 106.6688 0.2335 594 +596 3 39.84822876175372 -726.3791599990913 107.5866 0.2333 595 +597 3 39.45939061095086 -725.4178357600958 108.5445 0.2331 596 +598 3 39.06905757809338 -724.4569420180721 109.5128 0.2329 597 +599 3 38.678104835466 -723.4969625844215 110.4653 0.2327 598 +600 3 38.36188275553556 -722.4162704006039 111.2787 0.2325 599 +601 3 38.061529980867846 -721.320927102478 111.9555 0.2323 600 +602 3 37.763301043076495 -720.2240155834102 112.5351 0.2321 601 +603 3 37.46361635931885 -719.1276704596826 113.062 0.2319 602 +604 3 37.1653874215275 -718.0307589406148 113.5786 0.2317 603 +605 3 36.86508302799996 -716.9353281252603 114.1235 0.2315 604 +606 3 36.56694160743709 -715.8384649873325 114.7306 0.2313 605 +607 3 36.19448182234581 -714.8783108494516 115.5372 0.2311 606 +608 3 35.699438853513186 -714.0216710248991 116.5335 0.231 607 +609 3 34.85976385598727 -713.4620733939803 117.6613 0.2308 608 +610 3 34.01955666591999 -712.9034384525748 118.8802 0.2306 609 +611 3 33.1809318751358 -712.3444213953376 120.1516 0.2304 610 +612 3 32.34067630392829 -711.7858739711605 121.4394 0.2302 611 +613 3 31.500469113861016 -711.227239029755 122.7352 0.23 612 +614 3 30.66184432307682 -710.6682219725177 124.0044 0.2298 613 +615 3 29.82163713300949 -710.1095870311121 125.223 0.2296 614 +616 3 28.98196213548357 -709.5499894001935 126.3688 0.2294 615 +617 3 28.142805152157962 -708.9919350324694 127.4249 0.2292 616 +618 3 27.30254958095051 -708.4333876082924 129.4804 0.229 617 +619 3 54.63110869358755 -739.6558896871954 94.2463 0.2368 578 +620 3 55.70811750085366 -739.551989162311 95.8532 0.2356 619 +621 3 56.784211999746674 -739.4474689276567 96.5322 0.235 620 +622 3 57.85900618956754 -739.4965994632455 97.3566 0.2343 621 +623 3 58.85832432417402 -739.885644583825 98.2946 0.2337 622 +624 3 59.845296605596275 -740.3253390865244 99.3205 0.2331 623 +625 3 60.831218680276834 -740.7644530155424 100.4576 0.2325 624 +626 3 61.81814258055894 -741.2042350354704 101.6406 0.2319 625 +627 3 62.700265162880896 -741.6304150792989 102.9067 0.2313 626 +628 3 63.3865823577442 -742.0085670038411 104.2874 0.2307 627 +629 3 63.888971745106176 -742.1803751336431 105.7706 0.23 628 +630 3 63.78186526398548 -741.7616926146602 109.2137 0.2294 629 +631 3 53.35070120637184 -754.3008053030902 53.7244 0.2683 555 +632 3 52.56771890290432 -753.499345090443 53.7953 0.2685 631 +633 3 51.71810291204392 -752.7473172730888 53.7205 0.2688 632 +634 3 51.18901154635171 -751.7724458678513 53.6161 0.269 633 +635 3 51.17281140317522 -750.6550226689866 53.5506 0.2692 634 +636 3 51.33628179965342 -749.524489657759 53.522 0.2694 635 +637 3 51.33360433079329 -748.3896326618514 53.4923 0.2697 636 +638 3 51.165055396394735 -747.2664870672319 53.4467 0.2699 637 +639 3 50.98002640071496 -746.1446289430658 53.3946 0.2701 638 +640 3 50.753860578490645 -745.0260816347869 53.3756 0.2703 639 +641 3 50.50344506458174 -743.9137819223022 53.438 0.2705 640 +642 3 50.364759238250315 -742.7980041480233 53.6158 0.2708 641 +643 3 50.30699177155745 -741.6823968829914 53.8961 0.271 642 +644 3 50.086755192904235 -740.6076908118151 54.2545 0.2712 643 +645 3 49.760271669277245 -739.561889354176 54.647 0.2714 644 +646 3 49.59571461588979 -738.452605393154 54.9749 0.2717 645 +647 3 49.60602360834244 -737.313272704834 55.1552 0.2719 646 +648 3 49.51145943937556 -736.195605657835 55.1289 0.2721 647 +649 3 49.27775229670792 -735.1121959147248 54.9108 0.2723 648 +650 3 49.22683090699351 -733.9912322301794 54.5835 0.2726 649 +651 3 49.353229405525326 -732.8663714656539 54.2086 0.2728 650 +652 3 49.5818021708088 -731.7482900236423 53.8535 0.273 651 +653 3 49.80157852234018 -730.6318587649848 53.5304 0.2732 652 +654 3 49.411414969123314 -729.6776859809771 53.1583 0.2735 653 +655 3 48.537840621841156 -729.0849509982313 52.7668 0.2737 654 +656 3 47.615003358906336 -728.4323032861087 52.4765 0.2739 655 +657 3 47.03706809574746 -727.4631093521629 52.3981 0.2741 656 +658 3 47.09431800042691 -726.4019447568176 52.5913 0.2743 657 +659 3 47.30333985180869 -725.3215028122204 52.9508 0.2746 658 +660 3 47.41105771436048 -724.2045971617346 53.3898 0.2748 659 +661 3 47.28573030729447 -723.076436631917 53.8278 0.275 660 +662 3 47.04142126622125 -721.976653747685 54.2396 0.2752 661 +663 3 46.89436429851986 -720.8522490392945 54.5838 0.2755 662 +664 3 46.87509060316745 -719.7095885014849 54.8288 0.2757 663 +665 3 46.742563359973616 -718.5801900864818 54.9886 0.2759 664 +666 3 46.111338359045874 -717.6364972083675 55.0855 0.2761 665 +667 3 45.13214975077341 -717.0454791634404 55.1387 0.2763 666 +668 3 44.223987064466286 -716.3735206563886 55.1622 0.2766 667 +669 3 43.861442713546154 -715.3338361207643 55.1712 0.2768 668 +670 3 44.414342382946955 -714.3336892337641 55.1768 0.277 669 +671 3 45.0633322400503 -713.4127147903744 55.1835 0.2772 670 +672 3 45.08993357641393 -712.3123257732973 55.193 0.2775 671 +673 3 44.37503921087773 -711.4230448187477 55.2059 0.2777 672 +674 3 43.5847501511231 -710.6110322929626 55.2244 0.2779 673 +675 3 43.144625739233334 -709.5651385593267 55.2499 0.2781 674 +676 3 43.031002547616566 -708.4277942753358 55.286 0.2783 675 +677 3 42.980883321526335 -707.2863638730877 55.3364 0.2786 676 +678 3 42.804863375789694 -706.1577170068347 55.4061 0.2788 677 +679 3 42.4706753062749 -705.0644648382139 55.5024 0.279 678 +680 3 42.093319315157316 -703.9879120870829 55.6405 0.2792 679 +681 3 41.87297954550661 -702.877841636206 55.839 0.2795 680 +682 3 41.83091712902562 -701.75263429837 56.1047 0.2797 681 +683 3 41.767212669137706 -700.6312311631013 56.4147 0.2799 682 +684 3 41.65455739162381 -699.5061910711721 56.7288 0.2801 683 +685 3 41.66268923277069 -698.3707966581334 57.0055 0.2804 684 +686 3 41.9018337141229 -697.2546745066469 57.2174 0.2806 685 +687 3 42.171616314611654 -696.1542327778518 57.3644 0.2808 686 +688 3 42.050696815887136 -695.0298801797633 57.4636 0.281 687 +689 3 41.63967500956299 -693.9621395161535 57.5378 0.2813 688 +690 3 41.361850229993024 -692.8686236306462 57.6078 0.2815 689 +691 3 41.53474719917253 -691.7590701267318 57.6909 0.2817 690 +692 3 42.029090753553675 -690.7278092333388 57.8046 0.2819 691 +693 3 42.4013243118943 -689.664236749657 57.9734 0.2821 692 +694 3 42.44351453325868 -688.5451566474208 58.2154 0.2824 693 +695 3 42.249099596393805 -687.4402768655784 58.5158 0.2826 694 +696 3 41.97388246510144 -686.3443175868443 58.8344 0.2828 695 +697 3 41.76197117171232 -685.2285086006223 59.1354 0.283 696 +698 3 41.64194657843005 -684.0955096654914 59.3992 0.2833 697 +699 3 41.36957991394321 -683.0063822853947 59.6109 0.2835 698 +700 3 40.68163563018733 -682.1202307224848 59.7607 0.2837 699 +701 3 39.829194130268576 -681.3640128575701 59.8559 0.2839 700 +702 3 39.35715354836202 -680.3971419566566 59.9138 0.2841 701 +703 3 39.62344404431022 -679.331333957171 59.9502 0.2844 702 +704 3 40.15831516464537 -678.3212205553039 59.9766 0.2846 703 +705 3 40.45936483909223 -677.2353215252299 60.0029 0.2848 704 +706 3 40.56131398396201 -676.0955735478857 60.037 0.285 705 +707 3 40.768369824801155 -674.9761093685685 60.0835 0.2853 706 +708 3 41.11753274632332 -673.8881281627408 60.1437 0.2855 707 +709 3 41.44494670427929 -672.7946367315282 60.2328 0.2857 708 +710 3 41.67166187460731 -671.6846694340175 60.3781 0.2859 709 +711 3 41.7699100079073 -670.558643792967 60.5707 0.2862 710 +712 3 41.73298092556942 -669.4218770918019 60.7656 0.2864 711 +713 3 41.58739943699183 -668.2877758396276 60.9336 0.2866 712 +714 3 41.45666722927221 -667.1528567500601 61.0708 0.2868 713 +715 3 41.55712671667702 -666.0253112692078 61.1806 0.2871 714 +716 3 41.92431818726482 -664.9472965782469 61.2777 0.2873 715 +717 3 42.190748310743416 -663.8553994909245 61.4051 0.2875 716 +718 3 41.84225630164683 -662.8471358351301 61.5695 0.2877 717 +719 3 40.97678145470297 -662.1333031311248 61.7288 0.2879 718 +720 3 40.254431751597735 -661.2738369035022 61.8663 0.2882 719 +721 3 40.0813352813273 -660.1729724649904 61.9842 0.2884 720 +722 3 40.25846545461802 -659.0487339352691 62.0934 0.2886 721 +723 3 40.57363777999362 -657.9536169482228 62.2157 0.2888 722 +724 3 40.98962103774612 -656.8960622549471 62.3613 0.2891 723 +725 3 41.458571951882874 -655.858648003006 62.5218 0.2893 724 +726 3 41.726540113966564 -654.7544609019631 62.6746 0.2895 725 +727 3 41.52238025217754 -653.6481931582256 62.7956 0.2897 726 +728 3 40.92270125004211 -652.6852609984148 62.8757 0.2899 727 +729 3 40.16120419325425 -651.8329477212078 62.9168 0.2902 728 +730 3 39.36040597691215 -651.0163824349609 62.9266 0.2904 729 +731 3 38.65665867653655 -650.1162385646746 62.9129 0.2906 730 +732 3 38.31169147935161 -649.0379376637817 62.8816 0.2908 731 +733 3 38.49954867001054 -647.9248853353093 62.8356 0.2911 732 +734 3 38.97518140607485 -646.8871657053592 62.7724 0.2913 733 +735 3 39.32218135463236 -645.8006168221049 62.6794 0.2915 734 +736 3 39.2885332360718 -644.6721769016318 62.5408 0.2917 735 +737 3 39.01892429657235 -643.578061039512 62.3596 0.2919 736 +738 3 38.88220700581779 -642.4514881335674 62.1746 0.2922 737 +739 3 39.09603218581296 -641.331766957381 62.0486 0.2924 738 +740 3 39.401991778805865 -640.2342993189262 62.0052 0.2926 739 +741 3 39.79256299338317 -639.1613252202903 62.0211 0.2928 740 +742 3 40.22402448681527 -638.1018149656512 62.0612 0.2931 741 +743 3 40.205588362013515 -636.9648735602559 62.1074 0.2933 742 +744 3 39.62802999009662 -635.985490026073 62.1474 0.2935 743 +745 3 38.97936223837445 -635.0425524258703 62.174 0.2937 744 +746 3 38.333771767990044 -634.0988022128645 62.1905 0.294 745 +747 3 37.668286199833005 -633.1674775817208 62.2042 0.2942 746 +748 3 37.00637096946683 -632.2342417498919 62.2222 0.2944 747 +749 3 36.37715364020433 -631.2798896384804 62.2471 0.2946 748 +750 3 35.852879781466655 -630.2632330489457 62.281 0.2949 749 +751 3 35.54976405722195 -629.1611062333226 62.3288 0.2951 750 +752 3 35.54744930126262 -628.0185655898858 62.3988 0.2953 751 +753 3 35.769402804099855 -626.898196055947 62.4957 0.2955 752 +754 3 35.881416430244116 -625.7640119097177 62.6223 0.2957 753 +755 3 35.5485106065929 -624.675467802858 62.7718 0.296 754 +756 3 34.89500967414715 -623.7389993883919 62.9168 0.2962 755 +757 3 34.18933699474516 -622.8377911330226 63.0445 0.2964 756 +758 3 33.63150424096027 -621.8392610589615 63.1576 0.2966 757 +759 3 33.680685391423225 -620.700507448895 63.2652 0.2969 758 +760 3 34.501542712100715 -619.9084806885578 63.3934 0.2971 759 +761 3 35.20935240111032 -619.0749835415057 63.586 0.2973 760 +762 3 34.64744323994154 -618.1381873552439 63.8277 0.2975 761 +763 3 33.62142260085088 -617.641598865486 64.0192 0.2977 762 +764 3 32.739740363263934 -616.9711389696506 64.0825 0.298 763 +765 3 32.326596215491335 -615.9427884782513 64.0447 0.2982 764 +766 3 32.285641340643636 -614.8037962446402 64.0088 0.2984 765 +767 3 32.384784379385906 -613.6691242665474 64.0388 0.2986 766 +768 3 32.485408121841644 -612.5365277441908 64.1497 0.2989 767 +769 3 32.512158039487204 -611.395771687049 64.3261 0.2991 768 +770 3 32.449623680713884 -610.2579901860688 64.5616 0.2993 769 +771 3 32.192962066438895 -609.159262733168 64.8522 0.2995 770 +772 3 31.585266886210377 -608.2180653585823 65.1899 0.2998 771 +773 3 30.783957375685517 -607.4495507599295 65.5844 0.3 772 +774 3 30.227822156788434 -606.5473689000464 66.0251 0.3002 773 +775 3 30.335980965491345 -605.4555021306555 66.4404 0.3004 774 +776 3 30.874877878336306 -604.4476142612344 66.7769 0.3007 775 +777 3 31.335187680020397 -603.4210771033713 67.0471 0.3009 776 +778 3 31.273342310515787 -602.3293817748704 67.2885 0.3011 777 +779 3 30.696737674360634 -601.3648083854571 67.5178 0.3013 778 +780 3 29.897439564662832 -600.5595846017586 67.7258 0.3015 779 +781 3 28.99065961566137 -599.8661091702625 67.9031 0.3018 780 +782 3 28.04661080629141 -599.2187605427616 68.0495 0.302 781 +783 3 27.189466469201335 -598.4755969232307 68.171 0.3022 782 +784 3 26.6169893211256 -597.5107914946955 68.2791 0.3024 783 +785 3 26.45311453698936 -596.397999755364 68.3973 0.3027 784 +786 3 26.655187120395155 -595.2875498505796 68.5563 0.3029 785 +787 3 27.060129029018796 -594.2264050863555 68.7616 0.3031 786 +788 3 27.41496792640484 -593.1494458267259 68.9942 0.3033 787 +789 3 27.48700185290555 -592.0284674980179 69.2474 0.3035 788 +790 3 27.25208397760713 -590.9234782709821 69.5198 0.3038 789 +791 3 26.88958651239929 -589.8458842668609 69.7936 0.304 790 +792 3 26.473581448641838 -588.7871578777839 70.0557 0.3042 791 +793 3 25.86849391669095 -587.8435171099715 70.3088 0.3044 792 +794 3 25.026561573359658 -587.0918520055181 70.5468 0.3047 793 +795 3 24.303879339690425 -586.2544832760216 70.7582 0.3049 794 +796 3 24.266749565768663 -585.1842210838983 70.9159 0.3051 795 +797 3 24.60551025086272 -584.1010015455614 70.9778 0.3053 796 +798 3 24.623847366015653 -583.0013000223253 70.9498 0.3056 797 +799 3 24.21001049981254 -581.9529133101951 70.9075 0.3058 798 +800 3 23.820887733764437 -580.888137783174 70.9243 0.306 799 +801 3 23.724262287402468 -579.7694454871804 71.013 0.3062 800 +802 3 23.677636661280573 -578.6312033068916 71.139 0.3064 801 +803 3 23.313170660495842 -577.5644044344363 71.2704 0.3067 802 +804 3 22.684853461265234 -576.6131779855025 71.3905 0.3069 803 +805 3 22.36636671280047 -575.5363756958261 71.4921 0.3071 804 +806 3 22.738431995628048 -574.4898496687659 71.5761 0.3073 805 +807 3 23.319385559280633 -573.5050972293786 71.6556 0.3076 806 +808 3 23.62156217829164 -572.4146793503418 71.7665 0.3078 807 +809 3 23.319880272048096 -571.3525374589519 71.944 0.308 808 +810 3 22.615880869166446 -570.4757924442856 72.1535 0.3082 809 +811 3 22.178857162007418 -569.4263567295412 72.3206 0.3085 810 +812 3 22.547084330769053 -568.3698247602257 72.4172 0.3087 811 +813 3 23.19476884884257 -567.4284754281242 72.4794 0.3089 812 +814 3 23.600280551741733 -566.3611326533738 72.5337 0.3091 813 +815 3 23.497141558965254 -565.2256992787679 72.5959 0.3093 814 +816 3 22.87950332618938 -564.2673503530558 72.6911 0.3096 815 +817 3 22.043385051898156 -563.4952468875823 72.8594 0.3098 816 +818 3 21.292570321573777 -562.6606081089913 73.1237 0.31 817 +819 3 20.93946369191407 -561.5962039573221 73.453 0.3102 818 +820 3 20.939061670994263 -560.4626048710579 73.7982 0.3105 819 +821 3 21.086121654843154 -559.3295128839932 74.1269 0.3107 820 +822 3 21.24112783790659 -558.1969287532496 74.4229 0.3109 821 +823 3 21.120472755448375 -557.0596963227074 74.6883 0.3111 822 +824 3 20.42916554550304 -556.1585454022297 74.9773 0.3114 823 +825 3 19.800265208630208 -555.2906372583107 75.3838 0.3116 824 +826 3 19.60605665376029 -554.2564862358698 75.887 0.3118 825 +827 3 19.90936171276327 -553.1993714591388 76.3946 0.312 826 +828 3 20.01343622886361 -552.0634264802342 76.7987 0.3122 827 +829 3 19.49819637781627 -551.0426229996892 77.0795 0.3125 828 +830 3 18.89396092498386 -550.0837992163273 77.1999 0.3127 829 +831 3 18.500872731099648 -549.0456258580539 77.1607 0.3129 830 +832 3 18.415192493113267 -547.9263570088408 77.0546 0.3131 831 +833 3 18.502038428964497 -546.791399968497 77.056 0.3134 832 +834 3 17.785225870240794 -546.0761098485764 77.313 0.3136 833 +835 3 16.85192717140528 -545.4556142492754 77.6611 0.3138 834 +836 3 16.05174866483307 -544.6381346546555 77.9948 0.314 835 +837 3 15.916069304691092 -543.9840426189055 78.3118 0.3179 836 +838 3 16.06906259149963 -542.850345721939 78.6055 0.3218 837 +839 3 16.336400264407416 -541.7419251254846 78.9076 0.3256 838 +840 3 16.421209511457718 -540.6594316143656 79.3164 0.3295 839 +841 3 17.342715741899866 -540.3610163378527 79.6071 0.278 840 +842 3 18.481124372047248 -540.2779184990965 79.5928 0.2747 841 +843 3 19.576071414926744 -539.9460385459668 79.5841 0.2731 842 +844 3 20.475347202098952 -539.2405544578359 79.5539 0.2714 843 +845 3 21.316033331905885 -538.4647455373212 79.4937 0.2698 844 +846 3 22.27301618476136 -537.8487516417827 79.3783 0.2682 845 +847 3 23.310895935111702 -537.3989408439879 79.1988 0.2665 846 +848 3 24.260309479994618 -536.7722494918912 78.9961 0.2649 847 +849 3 25.17208049768108 -536.0828140552426 78.8194 0.2632 848 +850 3 26.231658965876605 -535.6516259759355 78.6811 0.2616 849 +851 3 27.343901673696458 -535.3971797362276 78.554 0.26 850 +852 3 28.433838636814535 -535.0846971824283 78.4207 0.2583 851 +853 3 29.400491211125903 -534.4805618908111 78.3138 0.2567 852 +854 3 29.870004830367627 -533.438202604698 78.2592 0.255 853 +855 3 30.00993831697602 -532.3064270662958 78.2858 0.2534 854 +856 3 30.422444308982513 -531.2442077591097 78.3913 0.2518 855 +857 3 31.263512554621087 -530.4699812378781 78.5386 0.2501 856 +858 3 31.707408583667124 -529.4160881287835 78.7144 0.2485 857 +859 3 31.977616456537945 -528.3053692825227 78.9345 0.2468 858 +860 3 32.62232538884335 -527.3623749916569 79.1963 0.2452 859 +861 3 33.58127122245935 -526.7422101601883 79.5049 0.2436 860 +862 3 34.64569809814162 -526.4556172846221 79.9445 0.2419 861 +863 3 35.578469113420546 -525.8871409323826 80.5008 0.2403 862 +864 3 36.27597830049803 -525.0234971493664 81.1362 0.2386 863 +865 3 37.079895094033176 -524.295805127236 81.8387 0.237 864 +866 3 37.78764197118758 -523.4183961816022 82.5048 0.2354 865 +867 3 38.52902498595949 -522.6107718348867 83.162 0.2337 866 +868 3 39.368129551457805 -521.909959371984 83.7841 0.2321 867 +869 3 40.21483850162848 -521.2644264110122 85.12 0.2304 868 +870 3 15.917936427545044 -539.6295895230677 80.2318 0.3295 840 +871 3 16.350352491713394 -538.6595037549785 80.8623 0.3252 870 +872 3 16.277195741664755 -538.4047035588986 81.2795 0.323 871 +873 3 15.956880085153529 -537.3126073130513 81.6539 0.3209 872 +874 3 15.603573793516382 -536.2270683527696 81.8068 0.3188 873 +875 3 15.192759068566978 -535.1608133261625 81.975 0.3166 874 +876 3 14.796547407012476 -534.092118926791 82.1736 0.3145 875 +877 3 14.622370547663493 -532.9762600640008 82.4135 0.3123 876 +878 3 14.876271529129163 -531.8799504263478 82.6711 0.3102 877 +879 3 15.366464172037908 -530.8516509403818 82.9206 0.3081 878 +880 3 15.675042192714429 -529.7568877124847 83.1664 0.3059 879 +881 3 15.550439881223411 -528.631756082865 83.4042 0.3038 880 +882 3 15.008142367783115 -527.6353011732396 83.6293 0.3016 881 +883 3 14.256634919028201 -526.7806261739177 83.8544 0.2995 882 +884 3 13.548159823734125 -525.8908946979385 84.0924 0.2973 883 +885 3 13.07955807086499 -524.8593093901679 84.3452 0.2952 884 +886 3 12.774122207775243 -523.7624129622685 84.6006 0.2931 885 +887 3 12.30501508469277 -522.7214072192137 84.8422 0.2909 886 +888 3 11.574878212834264 -521.8446100942454 85.0632 0.2888 887 +889 3 10.773635321179206 -521.0290558786519 85.2827 0.2866 888 +890 3 10.040408523996021 -520.1609485385767 85.5448 0.2845 889 +891 3 9.576057513587998 -519.1369692276855 85.8718 0.2824 890 +892 3 9.607258165898777 -518.0065577807799 86.2338 0.2802 891 +893 3 9.516214419228305 -516.8816958309424 86.6491 0.2781 892 +894 3 9.126859283831621 -515.8311890110976 87.1226 0.2759 893 +895 3 9.045644289078325 -514.7013626241571 87.6098 0.2738 894 +896 3 9.417391880136456 -513.6376357520031 88.123 0.2716 895 +897 3 9.822849608152744 -512.6094554221038 88.6967 0.2695 896 +898 3 9.80417000436968 -511.50003111535614 89.3105 0.2674 897 +899 3 9.393724421038335 -510.46163185537773 89.9396 0.2652 898 +900 3 9.100855554069554 -509.41041792531377 90.6158 0.2631 899 +901 3 9.065662890333883 -508.32363006817735 91.3357 0.2609 900 +902 3 8.585729171268412 -507.3073759880852 92.0354 0.2588 901 +903 3 7.816717946592021 -506.4614209559932 92.6559 0.2566 902 +904 3 7.7923072268610625 -505.3239190013742 93.2534 0.2545 903 +905 3 7.736100444933726 -504.3274369404893 94.0002 0.2524 904 +906 3 7.4487728394769235 -503.5847118990759 94.9452 0.2502 905 +907 3 7.193744996480888 -502.5611587156522 95.8919 0.2481 906 +908 3 6.496683829795273 -501.66276858887045 96.7162 0.2459 907 +909 3 5.688377913208278 -500.8556502300095 97.4137 0.2438 908 +910 3 4.972482013370815 -499.979755721181 98.0482 0.2416 909 +911 3 4.1427804842874565 -499.2570191006637 98.66 0.2395 910 +912 3 3.16062570981979 -498.7755394136671 99.2597 0.2374 911 +913 3 2.2785967244012966 -498.1621337005525 99.8836 0.2352 912 +914 3 1.3600631102776362 -497.5980195899996 100.5124 0.2331 913 +915 3 0.23041278740042515 -497.5916920293787 101.64 0.2309 914 +916 3 16.471929460237988 -538.6181636930002 81.4268 0.3089 871 +917 3 17.512960665787872 -538.2447089580304 82.0229 0.3089 916 +918 3 18.46317161552664 -537.7112401576338 82.6238 0.3089 917 +919 3 18.823032168128265 -536.7270963761257 83.2132 0.3089 918 +920 3 18.67235797692374 -535.6425123369177 83.8127 0.3089 919 +921 3 18.973468851018794 -534.6600553498175 84.4466 0.3089 920 +922 3 19.805844204129457 -533.9044471963849 85.0256 0.3089 921 +923 3 20.447399291795776 -533.0787716732589 85.5663 0.3089 922 +924 3 19.749114067928275 -532.4771320168795 86.1641 0.3089 923 +925 3 19.103279380256446 -531.6625927568068 86.8417 0.3089 924 +926 3 19.00072026178178 -530.5953522978577 87.5624 0.3089 925 +927 3 19.33487271610352 -529.5239824096908 88.2529 0.3089 926 +928 3 19.769833034093715 -528.4794323765311 88.9283 0.3089 927 +929 3 19.944221156166066 -527.3954983273934 89.6339 0.3089 928 +930 3 19.93945152819432 -526.3144453542932 90.3784 0.3089 929 +931 3 20.02909022680636 -525.251532609186 91.1674 0.3089 930 +932 3 20.43554049644603 -524.2566945176808 91.9881 0.3089 931 +933 3 21.26157145255612 -523.5094624389075 92.7842 0.3089 932 +934 3 22.33364664669375 -523.1321449623513 93.5166 0.3089 933 +935 3 23.274097327966068 -522.5435760062429 94.2771 0.3089 934 +936 3 23.408116545392588 -521.4725183516975 95.0914 0.3089 935 +937 3 23.579911158602094 -520.4209724749654 95.993 0.3089 936 +938 3 24.05989916784727 -519.5938481004117 97.0404 0.3089 937 +939 3 24.249817537937624 -518.8203828764345 98.2565 0.3089 938 +940 3 23.89984562117565 -517.9171088385712 99.4888 0.3089 939 +941 3 23.507691682269545 -516.9493810420289 100.6348 0.3089 940 +942 3 23.23725525224573 -515.9239369736781 101.666 0.3089 941 +943 3 23.072940104558946 -514.8142154265138 102.5055 0.3089 942 +944 3 23.5475731709029 -513.7768572664105 103.1206 0.3089 943 +945 3 24.477200150379552 -513.1123756797363 103.558 0.3089 944 +946 3 24.177112704805474 -512.0138654271628 103.8892 0.3089 945 +947 3 23.892859545536304 -511.064880942861 104.3647 0.3089 946 +948 3 23.095004982233235 -511.180959648128 105.8112 0.3089 947 +949 3 22.08333510810423 -511.3824543522267 108.1408 0.3022 948 +950 3 21.02542770280587 -511.62831718352686 109.0723 0.2989 949 +951 3 20.09202449077091 -511.5609120371148 110.2741 0.2955 950 +952 3 19.584859025313932 -511.06104196334786 111.7539 0.2922 951 +953 3 19.068552767602036 -510.6998618168177 113.43 0.2889 952 +954 3 18.42278572581594 -510.78038372528266 115.1937 0.2855 953 +955 3 17.834551277745916 -511.25206852904864 116.9252 0.2822 954 +956 3 17.20013781741492 -512.0511837969236 118.4613 0.2789 955 +957 3 16.573814961412694 -512.9522382237199 119.73 0.2755 956 +958 3 15.973002114993484 -513.892304436057 120.7455 0.2722 957 +959 3 15.30599452715689 -514.7760094364776 121.5791 0.2688 958 +960 3 14.569273348887066 -515.5834686153148 122.3046 0.2655 959 +961 3 14.051212664515873 -516.5691674878459 122.943 0.2622 960 +962 3 13.631098228448508 -517.6205534401049 123.5004 0.2588 961 +963 3 13.216765154050073 -518.6869045471328 123.9672 0.2555 962 +964 3 12.959236499901955 -519.7994908549277 124.3852 0.2522 963 +965 3 13.529683213372849 -520.7408924945536 124.8839 0.2488 964 +966 3 13.881966450823093 -521.7970715611003 125.4218 0.2455 965 +967 3 13.790871306864986 -522.9297938239465 125.9406 0.2422 966 +968 3 13.286949607644921 -523.904798347554 126.5037 0.2388 967 +969 3 12.657817907033404 -524.7817901395827 127.101 0.2355 968 +970 3 11.87811664131025 -525.4683653985527 128.52 0.2321 969 +971 3 23.89324659465734 -511.0641808050333 104.7514 0.3089 947 +972 3 24.356938103934738 -510.0662507101749 105.1915 0.3025 971 +973 3 24.934062138119828 -509.1080613034468 105.6406 0.2993 972 +974 3 25.615601315044913 -508.20633762053933 106.055 0.2961 973 +975 3 26.49161571824633 -507.4734827813087 106.3832 0.2929 974 +976 3 27.561877425732625 -507.06968207862417 106.6069 0.2897 975 +977 3 28.662577764899048 -506.77183372231025 106.7984 0.2865 976 +978 3 29.792128121192803 -506.62373641444594 106.9575 0.2833 977 +979 3 30.93262145212816 -506.53893445637914 107.0717 0.2801 978 +980 3 32.057677373532016 -506.33179224987805 107.1468 0.2768 979 +981 3 33.14011164754734 -505.96157262257975 107.1958 0.2736 980 +982 3 34.13198241024673 -505.39160300049264 107.2252 0.2704 981 +983 3 34.956635640193305 -504.5987038452789 107.2372 0.2672 982 +984 3 35.5755069656411 -503.6365127298873 107.2397 0.264 983 +985 3 36.13318803569018 -502.6376379308715 107.24 0.2608 984 +986 3 37.091425107953576 -502.01296780725414 107.24 0.2576 985 +987 3 38.22731459773186 -501.8771731570972 107.24 0.2544 986 +988 3 39.37060247815619 -501.9162919821669 107.24 0.2512 987 +989 3 40.4305574081082 -502.3467424049457 107.24 0.248 988 +990 3 41.51750565424374 -502.70356123884164 107.24 0.2448 989 +991 3 42.64210345900437 -502.9131122529827 107.24 0.2416 990 +992 3 43.78427977733328 -502.97801138894476 107.24 0.2384 991 +993 3 44.730475846972524 -503.6210624271986 107.24 0.2352 992 +994 3 45.047047665590206 -504.7203443308325 107.24 0.232 993 +995 3 15.475382923412056 -543.8711401682892 78.428 0.3089 836 +996 3 14.758805997377337 -542.9900701205208 79.165 0.3067 995 +997 3 13.98432737363963 -542.1724007305022 79.4744 0.3056 996 +998 3 13.246138217381755 -541.3603956630407 79.8902 0.3045 997 +999 3 12.679715762066422 -540.4158483364791 80.3692 0.3034 998 +1000 3 12.162580714329508 -539.4083943214481 80.8284 0.3023 999 +1001 3 11.424222447584143 -538.5388213688278 81.226 0.3012 1000 +1002 3 10.566660257509199 -537.7862856951525 81.5654 0.3001 1001 +1003 3 9.619989291293777 -537.1622826088422 81.881 0.299 1002 +1004 3 8.56325985480838 -536.7414994603379 82.1696 0.2979 1003 +1005 3 7.6659783219677 -536.0337359187345 82.4216 0.2967 1004 +1006 3 7.262552645944211 -534.9663095868852 82.6538 0.2956 1005 +1007 3 6.5813315150118115 -534.0485673732048 82.8993 0.2945 1006 +1008 3 5.677139481130439 -533.3617786969255 83.1998 0.2934 1007 +1009 3 4.566272519409267 -533.2573991330426 83.5929 0.2923 1008 +1010 3 3.4486520278958324 -533.3324500287683 84.0647 0.2912 1009 +1011 3 2.3702980474270277 -532.9702128374046 84.5659 0.2901 1010 +1012 3 1.652013603146628 -532.0947118453407 85.1063 0.289 1011 +1013 3 1.0920942450664484 -531.1433615983511 85.722 0.2879 1012 +1014 3 0.375957235576422 -530.3749697493322 86.4433 0.2868 1013 +1015 3 0.08042509431376743 -529.4573426336253 87.2942 0.2857 1014 +1016 3 -0.24476843382576163 -528.3782038708815 88.0886 0.2846 1015 +1017 3 -1.1897620641323243 -527.7342178782699 88.7748 0.2835 1016 +1018 3 -1.79170942503751 -526.7687748324618 89.4118 0.2824 1017 +1019 3 -1.9981558833259427 -525.706948302439 90.0998 0.2813 1018 +1020 3 -1.9041155305685393 -524.7237108071952 90.8953 0.2802 1019 +1021 3 -1.7844044477070469 -523.6382303483015 91.6835 0.2791 1020 +1022 3 -1.9838859642505255 -522.6417277770265 92.5333 0.278 1021 +1023 3 -1.929197716148117 -521.7765938882443 93.3526 0.2471 1022 +1024 3 -1.466291084518808 -520.7749162652569 94.0775 0.2454 1023 +1025 3 -0.7824496373252856 -519.8640673671953 94.6308 0.2445 1024 +1026 3 -0.2967702885630814 -518.8280167409293 95.0169 0.2436 1025 +1027 3 -0.03064367851276728 -517.7164128558052 95.2834 0.2427 1026 +1028 3 0.21440205888135466 -516.5982969196943 95.4803 0.2419 1027 +1029 3 0.40332765508522783 -515.4713237970783 95.6614 0.241 1028 +1030 3 0.6704653357888901 -514.360164587267 95.8532 0.2401 1029 +1031 3 1.5054699349156024 -513.5799579162899 96.0767 0.2393 1030 +1032 3 2.387444133178036 -512.8545112376158 96.369 0.2384 1031 +1033 3 3.156305440735956 -512.0285982762571 96.7758 0.2375 1032 +1034 3 3.9276652816045896 -511.22234866484933 97.3073 0.2366 1033 +1035 3 4.628766326358559 -510.399540020604 97.9815 0.2358 1034 +1036 3 5.19510808631226 -509.5104609066144 98.786 0.2349 1035 +1037 3 5.396783054638519 -508.47451933627815 99.6867 0.234 1036 +1038 3 4.6663753955384095 -507.7838215575588 100.6589 0.2332 1037 +1039 3 4.579196177182503 -506.7418800842088 101.614 0.2323 1038 +1040 3 4.934570296892062 -505.70715130571625 102.4702 0.2314 1039 +1041 3 5.617694320281757 -504.8201296043651 103.1817 0.2305 1040 +1042 3 6.26614701262794 -503.9348511194865 104.44 0.2297 1041 +1043 3 -1.3223979448143979 -522.1185570112698 94.4499 0.278 1022 +1044 3 -0.6187482189922733 -521.6408610793733 97.5416 0.2728 1043 +1045 3 -0.14978891618428491 -521.3171395133481 98.898 0.2702 1044 +1046 3 0.07172666898865288 -520.7297943205308 100.5192 0.2676 1045 +1047 3 0.23233791609931842 -519.894422291252 102.2386 0.265 1046 +1048 3 0.39801993787180123 -519.0500843685804 103.9842 0.2625 1047 +1049 3 0.6344470921945202 -518.1716129400759 105.677 0.2599 1048 +1050 3 1.1669184416748593 -517.2724936421055 107.189 0.2573 1049 +1051 3 2.1311936778443368 -516.8318116718477 108.5392 0.2547 1050 +1052 3 3.1895796498434947 -516.8469620604693 109.7942 0.2521 1051 +1053 3 4.188694860427361 -516.8515135415411 111.0379 0.2495 1052 +1054 3 4.796475461040366 -517.4856186128964 112.327 0.2469 1053 +1055 3 5.0351016706374665 -518.3809281359627 113.6321 0.2443 1054 +1056 3 4.65952418225401 -519.0071949163523 114.9943 0.2418 1055 +1057 3 3.6329503919308266 -519.2854622932068 116.1877 0.2392 1056 +1058 3 2.931127281383965 -520.1484352079049 117.1514 0.2366 1057 +1059 3 2.420875324578084 -521.1617605853507 117.8646 0.234 1058 +1060 3 1.7577505027857256 -522.0814339625465 118.8088 0.2314 1059 +1061 3 57.29619422199576 -845.0872434594783 41.2378 0.8546 1 +1062 3 56.78986080731369 -846.1118761366736 41.2062 0.7949 1061 +1063 3 56.205980039033165 -847.094896100068 41.2196 0.765 1062 +1064 3 55.62196337238396 -848.0779551995508 41.2728 0.7351 1063 +1065 3 55.34076014208489 -849.3786712881995 41.286 0.7053 1064 +1066 3 55.096859217831536 -850.496163202778 41.3367 0.6754 1065 +1067 3 54.840286164026026 -851.6105346794683 41.4033 0.6456 1066 +1068 3 54.58221822816586 -852.7253366531304 41.4882 0.6157 1067 +1069 3 54.32050139103791 -853.8277234941095 41.6492 0.5858 1068 +1070 3 54.05846499755964 -854.925934465869 41.8765 0.556 1069 +1071 3 54.37722843712456 -856.0328266781447 42.3167 0.556 1070 +1072 3 54.69333062268214 -857.1304778013554 42.5589 0.5524 1071 +1073 3 54.97576699303315 -858.2369410120872 42.8254 0.5506 1072 +1074 3 55.10465055954879 -859.3656962939274 43.1348 0.5488 1073 +1075 3 55.05651961582754 -860.5050304776753 43.4792 0.547 1074 +1076 3 54.9991759397235 -861.6420140100147 43.869 0.5452 1075 +1077 3 54.88018841808284 -862.7251521497244 44.3755 0.5434 1076 +1078 3 54.28156855244396 -863.5667931577929 45.0103 0.5416 1077 +1079 3 53.308746479994255 -864.0355438221707 45.6798 0.5398 1078 +1080 3 52.26501674892947 -864.3865965938326 46.3212 0.538 1079 +1081 3 51.25429043257236 -864.8670723720182 46.8835 0.5362 1080 +1082 3 50.41036127094887 -865.6109229955721 47.3385 0.5344 1081 +1083 3 49.845055422616554 -866.6004408316121 47.6412 0.5326 1082 +1084 3 49.81315276789701 -867.743490205271 47.7851 0.5308 1083 +1085 3 50.210327118964784 -868.812716797184 47.7728 0.529 1084 +1086 3 50.73636060625006 -869.7976668620372 47.5944 0.5272 1085 +1087 3 51.372195702531 -870.7164851141075 47.3074 0.5253 1086 +1088 3 52.04801049845554 -871.6220975486563 46.9837 0.5236 1087 +1089 3 52.70410490083776 -872.5586285226036 46.7062 0.5217 1088 +1090 3 53.350909833014754 -873.4979082677869 46.4635 0.5199 1089 +1091 3 53.81894179160838 -874.5356915860835 46.2568 0.5181 1090 +1092 3 53.86280969274287 -875.6789222483955 46.1202 0.5163 1091 +1093 3 53.7109612190751 -876.8119951238297 46.0424 0.5145 1092 +1094 3 53.50917428052102 -877.9382569989853 46.0046 0.5127 1093 +1095 3 52.956744244180356 -878.9400346664089 45.9936 0.5109 1094 +1096 3 52.31089049873418 -879.883652978807 46.0068 0.5091 1095 +1097 3 51.69685542271847 -880.8501173472254 46.039 0.5073 1096 +1098 3 51.14039959386801 -881.8496694822031 46.0869 0.5055 1097 +1099 3 51.21551856496498 -882.9905230399313 46.1544 0.5037 1098 +1100 3 51.7157214567105 -884.0199247676787 46.2462 0.5019 1099 +1101 3 52.60620682806706 -884.738328430949 46.3669 0.5001 1100 +1102 3 53.42120998797668 -885.5339521418433 46.5578 0.4983 1101 +1103 3 53.97772106850937 -886.5135837191439 46.8398 0.4965 1102 +1104 3 54.259150388669156 -887.6076068394455 47.1856 0.4947 1103 +1105 3 54.334046274395774 -888.7300549568662 47.5843 0.4929 1104 +1106 3 54.36895723588904 -889.8539368922881 48.0161 0.4911 1105 +1107 3 54.35746246855274 -890.974331947759 48.461 0.4893 1106 +1108 3 54.25079481274258 -892.0918181719264 48.8922 0.4875 1107 +1109 3 54.092214931879624 -893.2015165279608 49.2976 0.4857 1108 +1110 3 53.86311370321653 -894.2945107077372 49.6756 0.4839 1109 +1111 3 53.469529399100594 -895.0325133131213 49.9128 0.4839 1110 +1112 3 52.743649499902716 -895.9057254133239 50.0282 0.4788 1111 +1113 3 51.89489238214534 -896.6678172221347 50.0654 0.4762 1112 +1114 3 51.158353249650304 -897.5390216506721 50.0702 0.4736 1113 +1115 3 50.748955051545096 -898.5964460003956 50.0721 0.471 1114 +1116 3 50.83397797802746 -899.7218644789947 50.0996 0.4685 1115 +1117 3 51.306118021769635 -900.7501497113574 50.1836 0.4659 1116 +1118 3 51.69248306283035 -901.8199137204015 50.311 0.4633 1117 +1119 3 51.33495272910008 -902.8732180403692 50.4372 0.4607 1118 +1120 3 50.3852159376313 -903.4893327431079 50.5336 0.4582 1119 +1121 3 49.37952918399273 -904.0340680949585 50.5977 0.4556 1120 +1122 3 48.59112471215701 -904.8595751868659 50.6316 0.453 1121 +1123 3 48.255746686409935 -905.9486639343269 50.6405 0.4505 1122 +1124 3 48.24329967873979 -907.0920707962968 50.6321 0.4479 1123 +1125 3 48.247627330954 -908.2357242059566 50.6131 0.4453 1124 +1126 3 48.22691610207309 -909.3798185617674 50.5859 0.4427 1125 +1127 3 48.38230507505614 -910.5127143059007 50.5498 0.4402 1126 +1128 3 48.6599708241649 -911.6230532324325 50.5044 0.4376 1127 +1129 3 48.554145963495074 -912.7580305885346 50.4255 0.435 1128 +1130 3 47.8832570661157 -913.6760398953354 50.2995 0.4324 1129 +1131 3 47.21751195205877 -914.6060338378476 50.1673 0.4299 1130 +1132 3 46.87110675552398 -915.6890265616522 50.0564 0.4273 1131 +1133 3 46.762117096287966 -916.8247681494175 49.9388 0.4247 1132 +1134 3 46.841256635305 -917.9560752400715 49.7213 0.4221 1133 +1135 3 47.043614741602426 -919.0182697075849 49.3458 0.4196 1134 +1136 3 47.34342188369365 -920.0153877936464 48.8225 0.417 1135 +1137 3 47.99505580161102 -920.8487870359185 48.2216 0.4144 1136 +1138 3 48.862761405590476 -921.5703659469342 47.6829 0.4118 1137 +1139 3 49.69370720965023 -922.3538928773681 47.2657 0.4093 1138 +1140 3 50.42922732335035 -923.2271529545175 46.9809 0.4067 1139 +1141 3 51.042739602401014 -924.191105138733 46.8488 0.4041 1140 +1142 3 51.523651102148165 -925.215098336665 46.8611 0.4015 1141 +1143 3 51.91562433500178 -926.2867057623234 46.9241 0.399 1142 +1144 3 51.98507255482454 -927.4283093733738 46.9661 0.3964 1143 +1145 3 51.3244034400191 -928.3611094220136 46.9641 0.3938 1144 +1146 3 50.473434968156965 -929.124721070626 46.9109 0.3912 1145 +1147 3 50.118170798388775 -930.2119574477211 46.8037 0.3887 1146 +1148 3 50.73480351532763 -931.1632375023846 46.5951 0.3861 1147 +1149 3 51.27027505410004 -932.105071755937 46.244 0.3835 1148 +1150 3 51.588867518596544 -933.1674210589284 45.8315 0.381 1149 +1151 3 50.42371425572574 -933.5820657791667 44.6933 0.2574 1150 +1152 3 49.37162653202574 -934.0096249816636 44.4531 0.2565 1151 +1153 3 48.31104254799325 -934.433744189922 44.2224 0.256 1152 +1154 3 47.2515087707024 -934.8584439718619 43.995 0.2556 1153 +1155 3 46.235954498211385 -935.3571609353043 43.7525 0.2551 1154 +1156 3 45.25885383136594 -935.9163280452547 43.503 0.2547 1155 +1157 3 44.31830079407064 -936.5441469634425 43.279 0.2542 1156 +1158 3 43.51790123734435 -937.3512538396319 43.108 0.2538 1157 +1159 3 42.79626499143703 -938.2333249130681 43.0391 0.2533 1158 +1160 3 41.880141904872914 -938.8667649972625 43.1096 0.2529 1159 +1161 3 40.818403027673355 -939.2171173008699 43.2793 0.2524 1160 +1162 3 39.763388099345406 -939.6429440273739 43.4644 0.252 1161 +1163 3 38.88603444561548 -940.3670600790443 43.598 0.2515 1162 +1164 3 38.149432753639076 -941.2408579775184 43.6666 0.251 1163 +1165 3 37.389890768396526 -942.0968322134938 43.6649 0.2506 1164 +1166 3 36.62206515901249 -942.9442278964979 43.5868 0.2501 1165 +1167 3 35.869079876734816 -943.8050836943371 43.4386 0.2497 1166 +1168 3 35.06645478756255 -944.6162163630364 43.2169 0.2492 1167 +1169 3 34.208411928761876 -945.3550069913344 42.9108 0.2488 1168 +1170 3 33.38304350874549 -946.1078614402419 42.5104 0.2483 1169 +1171 3 32.694225058314686 -946.9518572947021 42.0109 0.2479 1170 +1172 3 32.14933484698949 -947.8806754456887 41.4383 0.2474 1171 +1173 3 31.696703468244834 -948.8958033169323 40.8722 0.247 1172 +1174 3 31.335032672221473 -949.9756130433674 40.395 0.2465 1173 +1175 3 30.988845336467392 -951.0652392079595 40.0235 0.2461 1174 +1176 3 30.463670759916283 -952.0768280889503 39.7174 0.2456 1175 +1177 3 29.725113506576633 -952.9351477517446 39.4366 0.2451 1176 +1178 3 28.90207381000363 -953.719340787843 39.1712 0.2447 1177 +1179 3 28.08695502467134 -954.5197960244417 38.9228 0.2442 1178 +1180 3 27.338043916043688 -955.3827898374984 38.6848 0.2438 1179 +1181 3 26.682958035283974 -956.3147914516757 38.4317 0.2433 1180 +1182 3 26.03656164811713 -957.2358284545468 38.1368 0.2429 1181 +1183 3 25.20934981148639 -957.994291095247 37.8112 0.2424 1182 +1184 3 24.254460282943683 -958.6126991145026 37.499 0.242 1183 +1185 3 23.336345198483315 -959.2921144305548 37.2168 0.2415 1184 +1186 3 22.463022561852853 -960.0302280141914 36.9597 0.2411 1185 +1187 3 21.656753796002477 -960.8407175497279 36.7324 0.2406 1186 +1188 3 21.106031277907533 -961.8369261614469 36.5112 0.2401 1187 +1189 3 20.873417046345224 -962.9174660724518 36.2208 0.2397 1188 +1190 3 20.273835986621066 -963.7963968392476 35.8352 0.2392 1189 +1191 3 19.290107103577895 -964.3675538094989 35.5043 0.2388 1190 +1192 3 18.584800842242032 -965.250882501278 35.313 0.2383 1191 +1193 3 18.13626826466779 -966.2891864340717 35.2296 0.2379 1192 +1194 3 17.574823953794322 -967.2859808440619 35.1702 0.2374 1193 +1195 3 17.062973593709643 -968.2827685340346 35.0342 0.237 1194 +1196 3 16.44204285544774 -969.2309094245576 34.8463 0.2365 1195 +1197 3 15.524295708477837 -969.9144130926009 34.6312 0.2361 1196 +1198 3 14.499451965781645 -970.415878827279 34.4075 0.2356 1197 +1199 3 13.602544698594613 -971.1160450104578 34.1779 0.2352 1198 +1200 3 12.952815237348375 -972.0548927016137 33.8548 0.2347 1199 +1201 3 12.240352296435105 -972.9251239914587 33.3928 0.2342 1200 +1202 3 11.452085956702007 -973.6867200442608 32.7561 0.2338 1201 +1203 3 10.802802064780508 -974.39305988293 31.8668 0.2333 1202 +1204 3 10.24755184193475 -975.0638576468125 30.7535 0.2329 1203 +1205 3 9.945973568513523 -975.9808119504723 29.549 0.2324 1204 +1206 3 9.710135708065536 -977.0386596113286 28.4068 0.232 1205 +1207 3 9.396760943198444 -978.0784385574246 27.333 0.2315 1206 +1208 3 8.885053939805942 -979.0230872078122 26.342 0.2311 1207 +1209 3 8.257912042283039 -979.8855249391132 25.4409 0.2306 1208 +1210 3 7.9701477784410315 -980.9380906845445 24.6503 0.2302 1209 +1211 3 6.977610537038572 -981.4495318878409 23.9841 0.2297 1210 +1212 3 6.189778423439122 -982.1865728709492 22.68 0.2293 1211 +1213 3 51.9013384379046 -934.4512562682082 45.1094 0.381 1150 +1214 3 52.068131472917315 -935.5800584357607 44.805 0.381 1213 +1215 3 52.08019115380077 -936.7239870410929 44.5852 0.381 1214 +1216 3 51.94159538336666 -937.8591301476736 44.4391 0.381 1215 +1217 3 51.80655577238227 -938.994868006277 44.3246 0.381 1216 +1218 3 51.99366022379823 -940.1152454267298 44.175 0.381 1217 +1219 3 52.624081565674004 -941.0415830712783 43.9715 0.381 1218 +1220 3 53.47598564846163 -941.786991626186 43.7489 0.381 1219 +1221 3 54.34554511823475 -942.5265063444492 43.5593 0.381 1220 +1222 3 55.090011722396696 -943.3955711494481 43.43 0.381 1221 +1223 3 55.61270318185126 -944.4126098548144 43.3672 0.381 1222 +1224 3 55.85776750083633 -945.5298354898408 43.3695 0.381 1223 +1225 3 55.82528427243528 -946.6739350702413 43.43 0.381 1224 +1226 3 55.54398666929541 -947.7811513627821 43.5498 0.381 1225 +1227 3 55.462542371311514 -947.7060762249141 42.5914 0.3089 1226 +1228 3 55.397631740338625 -947.6413980988845 39.4576 0.2982 1227 +1229 3 55.34957586578611 -948.111534124861 38.0817 0.2929 1228 +1230 3 55.19628368872279 -948.967977490444 36.5632 0.2875 1229 +1231 3 54.84656618087263 -949.9720114364354 35.1243 0.2822 1230 +1232 3 54.425723289221565 -950.9955715131025 33.7635 0.2768 1231 +1233 3 54.243714644181665 -951.3485787412591 32.249 0.2715 1232 +1234 3 54.064448614145135 -951.4481809022544 30.5796 0.2662 1233 +1235 3 53.643859418391514 -952.1476022190695 28.9162 0.2608 1234 +1236 3 53.559503664810904 -953.0709492431281 27.2976 0.2555 1235 +1237 3 53.48516700222041 -954.0755915180672 25.7859 0.2502 1236 +1238 3 53.145489017897575 -955.0825474440969 24.4637 0.2448 1237 +1239 3 53.363035054218244 -955.902101793778 23.2301 0.2395 1238 +1240 3 52.96538329646992 -956.6875603347333 20.7564 0.2341 1239 +1241 3 55.12306507857258 -948.646527641902 43.7284 0.381 1226 +1242 3 54.54110446472876 -949.6188399908591 43.9659 0.381 1241 +1243 3 53.9851756038301 -950.6056574368034 44.2481 0.381 1242 +1244 3 53.58028207634658 -951.666714683799 44.5477 0.381 1243 +1245 3 53.396407521647035 -952.793852061466 44.833 0.381 1244 +1246 3 53.427453216519666 -953.936507374686 45.1004 0.381 1245 +1247 3 53.65781833135654 -955.0520057583093 45.3796 0.381 1246 +1248 3 54.19107105770041 -956.0474597551604 45.698 0.381 1247 +1249 3 54.99476662656039 -956.8329474715474 46.0611 0.381 1248 +1250 3 55.45112828120341 -957.868278442866 46.4453 0.381 1249 +1251 3 55.00607885441818 -958.8862265985783 46.8762 0.381 1250 +1252 3 54.47232945405753 -959.8800491519622 47.3183 0.381 1251 +1253 3 54.04341304942173 -960.939709483311 47.7134 0.381 1252 +1254 3 53.63622620542128 -961.9956139932328 48.1116 0.381 1253 +1255 3 53.239605852899956 -963.0417057941594 48.5372 0.381 1254 +1256 3 52.887524680501286 -964.113676571766 48.9664 0.381 1255 +1257 3 52.681126151166154 -965.2269911216971 49.3828 0.381 1256 +1258 3 52.51681295954768 -966.34003300099 49.7972 0.381 1257 +1259 3 52.03363993264651 -967.3252508784543 50.2309 0.381 1258 +1260 3 51.194315641786574 -968.0324548764439 50.6464 0.381 1259 +1261 3 50.43766578447213 -968.8455795430394 51.0026 0.381 1260 +1262 3 50.23752380468241 -969.9688658324269 51.2142 0.381 1261 +1263 3 50.78395100100977 -970.9336675318003 51.1806 0.381 1262 +1264 3 50.85120862949165 -971.9800215165545 50.8978 0.381 1263 +1265 3 51.23331956808249 -973.0173825533249 50.5014 0.381 1264 +1266 3 51.75564309004656 -974.0303329067001 50.1203 0.381 1265 +1267 3 52.11162327967804 -975.1172357839573 49.8198 0.381 1266 +1268 3 52.154958988271176 -976.2614291357824 49.6194 0.381 1267 +1269 3 51.92607562038876 -977.3610567563462 49.4427 0.381 1268 +1270 3 51.76474323912808 -978.4875155939238 49.3217 0.381 1269 +1271 3 51.71491895550221 -979.6299128806684 49.28 0.381 1270 +1272 3 51.6416027831379 -980.7461831476153 49.3797 0.381 1271 +1273 3 51.519026394676445 -981.8641300510914 49.572 0.381 1272 +1274 3 51.23004514400745 -982.9709836307313 49.7532 0.381 1273 +1275 3 51.1101158312122 -984.1006775759804 49.9618 0.381 1274 +1276 3 51.16407536617598 -985.2206927493538 50.1939 0.381 1275 +1277 3 51.39237920361779 -986.3351658839825 50.3779 0.381 1276 +1278 3 51.64740108371805 -987.4486409221716 50.4703 0.381 1277 +1279 3 51.96037238220805 -988.535420175894 50.4143 0.381 1278 +1280 3 51.00630488604173 -989.2680887931822 50.0438 0.381 1279 +1281 3 50.18750212274176 -990.011546851725 49.7143 0.3805 1280 +1282 3 49.7227985910574 -991.0317701251511 49.4052 0.3803 1281 +1283 3 49.5645293127933 -992.1599223026332 49.2027 0.38 1282 +1284 3 49.37110829101948 -993.2830391123802 49.1414 0.3798 1283 +1285 3 49.074389787091576 -994.3778454968275 49.2002 0.3796 1284 +1286 3 48.807800633151714 -995.4865656251744 49.3424 0.3794 1285 +1287 3 48.71464790203402 -996.6246634191647 49.5124 0.3791 1286 +1288 3 48.81038366754345 -997.7637740517207 49.6796 0.3789 1287 +1289 3 49.00846690860695 -998.8903350130582 49.8369 0.3787 1288 +1290 3 49.203042371360965 -1000.0162137051447 50.0035 0.3784 1289 +1291 3 49.324910381257524 -1001.1436044484825 50.2163 0.3782 1290 +1292 3 49.2953439083052 -1002.2658925058354 50.4944 0.378 1291 +1293 3 48.958528335395044 -1003.3410462808115 50.8077 0.3777 1292 +1294 3 48.250894846043536 -1004.2308583366683 51.1081 0.3775 1293 +1295 3 47.29030036342775 -1004.8475979737665 51.3747 0.3773 1294 +1296 3 46.208541269493 -1005.2155627991093 51.6174 0.3771 1295 +1297 3 45.13898989663997 -1005.5967892814373 51.8787 0.3768 1296 +1298 3 44.26450341309089 -1006.2754139126512 52.2015 0.3766 1297 +1299 3 43.71658550569566 -1007.2287245738501 52.5767 0.3764 1298 +1300 3 43.40480881388066 -1008.3034374026751 52.9494 0.3761 1299 +1301 3 43.20074273715079 -1009.4220405880486 53.2574 0.3759 1300 +1302 3 43.070841684899165 -1010.5579910828432 53.4598 0.3757 1301 +1303 3 43.174793290479045 -1011.6965017387869 53.5475 0.3755 1302 +1304 3 43.686612880445296 -1012.7166713312208 53.5223 0.3752 1303 +1305 3 43.98325419436384 -1013.8021929666002 53.3565 0.375 1304 +1306 3 43.41424985949601 -1014.7556157725481 53.0838 0.3748 1305 +1307 3 42.96670492918224 -1015.7970937489596 52.7853 0.3745 1306 +1308 3 43.20079045851969 -1016.9081358431014 52.488 0.3743 1307 +1309 3 43.918762105393625 -1017.7966041848474 52.2393 0.3741 1308 +1310 3 44.75916163470947 -1018.5723313025413 52.0475 0.3739 1309 +1311 3 45.360476641857815 -1019.5465658288123 51.9053 0.3736 1310 +1312 3 45.357256544911536 -1020.6898173894828 51.7958 0.3734 1311 +1313 3 44.54699319849459 -1021.4248559255155 51.5858 0.3732 1312 +1314 3 43.57945467249243 -1022.0233596019467 51.3797 0.3729 1313 +1315 3 42.6274833948263 -1022.6577780494233 51.221 0.3727 1314 +1316 3 41.91458622777935 -1023.5525644089621 51.1076 0.3725 1315 +1317 3 41.50971210322672 -1024.62288770277 51.0367 0.3723 1316 +1318 3 41.27853168966567 -1025.7434125380082 51.0065 0.372 1317 +1319 3 41.28136445982523 -1026.8874964446397 51.0132 0.3718 1318 +1320 3 41.49296142145357 -1028.0109015611624 51.0317 0.3716 1319 +1321 3 41.898782109563626 -1029.0810230585178 51.0502 0.3713 1320 +1322 3 42.26849358924045 -1030.1573489951165 51.1039 0.3711 1321 +1323 3 42.57755526043172 -1031.2509937287482 51.184 0.3709 1322 +1324 3 42.61851013527945 -1032.3899859623593 51.2604 0.3707 1323 +1325 3 42.70579196462273 -1032.4094426390152 51.8017 0.2986 1324 +1326 3 43.8223405926189 -1032.6620774175392 52.2766 0.2954 1325 +1327 3 44.94642009187896 -1032.8560306318545 52.467 0.2938 1326 +1328 3 46.0327980000647 -1033.1584876711277 52.7551 0.2922 1327 +1329 3 47.020939352995185 -1033.66944312577 53.1434 0.2905 1328 +1330 3 47.74908492633716 -1034.5229723601974 53.5858 0.2889 1329 +1331 3 47.85065047358205 -1035.6445098984068 54.0456 0.2873 1330 +1332 3 47.54116187369431 -1036.7126034647854 54.539 0.2857 1331 +1333 3 47.20152974547733 -1037.7692892399727 55.041 0.2841 1332 +1334 3 46.97704010759526 -1038.8752307449736 55.4991 0.2825 1333 +1335 3 47.13815716674412 -1039.9930109663278 55.9084 0.2809 1334 +1336 3 47.75177114136443 -1040.9545055789756 56.2486 0.2793 1335 +1337 3 48.593331818043396 -1041.7281322831864 56.511 0.2777 1336 +1338 3 49.49125801840114 -1042.437623367493 56.7148 0.2761 1337 +1339 3 50.3354654794461 -1043.2089425768456 56.8929 0.2745 1338 +1340 3 50.974649323575306 -1044.1452661391916 57.0214 0.2728 1339 +1341 3 51.75221414347595 -1044.9802956960655 57.2208 0.2712 1340 +1342 3 52.71966149834998 -1045.3726322296015 57.629 0.2696 1341 +1343 3 53.68564951369069 -1045.9354425744052 58.1182 0.268 1342 +1344 3 54.698453886080586 -1046.3685073654792 58.6894 0.2664 1343 +1345 3 55.79508605212402 -1046.4610184588619 59.3118 0.2648 1344 +1346 3 56.905186355111255 -1046.273488735064 59.9189 0.2632 1345 +1347 3 58.00888139167631 -1045.9724968476953 60.4321 0.2616 1346 +1348 3 58.96149477289896 -1045.4220740411952 60.9666 0.26 1347 +1349 3 59.944794654398095 -1044.8872441401577 61.5017 0.2584 1348 +1350 3 61.005591274621736 -1044.4579863731665 61.9637 0.2568 1349 +1351 3 62.041018114208896 -1044.2329464658999 62.5209 0.2551 1350 +1352 3 63.082897473788194 -1044.54748237813 63.1224 0.2535 1351 +1353 3 63.93617654425759 -1045.3094193754591 63.6345 0.2519 1352 +1354 3 64.8640997898018 -1045.8629559238268 64.1987 0.2503 1353 +1355 3 66.00469681648241 -1045.9065288824968 64.706 0.2487 1354 +1356 3 67.14783893195948 -1045.9502519178768 65.1518 0.2471 1355 +1357 3 67.45974277924864 -1045.9984740087293 64.8782 0.2471 1356 +1358 3 68.56482059075046 -1046.1583845165962 65.1221 0.2425 1357 +1359 3 69.7026579311945 -1046.0436627370977 65.2028 0.2402 1358 +1360 3 70.62623113073806 -1045.3686359264561 65.2506 0.238 1359 +1361 3 71.51126843199711 -1044.6448825876864 65.2697 0.2357 1360 +1362 3 72.38654140540115 -1043.9104752402093 65.2403 0.2334 1361 +1363 3 73.25338590254364 -1043.1818064280774 64.96 0.2311 1362 +1364 3 66.79830653988773 -1046.513903500765 65.574 0.2471 1356 +1365 3 66.33448746446624 -1047.5019364381085 66.0764 0.2452 1364 +1366 3 66.32128993765252 -1048.5142112798812 66.7461 0.2442 1365 +1367 3 66.70405296315772 -1049.5336506877452 67.5058 0.2432 1366 +1368 3 67.2518160110784 -1050.5148449311714 68.3021 0.2423 1367 +1369 3 67.93827436653118 -1051.3871490388246 69.1802 0.2413 1368 +1370 3 68.31799878096552 -1052.2820756889378 70.2134 0.2404 1369 +1371 3 68.16001454613689 -1053.156721103689 71.433 0.2394 1370 +1372 3 67.7012600891448 -1053.8730936102734 72.8106 0.2384 1371 +1373 3 67.00286662162074 -1054.365464410098 74.2854 0.2375 1372 +1374 3 66.14850813134683 -1054.3218748460158 75.7798 0.2365 1373 +1375 3 65.32726189955798 -1054.0978866169223 77.2428 0.2355 1374 +1376 3 64.54052534535339 -1054.2773574342673 78.6848 0.2346 1375 +1377 3 63.737443734224655 -1054.6895733678102 80.01 0.2336 1376 +1378 3 63.06145793923508 -1055.5576885704027 81.0046 0.2327 1377 +1379 3 62.273092603487726 -1056.383331560679 81.6911 0.2317 1378 +1380 3 61.53984338852143 -1057.2485848176802 82.185 0.2307 1379 +1381 3 60.76146649560593 -1058.0156479393168 83.0253 0.2298 1380 +1382 3 42.57525776256614 -1033.447119540605 51.2366 0.3707 1324 +1383 3 42.56563103936469 -1034.5829444506155 51.1342 0.3684 1382 +1384 3 42.5942817221507 -1035.7229045983295 50.9936 0.3673 1383 +1385 3 42.66948821047612 -1036.863806537198 50.846 0.3662 1384 +1386 3 42.88028673764228 -1037.981628419675 50.6836 0.3651 1385 +1387 3 43.192575766881134 -1039.071915451707 50.4879 0.364 1386 +1388 3 43.35295695104895 -1040.1815189690792 50.2765 0.3629 1387 +1389 3 43.11625959208527 -1041.2741988170949 50.0786 0.3618 1388 +1390 3 42.529160419508685 -1042.2462985298612 49.9117 0.3606 1389 +1391 3 41.80529864115539 -1043.1323953958067 49.7714 0.3595 1390 +1392 3 41.20138538130573 -1044.0900581258834 49.649 0.3584 1391 +1393 3 41.06214900274307 -1045.1790275427566 49.5334 0.3573 1392 +1394 3 41.51314901328294 -1046.1957404375767 49.4068 0.3562 1393 +1395 3 42.18329828252291 -1047.1138749249676 49.2299 0.3551 1394 +1396 3 42.44668188442023 -1048.1247935805732 48.9482 0.354 1395 +1397 3 42.224509025374346 -1049.2007077224562 48.592 0.3528 1396 +1398 3 42.33408552612269 -1050.2887384759201 48.2546 0.3517 1397 +1399 3 42.94839996879739 -1051.2322239424334 47.9724 0.3506 1398 +1400 3 43.69286657295942 -1052.1012887474321 47.7383 0.3495 1399 +1401 3 44.28925565756606 -1053.0701720787788 47.5342 0.3484 1400 +1402 3 44.512415711685435 -1054.1726605776967 47.3413 0.3473 1401 +1403 3 44.25291918241379 -1055.2592496266457 47.1262 0.3462 1402 +1404 3 43.68145727597806 -1056.2125707370237 46.8518 0.3451 1403 +1405 3 43.07198271004785 -1057.130480581989 46.5228 0.3439 1404 +1406 3 42.58181352945843 -1058.1235999677633 46.1891 0.3428 1405 +1407 3 42.27809364725266 -1059.2145358610003 45.9365 0.3417 1406 +1408 3 42.16092205944477 -1060.3392413242264 45.8514 0.3406 1407 +1409 3 42.16857756114854 -1061.453312046081 45.9452 0.3395 1408 +1410 3 42.299206577870734 -1062.5528667559477 46.1742 0.3384 1409 +1411 3 42.57447581946508 -1063.622688565705 46.4758 0.3373 1410 +1412 3 42.92562655753477 -1064.6900106769501 46.7589 0.3362 1411 +1413 3 43.213796238641294 -1065.7931303644234 46.9109 0.335 1412 +1414 3 43.35273383725212 -1066.903905478338 46.8572 0.3339 1413 +1415 3 43.390672494815476 -1068.0032949035476 46.611 0.3328 1414 +1416 3 43.3992854614429 -1069.1061258184234 46.2356 0.3317 1415 +1417 3 43.47379923133781 -1070.226991536561 45.8217 0.3306 1416 +1418 3 43.58815307334589 -1071.3607405250139 45.4594 0.3295 1417 +1419 3 43.41515038813458 -1072.4847470156133 45.183 0.3284 1418 +1420 3 42.89153325311935 -1073.493311929696 44.9842 0.3272 1419 +1421 3 42.40025280173478 -1074.5262661629936 44.8353 0.3261 1420 +1422 3 42.22215993893093 -1075.6499725001731 44.6984 0.325 1421 +1423 3 42.16892957256516 -1076.7892299460987 44.5278 0.3239 1422 +1424 3 42.01883699828318 -1077.9166462486 44.2994 0.3228 1423 +1425 3 41.91969395954101 -1079.0513182266927 44.0238 0.3217 1424 +1426 3 42.230777480738595 -1080.1317977743192 43.6951 0.3206 1425 +1427 3 43.03489682655277 -1080.8691864219722 43.2804 0.3195 1426 +1428 3 43.675336793597296 -1081.7513580484779 42.7966 0.3183 1427 +1429 3 43.615485960657736 -1082.8645599878387 42.3329 0.3172 1428 +1430 3 43.42625498644469 -1083.9848512885274 41.9196 0.3161 1429 +1431 3 43.46928531702855 -1085.1223628184248 41.5587 0.315 1430 +1432 3 43.73883692163639 -1086.2308441500013 41.2597 0.3139 1431 +1433 3 44.10934683577551 -1087.3127533206457 41.0206 0.3128 1432 +1434 3 44.433093532773796 -1088.4106312583885 40.8195 0.3117 1433 +1435 3 44.60444455283772 -1089.540696268874 40.6238 0.3106 1434 +1436 3 44.609022773203776 -1090.6555796035318 40.3438 0.3094 1435 +1437 3 44.581936130011 -1091.7190218416251 39.9445 0.3083 1436 +1438 3 44.79316888331073 -1092.8122886544083 39.5268 0.3072 1437 +1439 3 45.341242533830325 -1093.8119367192824 39.1801 0.3061 1438 +1440 3 45.890598430213515 -1094.8162928459174 38.9267 0.305 1439 +1441 3 45.624643164384736 -1095.9215927131831 38.7624 0.3039 1440 +1442 3 44.61019792895479 -1096.444346732119 38.6775 0.3028 1441 +1443 3 43.66057328223502 -1097.0815478623301 38.6478 0.3016 1442 +1444 3 42.975899489080575 -1097.9984496274978 38.6422 0.3005 1443 +1445 3 42.403340490190885 -1098.9890996326917 38.642 0.2994 1444 +1446 3 41.9352271466048 -1100.032233017047 38.6428 0.2983 1445 +1447 3 42.036053089706854 -1101.1716438030226 38.6439 0.2972 1446 +1448 3 42.570729184872675 -1102.1835387250662 38.6456 0.2961 1447 +1449 3 43.35300206653426 -1103.0172860360767 38.6478 0.295 1448 +1450 3 43.35997156982501 -1104.1609144879894 38.6512 0.2938 1449 +1451 3 43.09365359109529 -1105.2738980027843 38.656 0.2927 1450 +1452 3 42.64712495602453 -1106.327592654029 38.6613 0.2916 1451 +1453 3 42.19048345853906 -1107.3758109913874 38.6655 0.2905 1452 +1454 3 41.846928728809814 -1108.4656356138294 38.6845 0.2894 1453 +1455 3 41.524503252876855 -1109.5618847700293 38.7142 0.2883 1454 +1456 3 41.64402486668064 -1109.9769183877445 39.482 0.2883 1455 +1457 3 42.49427055066883 -1110.6261146268428 41.2846 0.2764 1456 +1458 3 43.63034872838659 -1110.6685606409487 41.9689 0.2704 1457 +1459 3 44.7441729025515 -1110.6776797991292 42.8576 0.2645 1458 +1460 3 45.67347678855742 -1110.9025587386818 44.0138 0.2585 1459 +1461 3 45.70301515331562 -1111.3763980099623 45.4787 0.2526 1460 +1462 3 45.00215319922296 -1111.7196618462535 47.0428 0.2466 1461 +1463 3 44.67334032673983 -1112.1914736147476 48.6587 0.2407 1462 +1464 3 44.40928847434117 -1112.8559698669903 52.08 0.2347 1463 +1465 3 41.221289966418055 -1109.897478069895 38.7246 0.2883 1455 +1466 3 40.507342592629584 -1110.7916838557521 38.7072 0.2843 1465 +1467 3 40.046394882372226 -1111.8336366898138 38.6456 0.2823 1466 +1468 3 40.137824435109735 -1112.966481819073 38.5518 0.2804 1467 +1469 3 40.68522999471935 -1113.9671317095485 38.4558 0.2784 1468 +1470 3 41.3845887896843 -1114.8727336949178 38.3701 0.2764 1469 +1471 3 42.14178485829001 -1115.730553468348 38.2967 0.2744 1470 +1472 3 42.93674806830694 -1116.5529198494214 38.2315 0.2724 1471 +1473 3 43.44383617311934 -1117.5771010560238 38.166 0.2704 1472 +1474 3 43.32465691364615 -1118.7124657525474 38.0831 0.2685 1473 +1475 3 43.16512479244926 -1119.8451759150807 37.9655 0.2665 1474 +1476 3 43.354992193442285 -1120.9723368530304 37.8134 0.2645 1475 +1477 3 44.00068435939636 -1121.9136294944688 37.6337 0.2625 1476 +1478 3 44.78307713543086 -1122.7304178660856 37.3321 0.2605 1477 +1479 3 45.29524180327962 -1123.5443045922384 36.7769 0.2585 1478 +1480 3 45.451731132057034 -1124.4883602208847 36.0433 0.2566 1479 +1481 3 45.66586795789215 -1125.600143414597 35.3648 0.2546 1480 +1482 3 46.02126234925237 -1126.6763244990757 34.7544 0.2526 1481 +1483 3 46.34866167668031 -1127.7605676177534 34.214 0.2506 1482 +1484 3 46.45924672304773 -1128.8988604129163 33.7868 0.2486 1483 +1485 3 46.9161316164807 -1129.94750664695 33.4499 0.2466 1484 +1486 3 47.58012230258299 -1130.8792617750653 33.1422 0.2447 1485 +1487 3 48.26570142636251 -1131.7955282183216 32.807 0.2427 1486 +1488 3 48.48273560471546 -1132.8762338421743 32.3131 0.2407 1487 +1489 3 48.643475306800894 -1133.878742394843 31.626 0.2387 1488 +1490 3 48.499434998208585 -1134.737672310203 30.7362 0.2367 1489 +1491 3 48.979502207387554 -1135.706352424932 29.8642 0.2347 1490 +1492 3 49.17375139377367 -1136.77846129701 29.0576 0.2328 1491 +1493 3 49.72829795919165 -1137.756892590859 27.72 0.2308 1492 +1494 3 52.56737950481073 -989.6814539158466 48.8547 0.3192 1279 +1495 3 53.27018081904848 -990.5287422744976 48.1838 0.3168 1494 +1496 3 54.195869578395246 -991.1005825676033 47.3665 0.3156 1495 +1497 3 55.21114556509946 -991.3873856373599 46.3918 0.3144 1496 +1498 3 56.207415669062215 -991.5407346834934 45.2634 0.3132 1497 +1499 3 57.11941447055483 -991.5769965929295 43.9866 0.312 1498 +1500 3 57.908232170906615 -991.5332783403145 42.5883 0.3108 1499 +1501 3 58.670657075361476 -991.6319673218021 41.1275 0.3097 1500 +1502 3 59.52611997952309 -991.9571406749591 39.7289 0.3085 1501 +1503 3 60.517004413278215 -992.3401523313635 38.5204 0.3073 1502 +1504 3 61.60215861461967 -992.6473032540563 37.5715 0.3061 1503 +1505 3 62.70953916221137 -992.9235498156918 36.8813 0.3049 1504 +1506 3 63.74890375092602 -993.3962069659881 36.3952 0.3037 1505 +1507 3 64.57853712678536 -994.1606119840644 36.0049 0.3025 1506 +1508 3 65.36060213102411 -994.8858085844046 35.5754 0.3013 1507 +1509 3 66.31510738526345 -995.2945287082418 35.0871 0.3002 1508 +1510 3 67.3307726736382 -995.7579693969935 34.6458 0.299 1509 +1511 3 68.24751913750634 -996.4334162794241 34.3672 0.2978 1510 +1512 3 69.1889640277605 -997.0571583484032 34.2728 0.2966 1511 +1513 3 70.25440978016672 -997.4565937608036 34.3034 0.2954 1512 +1514 3 71.37016921875238 -997.7034218896849 34.4042 0.2942 1513 +1515 3 72.44753182279894 -998.088534989179 34.5377 0.293 1514 +1516 3 73.34412739615308 -998.7934055289535 34.678 0.2918 1515 +1517 3 74.03728324730235 -999.7007202571584 34.8244 0.2906 1516 +1518 3 74.73522389803512 -1000.6016533168553 35.0011 0.2894 1517 +1519 3 75.55275274381026 -1001.3881610576472 35.2234 0.2883 1518 +1520 3 76.42553434704121 -1002.1125460747903 35.4844 0.2871 1519 +1521 3 77.32298568974917 -1002.8086343791538 35.7666 0.2859 1520 +1522 3 78.25171156473894 -1003.4671654787418 36.0545 0.2847 1521 +1523 3 79.25162641261744 -1004.0159376600632 36.3252 0.2835 1522 +1524 3 80.3268260436993 -1004.4024830821306 36.5658 0.2823 1523 +1525 3 81.46404161516054 -1004.4639542463141 36.8018 0.2811 1524 +1526 3 82.52441445842985 -1004.0827955480571 37.0664 0.2799 1525 +1527 3 83.31626564452162 -1003.2983861466058 37.368 0.2787 1526 +1528 3 83.95093318871884 -1002.3654948515759 37.6659 0.2776 1527 +1529 3 84.86302376275563 -1001.6802352841468 37.9072 0.2764 1528 +1530 3 85.9683689826748 -1001.3880398105304 38.0702 0.2752 1529 +1531 3 87.09686054762841 -1001.2027929540699 38.1592 0.274 1530 +1532 3 88.22555057043198 -1001.0149134915847 38.1833 0.2728 1531 +1533 3 89.29249802416925 -1000.610080450735 38.1413 0.2716 1532 +1534 3 90.11716850116542 -999.8254177815766 38.0464 0.2704 1533 +1535 3 90.8077309063749 -998.9143994038742 37.9487 0.2692 1534 +1536 3 91.65325544149502 -998.1438932971432 37.8689 0.268 1535 +1537 3 92.728370645463 -997.7526023335407 37.8064 0.2668 1536 +1538 3 93.86705078104731 -997.6553716859767 37.758 0.2657 1537 +1539 3 95.01155996006096 -997.6422617983516 37.7202 0.2645 1538 +1540 3 96.15374936938258 -997.5835353713073 37.6883 0.2633 1539 +1541 3 97.28986874240158 -997.450838648473 37.6452 0.2621 1540 +1542 3 98.41241436040863 -997.2740738740038 37.5626 0.2609 1541 +1543 3 99.50343204283192 -996.9581895492271 37.4562 0.2597 1542 +1544 3 100.53553416067516 -996.4673636449153 37.3822 0.2585 1543 +1545 3 101.56769883799967 -995.973944270667 37.3573 0.2573 1544 +1546 3 102.66886296410962 -995.6702963538808 37.3993 0.2562 1545 +1547 3 103.79985096423474 -995.7124422145671 37.5343 0.255 1546 +1548 3 104.90562671875676 -995.9041609426848 37.7474 0.2538 1547 +1549 3 106.02904172067397 -995.9292085666744 37.9924 0.2526 1548 +1550 3 107.11901442094518 -995.6245156677363 38.2133 0.2514 1549 +1551 3 108.1034881327208 -995.0472574492388 38.3541 0.2502 1550 +1552 3 109.12751926261356 -994.542714433223 38.3569 0.249 1551 +1553 3 110.24166672229066 -994.5299595088746 38.178 0.2478 1552 +1554 3 111.34933650830123 -994.652110624954 37.8666 0.2466 1553 +1555 3 112.45580643905052 -994.4192682053919 37.5001 0.2454 1554 +1556 3 113.5202703338663 -994.0993309355505 37.0804 0.2443 1555 +1557 3 114.64493456416005 -993.9092259406192 36.7119 0.2431 1556 +1558 3 115.78601689766984 -993.9897456782732 36.437 0.2419 1557 +1559 3 116.91647596859394 -993.8813430078013 36.204 0.2407 1558 +1560 3 117.83094112218009 -993.2771518767204 35.9486 0.2395 1559 +1561 3 118.8540252363286 -992.8073926667237 35.7409 0.2383 1560 +1562 3 119.99593944997798 -992.7563982683487 35.6591 0.2371 1561 +1563 3 121.13308929658112 -992.6334122676394 35.7286 0.2359 1562 +1564 3 121.91172571140004 -991.8233011187727 35.975 0.2347 1563 +1565 3 122.51538467393596 -990.9204584154462 36.407 0.2336 1564 +1566 3 123.22308744278621 -990.0776468404417 36.9424 0.2324 1565 +1567 3 123.9542284946452 -989.249277802943 37.5116 0.2312 1566 +1568 3 124.81901367564186 -988.6828669620081 38.92 0.23 1567 +1569 3 53.22808014514695 -894.9041775512883 51.8199 0.4839 1110 +1570 3 52.235232301145714 -895.397164933137 52.8254 0.4616 1569 +1571 3 51.1133168420879 -895.5965593982734 53.2232 0.4505 1570 +1572 3 49.99311412586542 -895.8021568072254 53.6928 0.4393 1571 +1573 3 48.90298239513285 -896.1236727471882 54.2517 0.4281 1572 +1574 3 48.346636011475965 -897.0827219437323 54.9548 0.417 1573 +1575 3 48.12071778018239 -898.1604505240201 55.7998 0.4058 1574 +1576 3 47.86544923043223 -899.2205825476418 56.7717 0.3947 1575 +1577 3 47.6791052575212 -899.9476904239297 58.0325 0.3835 1576 +1578 3 47.75250472813417 -900.5503277673741 59.5272 0.3724 1577 +1579 3 48.09465057361288 -901.2414306182014 61.115 0.3612 1578 +1580 3 48.06779117314264 -901.9402702940973 62.748 0.3501 1579 +1581 3 48.10236383839856 -901.984177819843 64.4084 0.3295 1580 +1582 3 48.81764031976641 -902.8750411736756 65.2758 0.3192 1581 +1583 3 49.01808349621669 -903.9597152551464 65.6782 0.314 1582 +1584 3 48.662140786359146 -905.0244094588027 66.1777 0.3089 1583 +1585 3 48.376555169250764 -906.1108588802214 66.7537 0.3037 1584 +1586 3 48.20577279189581 -907.2190675787907 67.3971 0.2986 1585 +1587 3 47.74094517085521 -908.1568384744352 68.1775 0.2934 1586 +1588 3 47.11517826101405 -909.0358046481574 69.0284 0.2883 1587 +1589 3 46.68524958159733 -910.0712528895557 69.8771 0.2831 1588 +1590 3 47.07861973009781 -911.1188374380619 70.7364 0.278 1589 +1591 3 47.48013150588059 -912.1211040662141 71.6573 0.2728 1590 +1592 3 47.77834906284983 -912.9435490483955 72.7437 0.2677 1591 +1593 3 47.777917437012746 -913.8831253910623 73.9071 0.2625 1592 +1594 3 47.89468136346022 -914.78556681048 75.1321 0.2574 1593 +1595 3 47.80649048796462 -915.2596817432541 76.1984 0.26 1594 +1596 3 47.7321241088587 -916.3753714365195 77.1638 0.2625 1595 +1597 3 47.78649594199095 -917.5113828597727 78.006 0.2651 1596 +1598 3 48.014744969575446 -918.5904040974723 78.8245 0.2677 1597 +1599 3 48.35209886726295 -919.5952527167752 79.6975 0.2703 1598 +1600 3 48.401468603816056 -920.5179117811715 80.7212 0.2728 1599 +1601 3 48.19705535235963 -921.535657148456 81.8104 0.2754 1600 +1602 3 48.03321804799731 -922.574462490038 82.9256 0.278 1601 +1603 3 48.05721390818965 -922.7484961899172 83.9336 0.278 1602 +1604 3 48.18653529440601 -923.6827889861364 85.0326 0.2769 1603 +1605 3 48.17073534390428 -924.709279220656 86.1322 0.2763 1604 +1606 3 48.2661443672244 -925.6691587642807 87.2567 0.2757 1605 +1607 3 48.3591610780133 -926.6879325083053 88.3588 0.2752 1606 +1608 3 48.290076614332406 -927.7516957981767 89.3942 0.2746 1607 +1609 3 47.829824147539966 -928.7638674865831 90.3134 0.274 1608 +1610 3 47.25979978826729 -929.7311235694461 91.0983 0.2735 1609 +1611 3 46.70095267649208 -930.7019305871694 91.7896 0.2729 1610 +1612 3 46.235556426377116 -931.7021176398645 92.4378 0.2724 1611 +1613 3 45.79617252627648 -932.7075437427344 93.0686 0.2718 1612 +1614 3 45.232099338540024 -933.6780897431264 93.6561 0.2712 1613 +1615 3 44.634055287814505 -934.6323698138561 94.2029 0.2707 1614 +1616 3 44.0327496762425 -935.5875891507061 94.7156 0.2701 1615 +1617 3 43.42793628636102 -936.5421262183048 95.1919 0.2695 1616 +1618 3 42.817452145205294 -937.4974133392257 95.6306 0.269 1617 +1619 3 42.20547312199486 -938.4531309571183 96.0481 0.2684 1618 +1620 3 41.573984846005374 -939.3968066044082 96.4594 0.2678 1619 +1621 3 40.89699470038002 -940.3140710824765 96.8674 0.2673 1620 +1622 3 40.21105283970317 -941.2237588331752 97.2796 0.2667 1621 +1623 3 39.523616096971665 -942.1338770808457 97.7024 0.2661 1622 +1624 3 38.988355674965874 -942.9673528637178 98.3038 0.2656 1623 +1625 3 38.612245935003756 -943.9006934572342 99.0153 0.265 1624 +1626 3 38.31275925690923 -944.9769443246643 99.68 0.2644 1625 +1627 3 38.024047977322994 -946.0642938761147 100.2705 0.2639 1626 +1628 3 37.75883754022664 -947.1634924951346 100.7692 0.2633 1627 +1629 3 37.614188902686635 -948.2978032557544 101.1276 0.2628 1628 +1630 3 37.48765973037601 -949.4344751558884 101.3558 0.2622 1629 +1631 3 37.359341077407436 -950.5700435348513 101.5008 0.2616 1630 +1632 3 37.23241561092388 -951.7076389884102 101.603 0.2611 1631 +1633 3 37.07639126803656 -952.8410314201948 101.677 0.2605 1632 +1634 3 36.907162603055696 -953.9722661036044 101.738 0.2599 1633 +1635 3 36.739516337357884 -955.1031186711823 101.8024 0.2594 1634 +1636 3 36.56883192641067 -956.2349197499323 101.8777 0.2588 1635 +1637 3 36.38999423487425 -957.3647273353582 101.9754 0.2582 1636 +1638 3 36.15671340782984 -958.4840910232333 102.1188 0.2577 1637 +1639 3 35.91698835279598 -959.6012633814615 102.3151 0.2571 1638 +1640 3 35.67717578053373 -960.7183873585495 102.5654 0.2566 1639 +1641 3 35.43683101572998 -961.8364740251508 102.8684 0.256 1640 +1642 3 35.38726625400756 -962.9358232846654 103.3108 0.2554 1641 +1643 3 35.46300073989116 -963.976351216846 103.913 0.2549 1642 +1644 3 35.44499093071249 -965.042183242436 104.6041 0.2543 1643 +1645 3 35.13501449896128 -966.1231473962167 105.2736 0.2537 1644 +1646 3 34.809240275180116 -967.2018912421411 105.9044 0.2532 1645 +1647 3 34.43472264537431 -968.2600875731517 106.4941 0.2526 1646 +1648 3 33.9768026311871 -969.2775478970008 107.0437 0.252 1647 +1649 3 33.51389413497685 -970.2922504958624 107.5547 0.2515 1648 +1650 3 33.05156621244819 -971.3059028879823 108.038 0.2509 1649 +1651 3 32.60408384161565 -972.3447873944573 108.4723 0.2504 1650 +1652 3 32.19623413129486 -973.4134657295008 108.8074 0.2498 1651 +1653 3 31.789483008855967 -974.4826371209973 109.0678 0.2492 1652 +1654 3 31.3826835052769 -975.5518960297223 109.282 0.2487 1653 +1655 3 30.97899548583453 -976.6227607611235 109.4859 0.2481 1654 +1656 3 30.60205386573287 -977.6876154906688 109.7589 0.2475 1655 +1657 3 30.226743026054464 -978.752000587154 110.1075 0.247 1656 +1658 3 29.848838716439673 -979.816323124158 110.5275 0.2464 1657 +1659 3 29.473440359532816 -980.8806598395032 111.0049 0.2458 1658 +1660 3 29.00537912624864 -981.8976557548816 111.5447 0.2453 1659 +1661 3 28.512302143962103 -982.898308711475 112.1352 0.2447 1660 +1662 3 28.005270786259814 -983.8911331684193 112.763 0.2441 1661 +1663 3 27.487251393858145 -984.8779975000758 113.4269 0.2436 1662 +1664 3 26.969725057909613 -985.8637632438505 114.1258 0.243 1663 +1665 3 26.451236032447838 -986.8489967950836 114.8571 0.2424 1664 +1666 3 25.933129122817746 -987.8358127456 115.6187 0.2419 1665 +1667 3 25.56051970284156 -988.8219355118645 116.4722 0.2413 1666 +1668 3 25.259117629078474 -989.795204724329 117.4202 0.2408 1667 +1669 3 25.221423862890447 -990.8305018217801 118.4184 0.2402 1668 +1670 3 25.43381104353577 -991.8720742702913 119.42 0.2396 1669 +1671 3 25.649323886658948 -992.9127465887706 120.4109 0.2391 1670 +1672 3 25.769284425032083 -994.0105170425692 121.3416 0.2385 1671 +1673 3 25.809232249688648 -995.13706918575 122.1892 0.2379 1672 +1674 3 25.849131693204924 -996.263708846159 122.9931 0.2374 1673 +1675 3 25.889031136721258 -997.3903485065683 123.797 0.2368 1674 +1676 3 25.895733293222463 -997.6502317132175 124.63 0.2368 1675 +1677 3 25.92056363385086 -998.6077725500409 125.6847 0.2359 1676 +1678 3 25.945011858647604 -999.563730987581 126.9344 0.2355 1677 +1679 3 25.967698959468862 -1000.5135739985341 128.3467 0.235 1678 +1680 3 25.99061539985655 -1001.4059551316604 129.9052 0.2346 1679 +1681 3 26.073211035071495 -1002.2071239097861 131.5908 0.2341 1680 +1682 3 26.28650147349441 -1002.9564533359248 133.3478 0.2337 1681 +1683 3 26.44684142472994 -1003.758780270558 135.0955 0.2333 1682 +1684 3 26.606590353104536 -1004.5386134128925 136.8114 0.2328 1683 +1685 3 27.086657990473782 -1005.1503354768648 138.4659 0.2324 1684 +1686 3 27.52278735597565 -1005.995316942074 139.9656 0.2319 1685 +1687 3 28.13019689135251 -1006.9207023462885 141.2197 0.2315 1686 +1688 3 28.733649913718352 -1007.8908626989095 142.1952 0.231 1687 +1689 3 29.392216396236165 -1008.8065932204626 143.0016 0.2306 1688 +1690 3 30.012460646267073 -1009.5808193375004 143.8116 0.2301 1689 +1691 3 30.589133494683495 -1010.1976132057413 144.6931 0.2297 1690 +1692 3 30.628649326940376 -1011.2848485155987 146.4165 0.2292 1691 +1693 3 26.241972715281975 -998.3527386260746 122.92 0.2368 1675 +1694 3 26.63692153390366 -999.4259910104975 123.0967 0.2358 1693 +1695 3 27.02970737956076 -1000.5006757174936 123.1633 0.2353 1694 +1696 3 27.423073798899395 -1001.574310217748 123.2448 0.2348 1695 +1697 3 28.073656480468685 -1002.494768203993 123.4086 0.2343 1696 +1698 3 28.74082493935083 -1003.3994857330996 123.6329 0.2338 1697 +1699 3 29.501266564807395 -1004.2394464371049 123.8731 0.2333 1698 +1700 3 30.459622013314572 -1004.8633959176854 124.0574 0.2328 1699 +1701 3 31.422278450003887 -1005.4818389020426 124.1884 0.2323 1700 +1702 3 32.42512050251031 -1006.0323435593567 124.2704 0.2318 1701 +1703 3 33.51473248876118 -1006.3810368478188 124.3085 0.2313 1702 +1704 3 34.60435865335319 -1006.7272241835728 124.3197 0.2308 1703 +1705 3 35.69503502468683 -1007.0739920930085 124.32 0.2303 1704 +1706 3 36.83299319114661 -1007.1932339119629 124.32 0.2298 1705 +1707 3 37.97671960946701 -1007.2098567888527 124.32 0.2293 1706 +1708 3 46.99193068055288 -923.015762227632 83.16 0.2574 1602 +1709 3 45.999569638808595 -923.5835183397331 82.829 0.2547 1708 +1710 3 45.093004963925864 -924.2823449421567 82.7002 0.2533 1709 +1711 3 44.22250783635377 -925.0246485733539 82.528 0.252 1710 +1712 3 43.407582284281716 -925.8106992044078 82.2531 0.2506 1711 +1713 3 42.62537030708225 -926.6109495544393 81.8642 0.2492 1712 +1714 3 41.79433113579168 -927.3645540566689 81.3856 0.2479 1713 +1715 3 40.921074787804315 -928.0740242186206 80.8371 0.2465 1714 +1716 3 40.03565909987549 -928.7701452063587 80.2298 0.2451 1715 +1717 3 38.94675480514914 -929.0609173111532 79.571 0.2438 1716 +1718 3 37.81564318148929 -929.0617803416084 78.8721 0.2424 1717 +1719 3 36.75595256984005 -928.9570119418763 78.0416 0.2411 1718 +1720 3 35.84718891364997 -929.3617662836542 77.051 0.2397 1719 +1721 3 34.85061389749944 -929.3271966845163 75.9452 0.2383 1720 +1722 3 33.91006497992507 -929.0895882805198 74.7337 0.237 1721 +1723 3 32.94806682401378 -929.198337524302 73.4829 0.2356 1722 +1724 3 31.95665845079364 -929.3861237791479 72.277 0.2342 1723 +1725 3 30.958778329171622 -929.1364748999763 71.1726 0.2329 1724 +1726 3 29.982741972146812 -928.7288779915414 70.2094 0.2315 1725 +1727 3 28.88953412657287 -928.5925546392655 68.6 0.2302 1726 +1728 3 47.92909723198892 -914.782425474233 76.16 0.2574 1594 +1729 3 49.06930645242679 -914.6871827651768 76.3938 0.2562 1728 +1730 3 50.19252495774333 -914.8781462153827 76.5022 0.2555 1729 +1731 3 51.274297995165625 -915.2172498802202 76.6646 0.2549 1730 +1732 3 52.39030920603065 -915.4590753487373 76.8387 0.2543 1731 +1733 3 53.52472166222009 -915.6012664147094 76.9958 0.2537 1732 +1734 3 54.66342465741235 -915.7144069854178 77.1383 0.2531 1733 +1735 3 55.80302255804679 -915.8189012190838 77.2727 0.2524 1734 +1736 3 56.9416577691681 -915.9228632602086 77.4049 0.2518 1735 +1737 3 58.049399534232776 -916.1536042230464 77.6054 0.2512 1736 +1738 3 59.14447588976293 -916.4308186987848 77.87 0.2506 1737 +1739 3 60.2021322786083 -916.8443443849695 78.1698 0.2499 1738 +1740 3 61.25522172865101 -917.2708851804496 78.4896 0.2493 1739 +1741 3 62.33042508889477 -917.6313806507686 78.8208 0.2487 1740 +1742 3 63.41914067427547 -917.9508983250045 79.1532 0.2481 1741 +1743 3 64.4940922622398 -918.3163964556877 79.4696 0.2474 1742 +1744 3 65.54059785676273 -918.7668350093576 79.7619 0.2468 1743 +1745 3 66.5869142384876 -919.219682753455 80.0352 0.2462 1744 +1746 3 67.64351146683984 -919.6469058181864 80.2911 0.2456 1745 +1747 3 68.70228584649792 -920.0701906076363 80.5347 0.245 1746 +1748 3 69.83356368645792 -920.2275597558685 80.7612 0.2443 1747 +1749 3 70.97648794115418 -920.2646493504609 80.9757 0.2437 1748 +1750 3 72.11872320658176 -920.2556527725741 81.1927 0.2431 1749 +1751 3 73.23691302654927 -920.0489425973991 81.443 0.2425 1750 +1752 3 74.35123608446835 -919.8231838487535 81.7256 0.2419 1751 +1753 3 75.43897802770394 -919.510744742805 82.0439 0.2412 1752 +1754 3 76.49405178635138 -919.1083744981129 82.3992 0.2406 1753 +1755 3 77.53401375138182 -918.6742262155066 82.7798 0.24 1754 +1756 3 78.4839110687397 -918.0791104230119 83.181 0.2394 1755 +1757 3 79.58023678953634 -917.7701596924421 83.5439 0.2388 1756 +1758 3 80.72209619332833 -917.6837133971379 83.8415 0.2381 1757 +1759 3 81.85257559882604 -917.8354993113244 84.1224 0.2375 1758 +1760 3 82.94208439407942 -918.1488282200856 84.4152 0.2369 1759 +1761 3 84.04871861751084 -918.3933540786987 84.723 0.2363 1760 +1762 3 85.17893430612202 -918.4887767029403 85.0469 0.2356 1761 +1763 3 86.30638331599434 -918.6034657614332 85.3882 0.235 1762 +1764 3 87.40654984911706 -918.880980390591 85.7391 0.2344 1763 +1765 3 88.50603411298863 -919.1620027980586 86.0938 0.2338 1764 +1766 3 89.63741887310798 -919.3286863742431 86.4181 0.2331 1765 +1767 3 90.77479646588617 -919.4489783999393 86.7328 0.2325 1766 +1768 3 91.91284214957437 -919.5682686000339 87.04 0.2319 1767 +1769 3 93.00608493625336 -919.6053165335036 87.4602 0.2313 1768 +1770 3 94.08688240791244 -919.6315995176444 87.9701 0.2307 1769 +1771 3 95.16559547008387 -919.6736411577268 88.5329 0.23 1770 +1772 3 96.22925976394095 -919.8067725588818 89.88 0.2294 1771 +1773 3 47.10033859367877 -901.5361617610411 64.0721 0.3501 1580 +1774 3 46.03449196155739 -901.8776159553269 65.189 0.3466 1773 +1775 3 45.11493783450615 -902.5052743476256 66.159 0.3449 1774 +1776 3 44.330274539934976 -903.2295556839534 67.0891 0.3432 1775 +1777 3 44.12825733017152 -904.1623568990894 68.0952 0.3415 1776 +1778 3 44.41692366129823 -905.0944705827536 69.1664 0.3398 1777 +1779 3 44.09586375347408 -906.0960648646801 70.2512 0.3381 1778 +1780 3 43.153815834124146 -906.7243142798399 71.2132 0.3363 1779 +1781 3 42.80431721666122 -907.6473423489641 72.207 0.3346 1780 +1782 3 42.43080094663557 -908.5807455019619 73.1858 0.3329 1781 +1783 3 41.787048644279224 -909.4378856440687 74.0816 0.3312 1782 +1784 3 40.77313933055257 -909.9336270217431 74.8331 0.3295 1783 +1785 3 40.313790083906554 -910.1711363680975 75.4348 0.3295 1784 +1786 3 39.30800536386013 -910.6922793397675 75.9506 0.2883 1785 +1787 3 39.01015269189807 -911.1341300337865 76.4338 0.2883 1786 +1788 3 38.41422948719318 -912.0111979810371 76.939 0.2872 1787 +1789 3 37.794363134014134 -912.9574134925335 77.3648 0.2867 1788 +1790 3 37.24237777298643 -913.9581800893038 77.6765 0.2862 1789 +1791 3 36.771719340603966 -915.0011633969493 77.8834 0.2856 1790 +1792 3 36.30049451288116 -916.0426909586287 77.9976 0.2851 1791 +1793 3 35.761017026354665 -917.0516290347914 78.0368 0.2846 1792 +1794 3 35.14957542027534 -918.0181559626911 78.0248 0.284 1793 +1795 3 34.509228171052456 -918.9660752632714 77.989 0.2835 1794 +1796 3 33.926779725345256 -919.9512581996306 77.9369 0.283 1795 +1797 3 33.456565968275754 -920.9932304366228 77.8652 0.2824 1796 +1798 3 33.04127020436408 -922.0590493511093 77.7633 0.2819 1797 +1799 3 32.62588692322399 -923.1248198844555 77.6168 0.2814 1798 +1800 3 32.266596960945975 -924.2098307291047 77.4152 0.2809 1799 +1801 3 32.060973442680194 -925.3314578813867 77.1532 0.2803 1800 +1802 3 31.889890911905667 -926.4447567575487 76.7936 0.2798 1801 +1803 3 31.55662477842776 -927.4709113337586 76.3008 0.2793 1802 +1804 3 31.21832178178667 -928.4943957022098 75.7162 0.2787 1803 +1805 3 30.976373719341183 -929.5657764865617 75.1066 0.2782 1804 +1806 3 30.643230179791516 -930.6365614892848 74.5315 0.2777 1805 +1807 3 30.208536103722224 -931.6876574460033 74.0376 0.2771 1806 +1808 3 29.74988170998185 -932.7347630171387 73.6448 0.2766 1807 +1809 3 29.20244015566425 -933.7392984095497 73.3362 0.2761 1808 +1810 3 28.43864033878998 -934.5889196249997 73.0688 0.2755 1809 +1811 3 27.57790231448314 -935.3301052653844 72.7681 0.275 1810 +1812 3 26.851633579436083 -936.1521410155152 72.3615 0.2745 1811 +1813 3 26.357171160288544 -937.1127215306469 71.8528 0.2739 1812 +1814 3 26.060504766662604 -938.1813904461175 71.3076 0.2734 1813 +1815 3 25.857483672084726 -939.2888022056525 70.7787 0.2729 1814 +1816 3 25.48387139690061 -940.3618961986614 70.3069 0.2724 1815 +1817 3 24.718072862112535 -941.2078986951805 69.9194 0.2718 1816 +1818 3 23.892270215962526 -941.9853082137815 69.573 0.2713 1817 +1819 3 23.204305009851424 -942.8703391992168 69.2275 0.2708 1818 +1820 3 22.505618010961797 -943.7559559829233 68.8929 0.2702 1819 +1821 3 21.66566253154616 -944.5281696078999 68.6014 0.2697 1820 +1822 3 20.794647389773843 -945.2689299759026 68.367 0.2692 1821 +1823 3 20.04271231423789 -946.1303663474233 68.1761 0.2686 1822 +1824 3 19.527045068672635 -947.1458398979656 67.9913 0.2681 1823 +1825 3 19.203971234987165 -948.2339607313237 67.7986 0.2676 1824 +1826 3 18.94337238867186 -949.3461066755681 67.6214 0.267 1825 +1827 3 18.653340931261283 -950.4523796815264 67.4716 0.2665 1826 +1828 3 18.289492983932035 -951.5361276832429 67.3369 0.266 1827 +1829 3 17.817518102887078 -952.571984493648 67.1874 0.2655 1828 +1830 3 17.236927252135303 -953.5490532855061 67.0247 0.2649 1829 +1831 3 16.613558345236385 -954.5063585272717 66.8836 0.2644 1830 +1832 3 16.178071059294467 -955.5636432494647 66.7772 0.2639 1831 +1833 3 16.01301826353307 -956.694558376524 66.7022 0.2633 1832 +1834 3 15.911069118663306 -957.8343063538682 66.6551 0.2628 1833 +1835 3 15.64839481661187 -958.9479330018261 66.631 0.2623 1834 +1836 3 15.161052640508615 -959.9830643864294 66.6201 0.2617 1835 +1837 3 14.53820174780995 -960.9419128913897 66.6112 0.2612 1836 +1838 3 13.93816942835005 -961.9161182422289 66.5997 0.2607 1837 +1839 3 13.604122029606714 -963.0098275342222 66.5832 0.2601 1838 +1840 3 13.519513939961712 -964.1512778052225 66.5608 0.2596 1839 +1841 3 13.544976400788613 -965.2947315529049 66.5319 0.2591 1840 +1842 3 13.555985874930315 -966.4380795845553 66.4882 0.2585 1841 +1843 3 13.481669081092036 -967.5774491752297 66.4163 0.258 1842 +1844 3 13.322867610286465 -968.7065640422252 66.3247 0.2575 1843 +1845 3 13.042914812491489 -969.8158949265904 66.2379 0.257 1844 +1846 3 12.571206173367358 -970.8582976605545 66.1696 0.2564 1845 +1847 3 12.070863066309869 -971.8863561536472 66.1217 0.2559 1846 +1848 3 11.991393535397663 -973.0280190608386 66.0926 0.2554 1847 +1849 3 11.98294736249008 -974.1710096041779 66.078 0.2548 1848 +1850 3 11.894831494535538 -975.311777605927 66.0719 0.2543 1849 +1851 3 11.90838605747362 -976.4552757142873 66.068 0.2538 1850 +1852 3 11.956390691739415 -977.5980509218801 66.0629 0.2532 1851 +1853 3 11.929960330444231 -978.7429828482417 66.0562 0.2527 1852 +1854 3 11.72528532335042 -979.8676481457729 66.0467 0.2522 1853 +1855 3 11.335614238805022 -980.9437479068868 66.0332 0.2516 1854 +1856 3 10.87143917050031 -981.989058442548 66.0148 0.2511 1855 +1857 3 10.37517023709276 -983.0192549508581 65.9893 0.2506 1856 +1858 3 9.810662823222629 -984.0143560209439 65.9529 0.25 1857 +1859 3 9.159820595753473 -984.9552166083547 65.9011 0.2495 1858 +1860 3 8.603364766903013 -985.9547687433324 65.8297 0.249 1859 +1861 3 8.283334303056677 -987.0537130650384 65.7359 0.2485 1860 +1862 3 8.203482656312758 -988.1937935729467 65.6029 0.2479 1861 +1863 3 8.576909325900544 -989.2538912205437 65.382 0.2474 1862 +1864 3 9.133806542726916 -990.22310978201 65.091 0.2469 1863 +1865 3 9.55420906564649 -991.2621001037758 64.7702 0.2463 1864 +1866 3 9.791884665932344 -992.3621008487886 64.4554 0.2458 1865 +1867 3 9.89440394893893 -993.4984485317677 64.2146 0.2453 1866 +1868 3 10.042578907452992 -994.6326123434234 64.0811 0.2447 1867 +1869 3 10.104914808376407 -995.7730264504283 64.073 0.2442 1868 +1870 3 9.803420458616529 -996.8599365511557 64.2032 0.2437 1869 +1871 3 9.331861896202213 -997.8997941963233 64.3868 0.2431 1870 +1872 3 8.768161870545896 -998.8862005482266 64.6139 0.2426 1871 +1873 3 8.108671810606552 -999.7883442789265 64.8936 0.2421 1872 +1874 3 7.369157092343414 -1000.6579037486996 65.1375 0.2415 1873 +1875 3 6.610283198010848 -1001.5128761590735 65.3117 0.241 1874 +1876 3 5.84283970445847 -1002.3618542413607 65.424 0.2405 1875 +1877 3 5.095791415375913 -1003.2285059094368 65.492 0.24 1876 +1878 3 4.483338738643283 -1004.1945881620235 65.5256 0.2394 1877 +1879 3 3.9278455993060675 -1005.1946724895425 65.5371 0.2389 1878 +1880 3 3.374365356223734 -1006.1958695832845 65.5444 0.2384 1879 +1881 3 2.820885113141344 -1007.1970666770266 65.5539 0.2378 1880 +1882 3 2.154225690711314 -1008.1264409097688 65.5676 0.2373 1881 +1883 3 1.3661407752260857 -1008.9561238708958 65.5864 0.2368 1882 +1884 3 0.622982380284725 -1009.825040207506 65.613 0.2362 1883 +1885 3 -0.008931168086917296 -1010.7789929722616 65.6499 0.2357 1884 +1886 3 -0.6014440950686435 -1011.7586120775057 65.7017 0.2352 1885 +1887 3 -1.165370935257215 -1012.7526629408497 65.774 0.2346 1886 +1888 3 -1.7188511783395484 -1013.7538600345919 65.8734 0.2341 1887 +1889 3 -2.2237522704481876 -1014.7806556847518 66.0181 0.2336 1888 +1890 3 -2.6988669923122757 -1015.8199185778967 66.2175 0.233 1889 +1891 3 -3.043409369301912 -1016.9065691567206 66.4905 0.2325 1890 +1892 3 -2.941776037986074 -1018.0372852245138 66.8696 0.232 1891 +1893 3 -2.5519278461363797 -1019.0866934564767 67.3526 0.2315 1892 +1894 3 -2.8431872053746474 -1020.0982490286804 67.9745 0.2309 1893 +1895 3 -3.3199431568413047 -1021.114437555845 68.5947 0.2304 1894 +1896 3 -3.7436678628358777 -1022.0605337367534 69.2796 0.2299 1895 +1897 3 -4.403224677239734 -1022.8658596202152 70.84 0.2293 1896 +1898 3 38.21226810325891 -910.5911219093425 76.1877 0.2883 1786 +1899 3 37.07675333002584 -910.4744877386657 76.4644 0.2861 1898 +1900 3 35.94080283523135 -910.3445866864141 76.5733 0.285 1899 +1901 3 34.810162903844486 -910.1718018619836 76.6993 0.284 1900 +1902 3 33.692656810924774 -909.9304068904381 76.8516 0.2829 1901 +1903 3 32.57235506105695 -909.7176319171847 77.0465 0.2818 1902 +1904 3 31.44239636931485 -909.628978632099 77.3004 0.2807 1903 +1905 3 30.313992885374688 -909.6011732831221 77.6087 0.2796 1904 +1906 3 29.186602705821826 -909.5099407064412 77.9506 0.2786 1905 +1907 3 28.0639712029041 -909.3534664636512 78.3034 0.2775 1906 +1908 3 27.00775758581142 -908.9656477494716 78.6691 0.2764 1907 +1909 3 26.048324778007782 -908.3698970152631 79.0252 0.2753 1908 +1910 3 25.090337266991128 -907.7500358866737 79.3274 0.2742 1909 +1911 3 24.036772959298617 -907.3100923112502 79.578 0.2731 1910 +1912 3 22.906142447484683 -907.2484908035144 79.8134 0.2721 1911 +1913 3 21.77345261952499 -907.3491472669758 80.0327 0.271 1912 +1914 3 20.631915297117587 -907.3899520651138 80.2102 0.2699 1913 +1915 3 19.487661910845475 -907.3860638772575 80.3443 0.2688 1914 +1916 3 18.343887111385044 -907.3695285175962 80.4597 0.2677 1915 +1917 3 17.202598861701688 -907.3437412894639 80.5714 0.2667 1916 +1918 3 16.061944500129414 -907.3145338002505 80.6806 0.2656 1917 +1919 3 14.919393407513326 -907.2933045571693 80.7747 0.2645 1918 +1920 3 13.775604429711649 -907.279275150216 80.8466 0.2634 1919 +1921 3 12.631209920481297 -907.2636540989279 80.8996 0.2623 1920 +1922 3 11.48778738474229 -907.2158910926971 80.936 0.2612 1921 +1923 3 10.346985471494548 -907.1394113258941 80.9614 0.2602 1922 +1924 3 9.205903137984734 -907.0588915882403 80.9833 0.2591 1923 +1925 3 8.063287990459514 -907.002433863827 81.0088 0.258 1924 +1926 3 6.9193384867687655 -906.9674055466296 81.0446 0.2569 1925 +1927 3 5.775771098909644 -906.9339596287153 81.0942 0.2558 1926 +1928 3 4.646988762478259 -906.7530606597838 81.163 0.2548 1927 +1929 3 3.600933398084635 -906.2949868397251 81.2585 0.2537 1928 +1930 3 2.57011718000453 -905.7996322146906 81.396 0.2526 1929 +1931 3 1.4811732846636971 -905.449937100627 81.592 0.2515 1930 +1932 3 0.3734873590627501 -905.1670087170639 81.8524 0.2504 1931 +1933 3 -0.7291277918763512 -904.8751144401082 82.1892 0.2493 1932 +1934 3 -1.7714934878912345 -904.6112710665485 82.7025 0.2483 1933 +1935 3 -2.7198459473676166 -904.3902588890444 83.4198 0.2472 1934 +1936 3 -3.6642601315626564 -904.1714238628462 84.278 0.2461 1935 +1937 3 -4.17495128153692 -903.1845573727179 85.0436 0.245 1936 +1938 3 -4.660638627116015 -902.1526678910658 85.7091 0.2439 1937 +1939 3 -5.064653830572524 -901.1005697181864 86.3187 0.2429 1938 +1940 3 -5.368561269262017 -900.0424536193063 86.9109 0.2418 1939 +1941 3 -5.655079271586629 -898.9859522968538 87.4927 0.2407 1940 +1942 3 -5.371346024844058 -897.9193890194564 88.0572 0.2396 1941 +1943 3 -4.805497534790959 -896.9524524929436 88.5973 0.2385 1942 +1944 3 -4.2224956679569345 -895.9949986698962 89.0994 0.2374 1943 +1945 3 -3.5120366695470864 -895.1093766616001 89.5213 0.2364 1944 +1946 3 -2.744955888895504 -894.2680822268419 89.85 0.2353 1945 +1947 3 -1.9739368329626075 -893.4289649433897 90.102 0.2342 1946 +1948 3 -1.2014370733162139 -892.5919231156736 90.2955 0.2331 1947 +1949 3 -0.6485374039154408 -891.5917762286732 90.4254 0.232 1948 +1950 3 -0.7751954379851327 -890.4589951543231 90.4565 0.231 1949 +1951 3 -0.90348425247808 -889.3266837130333 90.3182 0.2299 1950 +1952 3 40.76936264839793 -910.3472287827062 75.5252 0.3295 1784 +1953 3 40.7221839450105 -911.4635511599552 76.4179 0.3243 1952 +1954 3 40.519277520215866 -912.5422319805768 76.8158 0.3218 1953 +1955 3 40.25061141511202 -913.6146108613686 77.2792 0.3192 1954 +1956 3 39.96454691989166 -914.6996529179611 77.7526 0.3166 1955 +1957 3 39.75108445279736 -915.8116904466182 78.1922 0.314 1956 +1958 3 39.52219213116348 -916.9255960194102 78.573 0.3115 1957 +1959 3 38.99470450493794 -917.9411623117709 78.8637 0.3089 1958 +1960 3 38.230324114382086 -918.7918337339626 79.0821 0.3063 1959 +1961 3 37.43836348309674 -919.6167460738473 79.2638 0.3037 1960 +1962 3 36.62471122313676 -920.4217827188902 79.4391 0.3012 1961 +1963 3 35.588685008353366 -920.9079255191883 79.6289 0.2986 1962 +1964 3 34.742950362076414 -921.6337528182662 79.9366 0.296 1963 +1965 3 34.06117242601189 -922.4817550623055 80.3729 0.2934 1964 +1966 3 33.37452217313546 -923.3360905937126 80.8926 0.2909 1965 +1967 3 32.712922745961265 -924.2513511292776 81.4187 0.2883 1966 +1968 3 32.09552996834577 -925.2145881396485 81.8916 0.2857 1967 +1969 3 31.7705110224764 -926.3107747363673 82.3172 0.2831 1968 +1970 3 31.62168651571679 -927.4454050533375 82.7126 0.2806 1969 +1971 3 31.418654971959626 -928.529272813832 83.214 0.278 1970 +1972 3 31.19128724889586 -929.531700471326 83.8858 0.2754 1971 +1973 3 30.77954195402276 -930.4608808693919 84.7045 0.2728 1972 +1974 3 30.119146539461894 -931.3481269380937 85.5453 0.2703 1973 +1975 3 29.48935010794912 -932.2509175311184 86.389 0.2677 1974 +1976 3 28.960843486925114 -933.1926777827397 87.2323 0.2651 1975 +1977 3 28.566281420943085 -934.1641509301236 88.0692 0.2625 1976 +1978 3 28.11412742488247 -935.1428642149248 88.8577 0.26 1977 +1979 3 27.53269377899045 -936.1024418748485 89.5476 0.2574 1978 +1980 3 26.959699058539314 -937.0798249984675 90.1412 0.2548 1979 +1981 3 26.45182238066249 -938.1049756898632 90.6002 0.2523 1980 +1982 3 26.04269042447814 -939.1689459631456 90.9871 0.2497 1981 +1983 3 26.313551291909647 -940.1094985722506 91.4995 0.2471 1982 +1984 3 26.005348027999872 -940.4045121958604 91.9108 0.2471 1983 +1985 3 25.180663372662593 -941.1916808177268 92.274 0.2466 1984 +1986 3 24.3574735993798 -941.9784189426215 92.6013 0.2463 1985 +1987 3 23.6035881870703 -942.8361490779828 92.892 0.2461 1986 +1988 3 22.981651602744705 -943.7956172927129 93.1319 0.2458 1987 +1989 3 22.409180121083523 -944.7863156790469 93.3363 0.2455 1988 +1990 3 21.80308970992806 -945.7479166844048 93.5855 0.2453 1989 +1991 3 21.175854040980596 -946.6861733526997 93.8921 0.245 1990 +1992 3 20.568050886989823 -947.6415714142421 94.2376 0.2447 1991 +1993 3 19.976447043791495 -948.610038229736 94.6061 0.2445 1992 +1994 3 19.41735338432659 -949.5976199073435 94.9956 0.2442 1993 +1995 3 18.982286146177046 -950.6328555125509 95.4198 0.244 1994 +1996 3 18.636039980103533 -951.699025195331 95.8642 0.2437 1995 +1997 3 18.3437099815863 -952.7883734646953 96.3038 0.2434 1996 +1998 3 18.069383574387558 -953.8850463978496 96.7305 0.2432 1997 +1999 3 17.896961462857888 -955.0080026817074 97.1351 0.2429 1998 +2000 3 17.81981915996124 -956.1431822248211 97.5106 0.2427 1999 +2001 3 17.768625113243274 -957.2808230686645 97.862 0.2424 2000 +2002 3 17.687417881748587 -958.4136411809635 98.2069 0.2421 2001 +2003 3 17.564034105073233 -959.5402828026221 98.5634 0.2419 2002 +2004 3 17.425345592820975 -960.6636055285425 98.9369 0.2416 2003 +2005 3 17.37393368532244 -961.7946129315984 99.3261 0.2413 2004 +2006 3 17.382862479138282 -962.9276696674423 99.7279 0.2411 2005 +2007 3 17.405106535669148 -964.0602031644961 100.1364 0.2408 2006 +2008 3 17.421399420663732 -965.1894467440211 100.5536 0.2406 2007 +2009 3 17.412192745254742 -966.3032225370458 100.9996 0.2403 2008 +2010 3 17.388034802117772 -967.4062192024006 101.47 0.24 2009 +2011 3 17.044019393079907 -968.480135092191 101.906 0.2398 2010 +2012 3 16.546100276318185 -969.5015351867492 102.2792 0.2395 2011 +2013 3 15.970347830879774 -970.483906792391 102.5839 0.2393 2012 +2014 3 15.133155301041171 -971.262903934865 102.8006 0.239 2013 +2015 3 14.208237296152816 -971.935816153682 102.935 0.2387 2014 +2016 3 13.263436876405137 -972.580826050385 103.01 0.2385 2015 +2017 3 12.294558769647779 -973.1889871345116 103.0515 0.2382 2016 +2018 3 11.317943409631596 -973.785101023446 103.0756 0.238 2017 +2019 3 10.293748024687801 -974.2946950809663 103.0935 0.2377 2018 +2020 3 9.151626399437134 -974.3626000375942 103.115 0.2374 2019 +2021 3 8.011071033879091 -974.2693456109071 103.145 0.2372 2020 +2022 3 6.875271217210525 -974.406218202961 103.1873 0.2369 2021 +2023 3 5.846450063144573 -974.9053708879648 103.2461 0.2366 2022 +2024 3 4.854026461919005 -975.4757204700023 103.327 0.2364 2023 +2025 3 3.8644767508918676 -976.050172582372 103.4351 0.2361 2024 +2026 3 2.854758980153804 -976.5809104022567 103.605 0.2359 2025 +2027 3 1.8404154402934978 -977.1012068496246 103.843 0.2356 2026 +2028 3 0.8250842531728608 -977.6183292533747 104.146 0.2353 2027 +2029 3 -0.19015941671929681 -978.1355000382647 104.5122 0.2351 2028 +2030 3 -1.2029023584931622 -978.6409130019757 104.9644 0.2348 2029 +2031 3 -2.2058772432501996 -979.130930022646 105.5261 0.2346 2030 +2032 3 -3.206921194164579 -979.6153872326635 106.19 0.2343 2031 +2033 3 -4.208633235988884 -980.1008462682825 106.9474 0.234 2032 +2034 3 -5.206204815520209 -980.5597998974341 107.8056 0.2338 2033 +2035 3 -6.163979615083434 -980.8996388494709 108.8178 0.2335 2034 +2036 3 -7.105643494983667 -981.2103345644258 109.9543 0.2333 2035 +2037 3 -7.580563681496301 -981.9203984111626 111.2376 0.233 2036 +2038 3 -8.149770804792041 -982.6331850417819 112.5846 0.2327 2037 +2039 3 -9.079379099533156 -983.1349661378272 113.8628 0.2325 2038 +2040 3 -9.960017912023687 -983.7513440916309 115.0481 0.2322 2039 +2041 3 -10.786400102248763 -984.4421644993193 116.1381 0.2319 2040 +2042 3 -11.60939963312697 -985.1388541161317 117.1484 0.2317 2041 +2043 3 -12.240049308959442 -986.0006095781815 118.1043 0.2314 2042 +2044 3 -12.46253799519377 -987.0462978990963 119.028 0.2312 2043 +2045 3 -12.669800218027888 -988.095033319012 119.9332 0.2309 2044 +2046 3 -13.189567760191352 -989.049508856736 120.7993 0.2306 2045 +2047 3 -13.924250793158905 -989.874777189504 121.6186 0.2304 2046 +2048 3 -14.659466018667757 -990.7010082117853 122.3832 0.2301 2047 +2049 3 -15.394013153266627 -991.5262374084649 123.0886 0.2298 2048 +2050 3 -16.127733496720907 -992.3520379337745 123.7323 0.2296 2049 +2051 3 -16.86286120500128 -993.1783173371958 124.3147 0.2293 2050 +2052 3 -17.5974958568286 -994.0034981527353 125.44 0.2291 2051 +2053 3 26.56664056951334 -940.5644346859655 92.3227 0.2471 1983 +2054 3 27.11509111127495 -941.5538931506022 93.0056 0.2465 2053 +2055 3 27.64516084024936 -942.564612746942 93.2837 0.2462 2054 +2056 3 28.163662252143155 -943.5844769613666 93.5959 0.2459 2055 +2057 3 28.667624694477638 -944.609558298001 93.9596 0.2456 2056 +2058 3 29.055941101918364 -945.5953892255502 94.5008 0.2453 2057 +2059 3 29.391759486035 -946.5627104921878 95.1944 0.245 2058 +2060 3 29.439275822615855 -947.5928950182596 95.9736 0.2447 2059 +2061 3 29.366967730049282 -948.6339660579823 96.7845 0.2444 2060 +2062 3 29.21569833463525 -949.7281667754063 97.5257 0.2441 2061 +2063 3 28.985010977527168 -950.8475930227627 98.0885 0.2438 2062 +2064 3 28.749224197774765 -951.9669425322967 98.4768 0.2435 2063 +2065 3 28.620237453896124 -953.1035127368611 98.7473 0.2432 2064 +2066 3 28.73728646141032 -954.2348667132275 98.9694 0.2429 2065 +2067 3 28.88635632536665 -955.3603841878409 99.1726 0.2426 2066 +2068 3 29.02759246508407 -956.4880840383497 99.3745 0.2423 2067 +2069 3 29.057143277902014 -957.6311698485414 99.5478 0.242 2068 +2070 3 29.058393648778463 -958.7756358710046 99.689 0.2417 2069 +2071 3 29.054592978150595 -959.9199376384169 99.8071 0.2414 2070 +2072 3 29.029275383078414 -961.0628566685235 99.9141 0.2411 2071 +2073 3 28.984057465643957 -962.2064292809722 100.0255 0.2408 2072 +2074 3 28.941877693458878 -963.3490533822489 100.1543 0.2405 2073 +2075 3 28.974505787614618 -964.4913265796373 100.3274 0.2402 2074 +2076 3 28.942182619281283 -965.5309638013588 100.6824 0.2399 2075 +2077 3 29.13606536360473 -966.6368062727144 101.0685 0.2396 2076 +2078 3 29.34478321044503 -967.7443368593847 101.4544 0.2393 2077 +2079 3 29.246984977047646 -968.881123429302 101.7755 0.239 2078 +2080 3 29.077843829295205 -970.0124064938517 102.0169 0.2387 2079 +2081 3 28.906689785287853 -971.1425767921784 102.1784 0.2384 2080 +2082 3 28.733904960857302 -972.2732167235653 102.2655 0.2381 2081 +2083 3 28.562663399621528 -973.4033386407519 102.307 0.2378 2082 +2084 3 28.38281463743175 -974.5327015508649 102.3098 0.2375 2083 +2085 3 28.115732427038807 -975.6425202670936 102.2462 0.2372 2084 +2086 3 27.844488525767446 -976.7501525869648 102.1292 0.2369 2085 +2087 3 27.52326333328594 -977.84443722805 101.9696 0.2366 2086 +2088 3 27.123295728344203 -978.9108456699695 101.7764 0.2363 2087 +2089 3 26.718721757211057 -979.9760787861848 101.5644 0.236 2088 +2090 3 26.314147786077967 -981.0413119023999 101.3477 0.2357 2089 +2091 3 25.911117078139654 -982.1060270044148 101.1396 0.2354 2090 +2092 3 25.506543107006507 -983.1712601206301 100.9464 0.2351 2091 +2093 3 25.101969135873418 -984.2364932368453 100.7776 0.2348 2092 +2094 3 24.697395164740215 -985.3017263530605 100.6452 0.2345 2093 +2095 3 24.29445197403038 -986.3664898362156 100.5623 0.2342 2094 +2096 3 23.889878002897177 -987.4317229524308 100.5444 0.2339 2095 +2097 3 23.485304031764144 -988.496956068646 100.6062 0.2336 2096 +2098 3 23.046521603703667 -989.5484199628552 100.8305 0.2333 2097 +2099 3 22.582184514081916 -990.5349096370036 101.2906 0.233 2098 +2100 3 22.118515515370234 -991.5203974855506 101.9399 0.2327 2099 +2101 3 21.780161438033616 -992.4823800053241 102.7911 0.2324 2100 +2102 3 21.46933279156923 -993.4346697104753 103.7915 0.2321 2101 +2103 3 21.160086544387923 -994.3865772997949 104.8807 0.2318 2102 +2104 3 20.50227937517377 -995.2621139284579 105.9262 0.2315 2103 +2105 3 19.81929220190642 -996.1263586398401 106.9116 0.2312 2104 +2106 3 19.137799910693502 -996.9901728542505 107.8462 0.2309 2105 +2107 3 18.454812737426096 -997.8544175656327 108.7626 0.2306 2106 +2108 3 17.864613889725206 -998.742419941853 109.69 0.2303 2107 +2109 3 17.37460999379317 -999.6428489684682 110.6456 0.23 2108 +2110 3 16.884741996229707 -1000.5432388589951 111.6058 0.2297 2109 +2111 3 16.395318673979205 -1001.4426176788687 112.5368 0.2294 2110 +2112 3 15.905450676415796 -1002.3430075693958 114.4405 0.2291 2111 +2113 3 53.237701410675584 -855.1597229695326 42.5838 0.4427 1070 +2114 3 52.14887791316025 -855.4009495046782 43.2653 0.4398 2113 +2115 3 51.02528059298365 -855.5393117541973 43.5448 0.4383 2114 +2116 3 49.897088715628115 -855.594007164142 43.8606 0.4368 2115 +2117 3 48.78417092569123 -855.5121463503051 44.2084 0.4354 2116 +2118 3 47.71741171547811 -855.1812283432014 44.5528 0.4339 2117 +2119 3 46.758041467155806 -854.5828841390563 44.8403 0.4324 2118 +2120 3 45.92068008308934 -853.8062085101905 45.0374 0.431 2119 +2121 3 45.204140758788725 -852.919903141409 45.1528 0.4295 2120 +2122 3 44.698679413937555 -851.9072477168636 45.1993 0.428 2121 +2123 3 44.55845956946317 -850.7917645411878 45.1914 0.4266 2122 +2124 3 44.84319343767976 -849.7021019400629 45.1441 0.4251 2123 +2125 3 45.40457518907192 -848.7079010000091 45.0598 0.4236 2124 +2126 3 45.964161904989936 -847.7192207345197 44.9288 0.4221 2125 +2127 3 46.27253251406506 -846.6413680648758 44.7544 0.4207 2126 +2128 3 46.17017375694755 -845.5260192921407 44.5656 0.4192 2127 +2129 3 45.689174739971975 -844.5019777130688 44.3828 0.4177 2128 +2130 3 44.9624994211641 -843.626979935337 44.2028 0.4163 2129 +2131 3 44.12567022963907 -842.8493416169579 44.0068 0.4148 2130 +2132 3 43.36882912431025 -842.0218835628641 43.7567 0.4133 2131 +2133 3 42.85404589318307 -841.0614349619748 43.423 0.4118 2132 +2134 3 42.65258269232794 -839.9905941574192 43.0394 0.4104 2133 +2135 3 42.80020318647419 -838.8839783073122 42.6868 0.4089 2134 +2136 3 43.22094288712785 -837.8250538509444 42.4208 0.4074 2135 +2137 3 43.67038454848549 -836.7755976284004 42.2506 0.406 2136 +2138 3 43.86126570605262 -835.6641027414641 42.1674 0.4045 2137 +2139 3 43.71012038636013 -834.5400659705642 42.1518 0.403 2138 +2140 3 43.32179083018465 -833.4691016780686 42.1862 0.4015 2139 +2141 3 42.795548435870074 -832.4632402201997 42.271 0.4001 2140 +2142 3 42.37255244301409 -831.4241873389526 42.3973 0.3986 2141 +2143 3 42.446014962926284 -830.3314219349578 42.5074 0.3971 2142 +2144 3 42.931731583195955 -829.3085321829346 42.541 0.3957 2143 +2145 3 43.3555146536886 -828.260431214915 42.4934 0.3942 2144 +2146 3 43.38963911169225 -827.1394060004948 42.4074 0.3927 2145 +2147 3 43.097700634945 -826.0408301197316 42.3116 0.3912 2146 +2148 3 42.65057484477734 -824.9910658948854 42.1898 0.3898 2147 +2149 3 42.17513965891666 -823.9569598345388 42.019 0.3883 2148 +2150 3 41.85086599396655 -822.8718165858293 41.8071 0.3868 2149 +2151 3 41.74505679343122 -821.7414200743865 41.5719 0.3854 2150 +2152 3 41.68558553765445 -820.6053319133108 41.3084 0.3839 2151 +2153 3 41.53115030043318 -819.4872463139471 41.0052 0.3824 2152 +2154 3 41.318131465410744 -818.3852222235 40.6708 0.381 2153 +2155 3 41.11508436984471 -817.2769415835076 40.3365 0.3795 2154 +2156 3 40.952167050632 -816.1529100371974 40.04 0.378 2155 +2157 3 40.825659093272066 -815.0175838740511 39.8084 0.3765 2156 +2158 3 40.70421635575761 -813.8799160132476 39.6491 0.3751 2157 +2159 3 40.565848881648975 -812.7445466935508 39.5534 0.3736 2158 +2160 3 40.39503005412644 -811.6135189935524 39.5046 0.3721 2159 +2161 3 40.12966849707934 -810.5022121529175 39.4848 0.3707 2160 +2162 3 39.684603984306705 -809.4534731770659 39.478 0.3692 2161 +2163 3 39.15200334487707 -808.4400975513086 39.4758 0.3677 2162 +2164 3 38.75991917140203 -807.371171112815 39.4741 0.3662 2163 +2165 3 38.55864770837934 -806.2481037514458 39.4716 0.3648 2164 +2166 3 38.4022085286546 -805.1146274336311 39.4682 0.3633 2165 +2167 3 38.12698617277255 -804.0068961553768 39.4638 0.3618 2166 +2168 3 37.635415439728234 -802.9808952857796 39.4573 0.3604 2167 +2169 3 36.981914507282454 -802.0444268713136 39.4481 0.3589 2168 +2170 3 36.348903424632056 -801.0919767155355 39.4358 0.3574 2169 +2171 3 35.96810743927588 -800.023920224737 39.4178 0.3559 2170 +2172 3 35.911079576725854 -798.890439711939 39.3926 0.3545 2171 +2173 3 35.990104432325126 -797.7497878754009 39.3576 0.353 2172 +2174 3 35.95944085328418 -796.6087149614641 39.3112 0.3515 2173 +2175 3 35.6300286296013 -795.5233590765636 39.2476 0.3501 2174 +2176 3 35.03193202674899 -794.5600448009211 39.1437 0.3486 2175 +2177 3 34.416992649714615 -793.605701643261 38.9922 0.3471 2176 +2178 3 34.1452207372505 -792.5130181037146 38.8324 0.3456 2177 +2179 3 34.476458300704536 -791.450434762721 38.6711 0.3442 2178 +2180 3 35.19911084185486 -790.5805803641181 38.507 0.3427 2179 +2181 3 35.83134394657688 -789.6308034685823 38.3704 0.3412 2180 +2182 3 36.23294233194187 -788.5639253936026 38.2718 0.3398 2181 +2183 3 36.24749497768508 -787.433451678516 38.2357 0.3383 2182 +2184 3 35.64597778352501 -786.4878997100184 38.2346 0.3368 2183 +2185 3 34.72811855343386 -785.8144657238427 38.22 0.3354 2184 +2186 3 33.79276446224637 -785.1679244845557 38.1368 0.3339 2185 +2187 3 33.09091538834244 -784.2976243194056 37.9579 0.3324 2186 +2188 3 32.95615888354084 -783.1983016486607 37.7006 0.3309 2187 +2189 3 33.35803768916787 -782.1354635445321 37.4506 0.3295 2188 +2190 3 33.82990162959146 -781.1022877212919 37.2812 0.328 2189 +2191 3 34.096069531611334 -779.9918492952933 37.1529 0.3265 2190 +2192 3 33.94207374511328 -778.860980625756 37.0443 0.3251 2191 +2193 3 34.03080559367592 -777.7453482673823 36.869 0.3236 2192 +2194 3 34.17856006257267 -776.9578293806748 36.4442 0.3221 2193 +2195 3 34.15042739398686 -775.8194124961556 36.1564 0.3207 2194 +2196 3 34.09414436016928 -774.6798307351115 36.017 0.3192 2195 +2197 3 33.577504601324165 -774.1222762807481 34.5111 0.3192 2196 +2198 3 32.708958901759814 -773.4447956037039 33.6336 0.2934 2197 +2199 3 31.680368216125686 -772.9454151861596 33.3242 0.2804 2198 +2200 3 30.628754245206807 -772.5091778468956 32.9916 0.2675 2199 +2201 3 29.702304983358545 -771.9081228034754 32.5926 0.2546 2200 +2202 3 28.8722806735108 -771.3002708025231 31.4149 0.2417 2201 +2203 3 34.27228773858852 -774.3455968847531 36.0055 0.3192 2196 +2204 3 34.81176522511504 -773.3366588085903 36.1343 0.3037 2203 +2205 3 35.05465507871506 -772.218722218699 36.4115 0.296 2204 +2206 3 34.61495593920739 -771.1625513675975 36.8264 0.2883 2205 +2207 3 34.361727965716085 -770.9846268795654 35.3419 0.2883 2206 +2208 3 33.57419663094885 -770.1676258717572 35.2307 0.2883 2207 +2209 3 33.48212171131445 -769.1022963221932 35.1896 0.2883 2208 +2210 3 33.85483385646668 -768.0260766667064 35.1436 0.2883 2209 +2211 3 33.91203790504025 -766.9151822222038 35.035 0.2883 2210 +2212 3 33.629762060578344 -765.8297179217161 34.8799 0.2883 2211 +2213 3 33.19412784966886 -764.7759085014293 34.7396 0.2883 2212 +2214 3 32.634485882068645 -763.7854050546405 34.6699 0.2883 2213 +2215 3 32.141228529137294 -762.8120612388286 34.7362 0.2883 2214 +2216 3 31.793585569377086 -761.7454213968344 34.8513 0.2883 2215 +2217 3 31.81773828792433 -760.6306527319597 34.8594 0.2883 2216 +2218 3 32.14547852224817 -759.5909311207553 34.7085 0.2883 2217 +2219 3 31.541462095397605 -758.6949589247054 34.496 0.2883 2218 +2220 3 30.570334025896244 -758.094113992442 34.2787 0.2883 2219 +2221 3 30.303313331743624 -756.9882886902833 34.0617 0.2883 2220 +2222 3 30.813154524735182 -755.9643382823392 33.8584 0.2883 2221 +2223 3 30.95762995347272 -754.849356515452 33.5966 0.2883 2222 +2224 3 30.897321127145375 -753.7075492219619 33.346 0.2883 2223 +2225 3 30.284253989229057 -752.868047236016 33.0826 0.2883 2224 +2226 3 29.69039581507758 -751.9018199340867 32.7482 0.2839 2225 +2227 3 29.002772583099926 -751.057666191665 32.2848 0.2817 2226 +2228 3 28.216985668932693 -750.2991039295378 31.7178 0.2795 2227 +2229 3 27.62775998392101 -749.3929119509138 31.0803 0.2773 2228 +2230 3 26.936580592493613 -748.5481634564694 30.394 0.2751 2229 +2231 3 26.112777289670106 -747.7802398806775 29.7352 0.2729 2230 +2232 3 25.39185468454849 -746.9111646264994 29.1102 0.2707 2231 +2233 3 25.069386504251895 -745.8440447022658 28.5088 0.2685 2232 +2234 3 24.941252991058434 -744.7209601716999 27.9197 0.2663 2233 +2235 3 24.449642092319323 -743.7824627213885 27.2481 0.264 2234 +2236 3 23.71938985129779 -743.0036396577322 26.503 0.2619 2235 +2237 3 22.949091621989595 -742.2666658332821 25.6938 0.2596 2236 +2238 3 22.293530907576667 -741.3669941210901 24.902 0.2574 2237 +2239 3 22.017888503902157 -740.2813119598216 24.1492 0.2552 2238 +2240 3 22.290596075284867 -739.2464746100363 23.3679 0.253 2239 +2241 3 21.778678984732238 -738.328173906345 22.5648 0.2508 2240 +2242 3 21.016772329331246 -737.5214537451641 21.7913 0.2486 2241 +2243 3 20.584111470455923 -736.5331611866586 21.0051 0.2464 2242 +2244 3 20.480268280463093 -735.4417869099359 20.2295 0.2442 2243 +2245 3 19.96422593556497 -734.4598463423495 19.4736 0.242 2244 +2246 3 19.02393966763961 -733.8838212262729 18.748 0.2398 2245 +2247 3 17.932051534068734 -733.6031131505661 18.1007 0.2376 2246 +2248 3 17.09204084060204 -732.878562382944 17.4926 0.2354 2247 +2249 3 16.805045455593387 -731.8584756469339 16.88 0.2332 2248 +2250 3 16.386080479836835 -730.833420297653 15.68 0.231 2249 +2251 3 31.55082361664668 -753.3459883609501 32.5279 0.2883 2224 +2252 3 32.32524772571304 -752.5976502359713 30.9039 0.2734 2251 +2253 3 32.99567118501554 -751.7774214659217 30.2319 0.266 2252 +2254 3 33.60885155891492 -751.2145193349394 29.3373 0.2585 2253 +2255 3 33.86248084031172 -750.2945961655289 28.373 0.2511 2254 +2256 3 33.53322914251797 -749.2302391908725 27.5385 0.2437 2255 +2257 3 33.003221973024836 -748.2169261245963 26.3662 0.2362 2256 +2258 3 34.66085396742136 -771.0441815192152 37.4469 0.2883 2206 +2259 3 34.60480077662288 -770.455018468947 38.4409 0.2857 2258 +2260 3 34.02710893340807 -769.764418559967 39.6077 0.2844 2259 +2261 3 33.334670155725064 -769.125333222034 40.8856 0.2831 2260 +2262 3 33.09355250198786 -768.2091073726627 42.1884 0.2818 2261 +2263 3 33.24714912541751 -767.1084232911612 43.3454 0.2805 2262 +2264 3 33.68398271213215 -766.0910751120612 44.3887 0.2792 2263 +2265 3 34.38182635209648 -765.4010677829976 45.4507 0.2779 2264 +2266 3 35.07058956447963 -764.8785780823646 46.6178 0.2767 2265 +2267 3 35.696216283005356 -764.2388015830566 47.845 0.2754 2266 +2268 3 36.4881409435792 -763.6008039796325 49.0386 0.2741 2267 +2269 3 37.384641603008816 -763.0218748150171 50.1634 0.2728 2268 +2270 3 38.41611775688605 -762.6078305372125 51.1535 0.2715 2269 +2271 3 39.467251744824324 -762.165461189946 51.9585 0.2702 2270 +2272 3 40.35675578474425 -761.4689722647174 52.6515 0.2689 2271 +2273 3 40.974098413307075 -760.695155943515 53.4344 0.2676 2272 +2274 3 41.348679534236965 -759.885288680414 54.3614 0.2663 2273 +2275 3 41.773326298228625 -758.9017668424096 55.2824 0.265 2274 +2276 3 42.301031785234954 -757.8928339908365 56.0986 0.2637 2275 +2277 3 42.971438075340586 -756.9994672709579 56.8943 0.2624 2276 +2278 3 43.84469442332792 -756.2899971090061 57.6551 0.2611 2277 +2279 3 44.802332723106474 -755.6808785599558 58.3722 0.2598 2278 +2280 3 45.680498425854836 -755.1729403762006 59.2122 0.2585 2279 +2281 3 46.5291444661008 -754.7845421419424 60.2221 0.2573 2280 +2282 3 47.42995599910691 -754.4367510667219 61.3427 0.256 2281 +2283 3 48.46610527364004 -754.1206999618598 62.435 0.2547 2282 +2284 3 49.524966201252596 -753.8106912749242 63.4754 0.2534 2283 +2285 3 50.54105985212399 -753.4860668416806 64.5061 0.2521 2284 +2286 3 51.57810403209936 -753.1613693997762 65.4996 0.2508 2285 +2287 3 52.65370454289646 -752.8070252151576 66.402 0.2495 2286 +2288 3 53.35759835041125 -752.0562608661489 67.3756 0.2482 2287 +2289 3 53.0248654630777 -751.1755428887654 68.4704 0.2469 2288 +2290 3 52.73354310253333 -750.2459601155564 69.6422 0.2456 2289 +2291 3 52.60362546886634 -749.2774015275184 70.8506 0.2443 2290 +2292 3 53.074439668369706 -748.3691063995196 72.0364 0.243 2291 +2293 3 53.73904229968818 -747.5521727715886 73.1525 0.2417 2292 +2294 3 54.40463780285677 -746.7501851867959 74.1821 0.2404 2293 +2295 3 55.071784493365186 -746.021040953229 75.1554 0.2391 2294 +2296 3 56.01843877890644 -745.3939668637737 75.915 0.2378 2295 +2297 3 56.89690519885937 -744.6678379158484 76.5038 0.2366 2296 +2298 3 57.450385441941734 -743.6666408221063 76.9261 0.2353 2297 +2299 3 58.00386568502407 -742.6654437283644 77.2257 0.234 2298 +2300 3 58.61831828379795 -741.726747609346 77.518 0.2327 2299 +2301 3 59.23253328863365 -740.790548197984 77.8128 0.2314 2300 +2302 3 59.848379073892545 -739.8538791535618 78.5375 0.2301 2301 +2303 2 55.90273711132119 -848.506375457619 41.3538 0.1144 1064 +2304 2 56.590629284775105 -849.4186644895058 41.4677 0.1144 2303 +2305 2 57.44730921339473 -850.1719693281337 41.6058 0.1144 2304 +2306 2 58.39866850821363 -850.8038203170241 41.7684 0.1144 2305 +2307 2 59.24760222982283 -851.5593559126877 41.9695 0.1144 2306 +2308 2 59.78735805340196 -852.5480069891107 42.2153 0.1144 2307 +2309 2 59.92583124354232 -853.6689233221224 42.4841 0.1144 2308 +2310 2 59.7736632135242 -854.7978203283371 42.7426 0.1144 2309 +2311 2 59.56178837030262 -855.9212477406827 42.9839 0.1144 2310 +2312 2 59.48535698463979 -857.061962136702 43.2121 0.1144 2311 +2313 2 59.62483722497137 -858.195318560144 43.4258 0.1144 2312 +2314 2 59.89809506573866 -859.3018495549468 43.6584 0.1144 2313 +2315 2 60.140018048476804 -860.3846593214446 43.9748 0.1144 2314 +2316 2 60.26814111249098 -861.4841998529703 44.3565 0.1144 2315 +2317 2 60.29494315407305 -862.6179961929568 44.7261 0.1144 2316 +2318 2 60.25031998866129 -863.7580126459559 45.0559 0.1144 2317 +2319 2 60.26460520199069 -864.8979154587782 45.3452 0.1144 2318 +2320 2 60.636760074894255 -865.9768490436545 45.5812 0.1144 2319 +2321 2 61.29084158102154 -866.9122672513789 45.764 0.1144 2320 +2322 2 61.35448870601789 -868.0480358561042 45.9287 0.1144 2321 +2323 2 61.137687940254494 -869.1661120735262 46.1042 0.1144 2322 +2324 2 61.44223076248301 -870.2586298625937 46.3036 0.1144 2323 +2325 2 61.82971752351813 -871.3121030231548 46.5458 0.1144 2324 +2326 2 62.11251660676999 -872.4108825863574 46.7869 0.1144 2325 +2327 2 62.12055049514365 -873.5525856592436 46.9389 0.1144 2326 +2328 2 62.08217865468765 -874.6908018521788 47.0131 0.1144 2327 +2329 2 62.22208939199106 -875.8256531576753 47.0568 0.1144 2328 +2330 2 62.64672661444962 -876.8877804049026 47.1092 0.1144 2329 +2331 2 63.28490461251519 -877.8354312914558 47.194 0.1144 2330 +2332 2 63.784057297518956 -878.8642524455217 47.3155 0.1144 2331 +2333 2 63.8988182131059 -880.0022256843343 47.4743 0.1144 2332 +2334 2 63.76214782169825 -881.138433175998 47.6655 0.1144 2333 +2335 2 63.410640502963616 -882.159759796074 48.0138 0.1144 2334 +2336 2 63.099491270542416 -883.1955129496603 48.4694 0.1144 2335 +2337 2 63.22376847086673 -884.3230929057961 48.9098 0.1144 2336 +2338 2 63.61229648489214 -885.391424592267 49.317 0.1144 2337 +2339 2 64.02092178370182 -886.4186481391022 49.7381 0.1144 2338 +2340 2 64.30973459797116 -887.5181241498972 50.0889 0.1144 2339 +2341 2 64.16658084248581 -888.6520044135451 50.3269 0.1144 2340 +2342 2 63.953211117209634 -889.7758623228627 50.47 0.1144 2341 +2343 2 64.3974432840213 -890.8306541658203 50.5462 0.1144 2342 +2344 2 64.93331966263858 -891.8405845727494 50.568 0.1144 2343 +2345 2 65.4496972376561 -892.862017008116 50.5445 0.1144 2344 +2346 2 65.56696410595094 -894.0000044252698 50.4935 0.1144 2345 +2347 2 65.61900871106764 -895.1424992126007 50.4221 0.1144 2346 +2348 2 65.63106839195109 -896.2864278179328 50.3306 0.1144 2347 +2349 2 65.85682714059661 -897.4007508758517 50.1735 0.1144 2348 +2350 2 66.20797787866636 -898.4680729870971 49.9332 0.1144 2349 +2351 2 66.14956981747952 -899.6069818984628 49.6768 0.1144 2350 +2352 2 66.09109919681137 -900.7484842797651 49.4166 0.1144 2351 +2353 2 66.04386838312203 -901.8909441259908 49.1546 0.1144 2352 +2354 2 66.01495549251177 -903.0331325057061 48.883 0.1144 2353 +2355 2 66.0507718086267 -904.1719121031261 48.5859 0.1144 2354 +2356 2 66.09172668347438 -905.310904336737 48.2563 0.1144 2355 +2357 2 66.17328871735953 -906.397731077588 47.7977 0.1144 2356 +2358 2 65.76191555496021 -907.4304111448197 47.269 0.1144 2357 +2359 2 65.15970981335627 -908.3825048191917 46.7158 0.1144 2358 +2360 2 65.1952519257741 -908.958957807947 46.1429 0.1144 2359 +2361 2 65.34929832714622 -910.0258670572388 45.5076 0.1144 2360 +2362 2 65.76669135279903 -911.0748485213916 44.9092 0.1144 2361 +2363 2 66.4320059458876 -911.9616302432507 44.3167 0.1144 2362 +2364 2 67.30638292261528 -912.6593597772168 43.745 0.1144 2363 +2365 2 68.1484169615162 -913.4085673101022 43.2107 0.1144 2364 +2366 2 68.77241749879565 -914.3299842566986 42.6933 0.1144 2365 +2367 2 69.09690379993674 -915.4099889466753 42.2223 0.1144 2366 +2368 2 69.47388662897421 -916.470681346295 41.771 0.1144 2367 +2369 2 69.82110954094199 -917.5593703052748 41.3784 0.1144 2368 +2370 2 69.67695768901689 -918.6665325262644 41.1281 0.1144 2369 +2371 2 69.29645095571414 -919.7450704560152 40.8845 0.1144 2370 +2372 2 68.71433504057086 -920.7081558942485 40.5426 0.1144 2371 +2373 2 68.10899734466179 -921.2545976971072 39.9014 0.1144 2372 +2374 2 67.80406146760447 -921.829762787219 40.4978 0.1144 2373 +2375 2 67.1924421664392 -922.7021528550455 41.4694 0.1144 2374 +2376 2 66.40700283119227 -923.5057609066769 41.8664 0.1144 2375 +2377 2 65.63912361607842 -924.3414721073892 42.2758 0.1144 2376 +2378 2 65.14551966584011 -925.3548597530161 42.7025 0.1144 2377 +2379 2 64.74575947249971 -926.4043576366826 43.141 0.1144 2378 +2380 2 64.11167772657376 -927.3479707244911 43.5392 0.1144 2379 +2381 2 63.31689158623007 -928.1686930168152 43.8752 0.1144 2380 +2382 2 62.509872767057516 -928.9735118010773 44.1997 0.1144 2381 +2383 2 61.73272228054179 -929.7974704052003 44.5483 0.1144 2382 +2384 2 61.04007919500651 -930.6981974870959 44.9137 0.1144 2383 +2385 2 60.40143946402932 -931.6405477319717 45.2978 0.1144 2384 +2386 2 59.69761390640693 -932.5259518794871 45.7358 0.1144 2385 +2387 2 59.02603751518666 -933.4356969650773 46.2269 0.1144 2386 +2388 2 58.52335673093421 -934.4466948232073 46.7751 0.1144 2387 +2389 2 58.29307495197716 -935.5325233696549 47.4085 0.1144 2388 +2390 2 58.433032574992865 -936.6294652066543 48.12 0.1144 2389 +2391 2 58.871248311231625 -937.6219712361135 48.9171 0.1144 2390 +2392 2 59.16071158139272 -938.5218462025547 49.8711 0.1144 2391 +2393 2 58.78426511588344 -939.3778729770224 50.932 0.1144 2392 +2394 2 57.955493138161444 -940.0777702187248 51.9487 0.1144 2393 +2395 2 56.94821353606039 -940.5993436873667 52.8396 0.1144 2394 +2396 2 55.95228588568705 -941.1429610484047 53.6323 0.1144 2395 +2397 2 55.08495608171543 -941.8346830815528 54.3922 0.1144 2396 +2398 2 54.320146223794325 -942.5962203040355 55.1614 0.1144 2397 +2399 2 53.6018321369655 -943.3114754212232 55.9992 0.1144 2398 +2400 2 52.98839793157384 -944.0546588478788 56.9218 0.1144 2399 +2401 2 52.466078580596445 -944.9593903581041 57.8343 0.1144 2400 +2402 2 51.82489748998472 -945.8755405745218 58.6261 0.1144 2401 +2403 2 50.990298430082646 -946.654600276477 59.2427 0.1144 2402 +2404 2 50.13151596713914 -947.4112641525412 59.6963 0.1144 2403 +2405 2 49.363690357755075 -948.2586598355454 60.0342 0.1144 2404 +2406 2 48.71141580771257 -949.1973574499915 60.328 0.1144 2405 +2407 2 48.191761905725826 -950.2107413664565 60.6595 0.1144 2406 +2408 2 47.74471003186508 -951.2511207549863 61.0753 0.1144 2407 +2409 2 47.30921229674382 -952.2848614781391 61.609 0.1144 2408 +2410 2 46.87541685527856 -953.3012611460668 62.2776 0.1144 2409 +2411 2 46.41457336562519 -954.2909390421745 63.077 0.1144 2410 +2412 2 45.913047008718394 -955.2502425360324 63.9881 0.1144 2411 +2413 2 45.44235017855368 -956.1913960910238 65.0073 0.1144 2412 +2414 2 44.991384055515994 -956.9813176414782 66.1794 0.1144 2413 +2415 2 44.48293348634397 -957.5746931707248 67.4878 0.1144 2414 +2416 2 43.843619838450934 -958.2369545085799 68.8069 0.1144 2415 +2417 2 43.13835104325443 -958.9711904151673 70.0448 0.1144 2416 +2418 2 42.34957340933855 -959.7808371555633 71.0713 0.1144 2417 +2419 2 41.62230554824535 -960.6637941806902 71.8679 0.1144 2418 +2420 2 41.14354714970318 -961.7024139406723 72.4842 0.1144 2419 +2421 2 40.85138915586083 -962.7486658016667 73.1102 0.1144 2420 +2422 2 40.69154583064892 -963.5936034096503 73.9035 0.1144 2421 +2423 2 41.446459595702066 -964.2567138584697 74.7158 0.1144 2422 +2424 2 42.233647484904594 -964.9468070964402 75.5426 0.1144 2423 +2425 2 43.15537720620611 -965.6132397043381 76.2219 0.1144 2424 +2426 2 44.09242986188784 -966.2684898401486 76.7374 0.1144 2425 +2427 2 45.0316454905342 -966.9223076533859 77.1156 0.1144 2426 +2428 2 45.97081273804042 -967.5762129838516 77.4088 0.1144 2427 +2429 2 46.90622043495776 -968.2344387054304 77.6894 0.1144 2428 +2430 2 47.84216032441654 -968.891701737496 78.0018 0.1144 2429 +2431 2 48.69016107302792 -969.5356577222918 78.5252 0.1144 2430 +2432 2 49.507843258853256 -970.168109153616 79.2375 0.1144 2431 +2433 2 50.41956000776608 -970.5335217283201 80.108 0.1144 2432 +2434 2 51.36117956461936 -970.6933374351557 81.0779 0.1144 2433 +2435 2 52.3042693760068 -970.8316845986873 82.0756 0.1144 2434 +2436 2 53.41612548041624 -970.9770601574568 82.8904 0.1144 2435 +2437 2 54.55096843357745 -971.1207461054835 83.4411 0.1144 2436 +2438 2 55.6566466875131 -971.4143337223437 83.7687 0.1144 2437 +2439 2 56.74791781086955 -971.7575454723298 83.921 0.1144 2438 +2440 2 57.83880681839432 -972.0991748230325 83.9468 0.1144 2439 +2441 2 58.931771281655216 -972.4393234700219 83.8891 0.1144 2440 +2442 2 60.02324086286157 -972.779902613983 83.7847 0.1144 2441 +2443 2 61.087836070503556 -973.1998922613145 83.6438 0.1144 2442 +2444 2 62.14099852920688 -973.6473835858986 83.4663 0.1144 2443 +2445 2 63.14477714827822 -974.1395604381532 83.1695 0.1144 2444 +2446 2 64.0668586674798 -974.6493041305584 82.7109 0.1144 2445 +2447 2 64.9872326684357 -975.1646168786682 82.1425 0.1144 2446 +2448 2 65.95540455509982 -975.7730828989794 81.6592 0.1144 2447 +2449 2 66.88858671957112 -976.435334413068 81.2602 0.1144 2448 +2450 2 67.7478992542155 -977.1888377095457 80.9208 0.1144 2449 +2451 2 68.36301063592478 -978.1000844588359 80.5484 0.1144 2450 +2452 2 69.25063882045828 -978.7620622726798 80.1696 0.1144 2451 +2453 2 70.22203536561443 -979.3055812254853 79.7922 0.1144 2452 +2454 2 69.94420846520396 -979.7231952020333 78.9536 0.1144 2453 +2455 2 69.31569577498257 -980.6685158080875 77.9971 0.1144 2454 +2456 2 68.73950191757152 -981.5003872637113 77.5132 0.1144 2455 +2457 2 68.4160053365382 -982.5489678481491 76.9563 0.1144 2456 +2458 2 68.29862111253922 -983.678811870108 76.4159 0.1144 2457 +2459 2 68.46445145803878 -984.8070818451191 75.9394 0.1144 2458 +2460 2 69.23473354775658 -985.3832784020855 75.3362 0.1144 2459 +2461 2 70.15681656238601 -985.9308440457593 74.7256 0.1144 2460 +2462 2 71.09417832523874 -986.566726051749 74.2193 0.1144 2461 +2463 2 72.0892793953245 -987.1312334656192 73.8304 0.1144 2462 +2464 2 72.99270686731589 -987.833253538588 73.5423 0.1144 2463 +2465 2 73.64619362142048 -988.7722279057621 73.3373 0.1144 2464 +2466 2 74.1782762466498 -989.7840602683247 73.2038 0.1144 2465 +2467 2 74.57120694442696 -990.8444278870043 73.0358 0.1144 2466 +2468 2 74.74636013054663 -990.8680130813459 72.6429 0.1144 2467 +2469 2 75.56663425324942 -990.9802858012033 71.113 0.1144 2468 +2470 2 76.70595649239016 -990.9670507946156 70.588 0.1144 2469 +2471 2 77.84533233726066 -990.9655002703196 70.0902 0.1144 2470 +2472 2 78.93619429019418 -990.9973470855754 69.5472 0.1144 2471 +2473 2 79.8270914186356 -990.6414470904434 68.0742 0.1144 2472 +2474 2 74.63014973682405 -991.9554287858448 72.7964 0.1144 2467 +2475 2 74.43561594882726 -993.0805584918465 72.6188 0.1144 2474 +2476 2 73.69042894623092 -993.4306267439937 72.4531 0.1144 2475 +2477 2 72.65603351187076 -993.9162999112317 72.2952 0.1144 2476 +2478 2 71.58872184980484 -994.2909946483419 72.1092 0.1144 2477 +2479 2 70.58568590099429 -994.8214270902172 71.9359 0.1144 2478 +2480 2 69.63797245495982 -995.4621985582191 71.7909 0.1144 2479 +2481 2 68.7087482372996 -996.1288452737392 71.6559 0.1144 2480 +2482 2 68.04678087263488 -997.0400174573132 71.505 0.1144 2481 +2483 2 67.45203718861754 -998.011890355547 71.335 0.1144 2482 +2484 2 66.99257018207376 -999.0559186453446 71.1712 0.1144 2483 +2485 2 66.77641254947332 -1000.1703511860884 70.9948 0.1144 2484 +2486 2 66.8103608214534 -1001.2937009289689 70.7728 0.1144 2485 +2487 2 66.935368672169 -1002.4176855895668 70.5312 0.1144 2486 +2488 2 67.23753588524173 -1003.5167742599405 70.3357 0.1144 2487 +2489 2 67.54632236076068 -1004.6181510222415 70.1893 0.1144 2488 +2490 2 67.781095383939 -1005.7374573375938 70.0806 0.1144 2489 +2491 2 67.98335449422208 -1006.863698742581 69.998 0.1144 2490 +2492 2 68.10948033575033 -1007.9974425064443 69.9135 0.1144 2491 +2493 2 68.22079603250904 -1009.1321400060692 69.8177 0.1144 2492 +2494 2 68.20686832112537 -1010.273471412303 69.7281 0.1144 2493 +2495 2 68.11102042450159 -1011.4139642183798 69.6632 0.1144 2494 +2496 2 67.99586695753828 -1012.551554447349 69.6273 0.1144 2495 +2497 2 67.8271704850988 -1013.6818264412454 69.6083 0.1144 2496 +2498 2 67.43442062378782 -1014.7209168638941 69.5419 0.1144 2497 +2499 2 67.04569282582486 -1015.788282770737 69.5486 0.1144 2498 +2500 2 66.73068205594473 -1016.816759350373 69.7292 0.1144 2499 +2501 2 66.4838003213336 -1017.9208343066668 69.9482 0.1144 2500 +2502 2 66.24463088223422 -1019.0343146070768 70.1789 0.1144 2501 +2503 2 66.08455984847836 -1020.1183935083346 70.453 0.1144 2502 +2504 2 66.29861275065207 -1021.0602209049795 70.6936 0.1144 2503 +2505 2 66.70028309107471 -1021.9202032231843 70.6485 0.1144 2504 +2506 2 67.10473401609272 -1022.9855682776384 70.6423 0.1144 2505 +2507 2 67.57604544303575 -1023.9938564253586 70.7748 0.1144 2506 +2508 2 67.9230515238292 -1024.9882726258966 71.0808 0.1144 2507 +2509 2 68.1892543805888 -1026.0792486471973 71.428 0.1144 2508 +2510 2 68.42779097481815 -1027.1822391563192 71.792 0.1144 2509 +2511 2 68.48088578667654 -1028.3253145173317 72.3668 0.1144 2510 +2512 2 74.38240537595152 -993.3897046141484 72.6387 0.1144 2475 +2513 2 74.18941485114951 -994.5143163059498 72.2422 0.1144 2512 +2514 2 74.34620386752505 -995.3278204880804 72.0922 0.1144 2513 +2515 2 75.4358304603073 -995.3170497730781 71.7976 0.1144 2514 +2516 2 76.49146303789709 -995.5804574250764 71.4067 0.1144 2515 +2517 2 77.54522384219021 -995.8544851742835 70.9629 0.1144 2516 +2518 2 78.59994733599657 -996.129045116032 70.5043 0.1144 2517 +2519 2 79.64084473872657 -996.5776402530875 70.2265 0.1144 2518 +2520 2 80.62056656914689 -997.0800562908469 70.3111 0.1144 2519 +2521 2 70.64041716739291 -979.4166655085347 79.5071 0.1144 2453 +2522 2 71.74667599501021 -979.7092029186533 79.308 0.1144 2521 +2523 2 72.85235424894594 -980.0027905355137 79.1874 0.1144 2522 +2524 2 73.95794498565314 -980.2963297712339 79.1344 0.1144 2523 +2525 2 75.05992222801905 -980.603639724388 79.1232 0.1144 2524 +2526 2 76.14613335611963 -980.960965171551 79.1333 0.1144 2525 +2527 2 77.19939751039263 -981.4059989245674 79.1476 0.1144 2526 +2528 2 78.2476642288911 -981.8625529048244 79.1669 0.1144 2527 +2529 2 79.34777865171185 -982.1662050029591 79.1921 0.1144 2528 +2530 2 80.47572864218228 -982.3531568389965 79.2282 0.1144 2529 +2531 2 81.60361084858181 -982.53093014545 79.2887 0.1144 2530 +2532 2 82.72916582696567 -982.7151868159812 79.3736 0.1144 2531 +2533 2 83.86267815312314 -982.8542522194755 79.4553 0.1144 2532 +2534 2 85.00259038551835 -982.9511503228409 79.5138 0.1144 2533 +2535 2 86.14329582778615 -983.0418596607319 79.5477 0.1144 2534 +2536 2 87.28295106331225 -983.1319884249414 79.5606 0.1144 2535 +2537 2 88.42418869812141 -983.2217350733192 79.5567 0.1144 2536 +2538 2 89.5666470489194 -983.23114393574 79.5452 0.1144 2537 +2539 2 90.70733112700708 -983.1493040066272 79.5343 0.1144 2538 +2540 2 91.84308256253564 -983.0125189318017 79.527 0.1144 2539 +2541 2 92.97574626754698 -982.8530024707392 79.5234 0.1144 2540 +2542 2 94.10789195835812 -982.6919427464819 79.522 0.1144 2541 +2543 2 95.24476138469922 -982.5649167749217 79.522 0.1144 2542 +2544 2 96.38800622535223 -982.5185429210792 79.5225 0.1144 2543 +2545 2 97.53141308732228 -982.5309899287494 79.5236 0.1144 2544 +2546 2 98.66693308514499 -982.6593960989463 79.525 0.1144 2545 +2547 2 99.75431431436024 -983.0003431803981 79.527 0.1144 2546 +2548 2 100.80191294194859 -983.4578989862566 79.5295 0.1144 2547 +2549 2 101.87296688614782 -983.8591778152712 79.5334 0.1144 2548 +2550 2 102.98316771820822 -984.1278424249473 79.541 0.1144 2549 +2551 2 104.10913499476064 -984.3280953453584 79.5497 0.1144 2550 +2552 2 105.23649023320834 -984.5186033408454 79.5536 0.1144 2551 +2553 2 106.3629021850737 -984.7178451906032 79.5393 0.1144 2552 +2554 2 107.48677427273239 -984.9287089631714 79.4926 0.1144 2553 +2555 2 108.60893884214534 -985.1451417914442 79.4105 0.1144 2554 +2556 2 109.73050865953564 -985.3651307791666 79.298 0.1144 2555 +2557 2 110.84583760114944 -985.6104640259935 79.1596 0.1144 2556 +2558 2 111.94696309462356 -985.9145607994411 78.9986 0.1144 2557 +2559 2 113.03859693088083 -986.250088901898 78.8192 0.1144 2558 +2560 2 114.12785515798237 -986.592187885661 78.6232 0.1144 2559 +2561 2 115.21598644051971 -986.9388057183868 78.4104 0.1144 2560 +2562 2 116.28397728172231 -987.338391207497 78.1752 0.1144 2561 +2563 2 117.29831866311088 -987.8468053025048 77.908 0.1144 2562 +2564 2 118.28089768035426 -988.4056471896904 77.6054 0.1144 2563 +2565 2 119.29901009111754 -988.8456455749713 77.2425 0.1144 2564 +2566 2 120.31961175121336 -989.3379814576872 76.8844 0.1144 2565 +2567 2 121.2962552706895 -989.9288494259044 76.5906 0.1144 2566 +2568 2 122.2655399235766 -990.5353025499608 76.3526 0.1144 2567 +2569 2 123.23793978976218 -991.1173115449446 76.0908 0.1144 2568 +2570 2 124.19495668712057 -991.6632791155663 75.7462 0.1144 2569 +2571 2 125.1707611406182 -992.2106060001008 75.3662 0.1144 2570 +2572 2 126.16226169057626 -992.7626107640593 74.9944 0.1144 2571 +2573 2 127.14127932378022 -993.3090858997019 74.6001 0.1144 2572 +2574 2 128.18017800859656 -993.7540623178264 74.2241 0.1144 2573 +2575 2 129.2919991719009 -993.998713295402 73.9488 0.1144 2574 +2576 2 130.42937154008936 -994.1072333215778 73.75 0.1144 2575 +2577 2 131.56525425081293 -994.2279558442458 73.5627 0.1144 2576 +2578 2 132.6715636933043 -994.456533834119 73.3309 0.1144 2577 +2579 2 133.75905809687492 -994.7309280253887 73.0492 0.1144 2578 +2580 2 134.8271673370226 -995.0757326238371 72.7314 0.1144 2579 +2581 2 135.8409660766904 -995.5615654093178 72.4013 0.1144 2580 +2582 2 136.82922479895944 -996.105379290953 72.0857 0.1144 2581 +2583 2 137.807256280331 -996.6865023342463 71.8976 0.1144 2582 +2584 2 138.6196034108228 -997.4846569555957 71.8141 0.1144 2583 +2585 2 139.34074910131483 -998.3721376500814 71.7875 0.1144 2584 +2586 2 140.0205949143388 -999.2917476165965 71.7959 0.1144 2585 +2587 2 140.6308314542018 -1000.2591450196403 71.8222 0.1144 2586 +2588 2 141.12852839323935 -1001.2885325690467 71.8539 0.1144 2587 +2589 2 141.4927869824227 -1002.3722419997549 71.881 0.1144 2588 +2590 2 141.85704557160602 -1003.4559514304633 71.9121 0.1144 2589 +2591 2 142.28163441292452 -1004.518166194919 71.9533 0.1144 2590 +2592 2 142.72591496087628 -1005.572870520648 72.0065 0.1144 2591 +2593 2 143.22992578435088 -1006.5978643400541 72.0958 0.1144 2592 +2594 2 143.76900456326848 -1007.6017951943069 72.2285 0.1144 2593 +2595 2 144.44422983175994 -1008.5227357878256 72.3814 0.1144 2594 +2596 2 145.2429525923659 -1009.3407817777859 72.5323 0.1144 2595 +2597 2 146.13706563640488 -1010.0429087709141 72.7126 0.1144 2596 +2598 2 147.09471791730218 -1010.6232780317233 72.9551 0.1144 2597 +2599 2 148.03050250546147 -1011.271314153065 73.1909 0.1144 2598 +2600 2 148.9361071287587 -1011.9693959507525 73.3852 0.1144 2599 +2601 2 149.8759033310866 -1012.6221635572481 73.5454 0.1144 2600 +2602 2 150.86432780383447 -1013.1987483486477 73.6856 0.1144 2601 +2603 2 151.8649927050351 -1013.7531912812432 73.8186 0.1144 2602 +2604 2 152.8661897987771 -1014.3066715243255 73.9614 0.1144 2603 +2605 2 153.8673868925191 -1014.8601517674077 74.137 0.1144 2604 +2606 2 154.85130549051766 -1015.4093362468976 74.4173 0.1144 2605 +2607 2 155.85186048070332 -1015.8788208490037 74.8199 0.1144 2606 +2608 2 156.8981345998894 -1016.1120313280165 75.343 0.1144 2607 +2609 2 157.9529196235706 -1016.4716371174832 75.8892 0.1144 2608 +2610 2 158.99976670240898 -1016.8857002207989 76.4156 0.1144 2609 +2611 2 159.99639013733085 -1017.4026016223878 76.9096 0.1144 2610 +2612 2 160.97801541881248 -1017.9466333648037 77.3556 0.1144 2611 +2613 2 161.9771996162996 -1018.4990008416631 77.6919 0.1144 2612 +2614 2 162.95904425398982 -1019.0874879761351 77.9279 0.1144 2613 +2615 2 163.68666808396975 -1019.9655238991161 78.1124 0.1144 2614 +2616 2 164.33963682387414 -1020.9029550030954 78.2667 0.1144 2615 +2617 2 164.99106230058365 -1021.8409041212749 78.4025 0.1144 2616 +2618 2 165.642918274265 -1022.7803481215091 78.5302 0.1144 2617 +2619 2 166.24519074633693 -1023.7433428408011 78.6848 0.1144 2618 +2620 2 166.96596849933835 -1024.6267351832958 78.8427 0.1144 2619 +2621 2 167.84357432954144 -1025.3589289669308 78.9678 0.1144 2620 +2622 2 168.74753399407425 -1026.0599863503862 79.0605 0.1144 2621 +2623 2 169.65140614137852 -1026.760995352702 79.1288 0.1144 2622 +2624 2 170.55536580591135 -1027.4620527361576 79.1818 0.1144 2623 +2625 2 171.4608687336389 -1028.162592105413 79.2285 0.1144 2624 +2626 2 172.40559981226008 -1028.8064329546044 79.2784 0.1144 2625 +2627 2 173.3853689942141 -1029.3964007927898 79.3467 0.1144 2626 +2628 2 174.37056610891435 -1029.976343285789 79.4528 0.1144 2627 +2629 2 175.35426834156007 -1030.55671627576 79.6118 0.1144 2628 +2630 2 176.33955297348888 -1031.1367071498994 79.8328 0.1144 2629 +2631 2 177.33624792164343 -1031.6367371293236 80.2228 0.1144 2630 +2632 2 178.13658276041673 -1031.8609342654468 80.9304 0.1144 2631 +2633 2 178.97654233555681 -1032.0415638647114 81.8454 0.1144 2632 +2634 2 180.0953993524227 -1032.0653486457684 82.6927 0.1144 2633 +2635 2 181.21378048203235 -1032.163369964536 83.4459 0.1144 2634 +2636 2 182.29242113695923 -1032.4537798086167 84.0963 0.1144 2635 +2637 2 182.56446671203676 -1033.0184900485456 84.5449 0.1144 2636 +2638 2 183.32781091460078 -1033.8391451822113 84.9058 0.1144 2637 +2639 2 183.4366666127209 -1034.684996497152 86.8235 0.1144 2638 +2640 2 184.1764918719553 -1035.1697420755731 89.5121 0.1144 2639 +2641 2 185.0938669617137 -1035.347577377723 90.6413 0.1144 2640 +2642 2 185.85387805256727 -1035.7036238799942 92.0231 0.1144 2641 +2643 2 186.46273644066702 -1035.9525721542211 93.6233 0.1144 2642 +2644 2 186.95853997362883 -1035.5025755023416 95.3123 0.1144 2643 +2645 2 187.20376587210595 -1034.7348901835321 97.0066 0.1144 2644 +2646 2 187.60399915518357 -1033.888128251749 98.6219 0.1144 2645 +2647 2 188.13442070605467 -1032.9238883861701 100.0084 0.1144 2646 +2648 2 188.53630473627135 -1031.8728222815616 101.1534 0.1144 2647 +2649 2 188.6995150470612 -1030.9984378841414 102.2725 0.1144 2648 +2650 2 189.20230947149042 -1030.0463484047527 103.2399 0.1144 2649 +2651 2 189.59197117409403 -1029.3414846466235 105.4648 0.1144 2650 +2652 2 184.02298185810784 -1034.2012814539428 85.1402 0.1144 2638 +2653 2 185.0660474583922 -1034.660216267945 85.3098 0.1144 2652 +2654 2 186.16097121217825 -1034.9897931988658 85.4428 0.1144 2653 +2655 2 187.25987639779606 -1035.3096877643434 85.566 0.1144 2654 +2656 2 188.33045548434544 -1035.6975638134147 85.706 0.1144 2655 +2657 2 189.3416190929542 -1036.2330155074314 85.8715 0.1144 2656 +2658 2 190.3369953587123 -1036.7897908926323 86.1036 0.1144 2657 +2659 2 191.28934855498767 -1037.3489486070064 86.476 0.1144 2658 +2660 2 192.24700559465325 -1037.8156285984128 86.9996 0.1144 2659 +2661 2 193.34510189662944 -1038.1063959308044 87.563 0.1144 2660 +2662 2 194.43726522587272 -1038.3793719778419 88.1731 0.1144 2661 +2663 2 195.47564576089403 -1038.6789476685926 88.886 0.1144 2662 +2664 2 196.47603453477944 -1038.9902000920115 89.6994 0.1144 2663 +2665 2 197.48446071534332 -1039.30840953303 90.5668 0.1144 2664 +2666 2 198.5126281878082 -1039.6427884327309 91.4441 0.1144 2665 +2667 2 199.54984907089423 -1039.982286488234 92.3132 0.1144 2666 +2668 2 200.58746131486367 -1040.3231435274229 93.1577 0.1144 2667 +2669 2 201.6241500054083 -1040.663604272439 93.963 0.1144 2668 +2670 2 202.66171386823765 -1041.004548828856 94.7254 0.1144 2669 +2671 2 203.69845093992242 -1041.3449220566438 95.4442 0.1144 2670 +2672 2 204.73654699529317 -1041.684903923548 96.1156 0.1144 2671 +2673 2 205.77328406697794 -1042.0252771513356 96.7327 0.1144 2672 +2674 2 206.801507844728 -1042.4329298992343 97.2474 0.1144 2673 +2675 2 207.80991372834933 -1042.973370075274 97.5856 0.1144 2674 +2676 2 208.8111108220914 -1043.5268503183563 97.7749 0.1144 2675 +2677 2 209.81067713541015 -1044.0808001944988 97.8522 0.1144 2676 +2678 2 210.8118742291522 -1044.6342804375813 97.853 0.1144 2677 +2679 2 211.81307132289422 -1045.1877606806634 97.809 0.1144 2678 +2680 2 212.8133057271231 -1045.7407087312044 97.75 0.1144 2679 +2681 2 213.8145028208651 -1046.2941889742867 97.6951 0.1144 2680 +2682 2 214.81411751532397 -1046.8480513332006 97.6486 0.1144 2681 +2683 2 215.81531460906604 -1047.401531576283 97.6139 0.1144 2682 +2684 2 216.8165117028081 -1047.9550118193656 97.5957 0.1144 2683 +2685 2 217.81674610703698 -1048.5079598699062 97.6016 0.1144 2684 +2686 2 218.81794320077898 -1049.0614401129887 97.6408 0.1144 2685 +2687 2 219.81855972083952 -1049.615970562813 97.7206 0.1144 2686 +2688 2 220.82925369638807 -1050.1497914764063 97.8561 0.1144 2687 +2689 2 221.87200197405602 -1050.540678518172 98.1016 0.1144 2688 +2690 2 222.94203123304575 -1050.7309180380041 98.5071 0.1144 2689 +2691 2 224.01047809275235 -1050.9215396736681 99.022 0.1144 2690 +2692 2 225.089475770169 -1051.0670326017762 99.5938 0.1144 2691 +2693 2 226.18585466850513 -1051.1267244042542 100.1697 0.1144 2692 +2694 2 227.2684476414599 -1051.272947982754 100.6925 0.1144 2693 +2695 2 228.29070470949944 -1051.785852278742 101.0506 0.1144 2694 +2696 2 229.31459255796227 -1052.29828694167 101.2645 0.1144 2695 +2697 2 230.36678187797295 -1052.721702074672 101.3673 0.1144 2696 +2698 2 231.48984657741792 -1052.941260565423 101.3891 0.1144 2697 +2699 2 232.61248077989106 -1053.1593241741189 101.3555 0.1144 2698 +2700 2 233.73612605301747 -1053.377832458128 101.2869 0.1144 2699 +2701 2 234.82797252546578 -1053.708222001852 101.1769 0.1144 2700 +2702 2 235.9137281988474 -1054.061410715884 101.0254 0.1144 2701 +2703 2 237.00006444591068 -1054.4135492231744 100.8392 0.1144 2702 +2704 2 238.02876980132802 -1054.8841987018054 100.604 0.1144 2703 +2705 2 239.0355344553469 -1055.4015645118648 100.3265 0.1144 2704 +2706 2 240.04334931610725 -1055.9195108956055 100.0233 0.1144 2705 +2707 2 241.05011397012598 -1056.4368767056653 99.7066 0.1144 2706 +2708 2 241.89611899167937 -1057.1528578740672 99.4129 0.1144 2707 +2709 2 242.57904208604114 -1058.0716552277788 99.1687 0.1144 2708 +2710 2 243.26096335480142 -1058.9897844905804 98.9629 0.1144 2709 +2711 2 244.0627397988309 -1059.6983405037504 98.7305 0.1144 2710 +2712 2 245.08116234637168 -1060.0313314415557 98.3844 0.1144 2711 +2713 2 245.29309133640672 -1060.0098884197837 98.0944 0.1144 2712 +2714 2 246.4283210285731 -1059.8976100335121 97.8228 0.1144 2713 +2715 2 247.56408291328094 -1059.7843689577269 97.5688 0.1144 2714 +2716 2 248.69989317912894 -1059.6710403647135 97.3361 0.1144 2715 +2717 2 249.83521038852373 -1059.5588103595815 97.127 0.1144 2716 +2718 2 250.9709722732315 -1059.4455692837964 96.9349 0.1144 2717 +2719 2 252.10625034653805 -1059.3332033802963 96.738 0.1144 2718 +2720 2 253.24201223124587 -1059.219962304511 96.5412 0.1144 2719 +2721 2 254.37732944064072 -1059.1077322993792 96.3444 0.1144 2720 +2722 2 255.51313970648872 -1058.9944037063656 96.1472 0.1144 2721 +2723 2 256.6489015911965 -1058.8811626305805 95.9498 0.1144 2722 +2724 2 257.78413128336285 -1058.7688842443088 95.7522 0.1144 2723 +2725 2 258.92002906643927 -1058.6556040324353 95.5539 0.1144 2724 +2726 2 260.05525875860565 -1058.5433256461633 95.3554 0.1144 2725 +2727 2 261.19102064331344 -1058.4300845703783 95.156 0.1144 2726 +2728 2 262.3262503354798 -1058.3178061841063 94.955 0.1144 2727 +2729 2 263.46214811855623 -1058.2045259722331 94.7512 0.1144 2728 +2730 2 264.597910003264 -1058.0912848964479 94.5428 0.1144 2729 +2731 2 265.00728487593994 -1056.698028059529 93.387 0.1144 2730 +2732 2 265.00667660861996 -1055.637557678042 92.8766 0.1144 2731 +2733 2 264.86710782145343 -1054.5917921911146 92.195 0.1144 2732 +2734 2 264.72762655151536 -1053.546075085327 91.4082 0.1144 2733 +2735 2 264.58805776434883 -1052.5003095983993 90.5761 0.1144 2734 +2736 2 264.4485764944109 -1051.454592492612 89.7506 0.1144 2735 +2737 2 264.30997039675754 -1050.409359198226 88.0743 0.1144 2736 +2738 2 264.7732289398625 -1058.147641000554 94.3502 0.1144 2730 +2739 2 265.8600295953962 -1058.4896382887473 94.1324 0.1144 2738 +2740 2 266.9467427337014 -1058.8315871958002 93.8907 0.1144 2739 +2741 2 268.03301119669356 -1059.1745471735069 93.6264 0.1144 2740 +2742 2 269.11972433499875 -1059.51649608056 93.3405 0.1144 2741 +2743 2 270.16316160193554 -1059.953469294805 93.0166 0.1144 2742 +2744 2 271.1919295168342 -1060.4215253034995 92.657 0.1144 2743 +2745 2 272.2197347422196 -1060.8890491196526 92.2692 0.1144 2744 +2746 2 273.24845427597813 -1061.3571926455757 91.8705 0.1144 2745 +2747 2 274.2773097081053 -1061.8252970354101 91.4763 0.1144 2746 +2748 2 275.30607762300394 -1062.2933530441046 91.0994 0.1144 2747 +2749 2 276.3355136288127 -1062.760407227198 90.7511 0.1144 2748 +2750 2 277.36327047305804 -1063.2280185605791 90.0732 0.1144 2749 +2751 2 245.44367740896664 -1060.8251053447498 99.7125 0.1144 2712 +2752 2 245.81135043322521 -1061.628357930947 102.4598 0.1144 2751 +2753 2 246.17911097471227 -1062.4316588982845 103.6302 0.1144 2752 +2754 2 246.54620342528926 -1063.2359616912236 105.0137 0.1144 2753 +2755 2 246.47045324164012 -1063.978388306908 106.5442 0.1144 2754 +2756 2 246.04234465340832 -1064.6723958693183 108.1522 0.1144 2755 +2757 2 245.61423606517656 -1065.366403431728 109.7788 0.1144 2756 +2758 2 244.76529925345284 -1065.3886558405943 111.2364 0.1144 2757 +2759 2 243.72769895409053 -1065.1091647517142 112.4827 0.1144 2758 +2760 2 242.68947894495832 -1064.8305879712075 113.5372 0.1144 2759 +2761 2 241.65187864559599 -1064.5510968823278 114.4217 0.1144 2760 +2762 2 240.61427834623376 -1064.2716057934476 115.9693 0.1144 2761 +2763 2 182.8913110113119 -1032.075054092038 84.7084 0.1144 2636 +2764 2 183.85727609178247 -1031.4626545792103 84.7851 0.1144 2763 +2765 2 184.82429137899464 -1030.8508356400644 84.8156 0.1144 2764 +2766 2 185.79025645946513 -1030.2384361272366 84.8602 0.1144 2765 +2767 2 186.789624104077 -1029.686322505866 84.9212 0.1144 2766 +2768 2 187.83843981775115 -1029.2361585704489 85.0002 0.1144 2767 +2769 2 188.90639834214176 -1028.8317702049121 85.1088 0.1144 2768 +2770 2 189.94268155379422 -1028.3523967437702 85.2802 0.1144 2769 +2771 2 190.71896325781609 -1027.5959444742907 85.5971 0.1144 2770 +2772 2 191.2552019075093 -1026.6544594183415 86.095 0.1144 2771 +2773 2 191.73690467987635 -1025.6907100841818 86.7426 0.1144 2772 +2774 2 192.2181627769304 -1024.727971820675 87.498 0.1144 2773 +2775 2 192.80553089098325 -1023.8240073973739 88.3165 0.1144 2774 +2776 2 193.66856120220058 -1023.1756138117177 89.1374 0.1144 2775 +2777 2 194.65235936474252 -1022.6514573223186 89.9298 0.1144 2776 +2778 2 195.6399081241219 -1022.1372583940348 90.7001 0.1144 2777 +2779 2 196.6704372622549 -1021.7579979222495 91.4777 0.1144 2778 +2780 2 197.74969758932056 -1021.5650741382773 92.281 0.1144 2779 +2781 2 198.84582741493278 -1021.6913579670259 93.0874 0.1144 2780 +2782 2 199.89573233454692 -1021.6129230910465 93.9523 0.1144 2781 +2783 2 200.682157218915 -1021.0202184502289 94.925 0.1144 2782 +2784 2 201.4534253852031 -1020.5969284601858 96.0196 0.1144 2783 +2785 2 202.20480740747 -1020.171786099777 97.1774 0.1144 2784 +2786 2 202.82294178810878 -1019.836378381511 98.3811 0.1144 2785 +2787 2 203.70639672771583 -1019.5954264782525 99.4745 0.1144 2786 +2788 2 204.26883544349838 -1019.1338193823486 102.492 0.1144 2787 +2789 2 205.1307644672785 -1018.4233433743332 103.859 0.1144 2788 +2790 2 205.9937828338886 -1017.713583838368 104.424 0.1144 2789 +2791 2 206.85676206441033 -1017.0036884040342 105.1112 0.1144 2790 +2792 2 207.79559670609038 -1016.7148525932669 106.0144 0.1144 2791 +2793 2 208.732346608056 -1016.4601716336971 107.0717 0.1144 2792 +2794 2 209.66764076405536 -1016.2060570694676 108.2259 0.1144 2793 +2795 2 210.60505875693096 -1015.9503742842963 109.4005 0.1144 2794 +2796 2 211.54189617612508 -1015.6957417058667 110.5437 0.1144 2795 +2797 2 212.46819215955088 -1015.1150018320081 111.5173 0.1144 2796 +2798 2 213.3373691092986 -1014.3916216553187 112.2598 0.1144 2797 +2799 2 214.20750874855955 -1013.6687736711707 113.3185 0.1144 2798 +2800 2 204.5882926311003 -1020.1731084977008 100.0734 0.1144 2787 +2801 2 205.50665270619487 -1020.7749477972421 100.2683 0.1144 2800 +2802 2 206.42550583774252 -1021.3756885089015 100.1661 0.1144 2801 +2803 2 207.3447410851218 -1021.9780116198441 99.8782 0.1144 2802 +2804 2 208.26306202412803 -1022.5797150210168 99.5084 0.1144 2803 +2805 2 208.56627421935275 -1023.6676122655517 99.328 0.1144 2804 +2806 2 208.83275749637426 -1024.7626282577035 99.3569 0.1144 2805 +2807 2 209.10029098013754 -1025.8582248235366 99.5408 0.1144 2806 +2808 2 209.36782446390083 -1026.9538213893698 99.8236 0.1144 2807 +2809 2 209.63535794766406 -1028.049417955203 100.1546 0.1144 2808 +2810 2 209.916308389712 -1029.1420337106783 100.4872 0.1144 2809 +2811 2 210.62882714609242 -1030.0378855465342 100.7182 0.1144 2810 +2812 2 211.34047073018814 -1030.9332535709887 100.977 0.1144 2811 +2813 2 40.353002639773024 -963.7045632127845 74.9857 0.1144 2422 +2814 2 39.39898665249248 -964.1417756279939 75.9273 0.1144 2813 +2815 2 38.476153057091835 -964.7989291908692 76.2994 0.1144 2814 +2816 2 37.59164794837423 -965.5217198401256 76.6648 0.1144 2815 +2817 2 36.6759084730696 -966.1945642748717 77.0442 0.1144 2816 +2818 2 35.74547352277855 -966.8396315064662 77.439 0.1144 2817 +2819 2 34.93781260004957 -967.5604546497522 77.9041 0.1144 2818 +2820 2 34.29697854856974 -968.43360522008 78.4025 0.1144 2819 +2821 2 33.67519204095393 -969.3905283460139 78.8259 0.1144 2820 +2822 2 33.05569884985505 -970.3526042090216 79.1591 0.1144 2821 +2823 2 32.680018539627156 -970.8926596825677 79.4256 0.1144 2822 +2824 2 32.002065704488615 -971.8093919680947 79.6606 0.1144 2823 +2825 2 31.302333723446935 -972.7062001776397 79.8854 0.1144 2824 +2826 2 30.599688716118493 -973.598769958484 80.1189 0.1144 2825 +2827 2 29.871733361184397 -974.4734627624002 80.3704 0.1144 2826 +2828 2 29.069258348721917 -975.2820503423033 80.6207 0.1144 2827 +2829 2 28.194367491149507 -976.0180400890636 80.8503 0.1144 2828 +2830 2 27.378179096144663 -976.8086487051685 81.0813 0.1144 2829 +2831 2 26.745199667262426 -977.7267048976818 81.3593 0.1144 2830 +2832 2 26.221997355449986 -978.7014486952583 81.69 0.1144 2831 +2833 2 25.713949702504692 -979.6820564773694 82.0484 0.1144 2832 +2834 2 25.45795572695289 -980.7575557960495 82.3648 0.1144 2833 +2835 2 25.681526875113235 -981.8522731302094 82.5446 0.1144 2834 +2836 2 26.040811160614766 -982.9307188832223 82.5815 0.1144 2835 +2837 2 26.39873646243015 -984.0095559971188 82.5059 0.1144 2836 +2838 2 26.75806912907177 -985.0879142329032 82.3553 0.1144 2837 +2839 2 27.240780888882682 -986.118158755791 82.1912 0.1144 2838 +2840 2 27.821634402918107 -987.1033631179579 82.0593 0.1144 2839 +2841 2 28.344993953282682 -988.1193999977228 81.9734 0.1144 2840 +2842 2 28.6808895410432 -989.2070831106389 81.9244 0.1144 2841 +2843 2 28.95542962767405 -990.3183221672026 81.9003 0.1144 2842 +2844 2 29.230550287986404 -991.4285110170248 81.8905 0.1144 2843 +2845 2 29.412240984997226 -992.5564078299557 81.8843 0.1144 2844 +2846 2 29.410665846815363 -993.696683804858 81.8765 0.1144 2845 +2847 2 29.353109534520286 -994.8388058959302 81.8658 0.1144 2846 +2848 2 29.29611961756558 -995.9823837329687 81.851 0.1144 2847 +2849 2 29.23861168641065 -997.1244183068123 81.8303 0.1144 2848 +2850 2 29.182153961997415 -998.2670334543376 81.8012 0.1144 2849 +2851 2 29.10312910639817 -999.4076852908755 81.7603 0.1144 2850 +2852 2 29.0159759279569 -1000.5489854851661 81.7034 0.1144 2851 +2853 2 28.929354942056932 -1001.6893229899433 81.6239 0.1144 2852 +2854 2 28.89235286469301 -1002.8322956257798 81.5125 0.1144 2853 +2855 2 28.912057057017194 -1003.976451045644 81.3554 0.1144 2854 +2856 2 28.94415295863155 -1005.1196869325455 81.1364 0.1144 2855 +2857 2 28.977211549759033 -1006.2634550119885 80.8419 0.1144 2856 +2858 2 29.090297324244716 -1007.3899899859724 80.4143 0.1144 2857 +2859 2 29.306382991425494 -1008.4676574645757 79.8025 0.1144 2858 +2860 2 29.527991392383683 -1009.3718413433442 78.9228 0.1144 2859 +2861 2 29.872968437331792 -1010.2043675101755 77.8218 0.1144 2860 +2862 2 30.340492695309706 -1011.120294100139 76.6469 0.1144 2861 +2863 2 30.82420208573899 -1012.051795396762 75.4527 0.1144 2862 +2864 2 31.30641659411367 -1012.9837271903571 74.2731 0.1144 2863 +2865 2 31.789211676169828 -1013.9146087772102 73.1301 0.1144 2864 +2866 2 32.27292106659911 -1014.8461100738333 72.0317 0.1144 2865 +2867 2 32.755135574973735 -1015.7780418674282 70.9688 0.1144 2866 +2868 2 33.238893346543136 -1016.7094556468229 69.9345 0.1144 2867 +2869 2 33.72164004745912 -1017.6404247509046 68.9335 0.1144 2868 +2870 2 34.20376703860535 -1018.5723081633593 67.9647 0.1144 2869 +2871 2 34.69461370568115 -1019.5076408151044 67.025 0.1144 2870 +2872 2 35.30813493848325 -1020.4573150470919 66.2348 0.1144 2871 +2873 2 36.01171751798654 -1021.2370486899596 65.7059 0.1144 2872 +2874 2 36.55977978768391 -1021.962230217947 65.1414 0.1144 2873 +2875 2 36.42084113547014 -1022.7573649681126 64.2709 0.1144 2874 +2876 2 36.200175531276386 -1023.5372565125762 63.1378 0.1144 2875 +2877 2 35.487851752072174 -1024.2559374456614 61.9382 0.1144 2876 +2878 2 34.505234139824154 -1024.7872595683893 60.6934 0.1144 2877 +2879 2 33.750270864765525 -1025.06530786152 59.2346 0.1144 2878 +2880 2 34.03648654156444 -1024.8549200378357 57.5532 0.1144 2879 +2881 2 34.669432600031655 -1025.038799854756 55.781 0.1144 2880 +2882 2 35.056774335720945 -1025.4803133197752 53.9353 0.1144 2881 +2883 2 35.165386613897 -1026.04757060975 52.0596 0.1144 2882 +2884 2 35.52819048672046 -1027.0442071181442 50.4274 0.1144 2883 +2885 2 36.4005279784235 -1027.556502619363 48.9972 0.1144 2884 +2886 2 36.73012009329511 -1028.1897041416405 47.7719 0.1144 2885 +2887 2 37.1697472537486 -1029.1372851459835 46.7082 0.1144 2886 +2888 2 37.58856737738506 -1030.176657583581 45.8444 0.1144 2887 +2889 2 37.935329610044164 -1031.2494378099095 45.117 0.1144 2888 +2890 2 38.24453613335555 -1032.3287654552246 44.4534 0.1144 2889 +2891 2 38.18127772224824 -1033.4010056024977 43.8172 0.1144 2890 +2892 2 37.96883527955873 -1034.4992098542396 43.2068 0.1144 2891 +2893 2 37.91199916847569 -1035.6141926507335 42.6054 0.1144 2892 +2894 2 38.106848759664445 -1036.3375593121254 41.8228 0.1144 2893 +2895 2 38.3509503891363 -1037.4542527546105 41.1841 0.1144 2894 +2896 2 38.561748916302406 -1038.5720746370876 40.6302 0.1144 2895 +2897 2 38.68325271787023 -1039.669327076686 40.0705 0.1144 2896 +2898 2 38.66645886591215 -1040.7685105857217 39.5125 0.1144 2897 +2899 2 38.54935506217515 -1041.9023945785316 39.0583 0.1144 2898 +2900 2 38.69322380791738 -1043.0302928868905 38.6784 0.1144 2899 +2901 2 38.971566135866226 -1043.9998907666695 38.2424 0.1144 2900 +2902 2 38.66661980962948 -1044.551511857741 37.5651 0.1144 2901 +2903 2 37.60736495717288 -1044.9424296592629 36.967 0.1144 2902 +2904 2 36.501859211364604 -1045.2136262226354 36.4512 0.1144 2903 +2905 2 35.63117123997176 -1045.776659628813 35.9374 0.1144 2904 +2906 2 34.94081475093594 -1046.6329454969937 35.5006 0.1144 2905 +2907 2 34.11225810896036 -1047.3892935458694 35.142 0.1144 2906 +2908 2 33.409757953752035 -1048.2675462383972 34.7732 0.1144 2907 +2909 2 32.761198593620406 -1049.1900155638414 34.3454 0.1144 2908 +2910 2 31.866218337777582 -1049.5580554959843 33.805 0.1144 2909 +2911 2 30.810167245454352 -1049.8369382319197 33.2111 0.1144 2910 +2912 2 29.85617588569437 -1050.2951886934616 32.5279 0.1144 2911 +2913 2 29.1932979418184 -1051.179691215517 31.9091 0.1144 2912 +2914 2 28.434226017826234 -1051.6803381811594 31.1548 0.1144 2913 +2915 2 29.10908331119606 -1052.1147711030076 29.8995 0.1144 2914 +2916 2 29.207379863267363 -1051.471077264408 28.0669 0.1144 2915 +2917 2 28.350116699041962 -1051.1396525862951 27.2541 0.1144 2916 +2918 2 27.362058705987977 -1051.0117535152976 26.2757 0.1144 2917 +2919 2 26.37041064198553 -1050.894895793429 25.2115 0.1144 2918 +2920 2 25.488884209150626 -1050.8415433969199 24.0748 0.1144 2919 +2921 2 24.93137773173362 -1049.8967831428672 23.134 0.1144 2920 +2922 2 24.413105095621233 -1049.0325576371933 21.3172 0.1144 2921 +2923 2 28.334490385533 -1051.789855776326 30.5477 0.1144 2914 +2924 2 27.53590526721166 -1052.6007080247632 30.0423 0.1144 2923 +2925 2 26.563421415737025 -1053.1845944594584 29.5638 0.1144 2924 +2926 2 25.645550179410918 -1053.78564574972 29.0914 0.1144 2925 +2927 2 24.50913424653959 -1053.75352523422 28.5919 0.1144 2926 +2928 2 23.407809128719123 -1053.9107129718388 27.9901 0.1144 2927 +2929 2 22.33761565230958 -1054.2079438131905 27.2546 0.1144 2928 +2930 2 21.70397318388109 -1054.512497046967 26.3281 0.1144 2929 +2931 2 21.900341683228817 -1054.987152524618 25.0838 0.1144 2930 +2932 2 22.266194578671332 -1055.6494264701241 23.716 0.1144 2931 +2933 2 22.72243064853035 -1056.5644831123925 22.4146 0.1144 2932 +2934 2 22.66545953309037 -1057.4480082631412 21.1628 0.1144 2933 +2935 2 22.408618567415033 -1058.406605132712 20.0596 0.1144 2934 +2936 2 22.47479510743858 -1059.5072078155865 19.2229 0.1144 2935 +2937 2 23.011545162912853 -1060.4798000826486 18.6812 0.1144 2936 +2938 2 23.780840537013034 -1061.3037451338428 18.3269 0.1144 2937 +2939 2 24.22371222471088 -1062.3211063864153 18.1321 0.1144 2938 +2940 2 24.003568965295415 -1063.345809975427 18.2243 0.1144 2939 +2941 2 24.165886307895676 -1064.4616256816669 18.4388 0.1144 2940 +2942 2 24.802419347196803 -1065.4122521539882 18.6801 0.1144 2941 +2943 2 25.389054553127835 -1066.394025475668 18.9248 0.1144 2942 +2944 2 25.176647051543398 -1067.392954308604 19.2775 0.1144 2943 +2945 2 24.765434415033212 -1068.4466332860798 19.6711 0.1144 2944 +2946 2 24.104309845508737 -1069.3752966015882 20.0628 0.1144 2945 +2947 2 23.405845931989518 -1070.2793188256023 20.4865 0.1144 2946 +2948 2 22.799174947152608 -1071.2419700377018 20.9822 0.1144 2947 +2949 2 22.000146183124798 -1071.966194039138 21.628 0.1144 2948 +2950 2 21.06830144093692 -1072.3229956597297 22.4482 0.1144 2949 +2951 2 20.143805679943796 -1072.4275675388647 23.4423 0.1144 2950 +2952 2 19.194466039028498 -1072.3288425866654 24.5411 0.1144 2951 +2953 2 18.0859685678617 -1072.4376169237898 25.5509 0.1144 2952 +2954 2 16.946536883527358 -1072.491354868811 26.4111 0.1144 2953 +2955 2 15.850515007680883 -1072.2867461503602 27.2005 0.1144 2954 +2956 2 14.913656224306692 -1072.368829461786 28.0638 0.1144 2955 +2957 2 14.398131869612314 -1073.2067027038202 28.9444 0.1144 2956 +2958 2 13.762016329072765 -1074.102115027325 29.7405 0.1144 2957 +2959 2 12.782944427095117 -1074.610487903035 30.4556 0.1144 2958 +2960 2 11.721991010144222 -1074.9926968080338 31.0447 0.1144 2959 +2961 2 10.67026227018323 -1075.4386223147499 31.4549 0.1144 2960 +2962 2 9.544765693928582 -1075.6347801767872 31.7153 0.1144 2961 +2963 2 8.405030127012878 -1075.7196582511492 31.8598 0.1144 2962 +2964 2 7.3126155289428425 -1076.0595654530784 31.9119 0.1144 2963 +2965 2 6.194591459453989 -1076.2990465380178 31.89 0.1144 2964 +2966 2 5.05817133159934 -1076.167514705343 31.8206 0.1144 2965 +2967 2 3.9182231284926274 -1076.2575313384382 31.7086 0.1144 2966 +2968 2 2.849026253095019 -1076.5436582711795 31.4482 0.1144 2967 +2969 2 1.7356711092788828 -1076.7817212118866 31.1416 0.1144 2968 +2970 2 0.6760862512925314 -1077.1449191451488 30.765 0.1144 2969 +2971 2 -0.2965767906960082 -1077.596846768502 30.2876 0.1144 2970 +2972 2 -1.4240640050137472 -1077.7329443494868 29.8416 0.1144 2971 +2973 2 -2.567877940562596 -1077.716273091457 29.4753 0.1144 2972 +2974 2 -3.707963673060533 -1077.6246494451927 29.1774 0.1144 2973 +2975 2 -4.8501535482035365 -1077.557914603314 28.91 0.1144 2974 +2976 2 -5.99312319318426 -1077.5965564284872 28.6446 0.1144 2975 +2977 2 -7.1314785478285785 -1077.7097349447913 28.3399 0.1144 2976 +2978 2 -8.244199375343385 -1077.5874195736606 27.8756 0.1144 2977 +2979 2 -9.373914083356397 -1077.5642597269634 27.2408 0.1144 2978 +2980 2 -10.5045899854548 -1077.5783896389935 26.4851 0.1144 2979 +2981 2 -11.389629887010358 -1077.38712170479 25.4708 0.1144 2980 +2982 2 -12.062420640764344 -1077.447905351136 24.2211 0.1144 2981 +2983 2 -12.789304928229171 -1077.8878474071353 22.9083 0.1144 2982 +2984 2 -13.35414015152611 -1078.3089373862645 19.88 0.1144 2983 +2985 2 26.36967910024208 -1065.513898582773 19.459 0.1144 2943 +2986 2 27.273919712485963 -1065.0086059792566 19.9085 0.1144 2985 +2987 2 28.352513444069416 -1064.8545059721546 20.4977 0.1144 2986 +2988 2 29.490082308858632 -1064.797110172114 21.1382 0.1144 2987 +2989 2 30.532142025448138 -1064.784952990644 21.9461 0.1144 2988 +2990 2 31.527820640728635 -1064.7903469755556 22.9451 0.1144 2989 +2991 2 32.49587106232963 -1064.4131113446324 24.0156 0.1144 2990 +2992 2 33.089000105514174 -1063.6024853469426 25.159 0.1144 2991 +2993 2 33.16130450655015 -1063.0698835786475 26.4911 0.1144 2992 +2994 2 33.241842946459826 -1062.522180465915 27.9318 0.1144 2993 +2995 2 33.78319261047676 -1062.963934788213 29.3118 0.1144 2994 +2996 2 34.631685385934816 -1063.6944315027813 30.3601 0.1144 2995 +2997 2 35.60987067317785 -1064.24695950553 31.4149 0.1144 2996 +2998 2 36.49644522980839 -1027.4278489334977 48.2446 0.1144 2885 +2999 2 37.18111902296283 -1026.51094716833 48.0491 0.1144 2998 +3000 2 38.26090841482426 -1026.6124293796952 47.9783 0.1144 2999 +3001 2 39.40023065396497 -1026.5991943731074 47.8654 0.1144 3000 +3002 2 40.48642410941619 -1026.2755012818388 47.7019 0.1144 3001 +3003 2 41.53878702878848 -1025.8402100506728 47.5252 0.1144 3002 +3004 2 42.590719451189045 -1025.4034239374519 47.1226 0.1144 3003 +3005 2 32.21911511478564 -970.9816817751589 81.2624 0.1144 2822 +3006 2 31.472955574912845 -971.5769925688262 82.1041 0.1144 3005 +3007 2 30.859458344218467 -972.1973081964952 83.1348 0.1144 3006 +3008 2 30.042094623509428 -972.9925231787915 84.0207 0.1144 3007 +3009 2 29.291009626916235 -973.7079440464581 84.875 0.1144 3008 +3010 2 28.634773476163133 -974.3086320224029 85.8225 0.1144 3009 +3011 2 27.819739508503858 -975.0475462742357 86.5906 0.1144 3010 +3012 2 27.147556420653785 -975.8994815689667 87.215 0.1144 3011 +3013 2 26.932510058848493 -976.9740792621869 87.8284 0.1144 3012 +3014 2 26.687539524922556 -978.0817245562716 88.3896 0.1144 3013 +3015 2 26.220765762091617 -979.1152005329313 88.9134 0.1144 3014 +3016 2 25.7369119613671 -980.1417481399737 89.4281 0.1144 3015 +3017 2 25.25300977950252 -981.1683832642445 89.9766 0.1144 3016 +3018 2 24.769107597637884 -982.1950183885155 90.5551 0.1144 3017 +3019 2 24.500782841254704 -983.0871643547742 91.329 0.1144 3018 +3020 2 24.29645394164993 -983.9179074683698 92.2782 0.1144 3019 +3021 2 24.09468430918261 -984.746294705967 93.322 0.1144 3020 +3022 2 23.786251140626234 -985.8267408455475 94.1808 0.1144 3021 +3023 2 23.463380989380312 -986.9240010724008 94.8077 0.1144 3022 +3024 2 23.140374939765792 -988.0213004353427 95.2277 0.1144 3023 +3025 2 22.817504788519926 -989.1185606621962 95.4682 0.1144 3024 +3026 2 22.49449873890549 -990.2158600251379 95.585 0.1144 3025 +3027 2 22.17162858765954 -991.3131202519913 95.6357 0.1144 3026 +3028 2 21.848622538045106 -992.4104196149331 95.6726 0.1144 3027 +3029 2 21.52575238679924 -993.5076798417865 95.7018 0.1144 3028 +3030 2 21.202794718324867 -994.6048916874998 95.7146 0.1144 3029 +3031 2 20.881419449133602 -995.7017214173815 95.7012 0.1144 3030 +3032 2 20.563484174180985 -996.7900548869306 95.7006 0.1144 3031 +3033 2 20.253463381751715 -997.8591111428225 95.7303 0.1144 3032 +3034 2 20.53130845826422 -998.7303962933087 95.5654 0.1144 3033 +3035 2 20.973611051066314 -999.6847124340087 95.1885 0.1144 3034 +3036 2 21.37612987704034 -1000.6994191525912 94.6935 0.1144 3035 +3037 2 21.62659377208928 -1001.8116313478475 94.2284 0.1144 3036 +3038 2 21.348275483879377 -1002.8944426474044 93.7322 0.1144 3037 +3039 2 20.842356892400176 -1003.8852542080937 93.2005 0.1144 3038 +3040 2 20.342806995215255 -1004.9071239357119 92.7186 0.1144 3039 +3041 2 19.843639213862048 -1005.9305760626133 92.2656 0.1144 3040 +3042 2 19.941382651036633 -1007.0590274618721 91.7781 0.1144 3041 +3043 2 20.077732004300685 -1008.1815120158258 91.2475 0.1144 3042 +3044 2 20.256711862036468 -1009.2764878422826 90.6632 0.1144 3043 +3045 2 20.539929497652906 -1010.3153963372309 90.0158 0.1144 3044 +3046 2 20.836741320818476 -1011.3199996129717 89.3108 0.1144 3045 +3047 2 20.619226472444552 -1012.2454903426589 87.5132 0.1144 3046 +3048 2 20.164587674339543 -997.9041319006125 96.9741 0.1144 3033 +3049 2 19.164366785408106 -998.4152103910081 96.5045 0.1144 3048 +3050 2 18.104553151640175 -998.6227696155195 96.271 0.1144 3049 +3051 2 17.04001951150417 -998.7702451355855 95.8622 0.1144 3050 +3052 2 15.983692757687209 -998.9313986312673 95.3148 0.1144 3051 +3053 2 15.008299609087487 -999.4849966855131 94.7719 0.1144 3052 +3054 2 14.04344729483995 -1000.0953833020859 94.2542 0.1144 3053 +3055 2 13.079557670105658 -1000.7063021112001 93.7418 0.1144 3054 +3056 2 12.619444830843577 -1001.6923847117698 93.1764 0.1144 3055 +3057 2 12.415890048296376 -1002.7629372095495 92.5772 0.1144 3056 +3058 2 12.362574689736505 -1003.8523289079488 91.961 0.1144 3057 +3059 2 12.406712561953725 -1004.9760555420713 91.3886 0.1144 3058 +3060 2 12.610007234815953 -1005.979922204525 90.0007 0.1144 3059 +3061 2 68.13861707041602 -921.4657908121613 39.2686 0.1144 2373 +3062 2 68.23867309144367 -922.4648035311275 38.5151 0.1144 3061 +3063 2 68.30895738638924 -923.5743043233236 37.8003 0.1144 3062 +3064 2 68.45691448412256 -924.7018346941919 37.2047 0.1144 3063 +3065 2 68.68586145472722 -925.8126641521427 36.7189 0.1144 3064 +3066 2 68.69076445603329 -926.9434953555404 36.3258 0.1144 3065 +3067 2 68.36624412143337 -928.0319591686418 35.999 0.1144 3066 +3068 2 68.08077064907397 -929.139495017533 35.7414 0.1144 3067 +3069 2 68.26326873429855 -930.2586971122814 35.5057 0.1144 3068 +3070 2 68.82661693805818 -931.2472502222967 35.2612 0.1144 3069 +3071 2 69.40381259707425 -932.2343174040087 35.0 0.1144 3070 +3072 2 69.86187281621147 -933.278357271851 34.6923 0.1144 3071 +3073 2 70.24494121972592 -934.3044785016425 34.2574 0.1144 3072 +3074 2 70.6006352986843 -935.2501081396055 33.6552 0.1144 3073 +3075 2 71.02702542967302 -936.2309349113626 32.9904 0.1144 3074 +3076 2 71.60994917485496 -937.2028865702957 32.3977 0.1144 3075 +3077 2 72.35314771149447 -938.0647373608256 31.8965 0.1144 3076 +3078 2 73.22223232361776 -938.7908492991453 31.4658 0.1144 3077 +3079 2 74.09252617294402 -939.5007187701221 31.0929 0.1144 3078 +3080 2 74.40852516750408 -940.563005513632 30.7647 0.1144 3079 +3081 2 74.07224701172512 -941.6489685986152 30.5242 0.1144 3080 +3082 2 73.97862464754729 -942.785435612182 30.3965 0.1144 3081 +3083 2 74.4352916801995 -943.8274484054281 30.3643 0.1144 3082 +3084 2 74.99149365356118 -944.8264481125495 30.3755 0.1144 3083 +3085 2 75.2015473519948 -945.9503712432726 30.403 0.1144 3084 +3086 2 74.81193882693077 -947.02387753445 30.4284 0.1144 3085 +3087 2 74.35178955113574 -948.0714136025572 30.4354 0.1144 3086 +3088 2 74.31373726703009 -949.2138056647119 30.4178 0.1144 3087 +3089 2 74.36019863810114 -950.3570988865051 30.3794 0.1144 3088 +3090 2 73.97759149131491 -951.4344756688929 30.3246 0.1144 3089 +3091 2 73.078014016369 -952.1396787152347 30.254 0.1144 3090 +3092 2 72.30579467698459 -952.9807605138018 30.1493 0.1144 3091 +3093 2 72.73689436516221 -953.9981269909639 29.9435 0.1144 3092 +3094 2 72.74732326562236 -955.1425252293561 29.7727 0.1144 3093 +3095 2 72.04852785114562 -955.9810056338416 29.5218 0.1144 3094 +3096 2 71.64577290395985 -956.3100180690434 29.3387 0.1144 3095 +3097 2 70.65068534917145 -956.8095371961098 29.2356 0.1144 3096 +3098 2 69.83224632837877 -957.4576722894691 29.2762 0.1144 3097 +3099 2 69.21486250451474 -958.4066313476118 29.4154 0.1144 3098 +3100 2 68.39984421062451 -959.1808615980053 29.5823 0.1144 3099 +3101 2 67.39218622185362 -959.6748027156157 29.8281 0.1144 3100 +3102 2 66.29488167195333 -959.8224439861605 30.1451 0.1144 3101 +3103 2 65.19131577610821 -959.5913834669723 30.4685 0.1144 3102 +3104 2 64.08583405640425 -959.614299343575 30.8014 0.1144 3103 +3105 2 63.27355258914278 -960.3364531138646 31.1732 0.1144 3104 +3106 2 62.61257809632818 -961.2625713405768 31.584 0.1144 3105 +3107 2 61.96274021949483 -962.1542826525117 32.0886 0.1144 3106 +3108 2 61.17242557658031 -962.8885800889738 32.6973 0.1144 3107 +3109 2 60.26813854444549 -963.5572434299107 33.3262 0.1144 3108 +3110 2 59.52109248909696 -964.3600231949696 34.0049 0.1144 3109 +3111 2 59.47160582503005 -965.3482375189295 34.7782 0.1144 3110 +3112 2 59.67329584041735 -966.4114338120444 35.5603 0.1144 3111 +3113 2 58.815611499534185 -967.0431294756387 36.2877 0.1144 3112 +3114 2 57.805563257445016 -967.4206861583401 37.0048 0.1144 3113 +3115 2 56.75012305673491 -967.8567900023098 37.5995 0.1144 3114 +3116 2 55.862952499026676 -968.4709282453265 38.1973 0.1144 3115 +3117 2 55.857215030919036 -968.8572797710898 38.64 0.1144 3116 +3118 2 55.891768504101236 -970.0006173535611 39.2266 0.1144 3117 +3119 2 56.00599722714668 -971.1395532818868 39.4537 0.1144 3118 +3120 2 56.249247107726745 -972.2530335446655 39.7883 0.1144 3119 +3121 2 56.592501562076336 -973.3251315017428 40.266 0.1144 3120 +3122 2 56.97065449222836 -974.3694455356509 40.8957 0.1144 3121 +3123 2 57.21946521306759 -975.397217414618 41.7113 0.1144 3122 +3124 2 57.13805892230678 -976.26334939984 42.7736 0.1144 3123 +3125 2 56.80499348041266 -977.2229994670082 43.9258 0.1144 3124 +3126 2 56.543811360860474 -978.2746062520881 45.0629 0.1144 3125 +3127 2 56.48419466518209 -979.1842063123323 46.2759 0.1144 3126 +3128 2 56.680615703022056 -979.2757662702498 46.772 0.1144 3127 +3129 2 57.71542753127511 -979.7589325771336 47.3623 0.1144 3128 +3130 2 58.72998677344444 -980.2739801129288 47.6036 0.1144 3129 +3131 2 59.69857198788344 -980.8108030654655 47.9811 0.1144 3130 +3132 2 59.90362106470366 -981.7711912037175 48.5349 0.1144 3131 +3133 2 60.280863415644404 -982.7888355761073 49.1484 0.1144 3132 +3134 2 60.68190676249466 -983.8132388384739 49.7756 0.1144 3133 +3135 2 61.08836535917783 -984.8679446596308 50.3415 0.1144 3134 +3136 2 61.54636301883377 -985.9145779974094 50.7758 0.1144 3135 +3137 2 62.02423637333149 -986.9395197065136 51.0686 0.1144 3136 +3138 2 62.48319149791098 -987.9749132373133 51.2817 0.1144 3137 +3139 2 63.26287716383217 -988.7327306707081 51.6435 0.1144 3138 +3140 2 64.0327307178274 -989.4707155658116 52.1917 0.1144 3139 +3141 2 64.38794844370821 -990.3651204725626 52.9505 0.1144 3140 +3142 2 64.68724279618883 -991.3724672949495 53.7902 0.1144 3141 +3143 2 64.9573682544607 -992.4303044689954 54.6129 0.1144 3142 +3144 2 64.88230915692424 -993.52595794153 55.3624 0.1144 3143 +3145 2 64.57508522557069 -994.5901616137675 56.6591 0.1144 3144 +3146 2 56.791951230901816 -980.0627717659307 47.46 0.1144 3127 +3147 2 57.13934987670629 -981.0823143647922 48.5458 0.1144 3146 +3148 2 57.254211283735316 -982.1940626173994 49.4914 0.1144 3147 +3149 2 57.05362835779445 -983.2923100256918 50.337 0.1144 3148 +3150 2 56.70865651343945 -984.2898264048066 51.1739 0.1144 3149 +3151 2 57.064613843463036 -985.1663580637913 52.0618 0.1144 3150 +3152 2 57.76969027541443 -986.0333005273417 52.8517 0.1144 3151 +3153 2 57.92820491087534 -987.1652961414429 53.4912 0.1144 3152 +3154 2 57.740304563665944 -988.290207986664 54.0532 0.1144 3153 +3155 2 57.55616778750766 -989.3988040256547 54.5992 0.1144 3154 +3156 2 57.67857694369715 -990.5109541272512 55.1424 0.1144 3155 +3157 2 58.199286718840085 -991.453654599337 55.7469 0.1144 3156 +3158 2 58.88495811861634 -992.2562801543306 56.4365 0.1144 3157 +3159 2 59.55265354545028 -993.1482629944038 57.1262 0.1144 3158 +3160 2 60.16149689882829 -994.1136333228516 57.7399 0.1144 3159 +3161 2 60.39626992200661 -995.2329396382039 58.2798 0.1144 3160 +3162 2 60.38871865454132 -996.3672838445011 58.8297 0.1144 3161 +3163 2 60.559060061748596 -997.0523068112624 59.4283 0.1144 3162 +3164 2 60.835856892768675 -998.0862946082588 60.1555 0.1144 3163 +3165 2 61.20943466867266 -999.0562078494049 61.0081 0.1144 3164 +3166 2 61.84111419267654 -999.7531149228045 62.004 0.1144 3165 +3167 2 62.37949918592605 -1000.3422295543013 63.2089 0.1144 3166 +3168 2 62.42542117861663 -1001.3114302458958 64.4039 0.1144 3167 +3169 2 62.58657840346032 -1002.3417070479644 65.506 0.1144 3168 +3170 2 63.29578484852544 -1003.1586001060069 66.642 0.1144 3169 +3171 2 63.72890219172618 -1004.0633900799891 67.8975 0.1144 3170 +3172 2 64.16633932462378 -1004.7026208714584 69.3739 0.1144 3171 +3173 2 64.86941327186847 -1005.1095752481466 71.0276 0.1144 3172 +3174 2 64.59632471351935 -1005.2017589739272 72.9375 0.1144 3173 +3175 2 64.05192808609632 -1004.9190885792085 74.9431 0.1144 3174 +3176 2 63.151132655049565 -1004.9452376022334 76.8877 0.1144 3175 +3177 2 62.64854154649723 -1004.9275732991276 78.8144 0.1144 3176 +3178 2 62.64854154649723 -1004.9275732991276 80.8069 0.1144 3177 +3179 2 62.48867485822484 -1004.9542591002364 82.7968 0.1144 3178 +3180 2 61.99690649971461 -1005.035245281577 84.6944 0.1144 3179 +3181 2 61.22880000424712 -1005.753139724807 86.2624 0.1144 3180 +3182 2 60.45719095505973 -1006.4821238983062 87.5266 0.1144 3181 +3183 2 59.976886593767375 -1007.4596723065825 88.4794 0.1144 3182 +3184 2 59.600209720158745 -1008.4932510084183 89.1528 0.1144 3183 +3185 2 59.41487369145071 -1009.001302193303 90.937 0.1144 3184 +3186 2 58.914315248646716 -1009.9729098792224 91.7851 0.1144 3185 +3187 2 58.264477371813456 -1010.8646211911573 92.1514 0.1144 3186 +3188 2 57.594167552687736 -1011.7437583399479 92.5646 0.1144 3187 +3189 2 56.925400996756906 -1012.6223774745382 92.99 0.1144 3188 +3190 2 56.46455750710351 -1013.6120553706459 93.3142 0.1144 3189 +3191 2 56.21384843783244 -1014.7112721884691 93.4553 0.1144 3190 +3192 2 55.98177684799094 -1015.8143934090012 93.4531 0.1144 3191 +3193 2 55.99336689581423 -1016.9566912339101 93.4354 0.1144 3192 +3194 2 56.005958769239044 -1018.0996571497291 93.4172 0.1144 3193 +3195 2 56.017636334290785 -1019.2420033557779 93.41 0.1144 3194 +3196 2 56.02254456018659 -1020.384606558696 93.4181 0.1144 3195 +3197 2 55.99414968377664 -1021.5283382016061 93.4147 0.1144 3196 +3198 2 55.96680501410839 -1022.6726504181976 93.3806 0.1144 3197 +3199 2 56.14266965854557 -1023.7920703737267 93.2994 0.1144 3198 +3200 2 56.428169131893185 -1024.900226924363 93.1714 0.1144 3199 +3201 2 56.69056928151332 -1026.0073828535255 92.9732 0.1144 3200 +3202 2 56.89511125913401 -1027.1152329965462 92.6537 0.1144 3201 +3203 2 57.09965323675465 -1028.2230831395668 92.2242 0.1144 3202 +3204 2 57.242957007322104 -1028.4225090138689 92.6719 0.1144 3203 +3205 2 57.89734762062045 -1029.3385590917724 93.4268 0.1144 3204 +3206 2 58.552318807600386 -1030.2535589629342 93.7443 0.1144 3205 +3207 2 58.704948560168134 -1031.3536212378222 94.1335 0.1144 3206 +3208 2 58.85041267940704 -1032.4548640630037 94.5535 0.1144 3207 +3209 2 58.99679110701908 -1033.5567265979553 94.9746 0.1144 3208 +3210 2 59.142206845117926 -1034.6580569403654 95.3702 0.1144 3209 +3211 2 59.473849825836396 -1035.751159032276 95.6054 0.1144 3210 +3212 2 59.855226384874015 -1036.818165316333 95.6782 0.1144 3211 +3213 2 60.236022370230216 -1037.8862218071315 95.4528 0.1144 3212 +3214 2 57.10380096014893 -1029.3364715921703 91.7616 0.1144 3203 +3215 2 57.106594594220155 -1030.4804196004332 91.2526 0.1144 3214 +3216 2 57.247808340151096 -1031.5232095015926 90.578 0.1144 3215 +3217 2 57.564826291878376 -1032.1768829661623 89.6092 0.1144 3216 +3218 2 57.69486172307427 -1032.821341930437 88.4167 0.1144 3217 +3219 2 57.6540715451024 -1033.6210304706706 87.1298 0.1144 3218 +3220 2 57.61679110668928 -1034.584684500347 85.9102 0.1144 3219 +3221 2 57.59378759089799 -1035.6359868014295 84.8649 0.1144 3220 +3222 2 57.77663793984402 -1036.7239612496082 84.1596 0.1144 3221 +3223 2 58.11847424996142 -1037.7913902810128 83.8572 0.1144 3222 +3224 2 58.93446086214823 -1038.4907767183508 83.8068 0.1144 3223 +3225 2 59.935657955890235 -1039.044256961433 83.8975 0.1144 3224 +3226 2 60.92889620643086 -1039.6051065202837 84.0921 0.1144 3225 +3227 2 61.85108614121958 -1040.1619865919097 84.4348 0.1144 3226 +3228 2 62.72121946465671 -1040.8508571526427 84.814 0.1144 3227 +3229 2 63.55269746125788 -1041.6334213935634 85.1418 0.1144 3228 +3230 2 64.37322129573204 -1042.4308401399321 85.4224 0.1144 3229 +3231 2 65.17468760298414 -1043.2464036005772 85.6626 0.1144 3230 +3232 2 65.9660931581235 -1044.0303532783591 85.9398 0.1144 3231 +3233 2 66.59932536489515 -1044.8379256542535 86.3204 0.1144 3232 +3234 2 66.93583273828045 -1045.8513330933702 86.7191 0.1144 3233 +3235 2 67.55656276096198 -1046.787967258315 86.9896 0.1144 3234 +3236 2 68.23172546997216 -1047.7115013217701 87.1032 0.1144 3235 +3237 2 68.92160558193376 -1048.6222612688034 87.0484 0.1144 3236 +3238 2 69.67588339966306 -1049.4640706140126 86.7821 0.1144 3237 +3239 2 70.47083839423465 -1050.1990210930285 86.266 0.1144 3238 +3240 2 71.33428094199274 -1050.9024749839987 85.6036 0.1144 3239 +3241 2 72.00151718494595 -1051.8163710426888 84.8481 0.1144 3240 +3242 2 72.56614763456918 -1052.809632214465 84.0689 0.1144 3241 +3243 2 72.9327750752596 -1053.3547574933991 82.9937 0.1144 3242 +3244 2 72.99874939064034 -1054.0016234143673 81.7071 0.1144 3243 +3245 2 73.04381813901125 -1054.9297889749869 80.411 0.1144 3244 +3246 2 72.81049202094118 -1055.2714521755606 77.2248 0.1144 3245 +3247 2 59.718787445963954 -1008.6476997473023 89.4762 0.1144 3184 +3248 2 60.354725267420946 -1009.4764211101502 89.4286 0.1144 3247 +3249 2 60.8009963178412 -1010.4473282527529 89.2318 0.1144 3248 +3250 2 61.05341054966382 -1011.5632466841686 89.033 0.1144 3249 +3251 2 61.30731966354102 -1012.6787346186126 88.8628 0.1144 3250 +3252 2 61.56013018953652 -1013.7937294966035 88.7415 0.1144 3251 +3253 2 61.81350711087234 -1014.9101801205605 88.688 0.1144 3252 +3254 2 61.917603568572304 -1016.0343736881879 88.6878 0.1144 3253 +3255 2 61.80543986571831 -1017.1711029232134 88.7018 0.1144 3254 +3256 2 61.69446226797453 -1018.3083735958323 88.7228 0.1144 3255 +3257 2 61.58238608234899 -1019.4451512119982 88.7608 0.1144 3256 +3258 2 61.46198564106572 -1020.5353924255554 88.926 0.1144 3257 +3259 2 61.334524991185106 -1021.5983066660904 89.2508 0.1144 3258 +3260 2 61.29159367025005 -1022.6974380648243 89.5479 0.1144 3259 +3261 2 61.30227313886206 -1023.8130662282148 89.7607 0.1144 3260 +3262 2 61.33431795978089 -1024.8948002664388 90.095 0.1144 3261 +3263 2 61.77190623662574 -1025.9262659711367 90.4294 0.1144 3262 +3264 2 62.26876560511272 -1026.9499343881284 90.7371 0.1144 3263 +3265 2 62.33703327464144 -1028.0843723658504 91.0199 0.1144 3264 +3266 2 62.384621590276595 -1029.2231467386805 91.3055 0.1144 3265 +3267 2 62.58073509163563 -1030.3367354170464 91.5771 0.1144 3266 +3268 2 62.94604388756068 -1031.4210254214363 91.8053 0.1144 3267 +3269 2 63.309721903062496 -1032.5057850588864 92.0125 0.1144 3268 +3270 2 63.53306427544129 -1033.4448636842953 92.3392 0.1144 3269 +3271 2 63.60181618456164 -1034.221468438976 92.8892 0.1144 3270 +3272 2 63.39432938092938 -1035.2139764673152 93.3299 0.1144 3271 +3273 2 63.01223502375376 -1036.2811245133776 93.5346 0.1144 3272 +3274 2 62.60682348207007 -1037.3406384971786 93.5225 0.1144 3273 +3275 2 62.20203165015619 -1038.3992381726061 93.3218 0.1144 3274 +3276 2 61.80106072418499 -1039.4271565723473 92.9174 0.1144 3275 +3277 2 61.403694047503336 -1040.4415276702512 92.363 0.1144 3276 +3278 2 60.62119698923732 -1041.012865463334 91.7146 0.1144 3277 +3279 2 59.69025387250923 -1041.4106146976724 91.021 0.1144 3278 +3280 2 59.04142034631167 -1042.2531767341316 90.5027 0.1144 3279 +3281 2 58.53465643465785 -1043.276314529272 90.169 0.1144 3280 +3282 2 58.043375983273336 -1044.3092687625697 89.9808 0.1144 3281 +3283 2 57.553058221401955 -1045.3427551884088 89.9055 0.1144 3282 +3284 2 57.061777770017386 -1046.3757094217062 89.9091 0.1144 3283 +3285 2 56.57146000814606 -1047.4091958475453 89.9528 0.1144 3284 +3286 2 56.081229763503245 -1048.4427306545244 90.0004 0.1144 3285 +3287 2 55.58994931211868 -1049.475684887822 90.0491 0.1144 3286 +3288 2 55.099583169107234 -1050.5092588308894 90.1023 0.1144 3287 +3289 2 54.60830271772272 -1051.542213064187 90.162 0.1144 3288 +3290 2 54.1179849558514 -1052.5756994900262 90.2306 0.1144 3289 +3291 2 53.62766719398002 -1053.609185915865 90.3118 0.1144 3290 +3292 2 53.136386742595505 -1054.6421401491627 90.4114 0.1144 3291 +3293 2 52.646068980724124 -1055.6756265750018 90.536 0.1144 3292 +3294 2 52.154788529339555 -1056.7085808082993 90.6923 0.1144 3293 +3295 2 51.66552097420998 -1057.74264780782 90.8858 0.1144 3294 +3296 2 51.13930514466858 -1058.7393781629012 91.177 0.1144 3295 +3297 2 50.60056203769523 -1059.7186709917773 91.5746 0.1144 3296 +3298 2 50.06143681489027 -1060.6963814213705 92.0581 0.1144 3297 +3299 2 49.52164350117522 -1061.6750936765654 92.6058 0.1144 3298 +3300 2 48.98146807162851 -1062.6522235324771 93.1972 0.1144 3299 +3301 2 48.44220695045482 -1063.6299730981586 93.816 0.1144 3300 +3302 2 47.90203152090817 -1064.6071029540703 94.4482 0.1144 3301 +3303 2 47.36285791696304 -1065.584900900892 95.0902 0.1144 3302 +3304 2 46.82210191373474 -1066.5630809635454 95.7421 0.1144 3303 +3305 2 46.28288917370122 -1067.5407430119985 96.4018 0.1144 3304 +3306 2 46.02194315265939 -1068.5520311381538 97.1298 0.1144 3305 +3307 2 45.77290469927965 -1069.581671098887 97.9023 0.1144 3306 +3308 2 45.32116822597732 -1070.5881526330882 98.6448 0.1144 3307 +3309 2 44.825546154894425 -1071.5886555129719 99.3423 0.1144 3308 +3310 2 44.328429201756876 -1072.5895888898272 99.995 0.1144 3309 +3311 2 43.832807130673984 -1073.5900917697109 100.6026 0.1144 3310 +3312 2 43.3372725768196 -1074.5906430307348 101.1632 0.1144 3311 +3313 2 42.84106993205506 -1075.5921961173601 101.684 0.1144 3312 +3314 2 42.34544786097223 -1076.5926989972438 102.1703 0.1144 3313 +3315 2 41.84886310037609 -1077.592669684586 102.608 0.1144 3314 +3316 2 41.35375904349354 -1078.5947158276645 102.9756 0.1144 3315 +3317 2 40.857174282897404 -1079.5946865150067 103.2298 0.1144 3316 +3318 2 40.36155221181451 -1080.5951893948904 103.3805 0.1144 3317 +3319 2 39.8654370842786 -1081.5967908626558 103.4393 0.1144 3318 +3320 2 39.625220994373365 -1082.0573638537776 103.0431 0.1144 3319 +3321 2 39.337365155209625 -1082.6394573135065 102.2904 0.1144 3320 +3322 2 39.007964288352355 -1083.6468385119183 100.4158 0.1144 3321 +3323 2 61.03538811654005 -996.9496446750162 56.5412 0.1144 3162 +3324 2 61.83817310618866 -997.7084627298849 56.5236 0.1144 3323 +3325 2 62.275649238284586 -998.7188420071103 56.4948 0.1144 3324 +3326 2 62.57892921758028 -999.8159177812291 56.5275 0.1144 3325 +3327 2 62.537896123116894 -1000.9448928850992 56.6656 0.1144 3326 +3328 2 62.323160363910404 -1002.0379443997673 56.9859 0.1144 3327 +3329 2 62.242750071450075 -1003.1385237948436 57.4801 0.1144 3328 +3330 2 62.36979633995284 -1004.0531624861635 58.235 0.1144 3329 +3331 2 62.478699389606675 -1004.9865656015302 59.1573 0.1144 3330 +3332 2 62.883898872518955 -1006.0197794559899 60.023 0.1144 3331 +3333 2 63.30852564579823 -1007.0583627041768 60.8042 0.1144 3332 +3334 2 63.71356609824926 -1008.1083995996611 61.4914 0.1144 3333 +3335 2 63.99206419331895 -1009.212685659087 62.0645 0.1144 3334 +3336 2 64.26369125366301 -1010.31968628695 62.5534 0.1144 3335 +3337 2 64.60853333188533 -1011.4031741277157 63.0165 0.1144 3336 +3338 2 64.98186353049314 -1012.4775013464008 63.4964 0.1144 3337 +3339 2 64.9347666539231 -1013.4566388363465 64.1586 0.1144 3338 +3340 2 65.05229154869346 -1014.5137562750019 64.9001 0.1144 3339 +3341 2 65.2204032661027 -1015.585813036778 65.6673 0.1144 3340 +3342 2 65.27503462113842 -1016.6787764328013 66.4157 0.1144 3341 +3343 2 65.27446905818198 -1017.7816751317481 67.1012 0.1144 3342 +3344 2 65.11417074407257 -1018.7479372755237 67.7936 0.1144 3343 +3345 2 65.05872632404663 -1019.8271251953448 68.306 0.1144 3344 +3346 2 64.5870176849225 -1020.8695279293088 68.5966 0.1144 3345 +3347 2 64.45601804478906 -1022.0049853676502 68.7019 0.1144 3346 +3348 2 64.14002994123308 -1022.9099744385297 68.5787 0.1144 3347 +3349 2 63.39379436421291 -1022.9262714808764 68.1024 0.1144 3348 +3350 2 62.37696153738892 -1022.9118111111299 67.7692 0.1144 3349 +3351 2 61.41749116418708 -1023.3185850691802 67.4321 0.1144 3350 +3352 2 60.46510459749669 -1023.8613633642398 67.0359 0.1144 3351 +3353 2 59.97967002980687 -1024.555102450995 66.495 0.1144 3352 +3354 2 59.69311976193609 -1025.4777364596803 65.931 0.1144 3353 +3355 2 59.61675975391131 -1026.457721969356 65.7636 0.1144 3354 +3356 2 59.66047860794248 -1027.51585840281 65.8428 0.1144 3355 +3357 2 59.93219318551502 -1028.6229074118128 65.982 0.1144 3356 +3358 2 60.345480689979865 -1029.5991188636272 66.0108 0.1144 3357 +3359 2 61.105461034711595 -1030.153852101879 66.757 0.1144 3358 +3360 2 55.58476764448355 -968.7825366000008 38.6582 0.1144 3116 +3361 2 54.64361090141401 -969.4281896298664 39.0583 0.1144 3360 +3362 2 53.51322483915055 -969.5575428294422 39.4416 0.1144 3361 +3363 2 52.39127337175009 -969.4614327113597 39.8538 0.1144 3362 +3364 2 51.35339432077947 -969.8420003867558 40.3357 0.1144 3363 +3365 2 50.577874614686976 -970.6654893578187 40.822 0.1144 3364 +3366 2 49.68853585942435 -971.2692879238884 41.4019 0.1144 3365 +3367 2 48.677064714334676 -971.7558649503201 41.9745 0.1144 3366 +3368 2 47.61371778072507 -972.1732006410813 42.4726 0.1144 3367 +3369 2 46.59571751471077 -971.754288683273 42.9932 0.1144 3368 +3370 2 45.500306530477474 -971.7069010728563 43.5243 0.1144 3369 +3371 2 44.400783168148706 -971.9081620866997 44.0252 0.1144 3370 +3372 2 43.50450083532127 -972.6191859610256 44.4002 0.1144 3371 +3373 2 43.54747645530662 -972.8678136869269 44.5088 0.1144 3372 +3374 2 43.47230268798688 -973.9921980983748 43.6808 0.1144 3373 +3375 2 43.12362610290029 -975.0294867655317 43.3048 0.1144 3374 +3376 2 42.536825588315395 -975.9586743494365 42.8532 0.1144 3375 +3377 2 41.820762127274406 -976.81640298937 42.3864 0.1144 3376 +3378 2 41.04667474375532 -977.6420549333976 41.958 0.1144 3377 +3379 2 40.34146122423752 -978.5372040058371 41.6083 0.1144 3378 +3380 2 39.76190084706994 -979.5239835198205 41.3588 0.1144 3379 +3381 2 39.26563191366239 -980.5541800281308 41.197 0.1144 3380 +3382 2 38.931584514919024 -981.6478893201241 41.0917 0.1144 3381 +3383 2 38.58481660548338 -982.7385656914579 41.0158 0.1144 3382 +3384 2 38.14477133449023 -983.7945875707181 40.9455 0.1144 3383 +3385 2 37.51195765608671 -984.7454146729957 40.8498 0.1144 3384 +3386 2 36.76454142951363 -985.6079779890805 40.7137 0.1144 3385 +3387 2 35.96679388174303 -986.4245493699322 40.546 0.1144 3386 +3388 2 35.104096566911096 -987.1763067263855 40.3679 0.1144 3387 +3389 2 34.167135095991966 -987.8309062467131 40.182 0.1144 3388 +3390 2 33.86798094846131 -988.8850596160172 39.8801 0.1144 3389 +3391 2 33.8818929997106 -990.0091020773283 39.5349 0.1144 3390 +3392 2 33.70560039697054 -991.139059739464 39.2221 0.1144 3391 +3393 2 33.34436009791895 -992.2203643479536 38.9169 0.1144 3392 +3394 2 32.642493830821564 -993.0951967794003 38.5734 0.1144 3393 +3395 2 31.75640632282088 -993.8183695444884 38.2788 0.1144 3394 +3396 2 30.94746212462192 -994.6221239436677 37.9834 0.1144 3395 +3397 2 30.224925748682665 -995.5010693546259 37.6681 0.1144 3396 +3398 2 29.653949149076055 -996.4913372439881 37.3778 0.1144 3397 +3399 2 29.093467527715802 -997.4886638465198 37.1101 0.1144 3398 +3400 2 28.490879670280265 -998.4391751216086 36.8021 0.1144 3399 +3401 2 28.115283749535195 -999.2746476611452 35.56 0.1144 3400 +3402 2 42.795230273719255 -973.1029156483974 44.7698 0.1144 3372 +3403 2 41.80268930315506 -973.6404068034421 45.0982 0.1144 3402 +3404 2 40.898137524527215 -974.3403461720886 45.3244 0.1144 3403 +3405 2 40.38527236462738 -975.3627391384969 45.4633 0.1144 3404 +3406 2 40.054200551652144 -976.4580933892546 45.5417 0.1144 3405 +3407 2 39.729699619982966 -977.5558232491682 45.5792 0.1144 3406 +3408 2 39.09136526701502 -978.5048553159716 45.5801 0.1144 3407 +3409 2 38.02310658920484 -978.9143338591009 45.563 0.1144 3408 +3410 2 36.94321031481533 -979.285956539463 45.5224 0.1144 3409 +3411 2 35.94564293026724 -979.8443214857892 45.4672 0.1144 3410 +3412 2 34.99075862631423 -980.474501504565 45.4168 0.1144 3411 +3413 2 34.1963546018022 -981.2968061961722 45.3768 0.1144 3412 +3414 2 33.15895862392679 -981.778192553569 45.3508 0.1144 3413 +3415 2 32.03345575584484 -981.5677984140609 45.3393 0.1144 3414 +3416 2 30.947647972161263 -981.2407471690059 45.2906 0.1144 3415 +3417 2 29.843781922896596 -981.0147768274102 45.192 0.1144 3416 +3418 2 28.888692869266436 -981.2410374506657 43.874 0.1144 3417 +3419 2 27.796383521406682 -981.4410303969865 43.2555 0.1144 3418 +3420 2 26.709902925675948 -981.7110895666153 42.9772 0.1144 3419 +3421 2 25.62333257898274 -982.044972258121 42.7 0.1144 3420 +3422 2 24.50838052861087 -981.7894494110571 42.4743 0.1144 3421 +3423 2 23.36618542887814 -981.7109425696581 42.2985 0.1144 3422 +3424 2 22.338326964325375 -982.2106274472034 42.161 0.1144 3423 +3425 2 21.23514994196057 -982.5131625977665 42.0546 0.1144 3424 +3426 2 20.099123310759722 -982.6576797012613 41.9619 0.1144 3425 +3427 2 19.2810914991407 -983.4538965091591 41.8488 0.1144 3426 +3428 2 18.472246296955888 -984.1936039708646 41.6349 0.1144 3427 +3429 2 17.70672235642411 -984.7625557056125 41.2569 0.1144 3428 +3430 2 17.468360832987543 -984.6569513300166 41.0455 0.1144 3429 +3431 2 16.42434345819072 -984.3464895914362 41.0676 0.1144 3430 +3432 2 15.345011617892311 -984.5562847975729 41.2518 0.1144 3431 +3433 2 14.420894281200162 -985.1709083474187 41.5187 0.1144 3432 +3434 2 13.287821405765925 -985.019059873751 41.7642 0.1144 3433 +3435 2 12.224975880944783 -985.1517002913002 41.9714 0.1144 3434 +3436 2 11.527991175711179 -986.0199760197819 42.1537 0.1144 3435 +3437 2 10.574683580630136 -986.5125406542828 42.3027 0.1144 3436 +3438 2 9.56558757887484 -986.8670855304853 42.2484 0.1144 3437 +3439 2 8.520051333550214 -987.2877542953256 42.1448 0.1144 3438 +3440 2 7.458213460336424 -987.702153536407 42.0997 0.1144 3439 +3441 2 6.392392349747183 -987.8331489951918 42.1618 0.1144 3440 +3442 2 5.3262028358459474 -987.8345948330625 42.287 0.1144 3441 +3443 2 4.302839796863225 -988.3381360234769 42.3998 0.1144 3442 +3444 2 3.336405083332579 -988.9489047558814 42.499 0.1144 3443 +3445 2 2.4948083743144025 -989.6980440148777 42.581 0.1144 3444 +3446 2 1.608761032008431 -990.3337133606799 42.6667 0.1144 3445 +3447 2 0.5169265417984548 -990.5471090869444 42.6916 0.1144 3446 +3448 2 -0.6017230634660677 -990.5064137476346 42.5659 0.1144 3447 +3449 2 -1.6591829180797504 -990.409391554913 42.2523 0.1144 3448 +3450 2 -2.65637447862332 -990.5627868989772 41.7816 0.1144 3449 +3451 2 -3.7303498994082815 -990.7794281820924 41.3207 0.1144 3450 +3452 2 -4.869383794141868 -990.8700645249573 40.9688 0.1144 3451 +3453 2 -5.99529429958767 -990.868546721667 40.6832 0.1144 3452 +3454 2 -7.100543086158041 -990.6640933045159 40.5334 0.1144 3453 +3455 2 -7.961386473568609 -990.0979352414703 40.6448 0.1144 3454 +3456 2 -8.965165092639921 -989.6057583892157 40.8271 0.1144 3455 +3457 2 -10.057063675390225 -989.3015063144685 40.917 0.1144 3456 +3458 2 -11.165246386605986 -989.0457264705356 40.9909 0.1144 3457 +3459 2 -12.295608422765127 -988.9267989833419 41.0452 0.1144 3458 +3460 2 -13.423800765942104 -988.8560331243636 40.9536 0.1144 3459 +3461 2 -14.539153733660243 -988.8589805643065 40.7078 0.1144 3460 +3462 2 -15.651676531515449 -989.0909906379078 40.4088 0.1144 3461 +3463 2 -16.732773089356442 -989.4645778333845 40.1094 0.1144 3462 +3464 2 -17.761429988371447 -989.9586794768841 39.7793 0.1144 3463 +3465 2 -18.737469999295797 -990.5419711595565 39.3974 0.1144 3464 +3466 2 -19.733411828010276 -991.0880944733024 38.9707 0.1144 3465 +3467 2 -20.779087700865347 -991.5348523259795 38.5003 0.1144 3466 +3468 2 -21.795336187214843 -991.9757111174224 37.9193 0.1144 3467 +3469 2 -22.702397549748866 -992.3631244039756 37.1468 0.1144 3468 +3470 2 -23.6797427037759 -992.248917486935 36.2438 0.1144 3469 +3471 2 -24.784277407735573 -992.2370495575186 35.3651 0.1144 3470 +3472 2 -25.892991244255285 -992.377012405124 34.5394 0.1144 3471 +3473 2 -26.961442261313977 -992.5693987719649 33.7322 0.1144 3472 +3474 2 -28.016582774425842 -992.8749511694188 32.9762 0.1144 3473 +3475 2 -28.970568443774795 -993.4704348994038 32.3151 0.1144 3474 +3476 2 -29.75632360621026 -994.2438171300673 31.6896 0.1144 3475 +3477 2 -30.658329266435373 -994.8562672577691 31.073 0.1144 3476 +3478 2 -31.687415632815686 -995.2612347015595 30.4965 0.1144 3477 +3479 2 -32.70058907156138 -995.765152783216 30.0112 0.1144 3478 +3480 2 -33.6991191456226 -996.3229855370008 29.6433 0.1144 3479 +3481 2 -34.816344780649075 -996.5680498559859 29.3714 0.1144 3480 +3482 2 -35.95974119343981 -996.5791468473561 29.1673 0.1144 3481 +3483 2 -37.103732358253126 -996.593799998176 28.9962 0.1144 3482 +3484 2 -38.2394837937816 -996.7305850730015 28.8151 0.1144 3483 +3485 2 -39.34261393043414 -996.9952107550675 28.5586 0.1144 3484 +3486 2 -40.44006436206098 -997.2448084315834 28.2052 0.1144 3485 +3487 2 -41.557626722634666 -997.4125589315197 27.7811 0.1144 3486 +3488 2 -42.667294294916104 -997.5377116343553 27.282 0.1144 3487 +3489 2 -43.753562292087 -997.3202129255719 26.7206 0.1144 3488 +3490 2 -44.79063832305289 -996.9663977817526 26.1156 0.1144 3489 +3491 2 -45.78922207810618 -996.5477074138868 25.4857 0.1144 3490 +3492 2 -46.765312040860806 -996.1284260231602 24.8411 0.1144 3491 +3493 2 -47.82017316331721 -996.5256577091194 24.2936 0.1144 3492 +3494 2 -48.68574436834754 -997.2733125352406 23.9042 0.1144 3493 +3495 2 -49.829790343018345 -997.2525137891313 23.6448 0.1144 3494 +3496 2 -50.90313237914475 -996.8578542225629 23.4823 0.1144 3495 +3497 2 -52.0470818828355 -996.8228259053654 23.3811 0.1144 3496 +3498 2 -53.15905681438028 -997.0891892880142 23.3055 0.1144 3497 +3499 2 -54.20255926509134 -997.5580588171583 23.2217 0.1144 3498 +3500 2 -54.649638193543325 -998.288655670241 23.5234 0.1144 3499 +3501 2 -55.25399090411619 -999.2591014704913 22.7993 0.1144 3500 +3502 2 -55.80428442066716 -1000.2189830129962 22.4804 0.1144 3501 +3503 2 -56.03822824962677 -1001.2072630618143 21.9976 0.1144 3502 +3504 2 -56.266551942186254 -1002.2587524775556 21.4633 0.1144 3503 +3505 2 -56.79001004674018 -1003.2504943506136 20.998 0.1144 3504 +3506 2 -57.510233373005036 -1004.1254623502022 20.6489 0.1144 3505 +3507 2 -58.33252824084548 -1004.9035541380545 20.4354 0.1144 3506 +3508 2 -59.30426203899802 -1005.493111324024 20.3872 0.1144 3507 +3509 2 -60.435404874601176 -1005.5671998215366 20.5781 0.1144 3508 +3510 2 -61.36443566177874 -1005.0274481689443 21.0475 0.1144 3509 +3511 2 -62.18248947662522 -1004.8993776570569 21.8484 0.1144 3510 +3512 2 -63.05811009057723 -1005.4074659175218 22.7683 0.1144 3511 +3513 2 -63.930371041680246 -1006.0820647562259 23.6508 0.1144 3512 +3514 2 -64.73030449728583 -1005.7248586020194 25.76 0.1144 3513 +3515 2 -55.372045795325164 -997.6566554986526 22.9414 0.1144 3499 +3516 2 -56.47592122653157 -997.8019211600416 22.6675 0.1144 3515 +3517 2 -57.578630148895286 -997.5858458200801 22.3393 0.1144 3516 +3518 2 -58.56667250581148 -997.0108434279637 22.0419 0.1144 3517 +3519 2 -59.70262300060597 -996.8809423757119 21.7908 0.1144 3518 +3520 2 -60.83098944659707 -997.0610022922996 21.5429 0.1144 3519 +3521 2 -61.95977281263481 -996.9677426410226 21.2477 0.1144 3520 +3522 2 -63.076254686166465 -996.8119257097367 20.8972 0.1144 3521 +3523 2 -64.16786715824364 -996.6489468742836 20.4598 0.1144 3522 +3524 2 -65.18650280779681 -996.1956332262878 19.9699 0.1144 3523 +3525 2 -66.30149082888019 -996.1270251156845 19.4583 0.1144 3524 +3526 2 -67.41503262153381 -996.2852291485466 18.9678 0.1144 3525 +3527 2 -68.41929907246853 -995.805922883694 18.4923 0.1144 3526 +3528 2 -69.56052103350882 -995.7514922338768 18.122 0.1144 3527 +3529 2 -70.67331799742985 -995.9035950184929 17.7806 0.1144 3528 +3530 2 -71.8063638182729 -996.0615290802722 17.5416 0.1144 3529 +3531 2 -72.83828973645797 -996.6086698933888 17.2488 0.1144 3530 +3532 2 -73.97049798675044 -996.7723230875824 17.1386 0.1144 3531 +3533 2 -75.05900616052978 -996.4358948550937 17.0679 0.1144 3532 +3534 2 -76.15590723041831 -996.7576677919254 16.9899 0.1144 3533 +3535 2 -77.1031026622525 -997.3999825231222 16.8918 0.1144 3534 +3536 2 -77.82483374682207 -997.9630925315274 15.96 0.1144 3535 +3537 2 -71.61307673361844 -995.1017346268053 19.7235 0.1144 3530 +3538 2 -70.6860197818697 -994.6756707721844 20.6585 0.1144 3537 +3539 2 -69.91047302118605 -994.1619643365688 21.749 0.1144 3538 +3540 2 -69.18641737052525 -994.0132009178591 22.9806 0.1144 3539 +3541 2 -68.34376832029022 -994.0542022365943 25.76 0.1144 3540 +3542 2 16.765089260276937 -985.3569840042663 39.2109 0.1144 3429 +3543 2 15.8584109452174 -985.9969022279486 38.2418 0.1144 3542 +3544 2 14.995860716239548 -986.6704705930684 37.816 0.1144 3543 +3545 2 14.200930753382181 -987.4178706560546 37.3083 0.1144 3544 +3546 2 13.534439315164974 -988.3161438955441 36.7945 0.1144 3545 +3547 2 12.926123371563506 -989.2817706934119 36.3521 0.1144 3546 +3548 2 12.364804179652651 -990.2733781635293 35.9727 0.1144 3547 +3549 2 11.90713220858305 -991.3118857787623 35.642 0.1144 3548 +3550 2 11.527800800984494 -992.3858173423218 35.3671 0.1144 3549 +3551 2 11.143911408334759 -993.4584860629486 35.1296 0.1144 3550 +3552 2 10.766012323309553 -994.5345805994729 34.9252 0.1144 3551 +3553 2 10.547184482950229 -995.6540500033797 34.7444 0.1144 3552 +3554 2 10.205249754238196 -996.7382571889768 34.5758 0.1144 3553 +3555 2 9.60224184901017 -997.7108175810516 34.4574 0.1144 3554 +3556 2 9.361984601434983 -998.828952628793 34.3955 0.1144 3555 +3557 2 9.432450711187471 -999.1671629588782 34.3854 0.1144 3556 +3558 2 9.77342229819942 -1000.2576521779218 34.4204 0.1144 3557 +3559 2 10.123151162875217 -1001.3463553152428 34.4977 0.1144 3558 +3560 2 10.221214156400208 -1002.4789825837213 34.6284 0.1144 3559 +3561 2 10.175105062685304 -1003.605151581464 34.8365 0.1144 3560 +3562 2 10.105828861171972 -1004.7211414281488 35.1162 0.1144 3561 +3563 2 9.789649485605139 -1005.803818324765 35.4066 0.1144 3562 +3564 2 9.336651664797841 -1006.8526797952862 35.6555 0.1144 3563 +3565 2 9.07716558470554 -1007.9628128432756 35.8616 0.1144 3564 +3566 2 8.95903653197405 -1009.0987581134805 36.0352 0.1144 3565 +3567 2 8.760946584527574 -1010.2232930674595 36.1824 0.1144 3566 +3568 2 8.272916914583504 -1011.2501602308523 36.3171 0.1144 3567 +3569 2 7.713485499964918 -1012.2480674070655 36.4487 0.1144 3568 +3570 2 7.409983478539857 -1013.34563674109 36.5834 0.1144 3569 +3571 2 7.293349307863082 -1014.4811515143231 36.7315 0.1144 3570 +3572 2 7.168082978485188 -1015.6132654294058 36.9102 0.1144 3571 +3573 2 7.018077921431711 -1016.7407301130471 37.1126 0.1144 3572 +3574 2 6.711445012939066 -1017.8274275775833 37.3422 0.1144 3573 +3575 2 6.010221879004575 -1018.6986163323518 37.5838 0.1144 3574 +3576 2 5.358310041862865 -1019.6296302992689 37.7919 0.1144 3575 +3577 2 4.886765657789738 -1020.6669819917286 37.9358 0.1144 3576 +3578 2 4.375825876916224 -1021.6904393432196 37.9898 0.1144 3577 +3579 2 3.842599715345557 -1022.6975771593185 37.9271 0.1144 3578 +3580 2 3.2151893421677755 -1023.6173408700774 37.7202 0.1144 3579 +3581 2 2.5365422931708395 -1024.4762149836051 37.3951 0.1144 3580 +3582 2 2.021246714257927 -1025.46972693439 37.044 0.1144 3581 +3583 2 1.8411409551990232 -1026.5923205053468 36.7562 0.1144 3582 +3584 2 1.972444491548515 -1027.72641280377 36.5697 0.1144 3583 +3585 2 2.1426436093011034 -1028.8583548121414 36.4902 0.1144 3584 +3586 2 2.2086231869026847 -1029.9994120523093 36.5123 0.1144 3585 +3587 2 2.2642239514690914 -1031.142501591663 36.6212 0.1144 3586 +3588 2 2.402591425577725 -1032.2778709113595 36.7984 0.1144 3587 +3589 2 2.5787614480240677 -1033.4039726888163 37.0684 0.1144 3588 +3590 2 2.6971395871141226 -1034.5021252584468 37.4931 0.1144 3589 +3591 2 2.6564337986249598 -1035.597230864671 38.0579 0.1144 3590 +3592 2 2.2321810950721215 -1036.6437010522673 38.675 0.1144 3591 +3593 2 1.4492868486215684 -1037.4474591806083 39.3478 0.1144 3592 +3594 2 0.5055830555064631 -1037.9296789135728 40.1344 0.1144 3593 +3595 2 -0.4067159973693606 -1038.23706903723 41.0578 0.1144 3594 +3596 2 -1.1759513986501702 -1038.796199109231 42.0678 0.1144 3595 +3597 2 -1.843247700046959 -1039.6533497005175 43.0237 0.1144 3596 +3598 2 -2.5363462403012136 -1040.5499400492818 43.8564 0.1144 3597 +3599 2 -3.3383818020403737 -1041.345744559011 44.5886 0.1144 3598 +3600 2 -4.076992661109898 -1042.1923797395139 45.2463 0.1144 3599 +3601 2 -4.759088658096914 -1043.074028065602 45.8651 0.1144 3600 +3602 2 -5.554284862875136 -1043.8148822050293 46.5077 0.1144 3601 +3603 2 -6.399658291679145 -1044.4952039053094 47.1887 0.1144 3602 +3604 2 -7.280603511785216 -1045.1925393548402 47.8514 0.1144 3603 +3605 2 -8.17646057223061 -1045.8932861117005 48.4641 0.1144 3604 +3606 2 -9.01083804219013 -1046.6529293026947 49.0636 0.1144 3605 +3607 2 -9.710484001431155 -1047.5119639421114 49.6916 0.1144 3606 +3608 2 -10.292020838320752 -1048.4361772223342 50.3644 0.1144 3607 +3609 2 -10.718239552416208 -1049.4436251752109 51.0768 0.1144 3608 +3610 2 -11.028846143116652 -1050.501959638324 51.8202 0.1144 3609 +3611 2 -11.24416247600459 -1051.596061359734 52.5781 0.1144 3610 +3612 2 -11.33228356854886 -1052.7250573619626 53.3266 0.1144 3611 +3613 2 -11.359933616226272 -1053.8626877566267 54.0767 0.1144 3612 +3614 2 -11.350486808210178 -1054.9972877556652 54.8761 0.1144 3613 +3615 2 -11.222287006373563 -1056.0917288645464 55.8146 0.1144 3614 +3616 2 -11.194557817799478 -1057.0560140827783 57.0024 0.1144 3615 +3617 2 -11.21336609907155 -1057.6338435546434 58.5281 0.1144 3616 +3618 2 -10.600891517075127 -1057.9306104773425 60.277 0.1144 3617 +3619 2 -10.812719978036966 -1058.4082478325886 62.23 0.1144 3618 +3620 2 -11.362440708161557 -1058.9227052155384 64.2046 0.1144 3619 +3621 2 -12.226290855652337 -1058.9105469804654 66.0699 0.1144 3620 +3622 2 -13.105487535437476 -1058.8008938534929 67.7622 0.1144 3621 +3623 2 -13.865964064367972 -1058.5426278879731 69.2913 0.1144 3622 +3624 2 -14.829472678139325 -1058.277929774666 71.96 0.1144 3623 +3625 2 9.238895813921943 -999.1177508981585 34.2479 0.1144 3556 +3626 2 8.482986590356802 -999.8253629993334 35.0874 0.1144 3625 +3627 2 7.418505526344177 -1000.0721623193456 35.4743 0.1144 3626 +3628 2 6.42394443605491 -999.9510661687762 35.9246 0.1144 3627 +3629 2 5.91678751756524 -999.0053457502443 36.3395 0.1144 3628 +3630 2 5.443307893067811 -997.9867179255774 36.7063 0.1144 3629 +3631 2 4.484827927014237 -997.6372741179717 37.0443 0.1144 3630 +3632 2 3.419775671261732 -997.513887641741 37.469 0.1144 3631 +3633 2 2.502683663689595 -996.9192623566687 37.9176 0.1144 3632 +3634 2 2.1413016642601974 -995.9012448221987 38.4409 0.1144 3633 +3635 2 1.7820367816895555 -994.832065115998 38.955 0.1144 3634 +3636 2 1.0571564983557664 -993.9515466637018 39.3904 0.1144 3635 +3637 2 0.29641471947974196 -993.1166761372891 39.7942 0.1144 3636 +3638 2 -0.4226644690274952 -992.2419926913182 40.1478 0.1144 3637 +3639 2 -0.9861221179807558 -991.2939425197364 40.9517 0.1144 3638 +3640 2 29.259356551645993 -981.8119322610859 45.2816 0.1144 3417 +3641 2 28.79815557368144 -982.821065804243 45.4331 0.1144 3640 +3642 2 28.636228440398014 -983.9510808012702 45.5316 0.1144 3641 +3643 2 28.744950667220223 -985.0857157414139 45.5213 0.1144 3642 +3644 2 28.972343925450787 -986.1735192145244 45.355 0.1144 3643 +3645 2 29.071318527793522 -987.2451768268667 45.0246 0.1144 3644 +3646 2 28.9621005585974 -988.350740974804 44.6102 0.1144 3645 +3647 2 28.945197261445543 -989.4904274222735 44.238 0.1144 3646 +3648 2 29.00646877728616 -990.632766908305 43.9592 0.1144 3647 +3649 2 28.984126767982104 -991.777330897176 43.7738 0.1144 3648 +3650 2 28.911339058997413 -992.918688426358 43.6657 0.1144 3649 +3651 2 28.822124603161 -994.058963371654 43.6072 0.1144 3650 +3652 2 28.599058334100846 -995.1813458018477 43.5655 0.1144 3651 +3653 2 28.125868991263246 -996.2216730800756 43.5184 0.1144 3652 +3654 2 27.552434820088877 -997.2118392738681 43.4585 0.1144 3653 +3655 2 26.984951820450647 -998.2052953851894 43.3726 0.1144 3654 +3656 2 26.279863419895435 -999.0952575177561 43.23 0.1144 3655 +3657 2 25.39467977108842 -999.7955059935736 43.0363 0.1144 3656 +3658 2 24.380398790709535 -1000.3132089710051 42.8369 0.1144 3657 +3659 2 23.29010802951575 -1000.6515479519923 42.6642 0.1144 3658 +3660 2 22.20909898890318 -1001.0251835286093 42.5354 0.1144 3659 +3661 2 21.21429455393212 -1001.5903319924328 42.4609 0.1144 3660 +3662 2 20.275368567898283 -1002.2437312293088 42.4388 0.1144 3661 +3663 2 19.39219408618436 -1002.9711424230977 42.4609 0.1144 3662 +3664 2 18.698520196838274 -1003.880554978124 42.5186 0.1144 3663 +3665 2 18.088559294472418 -1004.8491573617599 42.6098 0.1144 3664 +3666 2 17.31627739560679 -1005.6928326302634 42.7339 0.1144 3665 +3667 2 18.09743228645567 -1006.5168208380084 40.6101 0.1144 3666 +3668 2 18.888864858555166 -1007.128133731558 39.8566 0.1144 3667 +3669 2 19.83540095600847 -1007.6645366363022 39.0068 0.1144 3668 +3670 2 20.66358227743217 -1007.9210387782911 37.9795 0.1144 3669 +3671 2 21.12422771342932 -1008.3953059838777 36.7814 0.1144 3670 +3672 2 20.990408818433593 -1009.4507060565242 35.7742 0.1144 3671 +3673 2 20.93397139096288 -1010.3710904690282 33.6591 0.1144 3672 +3674 2 16.541382158052443 -1006.4017180235504 42.9117 0.1144 3666 +3675 2 16.03666907461428 -1007.4023370686451 43.1917 0.1144 3674 +3676 2 15.93482937493809 -1008.5015821075559 43.5728 0.1144 3675 +3677 2 15.361518827298426 -1009.4487394102067 44.0194 0.1144 3676 +3678 2 14.36043321526148 -1009.9828780882416 44.4531 0.1144 3677 +3679 2 13.30484293784167 -1010.4215270210075 44.8353 0.1144 3678 +3680 2 12.244626891299617 -1010.8497345812569 45.1618 0.1144 3679 +3681 2 11.281103708627938 -1011.4269197910936 45.5204 0.1144 3680 +3682 2 10.637102333547602 -1012.3506519594707 45.8973 0.1144 3681 +3683 2 10.256183302076295 -1013.4131936393417 46.2924 0.1144 3682 +3684 2 9.9382896882463 -1014.4518456408736 46.7695 0.1144 3683 +3685 2 9.3558110602022 -1015.422614726636 47.229 0.1144 3684 +3686 2 8.606851570434344 -1016.285696056921 47.6204 0.1144 3685 +3687 2 7.681574581806956 -1016.9402419715187 47.9816 0.1144 3686 +3688 2 6.755280093809006 -1017.558803796646 48.3546 0.1144 3687 +3689 2 5.9813480115893185 -1018.3936826513973 48.6738 0.1144 3688 +3690 2 4.929938827978731 -1018.8437840273331 48.9112 0.1144 3689 +3691 2 4.055342899236109 -1019.5629115969805 49.1462 0.1144 3690 +3692 2 3.0180969980705186 -1020.0417528655811 49.3394 0.1144 3691 +3693 2 2.0525140334316916 -1020.6557347776919 49.4732 0.1144 3692 +3694 2 1.0250376847106395 -1021.1570020545201 49.5628 0.1144 3693 +3695 2 0.09476326030869586 -1021.8230681963588 49.6311 0.1144 3694 +3696 2 -0.4587169827736375 -1022.8242652901008 49.6916 0.1144 3695 +3697 2 -1.0121972258559708 -1023.8254623838428 49.7504 0.1144 3696 +3698 2 -0.6046648621481268 -1024.5070068229888 49.7288 0.1144 3697 +3699 2 -0.07386970737201182 -1025.5023591242702 51.3747 0.1144 3698 +3700 2 0.37802623821647785 -1026.4227863643932 52.0565 0.1144 3699 +3701 2 0.7953754682715157 -1026.7318892925136 53.0435 0.1144 3700 +3702 2 0.8950406545695841 -1027.0340231215366 54.3074 0.1144 3701 +3703 2 0.6011319859310902 -1028.097703554984 55.4436 0.1144 3702 +3704 2 0.4916492702419646 -1029.2345437306312 56.3928 0.1144 3703 +3705 2 0.6142762872121352 -1030.353327273015 57.2228 0.1144 3704 +3706 2 0.6225696974892116 -1031.4519823186715 57.9919 0.1144 3705 +3707 2 0.07921127057295507 -1032.4443777740717 58.6617 0.1144 3706 +3708 2 -0.7985666259327218 -1033.0911316255533 59.3561 0.1144 3707 +3709 2 -1.7526205451738974 -1033.5519755570313 60.1465 0.1144 3708 +3710 2 -2.7466947955750243 -1033.9880674563938 60.9874 0.1144 3709 +3711 2 -3.7389256293618587 -1034.4185511639635 61.8638 0.1144 3710 +3712 2 -4.702773592973529 -1034.9797885050602 62.7687 0.1144 3711 +3713 2 -5.616775367695595 -1035.6614777346986 63.6222 0.1144 3712 +3714 2 -6.665374716016913 -1036.0804531596345 64.4487 0.1144 3713 +3715 2 -7.660371527867596 -1035.9460901274902 65.3682 0.1144 3714 +3716 2 -8.112131401861632 -1035.651900535137 66.5006 0.1144 3715 +3717 2 -7.975471949451276 -1036.184958321936 69.44 0.1144 3716 +3718 2 -1.8602417940617215 -1024.2598984094402 49.8252 0.1144 3697 +3719 2 -2.8857678060091416 -1024.764871922428 49.931 0.1144 3718 +3720 2 -3.8842353205890845 -1025.3201112062764 50.0864 0.1144 3719 +3721 2 -4.845061842326913 -1025.9327233552951 50.2992 0.1144 3720 +3722 2 -5.835211529966273 -1026.4989596275943 50.5593 0.1144 3721 +3723 2 -6.816086217042141 -1027.0508985447345 50.89 0.1144 3722 +3724 2 -7.608481540282526 -1027.77490468539 51.3408 0.1144 3723 +3725 2 -8.114391178010294 -1028.7514382938512 51.844 0.1144 3724 +3726 2 -8.458202904608584 -1029.834493577137 52.3099 0.1144 3725 +3727 2 -8.843573000971844 -1030.9050868420277 52.7164 0.1144 3726 +3728 2 -9.512298925386574 -1031.8216638262552 53.0869 0.1144 3727 +3729 2 -10.438533378937507 -1032.4874495478316 53.4369 0.1144 3728 +3730 2 -11.397661336180988 -1033.1087705933742 53.7673 0.1144 3729 +3731 2 -12.281049949513772 -1033.8034983946272 54.1355 0.1144 3730 +3732 2 -12.737509128739873 -1034.688306858477 54.6571 0.1144 3731 +3733 2 -12.471409928799119 -1035.618457231154 55.2465 0.1144 3732 +3734 2 -13.305658220407622 -1036.328467335271 55.8998 0.1144 3733 +3735 2 -13.979460609895227 -1037.116776944448 56.6404 0.1144 3734 +3736 2 -14.801558515313673 -1037.8544141750072 57.365 0.1144 3735 +3737 2 -15.650213937501348 -1038.6140484122498 57.9897 0.1144 3736 +3738 2 -16.519603523440196 -1039.342567147672 58.5511 0.1144 3737 +3739 2 -17.438468661222657 -1040.0163117124498 59.0554 0.1144 3738 +3740 2 -18.399019987288057 -1040.6211918327995 59.5406 0.1144 3739 +3741 2 -19.32643769068835 -1041.218222555141 60.0804 0.1144 3740 +3742 2 -20.186560200208532 -1041.859082569978 60.7118 0.1144 3741 +3743 2 -21.02217452574712 -1042.5382862794454 61.4104 0.1144 3742 +3744 2 -21.786813408599926 -1043.3443664112128 62.1102 0.1144 3743 +3745 2 -22.42879666283568 -1044.280983345333 62.7628 0.1144 3744 +3746 2 -23.06863112244804 -1045.2186739095878 63.3822 0.1144 3745 +3747 2 -23.765387517721535 -1046.1171270778973 63.9839 0.1144 3746 +3748 2 -24.482678414768657 -1047.005599552999 64.5708 0.1144 3747 +3749 2 -24.54894259398094 -1048.061780890911 65.3027 0.1144 3748 +3750 2 -23.738070048601173 -1048.638135274211 66.2116 0.1144 3749 +3751 2 -23.418639449768932 -1049.493103123039 67.2988 0.1144 3750 +3752 2 -23.554270549435728 -1050.4808859204209 68.4541 0.1144 3751 +3753 2 -23.971961791255353 -1051.4185484004781 69.613 0.1144 3752 +3754 2 -24.625474692304806 -1052.238984582129 70.7249 0.1144 3753 +3755 2 -25.541265248304967 -1052.8503271681975 71.7119 0.1144 3754 +3756 2 -26.530371449220354 -1053.3675500633897 72.5648 0.1144 3755 +3757 2 -27.590807317792326 -1053.6258409626598 73.3426 0.1144 3756 +3758 2 -28.65581684518463 -1053.8475530204369 74.0692 0.1144 3757 +3759 2 -29.71169070824328 -1054.0951113475228 74.7552 0.1144 3758 +3760 2 -30.75732119081391 -1054.4661377804343 75.3718 0.1144 3759 +3761 2 -31.75803886536039 -1055.0043648104602 75.8797 0.1144 3760 +3762 2 -32.7560811075582 -1055.549326976843 76.2958 0.1144 3761 +3763 2 -33.81167138497801 -1055.9879759096088 76.601 0.1144 3762 +3764 2 -34.88222337930512 -1056.3923017156644 76.816 0.1144 3763 +3765 2 -35.97405740369368 -1056.731158710852 76.9821 0.1144 3764 +3766 2 -37.11116083040588 -1056.690773974141 77.1638 0.1144 3765 +3767 2 -38.24702637193269 -1056.6431894013022 77.3685 0.1144 3766 +3768 2 -39.38560527776872 -1056.6125012083753 77.5866 0.1144 3767 +3769 2 -40.52648122928355 -1056.6027102301227 77.8112 0.1144 3768 +3770 2 -41.6674446980268 -1056.5928708707302 78.0405 0.1144 3769 +3771 2 -42.771827228432784 -1056.8855985368882 78.2516 0.1144 3770 +3772 2 -43.84091269738752 -1057.2945057513875 78.4454 0.1144 3771 +3773 2 -44.90126464229817 -1057.7227524477255 78.654 0.1144 3772 +3774 2 -45.926951180134694 -1058.206727050469 78.9317 0.1144 3773 +3775 2 -46.952057144289654 -1058.689651446471 79.2747 0.1144 3774 +3776 2 -48.00692918174684 -1058.937877864467 80.1402 0.1144 3775 +3777 2 -49.0713581354575 -1059.1585397155022 80.745 0.1144 3776 +3778 2 -50.16170296820249 -1059.3597329452748 81.3826 0.1144 3777 +3779 2 -51.23152850712145 -1059.6610521386174 82.0212 0.1144 3778 +3780 2 -52.275580319570906 -1060.0577464074458 82.6454 0.1144 3779 +3781 2 -53.31159505556849 -1060.4797938891297 83.2451 0.1144 3780 +3782 2 -54.34610413010543 -1060.9065586776264 83.8048 0.1144 3781 +3783 2 -55.379738032357665 -1061.3338072775246 84.3371 0.1144 3782 +3784 2 -56.4305681377146 -1061.74503649545 84.8305 0.1144 3783 +3785 2 -57.501444912981725 -1062.1334144327657 85.2718 0.1144 3784 +3786 2 -58.57911043033562 -1062.5127833201382 85.6727 0.1144 3785 +3787 2 -59.65729396188988 -1062.8906089443158 86.0566 0.1144 3786 +3788 2 -60.73590799041585 -1063.266939686439 86.4444 0.1144 3787 +3789 2 -61.777904215881335 -1063.5274259358184 86.9478 0.1144 3788 +3790 2 -62.78388174099763 -1063.706015462277 87.6117 0.1144 3789 +3791 2 -63.791627848413185 -1063.9305894656454 88.3831 0.1144 3790 +3792 2 -64.77898486996014 -1064.3925618371154 89.1461 0.1144 3791 +3793 2 -65.7542227172604 -1064.9553868020853 89.8517 0.1144 3792 +3794 2 -66.73042325407391 -1065.5176795745137 90.4949 0.1144 3793 +3795 2 -67.70662379088739 -1066.0799723469422 91.0734 0.1144 3794 +3796 2 -68.68177412095915 -1066.6428456930519 91.604 0.1144 3795 +3797 2 -69.6681460592064 -1067.1902602064129 92.1105 0.1144 3796 +3798 2 -70.66938697254275 -1067.7151719737235 92.6117 0.1144 3797 +3799 2 -71.6768844354246 -1068.2301120015782 93.1165 0.1144 3798 +3800 2 -72.58482559341687 -1068.8745882103117 93.6513 0.1144 3799 +3801 2 -73.41311226430977 -1069.6114322309982 94.227 0.1144 3800 +3802 2 -74.2265586080961 -1070.3617363665194 94.836 0.1144 3801 +3803 2 -75.03962283605088 -1071.113622901324 95.4668 0.1144 3802 +3804 2 -75.85503369495217 -1071.8627267533939 96.1089 0.1144 3803 +3805 2 -76.85840786473773 -1072.2780234249517 96.7361 0.1144 3804 +3806 2 -77.94917124984732 -1072.5390877229786 97.3372 0.1144 3805 +3807 2 -79.04089732447011 -1072.7996198284638 97.9138 0.1144 3806 +3808 2 -80.13099261866972 -1073.059682300889 98.4701 0.1144 3807 +3809 2 -81.22175600377938 -1073.3207465989158 99.0102 0.1144 3808 +3810 2 -82.31348207840222 -1073.5812787044013 99.5372 0.1144 3809 +3811 2 -83.40357737260177 -1073.8413411768265 100.0527 0.1144 3810 +3812 2 -84.49434075771134 -1074.1024054748532 100.5533 0.1144 3811 +3813 2 -85.58606683233421 -1074.3629375803384 101.0321 0.1144 3812 +3814 2 -86.67616212653382 -1074.623000052764 101.4812 0.1144 3813 +3815 2 -87.76692551164345 -1074.8840643507906 101.8942 0.1144 3814 +3816 2 -88.85807101258467 -1075.1435462495342 102.2675 0.1144 3815 +3817 2 -89.70895093761192 -1075.8195669616323 102.5251 0.1144 3816 +3818 2 -90.35427771510635 -1076.750450584997 102.6418 0.1144 3817 +3819 2 -90.96467433903365 -1077.7057860870582 102.6556 0.1144 3818 +3820 2 -91.50192629311417 -1078.710698370711 102.657 0.1144 3819 +3821 2 -91.99723253700853 -1079.7414270715626 102.6962 0.1144 3820 +3822 2 -92.48643753265688 -1080.7729006011468 102.7902 0.1144 3821 +3823 2 -92.9771857915 -1081.804892144931 102.9493 0.1144 3822 +3824 2 -93.76634181208573 -1082.5869065342958 103.196 0.1144 3823 +3825 2 -94.68467998191647 -1083.2479164100405 103.5194 0.1144 3824 +3826 2 -95.61027652689418 -1083.8982864554187 103.8957 0.1144 3825 +3827 2 -96.53631774718491 -1084.54966757145 104.3101 0.1144 3826 +3828 2 -97.3142718927526 -1085.356270942007 104.7612 0.1144 3827 +3829 2 -98.01295889164226 -1086.2418877257137 105.2439 0.1144 3828 +3830 2 -98.70166892648587 -1087.133019959395 105.7501 0.1144 3829 +3831 2 -99.39091115387095 -1088.0251148825892 106.2762 0.1144 3830 +3832 2 -100.15554481213397 -1088.8429670138767 106.8295 0.1144 3831 +3833 2 -101.17266790698312 -1089.0702414073407 107.4427 0.1144 3832 +3834 2 -102.24677413714173 -1089.1548363618858 108.0954 0.1144 3833 +3835 2 -103.32000519501565 -1089.2399151278319 108.757 0.1144 3834 +3836 2 -104.39462943937451 -1089.3229668191818 109.3996 0.1144 3835 +3837 2 -105.39353164590949 -1089.7772999038011 109.9543 0.1144 3836 +3838 2 -105.9011383527037 -1090.782946567007 110.2984 0.1144 3837 +3839 2 -106.38160949408123 -1091.8153633831737 110.4715 0.1144 3838 +3840 2 -106.86053737226396 -1092.8472621851397 110.5266 0.1144 3839 +3841 2 -107.63706292442018 -1093.68207848041 110.5577 0.1144 3840 +3842 2 -108.62741629449926 -1094.2391753592137 110.6378 0.1144 3841 +3843 2 -109.61830185711972 -1094.797234927531 110.7781 0.1144 3842 +3844 2 -110.60856770997029 -1095.3543801874748 110.9774 0.1144 3843 +3845 2 -111.51603670986822 -1095.950669810246 111.4459 0.1144 3844 +3846 2 -112.46344104873168 -1096.572073148427 111.8678 0.1144 3845 +3847 2 -113.41088452368345 -1097.1933405882396 112.0543 0.1144 3846 +3848 2 -114.36359690092027 -1097.8078103322139 112.2646 0.1144 3847 +3849 2 -115.3705517220813 -1098.3453316695955 112.4536 0.1144 3848 +3850 2 -116.41405417279239 -1098.8142011987397 112.5916 0.1144 3849 +3851 2 -117.4575566235035 -1099.283070727884 112.6824 0.1144 3850 +3852 2 -118.50105907421457 -1099.7519402570283 112.7305 0.1144 3851 +3853 2 -119.55231818111545 -1100.1994965441677 112.7501 0.1144 3852 +3854 2 -120.66429311266018 -1100.4658599268164 112.7538 0.1144 3853 +3855 2 -121.7789826126419 -1100.7253522747392 112.7524 0.1144 3854 +3856 2 -122.8931883012223 -1100.9839694503776 112.7504 0.1144 3855 +3857 2 -124.00629540192082 -1101.2430796824688 112.7476 0.1144 3856 +3858 2 -125.12283354310651 -1101.4964082226647 112.7437 0.1144 3857 +3859 2 -126.24765680386145 -1101.7033362586203 112.7381 0.1144 3858 +3860 2 -127.3747983388806 -1101.9024697064256 112.7305 0.1144 3859 +3861 2 -128.50127178298962 -1102.1006013286292 112.7196 0.1144 3860 +3862 2 -129.6277452270987 -1102.298732950833 112.7045 0.1144 3861 +3863 2 -130.75308650205397 -1102.504117723594 112.6835 0.1144 3862 +3864 2 -131.8655061089117 -1102.7714921768961 112.6544 0.1144 3863 +3865 2 -132.96188916459994 -1103.0948083769226 112.6132 0.1144 3864 +3866 2 -134.0588044128297 -1103.4190872664622 112.5547 0.1144 3865 +3867 2 -135.15676986780107 -1103.7427855823203 112.4735 0.1144 3866 +3868 2 -136.25469618668416 -1104.0666197965472 112.364 0.1144 3867 +3869 2 -137.3349172420138 -1104.4222946081695 112.2173 0.1144 3868 +3870 2 -138.2813641159537 -1105.032458139372 111.974 0.1144 3869 +3871 2 -139.19460808772968 -1105.681772753419 111.6436 0.1144 3870 +3872 2 -140.10781292341736 -1106.331223265834 111.2432 0.1144 3871 +3873 2 -141.0138860372748 -1106.991129329107 110.8022 0.1144 3872 +3874 2 -141.86197133496037 -1107.7261693605678 110.4594 0.1144 3873 +3875 2 -142.6799131043167 -1108.47261718322 110.164 0.1144 3874 +3876 2 -143.40543701063123 -1109.288551685105 109.6872 0.1144 3875 +3877 2 -144.00883794669173 -1110.110524409933 108.9892 0.1144 3876 +3878 2 -144.69943785567162 -1110.6882162531479 108.0649 0.1144 3877 +3879 2 -145.48306904434074 -1111.089017675482 106.9384 0.1144 3878 +3880 2 -146.08106145058574 -1111.8916990083117 105.7874 0.1144 3879 +3881 2 -146.7616015014647 -1112.7325014162232 104.6671 0.1144 3880 +3882 2 -147.64800170890825 -1113.1300796754927 103.5126 0.1144 3881 +3883 2 -148.27843874854963 -1113.9866965788096 102.4864 0.1144 3882 +3884 2 -149.07562755264024 -1114.5042072169927 101.3947 0.1144 3883 +3885 2 -149.9269687583923 -1114.8950004633375 100.1952 0.1144 3884 +3886 2 -150.77869207997603 -1115.284211310399 98.9044 0.1144 3885 +3887 2 -151.6299707262468 -1115.6724110868072 97.5615 0.1144 3886 +3888 2 -152.48116185528906 -1116.0606592443555 96.2066 0.1144 3887 +3889 2 -153.4503114661881 -1116.168083085724 94.8889 0.1144 3888 +3890 2 -154.44868258505036 -1115.7442541591254 93.7311 0.1144 3889 +3891 2 -155.4472246789811 -1115.2758823232423 92.715 0.1144 3890 +3892 2 -156.45423840572386 -1114.8251085394531 91.8022 0.1144 3891 +3893 2 -157.47287255984924 -1114.4096168427259 90.9572 0.1144 3892 +3894 2 -158.49333595224772 -1113.9972273850835 90.1468 0.1144 3893 +3895 2 -159.51404556210932 -1113.5832163920697 89.3402 0.1144 3894 +3896 2 -160.53437305613923 -1113.170787798339 88.5147 0.1144 3895 +3897 2 -161.5547880673976 -1112.758310823468 87.6686 0.1144 3896 +3898 2 -162.5751155614275 -1112.3458822297375 86.8059 0.1144 3897 +3899 2 -163.54572454949098 -1112.141360562694 85.8446 0.1144 3898 +3900 2 -164.47561376794673 -1112.0312210992859 84.7865 0.1144 3899 +3901 2 -165.46490651973593 -1112.1300232311323 83.7094 0.1144 3900 +3902 2 -166.4413353665094 -1112.6621385637327 82.7504 0.1144 3901 +3903 2 -167.41822862175337 -1113.20439511543 81.9 0.1144 3902 +3904 2 -168.39563989119765 -1113.7451084039328 81.1465 0.1144 3903 +3905 2 -169.3729636434134 -1114.2858700735756 80.4765 0.1144 3904 +3906 2 -170.3499052797976 -1114.8282141425016 79.8633 0.1144 3905 +3907 2 -171.32621796136004 -1115.3694204874573 79.2778 0.1144 3906 +3908 2 -172.30354171357584 -1115.9101821571003 78.7016 0.1144 3907 +3909 2 -173.28048334995992 -1116.4525262260258 78.1388 0.1144 3908 +3910 2 -174.24343118353977 -1117.016889229601 77.5844 0.1144 3909 +3911 2 -174.98050400400405 -1117.851234396383 77.047 0.1144 3910 +3912 2 -175.9463544146913 -1118.4349029702973 76.5635 0.1144 3911 +3913 2 -176.99353039419077 -1118.870319320426 76.1471 0.1144 3912 +3914 2 -178.04026169837715 -1119.3047245999014 75.7924 0.1144 3913 +3915 2 -179.08748605901678 -1119.7402284672587 75.1716 0.1144 3914 +3916 2 -110.58792997956803 -1095.8821445800631 111.1869 0.1144 3844 +3917 2 -110.54431907530258 -1097.018605903219 111.4142 0.1144 3916 +3918 2 -110.50128874471872 -1098.1561174331164 111.6391 0.1144 3917 +3919 2 -110.4080015970257 -1099.2808484178747 111.8485 0.1144 3918 +3920 2 -109.82947158184413 -1100.2464861923709 112.0297 0.1144 3919 +3921 2 -108.95716856542478 -1100.983518381319 112.1705 0.1144 3920 +3922 2 -108.08818966933319 -1101.724083306324 112.271 0.1144 3921 +3923 2 -107.27876974346935 -1102.5205054516805 112.3181 0.1144 3922 +3924 2 -106.6732021292789 -1103.4893209989568 112.2842 0.1144 3923 +3925 2 -106.06653592720676 -1104.4586296026857 112.177 0.1144 3924 +3926 2 -105.46000562350315 -1105.4279773425033 112.0022 0.1144 3925 +3927 2 -104.85333942143095 -1106.3972859462324 111.7637 0.1144 3926 +3928 2 -104.24130784609378 -1107.3591626747116 111.4551 0.1144 3927 +3929 2 -103.60297202169457 -1108.2662231056029 111.0228 0.1144 3928 +3930 2 -102.94886602364141 -1109.0788218954808 110.4298 0.1144 3929 +3931 2 -102.29441704584505 -1109.8928671862732 109.7365 0.1144 3930 +3932 2 -101.64089162147351 -1110.7065161828928 109.0018 0.1144 3931 +3933 2 -100.98577455276714 -1111.5195596480835 108.2802 0.1144 3932 +3934 2 -100.3476007496848 -1112.367799217462 107.6664 0.1144 3933 +3935 2 -99.7661718865576 -1113.3401813733672 107.3565 0.1144 3934 +3936 2 -99.18474302343034 -1114.3125635292722 107.2988 0.1144 3935 +3937 2 -98.60239985193002 -1115.2855653949473 107.4304 0.1144 3936 +3938 2 -98.02105850603124 -1116.2578991697123 107.693 0.1144 3937 +3939 2 -97.43904906922239 -1117.2292311188753 108.033 0.1144 3938 +3940 2 -96.85766858723537 -1118.201700792009 108.4012 0.1144 3939 +3941 2 -96.27632724133653 -1119.174034566774 108.7626 0.1144 3940 +3942 2 -95.69393568869611 -1120.1469489152205 109.1146 0.1144 3941 +3943 2 -95.11250682556883 -1121.1193310711255 109.4526 0.1144 3942 +3944 2 -94.53107796244163 -1122.0917132270306 109.7706 0.1144 3943 +3945 2 -93.94973661654285 -1123.0640470017954 110.0632 0.1144 3944 +3946 2 -93.36830775341559 -1124.0364291577007 110.325 0.1144 3945 +3947 2 -92.7384133794915 -1124.975501491282 110.5342 0.1144 3946 +3948 2 -91.9486996688288 -1125.8003362233294 110.6342 0.1144 3947 +3949 2 -91.15893757702594 -1126.625083438148 110.6498 0.1144 3948 +3950 2 -90.36764146708006 -1127.4495360543638 110.6053 0.1144 3949 +3951 2 -89.57787937527718 -1128.2742832691822 110.5247 0.1144 3950 +3952 2 -88.78807814738587 -1129.0991663823695 110.43 0.1144 3951 +3953 2 -87.99836443672314 -1129.9240011144166 110.3449 0.1144 3952 +3954 2 -87.20701994563714 -1130.7483662134036 110.2909 0.1144 3953 +3955 2 -86.41730623497438 -1131.5732009454507 110.2786 0.1144 3954 +3956 2 -85.62754414317146 -1132.3979481602694 110.3192 0.1144 3955 +3957 2 -84.83774291528027 -1133.2228312734564 110.4222 0.1144 3956 +3958 2 -84.04554415026814 -1134.0005921857642 110.6843 0.1144 3957 +3959 2 -83.25377215306611 -1134.7508082642685 111.1337 0.1144 3958 +3960 2 -82.46248396726531 -1135.5018995150576 111.7273 0.1144 3959 +3961 2 -81.6706635889231 -1136.2520280763338 112.4231 0.1144 3960 +3962 2 -80.8788040744925 -1137.0022925359785 113.1816 0.1144 3961 +3963 2 -80.0869836961503 -1137.7524210972542 113.9653 0.1144 3962 +3964 2 -79.29621352454973 -1138.501969084849 114.7395 0.1144 3963 +3965 2 -78.50430562897907 -1139.252146027265 115.4866 0.1144 3964 +3966 2 -77.7124852506368 -1140.0022745885408 116.1947 0.1144 3965 +3967 2 -76.9206648722946 -1140.752403149817 116.846 0.1144 3966 +3968 2 -76.12884449395239 -1141.5025317110928 117.4191 0.1144 3967 +3969 2 -75.33707249675024 -1142.2527477895974 117.8892 0.1144 3968 +3970 2 -74.54525211840803 -1143.002876350873 118.2325 0.1144 3969 +3971 2 -73.93381053632532 -1143.8546199693997 118.3412 0.1144 3970 +3972 2 -73.67286883222687 -1144.900752927996 118.0609 0.1144 3971 +3973 2 -73.41101281975534 -1145.9475055963626 117.4648 0.1144 3972 +3974 2 -73.08729793611639 -1146.8492902680614 116.5399 0.1144 3973 +3975 2 -72.75873569341286 -1147.7420998013156 115.3765 0.1144 3974 +3976 2 -72.43153243439525 -1148.6353006954532 114.0726 0.1144 3975 +3977 2 -72.10393288120474 -1149.5275780361658 112.7213 0.1144 3976 +3978 2 -71.77523474013253 -1150.420348433332 111.3935 0.1144 3977 +3979 2 -71.75386678752926 -1151.3014755811382 110.0935 0.1144 3978 +3980 2 -71.76834702602798 -1152.183581092227 108.8598 0.1144 3979 +3981 2 -71.73370603561739 -1153.3269670558384 107.9652 0.1144 3980 +3982 2 -71.69910418129513 -1154.470217121081 107.3394 0.1144 3981 +3983 2 -71.62919155300187 -1155.6016795130345 106.8819 0.1144 3982 +3984 2 -71.52651323953398 -1156.7212041549888 106.5128 0.1144 3983 +3985 2 -71.4228238554129 -1157.8411734722563 106.2062 0.1144 3984 +3986 2 -71.32014554194501 -1158.960698114211 105.9344 0.1144 3985 +3987 2 -71.12811666341526 -1160.0486047783188 105.6905 0.1144 3986 +3988 2 -70.44700800745841 -1160.9636567597827 105.5807 0.1144 3987 +3989 2 -69.76598686873012 -1161.8786603601066 105.5883 0.1144 3988 +3990 2 -69.08434602023198 -1162.792749652057 105.6896 0.1144 3989 +3991 2 -68.40428757101688 -1163.7072210598394 105.8568 0.1144 3990 +3992 2 -67.72331481342877 -1164.6223121773914 106.0632 0.1144 3991 +3993 2 -67.04220615747198 -1165.537364158855 106.286 0.1144 3992 +3994 2 -66.36161551571553 -1166.4508728771239 106.5072 0.1144 3993 +3995 2 -65.68050685975874 -1167.3659248585877 106.7262 0.1144 3994 +3996 2 -64.99948572103045 -1168.2809284589116 106.9418 0.1144 3995 +3997 2 -64.31947565295553 -1169.1954873839222 107.1529 0.1144 3996 +3998 2 -63.637786423317266 -1170.1094891586445 107.3576 0.1144 3997 +3999 2 -62.9568136657291 -1171.0245802761965 107.5533 0.1144 3998 +4000 2 -62.27675521651406 -1171.9390516839785 107.7367 0.1144 3999 +4001 2 -61.59564656055733 -1172.8541036654424 107.9047 0.1144 4000 +4002 2 -60.91409322928757 -1173.7681445762528 108.0492 0.1144 4001 +4003 2 -60.23403478007248 -1174.682615984035 108.1472 0.1144 4002 +4004 2 -59.552974505255804 -1175.5977554827273 108.2029 0.1144 4003 +4005 2 -58.871953366527634 -1176.512759083051 108.2211 0.1144 4004 +4006 2 -58.13607725994416 -1177.3287415618825 108.1766 0.1144 4005 +4007 2 -57.12668316527743 -1177.6592551949625 107.9336 0.1144 4006 +4008 2 -56.11675687806928 -1177.9888061385295 106.962 0.1144 4007 +4009 2 -47.03323619232799 -1059.1911808694958 79.6482 0.1144 3775 +4010 2 -47.19390617308983 -1060.179404613029 81.625 0.1144 4009 +4011 2 -47.078596361585994 -1061.2640918432344 82.4261 0.1144 4010 +4012 2 -46.87739268263425 -1062.37798067502 83.3361 0.1144 4011 +4013 2 -46.65261229727099 -1063.456455541837 84.4024 0.1144 4012 +4014 2 -46.381670068843505 -1064.1343619947156 85.7973 0.1144 4013 +4015 2 -46.10110700484819 -1064.7312040317083 87.4768 0.1144 4014 +4016 2 -45.82217472127604 -1065.3285157017608 89.348 0.1144 4015 +4017 2 -45.517137676098116 -1065.9612829979046 91.3464 0.1144 4016 +4018 2 -45.170003348596424 -1066.6551435737194 93.3892 0.1144 4017 +4019 2 -45.07706537451031 -1067.0333142005175 95.5044 0.1144 4018 +4020 2 -45.262993028790675 -1067.7644229115679 97.5542 0.1144 4019 +4021 2 -45.672406900664896 -1068.7865312627307 99.3485 0.1144 4020 +4022 2 -46.12949353928474 -1069.7102994018194 101.0411 0.1144 4021 +4023 2 -46.59343614027739 -1070.4027793748037 102.8289 0.1144 4022 +4024 2 -46.73199854029656 -1070.4359864719509 104.7838 0.1144 4023 +4025 2 -47.3492088024301 -1070.0438198462457 106.7296 0.1144 4024 +4026 2 -48.0007583308647 -1069.505837669964 108.5958 0.1144 4025 +4027 2 -47.94347401252924 -1069.555787613636 110.4818 0.1144 4026 +4028 2 -47.97263245755863 -1069.6298219643354 114.4405 0.1144 4027 +4029 2 72.12377815906538 -956.0435155623169 28.6936 0.1144 3095 +4030 2 72.97783802897874 -956.6124365749395 27.571 0.1144 4029 +4031 2 73.91475614612494 -957.161690333928 27.0839 0.1144 4030 +4032 2 74.77947571515699 -957.8580802871389 26.5712 0.1144 4031 +4033 2 75.30869219981179 -958.8277647525036 26.1357 0.1144 4032 +4034 2 75.71896395281377 -959.8898346648394 25.7882 0.1144 4033 +4035 2 75.96482148167141 -961.0008715343914 25.4649 0.1144 4034 +4036 2 75.92734454665765 -962.1304413902843 25.0939 0.1144 4035 +4037 2 76.11454024446394 -963.2248172401288 24.6162 0.1144 4036 +4038 2 75.93951524342481 -964.2365276478105 23.9604 0.1144 4037 +4039 2 75.18908961884384 -964.2556501992156 23.0655 0.1144 4038 +4040 2 74.50031545382879 -964.1467153122057 21.9758 0.1144 4039 +4041 2 74.01682762934547 -965.0140680510475 21.1096 0.1144 4040 +4042 2 73.6197194449608 -966.0730304393761 20.4102 0.1144 4041 +4043 2 73.67010864213375 -967.1949568134347 19.8617 0.1144 4042 +4044 2 73.90509430150317 -968.3091245700543 19.4754 0.1144 4043 +4045 2 73.8057528049109 -969.4464291541718 19.2511 0.1144 4044 +4046 2 73.78763504596657 -970.590586069464 19.1306 0.1144 4045 +4047 2 74.07266488625402 -971.6971118396772 19.0433 0.1144 4046 +4048 2 74.91068358182454 -972.467637839157 18.9748 0.1144 4047 +4049 2 75.38490430589252 -973.5062143673264 18.9077 0.1144 4048 +4050 2 75.77231805826713 -974.5387369987835 18.9095 0.1144 4049 +4051 2 76.55857087633262 -975.3249799930824 18.863 0.1144 4050 +4052 2 76.60632597205296 -976.4088859580223 18.621 0.1144 4051 +4053 2 76.32943208227135 -977.4204988651177 18.1827 0.1144 4052 +4054 2 76.27984642219016 -978.4727601265514 17.6057 0.1144 4053 +4055 2 76.2286561046341 -979.5843510186464 17.0164 0.1144 4054 +4056 2 76.44146752805509 -980.7032856673464 16.4831 0.1144 4055 +4057 2 76.62458009845997 -981.8098014542016 16.0149 0.1144 4056 +4058 2 76.63924472806565 -982.889697300401 15.5585 0.1144 4057 +4059 2 76.59513285683664 -983.981663065806 15.1645 0.1144 4058 +4060 2 76.3647598314893 -985.0934931828618 14.9218 0.1144 4059 +4061 2 75.91124399648172 -986.1408113901882 14.8179 0.1144 4060 +4062 2 75.4469959195163 -987.1651713967454 14.8491 0.1144 4061 +4063 2 75.44620158077842 -988.1124313869415 15.1093 0.1144 4062 +4064 2 75.95364101766941 -988.8544624091282 15.5967 0.1144 4063 +4065 2 76.15179816140525 -989.7704771177364 16.0609 0.1144 4064 +4066 2 76.01665386399551 -990.8330286453705 16.2681 0.1144 4065 +4067 2 76.00733727757145 -991.8618461079058 16.1722 0.1144 4066 +4068 2 75.85828296542402 -992.9284770337795 15.8868 0.1144 4067 +4069 2 75.85163182799062 -994.0659469025544 15.5529 0.1144 4068 +4070 2 75.97568221378268 -995.2011713701312 15.2341 0.1144 4069 +4071 2 76.27376107486427 -996.3006279779954 14.9672 0.1144 4070 +4072 2 76.5307906266298 -997.4034437828873 14.749 0.1144 4071 +4073 2 76.64068817915629 -998.5334723568395 14.5244 0.1144 4072 +4074 2 76.63752541710153 -999.6623584480534 14.2647 0.1144 4073 +4075 2 76.91227141990595 -1000.7188649950956 13.9739 0.1144 4074 +4076 2 77.3102322608288 -1001.7323088707454 13.6018 0.1144 4075 +4077 2 76.93252594324244 -1002.6685375328015 13.1653 0.1144 4076 +4078 2 76.66774077852818 -1003.7574590343557 12.805 0.1144 4077 +4079 2 76.72969456362 -1004.8962907420777 12.5438 0.1144 4078 +4080 2 76.74860032148194 -1006.0348629278961 12.3314 0.1144 4079 +4081 2 76.85366469328488 -1007.171360687585 12.1715 0.1144 4080 +4082 2 77.49887677699942 -1008.0874785495595 12.118 0.1144 4081 +4083 2 78.21154561008964 -1008.9807852966188 12.1039 0.1144 4082 +4084 2 77.76873589409155 -1009.9922017071135 12.0851 0.1144 4083 +4085 2 76.97189622597679 -1010.7738533835771 11.9702 0.1144 4084 +4086 2 76.28531123213702 -1011.687184810954 11.8538 0.1144 4085 +4087 2 75.51715412179544 -1012.4690386744295 11.8721 0.1144 4086 +4088 2 75.60511140111356 -1013.288825529054 11.7179 0.1144 4087 +4089 2 75.61753379489784 -1014.425070486857 11.6176 0.1144 4088 +4090 2 75.26869145933242 -1015.4295882442497 11.5935 0.1144 4089 +4091 2 74.6301534239249 -1016.3694809175576 11.5869 0.1144 4090 +4092 2 74.14395000139834 -1017.3176019393281 11.4842 0.1144 4091 +4093 2 74.10253954987155 -1018.3313053745123 11.3674 0.1144 4092 +4094 2 74.60152498896869 -1019.2895336675455 11.4479 0.1144 4093 +4095 2 75.04334600410337 -1020.1808530775132 11.758 0.1144 4094 +4096 2 75.40042701535066 -1021.2043771082066 12.1334 0.1144 4095 +4097 2 76.15862743459218 -1022.013047606161 12.4569 0.1144 4096 +4098 2 76.89780017872195 -1022.8726728642448 12.7736 0.1144 4097 +4099 2 77.04714001376092 -1023.9786863106688 13.0733 0.1144 4098 +4100 2 76.95039198710526 -1025.1160534542678 13.3336 0.1144 4099 +4101 2 77.07041658038753 -1026.2490523893985 13.584 0.1144 4100 +4102 2 77.20683371772253 -1027.3807154729357 13.909 0.1144 4101 +4103 2 77.05576800474802 -1028.484055583855 14.3785 0.1144 4102 +4104 2 76.87306877575276 -1029.6065865953306 14.9278 0.1144 4103 +4105 2 77.03550451729808 -1030.6676214109089 15.6488 0.1144 4104 +4106 2 77.313205207512 -1031.6786849186346 16.5343 0.1144 4105 +4107 2 77.0237329596028 -1032.6113584508473 17.5847 0.1144 4106 +4108 2 76.33032741031678 -1033.3195875622368 18.7361 0.1144 4107 +4109 2 75.6436193567273 -1034.0628272941776 19.9292 0.1144 4108 +4110 2 75.33389153187863 -1034.9517381527648 21.1703 0.1144 4109 +4111 2 75.88827757140746 -1035.9091705363699 22.2776 0.1144 4110 +4112 2 75.64295057877689 -1036.9486321598495 23.3105 0.1144 4111 +4113 2 75.07493804852152 -1037.5222210069105 24.4088 0.1144 4112 +4114 2 75.93473734779178 -1037.8680737139614 25.3322 0.1144 4113 +4115 2 76.61756770033537 -1038.7750506870125 26.0738 0.1144 4114 +4116 2 76.57166079363219 -1039.872537126982 26.7382 0.1144 4115 +4117 2 76.3900549279291 -1040.9837891953907 27.3028 0.1144 4116 +4118 2 76.47524733405203 -1042.1159286320058 27.7572 0.1144 4117 +4119 2 75.87705843120642 -1043.0845257910519 28.1173 0.1144 4118 +4120 2 74.97436947212373 -1043.7881230147177 28.3982 0.1144 4119 +4121 2 74.26762566362487 -1044.657516734012 28.7056 0.1144 4120 +4122 2 74.35136747310884 -1044.8371559261286 28.9523 0.1144 4121 +4123 2 75.08307443049023 -1045.703051912099 29.181 0.1144 4122 +4124 2 76.09295429780758 -1046.1959735930864 29.4367 0.1144 4123 +4125 2 77.06854238595236 -1046.774488988102 29.7282 0.1144 4124 +4126 2 77.5553410023266 -1047.7665436222305 30.0574 0.1144 4125 +4127 2 77.52857018632233 -1048.8602116812917 30.4506 0.1144 4126 +4128 2 77.24596388414392 -1049.9222561097263 30.8921 0.1144 4127 +4129 2 76.84228481845304 -1050.9788428888992 31.2948 0.1144 4128 +4130 2 76.54852772195204 -1052.077800184819 31.6226 0.1144 4129 +4131 2 76.52654842554887 -1053.214680526161 31.871 0.1144 4130 +4132 2 76.48691374216008 -1054.3574547041471 32.0244 0.1144 4131 +4133 2 76.13530742741119 -1055.4428282616973 32.0776 0.1144 4132 +4134 2 75.80832396642711 -1056.5378145749646 32.0421 0.1144 4133 +4135 2 76.11435644612055 -1057.6181298675401 31.9063 0.1144 4134 +4136 2 76.39201697063953 -1058.7166967945518 31.7122 0.1144 4135 +4137 2 76.27819263525208 -1059.821085616785 31.4656 0.1144 4136 +4138 2 76.46579746585002 -1060.7444070816803 31.0915 0.1144 4137 +4139 2 77.21052359191532 -1061.5704238594492 30.8182 0.1144 4138 +4140 2 77.14049996137294 -1061.7774936814071 28.763 0.1144 4139 +4141 2 76.87051890303434 -1062.880568016227 28.3262 0.1144 4140 +4142 2 76.95425808822529 -1063.9634564817966 28.1218 0.1144 4141 +4143 2 77.15980964107149 -1065.0339293488616 27.848 0.1144 4142 +4144 2 77.4186915632028 -1066.1168590097323 27.5812 0.1144 4143 +4145 2 77.69217099391261 -1067.2039734935743 27.3605 0.1144 4144 +4146 2 77.60873300538219 -1068.329045398863 27.2306 0.1144 4145 +4147 2 77.28258189035904 -1069.4179788450242 27.177 0.1144 4146 +4148 2 76.78647721200235 -1070.4431243118302 27.1553 0.1144 4147 +4149 2 76.36244236923028 -1071.4962279402139 27.1308 0.1144 4148 +4150 2 76.13014396485647 -1072.606993672187 27.0483 0.1144 4149 +4151 2 75.41575667452327 -1073.3885212592947 26.8927 0.1144 4150 +4152 2 74.41809132356741 -1073.9232938254404 26.685 0.1144 4151 +4153 2 73.34170282748727 -1074.2955987750538 26.483 0.1144 4152 +4154 2 72.78608037420423 -1075.201458725271 26.3179 0.1144 4153 +4155 2 72.98695404762628 -1076.2876276887964 26.1534 0.1144 4154 +4156 2 72.88936322583032 -1077.407503700461 25.9785 0.1144 4155 +4157 2 72.73682725832168 -1078.5323123546846 25.8385 0.1144 4156 +4158 2 72.15848134294669 -1079.514621400845 25.7626 0.1144 4157 +4159 2 72.63077618453582 -1079.944252955329 25.8331 0.1144 4158 +4160 2 73.38850444568288 -1080.8011100392462 25.9988 0.1144 4159 +4161 2 73.84470184527504 -1081.841492052069 26.3218 0.1144 4160 +4162 2 74.01067351095531 -1081.7895011279443 25.8621 0.1144 4161 +4163 2 74.84771899257089 -1081.5711122964835 27.5547 0.1144 4162 +4164 2 75.8756738288447 -1081.9106297549172 28.2341 0.1144 4163 +4165 2 76.90855878264347 -1082.3549097254495 28.9226 0.1144 4164 +4166 2 77.96669671152506 -1082.3490128226867 29.6738 0.1144 4165 +4167 2 78.92285886913595 -1082.816123311065 30.4368 0.1144 4166 +4168 2 79.98915217545078 -1083.119360585997 31.1245 0.1144 4167 +4169 2 81.09355816688083 -1083.3063228712135 31.6949 0.1144 4168 +4170 2 82.20091109609638 -1083.4858874839797 32.1782 0.1144 4169 +4171 2 83.32693151255711 -1083.5723636177595 32.5595 0.1144 4170 +4172 2 84.46800862147728 -1083.641111355893 32.7734 0.1144 4171 +4173 2 85.50006272474292 -1084.1292661447997 32.8462 0.1144 4172 +4174 2 86.53110575735525 -1084.6169762583936 32.8252 0.1144 4173 +4175 2 87.56262766807953 -1085.1060937368134 32.7452 0.1144 4174 +4176 2 88.59463339020505 -1085.5943360429485 32.48 0.1144 4175 +4177 2 73.57337547813904 -1082.334571206462 26.7673 0.1144 4161 +4178 2 73.32272075290399 -1083.3437786522911 27.4373 0.1144 4177 +4179 2 73.76412321567398 -1084.2949691305134 28.2545 0.1144 4178 +4180 2 74.04584966076646 -1084.8258388510058 29.3479 0.1144 4179 +4181 2 73.88612520032103 -1085.7414568372506 30.5054 0.1144 4180 +4182 2 73.62250384489425 -1086.4074479715482 31.4552 0.1144 4181 +4183 2 73.97481796406106 -1087.408797766293 32.242 0.1144 4182 +4184 2 74.34219652531112 -1088.3543737985262 32.9778 0.1144 4183 +4185 2 74.09760288262726 -1089.4518294923741 33.5163 0.1144 4184 +4186 2 73.550361516441 -1089.7819797871407 35.2629 0.1144 4185 +4187 2 72.71317360977594 -1090.3034301960327 36.9771 0.1144 4186 +4188 2 72.39097957154877 -1091.1344881072105 37.7468 0.1144 4187 +4189 2 71.51107513861143 -1091.7212208137275 38.5392 0.1144 4188 +4190 2 70.54904204159493 -1091.9292454763163 39.3672 0.1144 4189 +4191 2 69.42580743431915 -1092.0599240783058 40.3908 0.1144 4190 +4192 2 74.1106606223193 -1090.140056820685 33.9032 0.1144 4185 +4193 2 74.23995901203773 -1091.234990986019 34.1698 0.1144 4192 +4194 2 74.30679659272715 -1092.3033940877592 34.2199 0.1144 4193 +4195 2 73.83708890525077 -1093.2855436376371 34.1085 0.1144 4194 +4196 2 73.30190718231682 -1094.2772032180565 33.9528 0.1144 4195 +4197 2 73.02177968029156 -1095.3680411448856 33.8425 0.1144 4196 +4198 2 72.93351746478902 -1096.4853042836826 33.7593 0.1144 4197 +4199 2 73.06902029375101 -1097.6163476574502 33.6403 0.1144 4198 +4200 2 73.34265502576022 -1098.7126890520158 33.4412 0.1144 4199 +4201 2 73.67339638101896 -1099.7648435301803 33.0873 0.1144 4200 +4202 2 73.7530993245208 -1100.8219624642634 32.5998 0.1144 4201 +4203 2 73.74553238328645 -1101.920990672 32.0323 0.1144 4202 +4204 2 74.04710484433639 -1103.0236355018233 31.4619 0.1144 4203 +4205 2 73.80240232024391 -1103.948493547527 30.7415 0.1144 4204 +4206 2 73.66125054601281 -1104.9344813094344 29.9172 0.1144 4205 +4207 2 73.70134545652337 -1105.9828444612817 29.0814 0.1144 4206 +4208 2 73.80308763161656 -1106.8037388575394 26.927 0.1144 4207 +4209 2 73.89906576789684 -1085.2048319760015 32.7914 0.1144 4181 +4210 2 73.35024252987654 -1084.3249744287764 33.6154 0.1144 4209 +4211 2 72.4421997379423 -1083.6360569823314 33.9273 0.1144 4210 +4212 2 71.74262830678634 -1082.7355935556948 34.2373 0.1144 4211 +4213 2 72.048361085247 -1081.6457704286804 34.5285 0.1144 4212 +4214 2 72.43194659531537 -1080.604241837395 34.8748 0.1144 4213 +4215 2 72.34183619079579 -1079.5401125712822 35.84 0.1144 4214 +4216 2 71.59984007208283 -1079.4658572696876 25.3972 0.1144 4158 +4217 2 70.59991215073188 -1079.7967903627787 28.0952 0.1144 4216 +4218 2 69.72701741077668 -1079.621377555497 29.1816 0.1144 4217 +4219 2 69.35154969910872 -1079.673875150631 30.5813 0.1144 4218 +4220 2 69.33097087428825 -1080.1344058792138 32.1468 0.1144 4219 +4221 2 69.68767565733742 -1080.1015870164993 35.84 0.1144 4220 +4222 2 77.44027329122434 -1061.9328159615534 30.8353 0.1144 4139 +4223 2 78.00771610117118 -1062.8451338159437 31.2071 0.1144 4222 +4224 2 78.71596508131285 -1063.6732666809648 31.8612 0.1144 4223 +4225 2 79.56562646245771 -1064.3495630785533 32.7541 0.1144 4224 +4226 2 80.32211992723848 -1064.950702045635 33.9198 0.1144 4225 +4227 2 80.9058499933966 -1065.5191789843607 35.3223 0.1144 4226 +4228 2 81.78075287083846 -1065.8093938272684 36.8136 0.1144 4227 +4229 2 82.69271566398845 -1065.5501511534858 38.3256 0.1144 4228 +4230 2 82.93130180585439 -1066.1944022403372 39.912 0.1144 4229 +4231 2 82.53692009688262 -1066.8391822940212 41.5024 0.1144 4230 +4232 2 81.86682287631686 -1067.2307615643995 43.0321 0.1144 4231 +4233 2 81.76899591967458 -1067.3936668637425 44.1927 0.1144 4232 +4234 2 81.29548925422057 -1068.365946369734 45.1713 0.1144 4233 +4235 2 80.87001014426795 -1069.355521074844 45.9976 0.1144 4234 +4236 2 80.19025182447587 -1070.254230035895 46.6043 0.1144 4235 +4237 2 79.23828950056122 -1070.8743705311435 47.0058 0.1144 4236 +4238 2 78.26643534221432 -1071.3554253875832 47.306 0.1144 4237 +4239 2 77.75542880687635 -1072.282064891836 47.6557 0.1144 4238 +4240 2 77.3068872755506 -1073.3346467768574 47.889 0.1144 4239 +4241 2 76.72211010639995 -1074.2884911260257 48.0407 0.1144 4240 +4242 2 75.7856416919339 -1074.9419920584714 48.1396 0.1144 4241 +4243 2 74.80471489455618 -1075.5200684445886 48.1754 0.1144 4242 +4244 2 73.82820525057167 -1076.1017293468378 48.169 0.1144 4243 +4245 2 72.7986216327551 -1076.4083840613353 48.1872 0.1144 4244 +4246 2 71.67328078599007 -1076.25681078334 48.2905 0.1144 4245 +4247 2 70.5543873325912 -1076.2944794698205 48.4806 0.1144 4246 +4248 2 69.45120508563667 -1076.5852426208635 48.7057 0.1144 4247 +4249 2 68.38422282768431 -1076.7183384931318 49.0392 0.1144 4248 +4250 2 67.37702711161347 -1076.9274484391617 49.4799 0.1144 4249 +4251 2 66.6131580152404 -1077.7300691737594 49.9089 0.1144 4250 +4252 2 65.86055214923903 -1078.5309180049755 50.3958 0.1144 4251 +4253 2 64.81982772045797 -1078.7725683170756 51.0196 0.1144 4252 +4254 2 63.79370080025524 -1079.0184034521467 51.8112 0.1144 4253 +4255 2 63.3487890021201 -1079.3645599801512 52.9158 0.1144 4254 +4256 2 63.23571211975826 -1079.5595982806856 54.3371 0.1144 4255 +4257 2 62.53319429190043 -1079.7568324347817 55.8281 0.1144 4256 +4258 2 61.47618420159472 -1079.526713706748 57.1418 0.1144 4257 +4259 2 60.455059302709 -1079.0210625613172 58.2134 0.1144 4258 +4260 2 59.69641527539204 -1078.6081831360411 59.2967 0.1144 4259 +4261 2 58.90946035695424 -1078.1731399239957 60.3747 0.1144 4260 +4262 2 57.981340148987954 -1077.6600579329215 61.3455 0.1144 4261 +4263 2 56.89559865394739 -1077.3043632661816 62.1216 0.1144 4262 +4264 2 55.78223721830409 -1077.1358742053435 62.8348 0.1144 4263 +4265 2 54.65883686054951 -1077.233781897569 63.4995 0.1144 4264 +4266 2 53.55161165188832 -1077.4491815663368 64.0951 0.1144 4265 +4267 2 52.457504705888994 -1077.2220932339287 64.675 0.1144 4266 +4268 2 51.58894542939959 -1076.8164372426945 65.4377 0.1144 4267 +4269 2 50.88259354686437 -1076.959219307531 66.456 0.1144 4268 +4270 2 49.96569288656548 -1077.151744836081 67.4864 0.1144 4269 +4271 2 48.89888725646148 -1076.9841975663976 68.4499 0.1144 4270 +4272 2 47.87706445218663 -1076.929157520395 69.4473 0.1144 4271 +4273 2 46.854276258843186 -1076.811995915945 70.4586 0.1144 4272 +4274 2 45.79253108981652 -1076.7557962180072 71.4389 0.1144 4273 +4275 2 44.77436194557771 -1076.5994820352848 72.4203 0.1144 4274 +4276 2 44.10945286901244 -1077.0149538392634 73.4972 0.1144 4275 +4277 2 43.05813545794604 -1076.743533738334 74.3859 0.1144 4276 +4278 2 42.091682470349724 -1076.4039651992048 75.2626 0.1144 4277 +4279 2 40.96059174504859 -1076.4519162277406 75.9998 0.1144 4278 +4280 2 39.886906164098605 -1076.7837807984017 76.652 0.1144 4279 +4281 2 38.86784261787017 -1077.2439935413245 77.2506 0.1144 4280 +4282 2 38.884593717471546 -1077.6179820447067 77.6266 0.1144 4281 +4283 2 38.93056828628562 -1078.6865065362474 78.5957 0.1144 4282 +4284 2 38.86489512993421 -1079.765181666458 79.0317 0.1144 4283 +4285 2 38.35685792616829 -1080.7693334476094 79.4699 0.1144 4284 +4286 2 37.8543324432153 -1081.7895582164633 79.8616 0.1144 4285 +4287 2 37.4268092250644 -1082.8512456224082 80.1615 0.1144 4286 +4288 2 37.01046325441115 -1083.916483963213 80.3779 0.1144 4287 +4289 2 36.63403069475834 -1084.9971599081814 80.5216 0.1144 4288 +4290 2 36.26097001504644 -1086.0785572584891 80.6268 0.1144 4289 +4291 2 35.93586910676487 -1087.1680712783323 80.764 0.1144 4290 +4292 2 35.63272979824069 -1088.2579569648276 80.9514 0.1144 4291 +4293 2 35.34211254255888 -1089.3535081780074 81.1712 0.1144 4292 +4294 2 35.12702451963088 -1090.477787339245 81.3593 0.1144 4293 +4295 2 34.91870583585904 -1091.6018095036134 81.5178 0.1144 4294 +4296 2 34.74346343986059 -1092.7323477394307 81.6558 0.1144 4295 +4297 2 34.650209013173196 -1093.8729031049888 81.7802 0.1144 4296 +4298 2 34.56455071678653 -1095.0137728023074 81.9042 0.1144 4297 +4299 2 34.105358905915125 -1096.0500690634358 82.0921 0.1144 4298 +4300 2 33.434309482646654 -1096.9470794599927 82.3673 0.1144 4299 +4301 2 32.75938434357812 -1097.8393192353074 82.7165 0.1144 4300 +4302 2 32.36530535069136 -1098.911611064692 83.0452 0.1144 4301 +4303 2 32.0808820850736 -1100.0197274872646 83.3235 0.1144 4302 +4304 2 31.796371302227328 -1101.1277955286973 83.5512 0.1144 4303 +4305 2 31.58991394257282 -1102.2176535968165 83.8284 0.1144 4304 +4306 2 31.388793599500843 -1103.305091695102 84.56 0.1144 4305 +4307 2 38.47072866781207 -1077.200884021851 77.7868 0.1144 4281 +4308 2 37.37540370537937 -1077.1157228413056 78.3619 0.1144 4307 +4309 2 36.251885512464696 -1077.0553108376153 78.9135 0.1144 4308 +4310 2 35.13211119637003 -1076.9552624442515 79.4632 0.1144 4309 +4311 2 34.02406824827938 -1076.817250976661 80.0184 0.1144 4310 +4312 2 32.9212159692234 -1076.6533146762845 80.5745 0.1144 4311 +4313 2 31.82740917664364 -1076.4211361662833 81.1222 0.1144 4312 +4314 2 30.74310299503219 -1076.1432483750455 81.6522 0.1144 4313 +4315 2 29.64499894343203 -1075.8905264095192 82.1598 0.1144 4314 +4316 2 28.514306901743225 -1075.7438790540655 82.6148 0.1144 4315 +4317 2 27.372542298982182 -1075.6668670947213 83.0144 0.1144 4316 +4318 2 26.228757050342324 -1075.6267877360197 83.393 0.1144 4317 +4319 2 25.137398913210063 -1075.8914081934959 83.8482 0.1144 4318 +4320 2 24.13309070189382 -1076.3152153037277 84.427 0.1144 4319 +4321 2 23.076929698555602 -1076.5091397091737 85.1214 0.1144 4320 +4322 2 22.065541409889818 -1076.7708925306479 85.9236 0.1144 4321 +4323 2 21.286288878868163 -1077.4120105719603 86.8098 0.1144 4322 +4324 2 20.58954652634094 -1078.1641003233829 87.7108 0.1144 4323 +4325 2 19.71559745992306 -1078.8535342646037 88.494 0.1144 4324 +4326 2 18.785162509632187 -1079.4986014961983 89.1243 0.1144 4325 +4327 2 17.701085141433282 -1079.8587717333903 89.5902 0.1144 4326 +4328 2 16.574993813155913 -1080.0584857548774 89.9136 0.1144 4327 +4329 2 15.445084103970032 -1080.239063685665 90.1398 0.1144 4328 +4330 2 14.311563425477232 -1080.383594967501 90.3378 0.1144 4329 +4331 2 13.180518556281925 -1080.4812758451944 90.571 0.1144 4330 +4332 2 12.051074285173001 -1080.5640732392308 90.8544 0.1144 4331 +4333 2 10.941527073085979 -1080.7977282715965 91.1786 0.1144 4332 +4334 2 9.86035750658425 -1081.1503649379692 91.5312 0.1144 4333 +4335 2 8.787312533762758 -1081.528403198338 91.905 0.1144 4334 +4336 2 7.713580067100509 -1081.8981772374962 92.2964 0.1144 4335 +4337 2 6.598671210910254 -1082.113214193363 92.7119 0.1144 4336 +4338 2 5.4750076020905 -1082.2802198645668 93.1636 0.1144 4337 +4339 2 4.3529889520352185 -1082.4442499500026 93.6698 0.1144 4338 +4340 2 3.250614093294473 -1082.7263183828632 94.2396 0.1144 4339 +4341 2 2.1606376638613938 -1083.0570612335496 94.8895 0.1144 4340 +4342 2 1.0728436103237868 -1083.3956378084752 95.6365 0.1144 4341 +4343 2 0.1640226192420755 -1083.8147576197098 96.6498 0.1144 4342 +4344 2 -0.29678596693730697 -1084.2227407773319 98.0216 0.1144 4343 +4345 2 -0.7850563949011757 -1084.550183961985 99.6565 0.1144 4344 +4346 2 -1.357721748869949 -1084.8035489010826 101.4471 0.1144 4345 +4347 2 -1.8654795996113762 -1085.4169606510604 103.2522 0.1144 4346 +4348 2 -2.475266864984519 -1086.0092759902072 104.9826 0.1144 4347 +4349 2 -3.4715969657631263 -1086.2911223673036 106.4843 0.1144 4348 +4350 2 -4.480590242342373 -1086.5555703542839 107.7644 0.1144 4349 +4351 2 -5.492635842512129 -1086.8234728051439 108.8606 0.1144 4350 +4352 2 -6.554746386364059 -1087.1957867085089 109.723 0.1144 4351 +4353 2 -7.618414371751896 -1087.5711245787818 110.4124 0.1144 4352 +4354 2 -8.68065003456627 -1087.9486254220196 110.9805 0.1144 4353 +4355 2 -9.743935904122452 -1088.3255456915754 111.4722 0.1144 4354 +4356 2 -10.807221773678577 -1088.7024659611316 111.9112 0.1144 4355 +4357 2 -11.880964689520226 -1089.0486960012495 112.3195 0.1144 4356 +4358 2 -11.463289145466149 -1089.8939880690573 112.6586 0.1144 4357 +4359 2 -10.955189970000504 -1090.918613950973 112.9612 0.1144 4358 +4360 2 -10.447671368216447 -1091.9442900396302 113.2583 0.1144 4359 +4361 2 -9.940240283660785 -1092.969917747147 113.5778 0.1144 4360 +4362 2 -9.479757569655476 -1093.969477265186 114.0115 0.1144 4361 +4363 2 -9.08449861425629 -1094.9357222021335 114.6522 0.1144 4362 +4364 2 -8.689239658857105 -1095.9019671390813 115.4664 0.1144 4363 +4365 2 -8.111583786353833 -1096.7794817845217 116.3851 0.1144 4364 +4366 2 -7.329144124607069 -1097.5583606876419 117.3497 0.1144 4365 +4367 2 -6.5471349598320785 -1098.3357447087074 118.3445 0.1144 4366 +4368 2 -5.888501159064617 -1099.135192490921 119.4026 0.1144 4367 +4369 2 -5.399357251466313 -1099.962404928968 120.5702 0.1144 4368 +4370 2 -4.910881434777991 -1100.7906191926163 121.8227 0.1144 4369 +4371 2 -4.433929574492254 -1101.6398859722385 123.1286 0.1144 4370 +4372 2 -3.970964796993428 -1102.516727768001 124.4536 0.1144 4371 +4373 2 -3.5023292682204215 -1103.3928195104409 125.7704 0.1144 4372 +4374 2 -2.9098684755371096 -1104.2576084205994 127.0203 0.1144 4373 +4375 2 -2.3173201656254605 -1105.122445711898 128.205 0.1144 4374 +4376 2 -1.7248593729422055 -1105.9872346220566 129.3359 0.1144 4375 +4377 2 -1.1447653318019206 -1106.8555849162544 130.4201 0.1144 4376 +4378 2 -1.0235304717103304 -1107.884702066388 131.469 0.1144 4377 +4379 2 -0.902677727450282 -1108.912236817238 132.4795 0.1144 4378 +4380 2 -0.781442867358578 -1109.9413539673715 133.4505 0.1144 4379 +4381 2 -0.6612228070820834 -1110.9960763939403 134.3362 0.1144 4380 +4382 2 -0.545450820841836 -1112.1344943080658 135.0241 0.1144 4381 +4383 2 -0.42919502320029324 -1113.2720370499064 135.5791 0.1144 4382 +4384 2 -0.3189295331833364 -1114.40615397585 136.0792 0.1144 4383 +4385 2 -0.2257299027187969 -1115.530836579468 136.6131 0.1144 4384 +4386 2 -0.13139254828405456 -1116.6561481379078 137.1966 0.1144 4385 +4387 2 -0.06856615357293094 -1117.3628617037375 138.0613 0.1144 4386 +4388 2 -0.010866508582182632 -1117.9868711195063 139.1715 0.1144 4387 +4389 2 -0.12232661563609781 -1118.8102225235466 140.2836 0.1144 4388 +4390 2 -0.4577046413832022 -1119.8993112710077 141.1673 0.1144 4389 +4391 2 -0.7921199776170624 -1120.9889322110098 141.8315 0.1144 4390 +4392 2 -1.1280301959055805 -1122.078983647984 142.2946 0.1144 4391 +4393 2 -1.4624455321394407 -1123.1686045879865 142.5726 0.1144 4392 +4394 2 -1.9316768665382256 -1124.2019788690764 142.7188 0.1144 4393 +4395 2 -2.470990098013772 -1125.205865903735 142.7868 0.1144 4394 +4396 2 -3.0097369341489184 -1126.2112086843597 142.805 0.1144 4395 +4397 2 -3.3780186779143264 -1126.5227143138577 142.6902 0.1144 4396 +4398 2 -4.219138004248464 -1127.2354389864117 142.4102 0.1144 4397 +4399 2 -5.059637620812737 -1127.9472493505928 142.0132 0.1144 4398 +4400 2 -5.900756947146817 -1128.6599740231468 141.5428 0.1144 4399 +4401 2 -6.688470195979846 -1129.4676953845167 141.1004 0.1144 4400 +4402 2 -7.454713406080771 -1130.3147089516892 140.7249 0.1144 4401 +4403 2 -8.221958441783272 -1131.1610544279515 140.4211 0.1144 4402 +4404 2 -8.98916434139744 -1132.0075358025824 140.1789 0.1144 4403 +4405 2 -9.2335401233006 -1133.1116249372176 139.9423 0.1144 4404 +4406 2 -9.47389011269405 -1134.2179396042986 139.7071 0.1144 4405 +4407 2 -9.687933153469885 -1135.3310273396974 139.4862 0.1144 4406 +4408 2 -9.835262778174808 -1136.4652271596958 139.3249 0.1144 4407 +4409 2 -9.982504885651167 -1137.5994753608343 139.2146 0.1144 4408 +4410 2 -10.037255091818793 -1138.7365214526549 139.146 0.1144 4409 +4411 2 -9.947770651265103 -1139.8774323452749 139.111 0.1144 4410 +4412 2 -9.857666500941605 -1141.0174289295219 139.0945 0.1144 4411 +4413 2 -9.768230441528146 -1142.15842733937 139.0827 0.1144 4412 +4414 2 -9.632195420024743 -1143.2885080236242 139.0665 0.1144 4413 +4415 2 -9.241436648963713 -1144.3645859171056 139.0438 0.1144 4414 +4416 2 -8.851195892103021 -1145.439120547392 139.0119 0.1144 4415 +4417 2 -8.46048550218211 -1146.5152859581017 138.9674 0.1144 4416 +4418 2 -8.07024474532136 -1147.5898205883882 138.906 0.1144 4417 +4419 2 -7.678953781718917 -1148.6649357923561 138.8192 0.1144 4418 +4420 2 -7.122751808357236 -1149.6639354994772 138.6955 0.1144 4419 +4421 2 -6.563424172517728 -1150.662035076567 138.5219 0.1144 4420 +4422 2 -6.004096536678219 -1151.6601346536563 138.2903 0.1144 4421 +4423 2 -5.44476890083871 -1152.6582342307456 137.9963 0.1144 4422 +4424 2 -4.741135706461364 -1153.3740084533679 137.4708 0.1144 4423 +4425 2 -4.006770621522946 -1154.0296441616874 136.7363 0.1144 4424 +4426 2 -3.2449743429583577 -1154.6259447234556 135.8694 0.1144 4425 +4427 2 -2.130754010215469 -1154.4902828640325 135.0448 0.1144 4426 +4428 2 -1.0181160767555752 -1154.3550031204409 134.2748 0.1144 4427 +4429 2 0.09610425598737038 -1154.2193412610177 133.569 0.1144 4428 +4430 2 1.2092743819886778 -1154.083098827913 132.9334 0.1144 4429 +4431 2 2.3219998326769655 -1153.9478674654615 132.3428 0.1144 4430 +4432 2 3.4361326481914602 -1153.8121572248983 131.7677 0.1144 4431 +4433 2 4.549390291421275 -1153.6759631729337 131.1834 0.1144 4432 +4434 2 5.663610624164221 -1153.5403013135106 130.585 0.1144 4433 +4435 2 6.776200176483883 -1153.4051090871474 129.9662 0.1144 4434 +4436 2 7.88937030248519 -1153.2688666540425 129.3202 0.1144 4435 +4437 2 9.003590635228193 -1153.1332047946194 128.6412 0.1144 4436 +4438 2 10.11622856868803 -1152.9979250510278 127.9256 0.1144 4437 +4439 2 11.080345939597407 -1152.630284268319 127.0858 0.1144 4438 +4440 2 12.014941686755037 -1152.2189002149157 126.1364 0.1144 4439 +4441 2 12.950548504566143 -1151.807960836825 125.1152 0.1144 4440 +4442 2 13.885144251723887 -1151.3965767834216 124.0624 0.1144 4441 +4443 2 14.820790205623382 -1150.9857733036995 123.0172 0.1144 4442 +4444 2 15.7559665264626 -1150.5733390435544 122.0164 0.1144 4443 +4445 2 16.69157334427365 -1150.162399665464 121.0924 0.1144 4444 +4446 2 17.77286074593536 -1149.9680826950066 120.3818 0.1144 4445 +4447 2 18.91053383132845 -1149.8584119570123 119.8988 0.1144 4446 +4448 2 20.049257123463235 -1149.7493217927 119.5958 0.1144 4447 +4449 2 21.18754991862619 -1149.6387367463321 119.4281 0.1144 4448 +4450 2 22.3262248296208 -1149.5297340992481 119.357 0.1144 4449 +4451 2 23.46451762478381 -1149.4191490528806 119.3486 0.1144 4450 +4452 2 24.603240916918537 -1149.3100588885682 119.3738 0.1144 4451 +4453 2 25.74086562117151 -1149.2004756678023 119.4382 0.1144 4452 +4454 2 26.878413587601983 -1149.0959918696808 119.5354 0.1144 4453 +4455 2 27.8651330671384 -1149.6283283503992 119.7468 0.1144 4454 +4456 2 28.85127197299323 -1150.1617150378588 120.036 0.1144 4455 +4457 2 29.83698038187623 -1150.6936068432642 120.3703 0.1144 4456 +4458 2 30.823119287731117 -1151.226993530724 121.1722 0.1144 4457 +4459 2 -2.6914868856106864 -1127.059010899859 142.7068 0.1144 4396 +4460 2 -2.3183291574992495 -1128.0509732579908 141.2748 0.1144 4459 +4461 2 -1.9455535452194113 -1129.0413532168395 140.656 0.1144 4460 +4462 2 -1.607856667788667 -1130.0476483370571 139.9367 0.1144 4461 +4463 2 -1.4784707608416738 -1131.1426308835316 139.2012 0.1144 4462 +4464 2 -1.3492207522634203 -1132.2376525660943 138.4818 0.1144 4463 +4465 2 -1.221465625739711 -1133.3331047456286 137.8084 0.1144 4464 +4466 2 -1.0921672360212824 -1134.428038910963 137.2092 0.1144 4465 +4467 2 -0.962917227442972 -1135.5230605935258 136.6842 0.1144 4466 +4468 2 -0.9366473784023128 -1136.6578196230257 136.3054 0.1144 4467 +4469 2 -0.9228943576142683 -1137.798685125361 136.068 0.1144 4468 +4470 2 -0.9091897179664556 -1138.939638144925 135.966 0.1144 4469 +4471 2 -0.895436697178468 -1140.0805036472607 135.9949 0.1144 4470 +4472 2 -0.8817320575306553 -1141.2214566668245 136.1492 0.1144 4471 +4473 2 -0.8019613299578623 -1142.2877541304915 136.5367 0.1144 4472 +4474 2 -0.6619687658371163 -1143.2854205486847 137.2154 0.1144 4473 +4475 2 -0.5219278205762521 -1144.2829994496497 138.115 0.1144 4474 +4476 2 -0.3814030639139787 -1145.2797031783298 139.169 0.1144 4475 +4477 2 -0.24144963588156543 -1146.2772336981548 140.3139 0.1144 4476 +4478 2 -0.0998746724776538 -1147.2745180005168 141.4854 0.1144 4477 +4479 2 0.04003037441458446 -1148.27213603757 142.6202 0.1144 4478 +4480 2 0.1800713196755055 -1149.269714938535 143.6786 0.1144 4479 +4481 2 0.320596076337722 -1150.266418667215 144.6432 0.1144 4480 +4482 2 0.4615997111118304 -1151.2645297607214 145.5003 0.1144 4481 +4483 2 0.5342543906234027 -1152.3556876720913 146.022 0.1144 4482 +4484 2 0.5904394580331882 -1153.4716770529549 146.2303 0.1144 4483 +4485 2 0.6466636615312495 -1154.587802332187 146.2216 0.1144 4484 +4486 2 0.702848728941035 -1155.7037917130506 146.0872 0.1144 4485 +4487 2 0.7597018872608032 -1156.8187792683125 145.9116 0.1144 4486 +4488 2 0.6247061711329707 -1157.8409637558816 145.8173 0.1144 4487 +4489 2 -0.20131330619136634 -1158.524100516041 146.0248 0.1144 4488 +4490 2 -1.0289635639389303 -1159.2077069092602 146.4705 0.1144 4489 +4491 2 -1.8549439051748777 -1159.8909795677882 147.0832 0.1144 4490 +4492 2 -2.682061970380971 -1160.5736232714944 147.7941 0.1144 4491 +4493 2 -3.472987039087286 -1161.2761608688456 148.538 0.1144 4492 +4494 2 -3.482919140297952 -1162.4053039569285 149.1885 0.1144 4493 +4495 2 -3.491181324997058 -1163.5341133103198 149.73 0.1144 4494 +4496 2 -3.2357304433529634 -1164.611261279295 150.1668 0.1144 4495 +4497 2 -2.7510683467683066 -1165.6452120383424 150.5031 0.1144 4496 +4498 2 -2.2674564569255153 -1166.678582223708 150.7638 0.1144 4497 +4499 2 -1.7837961859424922 -1167.711864891845 150.9715 0.1144 4498 +4500 2 -1.3001842960995873 -1168.7452350772105 151.1471 0.1144 4499 +4501 2 -0.8165724062567392 -1169.778605262576 151.4652 0.1144 4500 +4502 2 -13.005421080022302 -1088.8649323871714 112.9512 0.1144 4357 +4503 2 -14.128160998527164 -1088.6613217651604 113.1178 0.1144 4502 +4504 2 -15.249889846378665 -1088.4581558184623 113.3168 0.1144 4503 +4505 2 -16.371061543941607 -1088.2566690333279 113.5411 0.1144 4504 +4506 2 -17.492790391793164 -1088.05350308663 113.7828 0.1144 4505 +4507 2 -18.615530310298027 -1087.849892464619 114.0356 0.1144 4506 +4508 2 -19.73717164092102 -1087.6467748990613 114.2943 0.1144 4507 +4509 2 -20.7981663284354 -1087.239287901641 114.5707 0.1144 4508 +4510 2 -21.841608819961834 -1086.790542687876 114.8633 0.1144 4509 +4511 2 -22.885481808459986 -1086.340302592056 115.1685 0.1144 4510 +4512 2 -23.927811533763304 -1085.889544482036 115.4826 0.1144 4511 +4513 2 -24.971684522261455 -1085.439304386216 115.8021 0.1144 4512 +4514 2 -26.064270598852602 -1085.126788090258 116.1222 0.1144 4513 +4515 2 -27.175423671246904 -1084.881135287081 116.4402 0.1144 4514 +4516 2 -28.286664260869657 -1084.6354341027636 116.7586 0.1144 4515 +4517 2 -29.397435217432246 -1084.3913636988698 117.0792 0.1144 4516 +4518 2 -30.507713117541755 -1084.1461947070939 117.4048 0.1144 4517 +4519 2 -31.617690864231804 -1083.8959355377256 117.7383 0.1144 4518 +4520 2 -32.67427764340471 -1083.4922564720346 118.0981 0.1144 4519 +4521 2 -33.72908356544457 -1083.0855626844873 118.4789 0.1144 4520 +4522 2 -34.784025385853056 -1082.6789080330282 118.8748 0.1144 4521 +4523 2 -35.838918825121425 -1082.2721658643409 119.2811 0.1144 4522 +4524 2 -36.89381226438974 -1081.8654236956536 119.6927 0.1144 4523 +4525 2 -37.925323725934675 -1081.399850216274 120.1057 0.1144 4524 +4526 2 -38.61706143285181 -1080.4972044137417 120.5014 0.1144 4525 +4527 2 -39.30406765461498 -1079.5905469970407 120.8883 0.1144 4526 +4528 2 -39.99328523048291 -1078.685409420142 121.2896 0.1144 4527 +4529 2 -40.68087202592773 -1077.7798022101829 121.6967 0.1144 4528 +4530 2 -41.40557760503117 -1076.9177767154226 122.1312 0.1144 4529 +4531 2 -42.17649703953714 -1076.1438952480771 122.624 0.1144 4530 +4532 2 -42.947798589874765 -1075.3684313814483 123.1451 0.1144 4531 +4533 2 -43.71863050715223 -1074.5945982952428 124.32 0.1144 4532 +4534 2 82.72488606969131 -1066.7521595207595 45.855 0.1144 4232 +4535 2 83.633869119721 -1066.8742798907174 47.2746 0.1144 4534 +4536 2 83.27718424305527 -1067.5242453888463 47.9147 0.1144 4535 +4537 2 82.2214068509765 -1067.757574144844 48.5523 0.1144 4536 +4538 2 81.08956187736987 -1067.700443104931 49.1336 0.1144 4537 +4539 2 79.95953330341763 -1067.8103406574573 49.6471 0.1144 4538 +4540 2 78.90265406011673 -1068.1946875776737 50.1113 0.1144 4539 +4541 2 77.80769810241208 -1068.5083947511448 50.4826 0.1144 4540 +4542 2 76.71309646764183 -1068.6155956427372 50.869 0.1144 4541 +4543 2 75.64697939861628 -1068.8510925962892 51.2918 0.1144 4542 +4544 2 74.68652454353088 -1069.4417431455508 51.6785 0.1144 4543 +4545 2 73.60704785111227 -1069.6658554400042 51.8795 0.1144 4544 +4546 2 72.48185142827714 -1069.8569231244485 52.0066 0.1144 4545 +4547 2 72.71964169834615 -1070.928192930548 52.1382 0.1144 4546 +4548 2 73.05827560816329 -1072.0016215146288 52.3099 0.1144 4547 +4549 2 73.3733119132101 -1073.0633760655974 52.92 0.1144 4548 +4550 2 73.51928907170503 -1044.4033338958939 28.6479 0.1144 4121 +4551 2 72.40178297878538 -1044.1619389243483 28.3321 0.1144 4550 +4552 2 71.3820918979008 -1043.6962727031505 28.163 0.1144 4551 +4553 2 71.37669377963351 -1043.2566887745102 27.9838 0.1144 4552 +4554 2 70.85889180618778 -1042.306454731605 27.7445 0.1144 4553 +4555 2 69.78412164247118 -1042.0090435092466 27.5509 0.1144 4554 +4556 2 68.66301399981745 -1041.8427852054442 27.489 0.1144 4555 +4557 2 67.60859392277098 -1041.4116238654315 27.5097 0.1144 4556 +4558 2 66.59965584660819 -1040.8721463789052 27.5743 0.1144 4557 +4559 2 65.49011755064151 -1040.609104139363 27.6754 0.1144 4558 +4560 2 64.36066955037074 -1040.7179514851478 27.8123 0.1144 4559 +4561 2 63.337178927723585 -1040.455515806641 28.0493 0.1144 4560 +4562 2 62.207594427668084 -1040.2950835554122 28.2013 0.1144 4561 +4563 2 61.46147548168034 -1040.4459328790372 28.7316 0.1144 4562 +4564 2 60.34811884243635 -1040.6461738684757 28.9635 0.1144 4563 +4565 2 59.25497505177162 -1040.545078997532 29.1416 0.1144 4564 +4566 2 58.135930920246835 -1040.3159740397073 29.3474 0.1144 4565 +4567 2 57.169810538476895 -1040.919146641811 29.5702 0.1144 4566 +4568 2 56.033364889090024 -1040.998073544637 29.846 0.1144 4567 +4569 2 55.01717682774671 -1040.6467788620935 30.2691 0.1144 4568 +4570 2 54.23595415282688 -1039.8136121247649 30.6785 0.1144 4569 +4571 2 53.82069391780192 -1038.7487844874418 31.0778 0.1144 4570 +4572 2 53.053386948030834 -1038.0487716203165 31.6235 0.1144 4571 +4573 2 52.00188139269909 -1037.6596706602734 32.1686 0.1144 4572 +4574 2 50.94066361981436 -1037.2337782225459 32.6222 0.1144 4573 +4575 2 49.851561761249854 -1037.2956861515318 33.0952 0.1144 4574 +4576 2 48.76247408102654 -1037.3550881278097 34.16 0.1144 4575 +4577 2 61.810624863908686 -1040.1121956786992 28.2072 0.1144 4562 +4578 2 60.81223807127736 -1039.65305075354 28.0258 0.1144 4577 +4579 2 59.785871888482745 -1039.2372838611404 27.7121 0.1144 4578 +4580 2 58.685508392938004 -1039.0002237892759 27.3503 0.1144 4579 +4581 2 57.54691903792258 -1038.9459915973084 27.0078 0.1144 4580 +4582 2 56.402835131291056 -1038.9488243674682 26.7078 0.1144 4581 +4583 2 55.260174593481395 -1038.9680980628204 26.4335 0.1144 4582 +4584 2 54.118035799033805 -1038.9628650696193 26.169 0.1144 4583 +4585 2 52.98972981568005 -1038.8331908318996 25.8815 0.1144 4584 +4586 2 51.91405429734192 -1038.5208819475433 25.5278 0.1144 4585 +4587 2 50.87576127954907 -1038.2213546379326 25.0718 0.1144 4586 +4588 2 49.82485154347762 -1038.2234775204647 24.5369 0.1144 4587 +4589 2 48.715910426604296 -1038.2456236105877 24.0232 0.1144 4588 +4590 2 47.58458570093194 -1038.1261639308527 23.6356 0.1144 4589 +4591 2 46.46208696863721 -1038.2650192368246 23.394 0.1144 4590 +4592 2 45.342784382446666 -1038.4737423082547 23.2643 0.1144 4591 +4593 2 44.20501855523537 -1038.5715926655885 23.1827 0.1144 4592 +4594 2 43.06382827195989 -1038.5693978176369 23.0756 0.1144 4593 +4595 2 41.998864097220974 -1038.2329591359685 22.8711 0.1144 4594 +4596 2 41.06860690364363 -1037.63631200089 22.5491 0.1144 4595 +4597 2 40.05815691182414 -1037.167984525685 22.1544 0.1144 4596 +4598 2 38.99673695192757 -1036.7707746457306 21.7569 0.1144 4597 +4599 2 37.94495350136816 -1036.3278163484506 21.4057 0.1144 4598 +4600 2 36.882322808840854 -1035.9090269845706 21.1016 0.1144 4599 +4601 2 35.775113236317566 -1035.6773233322194 20.8181 0.1144 4600 +4602 2 34.64818224064555 -1035.5641775369213 20.5555 0.1144 4601 +4603 2 33.537895386784555 -1035.3332864973738 20.318 0.1144 4602 +4604 2 32.45665603733147 -1035.031042094292 20.0819 0.1144 4603 +4605 2 31.33502515588782 -1034.8514685277744 19.8925 0.1144 4604 +4606 2 30.213708606204705 -1034.6642988309563 19.8392 0.1144 4605 +4607 2 29.151016849624 -1034.2859248882814 19.9234 0.1144 4606 +4608 2 28.132499599015887 -1033.7778303496239 20.0847 0.1144 4607 +4609 2 27.142169150172435 -1033.2094472199537 20.2815 0.1144 4608 +4610 2 26.2175316271738 -1032.5505481828754 20.5126 0.1144 4609 +4611 2 25.395692839465028 -1031.783824890535 20.7687 0.1144 4610 +4612 2 24.499852544022758 -1031.0963971015549 21.0055 0.1144 4611 +4613 2 23.470391910693536 -1030.6083048721293 21.1742 0.1144 4612 +4614 2 22.43283653579425 -1030.1276210945607 21.2504 0.1144 4613 +4615 2 21.43268964879394 -1029.57472142516 21.2266 0.1144 4614 +4616 2 20.39348036137875 -1029.1112911855878 21.093 0.1144 4615 +4617 2 19.317292053430094 -1028.8092110375567 20.8371 0.1144 4616 +4618 2 18.286450178222992 -1028.3804576838443 20.5004 0.1144 4617 +4619 2 17.320460667454427 -1027.7798253877718 20.171 0.1144 4618 +4620 2 16.193954944164545 -1027.6564024750082 19.8777 0.1144 4619 +4621 2 15.226454350123163 -1028.2312746351706 19.6027 0.1144 4620 +4622 2 14.440971858325781 -1029.0467422035508 19.357 0.1144 4621 +4623 2 13.622495371393768 -1029.8439700821018 19.1766 0.1144 4622 +4624 2 12.632665240104643 -1030.4143822236208 19.0707 0.1144 4623 +4625 2 11.497658633308674 -1030.5450660502004 19.025 0.1144 4624 +4626 2 10.44461233981633 -1030.1066657379715 19.05 0.1144 4625 +4627 2 9.618312038036265 -1029.3244500316105 19.148 0.1144 4626 +4628 2 8.86154646640233 -1028.4681251402349 19.2773 0.1144 4627 +4629 2 7.926719343166667 -1027.808849211914 19.4101 0.1144 4628 +4630 2 6.840015158612971 -1027.4526223526327 19.5418 0.1144 4629 +4631 2 5.700997831659947 -1027.3470779122251 19.6784 0.1144 4630 +4632 2 4.564965510048069 -1027.3543617472765 19.8674 0.1144 4631 +4633 2 3.441025773913168 -1027.2781769093035 20.124 0.1144 4632 +4634 2 2.3601907984835293 -1026.9185673906752 20.4002 0.1144 4633 +4635 2 1.40994426988766 -1026.28470350553 20.6786 0.1144 4634 +4636 2 0.42704569629393063 -1025.7216857491248 20.9956 0.1144 4635 +4637 2 -0.7021212810034285 -1025.589021747296 21.3199 0.1144 4636 +4638 2 -1.8384120949122575 -1025.551714291923 21.6423 0.1144 4637 +4639 2 -2.939457393886812 -1025.443623267291 22.0189 0.1144 4638 +4640 2 -4.039163675891189 -1025.5389754215412 22.4318 0.1144 4639 +4641 2 -5.17013926558775 -1025.6836567800865 22.7864 0.1144 4640 +4642 2 -6.313699933429291 -1025.6998048129612 23.0539 0.1144 4641 +4643 2 -7.457633763350998 -1025.7000924943245 23.2506 0.1144 4642 +4644 2 -8.599571866214717 -1025.6283549920813 23.3973 0.1144 4643 +4645 2 -9.725921258598703 -1025.4265196723873 23.5167 0.1144 4644 +4646 2 -10.858617242791013 -1025.2644815984822 23.6394 0.1144 4645 +4647 2 -11.99968866130007 -1025.332967128792 23.7933 0.1144 4646 +4648 2 -13.11989510668434 -1025.5646144894922 23.9915 0.1144 4647 +4649 2 -14.21995887699984 -1025.6794222907915 24.3423 0.1144 4648 +4650 2 -15.295659916870193 -1025.577572141936 24.8417 0.1144 4649 +4651 2 -16.432400630681684 -1025.5295037576961 25.3605 0.1144 4650 +4652 2 -17.488638236247652 -1025.8723850499655 25.9463 0.1144 4651 +4653 2 -18.532689019090526 -1026.181440001139 26.6031 0.1144 4652 +4654 2 -19.635164406904494 -1026.0073141005255 27.2722 0.1144 4653 +4655 2 -20.722399288571694 -1025.689871882026 27.9139 0.1144 4654 +4656 2 -21.84737369327405 -1025.5045650047532 28.523 0.1144 4655 +4657 2 -22.94976422578378 -1025.7513174390529 29.1768 0.1144 4656 +4658 2 -23.98103446348739 -1026.110629207336 29.9051 0.1144 4657 +4659 2 -24.836375940217124 -1026.2887381857336 30.8148 0.1144 4658 +4660 2 -25.623860351640985 -1025.9162470291078 31.8371 0.1144 4659 +4661 2 -26.67358864340676 -1025.6940387631355 32.783 0.1144 4660 +4662 2 -27.730783713896244 -1026.0481598623837 34.44 0.1144 4661 +4663 2 71.1829501730225 -1043.8175664928208 28.1655 0.1144 4552 +4664 2 70.22137732712451 -1044.3984579388168 29.5044 0.1144 4663 +4665 2 69.24672527809543 -1044.9720046965651 30.0068 0.1144 4664 +4666 2 68.39222290497537 -1045.6760740783252 30.6018 0.1144 4665 +4667 2 67.44068954497351 -1045.7774681846804 31.3648 0.1144 4666 +4668 2 66.79296365966809 -1045.7528134182971 33.6591 0.1144 4667 +4669 2 74.96590725561202 -1037.4972541048696 26.2448 0.1144 4113 +4670 2 74.4903344411012 -1037.134939672231 28.9243 0.1144 4669 +4671 2 73.65543528940731 -1036.5832383250322 30.0166 0.1144 4670 +4672 2 72.84757680284014 -1037.0751972925095 31.2586 0.1144 4671 +4673 2 72.45153030398285 -1038.0706449359059 32.5366 0.1144 4672 +4674 2 71.78983650396793 -1038.7924056753632 33.8909 0.1144 4673 +4675 2 70.96366541687485 -1038.9578462533705 35.3772 0.1144 4674 +4676 2 69.93970040239935 -1038.8074690638432 36.7951 0.1144 4675 +4677 2 68.9233164082404 -1038.4089896209389 38.0993 0.1144 4676 +4678 2 68.01965646893689 -1038.0598001106468 39.3786 0.1144 4677 +4679 2 67.73932940419303 -1038.2760713217963 40.7711 0.1144 4678 +4680 2 66.98814956893779 -1038.6725311244318 43.68 0.1144 4679 +4681 2 75.32017014529222 -1012.577128142006 12.7931 0.1144 4087 +4682 2 74.45533850677347 -1012.8244904006814 14.8185 0.1144 4681 +4683 2 73.41943111912536 -1012.8988942595614 15.6659 0.1144 4682 +4684 2 72.44120826648415 -1013.3488909490718 16.5962 0.1144 4683 +4685 2 71.40669872612574 -1013.6501944686456 17.6062 0.1144 4684 +4686 2 70.33987326490063 -1013.8303392029062 18.6756 0.1144 4685 +4687 2 69.51191922383052 -1013.6916538183997 19.9087 0.1144 4686 +4688 2 68.9999646055108 -1014.2582971266467 21.2637 0.1144 4687 +4689 2 68.50368998169222 -1015.1512603665135 22.605 0.1144 4688 +4690 2 67.61910766933067 -1015.7536891694914 23.8946 0.1144 4689 +4691 2 67.4815908528798 -1016.0450235739017 25.0292 0.1144 4690 +4692 2 66.98638360499965 -1017.0117053372794 26.162 0.1144 4691 +4693 2 66.99360544435481 -1017.9372305422503 27.3692 0.1144 4692 +4694 2 67.29881962083368 -1018.877235285045 28.6919 0.1144 4693 +4695 2 67.0119164878252 -1019.561778207198 30.2044 0.1144 4694 +4696 2 66.76280765007789 -1019.6672183653742 31.9701 0.1144 4695 +4697 2 66.61627129687338 -1019.4593781931517 33.9212 0.1144 4696 +4698 2 66.3206613881818 -1018.6344898177435 35.7977 0.1144 4697 +4699 2 66.48928498755538 -1017.6271247589222 37.5158 0.1144 4698 +4700 2 67.00213554092377 -1016.9641957959783 39.1854 0.1144 4699 +4701 2 67.78721779205324 -1017.6413558870657 40.7123 0.1144 4700 +4702 2 68.49687922601595 -1018.3369244093166 42.1588 0.1144 4701 +4703 2 69.08542264177652 -1019.24662416625 43.4893 0.1144 4702 +4704 2 69.6073734298507 -1019.8867561173575 44.9193 0.1144 4703 +4705 2 69.98975700144848 -1020.483783172165 46.4442 0.1144 4704 +4706 2 70.26280174020332 -1021.4699914567775 47.887 0.1144 4705 +4707 2 70.41710197306764 -1022.3566194103961 49.331 0.1144 4706 +4708 2 70.38150815454156 -1023.2676163862872 50.7385 0.1144 4707 +4709 2 69.9785734517618 -1024.1926406482912 52.047 0.1144 4708 +4710 2 69.4781181999553 -1025.1996127139114 53.1418 0.1144 4709 +4711 2 68.92230027967804 -1026.1837491726906 54.0487 0.1144 4710 +4712 2 68.21524586858021 -1027.034689070537 54.9273 0.1144 4711 +4713 2 67.49765990710853 -1027.7961662585726 55.8522 0.1144 4712 +4714 2 66.7174400257689 -1028.211879521246 56.9136 0.1144 4713 +4715 2 65.90581377316744 -1028.6207429777792 58.0866 0.1144 4714 +4716 2 65.62831421636236 -1029.4869067763602 59.306 0.1144 4715 +4717 2 65.28821095965742 -1030.5041398198557 60.4548 0.1144 4716 +4718 2 64.50106783532664 -1031.2872669754433 61.4678 0.1144 4717 +4719 2 63.89036583339009 -1032.2359206555768 62.3333 0.1144 4718 +4720 2 63.28697012191941 -1033.069665379925 63.1963 0.1144 4719 +4721 2 62.522798172571356 -1033.8157869262095 64.0346 0.1144 4720 +4722 2 61.670681857786406 -1034.536829425704 64.8105 0.1144 4721 +4723 2 60.817897452091415 -1035.2588737508 65.5547 0.1144 4722 +4724 2 59.9656936200779 -1035.9798678691543 66.2836 0.1144 4723 +4725 2 59.11290921438291 -1036.7019121942503 67.0009 0.1144 4724 +4726 2 59.66202435274624 -1037.006844342146 67.7029 0.1144 4725 +4727 2 60.400809290633276 -1037.7276539325035 68.4779 0.1144 4726 +4728 2 61.0506168255385 -1038.4959418522185 69.3154 0.1144 4727 +4729 2 61.77513379455519 -1039.1148252189419 70.1974 0.1144 4728 +4730 2 62.52374561977854 -1039.8436953480705 70.9996 0.1144 4729 +4731 2 63.45336640021054 -1040.4935801106162 71.5915 0.1144 4730 +4732 2 64.49092177510977 -1040.9742638881849 71.9284 0.1144 4731 +4733 2 65.53293567322464 -1041.394796177237 71.9961 0.1144 4732 +4734 2 66.57553014502105 -1041.8142782595473 71.8724 0.1144 4733 +4735 2 67.61754404313587 -1042.2348105485999 71.2449 0.1144 4734 +4736 2 66.76193784833956 -1015.7034036051407 24.2362 0.1144 4690 +4737 2 65.8306893159712 -1015.6120516978718 26.1512 0.1144 4736 +4738 2 64.85505480793552 -1015.1969070402764 26.9204 0.1144 4737 +4739 2 63.852364966614005 -1015.4334172982159 27.8244 0.1144 4738 +4740 2 63.11284615262639 -1015.3501335437473 28.9629 0.1144 4739 +4741 2 62.38186522246281 -1014.7381889958207 30.1529 0.1144 4740 +4742 2 61.56207370703373 -1014.601273689041 31.3818 0.1144 4741 +4743 2 60.471165334209275 -1014.7327976112055 32.4055 0.1144 4742 +4744 2 59.344379326252124 -1014.7491921917698 33.2027 0.1144 4743 +4745 2 58.2198249693422 -1014.5418361975111 33.7235 0.1144 4744 +4746 2 57.09425954177897 -1014.3340355279394 34.0197 0.1144 4745 +4747 2 55.9697051848691 -1014.1266795336807 34.2199 0.1144 4746 +4748 2 75.50407224289862 -964.3408816285335 19.1816 0.1144 4040 +4749 2 76.41866138658207 -964.6725747823011 17.7932 0.1144 4748 +4750 2 77.3794013603653 -964.7932561096678 17.1824 0.1144 4749 +4751 2 78.47415932604144 -964.6076428111447 16.5824 0.1144 4750 +4752 2 79.60975592609194 -964.5870920945184 16.0322 0.1144 4751 +4753 2 80.70408964899235 -964.3241165958063 15.5414 0.1144 4752 +4754 2 81.63295884304321 -964.4480893361297 15.0902 0.1144 4753 +4755 2 82.54619706278041 -964.997392680386 14.6271 0.1144 4754 +4756 2 83.60878502694752 -965.0710835102583 14.1474 0.1144 4755 +4757 2 84.72350261112678 -965.0337343801281 13.6919 0.1144 4756 +4758 2 85.80399190725765 -965.3303080319358 13.3188 0.1144 4757 +4759 2 86.86700471561662 -965.7506797950989 13.049 0.1144 4758 +4760 2 87.94316703621172 -966.1377574097078 12.8666 0.1144 4759 +4761 2 89.04995133635288 -966.3797381795243 12.7248 0.1144 4760 +4762 2 90.12000145607007 -966.1346463777579 12.5794 0.1144 4761 +4763 2 91.15830801315681 -965.6799296818792 12.493 0.1144 4762 +4764 2 92.23634669259096 -965.3164211460181 12.4431 0.1144 4763 +4765 2 93.35341329715615 -965.0881798680575 12.3743 0.1144 4764 +4766 2 94.4787076863991 -964.9207045637936 12.2816 0.1144 4765 +4767 2 95.6148322840078 -964.7997798404793 12.1954 0.1144 4766 +4768 2 96.7333896132755 -964.9541160680519 12.1539 0.1144 4767 +4769 2 97.85279123311156 -965.1637653788274 12.0974 0.1144 4768 +4770 2 98.95831418574775 -965.448126084964 12.0437 0.1144 4769 +4771 2 100.06328731082431 -965.5348502618613 12.0774 0.1144 4770 +4772 2 101.14951514230034 -965.8398523899307 12.0733 0.1144 4771 +4773 2 102.21735590679316 -966.2419829678371 12.0009 0.1144 4772 +4774 2 103.28716726737099 -965.9431697272024 11.8921 0.1144 4773 +4775 2 104.3115284027935 -965.4663465794464 11.704 0.1144 4774 +4776 2 105.39314314806069 -965.7205794310227 11.4541 0.1144 4775 +4777 2 105.71686372211067 -966.7595973711645 10.6588 0.1144 4776 +4778 2 64.62828653614241 -908.4926446867936 46.0709 0.1144 2359 +4779 2 63.57807147975083 -908.6780870102482 45.341 0.1144 4778 +4780 2 62.46846273778888 -908.8266961948958 45.0335 0.1144 4779 +4781 2 61.34014168208225 -908.9310246917178 44.746 0.1144 4780 +4782 2 60.20401036445614 -909.0023554642432 44.515 0.1144 4781 +4783 2 59.06399437727845 -909.0831935677545 44.38 0.1144 4782 +4784 2 57.92555150540568 -909.1963237029182 44.3663 0.1144 4783 +4785 2 56.80714009549558 -909.4224503890542 44.4926 0.1144 4784 +4786 2 55.71350954020497 -909.7290061075374 44.7437 0.1144 4785 +4787 2 54.741598046966516 -910.2244264334336 45.1601 0.1144 4786 +4788 2 53.941301215416246 -910.9414364204007 45.7114 0.1144 4787 +4789 2 53.10945465591183 -911.7037356408126 46.2767 0.1144 4788 +4790 2 52.09501837423346 -912.2122117075203 46.821 0.1144 4789 +4791 2 51.03889440884436 -912.6140013785309 47.3508 0.1144 4790 +4792 2 50.02061838207743 -912.9307920875357 47.9371 0.1144 4791 +4793 2 48.94168942037459 -913.0454002268575 48.5282 0.1144 4792 +4794 2 47.828244662486014 -912.9762741020539 49.0731 0.1144 4793 +4795 2 46.697624599851395 -912.9382165933587 49.5474 0.1144 4794 +4796 2 45.55309079331721 -912.9302884346513 49.9022 0.1144 4795 +4797 2 44.41377331294481 -912.8298341718362 50.1567 0.1144 4796 +4798 2 43.27449496866063 -912.7295158073897 50.3373 0.1144 4797 +4799 2 42.134882889685 -912.6275275264315 50.486 0.1144 4798 +4800 2 40.99968767280225 -912.5150692249744 50.6556 0.1144 4799 +4801 2 39.87705766531238 -912.396416933453 50.8897 0.1144 4800 +4802 2 38.75720255200676 -912.3459141097377 51.1874 0.1144 4801 +4803 2 37.639830433837574 -912.4236161015918 51.5256 0.1144 4802 +4804 2 36.5516240821315 -912.7461964266374 51.8538 0.1144 4803 +4805 2 35.61838825030259 -913.4081116570036 52.1105 0.1144 4804 +4806 2 34.58977450783809 -913.8903537837543 52.3247 0.1144 4805 +4807 2 33.57099973420702 -914.0710098121978 52.3393 0.1144 4806 +4808 2 33.57313149522838 -914.1428029566821 51.3576 0.1144 4807 +4809 2 32.85599586184955 -914.5580830228282 51.2747 0.1144 4808 +4810 2 32.4959152147332 -915.599465266566 51.1736 0.1144 4809 +4811 2 32.36766807499748 -916.7181622233642 50.9762 0.1144 4810 +4812 2 32.34843232524045 -917.8525600353911 50.7335 0.1144 4811 +4813 2 32.345957057026624 -918.9897103478156 50.4641 0.1144 4812 +4814 2 32.307061977780734 -920.1146112780358 50.1637 0.1144 4813 +4815 2 32.13730484942022 -921.2207586992103 49.8495 0.1144 4814 +4816 2 31.814961666126123 -922.3052842370303 49.5981 0.1144 4815 +4817 2 31.466330937145358 -923.3923027533447 49.4508 0.1144 4816 +4818 2 31.31364489292693 -924.5196564963645 49.4113 0.1144 4817 +4819 2 31.522793236739005 -925.6286819650896 49.4757 0.1144 4818 +4820 2 32.10021571028727 -926.6081046353609 49.7011 0.1144 4819 +4821 2 32.912750849449736 -927.3800826516452 50.1718 0.1144 4820 +4822 2 33.746882914219356 -927.9968327619192 50.9502 0.1144 4821 +4823 2 34.352238320408986 -928.6138288171717 52.0635 0.1144 4822 +4824 2 34.74629742054702 -929.2250802184775 53.468 0.1144 4823 +4825 2 35.06245587375861 -929.9135858702066 55.0508 0.1144 4824 +4826 2 35.299753651159534 -930.7728536776103 56.6664 0.1144 4825 +4827 2 35.638469387794004 -931.7090973743883 58.1997 0.1144 4826 +4828 2 36.1769008385655 -932.6172605881445 59.5857 0.1144 4827 +4829 2 36.832778409773425 -933.4595188036499 60.8289 0.1144 4828 +4830 2 37.58148820140457 -934.211981312959 61.9682 0.1144 4829 +4831 2 38.29916478385391 -934.9734543676391 63.054 0.1144 4830 +4832 2 38.75269673445533 -935.9051839742223 64.1197 0.1144 4831 +4833 2 38.97022247383339 -936.9469690589245 65.156 0.1144 4832 +4834 2 39.17698848847226 -938.0129714581668 66.1528 0.1144 4833 +4835 2 39.3040508965654 -939.0883874169705 67.1219 0.1144 4834 +4836 2 39.19011814559079 -940.1456398599827 68.0859 0.1144 4835 +4837 2 39.12220900761412 -941.2047967836627 69.0458 0.1144 4836 +4838 2 39.1881375045202 -942.284352175153 69.984 0.1144 4837 +4839 2 39.248502170311326 -943.3739720479177 70.8966 0.1144 4838 +4840 2 39.29850775622475 -944.4564940714247 71.7965 0.1144 4839 +4841 2 39.107850713634434 -945.4987550810142 72.6984 0.1144 4840 +4842 2 38.43646456481872 -946.3184516585222 73.5834 0.1144 4841 +4843 2 37.74652662814751 -947.1148664584488 74.4512 0.1144 4842 +4844 2 37.21545924455816 -948.0211606347997 75.2914 0.1144 4843 +4845 2 36.74428130254762 -949.0247787279818 76.0326 0.1144 4844 +4846 2 36.28025631095258 -950.0675441748466 76.6142 0.1144 4845 +4847 2 35.800535222897196 -951.1056317422873 77.0473 0.1144 4846 +4848 2 35.29957240606973 -952.1346045437532 77.3746 0.1144 4847 +4849 2 34.742429083378454 -953.1258924575201 77.6826 0.1144 4848 +4850 2 34.13469221803075 -954.0526470973776 78.052 0.1144 4849 +4851 2 33.531204230563304 -955.0000327099887 78.461 0.1144 4850 +4852 2 32.85584486536118 -955.916827554997 78.8726 0.1144 4851 +4853 2 31.901703894712824 -956.5030843742582 79.322 0.1144 4852 +4854 2 30.83076931873262 -956.7803665121073 79.8095 0.1144 4853 +4855 2 29.734174656459743 -957.0211819532122 80.283 0.1144 4854 +4856 2 28.63150892827767 -957.2756664161814 80.7145 0.1144 4855 +4857 2 27.528916208756243 -957.5511014082545 81.1009 0.1144 4856 +4858 2 26.430364955513568 -957.8640779313341 81.429 0.1144 4857 +4859 2 25.337098608551656 -958.2007719535569 81.697 0.1144 4858 +4860 2 24.245496623284964 -958.5437564368239 81.9386 0.1144 4859 +4861 2 23.162526796719504 -958.890141778241 82.213 0.1144 4860 +4862 2 22.092446960486797 -959.2462809983336 82.5499 0.1144 4861 +4863 2 21.071898981383043 -959.7304682372684 82.9424 0.1144 4862 +4864 2 20.09718437287279 -960.3066084649531 83.3798 0.1144 4863 +4865 2 19.140673017658344 -960.9112081650406 83.8583 0.1144 4864 +4866 2 18.2339373677072 -961.5654918581797 84.3923 0.1144 4865 +4867 2 17.406700903555986 -962.3029164525475 84.98 0.1144 4866 +4868 2 16.762756863367287 -963.212283151468 85.6008 0.1144 4867 +4869 2 16.234508734640173 -964.1986346935138 86.2434 0.1144 4868 +4870 2 15.703724470868337 -965.1705582066219 86.9193 0.1144 4869 +4871 2 15.158400033409436 -966.1239314273021 87.6274 0.1144 4870 +4872 2 14.609001422300707 -967.0751666327649 88.3571 0.1144 4871 +4873 2 14.059220695360267 -968.0248194389445 89.1022 0.1144 4872 +4874 2 13.509352451191432 -968.9744238639839 89.8621 0.1144 4873 +4875 2 12.84826581362779 -969.8794556632236 90.6046 0.1144 4874 +4876 2 12.109597619666715 -970.7404563131828 91.313 0.1144 4875 +4877 2 11.38705601913776 -971.6076297246209 92.0214 0.1144 4876 +4878 2 10.830538660412458 -972.5221360118804 92.822 0.1144 4877 +4879 2 10.391546859501403 -973.4272272441509 93.7446 0.1144 4878 +4880 2 9.96393598852734 -974.3450088047769 94.7719 0.1144 4879 +4881 2 9.520955297460887 -975.3118823059868 95.8384 0.1144 4880 +4882 2 9.068225952308353 -976.30341779705 96.8982 0.1144 4881 +4883 2 8.682296045027527 -977.2782918025842 97.9737 0.1144 4882 +4884 2 8.525805196825786 -978.1146847690951 99.1449 0.1144 4883 +4885 2 8.234805359490792 -979.0831923140689 100.2879 0.1144 4884 +4886 2 7.830858847751557 -980.1094657550453 101.3172 0.1144 4885 +4887 2 7.411235642482694 -981.1403273634099 102.2445 0.1144 4886 +4888 2 7.147806062519436 -982.2365112605734 103.0705 0.1144 4887 +4889 2 6.986047304007826 -982.4960478939121 103.7952 0.1144 4888 +4890 2 6.423335955218363 -983.3979889717789 104.5646 0.1144 4889 +4891 2 5.860576225288753 -984.3000175668741 105.3982 0.1144 4890 +4892 2 5.530648390479769 -985.3201334543195 106.2824 0.1144 4891 +4893 2 5.250882105927587 -986.365465782351 107.2044 0.1144 4892 +4894 2 4.9710283041468415 -987.4107497292423 108.1514 0.1144 4893 +4895 2 4.8038995868278676 -988.417684291092 109.1499 0.1144 4894 +4896 2 4.677282761693959 -989.410450345907 110.1744 0.1144 4895 +4897 2 4.611210320314115 -990.4144051270054 111.1883 0.1144 4896 +4898 2 4.725918659777676 -991.4530545658716 112.1434 0.1144 4897 +4899 2 4.83909298109819 -992.4919986033414 113.0237 0.1144 4898 +4900 2 5.404345665525568 -993.4345281003585 113.6873 0.1144 4899 +4901 2 6.088874582563392 -994.3502139699334 114.1336 0.1144 4900 +4902 2 6.982712430930064 -995.0600729917309 114.4284 0.1144 4901 +4903 2 7.887252669144459 -995.7600801684449 114.6197 0.1144 4902 +4904 2 8.790742700617102 -996.4595067714774 114.7488 0.1144 4903 +4905 2 9.695234557691322 -997.1596014654199 114.8482 0.1144 4904 +4906 2 10.598724589163965 -997.8590280684523 114.9473 0.1144 4905 +4907 2 11.50326482737836 -998.5590352451663 115.0492 0.1144 4906 +4908 2 12.407756684452522 -999.2591299391089 115.1508 0.1144 4907 +4909 2 13.311246715925279 -999.9585565421413 115.2525 0.1144 4908 +4910 2 14.215786954139617 -1000.6585637188552 115.3533 0.1144 4909 +4911 2 15.119228604472141 -1001.3580778391162 115.4535 0.1144 4910 +4912 2 16.02376884268648 -1002.0580850158302 115.5529 0.1144 4911 +4913 2 16.927258874159122 -1002.7575116188627 115.6509 0.1144 4912 +4914 2 17.831750731233456 -1003.4576063128051 115.7472 0.1144 4913 +4915 2 18.73524076270604 -1004.1570329158376 115.841 0.1144 4914 +4916 2 19.63978100092038 -1004.8570400925516 115.9312 0.1144 4915 +4917 2 20.543222651252904 -1005.5565542128126 116.0163 0.1144 4916 +4918 2 21.3751311448259 -1006.340613335788 116.0953 0.1144 4917 +4919 2 22.14935766605754 -1007.1816815814267 116.1644 0.1144 4918 +4920 2 22.921508731552933 -1008.0242305307787 116.219 0.1144 4919 +4921 2 23.693659797048383 -1008.8667794801308 116.2538 0.1144 4920 +4922 2 24.465771726455444 -1009.7091925311142 116.2596 0.1144 4921 +4923 2 25.23963031019656 -1010.5461724247618 116.1866 0.1144 4922 +4924 2 26.01310677810602 -1011.3815699191262 116.0485 0.1144 4923 +4925 2 26.786534864875364 -1012.217054930719 115.862 0.1144 4924 +4926 2 27.559479140243468 -1013.0534151145965 115.6428 0.1144 4925 +4927 2 28.333869916525998 -1013.889432318731 115.4054 0.1144 4926 +4928 2 29.10734638443546 -1014.7248298130953 115.1629 0.1144 4927 +4929 2 29.451138255916135 -1015.8077370801794 114.933 0.1144 4928 +4930 2 29.60258895361784 -1016.9384556730068 114.7185 0.1144 4929 +4931 2 29.752321353667753 -1018.0695955177544 114.5169 0.1144 4930 +4932 2 29.901609078404817 -1019.2017464331551 114.3257 0.1144 4931 +4933 2 30.051428995683295 -1020.3329346590427 114.1431 0.1144 4932 +4934 2 30.20229911970341 -1021.4647034586119 113.9681 0.1144 4933 +4935 2 30.35211903698189 -1022.5958916844995 113.7998 0.1144 4934 +4936 2 30.50185143703186 -1023.7270315292469 113.6402 0.1144 4935 +4937 2 30.652721561051976 -1024.858800328816 113.4927 0.1144 4936 +4938 2 30.802589859470572 -1025.9899010374752 113.3608 0.1144 4937 +4939 2 30.95182920306746 -1027.1221394701042 113.253 0.1144 4938 +4940 2 31.10164912034594 -1028.253327695992 113.1799 0.1144 4939 +4941 2 31.252431727137605 -1029.385048114421 113.1525 0.1144 4940 +4942 2 31.402300025556144 -1030.5161488230801 113.1816 0.1144 4941 +4943 2 31.552119942834622 -1031.6473370489675 113.2746 0.1144 4942 +4944 2 31.34767025484524 -1032.7265358837894 113.575 0.1144 4943 +4945 2 31.122264813162246 -1033.794035727752 114.0619 0.1144 4944 +4946 2 30.896191280569212 -1034.862537397316 114.6726 0.1144 4945 +4947 2 30.670785838886218 -1035.9300372412781 115.3505 0.1144 4946 +4948 2 30.42401354946867 -1036.9936092591388 116.0454 0.1144 4947 +4949 2 30.119502982424535 -1038.0409165514643 116.7144 0.1144 4948 +4950 2 29.814499358927378 -1039.089322431672 118.0197 0.1144 4949 +4951 2 7.2269403769468 -983.3560463517072 103.0288 0.1144 4888 +4952 2 7.40497321893838 -984.4858059841832 103.2682 0.1144 4951 +4953 2 7.6485426558687095 -985.6034621161816 103.3648 0.1144 4952 +4954 2 8.022178232485771 -986.6844711567941 103.4933 0.1144 4953 +4955 2 8.434694920864501 -987.7517813234322 103.6574 0.1144 4954 +4956 2 8.735206725993407 -988.8303015805335 103.9391 0.1144 4955 +4957 2 8.99615887927115 -989.8999785381708 104.337 0.1144 4956 +4958 2 9.251541976844408 -990.9679479775622 104.8163 0.1144 4957 +4959 2 9.183533842853535 -992.0911518387161 105.3046 0.1144 4958 +4960 2 8.90139866916303 -993.1926489988425 105.7574 0.1144 4959 +4961 2 8.587769606982192 -994.2872479716885 106.1707 0.1144 4960 +4962 2 8.135734475688139 -995.336641634751 106.5299 0.1144 4961 +4963 2 7.550755119525775 -996.3191685416924 106.8385 0.1144 4962 +4964 2 6.938350823933263 -997.2851632770507 107.1213 0.1144 4963 +4965 2 6.38614340714156 -998.1798851158588 107.5603 0.1144 4964 +4966 2 5.843777386253976 -999.0617653454743 108.127 0.1144 4965 +4967 2 5.729063370013989 -1000.18657250427 108.666 0.1144 4966 +4968 2 5.620005926706938 -1001.3131355624515 109.1656 0.1144 4967 +4969 2 5.511480675941357 -1002.4387359311199 109.618 0.1144 4968 +4970 2 5.390070659432638 -1003.5663544206327 110.0106 0.1144 4969 +4971 2 5.170512168681967 -1004.6894191200777 110.2884 0.1144 4970 +4972 2 4.950953677931295 -1005.8124838195226 110.4947 0.1144 4971 +4973 2 4.732977586463676 -1006.9351664031358 110.6722 0.1144 4972 +4974 2 4.273573139401208 -1007.9766012229969 110.8814 0.1144 4973 +4975 2 3.7731231121844075 -1008.9953452881374 111.1432 0.1144 4974 +4976 2 3.2731910991678888 -1010.0156326164724 111.4462 0.1144 4975 +4977 2 2.7727410719510317 -1011.0343766816128 111.7777 0.1144 4976 +4978 2 2.3814771389431826 -1012.0873145595178 112.1464 0.1144 4977 +4979 2 2.0360241827423238 -1013.1472954768235 112.537 0.1144 4978 +4980 2 1.6899906528598763 -1014.2083266008708 113.4 0.1144 4979 +4981 2 10.799602424368032 -973.6396676263324 92.2872 0.1144 4878 +4982 2 10.768701595250093 -974.7833850909012 92.258 0.1144 4981 +4983 2 10.737713248903702 -975.92705417433 92.2454 0.1144 4982 +4984 2 10.706773283697402 -977.0706357405302 92.2314 0.1144 4983 +4985 2 10.675872454579462 -978.214353205099 92.2172 0.1144 4984 +4986 2 10.644884108233043 -979.3580222885278 92.2046 0.1144 4985 +4987 2 10.613983279115104 -980.5017397530966 92.1959 0.1144 4986 +4988 2 10.582080624395644 -981.6447891267554 92.1931 0.1144 4987 +4989 2 10.551092278049225 -982.7884582101842 92.1995 0.1144 4988 +4990 2 10.520103931702778 -983.9321272936129 92.2186 0.1144 4989 +4991 2 10.489251483725013 -985.0757572409533 92.2541 0.1144 4990 +4992 2 10.45879532991998 -986.2184636348688 92.3087 0.1144 4991 +4993 2 10.397929697165296 -987.357270850665 92.398 0.1144 4992 +4994 2 10.25202717044408 -988.4818616441079 92.5596 0.1144 4993 +4995 2 10.104629761668264 -989.6068829345224 92.7749 0.1144 4994 +4996 2 9.876796600527541 -990.7070911287678 93.021 0.1144 4995 +4997 2 9.340976969020346 -991.7141663853855 93.263 0.1144 4996 +4998 2 8.803574938230042 -992.7216237578348 93.4956 0.1144 4997 +4999 2 8.270286217178011 -993.7313550438702 93.7152 0.1144 4998 +5000 2 7.758446306272617 -994.7516867328833 93.9226 0.1144 4999 +5001 2 7.24770498324915 -995.7725114783494 94.1251 0.1144 5000 +5002 2 6.736533163253853 -996.7918413417611 94.3292 0.1144 5001 +5003 2 6.224693252348459 -997.8121730307743 94.5386 0.1144 5002 +5004 2 5.713903548184817 -998.8330852934689 94.7509 0.1144 5003 +5005 2 5.124723695282341 -999.7948937104283 94.9729 0.1144 5004 +5006 2 4.352649208018136 -1000.6216584206787 95.2286 0.1144 5005 +5007 2 3.5815374102670035 -1001.4489553234708 95.5167 0.1144 5006 +5008 2 2.84806510993036 -1002.2958031401645 95.7435 0.1144 5007 +5009 2 2.1377207813037558 -1003.1526942095471 95.886 0.1144 5008 +5010 2 1.4268833962240706 -1004.0106838668119 96.0187 0.1144 5009 +5011 2 0.8532882333391854 -1004.8543898814372 96.432 0.1144 5010 +5012 2 0.27969307045430014 -1005.6980958960626 97.0519 0.1144 5011 +5013 2 -0.29390209243069876 -1006.5418019106879 97.8146 0.1144 5012 +5014 2 -0.8684990809171609 -1007.3848398344034 98.6608 0.1144 5013 +5015 2 -1.442094243802046 -1008.2285458490286 100.578 0.1144 5014 +5016 2 33.36242933978343 -913.864183410184 52.4818 0.1144 4807 +5017 2 32.71714111966253 -913.2224837039558 52.9066 0.1144 5016 +5018 2 32.72100638628325 -913.2037103261578 53.2944 0.1144 5017 +5019 2 32.910551692257 -912.0758228951686 52.8738 0.1144 5018 +5020 2 32.9628689543772 -910.9597131541108 52.6733 0.1144 5019 +5021 2 33.057919911966565 -909.8514590652569 52.3743 0.1144 5020 +5022 2 33.211936583188645 -908.7287258667695 52.0472 0.1144 5021 +5023 2 33.344281028666984 -907.5953830202526 51.7325 0.1144 5022 +5024 2 33.50428800751368 -906.4760756376627 51.4083 0.1144 5023 +5025 2 33.943502427973726 -905.4639285767768 51.0608 0.1144 5024 +5026 2 34.58761072321337 -904.549510836352 50.7332 0.1144 5025 +5027 2 35.094912051998364 -903.5371823512183 50.4767 0.1144 5026 +5028 2 35.31775150652632 -902.4224444324655 50.3098 0.1144 5027 +5029 2 35.51996894205226 -901.2976774393645 50.237 0.1144 5028 +5030 2 35.78592420788101 -900.1923775720986 50.2729 0.1144 5029 +5031 2 36.07570911760192 -899.1028792260246 50.4076 0.1144 5030 +5032 2 36.467867956052004 -898.0412950110772 50.58 0.1144 5031 +5033 2 37.040494739012644 -897.0598235354671 50.7189 0.1144 5032 +5034 2 37.77433870600163 -896.1910141190161 50.8116 0.1144 5033 +5035 2 38.52175493257465 -895.3284508029313 50.8298 0.1144 5034 +5036 2 39.01164369290203 -894.3312914463063 50.678 0.1144 5035 +5037 2 39.4441815160242 -893.3312217629498 50.3524 0.1144 5036 +5038 2 39.92872953060706 -892.3625323279068 49.9125 0.1144 5037 +5039 2 40.19724182983941 -891.3187484876597 49.4194 0.1144 5038 +5040 2 40.05013275183606 -890.2204812482463 48.9751 0.1144 5039 +5041 2 39.44510255477675 -889.2624750109773 48.6858 0.1144 5040 +5042 2 38.66127223157932 -888.4317516668751 48.5419 0.1144 5041 +5043 2 37.900153561461224 -887.6070707406996 48.6052 0.1144 5042 +5044 2 38.078921874240024 -887.2836945814884 48.8429 0.1144 5043 +5045 2 38.56984530313483 -886.395657264163 49.2237 0.1144 5044 +5046 2 39.12332554621716 -885.3944601704211 49.5438 0.1144 5045 +5047 2 39.884155001913 -884.5549659957268 49.7921 0.1144 5046 +5048 2 40.50164052134667 -883.6035493660163 49.9705 0.1144 5047 +5049 2 40.18150885174862 -883.0121419817874 50.1141 0.1144 5048 +5050 2 39.76508896478836 -881.9872367092163 50.2499 0.1144 5049 +5051 2 39.81305565345875 -880.8529535669727 50.3734 0.1144 5050 +5052 2 40.01198839604555 -879.7459097449282 50.4358 0.1144 5051 +5053 2 40.32831784832209 -878.6606877595159 50.3969 0.1144 5052 +5054 2 40.644559783370255 -877.5754173929633 50.2799 0.1144 5053 +5055 2 40.434279270404346 -876.459138773681 50.1642 0.1144 5054 +5056 2 40.64499296626283 -875.3378117748186 50.0766 0.1144 5055 +5057 2 40.85696055130251 -874.2262047431333 50.0592 0.1144 5056 +5058 2 41.06200349588681 -873.1056277975931 50.0063 0.1144 5057 +5059 2 41.26756445467129 -871.9865941152476 49.9201 0.1144 5058 +5060 2 41.4721627239426 -870.8670282403608 49.8028 0.1144 5059 +5061 2 41.678255875268604 -869.7470318685021 49.6591 0.1144 5060 +5062 2 41.983983429139556 -868.6454367419678 49.5412 0.1144 5061 +5063 2 42.340210288420906 -867.5587325574141 49.4522 0.1144 5062 +5064 2 42.741058620463804 -866.4861837311603 49.4001 0.1144 5063 +5065 2 43.04924374590266 -865.3846903001958 49.3749 0.1144 5064 +5066 2 43.12053657283269 -864.2437632679853 49.3668 0.1144 5065 +5067 2 43.117703802673105 -863.0996793613538 49.3665 0.1144 5066 +5068 2 43.12822543131688 -861.9552081143011 49.3665 0.1144 5067 +5069 2 40.98395880850032 -882.5394744063085 49.7683 0.1144 5048 +5070 2 41.505713123970395 -881.5272516372065 49.7372 0.1144 5069 +5071 2 42.30341229060093 -880.7107677735835 49.7123 0.1144 5070 +5072 2 43.16026937451804 -879.9530395124362 49.6672 0.1144 5071 +5073 2 43.8603834713914 -879.0578137021743 49.5701 0.1144 5072 +5074 2 44.42823440852004 -878.068445942844 49.4455 0.1144 5073 +5075 2 44.56332240064461 -876.9326205670121 49.3366 0.1144 5074 +5076 2 44.69836201162903 -875.7968827084087 49.2366 0.1144 5075 +5077 2 45.14121861333942 -874.747556829417 49.1126 0.1144 5076 +5078 2 45.59199090170077 -873.7027211514056 48.8054 0.1144 5077 +5079 2 37.41957509573069 -887.1688606332442 49.6905 0.1144 5043 +5080 2 36.64990762678784 -886.7238352325634 52.3572 0.1144 5079 +5081 2 36.129453682017584 -886.2465560046757 53.5102 0.1144 5080 +5082 2 35.58869247819618 -885.3946935213829 54.707 0.1144 5081 +5083 2 35.111145865887806 -884.5489829012104 55.9222 0.1144 5082 +5084 2 35.18784935710843 -884.1783244810515 58.9168 0.1144 5083 +5085 2 32.38075045257196 -913.3084671854763 53.3229 0.1144 5017 +5086 2 31.284564359305733 -913.5913288282094 53.7779 0.1144 5085 +5087 2 30.154313729589433 -913.5951816227738 54.2559 0.1144 5086 +5088 2 29.04146315993853 -913.7355999250982 54.7641 0.1144 5087 +5089 2 27.940300063435018 -913.9516085242299 55.2538 0.1144 5088 +5090 2 26.853888747203115 -914.268668174711 55.7038 0.1144 5089 +5091 2 25.808889919009545 -914.7001462495584 56.1518 0.1144 5090 +5092 2 24.779069173076067 -915.1347589406352 56.6104 0.1144 5091 +5093 2 23.74441002182934 -915.5640688179283 57.0662 0.1144 5092 +5094 2 22.74398172129642 -916.0920578665769 57.4916 0.1144 5093 +5095 2 21.843455735178395 -916.7942227676693 57.8617 0.1144 5094 +5096 2 20.959763239264248 -917.5200906982634 58.179 0.1144 5095 +5097 2 20.02323226531692 -918.1761851006456 58.4746 0.1144 5096 +5098 2 19.075451035211472 -918.8077780390639 58.7829 0.1144 5097 +5099 2 18.101099139601985 -919.3762346192195 59.1402 0.1144 5098 +5100 2 17.06513128931664 -919.7603726324064 59.5851 0.1144 5099 +5101 2 16.0288152346983 -920.1312921451587 60.1056 0.1144 5100 +5102 2 15.032475286156512 -920.6589132563166 60.6399 0.1144 5101 +5103 2 14.01759955375482 -921.180172393198 61.1372 0.1144 5102 +5104 2 12.94359711600984 -921.5694504605455 61.602 0.1144 5103 +5105 2 11.837184520152135 -921.787927410651 62.0922 0.1144 5104 +5106 2 10.750690309865263 -921.8473919464103 62.6676 0.1144 5105 +5107 2 9.67135277915574 -921.9199538841037 63.3206 0.1144 5106 +5108 2 8.578606680128075 -922.1943192665043 63.9727 0.1144 5107 +5109 2 7.5268305886333735 -922.5526929727945 64.6422 0.1144 5108 +5110 2 6.603670115448608 -922.8867579825595 65.4153 0.1144 5109 +5111 2 5.9136758734921955 -923.6098989342883 66.2225 0.1144 5110 +5112 2 5.166867938235725 -923.7146620854339 67.4954 0.1144 5111 +5113 2 4.036899398730469 -923.8717835344099 67.8689 0.1144 5112 +5114 2 2.90794192987849 -924.0293496586987 68.0271 0.1144 5113 +5115 2 1.7780217715133233 -924.1863835904462 68.2178 0.1144 5114 +5116 2 0.6491518198899087 -924.3439980958751 68.4334 0.1144 5115 +5117 2 -0.48085585570373723 -924.5009836464824 68.6678 0.1144 5116 +5118 2 -1.6107760140689038 -924.6580175782299 68.9172 0.1144 5117 +5119 2 -2.739045989079955 -924.8238479237294 69.1782 0.1144 5118 +5120 2 -3.8649299057560143 -925.0066513869632 69.454 0.1144 5119 +5121 2 -4.9904458849415505 -925.193543202188 69.75 0.1144 5120 +5122 2 -6.1206870950848895 -925.3085793134474 70.0874 0.1144 5121 +5123 2 -7.2516903031576305 -925.3565787231233 70.4802 0.1144 5122 +5124 2 -8.380710797312275 -925.3912770484256 70.9257 0.1144 5123 +5125 2 -9.359421481816923 -925.8541443253381 71.4501 0.1144 5124 +5126 2 -10.293245811472417 -926.4437483970197 72.044 0.1144 5125 +5127 2 -11.228032830641098 -927.0328202761599 72.6858 0.1144 5126 +5128 2 -12.161387527236457 -927.6240551282647 73.355 0.1144 5127 +5129 2 -13.094161650150227 -928.2142397736279 74.0362 0.1144 5128 +5130 2 -14.029529243000468 -928.8043618595096 74.718 0.1144 5129 +5131 2 -15.037279973589506 -929.2864825964598 75.3696 0.1144 5130 +5132 2 -16.07857256562366 -929.7160103345336 75.9864 0.1144 5131 +5133 2 -17.12434640488658 -930.1391758070303 76.5836 0.1144 5132 +5134 2 -18.16950053437958 -930.5614269711538 77.1781 0.1144 5133 +5135 2 -19.2075996798649 -930.9992331087794 77.789 0.1144 5134 +5136 2 -20.141854506492166 -931.5873422984064 78.4479 0.1144 5135 +5137 2 -21.047057342427905 -932.2175639783047 79.1526 0.1144 5136 +5138 2 -21.692829726878045 -932.8985361344767 79.9842 0.1144 5137 +5139 2 -22.193099397084637 -933.5905871059169 80.9315 0.1144 5138 +5140 2 -22.5263467290479 -934.3566889958372 81.9272 0.1144 5139 +5141 2 -21.439379293429027 -934.6438178761404 82.5614 0.1144 5140 +5142 2 -20.35187966526871 -934.9299840669304 83.0253 0.1144 5141 +5143 2 5.82610633878906 -924.2647789741366 66.8564 0.1144 5111 +5144 2 5.777176960605516 -925.3985299238387 67.3439 0.1144 5143 +5145 2 5.848207579711385 -926.5397514190576 67.6992 0.1144 5144 +5146 2 5.956978187673769 -927.6742988419727 67.958 0.1144 5145 +5147 2 6.063155325699626 -928.8087837054067 68.1472 0.1144 5146 +5148 2 5.955374903666524 -929.928282825829 68.29 0.1144 5147 +5149 2 5.535317472264126 -930.9836995038872 68.3992 0.1144 5148 +5150 2 4.977429320840258 -931.9810886659002 68.4698 0.1144 5149 +5151 2 4.379409897635298 -932.9564067829623 68.5065 0.1144 5150 +5152 2 3.712232461005044 -933.8842377525099 68.5132 0.1144 5151 +5153 2 2.975630769028669 -934.7580356509839 68.4953 0.1144 5152 +5154 2 2.215126094272847 -935.6134776944178 68.458 0.1144 5153 +5155 2 1.4531890969437598 -936.4667567648872 68.4009 0.1144 5154 +5156 2 0.6937830100697511 -937.3226918647744 68.3203 0.1144 5155 +5157 2 -0.06374607891788742 -938.1797788669728 68.2111 0.1144 5156 +5158 2 -0.8043735634040274 -939.0513512330008 68.0674 0.1144 5157 +5159 2 -1.2927868446076332 -940.0388140458418 67.8437 0.1144 5158 +5160 2 -1.428520669450478 -941.1166937324458 67.5021 0.1144 5159 +5161 2 -1.4206004212536527 -942.1994884265908 67.0692 0.1144 5160 +5162 2 -1.3949841545551749 -943.3143471337283 66.6386 0.1144 5161 +5163 2 -1.36440809274265 -944.4553716665251 66.2931 0.1144 5162 +5164 2 -1.2794425011519195 -945.5951556145809 66.05 0.1144 5163 +5165 2 -0.9846587821888306 -946.6887913944612 65.9014 0.1144 5164 +5166 2 -0.5063980872697869 -947.7270875023685 65.8288 0.1144 5165 +5167 2 -0.0072454022659940165 -948.7559086564344 65.8039 0.1144 5166 +5168 2 0.4314035304999493 -949.8114989338543 65.7992 0.1144 5167 +5169 2 0.8226944941023646 -950.8866141378222 65.7983 0.1144 5168 +5170 2 1.261924000549925 -951.9411542085004 65.7978 0.1144 5169 +5171 2 1.78461546000446 -952.9581929138668 65.7969 0.1144 5170 +5172 2 2.2436775047432604 -954.002900872619 65.7955 0.1144 5171 +5173 2 2.449105434054701 -955.1163826308256 65.7938 0.1144 5172 +5174 2 2.4376836753789917 -956.2577282154006 65.7913 0.1144 5173 +5175 2 2.217389309647359 -957.3726162108632 65.788 0.1144 5174 +5176 2 1.8499852028684813 -958.455769460557 65.7829 0.1144 5175 +5177 2 1.4603624994632298 -959.5317817044423 65.7762 0.1144 5176 +5178 2 1.0788930766472333 -960.6097874416517 65.767 0.1144 5177 +5179 2 0.6918154620383064 -961.6859497622468 65.7538 0.1144 5178 +5180 2 0.19614128065347813 -962.7125901111074 65.7353 0.1144 5179 +5181 2 -0.36337765119355936 -963.7104489061804 65.7096 0.1144 5180 +5182 2 -0.6763296687128957 -964.7897681011967 65.6737 0.1144 5181 +5183 2 -0.7870126678534746 -965.9285727919586 65.6228 0.1144 5182 +5184 2 -0.9179639268467952 -967.0639427130716 65.5516 0.1144 5183 +5185 2 -1.1252324038769927 -968.1885454511215 65.4536 0.1144 5184 +5186 2 -1.3716784169266987 -969.3058872889902 65.3184 0.1144 5185 +5187 2 -1.6363656152331032 -970.4184011707251 65.1302 0.1144 5186 +5188 2 -2.0755264299633325 -971.4422327139029 64.8334 0.1144 5187 +5189 2 -2.8254750624193434 -972.2643180493013 64.4633 0.1144 5188 +5190 2 -3.4983404195207015 -973.1197611223417 63.9943 0.1144 5189 +5191 2 -3.4295608920241136 -973.9930478258917 63.2974 0.1144 5190 +5192 2 -3.873183686647053 -974.8759256861256 62.5332 0.1144 5191 +5193 2 -4.516081249255933 -975.811922910476 61.8332 0.1144 5192 +5194 2 -5.050788114540126 -976.8169852708387 61.2066 0.1144 5193 +5195 2 -5.544833476751023 -977.6798727664474 60.4859 0.1144 5194 +5196 2 -5.703066318482229 -978.7465714763922 59.7839 0.1144 5195 +5197 2 -5.802577294714979 -979.8771551024939 59.187 0.1144 5196 +5198 2 -6.268030879721493 -980.8917076246456 58.6183 0.1144 5197 +5199 2 -6.948999932144375 -981.768837101771 58.0476 0.1144 5198 +5200 2 -7.592840781335582 -982.7135681803921 57.5786 0.1144 5199 +5201 2 -8.146839038618282 -983.7132220109394 57.176 0.1144 5200 +5202 2 -8.001013701906288 -984.7689592373234 56.6658 0.1144 5201 +5203 2 -7.539457220876415 -985.3953573733513 57.423 0.1144 5202 +5204 2 -6.910137166437863 -986.2596125955406 57.9953 0.1144 5203 +5205 2 -6.364031021888735 -987.1824164744258 58.1977 0.1144 5204 +5206 2 -5.760386261690513 -988.1003502702332 58.2826 0.1144 5205 +5207 2 -4.832433299630878 -988.5428394002745 58.4556 0.1144 5206 +5208 2 -3.763991664513867 -988.7216890364181 58.7306 0.1144 5207 +5209 2 -2.661935294886007 -988.830224736363 59.0316 0.1144 5208 +5210 2 -1.5407031346857138 -988.7219773671906 59.2525 0.1144 5209 +5211 2 -0.4131794838349947 -988.5244263186685 59.383 0.1144 5210 +5212 2 0.6738281174785925 -988.7240517796857 59.3986 0.1144 5211 +5213 2 1.5400857251157731 -989.4081517191761 59.2634 0.1144 5212 +5214 2 2.0947454648890016 -990.3200301228434 58.9856 0.1144 5213 +5215 2 2.4962766436026413 -991.3315627978079 58.6561 0.1144 5214 +5216 2 2.9100315473937144 -992.3732769330622 58.3828 0.1144 5215 +5217 2 3.482166279511091 -993.1235352741055 58.4858 0.1144 5216 +5218 2 4.590607017202444 -993.2984451395399 58.6905 0.1144 5217 +5219 2 5.720625141975404 -993.165003587973 58.9915 0.1144 5218 +5220 2 6.806950474037819 -993.3681368272998 59.4168 0.1144 5219 +5221 2 7.75585695605713 -993.8861968512177 59.9301 0.1144 5220 +5222 2 8.69701723106607 -994.4064876321712 61.147 0.1144 5221 +5223 2 -7.916184647731399 -985.157044268686 56.1658 0.1144 5202 +5224 2 -7.676174069806109 -986.2125162827555 55.5988 0.1144 5223 +5225 2 -7.536947097181752 -987.3130534152931 55.0589 0.1144 5224 +5226 2 -7.533193900047763 -988.2380322493814 54.4522 0.1144 5225 +5227 2 -7.580440853327559 -989.2197148281234 53.8392 0.1144 5226 +5228 2 -7.648075825238294 -990.3587790407886 53.3862 0.1144 5227 +5229 2 -7.974914434102345 -991.4394482657395 53.0785 0.1144 5228 +5230 2 -8.408969397470969 -992.4988959608974 52.8968 0.1144 5229 +5231 2 -8.530384638569359 -993.61474245089 52.8007 0.1144 5230 +5232 2 -8.378871381386375 -994.7428675737809 52.7666 0.1144 5231 +5233 2 -8.17289185660269 -995.8646526892866 52.7744 0.1144 5232 +5234 2 -8.293344408187863 -996.9810313718206 52.8352 0.1144 5233 +5235 2 -8.567195957736828 -998.0911070849185 52.9595 0.1144 5234 +5236 2 -8.908042547746447 -999.1522633279284 53.2347 0.1144 5235 +5237 2 -9.263400954760527 -1000.1898573730945 53.6525 0.1144 5236 +5238 2 -9.692761005102852 -1001.1628894574422 54.2018 0.1144 5237 +5239 2 -10.514217272786311 -1001.8590610600544 54.8128 0.1144 5238 +5240 2 -10.594222062357915 -1001.9612041148629 55.316 0.1144 5239 +5241 2 -11.220407524563711 -1002.9000413568394 55.7698 0.1144 5240 +5242 2 -11.444525495793528 -1003.984021262083 56.1487 0.1144 5241 +5243 2 -11.549189209100234 -1005.1168982047016 56.4584 0.1144 5242 +5244 2 -12.007109223287387 -1006.1343585285505 56.7165 0.1144 5243 +5245 2 -12.636797239213081 -1007.0842855007961 56.9394 0.1144 5244 +5246 2 -13.561819930526724 -1007.6840113886439 57.0836 0.1144 5245 +5247 2 -13.94651867263957 -1008.6020916072614 57.2883 0.1144 5246 +5248 2 -13.855839173224126 -1009.7292659852463 57.4417 0.1144 5247 +5249 2 -14.35719455506245 -1010.7331123883886 57.5347 0.1144 5248 +5250 2 -15.42034126290963 -1010.958482301185 57.6475 0.1144 5249 +5251 2 -16.50688189308738 -1011.1813175743642 57.6198 0.1144 5250 +5252 2 -17.574793997587136 -1011.4223352024809 57.4658 0.1144 5251 +5253 2 -18.519537082443094 -1012.052979629727 57.3317 0.1144 5252 +5254 2 -19.414856725757403 -1012.7645356965943 57.2723 0.1144 5253 +5255 2 -20.307693839756666 -1013.4788353101078 57.2911 0.1144 5254 +5256 2 -21.19951988310254 -1014.1935795989342 57.3854 0.1144 5255 +5257 2 -22.092444514330253 -1014.9078308313076 57.5618 0.1144 5256 +5258 2 -22.965642031998158 -1015.6407574750713 57.8124 0.1144 5257 +5259 2 -23.689370902838505 -1016.4511713023916 58.1958 0.1144 5258 +5260 2 -24.715061635658287 -1016.8357345879607 58.653 0.1144 5259 +5261 2 -25.771097054212476 -1017.149933322457 59.1469 0.1144 5260 +5262 2 -26.845622730747436 -1017.5258961270896 59.5834 0.1144 5261 +5263 2 -27.91374551018896 -1017.9353355341306 59.9178 0.1144 5262 +5264 2 -28.835311038067232 -1018.5997031114749 60.2042 0.1144 5263 +5265 2 -29.722414841311007 -1019.3106592017298 60.4388 0.1144 5264 +5266 2 -30.522494841686893 -1020.1219419471388 60.6262 0.1144 5265 +5267 2 -31.321181655577846 -1020.9352517671439 60.7779 0.1144 5266 +5268 2 -31.7107026634134 -1022.0088064394614 60.8717 0.1144 5267 +5269 2 -32.07416849491099 -1023.0941368404609 60.9157 0.1144 5268 +5270 2 -32.41579784561384 -1024.1850258479858 60.9003 0.1144 5269 +5271 2 -32.72742818988095 -1025.2832435397627 60.8224 0.1144 5270 +5272 2 -33.038662239975224 -1026.3805376781147 60.6984 0.1144 5271 +5273 2 -33.48667157875951 -1027.4321568736234 60.5828 0.1144 5272 +5274 2 -33.94384526878633 -1028.481337900495 60.4607 0.1144 5273 +5275 2 -34.45872332494113 -1029.5026181006801 60.3176 0.1144 5274 +5276 2 -35.206889604836334 -1030.3595106654907 60.1188 0.1144 5275 +5277 2 -36.07515224621099 -1031.08351055195 59.8514 0.1144 5276 +5278 2 -36.95259864175901 -1031.79580622296 59.5235 0.1144 5277 +5279 2 -37.71498553899079 -1032.6383243645628 59.1595 0.1144 5278 +5280 2 -38.382530913111594 -1033.5620669821192 58.7796 0.1144 5279 +5281 2 -39.04217477892243 -1034.4928057533639 58.3828 0.1144 5280 +5282 2 -39.53264784209321 -1035.5170652684787 57.9499 0.1144 5281 +5283 2 -39.593504521096406 -1036.6415945320468 57.454 0.1144 5282 +5284 2 -39.47332089735289 -1037.757770426153 56.8929 0.1144 5283 +5285 2 -39.26688339281594 -1038.8338749084041 56.238 0.1144 5284 +5286 2 -38.78175109938624 -1039.656355861297 55.4148 0.1144 5285 +5287 2 -38.361110418743436 -1040.479748888829 54.474 0.1144 5286 +5288 2 -39.1565177642849 -1041.2635635382576 53.6337 0.1144 5287 +5289 2 -39.99299009291141 -1042.0154213861529 52.9105 0.1144 5288 +5290 2 -40.82794813655252 -1042.7761147838887 52.3068 0.1144 5289 +5291 2 -41.01633639088763 -1042.9490585771528 51.8641 0.1144 5290 +5292 2 -41.849445793324776 -1043.7159157826163 51.5029 0.1144 5291 +5293 2 -42.62830902267589 -1044.5336714429236 51.1932 0.1144 5292 +5294 2 -43.22305270669321 -1045.5055443411575 50.92 0.1144 5293 +5295 2 -43.69883551946731 -1046.545809059904 50.6778 0.1144 5294 +5296 2 -44.16752943673495 -1047.589992651001 50.4442 0.1144 5295 +5297 2 -44.51769045469689 -1048.65125581417 50.1743 0.1144 5296 +5298 2 -44.61467201590233 -1049.7466735184207 49.7952 0.1144 5297 +5299 2 -44.807399289639164 -1050.8021872312443 49.3035 0.1144 5298 +5300 2 -44.93406672964721 -1051.8589127063046 48.7329 0.1144 5299 +5301 2 -44.87546169240372 -1052.980239103751 48.2028 0.1144 5300 +5302 2 -45.01480126196387 -1054.033844140923 47.7744 0.1144 5301 +5303 2 -45.71489595590637 -1054.9383359979975 47.4258 0.1144 5302 +5304 2 -46.454473233650845 -1055.8104889377069 47.1257 0.1144 5303 +5305 2 -47.20007502181889 -1056.6767976260396 46.8289 0.1144 5304 +5306 2 -47.90108402413449 -1057.5806697733437 46.492 0.1144 5305 +5307 2 -48.25678438128554 -1058.529177999941 46.018 0.1144 5306 +5308 2 -48.02961840340856 -1059.4991647155693 45.281 0.1144 5307 +5309 2 -47.95739365708374 -1060.3757271583072 44.2859 0.1144 5308 +5310 2 -48.39600198233006 -1061.1763652769505 43.1438 0.1144 5309 +5311 2 -49.25028024047333 -1061.8112007813638 42.0017 0.1144 5310 +5312 2 -50.244525465942786 -1062.2027497714416 40.8856 0.1144 5311 +5313 2 -51.22543616136127 -1062.459184105363 39.7704 0.1144 5312 +5314 2 -52.07472280973576 -1062.8014086499134 38.6274 0.1144 5313 +5315 2 -52.98351198745803 -1063.4166217271923 37.6524 0.1144 5314 +5316 2 -54.05084977247236 -1063.7324564667015 36.7654 0.1144 5315 +5317 2 -55.00992189025209 -1064.3015900915186 35.901 0.1144 5316 +5318 2 -55.95404004074854 -1064.9430922099118 35.0871 0.1144 5317 +5319 2 -56.73705884237677 -1065.5389366915483 34.0984 0.1144 5318 +5320 2 -57.68277030715703 -1066.03181565781 33.0672 0.1144 5319 +5321 2 -57.880125912681535 -1066.6442860448233 31.7061 0.1144 5320 +5322 2 -57.799880365090075 -1067.241566968754 30.1008 0.1144 5321 +5323 2 -58.05405275402907 -1068.0134475597142 28.3875 0.1144 5322 +5324 2 -58.147873147866534 -1068.7955891285496 26.6433 0.1144 5323 +5325 2 -57.757898204736364 -1069.5066197845208 24.8956 0.1144 5324 +5326 2 -57.34907015512991 -1070.292060187005 23.2269 0.1144 5325 +5327 2 -56.56319572373425 -1071.0506708302723 21.8315 0.1144 5326 +5328 2 -56.789197878689265 -1071.9584436134928 20.5685 0.1144 5327 +5329 2 -56.964570520276254 -1072.7438349341624 19.3358 0.1144 5328 +5330 2 -57.583040559224685 -1073.3967088354043 16.8294 0.1144 5329 +5331 2 -41.779099982138916 -1042.609772556425 53.3282 0.1144 5290 +5332 2 -42.85570115204115 -1042.5047967450914 53.5018 0.1144 5331 +5333 2 -43.99576449075258 -1042.4980830481768 53.5402 0.1144 5332 +5334 2 -45.1271810266002 -1042.6177255256275 53.6026 0.1144 5333 +5335 2 -45.81086511328138 -1043.362522699104 53.6861 0.1144 5334 +5336 2 -45.61957061430476 -1044.4800746104986 53.7471 0.1144 5335 +5337 2 -45.32679456700686 -1045.5843696236761 53.7975 0.1144 5336 +5338 2 -45.02676536915163 -1046.6875324676998 53.8294 0.1144 5337 +5339 2 -44.72677530738483 -1047.790559413355 53.8398 0.1144 5338 +5340 2 -44.4277963162713 -1048.8931416836967 53.8121 0.1144 5339 +5341 2 -44.06257503757476 -1049.9773833069466 53.7146 0.1144 5340 +5342 2 -43.60585962378241 -1051.0193085829642 53.5147 0.1144 5341 +5343 2 -43.14399147291607 -1052.0589405424648 53.2213 0.1144 5342 +5344 2 -42.683754102473046 -1053.099042135026 52.8511 0.1144 5343 +5345 2 -41.857268782878094 -1053.7794373337847 52.3345 0.1144 5344 +5346 2 -40.9342521925395 -1054.1930312698619 51.6869 0.1144 5345 +5347 2 -41.20260144084847 -1055.2079966539673 50.9902 0.1144 5346 +5348 2 -41.676978053997516 -1056.191564348077 50.328 0.1144 5347 +5349 2 -41.94060356677642 -1057.2405634848797 49.7633 0.1144 5348 +5350 2 -41.893722147913024 -1058.361807589687 49.3892 0.1144 5349 +5351 2 -42.40976927557591 -1059.3118268379294 49.184 0.1144 5350 +5352 2 -43.41884391315119 -1059.8389209811357 49.11 0.1144 5351 +5353 2 -44.499858178353435 -1060.2007845582323 49.1462 0.1144 5352 +5354 2 -45.58082602366474 -1060.399277397909 49.3111 0.1144 5353 +5355 2 -46.68711410197605 -1060.3432486750398 49.4897 0.1144 5354 +5356 2 -47.73031313592722 -1060.65551680592 49.6171 0.1144 5355 +5357 2 -48.762734810120776 -1061.142166841012 49.7521 0.1144 5356 +5358 2 -49.62506195372825 -1061.8341406464397 49.9192 0.1144 5357 +5359 2 -50.540972404101325 -1062.4624421719013 50.1264 0.1144 5358 +5360 2 -51.270469992623674 -1063.2500136723634 50.3874 0.1144 5359 +5361 2 -52.00616786303746 -1063.6184679618873 50.8329 0.1144 5360 +5362 2 -52.96344498297418 -1063.6996615924604 51.2599 0.1144 5361 +5363 2 -54.08053145629168 -1063.7931755546856 51.49 0.1144 5362 +5364 2 -55.143656799958734 -1064.191094734486 51.5953 0.1144 5363 +5365 2 -56.20536399939351 -1064.5936828399588 51.5595 0.1144 5364 +5366 2 -57.18838662471234 -1064.4306320254514 51.2963 0.1144 5365 +5367 2 -58.08151085628975 -1063.7878972224657 51.0642 0.1144 5366 +5368 2 -59.116575486428616 -1063.3973728936007 50.4885 0.1144 5367 +5369 2 -10.36372860155393 -1001.9227149666959 55.8096 0.1144 5239 +5370 2 -9.490071397847998 -1002.290625744484 55.5419 0.1144 5369 +5371 2 -8.707659857929968 -1002.3649421101321 55.4655 0.1144 5370 +5372 2 -8.10449138918176 -1001.8957999479809 54.9567 0.1144 5371 +5373 2 -7.619361733679739 -1001.3208403082214 54.1215 0.1144 5372 +5374 2 -7.336869499868385 -1000.556845551802 53.1457 0.1144 5373 +5375 2 -7.378994475830666 -999.4342316839025 52.2886 0.1144 5374 +5376 2 -7.9957284225178 -998.6108704697298 51.5376 0.1144 5375 +5377 2 -8.98192988785388 -998.0800772522065 50.895 0.1144 5376 +5378 2 -9.960647367638416 -997.5285119389713 50.3678 0.1144 5377 +5379 2 -10.815666663724585 -996.8075475131358 49.9453 0.1144 5378 +5380 2 -11.457913610850369 -995.8695306108852 49.595 0.1144 5379 +5381 2 -11.813684893452631 -994.8035391266437 49.2467 0.1144 5380 +5382 2 -11.877905872113018 -993.7184146794489 48.8384 0.1144 5381 +5383 2 -12.169179851517328 -992.7887443890115 48.3255 0.1144 5382 +5384 2 -13.029496270976125 -992.2098516369324 47.8324 0.1144 5383 +5385 2 -14.09021306326278 -991.8562219767495 47.5115 0.1144 5384 +5386 2 -14.660820671775781 -990.9446683540223 47.2702 0.1144 5385 +5387 2 -14.740172846983995 -989.818499822101 47.0714 0.1144 5386 +5388 2 -13.85605923603984 -989.4653627765462 46.8062 0.1144 5387 +5389 2 -12.893109869401002 -989.4212410439194 46.377 0.1144 5388 +5390 2 -11.797084302023876 -989.1173804909421 46.0314 0.1144 5389 +5391 2 -10.964348061666954 -988.3346629339676 45.7596 0.1144 5390 +5392 2 -10.410867818584563 -987.3334658402256 45.4395 0.1144 5391 +5393 3 63.30938536286553 -842.9422377267667 42.196 0.381 1 +5394 3 64.18100461460585 -843.6449557427558 42.4178 0.3778 5393 +5395 3 64.7542265914141 -844.6036599230451 42.6569 0.3762 5394 +5396 3 65.2196900378184 -845.6440225329371 42.8865 0.3747 5395 +5397 3 65.70849782128565 -846.6632398850372 43.1234 0.3731 5396 +5398 3 66.01637894218302 -847.74971898534 43.3412 0.3715 5397 +5399 3 66.05643368699879 -848.8855855564732 43.4913 0.37 5398 +5400 3 66.14041163132916 -850.022195460911 43.5408 0.3684 5399 +5401 3 66.61664898081392 -851.035834803555 43.4997 0.3668 5400 +5402 3 67.4633519453875 -851.7836241922082 43.419 0.3652 5401 +5403 3 68.48171911928586 -852.294263819662 43.3418 0.3637 5402 +5404 3 69.54918299253671 -852.7065839978055 43.2886 0.3621 5403 +5405 3 70.58350176433669 -853.190848892571 43.265 0.3605 5404 +5406 3 71.52776320989767 -853.833058961339 43.2782 0.359 5405 +5407 3 72.28942452173649 -854.6803211970417 43.342 0.3574 5406 +5408 3 72.8248454456348 -855.6861148708397 43.4722 0.3558 5407 +5409 3 73.42906825448031 -856.6528158262912 43.6881 0.3543 5408 +5410 3 74.21666214872889 -857.467223364163 43.9992 0.3527 5409 +5411 3 75.05863362814847 -858.2190243669849 44.4088 0.3511 5410 +5412 3 75.8169591663526 -859.0225079250664 44.9344 0.3495 5411 +5413 3 76.3030546151169 -859.9709823394238 45.5795 0.348 5412 +5414 3 76.51754743383529 -861.0254879348182 46.2885 0.3464 5413 +5415 3 76.69159614443967 -862.1033405668311 47.0098 0.3448 5414 +5416 3 77.01956932553162 -863.1369395279783 47.7232 0.3433 5415 +5417 3 77.46012273896534 -864.1465061924 48.3848 0.3417 5416 +5418 3 77.81037857159285 -865.2224746406877 48.9359 0.3401 5417 +5419 3 78.0324169057377 -866.3412539880883 49.3562 0.3385 5418 +5420 3 78.3428483400211 -867.4396551646212 49.6751 0.337 5419 +5421 3 79.08000818789597 -868.2981676564821 49.936 0.3354 5420 +5422 3 80.08365240402648 -868.8282055960935 50.1584 0.3338 5421 +5423 3 81.0398932607091 -869.453499882019 50.3465 0.3323 5422 +5424 3 81.96342324207441 -870.1261838148724 50.5182 0.3307 5423 +5425 3 83.00060545489356 -870.5910072409298 50.6988 0.3291 5424 +5426 3 84.06420779068554 -870.996050845123 50.8816 0.3276 5425 +5427 3 85.04859229258241 -871.5729160567846 51.0395 0.326 5426 +5428 3 85.9358019247513 -872.294764938883 51.1622 0.3244 5427 +5429 3 86.75906930587163 -873.0897011559364 51.256 0.3228 5428 +5430 3 87.54660586522854 -873.9184741632648 51.3304 0.3213 5429 +5431 3 88.31392375000038 -874.7674922983533 51.3943 0.3197 5430 +5432 3 89.06679387267681 -875.6281767169304 51.4612 0.3181 5431 +5433 3 89.83359374324837 -876.4756515888242 51.5553 0.3166 5432 +5434 3 90.6127409624321 -877.3102990298664 51.6922 0.315 5433 +5435 3 91.39126847184588 -878.1458607792817 51.8633 0.3134 5434 +5436 3 92.22153200665443 -878.9328954880255 52.0554 0.3118 5435 +5437 3 93.08233942335349 -879.6859682875314 52.2673 0.3103 5436 +5438 3 93.81255672326984 -880.5640667699939 52.5252 0.3087 5437 +5439 3 94.33221899122651 -881.5677760343042 52.8682 0.3071 5438 +5440 3 94.86529701334013 -882.5447370736191 53.3165 0.3056 5439 +5441 3 95.639719001566 -883.3075288106957 53.8754 0.304 5440 +5442 3 96.64170734393139 -883.6915370681119 54.5258 0.3024 5441 +5443 3 97.6764940788425 -884.0282040597401 55.2208 0.3008 5442 +5444 3 98.58289564117416 -884.6940471402047 55.8785 0.2993 5443 +5445 3 98.66376765618415 -885.8224270262309 56.4458 0.2977 5444 +5446 3 98.1355299766364 -886.8323225673172 56.961 0.2961 5445 +5447 3 98.15061735358995 -887.9517586624368 57.4913 0.2946 5446 +5448 3 98.99630132336509 -888.6257420103508 58.0958 0.293 5447 +5449 3 99.78105776394804 -889.3745935503529 58.7602 0.2914 5448 +5450 3 100.18201881815952 -890.4107204310994 59.4378 0.2899 5449 +5451 3 100.37016302713783 -891.5081344261934 60.1124 0.2883 5450 +5452 3 100.88493161410241 -892.3456277108676 60.1605 0.2883 5451 +5453 3 101.27086093360168 -893.4021248383368 60.1182 0.2873 5452 +5454 3 101.31001554838554 -894.5348657469921 60.0852 0.2868 5453 +5455 3 101.15054598666998 -895.664982439589 60.0645 0.2862 5454 +5456 3 101.03078092892562 -896.7896253433338 60.0944 0.2857 5455 +5457 3 101.18149052705661 -897.9003952326589 60.2003 0.2852 5456 +5458 3 101.58577570159585 -898.9329893773488 60.37 0.2847 5457 +5459 3 102.21923518872106 -899.8583785107252 60.5486 0.2842 5458 +5460 3 102.95913858324215 -900.714408473271 60.6287 0.2837 5459 +5461 3 103.66068227913689 -901.5780268164934 60.5413 0.2832 5460 +5462 3 104.25626770469154 -902.5295549142745 60.3347 0.2826 5461 +5463 3 104.7859553178343 -903.538692111331 60.086 0.2821 5462 +5464 3 105.30233289285181 -904.5601245466977 59.8402 0.2816 5463 +5465 3 105.76039311198906 -905.6041644145398 59.5949 0.2811 5464 +5466 3 105.99196746402885 -906.7034203308202 59.3127 0.2806 5465 +5467 3 105.95730558889412 -907.8136362352335 58.9495 0.2801 5466 +5468 3 105.76086312524635 -908.8853782370585 58.4881 0.2796 5467 +5469 3 105.54447195809615 -909.9578613384542 57.9622 0.2791 5468 +5470 3 105.64334606899678 -911.0557439370018 57.4426 0.2785 5469 +5471 3 106.11019225270675 -912.0745896224496 56.9615 0.278 5470 +5472 3 106.77072204621186 -912.9677530128167 56.5079 0.2775 5471 +5473 3 107.46864702317563 -913.8333700739529 56.1019 0.277 5472 +5474 3 107.86614345562799 -914.8569551686996 55.802 0.2765 5473 +5475 3 108.05001130394461 -915.9809137063493 55.6352 0.276 5474 +5476 3 108.60593538207851 -916.9260560762337 55.5876 0.2755 5475 +5477 3 109.37829908376503 -917.7634664668531 55.6214 0.2749 5476 +5478 3 109.84701704077159 -918.7716920550919 55.6934 0.2744 5477 +5479 3 109.89709190618387 -919.9012145594512 55.778 0.2739 5478 +5480 3 109.84838038878101 -921.0415989499407 55.8667 0.2734 5479 +5481 3 110.03738157124079 -922.1539981242612 55.9664 0.2729 5480 +5482 3 110.64199424554184 -923.0842361121302 56.0734 0.2724 5481 +5483 3 111.60755176391083 -923.6455515748792 56.1705 0.2719 5482 +5484 3 112.64638416008398 -924.1191714146886 56.2512 0.2714 5483 +5485 3 113.30502990545867 -924.9799851472114 56.3175 0.2709 5484 +5486 3 113.40753873928585 -926.0927888311501 56.3746 0.2703 5485 +5487 3 113.34431167571663 -927.2356609755444 56.4295 0.2698 5486 +5488 3 113.5171381749044 -928.3560294422456 56.4928 0.2693 5487 +5489 3 114.02210646330252 -929.3697834546728 56.5779 0.2688 5488 +5490 3 114.6428469351633 -930.329961618658 56.6983 0.2683 5489 +5491 3 115.15280370558446 -931.3464733560726 56.866 0.2678 5490 +5492 3 115.65762191727273 -932.3627724572962 57.0906 0.2673 5491 +5493 3 116.33544438486257 -933.2577256585478 57.3737 0.2667 5492 +5494 3 117.02800921315094 -934.142546594454 57.7004 0.2662 5493 +5495 3 117.46656017950912 -935.1745444916933 58.0303 0.2657 5494 +5496 3 117.68874859036373 -936.2907787502976 58.3201 0.2652 5495 +5497 3 117.94526535251865 -937.4038232915149 58.5637 0.2647 5496 +5498 3 118.27647783626531 -938.4954305013711 58.7751 0.2642 5497 +5499 3 118.56040908867095 -939.6014632151312 58.9585 0.2637 5498 +5500 3 118.74781891809613 -940.7285224575115 59.1128 0.2632 5499 +5501 3 118.88214642135375 -941.8641721974703 59.2516 0.2627 5500 +5502 3 119.09168210558718 -942.9865520649986 59.3992 0.2621 5501 +5503 3 119.4546726272481 -944.063047481238 59.5708 0.2616 5502 +5504 3 119.94528067077917 -945.0885161582938 59.7649 0.2611 5503 +5505 3 120.52023139441843 -946.0703430857035 59.9718 0.2606 5504 +5506 3 121.17803331504638 -947.0013050039462 60.1784 0.2601 5505 +5507 3 121.92897805869632 -947.8609250374403 60.3655 0.2596 5506 +5508 3 122.78612762037608 -948.6158606564916 60.5228 0.2591 5507 +5509 3 123.7010648704289 -949.2993341661946 60.6648 0.2585 5508 +5510 3 124.54192880821523 -950.0649200647915 60.8154 0.258 5509 +5511 3 125.1628625133362 -951.0106936232318 60.9728 0.2575 5510 +5512 3 125.5663023677009 -952.075614002373 61.1136 0.257 5511 +5513 3 125.84349848374947 -953.1843221484816 61.2262 0.2565 5512 +5514 3 126.02623938750196 -954.312799535094 61.3122 0.256 5513 +5515 3 126.09572674341311 -955.4545390445131 61.3768 0.2555 5514 +5516 3 126.08117932225954 -956.5967847591199 61.4272 0.255 5515 +5517 3 126.06151830012041 -957.7414596886124 61.4771 0.2544 5516 +5518 3 126.07310834794364 -958.8837575135212 61.5465 0.2539 5517 +5519 3 126.06014332607327 -960.0256211122964 61.6448 0.2534 5518 +5520 3 125.91959721886559 -961.1570579827177 61.7613 0.2529 5519 +5521 3 125.62562748617356 -962.2611538373703 61.8778 0.2524 5520 +5522 3 125.24959122069356 -963.3409062289138 61.9906 0.2519 5521 +5523 3 124.85848781357484 -964.4148430170629 62.1104 0.2514 5522 +5524 3 124.48667579845451 -965.4941883350275 62.2457 0.2509 5523 +5525 3 124.15675588779055 -966.5876655878991 62.3913 0.2503 5524 +5526 3 123.8919811722557 -967.7001310884938 62.5405 0.2498 5525 +5527 3 123.7576238305225 -968.8323611687878 62.7038 0.2493 5526 +5528 3 123.8249913700194 -969.9636734840315 62.8992 0.2488 5527 +5529 3 124.0571515203304 -971.0736511930903 63.121 0.2483 5528 +5530 3 124.3779368099018 -972.1673782193608 63.3396 0.2478 5529 +5531 3 124.78279480849861 -973.2369675241747 63.5362 0.2473 5530 +5532 3 125.09418893229511 -974.335900893249 63.7104 0.2467 5531 +5533 3 125.01567686630642 -975.4663239934616 63.8744 0.2462 5532 +5534 3 124.78000102717542 -976.5829925158306 64.0534 0.2457 5533 +5535 3 124.57549027513261 -977.7026067718576 64.276 0.2452 5534 +5536 3 124.23190536306649 -978.7780175437027 64.5621 0.2447 5535 +5537 3 123.56646935618059 -979.688643356394 64.8917 0.2442 5536 +5538 3 122.78947417096427 -980.5218288712409 65.2422 0.2437 5537 +5539 3 122.40148597714409 -981.5713215303177 65.6362 0.2432 5538 +5540 3 122.52888361535665 -982.6862293569017 66.0688 0.2426 5539 +5541 3 122.73734968991744 -983.7987626039361 66.5246 0.2421 5540 +5542 3 122.82231005691855 -984.9267745524718 67.0043 0.2416 5541 +5543 3 122.99350055109338 -986.0358406527129 67.5237 0.2411 5542 +5544 3 123.27359401965981 -987.1134712289618 68.0862 0.2406 5543 +5545 3 123.70501951838386 -988.0591462572091 68.7504 0.2401 5544 +5546 3 124.29996433580993 -988.9645006652826 69.447 0.2396 5545 +5547 3 124.96835770566412 -989.8882917256068 70.0543 0.2391 5546 +5548 3 125.66517141183277 -990.7937436342664 70.5888 0.2385 5547 +5549 3 126.42732055553498 -991.6281352825672 71.1217 0.238 5548 +5550 3 127.20063649755531 -992.4425338666874 71.6724 0.2375 5549 +5551 3 128.0034721020781 -993.1373925013108 72.3153 0.237 5550 +5552 3 128.5527769177657 -994.0802467792681 73.0083 0.2365 5551 +5553 3 128.7223025844239 -995.057561149542 73.8206 0.236 5552 +5554 3 128.82498089789178 -996.1770857914966 74.5702 0.2355 5553 +5555 3 129.12661964758485 -997.2510871996351 75.2612 0.235 5554 +5556 3 129.61741942894835 -998.2243293198774 75.9181 0.2344 5555 +5557 3 130.17737974877141 -999.1952412212482 76.4873 0.2339 5556 +5558 3 130.79052409033153 -1000.1551050534728 76.9476 0.2334 5557 +5559 3 131.4572725014213 -1001.0818716995651 77.3035 0.2329 5558 +5560 3 132.0296975391951 -1002.0728145970774 77.5788 0.2324 5559 +5561 3 132.11562582029902 -1003.2131307376745 77.8176 0.2319 5560 +5562 3 132.15388030505096 -1004.3427459838518 78.0808 0.2314 5561 +5563 3 132.1925169056346 -1005.4739436293123 78.3684 0.2308 5562 +5564 3 132.1694054400775 -1006.6035708200969 78.6752 0.2303 5563 +5565 3 132.0914881261115 -1007.7304377608598 78.9888 0.2298 5564 +5566 3 132.013658329374 -1008.8573530827629 79.6594 0.2293 5565 +5567 3 101.23744378692541 -891.8830324039183 60.8504 0.2883 5451 +5568 3 102.13074524776746 -892.4944427980541 61.5404 0.2873 5567 +5569 3 102.77930980849214 -893.4020160185561 62.1018 0.2868 5568 +5570 3 103.02584438201137 -894.4977731102783 62.5531 0.2863 5569 +5571 3 102.99850866609455 -895.6278073746417 62.9367 0.2858 5570 +5572 3 102.98864990377115 -896.7595047965727 63.2716 0.2853 5571 +5573 3 103.30270378614733 -897.8298573034435 63.5628 0.2848 5572 +5574 3 104.01514430927747 -898.6929866106751 63.8165 0.2842 5573 +5575 3 104.89610261649068 -899.4166357528372 64.0192 0.2837 5574 +5576 3 105.75494551807489 -900.1685082688919 64.1634 0.2832 5575 +5577 3 106.52046314278292 -901.0112750790247 64.2561 0.2827 5576 +5578 3 107.1793152701525 -901.9428175709489 64.2863 0.2822 5577 +5579 3 107.72412735982559 -902.9434049019432 64.2177 0.2817 5578 +5580 3 108.16461448461615 -903.98161498805 64.0293 0.2812 5579 +5581 3 108.53407792117537 -905.0368936332644 63.7378 0.2807 5580 +5582 3 108.86534251522403 -906.1023633741439 63.3828 0.2802 5581 +5583 3 109.18207216017544 -907.161054822116 62.9938 0.2797 5582 +5584 3 109.43460479094315 -908.2221923628699 62.603 0.2792 5583 +5585 3 109.51850972661285 -909.3378517382038 62.305 0.2787 5584 +5586 3 109.39009833182618 -910.4615997365063 62.2138 0.2782 5585 +5587 3 109.15457629856675 -911.5496732183307 62.3622 0.2777 5586 +5588 3 109.00278366436277 -912.6305586730397 62.722 0.2772 5587 +5589 3 109.15529082300222 -913.6859905214143 63.2433 0.2767 5588 +5590 3 109.71748413359481 -914.6007767267787 63.8462 0.2762 5589 +5591 3 110.54312562844308 -915.3513201112575 64.4235 0.2757 5590 +5592 3 111.36728791500565 -916.1376099912686 64.8978 0.2752 5591 +5593 3 111.99204895478658 -917.0882416881796 65.2621 0.2747 5592 +5594 3 112.49135171650013 -918.1145177534491 65.5542 0.2742 5593 +5595 3 112.98769307078675 -919.1366429072464 65.8157 0.2737 5594 +5596 3 113.5009397587367 -920.1472034731247 66.0738 0.2732 5595 +5597 3 114.0560721224258 -921.1363565597522 66.332 0.2727 5596 +5598 3 114.69223722423641 -922.0828946800825 66.5759 0.2722 5597 +5599 3 115.432576340319 -922.9521915242032 66.7915 0.2717 5598 +5600 3 116.2629415706972 -923.736768661379 66.9729 0.2712 5599 +5601 3 117.12157183609042 -924.4937797361664 67.1255 0.2706 5600 +5602 3 117.95078516415728 -925.2802338712285 67.2773 0.2701 5601 +5603 3 118.75538608763881 -926.0806192496136 67.4691 0.2696 5602 +5604 3 119.5831134874025 -926.8532259294193 67.7046 0.2691 5603 +5605 3 120.47508851622405 -927.5594270961975 67.9526 0.2686 5604 +5606 3 121.42167718980068 -928.1951538008877 68.2038 0.2681 5605 +5607 3 122.36413837529784 -928.8311125447001 68.4614 0.2676 5606 +5608 3 123.23014168562133 -929.5700325109405 68.7053 0.2671 5607 +5609 3 123.98740031370826 -930.4252588144344 68.9156 0.2666 5608 +5610 3 124.65466673899837 -931.3535687237215 69.1015 0.2661 5609 +5611 3 125.25918414644707 -932.321803697316 69.2938 0.2656 5610 +5612 3 125.8629373222324 -933.2868738723442 69.517 0.2651 5611 +5613 3 126.58238444823019 -934.1656456703064 69.7715 0.2646 5612 +5614 3 127.44049147483346 -934.9093414823789 70.0521 0.2641 5613 +5615 3 128.3340045422601 -935.6032526354365 70.3646 0.2636 5614 +5616 3 129.14321556109473 -936.3787633877774 70.7146 0.2631 5615 +5617 3 129.8545041819136 -937.2437696928953 71.0777 0.2626 5616 +5618 3 130.6346088660208 -938.0671773269588 71.4062 0.2621 5617 +5619 3 131.57405130919946 -938.7133506287554 71.6646 0.2616 5618 +5620 3 132.55822317490527 -939.2953543991496 71.85 0.2611 5619 +5621 3 133.39353252662846 -940.070781363424 71.9757 0.2606 5620 +5622 3 134.01027216372657 -941.0313758460399 72.06 0.2601 5621 +5623 3 134.60687910911395 -942.0068926181742 72.1241 0.2596 5622 +5624 3 135.2788286384178 -942.9312784305212 72.2002 0.259 5623 +5625 3 135.98757337456792 -943.8199020735667 72.3128 0.2585 5624 +5626 3 136.711626866757 -944.6998491972331 72.4461 0.258 5625 +5627 3 137.40785999924407 -945.6063513126345 72.5651 0.2575 5626 +5628 3 137.96517473882872 -946.603338123501 72.6527 0.257 5627 +5629 3 138.44602890368418 -947.6416967908897 72.7073 0.2565 5628 +5630 3 139.0511127064733 -948.6113875104505 72.7303 0.256 5629 +5631 3 139.7108649638748 -949.5460556648527 72.7272 0.2555 5630 +5632 3 140.13662913089755 -950.6036640631171 72.7042 0.255 5631 +5633 3 140.1678874619612 -951.7411808176043 72.6662 0.2545 5632 +5634 3 140.02727879527222 -952.8752111579621 72.6124 0.254 5633 +5635 3 139.99629044892578 -954.0188802413908 72.5424 0.2535 5634 +5636 3 140.23179412249544 -955.1345912612052 72.4436 0.253 5635 +5637 3 140.71274475833093 -956.1587203575057 72.2823 0.2525 5636 +5638 3 141.19900222841218 -957.1660156333758 72.0535 0.252 5637 +5639 3 141.37310574887385 -958.2793201623177 71.808 0.2515 5638 +5640 3 141.20513992682572 -959.4059968606762 71.6058 0.251 5639 +5641 3 140.9130955731602 -960.5111571004117 71.4739 0.2505 5640 +5642 3 140.6033422267794 -961.6105266945 71.4286 0.25 5641 +5643 3 140.2776607448163 -962.7010909210848 71.4683 0.2495 5642 +5644 3 139.89721657099477 -963.7770353808991 71.5476 0.249 5643 +5645 3 139.488452552301 -964.8450940061726 71.615 0.2485 5644 +5646 3 139.14072195335214 -965.9352381849649 71.6523 0.248 5645 +5647 3 139.03830317542227 -967.0733553818859 71.6635 0.2475 5646 +5648 3 139.34047038849494 -968.1724440522596 71.6542 0.2469 5647 +5649 3 139.74479619455028 -969.2429960465867 71.6299 0.2464 5648 +5650 3 139.88014894680248 -970.3765845091505 71.5971 0.2459 5649 +5651 3 139.73084556193103 -971.5098074612945 71.5585 0.2454 5650 +5652 3 139.3502996925399 -972.5882094926767 71.5137 0.2449 5651 +5653 3 138.96174137421747 -973.6622963575356 71.4462 0.2444 5652 +5654 3 138.92411436249395 -974.7944113022248 71.3272 0.2439 5653 +5655 3 139.02823022312484 -975.9278709166642 71.1861 0.2434 5654 +5656 3 139.0526424772101 -977.070744090665 71.0646 0.2429 5655 +5657 3 139.02275271874547 -978.2149062305468 70.9752 0.2424 5656 +5658 3 139.07220385392566 -979.3573384583964 70.9187 0.2419 5657 +5659 3 139.18797584016593 -980.495756372522 70.8926 0.2414 5658 +5660 3 139.11254628010465 -981.6371388594513 70.8926 0.2409 5659 +5661 3 138.88545421853465 -982.7572957571991 70.9092 0.2404 5660 +5662 3 138.67765354896298 -983.8828611847623 70.9366 0.2399 5661 +5663 3 138.5074138133288 -985.0136511928589 70.9752 0.2394 5662 +5664 3 138.34178044388594 -986.1456165266599 71.0259 0.2389 5663 +5665 3 138.18224832268902 -987.2783266891932 71.0998 0.2384 5664 +5666 3 138.0457905674724 -988.409395622124 71.2149 0.2379 5665 +5667 3 137.9319625029231 -989.5398343961057 71.3712 0.2374 5666 +5668 3 137.85338787745317 -990.6728509662546 71.5495 0.2369 5667 +5669 3 137.87378851736972 -991.8109926551014 71.7228 0.2364 5668 +5670 3 138.12986060421164 -992.925048266972 71.8561 0.2359 5669 +5671 3 138.49873973792748 -994.0074270706766 71.9334 0.2354 5670 +5672 3 138.9349310991256 -995.0629156525268 71.9354 0.2349 5671 +5673 3 139.38100668255157 -996.1120993036915 71.8816 0.2343 5672 +5674 3 139.51941208862095 -997.2238371071194 71.7528 0.2338 5673 +5675 3 139.5788922981492 -998.3456473159669 71.5893 0.2333 5674 +5676 3 139.17298770001238 -999.4062598876496 71.5403 0.2328 5675 +5677 3 138.98184432098648 -1000.4992134359098 71.6419 0.2323 5676 +5678 3 139.08541753989658 -1001.610091740822 71.8466 0.2318 5677 +5679 3 139.313024929746 -1002.7305786064684 72.0297 0.2313 5678 +5680 3 139.54467229044647 -1003.8507850518527 72.182 0.2308 5679 +5681 3 139.45747073086503 -1004.9921727633716 72.2912 0.2303 5680 +5682 3 139.15024829493942 -1006.0941983868777 72.3484 0.2298 5681 +5683 3 138.84197565227208 -1007.1956434367022 72.3668 0.2293 5682 diff --git a/example_data/upright_swcs/740135032.swc b/example_data/upright_swcs/740135032.swc new file mode 100644 index 0000000..50135c1 --- /dev/null +++ b/example_data/upright_swcs/740135032.swc @@ -0,0 +1,15913 @@ +1 1 -84.3510406491921 -1150.8209603699775 25.802 4.004 -1 +2 3 -87.0713162340453 -1154.3649132086098 23.225 0.4665 1 +3 3 -87.56598366549741 -1155.3645706010502 22.6751 0.2771 2 +4 3 -88.23759273947604 -1156.2621735710484 22.2276 0.2764 3 +5 3 -89.19428811668303 -1156.848937966041 21.8782 0.2758 4 +6 3 -90.15780443250321 -1157.4505766608968 21.5706 0.2752 5 +7 3 -90.64414018910065 -1158.4530946816103 21.3484 0.2746 6 +8 3 -90.88429303168766 -1159.5675755213724 21.1794 0.274 7 +9 3 -91.16107009277835 -1160.6749883614884 21.0111 0.2735 8 +10 3 -91.38425164129404 -1161.7951185532083 20.8461 0.2729 9 +11 3 -91.70941573732648 -1162.8893122840673 20.704 0.2723 10 +12 3 -92.52772299215383 -1163.6662709681023 20.5689 0.2717 11 +13 3 -93.29835068617223 -1164.4944454649394 20.4322 0.2711 12 +14 3 -93.59993988509876 -1165.594337811986 20.2613 0.2705 13 +15 3 -94.07936340176309 -1166.6208958189532 20.0099 0.2699 14 +16 3 -94.78341053080948 -1167.511557421405 19.7581 0.2693 15 +17 3 -95.1915856980288 -1168.5560632054317 19.514 0.2687 16 +18 3 -95.14014213764204 -1169.6927327308854 19.2728 0.2682 17 +19 3 -94.93567921484782 -1170.8117601269764 19.062 0.2676 18 +20 3 -94.56976121570278 -1171.8921137810644 18.8517 0.267 19 +21 3 -94.28702407560371 -1172.972535906721 18.6769 0.2664 20 +22 3 -94.69028819143682 -1173.9200010210561 18.5399 0.2658 21 +23 3 -95.69306789289823 -1174.4491695389565 18.4376 0.2652 22 +24 3 -96.54034372354334 -1175.211654743275 18.3487 0.2647 23 +25 3 -97.23646171439253 -1176.1108239169102 18.2385 0.2641 24 +26 3 -97.68250695305812 -1177.1504360633685 18.1254 0.2635 25 +27 3 -97.99395189869023 -1178.2428876942613 18.0367 0.2629 26 +28 3 -98.51868379390771 -1179.257033979637 17.9658 0.2624 27 +29 3 -99.11132660735313 -1180.2349825139022 17.9106 0.2618 28 +30 3 -99.68663392773624 -1181.2237560507215 17.8693 0.2612 29 +31 3 -100.23262018710659 -1182.2294861609294 17.8304 0.2606 30 +32 3 -100.8946079796878 -1183.131856828933 17.7654 0.2601 31 +33 3 -101.87622402047583 -1183.6801789226588 17.6849 0.2595 32 +34 3 -102.83913587727898 -1184.2022140709273 17.6363 0.2589 33 +35 3 -103.50530131577949 -1185.1260509280332 17.6274 0.2583 34 +36 3 -104.28904921181072 -1185.8870490130944 17.6829 0.2577 35 +37 3 -105.32066844794383 -1186.380184057114 17.775 0.2571 36 +38 3 -106.30361484198767 -1186.954795505343 17.8644 0.2565 37 +39 3 -107.15257730520335 -1187.7103355479953 17.9365 0.256 38 +40 3 -107.75235589732694 -1188.6657900683313 17.9743 0.2554 39 +41 3 -108.14083369397747 -1189.7398585584701 18.0105 0.2548 40 +42 3 -108.64065964629668 -1190.7574767321425 18.1207 0.2542 41 +43 3 -109.02237197172963 -1191.809896933684 18.3782 0.2536 42 +44 3 -109.09389733813083 -1192.9388119092075 18.7237 0.253 43 +45 3 -109.43448744844648 -1194.0035172002413 19.0568 0.2524 44 +46 3 -109.94068253849196 -1195.023759127832 19.3179 0.2518 45 +47 3 -110.48382460678204 -1196.027623607557 19.5 0.2512 46 +48 3 -111.30810156426134 -1196.7948703067145 19.6135 0.2507 47 +49 3 -112.29840107256234 -1197.361911305108 19.6706 0.2501 48 +50 3 -113.13560933155264 -1198.1275986963315 19.7008 0.2495 49 +51 3 -113.80538490954888 -1199.0522460426855 19.7231 0.2489 50 +52 3 -114.26234654678422 -1200.0958684562506 19.7806 0.2483 51 +53 3 -114.7488496821943 -1201.1307690646358 19.8624 0.2478 52 +54 3 -115.14890819578761 -1202.2012742704624 19.8926 0.2472 53 +55 3 -115.28440778706022 -1203.3332418763434 19.9062 0.2466 54 +56 3 -115.60008033537792 -1204.4297006727597 19.9347 0.246 55 +57 3 -115.70541314030606 -1205.5647236021346 20.0067 0.2454 56 +58 3 -115.40588060246472 -1206.6615848462188 20.1126 0.2449 57 +59 3 -115.14304895846033 -1207.7730232776714 20.2633 0.2443 58 +60 3 -114.92708268659334 -1208.8931965184765 20.4688 0.2437 59 +61 3 -114.5189794114201 -1209.957010448068 20.6698 0.2431 60 +62 3 -114.13997065162755 -1211.0345996879923 20.8238 0.2426 61 +63 3 -113.86942789754136 -1212.145406628109 20.932 0.242 62 +64 3 -113.85153540989938 -1213.286500576426 21.0083 0.2414 63 +65 3 -114.11882092327534 -1214.3961784820995 21.0658 0.2408 64 +66 3 -114.76306767925001 -1215.3360050657925 21.0893 0.2403 65 +67 3 -115.13532059146877 -1216.4148905181664 21.0664 0.2397 66 +68 3 -115.06837744304858 -1217.552714500547 21.1791 0.2391 67 +69 3 -114.92907913067273 -1218.6837428778076 21.4231 0.2385 68 +70 3 -115.07393271099761 -1219.8134782451689 21.6821 0.2379 69 +71 3 -115.22511398979884 -1220.9417035688257 21.9531 0.2374 70 +72 3 -114.9707515793117 -1222.0502485449683 22.2553 0.2368 71 +73 3 -115.17853423485235 -1222.5029943765962 22.6571 0.2368 72 +74 3 -115.75252902424529 -1223.4238193500573 23.4274 0.2368 73 +75 3 -116.32615961464751 -1224.3498199741148 24.0129 0.2366 74 +76 3 -116.59020460345192 -1225.438607714626 24.5705 0.2366 75 +77 3 -116.82800167700242 -1226.5328596060162 25.1318 0.2365 76 +78 3 -117.06157114786748 -1227.6231043318826 25.7486 0.2364 77 +79 3 -117.34512599181176 -1228.6998212168974 26.3448 0.2363 78 +80 3 -117.83409101295706 -1229.7066551347289 26.8329 0.2363 79 +81 3 -118.65976989684401 -1230.4103215334603 27.2581 0.2362 80 +82 3 -119.41954897132456 -1231.1753675307582 27.682 0.2361 81 +83 3 -119.38142002408216 -1232.189928575438 28.198 0.2361 82 +84 3 -118.94967137963584 -1233.2244183424336 28.7465 0.236 83 +85 3 -118.22697803717898 -1234.033119729083 29.3513 0.2359 84 +86 3 -117.8933991858575 -1234.9909685689063 30.0913 0.2359 85 +87 3 -118.36853453025873 -1235.9087785571396 30.9546 0.2358 86 +88 3 -118.84976241529176 -1236.8518141464292 31.9838 0.2357 87 +89 3 -119.19405716270222 -1237.8973159048714 32.741 0.2356 88 +90 3 -119.43769420522204 -1238.984358443833 33.3729 0.2356 89 +91 3 -119.25795271678436 -1240.0851279461967 33.9276 0.2355 90 +92 3 -118.90767806750137 -1241.1509167245526 34.468 0.2354 91 +93 3 -118.23575286251656 -1242.0538574141365 34.9423 0.2353 92 +94 3 -117.852868369708 -1242.9586275038096 35.639 0.2353 93 +95 3 -118.49315550787895 -1243.8678488358805 36.2748 0.2352 94 +96 3 -118.97330802036504 -1244.8344038548798 36.7312 0.2351 95 +97 3 -118.98842961173091 -1245.9676193143027 37.0723 0.235 96 +98 3 -119.14853020842668 -1247.0637652712526 37.3685 0.235 97 +99 3 -119.65504495662998 -1248.081386546508 37.6555 0.2349 98 +100 3 -120.29250911165798 -1249.0171614238448 37.9753 0.2348 99 +101 3 -121.09344804638602 -1249.8048075517706 38.4135 0.2347 100 +102 3 -121.96443771787278 -1250.513436059639 38.939 0.2347 101 +103 3 -122.65147280613456 -1251.3815505898115 39.4425 0.2346 102 +104 3 -123.18325218559744 -1252.3798392913295 39.8658 0.2345 103 +105 3 -123.94569576070944 -1253.1667125751374 40.2422 0.2345 104 +106 3 -124.87153910935012 -1253.8124538497805 40.696 0.2344 105 +107 3 -125.71512502358308 -1254.5591721737205 41.1421 0.2343 106 +108 3 -126.33384054848966 -1255.4968041640232 41.5097 0.2343 107 +109 3 -126.4400313903858 -1256.5933840995945 41.8592 0.2342 108 +110 3 -126.43127245463398 -1257.7240110411826 42.2657 0.2341 109 +111 3 -126.57555311260177 -1258.8479947340074 42.6056 0.234 110 +112 3 -126.80264802157836 -1259.9598487182684 42.9556 0.234 111 +113 3 -127.56487426111158 -1260.731798437983 43.435 0.2339 112 +114 3 -127.98972129555665 -1261.7489901442623 43.9396 0.2338 113 +115 3 -128.41291383193175 -1262.7973271974834 44.373 0.2338 114 +116 3 -128.35136505476004 -1263.9023136897213 44.8882 0.2337 115 +117 3 -127.88526887646691 -1264.9250813869921 45.3698 0.2336 116 +118 3 -128.02741110097708 -1266.043759695538 45.7509 0.2335 117 +119 3 -128.65953394310606 -1266.9882242435538 46.025 0.2335 118 +120 3 -129.4090363141175 -1267.846374909724 46.2571 0.2334 119 +121 3 -129.9940532103309 -1268.8237443184662 46.5161 0.2333 120 +122 3 -130.61107589950075 -1269.7816990622039 46.755 0.2333 121 +123 3 -131.03083419270928 -1270.8400153926468 46.9392 0.2332 122 +124 3 -131.13541197578502 -1271.9718744727832 47.0526 0.2331 123 +125 3 -131.768745434773 -1272.9010019934854 47.1324 0.233 124 +126 3 -132.67939723443868 -1273.5735586898063 47.2612 0.233 125 +127 3 -133.17522833287046 -1274.543060222465 47.4827 0.2329 126 +128 3 -133.1453971324612 -1275.6795155139225 47.784 0.2328 127 +129 3 -133.23941961437487 -1276.80887747224 48.0866 0.2327 128 +130 3 -133.5933677776831 -1277.8738117179523 48.356 0.2327 129 +131 3 -134.30847265808154 -1278.7376993379762 48.638 0.2326 130 +132 3 -135.04888902492252 -1279.5714841565682 48.9454 0.2325 131 +133 3 -135.65922291820823 -1280.5294357987227 49.2083 0.2325 132 +134 3 -136.51787685089977 -1281.2384637416653 49.4704 0.2324 133 +135 3 -137.44938668122705 -1281.8835797281386 49.7818 0.2323 134 +136 3 -138.11044045404356 -1282.7786855763181 50.1088 0.2322 135 +137 3 -138.57943220006217 -1283.813621420787 50.398 0.2322 136 +138 3 -139.06789787260067 -1284.843037646981 50.6456 0.2321 137 +139 3 -139.54517675264117 -1285.8776678614379 50.8928 0.232 138 +140 3 -139.57759309035606 -1286.9718618940706 51.1734 0.232 139 +141 3 -139.1980997026394 -1288.037063029387 51.4665 0.2319 140 +142 3 -139.17450618976386 -1289.1372082498692 51.8395 0.2318 141 +143 3 -139.33487338626816 -1290.254881373947 52.2822 0.2317 142 +144 3 -139.55578435859695 -1291.3548349831071 52.8217 0.2317 143 +145 3 -139.8740454247494 -1292.4274132524058 53.4066 0.2316 144 +146 3 -140.17400104945472 -1293.5101029416555 53.9288 0.2315 145 +147 3 -140.70586872335053 -1294.5017552131017 54.4186 0.2314 146 +148 3 -141.09132092196194 -1295.5524832714432 54.9914 0.2314 147 +149 3 -141.5781444080664 -1296.56070060088 55.5478 0.2313 148 +150 3 -141.88428707100275 -1297.6486018693463 55.993 0.2312 149 +151 3 -142.20410744508956 -1298.7341114401556 56.3774 0.2312 150 +152 3 -142.4411994535539 -1299.8077404587289 56.9016 0.2311 151 +153 3 -143.11673290925285 -1300.7184372909578 57.2376 0.231 152 +154 3 -143.66294812330176 -1301.710809348173 57.4963 0.2309 153 +155 3 -143.97434070312113 -1302.8033461719153 57.7853 0.2309 154 +156 3 -144.23076218374 -1303.9089286176322 58.0835 0.2308 155 +157 3 -144.61691944743757 -1304.9802795487903 58.3307 0.2307 156 +158 3 -144.76856242971564 -1306.0510373439643 58.548 0.2307 157 +159 3 -144.42474452005519 -1307.1368760727805 58.7594 0.2306 158 +160 3 -144.29502915141006 -1308.2523141585284 59.0013 0.2305 159 +161 3 -144.32516260130217 -1309.3786758523006 59.3158 0.2304 160 +162 3 -144.3055458359595 -1310.491829742164 59.7388 0.2304 161 +163 3 -144.7600226630123 -1311.4936632131921 60.2322 0.2303 162 +164 3 -145.20358550054186 -1312.5088602478422 60.6738 0.2302 163 +165 3 -145.5046900715443 -1313.5963644902806 61.1257 0.2302 164 +166 3 -145.865817861827 -1314.6603123504156 61.6406 0.2301 165 +167 3 -146.26218645900815 -1315.7150506758635 62.1368 0.23 166 +168 3 -146.62041459081473 -1316.7839068942494 62.5971 0.2299 167 +169 3 -147.04155939721164 -1317.837675963849 62.9306 0.2299 168 +170 3 -147.24019058960693 -1318.9521061543085 63.1509 0.2298 169 +171 3 -147.0670355744744 -1320.0704229746839 63.3245 0.2297 170 +172 3 -147.0409442472435 -1321.2051861229413 63.5342 0.2296 171 +173 3 -147.2605594098635 -1322.3204243936025 63.7837 0.2296 172 +174 3 -147.16648118160794 -1323.445677479343 64.0802 0.2295 173 +175 3 -146.75749625248272 -1324.5021413962604 64.4036 0.2294 174 +176 3 -146.63477530973353 -1325.6258697176136 64.738 0.2294 175 +177 3 -146.65038463060677 -1326.7647844857597 65.0082 0.2293 176 +178 3 -146.27569176793259 -1327.839744461136 65.1549 0.2292 177 +179 3 -145.86420971698857 -1328.9067636792156 65.1865 0.2291 178 +180 3 -145.9534145441305 -1330.0439633797141 65.1722 0.2291 179 +181 3 -145.98256091590866 -1331.1872080731255 65.1392 0.229 180 +182 3 -145.64787896718497 -1332.2799536259408 65.1022 0.2289 181 +183 3 -145.8282789844199 -1333.4087665926372 65.0661 0.2289 182 +184 3 -114.87313880359432 -1223.5372093400188 21.3187 0.2367 72 +185 3 -115.20267116255792 -1224.6286886134799 21.1997 0.2366 184 +186 3 -115.38931368541972 -1225.7559391706586 21.0678 0.2365 185 +187 3 -115.70847043367024 -1226.8249596662745 20.9618 0.2364 186 +188 3 -116.38497073617077 -1227.7430588769898 20.8947 0.2363 187 +189 3 -117.17823620594714 -1228.5649587337002 20.8653 0.2361 188 +190 3 -118.06303573131368 -1229.2860667421924 20.8693 0.236 189 +191 3 -118.88571435065535 -1230.053622172945 20.9023 0.2359 190 +192 3 -119.12299766866818 -1231.0790079184053 20.9605 0.2358 191 +193 3 -118.99582016855487 -1232.2120871272273 21.0353 0.2357 192 +194 3 -119.425497169408 -1233.169096847626 21.1823 0.2356 193 +195 3 -120.19344564211218 -1234.010414470924 21.3978 0.2355 194 +196 3 -120.48658653137039 -1235.0648522685415 21.6126 0.2354 195 +197 3 -120.68860201016605 -1236.1867622053578 21.784 0.2353 196 +198 3 -121.28994060276062 -1237.1310854005915 21.8958 0.2352 197 +199 3 -121.83815669160464 -1238.1287956691226 21.9655 0.2351 198 +200 3 -122.30907194454846 -1239.1714871645063 21.9752 0.235 199 +201 3 -122.82729404179412 -1240.1897313188847 21.9264 0.2349 200 +202 3 -123.11205260689479 -1241.2885513949673 21.8228 0.2348 201 +203 3 -123.71156149762669 -1242.2291675440597 21.5233 0.2347 202 +204 3 -124.57546775624786 -1242.9602048730071 21.1464 0.2346 203 +205 3 -125.47024725137288 -1243.660684498053 20.8274 0.2345 204 +206 3 -125.74257937419907 -1244.749166608552 20.5895 0.2344 205 +207 3 -125.02512363698918 -1245.6148477941767 20.3931 0.2343 206 +208 3 -124.65756586045666 -1246.6913763822367 20.1938 0.2341 207 +209 3 -124.73242314744539 -1247.8278562969667 19.9916 0.234 208 +210 3 -124.58515735920554 -1248.9565696519044 19.7279 0.2339 209 +211 3 -124.85542772390755 -1250.061391565139 19.4724 0.2338 210 +212 3 -125.48701598134608 -1251.010927032126 19.289 0.2337 211 +213 3 -125.85205954113633 -1252.0839725155306 19.0931 0.2336 212 +214 3 -125.7468883254453 -1253.2184881943072 18.8692 0.2335 213 +215 3 -125.86867186790062 -1254.3420249043381 18.6746 0.2334 214 +216 3 -126.35343049429781 -1255.3732708323948 18.5298 0.2333 215 +217 3 -126.50894479994679 -1256.4812703092625 18.405 0.2332 216 +218 3 -126.11308896913579 -1257.551321233851 18.2967 0.2331 217 +219 3 -125.64232130694603 -1258.5858900852263 18.1874 0.233 218 +220 3 -125.48426885381912 -1259.7080905406087 18.0484 0.2329 219 +221 3 -125.5653241056018 -1260.8455630440824 17.8851 0.2328 220 +222 3 -125.42340273184413 -1261.9588979324565 17.7155 0.2327 221 +223 3 -124.90402829008741 -1262.9743884982668 17.5338 0.2326 222 +224 3 -124.28318916422279 -1263.9275113811082 17.2819 0.2325 223 +225 3 -123.47612526970943 -1264.7031333187638 16.9573 0.2324 224 +226 3 -122.69437596322189 -1265.4419636591033 16.64 0.2322 225 +227 3 -122.44179709195089 -1266.540923282469 16.3814 0.2321 226 +228 3 -122.40924833256076 -1267.6796991068795 16.1897 0.232 227 +229 3 -122.31918278045833 -1268.8114096247791 16.0321 0.2319 228 +230 3 -122.06748246155627 -1269.9244080567028 15.8693 0.2318 229 +231 3 -121.69796524947839 -1270.9997322310696 15.6848 0.2317 230 +232 3 -121.04331696857696 -1271.905310702718 15.4954 0.2316 231 +233 3 -120.48150847324905 -1272.8410751680499 15.2482 0.2315 232 +234 3 -120.18032523145735 -1273.938330336579 14.9523 0.2314 233 +235 3 -119.97767557333327 -1275.0545987344394 14.6894 0.2313 234 +236 3 -120.08088397294989 -1276.173408493178 14.4324 0.2312 235 +237 3 -120.42712343522288 -1277.2550850782832 14.1543 0.2311 236 +238 3 -120.84781884977929 -1278.3139774326664 13.929 0.231 237 +239 3 -120.83398727854677 -1279.4026333322222 13.7962 0.2309 238 +240 3 -120.73532586082757 -1280.5330511419957 13.7416 0.2308 239 +241 3 -121.03398326677745 -1281.6136516620177 13.7516 0.2307 240 +242 3 -121.62827988575634 -1282.5845174759538 13.8088 0.2306 241 +243 3 -121.6520627127245 -1283.6425335803406 13.9442 0.2305 242 +244 3 -121.58635990661742 -1284.7718468899538 14.208 0.2304 243 +245 3 -121.66331728939707 -1285.9028095954554 14.5739 0.2303 244 +246 3 -121.54242915009382 -1287.0235561670656 14.9697 0.2302 245 +247 3 -121.47102703526303 -1288.1533572061862 15.3424 0.2301 246 +248 3 -121.91980455359214 -1289.155678406721 15.7716 0.2299 247 +249 3 -122.74498029475257 -1289.912678536312 16.2665 0.2298 248 +250 3 -123.1637693321129 -1290.9462186575392 16.7717 0.2297 249 +251 3 -123.3509495412481 -1292.061709499863 17.1718 0.2296 250 +252 3 -123.2582547245978 -1293.189104120644 17.5819 0.2295 251 +253 3 -123.44111903661457 -1294.3072242275157 17.9547 0.2294 252 +254 3 -123.6907110611038 -1295.4195251945707 18.2044 0.2293 253 +255 3 -123.8135552554233 -1296.5545128878616 18.3581 0.2292 254 +256 3 -123.86992810305276 -1297.6970032519566 18.4477 0.2291 255 +257 3 -124.09515427996342 -1298.8183902231822 18.4956 0.229 256 +258 3 -124.14181204113288 -1299.9615996805096 18.5102 0.2289 257 +259 3 -86.02491493660949 -1147.7568979146863 28.7893 0.4865 1 +260 3 -86.04052694547511 -1146.6653454582379 29.3121 0.2737 259 +261 3 -86.52523040110754 -1145.671504897535 29.6554 0.2705 260 +262 3 -87.61517459914393 -1145.5411631345928 29.8836 0.2679 261 +263 3 -88.75626854746099 -1145.559055622235 30.0378 0.2653 262 +264 3 -89.72766825355114 -1144.9837507108982 30.2394 0.2626 263 +265 3 -90.31724160354037 -1144.0114095747826 30.4612 0.26 264 +266 3 -90.66992267116274 -1142.924328094607 30.6113 0.2574 265 +267 3 -91.13333992991534 -1142.207451282114 30.5964 0.2471 266 +268 3 -91.79102612049218 -1141.2728689985647 30.4682 0.2469 267 +269 3 -92.52959246002632 -1140.4121820565774 30.228 0.2467 268 +270 3 -93.42137018173787 -1139.7128119220574 29.8651 0.2466 269 +271 3 -94.28525780176165 -1138.997707041659 29.4599 0.2465 270 +272 3 -94.98395698917409 -1138.105824103427 29.0814 0.2464 271 +273 3 -95.55218768057756 -1137.1485355725508 28.7134 0.2463 272 +274 3 -95.79162652697141 -1136.040207931987 28.355 0.2462 273 +275 3 -96.07236279227533 -1134.9544475950142 28.0003 0.2461 274 +276 3 -96.53948438634916 -1133.925619491612 27.5896 0.246 275 +277 3 -97.02182897136191 -1132.9182387784213 27.103 0.2459 276 +278 3 -97.6107763406448 -1131.9642937872322 26.5962 0.2457 277 +279 3 -97.97860071698591 -1130.9092923662997 26.1802 0.2456 278 +280 3 -97.94244209704607 -1129.7994166461383 25.8582 0.2455 279 +281 3 -97.72402824653597 -1128.688907735816 25.5805 0.2454 280 +282 3 -97.96314294811572 -1127.638014796698 25.3313 0.2453 281 +283 3 -98.4415717636208 -1126.621536460237 25.1448 0.2452 282 +284 3 -98.54081471590968 -1125.5008665639602 24.9572 0.2451 283 +285 3 -98.4731698829325 -1124.3635378223153 24.7553 0.245 284 +286 3 -98.75060404779907 -1123.302627960845 24.5546 0.2449 285 +287 3 -99.01260978933601 -1122.2538327084712 24.3563 0.2447 286 +288 3 -99.00520240963493 -1121.1145599445003 24.1995 0.2446 287 +289 3 -99.15466209872812 -1119.984377985108 24.074 0.2445 288 +290 3 -99.45807206841027 -1118.8857917707865 23.9443 0.2444 289 +291 3 -99.90799952220408 -1117.8370044204037 23.8213 0.2443 290 +292 3 -100.24762816684563 -1116.7579811195715 23.7449 0.2442 291 +293 3 -100.39374500878836 -1115.6244532114451 23.7063 0.2441 292 +294 3 -100.49686298387155 -1114.4846845142024 23.6973 0.244 293 +295 3 -100.91484252115129 -1113.465911670819 23.7169 0.2439 294 +296 3 -101.30395339614569 -1112.4266942599943 23.7785 0.2437 295 +297 3 -101.09724930372437 -1111.3341820595242 23.9016 0.2436 296 +298 3 -101.0701914086377 -1110.213701773971 24.0248 0.2435 297 +299 3 -101.2719922398469 -1109.090220922099 24.1426 0.2434 298 +300 3 -101.65781642762323 -1108.0168209471935 24.2505 0.2433 299 +301 3 -101.73148670959421 -1106.8898226599035 24.3304 0.2432 300 +302 3 -101.40948336121693 -1105.8015627030763 24.3642 0.2431 301 +303 3 -101.27340774600418 -1104.6705322185426 24.3921 0.2429 302 +304 3 -101.72939250434621 -1103.6294590798248 24.5158 0.2428 303 +305 3 -102.19321810645266 -1102.5865147999946 24.7036 0.2427 304 +306 3 -102.5906722754014 -1101.516155143811 24.8845 0.2426 305 +307 3 -102.68586421387039 -1100.378205221868 25.0553 0.2425 306 +308 3 -102.74729015306224 -1099.2382811436967 25.1953 0.2424 307 +309 3 -102.97297151138906 -1098.1173888096594 25.3039 0.2423 308 +310 3 -103.0248120978037 -1096.975681192272 25.3884 0.2422 309 +311 3 -102.92442357974681 -1095.8370066841521 25.479 0.2421 310 +312 3 -102.92557062641282 -1094.6948928306838 25.617 0.242 311 +313 3 -102.9265801144162 -1093.5528118042525 25.7781 0.2418 312 +314 3 -103.00395193189894 -1092.4132987802554 25.9442 0.2417 313 +315 3 -103.12890270412157 -1091.281550617226 26.1156 0.2416 314 +316 3 -102.9344607767452 -1090.1603049987825 26.3082 0.2415 315 +317 3 -103.10075040712769 -1089.0552579369669 26.5688 0.2414 316 +318 3 -103.65124927197775 -1088.0897698739652 26.8248 0.2413 317 +319 3 -103.59286703203674 -1086.9635341197559 27.1006 0.2412 318 +320 3 -103.42692267225203 -1085.9053489377316 27.3706 0.2411 319 +321 3 -103.90499590097915 -1084.8980424908277 27.5728 0.2409 320 +322 3 -103.86617278040791 -1083.766339484156 27.7547 0.2408 321 +323 3 -103.627712081021 -1082.6555985175723 27.9549 0.2407 322 +324 3 -103.72499249618136 -1081.5404130034867 28.1467 0.2406 323 +325 3 -104.14132743798064 -1080.4830674326172 28.3562 0.2405 324 +326 3 -104.19619292989779 -1079.388762873641 28.5421 0.2404 325 +327 3 -103.87485941052313 -1078.303614400239 28.707 0.2403 326 +328 3 -103.7646182473438 -1077.1656918123886 28.8196 0.2402 327 +329 3 -103.57276414526555 -1076.0446282934404 28.9002 0.2401 328 +330 3 -103.2403352294088 -1074.9513685823463 29.0184 0.2399 329 +331 3 -103.26463070578751 -1073.8785350305648 29.1998 0.2398 330 +332 3 -103.75068302947813 -1072.845261988898 29.3768 0.2397 331 +333 3 -103.83823604654248 -1071.783139811744 29.5156 0.2396 332 +334 3 -103.32734993382482 -1070.7749217897704 29.622 0.2395 333 +335 3 -103.02520832794215 -1069.7217595705492 29.6993 0.2394 334 +336 3 -103.17132206830175 -1068.5949204583076 29.7315 0.2393 335 +337 3 -103.39000589914951 -1067.4724266845492 29.6696 0.2391 336 +338 3 -103.50283585910955 -1066.3386276899585 29.5112 0.239 337 +339 3 -103.53468196246001 -1065.1966028234597 29.3524 0.2389 338 +340 3 -103.48681978759763 -1064.0553528016776 29.3154 0.2388 339 +341 3 -103.25767163801314 -1062.9382457989504 29.3726 0.2387 340 +342 3 -103.0183621117113 -1061.8202923783551 29.405 0.2386 341 +343 3 -103.23633166741982 -1060.7228311795948 29.4647 0.2385 342 +344 3 -103.7337466799377 -1059.6951339161355 29.5481 0.2384 343 +345 3 -104.06722421496849 -1058.604347798865 29.6086 0.2382 344 +346 3 -104.12334476988138 -1057.4665621541515 29.6414 0.2381 345 +347 3 -103.95844434067968 -1056.3365947305285 29.6618 0.238 346 +348 3 -103.94301711930191 -1055.195092137084 29.6635 0.2379 347 +349 3 -104.38042673480524 -1054.149292047074 29.6587 0.2378 348 +350 3 -104.95361333217954 -1053.1600703203662 29.7018 0.2377 349 +351 3 -104.9668671629621 -1052.0309150848166 29.8262 0.2376 350 +352 3 -104.87374346472956 -1050.8913065569318 29.9048 0.2375 351 +353 3 -105.50764052420456 -1049.9408105295918 29.878 0.2373 352 +354 3 -105.92371058270516 -1048.9033742489369 29.7811 0.2372 353 +355 3 -105.49967232099834 -1047.84113594582 29.7052 0.2371 354 +356 3 -105.18484308896598 -1046.7412045685705 29.6596 0.237 355 +357 3 -104.94954934040035 -1045.6230197842501 29.587 0.2369 356 +358 3 -104.83303284455727 -1044.4865220472543 29.5081 0.2368 357 +359 3 -104.9066647888616 -1043.348701166457 29.3633 0.2367 358 +360 3 -104.76087408718902 -1042.2183897751556 29.246 0.2366 359 +361 3 -104.36821012710266 -1041.144447917116 29.2337 0.2365 360 +362 3 -103.88985346546875 -1040.1159633016402 29.1889 0.2363 361 +363 3 -103.14579713898186 -1039.2489525790913 29.0629 0.2362 362 +364 3 -102.70355303560865 -1038.2883265160308 28.9663 0.2361 363 +365 3 -103.12652681652588 -1037.248443070323 28.8742 0.236 364 +366 3 -103.7610875018373 -1036.3144361181771 28.7851 0.2359 365 +367 3 -104.01909838948686 -1035.21752422479 28.7692 0.2358 366 +368 3 -104.04563910855833 -1034.0776377917487 28.8338 0.2357 367 +369 3 -104.4408511363973 -1033.0676422209408 28.9554 0.2356 368 +370 3 -105.35782260875325 -1032.414746541 29.1085 0.2354 369 +371 3 -106.31559456045906 -1031.8243743037415 29.2821 0.2353 370 +372 3 -106.89236805912995 -1030.892526300454 29.4655 0.2352 371 +373 3 -106.96091195473429 -1029.7717674172077 29.6355 0.2351 372 +374 3 -106.91069331829868 -1028.6343510736665 29.7609 0.235 373 +375 3 -107.19137721778989 -1027.5486759295436 29.8399 0.2349 374 +376 3 -107.65089002436093 -1026.501672118377 29.9118 0.2348 375 +377 3 -107.9128228846842 -1025.4004802564916 30.0104 0.2347 376 +378 3 -107.89226927693977 -1024.2652170670908 30.1143 0.2345 377 +379 3 -107.69519808501548 -1023.139655551529 30.1916 0.2344 378 +380 3 -107.5183558414634 -1022.0117382669308 30.2834 0.2343 379 +381 3 -107.4770003629898 -1020.8730791720301 30.4651 0.2342 380 +382 3 -107.24824854689652 -1019.7749967039823 30.7062 0.2341 381 +383 3 -106.71620497667155 -1018.7725546660656 30.9072 0.234 382 +384 3 -106.29586755793983 -1017.7218642528545 31.1206 0.2339 383 +385 3 -105.91179946347026 -1016.6492151029408 31.3656 0.2338 384 +386 3 -105.18862478462896 -1015.8005566770221 31.5787 0.2337 385 +387 3 -104.40186911282441 -1014.974558951309 31.7447 0.2335 386 +388 3 -104.19574035180662 -1013.905172256104 31.864 0.2334 387 +389 3 -104.61069429104717 -1012.8630589809229 31.9018 0.2333 388 +390 3 -104.92248519981368 -1011.7682157413627 31.8766 0.2332 389 +391 3 -105.46408326157174 -1010.7690852096002 31.8665 0.2331 390 +392 3 -106.22523742009773 -1009.9195826510646 31.8097 0.233 391 +393 3 -106.7663446507654 -1008.9214416064626 31.6686 0.2329 392 +394 3 -107.07394939609605 -1007.8267249990021 31.4121 0.2328 393 +395 3 -107.44997330456269 -1006.7539917515162 31.1251 0.2326 394 +396 3 -107.92489430315118 -1005.7191587093786 30.8622 0.2325 395 +397 3 -107.8488709401361 -1004.5954608237012 30.6194 0.2324 396 +398 3 -107.87327012416694 -1003.4569578022653 30.3797 0.2323 397 +399 3 -108.27935849639906 -1002.3987134477148 30.1154 0.2322 398 +400 3 -108.37446214043521 -1001.2673999558431 29.8752 0.2321 399 +401 3 -108.35894662462465 -1000.13253379247 29.54 0.232 400 +402 3 -108.58430212162736 -999.0276397025362 29.0772 0.2319 401 +403 3 -108.7199871929244 -997.9024896319114 28.698 0.2318 402 +404 3 -108.7707171707086 -996.7667900548428 28.4091 0.2316 403 +405 3 -108.6478698748059 -995.6384911574359 28.0958 0.2315 404 +406 3 -108.91479938781316 -994.5335625239551 27.7629 0.2314 405 +407 3 -109.06514073085839 -993.4107305772367 27.4562 0.2313 406 +408 3 -108.8551961138655 -992.2973282116044 27.1495 0.2312 407 +409 3 -108.98922737962911 -991.1792608613084 26.7578 0.2311 408 +410 3 -109.46508239798223 -990.1516926389951 26.4139 0.231 409 +411 3 -110.12681409174911 -989.2237053462673 26.1846 0.2309 410 +412 3 -110.86097693226856 -988.3482214722865 26.046 0.2308 411 +413 3 -111.55033143537796 -987.4385043849221 25.9794 0.2306 412 +414 3 -112.11954679584895 -986.4469590236783 25.9774 0.2305 413 +415 3 -112.60137151685399 -985.4096788164883 26.0494 0.2304 414 +416 3 -113.1269439234047 -984.3951808394215 26.1629 0.2303 415 +417 3 -113.70092388029806 -983.4199455554593 26.2581 0.2302 416 +418 3 -114.59617108125974 -982.7281075331085 26.3316 0.2301 417 +419 3 -115.56542073479272 -982.175778854579 26.3624 0.23 418 +420 3 -115.97755409993692 -981.1775929553924 26.4067 0.2299 419 +421 3 -116.0111775393373 -980.0393603278848 26.5374 0.2297 420 +422 3 -116.05629340124756 -978.904200846136 26.724 0.2296 421 +423 3 -115.758963939507 -977.832515849889 26.9464 0.2295 422 +424 3 -115.30899982975077 -976.7904948760447 27.1392 0.2294 423 +425 3 -114.68185581804016 -975.8839527652879 27.2458 0.2293 424 +426 3 -113.88859034826373 -975.0620529085776 27.346 0.2292 425 +427 3 -113.70614770323215 -974.0501868002046 27.7836 0.229 426 +428 3 -114.45266610541094 -973.2508479201241 28.6068 0.2289 427 +429 3 -90.91140025026607 -1142.7585297870455 31.3804 0.2574 266 +430 3 -91.83777187432088 -1142.1166942675031 31.7976 0.2534 429 +431 3 -92.73872148558928 -1141.4176797197608 32.006 0.2512 430 +432 3 -93.52499271942645 -1140.5930064287902 32.2613 0.2492 431 +433 3 -94.13684515681257 -1139.6302513379885 32.4783 0.2471 432 +434 3 -94.48988883071087 -1140.0084217946883 33.1128 0.2469 433 +435 3 -95.32264533274497 -1140.602227157008 34.3344 0.2465 434 +436 3 -95.06088854672959 -1140.4950924988675 35.5841 0.2461 435 +437 3 -95.97816766738094 -1140.1846681686084 36.7214 0.2457 436 +438 3 -96.96397777359573 -1140.5449419179777 37.5155 0.2455 437 +439 3 -97.81675029806826 -1141.2570454157253 38.1856 0.2452 438 +440 3 -98.70766087886892 -1141.9376571898063 38.7178 0.245 439 +441 3 -99.58382930253498 -1142.639961100781 39.1468 0.2447 440 +442 3 -100.49638306975152 -1143.2022925616998 39.5906 0.2445 441 +443 3 -101.59053906649126 -1143.451801388795 40.0898 0.2442 442 +444 3 -102.68794789943871 -1143.6698561373532 40.5871 0.244 443 +445 3 -103.72045530644175 -1144.030544735016 41.0911 0.2437 444 +446 3 -104.4647584098729 -1144.8425381957181 41.5694 0.2434 445 +447 3 -105.29387084438969 -1145.5602879438404 42.0599 0.2432 446 +448 3 -106.1321520668804 -1146.2850820746248 42.6488 0.2429 447 +449 3 -107.0872638266323 -1146.8371847882422 43.2424 0.2426 448 +450 3 -108.18180182694363 -1146.823878178056 43.8284 0.2424 449 +451 3 -109.18577773833323 -1147.2462612143509 44.4662 0.2421 450 +452 3 -110.27765364705954 -1147.2285011483837 45.1665 0.2419 451 +453 3 -111.30595396677785 -1147.6376643828849 45.8088 0.2416 452 +454 3 -112.240862804188 -1148.255289702745 46.3574 0.2414 453 +455 3 -113.27080220875717 -1148.692340629887 46.9294 0.2411 454 +456 3 -113.69458548975507 -1149.7047701487902 47.6896 0.2408 455 +457 3 -114.06696234093823 -1150.6937007533843 48.4134 0.2405 456 +458 3 -115.01409259668009 -1151.2543962310353 49.0353 0.2402 457 +459 3 -116.10210058539224 -1151.4854534458082 49.5692 0.24 458 +460 3 -117.18159559896515 -1151.3043189221216 50.0828 0.2397 459 +461 3 -118.21590236114451 -1150.8604121169137 50.5554 0.2395 460 +462 3 -119.30551869725826 -1150.6278649602464 51.0303 0.2392 461 +463 3 -120.42954754644143 -1150.6473581950725 51.5248 0.239 462 +464 3 -121.51885065232591 -1150.8871933749574 51.9714 0.2387 463 +465 3 -122.49895354782598 -1151.4358765660909 52.3681 0.2385 464 +466 3 -123.45118926608569 -1152.0386806444367 52.7713 0.2382 465 +467 3 -124.51649341651768 -1152.376567189112 53.1647 0.238 466 +468 3 -125.6007844564989 -1152.6791721801756 53.5044 0.2377 467 +469 3 -126.57312318356787 -1153.2513716994358 53.8101 0.2375 468 +470 3 -127.16615412673974 -1154.1435187223196 54.171 0.2372 469 +471 3 -127.89868008381313 -1154.6798233206719 54.7095 0.2369 470 +472 3 -129.0113756855344 -1154.6237999513507 55.3028 0.2366 471 +473 3 -130.00959591548354 -1154.175201430934 55.8774 0.2364 472 +474 3 -131.08747476865312 -1154.0360348476966 56.3545 0.2361 473 +475 3 -132.1863536978031 -1153.8145806784646 56.7308 0.2359 474 +476 3 -133.29954113690297 -1153.6070863281075 57.0704 0.2356 475 +477 3 -134.4117623150634 -1153.7617045380678 57.3516 0.2354 476 +478 3 -135.5235594348773 -1154.008675496631 57.612 0.2351 477 +479 3 -136.65103003845508 -1154.147078126909 57.9043 0.2349 478 +480 3 -137.75836509027528 -1154.3927149380966 58.2291 0.2346 479 +481 3 -138.8026551365806 -1154.8237968551234 58.6152 0.2344 480 +482 3 -139.81422442225386 -1155.3233886387657 59.0668 0.2341 481 +483 3 -140.87372624884648 -1155.7033697559896 59.5482 0.2339 482 +484 3 -141.95819318515686 -1156.0167645135234 60.0001 0.2336 483 +485 3 -143.01875566361377 -1156.4081966140072 60.4072 0.2334 484 +486 3 -144.03080957721107 -1156.9201765022572 60.7513 0.2331 485 +487 3 -145.00760727069064 -1157.500398964777 61.0784 0.2329 486 +488 3 -145.97495175412217 -1158.0937090863617 61.4281 0.2326 487 +489 3 -146.99254000667696 -1158.5901924881614 61.8097 0.2324 488 +490 3 -148.01818713111163 -1159.0756656863289 62.1732 0.2321 489 +491 3 -149.04883400981345 -1159.5507133170167 62.5237 0.2318 490 +492 3 -150.05224210102767 -1160.0788595207198 62.876 0.2316 491 +493 3 -151.1190056458616 -1160.4645954140633 63.2114 0.2313 492 +494 3 -152.23979225396323 -1160.4217620263853 63.5824 0.2311 493 +495 3 -153.3525686388893 -1160.2302135543187 64.0133 0.2308 494 +496 3 -154.46982450562678 -1160.0991698278735 64.5308 0.2306 495 +497 3 -155.56538242877406 -1160.2850983545422 65.1445 0.2303 496 +498 3 -156.668162015986 -1160.424522606481 65.802 0.2301 497 +499 3 -157.78751697222617 -1160.4384431646831 66.3762 0.2298 498 +500 3 -158.88180650874625 -1160.235531311253 66.988 0.2295 499 +501 3 -159.96676117456383 -1160.5546253775105 67.3996 0.2293 500 +502 3 -160.9440996559 -1161.1163993292912 67.8706 0.2291 501 +503 3 -94.84744881521902 -1138.994180798929 32.8031 0.2469 433 +504 3 -95.73050163016774 -1138.271957962118 33.0084 0.2466 503 +505 3 -96.65901789084631 -1137.6220502350866 33.1682 0.2464 504 +506 3 -97.62783046417485 -1137.0225005976413 33.308 0.2462 505 +507 3 -98.2919555721084 -1136.149627473406 33.4765 0.246 506 +508 3 -98.81093298783742 -1135.1391749995296 33.6694 0.2458 507 +509 3 -99.54027817358514 -1134.27152886773 33.8486 0.2457 508 +510 3 -100.45413575346907 -1133.601929186063 34.0208 0.2455 509 +511 3 -101.45938054321618 -1133.067617448698 34.2818 0.2453 510 +512 3 -102.3985780446198 -1132.4484556335337 34.6948 0.2451 511 +513 3 -103.22319166619121 -1131.6836210533015 35.1809 0.2449 512 +514 3 -104.0921347919666 -1131.0280837971768 35.9716 0.2446 513 +515 3 -105.01342387795097 -1130.4139953100303 36.6691 0.2444 514 +516 3 -106.07287684305504 -1130.0513958137094 37.2392 0.2442 515 +517 3 -107.15905314128406 -1129.741375718932 37.6832 0.244 516 +518 3 -108.03843724775811 -1129.0318051774912 38.1077 0.2438 517 +519 3 -108.80225590691566 -1128.2041299054654 38.551 0.2436 518 +520 3 -109.9013401737601 -1127.9235246767635 38.9138 0.2434 519 +521 3 -110.99532477280508 -1127.6882630626983 39.2498 0.2432 520 +522 3 -111.26679743878441 -1126.7418912321655 39.7085 0.243 521 +523 3 -110.40310782320552 -1126.049840093924 40.4026 0.2428 522 +524 3 -109.71339351362968 -1125.1948686902115 41.0334 0.2426 523 +525 3 -109.3677708220099 -1124.1404514079948 41.4666 0.2424 524 +526 3 -109.09090236490317 -1123.0463637938342 41.7718 0.2422 525 +527 3 -108.63295124050728 -1122.002250549179 41.9966 0.242 526 +528 3 -108.23088643618559 -1120.941311157354 42.2428 0.2418 527 +529 3 -108.33390070361668 -1119.8672119297657 42.6479 0.2416 528 +530 3 -109.21178848078034 -1119.2668247707538 43.1508 0.2414 529 +531 3 -110.11311591073769 -1118.6525565931584 43.9048 0.2411 530 +532 3 -110.28399424121335 -1117.553029842154 44.5536 0.2409 531 +533 3 -110.57933441245274 -1116.4696728219376 45.0825 0.2407 532 +534 3 -110.99202328613603 -1115.4180679990418 45.5342 0.2405 533 +535 3 -111.503016096272 -1114.4228970850832 46.0911 0.2404 534 +536 3 -112.21083342235545 -1113.579580179705 46.767 0.2401 535 +537 3 -113.15643460503225 -1113.004616134464 47.4779 0.2399 536 +538 3 -114.11041431774697 -1112.4160212332554 48.0362 0.2397 537 +539 3 -114.97669604447401 -1111.7319678947365 48.5988 0.2395 538 +540 3 -115.5194978273883 -1110.7549405540417 49.1148 0.2393 539 +541 3 -115.80718235594168 -1109.6641780537552 49.4203 0.2391 540 +542 3 -115.6195373417467 -1108.6128435357982 49.6048 0.239 541 +543 3 -115.03806349853357 -1107.6713402221244 49.7325 0.2388 542 +544 3 -114.8967348648547 -1106.5423629781985 49.8705 0.2386 543 +545 3 -114.82213394364811 -1105.407566594456 50.104 0.2384 544 +546 3 -114.78656537579445 -1104.2858459665895 50.4431 0.2382 545 +547 3 -115.1018696121073 -1103.220042467551 50.9698 0.2379 546 +548 3 -115.60719594055666 -1102.225496841762 51.5886 0.2377 547 +549 3 -116.11489826935485 -1101.2268947862199 52.15 0.2376 548 +550 3 -116.49283165660052 -1100.1728249760058 52.6579 0.2374 549 +551 3 -116.90355799315552 -1099.126704535301 53.132 0.2372 550 +552 3 -117.35735125969063 -1098.104473831767 53.7079 0.237 551 +553 3 -117.83644370103224 -1097.1044845705 54.3864 0.2367 552 +554 3 -118.0780233899302 -1096.018836144944 54.959 0.2365 553 +555 3 -118.28221591879606 -1094.9090330042227 55.4084 0.2364 554 +556 3 -118.75602320717093 -1093.886896798288 55.7696 0.2362 555 +557 3 -119.33561727993822 -1092.9111214190057 56.1162 0.236 556 +558 3 -119.92795745313788 -1091.9430633529716 56.4802 0.2358 557 +559 3 -120.52220469607016 -1090.9762948934804 56.8198 0.2356 558 +560 3 -121.11708032875526 -1090.0085041197913 57.1687 0.2354 559 +561 3 -121.94471403773616 -1089.256324936512 57.633 0.2352 560 +562 3 -123.00999155859029 -1088.945549127346 58.168 0.235 561 +563 3 -123.89828508036908 -1088.2736172936266 58.6572 0.2348 562 +564 3 -124.96271997747462 -1087.9422514386806 59.1394 0.2346 563 +565 3 -125.93938090579564 -1087.4697193327966 59.9085 0.2344 564 +566 3 -126.45999120320937 -1086.5005321433296 60.6066 0.2342 565 +567 3 -127.36515300394407 -1085.864557800694 61.278 0.234 566 +568 3 -128.41608298464504 -1085.5530622057593 62.0763 0.2338 567 +569 3 -129.32173933357856 -1085.0757384711342 63.0882 0.2336 568 +570 3 -129.9704031911454 -1084.2148423973329 64.0105 0.2333 569 +571 3 -130.71166926739454 -1083.3934941312473 64.7116 0.2332 570 +572 3 -131.40630823093412 -1082.5299866151636 65.2848 0.233 571 +573 3 -131.64176283625196 -1081.4957422103757 65.7586 0.2328 572 +574 3 -131.24187170147135 -1080.4576195922214 66.2402 0.2326 573 +575 3 -130.69662574327066 -1079.490023744222 66.8976 0.2323 574 +576 3 -130.23208134456303 -1078.4913924600987 67.6441 0.2321 575 +577 3 -129.7380275821811 -1077.525683166431 68.523 0.2319 576 +578 3 -129.23474956442968 -1076.5597034788352 69.3767 0.2317 577 +579 3 -129.22153986088938 -1075.462525287413 70.0322 0.2315 578 +580 3 -129.39691067734933 -1074.3470964117178 70.4757 0.2313 579 +581 3 -129.2810609089258 -1073.2203989540317 70.7577 0.2311 580 +582 3 -129.03427163626725 -1072.1058298198368 70.943 0.2309 581 +583 3 -128.9624406398542 -1070.9686277102915 71.1158 0.2307 582 +584 3 -128.76238459660397 -1069.847922187168 71.3686 0.2306 583 +585 3 -128.27244721802734 -1068.8230008560047 71.654 0.2304 584 +586 3 -127.63724571951002 -1067.879343695654 71.9132 0.2302 585 +587 3 -126.91502288269913 -1066.9962908807051 72.142 0.23 586 +588 3 -126.08067284293531 -1066.2215613336075 72.3834 0.2298 587 +589 3 -125.33349100487683 -1065.3661282264184 72.7124 0.2296 588 +590 3 -124.85184386190514 -1064.334212469359 72.9686 0.2294 589 +591 3 -124.16018242842003 -1063.4256924082545 73.1598 0.2292 590 +592 3 -123.53661711424127 -1062.4716979748573 73.3986 0.229 591 +593 3 -84.42425547080092 -1154.1840824432743 20.2958 0.5042 1 +594 3 -83.8868193399694 -1154.9709644454047 18.9909 0.2482 593 +595 3 -83.8307419231312 -1155.9383397672527 17.7524 0.2403 594 +596 3 -84.55897400221255 -1155.668885988291 15.7058 0.2345 595 +597 3 -81.26195302916415 -1150.3039852489221 29.8015 0.6022 1 +598 3 -80.2013754392616 -1150.2643339463389 30.844 0.5362 597 +599 3 -79.15259930523746 -1150.5221018859697 31.7638 0.5208 598 +600 3 -78.23105764759066 -1151.1037554196314 32.5987 0.5056 599 +601 3 -77.44965161624492 -1151.8857581141133 33.3046 0.4905 600 +602 3 -76.7380030209672 -1152.744092388647 33.9251 0.4753 601 +603 3 -75.93031073670113 -1153.5207366405002 34.4882 0.46 602 +604 3 -74.93448081933542 -1154.0311381252936 35.03 0.4445 603 +605 3 -73.84224211437657 -1154.2219291664615 35.6821 0.4279 604 +606 3 -72.7278116221434 -1154.127812600539 36.2614 0.4124 605 +607 3 -71.61264353956068 -1154.305683361455 36.7002 0.3972 606 +608 3 -70.50603877964636 -1154.5614764523211 37.037 0.382 607 +609 3 -69.36627587712161 -1154.5458106925696 37.2982 0.3668 608 +610 3 -68.22615979686543 -1154.556690653104 37.508 0.3657 609 +611 3 -66.80404947668319 -1154.065217920156 37.4548 0.3433 610 +612 3 -65.72712696417841 -1153.6960094396732 37.6869 0.3379 611 +613 3 -64.62109002443935 -1153.8460393631312 38.0038 0.333 612 +614 3 -63.91812558921134 -1154.6990299157192 38.4412 0.328 613 +615 3 -63.57381754099714 -1155.7617955050825 39.0029 0.323 614 +616 3 -62.874321892482556 -1156.646380796453 39.4685 0.3183 615 +617 3 -62.018709787381056 -1157.3894616639254 39.858 0.3136 616 +618 3 -61.153961721342796 -1158.1256357073985 40.1876 0.3089 617 +619 3 -60.42778707972991 -1157.6336140718186 38.269 0.2368 618 +620 3 -59.42358562899659 -1157.0914814253706 38.078 0.2368 619 +621 3 -58.48213796069706 -1156.4470649933537 37.9873 0.2368 620 +622 3 -57.64453577726215 -1155.6797268981795 37.9562 0.2368 621 +623 3 -56.60189712744369 -1155.2241884300952 37.8686 0.2368 622 +624 3 -55.483974231513116 -1155.052684118913 37.518 0.2368 623 +625 3 -54.405842504907355 -1154.866667990348 36.7732 0.2368 624 +626 3 -53.38347044859131 -1154.4436589733473 36.0954 0.2368 625 +627 3 -52.3390390495037 -1154.043361305855 35.551 0.2368 626 +628 3 -51.245634973033134 -1153.803705123882 35.0098 0.2368 627 +629 3 -50.23483943679912 -1154.1438612555762 34.4327 0.2368 628 +630 3 -49.2276851682729 -1154.65950955567 34.0421 0.2368 629 +631 3 -48.20601838982731 -1155.1594293130515 33.7448 0.2368 630 +632 3 -47.154285431106246 -1155.603423720156 33.5566 0.2368 631 +633 3 -46.05662222099704 -1155.921055704019 33.509 0.2368 632 +634 3 -44.96197909829738 -1156.2513430848348 33.4939 0.2368 633 +635 3 -43.89970796814339 -1156.6752437878793 33.4216 0.2368 634 +636 3 -42.7768992476461 -1156.8875058362419 33.3416 0.2368 635 +637 3 -41.674471441114406 -1157.1888277428234 33.262 0.2368 636 +638 3 -40.74025277012913 -1157.8459119952465 33.1635 0.2368 637 +639 3 -39.636777226916706 -1158.668934191504 33.3124 0.2367 638 +640 3 -38.565579960176876 -1158.971962961968 33.4331 0.2366 639 +641 3 -37.43708704240146 -1158.8329319419372 33.6053 0.2366 640 +642 3 -36.29731182824065 -1158.8696104258847 33.8246 0.2365 641 +643 3 -35.19809001471174 -1158.731081856044 34.0749 0.2365 642 +644 3 -34.168109863429436 -1158.2658345046657 34.3644 0.2364 643 +645 3 -33.06272393611698 -1158.191949988699 34.676 0.2364 644 +646 3 -31.97072169706479 -1158.4982716495474 34.9888 0.2363 645 +647 3 -30.977686014013216 -1159.0279977884024 35.2344 0.2363 646 +648 3 -30.038614452172567 -1159.6754083936153 35.362 0.2362 647 +649 3 -29.020191299881674 -1160.189529520275 35.3856 0.2362 648 +650 3 -27.992103017897023 -1160.686910716588 35.322 0.2361 649 +651 3 -26.930835071612933 -1161.0108327537976 35.0759 0.236 650 +652 3 -25.821134241492246 -1161.208262634083 34.6472 0.236 651 +653 3 -24.792308759920957 -1161.6608207723039 34.2658 0.2359 652 +654 3 -23.904003619042612 -1162.3610342231093 33.9766 0.2359 653 +655 3 -23.037921405628822 -1163.1016703345758 33.7711 0.2358 654 +656 3 -22.0428348910159 -1163.6435172856936 33.6417 0.2358 655 +657 3 -20.981533709246776 -1164.0681315713405 33.5796 0.2357 656 +658 3 -19.89521846728212 -1164.4263097463809 33.5563 0.2357 657 +659 3 -18.95740747906683 -1165.0409243007011 33.5443 0.2356 658 +660 3 -18.12263488982461 -1165.8222862937941 33.5068 0.2356 659 +661 3 -17.146158754134035 -1166.3863715855955 33.4527 0.2355 660 +662 3 -16.095326988140584 -1166.8374932538618 33.4222 0.2355 661 +663 3 -14.986812749447154 -1167.0746229074562 33.4331 0.2354 662 +664 3 -13.850178460077188 -1167.0406907364606 33.5409 0.2353 663 +665 3 -12.821189393812915 -1167.4301148645122 33.745 0.2353 664 +666 3 -11.740535122905271 -1167.776982716538 33.9293 0.2352 665 +667 3 -10.607777259087868 -1167.891807069181 34.0654 0.2352 666 +668 3 -9.511227759192138 -1168.1967422168414 34.1362 0.2351 667 +669 3 -8.380073744142067 -1168.3219428727339 34.1541 0.2351 668 +670 3 -7.243595528236995 -1168.2222560392338 34.2297 0.235 669 +671 3 -6.210580781646797 -1168.6816296054385 34.3496 0.235 670 +672 3 -5.258903779619345 -1169.3146012744821 34.41 0.2349 671 +673 3 -4.446128957282781 -1170.1189925587312 34.4238 0.2349 672 +674 3 -3.507145689875017 -1170.7597667338728 34.4448 0.2348 673 +675 3 -2.372427697975752 -1170.8974492994357 34.4722 0.2347 674 +676 3 -1.2926581826031338 -1171.2449783682514 34.5472 0.2347 675 +677 3 -0.42800082004424667 -1171.9918898123817 34.655 0.2346 676 +678 3 0.38859055080399685 -1172.7763280528163 34.7679 0.2346 677 +679 3 1.4537951904444526 -1173.139500471494 34.8835 0.2345 678 +680 3 2.558418584676417 -1173.1976684774393 34.9952 0.2345 679 +681 3 3.4160808288026487 -1173.9288075305612 35.1235 0.2344 680 +682 3 4.222054630086404 -1174.6459396255373 35.2904 0.2344 681 +683 3 5.300258634358386 -1174.9930224040954 35.532 0.2343 682 +684 3 6.198387671530497 -1175.6481095758431 35.7798 0.2343 683 +685 3 7.087890016647293 -1176.18642337655 36.0234 0.2342 684 +686 3 8.110266269824137 -1176.5301427925572 36.2746 0.2342 685 +687 3 8.872392785781472 -1177.361557937761 36.5019 0.2341 686 +688 3 9.66782049595622 -1178.1268426023703 36.7178 0.234 687 +689 3 10.689181644389976 -1178.635049493774 36.9074 0.234 688 +690 3 11.579304868031443 -1179.3032742813523 37.0583 0.2339 689 +691 3 12.26482569290016 -1180.2153478302898 37.1907 0.2339 690 +692 3 13.030424789690642 -1181.0459196592087 37.3411 0.2338 691 +693 3 13.982853711987389 -1181.6690386831299 37.48 0.2338 692 +694 3 14.876320475315936 -1182.3579801485876 37.6149 0.2337 693 +695 3 15.622854290714088 -1183.2163520682514 37.8683 0.2337 694 +696 3 16.283433936600716 -1184.1424651182838 38.1646 0.2336 695 +697 3 16.99990638981643 -1185.0220147267669 38.4611 0.2336 696 +698 3 17.76136617835425 -1185.8632301512807 38.8161 0.2335 697 +699 3 18.54242583297497 -1186.6817164040203 39.2241 0.2334 698 +700 3 19.581319187974657 -1186.8447289708286 39.6396 0.2334 699 +701 3 20.657783501326833 -1187.1607187682575 39.998 0.2333 700 +702 3 21.40841828731095 -1188.0192696858335 40.222 0.2333 701 +703 3 22.10307507311626 -1188.9244364107712 40.4135 0.2332 702 +704 3 22.748728745863275 -1189.8677059559536 40.5017 0.2332 703 +705 3 23.522309346663803 -1190.7068705489062 40.5104 0.2331 704 +706 3 24.567979490206994 -1191.16926420252 40.493 0.2331 705 +707 3 25.638399503183564 -1191.569375081926 40.4874 0.233 706 +708 3 26.638391967001155 -1192.1256962052967 40.5065 0.233 707 +709 3 27.66901260688803 -1192.6161213133803 40.5028 0.2329 708 +710 3 28.57731774146015 -1193.30533248023 40.458 0.2329 709 +711 3 29.620273427605696 -1193.7720943967747 40.3105 0.2328 710 +712 3 30.56641229655594 -1194.3588181568712 40.1209 0.2327 711 +713 3 31.080533719846585 -1195.3722554820736 39.8275 0.2327 712 +714 3 31.78429151459369 -1196.2112595919161 39.5153 0.2326 713 +715 3 32.86864973005959 -1196.5532683499205 39.2165 0.2326 714 +716 3 33.883627020084475 -1197.0291285822723 39.0085 0.2325 715 +717 3 34.63733736087386 -1197.8817980916292 38.8822 0.2325 716 +718 3 35.28090186439283 -1198.823769418056 38.8203 0.2324 717 +719 3 36.13997423869142 -1199.5136627255442 38.8111 0.2324 718 +720 3 37.224315324428176 -1199.8380749013072 38.8354 0.2323 719 +721 3 38.17073930798932 -1200.4689933297432 38.9018 0.2323 720 +722 3 38.97330348937885 -1201.280834634895 39.0046 0.2322 721 +723 3 39.756592973473175 -1202.1073407293115 39.0793 0.2322 722 +724 3 40.68622294436523 -1202.7699452925458 39.1269 0.2321 723 +725 3 41.50129195987256 -1203.508366987758 39.144 0.232 724 +726 3 42.09661698439817 -1204.4812810462304 39.1308 0.232 725 +727 3 42.91284966688522 -1205.2498586012243 39.0886 0.2319 726 +728 3 43.86163011201961 -1205.8846107079007 39.0205 0.2319 727 +729 3 44.654179087567 -1206.6933350189977 38.9127 0.2318 728 +730 3 45.379960989002086 -1207.5725618677398 38.7562 0.2318 729 +731 3 46.176881329063804 -1208.3906894321185 38.5792 0.2317 730 +732 3 47.05454356688381 -1209.1108262012845 38.3849 0.2317 731 +733 3 48.04223622052638 -1209.6732991268022 38.1262 0.2316 732 +734 3 48.74455995436546 -1210.4729231214937 37.8053 0.2316 733 +735 3 49.23899011555727 -1211.4957643925147 37.5105 0.2315 734 +736 3 50.00476821026007 -1212.3222352508474 37.3425 0.2314 735 +737 3 51.05745570414672 -1212.7064830357658 37.2291 0.2314 736 +738 3 52.17476493100719 -1212.5689268233564 37.0339 0.2313 737 +739 3 53.22818852920278 -1212.148311913059 36.7494 0.2313 738 +740 3 54.3399127678029 -1211.953737564007 36.377 0.2312 739 +741 3 55.443262282463024 -1212.1954504070654 35.994 0.2312 740 +742 3 56.56630816140364 -1212.3162444623604 35.5622 0.2311 741 +743 3 57.693675448092336 -1212.428982747358 35.1627 0.2311 742 +744 3 58.83019610953545 -1212.475643610111 34.8768 0.231 743 +745 3 59.941543837508675 -1212.223549366764 34.6433 0.231 744 +746 3 61.07298396148002 -1212.124259559292 34.3969 0.2309 745 +747 3 62.15854659063882 -1212.4682277528416 34.2073 0.2309 746 +748 3 63.144550202664334 -1213.041129347422 34.111 0.2308 747 +749 3 64.24305913810525 -1213.344860081389 34.1309 0.2307 748 +750 3 65.38611011292124 -1213.3431370107833 34.2107 0.2307 749 +751 3 66.4798342383126 -1213.422911866076 34.3291 0.2306 750 +752 3 67.13122796649634 -1214.3384727165294 34.5162 0.2306 751 +753 3 67.66569465922117 -1215.1795317658048 34.6707 0.2305 752 +754 3 68.7813676010403 -1215.369299800238 34.813 0.2305 753 +755 3 69.76972939114881 -1215.9045986157173 34.9434 0.2304 754 +756 3 70.65393425397775 -1216.6286956952238 35.0311 0.2304 755 +757 3 71.65985397490908 -1217.0483811072186 35.0378 0.2303 756 +758 3 72.7488490417353 -1216.8342068920842 34.9765 0.2302 757 +759 3 73.80656461829159 -1216.7547620111295 34.9474 0.2302 758 +760 3 74.71738669754683 -1217.3779840501666 34.9037 0.2301 759 +761 3 75.39537851182911 -1218.2932769157378 34.823 0.2301 760 +762 3 76.12133941117645 -1219.168402793894 34.7427 0.23 761 +763 3 77.12979389905661 -1219.5637582869308 34.6662 0.23 762 +764 3 78.26714046296729 -1219.6730623287622 34.5836 0.2299 763 +765 3 79.40714291529667 -1219.7645353230446 34.4862 0.2299 764 +766 3 80.54413520049121 -1219.7224012108773 34.3543 0.2298 765 +767 3 81.63218843455087 -1219.9371282465581 34.1214 0.2298 766 +768 3 82.56969689433743 -1220.566718730785 33.8618 0.2297 767 +769 3 83.63253104425871 -1220.9151496848647 33.6297 0.2297 768 +770 3 84.765377202509 -1221.036610467579 33.4158 0.2296 769 +771 3 85.8667296364938 -1221.3144129444504 33.1884 0.2295 770 +772 3 86.96346123588478 -1221.6219359174088 32.9386 0.2295 771 +773 3 88.09136069821722 -1221.7571189521063 32.6763 0.2294 772 +774 3 89.18115084107228 -1221.4875218368848 32.3607 0.2294 773 +775 3 90.14617479155083 -1220.8969292742809 32.02 0.2293 774 +776 3 91.10184406044061 -1220.280041846544 31.7234 0.2293 775 +777 3 92.18430160443933 -1219.9503924791247 31.4493 0.2292 776 +778 3 93.31729251882854 -1219.81657854894 31.2749 0.2292 777 +779 3 94.34775729803499 -1219.338943092954 31.1564 0.2291 778 +780 3 95.21214818458026 -1218.5955176593984 31.0321 0.2291 779 +781 3 95.99034632843478 -1217.7599900483037 30.8932 0.229 780 +782 3 96.72116813244543 -1216.882333321113 30.7597 0.229 781 +783 3 97.5510201755954 -1216.1023866841695 30.508 0.2289 782 +784 3 98.1543948790686 -1215.1352138882285 30.2893 0.2289 783 +785 3 -40.739326261592566 -1157.9675358480958 31.6593 0.2368 638 +786 3 -41.234485619412624 -1158.2061641162522 29.2944 0.2364 785 +787 3 -40.25212957922861 -1157.9124555186356 28.3746 0.2362 786 +788 3 -39.22293859060454 -1158.2279230430104 27.6228 0.236 787 +789 3 -38.43067162808495 -1158.9991414816518 26.9253 0.2358 788 +790 3 -37.684242212875745 -1159.7677813050477 26.2497 0.2356 789 +791 3 -36.64294513267174 -1160.046227584891 25.4225 0.2353 790 +792 3 -36.55735776629689 -1160.67700995839 24.3898 0.2351 791 +793 3 -37.141470776647566 -1161.5531110947545 23.5294 0.2349 792 +794 3 -37.00552252087675 -1162.5236263351053 22.6863 0.2347 793 +795 3 -36.14435726024169 -1163.055177766178 21.6309 0.2344 794 +796 3 -35.78415609031248 -1163.800636723587 20.2709 0.2342 795 +797 3 -34.726573964547185 -1163.8783293053548 19.2666 0.234 796 +798 3 -33.76299598387169 -1163.9319893944116 18.0869 0.2337 797 +799 3 -32.9206953903315 -1164.5596505769945 16.9849 0.2335 798 +800 3 -32.24502039189366 -1165.3180209063762 15.9736 0.2333 799 +801 3 -31.958467395819582 -1166.3544273616053 15.0419 0.2331 800 +802 3 -31.795844064865264 -1167.4294482973219 14.1767 0.2329 801 +803 3 -31.490304871778505 -1168.47707367955 13.4571 0.2327 802 +804 3 -30.912723292905923 -1169.4299056530622 12.8955 0.2325 803 +805 3 -30.22635674270549 -1170.3280779521037 12.4755 0.2323 804 +806 3 -29.73291676121073 -1171.327347427602 12.1648 0.2321 805 +807 3 -29.35101454610816 -1172.396467434009 11.9226 0.2319 806 +808 3 -28.50633525908387 -1172.9340440351295 11.6178 0.2317 807 +809 3 -27.373733468731302 -1172.9831137252681 11.2795 0.2315 808 +810 3 -26.88667904447044 -1173.7754924212259 10.8637 0.2312 809 +811 3 -26.20766560852718 -1174.6660942704314 10.4725 0.231 810 +812 3 -25.551815322979337 -1175.5910060083538 10.102 0.2308 811 +813 3 -24.65946467891081 -1176.2846244683378 9.7274 0.2306 812 +814 3 -23.57587930756307 -1176.5881378667261 9.2956 0.2304 813 +815 3 -22.50577964528088 -1176.9615654671838 8.9075 0.2302 814 +816 3 -21.478091490907104 -1177.447219775679 8.6032 0.23 815 +817 3 -20.516399975574245 -1178.0592458121648 8.3656 0.2298 816 +818 3 -19.58040396853886 -1178.7125378255969 8.1845 0.2296 817 +819 3 -18.508688838389958 -1179.1038707398907 8.0487 0.2294 818 +820 3 -17.44480293290576 -1179.521614130158 7.9156 0.2292 819 +821 3 -16.33406917577628 -1179.5962157439012 7.2918 0.229 820 +822 3 -60.58624077857303 -1158.2802359051361 40.404 0.3089 618 +823 3 -59.488821936361546 -1158.5254767964234 40.9116 0.2749 822 +824 3 -58.36459426640181 -1158.4253381620365 41.3686 0.2574 823 +825 3 -57.60197371166106 -1157.9685481233023 41.9401 0.2574 824 +826 3 -57.027973523455444 -1158.9680687853897 42.5382 0.2574 825 +827 3 -56.707192824627384 -1160.0599686128737 42.7106 0.2574 826 +828 3 -56.389211776046864 -1161.1562890691016 42.8663 0.2574 827 +829 3 -55.88947933215911 -1162.1745799776959 43.1861 0.2574 828 +830 3 -55.93480363848971 -1163.2981888764039 43.596 0.2574 829 +831 3 -55.59085909672973 -1164.3798414417843 43.9446 0.2574 830 +832 3 -55.53755440449447 -1165.0453744836277 44.5105 0.2574 831 +833 3 -55.570778822411114 -1166.118584546036 45.4588 0.2572 832 +834 3 -56.075041509230175 -1167.0503074032645 46.1339 0.2569 833 +835 3 -57.05578820770228 -1167.538935240617 46.7606 0.2567 834 +836 3 -57.391576076465356 -1168.5524452342488 47.5154 0.2565 835 +837 3 -57.687839375712144 -1169.6019942123912 48.3123 0.2563 836 +838 3 -58.39648751648792 -1170.445831881955 49.0507 0.2561 837 +839 3 -59.22506226473138 -1171.1753413449323 49.7893 0.2559 838 +840 3 -59.95965338328568 -1171.9813651029822 50.5627 0.2557 839 +841 3 -60.335396698603404 -1173.0194346627875 51.2604 0.2555 840 +842 3 -60.48400177120618 -1174.1191962698626 51.9372 0.2553 841 +843 3 -60.64811194247193 -1175.2284884548558 52.4905 0.2552 842 +844 3 -60.754828851541845 -1176.341590292658 52.9516 0.255 843 +845 3 -60.43618417712497 -1177.421421673692 53.4321 0.2548 844 +846 3 -60.05575366806045 -1178.4860467850685 53.8437 0.2546 845 +847 3 -59.95773674585001 -1179.5323466144482 54.2055 0.2544 846 +848 3 -60.88476089119956 -1180.1303354470688 54.6314 0.2542 847 +849 3 -61.906693174176155 -1180.4119824939382 55.0413 0.2541 848 +850 3 -62.41151647171597 -1181.4018012694023 55.4764 0.2539 849 +851 3 -62.53918142239036 -1182.5222624246278 55.9443 0.2537 850 +852 3 -62.65346567971335 -1183.6494061725712 56.3427 0.2535 851 +853 3 -62.896077306452526 -1184.7425091176642 56.6829 0.2533 852 +854 3 -63.47316816605178 -1185.721697301706 56.9545 0.2531 853 +855 3 -64.0685784952442 -1186.6798662794395 57.1586 0.2529 854 +856 3 -64.33435396491535 -1187.7832164866363 57.29 0.2528 855 +857 3 -64.33454889060482 -1188.9233380775222 57.3658 0.2526 856 +858 3 -64.25428051622913 -1190.0610706638863 57.4143 0.2524 857 +859 3 -64.43696583033358 -1191.175089800172 57.454 0.2522 858 +860 3 -64.83635451492427 -1192.242483522573 57.4848 0.252 859 +861 3 -65.02326433013121 -1193.3671986202662 57.4893 0.2518 860 +862 3 -65.09362362050615 -1194.5088956248424 57.4683 0.2516 861 +863 3 -65.25153513444144 -1195.641257847705 57.4154 0.2515 862 +864 3 -65.46696103204243 -1196.76331154635 57.3185 0.2513 863 +865 3 -65.68175853989067 -1197.8863875591924 57.1802 0.2511 864 +866 3 -65.9298045920549 -1198.9989120649925 57.0074 0.2509 865 +867 3 -66.3193929973358 -1200.066972514813 56.7904 0.2507 866 +868 3 -66.7991745098247 -1201.1017324629524 56.5748 0.2505 867 +869 3 -67.17067240019105 -1202.1774540660886 56.4292 0.2503 868 +870 3 -67.33027054669685 -1203.302871127285 56.3508 0.2502 869 +871 3 -67.21574844353671 -1204.4329302486976 56.3184 0.25 870 +872 3 -66.86560283539978 -1205.5202790212184 56.3259 0.2498 871 +873 3 -66.26748977972619 -1206.460490833861 56.3623 0.2496 872 +874 3 -65.31287857567554 -1207.0567968451514 56.3926 0.2494 873 +875 3 -64.24490572775147 -1207.463811446974 56.3982 0.2492 874 +876 3 -63.240289327757125 -1207.9971008701418 56.3774 0.2491 875 +877 3 -62.4087719837691 -1208.7643826154263 56.3192 0.2489 876 +878 3 -61.93978545174912 -1209.7719922832957 56.222 0.2487 877 +879 3 -61.921047238775316 -1210.899184981717 56.1084 0.2485 878 +880 3 -62.14899097466679 -1212.0182514199896 55.998 0.2483 879 +881 3 -62.4025542360593 -1213.1328760215806 55.8922 0.2481 880 +882 3 -62.567945496351285 -1214.261853958043 55.7729 0.2479 881 +883 3 -62.546401429963794 -1215.398003619489 55.6438 0.2477 882 +884 3 -62.464567544487466 -1216.5361824961105 55.5285 0.2476 883 +885 3 -62.57957399662581 -1217.6663525346298 55.4347 0.2474 884 +886 3 -62.84097810178264 -1218.7791059951082 55.349 0.2472 885 +887 3 -63.00980050365814 -1219.9047934502332 55.2574 0.247 886 +888 3 -62.94659722841624 -1221.0409252894133 55.1737 0.2468 887 +889 3 -62.91827917329488 -1222.1770194834633 55.1065 0.2466 888 +890 3 -63.05769763565803 -1223.3113959167304 55.0292 0.2465 889 +891 3 -63.28247752231135 -1224.4312173768553 54.9248 0.2463 890 +892 3 -63.74368389196144 -1225.4612503737026 54.8338 0.2461 891 +893 3 -64.32704698264138 -1226.4457025027737 54.7865 0.2459 892 +894 3 -64.43703316511164 -1227.5338163064107 54.7753 0.2457 893 +895 3 -63.857095817202435 -1228.4664193315507 54.7694 0.2455 894 +896 3 -63.07037519152476 -1229.2962159073047 54.7114 0.2453 895 +897 3 -62.92397054183601 -1230.3797974725549 54.5992 0.2451 896 +898 3 -62.96773174611246 -1231.5212264922488 54.4891 0.2449 897 +899 3 -62.713804699319724 -1232.635555969965 54.3931 0.2447 898 +900 3 -62.857453865951584 -1233.7672507728719 54.3054 0.2445 899 +901 3 -62.93476924455592 -1234.9064154195455 54.2206 0.2443 900 +902 3 -62.67224633214647 -1236.0194521891358 54.1058 0.2442 901 +903 3 -62.33234729357673 -1237.1076997453379 53.996 0.244 902 +904 3 -62.32341176895909 -1238.2515995470685 53.9092 0.2438 903 +905 3 -62.26862225983871 -1239.3916119196724 53.8084 0.2436 904 +906 3 -61.992647489374065 -1240.5003711298114 53.7306 0.2434 905 +907 3 -61.845423140384014 -1241.6332182823717 53.7076 0.2432 906 +908 3 -61.5331414005272 -1242.7290510090922 53.7471 0.243 907 +909 3 -61.51208506364691 -1243.8708999792618 53.8975 0.2428 908 +910 3 -61.454763196624185 -1245.0039562636366 54.145 0.2427 909 +911 3 -61.123460023671214 -1246.0934965279644 54.3936 0.2425 910 +912 3 -60.73037411765364 -1247.16114172675 54.63 0.2423 911 +913 3 -60.20948963219206 -1248.170304594084 54.8738 0.2421 912 +914 3 -59.88834783595638 -1249.2606912762799 55.1821 0.2419 913 +915 3 -59.625913217979814 -1250.3670916157987 55.4828 0.2417 914 +916 3 -59.285796843831065 -1251.4404156079072 55.8373 0.2416 915 +917 3 -58.55126711118578 -1252.2269341212686 56.425 0.2414 916 +918 3 -57.741355308483605 -1252.8410503332707 57.0545 0.2412 917 +919 3 -57.35571081115626 -1253.894488652149 57.6064 0.241 918 +920 3 -56.90579807804505 -1254.9083055895617 58.2232 0.2408 919 +921 3 -56.25205168240791 -1255.7969486957584 58.9207 0.2406 920 +922 3 -55.50677293000547 -1256.611839529685 59.6434 0.2404 921 +923 3 -54.88184514519111 -1257.5127971667396 60.368 0.2402 922 +924 3 -54.67236023621905 -1258.5483318706065 61.1792 0.24 923 +925 3 -54.829834669949946 -1259.6334731345537 61.9562 0.2398 924 +926 3 -54.979376863900484 -1260.7338107655692 62.61 0.2396 925 +927 3 -54.858310419221425 -1261.8263937399802 63.2047 0.2395 926 +928 3 -54.330575962229034 -1262.7897933262907 63.7879 0.2393 927 +929 3 -53.70640250673051 -1263.7179774391966 64.3471 0.2391 928 +930 3 -53.18983701997041 -1264.7178222460984 64.8276 0.2389 929 +931 3 -52.54516801629086 -1265.6268349609131 65.3092 0.2387 930 +932 3 -51.683386695224215 -1266.3230450403148 65.9296 0.2385 931 +933 3 -50.79389186133557 -1266.9902475136955 66.5862 0.2383 932 +934 3 -49.90608606906403 -1267.6678786561388 67.1933 0.2381 933 +935 3 -49.07221295603938 -1268.4149314530514 67.7513 0.238 934 +936 3 -48.431065797422775 -1269.3313910871857 68.2514 0.2378 935 +937 3 -47.75588603972034 -1270.2243493979645 68.8064 0.2376 936 +938 3 -46.78398729877523 -1270.6958177504011 69.55 0.2374 937 +939 3 -45.79995853551429 -1271.210890719091 70.2117 0.2372 938 +940 3 -44.98399314537238 -1271.9769328145992 70.7868 0.237 939 +941 3 -43.98561684195829 -1272.4912859975207 71.3205 0.2368 940 +942 3 -44.530627340540605 -1273.1928697319636 72.1179 0.2366 941 +943 3 -44.898347712598536 -1274.2353982581794 72.5838 0.2363 942 +944 3 -44.343098972008875 -1275.1496058309294 73.0075 0.2361 943 +945 3 -43.59188885462129 -1275.98503124324 73.5272 0.236 944 +946 3 -43.081651066337656 -1276.9833660064369 74.0328 0.2358 945 +947 3 -42.61163911853697 -1277.9970360804377 74.6278 0.2356 946 +948 3 -42.05329940992266 -1278.9643952845518 75.2321 0.2354 947 +949 3 -41.615978088852216 -1280.0035589444906 75.7014 0.2352 948 +950 3 -41.320185424189276 -1281.0987280453746 76.0402 0.2351 949 +951 3 -40.89444412752499 -1282.158391047614 76.2308 0.2349 950 +952 3 -40.48701068135432 -1283.225316460631 76.3661 0.2347 951 +953 3 -40.06928922636678 -1284.287209292344 76.5237 0.2345 952 +954 3 -39.51512406208872 -1285.2827234814445 76.7617 0.2344 953 +955 3 -39.123509862109245 -1286.3458737851995 77.1134 0.2342 954 +956 3 -38.999188172175934 -1287.4525370074184 77.5356 0.234 955 +957 3 -39.491766434400006 -1288.4534926186143 78.1211 0.2338 956 +958 3 -39.681678923198774 -1289.5316925150146 78.6895 0.2337 957 +959 3 -39.215495143009264 -1290.537034015744 79.347 0.2335 958 +960 3 -38.82426976529291 -1291.4903201815046 80.4619 0.2333 959 +961 3 -38.67088300134435 -1292.5132672674508 81.6346 0.233 960 +962 3 -38.3446097165604 -1293.4983785117456 82.7492 0.2329 961 +963 3 -38.19775636756765 -1294.563020735166 83.5817 0.2327 962 +964 3 -38.09558162230218 -1295.6643988044184 84.2856 0.2325 963 +965 3 -37.75706978945726 -1296.7240364731636 84.8243 0.2323 964 +966 3 -37.277742190270885 -1297.7507613791918 85.1987 0.2322 965 +967 3 -36.633521885895505 -1298.678713435836 85.5201 0.232 966 +968 3 -36.34490403011404 -1299.738148489685 85.827 0.2318 967 +969 3 -36.44320648052593 -1300.8714324206762 86.0121 0.2316 968 +970 3 -36.39857834812295 -1302.0122912111487 86.1112 0.2314 969 +971 3 -36.76660675923921 -1303.0804807021152 86.1504 0.2313 970 +972 3 -37.141723401313925 -1304.1610090334598 86.1381 0.2311 971 +973 3 -37.375994835682036 -1305.2785654280274 86.018 0.2309 972 +974 3 -37.33163399562409 -1306.4168887590145 85.8724 0.2307 973 +975 3 -37.18543196083158 -1307.550364301328 85.7354 0.2306 974 +976 3 -36.7451226868522 -1308.601072749589 85.6061 0.2304 975 +977 3 -36.36307981150395 -1309.6769143789174 85.4493 0.2302 976 +978 3 -36.25564042867262 -1310.8086273058634 85.2006 0.23 977 +979 3 -36.24691983058756 -1311.950076840959 84.9993 0.2298 978 +980 3 -36.42376207413963 -1313.0779941255569 84.8484 0.2297 979 +981 3 -36.58764018914377 -1314.207333159427 84.6737 0.2295 980 +982 3 -36.79990223750656 -1315.3301418799242 84.5516 0.2293 981 +983 3 -36.47194191170399 -1316.4230280929855 84.5614 0.2291 982 +984 3 -35.87345303794012 -1317.3966971733107 84.698 0.229 983 +985 3 -43.13017762059218 -1272.6422872840994 72.3064 0.2366 941 +986 3 -42.04343560946069 -1272.7826966186963 72.8062 0.2362 985 +987 3 -40.98678279204131 -1272.439328793413 73.0556 0.236 986 +988 3 -40.012928510638005 -1271.8501165408313 73.3379 0.2357 987 +989 3 -39.06964734635602 -1271.2327444851703 73.7856 0.2355 988 +990 3 -38.043445015155896 -1271.0934379690298 74.5688 0.2352 989 +991 3 -37.14934096577315 -1271.7026383292377 75.3564 0.2349 990 +992 3 -36.4296732213553 -1272.5346801476844 76.1146 0.2347 991 +993 3 -35.446727040095766 -1272.8623746010207 77.1476 0.2344 992 +994 3 -34.39980872355267 -1272.6956619185798 78.1071 0.2342 993 +995 3 -33.44959391573667 -1273.0770463820904 79.0754 0.2339 994 +996 3 -32.9280759383405 -1273.9757167216771 80.218 0.2337 995 +997 3 -32.24837285053036 -1274.7866626584823 81.2812 0.2334 996 +998 3 -31.555132711815247 -1275.5932786700234 82.2954 0.2332 997 +999 3 -30.77480005241796 -1276.2335582969663 83.4868 0.2329 998 +1000 3 -29.825486721418144 -1276.698837202125 84.5522 0.2327 999 +1001 3 -28.935660231487134 -1277.2945857042778 85.4997 0.2325 1000 +1002 3 -28.107950539709464 -1278.0010570739296 86.3652 0.2322 1001 +1003 3 -27.37898255712537 -1278.7871206848206 87.2637 0.232 1002 +1004 3 -26.815534976946708 -1279.694997457511 88.2675 0.2318 1003 +1005 3 -26.257839071304375 -1280.6023013078443 89.2875 0.2315 1004 +1006 3 -25.69951477590928 -1281.5106274723753 90.3028 0.2313 1005 +1007 3 -25.15415220001563 -1282.4001580569056 91.4396 0.2311 1006 +1008 3 -24.800556633719225 -1283.263771387914 92.9802 0.2308 1007 +1009 3 -24.567380506579298 -1284.1302706630045 94.7142 0.2305 1008 +1010 3 -23.923115045845634 -1284.8944488268546 96.0411 0.2302 1009 +1011 3 -23.090961108340025 -1285.5579268402762 97.0589 0.23 1010 +1012 3 -22.414103928120085 -1286.4121748649065 97.8673 0.2298 1011 +1013 3 -21.533654351688767 -1287.0755467616295 98.5424 0.2295 1012 +1014 3 -20.759842594804923 -1286.4883932426005 99.3118 0.2293 1013 +1015 3 -20.042472950623107 -1285.9077618331794 100.9646 0.229 1014 +1016 3 -55.30440479511532 -1164.629505442166 44.3302 0.2572 831 +1017 3 -54.43422471269855 -1165.3636317556607 44.602 0.2566 1016 +1018 3 -53.620797191088684 -1166.1473149742428 44.7874 0.2562 1017 +1019 3 -53.11225154600527 -1167.149389610618 44.9064 0.2559 1018 +1020 3 -52.740111272545676 -1168.2070202960983 45.0052 0.2555 1019 +1021 3 -51.898478098961505 -1168.820419131378 45.1248 0.2551 1020 +1022 3 -50.766078230968674 -1168.9434454251932 45.2413 0.2548 1021 +1023 3 -49.89407255456064 -1169.5166944027867 45.3348 0.2544 1022 +1024 3 -49.423431524470516 -1170.555449417598 45.3488 0.254 1023 +1025 3 -48.94027885925607 -1171.5838141010136 45.2861 0.2537 1024 +1026 3 -48.1709405818238 -1172.3920154465195 45.1752 0.2533 1025 +1027 3 -47.18457587239055 -1172.963403895812 44.9982 0.253 1026 +1028 3 -46.25566568726731 -1173.611660918893 44.7804 0.2526 1027 +1029 3 -45.44966485366473 -1174.4161076705382 44.5729 0.2522 1028 +1030 3 -44.7766587655035 -1175.3318827549874 44.3864 0.2519 1029 +1031 3 -44.381396088361726 -1176.3833999759868 44.1543 0.2515 1030 +1032 3 -44.27284058627043 -1177.5104359084066 43.857 0.2511 1031 +1033 3 -44.26077714103474 -1178.6485394947683 43.5736 0.2508 1032 +1034 3 -44.36067792958431 -1179.7815146941648 43.3415 0.2504 1033 +1035 3 -44.683394860564306 -1180.8688047026071 43.1598 0.2501 1034 +1036 3 -44.97099761674531 -1181.9694904091725 43.0248 0.2497 1035 +1037 3 -44.75986372033276 -1183.046855494826 42.9318 0.2494 1036 +1038 3 -44.297060432423905 -1184.0904281644093 42.8056 0.249 1037 +1039 3 -43.558365051743806 -1184.9295551122318 42.5569 0.2486 1038 +1040 3 -43.08033326226632 -1185.9409953567588 42.5074 0.2482 1039 +1041 3 -42.900141689451516 -1187.0709507705192 42.5379 0.2478 1040 +1042 3 -42.98850320030812 -1188.2116230518513 42.5342 0.2475 1041 +1043 3 -42.95861653250307 -1189.3548523320428 42.5407 0.2471 1042 +1044 3 -42.25264942368324 -1190.2543580859235 42.5701 0.2471 1043 +1045 3 -41.36181123236588 -1190.9716780751128 42.5499 0.2471 1044 +1046 3 -40.3771355645498 -1191.5534951934678 42.534 0.2471 1045 +1047 3 -39.487628419024986 -1192.2730419105478 42.5228 0.2471 1046 +1048 3 -38.855062405342494 -1193.2257646657781 42.5079 0.2471 1047 +1049 3 -38.149456393930336 -1194.126783564947 42.4872 0.2471 1048 +1050 3 -37.27825089573287 -1194.8669702845727 42.4578 0.2471 1049 +1051 3 -36.28266503251331 -1195.4313995440525 42.4175 0.2471 1050 +1052 3 -35.69725322268749 -1196.5083025354666 42.2901 0.2471 1051 +1053 3 -35.029408756976466 -1197.4353496052636 42.1658 0.2469 1052 +1054 3 -33.96148896740175 -1197.8182163876236 42.0039 0.2467 1053 +1055 3 -32.84175580170978 -1198.0363598442052 41.8242 0.2466 1054 +1056 3 -31.84003285702545 -1198.57811850089 41.58 0.2465 1055 +1057 3 -30.986201189556937 -1199.3183028114695 41.174 0.2464 1056 +1058 3 -29.97611512805406 -1199.8146592845387 40.7425 0.2462 1057 +1059 3 -28.86952198723924 -1200.0421707583187 40.3292 0.2461 1058 +1060 3 -27.83508928549685 -1200.457828773478 39.8014 0.246 1059 +1061 3 -27.03685331286198 -1201.2146965703828 39.3184 0.2459 1060 +1062 3 -26.54434424954877 -1202.2279196615896 38.9494 0.2457 1061 +1063 3 -25.756572182059983 -1203.0006098062686 38.6697 0.2456 1062 +1064 3 -24.66365374550884 -1203.2580074384387 38.4675 0.2455 1063 +1065 3 -23.54468281112372 -1203.3154556586146 38.3314 0.2454 1064 +1066 3 -22.57525415967848 -1203.8636833665582 38.2466 0.2452 1065 +1067 3 -21.81054222746957 -1204.712290242996 38.192 0.2451 1066 +1068 3 -20.932883091232668 -1205.4257382162778 38.0971 0.245 1067 +1069 3 -19.923856989057413 -1205.9576082992198 37.8969 0.2449 1068 +1070 3 -19.000326454499827 -1206.6079982451292 37.6538 0.2448 1069 +1071 3 -18.278425086488767 -1207.4788113277502 37.3887 0.2446 1070 +1072 3 -17.642210595643917 -1208.419901000225 37.1017 0.2445 1071 +1073 3 -16.78412840104238 -1209.0862225121905 36.7665 0.2444 1072 +1074 3 -15.708330122573159 -1209.4360752155426 36.3885 0.2443 1073 +1075 3 -14.825304339943159 -1210.0709833956842 36.0598 0.2441 1074 +1076 3 -14.06709979665959 -1210.8981185723899 35.7622 0.244 1075 +1077 3 -13.121486302346625 -1211.5254268613303 35.448 0.2439 1076 +1078 3 -12.077876200417734 -1211.9300442548665 35.175 0.2438 1077 +1079 3 -11.01646379976836 -1212.2914393374945 34.9877 0.2437 1078 +1080 3 -10.013897538798744 -1212.8366705750127 34.834 0.2435 1079 +1081 3 -8.93059487301548 -1213.078615474332 34.7446 0.2434 1080 +1082 3 -7.798808372319172 -1212.9428421086022 34.7707 0.2433 1081 +1083 3 -6.690880468603439 -1213.008486759321 34.804 0.2432 1082 +1084 3 -5.789499980296796 -1213.6469027563794 34.7712 0.243 1083 +1085 3 -4.789584505564278 -1214.0984501995022 34.69 0.2429 1084 +1086 3 -3.6705564049585178 -1214.3372165289006 34.6237 0.2428 1085 +1087 3 -2.622797784724014 -1214.776845774657 34.5909 0.2427 1086 +1088 3 -1.5387975650826888 -1215.1270564738334 34.6262 0.2425 1087 +1089 3 -0.5297776660736417 -1215.6455489650073 34.7544 0.2424 1088 +1090 3 0.1736040264945018 -1216.5278629876545 34.9286 0.2423 1089 +1091 3 0.9502930091374537 -1217.3610086137255 35.1422 0.2422 1090 +1092 3 2.0078395970456313 -1217.7489603432023 35.3427 0.242 1091 +1093 3 3.1391349648779396 -1217.9049452486292 35.4295 0.2419 1092 +1094 3 4.065204060504016 -1218.5617566980775 35.4298 0.2418 1093 +1095 3 4.946245074094634 -1219.2850987557313 35.3948 0.2417 1094 +1096 3 6.089656453781686 -1219.2577999132245 35.341 0.2415 1095 +1097 3 7.220859419309761 -1219.2499780988205 35.2834 0.2414 1096 +1098 3 8.228372376197171 -1219.781487084355 35.2304 0.2413 1097 +1099 3 9.081052688322018 -1220.543859778852 35.1826 0.2412 1098 +1100 3 9.9338596325465 -1221.302046309913 35.0986 0.241 1099 +1101 3 10.628155320944188 -1222.208726180139 34.9969 0.2409 1100 +1102 3 11.235995082177226 -1223.1779387030997 34.9079 0.2408 1101 +1103 3 11.84806244609581 -1224.143144060537 34.8348 0.2407 1102 +1104 3 12.555721698115804 -1225.0389099412394 34.7763 0.2405 1103 +1105 3 13.321279355656543 -1225.8736155677811 34.7304 0.2404 1104 +1106 3 13.630917110282837 -1226.93879377865 34.6948 0.2403 1105 +1107 3 13.340023872763936 -1228.0429106267989 34.6632 0.2402 1106 +1108 3 13.285560503913587 -1229.1667375536222 34.6147 0.2401 1107 +1109 3 13.70114042386058 -1230.22724697373 34.5005 0.2399 1108 +1110 3 14.24002402822083 -1231.2307457684237 34.4142 0.2398 1109 +1111 3 14.5249526601267 -1232.330010329264 34.393 0.2397 1110 +1112 3 14.514648723532616 -1233.4710635308684 34.3706 0.2396 1111 +1113 3 14.46549073896125 -1234.5970288911492 34.279 0.2394 1112 +1114 3 14.762394012254731 -1235.6982060323521 34.0581 0.2393 1113 +1115 3 14.979967234471985 -1236.8146917657916 33.9226 0.2392 1114 +1116 3 14.994748238688487 -1237.9551158851064 33.8425 0.2391 1115 +1117 3 14.96283194211685 -1239.0959548527144 33.7862 0.2389 1116 +1118 3 14.818462989716181 -1240.2133021154677 33.6916 0.2388 1117 +1119 3 14.314629871873422 -1241.2266926864545 33.5698 0.2387 1118 +1120 3 13.836270108656436 -1242.2484885060462 33.4586 0.2386 1119 +1121 3 13.855762650946076 -1243.3484547286162 33.3805 0.2384 1120 +1122 3 14.38822716081387 -1244.3371182536494 33.3609 0.2383 1121 +1123 3 15.079808391813856 -1245.2481663868066 33.3917 0.2382 1122 +1124 3 15.528566667998234 -1246.2774829122523 33.4348 0.2381 1123 +1125 3 15.38209692726997 -1247.3652503391645 33.4603 0.2379 1124 +1126 3 15.038663318410613 -1248.455883887294 33.455 0.2378 1125 +1127 3 14.97445513764643 -1249.585818075432 33.4132 0.2377 1126 +1128 3 15.403612855211463 -1250.613801146039 33.3326 0.2376 1127 +1129 3 16.260867146746932 -1251.3356831167544 33.1775 0.2374 1128 +1130 3 17.283162314945343 -1251.8366251883335 32.9778 0.2373 1129 +1131 3 18.241689981040167 -1252.447896202967 32.7687 0.2372 1130 +1132 3 18.54584506998509 -1253.4736004936226 32.4148 0.2371 1131 +1133 3 18.18770213102823 -1254.5424043461958 32.023 0.2369 1132 +1134 3 18.395155415777992 -1255.6556026998805 31.6907 0.2368 1133 +1135 3 18.781543629609928 -1256.8040144196968 31.2998 0.2366 1134 +1136 3 18.695129935199077 -1257.9152006702498 31.0968 0.2363 1135 +1137 3 18.65501720808504 -1259.0449966071888 30.8557 0.2361 1136 +1138 3 19.109888256213537 -1260.0733729097037 30.6289 0.2359 1137 +1139 3 19.27096389833315 -1261.1896067640173 30.4214 0.2357 1138 +1140 3 18.80758316660524 -1262.218393907922 30.2882 0.2356 1139 +1141 3 18.307666510806655 -1263.2467494822517 30.1952 0.2354 1140 +1142 3 18.227418646689102 -1264.3811433293367 30.0297 0.2352 1141 +1143 3 18.28531653765191 -1265.5151367350595 29.7203 0.235 1142 +1144 3 18.05563380337719 -1266.6271728188158 29.3905 0.2348 1143 +1145 3 17.616797917140048 -1267.6609449963048 29.09 0.2346 1144 +1146 3 16.6761514333395 -1268.2889051801649 28.7745 0.2344 1145 +1147 3 16.040362291782458 -1269.203343602082 28.4222 0.2342 1146 +1148 3 15.936269136630813 -1270.3228145776102 28.0837 0.234 1147 +1149 3 16.23272852871321 -1271.408183399185 27.7143 0.2339 1148 +1150 3 16.887594145193646 -1272.29883830674 27.2294 0.2337 1149 +1151 3 17.85047466100025 -1272.8537907391878 26.5782 0.2335 1150 +1152 3 18.874469483627024 -1273.2221042649148 25.8896 0.2333 1151 +1153 3 19.981655369663144 -1273.3673196351842 25.3241 0.2331 1152 +1154 3 21.068228001383375 -1273.6583151952818 24.821 0.2329 1153 +1155 3 22.15731827032323 -1273.9073842541802 24.326 0.2327 1154 +1156 3 23.269847878304972 -1274.0439154643996 23.8381 0.2325 1155 +1157 3 23.940727453881834 -1274.7005297918963 23.4048 0.2324 1156 +1158 3 24.28636344630536 -1275.7543798574852 23.0029 0.2322 1157 +1159 3 25.077514289564874 -1276.5302752906523 22.7032 0.232 1158 +1160 3 25.89669899634083 -1277.3038463967468 22.4678 0.2318 1159 +1161 3 26.596999623474062 -1278.202726862458 22.2212 0.2316 1160 +1162 3 27.247420994226502 -1279.136375126243 21.9364 0.2314 1161 +1163 3 27.88483989876437 -1280.0794242342631 21.6476 0.2312 1162 +1164 3 28.69742410408901 -1280.859634872012 21.3788 0.231 1163 +1165 3 29.542754403539902 -1281.621125912557 21.1327 0.2309 1164 +1166 3 30.30759296784845 -1282.465546625559 20.9262 0.2307 1165 +1167 3 30.99467930381769 -1283.3780664647538 20.7623 0.2305 1166 +1168 3 31.300177750191267 -1284.4538882712177 20.6769 0.2303 1167 +1169 3 31.21867310656802 -1285.5862374899077 20.7098 0.2301 1168 +1170 3 31.090129603524815 -1286.7207374536915 20.8716 0.2299 1169 +1171 3 31.37696461262675 -1287.7946497813764 21.2591 0.2297 1170 +1172 3 31.587399647119355 -1288.9060153316154 21.6486 0.2295 1171 +1173 3 31.777658099052474 -1290.0151103056678 22.1431 0.2293 1172 +1174 3 31.77420792810875 -1291.1411516487456 22.6044 0.2292 1173 +1175 3 32.21365537100053 -1292.1226656807062 23.5584 0.229 1174 +1176 3 19.295160216491865 -1255.2649656577405 30.3719 0.2362 1134 +1177 3 20.318842501425934 -1255.1849594735281 29.5795 0.2351 1176 +1178 3 21.33475381121542 -1255.6535548860556 29.0875 0.2344 1177 +1179 3 22.24584387535242 -1256.3033750111908 28.5432 0.2337 1178 +1180 3 22.601878402936507 -1257.2649106658434 27.8145 0.233 1179 +1181 3 22.816848386636423 -1258.322545459195 26.9002 0.2322 1180 +1182 3 23.687273831261166 -1258.860377733561 25.8542 0.2315 1181 +1183 3 24.592599216688996 -1259.4332180660274 24.884 0.2308 1182 +1184 3 25.311591023634264 -1260.2294047159694 24.0045 0.2301 1183 +1185 3 25.453904623011624 -1261.1665447799044 22.4367 0.2295 1184 +1186 3 -35.23155135445933 -1194.8913023159462 40.8265 0.2467 1051 +1187 3 -34.23510755523915 -1194.4654498004018 40.0296 0.2461 1186 +1188 3 -33.135492509802134 -1194.3012078999973 39.5276 0.2457 1187 +1189 3 -32.03528391993285 -1194.4723100881129 39.0146 0.2454 1188 +1190 3 -30.97387151928342 -1194.8337051707406 38.472 0.245 1189 +1191 3 -29.889596496068805 -1195.0575626567288 37.8549 0.2446 1190 +1192 3 -28.791137215620324 -1195.0510866087998 37.1157 0.2442 1191 +1193 3 -27.69629427783383 -1195.032043458351 36.3079 0.2438 1192 +1194 3 -26.63767711778695 -1195.2622817011647 35.476 0.2435 1193 +1195 3 -25.81480049400028 -1195.901882289052 34.4893 0.2431 1194 +1196 3 -25.568938143468756 -1196.8894677307183 33.3654 0.2426 1195 +1197 3 -25.09633016660524 -1197.798129659163 32.1919 0.2422 1196 +1198 3 -24.168294124205715 -1198.3248480222446 31.269 0.2419 1197 +1199 3 -23.847217005418997 -1199.3628052678919 30.3906 0.2415 1198 +1200 3 -23.46732487516448 -1200.3916080377999 29.5977 0.2411 1199 +1201 3 -23.253242056046133 -1201.4672778786703 28.8585 0.2407 1200 +1202 3 -23.51372686212096 -1202.5377961063548 28.1392 0.2403 1201 +1203 3 -23.644507404092337 -1203.5004171428182 27.2472 0.2399 1202 +1204 3 -23.112224993719906 -1204.4864928425532 26.6805 0.2395 1203 +1205 3 -22.693079380413906 -1205.518047714989 26.1939 0.2391 1204 +1206 3 -22.660137389115675 -1206.6311102088362 25.8129 0.2388 1205 +1207 3 -22.94502258631593 -1207.7341164483546 25.5862 0.2384 1206 +1208 3 -23.205492671708214 -1208.8396050890087 25.496 0.238 1207 +1209 3 -23.28462992719517 -1209.9800069764126 25.4948 0.2376 1208 +1210 3 -23.30050343883039 -1211.1230750809577 25.493 0.2372 1209 +1211 3 -23.185531943829687 -1212.258257487154 25.4733 0.2369 1210 +1212 3 -23.01607777167237 -1213.3881221974348 25.4142 0.2365 1211 +1213 3 -23.124936215782895 -1214.4998406236318 25.2902 0.2361 1212 +1214 3 -23.52539958038392 -1215.5677775429358 25.0858 0.2357 1213 +1215 3 -23.83982937734197 -1216.6553731813901 24.7933 0.2354 1214 +1216 3 -23.828086282800825 -1217.7667934888034 24.3822 0.235 1215 +1217 3 -23.375191799946833 -1218.7787776227701 23.9279 0.2346 1216 +1218 3 -22.73496463294873 -1219.7134098630859 23.5437 0.2342 1217 +1219 3 -22.14418997084971 -1220.6810216388626 23.1983 0.2338 1218 +1220 3 -21.46728214132702 -1221.5767913136847 22.7765 0.2334 1219 +1221 3 -20.72309927687246 -1222.4206445202628 22.2748 0.233 1220 +1222 3 -19.960849230398708 -1223.241184706147 21.7153 0.2327 1221 +1223 3 -19.038444025154263 -1223.8505961987676 21.1081 0.2323 1222 +1224 3 -18.23733172693852 -1224.5813981799138 20.3202 0.2318 1223 +1225 3 -17.21099654849445 -1224.8704497176857 19.5128 0.2314 1224 +1226 3 -16.107227083359135 -1225.047345019587 18.9252 0.2311 1225 +1227 3 -15.060692486897437 -1224.659253357207 18.4673 0.2307 1226 +1228 3 -13.944547228790384 -1224.7842890433335 18.0972 0.2303 1227 +1229 3 -13.04868876780506 -1225.4595527976408 17.6695 0.2299 1228 +1230 3 -11.93670504986153 -1225.6891503390657 17.3246 0.2295 1229 +1231 3 -10.812012574841958 -1225.6531680290457 16.8274 0.2292 1230 +1232 3 -43.012173304670455 -1190.0672893974424 41.7738 0.2398 1043 +1233 3 -42.98681648389095 -1191.1527345925765 40.9259 0.2368 1232 +1234 3 -42.76230430317344 -1192.2541561016772 40.5244 0.2368 1233 +1235 3 -42.4885593621824 -1193.3548954701391 40.1635 0.2368 1234 +1236 3 -42.09377890391829 -1194.4014269650174 39.6234 0.2368 1235 +1237 3 -41.75927664564341 -1195.4742108618061 39.1073 0.2368 1236 +1238 3 -41.582607610428 -1196.587550568273 38.67 0.2368 1237 +1239 3 -41.202306835046215 -1197.649673047201 38.2914 0.2368 1238 +1240 3 -40.78668857743264 -1198.6993598738013 37.8347 0.2368 1239 +1241 3 -40.37979281753536 -1199.7545255719633 37.4058 0.2368 1240 +1242 3 -40.1880212203144 -1200.8639816434234 36.9608 0.2368 1241 +1243 3 -40.22867473528504 -1201.975329069623 36.3364 0.2368 1242 +1244 3 -40.169931118990405 -1203.0954212254496 35.7851 0.2368 1243 +1245 3 -39.69889375540902 -1204.1151517055819 35.2814 0.2368 1244 +1246 3 -39.04478246824448 -1205.033033088988 34.8076 0.2368 1245 +1247 3 -38.24644037891079 -1205.8381965248186 34.4459 0.2368 1246 +1248 3 -37.34963317747821 -1206.5411658722717 34.1796 0.2368 1247 +1249 3 -36.64878935344194 -1207.4411210179928 33.9839 0.2368 1248 +1250 3 -36.069991741776846 -1208.4241940441361 33.817 0.2368 1249 +1251 3 -35.57676289269483 -1209.4517646754962 33.5784 0.2368 1250 +1252 3 -35.065899123704924 -1210.4684955836196 33.2886 0.2368 1251 +1253 3 -34.55503535471502 -1211.485226491743 32.9963 0.2368 1252 +1254 3 -34.20542433126849 -1212.567504345293 32.695 0.2368 1253 +1255 3 -34.051469747144495 -1213.6962145986472 32.4366 0.2368 1254 +1256 3 -33.79777716565991 -1214.8078710582154 32.2123 0.2368 1255 +1257 3 -32.93859387425465 -1215.7272929210021 31.866 0.2368 1256 +1258 3 -32.46037998528192 -1216.7413209908273 31.5288 0.2368 1257 +1259 3 -32.268341095715755 -1217.8533125217728 31.1609 0.2368 1258 +1260 3 -32.24786388435871 -1218.9875355747104 30.819 0.2368 1259 +1261 3 -32.28125188696839 -1220.1238796472876 30.511 0.2368 1260 +1262 3 -32.1154116484264 -1221.2238034243196 30.1347 0.2368 1261 +1263 3 -31.696844468107088 -1222.271795006137 29.6682 0.2368 1262 +1264 3 -31.423455113894136 -1223.3633624850418 29.2513 0.2368 1263 +1265 3 -31.14035928543393 -1224.4596452961396 28.8834 0.2368 1264 +1266 3 -30.76041650587672 -1225.5299697162395 28.5743 0.2368 1265 +1267 3 -30.32710475937631 -1226.5822796042216 28.2957 0.2368 1266 +1268 3 -30.00502584179293 -1227.6720902624775 28.0364 0.2368 1267 +1269 3 -29.65590564943659 -1228.7533786288668 27.7582 0.2368 1268 +1270 3 -29.20838702302865 -1229.798247108159 27.4482 0.2368 1269 +1271 3 -28.689770704707314 -1230.8102127273232 27.1584 0.2368 1270 +1272 3 -28.113560918340397 -1231.7934678529623 26.9145 0.2368 1271 +1273 3 -27.464470593380327 -1232.7293428446374 26.6841 0.2368 1272 +1274 3 -26.748794601266866 -1233.6161900999823 26.4553 0.2368 1273 +1275 3 -26.068182134649362 -1234.531163307396 26.2467 0.2368 1274 +1276 3 -25.712784200582746 -1235.5965026939114 26.056 0.2368 1275 +1277 3 -25.18397126946047 -1236.590110505816 25.7818 0.2368 1276 +1278 3 -24.505086874663277 -1237.5022723491863 25.4761 0.2368 1277 +1279 3 -23.928389358789104 -1238.4798281661015 25.1504 0.2368 1278 +1280 3 -23.354353934499954 -1239.4618374387974 24.8583 0.2368 1279 +1281 3 -22.777207026785163 -1240.4445165404964 24.6168 0.2368 1280 +1282 3 -22.231816726036072 -1241.4454244083086 24.3631 0.2368 1281 +1283 3 -21.69423134043126 -1242.4510123722303 24.1458 0.2368 1282 +1284 3 -20.981090807803184 -1243.3381269199201 23.9241 0.2368 1283 +1285 3 -20.23570593870221 -1244.2013133927726 23.7171 0.2368 1284 +1286 3 -19.42418789587134 -1245.0036600486264 23.5347 0.2368 1285 +1287 3 -18.829130163690877 -1245.9740386476133 23.3695 0.2368 1286 +1288 3 -18.35140641327183 -1247.0111398568915 23.2174 0.2368 1287 +1289 3 -17.59890048617524 -1247.861849930703 23.0505 0.2368 1288 +1290 3 -16.809732695445064 -1248.6847427840405 22.8175 0.2368 1289 +1291 3 -16.336732794735326 -1249.7099576463638 22.4479 0.2368 1290 +1292 3 -15.944405012153254 -1250.7740778985035 22.0713 0.2368 1291 +1293 3 -15.804618970270212 -1251.8994069670407 21.7249 0.2368 1292 +1294 3 -15.962310047043445 -1253.0235344216944 21.4005 0.2368 1293 +1295 3 -16.02790163941279 -1254.155610144873 21.0311 0.2368 1294 +1296 3 -15.365955711650031 -1255.0619850776234 20.5899 0.2368 1295 +1297 3 -15.097159467175402 -1256.2946503358976 19.9469 0.2367 1296 +1298 3 -14.849037153268398 -1257.384259071794 19.3426 0.2361 1297 +1299 3 -14.505669327985174 -1258.440911889213 18.7354 0.2358 1298 +1300 3 -13.995216613169134 -1259.441696919046 18.2045 0.2355 1299 +1301 3 -13.480034538014252 -1260.4436832609886 17.7157 0.2352 1300 +1302 3 -12.969923381830256 -1261.446204187621 17.219 0.2349 1301 +1303 3 -12.586378980293773 -1262.4941252972712 16.7239 0.2346 1302 +1304 3 -12.419733763133252 -1263.6083442486433 16.2401 0.2343 1303 +1305 3 -11.965339139164087 -1264.544282609706 15.768 0.2339 1304 +1306 3 -10.982984696837605 -1265.1047546604286 15.3418 0.2336 1305 +1307 3 -9.999117109223164 -1265.665587808559 14.9426 0.2333 1306 +1308 3 -9.06103572707957 -1266.289426618249 14.5515 0.233 1307 +1309 3 -8.516036657640086 -1267.197844178796 14.1523 0.2327 1308 +1310 3 -8.396873488573988 -1268.3224681822471 13.7579 0.2324 1309 +1311 3 -8.058052924134131 -1269.3805075128546 13.312 0.2321 1310 +1312 3 -7.478911344790504 -1270.344470811469 12.799 0.2318 1311 +1313 3 -6.801193718556249 -1271.2197879991736 12.2107 0.2314 1312 +1314 3 -5.89959279308755 -1271.849969228023 11.5396 0.2311 1313 +1315 3 -4.907200220471509 -1272.3437026397105 10.8438 0.2308 1314 +1316 3 -3.913242136754832 -1272.8378823416551 10.1658 0.2305 1315 +1317 3 -2.89443186102568 -1273.2873234858207 9.5332 0.2302 1316 +1318 3 -1.850414919468733 -1273.1571389024707 9.0498 0.2298 1317 +1319 3 -1.1490991699075153 -1273.6755513149546 8.8299 0.2294 1318 +1320 3 -0.9045517594126977 -1274.7484591507077 9.5357 0.2291 1319 +1321 3 -14.800552591013172 -1254.909181245296 20.2667 0.2368 1296 +1322 3 -13.908660034280217 -1254.3569673127981 19.1982 0.2354 1321 +1323 3 -13.076221882341997 -1253.6182750337011 18.6003 0.2345 1322 +1324 3 -12.19559690131183 -1252.9253220101955 18.0432 0.2337 1323 +1325 3 -11.130189043227745 -1252.6531049351752 17.3868 0.2329 1324 +1326 3 -10.072763985237543 -1252.933727986143 16.6316 0.232 1325 +1327 3 -9.020432078128977 -1253.3088038815044 16.0402 0.2312 1326 +1328 3 -7.955321646291964 -1252.9400478944453 15.5642 0.2304 1327 +1329 3 -6.907757526178273 -1252.7151869279562 14.5838 0.2296 1328 +1330 3 -34.46467159998235 -1215.6717049273534 32.571 0.2368 1256 +1331 3 -35.526838933494844 -1215.9230318372115 32.7141 0.2368 1330 +1332 3 -36.59053422196712 -1215.5294690934443 32.8056 0.2368 1331 +1333 3 -37.56746044203487 -1214.9361978902461 32.8992 0.2368 1332 +1334 3 -38.57297562571034 -1214.392661897511 32.9678 0.2368 1333 +1335 3 -39.62559023838321 -1213.956017503081 33.0123 0.2368 1334 +1336 3 -40.73659918984896 -1213.6909587175955 33.0341 0.2368 1335 +1337 3 -41.83613284853402 -1213.40523020411 33.0358 0.2368 1336 +1338 3 -42.88714671402289 -1212.951520710546 33.0187 0.2368 1337 +1339 3 -43.9526723968944 -1212.5376023863068 32.9784 0.2368 1338 +1340 3 -45.04535608404876 -1212.2061105917978 32.9249 0.2368 1339 +1341 3 -46.167985806633794 -1211.989747572849 32.8941 0.2368 1340 +1342 3 -47.29532465824548 -1211.7964686199157 32.8751 0.2368 1341 +1343 3 -48.425779811375605 -1211.6372674994377 32.837 0.2368 1342 +1344 3 -49.5640155404663 -1211.6642021429539 32.7729 0.2368 1343 +1345 3 -50.633776248262336 -1211.9927378001598 32.6712 0.2368 1344 +1346 3 -51.328758296987075 -1212.8106855502945 32.5153 0.2368 1345 +1347 3 -51.375340075359816 -1213.9081871939943 32.265 0.2368 1346 +1348 3 -51.65906950757147 -1214.853427581037 31.7727 0.2368 1347 +1349 3 -52.65882511471932 -1214.498386222916 31.1752 0.2368 1348 +1350 3 -53.51778857250986 -1214.1562251085552 30.2795 0.2364 1349 +1351 3 -54.55560866223556 -1213.7413580438688 29.6825 0.2359 1350 +1352 3 -55.61244708347442 -1213.3394722374592 29.2586 0.2356 1351 +1353 3 -56.68633898474769 -1212.9642673009516 28.9873 0.2352 1352 +1354 3 -57.77545938758942 -1212.6211947895 28.8456 0.2349 1353 +1355 3 -58.89740766207234 -1212.4300019042116 28.8044 0.2345 1354 +1356 3 -60.024531888925196 -1212.5319209762315 28.8389 0.2342 1355 +1357 3 -61.0920504556114 -1212.920820718813 28.9218 0.2338 1356 +1358 3 -62.10463043638259 -1213.449322509294 29.0511 0.2335 1357 +1359 3 -63.156634694352874 -1213.8743471217726 29.2527 0.2331 1358 +1360 3 -64.26454817915953 -1214.1364206423414 29.4958 0.2328 1359 +1361 3 -65.36863349635507 -1214.4068227361818 29.8001 0.2324 1360 +1362 3 -66.48541734857827 -1214.5037944197475 30.2184 0.232 1361 +1363 3 -67.61429908861675 -1214.5329613017839 30.6606 0.2317 1362 +1364 3 -68.72361449983106 -1214.731454521926 31.073 0.2313 1363 +1365 3 -69.7053743024477 -1215.2663661968463 31.4535 0.231 1364 +1366 3 -70.47328202843875 -1216.079487395908 31.9063 0.2306 1365 +1367 3 -70.80207477876928 -1217.1087697805478 32.6676 0.2302 1366 +1368 3 -71.33448013893849 -1218.088662337139 33.29 0.2298 1367 +1369 3 -72.04891829191735 -1218.942749677853 33.9262 0.2295 1368 +1370 3 -72.82736080366954 -1219.705886196372 34.7768 0.2291 1369 +1371 3 -53.071245103342676 -1214.9197444469773 30.9313 0.2368 1349 +1372 3 -54.095351055860476 -1215.224208267517 30.1568 0.2355 1371 +1373 3 -55.21229477566823 -1215.224673866081 29.6139 0.2345 1372 +1374 3 -56.33896140691576 -1215.2268901768239 29.1365 0.2337 1373 +1375 3 -57.46184710452002 -1215.3290210737928 28.6653 0.2329 1374 +1376 3 -58.535991488466436 -1215.595809234018 27.9836 0.232 1375 +1377 3 -59.54741100480845 -1215.1190533195681 27.4238 0.2312 1376 +1378 3 -60.575965399914764 -1214.6997820633305 26.7622 0.2304 1377 +1379 3 -61.59384675806086 -1214.3545909412853 25.802 0.2296 1378 +1380 3 -57.093131132060876 -1157.7216265179577 42.8005 0.2574 825 +1381 3 -56.02206230291978 -1157.460719765952 43.0363 0.2567 1380 +1382 3 -54.883668091317645 -1157.4821659542113 42.9853 0.2562 1381 +1383 3 -53.80843702947652 -1157.1407599735198 42.8744 0.2558 1382 +1384 3 -52.849562472098796 -1156.5204937700123 42.7678 0.2553 1383 +1385 3 -51.7267992987226 -1156.5797193262383 42.8179 0.2548 1384 +1386 3 -50.61968698643665 -1156.7532686794061 42.978 0.2544 1385 +1387 3 -49.55980905766506 -1156.3299776493775 43.1267 0.254 1386 +1388 3 -48.516993818980836 -1155.8877120414359 43.1866 0.2535 1387 +1389 3 -47.377748779865385 -1155.7837421378545 43.1508 0.2531 1388 +1390 3 -46.2377863640275 -1155.7114936051555 43.1068 0.2527 1389 +1391 3 -45.10091491621432 -1155.5860934410923 43.0749 0.2523 1390 +1392 3 -43.96055306530218 -1155.5015091695982 43.1057 0.2518 1391 +1393 3 -42.831983472193485 -1155.3408329625527 43.2989 0.2514 1392 +1394 3 -41.75911197350848 -1154.9889045077366 43.5196 0.251 1393 +1395 3 -40.71452450095603 -1154.6543615027483 43.6649 0.2505 1394 +1396 3 -39.62030784564945 -1154.9096699656902 43.7251 0.2501 1395 +1397 3 -38.567286286674005 -1155.2050899486517 43.6587 0.2497 1396 +1398 3 -37.439211934300715 -1155.179001723004 43.3972 0.2492 1397 +1399 3 -36.312461418265286 -1155.3189993108904 43.0592 0.2488 1398 +1400 3 -35.23388029981908 -1155.138106467109 42.7745 0.2484 1399 +1401 3 -34.31636001382043 -1154.4855083252323 42.5348 0.2479 1400 +1402 3 -33.39362504702217 -1153.8457860174708 42.3004 0.2475 1401 +1403 3 -32.31375942421488 -1153.7783150853668 42.0941 0.2471 1402 +1404 3 -31.253533614992705 -1154.1794099413037 41.918 0.2466 1403 +1405 3 -30.211206318600034 -1154.6451495436513 41.7508 0.2462 1404 +1406 3 -29.103106928200077 -1154.8355818964576 41.6094 0.2458 1405 +1407 3 -28.072391577929807 -1154.4437151248158 41.4498 0.2453 1406 +1408 3 -27.12256537959246 -1153.812929548766 41.2454 0.2449 1407 +1409 3 -26.078415993532644 -1153.3751260088181 41.0382 0.2445 1408 +1410 3 -24.96331126265187 -1153.1423204909124 40.8724 0.2441 1409 +1411 3 -23.82518165025988 -1153.0670902084707 40.7523 0.2436 1410 +1412 3 -22.687841289515404 -1153.1630166585337 40.6731 0.2432 1411 +1413 3 -21.5729884377605 -1152.986708720726 40.6305 0.2428 1412 +1414 3 -20.563613745477312 -1152.4615857060157 40.6333 0.2424 1413 +1415 3 -19.487501722220827 -1152.0887670860373 40.6543 0.2419 1414 +1416 3 -18.41298562805548 -1151.6982659037349 40.6476 0.2415 1415 +1417 3 -17.329520490541825 -1151.3330177335924 40.607 0.2411 1416 +1418 3 -16.19549254127236 -1151.2335458266248 40.5625 0.2407 1417 +1419 3 -15.052131118351554 -1151.1887879605392 40.5112 0.2402 1418 +1420 3 -13.934490927985394 -1150.9557151502886 40.4317 0.2398 1419 +1421 3 -12.796437298390003 -1150.9261926814743 40.2937 0.2394 1420 +1422 3 -11.658010259750824 -1150.947501311071 40.031 0.2389 1421 +1423 3 -10.663770163006348 -1151.4791868854713 39.7342 0.2385 1422 +1424 3 -9.534435929544259 -1151.4618320841028 39.3952 0.2381 1423 +1425 3 -8.443202829479787 -1151.1508516645845 39.0404 0.2376 1424 +1426 3 -7.373942162827177 -1150.7756710724032 38.64 0.2372 1425 +1427 3 -6.249908211462355 -1150.6446629956322 38.2399 0.2368 1426 +1428 3 -6.170786481011476 -1151.3762587390386 37.9201 0.2368 1427 +1429 3 -5.559683963296095 -1152.2306628371339 37.1818 0.2368 1428 +1430 3 -4.523068287263243 -1152.643570466275 36.5812 0.2368 1429 +1431 3 -3.5197976537440923 -1153.144116204363 36.0223 0.2368 1430 +1432 3 -3.8325802510759672 -1153.4894399608675 35.2565 0.2368 1431 +1433 3 -4.215204364362819 -1154.4552067225295 35.3416 0.2359 1432 +1434 3 -4.62151390109932 -1155.502556697637 35.7692 0.235 1433 +1435 3 -4.970250485191116 -1156.57367798158 36.2037 0.2343 1434 +1436 3 -5.4236167036134475 -1157.5815194929266 36.881 0.2336 1435 +1437 3 -5.257086120667964 -1158.6258499841715 37.7387 0.2328 1436 +1438 3 -4.7628887082743745 -1159.6045817797026 38.5311 0.2322 1437 +1439 3 -4.377437929541827 -1160.6271506561966 39.3436 0.2315 1438 +1440 3 -4.355139533838553 -1161.736073841791 40.014 0.2308 1439 +1441 3 -4.814419294980382 -1162.765039983608 40.4712 0.2301 1440 +1442 3 -5.673778292758072 -1163.4946907993676 40.9469 0.2295 1441 +1443 3 -2.728384407536737 -1153.131756037395 35.4844 0.2368 1431 +1444 3 -1.6177461542947071 -1153.035862135423 35.2262 0.2366 1443 +1445 3 -0.5333366859786679 -1152.8338970269842 35.0361 0.2365 1444 +1446 3 0.5764671592575041 -1153.0729337503112 34.9555 0.2364 1445 +1447 3 1.686097517211067 -1153.3053864093795 34.9308 0.2363 1446 +1448 3 2.824597437063801 -1153.2742984294646 34.946 0.2363 1447 +1449 3 3.9594136436706435 -1153.2723549216962 34.9863 0.2362 1448 +1450 3 5.062584852955069 -1153.5422313619536 35.0504 0.2361 1449 +1451 3 5.956703623020587 -1154.1864021351314 35.1464 0.236 1450 +1452 3 6.893983743653962 -1154.6363056753103 35.3548 0.2359 1451 +1453 3 8.031244706266875 -1154.6448322758545 35.6404 0.2358 1452 +1454 3 9.15492237831694 -1154.4805896829134 35.8378 0.2357 1453 +1455 3 10.253472664018375 -1154.1706284760098 35.9579 0.2357 1454 +1456 3 11.378261637235596 -1154.0364565500004 36.0514 0.2356 1455 +1457 3 12.490820686582708 -1154.2429285861604 36.1561 0.2355 1456 +1458 3 13.613758448226122 -1154.4336306403584 36.2401 0.2354 1457 +1459 3 14.746079231839019 -1154.5956759519167 36.2855 0.2353 1458 +1460 3 15.86007544367726 -1154.8482168991118 36.2852 0.2352 1459 +1461 3 16.986879710598544 -1155.036424933074 36.3079 0.2351 1460 +1462 3 18.126637102493646 -1155.0314442081672 36.3784 0.2351 1461 +1463 3 19.26059938000401 -1155.1482279963554 36.3866 0.235 1462 +1464 3 20.298522484845194 -1155.6047019040834 36.3474 0.2349 1463 +1465 3 21.408364667748117 -1155.8329160339035 36.2891 0.2348 1464 +1466 3 22.487470557284325 -1156.1969341779131 36.2037 0.2347 1465 +1467 3 23.422623248034313 -1156.8467536105118 36.0497 0.2346 1466 +1468 3 24.530773287737077 -1157.07870761351 35.8081 0.2345 1467 +1469 3 25.672710552339424 -1157.0642877067012 35.6504 0.2345 1468 +1470 3 26.811251218905454 -1157.00500330255 35.4648 0.2344 1469 +1471 3 27.927782197692466 -1157.2332143307867 35.2794 0.2343 1470 +1472 3 28.846766163943073 -1157.9090534164975 35.1025 0.2342 1471 +1473 3 29.90409541627224 -1158.3119287100671 34.9286 0.2341 1472 +1474 3 30.997786607952207 -1157.9982635586052 34.7197 0.234 1473 +1475 3 32.12950743688941 -1158.0787458880309 34.4196 0.2339 1474 +1476 3 33.208812839738755 -1158.386181259093 34.0626 0.2338 1475 +1477 3 34.303239230406746 -1158.1458966873674 33.5129 0.2338 1476 +1478 3 35.40399401208788 -1157.9311847859594 33.0078 0.2337 1477 +1479 3 36.45908613649965 -1157.5526230089608 32.4587 0.2336 1478 +1480 3 37.5528612129674 -1157.381171756128 31.985 0.2335 1479 +1481 3 38.67346302843856 -1157.5155583297237 31.5818 0.2334 1480 +1482 3 39.808332985931315 -1157.5618252680315 31.2922 0.2333 1481 +1483 3 40.90794021836655 -1157.8192197986186 31.1214 0.2332 1482 +1484 3 41.93731810689394 -1158.3185080646645 31.0397 0.2332 1483 +1485 3 42.98232703364721 -1158.780016962743 31.0271 0.2331 1484 +1486 3 44.03886051741085 -1159.2142525297877 31.064 0.233 1485 +1487 3 45.06200210347765 -1159.7253559780843 31.1419 0.2329 1486 +1488 3 46.10193460063056 -1160.198084495698 31.2628 0.2328 1487 +1489 3 47.11536420182051 -1160.7151576466465 31.4465 0.2327 1488 +1490 3 48.07880022616632 -1161.3235290028038 31.6999 0.2326 1489 +1491 3 48.63483001463902 -1162.1714058891093 32.0412 0.2326 1490 +1492 3 49.12901270635001 -1163.11516727167 32.4624 0.2325 1491 +1493 3 50.10912259852023 -1163.6326490677461 32.844 0.2324 1492 +1494 3 50.85274685285253 -1164.4163945547307 33.1646 0.2323 1493 +1495 3 50.969935865690616 -1165.5072525589044 33.427 0.2322 1494 +1496 3 51.04414073235199 -1166.6393217651653 33.7344 0.2321 1495 +1497 3 51.840029139715114 -1167.3115924643816 34.1368 0.232 1496 +1498 3 52.8434413388008 -1166.9406165504383 34.4663 0.2319 1497 +1499 3 53.83552438631801 -1166.3831609048225 34.7323 0.2318 1498 +1500 3 54.948773389305586 -1166.2172292702649 34.9521 0.2318 1499 +1501 3 56.0485103554235 -1166.4771264332999 35.1677 0.2317 1500 +1502 3 57.11430573968681 -1166.8762063862955 35.4385 0.2316 1501 +1503 3 57.978243316476835 -1167.6087702902728 35.6521 0.2315 1502 +1504 3 58.82227849875534 -1168.37903929593 35.8268 0.2314 1503 +1505 3 59.639013631432306 -1169.17688795517 36.0004 0.2313 1504 +1506 3 60.289702294529945 -1170.1130716784403 36.143 0.2313 1505 +1507 3 61.39826238211822 -1170.2104900658537 36.2208 0.2312 1506 +1508 3 62.534684438090835 -1170.079966617007 36.2426 0.2311 1507 +1509 3 63.62260042723972 -1170.4210796929133 36.1928 0.231 1508 +1510 3 64.75577003776755 -1170.57591255046 36.1007 0.2309 1509 +1511 3 65.88640418880999 -1170.731012700352 36.0105 0.2308 1510 +1512 3 67.00631254631651 -1170.4951371382708 35.9344 0.2307 1511 +1513 3 68.11886158639965 -1170.2383135345851 35.8756 0.2306 1512 +1514 3 69.26209466071094 -1170.2391782892773 35.8282 0.2306 1513 +1515 3 70.39053452013701 -1170.0759994497835 35.7882 0.2305 1514 +1516 3 71.39166282511144 -1169.5223743808256 35.7428 0.2304 1515 +1517 3 72.37572533841535 -1168.94308593807 35.6846 0.2303 1516 +1518 3 73.43698667879227 -1168.5176533730005 35.6073 0.2302 1517 +1519 3 74.38775310006042 -1167.8929805688954 35.4446 0.2301 1518 +1520 3 75.12905352989986 -1167.0344719069008 35.2822 0.2301 1519 +1521 3 76.14195316882893 -1166.5085907687549 35.0927 0.23 1520 +1522 3 77.17767096650158 -1166.0330085533765 34.8855 0.2299 1521 +1523 3 78.26420345505596 -1165.7667050210757 34.6746 0.2298 1522 +1524 3 79.3789269638911 -1165.9047048357502 34.3633 0.2297 1523 +1525 3 80.45644022101857 -1165.571403889585 34.1564 0.2296 1524 +1526 3 81.585380121588 -1165.454869985067 34.0113 0.2295 1525 +1527 3 82.57921226574172 -1165.9772984770607 33.976 0.2294 1526 +1528 3 83.51610395487506 -1166.6341482641756 34.0021 0.2293 1527 +1529 3 84.62186298945761 -1166.9038426049374 34.0463 0.2292 1528 +1530 3 85.76399466519155 -1166.9443547671258 34.0379 0.2291 1529 +1531 3 86.8663372788734 -1167.24572903952 34.0178 0.2291 1530 +1532 3 87.9976353575259 -1167.0915923559005 34.0693 0.229 1531 +1533 3 89.07869166765374 -1166.7224253146674 34.2157 0.2289 1532 +1534 3 -5.326965018170881 -1150.9730864447902 38.8923 0.2364 1427 +1535 3 -4.197865942553449 -1150.9289959986604 39.0855 0.236 1534 +1536 3 -3.226729220130835 -1150.337463213126 39.3159 0.2358 1535 +1537 3 -2.7283250170835345 -1149.3328091680019 39.7872 0.2355 1536 +1538 3 -2.0230204159948926 -1148.4682548205583 40.3962 0.2352 1537 +1539 3 -1.2541755686560236 -1147.6545575975567 40.9108 0.2349 1538 +1540 3 -0.4802450816637247 -1146.875296202835 41.4554 0.2347 1539 +1541 3 0.03558531792515396 -1145.8707297596068 41.8984 0.2344 1540 +1542 3 0.6392858827224472 -1144.9195552077692 42.2769 0.2341 1541 +1543 3 1.463923937609536 -1144.1507953633236 42.5219 0.2339 1542 +1544 3 2.440269137665439 -1143.5587608201358 42.6737 0.2336 1543 +1545 3 3.081162433678344 -1142.7444800619658 42.8792 0.2333 1544 +1546 3 3.0582380572687384 -1141.617160731445 43.1586 0.2331 1545 +1547 3 3.0610215007930606 -1140.5009196676767 43.4787 0.2328 1546 +1548 3 3.5669256815093604 -1139.523935287078 43.8206 0.2325 1547 +1549 3 4.3148625414202115 -1138.6653383306505 44.0891 0.2323 1548 +1550 3 5.164274396476401 -1137.914921572782 44.3114 0.232 1549 +1551 3 6.010040183416777 -1137.15876406694 44.5875 0.2317 1550 +1552 3 6.374778805731864 -1136.11806834417 44.8179 0.2314 1551 +1553 3 6.137925375589589 -1135.0269324348396 44.9428 0.2312 1552 +1554 3 6.142045375535986 -1133.8977796083364 45.0131 0.2309 1553 +1555 3 6.727782057518198 -1132.9347577397475 45.1133 0.2306 1554 +1556 3 6.801355153897589 -1131.8112747806026 45.1872 0.2304 1555 +1557 3 6.984257803580988 -1130.6823320802237 45.2164 0.2301 1556 +1558 3 7.781889127242096 -1129.88052051164 45.2264 0.2298 1557 +1559 3 8.299141276102944 -1128.8629899398638 45.2206 0.2296 1558 +1560 3 8.577825406926252 -1127.754287493205 45.1898 0.2293 1559 +1561 3 8.31014087206654 -1126.6525227089628 44.8731 0.2291 1560 +1562 3 -58.215717118166594 -1159.4147865410505 41.6668 0.2574 824 +1563 3 -57.91845274746555 -1160.5144505369653 41.8314 0.2574 1562 +1564 3 -57.58033414652874 -1161.5998015362743 41.9294 0.2574 1563 +1565 3 -57.58953909359201 -1162.718581161111 42.1134 0.2574 1564 +1566 3 -57.82634908902861 -1163.8297160521397 42.3486 0.2574 1565 +1567 3 -57.9038793941653 -1164.9664304321777 42.5684 0.2574 1566 +1568 3 -57.99081605416694 -1166.1008273808459 42.7644 0.2574 1567 +1569 3 -58.2325344078547 -1167.2148619303507 42.9587 0.2574 1568 +1570 3 -58.39815462282519 -1168.3304818138204 43.1953 0.2574 1569 +1571 3 -58.29382672341944 -1169.4615249117642 43.4566 0.2574 1570 +1572 3 -58.13947821485067 -1170.588584461168 43.7046 0.2574 1571 +1573 3 -58.184661860935535 -1171.7189149827973 43.9253 0.2574 1572 +1574 3 -58.40000256568686 -1172.8409163156293 44.072 0.2574 1573 +1575 3 -58.37414329471744 -1173.95563261501 44.2016 0.2574 1574 +1576 3 -58.01196516875069 -1175.0342941258982 44.3887 0.2574 1575 +1577 3 -57.92435840080043 -1176.1446267491283 44.5626 0.2574 1576 +1578 3 -58.33048893962467 -1177.1878757536495 44.6894 0.2574 1577 +1579 3 -58.91876349013887 -1178.1685387453124 44.7776 0.2574 1578 +1580 3 -58.93781936581462 -1179.2451299925378 44.8316 0.2574 1579 +1581 3 -58.648701468889726 -1180.351209981362 44.8843 0.2574 1580 +1582 3 -58.47737305403683 -1181.479922643763 44.9193 0.2574 1581 +1583 3 -58.18945957080496 -1182.5840431970419 44.8529 0.2574 1582 +1584 3 -57.497534372126495 -1183.47598160267 44.7084 0.2574 1583 +1585 3 -56.485527212744955 -1183.981956255553 44.562 0.2574 1584 +1586 3 -55.47213594922158 -1184.509852000009 44.4858 0.2574 1585 +1587 3 -54.743545785326376 -1185.3806619810468 44.4102 0.2574 1586 +1588 3 -54.64693209758548 -1186.505647774442 44.3134 0.2574 1587 +1589 3 -54.90276662770128 -1187.6163863319794 44.1767 0.2574 1588 +1590 3 -55.14261073869346 -1188.7292688336042 43.8925 0.2574 1589 +1591 3 -55.41395888498869 -1189.827945147858 43.4913 0.2574 1590 +1592 3 -55.43005042473942 -1190.961874189883 43.122 0.2574 1591 +1593 3 -55.88736975602575 -1191.7209507863026 42.7787 0.2574 1592 +1594 3 -56.23713175589819 -1192.7860116641145 42.2881 0.2571 1593 +1595 3 -56.03088908800754 -1193.8838729904855 41.8765 0.257 1594 +1596 3 -55.6107204679675 -1194.938862099782 41.5671 0.2569 1595 +1597 3 -55.11936586158106 -1195.9675847790218 41.3305 0.2567 1596 +1598 3 -54.67905658760151 -1197.0182932272833 41.0934 0.2566 1597 +1599 3 -54.40477706192013 -1198.124103514716 40.8666 0.2564 1598 +1600 3 -54.457765623149214 -1199.2591141324542 40.6896 0.2563 1599 +1601 3 -54.22313040338105 -1200.3705118171938 40.4886 0.2561 1600 +1602 3 -53.89200622834028 -1201.4641530521076 40.3382 0.256 1601 +1603 3 -53.55740947246636 -1202.5569509707357 40.2461 0.2559 1602 +1604 3 -53.03282655307612 -1203.571939778893 40.2094 0.2557 1603 +1605 3 -52.63033429219371 -1204.6419024090487 40.2144 0.2556 1604 +1606 3 -52.21973699678472 -1205.709582843918 40.2525 0.2554 1605 +1607 3 -52.13973591475411 -1206.844779970797 40.3749 0.2553 1606 +1608 3 -53.13160403573886 -1207.4046858830484 40.5034 0.2551 1607 +1609 3 -53.67357451737303 -1208.4106473569814 40.6563 0.255 1608 +1610 3 -53.943233622051366 -1209.4988950021725 40.7506 0.2549 1609 +1611 3 -53.35357267016582 -1210.4538099417464 40.78 0.2547 1610 +1612 3 -52.321171592645726 -1210.9471316067234 40.7428 0.2546 1611 +1613 3 -51.26650373936502 -1211.3785229826872 40.6064 0.2544 1612 +1614 3 -50.29265617568575 -1211.9709867982203 40.3575 0.2543 1613 +1615 3 -49.39994443420949 -1212.6630921129163 40.0926 0.2541 1614 +1616 3 -48.841786825090594 -1213.6278634917326 39.8731 0.254 1615 +1617 3 -48.78156529959165 -1214.7658281343583 39.7312 0.2538 1616 +1618 3 -48.833658178722715 -1215.9043965257797 39.6427 0.2537 1617 +1619 3 -48.677923156965676 -1217.036003336027 39.538 0.2536 1618 +1620 3 -48.417541779597 -1218.147656694012 39.403 0.2534 1619 +1621 3 -48.14321771308278 -1219.256021979706 39.2787 0.2533 1620 +1622 3 -48.04000903452015 -1220.3850532762913 39.1714 0.2531 1621 +1623 3 -48.18308217721187 -1221.5176852005457 38.9908 0.253 1622 +1624 3 -48.13618657020521 -1222.6316786125744 38.7307 0.2528 1623 +1625 3 -47.735166015360846 -1223.6971463476993 38.4885 0.2527 1624 +1626 3 -47.25927506838758 -1224.7312658072344 38.2318 0.2526 1625 +1627 3 -46.80431262424315 -1225.772967335705 37.9266 0.2524 1626 +1628 3 -46.55694533218855 -1226.8657399208396 37.6015 0.2523 1627 +1629 3 -46.63149698916544 -1227.9939327015477 37.27 0.2521 1628 +1630 3 -46.866038817461856 -1229.1022648407459 36.8883 0.252 1629 +1631 3 -47.009920040355325 -1230.2139127947758 36.44 0.2518 1630 +1632 3 -46.79302826624007 -1231.305228394555 36.0273 0.2517 1631 +1633 3 -46.35543655124144 -1232.353616309863 35.7062 0.2515 1632 +1634 3 -45.94302048053288 -1233.4133707081182 35.425 0.2514 1633 +1635 3 -45.5953688926316 -1234.496852975361 35.1523 0.2513 1634 +1636 3 -45.2996176672184 -1235.5961558738686 34.8883 0.2511 1635 +1637 3 -45.0532227325952 -1236.7070158723345 34.6055 0.251 1636 +1638 3 -44.52376089631906 -1237.6491641960752 34.2121 0.2508 1637 +1639 3 -43.5460567299516 -1238.1694159169447 33.7414 0.2507 1638 +1640 3 -42.56668713895107 -1238.7250319752288 33.334 0.2505 1639 +1641 3 -41.65482733227907 -1239.406658664096 33.0898 0.2504 1640 +1642 3 -40.8896276705629 -1240.2495662318101 33.0268 0.2502 1641 +1643 3 -40.52620989481966 -1241.312675788852 33.0551 0.2501 1642 +1644 3 -40.28490231635982 -1242.4305364163802 33.1212 0.25 1643 +1645 3 -39.883253371762635 -1243.4970264657027 33.2256 0.2498 1644 +1646 3 -39.358670452372394 -1244.5120152738598 33.3418 0.2497 1645 +1647 3 -38.94001187603703 -1245.5733320816325 33.455 0.2495 1646 +1648 3 -38.63641980685941 -1246.6745061212523 33.5546 0.2494 1647 +1649 3 -38.68980539411638 -1247.8044786470568 33.6482 0.2492 1648 +1650 3 -38.89579210981532 -1248.9287122184091 33.7397 0.2491 1649 +1651 3 -38.73698463483606 -1250.0477488245533 33.8341 0.249 1650 +1652 3 -38.23516302172044 -1251.067337951903 33.934 0.2488 1651 +1653 3 -37.98707594389697 -1252.174458077191 34.062 0.2487 1652 +1654 3 -37.88600569879202 -1253.3087947580552 34.3073 0.2485 1653 +1655 3 -37.62383837316065 -1254.4126596380888 34.6503 0.2484 1654 +1656 3 -37.27806102795489 -1255.4972939532117 34.9188 0.2482 1655 +1657 3 -37.05747012737447 -1256.6184981204271 35.0602 0.2481 1656 +1658 3 -36.98365608357483 -1257.7589068265224 35.0375 0.248 1657 +1659 3 -37.07647105021243 -1258.8969170162695 34.8827 0.2478 1658 +1660 3 -36.86019604675056 -1260.0154919189367 34.6466 0.2477 1659 +1661 3 -36.154678329771286 -1260.909874388034 34.3952 0.2475 1660 +1662 3 -35.414149453108735 -1261.7760457122126 34.1611 0.2474 1661 +1663 3 -35.49186185774079 -1262.9101722669525 33.8923 0.2472 1662 +1664 3 -35.67578992320483 -1264.0330545612 33.6067 0.2471 1663 +1665 3 -34.830424387670405 -1264.7770342123536 33.7669 0.247 1664 +1666 3 -34.36887926434048 -1265.7704370003153 34.4781 0.2461 1665 +1667 3 -34.28808792437394 -1266.8849588885646 34.8869 0.2456 1666 +1668 3 -34.49718922508157 -1268.00183383503 35.2106 0.2451 1667 +1669 3 -34.4941826564027 -1269.107825227648 35.4808 0.2447 1668 +1670 3 -34.273051660502404 -1270.2234152789895 35.6908 0.2442 1669 +1671 3 -34.276231437517936 -1271.3586808774369 35.7832 0.2437 1670 +1672 3 -34.36784199046264 -1272.498650502729 35.7904 0.2433 1671 +1673 3 -34.28543518262927 -1273.6310777048143 35.7549 0.2429 1672 +1674 3 -34.14586957790823 -1274.7646415415606 35.6894 0.2424 1673 +1675 3 -34.352212572921815 -1275.855640596743 35.572 0.2419 1674 +1676 3 -34.87009311153554 -1276.8721488543215 35.4278 0.2415 1675 +1677 3 -35.31560376551079 -1277.9168319197506 35.2618 0.241 1676 +1678 3 -35.76574687317935 -1278.9629538641811 35.0916 0.2406 1677 +1679 3 -35.95997766814298 -1280.0558983267624 34.9549 0.2401 1678 +1680 3 -35.75630569582137 -1281.1715383348703 34.8592 0.2397 1679 +1681 3 -35.653055578008946 -1282.2964358338327 34.799 0.2392 1680 +1682 3 -35.70951361848819 -1283.4389785637404 34.7631 0.2388 1681 +1683 3 -35.76018715739389 -1284.5819566573427 34.743 0.2384 1682 +1684 3 -35.756983768537054 -1285.725506288229 34.727 0.2379 1683 +1685 3 -35.51317976079508 -1286.8298595903061 34.706 0.2374 1684 +1686 3 -35.08788475438831 -1287.8910881036459 34.6786 0.237 1685 +1687 3 -34.45305677673167 -1288.8276305152776 34.6441 0.2366 1686 +1688 3 -33.74904910345714 -1289.728340682851 34.589 0.2361 1687 +1689 3 -33.38893583719789 -1290.7839735951195 34.4859 0.2356 1688 +1690 3 -33.17791075061905 -1291.9071840530632 34.3748 0.2352 1689 +1691 3 -32.95219656525512 -1293.027938828438 34.2933 0.2347 1690 +1692 3 -32.85000709930699 -1294.1642873106607 34.2552 0.2343 1691 +1693 3 -32.63141156289208 -1295.2801446543472 34.1984 0.2338 1692 +1694 3 -31.998954074954668 -1296.2019456013809 34.0533 0.2334 1693 +1695 3 -31.108292472503194 -1296.905992730427 33.8363 0.2329 1694 +1696 3 -30.219449645351403 -1297.6179658960878 33.593 0.2325 1695 +1697 3 -29.28719351149448 -1298.2695657663196 33.3256 0.232 1696 +1698 3 -28.41203080453971 -1298.9965210650525 33.0697 0.2316 1697 +1699 3 -27.550537291219143 -1299.7426774873302 32.8325 0.2311 1698 +1700 3 -26.72623170870611 -1300.5331730323132 32.6578 0.2306 1699 +1701 3 -25.97207197607605 -1301.3909658264538 32.587 0.2302 1700 +1702 3 -25.827703437265882 -1302.497396992411 32.6474 0.2297 1701 +1703 3 -26.092991177429894 -1303.5950478908842 33.094 0.2292 1702 +1704 3 -35.32225191389222 -1264.3985393980554 33.4303 0.2411 1664 +1705 3 -34.42820912662353 -1265.0884179848608 33.0702 0.2368 1704 +1706 3 -33.55630166492301 -1265.8012930357859 32.6178 0.2368 1705 +1707 3 -32.582469514463014 -1266.3347238117356 32.0566 0.2368 1706 +1708 3 -31.646166160906034 -1266.9382922338036 31.4563 0.2368 1707 +1709 3 -31.24895635985507 -1267.9362607974113 30.8518 0.2368 1708 +1710 3 -30.86852895237365 -1268.9941971129035 30.3349 0.2368 1709 +1711 3 -30.295265679666045 -1269.9617736525965 29.8729 0.2368 1710 +1712 3 -29.732234948379528 -1270.9411567623279 29.449 0.2368 1711 +1713 3 -29.271482492031964 -1271.9726086196483 29.0091 0.2368 1712 +1714 3 -29.11500716910524 -1273.0660811676871 28.362 0.2368 1713 +1715 3 -29.349422152517604 -1273.2679212418839 27.4872 0.2368 1714 +1716 3 -29.95982931777985 -1273.9614591086201 26.1086 0.2367 1715 +1717 3 -30.43489619061245 -1274.962449955899 25.6664 0.2364 1716 +1718 3 -30.751646520523536 -1276.0527631533344 25.3546 0.2363 1717 +1719 3 -31.13152294092771 -1277.114853900503 24.8951 0.2361 1718 +1720 3 -31.320410013945775 -1278.1991142030347 24.3008 0.236 1719 +1721 3 -31.456720787003235 -1279.3034090428073 23.6793 0.2358 1720 +1722 3 -31.355251799360417 -1280.4013473582636 23.137 0.2357 1721 +1723 3 -31.344583384829548 -1281.51331086258 22.6352 0.2355 1722 +1724 3 -31.813810288692878 -1282.5215110622876 22.206 0.2354 1723 +1725 3 -32.53403535229171 -1283.3925368700363 21.8399 0.2352 1724 +1726 3 -33.50085687013251 -1283.9626362935055 21.4866 0.2351 1725 +1727 3 -34.383385819312196 -1284.663567719438 21.1046 0.2349 1726 +1728 3 -35.01569386251953 -1285.5987556462717 20.7426 0.2348 1727 +1729 3 -35.62343993050706 -1286.5565251889311 20.3853 0.2346 1728 +1730 3 -36.36754311217703 -1287.4127656837854 20.0519 0.2345 1729 +1731 3 -37.27494276817157 -1288.0927138320299 19.7467 0.2343 1730 +1732 3 -38.31558364477797 -1288.5362252929144 19.4043 0.2342 1731 +1733 3 -39.415206893979814 -1288.8052932393794 19.0078 0.234 1732 +1734 3 -40.523115276604926 -1288.9558519180032 18.4293 0.2338 1733 +1735 3 -41.633185407897884 -1288.8647612290665 17.8004 0.2337 1734 +1736 3 -42.73768627790179 -1288.6452367699258 17.3069 0.2335 1735 +1737 3 -43.780036498741765 -1288.249352800669 16.8505 0.2334 1736 +1738 3 -44.830493067877114 -1288.6331644945503 16.4831 0.2332 1737 +1739 3 -45.622154688886326 -1289.444688048011 16.2868 0.2331 1738 +1740 3 -46.62831557516495 -1289.9880251081522 16.2302 0.2329 1739 +1741 3 -47.55906728205673 -1290.6366660412716 16.3257 0.2328 1740 +1742 3 -48.231827711379026 -1291.5564573951874 16.5521 0.2326 1741 +1743 3 -48.86118924092699 -1292.5073239079666 16.7734 0.2325 1742 +1744 3 -49.5984410659932 -1293.3659263750237 16.9924 0.2323 1743 +1745 3 -50.5704211047011 -1293.953986579725 17.2838 0.2322 1744 +1746 3 -51.5469138607055 -1294.5018592816105 17.5189 0.232 1745 +1747 3 -52.19302934874611 -1295.432152878339 17.6854 0.2319 1746 +1748 3 -52.88228365367013 -1296.1700476900455 17.7998 0.2317 1747 +1749 3 -54.00688062480231 -1296.3765255157807 17.804 0.2316 1748 +1750 3 -55.10623899070555 -1296.6655027524598 17.6847 0.2314 1749 +1751 3 -56.138216915199735 -1297.1427771110384 17.4479 0.2313 1750 +1752 3 -57.05377466407003 -1297.8008596351065 17.143 0.2311 1751 +1753 3 -57.956585619971236 -1298.4752874725395 16.8385 0.2309 1752 +1754 3 -59.02002894032836 -1298.6347852919225 16.5534 0.2308 1753 +1755 3 -60.149643470308376 -1298.5731977634932 16.264 0.2306 1754 +1756 3 -61.10507868233793 -1299.091928402278 15.9227 0.2305 1755 +1757 3 -61.55029291635441 -1300.0826688858706 15.4957 0.2303 1756 +1758 3 -61.53676938418016 -1301.196985750177 15.0253 0.2302 1757 +1759 3 -61.39828636146052 -1302.1431710715692 13.8252 0.2299 1758 +1760 3 -61.3339057048446 -1303.1939476896255 12.7413 0.2297 1759 +1761 3 -60.78118801409522 -1303.972845086163 11.3779 0.2295 1760 +1762 3 -60.01749019231909 -1304.7172543062927 10.389 0.2294 1761 +1763 3 -59.46788770210367 -1305.6551219689986 9.5659 0.2292 1762 +1764 3 -59.37600096565512 -1306.761532619555 8.8981 0.2291 1763 +1765 3 -59.437565569636604 -1307.8212915164445 7.8529 0.2289 1764 +1766 3 -28.566586257124584 -1273.3225756185093 27.9877 0.2368 1714 +1767 3 -27.954304659210152 -1274.266168615969 27.7148 0.2365 1766 +1768 3 -27.55591336891365 -1275.3359522482124 27.5641 0.2364 1767 +1769 3 -27.383562639863214 -1276.4640365208604 27.4461 0.2362 1768 +1770 3 -26.879908223301754 -1277.4866073979533 27.3802 0.2361 1769 +1771 3 -26.100055391420597 -1278.3205080458765 27.3366 0.2359 1770 +1772 3 -25.690353778109625 -1279.384630707063 27.2341 0.2358 1771 +1773 3 -25.436426731317 -1280.4989601847792 27.1525 0.2356 1772 +1774 3 -25.205046064266412 -1281.6203402483234 27.1058 0.2355 1773 +1775 3 -24.753914196779704 -1282.6710870342517 27.0952 0.2354 1774 +1776 3 -24.439852019289845 -1283.7698163178652 27.1143 0.2352 1775 +1777 3 -24.441292797922074 -1284.9121122708289 27.1858 0.2351 1776 +1778 3 -24.171378433588814 -1286.0218968967479 27.3224 0.2349 1777 +1779 3 -24.024239277448544 -1287.1547964151214 27.4458 0.2348 1778 +1780 3 -23.908330661100024 -1288.2894027973773 27.5531 0.2346 1779 +1781 3 -24.078269182235488 -1289.4197672470282 27.6742 0.2345 1780 +1782 3 -24.326709158844437 -1290.5339424567787 27.8484 0.2343 1781 +1783 3 -24.487999448550454 -1291.663099391153 27.9645 0.2342 1782 +1784 3 -24.672209527042355 -1292.7484758129453 27.9896 0.234 1783 +1785 3 -24.017778581719824 -1293.6689778486868 27.9698 0.2339 1784 +1786 3 -23.195881826592654 -1294.4555545225792 27.9195 0.2337 1785 +1787 3 -22.44368463109106 -1295.3078629345282 27.8353 0.2336 1786 +1788 3 -21.61114187132239 -1296.0812050859445 27.7245 0.2334 1787 +1789 3 -21.034714749376576 -1297.04953664749 27.5971 0.2333 1788 +1790 3 -20.878183959053956 -1298.149783184263 27.3921 0.2331 1789 +1791 3 -20.96111104448562 -1299.2710339048879 27.0404 0.233 1790 +1792 3 -20.778423042388624 -1300.387481993197 26.6977 0.2328 1791 +1793 3 -20.38547779661667 -1301.4484055690618 26.4077 0.2327 1792 +1794 3 -19.949005302461217 -1302.4947816830122 26.1516 0.2325 1793 +1795 3 -19.89311439476336 -1303.59514664812 25.8945 0.2324 1794 +1796 3 -19.838304370242042 -1304.6826772183624 25.6257 0.2322 1795 +1797 3 -19.31447406365777 -1305.6834560450288 25.3381 0.2321 1796 +1798 3 -18.86611281350116 -1306.707734478541 25.0263 0.2319 1797 +1799 3 -18.542341752717505 -1307.7938052636187 24.6569 0.2318 1798 +1800 3 -18.059726773776504 -1308.810410232179 24.2282 0.2316 1799 +1801 3 -17.522444609136983 -1309.8069114993937 23.8456 0.2315 1800 +1802 3 -16.827264857740943 -1310.6888675262162 23.505 0.2313 1801 +1803 3 -15.873196850593331 -1311.2840988574962 23.2133 0.2312 1802 +1804 3 -15.047519475574632 -1312.0441712503525 22.975 0.231 1803 +1805 3 -14.389654287085591 -1312.974652563316 22.8043 0.2309 1804 +1806 3 -13.480344660581693 -1313.6215761315584 22.698 0.2307 1805 +1807 3 -12.3642777943179 -1313.8096934620412 22.6911 0.2306 1806 +1808 3 -11.373507176823466 -1314.348911148611 22.7407 0.2304 1807 +1809 3 -10.417517379260687 -1314.9778232863187 22.7535 0.2303 1808 +1810 3 -9.316828571112353 -1315.272114838384 22.7615 0.2301 1809 +1811 3 -8.175974882821492 -1315.3390015479258 22.7989 0.23 1810 +1812 3 -7.055173252263614 -1315.1240575902561 22.9073 0.2298 1811 +1813 3 -5.913183621848418 -1315.1097228762974 23.0317 0.2297 1812 +1814 3 -4.837064992684702 -1315.4862588585975 23.1595 0.2295 1813 +1815 3 -3.696931090162707 -1315.5387980279859 23.3285 0.2294 1814 +1816 3 -2.6406648987442622 -1315.9704981355449 23.5171 0.2292 1815 +1817 3 -1.9241041510957189 -1316.8566841740997 23.708 0.2291 1816 +1818 3 -1.7024330598754887 -1317.9666601095673 24.1195 0.2289 1817 +1819 3 -54.372814977472785 -1191.3687980882264 43.4277 0.2467 1592 +1820 3 -53.279464562898966 -1191.6904896034257 43.6601 0.2462 1819 +1821 3 -52.175306275500475 -1191.9772490433215 43.8281 0.2458 1820 +1822 3 -51.05906521173239 -1191.9800324868456 44.1731 0.2454 1821 +1823 3 -50.023643834018515 -1191.5583928533042 44.6043 0.245 1822 +1824 3 -48.9966713695203 -1191.767703285826 45.0145 0.2447 1823 +1825 3 -48.00981962311653 -1192.3093297997816 45.4846 0.2443 1824 +1826 3 -46.916832413223176 -1192.3571605326802 45.9592 0.2439 1825 +1827 3 -45.81504980671491 -1192.131135206675 46.4335 0.2436 1826 +1828 3 -45.120655211073085 -1192.9222516301825 46.9608 0.2432 1827 +1829 3 -44.51123252492164 -1193.832739845155 47.5096 0.2428 1828 +1830 3 -43.38927743174719 -1193.8709814311565 48.0421 0.2424 1829 +1831 3 -42.29530824592155 -1194.0472100056386 48.5901 0.242 1830 +1832 3 -41.3400303144515 -1194.6337157376192 49.1439 0.2417 1831 +1833 3 -40.37666447818407 -1195.2003426920724 49.7454 0.2413 1832 +1834 3 -39.3644023380935 -1195.6565085607422 50.2835 0.2409 1833 +1835 3 -38.27712674856002 -1195.6515073204346 50.7786 0.2405 1834 +1836 3 -37.28779649610726 -1195.109242531257 51.1221 0.2402 1835 +1837 3 -36.37247080349857 -1194.4311131583122 51.3377 0.2398 1836 +1838 3 -35.35484352074059 -1193.9478697896184 51.4587 0.2395 1837 +1839 3 -34.22497881045962 -1193.778415617461 51.5024 0.2391 1838 +1840 3 -33.1072356049778 -1193.5869496502519 51.4548 0.2387 1839 +1841 3 -32.12143029917087 -1193.04544298451 51.3699 0.2384 1840 +1842 3 -31.352905802526664 -1192.2050624825597 51.4102 0.238 1841 +1843 3 -30.55299159104254 -1191.4354185751158 51.6127 0.2376 1842 +1844 3 -29.50089903863949 -1191.0170303927086 51.8322 0.2373 1843 +1845 3 -28.448001507617732 -1190.612937384642 52.0257 0.2369 1844 +1846 3 -27.494966919209332 -1189.985461828706 52.1968 0.2365 1845 +1847 3 -26.782129513414645 -1189.1484395871257 52.3639 0.2362 1846 +1848 3 -26.277001278399553 -1188.1262710510268 52.5101 0.2358 1847 +1849 3 -25.540553739415373 -1187.2774360362425 52.6039 0.2355 1848 +1850 3 -24.641624009474754 -1186.570531806075 52.673 0.2351 1849 +1851 3 -23.870996315456352 -1185.7423573092374 52.7209 0.2347 1850 +1852 3 -23.18090039307191 -1184.8333909578755 52.7335 0.2344 1851 +1853 3 -22.457922534408738 -1183.9471742936885 52.7464 0.234 1852 +1854 3 -21.94784380935613 -1182.9420349281033 52.817 0.2336 1853 +1855 3 -21.43985735511467 -1181.9289085478786 52.9617 0.2333 1854 +1856 3 -20.72293680099972 -1181.0504060953565 53.2182 0.2329 1855 +1857 3 -19.87338118411475 -1180.3133997562932 53.6698 0.2325 1856 +1858 3 -18.863215132911193 -1179.8924939366666 54.3007 0.2321 1857 +1859 3 -17.778203300872917 -1179.7547179796316 55.0883 0.2318 1858 +1860 3 -16.756899407649144 -1179.4720486185647 56.1042 0.2313 1859 +1861 3 -15.68835062477416 -1179.270442198487 56.9663 0.231 1860 +1862 3 -14.589845797204646 -1179.4170026426946 57.6428 0.2306 1861 +1863 3 -13.530340466287782 -1179.7796873318653 58.1997 0.2302 1862 +1864 3 -12.415245655681701 -1179.6931443173623 58.737 0.2299 1863 +1865 3 -11.295633718133956 -1179.5112113371179 59.0766 0.2295 1864 +1866 3 -10.32021943625955 -1178.9331304096381 59.4569 0.2292 1865 +1867 2 -68.22581972427406 -1153.4781047342497 38.0766 0.1144 610 +1868 2 -68.5956949321764 -1152.4109825010546 38.472 0.1144 1867 +1869 2 -69.14494863662037 -1151.419257449362 38.8354 0.1144 1868 +1870 2 -69.50921283023195 -1150.3459865156028 39.1776 0.1144 1869 +1871 2 -69.42704386823573 -1149.2212108483318 39.5072 0.1144 1870 +1872 2 -68.96067518359882 -1148.20396849275 40.0131 0.1144 1871 +1873 2 -68.94159978683234 -1147.3435805748675 38.1422 0.1144 1872 +1874 2 -68.98216838789921 -1146.2070345799302 37.8454 0.1144 1873 +1875 2 -68.82976658964901 -1145.1638643580154 37.7216 0.1144 1874 +1876 2 -68.33220329384051 -1144.1383639013288 37.518 0.1144 1875 +1877 2 -67.42271757020114 -1143.4530251759556 37.2669 0.1144 1876 +1878 2 -67.01939710447897 -1144.174679589044 36.619 0.1144 1877 +1879 2 -66.65784736826504 -1145.2523187857344 36.4011 0.1144 1878 +1880 2 -66.7853716586938 -1146.3795015638811 36.3334 0.1144 1879 +1881 2 -66.930404236931 -1147.5133379018284 36.2639 0.1144 1880 +1882 2 -67.02927960969998 -1148.652373507356 36.1796 0.1144 1881 +1883 2 -67.07807890591022 -1149.7941995530782 36.0212 0.1144 1882 +1884 2 -67.07252215706336 -1150.9348940663208 35.8453 0.1144 1883 +1885 2 -67.19790181086825 -1152.0701490519573 35.6765 0.1144 1884 +1886 2 -67.31201258090852 -1153.2038768641596 35.4236 0.1144 1885 +1887 2 -67.61917445645923 -1154.2990953182625 35.1322 0.1144 1886 +1888 2 -68.1668668871759 -1155.2976575152918 34.8939 0.1144 1887 +1889 2 -68.71369646283159 -1156.2999150446662 34.7035 0.1144 1888 +1890 2 -69.5719386488127 -1157.048951492513 34.5318 0.1144 1889 +1891 2 -70.37499888726921 -1157.859499586959 34.3367 0.1144 1890 +1892 2 -71.2848457083162 -1158.54635145762 34.0987 0.1144 1891 +1893 2 -70.28891316659792 -1158.7815494005245 33.8993 0.1144 1892 +1894 2 -69.16108417643261 -1158.951755214005 33.7789 0.1144 1893 +1895 2 -68.01722512141492 -1158.9710161136238 33.7002 0.1144 1894 +1896 2 -66.88390664687665 -1159.0277445480313 33.6507 0.1144 1895 +1897 2 -65.8691090473007 -1159.483643124356 33.6129 0.1144 1896 +1898 2 -65.19365579408696 -1160.3925144863883 33.6098 0.1144 1897 +1899 2 -64.74448336214562 -1161.4444656860092 33.6616 0.1144 1898 +1900 2 -64.30680335271404 -1162.499490031389 33.7868 0.1144 1899 +1901 2 -63.74605481671375 -1163.4707681065938 34.0441 0.1144 1900 +1902 2 -62.83577283277856 -1164.0996042615047 34.4663 0.1144 1901 +1903 2 -61.76037158033705 -1164.4444188729228 34.8916 0.1144 1902 +1904 2 -60.65720106358924 -1164.690232686567 35.3125 0.1144 1903 +1905 2 -59.545532594158544 -1164.7816321070989 35.8593 0.1144 1904 +1906 2 -58.45789179934593 -1164.932288011263 36.5263 0.1144 1905 +1907 2 -57.36390409871791 -1165.174238421212 37.0796 0.1144 1906 +1908 2 -56.25021631670103 -1165.1356299482272 37.508 0.1144 1907 +1909 2 -55.17935481387491 -1165.35294240016 37.8865 0.1144 1908 +1910 2 -54.08830200780665 -1165.6074958412496 38.3373 0.1144 1909 +1911 2 -52.97257910922133 -1165.8147228992616 38.691 0.1144 1910 +1912 2 -51.95042770285153 -1166.3022545520355 38.9231 0.1144 1911 +1913 2 -50.99718829130666 -1166.9289837154524 39.1199 0.1144 1912 +1914 2 -50.12643218494975 -1167.6640471502951 39.3126 0.1144 1913 +1915 2 -49.24618763246116 -1168.39468685481 39.2888 0.1144 1914 +1916 2 -48.448203538952214 -1169.2080522318129 39.0813 0.1144 1915 +1917 2 -47.84175029090744 -1170.1727174939301 38.869 0.1144 1916 +1918 2 -47.295783966218266 -1171.1745624830905 38.635 0.1144 1917 +1919 2 -46.819297456529284 -1172.2098418154856 38.4238 0.1144 1918 +1920 2 -46.09191721695652 -1173.0893773958228 38.2676 0.1144 1919 +1921 2 -45.16500170346211 -1173.7563502219882 38.1788 0.1144 1920 +1922 2 -44.131793238277055 -1174.2465932305768 38.129 0.1144 1921 +1923 2 -43.01178967865678 -1174.4739609425283 38.0948 0.1144 1922 +1924 2 -41.887958643961895 -1174.685594601138 38.0696 0.1144 1923 +1925 2 -40.79852640794212 -1175.0337575703365 38.0405 0.1144 1924 +1926 2 -39.74688725428359 -1175.481800582214 37.9988 0.1144 1925 +1927 2 -38.67312439415639 -1175.8785655128863 37.9403 0.1144 1926 +1928 2 -37.58457691367164 -1176.2273896988745 37.8633 0.1144 1927 +1929 2 -36.49394336554195 -1176.570823307734 37.7678 0.1144 1928 +1930 2 -35.4888775737071 -1177.109236015685 37.5906 0.1144 1929 +1931 2 -34.53720367326275 -1177.7355188888446 37.324 0.1144 1930 +1932 2 -34.68169796167922 -1178.295619425012 37.0546 0.1144 1931 +1933 2 -35.12150620534766 -1179.3474790158325 36.8892 0.1144 1932 +1934 2 -35.9023281031204 -1180.176637489201 36.8262 0.1144 1933 +1935 2 -36.79550305694153 -1180.8908034376097 36.7483 0.1144 1934 +1936 2 -37.78490688314457 -1181.461402209686 36.6433 0.1144 1935 +1937 2 -38.76870210410334 -1182.0432261119267 36.5061 0.1144 1936 +1938 2 -39.42943552622535 -1182.9650152390545 36.2432 0.1144 1937 +1939 2 -40.39631180124036 -1183.3364227225725 37.5432 0.1144 1938 +1940 2 -41.37781662314802 -1183.8215256132792 38.2936 0.1144 1939 +1941 2 -42.16767247303022 -1184.5487162598133 39.1994 0.1144 1940 +1942 2 -42.90769560796315 -1185.3567877478417 39.9521 0.1144 1941 +1943 2 -43.57943372308773 -1186.2759507120045 40.0131 0.1144 1942 +1944 2 -44.21948880499701 -1187.2052188929524 39.5716 0.1144 1943 +1945 2 -44.0270667937541 -1186.799476684661 37.3831 0.1144 1944 +1946 2 -43.631560329434194 -1185.96829170123 35.952 0.1144 1945 +1947 2 -43.15787686820681 -1184.9694423889912 35.2929 0.1144 1946 +1948 2 -42.61464891453039 -1183.9895881700668 34.7365 0.1144 1947 +1949 2 -42.04935300586965 -1183.0284490616896 34.1062 0.1144 1948 +1950 2 -41.48722955865992 -1182.070551170421 33.4384 0.1144 1949 +1951 2 -40.911725418098854 -1181.1193358718701 32.779 0.1144 1950 +1952 2 -40.31399696499989 -1180.1758231658846 32.1712 0.1144 1951 +1953 2 -39.70963208182968 -1179.2322221654663 31.6114 0.1144 1952 +1954 2 -39.17219173130974 -1178.245243786963 31.103 0.1144 1953 +1955 2 -38.82037649082946 -1177.1749298906852 30.6793 0.1144 1954 +1956 2 -38.517133486369346 -1176.0821202639677 30.3106 0.1144 1955 +1957 2 -38.16741051670016 -1175.00381935305 29.9373 0.1144 1956 +1958 2 -37.61058694313988 -1174.0330979934793 29.4465 0.1144 1957 +1959 2 -36.99748243252412 -1173.1016147037403 28.8268 0.1144 1958 +1960 2 -36.38812330571619 -1172.1791243056462 28.1005 0.1144 1959 +1961 2 -35.78579143184152 -1171.2650617018194 27.2894 0.1144 1960 +1962 2 -35.21861517201535 -1170.3417371974929 26.3981 0.1144 1961 +1963 2 -34.69662065864287 -1169.401814808139 25.4374 0.1144 1962 +1964 2 -34.18572464333562 -1168.463314860593 24.4409 0.1144 1963 +1965 2 -33.675616476917696 -1167.5281163209484 23.4231 0.1144 1964 +1966 2 -33.136685905557385 -1166.6113546729434 22.3872 0.1144 1965 +1967 2 -32.49294911100071 -1165.7711456576776 21.3341 0.1144 1966 +1968 2 -31.831739264719374 -1164.9417944720026 20.2825 0.1144 1967 +1969 2 -31.169644662902897 -1164.1117820695376 19.2427 0.1144 1968 +1970 2 -30.49516195647857 -1163.2822542949966 18.2474 0.1144 1969 +1971 2 -29.791319851374965 -1162.4588605003376 17.3477 0.1144 1970 +1972 2 -29.080929610632722 -1161.628741981174 16.5117 0.1144 1971 +1973 2 -28.366259401392256 -1160.7947014893366 15.7294 0.1144 1972 +1974 2 -27.648298710813947 -1159.957229855916 14.9908 0.1144 1973 +1975 2 -26.88666321590364 -1159.149372601884 14.3125 0.1144 1974 +1976 2 -26.111399274072426 -1158.3505106485425 13.679 0.1144 1975 +1977 2 -25.332792485090465 -1157.5483027464675 13.0774 0.1144 1976 +1978 2 -24.5177726100178 -1156.7814639999006 12.4982 0.1144 1977 +1979 2 -23.484040273921096 -1156.3702530354212 11.9553 0.1144 1978 +1980 2 -22.445182243994168 -1155.941218848373 11.4373 0.1144 1979 +1981 2 -21.626422495743043 -1155.176072245006 10.9475 0.1144 1980 +1982 2 -20.827404658893613 -1154.3788079372657 10.4934 0.1144 1981 +1983 2 -20.02697058340192 -1153.5792645358224 10.0836 0.1144 1982 +1984 2 -18.918910235183375 -1153.337290229943 9.8689 0.1144 1983 +1985 2 -17.789586312758843 -1153.1493875470464 9.8211 0.1144 1984 +1986 2 -16.66668389387337 -1152.9640234252186 10.0965 0.1144 1985 +1987 2 -44.37491901307391 -1187.5531263668836 39.5024 0.1144 1944 +1988 2 -44.84168092961886 -1188.596082053029 39.4397 0.1144 1987 +1989 2 -45.306174679023684 -1189.6362349873439 39.6642 0.1144 1988 +1990 2 -45.76500814990811 -1190.6636356180602 40.1523 0.1144 1989 +1991 2 -46.2173489525498 -1191.6775375355382 40.8279 0.1144 1990 +1992 2 -46.850294595563014 -1192.5660477003594 41.5691 0.1144 1991 +1993 2 -47.61986233025374 -1193.3587085873237 42.287 0.1144 1992 +1994 2 -48.410857916379996 -1194.1363692348614 42.9666 0.1144 1993 +1995 2 -49.20582473940965 -1194.916353516935 43.6184 0.1144 1994 +1996 2 -50.000706369589466 -1195.696285433196 44.2492 0.1144 1995 +1997 2 -50.717947274398966 -1196.5481046067698 44.8652 0.1144 1996 +1998 2 -51.30618417978309 -1197.4938823783127 45.4692 0.1144 1997 +1999 2 -51.83876853786461 -1198.47787590549 46.0639 0.1144 1998 +2000 2 -52.36444917352941 -1199.46431659772 46.6525 0.1144 1999 +2001 2 -52.82462771835236 -1200.4830361699696 47.238 0.1144 2000 +2002 2 -53.202729904289754 -1201.5346458822628 47.8229 0.1144 2001 +2003 2 -53.552183172567254 -1202.598108421937 48.4078 0.1144 2002 +2004 2 -53.89910098135931 -1203.661303669266 48.9941 0.1144 2003 +2005 2 -54.272972463028054 -1204.7155950119195 49.5754 0.1144 2004 +2006 2 -54.67316922782044 -1205.762004764096 50.1508 0.1144 2005 +2007 2 -55.076188283219096 -1206.8059235976198 50.7256 0.1144 2006 +2008 2 -55.57303007674898 -1207.8043351371175 51.3111 0.1144 2007 +2009 2 -56.194295089286925 -1208.7313266334086 51.9184 0.1144 2008 +2010 2 -56.86180629426269 -1209.622419805435 52.5535 0.1144 2009 +2011 2 -57.530841571089184 -1210.5089328895806 53.2221 0.1144 2010 +2012 2 -58.198132338902894 -1211.391791293398 53.9302 0.1144 2011 +2013 2 -58.86301738091373 -1212.2718797724215 54.6809 0.1144 2012 +2014 2 -59.0771078230772 -1213.2561292746182 55.5708 0.1144 2013 +2015 2 -58.85212332607176 -1214.2928184354118 56.6017 0.1144 2014 +2016 2 -58.58241878608925 -1215.2886379527506 57.8038 0.1144 2015 +2017 2 -58.45500272477466 -1216.1623938439006 59.4905 0.1144 2016 +2018 2 -58.805102897607355 -1217.1591122339096 60.5629 0.1144 2017 +2019 2 -59.19235025453446 -1218.1719733223877 61.4527 0.1144 2018 +2020 2 -59.58725876477706 -1219.2029249257803 62.1886 0.1144 2019 +2021 2 -60.0202163443783 -1220.2330838621906 62.7939 0.1144 2020 +2022 2 -60.62635856359856 -1221.1804771016 63.3021 0.1144 2021 +2023 2 -61.235182413179416 -1222.1321010452782 63.7476 0.1144 2022 +2024 2 -61.84551940804812 -1223.0833638915487 64.1735 0.1144 2023 +2025 2 -62.45572666923431 -1224.0371293702674 64.5772 0.1144 2024 +2026 2 -63.06690387880519 -1224.9916084315892 64.9496 0.1144 2025 +2027 2 -63.66400324961461 -1225.9602060783852 65.2506 0.1144 2026 +2028 2 -64.24033908736146 -1226.9362304131887 65.627 0.1144 2027 +2029 2 -38.68569664965605 -1183.3994825605869 35.7266 0.1144 1938 +2030 2 -37.70503435052967 -1183.9636944844879 35.3128 0.1144 2029 +2031 2 -36.71093181244771 -1184.4953472318512 34.8351 0.1144 2030 +2032 2 -35.90602417365784 -1185.2346153449316 34.2471 0.1144 2031 +2033 2 -35.40875051392226 -1186.2315283588568 33.7212 0.1144 2032 +2034 2 -35.29654963625154 -1187.340242412637 33.3113 0.1144 2033 +2035 2 -35.699477988170884 -1188.3734238455033 32.998 0.1144 2034 +2036 2 -35.76792849230327 -1189.4723947861949 32.7113 0.1144 2035 +2037 2 -35.42772382372169 -1190.5523552083746 32.4528 0.1144 2036 +2038 2 -35.51257200703196 -1191.6639877491853 32.2162 0.1144 2037 +2039 2 -35.77500152796949 -1192.7706808035327 31.9141 0.1144 2038 +2040 2 -36.213875751873275 -1193.815275574529 31.5921 0.1144 2039 +2041 2 -36.83249988076392 -1194.7662327907874 31.2665 0.1144 2040 +2042 2 -37.132056070394924 -1195.8365867412422 30.7896 0.1144 2041 +2043 2 -37.01495845357272 -1196.9141195194602 29.9832 0.1144 2042 +2044 2 -36.53906819913607 -1197.9241763523821 29.3804 0.1144 2043 +2045 2 -36.287778934407754 -1199.021228906015 28.8761 0.1144 2044 +2046 2 -36.08229128836962 -1200.1222540816243 28.3254 0.1144 2045 +2047 2 -35.74093255362419 -1200.8699045308404 26.9321 0.1144 2046 +2048 2 -35.85347220780238 -1200.2783435058927 25.6335 0.1144 2047 +2049 2 -34.866112003706064 -1199.8594830071975 24.8178 0.1144 2048 +2050 2 -33.77323571091944 -1199.6777851847976 24.1178 0.1144 2049 +2051 2 -32.668059607957844 -1199.4899355602502 23.5766 0.1144 2050 +2052 2 -31.844281489669868 -1199.8296611286582 23.2242 0.1144 2051 +2053 2 -32.23795035013603 -1200.8450607782047 23.2341 0.1144 2052 +2054 2 -32.856304085098316 -1201.805242249833 23.3661 0.1144 2053 +2055 2 -33.54799834562044 -1202.7138998696 23.5344 0.1144 2054 +2056 2 -34.3955414686107 -1203.4738496144332 23.7114 0.1144 2055 +2057 2 -34.588350514302476 -1204.553829948467 23.9434 0.1144 2056 +2058 2 -34.55454497540671 -1205.6946504012726 24.1355 0.1144 2057 +2059 2 -34.42491720865786 -1206.8275146835622 24.3346 0.1144 2058 +2060 2 -34.865624236007534 -1207.8691277048156 24.5407 0.1144 2059 +2061 2 -35.54800594672719 -1208.784151360726 24.7092 0.1144 2060 +2062 2 -36.0954639121357 -1209.785386575903 24.8781 0.1144 2061 +2063 2 -36.60171136799386 -1210.8055433106438 25.12 0.1144 2062 +2064 2 -37.10220404773253 -1211.832961763626 25.2684 0.1144 2063 +2065 2 -37.625155505317025 -1212.8500046058948 25.3301 0.1144 2064 +2066 2 -38.274971836332725 -1213.7918460925289 25.3103 0.1144 2065 +2067 2 -38.91225940249495 -1214.7408938300082 25.2176 0.1144 2066 +2068 2 -39.344062915932454 -1215.4387427934548 26.0314 0.1144 2067 +2069 2 -40.206727115730644 -1216.1368543378276 26.269 0.1144 2068 +2070 2 -41.25783259001969 -1216.5721255198732 26.2441 0.1144 2069 +2071 2 -42.36565778039363 -1216.8408354705134 26.398 0.1144 2070 +2072 2 -42.32971190840908 -1216.8294221323836 27.4054 0.1144 2071 +2073 2 -41.65049224142848 -1216.481765140527 29.1886 0.1144 2072 +2074 2 -41.83402216275948 -1215.8291363501903 30.3366 0.1144 2073 +2075 2 -42.72019397236187 -1215.2351323570506 31.3334 0.1144 2074 +2076 2 -43.687233619285564 -1214.7673679491722 32.2731 0.1144 2075 +2077 2 -44.63822878244787 -1214.4763767987195 33.6549 0.1144 2076 +2078 2 -43.230563126991285 -1217.2098977978062 26.125 0.1144 2071 +2079 2 -44.168847638589114 -1217.8310066250624 25.6769 0.1144 2078 +2080 2 -45.12390944157488 -1218.4005683622584 25.0301 0.1144 2079 +2081 2 -46.121100751419306 -1218.7006960543677 24.1299 0.1144 2080 +2082 2 -46.52440010333589 -1219.6656725580938 22.9975 0.1144 2081 +2083 2 -39.69733774077133 -1214.9186231263252 24.8721 0.1144 2067 +2084 2 -40.8000896031279 -1215.1694246615461 24.4608 0.1144 2083 +2085 2 -41.89790028019621 -1215.4171889796285 23.9634 0.1144 2084 +2086 2 -42.99263230087604 -1215.665760685376 23.4154 0.1144 2085 +2087 2 -44.09410686832598 -1215.8661250466307 22.8672 0.1144 2086 +2088 2 -45.21181001963117 -1216.0053319629906 22.3615 0.1144 2087 +2089 2 -46.32951868156596 -1216.1552239141952 21.9057 0.1144 2088 +2090 2 -47.33006034978905 -1216.5875862277117 21.5268 0.1144 2089 +2091 2 -48.195209359769876 -1217.3274867146215 21.2365 0.1144 2090 +2092 2 -49.06195670788827 -1218.0670784699364 21.0108 0.1144 2091 +2093 2 -49.93071585736493 -1218.807789446094 20.8325 0.1144 2092 +2094 2 -50.363519062326134 -1219.7291589245203 20.6728 0.1144 2093 +2095 2 -50.25042181002095 -1220.8654933785965 20.5094 0.1144 2094 +2096 2 -50.56144508866788 -1221.8516910109906 20.3637 0.1144 2095 +2097 2 -51.52269082830139 -1222.4331531232874 20.3035 0.1144 2096 +2098 2 -52.572051101040984 -1222.8888322516173 20.3139 0.1144 2097 +2099 2 -53.628373665176184 -1223.328601430277 20.3572 0.1144 2098 +2100 2 -54.73035268341454 -1223.6178983251143 20.3221 0.1144 2099 +2101 2 -55.850798727194444 -1223.8420141723404 20.1838 0.1144 2100 +2102 2 -56.978688286937256 -1223.7765492120707 20.0299 0.1144 2101 +2103 2 -57.99536933926191 -1223.276147235811 19.9713 0.1144 2102 +2104 2 -58.98854947667877 -1222.7089480515378 20.0053 0.1144 2103 +2105 2 -59.80300241406934 -1221.9192044268239 20.159 0.1144 2104 +2106 2 -59.64799296765682 -1220.7993076764392 20.4597 0.1144 2105 +2107 2 -59.48258939572867 -1219.7226739836756 21.3147 0.1144 2106 +2108 2 -33.97884143096394 -1178.3162120749378 37.0835 0.1144 1931 +2109 2 -32.92095156791396 -1178.6609914502724 36.8354 0.1144 2108 +2110 2 -31.853066410875385 -1178.4758741053884 36.5879 0.1144 2109 +2111 2 -30.85259652858832 -1178.8559480385074 36.5005 0.1144 2110 +2112 2 -30.07554334695459 -1179.6942693151746 36.4622 0.1144 2111 +2113 2 -29.333542764253878 -1180.5649355343837 36.4507 0.1144 2112 +2114 2 -28.596398173991645 -1181.4385866049188 36.4468 0.1144 2113 +2115 2 -27.882678515840325 -1182.3333270698404 36.442 0.1144 2114 +2116 2 -27.189766239047913 -1183.2421484751067 36.435 0.1144 2115 +2117 2 -26.54740304763874 -1184.1888491618724 36.4252 0.1144 2116 +2118 2 -25.98660145328921 -1185.1842750565402 36.4118 0.1144 2117 +2119 2 -25.49889842564818 -1186.2179420226516 36.3924 0.1144 2118 +2120 2 -25.077076000074555 -1187.2800138522766 36.3661 0.1144 2119 +2121 2 -24.73531133102199 -1188.3711055995586 36.3314 0.1144 2120 +2122 2 -24.238034569703245 -1189.374707409368 36.2782 0.1144 2121 +2123 2 -23.495011672804935 -1190.2447452388244 36.1967 0.1144 2122 +2124 2 -22.73074603085348 -1191.0949176263625 36.0942 0.1144 2123 +2125 2 -21.966119291494238 -1191.943576868613 35.9778 0.1144 2124 +2126 2 -21.201716090880154 -1192.793782083188 35.8557 0.1144 2125 +2127 2 -20.437450448928644 -1193.6439544707264 35.735 0.1144 2126 +2128 2 -19.672823709569514 -1194.4926137129767 35.6227 0.1144 2127 +2129 2 -18.90886679921283 -1195.3443844386525 35.5312 0.1144 2128 +2130 2 -18.100639237719747 -1196.1501622360897 35.4721 0.1144 2129 +2131 2 -17.162105362152545 -1196.785813126448 35.4449 0.1144 2130 +2132 2 -16.136505684470194 -1197.2942318428006 35.4444 0.1144 2131 +2133 2 -15.111586762353454 -1197.8015430521064 35.464 0.1144 2132 +2134 2 -14.065640714252481 -1198.2624759262449 35.5113 0.1144 2133 +2135 2 -12.994146021265522 -1198.6620436087478 35.593 0.1144 2134 +2136 2 -11.918118095581121 -1199.0493169917054 35.6947 0.1144 2135 +2137 2 -10.843060118281585 -1199.4373039572656 35.7994 0.1144 2136 +2138 2 -9.737389378131866 -1199.700361867956 35.8462 0.1144 2137 +2139 2 -8.680383578080352 -1200.0698650866934 35.7972 0.1144 2138 +2140 2 -7.738906290436887 -1200.714505767113 35.6891 0.1144 2139 +2141 2 -6.833100686730063 -1201.4105354635292 35.5494 0.1144 2140 +2142 2 -5.927157524360666 -1202.1065979869827 35.3979 0.1144 2141 +2143 2 -5.0203296064563006 -1202.801999293646 35.2531 0.1144 2142 +2144 2 -4.200392286874489 -1203.589780381231 35.1456 0.1144 2143 +2145 2 -3.5386082272948443 -1204.5178528668089 35.1014 0.1144 2144 +2146 2 -2.9415027651361356 -1205.4936634821743 35.1134 0.1144 2145 +2147 2 -2.3453344243251877 -1206.4700501214802 35.166 0.1144 2146 +2148 2 -1.7462695266211767 -1207.444656323153 35.2447 0.1144 2147 +2149 2 -1.1254272991735093 -1208.4044680018783 35.3318 0.1144 2148 +2150 2 -0.4918389712934186 -1209.3565623673558 35.415 0.1144 2149 +2151 2 0.14205808818161358 -1210.3070583946958 35.4906 0.1144 2150 +2152 2 0.7771595613495492 -1211.2595138575812 35.5594 0.1144 2151 +2153 2 1.4117702034271815 -1212.2109798333058 35.6247 0.1144 2152 +2154 2 2.046243286842298 -1213.1624129819934 35.6885 0.1144 2153 +2155 2 2.6807687360700925 -1214.1139313235308 35.754 0.1144 2154 +2156 2 3.3152418194852658 -1215.0653644722188 35.8221 0.1144 2155 +2157 2 3.949852461562841 -1216.0168304479432 35.8932 0.1144 2156 +2158 2 4.654615156689715 -1216.9143767662786 35.971 0.1144 2157 +2159 2 5.467070320868459 -1217.7161473981923 36.0581 0.1144 2158 +2160 2 6.319037050390705 -1218.4775501443046 36.1542 0.1144 2159 +2161 2 7.171717362515608 -1219.2399228388017 36.258 0.1144 2160 +2162 2 8.022832163539874 -1220.001849243041 36.3684 0.1144 2161 +2163 2 8.875374917002318 -1220.7641891105009 36.4837 0.1144 2162 +2164 2 9.727426839374345 -1221.5255394908004 36.6041 0.1144 2163 +2165 2 10.578594006211404 -1222.2875510878898 36.7298 0.1144 2164 +2166 2 11.43019963832603 -1223.05046697929 36.8626 0.1144 2165 +2167 2 12.282251560698057 -1223.8118173595892 37.0042 0.1144 2166 +2168 2 13.134664580477875 -1224.5716545946007 37.1582 0.1144 2167 +2169 2 13.991751493200582 -1225.3259191529883 37.3369 0.1144 2168 +2170 2 14.852437618856072 -1226.0751542316543 37.5449 0.1144 2169 +2171 2 15.711662965036453 -1226.824113405763 37.7784 0.1144 2170 +2172 2 16.570259921463958 -1227.5720502656739 38.0344 0.1144 2171 +2173 2 17.355996570610785 -1228.3916526376738 38.3197 0.1144 2172 +2174 2 17.896298822659844 -1229.375498507935 38.638 0.1144 2173 +2175 2 18.31299486186674 -1230.4313309335166 38.9858 0.1144 2174 +2176 2 18.729999632668637 -1231.4855650209604 39.3574 0.1144 2175 +2177 2 19.14642837953039 -1232.5388619870564 39.7463 0.1144 2176 +2178 2 19.563879440589744 -1233.5915305633998 40.147 0.1144 2177 +2179 2 19.979732163511414 -1234.6438904081479 40.5546 0.1144 2178 +2180 2 20.395617713470074 -1235.6961126942338 40.9668 0.1144 2179 +2181 2 20.8114704363918 -1236.748472538982 41.3834 0.1144 2180 +2182 2 21.22727079350068 -1237.8007471908804 41.8062 0.1144 2181 +2183 2 21.643569806679807 -1238.8515415245283 42.2372 0.1144 2182 +2184 2 22.05918806429338 -1239.9012283511286 42.6798 0.1144 2183 +2185 2 22.48969395738004 -1240.944581276086 43.1393 0.1144 2184 +2186 2 22.949635924479367 -1241.9724229939106 43.6234 0.1144 2185 +2187 2 23.420279363616032 -1242.9938041779933 44.1406 0.1144 2186 +2188 2 23.8891751921567 -1244.0121512465203 44.6978 0.1144 2187 +2189 2 24.358164825759843 -1245.0264497102735 45.302 0.1144 2188 +2190 2 24.815521376607535 -1246.037099696865 45.9808 0.1144 2189 +2191 2 25.22680591483686 -1247.042498050063 46.8448 0.1144 2190 +2192 2 25.604326862835478 -1248.0324967287602 47.8979 0.1144 2191 +2193 2 25.975770274973627 -1249.0059242409966 49.0552 0.1144 2192 +2194 2 26.34223347162026 -1249.9691489372663 50.2684 0.1144 2193 +2195 2 26.708377010109075 -1250.9297529812006 51.4982 0.1144 2194 +2196 2 27.07643854489345 -1251.893286409065 52.7083 0.1144 2195 +2197 2 27.447220740241676 -1252.8658291657666 53.8698 0.1144 2196 +2198 2 28.146700283000428 -1253.6673187909407 54.8355 0.1144 2197 +2199 2 28.98698017888131 -1254.3768626138146 55.6007 0.1144 2198 +2200 2 29.848637969431536 -1255.0839476525364 56.2344 0.1144 2199 +2201 2 30.71550733919827 -1255.797219729489 56.7714 0.1144 2200 +2202 2 31.587020876454062 -1256.5117454843642 57.2404 0.1144 2201 +2203 2 32.47433653017191 -1257.21244976626 57.6744 0.1144 2202 +2204 2 33.38735079377051 -1257.878576867094 58.1056 0.1144 2203 +2205 2 34.305091316125015 -1258.5392164841535 58.5337 0.1144 2204 +2206 2 35.22371659401449 -1259.1991948844232 58.9504 0.1144 2205 +2207 2 36.187008856531634 -1259.794155821775 59.3379 0.1144 2206 +2208 2 37.28248298388047 -1260.0755715397252 59.6285 0.1144 2207 +2209 2 38.39771884549515 -1260.3125605330738 59.8408 0.1144 2208 +2210 2 39.51509624215055 -1260.550932938028 59.9981 0.1144 2209 +2211 2 40.62220345225484 -1260.8359971331406 60.1266 0.1144 2210 +2212 2 41.162579278054125 -1261.7915090205033 60.2804 0.1144 2211 +2213 2 41.62935380286632 -1262.8327580555506 60.4685 0.1144 2212 +2214 2 42.09607596186578 -1263.8739218977476 60.6886 0.1144 2213 +2215 2 42.188409681108396 -1265.0028296638166 60.9224 0.1144 2214 +2216 2 41.98581817837271 -1266.1238024792851 61.1332 0.1144 2215 +2217 2 41.767674721790854 -1267.243535644977 61.3259 0.1144 2216 +2218 2 41.549084974951654 -1268.3648343217696 61.4989 0.1144 2217 +2219 2 41.33156990812256 -1269.485589801659 61.6585 0.1144 2218 +2220 2 41.11457849942093 -1270.6071972100467 61.8103 0.1144 2219 +2221 2 40.896126311244245 -1271.7285287138761 61.9587 0.1144 2220 +2222 2 40.67753656440493 -1272.8498273906687 62.1057 0.1144 2221 +2223 2 40.45908437622819 -1273.9711588944983 62.2516 0.1144 2222 +2224 2 40.24209296752656 -1275.092766302886 62.3946 0.1144 2223 +2225 2 40.0242168032899 -1276.2150349280632 62.5346 0.1144 2224 +2226 2 39.80567942226338 -1277.3364187977056 62.6702 0.1144 2225 +2227 2 39.587174868273905 -1278.4576651086854 62.7987 0.1144 2226 +2228 2 39.36921351118747 -1279.5799860996754 62.9191 0.1144 2227 +2229 2 39.151337346950754 -1280.702254724853 63.03 0.1144 2228 +2230 2 39.00536764736597 -1281.8366670867404 63.1156 0.1144 2229 +2231 2 38.89762911663496 -1282.9744599409084 63.1733 0.1144 2230 +2232 2 38.7911801924468 -1284.1141598648092 63.208 0.1144 2231 +2233 2 38.68407005146872 -1285.2529750331746 63.2265 0.1144 2232 +2234 2 38.31875368870368 -1286.334170091939 63.2344 0.1144 2233 +2235 2 37.49657751955186 -1287.1309966269382 63.2358 0.1144 2234 +2236 2 36.675286105935015 -1287.9271619451474 63.2358 0.1144 2235 +2237 2 35.8541322509808 -1288.7233600903937 63.2358 0.1144 2236 +2238 2 -71.69481823011336 -1158.6680582009471 33.4471 0.1144 1892 +2239 2 -72.65164985792097 -1159.1125235044603 32.4786 0.1144 2238 +2240 2 -73.46127364523528 -1159.8707632838275 32.0449 0.1144 2239 +2241 2 -73.88424884603143 -1160.9041767729555 31.7503 0.1144 2240 +2242 2 -74.18089685966976 -1162.001031902863 31.4121 0.1144 2241 +2243 2 -74.48031479810169 -1163.0954813069675 31.0545 0.1144 2242 +2244 2 -74.69284724039272 -1164.2090657720955 30.7115 0.1144 2243 +2245 2 -74.72391471004937 -1165.342692285692 30.403 0.1144 2244 +2246 2 -74.67443058520803 -1166.4805662248384 30.1398 0.1144 2245 +2247 2 -74.49071716733039 -1167.6030747192792 29.9079 0.1144 2246 +2248 2 -74.42163558545263 -1168.7355933173803 29.6394 0.1144 2247 +2249 2 -74.71312197664076 -1169.82117646194 29.2972 0.1144 2248 +2250 2 -75.02755177359876 -1170.9087721003946 28.896 0.1144 2249 +2251 2 -75.16136232325431 -1172.0303110372133 28.4903 0.1144 2250 +2252 2 -75.44941447127599 -1173.125873458995 28.1347 0.1144 2251 +2253 2 -75.51772362262614 -1174.2556286492209 27.83 0.1144 2252 +2254 2 -75.77939812171127 -1175.3591578543296 27.5626 0.1144 2253 +2255 2 -76.10603392378187 -1176.4488566901582 27.2696 0.1144 2254 +2256 2 -76.43026400004959 -1177.535785601193 26.9011 0.1144 2255 +2257 2 -76.75177961891973 -1178.6183462492968 26.4559 0.1144 2256 +2258 2 -77.07160309458965 -1179.697167024222 25.9476 0.1144 2257 +2259 2 -78.00471777997245 -1180.2021778200697 25.231 0.1144 2258 +2260 2 -78.58649284355226 -1181.0163907992078 24.5066 0.1144 2259 +2261 2 -78.5956953815691 -1182.1177965933155 23.9445 0.1144 2260 +2262 2 -78.425178148501 -1183.2188364896074 23.4286 0.1144 2261 +2263 2 -78.65211188183116 -1184.284930294428 22.8711 0.1144 2262 +2264 2 -79.36683204783787 -1185.1015117626866 22.2505 0.1144 2263 +2265 2 -79.74558253538169 -1185.619085446509 21.0406 0.1144 2264 +2266 2 -80.20230391259065 -1186.5779286628901 20.4067 0.1144 2265 +2267 2 -79.86024661769892 -1187.5843264058385 19.747 0.1144 2266 +2268 2 -80.0165159452003 -1188.6954897319442 19.2322 0.1144 2267 +2269 2 -79.98369748441854 -1189.8194271851112 18.8622 0.1144 2268 +2270 2 -79.79606519545024 -1190.9395268521662 18.5144 0.1144 2269 +2271 2 -79.83957382806415 -1192.0485209183757 18.129 0.1144 2270 +2272 2 -80.07999706457957 -1193.1537775027687 17.7752 0.1144 2271 +2273 2 -79.7264292231385 -1193.9060135504947 17.2782 0.1144 2272 +2274 2 -78.71386076049959 -1194.3779549117558 16.7721 0.1144 2273 +2275 2 -77.77207233221475 -1195.0036234233085 16.3563 0.1144 2274 +2276 2 -76.82174419824554 -1195.5971626113885 15.797 0.1144 2275 +2277 2 -76.7316026633464 -1196.6831653156605 15.1013 0.1144 2276 +2278 2 -76.89842729200984 -1197.7968257635848 14.6033 0.1144 2277 +2279 2 -77.10789959271477 -1198.8454957809104 14.1457 0.1144 2278 +2280 2 -78.03915685137952 -1199.4581768138992 13.6041 0.1144 2279 +2281 2 -78.62513790125956 -1200.3488075899122 13.1155 0.1144 2280 +2282 2 -78.6637405846688 -1201.4722758283747 12.7314 0.1144 2281 +2283 2 -79.10302965686623 -1202.4701732985827 12.231 0.1144 2282 +2284 2 -78.82970057045708 -1203.373733872381 11.6593 0.1144 2283 +2285 2 -78.29536732852341 -1204.3719303843789 11.271 0.1144 2284 +2286 2 -77.6710915504458 -1205.3176587137132 10.9113 0.1144 2285 +2287 2 -77.2079857341082 -1206.3462554533903 10.507 0.1144 2286 +2288 2 -77.23896560186864 -1207.462455770445 10.1296 0.1144 2287 +2289 2 -77.0651931235463 -1208.5775759145454 9.7615 0.1144 2288 +2290 2 -76.78481175248385 -1209.6782269885744 9.4305 0.1144 2289 +2291 2 -76.6737622301568 -1210.8091294262722 9.1381 0.1144 2290 +2292 2 -76.8885245019215 -1211.9146940497233 8.7309 0.1144 2291 +2293 2 -76.75853873934807 -1213.039356390841 8.3383 0.1144 2292 +2294 2 -75.84489608599648 -1213.7065058058724 7.9483 0.1144 2293 +2295 2 -74.83708981073346 -1214.1773834136861 7.2918 0.1144 2294 +2296 2 -78.59571378455456 -1180.1210440874547 26.504 0.1144 2259 +2297 2 -79.37087881914164 -1180.8043425940778 27.1401 0.1144 2296 +2298 2 -79.62802008552944 -1181.8955774996416 27.4317 0.1144 2297 +2299 2 -79.6724542203915 -1183.033429206877 27.6989 0.1144 2298 +2300 2 -79.79044242227263 -1184.1654320488421 27.9206 0.1144 2299 +2301 2 -79.96571915472413 -1185.2937956236979 28.091 0.1144 2300 +2302 2 -80.14198537433612 -1186.422650029644 28.2352 0.1144 2301 +2303 2 -80.32769077585016 -1187.5493245628822 28.3727 0.1144 2302 +2304 2 -80.25531630358813 -1188.6610381886715 28.4934 0.1144 2303 +2305 2 -79.67167742016727 -1189.6061559505188 28.5936 0.1144 2304 +2306 2 -78.9812622651935 -1190.5044220546229 28.67 0.1144 2305 +2307 2 -78.6141046162719 -1191.569223754865 28.7204 0.1144 2306 +2308 2 -78.52011709149582 -1192.705214241263 28.7809 0.1144 2307 +2309 2 -78.64549984688387 -1193.833780431015 28.95 0.1144 2308 +2310 2 -78.92450673744821 -1194.9331734294542 29.2916 0.1144 2309 +2311 2 -79.23034066878955 -1196.0194763597829 29.7508 0.1144 2310 +2312 2 -79.95538718127989 -1196.8519130028526 30.1196 0.1144 2311 +2313 2 -81.01126956362748 -1197.251150018481 30.2098 0.1144 2312 +2314 2 -82.09777501986304 -1197.6047682074511 30.0773 0.1144 2313 +2315 2 -83.04773095188295 -1198.2330511510522 29.8903 0.1144 2314 +2316 2 -83.867824154973 -1199.0177983130386 29.5677 0.1144 2315 +2317 2 -84.67325488314879 -1199.8136049428867 29.1698 0.1144 2316 +2318 2 -85.62179457652644 -1200.4396087927846 28.8408 0.1144 2317 +2319 2 -86.69558847587649 -1200.8270836845113 28.6628 0.1144 2318 +2320 2 -87.77223749286992 -1201.212205216248 28.6068 0.1144 2319 +2321 2 -67.26806771747061 -1143.195511015082 37.1546 0.1144 1877 +2322 2 -66.64133235088741 -1142.2556491953055 36.783 0.1144 2321 +2323 2 -65.98064036801503 -1141.3379938658009 36.5565 0.1144 2322 +2324 2 -65.6807754467892 -1140.2660415772084 36.3594 0.1144 2323 +2325 2 -65.87736159719873 -1139.1554365594516 36.2751 0.1144 2324 +2326 2 -66.30853491024152 -1138.0978212871905 36.4087 0.1144 2325 +2327 2 -66.5277417066801 -1136.9985382115474 36.6436 0.1144 2326 +2328 2 -66.66788884597088 -1135.8747222882982 36.9818 0.1144 2327 +2329 2 -66.74038995033249 -1134.7671948259451 37.5738 0.1144 2328 +2330 2 -66.51532735811475 -1133.7089418648889 38.4314 0.1144 2329 +2331 2 -65.94225496938691 -1132.823663328338 39.4612 0.1144 2330 +2332 2 -64.84928317271277 -1132.8124610216532 40.2576 0.1144 2331 +2333 2 -64.33384271349217 -1133.478579616949 40.7652 0.1144 2332 +2334 2 -63.715627341545996 -1134.4253333620638 41.1673 0.1144 2333 +2335 2 -63.11638344592967 -1135.3958385931505 41.3893 0.1144 2334 +2336 2 -62.553622416034784 -1136.3900600741254 41.4893 0.1144 2335 +2337 2 -62.06890113813665 -1137.4255598436825 41.5178 0.1144 2336 +2338 2 -61.60770480057812 -1138.472820020631 41.5243 0.1144 2337 +2339 2 -61.10075680109577 -1139.4986485520244 41.5307 0.1144 2338 +2340 2 -60.57264893505965 -1140.512879236746 41.54 0.1144 2339 +2341 2 -59.992070885761564 -1141.4988488197826 41.5537 0.1144 2340 +2342 2 -59.43171558166932 -1142.495840225551 41.5722 0.1144 2341 +2343 2 -58.89033795707343 -1143.5032055255224 41.5954 0.1144 2342 +2344 2 -58.36418952658261 -1144.5186406239368 41.6231 0.1144 2343 +2345 2 -58.00508695542129 -1145.603183543044 41.6856 0.1144 2344 +2346 2 -57.70091886230358 -1146.7052947040115 41.7785 0.1144 2345 +2347 2 -57.4269035273843 -1147.815258327843 41.86 0.1144 2346 +2348 2 -57.303068874421626 -1148.951683485399 41.8648 0.1144 2347 +2349 2 -57.05021650763928 -1150.066556160018 41.8768 0.1144 2348 +2350 2 -56.46134581368966 -1151.0421463382215 41.9384 0.1144 2349 +2351 2 -55.75921238311065 -1151.9440085536755 41.9978 0.1144 2350 +2352 2 -54.646489056533994 -1152.111409206279 42.0515 0.1144 2351 +2353 2 -53.59592126851828 -1151.6643783093782 42.1044 0.1144 2352 +2354 2 -52.4942070445893 -1151.9647302675749 42.1579 0.1144 2353 +2355 2 -52.27303659291704 -1151.2889485488913 41.995 0.1144 2354 +2356 2 -52.02628875950825 -1150.178513212319 41.799 0.1144 2355 +2357 2 -51.798162924121414 -1149.0620345993448 41.5834 0.1144 2356 +2358 2 -51.687436440481406 -1147.9357865334991 41.305 0.1144 2357 +2359 2 -51.95235656117711 -1146.8471125099043 41.0402 0.1144 2358 +2360 2 -52.490875966546696 -1145.8487893658069 40.8038 0.1144 2359 +2361 2 -53.11831869544562 -1144.8956172187359 40.5863 0.1144 2360 +2362 2 -53.71983075820219 -1143.92791473948 40.3603 0.1144 2361 +2363 2 -54.288073068705216 -1142.9423445915177 40.0546 0.1144 2362 +2364 2 -55.162988306179045 -1142.294469181245 39.615 0.1144 2363 +2365 2 -56.25049254861739 -1141.9933646102427 39.2104 0.1144 2364 +2366 2 -57.211554981660925 -1141.4064235145675 38.8564 0.1144 2365 +2367 2 -57.986196234325746 -1140.5787099048748 38.5532 0.1144 2366 +2368 2 -58.59497001532344 -1139.6167622017383 38.3253 0.1144 2367 +2369 2 -59.060669860125415 -1138.574969969788 38.1741 0.1144 2368 +2370 2 -59.30474426179569 -1137.4613924123414 38.0724 0.1144 2369 +2371 2 -59.444800697607036 -1136.3268390884346 37.9893 0.1144 2370 +2372 2 -59.48559515176919 -1135.1836238363892 37.9056 0.1144 2371 +2373 2 -59.66912957173457 -1134.0570143713621 37.8056 0.1144 2372 +2374 2 -59.93802162187029 -1132.9466013556903 37.6748 0.1144 2373 +2375 2 -60.240985301294984 -1131.8464496302681 37.5029 0.1144 2374 +2376 2 -60.74316801181834 -1130.8283736482063 37.1986 0.1144 2375 +2377 2 -61.188415369502934 -1129.7873912129676 36.8021 0.1144 2376 +2378 2 -61.12678098589083 -1128.6685469106824 36.3353 0.1144 2377 +2379 2 -61.15990507668448 -1127.5528965915369 35.7246 0.1144 2378 +2380 2 -61.540602185557475 -1126.5097986472883 35.0549 0.1144 2379 +2381 2 -61.80248198753145 -1125.4327546048657 34.4047 0.1144 2380 +2382 2 -61.39933870907976 -1124.4020234386348 33.7588 0.1144 2381 +2383 2 -61.6010864819396 -1123.3026904062258 33.1635 0.1144 2382 +2384 2 -61.8172201326193 -1122.2148997530926 32.5248 0.1144 2383 +2385 2 -62.36015164921622 -1121.2353697799495 31.9589 0.1144 2384 +2386 2 -62.873065557230916 -1120.2305806861764 31.5328 0.1144 2385 +2387 2 -63.14711612823368 -1119.1381284517365 31.1144 0.1144 2386 +2388 2 -63.14758792996372 -1118.0078071401604 30.767 0.1144 2387 +2389 2 -63.4394202842862 -1116.9060954142672 30.5343 0.1144 2388 +2390 2 -63.77446333041763 -1115.8148630067394 30.3895 0.1144 2389 +2391 2 -63.956666704590475 -1114.686026813822 30.2991 0.1144 2390 +2392 2 -64.13667617790992 -1113.5586592253599 30.2408 0.1144 2391 +2393 2 -64.49288219217823 -1112.4723358686197 30.2061 0.1144 2392 +2394 2 -64.71299087388098 -1111.3561174275253 30.1717 0.1144 2393 +2395 2 -64.6002142512163 -1110.2179275473295 30.1249 0.1144 2394 +2396 2 -64.48650050720391 -1109.0791616431934 30.0658 0.1144 2395 +2397 2 -64.37350895800671 -1107.9434220296332 29.9818 0.1144 2396 +2398 2 -64.45724991321566 -1106.806532759554 29.8189 0.1144 2397 +2399 2 -64.83705133999064 -1105.7669925889886 29.6038 0.1144 2398 +2400 2 -65.59440946540599 -1104.950018789 29.4479 0.1144 2399 +2401 2 -65.99021293040425 -1103.8800530572612 29.3432 0.1144 2400 +2402 2 -66.56325886753297 -1102.897552953475 29.2838 0.1144 2401 +2403 2 -67.36271156549697 -1102.0863814773256 29.2656 0.1144 2402 +2404 2 -68.31073698877896 -1101.4484655214105 29.2849 0.1144 2403 +2405 2 -69.14071725674341 -1100.7621707343187 29.3468 0.1144 2404 +2406 2 -69.45214706810225 -1099.6658143494706 29.4353 0.1144 2405 +2407 2 -69.60592265431393 -1098.5330031255303 29.4949 0.1144 2406 +2408 2 -69.71350269739082 -1097.394568575663 29.5456 0.1144 2407 +2409 2 -69.74592482468137 -1096.2516065878165 29.6111 0.1144 2408 +2410 2 -69.66811861498684 -1095.113431428303 29.6554 0.1144 2409 +2411 2 -69.51270973349989 -1093.9811989391233 29.6806 0.1144 2410 +2412 2 -69.54712963400243 -1092.850263958477 29.6926 0.1144 2411 +2413 2 -69.86132937015486 -1091.7515018478261 29.6974 0.1144 2412 +2414 2 -70.26087270833148 -1090.6798439728873 29.692 0.1144 2413 +2415 2 -70.62736673141671 -1089.598553197451 29.6772 0.1144 2414 +2416 2 -70.88641706299302 -1088.4846731115756 29.6565 0.1144 2415 +2417 2 -71.13022727390108 -1087.36694221773 29.6285 0.1144 2416 +2418 2 -71.3371513898939 -1086.2439107576984 29.5918 0.1144 2417 +2419 2 -71.44726689245618 -1085.1057435001762 29.5338 0.1144 2418 +2420 2 -71.60086037917256 -1083.9755201015341 29.4395 0.1144 2419 +2421 2 -71.92565685573675 -1082.8833889103253 29.3314 0.1144 2420 +2422 2 -72.39656517817207 -1081.8420984360284 29.2443 0.1144 2421 +2423 2 -72.93140327934219 -1080.8320046505132 29.174 0.1144 2422 +2424 2 -73.47082146839278 -1079.8234349368486 29.1175 0.1144 2423 +2425 2 -73.99848304417145 -1078.8076387410265 29.071 0.1144 2424 +2426 2 -74.5324692168436 -1077.7970212973837 29.0293 0.1144 2425 +2427 2 -74.96216772226512 -1076.7505897160377 28.9722 0.1144 2426 +2428 2 -74.98442778030176 -1075.630843936936 28.8705 0.1144 2427 +2429 2 -74.8275471927767 -1074.5031063427864 28.7504 0.1144 2428 +2430 2 -74.93555949796502 -1073.3771450903769 28.6476 0.1144 2429 +2431 2 -75.22467739488985 -1072.2710651015523 28.5608 0.1144 2430 +2432 2 -75.42425149820855 -1071.1489152954728 28.4864 0.1144 2431 +2433 2 -75.50991044971306 -1070.0090966414637 28.4029 0.1144 2432 +2434 2 -75.61325196354136 -1068.8708739165456 28.2918 0.1144 2433 +2435 2 -75.56529839266301 -1067.7429491207195 28.1772 0.1144 2434 +2436 2 -75.4690077436091 -1066.6107844105711 28.0784 0.1144 2435 +2437 2 -75.80132161166011 -1065.5501541530823 27.9951 0.1144 2436 +2438 2 -76.35499904643098 -1064.5489406552579 27.922 0.1144 2437 +2439 2 -76.82020806014265 -1063.5081379104686 27.8503 0.1144 2438 +2440 2 -77.32474723223908 -1062.4862282501658 27.7695 0.1144 2439 +2441 2 -77.92033954910994 -1061.5107787322077 27.6615 0.1144 2440 +2442 2 -78.11209642564822 -1060.436293073718 27.4887 0.1144 2441 +2443 2 -78.2898401408739 -1059.323496564154 27.2432 0.1144 2442 +2444 2 -78.16061208814546 -1058.2208555299148 26.9026 0.1144 2443 +2445 2 -77.5273724342199 -1057.2957766139857 26.6077 0.1144 2444 +2446 2 -76.76650978342767 -1056.4494240003373 26.3275 0.1144 2445 +2447 2 -76.11548593713596 -1055.5162307451328 26.091 0.1144 2446 +2448 2 -76.08770825628048 -1054.4100979997327 25.9245 0.1144 2447 +2449 2 -75.78192669075187 -1053.3237098765544 25.8157 0.1144 2448 +2450 2 -75.95738821069128 -1052.2190184015167 25.7457 0.1144 2449 +2451 2 -76.61782719633234 -1051.2996269744058 25.6875 0.1144 2450 +2452 2 -77.39167508947804 -1050.4579269219678 25.6315 0.1144 2451 +2453 2 -77.78747545289329 -1049.394649986113 25.5686 0.1144 2452 +2454 2 -77.62577721059648 -1048.274750134145 25.4775 0.1144 2453 +2455 2 -77.10117125494187 -1047.2888526388183 25.2872 0.1144 2454 +2456 2 -77.38194655044907 -1046.1898522687397 25.0428 0.1144 2455 +2457 2 -77.87740212742162 -1045.1609505915874 24.876 0.1144 2456 +2458 2 -78.40973759614329 -1044.1507270723894 24.7576 0.1144 2457 +2459 2 -79.02399575933231 -1043.1907419063812 24.6239 0.1144 2458 +2460 2 -79.39716144857249 -1042.1270508147695 24.371 0.1144 2459 +2461 2 -79.57080729479526 -1041.0077445072338 24.0503 0.1144 2460 +2462 2 -79.97605235074215 -1039.9529727335166 23.784 0.1144 2461 +2463 2 -80.41340890789604 -1038.9313204629693 23.5345 0.1144 2462 +2464 2 -80.39397141941171 -1037.8007342680944 23.2407 0.1144 2463 +2465 2 -80.20326936521369 -1036.6777965064512 23.0065 0.1144 2464 +2466 2 -80.26008878204655 -1035.5740113263228 22.8107 0.1144 2465 +2467 2 -80.47115220629198 -1034.4616234618861 22.6803 0.1144 2466 +2468 2 -80.50103887409708 -1033.3183941816947 22.6038 0.1144 2467 +2469 2 -80.39414055806836 -1032.1838175425773 22.6022 0.1144 2468 +2470 2 -80.2298685186195 -1031.0528278047568 22.6284 0.1144 2469 +2471 2 -80.27088340994376 -1029.9178473209204 22.6144 0.1144 2470 +2472 2 -80.34313194264283 -1028.7778849050826 22.6055 0.1144 2471 +2473 2 -80.44496031118334 -1027.6400232775723 22.5849 0.1144 2472 +2474 2 -80.73269169491994 -1026.5384905495914 22.4881 0.1144 2473 +2475 2 -81.24738914215061 -1025.5241161030413 22.3854 0.1144 2474 +2476 2 -81.67647328596541 -1024.4677990495356 22.3392 0.1144 2475 +2477 2 -81.88406723096077 -1023.3478790729295 22.3195 0.1144 2476 +2478 2 -81.80011232070194 -1022.2153149277071 22.2873 0.1144 2477 +2479 2 -81.86362432753864 -1021.0807814266647 22.2265 0.1144 2478 +2480 2 -82.27292891482179 -1020.021696857412 22.1945 0.1144 2479 +2481 2 -82.83083395227828 -1019.0244905251113 22.2008 0.1144 2480 +2482 2 -83.18708140579633 -1017.9423009659944 22.2114 0.1144 2481 +2483 2 -82.7171402267937 -1016.9591333412844 22.2117 0.1144 2482 +2484 2 -82.33056949987574 -1015.8863544576882 22.1446 0.1144 2483 +2485 2 -82.85992252631803 -1014.8983607616575 22.0735 0.1144 2484 +2486 2 -83.72982980576 -1014.1560848728036 22.0143 0.1144 2485 +2487 2 -84.39041255322985 -1013.2232830268871 21.9672 0.1144 2486 +2488 2 -84.823236570223 -1012.1652738301813 21.9725 0.1144 2487 +2489 2 -85.28630715047703 -1011.1191657011128 21.9922 0.1144 2488 +2490 2 -85.8980657828007 -1010.1523620055378 21.9685 0.1144 2489 +2491 2 -86.45654684419728 -1009.1542185518894 21.9486 0.1144 2490 +2492 2 -86.30026961470486 -1008.2309769380405 21.9313 0.1144 2491 +2493 2 -86.14700226825863 -1007.0973610372552 21.9172 0.1144 2492 +2494 2 -86.24687120125373 -1005.9582949960519 21.907 0.1144 2493 +2495 2 -86.13767820032396 -1006.1032839216564 22.0968 0.1144 2494 +2496 2 -85.62358691093522 -1007.0227177943055 23.1794 0.1144 2495 +2497 2 -84.68463687901246 -1007.5627997210096 23.7511 0.1144 2496 +2498 2 -83.57204980303638 -1007.587901282134 24.2962 0.1144 2497 +2499 2 -82.49351483525857 -1007.8394674628511 24.9749 0.1144 2498 +2500 2 -82.67354014736597 -1008.4576786379366 26.4169 0.1144 2499 +2501 2 -83.04765979105207 -1009.4088274655174 27.3603 0.1144 2500 +2502 2 -83.88998072201468 -1010.0527643717919 28.3276 0.1144 2501 +2503 2 -84.98957904617052 -1010.1337730473373 29.078 0.1144 2502 +2504 2 -86.1046861684128 -1010.1679718181413 29.6918 0.1144 2503 +2505 2 -87.17855475447573 -1010.0397216334736 30.6006 0.1144 2504 +2506 2 -87.90453537571997 -1010.26986495312 31.3698 0.1144 2505 +2507 2 -87.51110619456057 -1011.2943377977635 32.0634 0.1144 2506 +2508 2 -86.86920401409154 -1012.2076335826598 32.655 0.1144 2507 +2509 2 -86.04514279947625 -1012.9257380350667 33.1794 0.1144 2508 +2510 2 -84.96549481402153 -1013.1659384253736 33.6935 0.1144 2509 +2511 2 -83.8751888260409 -1013.3188296696409 34.2289 0.1144 2510 +2512 2 -82.92374767439478 -1013.9010030673105 34.634 0.1144 2511 +2513 2 -82.01763644067606 -1014.5887456297049 34.8788 0.1144 2512 +2514 2 -81.01190392142172 -1015.1173580583464 35.0134 0.1144 2513 +2515 2 -79.91686446523084 -1015.4286209044832 35.0507 0.1144 2514 +2516 2 -78.78402071602704 -1015.5674555179264 35.0078 0.1144 2515 +2517 2 -77.65320756707231 -1015.7184546972323 34.8793 0.1144 2516 +2518 2 -76.62950537028465 -1016.1714622272935 34.6486 0.1144 2517 +2519 2 -75.79162199015346 -1016.9294314227758 34.3689 0.1144 2518 +2520 2 -75.05893085567223 -1017.8004204017259 34.1166 0.1144 2519 +2521 2 -74.3147918395139 -1018.665781236656 33.9251 0.1144 2520 +2522 2 -73.57640139630897 -1019.5372579451133 33.7971 0.1144 2521 +2523 2 -72.86317256924801 -1020.4310089228746 33.7277 0.1144 2522 +2524 2 -72.23413150221137 -1021.3844898015404 33.7056 0.1144 2523 +2525 2 -71.87776051817684 -1022.4558044013376 33.7126 0.1144 2524 +2526 2 -71.65042845589957 -1023.5770906598196 33.7338 0.1144 2525 +2527 2 -71.36492069847043 -1024.6839811378923 33.7655 0.1144 2526 +2528 2 -70.97491034725837 -1025.7575077448969 33.8103 0.1144 2527 +2529 2 -70.45874119398948 -1026.776377086478 33.8733 0.1144 2528 +2530 2 -69.82346072290923 -1027.7247315787772 33.9598 0.1144 2529 +2531 2 -69.16480458394767 -1028.6586002797242 34.0724 0.1144 2530 +2532 2 -68.40775139600765 -1029.5079238403473 34.2502 0.1144 2531 +2533 2 -67.52074137230167 -1030.216915256265 34.522 0.1144 2532 +2534 2 -66.59877014567851 -1030.8802365036854 34.8704 0.1144 2533 +2535 2 -65.65840656824867 -1031.512180347902 35.2531 0.1144 2534 +2536 2 -64.66105188649553 -1032.0512245471891 35.5989 0.1144 2535 +2537 2 -63.62874220499154 -1032.5312209862104 35.8708 0.1144 2536 +2538 2 -62.52539269033139 -1032.7729338292686 36.1679 0.1144 2537 +2539 2 -61.57531522839352 -1032.2519795641765 36.4188 0.1144 2538 +2540 2 -60.66698155263444 -1031.5647665961076 36.6948 0.1144 2539 +2541 2 -59.73863867312852 -1030.9122067918975 37.051 0.1144 2540 +2542 2 -58.778327645796224 -1030.3139468728123 37.4536 0.1144 2541 +2543 2 -57.81071276843642 -1029.7298610065973 37.8834 0.1144 2542 +2544 2 -56.85232834961241 -1029.1326679425424 38.3328 0.1144 2543 +2545 2 -55.95909723585888 -1028.4493386094805 38.843 0.1144 2544 +2546 2 -54.911255210588706 -1028.1048132256874 39.5018 0.1144 2545 +2547 2 -53.788107322820935 -1028.1167326301484 40.0254 0.1144 2546 +2548 2 -52.67108321057137 -1027.9349817493992 40.4438 0.1144 2547 +2549 2 -51.54241880611187 -1027.9207384314561 40.8887 0.1144 2548 +2550 2 -50.43306574976745 -1027.6873599911937 41.2605 0.1144 2549 +2551 2 -49.40772735692772 -1027.2034851311637 41.5999 0.1144 2550 +2552 2 -48.68737255964626 -1026.3349619558635 42.0686 0.1144 2551 +2553 2 -86.70515076829187 -1005.1495203374261 21.9118 0.1144 2494 +2554 2 -87.2684878221269 -1004.1543617351036 21.9265 0.1144 2553 +2555 2 -87.77681923321444 -1003.1306747387508 21.9473 0.1144 2554 +2556 2 -88.15329253352164 -1002.0528182064814 21.9751 0.1144 2555 +2557 2 -88.42637074709316 -1000.9422785587099 22.0119 0.1144 2556 +2558 2 -88.72288009594186 -999.8394507135566 22.0689 0.1144 2557 +2559 2 -89.1386421153841 -998.7763534681509 22.1604 0.1144 2558 +2560 2 -89.67489645519649 -997.7685387763387 22.2709 0.1144 2559 +2561 2 -90.13564891154405 -996.7370869190183 22.3685 0.1144 2560 +2562 2 -90.46993383423992 -995.6493794581364 22.4515 0.1144 2561 +2563 2 -91.10293451908035 -994.7265038310926 22.5245 0.1144 2562 +2564 2 -91.74344708477798 -993.8244441029241 22.5919 0.1144 2563 +2565 2 -91.85302731011333 -992.7154103909859 22.6605 0.1144 2564 +2566 2 -92.0830474900061 -991.6617444254911 22.7587 0.1144 2565 +2567 2 -92.1669342076423 -990.6296483744355 22.9114 0.1144 2566 +2568 2 -92.32661033240078 -989.5943686512776 23.0838 0.1144 2567 +2569 2 -92.88968009389063 -988.6017455084406 23.2872 0.1144 2568 +2570 2 -93.3010707488186 -987.5480515163166 23.4962 0.1144 2569 +2571 2 -93.63206519017666 -986.4569129138513 23.7242 0.1144 2570 +2572 2 -94.1797619957326 -985.4696303913767 23.9332 0.1144 2571 +2573 2 -94.59262986732833 -984.4221265390669 24.1065 0.1144 2572 +2574 2 -94.80600831389717 -983.3017711987662 24.3039 0.1144 2573 +2575 2 -95.02696031188523 -982.1820801768387 24.478 0.1144 2574 +2576 2 -95.11783635323579 -981.0467595194435 24.6124 0.1144 2575 +2577 2 -95.18906257173731 -979.9061687138528 24.7181 0.1144 2576 +2578 2 -95.31030939940183 -978.7695614568017 24.81 0.1144 2577 +2579 2 -94.96977165489895 -977.7047709729181 24.8911 0.1144 2578 +2580 2 -94.60343297793628 -976.6229475244012 24.9717 0.1144 2579 +2581 2 -95.04319836247618 -975.5973763827632 25.1512 0.1144 2580 +2582 2 -95.25591559225512 -974.4779057979978 25.3634 0.1144 2581 +2583 2 -95.3562308155077 -973.3404052678951 25.5328 0.1144 2582 +2584 2 -95.44277452254724 -972.2012478306759 25.658 0.1144 2583 +2585 2 -95.41621597606735 -971.0581852367603 25.7425 0.1144 2584 +2586 2 -95.1736574076775 -969.9409344722045 25.79 0.1144 2585 +2587 2 -95.3977732549038 -968.8204884284246 25.8049 0.1144 2586 +2588 2 -95.31698529546634 -967.6804804654656 25.8075 0.1144 2587 +2589 2 -94.98416245516492 -966.5855700504208 25.8097 0.1144 2588 +2590 2 -94.92052478771117 -965.4440137060903 25.8128 0.1144 2589 +2591 2 -94.61559274163406 -964.3407754103105 25.8171 0.1144 2590 +2592 2 -94.3746848771946 -963.2231307213099 25.823 0.1144 2591 +2593 2 -94.6116351192862 -962.1037655607065 25.8312 0.1144 2592 +2594 2 -94.38871165306267 -961.0267553573161 25.8542 0.1144 2593 +2595 2 -94.12939671713377 -959.9127036780822 25.8774 0.1144 2594 +2596 2 -94.01836460348196 -958.7781684782148 25.9049 0.1144 2595 +2597 2 -94.24221005677995 -957.6669466898044 25.9442 0.1144 2596 +2598 2 -94.70639675629403 -956.625515555262 26.0149 0.1144 2597 +2599 2 -95.22416424770054 -955.6063374820861 26.112 0.1144 2598 +2600 2 -95.55742685619887 -954.5180016314514 26.1936 0.1144 2599 +2601 2 -95.74563827069042 -953.3902760471645 26.2498 0.1144 2600 +2602 2 -95.92850286165319 -952.2605550987122 26.2817 0.1144 2601 +2603 2 -96.0736825822481 -951.126451166646 26.2893 0.1144 2602 +2604 2 -96.24723772499146 -949.9964074584527 26.2739 0.1144 2603 +2605 2 -96.3573532275538 -948.8582402009306 26.2403 0.1144 2604 +2606 2 -96.28204965030758 -947.7201947751 26.1951 0.1144 2605 +2607 2 -96.22977777326426 -946.5775254130925 26.1269 0.1144 2606 +2608 2 -96.12559701621629 -945.4406282410225 26.0147 0.1144 2607 +2609 2 -96.11427076542455 -944.2989466496657 25.8738 0.1144 2608 +2610 2 -96.27455304802504 -943.1687263526067 25.7321 0.1144 2609 +2611 2 -96.46472389806186 -942.0422051820127 25.5978 0.1144 2610 +2612 2 -96.65400999256363 -940.9150227946288 25.4755 0.1144 2611 +2613 2 -96.84324372125266 -939.7879256000949 25.3711 0.1144 2612 +2614 2 -97.03412815389214 -938.6604344811161 25.2896 0.1144 2613 +2615 2 -97.22399027233402 -937.5323149723846 25.2314 0.1144 2614 +2616 2 -97.41385239077593 -936.404195463653 25.1948 0.1144 2615 +2617 2 -97.57275126177117 -935.2718336315531 25.1899 0.1144 2616 +2618 2 -97.58552046462958 -934.1302902913955 25.2617 0.1144 2617 +2619 2 -97.4355959653339 -933.0000203393438 25.4449 0.1144 2618 +2620 2 -97.16928040034279 -931.8910560162732 25.6571 0.1144 2619 +2621 2 -96.74502721210345 -930.831267979792 25.7811 0.1144 2620 +2622 2 -96.37931692489369 -929.7484222170774 25.8468 0.1144 2621 +2623 2 -96.17244545365966 -928.6235274289352 25.8997 0.1144 2622 +2624 2 -96.06376980158103 -927.485158550827 25.8978 0.1144 2623 +2625 2 -96.0051702260611 -926.3439992325243 25.8138 0.1144 2624 +2626 2 -95.8248554016759 -925.2152386316409 25.6864 0.1144 2625 +2627 2 -95.55338372486406 -924.1056873580671 25.5406 0.1144 2626 +2628 2 -95.42011086148202 -922.9723887063932 25.384 0.1144 2627 +2629 2 -95.7704354675312 -921.8891409044585 25.2513 0.1144 2628 +2630 2 -96.32927762633545 -920.8925105960978 25.1312 0.1144 2629 +2631 2 -96.7689170713123 -919.838690664411 24.9495 0.1144 2630 +2632 2 -96.98042988739832 -918.7211795151909 24.688 0.1144 2631 +2633 2 -96.84474819663035 -917.5917997346075 24.3824 0.1144 2632 +2634 2 -96.58566152284331 -916.488452628994 24.0584 0.1144 2633 +2635 2 -96.66472238194308 -915.3593682740592 23.7236 0.1144 2634 +2636 2 -97.01049972714878 -914.2747339589362 23.445 0.1144 2635 +2637 2 -97.36795159435982 -913.1905849642737 23.249 0.1144 2636 +2638 2 -97.69479269931915 -912.0997105525705 23.1279 0.1144 2637 +2639 2 -97.72721482660972 -910.9567485647241 23.0349 0.1144 2638 +2640 2 -97.68194047704546 -909.8156806424374 23.0116 0.1144 2639 +2641 2 -97.81348624008982 -908.6798869762176 23.0575 0.1144 2640 +2642 2 -97.99822507374816 -907.5513180756454 23.131 0.1144 2641 +2643 2 -98.23066949424606 -906.4347001994768 23.2082 0.1144 2642 +2644 2 -98.68318477333798 -905.3860949485895 23.2611 0.1144 2643 +2645 2 -99.20523223324275 -904.3708388480874 23.2725 0.1144 2644 +2646 2 -99.5508305805362 -903.2821035623783 23.2153 0.1144 2645 +2647 2 -99.75414455703327 -902.1582616130985 23.0948 0.1144 2646 +2648 2 -99.98628024593623 -901.0400453987921 22.9719 0.1144 2647 +2649 2 -100.35776782012238 -899.9617066476451 22.8244 0.1144 2648 +2650 2 -100.85201898340188 -898.9347644060381 22.5947 0.1144 2649 +2651 2 -101.27668249847275 -897.8812470027801 22.2984 0.1144 2650 +2652 2 -101.59969853740395 -896.7920123684642 21.9718 0.1144 2651 +2653 2 -101.9751464219305 -895.7202162423262 21.6337 0.1144 2652 +2654 2 -102.19131530869373 -894.6499369785844 21.2777 0.1144 2653 +2655 2 -101.72067216618811 -893.6394576851734 20.8882 0.1144 2654 +2656 2 -101.12913075132016 -892.7011565584045 20.5276 0.1144 2655 +2657 2 -100.87498836440446 -891.5941578740453 20.2074 0.1144 2656 +2658 2 -100.57129596810384 -890.5064715321116 19.9592 0.1144 2657 +2659 2 -100.05404381924299 -889.4889409603355 19.7959 0.1144 2658 +2660 2 -99.57061623863828 -888.4599217601693 19.6809 0.1144 2659 +2661 2 -99.31232051532385 -887.3531872665724 19.5334 0.1144 2660 +2662 2 -99.39467736639094 -886.2382190880656 19.3395 0.1144 2661 +2663 2 -99.79155551139954 -885.16879655323 19.1546 0.1144 2662 +2664 2 -100.24401842467879 -884.1202764951925 18.9909 0.1144 2663 +2665 2 -100.70491464285507 -883.0754142190667 18.8551 0.1144 2664 +2666 2 -101.1971125655268 -882.0432189589935 18.7663 0.1144 2665 +2667 2 -101.71636037518411 -881.0235422297474 18.7361 0.1144 2666 +2668 2 -102.23955988296913 -880.0064118865496 18.7584 0.1144 2667 +2669 2 -102.64476349966623 -878.9475063152092 18.8291 0.1144 2668 +2670 2 -102.78473164104469 -877.819589421374 18.9447 0.1144 2669 +2671 2 -102.77241590309254 -876.6774169989269 19.0888 0.1144 2670 +2672 2 -102.95354080313541 -875.5787890316038 19.3399 0.1144 2671 +2673 2 -103.49428934544193 -874.5965086724428 19.8206 0.1144 2672 +2674 2 -103.80633902903713 -873.5207227945991 20.1256 0.1144 2673 +2675 2 -103.8826354739729 -872.4047292003117 19.6319 0.1144 2674 +2676 2 -93.5565460074682 -962.3280731310717 25.9259 0.1144 2593 +2677 2 -92.44068175610073 -962.5660844386181 26.1243 0.1144 2676 +2678 2 -91.32267596969245 -962.8054791577697 26.2118 0.1144 2677 +2679 2 -90.20472254909694 -963.0447886840716 26.3128 0.1144 2678 +2680 2 -89.08635566528108 -963.2826702579354 26.4241 0.1144 2679 +2681 2 -87.96889307577581 -963.5209902970768 26.54 0.1144 2680 +2682 2 -86.8509396551803 -963.7602998233784 26.6548 0.1144 2681 +2683 2 -85.73293386877211 -963.9996945425302 26.7636 0.1144 2682 +2684 2 -84.61461935076886 -964.2374909235441 26.8648 0.1144 2683 +2685 2 -83.49546461806352 -964.472071089507 26.9567 0.1144 2684 +2686 2 -82.35288114144251 -964.5003327057501 27.0205 0.1144 2685 +2687 2 -81.20906352567465 -964.5237274029918 27.0614 0.1144 2686 +2688 2 -80.06533110275655 -964.5471744660462 27.085 0.1144 2687 +2689 2 -78.9220449700959 -964.5721870402011 27.096 0.1144 2688 +2690 2 -77.777684157425 -964.596656417453 27.0992 0.1144 2689 +2691 2 -76.63395173450681 -964.6201034805075 27.0987 0.1144 2690 +2692 2 -75.49021931158873 -964.6435505435619 27.0978 0.1144 2691 +2693 2 -74.34684798607825 -964.6685107519041 27.0965 0.1144 2692 +2694 2 -73.20248717340732 -964.6929801291559 27.0947 0.1144 2693 +2695 2 -72.05875475048924 -964.7164271922103 27.0923 0.1144 2694 +2696 2 -70.91538342497873 -964.7413874005525 27.0888 0.1144 2695 +2697 2 -69.77165100206071 -964.7648344636069 27.084 0.1144 2696 +2698 2 -68.62791857914257 -964.7882815266613 27.0774 0.1144 2697 +2699 2 -67.48458008066919 -964.8133792936661 27.068 0.1144 2698 +2700 2 -66.340271633811 -964.8377634780683 27.0546 0.1144 2699 +2701 2 -65.1965392108929 -964.8612105411227 27.036 0.1144 2700 +2702 2 -64.05280678797476 -964.884657604177 27.0108 0.1144 2701 +2703 2 -62.90938309665157 -964.9097030053691 26.9776 0.1144 2702 +2704 2 -61.822877640416124 -964.556084816399 26.9219 0.1144 2703 +2705 2 -60.76330293260975 -964.1237070896633 26.8452 0.1144 2704 +2706 2 -59.70471771196392 -963.691820194018 26.7515 0.1144 2705 +2707 2 -58.64665614944545 -963.2590813698745 26.6445 0.1144 2706 +2708 2 -57.58900805014741 -962.8277704981693 26.5268 0.1144 2707 +2709 2 -56.53103168047872 -962.3950840398386 26.4009 0.1144 2708 +2710 2 -55.47302248377295 -961.9622600228455 26.269 0.1144 2709 +2711 2 -54.41595040841497 -961.5300120297924 26.1306 0.1144 2710 +2712 2 -53.35739801480625 -961.0982626928095 25.9854 0.1144 2711 +2713 2 -52.285384553089244 -960.7078912441898 25.796 0.1144 2712 +2714 2 -51.41667776942546 -959.9670950751821 25.6022 0.1144 2713 +2715 2 -50.55068854474246 -959.2239783732213 25.4064 0.1144 2714 +2716 2 -49.68420848896915 -958.481851158421 25.2065 0.1144 2715 +2717 2 -48.81767606738316 -957.7398091364706 25.01 0.1144 2716 +2718 2 -47.951686842700184 -956.9966924345099 24.8226 0.1144 2717 +2719 2 -47.13026569540074 -956.203029748749 24.6469 0.1144 2718 +2720 2 -46.453404295492476 -955.2834173927456 24.4745 0.1144 2719 +2721 2 -45.77899006063677 -954.3707087591587 24.1195 0.1144 2720 +2722 2 -86.86710539919852 -1008.8116925340231 22.6628 0.1144 2491 +2723 2 -87.44596427297773 -1007.9092977344774 23.2539 0.1144 2722 +2724 2 -87.5468548276339 -1006.79492270964 23.3587 0.1144 2723 +2725 2 -87.32376708418076 -1005.6788411226936 23.4063 0.1144 2724 +2726 2 -87.36375655972427 -1004.5499210449884 23.431 0.1144 2725 +2727 2 -87.37082645385905 -1003.408865434338 23.4333 0.1144 2726 +2728 2 -87.09329126933284 -1002.3049775408678 23.4068 0.1144 2727 +2729 2 -86.75453465499959 -1001.2132278734781 23.3233 0.1144 2728 +2730 2 -86.72253006399512 -1000.0790253359415 23.2305 0.1144 2729 +2731 2 -86.99774671102429 -998.9737910724489 23.1627 0.1144 2730 +2732 2 -87.1130793034327 -997.8401218115406 23.1224 0.1144 2731 +2733 2 -86.88374905435279 -996.7256026341116 23.1089 0.1144 2732 +2734 2 -86.53176101912649 -995.6378101754791 23.1195 0.1144 2733 +2735 2 -85.95765501085319 -994.653765998999 23.1573 0.1144 2734 +2736 2 -85.33734184034557 -993.6923801136778 23.2539 0.1144 2735 +2737 2 -84.96174297939316 -992.6168375084542 23.351 0.1144 2736 +2738 2 -84.97665061570916 -991.4805995525755 23.4249 0.1144 2737 +2739 2 -85.23600967888041 -990.3683178048376 23.4743 0.1144 2738 +2740 2 -85.60018316901258 -989.2843094704208 23.5007 0.1144 2739 +2741 2 -86.0626777253265 -988.2391384627001 23.5045 0.1144 2740 +2742 2 -86.49803720180509 -987.1813965583395 23.4877 0.1144 2741 +2743 2 -86.44995699882713 -986.0492855990773 23.4606 0.1144 2742 +2744 2 -86.06013722982112 -984.9772093715208 23.4274 0.1144 2743 +2745 2 -85.72682355842937 -983.8832884436363 23.3719 0.1144 2744 +2746 2 -85.72195163821377 -982.7442829720105 23.2629 0.1144 2745 +2747 2 -86.10328093095936 -981.6694112910671 23.1669 0.1144 2746 +2748 2 -86.82616627550132 -980.7884040046918 23.0939 0.1144 2747 +2749 2 -87.6180516252123 -979.9631906184013 23.0427 0.1144 2748 +2750 2 -88.67813868579816 -980.2965791664626 22.9975 0.1144 2749 +2751 2 -51.41168783573545 -1152.290379684068 42.2786 0.1144 2354 +2752 2 -50.37536547807832 -1152.76391869093 42.3366 0.1144 2751 +2753 2 -49.41442898459769 -1153.3791085766543 42.4264 0.1144 2752 +2754 2 -48.500030616857146 -1154.0671567690606 42.4684 0.1144 2753 +2755 2 -47.420056077541744 -1154.347418030084 42.3822 0.1144 2754 +2756 2 -46.28935556220364 -1154.3103251114335 42.0728 0.1144 2755 +2757 2 -45.18835430535188 -1154.4433782301899 41.4537 0.1144 2756 +2758 2 -44.15528209076729 -1154.7913221472995 40.6202 0.1144 2757 +2759 2 -43.15812902960022 -1155.1115751919456 39.5002 0.1144 2758 +2760 2 -43.857601966451796 -1155.05944016905 38.3278 0.1144 2759 +2761 2 -44.86408600323432 -1155.2766573960414 37.3724 0.1144 2760 +2762 2 -45.68477916100022 -1155.979841575895 36.7038 0.1144 2761 +2763 2 -46.06071378586637 -1156.969667862587 35.8243 0.1144 2762 +2764 2 -46.10249814077963 -1158.0507218703428 34.946 0.1144 2763 +2765 2 -46.10007069762406 -1159.1490873457287 34.1592 0.1144 2764 +2766 2 -46.65072264617277 -1160.0555640865 33.4225 0.1144 2765 +2767 2 -46.6237773898452 -1161.0715999388012 32.4892 0.1144 2766 +2768 2 -46.27015679182864 -1162.1407315643078 31.7052 0.1144 2767 +2769 2 -45.90701181906013 -1163.211990696709 31.2886 0.1144 2768 +2770 2 -45.599856465569985 -1164.3015840193862 30.9599 0.1144 2769 +2771 2 -45.40540564703491 -1165.424183217306 30.716 0.1144 2770 +2772 2 -45.151043236547764 -1166.5327281934487 30.5256 0.1144 2771 +2773 2 -44.80343308789628 -1167.6203442583146 30.3486 0.1144 2772 +2774 2 -44.53846301043427 -1168.7264773054885 30.1272 0.1144 2773 +2775 2 -44.46635823956393 -1169.853029302521 29.7713 0.1144 2774 +2776 2 -44.573882536298925 -1170.9692097967115 29.2379 0.1144 2775 +2777 2 -45.059375669147585 -1171.9511377716449 28.7073 0.1144 2776 +2778 2 -45.83021828969834 -1172.776862001847 28.348 0.1144 2777 +2779 2 -46.53405049221237 -1173.669973870934 28.1529 0.1144 2778 +2780 2 -47.0911297390183 -1174.6664413881053 28.1338 0.1144 2779 +2781 2 -47.61377246500791 -1175.6818858922366 28.2836 0.1144 2780 +2782 2 -48.228783352819676 -1176.6387214151314 28.5295 0.1144 2781 +2783 2 -48.880647413813676 -1177.575130885387 28.763 0.1144 2782 +2784 2 -49.5246268774431 -1178.5174929285654 28.9369 0.1144 2783 +2785 2 -50.17617128027905 -1179.4565230511562 29.0494 0.1144 2784 +2786 2 -50.15000707183452 -1180.538889589902 29.1133 0.1144 2785 +2787 2 -49.60822691058115 -1181.5406079469626 29.1267 0.1144 2786 +2788 2 -49.03548660346428 -1182.531395184771 29.1169 0.1144 2787 +2789 2 -48.46266110349768 -1183.5221300567664 29.0968 0.1144 2788 +2790 2 -48.12378437912548 -1184.611006002721 29.0699 0.1144 2789 +2791 2 -48.10107733829477 -1185.7532488973354 29.0321 0.1144 2790 +2792 2 -48.09533848995244 -1186.8965312358764 28.973 0.1144 2791 +2793 2 -48.08951444876038 -1188.0397612086047 28.8789 0.1144 2792 +2794 2 -47.96567979579771 -1189.1761863661604 28.791 0.1144 2793 +2795 2 -47.75666651057696 -1190.3005160449472 28.7165 0.1144 2794 +2796 2 -47.62142091084581 -1191.274280327386 30.497 0.1144 2795 +2797 2 -47.46475186932412 -1192.398622317809 30.7961 0.1144 2796 +2798 2 -47.307503702279234 -1193.5305902254643 30.924 0.1144 2797 +2799 2 -47.149180855224074 -1194.662014936216 31.0682 0.1144 2798 +2800 2 -47.10232599493048 -1195.8042047724812 31.1998 0.1144 2799 +2801 2 -47.163513395748566 -1196.9455461902794 31.2956 0.1144 2800 +2802 2 -47.224072406813775 -1198.0879099222748 31.3592 0.1144 2801 +2803 2 -47.284631417878984 -1199.2302736542701 31.3936 0.1144 2802 +2804 2 -47.345138063131515 -1200.3727225791156 31.4112 0.1144 2803 +2805 2 -47.16201910522807 -1189.1575892041951 28.0557 0.1144 2795 +2806 2 -46.6531855405816 -1188.178686827301 27.3216 0.1144 2805 +2807 2 -46.116305800782584 -1187.249804367033 26.36 0.1144 2806 +2808 2 -45.39457269407751 -1186.490654498637 25.2701 0.1144 2807 +2809 2 -44.517982621111344 -1185.898077166994 24.221 0.1144 2808 +2810 2 -43.61767388921044 -1185.3246088703436 23.2109 0.1144 2809 +2811 2 -42.7140746759718 -1184.7477094321098 22.2401 0.1144 2810 +2812 2 -42.013991082644 -1185.3687657035966 21.3112 0.1144 2811 +2813 2 -41.13617998081361 -1185.9907980496232 20.4178 0.1144 2812 +2814 2 -40.11405629929931 -1186.3669524191146 19.5898 0.1144 2813 +2815 2 -39.0753699688409 -1186.7154364315438 18.7783 0.1144 2814 +2816 2 -38.00272051715359 -1186.8067567676962 17.8699 0.1144 2815 +2817 2 -37.122787597036734 -1186.2108334873196 16.9246 0.1144 2816 +2818 2 -36.260595713526584 -1185.5774542912536 15.9293 0.1144 2817 +2819 2 -35.398747797694796 -1184.9631848227168 14.904 0.1144 2818 +2820 2 -34.32843429217979 -1184.9981896782665 13.9182 0.1144 2819 +2821 2 -33.25383702404673 -1185.06002398364 12.9666 0.1144 2820 +2822 2 -32.175001226665074 -1185.1220701139623 12.0495 0.1144 2821 +2823 2 -31.08758428434942 -1185.147853123189 11.1864 0.1144 2822 +2824 2 -29.989936185685792 -1185.1137043091512 10.3911 0.1144 2823 +2825 2 -28.88920943063374 -1185.0803628827787 9.6422 0.1144 2824 +2826 2 -27.78456380449103 -1185.0446126290203 8.9192 0.1144 2825 +2827 2 -26.677001106054377 -1184.9546001352674 8.2449 0.1144 2826 +2828 2 -25.56979778851536 -1184.8246643294601 7.628 0.1144 2827 +2829 2 -24.45650123780797 -1184.6935655492098 7.0648 0.1144 2828 +2830 2 -23.340702054652354 -1184.5623370352769 6.5402 0.1144 2829 +2831 2 -22.26927653774868 -1184.4354946065407 5.6092 0.1144 2830 +2832 2 -46.63920099508192 -1161.0247376682469 31.234 0.1144 2767 +2833 2 -46.59940922220966 -1160.4537539689948 29.5123 0.1144 2832 +2834 2 -45.68160743774115 -1161.0337153594564 28.7342 0.1144 2833 +2835 2 -44.77679511531454 -1161.699484464466 28.2153 0.1144 2834 +2836 2 -43.93302791791774 -1162.4431553840245 27.7838 0.1144 2835 +2837 2 -43.24729285905329 -1163.3336165729847 27.3325 0.1144 2836 +2838 2 -42.50147331879447 -1164.1669559176505 26.8614 0.1144 2837 +2839 2 -41.62987148710573 -1164.888118102597 26.4498 0.1144 2838 +2840 2 -40.868555460396635 -1165.7159231083053 26.0716 0.1144 2839 +2841 2 -40.326420404901796 -1166.7027507283099 25.6962 0.1144 2840 +2842 2 -40.03695854029843 -1167.789720989605 25.3064 0.1144 2841 +2843 2 -39.75711485550943 -1168.8786123487791 24.8336 0.1144 2842 +2844 2 -39.17649405889961 -1169.7181818697504 23.8126 0.1144 2843 +2845 2 -38.12956373249398 -1169.8965611893261 22.8038 0.1144 2844 +2846 2 -37.11438832620718 -1169.8485467699243 21.5651 0.1144 2845 +2847 2 -36.333237364559864 -1170.0708001053715 20.2329 0.1144 2846 +2848 2 -36.66951556183335 -1169.4691003263802 18.6731 0.1144 2847 +2849 2 -35.58078298694443 -1169.433623568133 18.0603 0.1144 2848 +2850 2 -34.44466656098365 -1169.3113872533077 17.9156 0.1144 2849 +2851 2 -33.31965814491463 -1169.437665690794 17.8437 0.1144 2850 +2852 2 -32.228399308615224 -1169.7754328179667 17.845 0.1144 2851 +2853 2 -31.367942830174798 -1170.4872472170273 18.0399 0.1144 2852 +2854 2 -30.445883309118926 -1171.157204894519 18.2295 0.1144 2853 +2855 2 -29.985621683861666 -1172.1876672646788 18.2042 0.1144 2854 +2856 2 -29.869445775168003 -1173.3248091064202 18.1378 0.1144 2855 +2857 2 -29.84054859452334 -1174.4685292177023 18.0702 0.1144 2856 +2858 2 -29.41966329029748 -1175.5311770712674 17.9919 0.1144 2857 +2859 2 -29.11450571001933 -1176.6327974011447 17.9057 0.1144 2858 +2860 2 -28.82646249310477 -1177.7394205868723 17.8392 0.1144 2859 +2861 2 -28.635578060465377 -1178.8669117058507 17.7978 0.1144 2860 +2862 2 -28.547777573920087 -1180.008113771465 17.7231 0.1144 2861 +2863 2 -28.434765514464686 -1181.1445005913542 17.6085 0.1144 2862 +2864 2 -28.12101206856977 -1182.2448282131056 17.5188 0.1144 2863 +2865 2 -27.90295662747485 -1183.3662996726662 17.3883 0.1144 2864 +2866 2 -42.8140706471292 -1155.2103288220123 38.8354 0.1144 2759 +2867 2 -41.997690799456564 -1155.706257833378 37.3444 0.1144 2866 +2868 2 -41.46410506814715 -1156.5787295219404 36.1418 0.1144 2867 +2869 2 -40.95437283163653 -1157.5411043850067 35.2881 0.1144 2868 +2870 2 -40.33602531696113 -1158.4729869318412 34.715 0.1144 2869 +2871 2 -39.6904630402301 -1159.402931251068 34.3064 0.1144 2870 +2872 2 -38.795033739773146 -1160.097357098717 34.0612 0.1144 2871 +2873 2 -37.69591113526201 -1160.3671397339117 33.7977 0.1144 2872 +2874 2 -36.66677670931148 -1159.915793632429 33.4432 0.1144 2873 +2875 2 -35.94093752983866 -1159.0453079200006 33.0543 0.1144 2874 +2876 2 -35.26389954106469 -1158.1389684241399 32.6427 0.1144 2875 +2877 2 -35.07956403756782 -1158.220396872182 32.3439 0.1144 2876 +2878 2 -34.126538558245045 -1158.575990637259 31.136 0.1144 2877 +2879 2 -33.04101568148923 -1158.6794701233405 30.5586 0.1144 2878 +2880 2 -31.920577841474028 -1158.5601803221748 30.2501 0.1144 2879 +2881 2 -30.79334269751456 -1158.6877898054533 29.9191 0.1144 2880 +2882 2 -29.899986158756008 -1159.1712653422258 29.6008 0.1144 2881 +2883 2 -29.48271409560897 -1160.228034889155 29.3003 0.1144 2882 +2884 2 -29.111099889323327 -1161.302187476866 28.9985 0.1144 2883 +2885 2 -28.621305283407764 -1162.319778831004 28.6247 0.1144 2884 +2886 2 -27.97365142840232 -1163.2336475382572 28.096 0.1144 2885 +2887 2 -27.365559788043356 -1164.1463624811204 27.4091 0.1144 2886 +2888 2 -26.556858915952148 -1164.6187227985463 26.6221 0.1144 2887 +2889 2 -25.45564753297589 -1164.5729932675658 25.8985 0.1144 2888 +2890 2 -24.34601928229523 -1164.5300719990457 25.2477 0.1144 2889 +2891 2 -23.284008625794968 -1164.798485943318 24.6662 0.1144 2890 +2892 2 -22.69187517536301 -1165.6592676966557 24.185 0.1144 2891 +2893 2 -22.371182770967835 -1166.7445310940684 23.7799 0.1144 2892 +2894 2 -21.846432472764945 -1167.7271373145534 23.3138 0.1144 2893 +2895 2 -20.87710993801835 -1168.2270693835712 22.8309 0.1144 2894 +2896 2 -19.85294673029057 -1168.7134818155018 22.4798 0.1144 2895 +2897 2 -18.92883396862669 -1169.3781864745274 22.2554 0.1144 2896 +2898 2 -18.11731592579588 -1170.1805331303813 22.1316 0.1144 2897 +2899 2 -17.78187344459019 -1171.259429799114 22.0937 0.1144 2898 +2900 2 -17.684454778230645 -1172.3987107668495 22.1307 0.1144 2899 +2901 2 -17.12682013470237 -1173.3866928437806 22.2727 0.1144 2900 +2902 2 -16.200789376743103 -1174.0543268867364 22.4305 0.1144 2901 +2903 2 -15.038889852566285 -1173.4542317728437 21.1919 0.1144 2902 +2904 2 -14.202465050505452 -1172.7722488987936 20.3463 0.1144 2903 +2905 2 -13.247390935883573 -1172.255031405297 19.7211 0.1144 2904 +2906 2 -12.190975276907466 -1172.0031315730812 18.8565 0.1144 2905 +2907 2 -11.153970476837912 -1172.2331555818996 17.9864 0.1144 2906 +2908 2 -10.084732645643385 -1172.5373887660567 17.3334 0.1144 2907 +2909 2 -8.999455131095601 -1172.8371622912664 16.8435 0.1144 2908 +2910 2 -7.920619635487526 -1173.1919561799066 16.5049 0.1144 2909 +2911 2 -6.8517127677988015 -1173.591705961905 16.2938 0.1144 2910 +2912 2 -5.794424262182815 -1174.022777679711 16.1714 0.1144 2911 +2913 2 -4.74091086582871 -1174.4696686437087 16.0876 0.1144 2912 +2914 2 -3.6497895881918794 -1174.8074029438442 15.9999 0.1144 2913 +2915 2 -2.5128609741579453 -1174.8633208890035 15.8585 0.1144 2914 +2916 2 -1.37499144465653 -1174.9494142327198 15.7049 0.1144 2915 +2917 2 -0.23955435952501603 -1175.077381711823 15.5565 0.1144 2916 +2918 2 0.8043736840517681 -1175.5260562150365 15.4094 0.1144 2917 +2919 2 1.7755067903332815 -1176.1228882935006 15.2029 0.1144 2918 +2920 2 2.652681298646087 -1176.8487243713905 14.9283 0.1144 2919 +2921 2 3.7582435130506724 -1177.080860473884 14.6749 0.1144 2920 +2922 2 4.896928633981872 -1177.059049115151 14.4606 0.1144 2921 +2923 2 6.03501680712418 -1176.9879526303325 14.209 0.1144 2922 +2924 2 7.099522584844749 -1177.3851255135955 13.9625 0.1144 2923 +2925 2 8.149061642712411 -1177.8276513162448 13.7053 0.1144 2924 +2926 2 9.259673568150276 -1178.0876720097965 13.5037 0.1144 2925 +2927 2 10.123126517016146 -1178.8326240183815 13.3442 0.1144 2926 +2928 2 11.084553149050521 -1179.424740764653 12.901 0.1144 2927 +2929 2 -17.229104417144015 -1174.4285197082668 22.6219 0.1144 2902 +2930 2 -17.86464167957513 -1175.2864605500863 22.8148 0.1144 2929 +2931 2 -17.933705852777678 -1176.4193795895503 23.0262 0.1144 2930 +2932 2 -18.24867574505572 -1177.5125893438785 23.2259 0.1144 2931 +2933 2 -18.57085568229877 -1178.5875764405628 23.4292 0.1144 2932 +2934 2 -18.498301519587812 -1179.7192517223789 23.6611 0.1144 2933 +2935 2 -18.233907466065943 -1180.824447648205 23.9721 0.1144 2934 +2936 2 -18.222411148469064 -1181.8808506937712 24.4282 0.1144 2935 +2937 2 -18.898080446320535 -1182.750078241621 25.0243 0.1144 2936 +2938 2 -19.465312866079103 -1183.6425661306002 25.7802 0.1144 2937 +2939 2 -19.721605998088535 -1184.7025259555394 26.6196 0.1144 2938 +2940 2 -19.95348642733643 -1185.7823420123432 27.3505 0.1144 2939 +2941 2 -20.194226912963245 -1186.8676041136719 28.0084 0.1144 2940 +2942 2 -20.436841641285525 -1187.9540182628807 28.6558 0.1144 2941 +2943 2 -20.68105470774549 -1189.0401236804946 29.3034 0.1144 2942 +2944 2 -20.962702481957308 -1190.1155509589664 29.9564 0.1144 2943 +2945 2 -21.30507613148899 -1191.1706708972229 30.6323 0.1144 2944 +2946 2 -21.671016065913875 -1192.2160959803318 31.3384 0.1144 2945 +2947 2 -21.875543387210882 -1193.2924802030157 32.0793 0.1144 2946 +2948 2 -21.783569048866013 -1194.3814646570306 32.8255 0.1144 2947 +2949 2 -21.5896237821039 -1195.4681039548202 33.5692 0.1144 2948 +2950 2 -21.39625453928187 -1196.553806131262 34.314 0.1144 2949 +2951 2 -21.203022855122356 -1197.6394754806668 35.0571 0.1144 2950 +2952 2 -21.009653612300383 -1198.7251776571084 35.7977 0.1144 2951 +2953 2 -20.90253768174665 -1199.8235185092221 36.5218 0.1144 2952 +2954 2 -20.903003693900985 -1200.9303532181252 37.2151 0.1144 2953 +2955 2 -21.071212426706268 -1202.0220925744773 37.91 0.1144 2954 +2956 2 -21.43386187979337 -1203.0640865160026 38.6207 0.1144 2955 +2957 2 -21.85376462736724 -1204.0849298010273 39.3478 0.1144 2956 +2958 2 -22.272730253593295 -1205.105197062112 40.091 0.1144 2957 +2959 2 -22.691249589562005 -1206.1238988120958 40.8486 0.1144 2958 +2960 2 -23.001017112676607 -1207.17764015684 41.615 0.1144 2959 +2961 2 -23.132381189816158 -1208.2682127446294 42.3657 0.1144 2960 +2962 2 -23.17686597398108 -1209.364542801673 43.1567 0.1144 2961 +2963 2 -23.06498544700497 -1210.4465735765052 43.9947 0.1144 2962 +2964 2 -22.561666101820663 -1211.4074907616796 44.7566 0.1144 2963 +2965 2 -21.961949197379795 -1212.3373262710725 45.4628 0.1144 2964 +2966 2 -21.37104859571781 -1213.2766892568002 46.149 0.1144 2965 +2967 2 -20.93561072739601 -1214.271349516804 46.9946 0.1144 2966 +2968 2 -20.563790804631026 -1215.3022969233361 47.7943 0.1144 2967 +2969 2 -20.199527303555953 -1216.3515052304824 48.4674 0.1144 2968 +2970 2 -19.833001145970343 -1217.4085958206426 49.0515 0.1144 2969 +2971 2 -19.655885820497417 -1218.520370016009 49.5337 0.1144 2970 +2972 2 -20.134997503983755 -1219.5520184807233 49.761 0.1144 2971 +2973 2 -20.623013784681632 -1220.5865579917008 49.8134 0.1144 2972 +2974 2 -21.111743647982223 -1221.6201275542935 49.7566 0.1144 2973 +2975 2 -21.600388318432977 -1222.6536447510734 49.6373 0.1144 2974 +2976 2 -22.297963987174228 -1223.5592268160353 49.5261 0.1144 2975 +2977 2 -23.004904571530574 -1224.458357652004 49.4418 0.1144 2976 +2978 2 -23.711131573284376 -1225.3584584363575 49.3928 0.1144 2977 +2979 2 -24.41807215764078 -1226.2575892723264 49.3688 0.1144 2978 +2980 2 -25.124384352244363 -1227.1577424224924 49.3609 0.1144 2979 +2981 2 -25.831324936600765 -1228.0568732584613 49.3606 0.1144 2980 +2982 2 -34.81074375054044 -1157.6026573208478 32.3579 0.1144 2876 +2983 2 -34.24803876876109 -1156.6350115160822 31.8732 0.1144 2982 +2984 2 -33.98676370475022 -1155.543818049768 31.4664 0.1144 2983 +2985 2 -33.88788523039818 -1154.4114712401247 31.1814 0.1144 2984 +2986 2 -33.695670030912254 -1153.2888945758891 30.9907 0.1144 2985 +2987 2 -33.18234226377166 -1152.2844578663435 30.87 0.1144 2986 +2988 2 -32.6731130581706 -1151.262468328157 30.8017 0.1144 2987 +2989 2 -32.71153633007697 -1150.1580571673226 30.7614 0.1144 2988 +2990 2 -33.05749577477809 -1149.0708350269012 30.7238 0.1144 2989 +2991 2 -33.45356653212161 -1147.998333835677 30.6762 0.1144 2990 +2992 2 -33.822202090247515 -1146.915659648636 30.6138 0.1144 2991 +2993 2 -33.99798085929825 -1145.790973690534 30.4951 0.1144 2992 +2994 2 -34.14916862021181 -1144.6579803670984 30.3416 0.1144 2993 +2995 2 -33.98070421416094 -1143.540494853146 30.1874 0.1144 2994 +2996 2 -33.76464992680707 -1142.4194634686983 30.0118 0.1144 2995 +2997 2 -33.52012882128878 -1141.307697086334 29.7573 0.1144 2996 +2998 2 -33.22178866445029 -1140.207102083248 29.5389 0.1144 2997 +2999 2 -32.7675445861957 -1139.16115913673 29.3838 0.1144 2998 +3000 2 -32.22565929741131 -1138.1552500286098 29.2796 0.1144 2999 +3001 2 -31.435023092182746 -1137.337666069018 29.2172 0.1144 3000 +3002 2 -30.51742923243387 -1136.6567339442427 29.192 0.1144 3001 +3003 2 -29.589530234138977 -1135.9883658204044 29.1939 0.1144 3002 +3004 2 -29.256689571571712 -1134.935114614214 29.2043 0.1144 3003 +3005 2 -28.662933047912816 -1133.9698629161512 29.2188 0.1144 3004 +3006 2 -27.686352690012086 -1133.4045640177246 29.2393 0.1144 3005 +3007 2 -26.88422647132029 -1132.6012807431025 29.2676 0.1144 3006 +3008 2 -26.482194494035582 -1131.5404789099402 29.3084 0.1144 3007 +3009 2 -26.240710605655977 -1130.4237713422876 29.367 0.1144 3008 +3010 2 -26.06809906637261 -1129.2931724273287 29.4448 0.1144 3009 +3011 2 -25.83137736536895 -1128.1754011062285 29.5428 0.1144 3010 +3012 2 -25.389342393809955 -1127.1248725612004 29.6856 0.1144 3011 +3013 2 -24.875433092099627 -1126.1106879381582 30.007 0.1144 3012 +3014 2 -24.41548660353834 -1125.0719215170316 30.322 0.1144 3013 +3015 2 -24.096958937577256 -1123.9778160806054 30.5715 0.1144 3014 +3016 2 -24.126663505887052 -1122.8371746257117 30.7642 0.1144 3015 +3017 2 -24.549508245658274 -1121.7757311858395 30.9042 0.1144 3016 +3018 2 -25.003536670038045 -1120.7267648375446 31.0022 0.1144 3017 +3019 2 -25.345216146240887 -1119.6356207244496 31.0702 0.1144 3018 +3020 2 -25.628849660974538 -1118.527578198497 31.1623 0.1144 3019 +3021 2 -25.771311822588643 -1117.3957947993836 31.3267 0.1144 3020 +3022 2 -25.756460625150964 -1116.2533550845915 31.4874 0.1144 3021 +3023 2 -25.737560822940054 -1115.1110091748615 31.6436 0.1144 3022 +3024 2 -25.653914644276256 -1113.9800433677767 31.8472 0.1144 3023 +3025 2 -25.13403874149708 -1112.968881933727 32.146 0.1144 3024 +3026 2 -24.672314916885796 -1111.9263232736093 32.3764 0.1144 3025 +3027 2 -24.253846230220006 -1110.8660998734335 32.5833 0.1144 3026 +3028 2 -23.780883247297993 -1109.8288403944289 32.776 0.1144 3027 +3029 2 -23.446855993303586 -1108.7358894149293 32.9042 0.1144 3028 +3030 2 -23.15497326862419 -1107.6312817356902 32.9728 0.1144 3029 +3031 2 -22.85431808946231 -1106.5386542084684 32.9946 0.1144 3030 +3032 2 -23.247194863665584 -1105.5609114916497 32.9868 0.1144 3031 +3033 2 -24.069631714112745 -1104.7799489336314 32.9546 0.1144 3032 +3034 2 -24.70107850695217 -1103.829237979759 32.891 0.1144 3033 +3035 2 -25.16949280915179 -1102.7918140107402 32.7953 0.1144 3034 +3036 2 -25.359029066269557 -1101.6796927461123 32.6973 0.1144 3035 +3037 2 -25.271389750228252 -1100.5420467553558 32.6234 0.1144 3036 +3038 2 -25.09467724035875 -1099.4116268383095 32.5696 0.1144 3037 +3039 2 -24.787961655065544 -1098.3179738953067 32.5335 0.1144 3038 +3040 2 -24.275077769135862 -1097.297728866133 32.5122 0.1144 3039 +3041 2 -23.824570462476572 -1096.256782572299 32.4996 0.1144 3040 +3042 2 -23.536970807878674 -1095.1494080698496 32.4859 0.1144 3041 +3043 2 -23.126254670544256 -1094.093949958633 32.466 0.1144 3042 +3044 2 -22.422119247064927 -1093.209924786253 32.4391 0.1144 3043 +3045 2 -21.638794716843904 -1092.380636579202 32.4047 0.1144 3044 +3046 2 -21.0671358736231 -1091.4034961251382 32.3509 0.1144 3045 +3047 2 -20.68008602941063 -1090.329014171779 32.263 0.1144 3046 +3048 2 -20.395468124555578 -1089.223472472775 32.1544 0.1144 3047 +3049 2 -20.203126292970126 -1088.0967096451036 32.0536 0.1144 3048 +3050 2 -19.890923223902462 -1087.0077829608567 31.9673 0.1144 3049 +3051 2 -19.38820381627329 -1085.9816955536671 31.8934 0.1144 3050 +3052 2 -19.040310548466834 -1084.907101688891 31.8298 0.1144 3051 +3053 2 -18.920630203385485 -1083.7713589737477 31.7568 0.1144 3052 +3054 2 -18.70457281444851 -1082.6570163851843 31.6512 0.1144 3053 +3055 2 -18.21659487141727 -1081.633299467714 31.5311 0.1144 3054 +3056 2 -17.541692907054312 -1080.7148915254036 31.4084 0.1144 3055 +3057 2 -16.783112451548448 -1079.8604338772288 31.2791 0.1144 3056 +3058 2 -16.074209330063695 -1078.966787423451 31.1699 0.1144 3057 +3059 2 -15.479157689232409 -1077.9927577602766 31.1072 0.1144 3058 +3060 2 -15.065727094500346 -1076.9329313861285 31.0918 0.1144 3059 +3061 2 -14.99278238787383 -1075.808426112786 31.1139 0.1144 3060 +3062 2 -14.794456825490329 -1074.7022830563483 31.2054 0.1144 3061 +3063 2 -14.253323456975295 -1073.7062265933507 31.3863 0.1144 3062 +3064 2 -13.860876832467795 -1072.6472082994046 31.5708 0.1144 3063 +3065 2 -13.72417282750223 -1071.5172001290684 31.7122 0.1144 3064 +3066 2 -14.037115091612407 -1070.4445452734258 31.7814 0.1144 3065 +3067 2 -14.595020129068871 -1069.447338941125 31.8002 0.1144 3066 +3068 2 -15.007979396680525 -1068.3865098628596 31.8352 0.1144 3067 +3069 2 -14.874074349425882 -1067.2849849478805 31.8629 0.1144 3068 +3070 2 -14.097682669235041 -1066.509727617099 31.8797 0.1144 3069 +3071 2 -13.288920020471721 -1065.7063560480444 31.8895 0.1144 3070 +3072 2 -13.449210506836948 -1064.680961797046 31.8909 0.1144 3071 +3073 2 -14.015708308327078 -1063.691736968755 31.8772 0.1144 3072 +3074 2 -14.065809203821857 -1062.5811223324972 31.8444 0.1144 3073 +3075 2 -13.343530207078572 -1061.7289061328954 31.7923 0.1144 3074 +3076 2 -12.556019513421631 -1060.899744557944 31.6968 0.1144 3075 +3077 2 -11.919125871704125 -1059.9523475244148 31.5904 0.1144 3076 +3078 2 -11.647833192804683 -1058.8468972214273 31.4986 0.1144 3077 +3079 2 -11.710281446194074 -1057.7076015330088 31.4289 0.1144 3078 +3080 2 -11.2509992760057 -1056.6612615604631 31.3818 0.1144 3079 +3081 2 -10.520307205677682 -1055.781102200824 31.3418 0.1144 3080 +3082 2 -9.679362175092137 -1055.0104181569168 31.2872 0.1144 3081 +3083 2 -9.266556868529847 -1053.9562582644553 31.2418 0.1144 3082 +3084 2 -9.329134855601922 -1052.8144599435886 31.2402 0.1144 3083 +3085 2 -9.39697368612002 -1051.6730781875258 31.3261 0.1144 3084 +3086 2 -9.331649386095819 -1050.5384670048616 31.5017 0.1144 3085 +3087 2 -9.024393705482623 -1049.4391999459851 31.673 0.1144 3086 +3088 2 -8.646207019232122 -1048.363475241266 31.7878 0.1144 3087 +3089 2 -8.438759524058014 -1047.2395175744716 31.8906 0.1144 3088 +3090 2 -8.231532466045849 -1046.1237946758863 32.0085 0.1144 3089 +3091 2 -7.7615543344498406 -1045.081679204443 32.1163 0.1144 3090 +3092 2 -7.416557623536335 -1044.0088657773 32.228 0.1144 3091 +3093 2 -7.48581820332646 -1042.8804481497846 32.375 0.1144 3092 +3094 2 -7.886656658675406 -1041.8175682399578 32.573 0.1144 3093 +3095 2 -8.516182353636168 -1040.8764754658996 32.7908 0.1144 3094 +3096 2 -9.369391141981396 -1040.1479985043625 33.1694 0.1144 3095 +3097 2 -10.237861258932298 -1039.4517915265437 33.6885 0.1144 3096 +3098 2 -10.89549439115973 -1038.5413570624573 34.095 0.1144 3097 +3099 2 -11.079589421845924 -1037.4728435156658 34.3616 0.1144 3098 +3100 2 -10.963381657597779 -1036.3379441168076 34.5629 0.1144 3099 +3101 2 -10.782799540867359 -1035.2117189754097 34.736 0.1144 3100 +3102 2 -10.427644554819665 -1034.131370334514 34.8566 0.1144 3101 +3103 2 -10.101722335351724 -1033.0407015503006 34.9577 0.1144 3102 +3104 2 -9.710301126624927 -1031.975622850223 35.1182 0.1144 3103 +3105 2 -8.819295041937039 -1031.4655065918573 35.4225 0.1144 3104 +3106 2 -7.7702177765353895 -1031.241006722776 35.5396 0.1144 3105 +3107 2 -8.639445324385122 -1030.5653374249246 34.7959 0.1144 3106 +3108 2 -8.75847034836221 -1030.7606923421067 33.5888 0.1144 3107 +3109 2 -9.121279669033868 -1031.7061801986306 33.0546 0.1144 3108 +3110 2 -9.300839471566746 -1032.831776950276 33.038 0.1144 3109 +3111 2 -9.40225030382112 -1033.9710798481487 33.0025 0.1144 3110 +3112 2 -9.297525378387604 -1035.1071610380259 32.9389 0.1144 3111 +3113 2 -8.937582592524052 -1036.188487742082 32.9042 0.1144 3112 +3114 2 -8.403733978514424 -1037.1990723586878 32.9395 0.1144 3113 +3115 2 -7.69562843623703 -1038.0932727282893 33.0294 0.1144 3114 +3116 2 -6.666083168896932 -1038.5601784066632 33.1288 0.1144 3115 +3117 2 -5.6794728844714655 -1038.0329669152616 33.2248 0.1144 3116 +3118 2 -4.573852793624496 -1038.2545031757604 33.395 0.1144 3117 +3119 2 -4.003127389448821 -1039.2397208385273 33.6549 0.1144 3118 +3120 2 -7.655645303018446 -1030.1647464390567 34.2336 0.1144 3107 +3121 2 -6.767896162409556 -1029.4660058123943 34.0371 0.1144 3120 +3122 2 -6.267981915657515 -1028.4550240687936 34.0105 0.1144 3121 +3123 2 -5.874328468410624 -1027.3805913796637 34.0631 0.1144 3122 +3124 2 -5.439070587168715 -1026.3234295061472 34.1426 0.1144 3123 +3125 2 -5.069259329372926 -1025.240762741345 34.1919 0.1144 3124 +3126 2 -4.79943835651153 -1024.1308175433264 34.2104 0.1144 3125 +3127 2 -4.723773681857608 -1022.991258972208 34.2143 0.1144 3126 +3128 2 -4.877910365477021 -1021.8599608935556 34.214 0.1144 3127 +3129 2 -5.173121495570285 -1020.7550438791744 34.2135 0.1144 3128 +3130 2 -5.395192714401389 -1019.6333410558888 34.2124 0.1144 3129 +3131 2 -5.570398561095203 -1018.5029034232508 34.2112 0.1144 3130 +3132 2 -5.601307543097931 -1017.3603025328119 34.2096 0.1144 3131 +3133 2 -5.595319503622221 -1016.2166200666601 34.207 0.1144 3132 +3134 2 -5.767361501077772 -1015.0869374558744 34.2034 0.1144 3133 +3135 2 -5.792518808544031 -1013.9449094877926 34.1986 0.1144 3134 +3136 2 -5.650074055605074 -1012.8112552493407 34.1916 0.1144 3135 +3137 2 -5.636788369268061 -1011.6683692442908 34.1824 0.1144 3136 +3138 2 -5.422384785864551 -1010.5469439353988 34.169 0.1144 3137 +3139 2 -4.82599899765782 -1009.5773763402178 34.1494 0.1144 3138 +3140 2 -4.066919886081735 -1008.7214383737921 34.1228 0.1144 3139 +3141 2 -3.242420082393835 -1007.9285830756963 34.0886 0.1144 3140 +3142 2 -2.282884308226187 -1007.3092016277238 34.0432 0.1144 3141 +3143 2 -1.3525764825454019 -1006.6447523749761 33.9528 0.1144 3142 +3144 2 -0.5654268862960805 -1005.8171039453124 33.8363 0.1144 3143 +3145 2 -0.0972784565627478 -1004.7786955200105 33.7333 0.1144 3144 +3146 2 0.1956265823141905 -1003.6734594510186 33.6445 0.1144 3145 +3147 2 0.7344003876730767 -1002.6668805138959 33.5653 0.1144 3146 +3148 2 1.0642414782316507 -1001.5738029022968 33.4919 0.1144 3147 +3149 2 1.0864426883433396 -1000.4322448414565 33.4219 0.1144 3148 +3150 2 1.1222254901928466 -999.2889118536127 33.3483 0.1144 3149 +3151 2 1.1182342524465696 -998.1486636306273 33.1436 0.1144 3150 +3152 2 1.141948607846075 -997.0074666671946 32.935 0.1144 3151 +3153 2 1.0645767903633896 -995.8679536431974 32.7729 0.1144 3152 +3154 2 1.1009879819657726 -994.7256429695511 32.6542 0.1144 3153 +3155 2 1.2709265031012364 -993.5952785199004 32.5752 0.1144 3154 +3156 2 1.7589427837991707 -992.5607390089228 32.5321 0.1144 3155 +3157 2 2.271644570233434 -991.537906154451 32.5203 0.1144 3156 +3158 2 2.2358834018901064 -990.8482081634152 32.5142 0.1144 3157 +3159 2 2.2606646123200846 -989.7089378084906 32.5038 0.1144 3158 +3160 2 2.538340457091863 -988.6117715379418 32.4912 0.1144 3159 +3161 2 3.130137545205457 -987.6477242535723 32.4741 0.1144 3160 +3162 2 3.9377481460885804 -986.8424784418221 32.4528 0.1144 3161 +3163 2 4.845993527414805 -986.1486290436818 32.424 0.1144 3162 +3164 2 5.704717932273468 -985.4045783219565 32.3672 0.1144 3163 +3165 2 6.301462408841445 -984.4508714122165 32.2871 0.1144 3164 +3166 2 6.704246306395447 -983.3802169339318 32.2218 0.1144 3165 +3167 2 7.238252413748796 -982.3832592782065 32.1961 0.1144 3166 +3168 2 8.166873589174088 -981.9278454416229 32.23 0.1144 3167 +3169 2 9.158499041085946 -981.470092557284 32.2938 0.1144 3168 +3170 2 9.703566001374384 -980.5065976798705 32.3347 0.1144 3169 +3171 2 9.964215084678841 -979.3970080686303 32.3322 0.1144 3170 +3172 2 10.001521958379215 -978.2582551686669 32.3459 0.1144 3171 +3173 2 9.624023934827989 -977.1984008568793 32.4117 0.1144 3172 +3174 2 9.081712290467351 -976.1983003767319 32.1636 0.1144 3173 +3175 2 9.211116932061628 -975.1089322026356 31.4104 0.1144 3174 +3176 2 9.16909134563943 -974.002861725638 30.7994 0.1144 3175 +3177 2 9.074129054385452 -972.9023324833006 30.3204 0.1144 3176 +3178 2 9.391097412412051 -971.8211583483852 29.9382 0.1144 3177 +3179 2 9.389005040633606 -970.7844465649177 29.7237 0.1144 3178 +3180 2 8.917159596850524 -969.7437321145611 29.6383 0.1144 3179 +3181 2 8.722006814812374 -968.6484445853421 29.5154 0.1144 3180 +3182 2 8.786755090896492 -967.5128962813303 29.2272 0.1144 3181 +3183 2 8.645280007396337 -966.3979958818556 28.8576 0.1144 3182 +3184 2 8.658618752082674 -965.2792576962688 28.4413 0.1144 3183 +3185 2 8.89873325700313 -964.1755994500137 28.0213 0.1144 3184 +3186 2 9.237760265264683 -963.0930740379937 27.6674 0.1144 3185 +3187 2 9.285088547973288 -961.9708157238539 27.3885 0.1144 3186 +3188 2 9.232578132556114 -960.832219589892 27.1513 0.1144 3187 +3189 2 9.359793691389996 -959.7066351498829 26.8519 0.1144 3188 +3190 2 9.958277166341247 -958.7599585946592 26.6464 0.1144 3189 +3191 2 10.246023684351002 -957.6726833068993 26.4185 0.1144 3190 +3192 2 10.652192560841854 -956.618611708871 26.05 0.1144 3191 +3193 2 10.732310691276695 -955.4817152293375 25.8791 0.1144 3192 +3194 2 10.692805843657254 -954.3404070470245 25.7025 0.1144 3193 +3195 2 10.702663489993938 -953.2009193565211 25.493 0.1144 3194 +3196 2 10.875545423205637 -952.0795446969319 25.2193 0.1144 3195 +3197 2 10.703591720182999 -950.9564985162176 24.9157 0.1144 3196 +3198 2 10.715998854151167 -949.8276513197261 24.5109 0.1144 3197 +3199 2 10.956239991171202 -948.7198069100352 24.1427 0.1144 3198 +3200 2 11.19096081737976 -947.6073738002513 23.8316 0.1144 3199 +3201 2 11.443143768750133 -946.501579529585 23.587 0.1144 3200 +3202 2 12.071183462558793 -945.5985951925111 23.3705 0.1144 3201 +3203 2 13.051685793133231 -945.0375762625827 23.1629 0.1144 3202 +3204 2 13.423229230620734 -944.1148911515832 22.9972 0.1144 3203 +3205 2 13.0646698563624 -943.0314229124864 22.9298 0.1144 3204 +3206 2 12.682712173863962 -941.9555289173454 22.9191 0.1144 3205 +3207 2 12.539902942988249 -940.8361664498772 22.9363 0.1144 3206 +3208 2 12.861471620207652 -939.7777536212363 22.9676 0.1144 3207 +3209 2 13.496978748736836 -938.8258093268637 23.0004 0.1144 3208 +3210 2 13.958400044919387 -937.7982265966521 23.0234 0.1144 3209 +3211 2 13.936551041056646 -936.6944266958412 23.0591 0.1144 3210 +3212 2 14.154057904120918 -935.6784972620122 23.1059 0.1144 3211 +3213 2 14.858410663179171 -934.779548525539 23.0966 0.1144 3212 +3214 2 15.447219798383657 -933.8039564528468 23.0165 0.1144 3213 +3215 2 15.972004059413933 -932.7898953603208 22.8724 0.1144 3214 +3216 2 16.510149475019972 -931.7822941090005 22.6757 0.1144 3215 +3217 2 17.082742338005374 -930.7978888351128 22.4335 0.1144 3216 +3218 2 17.62507701863038 -929.7971030117761 22.1608 0.1144 3217 +3219 2 17.58504989795668 -928.7030681541914 21.8981 0.1144 3218 +3220 2 17.28172512112431 -927.6044295740571 21.674 0.1144 3219 +3221 2 17.277643179898604 -926.4749187517292 21.44 0.1144 3220 +3222 2 17.352638025549908 -925.3384716640362 21.1827 0.1144 3221 +3223 2 17.313582569770972 -924.2022867665069 20.8997 0.1144 3222 +3224 2 17.2179029017947 -923.0700361532873 20.5875 0.1144 3223 +3225 2 17.112913785599062 -921.9381082998088 20.2521 0.1144 3224 +3226 2 16.826025718147832 -920.8400481526612 19.9754 0.1144 3225 +3227 2 16.445633546750003 -919.7646004477775 19.7839 0.1144 3226 +3228 2 16.121592092038185 -918.6693054073304 19.6148 0.1144 3227 +3229 2 15.888072991529981 -917.5532307280648 19.4035 0.1144 3228 +3230 2 15.612908710313576 -916.4480816574219 19.155 0.1144 3229 +3231 2 15.234743266806277 -915.3739649983308 18.8936 0.1144 3230 +3232 2 14.829090258268621 -914.309936142207 18.623 0.1144 3231 +3233 2 14.42255249419594 -913.246568502873 18.3529 0.1144 3232 +3234 2 13.975521597295284 -912.1960007148573 18.1543 0.1144 3233 +3235 2 13.514625379118968 -911.1511384387316 18.034 0.1144 3234 +3236 2 12.801898309711277 -910.2625959386036 17.8987 0.1144 3235 +3237 2 11.997589619308854 -909.4544093137804 17.7141 0.1144 3236 +3238 2 11.18245282476957 -908.6568693861352 17.4818 0.1144 3237 +3239 2 10.368881541330865 -907.8597757487476 17.21 0.1144 3238 +3240 2 9.555492357387578 -907.0652699366581 16.909 0.1144 3239 +3241 2 8.743125487641834 -906.2701357348157 16.5972 0.1144 3240 +3242 2 7.9292454726082156 -905.4746404355657 16.2957 0.1144 3241 +3243 2 7.2382433671314175 -904.5712182196407 16.0221 0.1144 3242 +3244 2 7.0160486177838095 -903.4603903556751 15.8117 0.1144 3243 +3245 2 6.860261230214064 -902.3286983525779 15.659 0.1144 3244 +3246 2 6.261604285100844 -901.363349233312 15.5007 0.1144 3245 +3247 2 5.741516260741349 -900.3468887191168 15.3592 0.1144 3246 +3248 2 5.39782498318047 -899.256863826865 15.2576 0.1144 3247 +3249 2 5.076594892511935 -898.1598407145975 15.1861 0.1144 3248 +3250 2 5.122497631829049 -897.0197951065084 15.1248 0.1144 3249 +3251 2 5.449621163406761 -895.9243969619563 15.073 0.1144 3250 +3252 2 5.687365178608047 -894.8059972511035 15.0497 0.1144 3251 +3253 2 5.8182292146042585 -893.6687797283388 15.0592 0.1144 3252 +3254 2 5.814992998710352 -892.5253676561151 15.0173 0.1144 3253 +3255 2 5.662907146652287 -891.4061903897255 14.5838 0.1144 3254 +3256 2 2.899135752173038 -991.6476678808771 32.9031 0.1144 3157 +3257 2 3.8797410978630182 -991.1282557939901 33.4488 0.1144 3256 +3258 2 4.7242470037145665 -990.3633648638688 33.686 0.1144 3257 +3259 2 5.324692323257693 -989.3981100642233 33.9654 0.1144 3258 +3260 2 5.586854551850024 -988.2888815503906 34.2107 0.1144 3259 +3261 2 5.304246452897047 -987.186899430569 34.4576 0.1144 3260 +3262 2 4.993530224140841 -986.0915129941059 34.6959 0.1144 3261 +3263 2 4.7066390551064785 -984.9867640510739 34.9275 0.1144 3262 +3264 2 4.723846714117258 -983.8481580145226 35.1812 0.1144 3263 +3265 2 5.0998066724772855 -982.7711022640111 35.3752 0.1144 3264 +3266 2 5.6393885580378935 -981.785507297113 35.8985 0.1144 3265 +3267 2 -64.94996999951002 -1132.1922510790455 42.0325 0.1144 2332 +3268 2 -64.77582990171948 -1131.1210463010775 41.148 0.1144 3267 +3269 2 -65.30661759261704 -1130.6791680065307 40.74 0.1144 3268 +3270 2 -66.24103508437906 -1130.1027291536684 40.0907 0.1144 3269 +3271 2 -67.30704810599485 -1130.0113205230832 39.3915 0.1144 3270 +3272 2 -68.34272246381914 -1130.3645653030096 38.6638 0.1144 3271 +3273 2 -69.00166793707996 -1131.1603623143567 37.9243 0.1144 3272 +3274 2 -69.51866269618534 -1132.1107102711903 37.1053 0.1144 3273 +3275 2 -70.6156848141427 -1132.1632552301544 36.463 0.1144 3274 +3276 2 -71.5770335688917 -1132.7031104994094 35.8711 0.1144 3275 +3277 2 -72.70139097253406 -1132.800746501348 35.4225 0.1144 3276 +3278 2 -73.8327876566571 -1132.7776988733679 35.0302 0.1144 3277 +3279 2 -74.96463442515721 -1132.725465333991 34.6382 0.1144 3278 +3280 2 -76.09939757341476 -1132.7515566612221 34.2885 0.1144 3279 +3281 2 -77.2339433860933 -1132.76272442436 33.9368 0.1144 3280 +3282 2 -78.36427460025908 -1132.6934781516618 33.5423 0.1144 3281 +3283 2 -79.47355137203306 -1132.5884010199793 32.9588 0.1144 3282 +3284 2 -80.3816216505341 -1132.2186732562084 31.6722 0.1144 3283 +3285 2 -81.33656371141615 -1132.1114614081766 30.3993 0.1144 3284 +3286 2 -82.24844474371065 -1131.6742344728884 29.2914 0.1144 3285 +3287 2 -83.01550454296512 -1131.03377825708 27.9441 0.1144 3286 +3288 2 -83.98529218454507 -1130.7624376220128 26.6489 0.1144 3287 +3289 2 -84.48399941345843 -1131.071679646695 24.462 0.1144 3288 +3290 2 -84.95395221156053 -1132.0265656543193 23.6309 0.1144 3289 +3291 2 -85.65509527248571 -1132.786558146464 23.2106 0.1144 3290 +3292 2 -86.74694414889319 -1132.8561127371663 22.8032 0.1144 3291 +3293 2 -87.86101324194505 -1132.6559683994828 22.4028 0.1144 3292 +3294 2 -88.96062047438033 -1132.3985738688962 21.9739 0.1144 3293 +3295 2 -90.04589798892812 -1132.098800343686 21.4708 0.1144 3294 +3296 2 -90.93359766450112 -1131.4694648401687 20.8991 0.1144 3295 +3297 2 -91.04108289622718 -1130.4774631794035 20.1764 0.1144 3296 +3298 2 -91.80800164447305 -1130.1605389714468 18.917 0.1144 3297 +3299 2 -92.7622797777451 -1129.7440902899039 17.9589 0.1144 3298 +3300 2 -93.04933552578274 -1128.9711604887455 17.0652 0.1144 3299 +3301 2 -92.20805914092853 -1128.4217702319274 15.9632 0.1144 3300 +3302 2 -91.1531337027929 -1128.099653669214 15.2845 0.1144 3301 +3303 2 -90.03917963471912 -1127.913099161839 14.8769 0.1144 3302 +3304 2 -88.95538002937548 -1128.19500020025 14.6055 0.1144 3303 +3305 2 -88.10346635820264 -1128.9322551268992 14.424 0.1144 3304 +3306 2 -87.5387489943455 -1129.918583398297 14.2923 0.1144 3305 +3307 2 -87.11011114078815 -1130.976465962903 14.17 0.1144 3306 +3308 2 -86.67635000244724 -1132.0338991356684 14.022 0.1144 3307 +3309 2 -86.19533577069035 -1133.067569203363 13.7885 0.1144 3308 +3310 2 -85.73048234375676 -1134.0992000585957 13.3894 0.1144 3309 +3311 2 -85.28034065596722 -1135.126375049001 12.8422 0.1144 3310 +3312 2 -85.01545887293804 -1136.225871666103 12.4247 0.1144 3311 +3313 2 -84.69084449586921 -1137.3154150320138 12.1157 0.1144 3312 +3314 2 -84.28443646547919 -1138.3762800388995 11.7793 0.1144 3313 +3315 2 -83.42194019724309 -1130.89026073574 25.0973 0.1144 3288 +3316 2 -82.79640595281296 -1131.593411188378 23.9586 0.1144 3315 +3317 2 -82.57128010302534 -1132.6608845987062 23.1788 0.1144 3316 +3318 2 -82.40187898921727 -1133.7666014895244 22.6008 0.1144 3317 +3319 2 -82.23157909172818 -1134.8825649499097 22.1509 0.1144 3318 +3320 2 -82.05917909844806 -1136.0040456195234 21.7932 0.1144 3319 +3321 2 -81.9052768801368 -1137.1326706800278 21.5438 0.1144 3320 +3322 2 -81.76232388743239 -1138.2654435663017 21.3757 0.1144 3321 +3323 2 -82.05800264522253 -1139.3375224869933 21.2496 0.1144 3322 +3324 2 -82.61299272280053 -1140.3352882229206 21.148 0.1144 3323 +3325 2 -83.19818861692625 -1141.3167586022485 21.0502 0.1144 3324 +3326 2 -83.7848648293027 -1142.2977303255063 20.9416 0.1144 3325 +3327 2 -84.37099784477613 -1143.2797767287746 20.8126 0.1144 3326 +3328 2 -84.85322101168799 -1144.3107553644859 20.5799 0.1144 3327 +3329 2 -85.20053825555442 -1145.3862863506101 20.1748 0.1144 3328 +3330 2 -85.80646554824222 -1146.3361298566551 19.763 0.1144 3329 +3331 2 -86.57766616461754 -1147.1700560280292 19.4577 0.1144 3330 +3332 2 -87.35942518373804 -1147.9997905253376 19.234 0.1144 3331 +3333 2 -88.09804639226337 -1148.8714423137926 19.0805 0.1144 3332 +3334 2 -88.32136860102463 -1149.984850882591 18.9921 0.1144 3333 +3335 2 -88.5178114031961 -1151.1114347123503 18.9415 0.1144 3334 +3336 2 -88.71376337427728 -1152.2390080292698 18.894 0.1144 3335 +3337 2 -88.86124621915008 -1153.3730592937497 18.8167 0.1144 3336 +3338 2 -88.97049789516876 -1154.5104910505102 18.7008 0.1144 3337 +3339 2 -89.07663808776203 -1155.648592636273 18.5608 0.1144 3338 +3340 2 -89.18335430429534 -1156.7857571006884 18.4117 0.1144 3339 +3341 2 -89.04543940352471 -1157.91892701299 18.2795 0.1144 3340 +3342 2 -88.5390674279825 -1158.9438184230357 18.2061 0.1144 3341 +3343 2 -88.71154140860335 -1160.0744501650315 18.1844 0.1144 3342 +3344 2 -88.88820155266006 -1161.2049552749281 18.2099 0.1144 3343 +3345 2 -89.30153664350473 -1162.435277164791 18.4038 0.1144 3344 +3346 2 -89.82481086083021 -1163.4430105588406 18.5815 0.1144 3345 +3347 2 -90.54070599916457 -1164.327573417494 18.765 0.1144 3346 +3348 2 -90.69711737198475 -1165.3838898674524 19.0043 0.1144 3347 +3349 2 -90.57122947841424 -1166.515062006542 19.3021 0.1144 3348 +3350 2 -89.74925163830869 -1167.1444160248616 19.6627 0.1144 3349 +3351 2 -88.62614959943573 -1167.2960466955037 19.9727 0.1144 3350 +3352 2 -87.52283772990563 -1167.5726447586821 20.264 0.1144 3351 +3353 2 -86.4855813524839 -1168.03891894572 20.535 0.1144 3352 +3354 2 -85.43070167425373 -1168.4660717924353 20.8204 0.1144 3353 +3355 2 -84.36410982888833 -1168.8578540985698 21.138 0.1144 3354 +3356 2 -83.29707169326542 -1169.2480708936037 21.4787 0.1144 3355 +3357 2 -82.59275908251573 -1170.1164313005424 21.9311 0.1144 3356 +3358 2 -82.07426670315868 -1171.038442071927 22.9975 0.1144 3357 +3359 2 -88.80200400956119 -1161.4782903688397 18.1033 0.1144 3344 +3360 2 -88.45818609990079 -1162.5641290976557 17.9494 0.1144 3359 +3361 2 -88.23789531870267 -1163.6829353640483 17.9494 0.1144 3360 +3362 2 -88.11664849103818 -1164.8195426210991 17.9494 0.1144 3361 +3363 2 -88.01102788350659 -1165.9591815846595 17.9494 0.1144 3362 +3364 2 -87.48320272303488 -1166.9118437703123 17.9494 0.1144 3363 +3365 2 -86.94205405311737 -1167.9058510172913 17.9494 0.1144 3364 +3366 2 -87.63130665921665 -1168.8182899494864 17.9494 0.1144 3365 +3367 2 -88.32215760345349 -1169.7304201500867 17.9494 0.1144 3366 +3368 2 -88.9459019155446 -1170.68851555407 17.9494 0.1144 3367 +3369 2 -89.54967915567522 -1171.661335292922 17.9494 0.1144 3368 +3370 2 -90.15328522287342 -1172.6325238665995 17.9494 0.1144 3369 +3371 2 -64.60419084366242 -1131.5203988442638 41.9398 0.1144 3268 +3372 2 -64.50972659295331 -1132.4560795137968 43.0623 0.1144 3371 +3373 2 -65.35925928539075 -1133.1232302197695 43.7746 0.1144 3372 +3374 2 -66.28635941353718 -1133.766926866018 44.21 0.1144 3373 +3375 2 -67.17142933283185 -1134.47881061914 44.5158 0.1144 3374 +3376 2 -68.00216613151684 -1135.2594184728737 44.742 0.1144 3375 +3377 2 -68.50743571931412 -1136.2508027594386 45.0156 0.1144 3376 +3378 2 -67.72319650046228 -1136.836329315296 45.3558 0.1144 3377 +3379 2 -66.74904330677123 -1137.4205059968072 45.6761 0.1144 3378 +3380 2 -65.842791412807 -1138.114970182123 45.7943 0.1144 3379 +3381 2 -65.13468587052961 -1139.0091705517248 45.995 0.1144 3380 +3382 2 -69.72367484796973 -1146.9823295558417 38.5241 0.1144 1874 +3383 2 -70.50726977211906 -1147.8023935075234 38.8651 0.1144 3382 +3384 2 -71.3044900416063 -1148.6201509543976 39.0468 0.1144 3383 +3385 2 -72.12230887438989 -1149.415472956322 39.2456 0.1144 3384 +3386 2 -72.95741393600616 -1150.1933663526577 39.41 0.1144 3385 +3387 2 -73.83561536896775 -1150.9252086602241 39.468 0.1144 3386 +3388 2 -74.78519999921679 -1151.3289487746479 39.3448 0.1144 3387 +3389 2 -75.45197178551604 -1150.519562145777 38.9486 0.1144 3388 +3390 2 -75.92786514153579 -1149.5028165169706 38.4182 0.1144 3389 +3391 2 -76.40032425438903 -1148.4960501653866 37.7689 0.1144 3390 +3392 2 -76.88146993633842 -1147.5013139225857 37.044 0.1144 3391 +3393 2 -77.55289510017985 -1146.6450181679772 36.2454 0.1144 3392 +3394 2 -78.28596474588659 -1145.8347129325607 35.4091 0.1144 3393 +3395 2 -79.0178823437131 -1145.02628193984 34.5652 0.1144 3394 +3396 2 -79.87560654249 -1144.3517584867022 33.7526 0.1144 3395 +3397 2 -80.83019682269179 -1143.8038004801504 33.0047 0.1144 3396 +3398 2 -81.74346916858264 -1143.180793367646 32.2932 0.1144 3397 +3399 2 -82.16277354848859 -1142.1776248439214 31.6865 0.1144 3398 +3400 2 -82.49661458997355 -1141.1057257026678 31.1517 0.1144 3399 +3401 2 -82.71952843255343 -1140.0046129251623 30.6351 0.1144 3400 +3402 2 -82.80179147855807 -1138.8855961418822 30.1109 0.1144 3401 +3403 2 -82.86325265383346 -1137.7631834531026 29.5924 0.1144 3402 +3404 2 -82.08004485312222 -1137.0077994839153 29.148 0.1144 3403 +3405 2 -81.06027672786007 -1136.5018769002136 28.8795 0.1144 3404 +3406 2 -80.03935655471781 -1135.9978285592074 28.6068 0.1144 3405 +3407 2 -68.47638356366622 -1148.5482424053007 40.6778 0.1144 1872 +3408 2 -68.25500799906189 -1148.4147510220728 41.2628 0.1144 3407 +3409 2 -67.24182324552191 -1147.9330645522668 41.7992 0.1144 3408 +3410 2 -66.21148440587854 -1147.4836778863296 42.322 0.1144 3409 +3411 2 -65.15319009456181 -1147.0950485376761 42.8039 0.1144 3410 +3412 2 -64.14818366520984 -1146.5672110655682 43.1469 0.1144 3411 +3413 2 -63.88442499811106 -1146.6052196899873 43.1466 0.1345 3412 +3414 2 -62.785725457636204 -1146.5139644448748 43.3474 0.2039 3413 +3415 2 -61.80847767977946 -1145.9629278937514 43.657 0.2288 3414 +3416 2 -60.865246472263834 -1145.3280968145116 43.8614 0.2288 3415 +3417 2 -59.81511335540608 -1144.9109130457973 44.1101 0.2288 3416 +3418 2 -58.76341713649413 -1144.5115493980697 44.4858 0.2288 3417 +3419 2 -58.11776234564189 -1143.6742697667341 45.113 0.2288 3418 +3420 2 -57.89796439099007 -1142.585681947984 45.7052 0.2288 3419 +3421 2 -57.809820215712364 -1141.4599332307453 46.144 0.2288 3420 +3422 2 -57.80120842231838 -1140.3226199023197 46.4573 0.2288 3421 +3423 2 -57.71698932129749 -1139.1859024206985 46.6603 0.2288 3422 +3424 2 -57.67906498440732 -1138.04395284446 46.7678 0.2288 3423 +3425 2 -57.57132645367636 -1136.9061599902918 46.8126 0.2288 3424 +3426 2 -57.430033748617575 -1135.7706315091446 46.839 0.2288 3425 +3427 2 -57.17597965613476 -1134.6569963947138 46.8695 0.2288 3426 +3428 2 -56.9388116648737 -1133.537659562513 46.909 0.2288 3427 +3429 2 -56.7526599731022 -1132.4094195181738 46.982 0.2288 3428 +3430 2 -56.656372425631446 -1131.2705660121414 47.0744 0.1595 3429 +3431 2 -56.38320550403637 -1130.1639636612736 47.1808 0.1192 3430 +3432 2 -55.904989502648164 -1129.1287574228766 47.297 0.1144 3431 +3433 2 -55.378606903480204 -1128.1150050619456 47.4216 0.1144 3432 +3434 2 -54.90653960265615 -1127.0741878092576 47.5681 0.1144 3433 +3435 2 -54.76154536208571 -1125.9511740648177 47.7977 0.1144 3434 +3436 2 -55.051326884847015 -1124.861583151187 48.1242 0.1144 3435 +3437 2 -55.472123894639935 -1123.8055717276934 48.4448 0.1144 3436 +3438 2 -55.787696115834535 -1122.713170142556 48.7225 0.1144 3437 +3439 2 -55.89642510520855 -1121.5795501458774 48.9616 0.1144 3438 +3440 2 -55.47105820675574 -1120.532458945599 49.175 0.1144 3439 +3441 2 -54.95968746611396 -1119.5118528190176 49.3898 0.1144 3440 +3442 2 -54.90473636775641 -1118.3823265834703 49.6728 0.1144 3441 +3443 2 -54.65032668849551 -1117.2778633585967 50.0416 0.1144 3442 +3444 2 -54.549976508105374 -1116.150011443984 50.4398 0.1144 3443 +3445 2 -54.526352856185156 -1115.0195518812088 50.8628 0.1144 3444 +3446 2 -54.339566571494686 -1113.9057117428356 51.3013 0.1144 3445 +3447 2 -53.995198250334056 -1112.8318760014945 51.7723 0.1144 3446 +3448 2 -53.77013966502045 -1112.6451775195067 51.9744 0.1144 3447 +3449 2 -53.11897446594651 -1111.7427685138364 52.4499 0.1144 3448 +3450 2 -52.84388334488966 -1110.6524731386671 52.747 0.1144 3449 +3451 2 -52.37885190921145 -1109.624079919207 53.0057 0.1144 3450 +3452 2 -51.79449622978797 -1108.6458257549298 53.2596 0.1144 3451 +3453 2 -51.22627162973373 -1107.6587060236443 53.501 0.1144 3452 +3454 2 -50.960983889569775 -1106.5610551251712 53.772 0.1144 3453 +3455 2 -51.08286151603363 -1105.4407993846517 54.1276 0.1144 3454 +3456 2 -51.16557705546188 -1104.3099705207042 54.488 0.1144 3455 +3457 2 -50.6566527873361 -1103.3203307431522 54.8542 0.1144 3456 +3458 2 -50.28117745690014 -1102.2556630972485 55.2726 0.1144 3457 +3459 2 -49.93096916677024 -1101.189036708336 55.8054 0.1144 3458 +3460 2 -50.22711982725775 -1100.102069548624 56.2604 0.1144 3459 +3461 2 -50.73967573944782 -1099.089078513679 56.6068 0.1144 3460 +3462 2 -51.03395525882286 -1097.9942705102023 56.9643 0.1144 3461 +3463 2 -51.6625992998317 -1097.0458277234702 57.2547 0.1144 3462 +3464 2 -52.160769334201916 -1096.0212943092492 57.5193 0.1144 3463 +3465 2 -52.597820953880614 -1094.967292278067 57.7108 0.1144 3464 +3466 2 -52.743309406070466 -1093.8347866841386 57.869 0.1144 3465 +3467 2 -53.29831788663387 -1092.8357999142047 58.0068 0.1144 3466 +3468 2 -53.745776067259385 -1093.1980546265154 58.2823 0.1144 3467 +3469 2 -54.60527641781931 -1093.8969211927406 58.97 0.1144 3468 +3470 2 -55.48175047149721 -1094.6075122377372 59.4121 0.1144 3469 +3471 2 -56.30156777002935 -1095.3907986202485 59.7512 0.1144 3470 +3472 2 -57.032891331693406 -1096.2632468698052 60.0127 0.1144 3471 +3473 2 -57.739961649732436 -1097.1598750733256 60.1787 0.1144 3472 +3474 2 -58.44538908880094 -1098.0593670067021 60.2487 0.1144 3473 +3475 2 -59.1500505794541 -1098.959914081313 60.2224 0.1144 3474 +3476 2 -59.85539282567288 -1099.8593536488768 60.1166 0.1144 3475 +3477 2 -60.560682706078865 -1100.7588784092902 59.9528 0.1144 3476 +3478 2 -61.21945359107252 -1101.686151918609 59.689 0.1144 3477 +3479 2 -61.819987205048506 -1102.6447702881833 59.2735 0.1144 3478 +3480 2 -62.40029187065221 -1103.605744426794 58.7364 0.1144 3479 +3481 2 -62.7910494535426 -1104.6543340516778 58.1784 0.1144 3480 +3482 2 -62.971596334189485 -1105.7630478036845 57.6691 0.1144 3481 +3483 2 -63.118947036333054 -1106.8822278698835 57.2166 0.1144 3482 +3484 2 -63.260725061852554 -1108.0060818290258 56.8249 0.1144 3483 +3485 2 -63.35866641485683 -1109.1378526147291 56.495 0.1144 3484 +3486 2 -63.44813853434391 -1110.2725168557427 56.2089 0.1144 3485 +3487 2 -63.53694943704113 -1111.4080658522912 55.9468 0.1144 3486 +3488 2 -63.62584553258807 -1112.5436672146523 55.6984 0.1144 3487 +3489 2 -63.71411323838231 -1113.680290891211 55.4616 0.1144 3488 +3490 2 -63.803946455277014 -1114.8164682775123 55.2373 0.1144 3489 +3491 2 -63.89266045132865 -1115.9546574651713 55.027 0.1144 3490 +3492 2 -63.981865278470536 -1117.0918571656703 54.833 0.1144 3491 +3493 2 -64.12026142663626 -1118.2256052091848 54.6734 0.1144 3492 +3494 2 -64.31576710745998 -1119.351613015004 54.5639 0.1144 3493 +3495 2 -64.52326696844682 -1120.4754854889484 54.4981 0.1144 3494 +3496 2 -64.73116075387844 -1121.6010086668434 54.4664 0.1144 3495 +3497 2 -64.93896934646017 -1122.7264794789257 54.4603 0.1144 3496 +3498 2 -65.14743915583188 -1123.851065535473 54.4726 0.1144 3497 +3499 2 -65.3553329412635 -1124.976588713368 54.4961 0.1144 3498 +3500 2 -65.56283280225028 -1126.1004611873127 54.5308 0.1144 3499 +3501 2 -65.77130261162199 -1127.22504724386 54.5818 0.1144 3500 +3502 2 -65.93909959771679 -1128.356795105116 54.6518 0.1144 3501 +3503 2 -65.90944739521973 -1129.4973513671598 54.7431 0.1144 3502 +3504 2 -65.84169375755141 -1130.6387854890356 54.8542 0.1144 3503 +3505 2 -65.6679596168957 -1131.764728226643 55.0813 0.1144 3504 +3506 2 -65.46781259122002 -1132.881126358186 55.438 0.1144 3505 +3507 2 -65.51607179211027 -1134.0173382880344 55.7301 0.1144 3506 +3508 2 -65.49621986892288 -1135.1572278226586 55.9658 0.1144 3507 +3509 2 -65.81309683093349 -1136.2517271835295 56.1526 0.1144 3508 +3510 2 -66.10181570637462 -1137.357089884621 56.296 0.1144 3509 +3511 2 -66.31350173079733 -1138.480835726466 56.4007 0.1144 3510 +3512 2 -66.49978315625145 -1139.606573138357 56.5953 0.1144 3511 +3513 2 -66.662638957058 -1140.7352837824742 56.8145 0.1144 3512 +3514 2 -66.79693413463764 -1141.869210823901 56.9892 0.1144 3513 +3515 2 -66.76246737895195 -1143.0109160322418 57.1234 0.1144 3514 +3516 2 -66.92299954522247 -1144.1435979132625 57.2194 0.1144 3515 +3517 2 -67.56083930555644 -1144.1436096213513 58.4984 0.1144 3516 +3518 2 -68.30704848441002 -1144.6882075568915 59.6691 0.1144 3517 +3519 2 -68.94462116518315 -1145.5930606260313 60.3761 0.1144 3518 +3520 2 -68.83469395957547 -1146.0801152630766 61.7053 0.1144 3519 +3521 2 -67.86450427877531 -1145.6354210048848 62.7122 0.1144 3520 +3522 2 -66.90134495249123 -1145.1924657450763 63.7655 0.1144 3521 +3523 2 -65.9411673759501 -1144.7513432887133 64.8354 0.1144 3522 +3524 2 -65.29023003627702 -1144.5956158671738 66.1668 0.1144 3523 +3525 2 -65.66965196265903 -1145.551315057181 67.2493 0.1144 3524 +3526 2 -66.07320629528465 -1146.566100345121 68.0814 0.1144 3525 +3527 2 -66.48269068483359 -1147.4180847902346 69.2418 0.1144 3526 +3528 2 -66.39403105519324 -1146.3980140475546 70.4864 0.1144 3527 +3529 2 -66.45895690931076 -1145.4643663873169 71.9186 0.1144 3528 +3530 2 -67.18414836789668 -1144.91379483121 73.4586 0.1144 3529 +3531 2 -67.98803399426265 -1144.4666460866943 75.0036 0.1144 3530 +3532 2 -68.41125995607956 -1143.7760079794018 76.9432 0.1144 3531 +3533 2 -69.24754620516762 -1144.1893385487845 78.3031 0.1144 3532 +3534 2 -69.42170412522387 -1145.2188841178981 79.3503 0.1144 3533 +3535 2 -69.5656359974202 -1146.2890104217363 80.2729 0.1144 3534 +3536 2 -69.71294905443375 -1147.373305267815 81.0947 0.1144 3535 +3537 2 -69.86053491442203 -1148.4657496892532 81.8356 0.1144 3536 +3538 2 -70.00905479417503 -1149.565458930516 82.5216 0.1144 3537 +3539 2 -70.15796859837269 -1150.666818875729 83.1832 0.1144 3538 +3540 2 -70.30724349997803 -1151.7696919662296 83.8275 0.1144 3539 +3541 2 -70.45722105762303 -1152.8758140988184 84.4516 0.1144 3540 +3542 2 -70.19365221403211 -1153.9424294721784 85.1004 0.1144 3541 +3543 2 -69.30241217859395 -1154.6300398918438 85.6024 0.1144 3542 +3544 2 -68.40698597971999 -1155.3177769436088 86.0572 0.1144 3543 +3545 2 -67.50947061161804 -1156.0068122141288 86.4676 0.1144 3544 +3546 2 -66.61163558535833 -1156.6984681369843 86.8384 0.1144 3545 +3547 2 -65.71162619702073 -1157.3913699127825 87.1732 0.1144 3546 +3548 2 -64.81013649043234 -1158.0847703446507 87.481 0.1144 3547 +3549 2 -63.923446817420825 -1158.76707848162 88.0636 0.1144 3548 +3550 2 -67.14123129623721 -1145.256694648883 57.2782 0.1144 3516 +3551 2 -67.51161857797308 -1146.3384242923375 57.3359 0.1144 3550 +3552 2 -67.90584804916006 -1147.4119198601195 57.4067 0.1144 3551 +3553 2 -68.1933364848777 -1148.45607515955 57.4616 0.1144 3552 +3554 2 -68.59441731266855 -1149.5272087551293 57.4361 0.1144 3553 +3555 2 -69.01845557437537 -1150.5894470582462 57.3804 0.1144 3554 +3556 2 -69.35185443861695 -1151.6834203519434 57.3289 0.1144 3555 +3557 2 -69.49622580006411 -1152.8181414454257 57.2824 0.1144 3556 +3558 2 -69.74131982793949 -1153.9356595023264 57.2471 0.1144 3557 +3559 2 -69.99582021067977 -1155.050860127858 57.2292 0.1144 3558 +3560 2 -70.27700697395142 -1156.1596923081993 57.2286 0.1144 3559 +3561 2 -70.6198121930579 -1157.2513481705264 57.2348 0.1144 3560 +3562 2 -70.96110426687659 -1158.3433651302612 57.2432 0.1144 3561 +3563 2 -71.27285484252053 -1159.4441038951759 57.2552 0.1144 3562 +3564 2 -71.20609069201265 -1160.5860288481422 57.272 0.1144 3563 +3565 2 -70.9752860489022 -1161.706471790339 57.2958 0.1144 3564 +3566 2 -70.68363269249193 -1162.812284486818 57.328 0.1144 3565 +3567 2 -70.38338347046493 -1163.9168044751714 57.3726 0.1144 3566 +3568 2 -70.16282539692156 -1165.0381462010496 57.4381 0.1144 3567 +3569 2 -70.09088559581744 -1166.1797069550248 57.5333 0.1144 3568 +3570 2 -69.46434134882594 -1166.8298847742112 57.7223 0.1144 3569 +3571 2 -68.82902254007905 -1167.7674166730033 57.993 0.1144 3570 +3572 2 -68.24551269780426 -1168.7340944290154 58.427 0.1144 3571 +3573 2 -67.70636249363537 -1169.7160660565812 58.9898 0.1144 3572 +3574 2 -67.91741192454043 -1170.7360081665634 59.8408 0.1144 3573 +3575 2 -67.12603632346321 -1170.7585332197154 60.5637 0.1144 3574 +3576 2 -65.98394298539586 -1170.8098679754112 60.5144 0.1144 3575 +3577 2 -64.84186436801127 -1170.8262323181366 60.4794 0.1144 3576 +3578 2 -63.70495968471306 -1170.801524402511 60.4206 0.1144 3577 +3579 2 -62.57085605442052 -1170.9490924402335 60.3896 0.1144 3578 +3580 2 -61.4302720675214 -1171.0308175210187 60.3994 0.1144 3579 +3581 2 -60.28911585080186 -1171.0827283006543 60.4758 0.1144 3580 +3582 2 -59.150815444262264 -1171.1082230936868 60.6603 0.1144 3581 +3583 2 -58.02681703075467 -1171.287474164625 60.9028 0.1144 3582 +3584 2 -56.930446528771256 -1171.5965102828711 61.0649 0.1144 3583 +3585 2 -56.18271310008828 -1172.2756087217076 61.0621 0.1144 3584 +3586 2 -56.333463501851384 -1173.3432354946804 60.8723 0.1144 3585 +3587 2 -56.845677558778505 -1174.3603690404284 60.608 0.1144 3586 +3588 2 -57.32358482857177 -1175.393976940688 60.3512 0.1144 3587 +3589 2 -57.731442746679704 -1176.4584772077787 60.1432 0.1144 3588 +3590 2 -57.9865746207559 -1177.5659667232283 59.9897 0.1144 3589 +3591 2 -58.04342968726286 -1178.7034713612024 59.8825 0.1144 3590 +3592 2 -58.061753465533684 -1179.8467543922798 59.7993 0.1144 3591 +3593 2 -58.073526006582824 -1180.990001494737 59.7114 0.1144 3592 +3594 2 -57.996782578853015 -1182.128492204537 59.5795 0.1144 3593 +3595 2 -57.840601266838576 -1183.2585335036838 59.3782 0.1144 3594 +3596 2 -57.812817796407444 -1184.389556778763 59.1452 0.1144 3595 +3597 2 -57.75576322172981 -1185.5200776036522 58.9039 0.1144 3596 +3598 2 -57.469236251686254 -1186.619650896088 58.6611 0.1144 3597 +3599 2 -57.350701472372975 -1187.7432525853412 58.4623 0.1144 3598 +3600 2 -57.29533593931251 -1188.8842020792931 58.3108 0.1144 3599 +3601 2 -57.1228476515995 -1190.012319178978 58.1879 0.1144 3600 +3602 2 -56.76816570918203 -1191.0940624478376 58.074 0.1144 3601 +3603 2 -56.29524558538867 -1192.1342337012914 57.9547 0.1144 3602 +3604 2 -55.96426207059358 -1193.2211533132836 57.7889 0.1144 3603 +3605 2 -55.720763692863386 -1194.333793749383 57.5361 0.1144 3604 +3606 2 -55.416322796771 -1195.4277553349912 57.2118 0.1144 3605 +3607 2 -55.21933962033353 -1196.5433984446818 56.875 0.1144 3606 +3608 2 -55.057365194532906 -1197.6698788685626 56.597 0.1144 3607 +3609 2 -54.80723038673136 -1198.782431010229 56.4032 0.1144 3608 +3610 2 -54.5568806523973 -1199.897433418531 56.289 0.1144 3609 +3611 2 -54.47086060348511 -1201.035738927252 56.2705 0.1144 3610 +3612 2 -54.746970937156334 -1202.1333514880585 56.315 0.1144 3611 +3613 2 -55.01153889155148 -1203.2453499266846 56.3604 0.1144 3612 +3614 2 -55.14770831182665 -1204.3804290159915 56.3777 0.1144 3613 +3615 2 -55.116405405379226 -1205.5213792024801 56.3539 0.1144 3614 +3616 2 -54.987480294670036 -1206.6574925268578 56.2652 0.1144 3615 +3617 2 -54.8419066496304 -1207.7899457549736 56.1151 0.1144 3616 +3618 2 -54.70595118440502 -1208.9243200809678 55.9432 0.1144 3617 +3619 2 -54.34087650154527 -1210.001201154223 55.769 0.1144 3618 +3620 2 -53.92984384244187 -1211.0630970875188 55.5302 0.1144 3619 +3621 2 -53.845171969051364 -1212.1860327418894 55.167 0.1144 3620 +3622 2 -53.83792307700429 -1213.3229873819537 54.8512 0.1144 3621 +3623 2 -53.819584299104804 -1214.4625158191702 54.6059 0.1144 3622 +3624 2 -53.80163944565004 -1215.6036949603372 54.4163 0.1144 3623 +3625 2 -53.89698987177309 -1216.7419724424294 54.2724 0.1144 3624 +3626 2 -54.05245111907277 -1217.8741197387599 54.1677 0.1144 3625 +3627 2 -54.163215940379416 -1219.0111903981124 54.0173 0.1144 3626 +3628 2 -54.07118785114858 -1220.1483852982033 53.8636 0.1144 3627 +3629 2 -53.976933034027354 -1221.2869112440867 53.7211 0.1144 3628 +3630 2 -54.0072838194983 -1222.4281965019522 53.5346 0.1144 3629 +3631 2 -54.21032161249144 -1223.5507348285214 53.3537 0.1144 3630 +3632 2 -54.239341352170015 -1224.6897933584964 53.1334 0.1144 3631 +3633 2 -53.83703119078291 -1225.757168163354 52.9614 0.1144 3632 +3634 2 -53.84328652260376 -1226.8983151700204 52.834 0.1144 3633 +3635 2 -54.14452323633532 -1228.0006906107392 52.7447 0.1144 3634 +3636 2 -54.278551121569876 -1229.1371531116515 52.6868 0.1144 3635 +3637 2 -54.44376028236644 -1230.2687188734121 52.6442 0.1144 3636 +3638 2 -54.03481369090798 -1231.3360053838367 52.6089 0.1144 3637 +3639 2 -53.54661983217659 -1232.3706618371084 52.5664 0.1144 3638 +3640 2 -53.88130910217177 -1233.0450878690424 52.4437 0.1144 3639 +3641 2 -54.370529796562664 -1234.0776679444748 52.316 0.1144 3640 +3642 2 -54.780975539968665 -1235.142350311061 52.1867 0.1144 3641 +3643 2 -54.96757972516383 -1236.2587782747323 52.0654 0.1144 3642 +3644 2 -54.84663611846463 -1237.3862988350766 51.9501 0.1144 3643 +3645 2 -54.46219844387667 -1238.4551515491385 51.8109 0.1144 3644 +3646 2 -54.41758572469291 -1239.5369773000275 51.6138 0.1144 3645 +3647 2 -54.70973574171734 -1240.639049519781 51.3918 0.1144 3646 +3648 2 -54.75706092284304 -1241.767996629805 51.1823 0.1144 3647 +3649 2 -54.65839640354079 -1242.905103235463 51.0006 0.1144 3648 +3650 2 -54.54026105930177 -1244.0410406635115 50.8491 0.1144 3649 +3651 2 -54.421549691122664 -1245.177915212908 50.7262 0.1144 3650 +3652 2 -54.30278595713082 -1246.314874955154 50.6257 0.1144 3651 +3653 2 -54.18407458895189 -1247.4517495045502 50.5366 0.1144 3652 +3654 2 -53.88738624219087 -1248.5504763791173 50.4549 0.1144 3653 +3655 2 -53.46101655577377 -1249.611161695554 50.3773 0.1144 3654 +3656 2 -53.00886237408946 -1250.6612800917294 50.2984 0.1144 3655 +3657 2 -52.53644090636635 -1251.702931663434 50.2082 0.1144 3656 +3658 2 -51.92129798764233 -1252.6622556126522 50.0811 0.1144 3657 +3659 2 -51.22757832318473 -1253.56799836153 49.9097 0.1144 3658 +3660 2 -50.77970170095227 -1254.6046648996498 49.6919 0.1144 3659 +3661 2 -50.49717879484916 -1255.706699385284 49.4413 0.1144 3660 +3662 2 -50.238001831173335 -1256.816393307724 49.173 0.1144 3661 +3663 2 -49.97851613590257 -1257.9244888920261 48.902 0.1144 3662 +3664 2 -49.71942436507652 -1259.0342351802785 48.6427 0.1144 3663 +3665 2 -49.515355366727135 -1260.1549132803202 48.4042 0.1144 3664 +3666 2 -49.299474287709984 -1261.2751388869378 48.2056 0.1144 3665 +3667 2 -48.94893475512828 -1262.3608369555081 48.0878 0.1144 3666 +3668 2 -48.53196832199308 -1263.4258936364595 48.0522 0.1144 3667 +3669 2 -48.05116591518555 -1264.4638022334025 48.0488 0.1144 3668 +3670 2 -47.539276730415 -1265.4865935476569 48.0525 0.1144 3669 +3671 2 -47.11037158451251 -1266.547011571749 48.048 0.1144 3670 +3672 2 -47.56463107598637 -1267.5339214786834 48.0102 0.1144 3671 +3673 2 -48.171891823513135 -1268.5033655433479 47.9427 0.1144 3672 +3674 2 -48.88003682156244 -1269.4005369437714 47.9405 0.1144 3673 +3675 2 -49.759713062145295 -1270.1211955604228 48.0474 0.1144 3674 +3676 2 -50.225694623344054 -1271.0737579335105 47.5916 0.1144 3675 +3677 2 -49.86621284842067 -1272.1216797356972 47.2629 0.1144 3676 +3678 2 -50.13694491659925 -1273.1690341204494 47.0632 0.1144 3677 +3679 2 -50.59306323754936 -1274.2161291148477 46.8986 0.1144 3678 +3680 2 -50.383474620925085 -1275.3173332883694 46.8266 0.1144 3679 +3681 2 -50.07671870250931 -1276.4192623498416 46.8605 0.1144 3680 +3682 2 -49.77004797694326 -1277.5212437771265 46.9336 0.1144 3681 +3683 2 -49.43277820292133 -1278.6138072304466 46.9123 0.1144 3682 +3684 2 -49.07469794595761 -1279.6989785393066 46.7698 0.1144 3683 +3685 2 -48.71520145035146 -1280.7818707544632 46.5438 0.1144 3684 +3686 2 -48.3054998370406 -1281.8459934156497 46.3221 0.1144 3685 +3687 2 -47.80657167923488 -1282.8740517765168 46.2162 0.1144 3686 +3688 2 -47.26710112437155 -1283.8827066830308 46.2039 0.1144 3687 +3689 2 -46.70768294162718 -1284.8802741127392 46.2664 0.1144 3688 +3690 2 -46.151112051546306 -1285.8730183770463 46.5559 0.1144 3689 +3691 2 -52.6575467542624 -1232.53456016574 53.9804 0.1144 3639 +3692 2 -51.538754817789595 -1232.5961093565022 54.4354 0.1144 3691 +3693 2 -50.78685203594131 -1232.7490095090488 54.6353 0.1144 3692 +3694 2 -50.974088405008956 -1233.8336637360255 54.871 0.1144 3693 +3695 2 -50.389969001535405 -1234.6092231035054 55.1869 0.1144 3694 +3696 2 -49.33893290413579 -1234.969014337366 55.5475 0.1144 3695 +3697 2 -48.56995331506471 -1235.7613549974308 55.9328 0.1144 3696 +3698 2 -47.9681356222963 -1236.7207703426652 56.3156 0.1144 3697 +3699 2 -47.129689222397815 -1237.403269789183 56.7129 0.1144 3698 +3700 2 -46.027523606029604 -1237.5905413943342 57.1004 0.1144 3699 +3701 2 -44.89657321216413 -1237.6151545334149 57.5033 0.1144 3700 +3702 2 -43.76848724069117 -1237.6173479248528 57.9608 0.1144 3701 +3703 2 -42.64258655785903 -1237.6140764728755 58.462 0.1144 3702 +3704 2 -41.51992950118154 -1237.625006390176 58.9988 0.1144 3703 +3705 2 -40.39986026980222 -1237.636118406972 59.5661 0.1144 3704 +3706 2 -39.28178330100519 -1237.6485723961232 60.1586 0.1144 3705 +3707 2 -38.16581504021184 -1237.6595054150066 60.772 0.1144 3706 +3708 2 -37.05086909361614 -1237.671066823643 61.4079 0.1144 3707 +3709 2 -35.95448767704778 -1237.5651553067823 62.1068 0.1144 3708 +3710 2 -35.05003042684126 -1237.0266988623519 62.8978 0.1144 3709 +3711 2 -34.273547350634374 -1236.2647667575259 63.7627 0.1144 3710 +3712 2 -33.502366557123366 -1235.5073850151266 64.6797 0.1144 3711 +3713 2 -32.734391052100364 -1234.7533820484982 65.6256 0.1144 3712 +3714 2 -31.966553105739933 -1233.9993462548325 66.575 0.1144 3713 +3715 2 -31.19630943357663 -1233.2425405363733 67.5016 0.1144 3714 +3716 2 -30.420763478717447 -1232.481184455488 68.3782 0.1144 3715 +3717 2 -29.639691702417338 -1231.7137320398506 69.1863 0.1144 3716 +3718 2 -28.850964283431324 -1230.9388741441435 69.9079 0.1144 3717 +3719 2 -28.78521041443088 -1229.8859306752374 70.4679 0.1144 3718 +3720 2 -29.2823581346035 -1228.8607688712636 70.6474 0.1144 3719 +3721 2 -29.789391326935686 -1227.834992705683 70.6115 0.1144 3720 +3722 2 -30.296157226922674 -1226.8117519995876 70.427 0.1144 3721 +3723 2 -30.799235619543936 -1225.7901182438427 70.1557 0.1144 3722 +3724 2 -31.303016668204975 -1224.7717335301859 69.851 0.1144 3723 +3725 2 -31.8063514266085 -1223.7517833054285 69.5545 0.1144 3724 +3726 2 -32.303404649182085 -1222.7466355232941 68.9926 0.1144 3725 +3727 2 -68.41036407556061 -1170.7597641511693 60.1538 0.1144 3574 +3728 2 -69.51901686722687 -1170.7912868022422 60.8306 0.1144 3727 +3729 2 -70.628907308071 -1170.7201577693322 61.453 0.1144 3728 +3730 2 -71.73058829651507 -1170.5204980595731 62.0192 0.1144 3729 +3731 2 -72.82832679688437 -1170.272636515951 62.5254 0.1144 3730 +3732 2 -73.74202410644273 -1170.4355199297959 63.2447 0.1144 3731 +3733 2 -74.33534085676206 -1171.2594096577272 64.5302 0.1144 3732 +3734 2 -74.28217110135859 -1171.0052301402393 64.9936 0.1144 3733 +3735 2 -73.98581640609586 -1169.9690063880525 65.8224 0.1144 3734 +3736 2 -73.62327237717079 -1168.9027794342146 66.3146 0.1144 3735 +3737 2 -73.4793004507979 -1167.7803940795272 66.5977 0.1144 3736 +3738 2 -72.97024714152599 -1166.7691943078107 66.7304 0.1144 3737 +3739 2 -72.06397421760289 -1166.216123030882 66.9214 0.1144 3738 +3740 2 -71.35370662488384 -1167.0592250097275 67.3028 0.1144 3739 +3741 2 -71.33510976469228 -1168.1556334586144 67.9762 0.1144 3740 +3742 2 -71.65574201310051 -1169.189407636702 68.8615 0.1144 3741 +3743 2 -72.03062829773859 -1170.115438696435 70.1582 0.1144 3742 +3744 2 -72.10701996761571 -1171.0767906417566 71.5602 0.1144 3743 +3745 2 -71.7282562682575 -1172.0579261624919 72.5614 0.1144 3744 +3746 2 -71.20890275034947 -1173.0250687235637 73.3452 0.1144 3745 +3747 2 -71.50239102262105 -1173.9655085855638 74.0309 0.1144 3746 +3748 2 -72.18167666313445 -1174.8221690308935 74.8462 0.1144 3747 +3749 2 -71.6125873312157 -1175.232405038938 74.8798 0.1144 3748 +3750 2 -70.66010294152318 -1175.8622980515934 75.0476 0.1144 3749 +3751 2 -69.6835378188631 -1176.4570824000793 75.1304 0.1144 3750 +3752 2 -68.70710242988577 -1177.049364116117 75.2674 0.1144 3751 +3753 2 -67.73262647645367 -1177.642850245848 75.4617 0.1144 3752 +3754 2 -66.7614933701721 -1178.239682324312 75.7154 0.1144 3753 +3755 2 -66.01745667659281 -1179.0874989428137 76.0897 0.1144 3754 +3756 2 -65.60552592634491 -1180.1355788190638 76.5806 0.1144 3755 +3757 2 -65.19596256423307 -1181.1756060266 77.1803 0.1144 3756 +3758 2 -64.78818274133738 -1182.2060478813592 77.8733 0.1144 3757 +3759 2 -64.35350230391447 -1183.2212458213303 78.605 0.1144 3758 +3760 2 -63.90956237503843 -1184.2186619779818 79.389 0.1144 3759 +3761 2 -62.97288500889027 -1184.287565981826 80.9332 0.1144 3760 +3762 2 -62.22933233968786 -1184.5622751883006 82.551 0.1144 3761 +3763 2 -61.688729950571485 -1185.3325383815545 84.1422 0.1144 3762 +3764 2 -61.65263852894395 -1186.1186377259664 85.9258 0.1144 3763 +3765 2 -62.34167108864409 -1186.706031505022 87.5188 0.1144 3764 +3766 2 -63.15568576156335 -1187.2386647017645 88.9935 0.1144 3765 +3767 2 -63.974426693238456 -1187.776785382281 90.4408 0.1144 3766 +3768 2 -64.7825100011724 -1188.329953157408 91.8845 0.1144 3767 +3769 2 -65.41506652014897 -1189.035579701906 93.4144 0.1144 3768 +3770 2 -65.9721300519621 -1189.7983325003433 94.9934 0.1144 3769 +3771 2 -66.52937568327047 -1190.5584974734825 96.5804 0.1144 3770 +3772 2 -67.16709451723386 -1191.2513333767151 98.1658 0.1144 3771 +3773 2 -68.1012072843049 -1191.5448506647833 99.5646 0.1144 3772 +3774 2 -69.07787873644793 -1191.804076578937 100.8753 0.1144 3773 +3775 2 -70.07281659983477 -1192.0664311062455 102.102 0.1144 3774 +3776 2 -71.08311339100936 -1192.3343527995485 103.2419 0.1144 3775 +3777 2 -71.83402689848151 -1193.083267717477 104.2306 0.1144 3776 +3778 2 -72.2885944290137 -1194.0958385891624 104.9132 0.1144 3777 +3779 2 -72.74672524385835 -1195.119990177791 105.4522 0.1144 3778 +3780 2 -73.20827317214048 -1196.1517590714382 105.8809 0.1144 3779 +3781 2 -73.67264028944578 -1197.1877258423171 106.2334 0.1144 3780 +3782 2 -74.13726377253317 -1198.2253761441837 106.5428 0.1144 3781 +3783 2 -74.60296193563096 -1199.2635696429534 106.8388 0.1144 3782 +3784 2 -75.06700939477827 -1200.3021570661676 107.1342 0.1144 3783 +3785 2 -75.53114204677547 -1201.3407968551946 107.4276 0.1144 3784 +3786 2 -75.99675501702342 -1202.3789379881514 107.718 0.1144 3785 +3787 2 -76.46240081430847 -1203.4172166797707 108.0106 0.1144 3786 +3788 2 -76.92644827345578 -1204.455804102985 108.2976 0.1144 3787 +3789 2 -77.39308355790126 -1205.4945736256946 108.5728 0.1144 3788 +3790 2 -77.85757730730609 -1206.5347265600094 108.8318 0.1144 3789 +3791 2 -78.32358420199876 -1207.5745183969168 109.0726 0.1144 3790 +3792 2 -78.78482339868589 -1208.6046889524266 109.5335 0.1144 3791 +3793 2 -72.23043560339437 -1175.618988267449 75.8596 0.1144 3748 +3794 2 -72.58618443564791 -1176.6567405781427 76.4929 0.1144 3793 +3795 2 -73.153703970616 -1177.6232374366114 77.0342 0.1144 3794 +3796 2 -73.12874417586437 -1178.7036445398116 77.4948 0.1144 3795 +3797 2 -73.45775426177374 -1179.7478504885448 78.0895 0.1144 3796 +3798 2 -73.91160510812028 -1180.7680801044994 78.7013 0.1144 3797 +3799 2 -74.36259463365712 -1181.8040406722123 79.1101 0.1144 3798 +3800 2 -74.99387726108387 -1182.7452890051773 79.4752 0.1144 3799 +3801 2 -75.71263061864454 -1183.6208097079566 79.8697 0.1144 3800 +3802 2 -76.43855809255024 -1184.4846589903136 80.3264 0.1144 3801 +3803 2 -77.13165117789686 -1185.3364251055382 81.0995 0.1144 3802 +3804 2 -77.76965032606313 -1186.166299256804 82.224 0.1144 3803 +3805 2 -78.25391922235463 -1187.073642238308 83.3994 0.1144 3804 +3806 2 -78.5536698231171 -1188.0890641197655 84.4472 0.1144 3805 +3807 2 -78.79593817471448 -1189.1389947107164 85.3866 0.1144 3806 +3808 2 -79.14201095071138 -1190.1642260815365 86.2442 0.1144 3807 +3809 2 -79.67741829193574 -1191.1216660634482 87.0114 0.1144 3808 +3810 2 -80.27821989079342 -1192.0536863469238 87.7103 0.1144 3809 +3811 2 -80.79868653819534 -1193.0289402466556 88.3957 0.1144 3810 +3812 2 -81.18174703915003 -1194.0659905938464 89.1024 0.1144 3811 +3813 2 -81.50985834137839 -1195.1204431121469 89.8316 0.1144 3812 +3814 2 -81.83757571916198 -1196.1732449264969 90.5778 0.1144 3813 +3815 2 -82.19042489293946 -1197.2159055954417 91.3363 0.1144 3814 +3816 2 -82.72297470747395 -1198.1583251066145 92.1141 0.1144 3815 +3817 2 -83.50488980005929 -1198.9223049414186 92.8984 0.1144 3816 +3818 2 -84.35289462652634 -1199.6247871577689 93.6606 0.1144 3817 +3819 2 -85.15187481824569 -1200.387166245389 94.3634 0.1144 3818 +3820 2 -85.88529916823722 -1201.2300346591044 94.9704 0.1144 3819 +3821 2 -86.59736683149686 -1202.0988634644164 95.4957 0.1144 3820 +3822 2 -87.18275644421755 -1203.0494644013604 95.9756 0.1144 3821 +3823 2 -87.45940756574527 -1204.1286284514276 96.4393 0.1144 3822 +3824 2 -87.56621517829467 -1205.252467689887 96.8968 0.1144 3823 +3825 2 -87.73397692830582 -1206.3667041617518 97.3526 0.1144 3824 +3826 2 -88.04065417593245 -1207.4495345112473 97.8146 0.1144 3825 +3827 2 -88.46366771439523 -1208.4937705938823 98.2898 0.1144 3826 +3828 2 -88.92357586528988 -1209.5217144215017 98.7815 0.1144 3827 +3829 2 -89.34912796482115 -1210.5595290005976 99.3283 0.1144 3828 +3830 2 -89.71244414532782 -1211.611323221433 99.9709 0.1144 3829 +3831 2 -90.05218853031164 -1212.6621272625707 100.6964 0.1144 3830 +3832 2 -90.30692166185008 -1213.7332184126121 101.4423 0.1144 3831 +3833 2 -90.46728955089094 -1214.8268289100765 102.1639 0.1144 3832 +3834 2 -90.56003404536142 -1215.9298163210408 102.8622 0.1144 3833 +3835 2 -90.17535129265411 -1216.8791421764608 103.581 0.1144 3834 +3836 2 -89.33806175872877 -1217.594515041741 104.2821 0.1144 3835 +3837 2 -88.93579645192625 -1218.5329159810751 105.0017 0.1144 3836 +3838 2 -89.14174311344868 -1219.6048905015782 105.6821 0.1144 3837 +3839 2 -89.48179312844422 -1220.663981676738 106.3297 0.1144 3838 +3840 2 -89.76374963425104 -1221.7410072933476 106.9768 0.1144 3839 +3841 2 -89.94362978747836 -1222.8399207660445 107.6074 0.1144 3840 +3842 2 -90.03396235297987 -1223.9535158439835 108.206 0.1144 3841 +3843 2 -90.09617276053211 -1225.0714230249214 108.7761 0.1144 3842 +3844 2 -90.15709356154156 -1226.191237275592 109.3252 0.1144 3843 +3845 2 -90.21846065280852 -1227.3126170373625 109.8569 0.1144 3844 +3846 2 -90.29885227875474 -1228.4336004656425 110.3738 0.1144 3845 +3847 2 -90.45012495357207 -1229.5485005633432 110.8811 0.1144 3846 +3848 2 -90.6289765894357 -1230.660163238056 111.3767 0.1144 3847 +3849 2 -90.81130080613252 -1231.7726692290535 111.8552 0.1144 3848 +3850 2 -90.97785814245083 -1232.8888651364634 112.308 0.1144 3849 +3851 2 -90.95689320158647 -1234.0173888806773 112.6796 0.1144 3850 +3852 2 -90.85648417327138 -1235.1508408060067 112.9699 0.1144 3851 +3853 2 -90.74820147415488 -1236.286026313786 113.2062 0.1144 3852 +3854 2 -90.63986640922559 -1237.421297014415 113.4148 0.1144 3853 +3855 2 -90.28383698382305 -1238.4943475110122 113.671 0.1144 3854 +3856 2 -89.68901681853373 -1239.4553642959672 114.0233 0.1144 3855 +3857 2 -89.03792872036183 -1240.3792122804425 114.459 0.1144 3856 +3858 2 -88.38666162427762 -1241.2989592943313 114.9389 0.1144 3857 +3859 2 -87.90796551642723 -1242.317973090278 115.3846 0.1144 3858 +3860 2 -87.8858844563029 -1243.4418198399658 115.691 0.1144 3859 +3861 2 -87.9410114509896 -1244.582135841983 115.8665 0.1144 3860 +3862 2 -87.99644717727125 -1245.724050182138 115.9486 0.1144 3861 +3863 2 -88.05125451380007 -1246.8669868364905 115.981 0.1144 3862 +3864 2 -88.10927806537984 -1248.0090832761407 116.004 0.1144 3863 +3865 2 -88.27827946516754 -1249.1388717018517 116.1068 0.1144 3864 +3866 2 -88.58789160735392 -1250.234305082487 116.3638 0.1144 3865 +3867 2 -88.91341129016439 -1251.3193269237895 116.741 0.1144 3866 +3868 2 -89.23649242013505 -1252.4014412816357 117.1876 0.1144 3867 +3869 2 -89.56183310503332 -1253.482362152352 117.6546 0.1144 3868 +3870 2 -89.88549025894406 -1254.5635393888504 118.0967 0.1144 3869 +3871 2 -90.21131867334947 -1255.6501595682903 118.4708 0.1144 3870 +3872 2 -90.46133556737425 -1255.8333009691319 119.7249 0.1144 3871 +3873 2 -91.25871911978084 -1256.421444667858 121.0236 0.1144 3872 +3874 2 -92.15257931582386 -1257.079689060109 121.6572 0.1144 3873 +3875 2 -93.0517417945627 -1257.7424838147867 122.2665 0.1144 3874 +3876 2 -93.94725269455608 -1258.4003342825931 122.9284 0.1144 3875 +3877 2 -94.8629932354583 -1259.0317663547498 123.5844 0.1144 3876 +3878 2 -95.86101926706033 -1259.5404058048957 124.1397 0.1144 3877 +3879 2 -96.8749450143066 -1260.036163910297 124.5989 0.1144 3878 +3880 2 -97.89404641214924 -1260.532286214689 124.9872 0.1144 3879 +3881 2 -98.91466095527977 -1261.0280474216734 125.3286 0.1144 3880 +3882 2 -99.93665891001547 -1261.5259501636983 125.6478 0.1144 3881 +3883 2 -100.95865686475116 -1262.0238529057233 125.9684 0.1144 3882 +3884 2 -101.97935660073136 -1262.5196664785203 126.3125 0.1144 3883 +3885 2 -102.99832043991154 -1263.0158216099494 126.6916 0.1144 3884 +3886 2 -104.04501931360267 -1263.4429846558855 127.1211 0.1144 3885 +3887 2 -105.1444782855749 -1263.6729812187946 127.6288 0.1144 3886 +3888 2 -106.22119887571995 -1263.9682330956007 128.2305 0.1144 3887 +3889 2 -106.9092357627784 -1264.784494213165 129.0677 0.1144 3888 +3890 2 -107.54646516840961 -1265.6461749281625 130.0253 0.1144 3889 +3891 2 -108.43440320952044 -1266.2792984509829 130.8616 0.1144 3890 +3892 2 -109.3830435089672 -1266.8463216271102 131.5916 0.1144 3891 +3893 2 -110.33756211504988 -1267.4169580443165 132.2406 0.1144 3892 +3894 2 -111.25342349333329 -1267.9651240645774 133.247 0.1144 3893 +3895 2 -89.01001951293102 -1255.2648337228325 118.5884 0.1144 3871 +3896 2 -87.92355549594527 -1254.9153493314852 118.4235 0.1144 3895 +3897 2 -86.84114790871263 -1254.5682409404872 118.0987 0.1144 3896 +3898 2 -85.75837001401942 -1254.2652748520159 117.6098 0.1144 3897 +3899 2 -84.6696798846686 -1254.0834503975166 116.8972 0.1144 3898 +3900 2 -83.59641235426602 -1254.0052451663382 115.957 0.1144 3899 +3901 2 -82.54162546910317 -1253.9517809082918 114.8832 0.1144 3900 +3902 2 -81.4960628393099 -1253.898587044174 113.7553 0.1144 3901 +3903 2 -80.44903160506158 -1253.8431992792027 112.6322 0.1144 3902 +3904 2 -79.38953248928902 -1253.773339751025 111.5904 0.1144 3903 +3905 2 -78.3128731612581 -1253.5587661008165 110.8136 0.1144 3904 +3906 2 -77.23171073443166 -1253.237894698509 110.3452 0.1144 3905 +3907 2 -76.13927081162774 -1252.9114998838072 110.0999 0.1144 3906 +3908 2 -75.04358184673589 -1252.585807725145 110.0406 0.1144 3907 +3909 2 -73.94695576049611 -1252.2595395425428 110.1338 0.1144 3908 +3910 2 -72.8538022550897 -1251.9341146762254 110.3514 0.1144 3909 +3911 2 -71.76519601052661 -1251.610076323097 110.672 0.1144 3910 +3912 2 -70.68108466099437 -1251.2875096760063 111.0914 0.1144 3911 +3913 2 -69.58829666264057 -1251.099175423535 111.7668 0.1144 3912 +3914 2 -68.65220213912414 -1251.320093605318 113.2561 0.1144 3913 +3915 2 -67.85032149542451 -1251.6154102713904 115.1161 0.1144 3914 +3916 2 -67.42636343620273 -1252.372740162535 116.7905 0.1144 3915 +3917 2 -67.47768998813365 -1253.4100074545418 117.9172 0.1144 3916 +3918 2 -67.5873181747794 -1254.4899193170068 118.7978 0.1144 3917 +3919 2 -67.70366729180972 -1255.5940344663304 119.4738 0.1144 3918 +3920 2 -67.8207245755093 -1256.712083692587 119.9867 0.1144 3919 +3921 2 -67.93880107182332 -1257.8374501044805 120.3941 0.1144 3920 +3922 2 -68.05652508294241 -1258.9652996100467 120.755 0.1144 3921 +3923 2 -68.17535660110883 -1260.0938298711785 121.1092 0.1144 3922 +3924 2 -68.29250458828784 -1261.2226164980927 121.4685 0.1144 3923 +3925 2 -68.41133610645431 -1262.3511467592243 121.8358 0.1144 3924 +3926 2 -68.47906923386432 -1263.4818390707978 122.2124 0.1144 3925 +3927 2 -68.50555661564061 -1264.6139415125435 122.6028 0.1144 3926 +3928 2 -68.51937998825105 -1265.7450678027385 123.0149 0.1144 3927 +3929 2 -68.53369419195184 -1266.8752046057725 123.4624 0.1144 3928 +3930 2 -68.54788176355305 -1268.0011552453711 123.9599 0.1144 3929 +3931 2 -68.56158160564706 -1269.1214065762456 124.5199 0.1144 3930 +3932 2 -68.57563703451905 -1270.2324860175636 125.179 0.1144 3931 +3933 2 -68.44998499132987 -1271.312859885279 126.0132 0.1144 3932 +3934 2 -67.86938812545577 -1272.0718035454656 127.3331 0.1144 3933 +3935 2 -67.17174618655088 -1272.6890785045239 128.9571 0.1144 3934 +3936 2 -66.55771157408509 -1273.2314430172773 130.8485 0.1144 3935 +3937 2 -66.11554907024816 -1273.6230932696722 133.247 0.1144 3936 +3938 2 -74.45178836647858 -1171.2840345938857 64.8707 0.1144 3733 +3939 2 -75.3410284324425 -1171.469329237857 66.0618 0.1144 3938 +3940 2 -76.46026696094646 -1171.7020933165127 65.9498 0.1144 3939 +3941 2 -77.57981422104524 -1171.9364557333063 65.8832 0.1144 3940 +3942 2 -78.6990199225121 -1172.1690822532996 65.8143 0.1144 3941 +3943 2 -79.81856718261082 -1172.403444670093 65.7544 0.1144 3942 +3944 2 -80.93874283246248 -1172.6367847726888 65.7143 0.1144 3943 +3945 2 -82.05803372677917 -1172.8694636584946 65.7051 0.1144 3944 +3946 2 -83.18704961014527 -1173.0317053766407 65.7488 0.1144 3945 +3947 2 -84.32366097506787 -1172.9957819145454 65.8865 0.1144 3946 +3948 2 -85.44579134904609 -1172.8020012039588 66.1352 0.1144 3947 +3949 2 -86.56320328924852 -1172.6052028150093 66.4698 0.1144 3948 +3950 2 -87.69015642018013 -1172.5150992041863 66.8503 0.1144 3949 +3951 2 -88.82278113498006 -1172.5358851471383 67.2459 0.1144 3950 +3952 2 -89.95383964614285 -1172.581180006961 67.6505 0.1144 3951 +3953 2 -91.08432213336539 -1172.6274119881314 68.07 0.1144 3952 +3954 2 -92.21279281923 -1172.6725247484583 68.5157 0.1144 3953 +3955 2 -93.33815202166909 -1172.7183073377882 69.0024 0.1144 3954 +3956 2 -94.42115726120528 -1172.572901350507 69.6007 0.1144 3955 +3957 2 -95.43018777302558 -1172.1766087361227 70.471 0.1144 3956 +3958 2 -96.45241036178408 -1171.9160178133493 71.5302 0.1144 3957 +3959 2 -97.48806319221217 -1171.732115081379 72.6331 0.1144 3958 +3960 2 -98.53341569588105 -1171.60652629576 73.7262 0.1144 3959 +3961 2 -99.6004116877395 -1171.655404955296 74.6981 0.1144 3960 +3962 2 -100.68226036307613 -1171.7698733075702 75.5574 0.1144 3961 +3963 2 -101.77502543698245 -1171.8883519269511 76.3342 0.1144 3962 +3964 2 -102.85470795400607 -1172.1088921782284 77.0638 0.1144 3963 +3965 2 -103.83033136769467 -1172.5970706237408 77.7862 0.1144 3964 +3966 2 -104.83800881459604 -1173.0069389233277 78.5498 0.1144 3965 +3967 2 -105.90945415436408 -1173.2103257810384 79.3741 0.1144 3966 +3968 2 -106.98576779820667 -1173.3643532463761 80.2435 0.1144 3967 +3969 2 -107.51713823076847 -1174.103213898596 81.2638 0.1144 3968 +3970 2 -107.79513511877138 -1175.1496342635837 82.1696 0.1144 3969 +3971 2 -108.07294990727888 -1176.1986424538695 83.0558 0.1144 3970 +3972 2 -108.35224501403718 -1177.2471519880849 83.9376 0.1144 3971 +3973 2 -108.63042089995236 -1178.2976733236585 84.8098 0.1144 3972 +3974 2 -108.90935180771999 -1179.3513585084702 85.6671 0.1144 3973 +3975 2 -109.19015695818308 -1180.4061957411623 86.5038 0.1144 3974 +3976 2 -109.4710887407457 -1181.4652191372902 87.3088 0.1144 3975 +3977 2 -110.15416351866708 -1182.326791042454 88.032 0.1144 3976 +3978 2 -110.95830533283669 -1183.1004421154216 88.6469 0.1144 3977 +3979 2 -111.77118057128558 -1183.875353069478 89.1859 0.1144 3978 +3980 2 -112.58623878402494 -1184.6530144095523 89.6594 0.1144 3979 +3981 2 -113.57765510412264 -1185.2006697758586 90.0343 0.1144 3980 +3982 2 -114.64833752004711 -1185.588814496588 90.2986 0.1144 3981 +3983 2 -115.72155539545713 -1185.9772265096624 90.5022 0.1144 3982 +3984 2 -116.79534929480712 -1186.364701401389 90.6744 0.1144 3983 +3985 2 -117.86914319415712 -1186.752176293116 90.8404 0.1144 3984 +3986 2 -118.9460626050788 -1187.1280735694831 91.0619 0.1144 3985 +3987 2 -120.0216017059783 -1187.4951405149252 91.3847 0.1144 3986 +3988 2 -121.0939355183898 -1187.8588286845966 91.7913 0.1144 3987 +3989 2 -122.16168924292077 -1188.2209927824174 92.2592 0.1144 3988 +3990 2 -123.2269403350034 -1188.5830271465552 92.7685 0.1144 3989 +3991 2 -124.29017962572789 -1188.9439422898504 93.3036 0.1144 3990 +3992 2 -125.35253416091746 -1189.3041962163552 93.8493 0.1144 3991 +3993 2 -126.41462140376183 -1189.6669856023454 94.3986 0.1144 3992 +3994 2 -127.47136733370701 -1190.038464659015 94.9536 0.1144 3993 +3995 2 -128.27056175942226 -1190.8224561066127 95.5298 0.1144 3994 +3996 2 -129.06873387093987 -1191.605819164457 96.1271 0.1144 3995 +3997 2 -129.8665448850499 -1192.3876690770135 96.7271 0.1144 3996 +3998 2 -130.6648021894174 -1193.1710845006708 97.3126 0.1144 3997 +3999 2 -131.46529483388798 -1193.957165117496 97.8704 0.1144 3998 +4000 2 -132.26587267120846 -1194.7432981001343 98.406 0.1144 3999 +4001 2 -133.03237957177646 -1195.4951071659093 99.3706 0.1144 4000 +4002 2 -70.13726755910335 -1166.9278780674597 56.9876 0.1144 3569 +4003 2 -70.04270160134064 -1168.0474318444763 56.6418 0.1144 4002 +4004 2 -69.88407312427364 -1169.1705694212064 56.39 0.1144 4003 +4005 2 -70.03308073353384 -1170.2759779711928 55.9572 0.1144 4004 +4006 2 -70.26891526995598 -1171.375714244774 55.4683 0.1144 4005 +4007 2 -70.37990904594108 -1172.499426851134 55.0416 0.1144 4006 +4008 2 -70.19776183170063 -1173.5974264287045 54.6073 0.1144 4007 +4009 2 -70.27014833665282 -1174.6812096145404 54.0772 0.1144 4008 +4010 2 -71.17295178132593 -1175.2267487792997 53.5646 0.1144 4009 +4011 2 -72.15647419930986 -1175.8004231061814 53.3568 0.1144 4010 +4012 2 -73.02255722905534 -1176.5475884129155 53.3406 0.1144 4011 +4013 2 -73.77592610534475 -1177.408233099321 53.3369 0.1144 4012 +4014 2 -74.53099805139732 -1178.2683986684324 53.3288 0.1144 4013 +4015 2 -75.28499531743955 -1179.1280210406405 53.2874 0.1144 4014 +4016 2 -75.1916262621416 -1180.1167267094384 52.934 0.1144 4015 +4017 2 -75.08614941643879 -1181.242955254193 52.5168 0.1144 4016 +4018 2 -74.9804935728236 -1182.365082828362 52.0355 0.1144 4017 +4019 2 -74.87568104549382 -1183.4837378216976 51.5133 0.1144 4018 +4020 2 -74.92679846561043 -1184.6109075956715 51.0591 0.1144 4019 +4021 2 -75.14659572772575 -1185.7235580410345 50.7198 0.1144 4020 +4022 2 -75.44489444531456 -1186.8200192464974 50.3916 0.1144 4021 +4023 2 -75.96958800286535 -1187.8233429383658 50.022 0.1144 4022 +4024 2 -76.79275125013123 -1188.6032864737265 49.6782 0.1144 4023 +4025 2 -77.74089150843457 -1189.2169545848292 49.2492 0.1144 4024 +4026 2 -77.41250329536001 -1188.3115227809292 48.9493 0.1144 4025 +4027 2 -76.73229835576467 -1187.4126271028051 48.6016 0.1144 4026 +4028 2 -75.78277468585611 -1186.7968174566618 48.3008 0.1144 4027 +4029 2 -74.66136689745605 -1186.6768140728932 47.997 0.1144 4028 +4030 2 -73.65029065625612 -1187.1967423414853 47.7383 0.1144 4029 +4031 2 -73.36287129565426 -1186.6549016996437 47.8164 0.1144 4030 +4032 2 -72.74469655860429 -1185.6988211986013 47.9335 0.1144 4031 +4033 2 -72.07006188658647 -1184.7778777968056 48.0404 0.1144 4032 +4034 2 -71.47492505290552 -1183.8037957678182 48.2073 0.1144 4033 +4035 2 -70.90639172125634 -1182.8150776983948 48.4145 0.1144 4034 +4036 2 -70.37925099865299 -1181.8048502841098 48.61 0.1144 4035 +4037 2 -69.98234540773495 -1180.7378090469037 48.7749 0.1144 4036 +4038 2 -69.76812082224376 -1179.6204847085978 48.9342 0.1144 4037 +4039 2 -69.80633296173738 -1178.4877723919017 49.0633 0.1144 4038 +4040 2 -69.99209410959327 -1177.3598318810823 49.1296 0.1144 4039 +4041 2 -70.16627764208943 -1176.2287658586915 49.1478 0.1144 4040 +4042 2 -70.3191161069534 -1175.095378610811 49.1305 0.1144 4041 +4043 2 -70.36917625573494 -1173.9565675503168 49.0669 0.1144 4042 +4044 2 -70.0903867007496 -1172.8720981159704 48.9177 0.1144 4043 +4045 2 -69.65222916103141 -1171.8198446007054 48.7337 0.1144 4044 +4046 2 -69.37973206843907 -1170.716353733263 48.594 0.1144 4045 +4047 2 -69.09176821485033 -1169.6141548814098 48.524 0.1144 4046 +4048 2 -68.49862605279822 -1168.6587886555067 48.5108 0.1144 4047 +4049 2 -67.71388528393487 -1167.8272213547525 48.5136 0.1144 4048 +4050 2 -66.95253490363541 -1166.9751694323804 48.5044 0.1144 4049 +4051 2 -66.12433356443586 -1166.1948288709923 48.4487 0.1144 4050 +4052 2 -65.14829399439168 -1165.611081461826 48.3428 0.1144 4051 +4053 2 -64.07525201531098 -1165.233459215222 48.2196 0.1144 4052 +4054 2 -63.07010182413029 -1164.7190321619194 48.0043 0.1144 4053 +4055 2 -63.08910322157777 -1163.7464742937723 47.6753 0.1144 4054 +4056 2 -63.68397885426293 -1162.7786835200832 47.3889 0.1144 4055 +4057 2 -63.13513678471253 -1161.7993693964786 47.2374 0.1144 4056 +4058 2 -62.22110380022974 -1161.1126441579167 47.117 0.1144 4057 +4059 2 -73.61620521160535 -1188.0996947391582 47.4068 0.1144 4030 +4060 2 -73.7951834795685 -1189.2155435773063 47.1674 0.1144 4059 +4061 2 -74.24373135068254 -1190.2552854574474 46.9216 0.1144 4060 +4062 2 -74.93734981066638 -1191.1476361015157 46.6704 0.1144 4061 +4063 2 -75.738632713073 -1191.9543919569705 46.3744 0.1144 4062 +4064 2 -76.5152270081602 -1192.7795432648156 45.9976 0.1144 4063 +4065 2 -77.31665367239555 -1193.5728887014652 45.5423 0.1144 4064 +4066 2 -78.13875626779713 -1194.3413812535655 45.0422 0.1144 4065 +4067 2 -79.01251345503084 -1195.0302302049022 44.431 0.1144 4066 +4068 2 -79.7156116428236 -1194.6271248733542 43.6215 0.1144 4067 +4069 2 -80.43330833259654 -1193.8221602583003 42.7067 0.1144 4068 +4070 2 -81.5145912950307 -1193.7670178503943 41.9202 0.1144 4069 +4071 2 -82.5858805613338 -1194.0361593706093 41.2079 0.1144 4070 +4072 2 -83.6042423505433 -1194.47008478618 40.5093 0.1144 4071 +4073 2 -84.56616643669588 -1195.0330655607004 39.8793 0.1144 4072 +4074 2 -85.4833287268699 -1195.677461761405 39.321 0.1144 4073 +4075 2 -86.34834869570471 -1196.39580225415 38.8105 0.1144 4074 +4076 2 -87.22731987120142 -1197.0958379979843 38.2841 0.1144 4075 +4077 2 -88.26429203933321 -1197.5520017542387 37.8983 0.1144 4076 +4078 2 -89.24603401968409 -1198.1285726380133 37.6146 0.1144 4077 +4079 2 -90.10123898852652 -1198.882550271148 37.4018 0.1144 4078 +4080 2 -90.8122836450521 -1199.7748133133202 37.2218 0.1144 4079 +4081 2 -91.52670707734825 -1200.6638710670045 37.0087 0.1144 4080 +4082 2 -92.24247248199993 -1201.5509365581065 36.7606 0.1144 4081 +4083 2 -92.87798271211221 -1202.4961920565947 36.5156 0.1144 4082 +4084 2 -93.63679763292623 -1203.3479766866217 36.2869 0.1144 4083 +4085 2 -94.45634453753013 -1204.1404873245024 36.0609 0.1144 4084 +4086 2 -95.2623568002756 -1204.9460418678477 35.8246 0.1144 4085 +4087 2 -96.15637817196506 -1205.650046439539 35.5379 0.1144 4086 +4088 2 -97.13019411570178 -1206.2284360986132 35.1417 0.1144 4087 +4089 2 -97.28494326643948 -1206.2847033212743 35.0154 0.1144 4088 +4090 2 -98.05623938670215 -1206.9481339769331 34.102 0.1144 4089 +4091 2 -97.4097160698658 -1207.5389615074246 33.1218 0.1144 4090 +4092 2 -96.87881414749421 -1207.3147512515889 31.8906 0.1144 4091 +4093 2 -96.10392731983706 -1207.043864920587 29.953 0.1144 4092 +4094 2 -95.69409304923903 -1206.8980627236099 27.8699 0.1144 4093 +4095 2 -96.13509698827767 -1206.6480831729416 25.7201 0.1144 4094 +4096 2 -96.69649864912009 -1207.5021249665344 24.465 0.1144 4095 +4097 2 -97.32910411857443 -1208.3407739813292 23.3558 0.1144 4096 +4098 2 -97.92044361108276 -1209.205118504422 22.3465 0.1144 4097 +4099 2 -97.83801698038508 -1210.2610012775326 21.3863 0.1144 4098 +4100 2 -98.52369538758688 -1210.746911857678 20.1769 0.1144 4099 +4101 2 -99.29946847450452 -1210.157589961246 19.21 0.1144 4100 +4102 2 -99.09504377756014 -1209.3564092804509 18.1882 0.1144 4101 +4103 2 -99.8024386431544 -1209.4596257720154 17.2654 0.1144 4102 +4104 2 -100.82783319592653 -1209.9126640166983 16.7176 0.1144 4103 +4105 2 -101.95847996037878 -1209.9979673814246 16.3484 0.1144 4104 +4106 2 -103.07036817443492 -1209.9388653557148 15.7058 0.1144 4105 +4107 2 -97.46524228684251 -1207.7893073466716 32.9333 0.1144 4091 +4108 2 -97.7050839887882 -1208.8848160175676 32.4405 0.1144 4107 +4109 2 -97.94933780196129 -1209.9991178594175 32.2955 0.1144 4108 +4110 2 -98.19434663698672 -1211.1165835505058 32.3302 0.1144 4109 +4111 2 -98.44853828813217 -1212.2301858378992 32.4503 0.1144 4110 +4112 2 -98.70677854405074 -1213.34369432023 32.5788 0.1144 4111 +4113 2 -98.96595592131717 -1214.4577788265015 32.6721 0.1144 4112 +4114 2 -99.00923249766942 -1215.586819741588 32.7225 0.1144 4113 +4115 2 -98.77824885664671 -1216.7031617131988 32.7421 0.1144 4114 +4116 2 -98.47060818269586 -1217.8044295578807 32.7457 0.1144 4115 +4117 2 -98.16228675317939 -1218.9068049096104 32.7449 0.1144 4116 +4118 2 -97.85464607922859 -1220.0080727542927 32.744 0.1144 4117 +4119 2 -97.5478901608127 -1221.110001815765 32.7429 0.1144 4118 +4120 2 -97.23956873129634 -1222.2123771674942 32.7412 0.1144 4119 +4121 2 -96.93192805734537 -1223.3136450121767 32.7387 0.1144 4120 +4122 2 -96.62360662782896 -1224.4160203639062 32.7356 0.1144 4121 +4123 2 -96.31693590226297 -1225.5180017911912 32.7312 0.1144 4122 +4124 2 -96.00929522831217 -1226.6192696358735 32.7239 0.1144 4123 +4125 2 -95.82784997757472 -1227.7445808821449 32.7155 0.1144 4124 +4126 2 -95.80425818120898 -1228.8861625599693 32.7054 0.1144 4125 +4127 2 -95.82867519264829 -1230.0306085654897 32.6875 0.1144 4126 +4128 2 -95.85212225570262 -1231.174340988408 32.653 0.1144 4127 +4129 2 -95.87713482985765 -1232.3176271210687 32.594 0.1144 4128 +4130 2 -96.10908883285578 -1233.4257771607713 32.473 0.1144 4129 +4131 2 -96.60188132907564 -1234.4483451319443 32.2605 0.1144 4130 +4132 2 -97.1625738169605 -1235.43893434248 31.9654 0.1144 4131 +4133 2 -97.72099813770495 -1236.4267208011852 31.6061 0.1144 4132 +4134 2 -98.27861507078438 -1237.411428603502 31.201 0.1144 4133 +4135 2 -98.83058506095284 -1238.3965389424757 30.7647 0.1144 4134 +4136 2 -99.37447974204878 -1239.38619344071 30.3097 0.1144 4135 +4137 2 -99.91361223576882 -1240.3769116923918 29.8413 0.1144 4136 +4138 2 -100.45394914318183 -1241.3656705085282 29.3569 0.1144 4137 +4139 2 -100.99178341814638 -1242.354299590982 28.8512 0.1144 4138 +4140 2 -101.52882984422155 -1243.339627265535 28.3189 0.1144 4139 +4141 2 -102.06546280707636 -1244.3235269876495 27.7554 0.1144 4140 +4142 2 -102.31053631955075 -1245.388563242189 27.1037 0.1144 4141 +4143 2 -102.36789693783066 -1246.4901079800325 26.3639 0.1144 4142 +4144 2 -101.93479191409807 -1247.4351415553183 25.4893 0.1144 4143 +4145 2 -101.28600142443162 -1248.291851465684 24.5288 0.1144 4144 +4146 2 -100.63079253280944 -1249.1393340190966 23.5472 0.1144 4145 +4147 2 -99.97380320355404 -1249.9897131294026 22.588 0.1144 4146 +4148 2 -99.2742346738259 -1250.8219018112613 21.7162 0.1144 4147 +4149 2 -98.29268521011795 -1251.3680786876434 21.1972 0.1144 4148 +4150 2 -97.29693437713212 -1251.9174991901805 20.9109 0.1144 4149 +4151 2 -96.29582579405456 -1252.469143319025 20.8115 0.1144 4150 +4152 2 -95.29414118703687 -1253.021724569217 20.8492 0.1144 4151 +4153 2 -94.20012645409008 -1253.3509896358355 20.9886 0.1144 4152 +4154 2 -93.0615932987522 -1253.4205939043582 21.1878 0.1144 4153 +4155 2 -91.92306014341443 -1253.4901981728808 21.4059 0.1144 4154 +4156 2 -90.78510301201675 -1253.5588653200552 21.6418 0.1144 4155 +4157 2 -89.64892562571549 -1253.6486985369502 21.8848 0.1144 4156 +4158 2 -88.54178317952761 -1253.9162513426713 22.1268 0.1144 4157 +4159 2 -87.43304239520222 -1254.1841128799874 22.3589 0.1144 4158 +4160 2 -86.32438680372644 -1254.4520267831163 22.5765 0.1144 4159 +4161 2 -85.22513756711578 -1254.717623254875 22.9975 0.1144 4160 +4162 2 -97.5563636904011 -1206.8502807284049 35.6482 0.1144 4088 +4163 2 -98.20136546822812 -1207.7932711613362 35.6737 0.1144 4162 +4164 2 -98.84898789839042 -1208.7365812524254 35.6787 0.1144 4163 +4165 2 -99.64505611999743 -1209.5562129419955 35.6661 0.1144 4164 +4166 2 -100.56301107715393 -1210.2386582120587 35.6208 0.1144 4165 +4167 2 -101.48400325144922 -1210.916162296834 35.548 0.1144 4166 +4168 2 -102.40436703599164 -1211.5946886958063 35.4528 0.1144 4167 +4169 2 -103.32530684447414 -1212.2722779734313 35.3433 0.1144 4168 +4170 2 -104.15814063736707 -1213.0540574138208 35.1926 0.1144 4169 +4171 2 -104.8840181545064 -1213.9353657197566 35.0356 0.1144 4170 +4172 2 -105.6119074730039 -1214.8177932465355 34.921 0.1144 4171 +4173 2 -106.33787018299302 -1215.699153918284 34.7768 0.1144 4172 +4174 2 -77.78443316374916 -1189.3229505010358 48.9829 0.1144 4025 +4175 2 -78.30806055880623 -1190.3041381747994 48.704 0.1144 4174 +4176 2 -78.8882269732108 -1191.2892077670604 48.6567 0.1144 4175 +4177 2 -79.14945208045543 -1192.3978602569528 48.5974 0.1144 4176 +4178 2 -79.259640877822 -1193.5358680376535 48.5164 0.1144 4177 +4179 2 -79.22936028557206 -1194.6774466138945 48.4058 0.1144 4178 +4180 2 -79.13519066130061 -1195.8160249255907 48.2566 0.1144 4179 +4181 2 -78.82447443254443 -1196.911411362054 48.0197 0.1144 4180 +4182 2 -78.43896207794609 -1197.9797208792124 47.6806 0.1144 4181 +4183 2 -78.07300574113435 -1199.0492519397935 47.2598 0.1144 4182 +4184 2 -77.70976696330337 -1200.1164624674216 46.7858 0.1144 4183 +4185 2 -77.34613426102771 -1201.1820222910992 46.2829 0.1144 4184 +4186 2 -76.13588634134948 -1200.898716638288 46.1045 0.1144 4185 +4187 2 -75.0228495717592 -1200.6361937258785 46.1462 0.1144 4186 +4188 2 -73.90926960526582 -1200.3747454934794 46.1902 0.1144 4187 +4189 2 -72.7956044459226 -1200.1132448952676 46.2266 0.1144 4188 +4190 2 -71.80758713290794 -1199.5380988623479 46.2056 0.1144 4189 +4191 2 -70.81858033273272 -1198.9624619983379 46.1353 0.1144 4190 +4192 2 -69.83122423650792 -1198.3864312098833 46.0256 0.1144 4191 +4193 2 -68.84422923769085 -1197.8119135667166 45.8881 0.1144 4192 +4194 2 -67.85775789700097 -1197.2365439950518 45.7318 0.1144 4193 +4195 2 -66.87031660792638 -1196.6604608407843 45.57 0.1144 4194 +4196 2 -65.88332160910932 -1196.0859431976173 45.4149 0.1144 4195 +4197 2 -64.89690263423228 -1195.510488433103 45.269 0.1144 4196 +4198 2 -63.90883295540482 -1194.9354275930332 45.1343 0.1144 4197 +4199 2 -62.92539573027062 -1194.3618056319642 44.8731 0.1144 4198 +4200 2 -77.34065769183826 -1201.6016961849618 45.8223 0.1144 4185 +4201 2 -77.32677547130288 -1202.731873734709 45.3967 0.1144 4200 +4202 2 -77.31226486101463 -1203.863073598654 44.9848 0.1144 4201 +4203 2 -77.29882893073676 -1204.994816659502 44.5819 0.1144 4202 +4204 2 -77.28467941785613 -1206.127529668735 44.1846 0.1144 4203 +4205 2 -77.27061509782538 -1207.2602950437804 43.7898 0.1144 4204 +4206 2 -77.2564655849448 -1208.393008053013 43.3972 0.1144 4205 +4207 2 -77.24177287516125 -1209.5267957422561 43.0189 0.1144 4206 +4208 2 -77.22704733834047 -1210.660445872837 42.6594 0.1144 4207 +4209 2 -77.21373804016213 -1211.7963750971207 42.3242 0.1144 4208 +4210 2 -77.20230298467925 -1212.9334563692846 42.0202 0.1144 4209 +4211 2 -77.2281588751195 -1214.0732699211121 41.7973 0.1144 4210 +4212 2 -77.26363294537413 -1215.215004570818 41.6506 0.1144 4211 +4213 2 -77.29941574722363 -1216.3583375586622 41.5624 0.1144 4212 +4214 2 -77.3368164259864 -1217.5011390633986 41.5162 0.1144 4213 +4215 2 -77.37259922783596 -1218.6444720512422 41.4963 0.1144 4214 +4216 2 -77.4084343954982 -1219.7877198462363 41.4884 0.1144 4215 +4217 2 -77.44364117340763 -1220.931989955428 41.4809 0.1144 4216 +4218 2 -77.47942397525708 -1222.0753229432717 41.47 0.1144 4217 +4219 2 -77.51525914291932 -1223.2185707382657 41.4551 0.1144 4218 +4220 2 -77.55109431058156 -1224.3618185332598 41.4347 0.1144 4219 +4221 2 -77.58687711243113 -1225.5051515211035 41.4053 0.1144 4220 +4222 2 -77.62271228009331 -1226.6483993160973 41.3638 0.1144 4221 +4223 2 -77.65849508194282 -1227.7917323039414 41.3059 0.1144 4222 +4224 2 -77.69433024960506 -1228.9349800989353 41.2283 0.1144 4223 +4225 2 -77.74527108085596 -1230.0754227330522 41.1253 0.1144 4224 +4226 2 -78.00725120995293 -1231.1872390721828 40.9483 0.1144 4225 +4227 2 -78.31793803214953 -1232.2832156497216 40.7064 0.1144 4226 +4228 2 -78.62906331962375 -1233.3782879329497 40.4228 0.1144 4227 +4229 2 -78.93993224131572 -1234.4716766851902 40.1195 0.1144 4228 +4230 2 -79.25177111139254 -1235.5657790200332 39.8174 0.1144 4229 +4231 2 -79.55510792091513 -1236.6626372515238 39.536 0.1144 4230 +4232 2 -79.70161289772699 -1237.7679160678274 39.3103 0.1144 4231 +4233 2 -79.23329240058979 -1238.8093886416195 39.228 0.1144 4232 +4234 2 -78.58923706598057 -1239.752349455207 39.2202 0.1144 4233 +4235 2 -77.84207175924655 -1240.6184324849523 39.2451 0.1144 4234 +4236 2 -77.09476889384996 -1241.4845483417348 39.2902 0.1144 4235 +4237 2 -76.34796468452367 -1242.352144516768 39.3453 0.1144 4236 +4238 2 -75.60168413332468 -1243.2188887633033 39.4022 0.1144 4237 +4239 2 -74.85545594793848 -1244.0855478169892 39.4626 0.1144 4238 +4240 2 -74.10980378649231 -1244.951269749327 39.5436 0.1144 4239 +4241 2 -73.3635756011061 -1245.8179288030124 39.6553 0.1144 4240 +4242 2 -72.61792343965988 -1246.6836507353505 39.8012 0.1144 4241 +4243 2 -71.89476219056007 -1247.5631972422505 40.0056 0.1144 4242 +4244 2 -71.3159262412284 -1248.5354476748867 40.397 0.1144 4243 +4245 2 -70.8032796255589 -1249.5377013091743 40.8951 0.1144 4244 +4246 2 -70.26346510301704 -1250.5272464881596 41.3672 0.1144 4245 +4247 2 -69.7250339920804 -1251.5189332021855 41.8328 0.1144 4246 +4248 2 -69.21225764272833 -1252.5236894689215 42.2904 0.1144 4247 +4249 2 -68.75012177477561 -1253.552999791201 42.7434 0.1144 4248 +4250 2 -68.1458607110743 -1254.4747599915213 43.1953 0.1144 4249 +4251 2 -67.20578155571877 -1255.0865717940114 43.668 0.1144 4250 +4252 2 -66.17877174786418 -1255.5537447647303 44.128 0.1144 4251 +4253 2 -65.15318368928143 -1256.0338818639973 44.5248 0.1144 4252 +4254 2 -64.12171732406267 -1256.5104057221852 44.8456 0.1144 4253 +4255 2 -63.087087109605704 -1256.9876846022257 45.103 0.1144 4254 +4256 2 -62.050858557011054 -1257.4652722138612 45.318 0.1144 4255 +4257 2 -61.015737511463726 -1257.9435405810623 45.512 0.1144 4256 +4258 2 -59.98511687157679 -1258.4339656891461 45.7092 0.1144 4257 +4259 2 -59.033313929986434 -1259.038688568141 45.9494 0.1144 4258 +4260 2 -58.25367912622073 -1259.8634501535444 46.2815 0.1144 4259 +4261 2 -57.45397075501114 -1260.648875472093 46.6816 0.1144 4260 +4262 2 -56.46285306825507 -1261.175672227018 47.0806 0.1144 4261 +4263 2 -55.38935819300957 -1261.5458390715917 47.4362 0.1144 4262 +4264 2 -54.3142649796265 -1261.9163146477608 47.726 0.1144 4263 +4265 2 -53.23543189306508 -1262.2884823671295 47.9217 0.1144 4264 +4266 2 -52.154457271462945 -1262.662033498104 48.001 0.1144 4265 +4267 2 -51.07130277715345 -1263.026145447176 47.9388 0.1144 4266 +4268 2 -49.97824057877364 -1263.2969534981512 47.5667 0.1144 4267 +4269 2 -48.89928325147412 -1263.4663283069826 46.7466 0.1144 4268 +4270 2 -47.8750666836234 -1263.684140800059 45.6324 0.1144 4269 +4271 2 -47.14867591352612 -1264.348186633656 44.3699 0.1144 4270 +4272 2 -46.50583220206431 -1265.125328926054 43.048 0.1144 4271 +4273 2 -45.861390152464764 -1265.9027799500473 41.7295 0.1144 4272 +4274 2 -45.210382837497605 -1266.6911028317772 40.4746 0.1144 4273 +4275 2 -44.17183585922277 -1266.8905989568434 39.4503 0.1144 4274 +4276 2 -43.06617712893558 -1266.8085648655174 38.7587 0.1144 4275 +4277 2 -41.94493361776529 -1266.7276328653052 38.2427 0.1144 4276 +4278 2 -40.83602584539 -1266.6463014300184 37.5813 0.1144 4277 +4279 2 -75.47056326125846 -1179.2260036320884 53.5052 0.1144 4015 +4280 2 -76.45976447256521 -1179.746708427101 53.5038 0.1144 4279 +4281 2 -77.48866614971752 -1180.2421640040736 53.3313 0.1144 4280 +4282 2 -78.54177249880166 -1180.6827733974353 53.1821 0.1144 4281 +4283 2 -79.64495593073298 -1180.970110856727 53.0326 0.1144 4282 +4284 2 -80.77444382861347 -1180.9043371648622 52.9099 0.1144 4283 +4285 2 -81.81517519591495 -1180.4562801248385 52.8237 0.1144 4284 +4286 2 -82.70761723599958 -1179.7493364388993 52.7755 0.1144 4285 +4287 2 -83.0242494165218 -1178.6924484636352 52.7624 0.1144 4286 +4288 2 -83.98017825374416 -1178.2756058576474 52.7845 0.1144 4287 +4289 2 -84.78889595379098 -1177.4929011996626 52.6935 0.1144 4288 +4290 2 -85.06629368062204 -1177.568097151342 52.7089 0.1144 4289 +4291 2 -86.16943025737021 -1177.8662048383283 52.8674 0.1144 4290 +4292 2 -87.26758110799733 -1178.163830306437 53.1532 0.1144 4291 +4293 2 -88.36024757643321 -1178.4594932374173 53.543 0.1144 4292 +4294 2 -89.44998466093892 -1178.753238172102 54.0081 0.1144 4293 +4295 2 -90.53556840904588 -1179.047247297549 54.5216 0.1144 4294 +4296 2 -91.62075823270817 -1179.3396057190453 55.0388 0.1144 4295 +4297 2 -92.70736429501267 -1179.6342432342449 55.5436 0.1144 4296 +4298 2 -93.79388516446738 -1179.9288283836318 56.0316 0.1144 4297 +4299 2 -94.91844859834094 -1179.9432506994872 56.4718 0.1144 4298 +4300 2 -96.04802789223737 -1179.8641517816668 56.8613 0.1144 4299 +4301 2 -97.1798893814202 -1179.7769478293199 57.2135 0.1144 4300 +4302 2 -98.31272081898788 -1179.6904574595756 57.5386 0.1144 4301 +4303 2 -99.44618064630828 -1179.602944775634 57.846 0.1144 4302 +4304 2 -100.58057759497649 -1179.5160081156323 58.1451 0.1144 4303 +4305 2 -101.71403742229688 -1179.4284954316904 58.4438 0.1144 4304 +4306 2 -102.8484343709651 -1179.341558771689 58.7443 0.1144 4305 +4307 2 -103.98243739518858 -1179.2529714077368 59.047 0.1144 4306 +4308 2 -105.11629114695381 -1179.1671094277453 59.3538 0.1144 4307 +4309 2 -106.24966578142448 -1179.0795443779907 59.67 0.1144 4308 +4310 2 -107.38503439498737 -1179.0347577579337 59.9956 0.1144 4309 +4311 2 -108.51893640469393 -1179.1059808748523 60.3154 0.1144 4310 +4312 2 -109.65064692259347 -1179.1960464269546 60.6494 0.1144 4311 +4313 2 -110.7803949033646 -1179.2915963612481 61.0226 0.1144 4312 +4314 2 -111.79622123308866 -1179.7252544844737 61.6258 0.1144 4313 +4315 2 -112.77393071442208 -1180.2188235071144 62.4344 0.1144 4314 +4316 2 -113.73382317635236 -1180.7041406318172 63.3889 0.1144 4315 +4317 2 -114.68013714812793 -1181.180994033632 64.4414 0.1144 4316 +4318 2 -115.6189549363541 -1181.654765677475 65.5483 0.1144 4317 +4319 2 -116.55333019536226 -1182.1269804224307 66.6772 0.1144 4318 +4320 2 -117.48867540275535 -1182.5999087499888 67.7958 0.1144 4319 +4321 2 -118.4275455567942 -1183.0735952009825 68.8999 0.1144 4320 +4322 2 -119.36837514637853 -1183.5484860656688 69.9868 0.1144 4321 +4323 2 -120.3131236070534 -1184.0257857577412 71.0503 0.1144 4322 +4324 2 -121.26023093834789 -1184.5166256023017 72.06 0.1144 4323 +4325 2 -122.20732354895978 -1185.0424358598325 72.9596 0.1144 4324 +4326 2 -123.16185997730827 -1185.5714130681845 73.7988 0.1144 4325 +4327 2 -124.12169868835252 -1186.104940638963 74.5881 0.1144 4326 +4328 2 -125.08509517307988 -1186.6393638918394 75.346 0.1144 4327 +4329 2 -126.04840646495734 -1187.173734778903 76.0934 0.1144 4328 +4330 2 -127.0117177568348 -1187.7081056659667 76.8519 0.1144 4329 +4331 2 -127.55321081999938 -1188.537819949648 77.8369 0.1144 4330 +4332 2 -128.15277276908068 -1189.4542882792775 78.6338 0.1144 4331 +4333 2 -128.7294943275075 -1190.327137271971 79.7577 0.1144 4332 +4334 2 -129.28636275565242 -1191.1688847660184 81.0729 0.1144 4333 +4335 2 -129.83000045544082 -1191.9905268422103 82.4933 0.1144 4334 +4336 2 -130.3673573119358 -1192.8029087344125 83.9636 0.1144 4335 +4337 2 -130.90413814449073 -1193.616227747962 85.4311 0.1144 4336 +4338 2 -131.64832761999514 -1194.3476281749163 86.564 0.1144 4337 +4339 2 -132.45030738372316 -1195.0701808571275 87.4922 0.1144 4338 +4340 2 -133.26073925123916 -1195.80743666627 88.2997 0.1144 4339 +4341 2 -134.0317403543013 -1196.5847800646966 89.108 0.1144 4340 +4342 2 -134.79578226755103 -1197.371344616909 89.9038 0.1144 4341 +4343 2 -135.56272073769384 -1198.159689606755 90.6786 0.1144 4342 +4344 2 -136.3310426194418 -1198.9501761316415 91.4248 0.1144 4343 +4345 2 -137.11704086034746 -1199.7556361773877 91.9293 0.1144 4344 +4346 2 -137.91123794084217 -1200.5674270231934 92.2695 0.1144 4345 +4347 2 -138.70806428588457 -1201.3835337661174 92.468 0.1144 4346 +4348 2 -139.66934767064816 -1201.9998810985344 92.566 0.1144 4347 +4349 2 -140.75259788162947 -1202.3675795353124 92.5952 0.1144 4348 +4350 2 -141.83579572679798 -1202.7353631649403 92.5952 0.1144 4349 +4351 2 -142.91904593777917 -1203.1030616017183 92.5952 0.1144 4350 +4352 2 -143.99720810006045 -1203.4878220360474 92.5952 0.1144 4351 +4353 2 -145.02566038537225 -1203.9884008978036 92.5952 0.1144 4352 +4354 2 -146.05474106043675 -1204.487957445362 92.5952 0.1144 4353 +4355 2 -126.50382521376588 -1187.9949113574985 77.1134 0.1144 4330 +4356 2 -125.55824185335479 -1188.5282161938853 77.9926 0.1144 4355 +4357 2 -124.57165980834264 -1189.0846810790847 78.3765 0.1144 4356 +4358 2 -123.5865909086184 -1189.6407848668762 78.804 0.1144 4357 +4359 2 -122.60437712653754 -1190.1945352946777 79.2627 0.1144 4358 +4360 2 -121.66159651795704 -1190.7255719639243 80.1741 0.1144 4359 +4361 2 -84.95634854663854 -1176.8009275302584 51.0773 0.1144 4289 +4362 2 -85.09077614589336 -1175.701884714642 51.123 0.1144 4361 +4363 2 -85.65679172850594 -1174.717645612472 51.2926 0.1144 4362 +4364 2 -86.37304064297643 -1173.836550031664 51.6298 0.1144 4363 +4365 2 -87.0839927853807 -1172.9615891232738 52.096 0.1144 4364 +4366 2 -87.80019174308507 -1172.0979525660443 52.64 0.1144 4365 +4367 2 -88.59687692530201 -1171.306560646427 53.1714 0.1144 4366 +4368 2 -89.42963702064964 -1170.548142059104 53.657 0.1144 4367 +4369 2 -90.26538196732315 -1169.784867479343 54.0764 0.1144 4368 +4370 2 -91.09481324366635 -1169.0121951569295 54.437 0.1144 4369 +4371 2 -91.69634823087029 -1168.114348310764 54.7509 0.1144 4370 +4372 2 -91.49655947996519 -1166.991107328155 54.9741 0.1144 4371 +4373 2 -91.29503483225989 -1165.8682079041782 55.1561 0.1144 4372 +4374 2 -91.12678845432447 -1164.741583327706 55.3266 0.1144 4373 +4375 2 -91.29570114608873 -1163.6542297547771 55.5212 0.1144 4374 +4376 2 -92.02139785467398 -1162.774950540222 55.7494 0.1144 4375 +4377 2 -92.74539931847607 -1161.898620248373 56.0526 0.1144 4376 +4378 2 -93.50921487605052 -1161.0776337722314 56.4782 0.1144 4377 +4379 2 -94.46968656447132 -1160.5266002108742 57.1357 0.1144 4378 +4380 2 -95.48312677847247 -1160.131726936715 58.0034 0.1144 4379 +4381 2 -96.22398381883136 -1159.6605087645796 59.2091 0.1144 4380 +4382 2 -95.77878970945278 -1159.0390604682793 61.1696 0.1144 4381 +4383 2 -95.06643312548442 -1158.6643443793841 63.1554 0.1144 4382 +4384 2 -94.41333853577777 -1158.2762856507154 65.2408 0.1144 4383 +4385 2 -94.21478803759788 -1157.635888500759 67.3904 0.1144 4384 +4386 2 -94.18194553426349 -1156.9094211443175 69.5512 0.1144 4385 +4387 2 -93.7931890389525 -1156.7684756323156 72.0087 0.1144 4386 +4388 2 -93.1708036213044 -1157.213093717754 74.0838 0.1144 4387 +4389 2 -92.56665317293613 -1157.6125776044582 76.127 0.1144 4388 +4390 2 -92.51245980725116 -1156.796336807196 78.0847 0.1144 4389 +4391 2 -92.47965974945475 -1155.9235217545024 79.8941 0.1144 4390 +4392 2 -92.33237471907023 -1155.0205973834586 81.5066 0.1144 4391 +4393 2 -91.89038490386946 -1154.1338427312244 82.8834 0.1144 4392 +4394 2 -91.49931958369444 -1153.3523398999077 84.6908 0.1144 4393 +4395 2 -67.07886294355922 -1147.9228107732451 57.6892 0.1144 3552 +4396 2 -66.1057673001493 -1148.5251272339005 57.6758 0.1144 4395 +4397 2 -65.13316248782962 -1149.1264542073957 57.6568 0.1144 4396 +4398 2 -64.16064286835979 -1149.7278335467036 57.6092 0.1144 4397 +4399 2 -63.18803805604017 -1150.3291605201985 57.5184 0.1144 4398 +4400 2 -62.21609446051036 -1150.9296027381583 57.3703 0.1144 4399 +4401 2 -61.19434248921499 -1151.4294701297272 57.1147 0.1144 4400 +4402 2 -60.09331830791581 -1151.4926676153937 56.6398 0.1144 4401 +4403 2 -58.9844981374369 -1151.4287623766486 55.9661 0.1144 4402 +4404 2 -57.89033423870603 -1151.3671752618102 55.1622 0.1144 4403 +4405 2 -56.807930054830194 -1151.3061258332455 54.2732 0.1144 4404 +4406 2 -55.72868972019262 -1151.2443213828283 53.356 0.1144 4405 +4407 2 -54.64745230487961 -1151.1464272985977 52.4737 0.1144 4406 +4408 2 -53.74924797744745 -1151.7317440301044 51.6309 0.1144 4407 +4409 2 -53.091397509641126 -1152.627254930098 50.9718 0.1144 4408 +4410 2 -52.46479540389225 -1153.4828134851198 49.9215 0.1144 4409 +4411 2 -53.24356451377531 -1092.5469587153416 58.0686 0.1144 3467 +4412 2 -53.03205748726492 -1091.4273138440826 58.3094 0.1144 4411 +4413 2 -52.90489739582688 -1090.2949554153395 58.5746 0.1144 4412 +4414 2 -52.83707046335434 -1089.160214498993 58.8666 0.1144 4413 +4415 2 -52.5890299218197 -1088.0583750280375 59.1091 0.1144 4414 +4416 2 -51.909310302685014 -1087.1478048279082 59.2883 0.1144 4415 +4417 2 -51.63720644200072 -1086.0700272910294 59.4115 0.1144 4416 +4418 2 -52.17599624129849 -1085.0624798915624 59.486 0.1144 4417 +4419 2 -52.555236364816096 -1083.9889064293743 59.5274 0.1144 4418 +4420 2 -52.619465055838646 -1082.8467141840629 59.558 0.1144 4419 +4421 2 -52.75087326022049 -1081.7109533448802 59.5935 0.1144 4420 +4422 2 -52.921046525609995 -1080.590803721059 59.6565 0.1144 4421 +4423 2 -52.66066473465071 -1079.4786786503332 59.7671 0.1144 4422 +4424 2 -52.516569277761334 -1078.345418336326 59.8514 0.1144 4423 +4425 2 -52.440595871512585 -1077.20426142707 59.9113 0.1144 4424 +4426 2 -52.27431203070563 -1076.0721524684063 59.9474 0.1144 4425 +4427 2 -52.158817849060256 -1074.9362831211633 59.9603 0.1144 4426 +4428 2 -52.187894027617176 -1073.7966639804672 59.9511 0.1144 4427 +4429 2 -52.088659966486944 -1072.6734890603807 59.9253 0.1144 4428 +4430 2 -52.47480381242127 -1071.5974684331402 59.8931 0.1144 4429 +4431 2 -52.92045129771668 -1070.5447591100838 59.8388 0.1144 4430 +4432 2 -53.14135264640191 -1069.466589738348 59.7321 0.1144 4431 +4433 2 -52.792398726731165 -1068.3805448903117 59.6473 0.1144 4432 +4434 2 -52.64785387800123 -1067.2524078610882 59.5879 0.1144 4433 +4435 2 -52.747860369658895 -1066.1133089928476 59.5546 0.1144 4434 +4436 2 -52.87767023590317 -1064.9778568852598 59.547 0.1144 4435 +4437 2 -52.81051003085008 -1063.8529162482228 59.5664 0.1144 4436 +4438 2 -52.27270858292252 -1062.8644247244317 59.61 0.1144 4437 +4439 2 -51.76519375243237 -1061.9400933191268 59.6722 0.1144 4438 +4440 2 -51.9159844873181 -1060.812138087625 59.7682 0.1144 4439 +4441 2 -52.08365512025938 -1059.691858730121 59.908 0.1144 4440 +4442 2 -52.01182412384634 -1058.5546566205758 60.0667 0.1144 4441 +4443 2 -51.844473428008996 -1057.4244742704204 60.2249 0.1144 4442 +4444 2 -51.6613034859804 -1056.298067029527 60.3924 0.1144 4443 +4445 2 -51.49007535830219 -1055.169609649609 60.5937 0.1144 4444 +4446 2 -51.32285129456443 -1054.0436134628892 60.8734 0.1144 4445 +4447 2 -51.012613171671774 -1052.9665762271802 61.2475 0.1144 4446 +4448 2 -50.50097203710175 -1051.9551943559682 61.6372 0.1144 4447 +4449 2 -50.2985831492623 -1050.8841155175633 62.0029 0.1144 4448 +4450 2 -50.39658335019152 -1049.7545824633246 62.3739 0.1144 4449 +4451 2 -50.36867662818992 -1048.6268897237596 62.7455 0.1144 4450 +4452 2 -50.19976593188164 -1047.5078386987066 63.1532 0.1144 4451 +4453 2 -49.97716281635263 -1046.4041452163679 63.6471 0.1144 4452 +4454 2 -49.81875195381053 -1045.2943653018674 64.183 0.1144 4453 +4455 2 -49.92556225435246 -1044.1877373157322 64.7066 0.1144 4454 +4456 2 -50.21872806351399 -1043.1056261484582 65.2448 0.1144 4455 +4457 2 -50.415534651085665 -1042.0032558989103 65.7712 0.1144 4456 +4458 2 -50.48118198979688 -1040.8807165780308 66.2763 0.1144 4457 +4459 2 -50.56278071742855 -1039.7692733461704 66.892 0.1144 4458 +4460 2 -50.374022685556525 -1038.706573037803 67.7188 0.1144 4459 +4461 2 -50.002416269445035 -1037.661773242864 68.3945 0.1144 4460 +4462 2 -50.12299808619994 -1036.556802163845 68.9245 0.1144 4461 +4463 2 -50.47246534781783 -1035.4879347291007 69.4134 0.1144 4462 +4464 2 -50.99949784130712 -1034.497223474089 69.9468 0.1144 4463 +4465 2 -51.12025934851087 -1033.3722907390434 70.3268 0.1144 4464 +4466 2 -51.5023436631088 -1032.3005829073381 70.5947 0.1144 4465 +4467 2 -51.41509827151222 -1031.164587620532 70.805 0.1144 4466 +4468 2 -51.426663060677726 -1030.0250037159199 71.0506 0.1144 4467 +4469 2 -51.42718171759091 -1028.8839121766491 71.2303 0.1144 4468 +4470 2 -51.284321926401645 -1029.4352381510612 71.8976 0.1144 4469 +4471 2 -51.27235329251678 -1030.4269088483206 73.225 0.1144 4470 +4472 2 -51.93529672124805 -1031.2641337047971 73.8676 0.1144 4471 +4473 2 -52.342540970285825 -1032.2946858731154 74.3632 0.1144 4472 +4474 2 -52.66851004493688 -1033.374584429634 74.8306 0.1144 4473 +4475 2 -53.5042205718585 -1034.081599878682 75.3267 0.1144 4474 +4476 2 -54.05778959270114 -1035.042338859448 75.8542 0.1144 4475 +4477 2 -54.27933205636597 -1036.1345813585265 76.4302 0.1144 4476 +4478 2 -54.37264947319349 -1037.2433204440272 77.0826 0.1144 4477 +4479 2 -54.59756761104589 -1038.3390464505019 77.6686 0.1144 4478 +4480 2 -54.88682727434349 -1039.425960640854 78.1746 0.1144 4479 +4481 2 -55.3827343555721 -1040.4411699871403 78.6111 0.1144 4480 +4482 2 -56.26165247271942 -1041.1653535504379 78.871 0.1144 4481 +4483 2 -57.30340344339834 -1040.4078033111205 79.0658 0.1144 4482 +4484 2 -57.846599150757356 -1039.432426674376 79.1176 0.1144 4483 +4485 2 -58.083951929506355 -1038.318708456684 79.1426 0.1144 4484 +4486 2 -58.36776444215229 -1037.214766901317 79.1599 0.1144 4485 +4487 2 -58.850652916604645 -1036.1822488815028 79.1854 0.1144 4486 +4488 2 -59.63081378754424 -1035.3740091983302 79.2249 0.1144 4487 +4489 2 -60.62251911733989 -1034.8179937049715 79.2809 0.1144 4488 +4490 2 -61.7147917503203 -1034.5024477887534 79.357 0.1144 4489 +4491 2 -62.81731336191447 -1034.2051744869455 79.455 0.1144 4490 +4492 2 -63.93970792665482 -1034.0155471127578 79.6096 0.1144 4491 +4493 2 -65.0476437323617 -1033.761980749782 79.8479 0.1144 4492 +4494 2 -65.77073340830987 -1032.972303897812 80.1875 0.1144 4493 +4495 2 -66.1967803349859 -1031.9209280295945 80.5031 0.1144 4494 +4496 2 -66.7631046491934 -1030.9382872655626 80.7702 0.1144 4495 +4497 2 -67.75211534445572 -1030.4544479382475 81.004 0.1144 4496 +4498 2 -68.85137930174903 -1030.1538810535185 81.2148 0.1144 4497 +4499 2 -69.945305740263 -1029.8312524169714 81.4475 0.1144 4498 +4500 2 -70.94996047792395 -1029.308785587311 81.7681 0.1144 4499 +4501 2 -71.89063278694874 -1028.678440081232 82.1495 0.1144 4500 +4502 2 -72.8570888987042 -1028.0827241220277 82.5017 0.1144 4501 +4503 2 -73.81410341951107 -1027.471814204802 82.8344 0.1144 4502 +4504 2 -74.74217338993219 -1026.8203409666698 83.2079 0.1144 4503 +4505 2 -75.68377661713859 -1026.203949076299 83.7021 0.1144 4504 +4506 2 -76.64559717361757 -1025.6134830339784 84.1638 0.1144 4505 +4507 2 -77.64562797510177 -1025.067984504115 84.4119 0.1144 4506 +4508 2 -78.80616991289756 -1024.407632393028 84.8585 0.1144 4507 +4509 2 -79.80233420910383 -1023.859639842929 85.1248 0.1144 4508 +4510 2 -80.91373949406076 -1023.6136055921228 85.3782 0.1144 4509 +4511 2 -82.04112150143209 -1023.4658968941546 85.6302 0.1144 4510 +4512 2 -83.07832241145803 -1023.0063966958508 85.9631 0.1144 4511 +4513 2 -84.01030815138674 -1022.3640210809886 86.3688 0.1144 4512 +4514 2 -84.93218798199385 -1021.714025059524 86.8165 0.1144 4513 +4515 2 -85.89801811304295 -1021.1367052452463 87.2161 0.1144 4514 +4516 2 -86.64753918881345 -1020.290851163873 87.656 0.1144 4515 +4517 2 -87.37585895878044 -1019.4292654382048 88.1191 0.1144 4516 +4518 2 -88.10426392159724 -1018.5677320783493 88.5872 0.1144 4517 +4519 2 -88.83062425601892 -1017.7049419389881 89.0515 0.1144 4518 +4520 2 -89.53270772983169 -1016.8205387471129 89.4975 0.1144 4519 +4521 2 -90.16512998168551 -1015.8812264106879 89.8898 0.1144 4520 +4522 2 -90.80789260816891 -1014.9468614627173 90.2334 0.1144 4521 +4523 2 -91.5633802850083 -1014.0979841923514 90.5514 0.1144 4522 +4524 2 -92.40683634176361 -1013.3353411039262 90.8592 0.1144 4523 +4525 2 -93.25488109861217 -1012.5782183263124 91.1627 0.1144 4524 +4526 2 -94.10256475805303 -1011.8195824034107 91.4659 0.1144 4525 +4527 2 -94.94967239355384 -1011.0618836018567 91.7692 0.1144 4526 +4528 2 -95.79829317434246 -1010.3038237028951 92.0662 0.1144 4527 +4529 2 -96.65025680228169 -1009.5491097526672 92.349 0.1144 4528 +4530 2 -97.5234186344413 -1008.8168162426183 92.6005 0.1144 4529 +4531 2 -98.39519705499578 -1008.0823811975289 92.82 0.1144 4530 +4532 2 -99.23304519904335 -1007.3069006126552 93.0037 0.1144 4531 +4533 2 -100.03566174624558 -1006.4949741146537 93.151 0.1144 4532 +4534 2 -100.83605466714056 -1005.6776898665604 93.2658 0.1144 4533 +4535 2 -101.58490901549158 -1004.8220355058774 93.3408 0.1144 4534 +4536 2 -102.10325253083818 -1003.8019203113538 93.3346 0.1144 4535 +4537 2 -102.56882264195747 -1002.762630711852 93.2784 0.1144 4536 +4538 2 -102.77636422114006 -1001.6427959280959 93.2554 0.1144 4537 +4539 2 -102.72257919880886 -1000.5004876634961 93.1949 0.1144 4538 +4540 2 -102.60347487766762 -999.3638078270051 93.084 0.1144 4539 +4541 2 -102.60180755340338 -998.252243757763 92.932 0.1144 4540 +4542 2 -103.17183030153944 -997.2637770529078 92.7408 0.1144 4541 +4543 2 -103.77213795060308 -996.2980340091971 92.5134 0.1144 4542 +4544 2 -104.22130728096138 -995.2527716054602 92.2508 0.1144 4543 +4545 2 -104.56802174751493 -994.1687133142774 91.9677 0.1144 4544 +4546 2 -104.92320234600254 -993.0884503636686 91.66 0.1144 4545 +4547 2 -105.2792677000252 -992.0088486298497 91.3385 0.1144 4546 +4548 2 -105.65275614900645 -990.9358480900187 91.0266 0.1144 4547 +4549 2 -106.12900819338728 -989.9032417757716 90.7771 0.1144 4548 +4550 2 -106.7249944347029 -988.929442961764 90.6293 0.1144 4549 +4551 2 -107.27315466024547 -987.9261293681487 90.529 0.1144 4550 +4552 2 -107.78049658417257 -986.9019515407057 90.4322 0.1144 4551 +4553 2 -108.28789087391235 -985.8776885204128 90.3193 0.1144 4552 +4554 2 -108.83466458626665 -984.8789221876411 90.1463 0.1144 4553 +4555 2 -109.50218629223662 -983.9611845660635 89.801 0.1144 4554 +4556 2 -109.98007431988532 -982.9631547403418 89.3584 0.1144 4555 +4557 2 -110.13879660201479 -981.8440657683849 88.9333 0.1144 4556 +4558 2 -110.29715778673659 -980.7234636511402 88.5315 0.1144 4557 +4559 2 -110.43088342248836 -979.5971091668224 88.1689 0.1144 4558 +4560 2 -110.31314469068667 -978.5042300742263 87.88 0.1144 4559 +4561 2 -109.76934140560664 -977.5012503500362 87.6988 0.1144 4560 +4562 2 -109.22651899547449 -976.494765217976 87.5902 0.1144 4561 +4563 2 -108.70882055635622 -975.4756691350993 87.5286 0.1144 4562 +4564 2 -108.36249279965025 -974.4006289800656 87.5008 0.1144 4563 +4565 2 -108.27404609594379 -973.2599043329209 87.4952 0.1144 4564 +4566 2 -108.18568458508713 -972.1192320515889 87.4885 0.1144 4565 +4567 2 -108.09660949162787 -970.9795297186417 87.4614 0.1144 4566 +4568 2 -108.0081627879214 -969.838805071497 87.402 0.1144 4567 +4569 2 -107.92737482848398 -968.698797108538 87.297 0.1144 4568 +4570 2 -107.96193228764909 -967.5678293008547 87.101 0.1144 4569 +4571 2 -108.21955235243698 -966.4625779076329 86.749 0.1144 4570 +4572 2 -108.4891080284091 -965.3686539671547 86.2658 0.1144 4571 +4573 2 -108.66158469702248 -964.2688184845556 85.6876 0.1144 4572 +4574 2 -108.61562579777296 -963.1596094918136 85.0559 0.1144 4573 +4575 2 -108.44590702126297 -962.0615424369851 84.3881 0.1144 4574 +4576 2 -108.27447897182358 -960.9773320912193 83.613 0.1144 4575 +4577 2 -108.11134597608222 -959.9208749810153 82.614 0.1144 4576 +4578 2 -108.04795097770142 -958.8814716645976 81.4747 0.1144 4577 +4579 2 -108.21955178708106 -957.8617383846561 80.311 0.1144 4578 +4580 2 -108.49943001541706 -956.8144210414866 79.4371 0.1144 4579 +4581 2 -108.81521647060757 -955.7436318163269 78.8343 0.1144 4580 +4582 2 -109.23200321329392 -954.6985367914028 78.353 0.1144 4581 +4583 2 -109.62829130621628 -953.6409591642719 77.917 0.1144 4582 +4584 2 -109.72602111321726 -952.5206503654027 77.5676 0.1144 4583 +4585 2 -109.7009202446294 -951.3840006628136 77.2859 0.1144 4584 +4586 2 -109.67569274394197 -950.2431647967886 77.0554 0.1144 4585 +4587 2 -109.7524361716718 -949.1046740869888 76.9236 0.1144 4586 +4588 2 -109.87119990566367 -947.9677143447427 76.8821 0.1144 4587 +4589 2 -109.81290906173874 -946.8281533645778 76.9264 0.1144 4588 +4590 2 -109.95163135017447 -945.6980621086648 76.9493 0.1144 4589 +4591 2 -110.13543306248502 -944.5689171841525 76.8578 0.1144 4590 +4592 2 -110.15426267147481 -943.4283992597755 76.7133 0.1144 4591 +4593 2 -110.01408298409297 -942.3042365690383 76.354 0.1144 4592 +4594 2 -109.80782828351221 -941.2066010837844 75.754 0.1144 4593 +4595 2 -109.40409426043774 -940.2117774518716 75.0201 0.1144 4594 +4596 2 -108.54975553232805 -939.5241828709943 74.2367 0.1144 4595 +4597 2 -107.66217617957841 -938.875198662733 73.4745 0.1144 4596 +4598 2 -106.82024027675925 -938.1521490409615 72.7964 0.1144 4597 +4599 2 -106.0743747638106 -937.3339130746328 72.203 0.1144 4598 +4600 2 -105.54148477571718 -936.3416324134336 71.7346 0.1144 4599 +4601 2 -105.06224335854833 -935.3124865811678 71.3924 0.1144 4600 +4602 2 -104.59093107957673 -934.2748331777183 71.2191 0.1144 4601 +4603 2 -104.26202711036589 -933.1823315900593 71.1948 0.1144 4602 +4604 2 -104.12634541959793 -932.052951809476 71.2681 0.1144 4603 +4605 2 -104.20060575365511 -930.9141086144813 71.3812 0.1144 4604 +4606 2 -104.34515708449717 -929.7810269966127 71.5274 0.1144 4605 +4607 2 -104.43812229507577 -928.644408120462 71.7212 0.1144 4606 +4608 2 -104.45236010238918 -927.5050586811577 71.9555 0.1144 4607 +4609 2 -104.4922260474163 -926.3652636441326 72.184 0.1144 4608 +4610 2 -104.53369033058107 -925.2251598755126 72.3789 0.1144 4609 +4611 2 -104.64932855300128 -924.0997777486261 72.557 0.1144 4610 +4612 2 -104.94686021604753 -922.9975782932257 72.7278 0.1144 4611 +4613 2 -105.22928931708822 -921.8914952028182 72.9056 0.1144 4612 +4614 2 -105.60883817220076 -920.8195200787679 73.1284 0.1144 4613 +4615 2 -105.89040923627346 -919.7518799821637 73.5106 0.1144 4614 +4616 2 -105.92973439344408 -918.6305334558779 74.027 0.1144 4615 +4617 2 -106.02589868934442 -917.5106709472661 74.5405 0.1144 4616 +4618 2 -106.11832311206643 -916.3925005818546 75.0943 0.1144 4617 +4619 2 -106.29641079497068 -915.2988137998198 75.7515 0.1144 4618 +4620 2 -106.42454834087903 -914.2361662480282 76.6657 0.1144 4619 +4621 2 -105.75474703862596 -913.5410998227852 77.6199 0.1144 4620 +4622 2 -104.70152566456366 -913.4871892744816 78.4714 0.1144 4621 +4623 2 -103.69646467313683 -913.8443690660602 79.4181 0.1144 4622 +4624 2 -102.7155415985832 -914.2713199904159 80.4118 0.1144 4623 +4625 2 -101.97725645574525 -913.606699641747 81.2566 0.1144 4624 +4626 2 -101.83029967804634 -912.4891702794981 81.6654 0.1144 4625 +4627 2 -102.00220032271969 -911.3902719182468 81.947 0.1144 4626 +4628 2 -102.59707285382169 -910.429169940442 82.1416 0.1144 4627 +4629 2 -103.43148985628588 -909.6569798369062 82.2475 0.1144 4628 +4630 2 -104.14077037089086 -908.8307608576993 82.3239 0.1144 4629 +4631 2 -104.32858165777142 -907.7147621612304 82.4617 0.1144 4630 +4632 2 -104.59403636315758 -906.6210172186645 82.6554 0.1144 4631 +4633 2 -105.00409907387615 -905.558407702766 82.9111 0.1144 4632 +4634 2 -105.36528771268235 -904.4792553607876 83.1751 0.1144 4633 +4635 2 -105.76696948431666 -903.4129028701277 83.3977 0.1144 4634 +4636 2 -106.24665267028104 -902.3770060745428 83.5674 0.1144 4635 +4637 2 -106.70402394181133 -901.3313856749814 83.7085 0.1144 4636 +4638 2 -107.07506522574002 -900.2514814127339 83.8432 0.1144 4637 +4639 2 -107.37308771987654 -899.148292470173 83.9569 0.1144 4638 +4640 2 -107.61034669356303 -898.0305256477072 84.0434 0.1144 4639 +4641 2 -107.76773241927046 -896.8985249130151 84.1089 0.1144 4640 +4642 2 -107.83802151642428 -895.7573580834843 84.1582 0.1144 4641 +4643 2 -107.84219485366594 -894.6145220352008 84.1952 0.1144 4642 +4644 2 -107.88133860387777 -893.4717007075999 84.2262 0.1144 4643 +4645 2 -107.89126361565584 -892.3282917369595 84.2624 0.1144 4644 +4646 2 -107.93999271864493 -891.1872539485747 84.3119 0.1144 4645 +4647 2 -108.05870408682398 -890.0503793991784 84.3839 0.1144 4646 +4648 2 -108.16881958938629 -888.9122121416563 84.485 0.1144 4647 +4649 2 -108.250292377455 -887.7725201197467 84.6185 0.1144 4648 +4650 2 -108.40834793216499 -886.6436308684802 84.7832 0.1144 4649 +4651 2 -108.47876055983525 -885.5133389982693 85.0864 0.1144 4650 +4652 2 -108.23989121532091 -884.435917740705 85.7074 0.1144 4651 +4653 2 -108.34096386947243 -883.3189548905697 86.1851 0.1144 4652 +4654 2 -108.48430768503852 -882.1945215041305 86.5444 0.1144 4653 +4655 2 -108.62966640354574 -881.0645185426503 86.8059 0.1144 4654 +4656 2 -108.77524004858537 -879.9320653145345 86.9809 0.1144 4655 +4657 2 -108.92041976918034 -878.7979613824683 87.0828 0.1144 4656 +4658 2 -109.0655994897752 -877.6638574504022 87.148 0.1144 4657 +4659 2 -109.21072684455743 -876.5298387111858 87.2304 0.1144 4658 +4660 2 -109.35755726910281 -875.3953408546749 87.339 0.1144 4659 +4661 2 -109.57748695289325 -874.2750214429946 87.4938 0.1144 4660 +4662 2 -110.04287496451718 -873.238319668791 87.7509 0.1144 4661 +4663 2 -110.53275786486557 -872.2140918845816 88.0855 0.1144 4662 +4664 2 -111.02308705547134 -871.191429611473 88.466 0.1144 4663 +4665 2 -111.51314895373201 -870.1713027978498 88.8628 0.1144 4664 +4666 2 -111.99269147945071 -869.142127625186 89.2158 0.1144 4665 +4667 2 -112.4563021550247 -868.1016336119915 89.4681 0.1144 4666 +4668 2 -112.91910544293356 -867.0580609424084 89.6305 0.1144 4667 +4669 2 -113.3831983373851 -866.0125812030927 89.7266 0.1144 4668 +4670 2 -113.84720603898697 -864.9670490979643 89.7781 0.1144 4669 +4671 2 -114.17102395495363 -863.8702080851922 89.8064 0.1144 4670 +4672 2 -114.45906717186818 -862.7635848994647 89.8313 0.1144 4671 +4673 2 -114.74622563324775 -861.6563004969474 89.8654 0.1144 4672 +4674 2 -115.03440640882482 -860.549644484183 89.9116 0.1144 4673 +4675 2 -115.32151250439156 -859.4424452745154 89.9721 0.1144 4674 +4676 2 -115.53917402104187 -858.3193231110045 90.0726 0.1144 4675 +4677 2 -115.73642759140753 -857.194455745944 90.2135 0.1144 4676 +4678 2 -115.93114570228784 -856.0693210885385 90.3865 0.1144 4677 +4679 2 -116.12528778922794 -854.9451235524806 90.5825 0.1144 4678 +4680 2 -116.32039982455296 -853.8216395990254 90.7931 0.1144 4679 +4681 2 -116.51614024963078 -852.6971333313727 91.0118 0.1144 4680 +4682 2 -116.71116709210602 -851.5735970121048 91.2316 0.1144 4681 +4683 2 -116.9047659821432 -850.4504741560572 91.4511 0.1144 4682 +4684 2 -117.10042121437121 -849.3259155225917 91.67 0.1144 4683 +4685 2 -117.2945633013114 -848.2017179865338 91.8884 0.1144 4684 +4686 2 -117.48967533663634 -847.0782340330786 92.1054 0.1144 4685 +4687 2 -117.68381742357658 -845.9540364970208 92.3213 0.1144 4686 +4688 2 -117.87892945890158 -844.8305525435655 92.5347 0.1144 4687 +4689 2 -118.07395630137682 -843.7070162242976 92.7455 0.1144 4688 +4690 2 -118.26969672645467 -842.5825099566449 92.9522 0.1144 4689 +4691 2 -118.46383881339477 -841.458312420587 93.1529 0.1144 4690 +4692 2 -118.65957923847265 -840.3338061529342 93.3467 0.1144 4691 +4693 2 -118.85429734935289 -839.2086714955287 93.5326 0.1144 4692 +4694 2 -119.07524934734096 -838.0889804736012 93.6911 0.1144 4693 +4695 2 -119.29740575902193 -836.9673300161282 93.8283 0.1144 4694 +4696 2 -119.51898614676276 -835.8466166800032 93.9509 0.1144 4695 +4697 2 -119.74207967979149 -834.7255422464705 94.0643 0.1144 4696 +4698 2 -119.96522557863298 -833.604382620088 94.1744 0.1144 4697 +4699 2 -120.1867536005611 -832.4837544768127 94.2866 0.1144 4698 +4700 2 -120.28769721356659 -831.3452316325124 94.4126 0.1144 4699 +4701 2 -120.31797780581644 -830.2036530562713 94.5557 0.1144 4700 +4702 2 -120.34376350303549 -829.0606027739918 94.7125 0.1144 4701 +4703 2 -120.36842997941156 -827.9195642930706 94.8794 0.1144 4702 +4704 2 -120.39358728687782 -826.7775363249888 95.0536 0.1144 4703 +4705 2 -120.41968171569192 -825.636084380847 95.2314 0.1144 4704 +4706 2 -120.4602088775089 -824.4954045882869 95.4117 0.1144 4705 +4707 2 -120.5410532758248 -823.3567348805749 95.5998 0.1144 4706 +4708 2 -120.62297235415093 -822.2186083697659 95.7886 0.1144 4707 +4709 2 -120.7053822635674 -821.0794923717965 95.9706 0.1144 4708 +4710 2 -120.80671980101755 -819.9426202314467 96.1346 0.1144 4709 +4711 2 -121.04295646050656 -818.8242250192282 96.2298 0.1144 4710 +4712 2 -121.2832940905815 -817.7056508090972 96.2727 0.1144 4711 +4713 2 -121.52264223349601 -816.5865857678759 96.2814 0.1144 4712 +4714 2 -121.78067025087469 -815.4720772922476 96.2844 0.1144 4713 +4715 2 -122.1198994604419 -814.3807182526202 96.3402 0.1144 4714 +4716 2 -122.45961950109941 -813.2883697258324 96.4404 0.1144 4715 +4717 2 -122.79978583201435 -812.1975867101451 96.5745 0.1144 4716 +4718 2 -123.12636274621161 -811.102558962043 96.7162 0.1144 4717 +4719 2 -123.38982277996885 -809.9900982163928 96.8234 0.1144 4718 +4720 2 -123.65488115186369 -808.8773287391476 96.8786 0.1144 4719 +4721 2 -123.91740406427314 -807.7642919695572 96.8772 0.1144 4720 +4722 2 -124.18246243616801 -806.6515224923121 96.8316 0.1144 4721 +4723 2 -124.89844806519736 -806.6445168500576 96.2713 0.1144 4722 +4724 2 -125.68073264891189 -805.8765529641341 95.6418 0.1144 4723 +4725 2 -125.98667188062021 -805.4267588373365 95.4391 0.1144 4724 +4726 2 -126.62783065833639 -804.4820175861161 95.4142 0.1144 4725 +4727 2 -127.41712818274925 -803.6566221003302 95.5721 0.1144 4726 +4728 2 -128.31709923342018 -802.9528977310248 95.7202 0.1144 4727 +4729 2 -129.22295720293977 -802.2567828417586 95.8362 0.1144 4728 +4730 2 -130.31754795982664 -801.9265806537924 95.9064 0.1144 4729 +4731 2 -130.1924554212312 -800.8653346376456 96.8058 0.1144 4730 +4732 2 -130.06864707324502 -799.8170855770836 97.8874 0.1144 4731 +4733 2 -129.93733605445476 -798.7023651698315 98.4074 0.1144 4732 +4734 2 -129.80686525036666 -797.5908609776304 98.985 0.1144 4733 +4735 2 -129.66036027355486 -796.4855821613269 99.6195 0.1144 4734 +4736 2 -129.09992345891567 -795.5207391083918 100.2268 0.1144 4735 +4737 2 -128.5387316224241 -794.5527322062185 100.8143 0.1144 4736 +4738 2 -127.97566554323706 -793.5835732561649 101.3737 0.1144 4737 +4739 2 -127.5519876864013 -792.5469107249489 101.941 0.1144 4738 +4740 2 -127.39589735681217 -791.4398483694292 102.5408 0.1144 4739 +4741 2 -127.24212756017609 -790.3355035728904 103.1573 0.1144 4740 +4742 2 -127.08799666613234 -789.2296456310637 103.7761 0.1144 4741 +4743 2 -126.93391813790134 -788.1237024963871 104.3753 0.1144 4742 +4744 2 -126.77934095360008 -787.0162790434597 104.9633 0.1144 4743 +4745 2 -126.63264156565678 -785.9659322961534 106.013 0.1144 4744 +4746 2 -131.35997818234551 -802.0287923516514 95.9272 0.1144 4730 +4747 2 -132.47404346929963 -802.2785660620453 95.8163 0.1144 4746 +4748 2 -133.47412973817964 -801.7262935434482 95.6682 0.1144 4747 +4749 2 -134.47322651989913 -801.1735301937606 95.4993 0.1144 4748 +4750 2 -135.47276959187607 -800.6223323551737 95.3075 0.1144 4749 +4751 2 -136.4712903496555 -800.070506126834 95.0888 0.1144 4750 +4752 2 -137.17869933238512 -799.5532566887932 96.7338 0.1144 4751 +4753 2 -138.00107901661156 -798.9536122399975 97.9264 0.1144 4752 +4754 2 -138.87635224990993 -798.3139387708968 98.8212 0.1144 4753 +4755 2 -139.81987246712362 -797.8450989904716 99.8553 0.1144 4754 +4756 2 -140.8153411980923 -797.9427425036382 100.9873 0.1144 4755 +4757 2 -141.83663417673114 -797.8104642295982 102.0743 0.1144 4756 +4758 2 -142.7373739636488 -797.2254147904364 102.9585 0.1144 4757 +4759 2 -143.60584648964613 -796.5465816433467 103.7084 0.1144 4758 +4760 2 -144.4646077233033 -795.8377161669919 104.3498 0.1144 4759 +4761 2 -145.25243284914148 -795.0408782028499 104.8863 0.1144 4760 +4762 2 -146.01709482458426 -794.2097303499909 105.3298 0.1144 4761 +4763 2 -146.78772340109583 -793.3755593081394 105.6832 0.1144 4762 +4764 2 -147.5739094420832 -792.5508336513561 105.9069 0.1144 4763 +4765 2 -148.08944710401613 -791.5396754198568 105.9822 0.1144 4764 +4766 2 -148.40142011227803 -790.4422443549986 105.9178 0.1144 4765 +4767 2 -148.90342382488905 -789.4200674023506 105.7577 0.1144 4766 +4768 2 -149.4611467628502 -788.4254488953479 105.5438 0.1144 4767 +4769 2 -150.02074394350677 -787.4319824362256 105.3128 0.1144 4768 +4770 2 -150.5794040028157 -786.4379399531631 105.0969 0.1144 4769 +4771 2 -151.06840524921208 -785.4063621562798 104.9202 0.1144 4770 +4772 2 -150.64310882292637 -784.3942937347841 104.8186 0.1144 4771 +4773 2 -150.06846271933318 -783.40463544243 104.8211 0.1144 4772 +4774 2 -149.49137496131698 -782.4187584625041 104.9096 0.1144 4773 +4775 2 -149.0584704400651 -781.364451706631 105.1333 0.1144 4774 +4776 2 -148.91958586985567 -780.249066981006 105.5939 0.1144 4775 +4777 2 -148.80778401366882 -779.1463383448705 106.2622 0.1144 4776 +4778 2 -148.70916872379047 -778.1686263655013 107.6956 0.1144 4777 +4779 2 -137.36568002820718 -800.6121647581695 94.6823 0.1144 4751 +4780 2 -138.33823609085513 -801.1992878415231 94.3438 0.1144 4779 +4781 2 -139.2905625125943 -801.8128293205264 93.9621 0.1144 4780 +4782 2 -140.155891213024 -802.532768151409 93.5441 0.1144 4781 +4783 2 -140.9234402506539 -803.3617500359115 93.116 0.1144 4782 +4784 2 -141.60855354850034 -804.2635453725118 92.759 0.1144 4783 +4785 2 -142.22730430949048 -805.2186887522062 92.4622 0.1144 4784 +4786 2 -142.89116324318417 -806.1289002639743 92.0385 0.1144 4785 +4787 2 -143.63327485480843 -806.9597361598601 91.4091 0.1144 4786 +4788 2 -144.65963356124718 -807.3260357718138 90.9048 0.1144 4787 +4789 2 -145.79233115726075 -807.3992183242776 90.6125 0.1144 4788 +4790 2 -146.92247857310616 -807.5071039973664 90.277 0.1144 4789 +4791 2 -148.04803969790493 -807.6268431903725 89.8817 0.1144 4790 +4792 2 -149.173239725296 -807.745069238091 89.4555 0.1144 4791 +4793 2 -150.2962130247966 -807.8646263316018 89.0005 0.1144 4792 +4794 2 -151.41620457455434 -807.9823506216669 88.5167 0.1144 4793 +4795 2 -152.53761236295426 -808.1023540054352 88.048 0.1144 4794 +4796 2 -153.667169034177 -808.2461472128418 87.7643 0.1144 4795 +4797 2 -154.7998536260178 -808.3957366356177 87.6473 0.1144 4796 +4798 2 -155.93350816624343 -808.5460396409962 87.6618 0.1144 4797 +4799 2 -157.06716270646905 -808.6963426463747 87.771 0.1144 4798 +4800 2 -158.19859051880422 -808.8479766975457 87.9421 0.1144 4799 +4801 2 -159.32970959954443 -808.9980124105791 88.1446 0.1144 4800 +4802 2 -160.46077631447187 -809.1481333164622 88.3532 0.1144 4801 +4803 2 -161.59189539521208 -809.2981690294955 88.5629 0.1144 4802 +4804 2 -162.72993671317124 -809.3800357420089 88.7734 0.1144 4803 +4805 2 -163.8700404817913 -809.4215000251737 88.9862 0.1144 4804 +4806 2 -165.0095682264713 -809.4639014296863 89.203 0.1144 4805 +4807 2 -166.14922570483384 -809.5038002017504 89.4264 0.1144 4806 +4808 2 -167.28781632816606 -809.5456255823229 89.6591 0.1144 4807 +4809 2 -168.42689778258847 -809.5864614757348 89.9027 0.1144 4808 +4810 2 -169.56222154156688 -809.6706487212012 90.1824 0.1144 4809 +4811 2 -170.69558276341684 -809.760320348859 90.4935 0.1144 4810 +4812 2 -171.8282304026642 -809.8509619249014 90.8267 0.1144 4811 +4813 2 -172.95936489662358 -809.9419645983515 91.1809 0.1144 4812 +4814 2 -174.09010546613837 -810.0313165678513 91.539 0.1144 4813 +4815 2 -175.22181598403796 -810.1213821199536 91.8896 0.1144 4814 +4816 2 -176.35357886775023 -810.2113624792062 92.2194 0.1144 4815 +4817 2 -177.487877210948 -810.301610130804 92.5282 0.1144 4816 +4818 2 -178.60270472920894 -810.3906886047923 93.1118 0.1144 4817 +4819 2 -126.02524892876193 -806.1702498536619 93.4178 0.1144 4724 +4820 2 -126.77860449910497 -806.8145536520623 92.0237 0.1144 4819 +4821 2 -127.46466722993537 -807.6645807689035 91.2419 0.1144 4820 +4822 2 -128.0874022320017 -808.5456409128219 90.3202 0.1144 4821 +4823 2 -128.80627711948034 -809.3138329370922 89.2623 0.1144 4822 +4824 2 -129.41385791592793 -809.9638459644909 87.5028 0.1144 4823 +4825 2 -124.3169160614533 -805.6156465139018 97.4408 0.1144 4722 +4826 2 -124.46369412018589 -804.4812338502406 97.3532 0.1144 4825 +4827 2 -124.61043935188141 -803.346683627917 97.288 0.1144 4826 +4828 2 -124.69092265278967 -802.2065007749171 97.2698 0.1144 4827 +4829 2 -124.65905872203076 -801.0655766144591 97.356 0.1144 4828 +4830 2 -124.69165984723362 -799.9267155971987 97.55 0.1144 4829 +4831 2 -124.98865382400643 -798.8362758566534 97.8141 0.1144 4830 +4832 2 -125.40004758051751 -797.7758930686454 98.1075 0.1144 4831 +4833 2 -125.82142061425058 -796.7189445238039 98.3979 0.1144 4832 +4834 2 -126.24444435193399 -795.6616020545176 98.6558 0.1144 4833 +4835 2 -126.6675978233001 -794.601756952783 98.8627 0.1144 4834 +4836 2 -127.00522869472961 -793.5107066447505 98.936 0.1144 4835 +4837 2 -127.28726387132559 -792.4029728503926 98.8551 0.1144 4836 +4838 2 -127.56015998540173 -791.2950210279192 98.6544 0.1144 4837 +4839 2 -127.8327036142829 -790.1895522991185 98.378 0.1144 4838 +4840 2 -128.1092513071045 -789.0865447635165 98.0916 0.1144 4839 +4841 2 -128.39204150555287 -787.9819748183968 97.853 0.1144 4840 +4842 2 -128.6779431874267 -786.8767350442746 97.6875 0.1144 4841 +4843 2 -128.96358850351834 -785.7698117391649 97.5948 0.1144 4842 +4844 2 -129.24967228488765 -784.6619841397446 97.5652 0.1144 4843 +4845 2 -129.53487131072183 -783.5534953235343 97.5836 0.1144 4844 +4846 2 -129.35601657327507 -782.448521444706 97.7094 0.1144 4845 +4847 2 -128.91005962904234 -781.4022728681762 97.9493 0.1144 4846 +4848 2 -128.4282303865753 -780.3729449364151 98.2694 0.1144 4847 +4849 2 -128.18919366324832 -779.2631410911789 98.5376 0.1144 4848 +4850 2 -128.13767680805728 -778.1236355784098 98.6863 0.1144 4849 +4851 2 -128.11012877441692 -776.9800821534039 98.7249 0.1144 4850 +4852 2 -127.79437103324942 -775.8835709911749 98.8299 0.1144 4851 +4853 2 -127.3786199055644 -774.8210270580462 99.0497 0.1144 4852 +4854 2 -126.97711330291699 -773.8008097537279 99.843 0.1144 4853 +4855 2 -78.30676433662225 -1025.2594435636433 83.8776 0.1144 4507 +4856 2 -79.37874015320921 -1025.6149297921427 83.9502 0.1144 4855 +4857 2 -80.49303439484174 -1025.8513454495442 84.1299 0.1144 4856 +4858 2 -81.61946486195635 -1026.0307788989235 84.3251 0.1144 4857 +4859 2 -82.7411652761954 -1026.2354762870254 84.5454 0.1144 4858 +4860 2 -83.79735879918456 -1026.6536854715205 84.7935 0.1144 4859 +4861 2 -84.9078834244998 -1026.6689863397446 85.2247 0.1144 4860 +4862 2 -85.67098160535187 -1025.8797212344853 85.8306 0.1144 4861 +4863 2 -86.50721117994951 -1025.1288347593318 86.3324 0.1144 4862 +4864 2 -87.53524330200176 -1024.6622901783658 86.781 0.1144 4863 +4865 2 -88.59232508485002 -1024.3384947732557 87.5028 0.1144 4864 +4866 2 -56.51259988218473 -1042.0984255774983 79.0877 0.1144 4482 +4867 2 -56.641452116822904 -1043.2345238794196 79.035 0.1144 4866 +4868 2 -56.74487475043537 -1044.3749459981357 79.0132 0.1144 4867 +4869 2 -56.84686160662986 -1045.5133117746607 78.9846 0.1144 4868 +4870 2 -56.92795829766223 -1046.6549180757575 78.9443 0.1144 4869 +4871 2 -56.916520140596276 -1047.7986881438055 78.8774 0.1144 4870 +4872 2 -56.89995869874676 -1048.9420088200131 78.7909 0.1144 4871 +4873 2 -56.88496276799782 -1050.0848832059633 78.6906 0.1144 4872 +4874 2 -57.0138673684487 -1051.2208963150351 78.5837 0.1144 4873 +4875 2 -57.48530627951993 -1052.2627358819204 78.4904 0.1144 4874 +4876 2 -57.91459755969299 -1053.3229209444294 78.4115 0.1144 4875 +4877 2 -58.21440632098654 -1054.4257098483688 78.344 0.1144 4876 +4878 2 -58.670970932193995 -1055.4743703538675 78.2474 0.1144 4877 +4879 2 -59.12534474413127 -1056.5178106679373 77.9671 0.1144 4878 +4880 2 -51.302057346268526 -1028.091213733544 71.3857 0.1144 4469 +4881 2 -50.65063647394902 -1027.1630585702733 71.5876 0.1144 4880 +4882 2 -50.33322492724804 -1026.0736301283732 71.759 0.1144 4881 +4883 2 -50.377979691750625 -1024.9369575013366 71.9068 0.1144 4882 +4884 2 -50.67502913591923 -1023.8397437720571 72.0426 0.1144 4883 +4885 2 -50.71239244849801 -1022.6998190013494 72.1888 0.1144 4884 +4886 2 -50.912988866014274 -1021.5782975850226 72.359 0.1144 4885 +4887 2 -50.92687418813273 -1020.441431239391 72.6062 0.1144 4886 +4888 2 -50.82977856046023 -1019.3235617035833 72.9778 0.1144 4887 +4889 2 -51.08667332884974 -1018.22197281567 73.393 0.1144 4888 +4890 2 -51.31372647968223 -1017.1315036337593 73.9603 0.1144 4889 +4891 2 -51.428606578666916 -1016.0096464535187 74.398 0.1144 4890 +4892 2 -51.532485086232185 -1014.8837266403589 74.6995 0.1144 4891 +4893 2 -51.48564522556731 -1013.7431050083297 74.881 0.1144 4892 +4894 2 -51.428067964244974 -1012.60257407978 74.9546 0.1144 4893 +4895 2 -51.29346405507036 -1011.4670487002154 74.9302 0.1144 4894 +4896 2 -51.17788468057512 -1010.3311269871598 74.8577 0.1144 4895 +4897 2 -51.227997195169365 -1009.1922307338158 74.8056 0.1144 4896 +4898 2 -51.49001834992552 -1008.0844024418589 74.7816 0.1144 4897 +4899 2 -51.890636368112496 -1007.013287763823 74.797 0.1144 4898 +4900 2 -52.299582959570984 -1005.9460012533983 74.8689 0.1144 4899 +4901 2 -52.6914675534787 -1004.8736266942736 74.9675 0.1144 4900 +4902 2 -52.696253867253944 -1003.7888013713758 75.0534 0.1144 4901 +4903 2 -52.46879475928651 -1002.6821230377112 75.1178 0.1144 4902 +4904 2 -52.68680024361521 -1001.5781106017292 75.1545 0.1144 4903 +4905 2 -53.1141070513801 -1000.5180013092327 75.1848 0.1144 4904 +4906 2 -53.4012100453638 -999.4174908954493 75.2111 0.1144 4905 +4907 2 -53.54986234679194 -998.2842302796683 75.2195 0.1144 4906 +4908 2 -53.55288363615338 -997.1432684740804 75.1229 0.1144 4907 +4909 2 -53.27583307955135 -996.0517686852181 74.7953 0.1144 4908 +4910 2 -53.25740938774803 -994.9434037012978 74.1989 0.1144 4909 +4911 2 -53.37313280301811 -993.8180739402243 73.787 0.1144 4910 +4912 2 -52.92379549029971 -994.245458239654 71.64 0.1144 4911 +4913 2 -52.11148958089444 -994.8285229097766 70.5438 0.1144 4912 +4914 2 -51.08176531564209 -995.2913276175644 70.1943 0.1144 4913 +4915 2 -50.1166926154919 -995.8891851118093 69.9149 0.1144 4914 +4916 2 -49.46801334470581 -996.8091142251939 69.6679 0.1144 4915 +4917 2 -49.18972114287135 -997.9084670804673 69.4677 0.1144 4916 +4918 2 -48.28986782799862 -998.535614193761 69.265 0.1144 4917 +4919 2 -47.15435035042529 -998.4822963906788 69.085 0.1144 4918 +4920 2 -46.01469287206271 -998.4423976186146 68.8584 0.1144 4919 +4921 2 -45.45298739185043 -999.3365552409047 68.2576 0.1144 4920 +4922 2 -44.852054454617075 -1000.2966318029288 67.8748 0.1144 4921 +4923 2 -44.24644142127454 -1001.2645132800972 67.6917 0.1144 4922 +4924 2 -43.62831675280762 -1002.2220044258696 67.4607 0.1144 4923 +4925 2 -42.93277831305039 -1003.1198211381334 67.1602 0.1144 4924 +4926 2 -42.15114263448962 -1003.9392445122209 66.7696 0.1144 4925 +4927 2 -41.37655203112769 -1004.7254364717214 66.2673 0.1144 4926 +4928 2 -41.19727844933283 -1005.7553608538343 65.6617 0.1144 4927 +4929 2 -40.978529953014316 -1006.5111174385613 65.0877 0.1144 4928 +4930 2 -39.9686259910068 -1007.0048860863322 64.5733 0.1144 4929 +4931 2 -39.01370984948093 -1007.5688423369878 63.9414 0.1144 4930 +4932 2 -38.13451705255528 -1008.2301696053157 63.17 0.1144 4931 +4933 2 -37.202382448616305 -1008.7744407970386 62.3098 0.1144 4932 +4934 2 -36.21026987074447 -1008.8964841206109 61.1817 0.1144 4933 +4935 2 -35.41179312352523 -1008.373519060449 59.7881 0.1144 4934 +4936 2 -34.55689649551488 -1007.9379501503826 58.3125 0.1144 4935 +4937 2 -33.766490452059344 -1008.277999171068 56.6255 0.1144 4936 +4938 2 -33.57164428920066 -1007.3256507302024 55.162 0.1144 4937 +4939 2 -33.01450096849308 -1006.9671081662145 53.3884 0.1144 4938 +4940 2 -32.07935077577889 -1007.0247432862942 51.872 0.1144 4939 +4941 2 -31.15785886211387 -1006.686631894812 50.4546 0.1144 4940 +4942 2 -30.305749572714888 -1006.3078278571885 48.8877 0.1144 4941 +4943 2 -29.45097507816962 -1006.3504257852481 47.1111 0.1144 4942 +4944 2 -28.76996425977731 -1006.912190242323 45.4154 0.1144 4943 +4945 2 -28.06488842341048 -1007.672560753963 44.2386 0.1144 4944 +4946 2 -27.16475920397997 -1008.2982470877815 43.4526 0.1144 4945 +4947 2 -26.510830708847266 -1009.1894780192766 42.7795 0.1144 4946 +4948 2 -25.720690560685767 -1009.9942834592827 42.3184 0.1144 4947 +4949 2 -24.682156195820767 -1010.4341830989671 41.9482 0.1144 4948 +4950 2 -23.617920119491913 -1010.8461943534738 41.743 0.1144 4949 +4951 2 -22.79481895067181 -1011.6347304629113 41.5414 0.1144 4950 +4952 2 -21.928023154655364 -1012.3763365227626 41.3501 0.1144 4951 +4953 2 -21.161351786901008 -1013.2237389855072 41.1874 0.1144 4952 +4954 2 -20.62714207548376 -1014.2328104568252 41.0228 0.1144 4953 +4955 2 -20.18478817310921 -1015.2822621255808 40.7518 0.1144 4954 +4956 2 -19.747913142296284 -1016.32299129662 40.3575 0.1144 4955 +4957 2 -19.004094476832478 -1017.1616688526019 39.8653 0.1144 4956 +4958 2 -18.728586920474186 -1018.2236455691026 39.1924 0.1144 4957 +4959 2 -19.04590266151405 -1019.1908217684004 38.0842 0.1144 4958 +4960 2 -19.810939554868895 -1019.7725816087177 36.6064 0.1144 4959 +4961 2 -20.718982712061802 -1020.099726644864 35.1389 0.1144 4960 +4962 2 -20.899694059895012 -1019.6092288683509 33.6031 0.1144 4961 +4963 2 -21.49823659555551 -1019.196907485198 31.8718 0.1144 4962 +4964 2 -22.48322570638524 -1019.045013931856 30.5015 0.1144 4963 +4965 2 -23.43399662628778 -1019.1957060612713 29.3541 0.1144 4964 +4966 2 -24.32964887906337 -1019.8227722795433 28.5362 0.1144 4965 +4967 2 -25.17462199902124 -1020.5408807160267 27.8781 0.1144 4966 +4968 2 -25.89297902309079 -1021.3973768841266 27.3708 0.1144 4967 +4969 2 -26.436427413929295 -1022.3854658712604 26.957 0.1144 4968 +4970 2 -26.811720644869865 -1023.4527213424623 26.6069 0.1144 4969 +4971 2 -27.01222607996067 -1024.568303580802 26.2867 0.1144 4970 +4972 2 -27.100943177595383 -1025.6998039725772 25.9403 0.1144 4971 +4973 2 -27.164090706495358 -1026.818287177455 25.4069 0.1144 4972 +4974 2 -27.619416461430376 -1026.7986083336666 24.4015 0.1144 4973 +4975 2 -28.559365089599282 -1027.2420865590661 23.5919 0.1144 4974 +4976 2 -28.676576037717297 -1028.2770072920894 22.4367 0.1144 4975 +4977 2 -33.47448449863714 -1007.4552642908264 55.2796 0.1144 4938 +4978 2 -33.025418183394436 -1008.4589198515216 55.9348 0.1144 4977 +4979 2 -32.82219560291338 -1009.5694365748458 56.2811 0.1144 4978 +4980 2 -32.7933343508889 -1010.7066054489061 56.5222 0.1144 4979 +4981 2 -32.98831947516834 -1011.826776387339 56.6955 0.1144 4980 +4982 2 -33.27016745522991 -1012.9347238121454 56.7862 0.1144 4981 +4983 2 -33.55933262092847 -1014.0416520243374 56.8025 0.1144 4982 +4984 2 -33.813833003668776 -1015.1568526498686 56.7829 0.1144 4983 +4985 2 -34.042137836967925 -1016.277432233429 56.7647 0.1144 4984 +4986 2 -34.33815435927039 -1017.3819984734182 56.7308 0.1144 4985 +4987 2 -34.73295985439742 -1018.4545569198524 56.6499 0.1144 4986 +4988 2 -35.15877855373731 -1019.5138986660762 56.5183 0.1144 4987 +4989 2 -35.58713271256266 -1020.5735077046452 56.3466 0.1144 4988 +4990 2 -36.01407063274564 -1021.6308376495109 56.147 0.1144 4989 +4991 2 -36.44104137996575 -1022.6883051530392 55.9381 0.1144 4990 +4992 2 -36.86845841744332 -1023.7473381676681 55.7371 0.1144 4991 +4993 2 -37.2964186518239 -1024.8052965022866 55.5534 0.1144 4992 +4994 2 -37.465062055787 -1025.9268829868251 55.4394 0.1144 4993 +4995 2 -37.38831862805719 -1027.065373696625 55.4288 0.1144 4994 +4996 2 -37.219834404284654 -1028.1959519895086 55.4736 0.1144 4995 +4997 2 -36.94328360987993 -1029.3056483209948 55.4504 0.1144 4996 +4998 2 -36.63621895986921 -1030.4059790443293 55.3535 0.1144 4997 +4999 2 -36.44952069066562 -1031.5333435312086 55.2726 0.1144 4998 +5000 2 -36.610055958519155 -1032.6593366163452 55.37 0.1144 4999 +5001 2 -36.8158113104931 -1033.7795544099613 55.6399 0.1144 5000 +5002 2 -37.02068500851516 -1034.8924221909033 56.047 0.1144 5001 +5003 2 -37.22408148986946 -1035.9990998320313 56.5505 0.1144 5002 +5004 2 -37.6648799132351 -1037.027387627329 57.1082 0.1144 5003 +5005 2 -37.736044182228625 -1038.1547894575647 57.5548 0.1144 5004 +5006 2 -37.80507552839413 -1039.2875709383661 57.9004 0.1144 5005 +5007 2 -37.87534101370659 -1040.4252193381687 58.163 0.1144 5006 +5008 2 -37.94494528222907 -1041.5637524935064 58.3624 0.1144 5007 +5009 2 -37.538586516068676 -1042.6312211034265 58.5371 0.1144 5008 +5010 2 -37.11890872711888 -1043.6852207255624 58.896 0.1144 5009 +5011 2 -45.562489225342574 -998.1644398846099 68.6941 0.1144 4920 +5012 2 -44.5881917552648 -997.5669733250436 68.5726 0.1144 5011 +5013 2 -43.530182558559034 -997.1341493080505 68.4922 0.1144 5012 +5014 2 -42.442922080471135 -996.7773672698421 68.4491 0.1144 5013 +5015 2 -41.30850941681007 -996.6305892111094 68.4331 0.1144 5014 +5016 2 -40.58935662417494 -995.7427327695351 68.4337 0.1144 5015 +5017 2 -40.17441598573822 -994.6765786969106 68.4345 0.1144 5016 +5018 2 -39.85887317110314 -993.577617268046 68.4354 0.1144 5017 +5019 2 -39.55870331240192 -992.4733152188188 68.4365 0.1144 5018 +5020 2 -39.31463159872419 -991.3564255516707 68.439 0.1144 5019 +5021 2 -39.273810704940956 -990.212695537799 68.4435 0.1144 5020 +5022 2 -39.82039440383065 -989.8236053681621 68.4471 0.1144 5021 +5023 2 -40.52056839886427 -988.9205387390153 68.4474 0.1144 5022 +5024 2 -41.12738584589977 -987.9506978263016 68.4412 0.1144 5023 +5025 2 -41.93717891849349 -987.1444737386068 68.5076 0.1144 5024 +5026 2 -42.90959052677613 -987.7690698673789 69.4534 0.1144 5025 +5027 2 -43.942601076505525 -988.0764247341823 69.9104 0.1144 5026 +5028 2 -44.973713855544815 -987.72727640338 70.2069 0.1144 5027 +5029 2 -45.68060267249311 -986.8873797130226 70.6182 0.1144 5028 +5030 2 -45.59313342839965 -985.8762573211542 71.1096 0.1144 5029 +5031 2 -44.78898681382202 -985.2838391645593 72.0188 0.1144 5030 +5032 2 -44.22492134488482 -984.3839074578433 72.5455 0.1144 5031 +5033 2 -43.600148515429964 -983.4385612558755 72.9464 0.1144 5032 +5034 2 -43.5716134036756 -982.3118908305082 73.2113 0.1144 5033 +5035 2 -44.10738552461035 -981.3090618648171 73.3446 0.1144 5034 +5036 2 -43.895875396516914 -980.1961057894422 73.3849 0.1144 5035 +5037 2 -43.39221886753998 -979.1694423583125 73.3527 0.1144 5036 +5038 2 -42.477736491216575 -978.4878404045345 73.313 0.1144 5037 +5039 2 -41.86089590154211 -977.5272978354986 73.1965 0.1144 5038 +5040 2 -41.224269552169744 -976.5773653424841 73.0954 0.1144 5039 +5041 2 -40.840650849540765 -975.4995929077869 73.0178 0.1144 5040 +5042 2 -40.36849835586693 -974.4587232892862 72.919 0.1144 5041 +5043 2 -44.79945071896819 -985.2996615123336 73.3916 0.1144 5031 +5044 2 -45.446283583731 -986.19823373818 73.6333 0.1144 5043 +5045 2 -45.960189783858226 -987.2191071571066 73.7386 0.1144 5044 +5046 2 -46.171429518023444 -988.3412874878511 73.8357 0.1144 5045 +5047 2 -46.283269019340366 -989.4789013441068 73.9108 0.1144 5046 +5048 2 -46.26764469883861 -990.6227980442545 73.9348 0.1144 5047 +5049 2 -46.21771118215662 -991.7657952681847 73.9119 0.1144 5048 +5050 2 -45.99712028157623 -992.8869994354001 74.0407 0.1144 5049 +5051 2 -41.94161644649719 -986.0057910267221 68.4494 0.1144 5025 +5052 2 -42.02050140926778 -984.8659169053171 68.3046 0.1144 5051 +5053 2 -41.992292158837415 -983.7232482358463 68.1864 0.1144 5052 +5054 2 -41.991427404145384 -982.5800151615351 68.1027 0.1144 5053 +5055 2 -42.07347621615415 -981.4393860182778 68.0532 0.1144 5054 +5056 2 -42.57993338454622 -980.4145469740448 68.0509 0.1144 5055 +5057 2 -43.17311997561427 -979.4363275312933 68.0918 0.1144 5056 +5058 2 -43.68087536276178 -978.4135776562882 68.222 0.1144 5057 +5059 2 -43.696808414858424 -977.2712792942782 68.3609 0.1144 5058 +5060 2 -43.64239500277435 -976.129993343876 68.4902 0.1144 5059 +5061 2 -43.8204974063612 -975.001336148871 68.6182 0.1144 5060 +5062 2 -43.98286885818965 -973.8698176330564 68.7529 0.1144 5061 +5063 2 -44.04082221654829 -972.7290502386 68.9018 0.1144 5062 +5064 2 -44.39835927660911 -971.6449536097505 69.106 0.1144 5063 +5065 2 -44.83812535368551 -970.5953198414994 69.3795 0.1144 5064 +5066 2 -45.28686311446904 -969.5135215136919 69.988 0.1144 5065 +5067 2 -45.53271726123572 -968.421110025965 70.4721 0.1144 5066 +5068 2 -45.58767174012232 -967.2961064103041 70.9402 0.1144 5067 +5069 2 -45.528892474153565 -966.1749087480285 71.456 0.1144 5068 +5070 2 -45.082599766007064 -965.2143764900303 72.0712 0.1144 5069 +5071 2 -44.07833804746991 -964.8602507486886 72.6009 0.1144 5070 +5072 2 -42.96223392683896 -964.6966724741208 73.0688 0.1144 5071 +5073 2 -41.84968619481782 -964.582115134877 73.6406 0.1144 5072 +5074 2 -40.74741415997744 -964.5249346206365 74.3725 0.1144 5073 +5075 2 -39.648680075955724 -964.3921053595193 75.0803 0.1144 5074 +5076 2 -39.17236634389204 -963.5394216440377 75.9808 0.1144 5075 +5077 2 -39.400582469167745 -962.4428592289586 76.5461 0.1144 5076 +5078 2 -39.57025397690404 -961.3279180827708 77.0137 0.1144 5077 +5079 2 -39.68103620688581 -960.1995511045584 77.3951 0.1144 5078 +5080 2 -39.82500841220471 -959.0740954039217 77.7126 0.1144 5079 +5081 2 -40.017226299683216 -957.9662048435623 78.0352 0.1144 5080 +5082 2 -39.812088410899094 -956.8491837262216 78.3504 0.1144 5081 +5083 2 -39.786857808628554 -955.7150366560808 78.6246 0.1144 5082 +5084 2 -39.75524544324389 -954.757028942983 78.939 0.1144 5083 +5085 2 -38.64486697111883 -954.5297109088518 79.2414 0.1144 5084 +5086 2 -37.57382586683323 -954.1574268735635 79.4618 0.1144 5085 +5087 2 -36.45582629556924 -953.9642773753669 79.616 0.1144 5086 +5088 2 -35.45963065836651 -953.4352823447492 79.7384 0.1144 5087 +5089 2 -34.70479007603893 -952.5791325533742 79.8756 0.1144 5088 +5090 2 -34.13165952678011 -951.6064869943414 79.954 0.1144 5089 +5091 2 -33.9867145504393 -950.4900768529357 79.9702 0.1144 5090 +5092 2 -34.08118670313951 -949.3664744711457 79.9495 0.1144 5091 +5093 2 -33.83546428551139 -948.2499787284422 79.9414 0.1144 5092 +5094 2 -33.54010897999882 -947.1445277329179 79.9557 0.1144 5093 +5095 2 -33.15613158900862 -946.0826159836618 80.0078 0.1144 5094 +5096 2 -32.423065927378275 -945.2238868845051 80.1284 0.1144 5095 +5097 2 -31.499449999164682 -944.5527519374563 80.3177 0.1144 5096 +5098 2 -30.576013068863432 -943.8857179609935 80.5451 0.1144 5097 +5099 2 -29.611923830686095 -943.278327591601 80.7825 0.1144 5098 +5100 2 -28.585469318586377 -942.7897757370451 81.0121 0.1144 5099 +5101 2 -27.500923297896207 -942.4373619617679 81.195 0.1144 5100 +5102 2 -26.40478494116374 -942.1167930878892 81.3302 0.1144 5101 +5103 2 -25.383365419414645 -941.6353270552454 81.4335 0.1144 5102 +5104 2 -24.442234307689915 -940.9949787667774 81.5228 0.1144 5103 +5105 2 -23.432407814519706 -940.4576052061218 81.6175 0.1144 5104 +5106 2 -22.560392727252406 -939.755037104385 81.7284 0.1144 5105 +5107 2 -21.769668227590984 -938.9440895748646 81.8994 0.1144 5106 +5108 2 -20.7811453628033 -938.4049034420756 82.1764 0.1144 5107 +5109 2 -19.679853587385338 -938.1778886289097 82.5037 0.1144 5108 +5110 2 -18.55446355850779 -938.2501721187464 82.8344 0.1144 5109 +5111 2 -17.42941680477216 -938.3656279627253 83.2048 0.1144 5110 +5112 2 -16.304095939999712 -938.3306679669028 83.6735 0.1144 5111 +5113 2 -15.187003356181634 -938.2320979451996 84.2299 0.1144 5112 +5114 2 -14.075557715274442 -938.1331253868391 84.8453 0.1144 5113 +5115 2 -12.968265410766008 -938.0338886377164 85.4997 0.1144 5114 +5116 2 -11.858370560276796 -937.9694402020685 86.161 0.1144 5115 +5117 2 -10.746749638565774 -938.0260067682929 86.7787 0.1144 5116 +5118 2 -9.638882304427511 -938.1963922722224 87.3253 0.1144 5117 +5119 2 -8.530873617506984 -938.3975620256862 87.8116 0.1144 5118 +5120 2 -7.4188491528502425 -938.598963142875 88.2552 0.1144 5119 +5121 2 -6.306739495343749 -938.8003118942512 88.6855 0.1144 5120 +5122 2 -5.196771372877947 -939.0002772340221 89.1526 0.1144 5121 +5123 2 -4.076634362466564 -939.0705074832509 89.6448 0.1144 5122 +5124 2 -2.9583849126752284 -938.9390640427855 90.0928 0.1144 5123 +5125 2 -1.8305963674494308 -938.8447185221848 90.4599 0.1144 5124 +5126 2 -0.7047826709881804 -938.6925443756938 90.7402 0.1144 5125 +5127 2 0.3851217923302954 -938.3664168533372 90.9432 0.1144 5126 +5128 2 1.3607510007371104 -937.7907861924934 91.0958 0.1144 5127 +5129 2 2.1700154071537554 -936.9926231010721 91.2257 0.1144 5128 +5130 2 2.8192064499997116 -936.0564480961245 91.3811 0.1144 5129 +5131 2 3.3842672008156285 -935.0685733429866 91.6342 0.1144 5130 +5132 2 3.996251798051702 -934.1110156252767 91.943 0.1144 5131 +5133 2 4.636345217627621 -933.1709248508216 92.2536 0.1144 5132 +5134 2 5.094781662484195 -932.1384861281716 92.5893 0.1144 5133 +5135 2 5.404534464916139 -931.0497743704572 92.9611 0.1144 5134 +5136 2 5.585836367415368 -929.9378967692122 93.4198 0.1144 5135 +5137 2 5.664141925716734 -928.8223039180613 93.9966 0.1144 5136 +5138 2 5.715885326539791 -927.7135302890138 94.6806 0.1144 5137 +5139 2 5.7712865092743755 -926.6131899648633 95.4313 0.1144 5138 +5140 2 5.911604447855325 -925.5131227277761 96.1139 0.1144 5139 +5141 2 6.408155332055998 -924.5579687352705 96.9545 0.1144 5140 +5142 2 6.694149137288122 -923.5791741738998 98.0857 0.1144 5141 +5143 2 6.500253827292198 -922.509993899689 98.9624 0.1144 5142 +5144 2 6.276280025384722 -921.4443947320565 99.8035 0.1144 5143 +5145 2 5.924277996818063 -920.3998572162702 100.5528 0.1144 5144 +5146 2 5.599983970443674 -919.3369971293077 101.19 0.1144 5145 +5147 2 5.418054091782153 -918.2240739876441 101.6571 0.1144 5146 +5148 2 5.312127854238753 -917.0927221581057 101.9701 0.1144 5147 +5149 2 5.307020497232429 -915.9571509296464 102.1594 0.1144 5148 +5150 2 5.529711214657681 -914.8360312507662 102.2132 0.1144 5149 +5151 2 5.684003976884583 -913.7084757561122 102.181 0.1144 5150 +5152 2 5.646064640365722 -912.5676138640567 102.1261 0.1144 5151 +5153 2 5.810210047715032 -911.4408102896721 102.0569 0.1144 5152 +5154 2 6.161484500338759 -910.3520478826549 101.9847 0.1144 5153 +5155 2 6.514985680852988 -909.2646165214301 101.9396 0.1144 5154 +5156 2 6.893298999203068 -908.1847056532753 101.9539 0.1144 5155 +5157 2 7.310957196620649 -907.1208721136038 102.065 0.1144 5156 +5158 2 7.642719385057887 -906.0374126818191 102.3313 0.1144 5157 +5159 2 7.996289037140684 -905.0331621796404 102.8471 0.1144 5158 +5160 2 8.883260231449754 -904.407441035307 103.6367 0.1144 5159 +5161 2 9.779914975558626 -903.8562908562567 104.664 0.1144 5160 +5162 2 10.309110637594728 -903.0153545439939 105.9058 0.1144 5161 +5163 2 10.682204172963594 -902.0340826836689 107.0101 0.1144 5162 +5164 2 11.080006831052799 -901.018724473372 107.8426 0.1144 5163 +5165 2 11.505520592917435 -899.9917324877831 108.5059 0.1144 5164 +5166 2 11.973539981504757 -898.9748840566458 109.0807 0.1144 5165 +5167 2 12.482554953109997 -897.9745068784366 109.6197 0.1144 5166 +5168 2 13.015318309103748 -896.9864123806733 110.1626 0.1144 5167 +5169 2 13.549991836413199 -896.0037170722513 110.7411 0.1144 5168 +5170 2 14.319389090708142 -895.2367499770749 111.4464 0.1144 5169 +5171 2 15.375097683999456 -895.1236766555054 112.2173 0.1144 5170 +5172 2 16.421515639940537 -895.4190473742372 113.0307 0.1144 5171 +5173 2 17.266416370415186 -896.098870701024 113.8449 0.1144 5172 +5174 2 17.981897951397144 -896.9307858873715 114.6258 0.1144 5173 +5175 2 18.83099104847375 -897.6241134380261 115.4054 0.1144 5174 +5176 2 19.88893907205471 -897.8815257908789 116.1838 0.1144 5175 +5177 2 20.989334863601016 -897.9437009623474 116.9244 0.1144 5176 +5178 2 21.605794533003518 -897.0612159675741 117.6563 0.1144 5177 +5179 2 21.891005591527886 -895.9742079721593 118.1804 0.1144 5178 +5180 2 22.17571489239893 -894.8819914991113 118.6349 0.1144 5179 +5181 2 22.460688384032125 -893.7856216896646 119.0378 0.1144 5180 +5182 2 22.7113612916977 -892.6861551174749 119.4113 0.1144 5181 +5183 2 22.519493888815674 -891.6989512886171 119.8168 0.1144 5182 +5184 2 21.445281033300688 -891.8825585897962 120.2975 0.1144 5183 +5185 2 20.468212945892788 -892.4535567969467 120.706 0.1144 5184 +5186 2 19.488342106654272 -893.0222868369569 121.1025 0.1144 5185 +5187 2 18.455735099870594 -893.4744762547248 121.399 0.1144 5186 +5188 2 17.472632632361837 -893.9833330404496 121.6152 0.1144 5187 +5189 2 16.61836168328412 -894.73004585376 121.9756 0.1144 5188 +5190 2 15.768497334804266 -895.4686505309608 122.4703 0.1144 5189 +5191 2 14.90385897877809 -896.1329960760563 123.2711 0.1144 5190 +5192 2 14.044510593811594 -896.7404470150263 124.3701 0.1144 5191 +5193 2 13.535105012129065 -896.8468577915045 124.9998 0.1144 5192 +5194 2 12.435102843253844 -897.075779674403 125.4912 0.1144 5193 +5195 2 11.320050478185777 -897.3086703851583 125.76 0.1144 5194 +5196 2 10.201749071029667 -897.540858439874 125.8785 0.1144 5195 +5197 2 9.082149445118148 -897.7751356638175 125.8925 0.1144 5196 +5198 2 7.961973795266488 -898.0084757664135 125.8704 0.1144 5197 +5199 2 6.841798145414856 -898.2418158690093 125.8734 0.1144 5198 +5200 2 5.725271665262198 -898.4875855154628 125.9527 0.1144 5199 +5201 2 4.611388477803473 -898.7399470511549 126.1252 0.1144 5200 +5202 2 3.5011927977104165 -898.9939155371974 126.3716 0.1144 5201 +5203 2 2.3908673839347045 -899.2453813907914 126.6706 0.1144 5202 +5204 2 1.2836206265474743 -899.4976546320506 127.0021 0.1144 5203 +5205 2 0.1773438175450508 -899.7492142907072 127.3488 0.1144 5204 +5206 2 -0.9299029398422363 -900.0014875319664 127.6929 0.1144 5205 +5207 2 -2.0376928941325048 -900.2526860932153 128.0272 0.1144 5206 +5208 2 -3.145876772867524 -900.5055353584146 128.345 0.1144 5207 +5209 2 -4.255711355552933 -900.7579906991691 128.6407 0.1144 5208 +5210 2 -5.364832355635713 -901.0114159883085 128.9086 0.1144 5209 +5211 2 -6.4772547636193 -901.2640534285584 129.1438 0.1144 5210 +5212 2 -7.608415283609247 -901.4182229392148 129.299 0.1144 5211 +5213 2 -8.751594607034633 -901.4655686305988 129.3446 0.1144 5212 +5214 2 -9.894051735644723 -901.5098880314068 129.3099 0.1144 5213 +5215 2 -11.037413158565556 -901.5546458974926 129.2281 0.1144 5214 +5216 2 -12.179922652988324 -901.5988801054509 129.1346 0.1144 5215 +5217 2 -13.322294588748662 -901.6431471404462 129.0671 0.1144 5216 +5218 2 -14.465656011669438 -901.687905006532 129.0626 0.1144 5217 +5219 2 -15.608113140279528 -901.73222440734 129.1486 0.1144 5218 +5220 2 -15.747006423669063 -901.8228806030978 128.7423 0.1144 5219 +5221 2 -16.49051104771459 -902.293392201279 126.9817 0.1144 5220 +5222 2 -17.334951281807037 -902.8420274362447 125.6998 0.1144 5221 +5223 2 -18.169416648322596 -903.5228058966018 124.7935 0.1144 5222 +5224 2 -18.150357481106965 -904.0911863573365 123.3669 0.1144 5223 +5225 2 -17.975866809730718 -903.7502264541181 121.2938 0.1144 5224 +5226 2 -18.288843303636128 -902.8455644817424 119.803 0.1144 5225 +5227 2 -18.54849288537352 -902.093350665927 117.7921 0.1144 5226 +5228 2 -16.381377498256967 -900.7625728035763 129.7856 0.1144 5219 +5229 2 -17.213725846894107 -900.0441627211575 130.5178 0.1144 5228 +5230 2 -18.149138620534785 -899.555666914717 131.5748 0.1144 5229 +5231 2 -19.119489281882153 -899.3597960286143 132.9404 0.1144 5230 +5232 2 -20.12475759962399 -899.4808354409745 134.2289 0.1144 5231 +5233 2 -21.086585969104817 -899.3120058296445 135.5808 0.1144 5232 +5234 2 -21.801062951480702 -898.8313806101074 137.4243 0.1144 5233 +5235 2 14.048649209527724 -896.7057407928182 124.9562 0.1144 5192 +5236 2 14.139153652476324 -896.0337438018975 126.6404 0.1144 5235 +5237 2 14.327714864170247 -894.933485255262 127.1911 0.1144 5236 +5238 2 14.843163650950657 -893.9829137596834 127.6192 0.1144 5237 +5239 2 15.80613166768623 -893.4917152267617 128.2568 0.1144 5238 +5240 2 16.866001090919525 -893.4659980011112 129.1758 0.1144 5239 +5241 2 17.834614452708507 -893.8293826531863 130.319 0.1144 5240 +5242 2 18.762979049567264 -894.2779582491557 131.5322 0.1144 5241 +5243 2 19.549425865981846 -894.9654229063938 132.6623 0.1144 5242 +5244 2 19.268138496641143 -896.0152744129647 133.4962 0.1144 5243 +5245 2 18.875792779976422 -896.8405256223639 135.1806 0.1144 5244 +5246 2 -43.961849025506524 -970.725413833187 69.3591 0.1144 5065 +5247 2 -42.82782548588216 -970.7615193947775 69.0259 0.1144 5246 +5248 2 -41.69219609689199 -970.6690450152893 68.8142 0.1144 5247 +5249 2 -40.72079208212412 -970.0800476892401 68.6969 0.1144 5248 +5250 2 -39.763571330279945 -969.4526987654036 68.6526 0.1144 5249 +5251 2 -38.65918038307257 -969.1740095375413 68.7786 0.1144 5250 +5252 2 -37.57123365647453 -969.0236305493661 69.5534 0.1144 5251 +5253 2 -38.303325687481504 -989.3731856862269 67.6558 0.1144 5021 +5254 2 -37.81762993973658 -988.3413637342301 67.4358 0.1144 5253 +5255 2 -37.348679632967645 -987.3105616873843 67.2064 0.1144 5254 +5256 2 -36.52697026947419 -986.5677824658472 67.006 0.1144 5255 +5257 2 -35.395980229879996 -986.4393067469787 66.848 0.1144 5256 +5258 2 -34.25517959993857 -986.4820456370575 66.7932 0.1144 5257 +5259 2 -33.115986926635856 -986.3779905406265 66.8136 0.1144 5258 +5260 2 -31.979203773255534 -986.2459539464918 66.8623 0.1144 5259 +5261 2 -30.869368498033424 -986.0175612323503 66.9455 0.1144 5260 +5262 2 -29.856107761696762 -985.4901669489168 67.062 0.1144 5261 +5263 2 -28.840405370937077 -984.9665539779114 67.1989 0.1144 5262 +5264 2 -27.80508459929223 -984.4859336705994 67.3453 0.1144 5263 +5265 2 -26.734992235453916 -984.0859440421651 67.5004 0.1144 5264 +5266 2 -25.65878950871806 -983.7023880215291 67.6584 0.1144 5265 +5267 2 -24.581958392229268 -983.3198543150905 67.8096 0.1144 5266 +5268 2 -23.507673661788942 -982.9333689105243 67.9465 0.1144 5267 +5269 2 -22.446177856103958 -982.5106093636031 68.0607 0.1144 5268 +5270 2 -21.474470620370823 -981.9306987342609 68.1369 0.1144 5269 +5271 2 -20.84210951881414 -981.0196586268902 68.1576 0.1144 5270 +5272 2 -20.64717986193054 -979.8927136997233 68.1265 0.1144 5271 +5273 2 -20.503712794794012 -978.7584310715184 68.0436 0.1144 5272 +5274 2 -20.350839372792507 -977.6264658746835 67.9048 0.1144 5273 +5275 2 -20.15042223213453 -976.5042472062725 67.6976 0.1144 5274 +5276 2 -19.848959665307518 -975.408541022662 67.4022 0.1144 5275 +5277 2 -19.351883406469568 -974.4128025013123 66.978 0.1144 5276 +5278 2 -18.527732388553176 -973.6738045922034 66.3664 0.1144 5277 +5279 2 -17.53172636207401 -973.2711104089611 65.5696 0.1144 5278 +5280 2 -16.71602865504022 -973.7178066600534 64.7408 0.1144 5279 +5281 2 -16.314720292449778 -974.7333280523022 64.052 0.1144 5280 +5282 2 -16.096356812296506 -975.829138547112 63.4628 0.1144 5281 +5283 2 -16.167034044319394 -976.9267784420109 62.9087 0.1144 5282 +5284 2 -16.978520467207744 -977.2952852607643 62.3759 0.1144 5283 +5285 2 -18.069931961637195 -977.0248711342338 61.9623 0.1144 5284 +5286 2 -19.150765230457125 -976.6821042527939 61.5997 0.1144 5285 +5287 2 -20.256344574590884 -976.4323715680591 61.2391 0.1144 5286 +5288 2 -21.37584809306773 -976.2516487910831 60.8644 0.1144 5287 +5289 2 -22.444072820117725 -975.9011317693582 60.4212 0.1144 5288 +5290 2 -23.46225539863059 -975.4286503127772 59.8951 0.1144 5289 +5291 2 -24.507372442681145 -975.0370494136016 59.29 0.1144 5290 +5292 2 -25.18932979328048 -975.7516780597973 58.5586 0.1144 5291 +5293 2 -25.719645984221756 -976.732868835144 57.9376 0.1144 5292 +5294 2 -26.233376288019713 -977.7429524876004 57.5551 0.1144 5293 +5295 2 -26.327577767845696 -978.876415416504 57.2855 0.1144 5294 +5296 2 -26.43019301379303 -980.0137588788315 57.1245 0.1144 5295 +5297 2 -26.78212868320668 -981.1016365303136 57.2132 0.1144 5296 +5298 2 -53.29979617254534 -992.8101216007602 73.5003 0.1144 4911 +5299 2 -53.305352921392256 -991.6694270875174 73.3538 0.1144 5298 +5300 2 -53.81643712754419 -990.6609309476031 73.2332 0.1144 5299 +5301 2 -53.94681681456228 -989.5379193104359 73.5669 0.1144 5300 +5302 2 -54.139971823388464 -988.4306047740166 74.0905 0.1144 5301 +5303 2 -54.37099380207789 -987.3250853959131 74.5251 0.1144 5302 +5304 2 -54.45669109124907 -986.1960893354112 74.8684 0.1144 5303 +5305 2 -54.44353203701161 -985.0573894937974 75.1332 0.1144 5304 +5306 2 -54.736392216161306 -983.9669911925017 75.3136 0.1144 5305 +5307 2 -55.17054727894691 -982.9112087236864 75.4393 0.1144 5306 +5308 2 -55.628494574417374 -981.8646512027774 75.6224 0.1144 5307 +5309 2 -55.848112425029825 -980.7494222488435 75.8038 0.1144 5308 +5310 2 -56.12755977632759 -979.6415063549903 75.9293 0.1144 5309 +5311 2 -56.179185436209764 -978.5022490042386 75.9993 0.1144 5310 +5312 2 -56.02568362445541 -977.3713061216013 76.0178 0.1144 5311 +5313 2 -56.269937024037944 -976.2618295347404 75.9814 0.1144 5312 +5314 2 -56.64128703956155 -975.1835236106305 75.7826 0.1144 5313 +5315 2 -56.85725331142851 -974.0633503698253 75.6036 0.1144 5314 +5316 2 -56.61291430540561 -972.9489961621625 75.4785 0.1144 5315 +5317 2 -56.71537106369894 -971.8101122204547 75.4051 0.1144 5316 +5318 2 -57.03464171882217 -970.7118846944942 75.3791 0.1144 5317 +5319 2 -57.33778749774228 -969.6091451437738 75.4538 0.1144 5318 +5320 2 -57.64837709439891 -968.5095725438749 75.5692 0.1144 5319 +5321 2 -58.38169171155073 -968.2123717325175 75.4636 0.1144 5320 +5322 2 -59.489599792402174 -968.0701826528241 75.3404 0.1144 5321 +5323 2 -60.53996565805818 -968.4432569460483 75.2604 0.1144 5322 +5324 2 -61.4765956715859 -969.0955111202466 75.2153 0.1144 5323 +5325 2 -62.535457803077946 -969.3783773014916 75.1246 0.1144 5324 +5326 2 -63.47561535027671 -968.8296471433581 75.0072 0.1144 5325 +5327 2 -64.49399164738452 -968.326296244393 74.9196 0.1144 5326 +5328 2 -65.61993167417171 -968.1899087960023 74.9692 0.1144 5327 +5329 2 -66.26994551790202 -969.0701294177551 75.075 0.1144 5328 +5330 2 -66.83091259657581 -969.2847659399135 75.903 0.1144 5329 +5331 2 -67.80357378161222 -969.554908252637 77.1949 0.1144 5330 +5332 2 -68.8674534719521 -969.5697090797177 78.0704 0.1144 5331 +5333 2 -69.97519727557395 -969.3884486164683 78.6033 0.1144 5332 +5334 2 -71.08568836363054 -969.2116939748124 79.1109 0.1144 5333 +5335 2 -72.20424755130512 -969.1942542595401 79.613 0.1144 5334 +5336 2 -73.32143083860262 -969.3035616819008 80.1458 0.1144 5335 +5337 2 -74.43817945474223 -969.3830219760747 80.7265 0.1144 5336 +5338 2 -75.47093682926189 -969.0724463727585 81.2759 0.1144 5337 +5339 2 -76.43151153279828 -968.4798059683595 81.7225 0.1144 5338 +5340 2 -77.42294646866566 -967.9330147303706 82.0904 0.1144 5339 +5341 2 -78.48236489022278 -967.5288412180452 82.4029 0.1144 5340 +5342 2 -79.59274406686251 -967.3129299999833 82.724 0.1144 5341 +5343 2 -80.71812178410389 -967.2929907538459 83.174 0.1144 5342 +5344 2 -81.83590812766036 -967.3140463981895 83.7581 0.1144 5343 +5345 2 -82.29138563540451 -966.4834772800908 84.3371 0.1144 5344 +5346 2 -82.24650761933145 -965.3614338924834 84.7616 0.1144 5345 +5347 2 -82.31812466069462 -964.2291825867273 85.0592 0.1144 5346 +5348 2 -82.42378670747595 -963.0936774207902 85.2524 0.1144 5347 +5349 2 -82.53042962920506 -961.9546668469828 85.3656 0.1144 5348 +5350 2 -82.6364441611814 -960.8166785873731 85.4392 0.1144 5349 +5351 2 -82.74300189006073 -959.6776156477528 85.5123 0.1144 5350 +5352 2 -82.88559378535751 -958.5433296161913 85.612 0.1144 5351 +5353 2 -83.13991475659492 -957.4306508424255 85.7598 0.1144 5352 +5354 2 -83.43772232419903 -956.3299121665002 85.9648 0.1144 5353 +5355 2 -83.74113229388124 -955.2313259521786 86.2282 0.1144 5354 +5356 2 -84.04361375442829 -954.1361599528775 86.5491 0.1144 5355 +5357 2 -84.34497599413231 -953.0430057549345 86.9254 0.1144 5356 +5358 2 -84.65560082687253 -951.9609445444269 87.4196 0.1144 5357 +5359 2 -84.97018527741659 -950.9094885855413 88.1989 0.1144 5358 +5360 2 -85.08206580439267 -949.8274578107093 89.0596 0.1144 5359 +5361 2 -84.97485264829908 -948.7302494853852 89.8013 0.1144 5360 +5362 2 -84.64561050612798 -947.7060903855288 90.678 0.1144 5361 +5363 2 -83.82829543159627 -947.0237635438003 91.7039 0.1144 5362 +5364 2 -82.98478480762341 -946.3468156601011 92.6117 0.1144 5363 +5365 2 -82.15678849236659 -945.633742906505 93.4438 0.1144 5364 +5366 2 -81.31417114144523 -944.9358634183939 94.2589 0.1144 5365 +5367 2 -80.43081628979809 -944.2975751715403 95.1012 0.1144 5366 +5368 2 -79.5215708261851 -943.6970156433507 95.954 0.1144 5367 +5369 2 -78.67399756929291 -943.031069351071 96.8005 0.1144 5368 +5370 2 -78.40260628492294 -942.1028033596826 97.6676 0.1144 5369 +5371 2 -78.8988928665446 -941.1227733453962 98.4116 0.1144 5370 +5372 2 -79.53741076061331 -940.2019978141434 98.9366 0.1144 5371 +5373 2 -80.32875532246774 -939.395232938592 99.0864 0.1144 5372 +5374 2 -81.21972255493108 -938.6994729435675 98.7078 0.1144 5373 +5375 2 -82.13117371647573 -938.0511659637199 98.119 0.1144 5374 +5376 2 -83.09727424145305 -937.4646218940725 97.6839 0.1144 5375 +5377 2 -84.07299294624474 -936.8799989223038 97.414 0.1144 5376 +5378 2 -85.05365593790768 -936.2917243717898 97.3353 0.1144 5377 +5379 2 -86.04180108497388 -935.7174393656042 97.4753 0.1144 5378 +5380 2 -87.04753050264512 -935.1955157328468 97.8622 0.1144 5379 +5381 2 -88.04305168841594 -934.6835159099155 98.4264 0.1144 5380 +5382 2 -89.03046473807714 -934.1759226875822 99.1063 0.1144 5381 +5383 2 -90.00927882053847 -933.6737255530073 99.8757 0.1144 5382 +5384 2 -91.00548965817615 -933.2413816424762 100.7507 0.1144 5383 +5385 2 -92.03418060565673 -932.9725590530767 101.7803 0.1144 5384 +5386 2 -92.98009492957354 -932.5347708145309 102.9302 0.1144 5385 +5387 2 -93.90858926011495 -932.0836925861132 104.1384 0.1144 5386 +5388 2 -94.8349944214284 -931.6339125764509 105.3615 0.1144 5387 +5389 2 -95.81113509497888 -931.4482913614984 106.7438 0.1144 5388 +5390 2 -96.73658802349885 -931.3497161257967 108.3222 0.1144 5389 +5391 2 -97.45090002413048 -931.2732487748964 110.5003 0.1144 5390 +5392 2 -66.68329982806372 -969.791500219958 75.0184 0.1144 5329 +5393 2 -67.250320014425 -970.7805793867889 74.8101 0.1144 5392 +5394 2 -68.0764681130168 -971.555666929711 74.4856 0.1144 5393 +5395 2 -68.81460779520106 -972.4082418176738 74.0267 0.1144 5394 +5396 2 -69.42580213450117 -973.3451242967541 73.4387 0.1144 5395 +5397 2 -70.02829587655907 -974.280884453408 72.7944 0.1144 5396 +5398 2 -70.62870044938893 -975.2179428288175 72.1462 0.1144 5397 +5399 2 -71.16556787755187 -976.1991695327845 71.5616 0.1144 5398 +5400 2 -71.64040269412288 -977.2202072289407 71.0682 0.1144 5399 +5401 2 -72.11581043305094 -978.2469965996332 70.6513 0.1144 5400 +5402 2 -72.59353870493197 -979.2765035293066 70.303 0.1144 5401 +5403 2 -73.07202199866535 -980.3091743082183 70.0157 0.1144 5402 +5404 2 -73.55237953509433 -981.3429971350101 69.7852 0.1144 5403 +5405 2 -74.26982926994438 -981.8121660682992 68.4426 0.1144 5404 +5406 2 -75.15515897035613 -982.3926256892626 67.4512 0.1144 5405 +5407 2 -76.0774592659964 -983.0025008688377 66.7285 0.1144 5406 +5408 2 -76.86516747236797 -983.7700415789078 66.0509 0.1144 5407 +5409 2 -77.58789275936866 -984.6238232896101 65.4685 0.1144 5408 +5410 2 -78.36743356811516 -985.4332960115092 64.9684 0.1144 5409 +5411 2 -79.35355991715318 -985.9240567716898 64.5436 0.1144 5410 +5412 2 -80.26748478433873 -986.5408740113483 64.15 0.1144 5411 +5413 2 -81.09447860826236 -987.3298628041662 64.0469 0.1144 5412 +5414 2 -81.97028593452072 -988.030653569853 63.9422 0.1144 5413 +5415 2 -83.07501195310522 -988.2476891057969 63.4712 0.1144 5414 +5416 2 -84.1125550429955 -988.5914008987587 62.8309 0.1144 5415 +5417 2 -85.05722031141912 -989.1868518628473 62.2278 0.1144 5416 +5418 2 -85.97768711107713 -989.8237714187784 61.6504 0.1144 5417 +5419 2 -86.90042207787536 -990.46349372654 61.1108 0.1144 5418 +5420 2 -87.80461954696491 -991.1333743031297 60.6245 0.1144 5419 +5421 2 -88.61678120281113 -991.909255205571 60.1664 0.1144 5420 +5422 2 -89.33562285480477 -992.7781394782788 59.6963 0.1144 5421 +5423 2 -89.96966989639543 -993.7062970505962 59.2256 0.1144 5422 +5424 2 -90.1227938894609 -994.7524935630869 58.8328 0.1144 5423 +5425 2 -89.87938070458057 -995.8651863649987 58.5586 0.1144 5424 +5426 2 -89.80945029578788 -996.9904925090885 58.333 0.1144 5425 +5427 2 -89.91064930309295 -998.1255568777128 58.1031 0.1144 5426 +5428 2 -90.01272445372032 -999.2572862241665 57.7912 0.1144 5427 +5429 2 -90.45576432565909 -1000.2492725607016 57.395 0.1144 5428 +5430 2 -91.18022009352657 -1001.1176167380895 56.9878 0.1144 5429 +5431 2 -91.7204662974602 -1002.0956381535684 56.6314 0.1144 5430 +5432 2 -92.03823894156884 -1003.1865797407564 56.3746 0.1144 5431 +5433 2 -92.3222284566711 -1004.2931437539576 56.1957 0.1144 5432 +5434 2 -92.6871837220285 -1005.3728256674339 56.0283 0.1144 5433 +5435 2 -93.09914261072245 -1006.4371469366125 55.8289 0.1144 5434 +5436 2 -93.51235827892202 -1007.4994235773961 55.587 0.1144 5435 +5437 2 -94.00883828250758 -1008.520384598219 55.2969 0.1144 5436 +5438 2 -94.57844939575011 -1009.5029570686611 54.9646 0.1144 5437 +5439 2 -95.16168895591352 -1010.476534238412 54.607 0.1144 5438 +5440 2 -95.75549784538518 -1011.4417007436247 54.238 0.1144 5439 +5441 2 -96.56271280531365 -1012.2038593940825 53.8594 0.1144 5440 +5442 2 -97.62692786880439 -1012.4497542875624 53.4926 0.1144 5441 +5443 2 -98.75646402462618 -1012.5410656926075 53.1286 0.1144 5442 +5444 2 -99.84325218642607 -1012.8331153825089 52.733 0.1144 5443 +5445 2 -100.72767009898391 -1013.5002284433516 52.3426 0.1144 5444 +5446 2 -101.389067839479 -1014.41444401906 51.994 0.1144 5445 +5447 2 -101.98737162398137 -1015.3810822303109 51.6799 0.1144 5446 +5448 2 -102.5390188544088 -1016.3755020175042 51.3775 0.1144 5447 +5449 2 -102.8026175529557 -1017.4627242469147 51.0398 0.1144 5448 +5450 2 -102.77661452015764 -1018.5908509651009 50.65 0.1144 5449 +5451 2 -102.84257031151776 -1019.7177510376832 50.26 0.1144 5450 +5452 2 -103.12862158474434 -1020.8079752481489 49.8585 0.1144 5451 +5453 2 -103.76547758133174 -1021.7204870615576 49.4295 0.1144 5452 +5454 2 -104.47647838956098 -1022.591242475378 48.9121 0.1144 5453 +5455 2 -104.69698792621696 -1023.5606567079142 47.8176 0.1144 5454 +5456 2 -105.21462648829436 -1024.4509493109667 46.655 0.1144 5455 +5457 2 -105.95908325614397 -1025.1798142784355 45.8248 0.1144 5456 +5458 2 -106.98960830315423 -1025.469442829315 44.9277 0.1144 5457 +5459 2 -108.00392157657973 -1025.2939039067 43.9443 0.1144 5458 +5460 2 -108.60684817915359 -1024.5030246416354 42.975 0.1144 5459 +5461 2 -108.86351570937444 -1023.4562302640569 42.0535 0.1144 5460 +5462 2 -108.72718952309782 -1022.4109684638676 41.1678 0.1144 5461 +5463 2 -108.39229802896935 -1021.3698380699396 40.3421 0.1144 5462 +5464 2 -108.06881135545441 -1020.3143546252289 39.6077 0.1144 5463 +5465 2 -107.81359359599179 -1019.2308753705798 38.9752 0.1144 5464 +5466 2 -108.08124799694957 -1018.2231140388907 38.3648 0.1144 5465 +5467 2 -108.98176734670517 -1017.6298298315198 37.798 0.1144 5466 +5468 2 -110.04704866167899 -1017.2883025998564 37.247 0.1144 5467 +5469 2 -111.14447021471051 -1017.3531832976157 36.6806 0.1144 5468 +5470 2 -112.21043558193236 -1017.6901850867558 36.1178 0.1144 5469 +5471 2 -113.25152654291597 -1018.1045106362436 35.5558 0.1144 5470 +5472 2 -114.11686686244522 -1018.7961678500403 35.0045 0.1144 5471 +5473 2 -114.82305311748584 -1019.6680722101577 34.4809 0.1144 5472 +5474 2 -115.50135098734864 -1020.565678281739 33.9766 0.1144 5473 +5475 2 -116.06266945593967 -1021.5378713473481 33.474 0.1144 5474 +5476 2 -116.49282118212724 -1022.5769872467828 32.972 0.1144 5475 +5477 2 -116.8957324043173 -1023.6277652618903 32.475 0.1144 5476 +5478 2 -117.29842869997498 -1024.6809935436336 31.9897 0.1144 5477 +5479 2 -118.05828375725227 -1025.4917473545588 31.5286 0.1144 5478 +5480 2 -119.1327937372408 -1025.2860679853816 31.227 0.1144 5479 +5481 2 -120.2635726444222 -1025.3862425483885 30.9663 0.1144 5480 +5482 2 -121.2887703770163 -1025.8768390313396 30.6975 0.1144 5481 +5483 2 -122.07953321434434 -1026.6986091543672 30.5088 0.1144 5482 +5484 2 -122.85595092056579 -1027.537033322355 30.3783 0.1144 5483 +5485 2 -123.44916975795121 -1028.5140447352724 30.2781 0.1144 5484 +5486 2 -123.90359283411803 -1029.5640886523765 30.1972 0.1144 5485 +5487 2 -124.05267401712851 -1030.6978311852613 30.14 0.1144 5486 +5488 2 -124.1929444079897 -1031.832731276656 30.0964 0.1144 5487 +5489 2 -124.64945665338445 -1032.8814769750047 30.0199 0.1144 5488 +5490 2 -125.29397070170432 -1033.8187680992123 29.7284 0.1144 5489 +5491 2 -73.95401666492836 -981.3079244114391 69.5492 0.1144 5404 +5492 2 -75.00084057286168 -980.8850929724717 69.2532 0.1144 5491 +5493 2 -75.96133077608485 -980.268337575647 69.2611 0.1144 5492 +5494 2 -76.90953519727907 -979.634522590318 69.4968 0.1144 5493 +5495 2 -77.85065379656135 -979.0057425953397 69.9026 0.1144 5494 +5496 2 -78.7817407528089 -978.3736135500446 70.408 0.1144 5495 +5497 2 -79.69484571988696 -977.7182238498682 70.929 0.1144 5496 +5498 2 -80.60683456770502 -977.0581571551656 71.4241 0.1144 5497 +5499 2 -81.44333453623094 -976.2980464246427 71.8561 0.1144 5498 +5500 2 -82.24212291582202 -975.4944484999127 72.2344 0.1144 5499 +5501 2 -83.04161705303582 -974.6874108213866 72.5749 0.1144 5500 +5502 2 -83.83884302310929 -973.87757039103 72.893 0.1144 5501 +5503 2 -84.50213712639373 -972.9558256039289 73.222 0.1144 5502 +5504 2 -85.10377582124983 -971.9923092881085 73.5613 0.1144 5503 +5505 2 -85.68595771931524 -971.0167160083219 73.8917 0.1144 5504 +5506 2 -86.25357164006545 -970.0321681745572 74.1958 0.1144 5505 +5507 2 -86.80653239065063 -969.038613421002 74.4624 0.1144 5506 +5508 2 -87.03007221393676 -967.9191044985698 74.6052 0.1144 5507 +5509 2 -87.1666560689149 -966.7837078583779 74.6329 0.1144 5508 +5510 2 -87.14062118056242 -965.6397933359643 74.6021 0.1144 5509 +5511 2 -87.08264999479539 -964.4976117034641 74.5405 0.1144 5510 +5512 2 -87.02462644321562 -963.3555152638138 74.4652 0.1144 5511 +5513 2 -86.96665525744851 -962.2133336313136 74.3901 0.1144 5512 +5514 2 -86.90863170586874 -961.0712371916633 74.328 0.1144 5513 +5515 2 -86.85066052010168 -959.929055559163 74.275 0.1144 5514 +5516 2 -86.79268933433465 -958.7868739266629 74.2269 0.1144 5515 +5517 2 -86.73529417250765 -957.643755172815 74.1832 0.1144 5516 +5518 2 -86.68484417234708 -956.5023230515376 74.1454 0.1144 5517 +5519 2 -86.7761172397255 -955.3619643022085 74.1202 0.1144 5518 +5520 2 -86.94179009945475 -954.2296579375046 74.1098 0.1144 5519 +5521 2 -87.0673168956175 -953.0969726531272 74.1135 0.1144 5520 +5522 2 -87.61484873140736 -952.0946813737095 74.1322 0.1144 5521 +5523 2 -88.30691459033144 -951.1960213451605 74.1642 0.1144 5522 +5524 2 -88.36677501842266 -950.0565435572469 74.2244 0.1144 5523 +5525 2 -88.23114569346745 -948.9270785838137 74.31 0.1144 5524 +5526 2 -87.9461666912047 -947.8200237395222 74.4386 0.1144 5525 +5527 2 -87.6653410253407 -946.7127047044686 74.5707 0.1144 5526 +5528 2 -87.41494161318644 -945.5973250810252 74.6376 0.1144 5527 +5529 2 -87.21274713647853 -944.4713141736229 74.6556 0.1144 5528 +5530 2 -87.04178630114549 -943.3403213342193 74.6992 0.1144 5529 +5531 2 -86.87657714034887 -942.2087555724587 74.7746 0.1144 5530 +5532 2 -86.7129139518772 -941.076966271953 74.8588 0.1144 5531 +5533 2 -86.5476195982308 -939.9453481443796 74.9316 0.1144 5532 +5534 2 -86.39595058992225 -938.8114235119994 74.9414 0.1144 5533 +5535 2 -86.31021834361349 -937.6750671277858 74.7914 0.1144 5534 +5536 2 -86.4403276367033 -936.5612797459881 74.4257 0.1144 5535 +5537 2 -86.85519328151102 -935.5258029008785 73.8774 0.1144 5536 +5538 2 -87.43736045889372 -934.585180034062 73.1909 0.1144 5537 +5539 2 -88.20490047642724 -933.8215344543034 72.3831 0.1144 5538 +5540 2 -89.1919363229249 -933.3955237528785 71.5789 0.1144 5539 +5541 2 -90.0344918971742 -932.817671354509 70.5956 0.1144 5540 +5542 2 -89.72985206848824 -931.8999568701631 69.1023 0.1144 5541 +5543 2 -89.44637830952229 -930.9804626407208 67.587 0.1144 5542 +5544 2 -89.24679458255991 -929.9244894659043 66.6523 0.1144 5543 +5545 2 -89.23800620030016 -928.8004489976217 66.1727 0.1144 5544 +5546 2 -89.56056733676121 -927.7056526132446 65.9988 0.1144 5545 +5547 2 -90.024575038363 -926.6601205081163 65.9876 0.1144 5546 +5548 2 -90.48858273996476 -925.6145884029879 66.057 0.1144 5547 +5549 2 -90.95361275576414 -924.5696846876123 66.1399 0.1144 5548 +5550 2 -91.41770565021571 -923.5242049482966 66.1878 0.1144 5549 +5551 2 -91.82278573639633 -922.4544244176363 66.2004 0.1144 5550 +5552 2 -92.09131668912437 -921.3424982566764 66.1948 0.1144 5551 +5553 2 -92.28473658124926 -920.2152744300429 66.192 0.1144 5552 +5554 2 -92.47459869969111 -919.0871549213113 66.2192 0.1144 5553 +5555 2 -92.50991738387472 -917.9459733710978 66.3485 0.1144 5554 +5556 2 -92.35387701105194 -916.8214519919995 66.6747 0.1144 5555 +5557 2 -92.07994344850496 -915.7399674089793 67.2902 0.1144 5556 +5558 2 -91.78894409428747 -914.6841461997564 68.0924 0.1144 5557 +5559 2 -91.84573647880146 -913.6676756762972 68.885 0.1144 5558 +5560 2 -92.69659390775527 -913.0545472349457 69.5433 0.1144 5559 +5561 2 -93.79330768488057 -912.7886834708418 69.9712 0.1144 5560 +5562 2 -94.92369195739562 -912.6952893786809 70.1873 0.1144 5561 +5563 2 -96.06566686712813 -912.7445945056099 70.1761 0.1144 5562 +5564 2 -97.20334708767965 -912.8249480728356 69.9936 0.1144 5563 +5565 2 -97.95946586509203 -912.2851700773185 69.6769 0.1144 5564 +5566 2 -97.95186476679604 -911.1767667557317 69.3605 0.1144 5565 +5567 2 -97.79506937212076 -910.0490815273951 69.069 0.1144 5566 +5568 2 -97.6335117900696 -908.9224600525058 68.7884 0.1144 5567 +5569 2 -97.5076827444241 -907.7923283516532 68.4905 0.1144 5568 +5570 2 -97.40911300166695 -906.6615798801474 68.1506 0.1144 5569 +5571 2 -97.31759315220165 -905.5323476555125 67.7606 0.1144 5570 +5572 2 -97.22432569214038 -904.4061495464332 67.3204 0.1144 5571 +5573 2 -97.17655111917429 -903.2823257211928 66.8209 0.1144 5572 +5574 2 -97.34447742536108 -902.1877925212896 66.1867 0.1144 5573 +5575 2 -97.5902816153615 -901.1128400571415 65.4413 0.1144 5574 +5576 2 -97.86615337071058 -900.0456876900445 64.6926 0.1144 5575 +5577 2 -98.16465980023463 -898.9789494787045 63.9876 0.1144 5576 +5578 2 -98.46588378873952 -897.9098907344116 63.3251 0.1144 5577 +5579 2 -98.76915550722259 -896.8353999737402 62.7082 0.1144 5578 +5580 2 -99.07585836728904 -895.7576187317309 62.1393 0.1144 5579 +5581 2 -99.38172101265343 -894.6766212746707 61.6118 0.1144 5580 +5582 2 -99.68882089874776 -893.5938019407276 61.1162 0.1144 5581 +5583 2 -99.9961552501502 -892.5083095886366 60.653 0.1144 5582 +5584 2 -100.30370452808504 -891.42036696991 60.2263 0.1144 5583 +5585 2 -100.42054716419815 -890.2930254074781 59.9032 0.1144 5584 +5586 2 -100.46459927266113 -889.1531037383535 59.6845 0.1144 5585 +5587 2 -100.4999179568448 -888.01192218814 59.5493 0.1144 5586 +5588 2 -100.53393842227302 -886.8686514686985 59.4742 0.1144 5587 +5589 2 -100.56801125351396 -885.7252955564074 59.4387 0.1144 5588 +5590 2 -100.6035972300428 -884.5815785467086 59.4224 0.1144 5589 +5591 2 -100.63761769547108 -883.4383078272672 59.4082 0.1144 5590 +5592 2 -100.67169052671201 -882.2949519149761 59.3883 0.1144 5591 +5593 2 -100.70736169609063 -881.1512872710899 59.3608 0.1144 5592 +5594 2 -100.74129696866908 -880.0079641858357 59.3239 0.1144 5593 +5595 2 -100.81987319984466 -878.8664917262931 59.2729 0.1144 5594 +5596 2 -101.13058942860087 -877.77110528983 59.1917 0.1144 5595 +5597 2 -101.49035321655211 -876.6856776151878 59.0817 0.1144 5596 +5598 2 -101.85102129881415 -875.6006884058233 58.9484 0.1144 5597 +5599 2 -102.2121161325579 -874.5174874590717 58.7964 0.1144 5598 +5600 2 -102.57317813926454 -873.4341489536575 58.6295 0.1144 5599 +5601 2 -102.93321783177367 -872.3501820584906 58.4511 0.1144 5600 +5602 2 -103.2946737629251 -871.2684942570269 58.2641 0.1144 5601 +5603 2 -103.50992645218946 -870.1492909646065 58.0552 0.1144 5602 +5604 2 -103.6578206301821 -869.0195552954716 57.8231 0.1144 5603 +5605 2 -103.79863208784582 -867.8881658208031 57.5708 0.1144 5604 +5606 2 -103.93823913181669 -866.7587357816799 57.3009 0.1144 5605 +5607 2 -104.07793136863728 -865.6293581083695 57.017 0.1144 5606 +5608 2 -104.21852789976859 -864.5004189003366 56.7216 0.1144 5607 +5609 2 -104.33621385216696 -863.3696047570718 56.4071 0.1144 5608 +5610 2 -104.42881486375478 -862.2381615315173 56.0666 0.1144 5609 +5611 2 -104.51625976352193 -861.1061313554599 55.7082 0.1144 5610 +5612 2 -104.60316146638604 -859.9751758594127 55.3426 0.1144 5611 +5613 2 -104.69100029059791 -858.8447963873056 54.9816 0.1144 5612 +5614 2 -104.77910640715496 -857.7118814557131 54.6412 0.1144 5613 +5615 2 -104.86619020951443 -856.5783381343678 54.336 0.1144 5614 +5616 2 -104.95447842556692 -855.4428353774771 54.0803 0.1144 5615 +5617 2 -105.04298156815176 -854.3048823539509 53.8807 0.1144 5616 +5618 2 -105.28478780268173 -853.1885020446734 53.8261 0.1144 5617 +5619 2 -105.67319981575622 -852.1152841692634 53.9694 0.1144 5618 +5620 2 -106.07265485949995 -851.0502627243959 54.2632 0.1144 5619 +5621 2 -106.46975344167058 -849.9890749577693 54.6392 0.1144 5620 +5622 2 -106.50181136997043 -848.8512886205191 54.924 0.1144 5621 +5623 2 -106.51204511334345 -847.7094779880163 55.1099 0.1144 5622 +5624 2 -106.5229924393191 -846.5666974071286 55.1894 0.1144 5623 +5625 2 -106.53349347503729 -845.4223513151403 55.1748 0.1144 5624 +5626 2 -106.70417860147606 -845.5487476664032 55.1908 0.1144 5625 +5627 2 -107.62155753469256 -846.2321300578143 55.2507 0.1144 5626 +5628 2 -108.5091598118895 -846.950969899166 55.1393 0.1144 5627 +5629 2 -109.32042509310119 -847.7544712019034 54.9898 0.1144 5628 +5630 2 -109.97626388334453 -848.3697051258804 54.7078 0.1144 5629 +5631 2 -109.96078360361744 -847.2523503518987 54.1293 0.1144 5630 +5632 2 -109.90529792056958 -846.1278950353224 53.6486 0.1144 5631 +5633 2 -110.05331803812521 -845.0264081562364 53.0328 0.1144 5632 +5634 2 -110.48945856248667 -844.0349969383203 52.1735 0.1144 5633 +5635 2 -110.49126002493603 -842.9550276078609 51.2999 0.1144 5634 +5636 2 -110.16746151824302 -841.9046346208968 50.531 0.1144 5635 +5637 2 -109.84692135838733 -840.8334725902405 49.94 0.1144 5636 +5638 2 -109.64129504755942 -839.7348147907891 49.5093 0.1144 5637 +5639 2 -109.80878668258833 -838.6104344626993 49.2022 0.1144 5638 +5640 2 -109.97302927552931 -837.4867567906491 48.979 0.1144 5639 +5641 2 -110.40652001994195 -836.4385478732531 48.7738 0.1144 5640 +5642 2 -111.12557719687265 -835.5658691601494 48.5041 0.1144 5641 +5643 2 -112.07141112834773 -834.9467956394183 48.1384 0.1144 5642 +5644 2 -113.11949761050488 -834.6093717873873 47.7179 0.1144 5643 +5645 2 -114.22248222165962 -834.8160638471186 47.1834 0.1144 5644 +5646 2 -115.30928510414222 -835.0731431240499 46.5816 0.1144 5645 +5647 2 -116.39707885885846 -835.2825879788454 45.9161 0.1144 5646 +5648 2 -117.49766185208176 -835.3293398240234 45.162 0.1144 5647 +5649 2 -118.59601432329495 -835.4081741374912 44.4262 0.1144 5648 +5650 2 -119.6949428184482 -835.4860713296111 43.7822 0.1144 5649 +5651 2 -120.8119697305072 -835.3683856561587 43.2631 0.1144 5650 +5652 2 -121.92620550983517 -835.2246865327605 42.8425 0.1144 5651 +5653 2 -122.97644653120585 -834.8094723988124 42.539 0.1144 5652 +5654 2 -123.98453481949673 -834.3010889185431 42.2943 0.1144 5653 +5655 2 -125.0408386560452 -833.9042740311045 42.0188 0.1144 5654 +5656 2 -125.99357630993688 -833.2827533453208 41.729 0.1144 5655 +5657 2 -126.87711685439285 -832.5662298172336 41.5058 0.1144 5656 +5658 2 -127.80596166953066 -831.9944648573143 41.3064 0.1144 5657 +5659 2 -128.93004527588803 -831.815266152189 41.0155 0.1144 5658 +5660 2 -130.04643800347597 -831.6111505776024 40.6748 0.1144 5659 +5661 2 -131.03264594690765 -831.1295794174275 40.3676 0.1144 5660 +5662 2 -131.87453959414546 -830.3606938233756 40.1467 0.1144 5661 +5663 2 -132.7396432469618 -829.6153478903459 39.9918 0.1144 5662 +5664 2 -133.6551577339623 -828.9319766924658 39.9031 0.1144 5663 +5665 2 -134.59841545923877 -828.2844394551533 39.8723 0.1144 5664 +5666 2 -135.54158799166547 -827.636849852028 39.877 0.1144 5665 +5667 2 -136.4862291285471 -826.9914541497564 39.8992 0.1144 5666 +5668 2 -137.44294112092527 -826.3655683026245 39.9283 0.1144 5667 +5669 2 -138.42128357963526 -825.7745761931296 39.9647 0.1144 5668 +5670 2 -139.41099423780204 -825.1998448966866 40.0151 0.1144 5669 +5671 2 -140.40631280867657 -824.637951096692 40.124 0.1144 5670 +5672 2 -141.35370674062264 -824.0077462508586 40.2626 0.1144 5671 +5673 2 -142.27558726376628 -823.333687602781 40.3371 0.1144 5672 +5674 2 -143.0584242544369 -822.5189935890324 40.4583 0.1144 5673 +5675 2 -143.5211361463298 -821.488746145405 40.8052 0.1144 5674 +5676 2 -144.53379841403122 -821.0208533889172 41.3157 0.1144 5675 +5677 2 -145.62702008923267 -820.9703496378706 42.098 0.1144 5676 +5678 2 -146.69387983049052 -821.1615273888858 42.9904 0.1144 5677 +5679 2 -147.74169962384988 -821.4121345129753 43.9208 0.1144 5678 +5680 2 -148.61193056835384 -821.5387924508545 45.1688 0.1144 5679 +5681 2 -147.87198341621763 -820.7764287764539 45.8102 0.1144 5680 +5682 2 -147.31984434841152 -819.9334799702965 46.4036 0.1144 5681 +5683 2 -147.7469625397631 -819.0157549621287 47.4334 0.1144 5682 +5684 2 -148.221843093412 -818.2454732540723 49.1047 0.1144 5683 +5685 2 -148.80582766102128 -817.3609016770961 50.1222 0.1144 5684 +5686 2 -149.67547515934632 -816.7500499204014 51.1557 0.1144 5685 +5687 2 -150.6231117603652 -816.2219981024807 52.0304 0.1144 5686 +5688 2 -151.51625096354476 -815.723599001615 53.2868 0.1144 5687 +5689 2 -105.9943185357792 -844.577980759711 55.0382 0.1144 5625 +5690 2 -106.08300308532284 -843.4615025374997 54.8509 0.1144 5689 +5691 2 -106.33959222370049 -842.3516265155645 54.6286 0.1144 5690 +5692 2 -106.57239774160598 -841.2365217846836 54.3578 0.1144 5691 +5693 2 -106.8178555548815 -840.1250857622775 54.0932 0.1144 5692 +5694 2 -106.96922231370735 -838.9961934094279 53.8345 0.1144 5693 +5695 2 -107.0698955327845 -837.8668948204972 53.4545 0.1144 5694 +5696 2 -107.15737877021829 -836.745687237947 52.9494 0.1144 5695 +5697 2 -107.42479291114972 -835.6531467090741 52.437 0.1144 5696 +5698 2 -107.81595771928855 -834.5951196901026 51.9753 0.1144 5697 +5699 2 -108.1673460787851 -833.5166340755438 51.6062 0.1144 5698 +5700 2 -108.2442995436501 -833.1664841587292 51.4382 0.1144 5699 +5701 2 -108.4436032530405 -832.0535586080191 51.032 0.1144 5700 +5702 2 -108.59541630212377 -830.92623176627 50.7466 0.1144 5701 +5703 2 -108.81766651886724 -829.8086299135705 50.5257 0.1144 5702 +5704 2 -109.07096517590708 -828.6953227500519 50.344 0.1144 5703 +5705 2 -109.14098387913256 -827.5633801758906 50.1824 0.1144 5704 +5706 2 -108.96462936508772 -826.441162200016 50.0192 0.1144 5705 +5707 2 -108.65091625231537 -825.3459078172928 49.7896 0.1144 5706 +5708 2 -108.38411846844662 -824.2419292203432 49.4715 0.1144 5707 +5709 2 -108.35260160694938 -823.1134259915302 49.145 0.1144 5708 +5710 2 -108.53769843643221 -821.9930590321301 48.8653 0.1144 5709 +5711 2 -108.63693587809144 -820.8617041010086 48.6315 0.1144 5710 +5712 2 -108.72585248389674 -819.7251790299204 48.3818 0.1144 5711 +5713 2 -108.98003279488847 -818.6192218790759 48.1104 0.1144 5712 +5714 2 -109.29846013372645 -817.5244669339486 47.868 0.1144 5713 +5715 2 -109.50511695737404 -816.4039709334024 47.6596 0.1144 5714 +5716 2 -109.49587677422721 -815.2676799191745 47.4729 0.1144 5715 +5717 2 -109.34812663700927 -814.13616411418 47.2889 0.1144 5716 +5718 2 -109.25415962249141 -813.0000281671286 47.075 0.1144 5717 +5719 2 -109.1029783436901 -811.871802843472 46.8238 0.1144 5718 +5720 2 -108.58901908521355 -810.8750772440083 46.5139 0.1144 5719 +5721 2 -107.89896150049577 -809.9769334861535 46.1524 0.1144 5720 +5722 2 -107.72487135947148 -808.8882696846068 45.7783 0.1144 5721 +5723 2 -107.4885490935421 -807.7828341023019 45.3844 0.1144 5722 +5724 2 -107.12670772065675 -806.7198561905518 44.8577 0.1144 5723 +5725 2 -106.31427877246529 -805.946510747596 44.3422 0.1144 5724 +5726 2 -105.23284664424713 -805.6108009740451 43.9491 0.1144 5725 +5727 2 -104.14713695657724 -805.2885430585494 43.5554 0.1144 5726 +5728 2 -104.70307254922443 -804.7534279524012 45.2869 0.1144 5727 +5729 2 -105.66360039757765 -804.1715577756969 45.8091 0.1144 5728 +5730 2 -106.72101725180303 -803.7861086786686 46.3086 0.1144 5729 +5731 2 -107.84977305227858 -803.787026770656 46.7589 0.1144 5730 +5732 2 -108.98109134455831 -803.7008974983195 47.108 0.1144 5731 +5733 2 -110.11700143851442 -803.6135997409101 47.3628 0.1144 5732 +5734 2 -111.25082236324252 -803.5276002022562 47.6778 0.1144 5733 +5735 2 -103.81404462766844 -805.0811001738266 43.3734 0.1144 5727 +5736 2 -102.8033563034106 -804.6129210294716 42.9696 0.1144 5735 +5737 2 -101.80233000726338 -804.1681706113474 42.7778 0.1144 5736 +5738 2 -101.1919399540453 -803.2410555845397 42.5505 0.1144 5737 +5739 2 -100.94380560744818 -802.1351675088112 42.2859 0.1144 5738 +5740 2 -100.86133101544021 -801.0021047075186 41.9642 0.1144 5739 +5741 2 -100.76534599639814 -799.8782271313922 41.5391 0.1144 5740 +5742 2 -100.73841473341099 -798.7619330092748 41.0446 0.1144 5741 +5743 2 -101.20467208735067 -797.7849254914444 40.572 0.1144 5742 +5744 2 -101.60799535288228 -796.7638345241545 40.1243 0.1144 5743 +5745 2 -101.56770052627286 -795.6366264125138 39.825 0.1144 5744 +5746 2 -101.56858028059364 -794.4970480185311 39.6631 0.1144 5745 +5747 2 -101.68729164877269 -793.3601734691348 39.6186 0.1144 5746 +5748 2 -101.89029689367479 -792.2347331817173 39.6813 0.1144 5747 +5749 2 -102.1591889438105 -791.1243201660453 39.8042 0.1144 5748 +5750 2 -102.42910330814377 -790.0145355401262 39.9487 0.1144 5749 +5751 2 -102.55267066876128 -788.8806458420559 40.1008 0.1144 5750 +5752 2 -102.46163303817359 -787.7464278912998 40.2578 0.1144 5751 +5753 2 -102.21306332788203 -786.6347553139977 40.4628 0.1144 5752 +5754 2 -101.93089258807947 -785.5361173374107 40.8268 0.1144 5753 +5755 2 -101.02128912864191 -784.9273558680492 41.2471 0.1144 5754 +5756 2 -100.36884284054169 -784.0052611109096 41.5764 0.1144 5755 +5757 2 -100.55241559817375 -782.8894742393901 41.8141 0.1144 5756 +5758 2 -101.07838192916918 -781.8766269662738 41.965 0.1144 5757 +5759 2 -101.07591883633943 -780.7337026235573 42.0437 0.1144 5758 +5760 2 -101.14367247400779 -779.5922685016814 42.0664 0.1144 5759 +5761 2 -100.5586915064145 -778.6083478557177 42.0686 0.1144 5760 +5762 2 -100.17235524480468 -777.5328959539734 42.0686 0.1144 5761 +5763 2 -99.8643445423391 -776.4304650458587 42.0686 0.1144 5762 +5764 2 -108.24553318592399 -832.1922779956781 52.7629 0.1144 5699 +5765 2 -108.31140096179723 -831.0779734430079 53.3238 0.1144 5764 +5766 2 -108.37638708371858 -829.9563188776635 53.8642 0.1144 5765 +5767 2 -108.50966022604669 -828.8417764740136 54.3942 0.1144 5766 +5768 2 -108.67817968590282 -827.7287095705213 54.8915 0.1144 5767 +5769 2 -108.85110884793986 -826.6170620072545 55.3969 0.1144 5768 +5770 2 -109.00919963873343 -825.5056841453793 55.9322 0.1144 5769 +5771 2 -109.04467639698052 -824.4169515704904 56.7664 0.1144 5770 +5772 2 -109.0522538434868 -823.3581396975381 57.8248 0.1144 5771 +5773 2 -109.05728041728841 -822.358093571824 59.124 0.1144 5772 +5774 2 -109.06321908071749 -821.5641417645481 61.1397 0.1144 5773 +5775 2 -57.15070498875667 -967.4382267148983 75.7546 0.1144 5320 +5776 2 -57.10039254725859 -966.2967617665838 75.8349 0.1144 5775 +5777 2 -57.48193676653659 -965.2194398190048 75.9122 0.1144 5776 +5778 2 -57.3862776088186 -964.0795639987749 75.9923 0.1144 5777 +5779 2 -57.68264560488507 -963.007520403156 74.1773 0.1144 5778 +5780 2 -57.43476343918755 -962.2508776658426 72.571 0.1144 5779 +5781 2 -57.09532929466684 -962.6654107544297 71.5963 0.1144 5780 +5782 2 -56.99047332748867 -963.6617283123134 70.399 0.1144 5781 +5783 2 -56.401105883935514 -963.0389917175321 69.4837 0.1144 5782 +5784 2 -55.759526037638835 -962.1383662510779 68.7652 0.1144 5783 +5785 2 -55.21148574415659 -962.1801705178448 67.6172 0.1144 5784 +5786 2 -55.085539690055185 -963.2239756344524 67.0163 0.1144 5785 +5787 2 -54.239159742314285 -963.7794051835963 66.575 0.1144 5786 +5788 2 -53.16126928202331 -963.5276867583397 66.2693 0.1144 5787 +5789 2 -52.124206410412114 -963.0607856014279 66.0279 0.1144 5788 +5790 2 -51.06355633005893 -962.6519273044023 65.7171 0.1144 5789 +5791 2 -50.047530487021675 -962.1616864082293 65.2957 0.1144 5790 +5792 2 -49.22654090929703 -961.404559646539 64.9172 0.1144 5791 +5793 2 -48.493351717150176 -960.5349555880624 64.6156 0.1144 5792 +5794 2 -47.77215119453689 -959.6525311628665 64.3633 0.1144 5793 +5795 2 -47.06596563203291 -958.7565641761361 64.1525 0.1144 5794 +5796 2 -46.38144238627257 -957.842923931831 63.9596 0.1144 5795 +5797 2 -45.78536532966061 -956.8749546747878 63.7199 0.1144 5796 +5798 2 -45.310172517265045 -955.8457150374596 63.3738 0.1144 5797 +5799 2 -44.96954406928282 -954.7701871529185 62.9364 0.1144 5798 +5800 2 -44.780624861764295 -953.661726665111 62.4571 0.1144 5799 +5801 2 -44.552140338016216 -952.5611087375778 61.9522 0.1144 5800 +5802 2 -44.10573641098944 -951.5373572765603 61.4286 0.1144 5801 +5803 2 -43.3740893970479 -950.6982811018358 60.916 0.1144 5802 +5804 2 -42.48540864572087 -950.0096494860783 60.431 0.1144 5803 +5805 2 -41.56807045921764 -949.3544635189035 59.9642 0.1144 5804 +5806 2 -40.71543618594421 -948.6182645675053 59.5014 0.1144 5805 +5807 2 -40.08946135184297 -947.6922516318118 59.0316 0.1144 5806 +5808 2 -39.7405841075055 -946.6278519707898 58.5589 0.1144 5807 +5809 2 -39.52328637625547 -945.5220200549936 58.0832 0.1144 5808 +5810 2 -39.3425604976963 -944.4092053324009 57.6072 0.1144 5809 +5811 2 -39.300485233453855 -943.2848937776535 57.1276 0.1144 5810 +5812 2 -39.394296169364196 -942.1621761513984 56.658 0.1144 5811 +5813 2 -39.46386548074918 -941.0353568620208 56.2248 0.1144 5812 +5814 2 -39.48117884286799 -939.9018888309356 55.8446 0.1144 5813 +5815 2 -39.48882165935976 -938.7665848948216 55.5089 0.1144 5814 +5816 2 -39.49923440064504 -937.6288752329046 55.2065 0.1144 5815 +5817 2 -39.54751411179359 -936.4929607293036 54.9139 0.1144 5816 +5818 2 -39.61735381710682 -935.3569171845564 54.6322 0.1144 5817 +5819 2 -39.65414110574545 -934.2179295351964 54.385 0.1144 5818 +5820 2 -39.64161044126084 -933.0782073793849 54.133 0.1144 5819 +5821 2 -39.56389803662876 -931.944080824645 53.8504 0.1144 5820 +5822 2 -39.28925940899566 -930.8419733688079 53.5875 0.1144 5821 +5823 2 -38.80110246805205 -929.8141554807514 53.3817 0.1144 5822 +5824 2 -38.23649110907667 -928.82115744283 53.2216 0.1144 5823 +5825 2 -37.46074013027473 -927.9925335541519 53.072 0.1144 5824 +5826 2 -36.51078419825484 -927.3642506105508 52.9189 0.1144 5825 +5827 2 -35.57842864259575 -926.7052333741816 52.768 0.1144 5826 +5828 2 -34.72678454901944 -925.9454626272608 52.6229 0.1144 5827 +5829 2 -33.97194396669195 -925.0893128358858 52.4762 0.1144 5828 +5830 2 -33.15938907893755 -924.2877186028811 52.3194 0.1144 5829 +5831 2 -32.23896982699932 -923.6159661926424 52.1147 0.1144 5830 +5832 2 -31.28482462996041 -922.994498677025 51.837 0.1144 5831 +5833 2 -30.330538772675908 -922.3797527843288 51.494 0.1144 5832 +5834 2 -29.47519004200484 -921.6391855699997 51.1134 0.1144 5833 +5835 2 -29.467535192822908 -920.5789926944888 50.5232 0.1144 5834 +5836 2 -29.783324057059872 -919.5255773000579 49.8809 0.1144 5835 +5837 2 -29.53873758155615 -918.4903029808552 49.1845 0.1144 5836 +5838 2 -28.647773942406218 -917.8338390262372 48.482 0.1144 5837 +5839 2 -27.704077929830788 -917.2631642713643 47.7425 0.1144 5838 +5840 2 -26.76460951994096 -916.6964966820149 46.9605 0.1144 5839 +5841 2 -25.993108375735403 -915.9657982185639 46.0656 0.1144 5840 +5842 2 -25.53896010314193 -915.0421075146483 44.9672 0.1144 5841 +5843 2 -24.90342725035586 -914.3197441413868 43.6069 0.1144 5842 +5844 2 -24.716651578476643 -913.3281038798029 42.3847 0.1144 5843 +5845 2 -23.78809166516541 -912.9533682698171 41.27 0.1144 5844 +5846 2 -22.79740023301821 -912.5028802053025 40.4065 0.1144 5845 +5847 2 -22.7679262121018 -912.1597360197317 40.1142 0.1144 5846 +5848 2 -22.651345038809865 -911.0756677192849 39.2703 0.1144 5847 +5849 2 -22.465583477363452 -909.9798298013932 38.6324 0.1144 5848 +5850 2 -22.221282809007192 -908.8762981872377 38.2133 0.1144 5849 +5851 2 -21.96442596469376 -907.7649312399474 37.977 0.1144 5850 +5852 2 -21.70720802297268 -906.6520511473692 37.8759 0.1144 5851 +5853 2 -21.369834820244705 -905.5624430150203 37.8809 0.1144 5852 +5854 2 -20.802852971550067 -904.5841864416966 37.9898 0.1144 5853 +5855 2 -20.02140268402445 -903.7560502825258 38.1671 0.1144 5854 +5856 2 -19.108697643751043 -903.0782405677389 38.348 0.1144 5855 +5857 2 -18.136679267376508 -902.4793577695302 38.5025 0.1144 5856 +5858 2 -17.263193166607664 -901.7572219362111 38.633 0.1144 5857 +5859 2 -16.56453971627309 -900.8577854702305 38.7024 0.1144 5858 +5860 2 -15.857648396146317 -899.9652582372962 38.6672 0.1144 5859 +5861 2 -14.941823354930904 -899.3097111727137 38.5428 0.1144 5860 +5862 2 -13.957631107944366 -898.7329253624066 38.3645 0.1144 5861 +5863 2 -13.09604848385922 -897.9979167965555 38.1321 0.1144 5862 +5864 2 -12.340215312788132 -897.1479649699744 37.844 0.1144 5863 +5865 2 -11.908770185938238 -896.1415075627694 37.4629 0.1144 5864 +5866 2 -11.998876484753765 -895.0379934691061 36.9821 0.1144 5865 +5867 2 -12.296716186858305 -893.9614549784565 36.3941 0.1144 5866 +5868 2 -12.984657144460641 -893.1435998086047 35.7249 0.1144 5867 +5869 2 -13.933068590196228 -892.695256268897 34.8743 0.1144 5868 +5870 2 -13.98033380014897 -891.9803498065342 33.3385 0.1144 5869 +5871 2 -14.124339542726545 -891.0469496157775 32.0001 0.1144 5870 +5872 2 -14.29023794179949 -890.0343928612274 30.7829 0.1144 5871 +5873 2 -14.736715739207483 -889.0546178276498 29.8519 0.1144 5872 +5874 2 -15.313362605778849 -888.1185836609266 29.0895 0.1144 5873 +5875 2 -16.16290268564947 -887.4027589947593 28.4939 0.1144 5874 +5876 2 -17.109000807886616 -886.7878388104269 28.0353 0.1144 5875 +5877 2 -18.108546288910077 -886.254014802569 27.6594 0.1144 5876 +5878 2 -18.525806040420974 -885.2495894993388 27.1899 0.1144 5877 +5879 2 -18.155186702423407 -884.1879067047611 26.6894 0.1144 5878 +5880 2 -18.054172203660272 -883.0676283415676 26.1789 0.1144 5879 +5881 2 -18.071077613188294 -881.9434173928889 25.6616 0.1144 5880 +5882 2 -18.066293294868927 -880.8218381178049 25.1129 0.1144 5881 +5883 2 -17.796460702908007 -879.7401745368725 24.478 0.1144 5882 +5884 2 -17.30891432945154 -878.7529935434727 23.7274 0.1144 5883 +5885 2 -16.79731324905805 -877.7938707231102 22.8544 0.1144 5884 +5886 2 -15.947430072024133 -877.2474067486392 21.6339 0.1144 5885 +5887 2 -15.083518924005602 -877.3071604793122 19.9266 0.1144 5886 +5888 2 -14.672750935416502 -877.4468412208282 17.3384 0.1144 5887 +5889 2 -14.272616036285484 -877.0666052118845 15.0456 0.1144 5888 +5890 2 -14.088193031859703 -876.1018826945572 13.6092 0.1144 5889 +5891 2 -13.904237241540187 -875.0903776835919 12.3879 0.1144 5890 +5892 2 -13.710355924884624 -874.027227983384 11.469 0.1144 5891 +5893 2 -13.512300063892809 -872.9359232981899 10.7827 0.1144 5892 +5894 2 -13.31050192067616 -871.8289369254669 10.2734 0.1144 5893 +5895 2 -12.909586062651528 -870.7728120868308 9.8433 0.1144 5894 +5896 2 -12.211599339736438 -869.8831759001598 9.4154 0.1144 5895 +5897 2 -11.505322381216416 -869.000534139385 8.9937 0.1144 5896 +5898 2 -10.696419072207476 -868.2038841932515 8.6493 0.1144 5897 +5899 2 -9.817947245317583 -867.4812661410548 8.3636 0.1144 5898 +5900 2 -8.919504552347547 -866.8041238462239 7.8529 0.1144 5899 +5901 2 -22.536568256714332 -912.4486658148012 39.7712 0.1144 5846 +5902 2 -21.46089290521428 -912.2238979608381 39.2862 0.1144 5901 +5903 2 -20.358247159556413 -911.9248007866913 39.1555 0.1144 5902 +5904 2 -19.27767306830617 -911.5506480193371 39.1558 0.1144 5903 +5905 2 -18.201076417125535 -911.1654412947506 39.2633 0.1144 5904 +5906 2 -17.06212159480262 -911.1287915647745 39.4355 0.1144 5905 +5907 2 -15.956185971354245 -911.4117587656792 39.6071 0.1144 5906 +5908 2 -14.815735826009188 -911.3338109242563 39.676 0.1144 5907 +5909 2 -13.675106682751846 -911.2517621122475 39.6393 0.1144 5908 +5910 2 -12.53439234664475 -911.169660934426 39.5139 0.1144 5909 +5911 2 -11.396480762368213 -911.0852915894643 39.3347 0.1144 5910 +5912 2 -10.351573945409541 -910.6269503695491 39.13 0.1144 5911 +5913 2 -9.316561212823075 -910.1719910269877 38.703 0.1144 5912 +5914 2 -57.14475737139284 -963.4894041010236 76.1062 0.1144 5778 +5915 2 -56.93587581531065 -962.4048265493803 76.3496 0.1144 5914 +5916 2 -57.235763247393436 -961.3228560423521 76.6654 0.1144 5915 +5917 2 -57.6590957166718 -960.2671119112035 76.9488 0.1144 5916 +5918 2 -57.90308182390919 -959.1601707838281 77.1624 0.1144 5917 +5919 2 -58.02625526008197 -958.0246303818075 77.3158 0.1144 5918 +5920 2 -58.05533143863889 -956.8850112411116 77.4155 0.1144 5919 +5921 2 -57.97619418315182 -955.7446093537077 77.4721 0.1144 5920 +5922 2 -57.964815566547344 -954.6030129552008 77.5088 0.1144 5921 +5923 2 -58.07435504516957 -953.4657828190263 77.5477 0.1144 5922 +5924 2 -58.072379681847025 -952.3285577850336 77.597 0.1144 5923 +5925 2 -57.921156963795994 -951.196198663754 77.6924 0.1144 5924 +5926 2 -58.01162195097265 -950.0768238846496 77.8277 0.1144 5925 +5927 2 -58.32323386182688 -948.9778796745034 77.9604 0.1144 5926 +5928 2 -58.52823998152411 -947.857777598402 78.0822 0.1144 5927 +5929 2 -58.72745298743507 -946.7341146470345 78.2116 0.1144 5928 +5930 2 -58.77395226095058 -945.6010967003265 78.3703 0.1144 5929 +5931 2 -58.69828758629674 -944.4615381292081 78.5352 0.1144 5930 +5932 2 -58.541983022711776 -943.3328634137109 78.7514 0.1144 5931 +5933 2 -58.21877836222464 -942.2398740965447 78.9228 0.1144 5932 +5934 2 -58.09909491556027 -941.1108201772854 79.0426 0.1144 5933 +5935 2 -57.961327157147394 -939.9760498195735 79.1291 0.1144 5934 +5936 2 -57.707816261567615 -938.8613400251326 79.1874 0.1144 5935 +5937 2 -57.670955678124784 -937.72415263627 79.2492 0.1144 5936 +5938 2 -57.79479033108737 -936.5877274787142 79.3299 0.1144 5937 +5939 2 -58.00069213288262 -935.4640676289298 79.4094 0.1144 5938 +5940 2 -58.11940350106167 -934.3271930795336 79.4637 0.1144 5939 +5941 2 -58.071541326199224 -933.1859430577515 79.49 0.1144 5940 +5942 2 -58.269602284230075 -932.0641543490794 79.4917 0.1144 5941 +5943 2 -58.550700339478226 -930.9558445307816 79.4251 0.1144 5942 +5944 2 -58.594124058188356 -929.8169451758545 79.3296 0.1144 5943 +5945 2 -58.45479078867493 -928.6826211083999 79.2509 0.1144 5944 +5946 2 -58.546242853965595 -927.5463633296569 79.1958 0.1144 5945 +5947 2 -58.436362788193975 -926.4099538870939 79.1655 0.1144 5946 +5948 2 -58.3897902198743 -925.2667967955794 79.161 0.1144 5947 +5949 2 -58.39869291745484 -924.122759435186 79.1801 0.1144 5948 +5950 2 -58.61167743957887 -923.0007533909352 79.2126 0.1144 5949 +5951 2 -58.80661047699164 -921.873168466894 79.2515 0.1144 5950 +5952 2 -59.184106091496346 -920.7959403243773 79.3251 0.1144 5951 +5953 2 -59.66174464906561 -919.7587867492867 79.4973 0.1144 5952 +5954 2 -59.17300858259884 -918.7385947784624 79.5735 0.1144 5953 +5955 2 -58.78098212135103 -918.6466999272384 79.2798 0.1144 5954 +5956 2 -57.74088374911099 -918.2261764129568 79.0723 0.1144 5955 +5957 2 -56.695169544487214 -917.7647565366531 79.1126 0.1144 5956 +5958 2 -55.82013747139345 -917.0428442420791 79.0174 0.1144 5957 +5959 2 -54.86081042059209 -916.4343901192392 78.7402 0.1144 5958 +5960 2 -53.89156386864224 -916.9800300018846 78.4745 0.1144 5959 +5961 2 -52.75423822858042 -917.0409860389777 78.2583 0.1144 5960 +5962 2 -51.66442516127799 -916.7015332906653 78.129 0.1144 5961 +5963 2 -50.565301953219546 -916.3858204092251 78.0534 0.1144 5962 +5964 2 -49.49484849197353 -915.9843176355032 77.9635 0.1144 5963 +5965 2 -48.423733813937645 -915.5836996173161 77.8422 0.1144 5964 +5966 2 -47.32255977431791 -915.2801075481386 77.6891 0.1144 5965 +5967 2 -46.21392719627892 -915.0083189411098 77.5054 0.1144 5966 +5968 2 -45.696281122973346 -913.9891376653834 77.1509 0.1144 5967 +5969 2 -45.00070322744418 -913.0955826076219 76.7673 0.1144 5968 +5970 2 -44.31336010012407 -912.2018071126984 76.2986 0.1144 5969 +5971 2 -43.568034682495295 -911.3891852622436 75.8167 0.1144 5970 +5972 2 -42.56551065427945 -910.8857629019437 75.3141 0.1144 5971 +5973 2 -41.50619092718213 -910.5031939594217 74.8171 0.1144 5972 +5974 2 -40.44509076245177 -910.1235215737927 74.3425 0.1144 5973 +5975 2 -39.53066895570589 -909.5466604732255 73.9301 0.1144 5974 +5976 2 -38.90299956935803 -908.5995338336246 73.6268 0.1144 5975 +5977 2 -38.27729272013852 -907.6469228118325 73.3978 0.1144 5976 +5978 2 -37.60417119340863 -906.7256183126289 73.2035 0.1144 5977 +5979 2 -36.91247693288645 -905.8169606928618 73.0206 0.1144 5978 +5980 2 -36.24429969302787 -904.8920046149127 72.8451 0.1144 5979 +5981 2 -35.587758637507875 -903.956711263917 72.6802 0.1144 5980 +5982 2 -34.9322922619981 -903.0219611098245 72.5396 0.1144 5981 +5983 2 -34.28038676175444 -902.0814178419457 72.443 0.1144 5982 +5984 2 -33.98410564024195 -901.0735280726578 72.49 0.1144 5983 +5985 2 -34.24952200796142 -899.9689605365847 72.8095 0.1144 5984 +5986 2 -33.84442028827462 -899.2057100883655 73.414 0.1144 5985 +5987 2 -32.87729314042207 -898.6273235308743 73.8867 0.1144 5986 +5988 2 -31.934240930818675 -897.9965934222206 74.251 0.1144 5987 +5989 2 -30.95605982573386 -897.4142294246598 74.5186 0.1144 5988 +5990 2 -29.8681733669396 -897.0758435313778 74.695 0.1144 5989 +5991 2 -28.742641683506207 -896.8861635124314 74.8168 0.1144 5990 +5992 2 -27.60068659663807 -896.9134028144769 74.9232 0.1144 5991 +5993 2 -26.467520087693288 -897.0615468761395 75.0677 0.1144 5992 +5994 2 -25.355483311400405 -897.3152922370274 75.2718 0.1144 5993 +5995 2 -24.420909746173578 -897.9574857523942 75.5336 0.1144 5994 +5996 2 -23.80519390509258 -898.9110580270761 75.8212 0.1144 5995 +5997 2 -23.648918788015607 -900.0370507214496 76.0995 0.1144 5996 +5998 2 -23.26665547550536 -901.1046575825687 76.4431 0.1144 5997 +5999 2 -22.77267470615405 -902.1223755688062 76.8558 0.1144 5998 +6000 2 -21.962808059810158 -902.9002656736022 77.3651 0.1144 5999 +6001 2 -21.032205731486755 -903.5447828235052 77.7857 0.1144 6000 +6002 2 -20.093671855919553 -904.1804337138631 78.1511 0.1144 6001 +6003 2 -19.14368768962882 -904.7930826294721 78.4812 0.1144 6002 +6004 2 -18.22298394431195 -904.9670009820387 78.7875 0.1144 6003 +6005 2 -18.73313214722137 -905.7384779947022 79.5819 0.1144 6004 +6006 2 -19.063620634065444 -905.419276302878 80.4258 0.1144 6005 +6007 2 -18.982511631396903 -904.3300142454804 81.2137 0.1144 6006 +6008 2 -18.83671171967123 -903.2453583019937 82.0333 0.1144 6007 +6009 2 -18.690186511547154 -902.1643648638155 82.8752 0.1144 6008 +6010 2 -17.708313098688706 -901.7648407329779 83.7878 0.1144 6009 +6011 2 -16.634890501109624 -901.6019086704285 84.6714 0.1144 6010 +6012 2 -15.54815569943267 -901.5784589193817 85.5081 0.1144 6011 +6013 2 -14.539556757187142 -902.0112874578368 86.2982 0.1144 6012 +6014 2 -13.587680934383087 -902.56361372732 87.0615 0.1144 6013 +6015 2 -12.6348679902313 -903.115363972863 87.8237 0.1144 6014 +6016 2 -11.841808662502899 -904.141281100463 88.1748 0.1144 6015 +6017 2 -11.146002930400442 -905.041633272212 88.4584 0.1144 6016 +6018 2 -10.398170896246938 -905.8979160226478 88.7687 0.1144 6017 +6019 2 -9.547772779408348 -906.6521836826183 89.0736 0.1144 6018 +6020 2 -8.830983769617887 -907.5276651475526 89.4824 0.1144 6019 +6021 2 -8.17518033925316 -908.4418066577806 89.9909 0.1144 6020 +6022 2 -7.465347417692044 -909.3147557648126 90.487 0.1144 6021 +6023 2 -6.725847058393214 -910.1681778869755 90.9437 0.1144 6022 +6024 2 -6.08518762928378 -911.0903368298336 91.4656 0.1144 6023 +6025 2 -5.49452829393644 -911.9639975188696 92.5509 0.1144 6024 +6026 2 -11.951476578723913 -902.4401154418183 88.9787 0.1144 6015 +6027 2 -11.175531188790444 -901.6664236221375 89.7854 0.1144 6026 +6028 2 -10.973145011771152 -900.9054663727788 91.1666 0.1144 6027 +6029 2 -11.50433814524564 -901.4656819339243 92.7814 0.1144 6028 +6030 2 -11.66650599301019 -902.3401925451528 94.5311 0.1144 6029 +6031 2 -11.851191187599568 -903.1908647610501 96.3099 0.1144 6030 +6032 2 -11.593509949686904 -903.6058797844262 98.7311 0.1144 6031 +6033 2 -11.89604296485777 -903.3474354098856 101.1338 0.1144 6032 +6034 2 -12.223702372067095 -902.6745872896778 103.024 0.1144 6033 +6035 2 -12.156795750671762 -902.0667473156605 105.2299 0.1144 6034 +6036 2 -12.53265357640953 -901.5230643705245 107.3957 0.1144 6035 +6037 2 -13.061237162090407 -900.8596249965431 109.275 0.1144 6036 +6038 2 -13.65392091220562 -900.2274870429686 111.043 0.1144 6037 +6039 2 -14.595060328662413 -899.9439366086693 112.4416 0.1144 6038 +6040 2 -15.653746262051612 -899.9232652651267 113.4958 0.1144 6039 +6041 2 -16.739829056991738 -899.9019443238938 114.3708 0.1144 6040 +6042 2 -17.777348920660927 -899.8830527254477 115.5484 0.1144 6041 +6043 2 -45.68577668389841 -914.8474247949384 77.9027 0.1144 5967 +6044 2 -44.60420630448118 -914.5358104750376 78.3348 0.1144 6043 +6045 2 -43.4858463283461 -914.31708520494 78.4767 0.1144 6044 +6046 2 -42.34593627832106 -914.2447514793912 78.5333 0.1144 6045 +6047 2 -41.2037138991077 -914.2745262409221 78.6198 0.1144 6046 +6048 2 -40.13433471513096 -914.6095436746135 79.0023 0.1144 6047 +6049 2 -39.15827273519736 -915.1509942922401 79.5992 0.1144 6048 +6050 2 -38.10937507125536 -915.5160909103797 80.2553 0.1144 6049 +6051 2 -37.00851486541217 -915.3256120212845 80.8559 0.1144 6050 +6052 2 -35.94643003161437 -914.980196466023 81.4568 0.1144 6051 +6053 2 -34.87397228023843 -914.7064631441316 82.159 0.1144 6052 +6054 2 -33.76970557376913 -914.6305668268067 82.8537 0.1144 6053 +6055 2 -32.65900705272327 -914.7226798299414 83.4655 0.1144 6054 +6056 2 -31.603400077496133 -915.0352915441363 84.0358 0.1144 6055 +6057 2 -30.783333716768254 -915.8015126375567 84.5368 0.1144 6056 +6058 2 -29.822847307664773 -916.3875166118842 84.8901 0.1144 6057 +6059 2 -28.74107932654357 -916.7470813001128 85.1094 0.1144 6058 +6060 2 -27.653647965318896 -917.100582480627 85.2505 0.1144 6059 +6061 2 -26.557803530509375 -917.4261405011042 85.2894 0.1144 6060 +6062 2 -25.460980535102294 -917.7469887000182 85.2782 0.1144 6061 +6063 2 -24.393460180601835 -918.1421912211731 85.4938 0.1144 6062 +6064 2 -23.360713418893482 -918.5749667012789 86.0471 0.1144 6063 +6065 2 -22.318592845268483 -918.9334299909301 86.7846 0.1144 6064 +6066 2 -21.238068006269827 -918.9850474521902 87.5711 0.1144 6065 +6067 2 -20.187187378787854 -918.6935885069115 88.342 0.1144 6066 +6068 2 -19.166234662697093 -918.2661697877297 89.0487 0.1144 6067 +6069 2 -18.10271335894467 -917.9427605168904 89.6717 0.1144 6068 +6070 2 -16.993428383405984 -917.9430116025123 90.2056 0.1144 6069 +6071 2 -15.878513565022331 -918.1292546902998 90.6209 0.1144 6070 +6072 2 -14.746525443739984 -918.2122724792108 90.8975 0.1144 6071 +6073 2 -13.6202623554382 -918.0652216175035 91.0832 0.1144 6072 +6074 2 -12.504992654791181 -917.8174073426549 91.2318 0.1144 6073 +6075 2 -11.390034787322179 -917.5645026100598 91.3405 0.1144 6074 +6076 2 -10.330589120661898 -917.1536848774888 91.5183 0.1144 6075 +6077 2 -9.341848920295291 -916.5995751806065 91.859 0.1144 6076 +6078 2 -8.276719961677856 -916.7157076545944 92.3586 0.1144 6077 +6079 2 -7.237695458259196 -917.1325341548264 92.9214 0.1144 6078 +6080 2 -6.349983471050109 -917.8142139020429 93.4458 0.1144 6079 +6081 2 -5.497802507531986 -918.5540042881777 93.9109 0.1144 6080 +6082 2 -4.683925594081444 -919.3428107915436 94.2948 0.1144 6081 +6083 2 -4.102319719956171 -920.3174669499824 94.5605 0.1144 6082 +6084 2 -3.747946509133641 -921.4008085569797 94.7279 0.1144 6083 +6085 2 -3.5988479174480688 -922.53250366166 94.8259 0.1144 6084 +6086 2 -3.370184809378287 -923.6515631922516 94.9298 0.1144 6085 +6087 2 -3.2617200107663393 -924.789336525329 95.0121 0.1144 6086 +6088 2 -3.2419947196785586 -925.933412223389 95.0494 0.1144 6087 +6089 2 -3.2355946545464462 -927.077579317465 95.0432 0.1144 6088 +6090 2 -3.2298558062041423 -928.2208616560059 94.9911 0.1144 6089 +6091 2 -3.2240317650120858 -929.3640916287342 94.89 0.1144 6090 +6092 2 -3.602667843103177 -930.4346930486696 94.6943 0.1144 6091 +6093 2 -4.141838674489861 -931.4362338938586 94.4124 0.1144 6092 +6094 2 -4.627046692727646 -932.4623565371317 94.0607 0.1144 6093 +6095 2 -4.834329218135537 -933.571305446983 93.6258 0.1144 6094 +6096 2 -5.012552464246312 -934.6839904358931 93.1496 0.1144 6095 +6097 2 -5.013199883359505 -935.8122999461111 92.7044 0.1144 6096 +6098 2 -4.4858087015090575 -936.8188718865637 92.3902 0.1144 6097 +6099 2 -3.8641590863962563 -937.7756049089007 92.1824 0.1144 6098 +6100 2 -3.2461610500289453 -938.737282218109 92.0618 0.1144 6099 +6101 2 -2.6275869897215216 -939.6998966486651 92.006 0.1144 6100 +6102 2 -2.010035243611668 -940.663139468974 91.9901 0.1144 6101 +6103 2 -1.389193016164029 -941.6229511476995 91.9901 0.1144 6102 +6104 2 -0.7677223989635422 -942.5837851406225 91.9901 0.1144 6103 +6105 2 -59.34023593787643 -918.2196192572218 79.6278 0.1144 5954 +6106 2 -59.79230492671087 -917.169448495234 79.655 0.1144 6105 +6107 2 -60.3567166605562 -916.1748330898145 79.6648 0.1144 6106 +6108 2 -60.845571043540815 -915.1633545076207 79.6606 0.1144 6107 +6109 2 -60.829069142152804 -914.0213087172731 79.6519 0.1144 6108 +6110 2 -60.7261451646105 -912.882366916808 79.6527 0.1144 6109 +6111 2 -60.709334531627604 -911.7387227883228 79.6538 0.1144 6110 +6112 2 -60.76180350779504 -910.5959928567379 79.6555 0.1144 6111 +6113 2 -60.88675117843462 -909.4709334895924 79.6578 0.1144 6112 +6114 2 -61.22348636776616 -908.3834409552429 79.6611 0.1144 6113 +6115 2 -61.306651299034996 -907.2474888065117 79.6656 0.1144 6114 +6116 2 -61.24711460216736 -906.105753464269 79.6718 0.1144 6115 +6117 2 -61.3582579295568 -904.9788996313443 79.6802 0.1144 6116 +6118 2 -61.71156738693202 -903.8907958369713 79.693 0.1144 6117 +6119 2 -62.06228901900906 -902.8025099431028 79.7107 0.1144 6118 +6120 2 -62.46081004298816 -901.730223678411 79.7345 0.1144 6119 +6121 2 -62.85844631143223 -900.6572761969293 79.763 0.1144 6120 +6122 2 -63.232651444599156 -899.5766169128293 79.8098 0.1144 6121 +6123 2 -63.5046518765773 -898.4722228640389 79.8986 0.1144 6122 +6124 2 -63.64907347373682 -897.3416438786186 79.9901 0.1144 6123 +6125 2 -64.01876968372687 -896.2704206748376 80.0607 0.1144 6124 +6126 2 -64.59832541882747 -895.2838227020483 80.094 0.1144 6125 +6127 2 -64.99274167810086 -894.242466857766 80.0733 0.1144 6126 +6128 2 -64.94309906560542 -893.1041133928771 80.0685 0.1144 6127 +6129 2 -64.92867943774255 -891.9982096021555 80.1102 0.1144 6128 +6130 2 -65.37063941567243 -890.9471072294494 80.248 0.1144 6129 +6131 2 -65.77410403398625 -889.8952320126253 80.4488 0.1144 6130 +6132 2 -65.94899022252207 -888.7674150323226 80.6263 0.1144 6131 +6133 2 -66.19716249319526 -887.6603472728475 80.801 0.1144 6132 +6134 2 -66.61898491876889 -886.5982754432225 80.9416 0.1144 6133 +6135 2 -67.00682090790323 -885.5259946891603 81.0172 0.1144 6134 +6136 2 -67.3623985324187 -884.4406936466178 81.0827 0.1144 6135 +6137 2 -67.77779945445329 -883.3760832559241 81.1306 0.1144 6136 +6138 2 -67.96944131799165 -882.2691298169125 81.1437 0.1144 6137 +6139 2 -67.8974313236663 -881.1278267367811 81.1042 0.1144 6138 +6140 2 -67.88079968859572 -879.9882835788819 81.0407 0.1144 6139 +6141 2 -67.9899780698102 -878.8495402974197 80.9998 0.1144 6140 +6142 2 -68.11025494908995 -877.712219457766 80.9998 0.1144 6141 +6143 2 -68.0643491081897 -876.5788626455611 81.0306 0.1144 6142 +6144 2 -67.72902914606954 -875.4945075316783 81.0522 0.1144 6143 +6145 2 -67.27999664703142 -874.4423775469295 81.0642 0.1144 6144 +6146 2 -67.09040450892721 -873.3374943715805 81.0743 0.1144 6145 +6147 2 -67.29893247368724 -872.2248392147989 81.0972 0.1144 6146 +6148 2 -67.46019021530213 -871.1060175351871 81.2151 0.1144 6147 +6149 2 -67.62202087927406 -869.9929475301117 81.6175 0.1144 6148 +6150 2 -67.74598457338277 -868.8780823667207 82.15 0.1144 6149 +6151 2 -67.41596379237535 -867.8049664111487 82.5801 0.1144 6150 +6152 2 -67.46650856908107 -866.6785434552623 82.9296 0.1144 6151 +6153 2 -67.43495336991708 -865.539217632942 83.1883 0.1144 6152 +6154 2 -67.72860449953936 -864.445431943663 83.4988 0.1144 6153 +6155 2 -67.92015876118134 -863.3210523081098 83.7264 0.1144 6154 +6156 2 -67.99240729388046 -862.181089892272 83.8838 0.1144 6155 +6157 2 -68.10359747645305 -861.0434658316528 83.9944 0.1144 6156 +6158 2 -67.92651146855047 -860.5734351562655 84.028 0.1144 6157 +6159 2 -67.47841609086018 -859.5218811954568 84.0784 0.1144 6158 +6160 2 -67.46804368269741 -858.4640088528988 84.0868 0.1144 6159 +6161 2 -67.65830523621366 -857.3482250829624 84.0703 0.1144 6160 +6162 2 -67.61088935160868 -856.208540572281 84.0434 0.1144 6161 +6163 2 -67.5415000096186 -855.0675571503076 84.0092 0.1144 6162 +6164 2 -67.57081065348365 -853.9252649914637 83.967 0.1144 6163 +6165 2 -67.32858984960609 -852.8405015462054 83.8695 0.1144 6164 +6166 2 -67.02597523489885 -851.7466696052904 83.75 0.1144 6165 +6167 2 -66.82004088501259 -850.6223508410883 83.6506 0.1144 6166 +6168 2 -66.68993187086872 -849.4882971675621 83.566 0.1144 6167 +6169 2 -66.84102823576626 -848.3686290700819 83.4935 0.1144 6168 +6170 2 -67.07321629048198 -847.2503276629258 83.4299 0.1144 6169 +6171 2 -67.28570215653588 -846.1268413004241 83.3652 0.1144 6170 +6172 2 -67.62667587511598 -845.0391369411252 83.263 0.1144 6171 +6173 2 -67.98060279568102 -843.9542298230274 83.1312 0.1144 6172 +6174 2 -67.83988472948917 -842.8658894737582 82.9968 0.1144 6173 +6175 2 -67.44445084460932 -841.7943533415216 82.8442 0.1144 6174 +6176 2 -67.22015868746323 -840.6802311901204 82.7187 0.1144 6175 +6177 2 -67.14347169861182 -839.5400442292491 82.6423 0.1144 6176 +6178 2 -66.98275743284591 -838.4099501735266 82.6098 0.1144 6177 +6179 2 -66.7742352576615 -837.2854493098291 82.6134 0.1144 6178 +6180 2 -66.9353632655938 -836.1691302626658 82.6568 0.1144 6179 +6181 2 -67.16451720475385 -835.0490812449137 82.7543 0.1144 6180 +6182 2 -67.43500759302722 -833.9383594976467 82.8775 0.1144 6181 +6183 2 -67.8373177544143 -832.8709846927892 82.9976 0.1144 6182 +6184 2 -68.39914166296148 -831.8761871878744 83.0606 0.1144 6183 +6185 2 -68.98297736656036 -830.8935111877587 83.1393 0.1144 6184 +6186 2 -69.45205288554988 -829.8552024632048 83.3549 0.1144 6185 +6187 2 -69.81480703545674 -828.7756038309691 83.6189 0.1144 6186 +6188 2 -70.08881926879289 -827.6723290030218 83.9289 0.1144 6187 +6189 2 -70.54676346268025 -826.6324602779969 84.2346 0.1144 6188 +6190 2 -70.87565780824738 -825.5468388847598 84.5883 0.1144 6189 +6191 2 -71.15951176014306 -824.4470311270162 84.9184 0.1144 6190 +6192 2 -71.69554807183988 -823.4483554977238 85.2726 0.1144 6191 +6193 2 -72.2893490245147 -822.4800215271318 85.5994 0.1144 6192 +6194 2 -72.69820421995726 -821.4260602426627 86.0188 0.1144 6193 +6195 2 -72.36972011223236 -821.0079343394085 86.5774 0.1144 6194 +6196 2 -71.44973794049855 -820.3834028880854 87.061 0.1144 6195 +6197 2 -70.5682843638657 -819.6589520324428 87.2245 0.1144 6196 +6198 2 -69.80238362113974 -818.8122023927665 87.3303 0.1144 6197 +6199 2 -69.10966704642007 -817.9029163832466 87.4056 0.1144 6198 +6200 2 -68.48943906876221 -816.9415828637382 87.4516 0.1144 6199 +6201 2 -67.80161441510111 -816.0287304683227 87.4712 0.1144 6200 +6202 2 -67.08206769802129 -815.1392233227979 87.4667 0.1144 6201 +6203 2 -66.4345304607088 -814.1959655975213 87.4527 0.1144 6202 +6204 2 -65.9452574005052 -813.1634707149389 87.4297 0.1144 6203 +6205 2 -65.70983391825698 -812.0477885630667 87.3933 0.1144 6204 +6206 2 -65.71502956969624 -810.905580904536 87.3729 0.1144 6205 +6207 2 -65.4022535782716 -809.8109025457528 87.3424 0.1144 6206 +6208 2 -64.46948937748519 -809.1852050184033 87.2029 0.1144 6207 +6209 2 -63.492203954498336 -808.5992832471595 86.9814 0.1144 6208 +6210 2 -62.515494555451596 -808.0124243545681 86.7177 0.1144 6209 +6211 2 -62.671529412502224 -806.8016524630108 86.5889 0.1144 6210 +6212 2 -62.56298039252309 -805.6674697483384 86.6023 0.1144 6211 +6213 2 -62.39807996332141 -804.5375023247154 86.688 0.1144 6212 +6214 2 -62.37267036313855 -803.3992542839886 86.8512 0.1144 6213 +6215 2 -62.48902526974453 -802.2662134128332 87.0778 0.1144 6214 +6216 2 -62.631528870608435 -801.1385638113429 87.3905 0.1144 6215 +6217 2 -62.572388507232006 -800.0158530037795 87.7568 0.1144 6216 +6218 2 -62.27079620672234 -798.9226494526175 88.0379 0.1144 6217 +6219 2 -61.86035046331628 -797.8579670860313 88.202 0.1144 6218 +6220 2 -61.47926722017266 -796.7804619436791 88.275 0.1144 6219 +6221 2 -61.2239235211471 -795.6687338989811 88.3002 0.1144 6220 +6222 2 -61.052025564466305 -794.5371650356376 88.3075 0.1144 6221 +6223 2 -60.8971927069195 -793.4039954251095 88.3168 0.1144 6222 +6224 2 -60.74298823912551 -792.2698035003841 88.3392 0.1144 6223 +6225 2 -60.57621356722828 -791.138684028881 88.3663 0.1144 6224 +6226 2 -60.37085524128213 -790.0134281433312 88.3758 0.1144 6225 +6227 2 -60.13208891188336 -788.8944000427254 88.3512 0.1144 6226 +6228 2 -59.88493854181715 -787.7783177632423 88.2938 0.1144 6227 +6229 2 -59.63668066470356 -786.6615547281937 88.2109 0.1144 6228 +6230 2 -59.389392735974866 -785.5455052757477 88.1096 0.1144 6229 +6231 2 -59.15734802949734 -784.4266178353874 87.9928 0.1144 6230 +6232 2 -58.948249830372816 -783.3030540930376 87.8615 0.1144 6231 +6233 2 -58.74966549316062 -782.1778536748837 87.7223 0.1144 6232 +6234 2 -58.55099596309864 -781.052600890917 87.584 0.1144 6233 +6235 2 -58.35392477117435 -779.9270393753552 87.4549 0.1144 6234 +6236 2 -58.12495872108525 -778.80734454733 87.3502 0.1144 6235 +6237 2 -57.833652020345994 -777.7017997467432 87.2883 0.1144 6236 +6238 2 -57.423206276939936 -776.637117380157 87.2836 0.1144 6237 +6239 2 -56.816303525237714 -775.6758752566644 87.3488 0.1144 6238 +6240 2 -56.21938625392366 -774.7046897845702 87.4824 0.1144 6239 +6241 2 -55.8270279238491 -773.6390350605525 87.6616 0.1144 6240 +6242 2 -55.25572707645293 -772.670096547661 87.85 0.1144 6241 +6243 2 -54.46415374987663 -771.8519365641291 88.0124 0.1144 6242 +6244 2 -53.63315276042957 -771.0671753739967 88.1426 0.1144 6243 +6245 2 -52.94969326811653 -770.1582973170676 88.226 0.1144 6244 +6246 2 -52.83806730825887 -769.0663584474023 88.2193 0.1144 6245 +6247 2 -52.9414088220872 -767.9281357224844 88.1269 0.1144 6246 +6248 2 -52.0840503083416 -767.5206335029716 88.0855 0.1144 6247 +6249 2 -50.947264053378206 -767.395285704721 88.1289 0.1144 6248 +6250 2 -49.8073546958897 -767.2988893525591 88.198 0.1144 6249 +6251 2 -48.6637636257538 -767.2915521660791 88.1521 0.1144 6250 +6252 2 -47.521955402297436 -767.298692253435 87.9939 0.1144 6251 +6253 2 -46.38312892858397 -767.3076651442366 87.7489 0.1144 6252 +6254 2 -45.246391624098464 -767.3153398162829 87.4395 0.1144 6253 +6255 2 -44.10687860010117 -767.2379679988002 87.2536 0.1144 6254 +6256 2 -43.73768432574295 -767.0848664384519 87.1847 0.1144 6255 +6257 2 -42.68203159061039 -766.6482087432178 87.0856 0.1144 6256 +6258 2 -41.62389576180507 -766.2111985627888 87.0537 0.1144 6257 +6259 2 -40.56730590532473 -765.7739648436147 87.0492 0.1144 6258 +6260 2 -39.51071604884439 -765.3367311244406 87.0537 0.1144 6259 +6261 2 -38.45258022003907 -764.8997209440117 87.0514 0.1144 6260 +6262 2 -37.395990363558724 -764.4624872248376 87.0461 0.1144 6261 +6263 2 -36.33931531422854 -764.0252011398508 87.0411 0.1144 6262 +6264 2 -35.28126467827309 -763.5882433252345 87.0363 0.1144 6263 +6265 2 -34.22458962894291 -763.1509572402476 87.0316 0.1144 6264 +6266 2 -33.167062651114804 -762.7131474971335 87.0274 0.1144 6265 +6267 2 -32.109863943657245 -762.2767133406446 87.0237 0.1144 6266 +6268 2 -31.05327408717693 -761.8394796214704 87.0209 0.1144 6267 +6269 2 -29.99566191649899 -761.4016175125436 87.0195 0.1144 6268 +6270 2 -28.939124425831352 -760.9642986005197 87.0195 0.1144 6269 +6271 2 -27.880936231213354 -760.5273736129406 87.022 0.1144 6270 +6272 2 -26.824346374732983 -760.0901398937664 87.0276 0.1144 6271 +6273 2 -25.767808884065374 -759.6528209817425 87.0377 0.1144 6272 +6274 2 -24.70962068944735 -759.2158959941634 87.054 0.1144 6273 +6275 2 -23.653030832967005 -758.7786622749893 87.0794 0.1144 6274 +6276 2 -22.596493342299397 -758.3413433629653 87.1175 0.1144 6275 +6277 2 -21.538305147681342 -757.9044183753862 87.1721 0.1144 6276 +6278 2 -20.481715291201 -757.4671846562121 87.246 0.1144 6277 +6279 2 -19.44537220535861 -756.9859359591471 87.3617 0.1144 6278 +6280 2 -18.437918610954142 -756.4511947646226 87.5384 0.1144 6279 +6281 2 -17.438482449179844 -755.9013095688429 87.7685 0.1144 6280 +6282 2 -16.440953357138085 -755.3527139796058 88.037 0.1144 6281 +6283 2 -15.444413752256878 -754.8046092214589 88.3294 0.1144 6282 +6284 2 -14.447874147375586 -754.2565044633122 88.6315 0.1144 6283 +6285 2 -13.450758518554238 -753.7093368265132 88.9291 0.1144 6284 +6286 2 -12.453281792325214 -753.1606560444263 89.2114 0.1144 6285 +6287 2 -11.454154362145886 -752.6123691867841 89.4723 0.1144 6286 +6288 2 -10.45565532171932 -752.0630600149444 89.7086 0.1144 6287 +6289 2 -9.358564430419818 -751.800948156709 89.8988 0.1144 6288 +6290 2 -8.234889469189795 -751.9468271528144 89.9996 0.1144 6289 +6291 2 -7.112568478199677 -752.1647885099007 90.0304 0.1144 6290 +6292 2 -5.988734341921713 -752.383110964395 90.0127 0.1144 6291 +6293 2 -4.866465716744358 -752.6009871286316 89.964 0.1144 6292 +6294 2 -3.7435687018141266 -752.8198856070658 89.9018 0.1144 6293 +6295 2 -2.620938979229038 -753.0362486260146 89.8425 0.1144 6294 +6296 2 -1.497104842951103 -753.2545710805086 89.7985 0.1144 6295 +6297 2 -0.3748362177736908 -753.4724472447454 89.7778 0.1144 6296 +6298 2 0.7490831113540537 -753.6907173334267 89.7879 0.1144 6297 +6299 2 1.8706905197415438 -753.9077087421283 89.8349 0.1144 6298 +6300 2 3.0060289994025595 -753.858491909632 89.9606 0.1144 6299 +6301 2 3.686195601331292 -752.9704188250153 90.2124 0.1144 6300 +6302 2 4.336988083898007 -752.0412413475468 90.5702 0.1144 6301 +6303 2 4.9862259819270776 -751.1158365702938 91.005 0.1144 6302 +6304 2 5.631407450203028 -750.1928077933896 91.4914 0.1144 6303 +6305 2 6.277845697984645 -749.2718236448804 92.006 0.1144 6304 +6306 2 6.944328385596577 -748.3679812708386 92.5352 0.1144 6305 +6307 2 8.066794132725647 -748.3306679150261 93.042 0.1144 6306 +6308 2 9.192638655625416 -748.2965598477015 93.5379 0.1144 6307 +6309 2 10.31845035148811 -748.2625893390396 94.0251 0.1144 6308 +6310 2 11.44531718858542 -748.2278528819622 94.5064 0.1144 6309 +6311 2 12.572151198645656 -748.1932539835473 94.9841 0.1144 6310 +6312 2 13.698624111298287 -748.1601682304204 95.4593 0.1144 6311 +6313 2 14.825458121358494 -748.1255693320055 95.9344 0.1144 6312 +6314 2 15.952239765606052 -748.0908852407409 96.4093 0.1144 6313 +6315 2 17.079649799606372 -748.0572234636738 96.8839 0.1144 6314 +6316 2 18.206483809666665 -748.0226245652591 97.358 0.1144 6315 +6317 2 19.333979036516794 -747.9889104223791 97.8306 0.1144 6316 +6318 2 20.460813046577087 -747.9543115239644 98.3027 0.1144 6317 +6319 2 21.588223080577407 -747.9206497468973 98.7728 0.1144 6318 +6320 2 22.715633114577784 -747.8869879698302 99.2412 0.1144 6319 +6321 2 23.842414758825313 -747.8523038785656 99.706 0.1144 6320 +6322 2 24.970847107023204 -747.8180137117456 100.1666 0.1144 6321 +6323 2 26.099279455221122 -747.7837235449258 100.6205 0.1144 6322 +6324 2 27.227626610569246 -747.7494857439186 101.0668 0.1144 6323 +6325 2 28.35820049380787 -747.716578988704 101.5014 0.1144 6324 +6326 2 29.481963056934177 -747.8450317882678 101.9124 0.1144 6325 +6327 2 30.60705976743607 -747.9779466558253 102.3036 0.1144 6326 +6328 2 31.732647309028224 -748.1118510105433 102.669 0.1144 6327 +6329 2 32.824035186473694 -748.4280581435514 102.9924 0.1144 6328 +6330 2 33.77664620826582 -749.0537649927709 103.2494 0.1144 6329 +6331 2 34.73121666560323 -749.6782674282974 103.4536 0.1144 6330 +6332 2 35.682080076799366 -750.3009401619613 103.7694 0.1144 6331 +6333 2 -43.236338924002325 -767.1097117227833 88.2 0.1144 6255 +6334 2 -42.3063230196459 -766.9731857265625 89.7842 0.1144 6333 +6335 2 -41.25858361872835 -766.9038638846584 90.8404 0.1144 6334 +6336 2 -40.19711034672781 -766.8677703557581 91.8826 0.1144 6335 +6337 2 -39.12547810705644 -766.8482042397183 92.8586 0.1144 6336 +6338 2 -38.02946599166057 -766.848631914206 93.6586 0.1144 6337 +6339 2 -36.91853031217141 -766.8492769242727 94.3286 0.1144 6338 +6340 2 -36.04835782997213 -767.1027337671928 92.9306 0.1144 6339 +6341 2 -35.512377991959454 -767.9441539138757 91.8627 0.1144 6340 +6342 2 -35.175658215847164 -768.972613408642 90.9572 0.1144 6341 +6343 2 -34.8528396896306 -770.0002271780766 90.015 0.1144 6342 +6344 2 -34.334870275864375 -770.945448647576 89.0814 0.1144 6343 +6345 2 -33.433140309249666 -771.5540698822606 88.2437 0.1144 6344 +6346 2 -32.47721588167235 -772.1064899568062 87.5146 0.1144 6345 +6347 2 -31.51331305166812 -772.6608139995012 86.8538 0.1144 6346 +6348 2 -31.397061160177714 -773.7522480276152 86.2428 0.1144 6347 +6349 2 -31.54935614919259 -774.867776515069 85.7371 0.1144 6348 +6350 2 -31.709224689626694 -775.9839693208958 85.2715 0.1144 6349 +6351 2 -31.868963496378143 -777.1026647591709 84.8375 0.1144 6350 +6352 2 -32.02901103472453 -778.2229585355838 84.4348 0.1144 6351 +6353 2 -31.802269024533416 -779.3323998863609 84.0543 0.1144 6352 +6354 2 -31.167620044789146 -780.2730432685785 83.6965 0.1144 6353 +6355 2 -30.548211878249532 -781.1934748321528 83.0155 0.1144 6354 +6356 2 -37.87548787954191 -767.3219910178349 94.8676 0.1144 6339 +6357 2 -38.887057165215055 -767.821582801477 95.3299 0.1144 6356 +6358 2 -39.91083555758382 -768.3165889866088 95.6245 0.1144 6357 +6359 2 -40.94450252369512 -768.80429201425 95.7466 0.1144 6358 +6360 2 -41.979735000907056 -769.2915487516335 95.7457 0.1144 6359 +6361 2 -43.01442428121595 -769.7798801690274 95.6572 0.1144 6360 +6362 2 -44.04712129894244 -770.2668696140657 95.5142 0.1144 6361 +6363 2 -45.080479533458856 -770.7529743035691 95.3534 0.1144 6362 +6364 2 -46.114146499570154 -771.2406773312101 95.2078 0.1144 6363 +6365 2 -46.92577406245641 -770.6760939988637 95.1446 0.1144 6364 +6366 2 -47.865295016137594 -770.0235601088673 95.1734 0.1144 6365 +6367 2 -48.803878848471044 -769.3704501949306 95.2739 0.1144 6366 +6368 2 -49.74233294712184 -768.7198429134423 95.4268 0.1144 6367 +6369 2 -50.678690051564786 -768.0680640452983 95.6318 0.1144 6368 +6370 2 -51.6145563249174 -767.4172746643146 95.8894 0.1144 6369 +6371 2 -52.55758509551538 -766.7830954799949 96.2094 0.1144 6370 +6372 2 -53.62860267180636 -766.5000283655577 96.6792 0.1144 6371 +6373 2 -54.73962974731148 -766.4860581295354 97.3134 0.1144 6372 +6374 2 -55.83875265359629 -766.5090232526582 98.0916 0.1144 6373 +6375 2 -56.920992560242496 -766.531001297667 98.9918 0.1144 6374 +6376 2 -57.987768807475476 -766.5475825623809 100.0017 0.1144 6375 +6377 2 -58.971217740698535 -766.4833647631157 101.4014 0.1144 6376 +6378 2 -58.924842596104156 -765.8881449499677 103.6174 0.1144 6377 +6379 2 -58.943368877454304 -765.1502912877153 105.5992 0.1144 6378 +6380 2 -59.325940530796544 -764.4010931496643 107.4959 0.1144 6379 +6381 2 -59.79694055102145 -763.6392252077294 109.2342 0.1144 6380 +6382 2 -60.840376064683056 -763.366084312165 110.0896 0.1144 6381 +6383 2 -61.94016849819681 -763.0994131603958 110.5003 0.1144 6382 +6384 2 -46.45438521996837 -771.547826078793 94.6865 0.1144 6364 +6385 2 -47.29390850128203 -772.3055459941526 94.274 0.1144 6384 +6386 2 -48.14091703958198 -773.0705666579564 94.0971 0.1144 6385 +6387 2 -48.98795840491897 -773.835724880423 93.8834 0.1144 6386 +6388 2 -49.83402982187113 -774.6001695202867 93.6502 0.1144 6387 +6389 2 -50.67916411747555 -775.3640381362104 93.4108 0.1144 6388 +6390 2 -51.525863924180584 -776.1274604618767 93.179 0.1144 6389 +6391 2 -52.37193534113277 -776.8919051017406 92.9636 0.1144 6390 +6392 2 -53.212343377981426 -777.6502862338899 92.5509 0.1144 6391 +6393 2 -62.445207352786326 -807.9759113549447 85.7503 0.1144 6210 +6394 2 -61.54587338736334 -807.4379043023548 84.6306 0.1144 6393 +6395 2 -60.791555770626616 -806.6049652090949 84.1148 0.1144 6394 +6396 2 -60.22733764355934 -805.6376805017368 83.5537 0.1144 6395 +6397 2 -59.52929786229495 -804.7721921345288 82.9276 0.1144 6396 +6398 2 -58.52591579711117 -804.3072127680323 82.2335 0.1144 6397 +6399 2 -57.43945618977048 -804.0933058452431 81.5318 0.1144 6398 +6400 2 -56.35233226405677 -803.8869724738731 80.827 0.1144 6399 +6401 2 -55.252337606409725 -803.7869392636483 80.1111 0.1144 6400 +6402 2 -54.14509115079608 -803.8274137807066 79.4562 0.1144 6401 +6403 2 -53.07170178870206 -803.5637894697198 78.8301 0.1144 6402 +6404 2 -52.117847500992355 -802.9855795010944 78.2286 0.1144 6403 +6405 2 -51.27488687492911 -802.244527658841 77.8078 0.1144 6404 +6406 2 -50.58982904447842 -801.3359583335068 77.5373 0.1144 6405 +6407 2 -49.92093442789752 -800.4427236264398 76.9474 0.1144 6406 +6408 2 -49.27287932717593 -799.587770044993 75.9825 0.1144 6407 +6409 2 -48.69763828209918 -799.4007477199646 75.3278 0.1144 6408 +6410 2 -47.658623486170825 -799.0615308220335 74.5111 0.1144 6409 +6411 2 -46.612611162763386 -798.7207124843817 73.7498 0.1144 6410 +6412 2 -45.55849380482948 -798.3776119514437 73.0503 0.1144 6411 +6413 2 -44.61849932776576 -797.7944224598633 72.3985 0.1144 6412 +6414 2 -44.172797364242 -796.7979826675471 71.778 0.1144 6413 +6415 2 -43.89627597639691 -795.7163159850315 71.1802 0.1144 6414 +6416 2 -43.18250455083751 -794.8720289236271 70.5874 0.1144 6415 +6417 2 -42.17467444580615 -794.394807623398 70.0389 0.1144 6416 +6418 2 -41.09635310847693 -794.0824906474576 69.5094 0.1144 6417 +6419 2 -39.99076556057844 -794.2273972861317 68.966 0.1144 6418 +6420 2 -38.86955728549165 -794.163976675311 68.4608 0.1144 6419 +6421 2 -37.7954782715307 -793.820696451924 68.0193 0.1144 6420 +6422 2 -36.72880543017618 -793.445697959238 67.5931 0.1144 6421 +6423 2 -35.69480339268773 -793.0196486235154 67.0127 0.1144 6422 +6424 2 -34.67345675215225 -792.5905792003833 66.3146 0.1144 6423 +6425 2 -34.47645764793759 -792.5702016897744 65.6785 0.1144 6424 +6426 2 -33.4378891422667 -792.232550302944 64.8586 0.1144 6425 +6427 2 -32.409445060719634 -791.8367974872485 64.1077 0.1144 6426 +6428 2 -31.413234010297685 -791.366835496214 63.3562 0.1144 6427 +6429 2 -30.43156732020688 -790.86003505268 62.6371 0.1144 6428 +6430 2 -29.378381572991117 -790.5068255088372 61.9696 0.1144 6429 +6431 2 -28.296751932058356 -790.2327366001678 61.3514 0.1144 6430 +6432 2 -27.211873249037524 -789.9593503475379 60.769 0.1144 6431 +6433 2 -26.126685834421778 -789.6843657567704 60.202 0.1144 6432 +6434 2 -25.056472633202105 -789.3676421802322 59.6456 0.1144 6433 +6435 2 -24.19034205573695 -788.6553097278057 59.0957 0.1144 6434 +6436 2 -23.270256176350927 -788.0964477461372 58.3898 0.1144 6435 +6437 2 -22.17736206129848 -787.9564091325916 57.6428 0.1144 6436 +6438 2 -21.091480886944453 -787.7589389191835 56.917 0.1144 6437 +6439 2 -19.990049066806222 -787.704974619994 56.2218 0.1144 6438 +6440 2 -18.877896661988018 -787.759923309305 55.6175 0.1144 6439 +6441 2 -17.75932686150213 -787.6551631477879 55.1113 0.1144 6440 +6442 2 -16.649565160030335 -787.455104416545 54.6431 0.1144 6441 +6443 2 -15.792007825508165 -786.9669567974715 54.0389 0.1144 6442 +6444 2 -15.300039438234563 -786.0307007075456 53.0471 0.1144 6443 +6445 2 -14.282310436444902 -786.1504970719152 52.0895 0.1144 6444 +6446 2 -13.253789679564562 -785.7330990692052 51.4178 0.1144 6445 +6447 2 -13.35479576177866 -785.8462454847727 50.8936 0.1144 6446 +6448 2 -13.831532646868027 -785.7283331766989 50.0559 0.1144 6447 +6449 2 -13.463348162286877 -784.7258983482368 49.5603 0.1144 6448 +6450 2 -12.627167728123794 -783.9715243816111 49.2167 0.1144 6449 +6451 2 -11.700384849088863 -783.3078332522988 48.993 0.1144 6450 +6452 2 -10.772218558448742 -782.6420005879459 48.8452 0.1144 6451 +6453 2 -9.843029953611051 -781.97553953384 48.7648 0.1144 6452 +6454 2 -8.91384134877336 -781.3090784797342 48.7304 0.1144 6453 +6455 2 -7.983767988400643 -780.6419562088386 48.7138 0.1144 6454 +6456 2 -7.054003359622897 -779.9764322760806 48.7001 0.1144 6455 +6457 2 -6.123877633437388 -779.3093951980347 48.6864 0.1144 6456 +6458 2 -5.1947742214495065 -778.6429865097416 48.6727 0.1144 6457 +6459 2 -4.264563302414274 -777.9758970658831 48.6592 0.1144 6458 +6460 2 -3.3348838664862512 -777.3104254989378 48.6461 0.1144 6459 +6461 2 -2.404758140300828 -776.6433884208918 48.6329 0.1144 6460 +6462 2 -1.475621901275872 -775.9768421739363 48.62 0.1144 6461 +6463 2 -0.5454961750903919 -775.3098050958904 48.6072 0.1144 6462 +6464 2 0.383692429747299 -774.6433440417846 48.5948 0.1144 6463 +6465 2 1.3143941798728065 -773.9772440850866 48.5831 0.1144 6464 +6466 2 2.2447871984034578 -773.3127424665261 48.5719 0.1144 6465 +6467 2 3.2515412383514217 -772.7879391099739 48.5626 0.1144 6466 +6468 2 4.321184210349173 -772.3828261967561 48.5551 0.1144 6467 +6469 2 5.391507937912536 -771.9788207905858 48.5489 0.1144 6468 +6470 2 6.461150909910373 -771.5737078773681 48.5433 0.1144 6469 +6471 2 7.531507464510781 -771.1695649125352 48.5374 0.1144 6470 +6472 2 8.601831192074144 -770.7655595063649 48.5296 0.1144 6471 +6473 2 9.671474164071896 -770.3604465931471 48.5195 0.1144 6472 +6474 2 10.741745525822552 -769.9563559941271 48.505 0.1144 6473 +6475 2 11.811440863633095 -769.551328273759 48.4845 0.1144 6474 +6476 2 12.88113620144361 -769.1463005533913 48.4562 0.1144 6475 +6477 2 13.951407563194238 -768.742209954371 48.4168 0.1144 6476 +6478 2 15.021678924944865 -768.338119355351 48.3608 0.1144 6477 +6479 2 16.09137426275541 -767.933091634983 48.2818 0.1144 6478 +6480 2 17.160708503158276 -767.529577059903 48.174 0.1144 6479 +6481 2 18.22938152677125 -767.125177729288 48.0323 0.1144 6480 +6482 2 19.275666244705548 -766.6753800091768 47.8097 0.1144 6481 +6483 2 20.299265639161973 -766.1844747946309 47.4799 0.1144 6482 +6484 2 21.374209899545406 -766.0434966506909 47.0361 0.1144 6483 +6485 2 22.46646711930657 -766.3000095273259 46.5352 0.1144 6484 +6486 2 23.572912704173007 -766.4833591598034 46.051 0.1144 6485 +6487 2 24.699636187889567 -766.5360420910207 45.5955 0.1144 6486 +6488 2 25.818957908644663 -766.4214292843811 45.1665 0.1144 6487 +6489 2 26.78579173812159 -765.9036741046107 44.737 0.1144 6488 +6490 2 27.476745697474 -765.0331507470521 44.2529 0.1144 6489 +6491 2 28.032940881281505 -764.0614070732834 43.6856 0.1144 6490 +6492 2 28.63954962207147 -763.1367337008987 42.9853 0.1144 6491 +6493 2 29.316120805187126 -762.2844415185004 42.1327 0.1144 6492 +6494 2 30.010292364663727 -761.46288362887 41.179 0.1144 6493 +6495 2 30.701440735147642 -760.6472923403085 40.1831 0.1144 6494 +6496 2 31.446910607141717 -759.8721435352722 39.2266 0.1144 6495 +6497 2 32.45370709262774 -759.4936878749725 38.4177 0.1144 6496 +6498 2 33.536946690797734 -759.2481893149837 37.7541 0.1144 6497 +6499 2 34.63213120490123 -759.0114296899039 37.1952 0.1144 6498 +6500 2 35.73346131798584 -758.7735922832309 36.7088 0.1144 6499 +6501 2 36.83768798796358 -758.5339744389247 36.2642 0.1144 6500 +6502 2 37.94249068188141 -758.2952937159663 35.8322 0.1144 6501 +6503 2 38.93792888818524 -757.7868363653158 35.3662 0.1144 6502 +6504 2 39.865608141854736 -757.1507656362996 34.8628 0.1144 6503 +6505 2 40.77965584702022 -756.4990108107081 34.3305 0.1144 6504 +6506 2 41.69160655797782 -755.8484275717726 33.7576 0.1144 6505 +6507 2 42.600798270704914 -755.1996575975071 33.1604 0.1144 6506 +6508 2 43.51150312871981 -754.5512487206493 32.5606 0.1144 6507 +6509 2 44.422516718329675 -753.9012415056538 31.9774 0.1144 6508 +6510 2 45.336203326087485 -753.2509998253502 31.4222 0.1144 6509 +6511 2 44.92867277817189 -752.8677595449574 29.7284 0.1144 6510 +6512 2 -12.73938124203184 -785.6438026560905 50.8326 0.1144 6446 +6513 2 -11.701960676369737 -785.4614473163242 49.737 0.1144 6512 +6514 2 -10.60187772428975 -785.3680505361709 49.0728 0.1144 6513 +6515 2 -9.487495489997912 -785.4310190671586 48.4901 0.1144 6514 +6516 2 -8.377561609305417 -785.3798106646166 47.8503 0.1144 6515 +6517 2 -7.293919474478031 -785.128665161717 47.2304 0.1144 6516 +6518 2 -6.2177780098561755 -784.8257873676786 46.6357 0.1144 6517 +6519 2 -5.141416108072264 -784.5146748054312 46.0664 0.1144 6518 +6520 2 -4.074513619502682 -784.1770969923509 45.4969 0.1144 6519 +6521 2 -3.016527347244363 -783.8141286084483 44.9081 0.1144 6520 +6522 2 -1.9616111191618018 -783.4463565979199 44.2957 0.1144 6521 +6523 2 -0.9100822790626353 -783.079375537864 43.6624 0.1144 6522 +6524 2 0.14193739212686296 -782.7133839649688 43.0181 0.1144 6523 +6525 2 1.1918155282756118 -782.3460089804682 42.3732 0.1144 6524 +6526 2 2.2743384422599036 -782.0928516762106 41.725 0.1144 6525 +6527 2 3.315659050458578 -781.7159468063286 41.0472 0.1144 6526 +6528 2 4.252792206712769 -781.1170263629899 40.4205 0.1144 6527 +6529 2 5.086310549290886 -780.367105852145 39.8952 0.1144 6528 +6530 2 5.636718129941869 -779.3882380187978 39.45 0.1144 6529 +6531 2 6.570596040941808 -778.7752373276511 39.0846 0.1144 6530 +6532 2 7.637791847887087 -778.37702813685 38.848 0.1144 6531 +6533 2 8.71118872120931 -777.9845151531895 38.7164 0.1144 6532 +6534 2 9.785522715879296 -777.5914261455889 38.682 0.1144 6533 +6535 2 10.709896767528363 -776.923816145186 39.6357 0.1144 6534 +6536 2 11.65546392121621 -776.3453005465487 40.3242 0.1144 6535 +6537 2 12.608019990170447 -775.7691797471513 40.9704 0.1144 6536 +6538 2 13.563963447108108 -775.1922679972813 41.575 0.1144 6537 +6539 2 14.524324431206594 -774.6114671017746 42.1159 0.1144 6538 +6540 2 15.49100218721864 -774.0279572594998 42.5737 0.1144 6539 +6541 2 16.459063354835877 -773.4423058821843 42.9755 0.1144 6540 +6542 2 17.429083957998444 -772.8554500911758 43.353 0.1144 6541 +6543 2 18.400755265111428 -772.2689882246121 43.7072 0.1144 6542 +6544 2 19.447671474381593 -771.8269016145828 44.0073 0.1144 6543 +6545 2 20.54420995872499 -771.518059628522 44.2316 0.1144 6544 +6546 2 21.64730509622342 -771.2240857391588 44.3982 0.1144 6545 +6547 2 22.75133735506961 -770.9295358258554 44.5236 0.1144 6546 +6548 2 23.856882759203614 -770.6353470099598 44.6242 0.1144 6547 +6549 2 24.961000210899613 -770.3407447308437 44.7154 0.1144 6548 +6550 2 26.06659798084638 -770.0466411077978 44.8132 0.1144 6549 +6551 2 27.170577873879807 -769.7520060016445 44.928 0.1144 6550 +6552 2 28.274610132725982 -769.4574560883412 45.0654 0.1144 6551 +6553 2 29.377705270224396 -769.163482198978 45.2306 0.1144 6552 +6554 2 30.47531843457807 -768.8540970160143 45.4446 0.1144 6553 +6555 2 31.55670060603002 -768.5009282188847 45.7579 0.1144 6554 +6556 2 32.63157297951001 -768.1436615527522 46.1496 0.1144 6555 +6557 2 33.702972772156855 -767.787238202905 46.5937 0.1144 6556 +6558 2 34.772859419515825 -767.4304537556501 47.0677 0.1144 6557 +6559 2 35.84229977661734 -767.0752348194958 47.5527 0.1144 6558 +6560 2 36.91053572002592 -766.7180564477962 48.0318 0.1144 6559 +6561 2 38.024527433229736 -766.496616720301 48.356 0.1144 6560 +6562 2 39.158520838952214 -766.4387188293381 48.6959 0.1144 6561 +6563 2 40.291359787747965 -766.3963205264085 49.072 0.1144 6562 +6564 2 41.36628452704072 -766.0391390531258 49.439 0.1144 6563 +6565 2 42.396749306247145 -765.5615035971398 49.7916 0.1144 6564 +6566 2 43.53023205801503 -765.5791606479911 50.1357 0.1144 6565 +6567 2 44.64323809015612 -765.8081297996632 50.4776 0.1144 6566 +6568 2 45.75482788365498 -766.0393780450387 50.8096 0.1144 6567 +6569 2 46.87988625649018 -766.1831155061035 51.1818 0.1144 6568 +6570 2 48.00642764071138 -766.2332106120226 51.6516 0.1144 6569 +6571 2 49.12847102831873 -766.2780886280956 52.1856 0.1144 6570 +6572 2 50.24810869012329 -766.3257365689622 52.7526 0.1144 6571 +6573 2 51.36618084082724 -766.3729382195713 53.3257 0.1144 6572 +6574 2 52.47573551775767 -766.3583509339499 53.993 0.1144 6573 +6575 2 53.490167521291596 -766.341781980872 55.2863 0.1144 6574 +6576 2 10.260478458820955 -777.2632126445766 36.717 0.1144 6534 +6577 2 11.023568228266612 -776.7350014616513 35.1176 0.1144 6576 +6578 2 11.90483770480543 -776.1261664185395 34.2082 0.1144 6577 +6579 2 12.889647728733593 -775.6726027992195 33.3463 0.1144 6578 +6580 2 13.8893583923076 -775.2891121485688 32.361 0.1144 6579 +6581 2 14.919143830684703 -775.0616804865109 31.2889 0.1144 6580 +6582 2 15.950184332057574 -774.87772991019 30.161 0.1144 6581 +6583 2 16.950253080445464 -775.0955954616154 28.9447 0.1144 6582 +6584 2 17.256483132493685 -774.8925738981732 27.9983 0.1144 6583 +6585 2 18.167420739306806 -774.2882744968052 27.1702 0.1144 6584 +6586 2 19.157929379422 -773.8111359803793 26.3944 0.1144 6585 +6587 2 20.194702726777223 -773.4356176236856 25.6501 0.1144 6586 +6588 2 20.83277165457403 -772.546658067024 24.8702 0.1144 6587 +6589 2 21.381669884056805 -771.5981805587663 24.0662 0.1144 6588 +6590 2 21.92750038371412 -770.6531146533164 23.2282 0.1144 6589 +6591 2 22.47180991310364 -769.7101574558701 22.3671 0.1144 6590 +6592 2 23.01777014644358 -768.7675941828686 21.5111 0.1144 6591 +6593 2 23.56761642383711 -767.8227596411436 20.684 0.1144 6592 +6594 2 24.164948543444723 -766.8982714698375 19.9182 0.1144 6593 +6595 2 24.780638470312155 -765.9839799113322 19.1841 0.1144 6594 +6596 2 25.354610335257732 -765.1330105709616 17.9494 0.1144 6595 +6597 2 16.970622476278976 -776.0069787551387 26.896 0.1144 6583 +6598 2 16.521618003869946 -776.8777382648523 25.8177 0.1144 6597 +6599 2 15.590651973993005 -776.9384334147012 24.885 0.1144 6598 +6600 2 14.70069954449906 -776.3709337025974 23.8498 0.1144 6599 +6601 2 13.934936863015508 -775.6034958838478 22.9608 0.1144 6600 +6602 2 13.210592124071582 -774.7703379461408 22.2341 0.1144 6601 +6603 2 12.144770412004164 -774.7271725886687 21.5592 0.1144 6602 +6604 2 11.382870033795115 -775.5151205524868 20.7539 0.1144 6603 +6605 2 -34.66998036522128 -793.0396539321753 66.5731 0.1144 6424 +6606 2 -34.70221701248738 -794.153809620835 67.1801 0.1144 6605 +6607 2 -34.76309706678367 -795.2454274472692 67.9846 0.1144 6606 +6608 2 -34.01394188882881 -795.9115617575576 68.9478 0.1144 6607 +6609 2 -32.98882113334162 -795.7353582199386 70.1142 0.1144 6608 +6610 2 -50.199163349334384 -798.9285083289092 74.415 0.1144 6408 +6611 2 -51.08990024204604 -798.2942316401034 73.645 0.1144 6610 +6612 2 -52.00750010415484 -797.6403136459651 73.1648 0.1144 6611 +6613 2 -52.91913336519485 -796.9894188408193 72.5914 0.1144 6612 +6614 2 -53.78354395080942 -796.2975246585361 71.9188 0.1144 6613 +6615 2 -54.396837960331794 -795.424278125257 71.111 0.1144 6614 +6616 2 -54.81689977113669 -794.4416472814996 70.135 0.1144 6615 +6617 2 -55.57138835999959 -793.9547450127889 68.8542 0.1144 6616 +6618 2 -56.289962417874364 -794.5334169866646 67.5335 0.1144 6617 +6619 2 -57.300677472677364 -794.6215337160329 66.4065 0.1144 6618 +6620 2 -58.35492326821009 -794.4006987265009 65.4668 0.1144 6619 +6621 2 -59.42437122552906 -794.2752481920808 64.5282 0.1144 6620 +6622 2 -60.51592368197774 -794.2908602009463 63.6964 0.1144 6621 +6623 2 -61.60648185085796 -794.4872142950944 63.014 0.1144 6622 +6624 2 -62.71144031646702 -794.3673925972308 62.4319 0.1144 6623 +6625 2 -63.53858939752379 -793.6028253093439 61.9447 0.1144 6624 +6626 2 -64.3687233299066 -792.8334020290185 61.5297 0.1144 6625 +6627 2 -65.1994856520422 -792.0629564344955 61.1593 0.1144 6626 +6628 2 -66.07286792136387 -791.3388976926558 60.7989 0.1144 6627 +6629 2 -66.99875491749458 -790.6846740685057 60.4198 0.1144 6628 +6630 2 -67.92166016388234 -790.0286176409097 60.0138 0.1144 6629 +6631 2 -68.84375492102191 -789.3761713528096 59.5742 0.1144 6630 +6632 2 -68.23117137539833 -788.3496951233569 59.5661 0.1144 6631 +6633 2 -67.74987191721362 -787.4965291889977 58.119 0.1144 6632 +6634 2 -67.32346178071438 -786.4971576037049 57.2524 0.1144 6633 +6635 2 -66.80706666253315 -785.5916655320009 56.1478 0.1144 6634 +6636 2 -66.04955437011967 -784.8775475397599 55.0108 0.1144 6635 +6637 2 -65.20379919599057 -784.2435899107074 53.9473 0.1144 6636 +6638 2 -64.38315289340781 -783.5296355031594 53.107 0.1144 6637 +6639 2 -63.51714584645913 -782.8281780100529 52.5395 0.1144 6638 +6640 2 -62.49384287196142 -782.3912153773438 52.1326 0.1144 6639 +6641 2 -61.36908913482779 -782.274554840726 51.8126 0.1144 6640 +6642 2 -60.23329816174311 -782.2371500888974 51.5239 0.1144 6641 +6643 2 -59.15292840189912 -781.9543277559486 51.2439 0.1144 6642 +6644 2 -58.289062889991044 -781.2514868512369 50.9779 0.1144 6643 +6645 2 -57.7957265043315 -780.2540561866871 50.7086 0.1144 6644 +6646 2 -57.39227518682142 -779.1976640557057 50.4347 0.1144 6645 +6647 2 -56.848289802246086 -778.1972721568138 50.1847 0.1144 6646 +6648 2 -56.57573965130433 -777.1179291088345 49.9472 0.1144 6647 +6649 2 -56.57831154882524 -775.98209058803 49.6588 0.1144 6648 +6650 2 -56.643512597279056 -774.8579857560501 49.1789 0.1144 6649 +6651 2 -57.07623049757356 -773.8482721982701 48.5719 0.1144 6650 +6652 2 -57.660101437256 -772.883107587546 48.1032 0.1144 6651 +6653 2 -57.89655543232391 -771.7796359394206 47.8022 0.1144 6652 +6654 2 -57.49542464776684 -770.72596136742 47.7291 0.1144 6653 +6655 2 -56.727297177150376 -769.8805427735363 47.6983 0.1144 6654 +6656 2 -55.97222453856122 -769.0444398310382 47.6221 0.1144 6655 +6657 2 -55.7401798320837 -767.9255523906779 47.6196 0.1144 6656 +6658 2 -55.401869508007906 -766.8353682343889 47.6067 0.1144 6657 +6659 2 -55.219060663386955 -765.7104741387833 47.6888 0.1144 6658 +6660 2 -54.582318987262965 -764.8544927325094 48.3361 0.1144 6659 +6661 2 -53.68265405833421 -764.2209690820781 49.0986 0.1144 6660 +6662 2 -52.789951420801 -763.5715354819763 49.833 0.1144 6661 +6663 2 -52.075063183444996 -762.7466340526588 50.6464 0.1144 6662 +6664 2 -51.45311913185125 -761.862186520757 51.5586 0.1144 6663 +6665 2 -50.94383617536428 -760.8884074286464 52.3382 0.1144 6664 +6666 2 -50.25011229121836 -760.0202897968904 53.0051 0.1144 6665 +6667 2 -49.33187462849739 -759.3994130258958 53.6724 0.1144 6666 +6668 2 -48.3937519850827 -758.8000017514668 54.325 0.1144 6667 +6669 2 -47.45251785824243 -758.2012603060404 54.9455 0.1144 6668 +6670 2 -46.44972343609831 -757.7070622011101 55.51 0.1144 6669 +6671 2 -45.32107375232147 -757.657848470197 55.9544 0.1144 6670 +6672 2 -44.18715702193228 -757.6215957662487 56.3142 0.1144 6671 +6673 2 -43.04919168676989 -757.5854368673629 56.5992 0.1144 6672 +6674 2 -41.919726411563175 -757.4283184340006 56.835 0.1144 6673 +6675 2 -41.01500597688283 -756.7352271592958 57.0657 0.1144 6674 +6676 2 -40.05327320027868 -756.1240031116624 57.2911 0.1144 6675 +6677 2 -39.08138076346708 -755.5533691035027 57.7744 0.1144 6676 +6678 2 -69.14652961095541 -788.9511948744773 59.2166 0.1144 6631 +6679 2 -69.79355197462485 -788.0450372773058 58.5738 0.1144 6678 +6680 2 -70.43777158646375 -787.1411478472746 57.8953 0.1144 6679 +6681 2 -71.43423430322738 -786.7653015168414 57.1724 0.1144 6680 +6682 2 -72.49860452288391 -786.4863650984443 56.4068 0.1144 6681 +6683 2 -73.2919659882781 -785.7922342856808 55.4403 0.1144 6682 +6684 2 -74.0108523710613 -785.0202806480517 54.3656 0.1144 6683 +6685 2 -74.95189087967543 -784.5029631292053 53.4061 0.1144 6684 +6686 2 -75.97953658851105 -784.1636565169625 52.4983 0.1144 6685 +6687 2 -77.01665981691536 -783.8329926255196 51.6477 0.1144 6686 +6688 2 -78.12478723394435 -783.8239307477485 50.9488 0.1144 6687 +6689 2 -79.24122270884399 -783.766215235227 50.3622 0.1144 6688 +6690 2 -80.36314325847144 -783.6863996332208 49.8557 0.1144 6689 +6691 2 -81.49181997456711 -783.6482987074648 49.3984 0.1144 6690 +6692 2 -82.5766894475349 -783.9673404079097 48.9773 0.1144 6691 +6693 2 -83.66177074545197 -784.2906206376028 48.5794 0.1144 6692 +6694 2 -84.77304489967506 -784.5143808980511 48.1961 0.1144 6693 +6695 2 -85.90198790182757 -784.6242260066851 47.8335 0.1144 6694 +6696 2 -85.56294188703336 -784.9529575838909 46.7572 0.1144 6695 +6697 2 -84.69536954176837 -785.1542522826074 45.5339 0.1144 6696 +6698 2 -83.62854303599553 -784.8623822831548 44.9106 0.1144 6697 +6699 2 -82.56803391766158 -784.7395501215254 44.1801 0.1144 6698 +6700 2 -82.29703296442287 -785.1651587837301 42.973 0.1144 6699 +6701 2 -83.35863497579584 -784.9300645484777 42.1165 0.1144 6700 +6702 2 -84.44974284081198 -784.7695669257542 41.3725 0.1144 6701 +6703 2 -85.48958293566051 -784.4606451279715 40.6314 0.1144 6702 +6704 2 -86.10137200365975 -783.6925857381606 39.9294 0.1144 6703 +6705 2 -86.10502328063163 -783.4047822667144 38.729 0.1144 6704 +6706 2 -86.70377714951113 -784.3422345665685 38.0694 0.1144 6705 +6707 2 -86.59737769035883 -784.5306107728476 37.6463 0.1144 6706 +6708 2 -85.97019724061269 -784.7601744752403 35.7003 0.1144 6707 +6709 2 -85.57821983081013 -783.7725773254851 34.6828 0.1144 6708 +6710 2 -85.17972341298261 -782.8347334925478 33.5476 0.1144 6709 +6711 2 -84.40629806931537 -782.1203420047954 32.5296 0.1144 6710 +6712 2 -83.44604691902398 -781.6508855655338 31.5708 0.1144 6711 +6713 2 -82.55056645470617 -781.1917794034916 30.693 0.1144 6712 +6714 2 -82.44147184646249 -780.2572781159312 29.8096 0.1144 6713 +6715 2 -83.17064545653668 -780.1239778294673 28.4236 0.1144 6714 +6716 2 -83.31901285613822 -779.9372177835917 25.802 0.1144 6715 +6717 2 -87.25461989305029 -784.0054143743439 37.4503 0.1144 6706 +6718 2 -88.27429951109517 -783.6156674865515 36.6405 0.1144 6717 +6719 2 -89.35831886106419 -783.3660638429628 36.0052 0.1144 6718 +6720 2 -90.47728979544925 -783.3086156227865 35.4707 0.1144 6719 +6721 2 -91.5100881117814 -783.7125617674413 34.9597 0.1144 6720 +6722 2 -92.49260293625044 -784.2506372915999 34.4008 0.1144 6721 +6723 2 -93.54386207495797 -784.6027799804123 33.7324 0.1144 6722 +6724 2 -94.62890714248122 -784.6398636890096 32.8927 0.1144 6723 +6725 2 -95.69795906808264 -784.7881363782278 31.9729 0.1144 6724 +6726 2 -96.31296175212968 -785.6401458550619 30.9938 0.1144 6725 +6727 2 -96.0711294915692 -786.693359327133 30.1092 0.1144 6726 +6728 2 -96.16766420674725 -787.4603851863877 28.0456 0.1144 6727 +6729 2 -86.49307150830589 -784.5605184706117 47.5149 0.1144 6695 +6730 2 -87.6229328152302 -784.4439136803358 47.1934 0.1144 6729 +6731 2 -88.7564457009 -784.3322531769311 46.9216 0.1144 6730 +6732 2 -89.8796890925552 -784.1498382567548 46.6374 0.1144 6731 +6733 2 -89.63629321538264 -784.0258181899294 45.7055 0.1144 6732 +6734 2 -88.84778003039244 -783.2725726541997 45.5193 0.1144 6733 +6735 2 -88.48010720605424 -782.1952112736764 45.5521 0.1144 6734 +6736 2 -88.49444192001327 -781.0532216432612 45.598 0.1144 6735 +6737 2 -88.62180151962184 -779.917554609141 45.6604 0.1144 6736 +6738 2 -88.76510699752129 -778.7822986291945 45.7492 0.1144 6737 +6739 2 -88.980541786281 -777.6605075114761 45.8867 0.1144 6738 +6740 2 -89.25090244087173 -776.5522883966576 46.0785 0.1144 6739 +6741 2 -89.33762514582355 -775.4172319300243 46.3411 0.1144 6740 +6742 2 -88.71584026927779 -774.4603409397339 46.5542 0.1144 6741 +6743 2 -88.41036433376104 -773.3822399505774 47.117 0.1144 6742 +6744 2 -90.90520967387963 -784.0215671482384 46.4744 0.1144 6732 +6745 2 -92.0478783433504 -783.9933578978081 46.4341 0.1144 6744 +6746 2 -93.18841678312836 -784.0646693091594 46.445 0.1144 6745 +6747 2 -94.32886382689027 -784.1493059464664 46.4618 0.1144 6746 +6748 2 -95.47254319145905 -784.1500067028749 46.4738 0.1144 6747 +6749 2 -96.61568486975443 -784.1624671741383 46.4674 0.1144 6748 +6750 2 -97.75403112518887 -784.2766836472867 46.4372 0.1144 6749 +6751 2 -98.88175670947568 -784.4648950617782 46.3781 0.1144 6750 +6752 2 -100.01117202791616 -784.6394725187192 46.3016 0.1144 6751 +6753 2 -101.15005596962406 -784.7419292770124 46.2367 0.1144 6752 +6754 2 -102.29104069965945 -784.8148061994644 46.1997 0.1144 6753 +6755 2 -103.42563546281593 -784.9589964328989 46.2375 0.1144 6754 +6756 2 -104.55402226389265 -785.1463230918553 46.3285 0.1144 6755 +6757 2 -105.69353528788994 -785.2236949093381 46.2834 0.1144 6756 +6758 2 -106.8132684535819 -785.0055514527562 46.2969 0.1144 6757 +6759 2 -107.955094499304 -784.9567521565459 46.3686 0.1144 6758 +6760 2 -109.02398244944943 -785.3587012205254 46.4257 0.1144 6759 +6761 2 -110.09840163696921 -785.7518425939388 46.4607 0.1144 6760 +6762 2 -111.23737697469305 -785.8409741262765 46.4825 0.1144 6761 +6763 2 -112.3809180880627 -785.8657703363351 46.501 0.1144 6762 +6764 2 -113.43304497122847 -785.4234266331812 46.5797 0.1144 6763 +6765 2 -113.8798669490993 -785.3650672286983 46.9983 0.1144 6764 +6766 2 -115.00483702750162 -785.227966197705 47.2839 0.1144 6765 +6767 2 -116.1461784452996 -785.1667787968869 47.3995 0.1144 6766 +6768 2 -117.26983588603754 -785.3553067679532 47.5152 0.1144 6767 +6769 2 -118.35513692858008 -785.7108843924686 47.619 0.1144 6768 +6770 2 -119.44913926090146 -786.0435217127972 47.7098 0.1144 6769 +6771 2 -120.54736678686187 -786.3627923679205 47.7924 0.1144 6770 +6772 2 -121.64100802177559 -786.6939165429612 47.8702 0.1144 6771 +6773 2 -122.77819982028328 -786.7926334280762 47.9489 0.1144 6772 +6774 2 -123.89966036525897 -786.5957412340641 48.0726 0.1144 6773 +6775 2 -124.84669871042695 -785.9747082777877 48.2656 0.1144 6774 +6776 2 -125.70320959920961 -785.221380840748 48.4683 0.1144 6775 +6777 2 -126.54208005745475 -784.4465286456273 48.6542 0.1144 6776 +6778 2 -127.43180764014164 -783.7352166967565 48.9059 0.1144 6777 +6779 2 -128.11594505340503 -782.8210016127783 48.9978 0.1144 6778 +6780 2 -129.0413474216116 -782.1543898840204 48.7995 0.1144 6779 +6781 2 -113.56995318380514 -785.1329011931091 46.5405 0.1144 6764 +6782 2 -113.66821757549646 -784.0075214752692 46.3674 0.1144 6781 +6783 2 -112.86880340515579 -783.1912326328497 46.221 0.1144 6782 +6784 2 -112.05802895503442 -782.3867418429519 46.2764 0.1144 6783 +6785 2 -111.33397262224122 -781.5307334043591 46.72 0.1144 6784 +6786 2 -110.53188915086106 -780.8738501918024 47.8926 0.1144 6785 +6787 2 -109.71241782060598 -780.2278771746493 49.0356 0.1144 6786 +6788 2 -108.91082518031614 -779.5700044749321 50.2186 0.1144 6787 +6789 2 -108.63720096488949 -778.6564471211047 51.3341 0.1144 6788 +6790 2 -108.74854380559216 -777.5861760611277 52.2721 0.1144 6789 +6791 2 -108.6288562510563 -776.6142924316282 53.5396 0.1144 6790 +6792 2 -107.96404788437877 -775.755849139619 54.3449 0.1144 6791 +6793 2 -107.22684842512533 -774.897161479712 54.7305 0.1144 6792 +6794 2 -106.66534475545573 -773.9342450352852 55.0161 0.1144 6793 +6795 2 -106.66887428972535 -772.8514643407825 55.2574 0.1144 6794 +6796 2 -105.66721891128867 -772.4317988634689 55.3106 0.1144 6795 +6797 2 -104.8733666148042 -773.1269191633928 55.5229 0.1144 6796 +6798 2 -103.8857456352807 -772.5707976651524 55.6074 0.1144 6797 +6799 2 -102.9689427260044 -771.8864781523936 55.6354 0.1144 6798 +6800 2 -101.89421170530656 -771.4984272367268 55.5702 0.1144 6799 +6801 2 -100.77221347405744 -771.7070791455939 55.4252 0.1144 6800 +6802 2 -99.71452622590373 -772.1017524979918 54.9696 0.1144 6801 +6803 2 -72.96361738512621 -821.3569062713017 86.2428 0.1144 6194 +6804 2 -74.03713518481902 -821.0565950598183 86.849 0.1144 6803 +6805 2 -75.05941563233483 -820.5906234012092 87.3328 0.1144 6804 +6806 2 -76.16536868728605 -820.5828073763807 87.731 0.1144 6805 +6807 2 -77.29436954819587 -820.4872717491792 88.0474 0.1144 6806 +6808 2 -78.28273133830442 -819.9519729337 88.3604 0.1144 6807 +6809 2 -79.01915924438092 -819.085980607434 88.5136 0.1144 6808 +6810 2 -79.94513763652759 -818.4184317573282 88.5634 0.1144 6809 +6811 2 -80.81407496758476 -817.6754422858717 88.5629 0.1144 6810 +6812 2 -81.44209372042386 -816.7213330174529 88.5819 0.1144 6811 +6813 2 -81.71396752030242 -815.6127528052267 88.5396 0.1144 6812 +6814 2 -82.0691840474102 -814.5259386173964 88.4122 0.1144 6813 +6815 2 -82.73221395993255 -813.6000404938964 88.1706 0.1144 6814 +6816 2 -83.39978803171527 -812.6822176794691 87.8284 0.1144 6815 +6817 2 -83.71918772798455 -811.6055501476733 87.3099 0.1144 6816 +6818 2 -83.9749718877436 -810.5099693000786 86.7975 0.1144 6817 +6819 2 -84.61495668744243 -809.7659317901677 85.6702 0.1144 6818 +6820 2 -85.18372947476436 -808.9324610129943 84.3811 0.1144 6819 +6821 2 -85.74859949675152 -808.0134857422387 83.4464 0.1144 6820 +6822 2 -86.04049974192304 -808.7836864543059 81.5861 0.1144 6821 +6823 2 -86.5923307706708 -809.6009742957126 80.1942 0.1144 6822 +6824 2 -86.68286084888695 -810.6529485087702 79.1588 0.1144 6823 +6825 2 -87.34351518662916 -811.5357186181545 78.4076 0.1144 6824 +6826 2 -88.2908905028055 -811.9999603766165 77.4004 0.1144 6825 +6827 2 -89.30429259192437 -812.4965704105157 76.9479 0.1144 6826 +6828 2 -90.27597010220353 -813.0696546853111 76.4918 0.1144 6827 +6829 2 -91.23013001992504 -813.6561517879584 75.9265 0.1144 6828 +6830 2 -92.1320983520776 -814.3099895796115 75.3026 0.1144 6829 +6831 2 -92.91494746442766 -815.0812342342399 74.5408 0.1144 6830 +6832 2 -93.16100874755264 -816.1053248625276 73.5804 0.1144 6831 +6833 2 -93.26511421434043 -817.1724515943571 72.6032 0.1144 6832 +6834 2 -94.09607176393922 -817.8348753490375 71.5963 0.1144 6833 +6835 2 -93.93781557781077 -817.1266326508385 70.9492 0.1144 6834 +6836 2 -93.9044473980654 -816.0668330072358 70.065 0.1144 6835 +6837 2 -94.13808012650031 -815.0313513617181 69.4422 0.1144 6836 +6838 2 -94.65157316003814 -814.0189363507131 69.0973 0.1144 6837 +6839 2 -94.32194940505855 -812.9407823032072 68.9203 0.1144 6838 +6840 2 -94.20284508391731 -811.8041024667161 68.8363 0.1144 6839 +6841 2 -94.13408413168008 -810.6620967305453 68.8103 0.1144 6840 +6842 2 -94.15380942276784 -809.5180210324852 68.8153 0.1144 6841 +6843 2 -94.31168597956557 -808.3850308106325 68.8052 0.1144 6842 +6844 2 -94.77716228562235 -807.3416926063576 68.7296 0.1144 6843 +6845 2 -95.32331070980692 -806.3372597918992 68.6277 0.1144 6844 +6846 2 -95.96175503012543 -805.3881502777476 68.5454 0.1144 6845 +6847 2 -95.57431145656756 -804.9983429441728 68.4379 0.1144 6846 +6848 2 -94.76955597332775 -804.1907437724326 68.2156 0.1144 6847 +6849 2 -93.96239476428522 -803.3803746758988 68.1218 0.1144 6848 +6850 2 -93.15562747968744 -802.5716562833154 67.998 0.1144 6849 +6851 2 -92.34940339199261 -801.7618632107217 67.8308 0.1144 6850 +6852 2 -91.54464790875284 -800.9542640389816 67.6108 0.1144 6851 +6853 2 -90.68471598861811 -800.2188615486857 67.1989 0.1144 6852 +6854 2 -90.45261131611034 -799.5807287717496 69.6931 0.1144 6853 +6855 2 -90.18160915577712 -798.8353464006844 71.6363 0.1144 6854 +6856 2 -89.58934315473229 -798.0926257304413 73.0853 0.1144 6855 +6857 2 -88.84302034795198 -797.4674347611532 74.5556 0.1144 6856 +6858 2 -87.79123923796391 -797.3607665059301 75.5521 0.1144 6857 +6859 2 -86.68508046653335 -797.3253773495793 76.2513 0.1144 6858 +6860 2 -85.55486768070239 -797.2939837396525 76.6718 0.1144 6859 +6861 2 -84.41506954209416 -797.2608065905096 76.8667 0.1144 6860 +6862 2 -83.27153153030758 -797.2293215845667 76.9028 0.1144 6861 +6863 2 -82.9708462172438 -796.2306975098982 76.6819 0.1144 6862 +6864 2 -82.83356308675508 -795.108315256794 76.2706 0.1144 6863 +6865 2 -82.70779220164047 -794.0655505784233 75.1626 0.1144 6864 +6866 2 -90.11526465397083 -799.7493411364899 66.4703 0.1144 6853 +6867 2 -89.26026230002469 -799.0452574804187 65.7734 0.1144 6866 +6868 2 -88.44033578321077 -798.3169555327174 64.9852 0.1144 6867 +6869 2 -87.74197565125189 -797.4781504444578 64.1973 0.1144 6868 +6870 2 -87.10413257655046 -796.5825216306876 63.4292 0.1144 6869 +6871 2 -86.3024639534639 -795.8789411173427 62.5761 0.1144 6870 +6872 2 -85.32941295185421 -795.4499778109093 61.5731 0.1144 6871 +6873 2 -84.39543712792027 -794.990098804749 60.4498 0.1144 6872 +6874 2 -83.74080996082444 -794.2090463595828 59.3407 0.1144 6873 +6875 2 -83.66762219436205 -793.2991984432582 57.9331 0.1144 6874 +6876 2 -84.4381275421309 -792.7469002004042 56.467 0.1144 6875 +6877 2 -85.2350074372531 -792.1933239701069 55.0082 0.1144 6876 +6878 2 -86.06083087647269 -791.8307925545917 53.2868 0.1144 6877 +6879 2 -96.64424645085711 -804.9026543450896 68.4846 0.1144 6846 +6880 2 -97.48004135429693 -804.1219207417496 68.4438 0.1144 6879 +6881 2 -98.29664985487435 -803.3198859190738 68.425 0.1144 6880 +6882 2 -99.09276280727096 -802.4986796983068 68.4124 0.1144 6881 +6883 2 -99.87052957150726 -801.6593884732547 68.3642 0.1144 6882 +6884 2 -100.44264148887132 -800.6696235496441 68.3659 0.1144 6883 +6885 2 -101.09182010826413 -799.7271121278973 68.4309 0.1144 6884 +6886 2 -101.94418076223113 -798.9673600857355 68.5653 0.1144 6885 +6887 2 -102.89069304022527 -798.3298052272281 68.7702 0.1144 6886 +6888 2 -103.33706472093462 -797.3983258325763 69.4383 0.1144 6887 +6889 2 -103.87116762311663 -796.4616126267974 70.3209 0.1144 6888 +6890 2 -104.62646399040759 -795.6609786295446 71.0646 0.1144 6889 +6891 2 -105.42532594374887 -794.8857146877133 71.7007 0.1144 6890 +6892 2 -106.19484081004694 -794.0642404820645 72.2036 0.1144 6891 +6893 2 -106.84695432399953 -793.134332091458 72.492 0.1144 6892 +6894 2 -107.42985290625064 -792.1510800674023 72.5528 0.1144 6893 +6895 2 -108.00588369470535 -791.1637239711774 72.457 0.1144 6894 +6896 2 -108.55537496604045 -790.1626371054529 72.3024 0.1144 6895 +6897 2 -109.06771044106847 -789.1414113022987 72.1655 0.1144 6896 +6898 2 -109.5646791633288 -788.1121485277387 72.0742 0.1144 6897 +6899 2 -110.05937971844895 -787.0800830013482 72.0325 0.1144 6898 +6900 2 -110.5874875844851 -786.0658523166265 72.028 0.1144 6899 +6901 2 -111.06186848775361 -785.0254051586151 71.9866 0.1144 6900 +6902 2 -111.4598986806424 -783.9541083810839 71.8732 0.1144 6901 +6903 2 -111.83534966675198 -782.8756234590616 71.7147 0.1144 6902 +6904 2 -112.09238819697022 -781.7606241523429 71.682 0.1144 6903 +6905 2 -112.25975319989959 -780.6320576608173 71.8698 0.1144 6904 +6906 2 -112.41513263487856 -779.5096227401267 72.2509 0.1144 6905 +6907 2 -112.56779140929359 -778.3961971482732 72.7731 0.1144 6906 +6908 2 -112.75790609939803 -777.3005125930264 73.3692 0.1144 6907 +6909 2 -113.27843189649849 -776.3072104111336 73.9102 0.1144 6908 +6910 2 -113.73071511932882 -775.2786520091232 74.3921 0.1144 6909 +6911 2 -113.94075312779361 -774.172324550818 74.8812 0.1144 6910 +6912 2 -114.03615930025846 -773.0559869888523 75.3469 0.1144 6911 +6913 2 -113.9052038682463 -771.9320946920433 75.6874 0.1144 6912 +6914 2 -114.03745779795992 -770.8102351027562 75.8901 0.1144 6913 +6915 2 -114.50070737612623 -769.7682279442738 76.022 0.1144 6914 +6916 2 -115.12329411258675 -768.8120709458768 76.0998 0.1144 6915 +6917 2 -115.91810815369132 -768.012838182495 76.279 0.1144 6916 +6918 2 -116.83285289815684 -767.3612735483467 76.7712 0.1144 6917 +6919 2 -117.66967252484068 -766.5985421654885 77.1593 0.1144 6918 +6920 2 -118.48337044037895 -765.8056346915367 77.4799 0.1144 6919 +6921 2 -119.29868623283048 -765.0121957344776 77.7871 0.1144 6920 +6922 2 -120.11180812442862 -764.2202253818734 78.1222 0.1144 6921 +6923 2 -120.99439682685414 -763.5380962428163 78.6842 0.1144 6922 +6924 2 -121.90648488368997 -763.2863407531494 80.0845 0.1144 6923 +6925 2 -122.3916178193093 -762.8203906219363 82.32 0.1144 6924 +6926 2 -122.6527965631011 -762.594278185765 84.9318 0.1144 6925 +6927 2 -123.32653115535385 -762.9640352671063 86.9772 0.1144 6926 +6928 2 -124.22937704556503 -763.3632267356134 88.3859 0.1144 6927 +6929 2 -125.15634613196676 -763.8671597498678 89.4715 0.1144 6928 +6930 2 -126.12474306349772 -764.3670948086518 90.3199 0.1144 6929 +6931 2 -127.12406559734526 -764.8363869706837 91.0498 0.1144 6930 +6932 2 -128.16195437142392 -765.2406449485165 91.6868 0.1144 6931 +6933 2 -129.26696378810942 -765.3720493587787 92.3149 0.1144 6932 +6934 2 -130.25142963157475 -764.9041973490041 93.0989 0.1144 6933 +6935 2 -131.17908165211915 -764.3061102075441 93.8392 0.1144 6934 +6936 2 -132.1022802168826 -763.7106851576691 94.6014 0.1144 6935 +6937 2 -132.95141606127092 -763.1637576690794 95.9165 0.1144 6936 +6938 2 -103.704490075792 -798.5547671015598 68.1895 0.1144 6887 +6939 2 -104.82228393057662 -798.7047114185772 68.2559 0.1144 6938 +6940 2 -105.94205784298168 -798.5147643862315 68.2758 0.1144 6939 +6941 2 -107.02480980063376 -798.1450054942484 68.2755 0.1144 6940 +6942 2 -108.10551712989076 -797.7739898227596 68.2525 0.1144 6941 +6943 2 -109.21875521829352 -797.5249738222107 68.1982 0.1144 6942 +6944 2 -110.33052160065813 -797.2804527166924 68.0991 0.1144 6943 +6945 2 -111.40362014241236 -796.8912613374391 67.9728 0.1144 6944 +6946 2 -112.49344561034025 -796.5688116988044 67.8384 0.1144 6945 +6947 2 -113.61139833839917 -796.3535647991157 67.5727 0.1144 6946 +6948 2 -114.70146096477036 -796.1225831535489 66.9763 0.1144 6947 +6949 2 -115.74873866221117 -796.2493725239356 66.103 0.1144 6948 +6950 2 -116.1378568584771 -796.9773266978606 64.6122 0.1144 6949 +6951 2 -116.12729936105279 -797.8597616468784 63.1856 0.1144 6950 +6952 2 -116.81792005452732 -798.2238170104495 61.1397 0.1144 6951 +6953 2 -94.1628446327698 -817.9928301020148 70.7286 0.1144 6834 +6954 2 -94.44375279834847 -819.0060604916653 69.6892 0.1144 6953 +6955 2 -95.10780993729333 -819.8305885119389 68.6456 0.1144 6954 +6956 2 -94.6674243787435 -820.542841388255 66.9166 0.1144 6955 +6957 2 -94.38160658165745 -821.505867263748 65.6174 0.1144 6956 +6958 2 -94.23422716549084 -822.5539875849374 64.566 0.1144 6957 +6959 2 -94.28852694964809 -823.6146805015917 63.5793 0.1144 6958 +6960 2 -94.44733143486127 -824.4333633617251 61.983 0.1144 6959 +6961 2 -94.76309016519633 -823.4739514198476 60.6889 0.1144 6960 +6962 2 -95.06006872874985 -822.4425447188854 59.8167 0.1144 6961 +6963 2 -94.96443318801585 -821.3484619051329 59.1338 0.1144 6962 +6964 2 -94.6700878850647 -820.2959835430606 58.567 0.1144 6963 +6965 2 -94.96476373793101 -819.2202000742633 58.0754 0.1144 6964 +6966 2 -95.46622976426863 -818.2097828364704 57.6988 0.1144 6965 +6967 2 -95.7249573361039 -817.1052121988141 57.4129 0.1144 6966 +6968 2 -95.78455047184997 -815.9682698703858 57.2186 0.1144 6967 +6969 2 -95.4756779382968 -814.9350333785717 57.1668 0.1144 6968 +6970 2 -94.81926282233974 -814.0279888176249 57.2496 0.1144 6969 +6971 2 -94.58400430985765 -812.9273154226959 57.3378 0.1144 6970 +6972 2 -94.58826283994915 -811.784531740225 57.4204 0.1144 6971 +6973 2 -94.67307847516838 -810.6481856670491 57.5033 0.1144 6972 +6974 2 -94.70375850249255 -809.518942829603 57.5453 0.1144 6973 +6975 2 -94.3414294001 -808.4502656091292 57.4991 0.1144 6974 +6976 2 -93.85751408998803 -807.4155471002395 57.3846 0.1144 6975 +6977 2 -93.5074823887239 -806.3356478511841 57.1494 0.1144 6976 +6978 2 -93.6020835825702 -805.2336054635589 56.7848 0.1144 6977 +6979 2 -93.84589069189528 -804.1225633655974 56.4878 0.1144 6978 +6980 2 -93.94379708776202 -802.9889817065855 56.2713 0.1144 6979 +6981 2 -94.20849987287883 -801.8853841188972 56.0689 0.1144 6980 +6982 2 -94.395556137907 -800.76622157319 55.7628 0.1144 6981 +6983 2 -94.36867483168609 -799.6324684274939 55.4372 0.1144 6982 +6984 2 -93.88965075009614 -798.6182461593214 55.1174 0.1144 6983 +6985 2 -93.3136236439442 -797.6438201626556 54.712 0.1144 6984 +6986 2 -93.05430491389563 -796.5605199059188 54.1512 0.1144 6985 +6987 2 -92.26669120512312 -795.7729651740088 53.6161 0.1144 6986 +6988 2 -91.31466731181271 -795.1743996249118 53.1054 0.1144 6987 +6989 2 -90.35948507989357 -794.5872741325115 52.5526 0.1144 6988 +6990 2 -90.25573100302316 -794.277703944133 49.6415 0.1144 6989 +6991 2 -90.02154336445366 -793.627491794184 47.4093 0.1144 6990 +6992 2 -89.28678827044328 -793.0751444108954 45.7901 0.1144 6991 +6993 2 -88.45133812818594 -792.8222003463234 44.2366 0.1144 6992 +6994 2 -87.43418376526321 -792.9891848425714 43.0332 0.1144 6993 +6995 2 -86.39306848278096 -792.9722955387992 42.0524 0.1144 6994 +6996 2 -85.3595356599973 -792.6176673472676 41.256 0.1144 6995 +6997 2 -84.36974060248471 -792.139558882457 40.4905 0.1144 6996 +6998 2 -83.58687917849852 -791.4206584715278 39.6329 0.1144 6997 +6999 2 -82.81557244542455 -790.6350279390796 38.9295 0.1144 6998 +7000 2 -81.79215715106201 -790.2597385370644 38.3354 0.1144 6999 +7001 2 -80.6787928213227 -790.1877579892471 37.7681 0.1144 7000 +7002 2 -79.62345253489346 -789.9123387273216 37.0115 0.1144 7001 +7003 2 -79.14495452047737 -788.9146383613802 36.4403 0.1144 7002 +7004 2 -78.41202951909267 -788.0491876393022 36.0811 0.1144 7003 +7005 2 -78.15819166691116 -787.7105157260885 34.7556 0.1144 7004 +7006 2 -77.71599712954125 -787.0492410243795 32.7709 0.1144 7005 +7007 2 -77.10105191348859 -786.3086611966405 31.3964 0.1144 7006 +7008 2 -76.20733647358455 -785.9056915172885 30.2607 0.1144 7007 +7009 2 -75.28697189553816 -786.2799525137568 28.9696 0.1144 7008 +7010 2 -74.27575910196398 -786.6494321155103 28.0246 0.1144 7009 +7011 2 -73.24058369000542 -787.0095820377321 27.2242 0.1144 7010 +7012 2 -72.38806545370528 -786.3713499508109 26.5147 0.1144 7011 +7013 2 -72.16679579301532 -785.2872570270916 25.802 0.1144 7012 +7014 2 -78.04644127635876 -788.0540668579616 35.9786 0.1144 7004 +7015 2 -76.91244066118176 -788.1600280526427 35.8212 0.1144 7014 +7016 2 -75.81537579591276 -787.9610830316134 35.8481 0.1144 7015 +7017 2 -74.69732385883603 -787.7680187262666 36.0203 0.1144 7016 +7018 2 -73.71558960249763 -788.2226424167311 36.2628 0.1144 7017 +7019 2 -72.64327591472409 -788.2282464343518 36.6201 0.1144 7018 +7020 2 -71.62514928335932 -787.7675853740202 37.1552 0.1144 7019 +7021 2 -70.58736662597929 -787.3150317572616 37.564 0.1144 7020 +7022 2 -69.54312653644013 -786.8664908166561 37.8694 0.1144 7021 +7023 2 -68.49527630740525 -786.4171393868025 38.0909 0.1144 7022 +7024 2 -67.39124404855906 -786.1225894734991 38.2466 0.1144 7023 +7025 2 -66.28190881448046 -785.8475518243822 38.3505 0.1144 7024 +7026 2 -65.17194519064898 -785.573536489463 38.4322 0.1144 7025 +7027 2 -64.09083651470843 -785.2044546410796 38.5678 0.1144 7026 +7028 2 -63.02800656164786 -784.786157162152 38.7565 0.1144 7027 +7029 2 -61.95916005075222 -784.3883418957956 38.9486 0.1144 7028 +7030 2 -60.893650876377535 -783.9831875433281 39.1922 0.1144 7029 +7031 2 -59.781677167697865 -783.7494894449077 39.499 0.1144 7030 +7032 2 -58.69864119071249 -783.403403368107 39.8247 0.1144 7031 +7033 2 -57.66492426783492 -782.9331593640447 40.1475 0.1144 7032 +7034 2 -56.567669099305846 -782.631976122253 40.4519 0.1144 7033 +7035 2 -55.46403317395087 -782.3564507436289 40.7341 0.1144 7034 +7036 2 -54.34808512678481 -782.1271178065565 40.9982 0.1144 7035 +7037 2 -53.220899637817894 -781.9445205079389 41.1774 0.1144 7036 +7038 2 -52.0914843193774 -781.7699430509981 41.2812 0.1144 7037 +7039 2 -51.19230171600063 -780.7378561090283 41.3204 0.1144 7038 +7040 2 -50.319620593850374 -780.0014251013687 41.2863 0.1144 7039 +7041 2 -49.37247051524409 -779.3641851947431 41.1925 0.1144 7040 +7042 2 -48.333445106504485 -778.9027684200225 41.0533 0.1144 7041 +7043 2 -47.226557037478415 -778.6346344933223 40.906 0.1144 7042 +7044 2 -46.091247999182684 -778.5154768348858 40.7831 0.1144 7043 +7045 2 -44.95911611607164 -778.6119050426022 40.6456 0.1144 7044 +7046 2 -43.878376652314216 -778.9587205288153 40.4281 0.1144 7045 +7047 2 -42.782940862632046 -779.2509588402728 40.1232 0.1144 7046 +7048 2 -41.66037891907902 -779.4082036267886 39.7603 0.1144 7047 +7049 2 -40.54549933677896 -779.6119581039675 39.3974 0.1144 7048 +7050 2 -39.43792462847975 -779.8670376122309 39.0715 0.1144 7049 +7051 2 -38.32757758634048 -780.1071490155683 38.733 0.1144 7050 +7052 2 -37.23786514279212 -779.924696171316 38.2707 0.1144 7051 +7053 2 -36.69925802370935 -778.9745624484783 37.8736 0.1144 7052 +7054 2 -36.29526661087934 -777.912556201623 37.5578 0.1144 7053 +7055 2 -35.896847874673426 -776.8458760618248 37.2848 0.1144 7054 +7056 2 -34.904305532726084 -776.3632617754204 36.9796 0.1144 7055 +7057 2 -33.784420792203605 -776.1731792198165 36.6562 0.1144 7056 +7058 2 -32.66338641284747 -776.0023447376369 36.3062 0.1144 7057 +7059 2 -31.54332198187609 -775.8322238380601 35.9162 0.1144 7058 +7060 2 -30.424194672252526 -775.6626789624233 35.4976 0.1144 7059 +7061 2 -29.36349153354996 -775.2779684848606 35.0521 0.1144 7060 +7062 2 -28.36137855950801 -774.7586002462699 34.5951 0.1144 7061 +7063 2 -27.363402484672264 -774.2325017725452 34.1418 0.1144 7062 +7064 2 -26.36346697429113 -773.7051988851277 33.7042 0.1144 7063 +7065 2 -25.3638511220679 -773.175275345375 33.2934 0.1144 7064 +7066 2 -24.67704568102127 -772.2697401355964 32.9748 0.1144 7065 +7067 2 -24.189123205385812 -771.2392492293922 32.7625 0.1144 7066 +7068 2 -23.698251807044528 -770.2070630784046 32.6334 0.1144 7067 +7069 2 -23.208670015246014 -769.1729698576844 32.5654 0.1144 7068 +7070 2 -22.718427006657578 -768.1397613924994 32.5332 0.1144 7069 +7071 2 -51.84687162788646 -782.309784806665 41.7886 0.1144 7038 +7072 2 -51.85605193399243 -783.3172723410692 43.0564 0.1144 7071 +7073 2 -52.75077677291057 -783.1877191372382 43.9186 0.1144 7072 +7074 2 -53.536899444510965 -782.5576891814458 45.1385 0.1144 7073 +7075 2 -54.54024606082683 -782.1028512569853 45.8452 0.1144 7074 +7076 2 -55.579984839384736 -781.6609921817554 46.2636 0.1144 7075 +7077 2 -56.59422182823985 -781.1469976871954 46.578 0.1144 7076 +7078 2 -57.562012087370874 -780.5468196599975 46.8126 0.1144 7077 +7079 2 -58.52571540406191 -779.9359128443548 47.0033 0.1144 7078 +7080 2 -59.44443207796738 -779.2626092181295 47.238 0.1144 7079 +7081 2 -60.311750839574614 -778.5442138563933 47.7002 0.1144 7080 +7082 2 -61.17092622898875 -777.8127137058636 48.172 0.1144 7081 +7083 2 -62.20831164755663 -777.3679995129905 48.4655 0.1144 7082 +7084 2 -63.323188820810174 -777.1468712050827 48.7749 0.1144 7083 +7085 2 -64.3356014227686 -777.6429904078916 49.1159 0.1144 7084 +7086 2 -65.15178806640415 -778.3729844987929 49.9215 0.1144 7085 +7087 2 -90.0888840534596 -793.679683379753 52.071 0.1144 6989 +7088 2 -89.57796201212179 -792.678016595001 51.6426 0.1144 7087 +7089 2 -88.62806493316938 -792.1130380472688 51.2733 0.1144 7088 +7090 2 -87.57093979946208 -791.7049378736785 50.9144 0.1144 7089 +7091 2 -86.75984120452654 -790.9578817852264 50.3068 0.1144 7090 +7092 2 -87.66804022240001 -790.3169662573027 50.3342 0.1144 7091 +7093 2 -88.54542655566212 -789.5953687086616 50.5814 0.1144 7092 +7094 2 -89.28608206442422 -788.733383547919 50.729 0.1144 7093 +7095 2 -89.83967120476225 -787.7388064801662 50.8388 0.1144 7094 +7096 2 -90.60298741372983 -786.9404023123869 50.9135 0.1144 7095 +7097 2 -91.55158886095197 -786.3015492351242 50.9972 0.1144 7096 +7098 2 -92.50603268618985 -785.6728606361618 50.9586 0.1144 7097 +7099 2 -93.5566878633175 -785.2350118280385 50.808 0.1144 7098 +7100 2 -94.68228461496274 -785.0554520255057 50.7805 0.1144 7099 +7101 2 -95.81989847121851 -784.9436125241887 50.9074 0.1144 7100 +7102 2 -96.9354954302409 -784.7081366761278 51.1134 0.1144 7101 +7103 2 -97.8622257426568 -784.0504404711444 51.3089 0.1144 7102 +7104 2 -98.65851769296572 -783.2333352209635 51.4903 0.1144 7103 +7105 2 -99.78344532582994 -783.2425818862225 51.6426 0.1144 7104 +7106 2 -100.87061199885535 -783.5953153196576 51.7359 0.1144 7105 +7107 2 -101.9776291090275 -783.8850092405225 51.7961 0.1144 7106 +7108 2 -103.11804091670585 -783.9521344884381 51.8762 0.1144 7107 +7109 2 -104.25580432950863 -783.9143367836474 52.1651 0.1144 7108 +7110 2 -86.68522607719532 -791.0531094743369 50.2244 0.1144 7091 +7111 2 -85.96346916354958 -791.8864495115394 49.5127 0.1144 7110 +7112 2 -85.07517874335383 -792.5516925493748 48.946 0.1144 7111 +7113 2 -84.02644535664143 -792.9558605510706 48.503 0.1144 7112 +7114 2 -82.91575985745331 -793.1875472617236 48.1569 0.1144 7113 +7115 2 -81.79163550438275 -793.3385495426126 47.8766 0.1144 7114 +7116 2 -80.66432917803454 -793.239218295891 47.6403 0.1144 7115 +7117 2 -79.5667683794936 -792.9297479200774 47.4222 0.1144 7116 +7118 2 -78.47068749075552 -792.7206086952937 47.0123 0.1144 7117 +7119 2 -77.42027227188055 -792.9504889422831 46.1686 0.1144 7118 +7120 2 -76.47535322984245 -793.4762202272508 45.3043 0.1144 7119 +7121 2 -75.62809673033132 -794.1358146056655 44.3526 0.1144 7120 +7122 2 -74.67081562169395 -794.3060307301837 43.251 0.1144 7121 +7123 2 -73.63241959701742 -794.11227677297 42.1879 0.1144 7122 +7124 2 -72.58955881121204 -793.8230476571648 41.286 0.1144 7123 +7125 2 -71.53253017570239 -793.5131370995638 40.53 0.1144 7124 +7126 2 -70.43401273472301 -793.419294029153 39.8373 0.1144 7125 +7127 2 -69.31293039919913 -793.3841222083812 39.293 0.1144 7126 +7128 2 -69.34801003045104 -793.3291524942539 37.3223 0.1144 7127 +7129 2 -69.50297582423096 -793.4244059076213 34.5898 0.1144 7128 +7130 2 -69.40166260827945 -794.1638418022557 32.844 0.1144 7129 +7131 2 -69.24128382748134 -795.1958724833255 31.7075 0.1144 7130 +7132 2 -69.13012067722758 -796.2461818872755 30.6379 0.1144 7131 +7133 2 -69.04211516673956 -797.3201161450975 29.6932 0.1144 7132 +7134 2 -68.58678893205229 -798.2661635170645 28.6832 0.1144 7133 +7135 2 -69.41250995970364 -798.5307344612256 27.5497 0.1144 7134 +7136 2 -70.12936894993092 -799.0358109288327 26.5402 0.1144 7135 +7137 2 -69.60267773098496 -799.9514909001574 25.5721 0.1144 7136 +7138 2 -69.68257411619581 -800.9378863470398 24.6888 0.1144 7137 +7139 2 -70.5145194364452 -801.5593644754684 23.8888 0.1144 7138 +7140 2 -71.5934592432526 -801.7243966338087 23.05 0.1144 7139 +7141 2 -72.14364167532281 -802.2667044720715 22.2378 0.1144 7140 +7142 2 -71.92550714984802 -803.3491569138887 21.5144 0.1144 7141 +7143 2 -71.66348668762845 -804.4329225792326 20.8843 0.1144 7142 +7144 2 -71.10356164504918 -805.3241836446296 20.2564 0.1144 7143 +7145 2 -70.1743287001849 -805.9817501159303 19.9906 0.1144 7144 +7146 2 -69.21321010720888 -806.5995278269525 19.8838 0.1144 7145 +7147 2 -68.29573618466304 -807.2816946111396 19.8718 0.1144 7146 +7148 2 -67.5083129029457 -808.1082421448058 19.9268 0.1144 7147 +7149 2 -66.40920571165381 -808.3189917404172 20.0255 0.1144 7148 +7150 2 -65.27968767987142 -808.4787688848353 20.2112 0.1144 7149 +7151 2 -64.14908777060228 -808.3826952924144 20.5339 0.1144 7150 +7152 2 -63.017267028132636 -808.4980956689974 20.8149 0.1144 7151 +7153 2 -61.88308982408989 -808.6173297238213 21.0279 0.1144 7152 +7154 2 -60.80024406137531 -808.9830400110311 21.1778 0.1144 7153 +7155 2 -59.65880683791627 -808.9219751692469 21.2695 0.1144 7154 +7156 2 -58.62540716415012 -808.4317366821203 21.3147 0.1144 7155 +7157 2 -68.90287408160344 -792.7950712204354 39.3078 0.1144 7127 +7158 2 -68.25688522566242 -791.8689637871428 39.7393 0.1144 7157 +7159 2 -67.63039252815202 -791.0312549952788 40.8442 0.1144 7158 +7160 2 -66.97721003477545 -790.3330223117509 42.3783 0.1144 7159 +7161 2 -66.28004400547186 -789.662805669474 43.862 0.1144 7160 +7162 2 -65.47515808403477 -789.3009383823751 45.4796 0.1144 7161 +7163 2 -64.54953777670201 -789.3671310304048 47.1128 0.1144 7162 +7164 2 -63.61743780529926 -789.3434180948842 48.7189 0.1144 7163 +7165 2 -62.90166990261176 -789.0485369163014 50.615 0.1144 7164 +7166 2 -63.10401963645293 -788.6209917429987 52.9004 0.1144 7165 +7167 2 -63.59498572235 -787.9948809600705 54.8814 0.1144 7166 +7168 2 -63.64005913872214 -787.0060691745742 56.285 0.1144 7167 +7169 2 -63.713246793367574 -785.9848864205055 57.5352 0.1144 7168 +7170 2 -63.702248404498505 -784.945410222874 58.7034 0.1144 7169 +7171 2 -63.563207760824184 -783.8957801597534 59.7621 0.1144 7170 +7172 2 -63.32289884477217 -782.8470539824955 60.7079 0.1144 7171 +7173 2 -63.06142696058333 -781.7934187544499 61.5891 0.1144 7172 +7174 2 -62.826652383488806 -780.7291960907418 62.4389 0.1144 7173 +7175 2 -62.60515376812029 -779.6584612200152 63.2705 0.1144 7174 +7176 2 -62.3863281708997 -778.5879608145967 64.0945 0.1144 7175 +7177 2 -62.01378704248694 -777.5599588264465 64.9029 0.1144 7176 +7178 2 -61.536040948340144 -776.5721111056273 65.6916 0.1144 7177 +7179 2 -61.04542453070789 -775.5897337388534 66.4793 0.1144 7178 +7180 2 -60.70611481688198 -774.568776825902 67.4139 0.1144 7179 +7181 2 -60.48883690849624 -773.5394893390803 68.511 0.1144 7180 +7182 2 -60.311520649831266 -772.5213838266637 69.6856 0.1144 7181 +7183 2 -60.54126733421265 -771.4836309124228 70.7073 0.1144 7182 +7184 2 -61.00369411149458 -770.497578137135 71.5582 0.1144 7183 +7185 2 -61.459040577494136 -769.5272453870426 72.5287 0.1144 7184 +7186 2 -62.060572463114966 -768.6360873367612 73.4908 0.1144 7185 +7187 2 -62.65324119077391 -767.7461720378394 74.4582 0.1144 7186 +7188 2 -62.996144903533946 -766.7296129181738 75.4298 0.1144 7187 +7189 2 -63.23641716362346 -765.6875307712048 76.4218 0.1144 7188 +7190 2 -63.47574920078209 -764.6515613961799 77.4514 0.1144 7189 +7191 2 -63.91397510025183 -763.6896033820057 78.5212 0.1144 7190 +7192 2 -65.01544936592815 -763.5972199849429 77.7857 0.1144 7191 +7193 2 -66.1116634036837 -763.6707489141315 77.0036 0.1144 7192 +7194 2 -67.21209714213373 -763.9362067211008 76.6228 0.1144 7193 +7195 2 -68.30913256603738 -764.2050925680703 76.1732 0.1144 7194 +7196 2 -69.39994502309001 -764.475318073045 75.6582 0.1144 7195 +7197 2 -70.42847298942486 -764.7288569901112 74.6018 0.1144 7196 +7198 2 -63.78613446603259 -763.4606583618754 79.8291 0.1144 7191 +7199 2 -63.371807798439576 -762.7212001463411 81.7085 0.1144 7198 +7200 2 -62.98833826159456 -762.0342798931007 83.7399 0.1144 7199 +7201 2 -62.62263268580345 -761.3797593572615 85.8544 0.1144 7200 +7202 2 -62.265079094418155 -760.7423398491763 88.0079 0.1144 7201 +7203 2 -62.12023332709511 -760.0342409128061 90.1415 0.1144 7202 +7204 2 -62.27920538107769 -759.2470234485355 92.1085 0.1144 7203 +7205 2 -62.52497222772172 -758.4299335225846 93.9742 0.1144 7204 +7206 2 -62.77582712306577 -757.5957815990827 95.7891 0.1144 7205 +7207 2 -63.0317177012971 -756.7446528708797 97.5517 0.1144 7206 +7208 2 -63.74121516071814 -756.2501678406966 99.1992 0.1144 7207 +7209 2 -64.7180170510585 -756.063661870209 100.5542 0.1144 7208 +7210 2 -65.73490653068257 -755.9165866641754 101.7825 0.1144 7209 +7211 2 -66.76635847699227 -755.7677809772749 102.9389 0.1144 7210 +7212 2 -67.80672594707666 -755.617647346165 104.0466 0.1144 7211 +7213 2 -68.85017207354947 -755.4667063273899 105.1277 0.1144 7212 +7214 2 -69.89623885235753 -755.3160849667729 106.2029 0.1144 7213 +7215 2 -70.94492258407735 -755.2221237469732 107.2954 0.1144 7214 +7216 2 -71.95845100352219 -755.4301721859908 108.4098 0.1144 7215 +7217 2 -72.95657323154816 -755.7442534938084 109.5419 0.1144 7216 +7218 2 -73.95322685511915 -756.0561409007726 110.6885 0.1144 7217 +7219 2 -74.94743021205453 -756.3678133812043 111.846 0.1144 7218 +7220 2 -75.93964130640752 -756.6781438892806 113.0125 0.1144 7219 +7221 2 -76.93094810644979 -756.9880359320792 114.1865 0.1144 7220 +7222 2 -77.92051900969187 -757.2982695335098 115.3681 0.1144 7221 +7223 2 -78.9076920121111 -757.6082030155583 116.5601 0.1144 7222 +7224 2 -79.89285321317222 -757.9170172767635 117.766 0.1144 7223 +7225 2 -80.87511785734027 -758.2240511003358 118.9905 0.1144 7224 +7226 2 -81.85225921672476 -758.5306355320675 120.2365 0.1144 7225 +7227 2 -82.82285454774356 -758.5551213117063 121.6396 0.1144 7226 +7228 2 -83.6318812811589 -758.0667627501767 123.1152 0.1144 7227 +7229 2 -84.38765127279979 -757.4731273656728 124.6344 0.1144 7228 +7230 2 -85.13339513203557 -756.8868279656969 126.1982 0.1144 7229 +7231 2 -85.90460554489052 -756.3551525956598 127.8054 0.1144 7230 +7232 2 -86.78124466930205 -756.0520276287716 129.4241 0.1144 7231 +7233 2 -87.67279814775381 -755.7943407741193 131.0616 0.1144 7232 +7234 2 -88.55847021798651 -755.5397294742722 132.7208 0.1144 7233 +7235 2 -89.436216251605 -755.286936949725 134.4064 0.1144 7234 +7236 2 -90.27150420622056 -755.0094551253219 136.1909 0.1144 7235 +7237 2 -90.83600793962911 -754.5870100105817 138.341 0.1144 7236 +7238 2 -91.28201402429646 -754.1279981453323 140.6625 0.1144 7237 +7239 2 -91.7117155423118 -753.6844359113501 143.0187 0.1144 7238 +7240 2 -92.13357311497965 -753.2494336143645 145.3942 0.1144 7239 +7241 2 -92.55137115631128 -752.8187441129141 147.777 0.1144 7240 +7242 2 -92.9731763631664 -752.3838270087783 150.1531 0.1144 7241 +7243 2 -93.40109744354872 -751.9431613316892 152.5149 0.1144 7242 +7244 2 -93.88995243008063 -751.5171782661304 154.8016 0.1144 7243 +7245 2 -94.60915776650704 -751.1858332283589 156.8165 0.1144 7244 +7246 2 -95.41171365514253 -750.8787240203947 158.6665 0.1144 7245 +7247 2 -96.24229007168502 -750.560784299247 160.4249 0.1144 7246 +7248 2 -97.10544520354091 -750.2291815876313 162.0732 0.1144 7247 +7249 2 -97.93602162008338 -749.9112418664836 163.791 0.1144 7248 +7250 2 -98.59599881325848 -749.6588761111032 165.9941 0.1144 7249 +7251 2 -96.1439353857831 -820.004165886593 70.2268 0.1144 6955 +7252 2 -97.10524139322044 -820.397621093783 71.3406 0.1144 7251 +7253 2 -97.66948345102347 -821.284279940356 71.9984 0.1144 7252 +7254 2 -97.89609614112251 -822.401119650738 71.9071 0.1144 7253 +7255 2 -98.17631054696278 -823.4918644177479 71.4347 0.1144 7254 +7256 2 -98.54216218695487 -824.5439259309281 70.8103 0.1144 7255 +7257 2 -99.0382106209656 -825.5283510276803 70.0902 0.1144 7256 +7258 2 -99.84281413861186 -826.2445345721653 69.3302 0.1144 7257 +7259 2 -100.76619221584559 -826.8482641527594 68.5849 0.1144 7258 +7260 2 -101.69401592388044 -827.446861836357 67.856 0.1144 7259 +7261 2 -102.62291431192554 -828.0460027168577 67.1345 0.1144 7260 +7262 2 -103.57004146608446 -828.6133869903929 66.3972 0.1144 7261 +7263 2 -104.56839164250061 -829.0645917390932 65.6065 0.1144 7262 +7264 2 -105.55978503815089 -829.542391472309 64.8449 0.1144 7263 +7265 2 -106.44197001965205 -830.2242131707123 64.2527 0.1144 7264 +7266 2 -107.3016346474416 -830.9621511204938 63.8523 0.1144 7265 +7267 2 -108.16958951083606 -831.693094644379 63.9254 0.1144 7266 +7268 2 -108.95706666723436 -832.3302007094505 65.163 0.1144 7267 +7269 2 -109.70892450550875 -832.9158325656754 66.7078 0.1144 7268 +7270 2 -110.54042353550068 -833.5357451830034 67.8874 0.1144 7269 +7271 2 -111.40074117631539 -834.167972331189 68.8943 0.1144 7270 +7272 2 -112.2434115855861 -834.8417039998374 69.8228 0.1144 7271 +7273 2 -113.04200706291377 -835.556776935692 70.8058 0.1144 7272 +7274 2 -113.86757162633728 -836.2039129272882 71.9202 0.1144 7273 +7275 2 -114.75777273240669 -836.7283243599943 73.071 0.1144 7274 +7276 2 -115.79656268152797 -836.9237290211585 74.0914 0.1144 7275 +7277 2 -116.88963990236405 -836.9106983155305 74.9146 0.1144 7276 +7278 2 -117.9968364012114 -836.8876828220509 75.6137 0.1144 7277 +7279 2 -119.11545105628181 -836.8634691180446 76.1958 0.1144 7278 +7280 2 -120.24175728265831 -836.8401096568864 76.6797 0.1144 7279 +7281 2 -121.37372999072139 -836.8161249075587 77.0896 0.1144 7280 +7282 2 -122.50823815826988 -836.792407450576 77.4432 0.1144 7281 +7283 2 -123.6455162506119 -836.7662842677905 77.7434 0.1144 7282 +7284 2 -124.78284189067375 -836.7053282306975 77.9607 0.1144 7283 +7285 2 -125.90858240414772 -836.5123580093592 78.0055 0.1144 7284 +7286 2 -127.01732629005627 -836.237807676159 77.8607 0.1144 7285 +7287 2 -128.13184787653176 -836.0258512578081 77.6026 0.1144 7286 +7288 2 -129.2323654997696 -836.149095166148 77.3427 0.1144 7287 +7289 2 -130.16419568079138 -836.7675278736732 77.2002 0.1144 7288 +7290 2 -130.91110712492164 -837.6321852362321 77.2153 0.1144 7289 +7291 2 -131.64077688105215 -838.511716206118 77.3682 0.1144 7290 +7292 2 -132.45926313379184 -839.2927758607386 77.6182 0.1144 7291 +7293 2 -133.47848606155233 -839.6815694866217 77.91 0.1144 7292 +7294 2 -134.6142338788773 -839.6734039834851 78.192 0.1144 7293 +7295 2 -135.750501968658 -839.5943081672477 78.451 0.1144 7294 +7296 2 -136.8877923726362 -839.5158407407633 78.6974 0.1144 7295 +7297 2 -138.01309851672593 -839.585771149556 78.9673 0.1144 7296 +7298 2 -139.08989508966766 -839.92673083999 79.3061 0.1144 7297 +7299 2 -140.12063026280236 -840.3951420406065 79.7126 0.1144 7298 +7300 2 -141.2027037849461 -840.6534226296477 80.1256 0.1144 7299 +7301 2 -142.32902783358827 -840.5884039596353 80.4748 0.1144 7300 +7302 2 -143.45102847388395 -840.3971258814972 80.7472 0.1144 7301 +7303 2 -144.57450392180075 -840.1946641124441 80.953 0.1144 7302 +7304 2 -145.6969898825571 -839.9917115123008 81.1079 0.1144 7303 +7305 2 -146.8226920583644 -839.7879186974552 81.2358 0.1144 7304 +7306 2 -147.94713745466603 -839.5861705110048 81.3627 0.1144 7305 +7307 2 -149.07118892652295 -839.382771620604 81.5066 0.1144 7306 +7308 2 -150.19474956728956 -839.1803622173636 81.676 0.1144 7307 +7309 2 -151.32342428278673 -839.0240576537786 81.9022 0.1144 7308 +7310 2 -152.45603838477535 -838.9226437199411 82.2108 0.1144 7309 +7311 2 -153.5860670705124 -838.8384215173372 82.5916 0.1144 7310 +7312 2 -154.71337819726858 -838.7565198476861 83.0242 0.1144 7311 +7313 2 -155.82031422246237 -838.8889911129788 83.4742 0.1144 7312 +7314 2 -156.87258646531436 -839.2874176393589 83.9068 0.1144 7313 +7315 2 -157.91178846291976 -839.7355615539365 84.3206 0.1144 7314 +7316 2 -159.00480851753517 -839.903848957531 84.7725 0.1144 7315 +7317 2 -160.1297484620356 -839.860751379091 85.2729 0.1144 7316 +7318 2 -161.25521137212675 -839.8408644987661 85.7752 0.1144 7317 +7319 2 -162.38159599034648 -839.8805866819645 86.2565 0.1144 7318 +7320 2 -163.50868567365228 -839.9409317379798 86.6933 0.1144 7319 +7321 2 -164.63128487157246 -840.135382556515 86.8588 0.1144 7320 +7322 2 -165.72778191666615 -840.4400907449526 86.6233 0.1144 7321 +7323 2 -166.68519677786824 -840.7197598414743 85.2592 0.1144 7322 +7324 2 -86.89056052496062 -812.12615151398 77.6087 0.1144 6825 +7325 2 -86.17097797339258 -812.9582456982397 76.8662 0.1144 7324 +7326 2 -85.36895147827647 -813.7583272885364 76.5111 0.1144 7325 +7327 2 -84.48131306481767 -814.4683410186517 76.1978 0.1144 7326 +7328 2 -83.44736119687971 -814.9271385609159 75.8792 0.1144 7327 +7329 2 -82.33368602827255 -815.1289336025495 75.544 0.1144 7328 +7330 2 -81.23247735611656 -815.3933256606155 75.1467 0.1144 7329 +7331 2 -80.25493815951526 -815.9285861384279 74.5825 0.1144 7330 +7332 2 -79.38847743487597 -816.6085385063609 73.8251 0.1144 7331 +7333 2 -78.5007278025368 -817.2553330334571 73.0414 0.1144 7332 +7334 2 -77.57463819150982 -817.8596626805438 72.3355 0.1144 7333 +7335 2 -76.63103168046186 -818.4533425288694 71.7066 0.1144 7334 +7336 2 -75.68244805550555 -819.0505363972779 71.1446 0.1144 7335 +7337 2 -74.72877397280271 -819.6474184325084 70.6378 0.1144 7336 +7338 2 -73.66446501526019 -820.0070330775034 70.1252 0.1144 7337 +7339 2 -72.5455324185418 -820.0753038911869 69.5724 0.1144 7338 +7340 2 -71.42675899687137 -820.0711312464817 68.9732 0.1144 7339 +7341 2 -70.31377007677443 -820.0665232380821 68.3374 0.1144 7340 +7342 2 -69.20074832964039 -820.0617776710201 67.6822 0.1144 7341 +7343 2 -68.08990094458414 -820.0557862510153 67.0197 0.1144 7342 +7344 2 -66.98005845990764 -819.9912526225175 66.365 0.1144 7343 +7345 2 -65.88633403274267 -819.7782797194931 65.7325 0.1144 7344 +7346 2 -64.80350307970008 -819.4994614504847 65.1367 0.1144 7345 +7347 2 -63.72072208342368 -819.2031841578977 64.6016 0.1144 7346 +7348 2 -62.62268486072338 -818.9861517235369 64.027 0.1144 7347 +7349 2 -61.549832492366136 -818.7348303243082 63.3063 0.1144 7348 +7350 2 -60.56338648517027 -818.2466902164628 62.545 0.1144 7349 +7351 2 -59.60872101567577 -817.6961530139461 61.7924 0.1144 7350 +7352 2 -58.6514348938461 -817.1452961532715 61.0644 0.1144 7351 +7353 2 -57.67676091314138 -816.6053494880005 60.4551 0.1144 7352 +7354 2 -56.660338736612914 -816.0960840571482 60.1798 0.1144 7353 +7355 2 -55.577918837744164 -815.8013199098491 60.1384 0.1144 7354 +7356 2 -54.435978471558684 -815.7935887989245 60.0762 0.1144 7355 +7357 2 -53.29584456903672 -815.8461279683129 59.8973 0.1144 7356 +7358 2 -52.16923850736666 -815.9486525107809 59.5087 0.1144 7357 +7359 2 -51.087184808087244 -815.7669163507144 58.9632 0.1144 7358 +7360 2 -50.04212501924681 -815.3676409974194 58.3906 0.1144 7359 +7361 2 -49.003892277489655 -814.9442732920575 57.8385 0.1144 7360 +7362 2 -47.96160310597932 -814.5185295863467 57.3336 0.1144 7361 +7363 2 -46.91508323020034 -814.0954675109965 56.8904 0.1144 7362 +7364 2 -45.85247061271872 -813.6920935961622 56.5816 0.1144 7363 +7365 2 -44.779434836804114 -813.3010937577897 56.406 0.1144 7364 +7366 2 -43.7049711084515 -812.9105073826373 56.3122 0.1144 7365 +7367 2 -42.71057303861099 -812.3610192128854 56.1344 0.1144 7366 +7368 2 -41.988638009546236 -811.5279127408128 55.5736 0.1144 7367 +7369 2 -41.773277996488645 -811.5244206388888 55.288 0.1144 7368 +7370 2 -40.66547093015416 -811.5067992377117 54.6669 0.1144 7369 +7371 2 -39.54657597856587 -811.6099552715156 54.1677 0.1144 7370 +7372 2 -38.43482500942051 -811.7954433374507 53.6799 0.1144 7371 +7373 2 -37.31179144211606 -811.8638931490465 53.1899 0.1144 7372 +7374 2 -36.18938116238283 -811.8198058045 52.6772 0.1144 7373 +7375 2 -35.11568376123043 -811.5305205287625 52.0744 0.1144 7374 +7376 2 -34.20019889357383 -810.9248346142062 51.3629 0.1144 7375 +7377 2 -33.34863009025764 -810.2348343075261 50.5568 0.1144 7376 +7378 2 -32.30079998586075 -810.1547750649645 49.6115 0.1144 7377 +7379 2 -31.232183033190864 -810.3290972622505 48.7133 0.1144 7378 +7380 2 -30.162400004494742 -810.5162014885889 47.8324 0.1144 7379 +7381 2 -29.09110383051072 -810.7036668123351 46.97 0.1144 7380 +7382 2 -28.007831298629384 -810.8516082591015 46.1426 0.1144 7381 +7383 2 -26.905776599367897 -810.8093513089543 45.4062 0.1144 7382 +7384 2 -25.918213780375396 -810.3405968331958 44.641 0.1144 7383 +7385 2 -25.201043347733076 -809.5238004384048 43.8021 0.1144 7384 +7386 2 -24.5043753589743 -808.6887352233234 42.9293 0.1144 7385 +7387 2 -23.750312722946603 -807.9056049142771 42.0812 0.1144 7386 +7388 2 -22.800865035834732 -807.3355030817613 41.3694 0.1144 7387 +7389 2 -21.845676600749442 -806.7617551811295 40.7389 0.1144 7388 +7390 2 -20.883981469275398 -806.1854163536166 40.1842 0.1144 7389 +7391 2 -19.91836746671072 -805.6066686987176 39.6903 0.1144 7390 +7392 2 -18.949824080215848 -805.0260030475231 39.2342 0.1144 7391 +7393 2 -17.981889544698106 -804.4445378336435 38.7951 0.1144 7392 +7394 2 -16.98740007884163 -803.9083748898471 38.3443 0.1144 7393 +7395 2 -15.98643915267985 -803.3871324085609 37.8935 0.1144 7394 +7396 2 -14.98511712911042 -802.8643767819868 37.4539 0.1144 7395 +7397 2 -13.981888035808453 -802.34033154887 37.0359 0.1144 7396 +7398 2 -12.978573749656618 -801.8162339499405 36.6397 0.1144 7397 +7399 2 -12.000285835336541 -801.3062282179185 35.8985 0.1144 7398 +7400 2 -41.87786178192431 -811.3214296001115 54.3511 0.1144 7368 +7401 2 -41.40519652702301 -810.4803789673854 52.8937 0.1144 7400 +7402 2 -40.37953498367935 -810.3226239405054 52.369 0.1144 7401 +7403 2 -39.25185014610565 -810.1626089502502 52.2458 0.1144 7402 +7404 2 -38.17203348575438 -809.8089938628631 52.4989 0.1144 7403 +7405 2 -37.22510104450072 -809.4794252786483 53.8479 0.1144 7404 +7406 2 -83.81255407246238 -810.3067228898292 87.4026 0.1144 6818 +7407 2 -83.40536288177393 -809.2520229020479 87.7478 0.1144 7406 +7408 2 -83.20922881119739 -808.1270374104264 87.9194 0.1144 7407 +7409 2 -82.94055678463312 -807.0219067655967 88.2031 0.1144 7408 +7410 2 -82.59435876160981 -805.9443639781146 88.6119 0.1144 7409 +7411 2 -82.24468505617025 -804.8726666702312 89.0901 0.1144 7410 +7412 2 -82.00581020102632 -803.7845603778222 89.5348 0.1144 7411 +7413 2 -82.08839910835508 -802.6495453504388 89.7571 0.1144 7412 +7414 2 -82.288816527959 -801.523922963526 89.8103 0.1144 7413 +7415 2 -82.54229728449425 -800.4080279747093 89.8559 0.1144 7414 +7416 2 -82.80223237160553 -799.2948091056236 89.9195 0.1144 7415 +7417 2 -83.0222472482458 -798.1745420597559 90.0057 0.1144 7416 +7418 2 -83.10763890740517 -797.0372588652323 90.1029 0.1144 7417 +7419 2 -83.07590471032893 -795.893832072326 90.1914 0.1144 7418 +7420 2 -83.13946908297837 -794.7592133784337 90.2653 0.1144 7419 +7421 2 -83.38430160808414 -793.642110874341 90.3288 0.1144 7420 +7422 2 -83.65933925720097 -792.5327756402623 90.3594 0.1144 7421 +7423 2 -83.93393061606034 -791.4218748950832 90.3286 0.1144 7422 +7424 2 -84.50559685869229 -790.5968733514269 89.8853 0.1144 7423 +7425 2 -85.48260657278487 -790.1781986345301 88.858 0.1144 7424 +7426 2 -86.38162098101739 -789.6901015706273 87.6215 0.1144 7425 +7427 2 -87.05816842335403 -788.9847367017348 86.2154 0.1144 7426 +7428 2 -87.69851191141399 -788.2248385063829 84.8445 0.1144 7427 +7429 2 -88.64963581394875 -787.6626595917774 84.1103 0.1144 7428 +7430 2 -89.6261064390097 -787.087889265131 83.7309 0.1144 7429 +7431 2 -90.07008011792877 -787.1848345199251 83.5677 0.1144 7430 +7432 2 -91.05558018448676 -787.4012436667147 84.8683 0.1144 7431 +7433 2 -92.13168400397856 -787.6692362406327 85.5361 0.1144 7432 +7434 2 -93.13596795442652 -788.1172802416779 86.2926 0.1144 7433 +7435 2 -94.14100451768036 -788.5511142612324 86.9929 0.1144 7434 +7436 2 -95.25540797759473 -788.7325454838237 87.4224 0.1144 7435 +7437 2 -96.39076697265665 -788.8342441186816 87.6232 0.1144 7436 +7438 2 -97.53394629608206 -788.8815898100654 87.6954 0.1144 7437 +7439 2 -98.67699657836141 -788.9073755072845 87.7002 0.1144 7438 +7440 2 -99.82093161617581 -788.9338224212936 87.6725 0.1144 7439 +7441 2 -100.96483072537004 -788.9668205725243 87.6305 0.1144 7440 +7442 2 -102.1059068514214 -789.0263722690206 87.5532 0.1144 7441 +7443 2 -103.24529014173608 -789.1062467189516 87.4118 0.1144 7442 +7444 2 -104.38381608761935 -789.2005015360729 87.2323 0.1144 7443 +7445 2 -105.5176143896737 -789.337394122646 87.0862 0.1144 7444 +7446 2 -106.64555490049297 -789.5231552705018 87.0307 0.1144 7445 +7447 2 -107.77340711687937 -789.7155528484292 87.0556 0.1144 7446 +7448 2 -108.89974618797791 -789.908311523764 87.1402 0.1144 7447 +7449 2 -110.0260328932637 -790.1011553919489 87.2637 0.1144 7448 +7450 2 -111.14902842467512 -790.3146307451633 87.3869 0.1144 7449 +7451 2 -112.24396546929772 -790.6304702587031 87.4065 0.1144 7450 +7452 2 -113.30504781176235 -791.0518018531864 87.2421 0.1144 7451 +7453 2 -114.40346905631773 -791.3402030659255 87.1814 0.1144 7452 +7454 2 -115.52941179392505 -791.5139372065812 87.4269 0.1144 7453 +7455 2 -116.64372455035993 -791.684631028515 87.8973 0.1144 7454 +7456 2 -117.70219785958894 -792.0773613477545 88.3008 0.1144 7455 +7457 2 -118.75294223647039 -792.5111193845123 88.6119 0.1144 7456 +7458 2 -119.80694426765258 -792.948171004191 88.811 0.1144 7457 +7459 2 -120.86353412413293 -793.3854047233651 88.8748 0.1144 7458 +7460 2 -121.93928745902831 -793.7740840287847 88.825 0.1144 7459 +7461 2 -123.04238259652674 -794.068057918148 88.6833 0.1144 7460 +7462 2 -124.15448534635237 -794.3233160107332 88.4635 0.1144 7461 +7463 2 -125.26134058834141 -794.5913123787709 88.1905 0.1144 7462 +7464 2 -126.3194411810631 -795.0108111698083 87.955 0.1144 7463 +7465 2 -127.37148067511691 -795.4533471716784 87.764 0.1144 7464 +7466 2 -128.4533091368263 -795.8080814799085 87.4924 0.1144 7465 +7467 2 -129.47573905189972 -796.0257097610738 86.3808 0.1144 7466 +7468 2 -89.93093706268613 -786.762306816481 83.6256 0.1144 7430 +7469 2 -90.71039597012262 -785.9267554646073 83.757 0.1144 7468 +7470 2 -91.48588053907267 -785.0955692740818 84.0468 0.1144 7469 +7471 2 -92.25825362459719 -784.2650529125588 84.427 0.1144 7470 +7472 2 -92.96519309084827 -783.3836345720094 84.868 0.1144 7471 +7473 2 -93.66055494173982 -782.4990907198887 85.3678 0.1144 7472 +7474 2 -94.35422154784808 -781.6174957904736 85.9244 0.1144 7473 +7475 2 -95.0434675252124 -780.7387005113062 86.527 0.1144 7474 +7476 2 -95.73192255210418 -779.8632926201221 87.1648 0.1144 7475 +7477 2 -96.11682494276272 -779.3398417249415 87.0302 0.1144 7476 +7478 2 -96.75735533072604 -778.3961227879187 87.0825 0.1144 7477 +7479 2 -97.37855865558139 -777.437824254481 87.1987 0.1144 7478 +7480 2 -97.99806983723654 -776.475785847865 87.2864 0.1144 7479 +7481 2 -98.61709018780147 -775.5147369284095 87.3751 0.1144 7480 +7482 2 -99.23597297970382 -774.5537208359912 87.4516 0.1144 7481 +7483 2 -99.85650647555653 -773.592310819128 87.502 0.1144 7482 +7484 2 -100.4740582216664 -772.6290679988191 87.5204 0.1144 7483 +7485 2 -101.11780482468073 -771.6845088470941 87.5115 0.1144 7484 +7486 2 -101.90580964096776 -770.867709226925 87.3513 0.1144 7485 +7487 2 -102.7589745810168 -770.1177246370358 87.0089 0.1144 7486 +7488 2 -103.65862838257628 -769.4339947507946 86.5903 0.1144 7487 +7489 2 -104.65344760484402 -768.8946832591622 86.224 0.1144 7488 +7490 2 -105.6726672182371 -768.3878597793639 85.9298 0.1144 7489 +7491 2 -106.69353753558057 -767.8806423751209 85.7072 0.1144 7490 +7492 2 -107.71748650931251 -767.3726175832128 85.5588 0.1144 7491 +7493 2 -108.74138311723169 -766.8646779841545 85.4627 0.1144 7492 +7494 2 -109.76497099355598 -766.3551400469585 85.3919 0.1144 7493 +7495 2 -110.78985708863566 -765.8476912789904 85.3269 0.1144 7494 +7496 2 -111.71293892388923 -765.1783619912516 85.2718 0.1144 7495 +7497 2 -112.59113884798268 -764.4464655072306 85.2247 0.1144 7496 +7498 2 -113.46399505013049 -763.70588486316 85.181 0.1144 7497 +7499 2 -114.33622286252546 -762.9663265332869 85.1301 0.1144 7498 +7500 2 -115.22835927259817 -762.2510957133255 85.0788 0.1144 7499 +7501 2 -116.13683789445297 -761.5553004822174 85.0214 0.1144 7500 +7502 2 -117.04731739110282 -760.8648434624253 84.912 0.1144 7501 +7503 2 -117.95722086381257 -760.1753235639809 84.7442 0.1144 7502 +7504 2 -118.74509284483385 -759.3677153721443 84.3256 0.1144 7503 +7505 2 -119.44734369745933 -758.5156947679411 83.6004 0.1144 7504 +7506 2 -120.11501426743965 -757.6960615695028 82.5899 0.1144 7505 +7507 2 -120.66418238827079 -757.0210945369281 80.7719 0.1144 7506 +7508 2 -95.94957466303772 -779.7889616130915 87.7484 0.1144 7476 +7509 2 -96.89109299916797 -779.4652651152257 89.1047 0.1144 7508 +7510 2 -97.39815251930425 -778.7954035451688 90.2927 0.1144 7509 +7511 2 -97.3439971895123 -777.6972375830961 91.0431 0.1144 7510 +7512 2 -97.23420472563703 -776.5782543370749 91.5463 0.1144 7511 +7513 2 -97.18670054659911 -775.4452062564649 91.8722 0.1144 7512 +7514 2 -97.33249462880079 -774.3209877965583 92.0525 0.1144 7513 +7515 2 -97.60816066767052 -773.2106302482821 92.1413 0.1144 7514 +7516 2 -97.88319831678731 -772.1012950142034 92.2015 0.1144 7515 +7517 2 -98.1587267969945 -770.9909702929642 92.2645 0.1144 7516 +7518 2 -98.43340334870369 -769.8801219135978 92.332 0.1144 7517 +7519 2 -98.70937811916828 -768.7713627034593 92.4017 0.1144 7518 +7520 2 -98.98490659937544 -767.6610379822201 92.472 0.1144 7519 +7521 2 -99.24649239043714 -766.5474251886897 92.5417 0.1144 7520 +7522 2 -99.47470920824941 -765.4268001469975 92.6117 0.1144 7521 +7523 2 -99.68283773793512 -764.3018092514207 92.6814 0.1144 7522 +7524 2 -99.89127499921574 -763.1784166939815 92.7489 0.1144 7523 +7525 2 -100.10028828443646 -762.0540870151945 92.8133 0.1144 7524 +7526 2 -100.30833162127236 -760.9290437538049 92.8724 0.1144 7525 +7527 2 -100.51734490649305 -759.8047140750178 92.9242 0.1144 7526 +7528 2 -100.50801332733026 -758.6817482867455 92.9662 0.1144 7527 +7529 2 -99.95399491464698 -757.726132590763 92.9863 0.1144 7528 +7530 2 -99.1839080084852 -756.8795095831863 92.9824 0.1144 7529 +7531 2 -98.4148957823337 -756.0334297725127 92.9564 0.1144 7530 +7532 2 -97.64538490011202 -755.1858696435883 92.9062 0.1144 7531 +7533 2 -96.87788581924839 -754.339428735507 92.8276 0.1144 7532 +7534 2 -96.10882122728411 -753.4934341176831 92.7136 0.1144 7533 +7535 2 -95.3407461224804 -752.6479303309496 92.5574 0.1144 7534 +7536 2 -94.57355577321168 -751.803087761006 92.351 0.1144 7535 +7537 2 -93.83626250889576 -750.9403514963258 92.0251 0.1144 7536 +7538 2 -93.12887494174528 -750.0637177758696 91.5368 0.1144 7537 +7539 2 -92.43351128021193 -749.1917750780856 90.9182 0.1144 7538 +7540 2 -91.74313024321653 -748.3270033950632 90.2079 0.1144 7539 +7541 2 -91.05733790631436 -747.4677520228524 89.4384 0.1144 7540 +7542 2 -90.2083422076137 -746.8129042286378 88.5682 0.1144 7541 +7543 2 -89.15910406833923 -746.8353919384336 87.7374 0.1144 7542 +7544 2 -88.07685315811882 -747.0080244015659 86.9336 0.1144 7543 +7545 2 -86.99326027554295 -747.1826491272806 86.1406 0.1144 7544 +7546 2 -85.90869744458226 -747.3565602703925 85.3625 0.1144 7545 +7547 2 -84.82069485982545 -747.5297656558819 84.6045 0.1144 7546 +7548 2 -83.73046554717813 -747.7043020871636 83.8712 0.1144 7547 +7549 2 -82.63436033694137 -747.8925991080955 83.2146 0.1144 7548 +7550 2 -81.53533833849926 -748.1034010695197 82.642 0.1144 7549 +7551 2 -80.43248817244589 -748.3225316042156 82.1288 0.1144 7550 +7552 2 -79.32683525456196 -748.5439303060516 81.6536 0.1144 7551 +7553 2 -78.21922290113265 -748.7641245941948 81.1964 0.1144 7552 +7554 2 -77.13262194100977 -748.5810019209398 80.6411 0.1144 7553 +7555 2 -76.01979970718897 -748.6328391268253 80.0954 0.1144 7554 +7556 2 -74.9250953223752 -748.8824482810437 79.5841 0.1144 7555 +7557 2 -73.85686818627867 -749.2155914720396 79.0056 0.1144 7556 +7558 2 -72.80178658568882 -749.5687877150785 78.3479 0.1144 7557 +7559 2 -71.82181494471769 -750.0621740575043 77.5698 0.1144 7558 +7560 2 -70.88504478550232 -750.6116951661104 76.6937 0.1144 7559 +7561 2 -69.86448420604208 -750.9700294146156 75.7907 0.1144 7560 +7562 2 -68.8175761115473 -751.2423269938947 74.8815 0.1144 7561 +7563 2 -67.73978285967553 -751.2807161358448 73.9642 0.1144 7562 +7564 2 -66.67865766322493 -751.1065620447139 73.0218 0.1144 7563 +7565 2 -65.61685893834823 -750.9856369528171 72.0236 0.1144 7564 +7566 2 -65.51243934115283 -751.8372575183987 70.721 0.1144 7565 +7567 2 -65.8459392199114 -752.7714203312253 69.335 0.1144 7566 +7568 2 -66.32052626522794 -753.578790157524 67.7888 0.1144 7567 +7569 2 -66.75913459383786 -754.1586285091998 65.627 0.1144 7568 +7570 2 -69.09934381080458 -860.9680260038061 85.3196 0.1144 6157 +7571 2 -70.20397441449094 -860.7459989122171 85.7338 0.1144 7570 +7572 2 -71.30844074094776 -860.4849004370722 86.1017 0.1144 7571 +7573 2 -72.38111281530885 -860.170687975693 86.6841 0.1144 7572 +7574 2 -72.42078004566937 -860.2461310060903 87.0873 0.1144 7573 +7575 2 -72.67948691214698 -860.7273614781484 89.5448 0.1144 7574 +7576 2 -73.06262548548631 -861.3187651335477 91.6667 0.1144 7575 +7577 2 -73.73751993862109 -862.1082844031845 92.8332 0.1144 7576 +7578 2 -74.44957629653291 -862.8789759583201 93.954 0.1144 7577 +7579 2 -75.24826316987662 -863.5807236682191 94.9407 0.1144 7578 +7580 2 -76.17373041633834 -864.1831550300576 95.6542 0.1144 7579 +7581 2 -77.1457604118124 -864.7537562111803 96.1162 0.1144 7580 +7582 2 -78.11493769868969 -865.3440845830219 96.4544 0.1144 7581 +7583 2 -78.87108570982573 -866.15666809581 96.6624 0.1144 7582 +7584 2 -79.38985100397443 -867.1738375701784 96.6224 0.1144 7583 +7585 2 -79.86498834897418 -868.2098511962406 96.4012 0.1144 7584 +7586 2 -80.33897674767687 -869.2410502691141 96.0616 0.1144 7585 +7587 2 -80.59169738532074 -870.3350848249253 95.6838 0.1144 7586 +7588 2 -80.63729449462596 -871.4668432989926 95.3277 0.1144 7587 +7589 2 -80.66390850850169 -872.6031319041741 95.0116 0.1144 7588 +7590 2 -81.02623520184778 -873.6544352939188 94.6814 0.1144 7589 +7591 2 -81.61188358939714 -874.6240935925792 94.3085 0.1144 7590 +7592 2 -82.17075730198223 -875.6067567665007 93.891 0.1144 7591 +7593 2 -82.22798577753304 -876.6934303060635 93.4522 0.1144 7592 +7594 2 -82.0196922780811 -877.8034124446974 93.0191 0.1144 7593 +7595 2 -81.73289250506275 -878.8948361617736 92.57 0.1144 7594 +7596 2 -81.24640551021426 -879.8982620752537 92.0237 0.1144 7595 +7597 2 -80.66774925133137 -880.8505508518629 91.383 0.1144 7596 +7598 2 -80.08335534605811 -881.7925047644719 90.6892 0.1144 7597 +7599 2 -79.45316051463143 -882.7064234284912 90.0208 0.1144 7598 +7600 2 -78.74239357330558 -883.572107715699 89.4589 0.1144 7599 +7601 2 -78.00725837535492 -884.4295041763482 89.01 0.1144 7600 +7602 2 -77.47386225476896 -885.4282767122862 88.6906 0.1144 7601 +7603 2 -77.47846447359294 -886.5524438126686 88.5256 0.1144 7602 +7604 2 -77.58562698038372 -887.6911737881843 88.48 0.1144 7603 +7605 2 -77.69328031826481 -888.8289142765398 88.5035 0.1144 7604 +7606 2 -77.80289309169126 -889.967859178588 88.5564 0.1144 7605 +7607 2 -77.91151637795724 -891.106313249546 88.6116 0.1144 7606 +7608 2 -78.08657818387627 -892.2371270910372 88.6231 0.1144 7607 +7609 2 -78.37694776326776 -893.342095867684 88.5422 0.1144 7608 +7610 2 -78.68517339226577 -894.442076509163 88.3814 0.1144 7609 +7611 2 -78.99457060791971 -895.5399601564343 88.1636 0.1144 7610 +7612 2 -79.30204121506534 -896.6367769486751 87.9124 0.1144 7611 +7613 2 -79.64061883148631 -897.7244256454787 87.6509 0.1144 7612 +7614 2 -80.05441052362599 -898.7857651649146 87.4062 0.1144 7613 +7615 2 -80.47607588656709 -899.8453711019005 87.1903 0.1144 7614 +7616 2 -80.90087227170943 -900.9040844583714 87.0061 0.1144 7615 +7617 2 -81.26127717464024 -901.9890686545436 86.8678 0.1144 7616 +7618 2 -81.33965940827494 -903.126306692709 86.8221 0.1144 7617 +7619 2 -81.38378170995901 -904.2692488576913 86.8546 0.1144 7618 +7620 2 -81.26408085461944 -905.4056325759973 86.9296 0.1144 7619 +7621 2 -81.06366343501548 -906.53125496291 87.0232 0.1144 7620 +7622 2 -80.85362783559717 -907.6549562519442 87.1226 0.1144 7621 +7623 2 -80.64456218456374 -908.779371123581 87.2169 0.1144 7622 +7624 2 -80.43455941218255 -909.9032099712776 87.2981 0.1144 7623 +7625 2 -80.22554612696175 -911.0275396500647 87.3678 0.1144 7624 +7626 2 -80.0154581617308 -912.1513261319485 87.4275 0.1144 7625 +7627 2 -79.80683880095478 -913.277306514686 87.4759 0.1144 7626 +7628 2 -79.59680320153652 -914.4010078037201 87.507 0.1144 7627 +7629 2 -79.38622440521522 -915.5257837727645 87.5143 0.1144 7628 +7630 2 -79.17715875418173 -916.6501986444013 87.4894 0.1144 7629 +7631 2 -78.96712315476347 -917.7738999334355 87.4264 0.1144 7630 +7632 2 -78.82288055551624 -918.9085798894417 87.3068 0.1144 7631 +7633 2 -79.11846481570734 -920.0006728319734 87.043 0.1144 7632 +7634 2 -79.4502270041445 -921.0841322637581 86.6617 0.1144 7633 +7635 2 -79.78238621860959 -922.1625536036091 86.2028 0.1144 7634 +7636 2 -80.11384277703499 -923.237725901372 85.7016 0.1144 7635 +7637 2 -80.44524696964763 -924.3129833919846 85.1906 0.1144 7636 +7638 2 -80.785566686035 -925.3869129383879 84.7028 0.1144 7637 +7639 2 -81.29292475052361 -926.4010616328102 84.3338 0.1144 7638 +7640 2 -81.805629638541 -927.417205691398 84.0549 0.1144 7639 +7641 2 -82.31601089202229 -928.4373209868891 83.8474 0.1144 7640 +7642 2 -82.82840394686158 -929.4585555032232 83.6965 0.1144 7641 +7643 2 -83.3417341230487 -930.4803660434976 83.5884 0.1144 7642 +7644 2 -83.85398961922547 -931.5016333868689 83.5111 0.1144 7643 +7645 2 -84.36669140565976 -932.5244662413407 83.4599 0.1144 7644 +7646 2 -84.89566183012585 -933.5384007017673 83.4397 0.1144 7645 +7647 2 -85.53388651763584 -934.4880244631868 83.4963 0.1144 7646 +7648 2 -86.17340081168848 -935.4357411548739 83.6088 0.1144 7647 +7649 2 -86.8118927915437 -936.3828294568082 83.7575 0.1144 7648 +7650 2 -87.44531695401108 -937.3226943781679 84.1372 0.1144 7649 +7651 2 -72.5087176881361 -859.8408731239493 86.9478 0.1144 7573 +7652 2 -72.91044020648351 -858.8027170575256 87.5776 0.1144 7651 +7653 2 -73.31474503949951 -857.7540580557524 88.1051 0.1144 7652 +7654 2 -73.71990180101344 -856.7059227121065 88.6256 0.1144 7653 +7655 2 -74.17124790249602 -855.676788286156 89.1467 0.1144 7654 +7656 2 -74.6739152409435 -854.6711004087019 89.6624 0.1144 7655 +7657 2 -74.7831696049548 -853.5780649408672 90.1216 0.1144 7656 +7658 2 -74.47796406336633 -852.4907396963412 90.4322 0.1144 7657 +7659 2 -74.08819666017303 -851.4185782759347 90.6307 0.1144 7658 +7660 2 -73.69276277529315 -850.347042143698 90.7558 0.1144 7659 +7661 2 -73.40814487043806 -849.2415004446943 90.8768 0.1144 7660 +7662 2 -73.19940776872119 -848.1194498476325 91.0414 0.1144 7661 +7663 2 -72.97867648684121 -846.9995345824452 91.2604 0.1144 7662 +7664 2 -72.7420814179371 -845.8859494247808 91.5253 0.1144 7663 +7665 2 -72.5048251322431 -844.7732490226516 91.8204 0.1144 7664 +7666 2 -72.26699282260893 -843.6614857418701 92.1298 0.1144 7665 +7667 2 -72.19471243435538 -842.5294069171083 92.4381 0.1144 7666 +7668 2 -72.46939139511107 -841.4359323684707 92.7293 0.1144 7667 +7669 2 -72.89329988832955 -840.3792511159744 93.0017 0.1144 7668 +7670 2 -73.31632362601303 -839.3219086466881 93.27 0.1144 7669 +7671 2 -73.67947170036456 -838.2439607184028 93.5547 0.1144 7670 +7672 2 -74.01108360491253 -837.1560187922128 93.8647 0.1144 7671 +7673 2 -74.3390408291319 -836.0698213750355 94.1987 0.1144 7672 +7674 2 -74.66856356445192 -834.983177667601 94.5549 0.1144 7673 +7675 2 -74.95874211324093 -833.8885486620367 94.9346 0.1144 7674 +7676 2 -75.18294866394666 -832.7788400189143 95.3414 0.1144 7675 +7677 2 -75.37712908855346 -831.6654650763636 95.7678 0.1144 7676 +7678 2 -75.56872168786214 -830.5519080343176 96.2041 0.1144 7677 +7679 2 -75.7595147244856 -829.4377421412946 96.6417 0.1144 7678 +7680 2 -75.8780495037989 -828.3141404520412 97.0662 0.1144 7679 +7681 2 -75.95096476391754 -827.1839783155131 97.4655 0.1144 7680 +7682 2 -76.01745852049714 -826.0512776179164 97.8331 0.1144 7681 +7683 2 -76.08298232869186 -824.9178633377171 98.1635 0.1144 7682 +7684 2 -76.14934945317194 -823.7809764766846 98.4553 0.1144 7683 +7685 2 -76.18671276575068 -822.6410517059768 98.6597 0.1144 7684 +7686 2 -76.20011035836197 -821.4984860516216 98.7526 0.1144 7685 +7687 2 -76.20651042349414 -820.3543189575456 98.7532 0.1144 7686 +7688 2 -76.21282529577653 -819.2100994976569 98.6922 0.1144 7687 +7689 2 -76.35845130662892 -818.0775610766914 98.6807 0.1144 7688 +7690 2 -76.38575014913587 -816.9341496970043 98.6975 0.1144 7689 +7691 2 -76.34171304030164 -815.7912598978348 98.7305 0.1144 7690 +7692 2 -76.14874281896331 -814.6655193843609 98.7798 0.1144 7691 +7693 2 -76.04006716688465 -813.5271505062527 98.8434 0.1144 7692 +7694 2 -76.06844068940194 -812.3842823234687 98.9192 0.1144 7693 +7695 2 -76.28845556604219 -811.2640152776011 99.0038 0.1144 7694 +7696 2 -76.65949684997088 -810.1841110153534 99.1074 0.1144 7695 +7697 2 -76.93894420126864 -809.0761951215003 99.2435 0.1144 7696 +7698 2 -77.26904296052876 -807.9886142927179 99.5431 0.1144 7697 +7699 2 -77.7835583082641 -806.9768276714658 99.8953 0.1144 7698 +7700 2 -78.24301564743934 -805.9365978490332 100.2039 0.1144 7699 +7701 2 -77.70041057288614 -804.9450362810662 100.4769 0.1144 7700 +7702 2 -77.04525292897128 -804.0118844651114 100.7118 0.1144 7701 +7703 2 -77.06617152921044 -804.089184608475 101.3754 0.1144 7702 +7704 2 -76.87560133308861 -804.5938118970257 103.616 0.1144 7703 +7705 2 -76.22851839984162 -805.3952286409864 104.6539 0.1144 7704 +7706 2 -75.4247621163953 -806.1566851379844 105.3083 0.1144 7705 +7707 2 -74.52343227739149 -806.7535794848511 106.1908 0.1144 7706 +7708 2 -73.59812782211887 -807.2670695286226 107.2534 0.1144 7707 +7709 2 -72.60371283533351 -807.6374838426775 108.2785 0.1144 7708 +7710 2 -71.55297416418097 -807.9007361644994 109.1748 0.1144 7709 +7711 2 -70.48317882384868 -808.1401846345369 109.9781 0.1144 7710 +7712 2 -69.40309237311641 -808.3812893191545 110.6907 0.1144 7711 +7713 2 -68.30488366373191 -808.2890445868813 111.2994 0.1144 7712 +7714 2 -67.25692731799842 -807.8879887959533 111.7785 0.1144 7713 +7715 2 -66.43036506364965 -807.1355359272062 112.1882 0.1144 7714 +7716 2 -65.8243111388623 -806.1815062577252 112.5429 0.1144 7715 +7717 2 -65.27577539186035 -805.1864166415293 112.8632 0.1144 7716 +7718 2 -64.70046496989414 -804.2043319005944 113.1432 0.1144 7717 +7719 2 -63.7040389929397 -803.7368201761956 113.3955 0.1144 7718 +7720 2 -62.99747362826898 -804.5433447917205 113.6117 0.1144 7719 +7721 2 -62.684351673709955 -805.6359613033902 113.8318 0.1144 7720 +7722 2 -62.423300467338635 -806.7445031779498 114.0955 0.1144 7721 +7723 2 -62.16541311020558 -807.8522900306571 114.4156 0.1144 7722 +7724 2 -62.08324076768031 -808.9820442145943 114.7726 0.1144 7723 +7725 2 -62.004353395863234 -810.1045445052704 115.2869 0.1144 7724 +7726 2 -61.91955248132669 -811.2059201654762 116.0124 0.1144 7725 +7727 2 -61.83604737649904 -812.2920111641811 116.8661 0.1144 7726 +7728 2 -61.75325895585706 -813.3704434186169 117.7826 0.1144 7727 +7729 2 -61.671366217313164 -814.4453178993697 118.7133 0.1144 7728 +7730 2 -61.59508828717969 -815.4955896581896 119.7568 0.1144 7729 +7731 2 -61.54516918940675 -816.310868710832 121.7185 0.1144 7730 +7732 2 -77.31679165747272 -802.9649579448035 100.9162 0.1144 7702 +7733 2 -77.2277658282431 -801.8318592148908 101.1595 0.1144 7732 +7734 2 -76.80412700161054 -800.781956650569 101.5168 0.1144 7733 +7735 2 -76.36859562485722 -799.7407078283063 101.9712 0.1144 7734 +7736 2 -75.8697128013884 -799.7134237954713 102.5352 0.1144 7735 +7737 2 -74.86282011947844 -799.5295262774997 103.7529 0.1144 7736 +7738 2 -73.83662809931579 -799.2196718798311 104.6576 0.1144 7737 +7739 2 -72.77533111440741 -798.8775577324704 105.2856 0.1144 7738 +7740 2 -71.73079670020425 -798.5188669080195 106.0091 0.1144 7739 +7741 2 -70.89034380877101 -797.8894596413936 106.8404 0.1144 7740 +7742 2 -70.2308377247893 -797.035566711811 107.7672 0.1144 7741 +7743 2 -69.57841436113651 -796.1833275877619 108.74 0.1144 7742 +7744 2 -69.1682995812362 -795.2141618190168 109.6878 0.1144 7743 +7745 2 -68.95044944303004 -794.1550600310457 110.6003 0.1144 7744 +7746 2 -68.76979644568453 -793.0946419179647 111.5514 0.1144 7745 +7747 2 -68.60135806566416 -792.0403232412185 112.5606 0.1144 7746 +7748 2 -68.28930696219007 -791.0428121842268 113.645 0.1144 7747 +7749 2 -67.86309944058706 -790.0933345759975 114.8034 0.1144 7748 +7750 2 -67.43903035244173 -789.1491623520469 115.9976 0.1144 7749 +7751 2 -67.03920047977522 -788.1917179604902 117.1786 0.1144 7750 +7752 2 -66.723679897051 -787.1866747913291 118.2586 0.1144 7751 +7753 2 -66.44375880958634 -786.1565614020401 119.2632 0.1144 7752 +7754 2 -66.16175165447683 -785.1210574356222 120.2356 0.1144 7753 +7755 2 -66.32342684853114 -784.6592376096862 121.9232 0.1144 7754 +7756 2 -67.24858165826751 -784.6812639126364 123.5654 0.1144 7755 +7757 2 -68.13163096889213 -784.7017068822202 125.3445 0.1144 7756 +7758 2 -69.07754559458263 -784.5566664019918 126.8632 0.1144 7757 +7759 2 -70.07263551255224 -784.3008784133075 128.0888 0.1144 7758 +7760 2 -71.09593037227447 -784.0234568567081 129.1391 0.1144 7759 +7761 2 -71.91522629793073 -783.3131049536325 129.9264 0.1144 7760 +7762 2 -72.35209822716061 -782.2790645784773 130.3652 0.1144 7761 +7763 2 -72.71355415831201 -781.1973767770137 130.562 0.1144 7762 +7764 2 -73.23609244930716 -780.1811311893509 130.6189 0.1144 7763 +7765 2 -74.34227825305652 -780.1292056890326 130.6654 0.1144 7764 +7766 2 -75.48410940096028 -780.1919212347672 130.7376 0.1144 7765 +7767 2 -76.6249706004792 -780.2539231978991 130.8574 0.1144 7766 +7768 2 -77.76502131074994 -780.3195353005267 131.0282 0.1144 7767 +7769 2 -78.90368860941544 -780.3830058681137 131.2366 0.1144 7768 +7770 2 -80.0424082738937 -780.4463912428508 131.4681 0.1144 7769 +7771 2 -81.1800532583616 -780.509233420685 131.7112 0.1144 7770 +7772 2 -82.3178358014921 -780.5720427714821 131.9646 0.1144 7771 +7773 2 -83.4482762339396 -780.4478120639742 132.2642 0.1144 7772 +7774 2 -84.56755931525441 -780.258854518789 132.6052 0.1144 7773 +7775 2 -85.68639610631176 -780.0683314625032 132.9661 0.1144 7774 +7776 2 -86.80348838835623 -779.874153725889 133.327 0.1144 7775 +7777 2 -87.81389480055365 -779.3511139738715 133.63 0.1144 7776 +7778 2 -88.65009224065085 -778.5760273134426 133.8403 0.1144 7777 +7779 2 -89.48744955360816 -777.8015362157295 134.0587 0.1144 7778 +7780 2 -76.85791851803208 -799.2438796424965 102.3039 0.1144 7735 +7781 2 -77.64685425250067 -798.4410336380358 102.8045 0.1144 7780 +7782 2 -78.43672710831703 -797.6387636575153 103.2984 0.1144 7781 +7783 2 -79.2266851569832 -796.8365460428074 103.789 0.1144 7782 +7784 2 -80.01776242649251 -796.0323166267415 104.2642 0.1144 7783 +7785 2 -80.5357880001911 -795.056258541895 104.8065 0.1144 7784 +7786 2 -80.90454949787997 -794.0018331449028 105.4099 0.1144 7785 +7787 2 -81.38569277078284 -792.9897230713731 105.9489 0.1144 7786 +7788 2 -82.06355174979942 -792.083621634134 106.3168 0.1144 7787 +7789 2 -82.7801648632607 -791.1973504027295 106.5277 0.1144 7788 +7790 2 -83.50051784990035 -790.3093870281248 106.6047 0.1144 7789 +7791 2 -83.99383189183217 -789.2818687625777 106.5994 0.1144 7790 +7792 2 -84.32945096190363 -788.1896992337021 106.5588 0.1144 7791 +7793 2 -84.64163889669797 -787.0898179022082 106.5067 0.1144 7792 +7794 2 -85.03415188035848 -786.0164210288859 106.4106 0.1144 7793 +7795 2 -85.83907423983109 -785.2421825028352 106.0464 0.1144 7794 +7796 2 -85.63176459311504 -784.8301063929011 105.7148 0.1144 7795 +7797 2 -85.12075184829783 -783.8177022074918 105.4623 0.1144 7796 +7798 2 -84.60582333397309 -782.7962003988124 105.4178 0.1144 7797 +7799 2 -83.72868186033907 -782.0998717011191 105.315 0.1144 7798 +7800 2 -82.69581135532988 -781.6194663203395 105.11 0.1144 7799 +7801 2 -81.58994249891825 -781.3586495792763 104.8569 0.1144 7800 +7802 2 -80.45528546735937 -781.2842626131196 104.6013 0.1144 7801 +7803 2 -79.32222266606675 -781.3667372051275 104.2924 0.1144 7802 +7804 2 -78.29037468803946 -781.7892661156662 103.7593 0.1144 7803 +7805 2 -77.19641060439542 -782.0770095320929 103.3477 0.1144 7804 +7806 2 -76.08745248449102 -782.3299475053157 103.0492 0.1144 7805 +7807 2 -74.9554489499894 -782.4719983338099 102.8426 0.1144 7806 +7808 2 -73.82281672396132 -782.3223237181842 102.7141 0.1144 7807 +7809 2 -72.69250882500594 -782.1446152390421 102.6556 0.1144 7808 +7810 2 -71.60792446664911 -781.7813788702576 102.6474 0.1144 7809 +7811 2 -70.52262652568965 -781.4191124498581 102.6474 0.1144 7810 +7812 2 -69.43798980152008 -781.0559612739233 102.6474 0.1144 7811 +7813 2 -86.67926373400621 -784.8146490376215 105.8781 0.1144 7795 +7814 2 -87.69844500973264 -784.297002964316 105.77 0.1144 7813 +7815 2 -87.76208256536935 -783.507528638253 105.2072 0.1144 7814 +7816 2 -87.90457075301401 -782.438912076346 104.2986 0.1144 7815 +7817 2 -88.26768869346363 -781.454967600614 103.2304 0.1144 7816 +7818 2 -88.74944494290013 -780.50086825247 102.2333 0.1144 7817 +7819 2 -89.23931243002924 -779.535673507844 101.3295 0.1144 7818 +7820 2 -89.73439459795792 -778.5576029291028 100.5256 0.1144 7819 +7821 2 -90.2682777555145 -777.5885923285016 99.825 0.1144 7820 +7822 2 -91.00451435204259 -776.7708432753485 99.1995 0.1144 7821 +7823 2 -91.94419648137031 -776.1640695647924 98.6905 0.1144 7822 +7824 2 -92.99048029398368 -775.735624009951 98.3433 0.1144 7823 +7825 2 -94.09896680782172 -775.6098716396389 97.9188 0.1144 7824 +7826 2 -95.20913685264722 -775.4838629035444 97.3384 0.1144 7825 +7827 2 -96.26648662037732 -775.133469412336 96.7338 0.1144 7826 +7828 2 -97.31869189538628 -774.7542073535386 96.1428 0.1144 7827 +7829 2 -97.72554340424622 -774.413511037535 93.996 0.1144 7828 +7830 2 -98.55668974823689 -773.7144342213904 93.1664 0.1144 7829 +7831 2 -99.41616835861636 -772.9738473741536 92.8043 0.1144 7830 +7832 2 -100.26804369212266 -772.2257698539971 92.447 0.1144 7831 +7833 2 -101.1215173637666 -771.4773836022457 92.0889 0.1144 7832 +7834 2 -101.97098076830397 -770.7399137490639 91.593 0.1144 7833 +7835 2 -102.74054389254336 -770.075524640325 90.3073 0.1144 7834 +7836 2 -97.35801985750895 -775.658032508862 95.9918 0.1144 7828 +7837 2 -97.45988008160391 -776.7922121219513 96.206 0.1144 7836 +7838 2 -97.57078556315615 -777.9225611583828 96.549 0.1144 7837 +7839 2 -97.68289545840142 -779.050950759269 96.9136 0.1144 7838 +7840 2 -97.94100908222048 -780.1602730781641 97.144 0.1144 7839 +7841 2 -98.30760412496532 -781.2437800576686 97.1594 0.1144 7840 +7842 2 -98.68775024676114 -782.3207091760805 96.9996 0.1144 7841 +7843 2 -98.75615010159075 -783.4612017669637 96.8859 0.1144 7842 +7844 2 -99.20236902320266 -783.4910941404978 96.4625 0.1144 7843 +7845 2 -100.29288375223456 -783.5651107991938 95.7118 0.1144 7844 +7846 2 -101.42844026001109 -783.6051885691702 95.4089 0.1144 7845 +7847 2 -102.5633218366034 -783.5306400137764 95.1667 0.1144 7846 +7848 2 -103.69311026231411 -783.3616386139887 95.0468 0.1144 7847 +7849 2 -104.82249925295048 -783.1803014754058 95.053 0.1144 7848 +7850 2 -105.94992880804149 -782.9977599231302 95.1784 0.1144 7849 +7851 2 -107.07063743274784 -782.7910150839956 95.4229 0.1144 7850 +7852 2 -108.16290937319172 -782.4995317943906 95.8135 0.1144 7851 +7853 2 -109.22383404433396 -782.1324374030389 96.3514 0.1144 7852 +7854 2 -110.2746004403419 -781.7578077979349 96.9671 0.1144 7853 +7855 2 -111.32376849821215 -781.3834869244256 97.6032 0.1144 7854 +7856 2 -112.33772037245636 -780.9136870982053 98.1691 0.1144 7855 +7857 2 -113.18241848803468 -780.1839697943551 98.5326 0.1144 7856 +7858 2 -113.9179123743465 -779.3107126482647 98.6563 0.1144 7857 +7859 2 -114.64351527786931 -778.4273848289363 98.5944 0.1144 7858 +7860 2 -115.36788094066209 -777.5458788864909 98.4124 0.1144 7859 +7861 2 -116.1607855029876 -776.7279826858373 98.191 0.1144 7860 +7862 2 -117.06146782191085 -776.0315035975805 98.0109 0.1144 7861 +7863 2 -118.00508664459497 -775.3854795055558 97.9101 0.1144 7862 +7864 2 -118.95141992467678 -774.7438236764625 97.8866 0.1144 7863 +7865 2 -119.89877551895617 -774.102796237122 97.9325 0.1144 7864 +7866 2 -120.76953162531304 -773.3677328022795 98.0434 0.1144 7865 +7867 2 -121.56582357562189 -772.5506275520986 98.219 0.1144 7866 +7868 2 -122.34118151247236 -771.7152551981372 98.4598 0.1144 7867 +7869 2 -123.1133756000846 -770.8806378660282 98.7669 0.1144 7868 +7870 2 -123.67300732428822 -769.9287454229104 99.3331 0.1144 7869 +7871 2 -124.03105813988668 -768.9135149399907 100.2635 0.1144 7870 +7872 2 -124.34318001215894 -767.9141882982717 101.3838 0.1144 7871 +7873 2 -124.51020994371115 -766.8472754986645 102.305 0.1144 7872 +7874 2 -124.5940737369 -765.7453238145188 103.0336 0.1144 7873 +7875 2 -124.6795944372054 -764.6296006141597 103.6087 0.1144 7874 +7876 2 -124.76497137568205 -763.5272878326061 104.3302 0.1144 7875 +7877 2 -97.76035411224662 -783.8468483767066 96.8257 0.1144 7843 +7878 2 -96.69331528408719 -784.2611277983535 96.8246 0.1144 7877 +7879 2 -95.62742850380796 -784.673532977305 96.8856 0.1144 7878 +7880 2 -94.56096569958856 -785.0868752776041 96.9903 0.1144 7879 +7881 2 -94.63979401069636 -785.3233729253046 97.4512 0.1144 7880 +7882 2 -94.9153663563205 -786.1399974426486 99.2785 0.1144 7881 +7883 2 -95.18666183502944 -786.9460111914345 101.1013 0.1144 7882 +7884 2 -95.49655088806196 -787.8924238576699 102.4626 0.1144 7883 +7885 2 -96.04533959748935 -788.60313804242 104.0922 0.1144 7884 +7886 2 -97.02673769915108 -788.5510410554175 105.2803 0.1144 7885 +7887 2 -98.08614511713401 -788.3414780512331 106.2048 0.1144 7886 +7888 2 -99.16743528902263 -788.1224765576834 106.9404 0.1144 7887 +7889 2 -100.12662268586666 -788.587170809569 107.3722 0.1144 7888 +7890 2 -100.99653388322342 -789.3260075430314 107.4906 0.1144 7889 +7891 2 -101.85927096423524 -790.076515696916 107.434 0.1144 7890 +7892 2 -102.76969070763926 -790.7691192421134 107.5281 0.1144 7891 +7893 2 -103.65254621067956 -791.4299897973294 108.2567 0.1144 7892 +7894 2 -93.79208691225011 -784.8170995552329 97.1404 0.1144 7880 +7895 2 -92.68609962750367 -784.6569226967945 97.3048 0.1144 7894 +7896 2 -91.57393691164782 -784.8824192676334 97.3837 0.1144 7895 +7897 2 -90.49118495399574 -785.2521781596165 97.4137 0.1144 7896 +7898 2 -89.37872891976423 -785.4170433527347 97.5078 0.1144 7897 +7899 2 -88.32763164923983 -785.0865982167495 97.8606 0.1144 7898 +7900 2 -87.34908806167414 -784.550846327127 98.4774 0.1144 7899 +7901 2 -86.25301027451914 -784.3350183064592 98.9901 0.1144 7900 +7902 2 -85.12991103545559 -784.1872124228994 99.3852 0.1144 7901 +7903 2 -84.0021348018659 -784.0405226585997 99.6702 0.1144 7902 +7904 2 -82.87847495208155 -783.8346208568046 99.8438 0.1144 7903 +7905 2 -81.93033469377815 -783.2209527457018 99.9432 0.1144 7904 +7906 2 -81.02690696722368 -782.5192656053803 100.0028 0.1144 7905 +7907 2 -80.10133160346479 -781.8469262446386 100.0502 0.1144 7906 +7908 2 -79.06137217496052 -781.3782446500937 100.0633 0.1144 7907 +7909 2 -78.00037812692884 -780.950276625539 100.0378 0.1144 7908 +7910 2 -76.96590067156927 -780.4661837373936 99.9412 0.1144 7909 +7911 2 -75.96722263323042 -779.9127735949679 99.7494 0.1144 7910 +7912 2 -74.97652609890159 -779.3507706885085 99.503 0.1144 7911 +7913 2 -73.98546846716508 -778.7872546367612 99.2569 0.1144 7912 +7914 2 -72.99516895886407 -778.220213638368 99.0643 0.1144 7913 +7915 2 -72.21817522870256 -777.3827265917281 99.0508 0.1144 7914 +7916 2 -71.69633989037811 -776.3703607439854 99.2746 0.1144 7915 +7917 2 -71.5075058757094 -775.2619526219905 99.7716 0.1144 7916 +7918 2 -70.41941469474602 -775.1490466792338 101.4546 0.1144 7917 +7919 2 -69.39317781999884 -774.9681661470887 102.6077 0.1144 7918 +7920 2 -68.36343002675181 -774.775619705151 103.7313 0.1144 7919 +7921 2 -67.32913497266125 -774.581686750025 104.8286 0.1144 7920 +7922 2 -66.28648672202686 -774.4886141146859 105.954 0.1144 7921 +7923 2 -65.26945658215718 -774.6424109436408 107.1568 0.1144 7922 +7924 2 -64.2029404178148 -774.7871533050853 108.1016 0.1144 7923 +7925 2 -63.11450626348321 -774.9238227665039 108.8998 0.1144 7924 +7926 2 -62.013684004543734 -775.0609768558465 109.58 0.1144 7925 +7927 2 -60.90443256626364 -775.2532834513485 110.0803 0.1144 7926 +7928 2 -59.80579699872308 -775.5528280218799 110.3295 0.1144 7927 +7929 2 -58.73701676313385 -775.9567639673141 110.4356 0.1144 7928 +7930 2 -57.7223272808551 -776.4825705425419 110.5633 0.1144 7929 +7931 2 -56.58192298440488 -776.5443339673001 110.6515 0.1144 7930 +7932 2 -55.4582247969538 -776.3276095719976 110.6773 0.1144 7931 +7933 2 -54.334259317157574 -776.1134206361805 110.6692 0.1144 7932 +7934 2 -53.21158344390409 -775.8973246306309 110.6434 0.1144 7933 +7935 2 -52.08921630224552 -775.682826963219 110.5003 0.1144 7934 +7936 2 -71.83168958852434 -775.0141166069616 99.0416 0.1144 7917 +7937 2 -72.64841441016372 -774.3868158292494 100.263 0.1144 7936 +7938 2 -73.53332364554223 -773.7074042491731 100.8602 0.1144 7937 +7939 2 -74.41449300774235 -773.0296848122969 101.523 0.1144 7938 +7940 2 -75.29199676305099 -772.3579288749065 102.2507 0.1144 7939 +7941 2 -76.16349247804096 -771.6850623288856 103.0072 0.1144 7940 +7942 2 -76.97415489295041 -770.9385324975639 103.7481 0.1144 7941 +7943 2 -77.6981940018825 -770.0970874258351 104.4364 0.1144 7942 +7944 2 -78.43839942626747 -769.2642881764891 105.0652 0.1144 7943 +7945 2 -79.19148068476751 -768.4367036079428 105.6457 0.1144 7944 +7946 2 -79.94540525955283 -767.6056464585633 106.1956 0.1144 7945 +7947 2 -80.7002669556859 -766.7751653331238 106.7312 0.1144 7946 +7948 2 -81.2968699676547 -765.8286258220047 107.3106 0.1144 7947 +7949 2 -81.8236320672157 -764.8471388223628 107.9523 0.1144 7948 +7950 2 -82.34847617048113 -763.868581206651 108.6243 0.1144 7949 +7951 2 -82.97981994820498 -762.9594770958203 109.3 0.1144 7950 +7952 2 -83.95102593570014 -762.4150416268678 109.9386 0.1144 7951 +7953 2 -84.92437345823599 -761.86922274631 110.553 0.1144 7952 +7954 2 -85.84638743217086 -761.352301560955 111.622 0.1144 7953 +7955 2 -87.74202911058529 -784.2566511842701 107.0297 0.1144 7814 +7956 2 -88.3625882417056 -783.6752183895438 108.3096 0.1144 7955 +7957 2 -89.18608574401694 -782.9057068147856 108.7559 0.1144 7956 +7958 2 -90.0140812429421 -782.1309781501811 109.1202 0.1144 7957 +7959 2 -90.84061596239215 -781.3565253901347 109.5021 0.1144 7958 +7960 2 -91.68375236098956 -780.5965029540447 109.8451 0.1144 7959 +7961 2 -92.61156045499891 -779.9326611500803 109.9832 0.1144 7960 +7962 2 -93.56425977122389 -779.3003178707893 109.8913 0.1144 7961 +7963 2 -94.39409117517793 -778.5159186605579 109.7723 0.1144 7962 +7964 2 -95.04308769507544 -777.5759950641093 109.821 0.1144 7963 +7965 2 -95.6806363332959 -776.6304433236406 110.0268 0.1144 7964 +7966 2 -96.31586133698029 -775.6888628200754 110.3623 0.1144 7965 +7967 2 -96.94909097649924 -774.752629140039 110.7932 0.1144 7966 +7968 2 -97.57852837702708 -773.8181727960523 111.2706 0.1144 7967 +7969 2 -98.18455825926175 -772.9217976559248 112.1831 0.1144 7968 +7970 2 -53.700251399992226 -1113.3313882090265 52.1797 0.1144 3447 +7971 2 -53.61862974791319 -1114.3729758077966 52.8724 0.1144 7970 +7972 2 -54.109378308274586 -1115.3702243728512 53.2683 0.1144 7971 +7973 2 -54.67292591380266 -1116.3584602233968 53.5293 0.1144 7972 +7974 2 -55.155510178122086 -1117.3909520043962 53.748 0.1144 7973 +7975 2 -55.58341804668993 -1118.4489955318645 53.9302 0.1144 7974 +7976 2 -55.92244195336832 -1119.5382097397687 54.1064 0.1144 7975 +7977 2 -56.118129733687454 -1120.66162972029 54.2696 0.1144 7976 +7978 2 -56.18465534582151 -1121.8009702632926 54.406 0.1144 7977 +7979 2 -56.28459757362094 -1122.938079260312 54.549 0.1144 7978 +7980 2 -56.397065464690684 -1124.0746708023703 54.7039 0.1144 7979 +7981 2 -56.43664050553127 -1125.2162264541644 54.8411 0.1144 7980 +7982 2 -56.43139248827924 -1126.3585193055446 54.9531 0.1144 7981 +7983 2 -56.35446696105407 -1127.4995978406425 55.0404 0.1144 7982 +7984 2 -56.21944861717651 -1128.634548190577 55.1102 0.1144 7983 +7985 2 -56.06763246651013 -1129.7685638282105 55.1729 0.1144 7984 +7986 2 -55.93478848471028 -1130.9022683252024 55.3112 0.1144 7985 +7987 2 -55.82062747895782 -1132.0338405919028 55.606 0.1144 7986 +7988 2 -55.52812839721571 -1133.125752038486 55.9857 0.1144 7987 +7989 2 -55.10563924422269 -1134.1780235888016 56.3385 0.1144 7988 +7990 2 -54.60083588136405 -1135.1957799127058 56.6398 0.1144 7989 +7991 2 -54.108183056222174 -1136.2224134227176 56.9164 0.1144 7990 +7992 2 -53.63166371949609 -1137.25755519645 57.1813 0.1144 7991 +7993 2 -53.16449527023917 -1138.297153527547 57.4118 0.1144 7992 +7994 2 -52.85537737962062 -1139.392231232415 57.6484 0.1144 7993 +7995 2 -52.63197821658002 -1140.505018531926 57.9816 0.1144 7994 +7996 2 -52.49602585293775 -1141.6327040620363 58.3041 0.1144 7995 +7997 2 -52.35249993787636 -1142.7597252737737 58.6292 0.1144 7996 +7998 2 -52.0444074630384 -1143.8487425725107 59.0016 0.1144 7997 +7999 2 -51.592162577874774 -1144.8881235680283 59.3701 0.1144 7998 +8000 2 -51.073907356961 -1145.9016023324803 59.6518 0.1144 7999 +8001 2 -50.9750669413296 -1147.0279191716681 59.8472 0.1144 8000 +8002 2 -50.98741550631888 -1148.1702291527777 59.9774 0.1144 8001 +8003 2 -51.04378835394829 -1149.312719516873 60.0575 0.1144 8002 +8004 2 -50.99189540172091 -1150.45451232711 60.1062 0.1144 8003 +8005 2 -50.86302265682451 -1151.5905404586379 60.1482 0.1144 8004 +8006 2 -50.91498580227295 -1152.7316114825076 60.1992 0.1144 8005 +8007 2 -50.89677365647299 -1153.87532608316 60.2596 0.1144 8006 +8008 2 -50.74558589555943 -1155.0083194065958 60.3506 0.1144 8007 +8009 2 -50.80868346769324 -1156.1442616350523 60.569 0.1144 8008 +8010 2 -51.35912628442776 -1157.140640857791 60.7894 0.1144 8009 +8011 2 -52.19067047077783 -1157.924327367913 60.9025 0.1144 8010 +8012 2 -52.842575971021574 -1158.8648706357917 60.9081 0.1144 8011 +8013 2 -53.05372120758767 -1160.007064988376 60.5489 0.1144 8012 +8014 2 -53.305149137105616 -1161.1096954098039 60.1362 0.1144 8013 +8015 2 -53.61276350608 -1162.1931017832394 59.645 0.1144 8014 +8016 2 -53.87551647929507 -1163.2664227627542 58.9467 0.1144 8015 +8017 2 -54.17825193138361 -1164.276988651773 57.8813 0.1144 8016 +8018 2 -54.79708588462506 -1165.1139807594514 56.7372 0.1144 8017 +8019 2 -55.42455024703014 -1165.99383959126 55.8186 0.1144 8018 +8020 2 -55.99541332168536 -1166.9396197718493 55.1029 0.1144 8019 +8021 2 -56.567215926734775 -1167.9033498071071 54.5434 0.1144 8020 +8022 2 -57.03812877063211 -1168.9286674717619 54.1722 0.1144 8021 +8023 2 -57.05056873163733 -1170.0576522269157 54.0602 0.1144 8022 +8024 2 -56.588579034559814 -1171.090925961119 54.0854 0.1144 8023 +8025 2 -55.80951405156799 -1171.928128016943 54.0688 0.1144 8024 +8026 2 -54.974656269475986 -1172.709437644223 53.9994 0.1144 8025 +8027 2 -54.13894655888595 -1173.4902236133757 53.9098 0.1144 8026 +8028 2 -53.31633311957307 -1174.2844590315367 53.8605 0.1144 8027 +8029 2 -52.53946203743476 -1175.1201924829058 53.9773 0.1144 8028 +8030 2 -51.8715408963904 -1176.0255943656884 54.3421 0.1144 8029 +8031 2 -51.77015510099892 -1177.0053814091284 54.9889 0.1144 8030 +8032 2 -52.374408072752374 -1177.9098258331408 55.8547 0.1144 8031 +8033 2 -52.8706540194778 -1178.8326300650115 56.9089 0.1144 8032 +8034 2 -53.181101274184584 -1179.8197648187534 58.1 0.1144 8033 +8035 2 -53.0600112125216 -1180.866554786687 58.9963 0.1144 8034 +8036 2 -52.45245725843603 -1181.767510014695 59.6378 0.1144 8035 +8037 2 -51.95955186163161 -1182.7617085712225 60.109 0.1144 8036 +8038 2 -52.22878860678816 -1183.7677648445278 60.4766 0.1144 8037 +8039 2 -52.819921376528725 -1184.739385680317 60.7818 0.1144 8038 +8040 2 -53.44304040045006 -1185.6918146026135 61.0742 0.1144 8039 +8041 2 -54.32019108413709 -1186.342487852492 61.5818 0.1144 8040 +8042 2 -55.30062053349798 -1186.8511101729086 62.312 0.1144 8041 +8043 2 -55.57617475508266 -1187.4166461407895 63.9542 0.1144 8042 +8044 2 -56.03802251865835 -1188.369249953127 64.8757 0.1144 8043 +8045 2 -56.53112684805632 -1189.3867274665536 65.2646 0.1144 8044 +8046 2 -57.02663690325704 -1190.406974904774 65.6379 0.1144 8045 +8047 2 -57.51982642550479 -1191.4245047840134 66.0576 0.1144 8046 +8048 2 -58.01256965749508 -1192.4404691521522 66.5095 0.1144 8047 +8049 2 -58.504918965040645 -1193.4547828163406 66.9813 0.1144 8048 +8050 2 -58.99735346543599 -1194.4691488463418 67.4598 0.1144 8049 +8051 2 -59.454406498687376 -1195.4994460339512 67.9358 0.1144 8050 +8052 2 -59.80947078125564 -1196.5690572741896 68.3973 0.1144 8051 +8053 2 -60.25828353566834 -1197.588889864116 69.0119 0.1144 8052 +8054 2 -60.53556304694888 -1198.6670315999859 69.643 0.1144 8053 +8055 2 -60.48634931603567 -1199.7956812837629 70.0857 0.1144 8054 +8056 2 -60.426309890032144 -1200.9310581010905 70.4102 0.1144 8055 +8057 2 -60.36859099698165 -1202.0691524773988 70.649 0.1144 8056 +8058 2 -60.369670678206205 -1203.2099352850746 70.842 0.1144 8057 +8059 2 -61.07296278540025 -1204.0974330382878 71.1024 0.1144 8058 +8060 2 -61.79184277506056 -1204.977139904503 71.4426 0.1144 8059 +8061 2 -61.54915899445001 -1205.9289999113466 71.855 0.1144 8060 +8062 2 -61.269262943848275 -1207.0179764633704 72.3744 0.1144 8061 +8063 2 -60.99414861939806 -1208.1056665104345 72.9254 0.1144 8062 +8064 2 -60.73710768013336 -1209.2032919864246 73.3972 0.1144 8063 +8065 2 -60.79175004689591 -1210.331219883834 73.8186 0.1144 8064 +8066 2 -61.15755173012178 -1211.4007404205927 74.2286 0.1144 8065 +8067 2 -61.57321215432739 -1212.452546953064 74.6365 0.1144 8066 +8068 2 -61.98989489273055 -1213.5049818752882 75.0518 0.1144 8067 +8069 2 -62.31083448766054 -1214.5884796447394 75.4886 0.1144 8068 +8070 2 -62.57094657722814 -1215.685766344222 75.9508 0.1144 8069 +8071 2 -62.82327018884422 -1216.7848389919668 76.4299 0.1144 8070 +8072 2 -63.07363436491488 -1217.8827072260187 76.9188 0.1144 8071 +8073 2 -63.325596879123225 -1218.980266728476 77.4161 0.1144 8072 +8074 2 -63.57502393384618 -1220.077558938588 77.9212 0.1144 8073 +8075 2 -63.82654015779701 -1221.1735529299444 78.4336 0.1144 8074 +8076 2 -63.86634725489921 -1222.295061732861 78.9692 0.1144 8075 +8077 2 -63.790720638966036 -1223.414166810574 79.5256 0.1144 8076 +8078 2 -63.70109896807463 -1224.5300690088452 80.0974 0.1144 8077 +8079 2 -63.615493074919414 -1225.6457398433915 80.6803 0.1144 8078 +8080 2 -63.62985413380335 -1226.7651064187312 81.2647 0.1144 8079 +8081 2 -63.662132220319165 -1227.883395905014 81.8485 0.1144 8080 +8082 2 -63.694547865497555 -1229.00165256426 82.4281 0.1144 8081 +8083 2 -63.727305069307874 -1230.1216451203059 83.0026 0.1144 8082 +8084 2 -63.75900713188366 -1231.2408717279368 83.5716 0.1144 8083 +8085 2 -63.79176433569398 -1232.3608642839827 84.135 0.1144 8084 +8086 2 -63.82391268852717 -1233.481656402714 84.6902 0.1144 8085 +8087 2 -63.85538028579481 -1234.6035560284927 85.2342 0.1144 8086 +8088 2 -63.99084464098382 -1235.7180122449827 85.7668 0.1144 8087 +8089 2 -64.31124414059389 -1236.79589589856 86.2753 0.1144 8088 +8090 2 -64.65726316570488 -1237.8693377154564 86.749 0.1144 8089 +8091 2 -64.67488187888955 -1238.9919978737166 87.1825 0.1144 8090 +8092 2 -63.831607921629654 -1239.752053136844 87.5283 0.1144 8091 +8093 2 -62.99737060961428 -1240.5042815843528 88.0636 0.1144 8092 +8094 2 -62.143959247885675 -1205.5009968406653 71.0475 0.1144 8060 +8095 2 -62.770027887049366 -1206.431058381132 70.4833 0.1144 8094 +8096 2 -63.40625169976431 -1207.3753439312356 70.2176 0.1144 8095 +8097 2 -64.04082480852878 -1208.320023405784 69.9373 0.1144 8096 +8098 2 -64.67508918569843 -1209.2631045421945 69.6301 0.1144 8097 +8099 2 -65.31023831840304 -1210.2068468953953 69.3132 0.1144 8098 +8100 2 -65.94450269557262 -1211.1499280318058 69.0099 0.1144 8099 +8101 2 -66.58009811853469 -1212.0952358961072 68.7355 0.1144 8100 +8102 2 -67.21566071445972 -1213.0404062017458 68.493 0.1144 8101 +8103 2 -67.852639549027 -1213.9878556010876 68.2836 0.1144 8102 +8104 2 -68.60748013135452 -1214.8440053924626 68.1545 0.1144 8103 +8105 2 -69.62122928973503 -1215.3530363580066 68.4317 0.1144 8104 +8106 2 -55.828439691609674 -1187.2332981061695 62.5853 0.1144 8042 +8107 2 -56.749341162425594 -1187.9000647902872 62.8978 0.1144 8106 +8108 2 -57.67358548039198 -1188.5701774231384 63.0204 0.1144 8107 +8109 2 -58.59973686809093 -1189.2415796625323 62.9955 0.1144 8108 +8110 2 -59.52491830740513 -1189.9122683193236 62.8538 0.1144 8109 +8111 2 -60.44822550402375 -1190.5818049282348 62.6475 0.1144 8110 +8112 2 -61.37202353173268 -1191.2503520499854 62.4336 0.1144 8111 +8113 2 -62.29621548388633 -1191.9205498756864 62.2331 0.1144 8112 +8114 2 -63.22037460900293 -1192.590610142725 62.0511 0.1144 8113 +8115 2 -64.14621726510694 -1193.2604140439812 61.8946 0.1144 8114 +8116 2 -65.07077031466832 -1193.93212501497 61.7722 0.1144 8115 +8117 2 -65.82018198220044 -1194.779538280483 61.7078 0.1144 8116 +8118 2 -66.33079770098988 -1195.796980557826 61.7268 0.1144 8117 +8119 2 -66.77669917782669 -1196.8500031230897 61.8204 0.1144 8118 +8120 2 -67.1576034230581 -1197.9234072948557 62.0374 0.1144 8119 +8121 2 -67.422891163222 -1199.0210581933288 62.4666 0.1144 8120 +8122 2 -67.62616411405992 -1200.1168608751368 63.0888 0.1144 8121 +8123 2 -67.74451410588529 -1201.2263142357765 63.6734 0.1144 8122 +8124 2 -67.53950798618808 -1202.3464163118779 63.8081 0.1144 8123 +8125 2 -67.60258504292091 -1203.4298767379728 63.5964 0.1144 8124 +8126 2 -68.10606257398564 -1204.4524391985165 63.429 0.1144 8125 +8127 2 -68.66523881499944 -1205.450078302344 63.3494 0.1144 8126 +8128 2 -69.22370147341059 -1206.4486873545563 63.3744 0.1144 8127 +8129 2 -69.36425456983625 -1207.5220189468823 63.5256 0.1144 8128 +8130 2 -68.997851942767 -1208.5899844963628 63.7694 0.1144 8129 +8131 2 -68.84087486218698 -1209.688665522035 64.0713 0.1144 8130 +8132 2 -69.0145149188341 -1210.8065152349786 64.4003 0.1144 8131 +8133 2 -69.59705251549451 -1211.7527807360284 64.6545 0.1144 8132 +8134 2 -70.54199058689301 -1212.3563812754762 64.8348 0.1144 8133 +8135 2 -71.55127698474325 -1212.888140720258 65.002 0.1144 8134 +8136 2 -72.32132624577497 -1213.6998785077142 65.2445 0.1144 8135 +8137 2 -72.98130154446153 -1214.625192581488 65.5628 0.1144 8136 +8138 2 -73.57853064895357 -1215.5912875958356 65.8832 0.1144 8137 +8139 2 -73.85753753951786 -1216.690680594275 66.0162 0.1144 8138 +8140 2 -74.07287824426913 -1217.812681927107 65.9518 0.1144 8139 +8141 2 -74.28728182767264 -1218.9341072359994 65.7443 0.1144 8140 +8142 2 -74.47458556732425 -1220.060473037643 65.6048 0.1144 8141 +8143 2 -74.65437673358224 -1221.1900855670247 65.588 0.1144 8142 +8144 2 -74.83420072687716 -1222.3198356550683 65.697 0.1144 8143 +8145 2 -75.01433655335012 -1223.444495285366 65.926 0.1144 8144 +8146 2 -75.39194721566065 -1224.5211571114328 66.1567 0.1144 8145 +8147 2 -75.78069230465627 -1225.5926901420862 66.383 0.1144 8146 +8148 2 -76.16886136971192 -1226.6651602940879 66.605 0.1144 8147 +8149 2 -76.55760645870765 -1227.7366933247413 66.8408 0.1144 8148 +8150 2 -76.45007576884967 -1228.2721733343951 67.2896 0.1144 8149 +8151 2 -76.23550522022413 -1229.3421438665418 68.1201 0.1144 8150 +8152 2 -76.04227733018428 -1230.3970617934492 69.0894 0.1144 8151 +8153 2 -75.98065187767929 -1231.480403098673 69.9308 0.1144 8152 +8154 2 -76.07382863426113 -1232.5958638070947 70.4858 0.1144 8153 +8155 2 -76.20504825703546 -1233.7239094403026 70.7834 0.1144 8154 +8156 2 -76.3371167067246 -1234.8591675275215 70.8716 0.1144 8155 +8157 2 -76.47006991194877 -1235.995086831531 70.8145 0.1144 8156 +8158 2 -76.60213836163791 -1237.1303449187503 70.6863 0.1144 8157 +8159 2 -76.73415444551432 -1238.2656881988191 70.5558 0.1144 8158 +8160 2 -76.86716001655128 -1239.4015223099782 70.4715 0.1144 8159 +8161 2 -76.99922846624042 -1240.5367803971976 70.4572 0.1144 8160 +8162 2 -77.13218167146465 -1241.672699701207 70.5289 0.1144 8161 +8163 2 -77.15914817053533 -1242.8065052127158 70.7552 0.1144 8162 +8164 2 -76.94452456356044 -1243.9006235643253 71.2662 0.1144 8163 +8165 2 -76.58344204145288 -1244.931480267378 72.0916 0.1144 8164 +8166 2 -76.21411993304315 -1245.9278097461347 73.1226 0.1144 8165 +8167 2 -75.84917229073079 -1246.9080471757256 74.2599 0.1144 8166 +8168 2 -75.9418154689107 -1247.8780973092425 75.5756 0.1144 8167 +8169 2 -76.6461901581061 -1248.5782165471023 76.8877 0.1144 8168 +8170 2 -77.26608476321172 -1249.4266596380405 77.9562 0.1144 8169 +8171 2 -77.42663165016484 -1250.5243711060912 78.6349 0.1144 8170 +8172 2 -77.58882072355198 -1251.6432814708987 79.0628 0.1144 8171 +8173 2 -77.7517617172083 -1252.7720444808285 79.287 0.1144 8172 +8174 2 -77.91702324381765 -1253.9035250497395 79.3587 0.1144 8173 +8175 2 -78.08063406647659 -1255.035399543095 79.3388 0.1144 8174 +8176 2 -78.24535239618291 -1256.1679547920162 79.2834 0.1144 8175 +8177 2 -78.4089632188419 -1257.2998292853717 79.231 0.1144 8176 +8178 2 -78.57417237963847 -1258.4313950471321 79.1829 0.1144 8177 +8179 2 -78.7378683951473 -1259.5633219063006 79.0891 0.1144 8178 +8180 2 -76.6228309461668 -1227.8774977857352 65.6202 0.1144 8149 +8181 2 -77.10340030754503 -1228.9155591417755 65.5402 0.1144 8180 +8182 2 -77.58336081794619 -1229.954420060501 65.506 0.1144 8181 +8183 2 -78.06393017932447 -1230.9924814165415 65.4654 0.1144 8182 +8184 2 -78.54446671366571 -1232.0304052139195 65.42 0.1144 8183 +8185 2 -79.02508844085673 -1233.0683813771097 65.3724 0.1144 8184 +8186 2 -79.50557260938524 -1234.1063903673376 65.3232 0.1144 8185 +8187 2 -79.98619433657632 -1235.1443665305283 65.2747 0.1144 8186 +8188 2 -80.46516535981692 -1236.1827366181637 65.2285 0.1144 8187 +8189 2 -80.94570189415816 -1237.2206604155415 65.1848 0.1144 8188 +8190 2 -81.42632362134918 -1238.258636578732 65.1445 0.1144 8189 +8191 2 -81.90680778987769 -1239.2966455689598 65.0661 0.1144 8190 +8192 2 -53.24187926195617 -1158.6107394652345 61.6896 0.1144 8012 +8193 2 -54.19778317413255 -1158.0058375883275 62.0693 0.1144 8192 +8194 2 -55.21137636001566 -1157.5518984475482 62.3087 0.1144 8193 +8195 2 -56.30874965510594 -1157.4596940483975 63.0524 0.1144 8194 +8196 2 -57.36370802695291 -1157.3883706043562 64.1161 0.1144 8195 +8197 2 -58.40380579564555 -1157.2233986020028 65.1997 0.1144 8196 +8198 2 -59.44127229919178 -1156.935907064702 66.1371 0.1144 8197 +8199 2 -60.488644506209766 -1156.623515787669 66.9637 0.1144 8198 +8200 2 -61.54958969275293 -1156.3089031986788 67.6738 0.1144 8199 +8201 2 -62.654406805579754 -1156.2198657503498 68.2872 0.1144 8200 +8202 2 -63.77483713436675 -1156.2102668788418 68.8416 0.1144 8201 +8203 2 -64.8943532662534 -1156.2699476164844 69.4014 0.1144 8202 +8204 2 -66.00199194748677 -1156.4056679238647 70.0073 0.1144 8203 +8205 2 -67.10558443299351 -1156.558855867037 70.6401 0.1144 8204 +8206 2 -68.20978576947726 -1156.7112442475236 71.2687 0.1144 8205 +8207 2 -69.3228680861888 -1156.8207306677964 71.8575 0.1144 8206 +8208 2 -68.8586296192666 -1156.1231342760127 72.3232 0.1144 8207 +8209 2 -68.10080418561313 -1155.2718404770762 72.5578 0.1144 8208 +8210 2 -67.34002982925381 -1154.4188514333564 72.6695 0.1144 8209 +8211 2 -66.5789467412996 -1153.5642640514989 72.6956 0.1144 8210 +8212 2 -65.81715007074268 -1152.7106466180262 72.6692 0.1144 8211 +8213 2 -65.05700410413624 -1151.8566352601088 72.6208 0.1144 8212 +8214 2 -64.29529262642916 -1151.0030701924488 72.5771 0.1144 8213 +8215 2 -63.534124345625116 -1150.1484304447786 72.539 0.1144 8214 +8216 2 -62.77334998926591 -1149.2954414010587 72.5077 0.1144 8215 +8217 2 -62.130128649071764 -1148.3495544112343 72.492 0.1144 8216 +8218 2 -61.71144813745667 -1147.2850924818101 72.5052 0.1144 8217 +8219 2 -61.294941987919174 -1146.2193846994433 72.5348 0.1144 8218 +8220 2 -60.87843583838185 -1145.1536769170762 72.5704 0.1144 8219 +8221 2 -60.41978205794635 -1144.1063146303327 72.5791 0.1144 8220 +8222 2 -59.9188954537629 -1143.0772454734004 72.5343 0.1144 8221 +8223 2 -59.418978797964314 -1142.0488898990707 72.4472 0.1144 8222 +8224 2 -58.918571311075425 -1141.0215238119013 72.3304 0.1144 8223 +8225 2 -58.41802626552402 -1139.994190551769 72.1991 0.1144 8224 +8226 2 -57.91847070713317 -1138.9673481227271 72.065 0.1144 8225 +8227 2 -57.42038375319714 -1137.9426995945387 71.797 0.1144 8226 +8228 2 -65.24745552449434 -1146.0787224685823 43.5988 0.1144 3412 +8229 2 -66.3164000373132 -1145.7138579067046 44.0191 0.1144 8228 +8230 2 -67.0689059644098 -1144.8631478328928 44.31 0.1144 8229 +8231 2 -67.84546831495317 -1144.025816043386 44.5074 0.1144 8230 +8232 2 -68.44034704922126 -1143.051336473813 44.6348 0.1144 8231 +8233 2 -68.92671903106981 -1142.015442779811 44.6981 0.1144 8232 +8234 2 -69.04391725396107 -1140.8789293278223 44.683 0.1144 8233 +8235 2 -68.84835920732468 -1139.7530067148532 44.5721 0.1144 8234 +8236 2 -69.48971579952905 -1139.0393923570687 42.8655 0.1144 8235 +8237 2 -70.39200768492663 -1138.6311333050617 41.9034 0.1144 8236 +8238 2 -71.45287069121372 -1138.9193376976227 41.3969 0.1144 8237 +8239 2 -72.49836204962895 -1139.3551489749884 40.9993 0.1144 8238 +8240 2 -73.54546035839451 -1139.7946477597197 40.6706 0.1144 8239 +8241 2 -74.59548805109023 -1140.2360645407466 40.402 0.1144 8240 +8242 2 -75.65680485886298 -1140.6547231170816 40.1884 0.1144 8241 +8243 2 -76.75526444108505 -1140.9539469233282 39.9988 0.1144 8242 +8244 2 -77.88562609092634 -1141.0834449563945 39.7914 0.1144 8243 +8245 2 -79.00867507145 -1140.9559621052153 39.4974 0.1144 8244 +8246 2 -80.04244414735604 -1140.5238150148623 39.0457 0.1144 8245 +8247 2 -81.08312245630816 -1140.0999057943015 38.5459 0.1144 8246 +8248 2 -82.1999135179858 -1140.0330183922233 38.0929 0.1144 8247 +8249 2 -83.30043624340533 -1140.2677771425078 37.6639 0.1144 8248 +8250 2 -84.42337120523928 -1140.3765116425116 37.2406 0.1144 8249 +8251 2 -85.45818862137332 -1140.0081597791177 36.6517 0.1144 8250 +8252 2 -86.34273986092728 -1139.3205462578694 36.1012 0.1144 8251 +8253 2 -87.35104548479705 -1138.8270863416933 35.5872 0.1144 8252 +8254 2 -88.44502939130535 -1138.6158873542413 34.9759 0.1144 8253 +8255 2 -89.56101547436441 -1138.5632951265034 34.407 0.1144 8254 +8256 2 -90.53965055891354 -1138.0569970213423 33.6549 0.1144 8255 +8257 2 -69.40901245222182 -1139.854530056929 44.4884 0.1144 8235 +8258 2 -70.53418544729396 -1140.0600707613166 44.4248 0.1144 8257 +8259 2 -71.6652514696849 -1140.2342542938127 44.3856 0.1144 8258 +8260 2 -72.79515451763262 -1140.4145310594772 44.3705 0.1144 8259 +8261 2 -73.92296529476926 -1140.6027948397814 44.3783 0.1144 8260 +8262 2 -75.06650640813893 -1140.6275910498402 44.4044 0.1144 8261 +8263 2 -76.2029658074681 -1140.50025196049 44.4366 0.1144 8262 +8264 2 -77.21012076853083 -1139.9605410337833 44.4746 0.1144 8263 +8265 2 -78.19831828140974 -1139.386170834748 44.5917 0.1144 8264 +8266 2 -78.46184878733413 -1138.3087328678807 44.6922 0.1144 8265 +8267 2 -78.614687252198 -1137.1753456200001 44.7695 0.1144 8266 +8268 2 -78.44212807872736 -1136.0446615121914 44.8258 0.1144 8267 +8269 2 -78.04633309643981 -1134.9716122346667 44.8624 0.1144 8268 +8270 2 -77.78390667708538 -1133.8582303844355 44.8823 0.1144 8269 +8271 2 -77.91955341071576 -1132.7222577203033 44.8876 0.1144 8270 +8272 2 -77.91102991175467 -1131.5783079618063 44.8935 0.1144 8271 +8273 2 -78.13703532590637 -1131.0095390695715 44.8734 0.1144 8272 +8274 2 -78.66514319194255 -1129.99530838485 44.8454 0.1144 8273 +8275 2 -79.02446068963638 -1128.9083151991072 44.8339 0.1144 8274 +8276 2 -79.48013981796657 -1127.8589549263675 44.8179 0.1144 8275 +8277 2 -79.78177245159884 -1126.7565764730548 44.795 0.1144 8276 +8278 2 -80.10608119865583 -1125.6587459731222 44.7656 0.1144 8277 +8279 2 -80.34035842259948 -1124.5391463472106 44.7297 0.1144 8278 +8280 2 -80.62399193733307 -1123.4311038212577 44.6639 0.1144 8279 +8281 2 -80.97311523127252 -1122.3431266589841 44.5458 0.1144 8280 +8282 2 -81.05971130412473 -1121.2038840289151 44.4508 0.1144 8281 +8283 2 -81.15258270964085 -1120.0632165479913 44.3766 0.1144 8282 +8284 2 -81.25245164263595 -1118.924150506788 44.3218 0.1144 8283 +8285 2 -81.95755791467843 -1118.3625243009124 45.3936 0.1144 8284 +8286 2 -82.74791539841885 -1117.5726424249997 45.9211 0.1144 8285 +8287 2 -83.51850804631033 -1116.7450226203696 46.3534 0.1144 8286 +8288 2 -84.00954540358538 -1115.7362944241936 46.814 0.1144 8287 +8289 2 -84.3634332939472 -1114.6646273392016 47.2553 0.1144 8288 +8290 2 -84.8720672334635 -1113.655916272755 47.6722 0.1144 8289 +8291 2 -84.98240007160479 -1112.5326725793261 47.9898 0.1144 8290 +8292 2 -84.95913200646271 -1111.393041126994 48.2252 0.1144 8291 +8293 2 -85.2390670872677 -1110.2908245418644 48.4327 0.1144 8292 +8294 2 -85.60564630320266 -1109.2095861322414 48.624 0.1144 8293 +8295 2 -85.78860469922796 -1108.0839137885623 48.7754 0.1144 8294 +8296 2 -85.95805887138533 -1106.954049078281 48.911 0.1144 8295 +8297 2 -86.13103799018859 -1105.8249424914356 49.042 0.1144 8296 +8298 2 -86.30467832578177 -1104.6949511490552 49.1641 0.1144 8297 +8299 2 -86.55209867618572 -1103.5780307444575 49.252 0.1144 8298 +8300 2 -86.81203376329694 -1102.4648118753719 49.31 0.1144 8299 +8301 2 -87.06898710066537 -1101.3497602028406 49.348 0.1144 8300 +8302 2 -87.24009197677316 -1100.2195015681145 49.3704 0.1144 8301 +8303 2 -87.39097100609172 -1099.0849099065413 49.3839 0.1144 8302 +8304 2 -87.47458532920109 -1097.9438344730265 49.3942 0.1144 8303 +8305 2 -87.52041787529714 -1096.8010162470086 49.4077 0.1144 8304 +8306 2 -87.41017671211785 -1095.663093659158 49.4259 0.1144 8305 +8307 2 -86.97946609171936 -1094.6073182988298 49.4519 0.1144 8306 +8308 2 -86.46239604235393 -1093.5871999017559 49.4894 0.1144 8307 +8309 2 -86.11365704921565 -1092.4987047870836 49.5421 0.1144 8308 +8310 2 -86.35212594722469 -1091.389663563917 49.6121 0.1144 8309 +8311 2 -86.93376774997012 -1090.4084561682566 49.6964 0.1144 8310 +8312 2 -87.41242862173692 -1089.371930982919 49.8632 0.1144 8311 +8313 2 -87.86734962663161 -1088.3260956568251 50.0987 0.1144 8312 +8314 2 -88.32092865917093 -1087.2822525933138 50.3712 0.1144 8313 +8315 2 -87.99401525371752 -1086.365637098499 50.5985 0.1144 8314 +8316 2 -87.94222800459835 -1085.2353558410994 50.6486 0.1144 8315 +8317 2 -88.13890555102387 -1084.1114255973866 50.6178 0.1144 8316 +8318 2 -88.47355467271058 -1083.0185424859085 50.5702 0.1144 8317 +8319 2 -88.63258017580546 -1081.8903668172443 50.5226 0.1144 8318 +8320 2 -88.36408714715338 -1080.789337143001 50.493 0.1144 8319 +8321 2 -88.03536527743802 -1079.6942477300436 50.4804 0.1144 8320 +8322 2 -87.92334367662568 -1078.5592216990858 50.4767 0.1144 8321 +8323 2 -87.92814540362019 -1077.415363336605 50.4745 0.1144 8322 +8324 2 -87.9806143797876 -1076.2726334050199 50.4714 0.1144 8323 +8325 2 -88.00546295565897 -1075.1290070988007 50.4666 0.1144 8324 +8326 2 -88.34771535421885 -1074.043614660242 50.4605 0.1144 8325 +8327 2 -89.19353028159372 -1073.2945117243048 50.4515 0.1144 8326 +8328 2 -90.20113153291402 -1072.756366308699 50.4386 0.1144 8327 +8329 2 -91.09968634494265 -1072.05036284569 50.4207 0.1144 8328 +8330 2 -91.41993245908031 -1070.963533937177 50.3958 0.1144 8329 +8331 2 -91.39907322132407 -1069.8199836137544 50.3667 0.1144 8330 +8332 2 -91.70872569663302 -1068.7198349899154 50.3079 0.1144 8331 +8333 2 -92.11722599783408 -1067.65098296839 50.2242 0.1144 8332 +8334 2 -92.45196031237052 -1066.5581522227244 50.1418 0.1144 8333 +8335 2 -92.83684737879918 -1065.484176223879 50.0822 0.1144 8334 +8336 2 -93.54375160896669 -1064.5852464939385 50.0497 0.1144 8335 +8337 2 -94.28436878006212 -1063.7124387396884 50.0458 0.1144 8336 +8338 2 -95.01096117074536 -1062.8296017514506 50.0724 0.1144 8337 +8339 2 -95.8659948428604 -1062.070084174597 50.1267 0.1144 8338 +8340 2 -96.74784634569926 -1061.3431319774472 50.2034 0.1144 8339 +8341 2 -97.62474805103724 -1060.6091463241983 50.3042 0.1144 8340 +8342 2 -98.3675450948401 -1059.7457777518507 50.4823 0.1144 8341 +8343 2 -98.94589331466463 -1058.7678280104906 50.7629 0.1144 8342 +8344 2 -99.7316299638114 -1057.9482256384908 51.023 0.1144 8343 +8345 2 -100.67649153785516 -1057.3110647044282 51.2688 0.1144 8344 +8346 2 -101.54612842336891 -1056.578013070944 51.5441 0.1144 8345 +8347 2 -102.31841631604351 -1055.7474443436085 51.8266 0.1144 8346 +8348 2 -102.7593337484636 -1054.719998959275 52.1021 0.1144 8347 +8349 2 -102.50603708687973 -1053.6269015248115 52.4972 0.1144 8348 +8350 2 -101.85773320861523 -1052.7087615673827 53.0174 0.1144 8349 +8351 2 -101.19453790075804 -1051.8150391308086 53.66 0.1144 8350 +8352 2 -100.56588384534268 -1050.902169321575 54.3575 0.1144 8351 +8353 2 -99.89720656434065 -1050.0238581786016 55.0645 0.1144 8352 +8354 2 -99.06724840449209 -1049.2922071805833 55.697 0.1144 8353 +8355 2 -98.09000372821836 -1048.734481833576 56.2033 0.1144 8354 +8356 2 -97.14324688152021 -1048.1229552575137 56.6213 0.1144 8355 +8357 2 -96.37226049914071 -1047.3106414461172 56.9792 0.1144 8356 +8358 2 -95.87327786310684 -1046.2895506916118 57.3054 0.1144 8357 +8359 2 -95.44634545355339 -1045.2429057815907 57.6517 0.1144 8358 +8360 2 -95.31907993795332 -1044.1347803651604 58.0832 0.1144 8359 +8361 2 -95.62391406595395 -1043.0665321101155 58.5564 0.1144 8360 +8362 2 -96.22720897538997 -1042.1133069046955 59.0299 0.1144 8361 +8363 2 -96.83236641372577 -1041.1639263040788 59.5199 0.1144 8362 +8364 2 -97.47043801753702 -1040.2415852617255 60.044 0.1144 8363 +8365 2 -98.28819066400357 -1039.6255979086109 60.7566 0.1144 8364 +8366 2 -98.54877446631187 -1040.202121439765 61.7529 0.1144 8365 +8367 2 -97.93424011447644 -1041.0838786458112 62.6147 0.1144 8366 +8368 2 -97.19501935915895 -1041.8824210647895 63.476 0.1144 8367 +8369 2 -97.33438674665067 -1041.2537073451176 64.1962 0.1144 8368 +8370 2 -97.52570585044799 -1040.1560633543254 64.7702 0.1144 8369 +8371 2 -97.66736303344354 -1039.0385751295528 65.2604 0.1144 8370 +8372 2 -97.3887346541047 -1037.999865874647 66.0181 0.1144 8371 +8373 2 -96.98187442692202 -1037.0406824847068 67.1112 0.1144 8372 +8374 2 -96.50177527455881 -1036.342727404562 68.9926 0.1144 8373 +8375 2 -88.70791261883994 -1087.238172949952 50.8522 0.1144 8314 +8376 2 -89.79642236520527 -1087.4640216870916 51.2764 0.1144 8375 +8377 2 -90.87142067824828 -1087.8495371432732 51.3934 0.1144 8376 +8378 2 -91.93750277497998 -1088.260443170277 51.5348 0.1144 8377 +8379 2 -92.75291347291432 -1089.0356214166786 51.8232 0.1144 8378 +8380 2 -92.91100157571543 -1090.1547107793986 52.1203 0.1144 8379 +8381 2 -92.98635751877435 -1091.2926710123793 52.3432 0.1144 8380 +8382 2 -92.64632092154199 -1092.3809513956185 52.5193 0.1144 8381 +8383 2 -92.2872707161934 -1093.4654091218756 52.6324 0.1144 8382 +8384 2 -91.66927267982607 -1094.4270864310838 52.6184 0.1144 8383 +8385 2 -91.0100733439615 -1095.3620298120409 52.5476 0.1144 8384 +8386 2 -90.35034252498963 -1096.295355316085 52.453 0.1144 8385 +8387 2 -89.71978831266512 -1097.2491972921584 52.3292 0.1144 8386 +8388 2 -89.15658099251283 -1098.2418532620327 52.1371 0.1144 8387 +8389 2 -88.60309417475372 -1099.2188861133568 51.6043 0.1144 8388 +8390 2 -81.19545582689403 -1118.4029256349831 44.284 0.1144 8284 +8391 2 -81.07604277415794 -1117.2646474603544 44.2543 0.1144 8390 +8392 2 -80.9632661514932 -1116.1264575801586 44.231 0.1144 8391 +8393 2 -80.76668579065915 -1114.9999065774364 44.2036 0.1144 8392 +8394 2 -80.6865262209746 -1113.85887630028 44.1722 0.1144 8393 +8395 2 -80.0438449761005 -1112.9186034263294 44.0586 0.1144 8394 +8396 2 -80.45386304501886 -1112.8872736775197 43.8144 0.1144 8395 +8397 2 -81.58069944644063 -1112.723265828833 43.8931 0.1144 8396 +8398 2 -82.63331405911356 -1112.2866214344026 43.9662 0.1144 8397 +8399 2 -83.52964214325169 -1111.5819490171866 44.0516 0.1144 8398 +8400 2 -84.63054208381277 -1111.315958620983 44.1647 0.1144 8399 +8401 2 -85.71770615269236 -1110.9649928999543 44.3069 0.1144 8400 +8402 2 -86.68905659455282 -1110.383084385583 44.6541 0.1144 8401 +8403 2 -87.2835711298303 -1109.4137804666063 44.9593 0.1144 8402 +8404 2 -88.00758411176452 -1109.537893326499 45.2785 0.1144 8403 +8405 2 -89.12928732581304 -1109.4431541603994 45.7097 0.1144 8404 +8406 2 -90.17807066929163 -1109.0215271351253 46.0972 0.1144 8405 +8407 2 -91.2015671495999 -1108.525314423885 46.4008 0.1144 8406 +8408 2 -92.02742421506747 -1107.7452803750016 46.634 0.1144 8407 +8409 2 -92.6439505453967 -1106.788097960824 46.8717 0.1144 8408 +8410 2 -92.83278724805791 -1105.6660388582236 47.0624 0.1144 8409 +8411 2 -93.16942863232691 -1104.574497719101 47.2083 0.1144 8410 +8412 2 -94.0649985930296 -1103.8733502485306 47.3382 0.1144 8411 +8413 2 -94.99022196332385 -1103.2026375491866 47.5003 0.1144 8412 +8414 2 -95.63889882506345 -1102.2653346050733 47.7016 0.1144 8413 +8415 2 -96.62682904559722 -1101.6934998655233 47.8926 0.1144 8414 +8416 2 -96.98298260506346 -1101.216819844881 48.025 0.1144 8415 +8417 2 -97.54315270807712 -1100.229105060295 48.2835 0.1144 8416 +8418 2 -98.01490985742726 -1099.1950270400098 48.5957 0.1144 8417 +8419 2 -98.46417299284809 -1098.1538132410465 48.9751 0.1144 8418 +8420 2 -98.91226454161296 -1097.1146964362908 49.383 0.1144 8419 +8421 2 -99.5007241813887 -1096.155052136378 49.824 0.1144 8420 +8422 2 -100.35414169310019 -1095.4375024999736 50.2995 0.1144 8421 +8423 2 -101.17710150913814 -1094.6797506400703 50.8528 0.1144 8422 +8424 2 -102.0044326896903 -1093.912595526885 51.3094 0.1144 8423 +8425 2 -102.59587407920884 -1092.954784030418 51.7056 0.1144 8424 +8426 2 -103.01515794371397 -1091.8991337043321 52.0117 0.1144 8425 +8427 2 -103.46936536600606 -1090.8542683266232 52.2441 0.1144 8426 +8428 2 -104.1941218516605 -1089.9811018840123 52.4294 0.1144 8427 +8429 2 -105.1128385255659 -1089.307798257787 52.5893 0.1144 8428 +8430 2 -106.04625763386605 -1088.650105154387 52.775 0.1144 8429 +8431 2 -107.10919790048592 -1088.253378561381 53.074 0.1144 8430 +8432 2 -107.85528473309 -1087.41750375723 53.5226 0.1144 8431 +8433 2 -108.26181939557955 -1086.36082491378 53.9305 0.1144 8432 +8434 2 -108.70185827563074 -1085.3193407208882 54.3432 0.1144 8433 +8435 2 -109.28470690111567 -1084.3535477204114 54.8008 0.1144 8434 +8436 2 -109.88474415625097 -1083.39702893207 55.2594 0.1144 8435 +8437 2 -110.530306432982 -1082.4670846128433 55.6433 0.1144 8436 +8438 2 -111.2979532597507 -1081.6310807675463 55.9863 0.1144 8437 +8439 2 -112.02249481887264 -1080.7603645915708 56.3592 0.1144 8438 +8440 2 -112.60333164299945 -1079.7934523702506 56.81 0.1144 8439 +8441 2 -113.09040558835108 -1078.78487034495 57.3656 0.1144 8440 +8442 2 -113.65088683200617 -1077.8161277292306 57.9527 0.1144 8441 +8443 2 -114.18120670525013 -1076.8355364116867 58.5354 0.1144 8442 +8444 2 -114.49891666736576 -1075.7725028374416 59.1948 0.1144 8443 +8445 2 -114.80445586045252 -1074.7248774552136 59.873 0.1144 8444 +8446 2 -115.43019172546863 -1073.8029358479346 60.494 0.1144 8445 +8447 2 -115.98020286081146 -1072.8317484762092 61.08 0.1144 8446 +8448 2 -116.46072015300803 -1071.8380345476057 61.796 0.1144 8447 +8449 2 -117.02957923416432 -1070.8797237025321 62.4218 0.1144 8448 +8450 2 -117.68444244159815 -1069.9716949642482 62.9434 0.1144 8449 +8451 2 -118.54966041487788 -1069.2828794383536 63.4133 0.1144 8450 +8452 2 -119.59510091120598 -1068.8579064643454 63.8588 0.1144 8451 +8453 2 -120.67397474448057 -1068.5139351692123 64.2323 0.1144 8452 +8454 2 -121.7402961959177 -1068.1313771184477 64.4896 0.1144 8453 +8455 2 -122.69553027909154 -1067.523363758115 64.7198 0.1144 8454 +8456 2 -123.61442284932622 -1066.86084989836 64.9936 0.1144 8455 +8457 2 -124.63497591755828 -1066.3736269771812 65.347 0.1144 8456 +8458 2 -125.67097482293781 -1065.9334600451512 65.8392 0.1144 8457 +8459 2 -126.61934352136174 -1065.3387164433784 66.3396 0.1144 8458 +8460 2 -127.56285691988381 -1064.7169253636666 66.7374 0.1144 8459 +8461 2 -128.50460701050199 -1064.0804342586066 67.0211 0.1144 8460 +8462 2 -129.20633179595356 -1063.2118917521723 67.2008 0.1144 8461 +8463 2 -129.7062822679568 -1062.184461781058 67.2974 0.1144 8462 +8464 2 -130.30209502198966 -1061.2172470313092 67.3291 0.1144 8463 +8465 2 -131.15026330935467 -1060.4709992130154 67.3238 0.1144 8464 +8466 2 -132.15047621033423 -1059.922912857854 67.3624 0.1144 8465 +8467 2 -133.00189905041682 -1059.1866474183653 67.4411 0.1144 8466 +8468 2 -133.64216214603508 -1058.245463940828 67.5408 0.1144 8467 +8469 2 -134.11672204721577 -1057.2091177534023 67.6676 0.1144 8468 +8470 2 -134.51417621616451 -1056.1387580972187 67.8261 0.1144 8469 +8471 2 -135.11912182955098 -1055.1851389673539 68.0739 0.1144 8470 +8472 2 -135.80133814493576 -1054.2805420631898 68.4527 0.1144 8471 +8473 2 -136.40236488723156 -1053.3245141059392 68.878 0.1144 8472 +8474 2 -136.89420412154212 -1052.308179531307 69.3123 0.1144 8473 +8475 2 -137.3984728997104 -1051.2954941263738 69.725 0.1144 8474 +8476 2 -137.57558512360018 -1050.1904087268913 70.1204 0.1144 8475 +8477 2 -137.77145769140716 -1049.0807736575193 70.6 0.1144 8476 +8478 2 -138.12724954991842 -1048.0170849749543 71.146 0.1144 8477 +8479 2 -138.26400078370935 -1046.9140709224341 71.7861 0.1144 8478 +8480 2 -138.6072779055132 -1045.8466807043574 72.3506 0.1144 8479 +8481 2 -139.07194923295143 -1044.8176376744227 72.798 0.1144 8480 +8482 2 -139.0544188141996 -1043.6883410860908 73.2281 0.1144 8481 +8483 2 -139.04616811821333 -1042.5525409029528 73.5658 0.1144 8482 +8484 2 -139.13074928812443 -1041.418867847925 73.8651 0.1144 8483 +8485 2 -139.3904170828906 -1040.3081844383246 74.0877 0.1144 8484 +8486 2 -139.20492953151344 -1040.3914871290624 73.9362 0.1144 8485 +8487 2 -138.1450302761519 -1040.7525211142827 73.5661 0.1144 8486 +8488 2 -137.09536226612752 -1040.5639287795193 73.5358 0.1144 8487 +8489 2 -136.22156433218063 -1039.8468834039465 73.5232 0.1144 8488 +8490 2 -135.6507543158748 -1038.8769554038945 73.5171 0.1144 8489 +8491 2 -135.83163174643684 -1037.8574073250315 73.5182 0.1144 8490 +8492 2 -135.95919396094172 -1036.7716342679746 73.5274 0.1144 8491 +8493 2 -135.78831831845852 -1035.6406937943839 73.5437 0.1144 8492 +8494 2 -135.53387030153092 -1034.525407976003 73.5647 0.1144 8493 +8495 2 -135.1237332897198 -1033.462323947554 73.6005 0.1144 8494 +8496 2 -134.7503611566579 -1032.385450296538 73.675 0.1144 8495 +8497 2 -134.78860853223514 -1031.2702493692332 73.7419 0.1144 8496 +8498 2 -135.00880550837078 -1030.1473944980676 73.7727 0.1144 8497 +8499 2 -135.28028538380462 -1029.0371635818908 73.7685 0.1144 8498 +8500 2 -135.7255358430723 -1027.9894923507682 73.7248 0.1144 8499 +8501 2 -135.49519148355964 -1026.979170829647 73.591 0.1144 8500 +8502 2 -134.94867063949883 -1025.97851163841 73.3768 0.1144 8501 +8503 2 -134.52058067143562 -1024.9230559362397 73.1914 0.1144 8502 +8504 2 -134.16111288985255 -1023.8386477640076 73.0509 0.1144 8503 +8505 2 -133.92255838540316 -1022.7238581926504 72.8918 0.1144 8504 +8506 2 -133.7211189305476 -1021.6010111344865 72.69 0.1144 8505 +8507 2 -133.5190182589022 -1020.4790488318575 72.4366 0.1144 8506 +8508 2 -133.35157926863198 -1019.3555029117734 72.1059 0.1144 8507 +8509 2 -133.466315605788 -1018.2470561503384 71.6232 0.1144 8508 +8510 2 -133.71257228921215 -1017.1602916055225 70.9881 0.1144 8509 +8511 2 -133.96634085349342 -1016.0943429595819 70.1865 0.1144 8510 +8512 2 -134.65381700603595 -1015.340644114097 69.0659 0.1144 8511 +8513 2 -135.5427025804995 -1014.7750710105015 67.9826 0.1144 8512 +8514 2 -136.3618195082435 -1014.0606181368399 67.1216 0.1144 8513 +8515 2 -137.00344819320114 -1013.1632354031975 66.3939 0.1144 8514 +8516 2 -137.49315140310065 -1012.1589692750152 65.8073 0.1144 8515 +8517 2 -138.20983809031213 -1011.3010320265095 65.3176 0.1144 8516 +8518 2 -139.15036904655474 -1010.7014707699648 64.9491 0.1144 8517 +8519 2 -139.64751366514432 -1009.6829977618751 64.6792 0.1144 8518 +8520 2 -139.91591488418973 -1008.5735742333635 64.4874 0.1144 8519 +8521 2 -140.18480693432542 -1007.4631612176914 64.3359 0.1144 8520 +8522 2 -140.4537841773109 -1006.3528005678322 64.1998 0.1144 8521 +8523 2 -140.7236133487944 -1005.2429635761004 64.0564 0.1144 8522 +8524 2 -141.0124967804111 -1004.1395566054239 63.8795 0.1144 8523 +8525 2 -141.44175992213826 -1003.0873405225043 63.6188 0.1144 8524 +8526 2 -142.02563396340378 -1002.1154871158959 63.2402 0.1144 8525 +8527 2 -142.61738408451725 -1001.1592739575666 62.7385 0.1144 8526 +8528 2 -143.07696736325542 -1000.147292925183 62.1289 0.1144 8527 +8529 2 -143.28917904126143 -999.0637822405482 61.4494 0.1144 8528 +8530 2 -143.2234460961098 -997.9624907669039 60.7653 0.1144 8529 +8531 2 -142.94438614719616 -996.8872455879272 60.0992 0.1144 8530 +8532 2 -142.66438907693478 -995.8114243850106 59.442 0.1144 8531 +8533 2 -142.29251467594148 -994.79322267617 58.7919 0.1144 8532 +8534 2 -141.6629649384281 -993.8839106406195 58.2078 0.1144 8533 +8535 2 -141.30183714814532 -992.8199627804848 57.7279 0.1144 8534 +8536 2 -141.02946668765247 -991.7206580764782 57.3443 0.1144 8535 +8537 2 -140.68536876042015 -990.6375980797678 57.05 0.1144 8536 +8538 2 -140.3113682376054 -989.5617467429493 56.7874 0.1144 8537 +8539 2 -140.30828426625095 -988.5487333871041 56.4172 0.1144 8538 +8540 2 -141.01517067415273 -987.6914628660177 55.7836 0.1144 8539 +8541 2 -141.7906045938 -986.9017983256839 55.0771 0.1144 8540 +8542 2 -142.69996968769965 -986.2481007687077 54.5482 0.1144 8541 +8543 2 -143.66196683304454 -985.6443618662437 54.2142 0.1144 8542 +8544 2 -144.63203618587872 -985.0427676004034 54.0562 0.1144 8543 +8545 2 -145.6051318292887 -984.440451139748 54.0518 0.1144 8544 +8546 2 -146.575777206063 -983.8379197525601 54.1612 0.1144 8545 +8547 2 -147.5467313144323 -983.2369867035097 54.3312 0.1144 8546 +8548 2 -148.53025493436817 -982.6570438278503 54.5236 0.1144 8547 +8549 2 -149.61579733221475 -982.337361012426 54.7604 0.1144 8548 +8550 2 -150.73574783348562 -982.1341411199375 55.0365 0.1144 8549 +8551 2 -151.8197449515438 -981.7906192166453 55.2871 0.1144 8550 +8552 2 -152.88020281702768 -981.3694775118314 55.487 0.1144 8551 +8553 2 -153.97358605863857 -981.0479235552947 55.6996 0.1144 8552 +8554 2 -155.08887738764912 -980.8041605732119 55.8729 0.1144 8553 +8555 2 -156.2079438259216 -980.5762168373203 55.9924 0.1144 8554 +8556 2 -157.32852340948187 -980.3479120040212 56.0725 0.1144 8555 +8557 2 -158.39498311211813 -979.9412584996062 56.1322 0.1144 8556 +8558 2 -159.41163202994227 -979.4166563380713 56.18 0.1144 8557 +8559 2 -160.41407165881228 -978.8672389371176 56.2234 0.1144 8558 +8560 2 -161.35808440594113 -978.2228655490431 56.2755 0.1144 8559 +8561 2 -162.15335404205243 -977.4051319091094 56.3416 0.1144 8560 +8562 2 -162.90096563904387 -976.5406143904646 56.4516 0.1144 8561 +8563 2 -163.643721243597 -975.6731120204937 56.6048 0.1144 8562 +8564 2 -164.4976443070815 -974.9196024839588 56.8316 0.1144 8563 +8565 2 -165.58857868481493 -974.7656889254939 57.2734 0.1144 8564 +8566 2 -166.5283336953563 -974.2113118244495 58.0138 0.1144 8565 +8567 2 -167.4494057475354 -973.875047531527 59.4569 0.1144 8566 +8568 2 -139.96213948545494 -1039.4523462793215 74.2577 0.1144 8485 +8569 2 -140.95882984883505 -1038.9208756314536 74.4957 0.1144 8568 +8570 2 -142.0862446832434 -1038.7733044921479 74.744 0.1144 8569 +8571 2 -142.9550382524719 -1038.043725439497 74.9818 0.1144 8570 +8572 2 -143.58444041691612 -1037.0917577061186 75.1839 0.1144 8571 +8573 2 -144.260249256908 -1036.1737144545295 75.4004 0.1144 8572 +8574 2 -144.67757678745087 -1035.110170918866 75.5684 0.1144 8573 +8575 2 -144.98717689694698 -1034.010107487877 75.6843 0.1144 8574 +8576 2 -144.9384299665496 -1032.868196249305 75.7686 0.1144 8575 +8577 2 -144.91239507819705 -1031.7242817268916 75.8377 0.1144 8576 +8578 2 -144.98174705400305 -1030.5825388734206 75.9041 0.1144 8577 +8579 2 -145.0495858845212 -1029.4411571173573 75.976 0.1144 8578 +8580 2 -145.1290992370446 -1028.300260681755 76.0704 0.1144 8579 +8581 2 -145.36377038543293 -1027.1823117597937 76.2292 0.1144 8580 +8582 2 -145.60081443258704 -1026.0669952039636 76.4406 0.1144 8581 +8583 2 -145.30687016256772 -1025.881033229026 76.5559 0.1144 8582 +8584 2 -144.34763691682883 -1025.276627710959 76.9241 0.1144 8583 +8585 2 -143.28979199735272 -1024.8828750775222 77.1926 0.1144 8584 +8586 2 -142.2573074258079 -1025.2016002561977 77.3576 0.1144 8585 +8587 2 -141.53562408591233 -1026.063274276299 77.3654 0.1144 8586 +8588 2 -140.89295216290824 -1027.008376624927 77.2436 0.1144 8587 +8589 2 -140.2872539367159 -1027.9762057362827 77.0669 0.1144 8588 +8590 2 -139.98905244466712 -1029.0752937082575 77.0507 0.1144 8589 +8591 2 -139.72363297536452 -1030.1865500402148 77.1985 0.1144 8590 +8592 2 -139.45960001925033 -1031.2932591113286 77.4836 0.1144 8591 +8593 2 -139.16425674642795 -1032.3833049274294 77.8562 0.1144 8592 +8594 2 -138.1840790752257 -1032.9599049559383 78.1544 0.1144 8593 +8595 2 -137.20667132881695 -1033.5340992586443 78.5282 0.1144 8594 +8596 2 -146.03189224174238 -1025.179875447418 76.8306 0.1144 8582 +8597 2 -146.37713190067473 -1024.1070008471497 77.1523 0.1144 8596 +8598 2 -146.54182078387308 -1022.9848886862003 77.5169 0.1144 8597 +8599 2 -146.73310465158679 -1021.8697333060167 77.8898 0.1144 8598 +8600 2 -147.1340666374522 -1020.8177283555099 78.2275 0.1144 8599 +8601 2 -147.8098778864906 -1019.9170589346494 78.5019 0.1144 8600 +8602 2 -148.62794406496005 -1019.1214370032998 78.7217 0.1144 8601 +8603 2 -149.4302081269673 -1018.3119935989708 78.9373 0.1144 8602 +8604 2 -149.9424405868798 -1017.3323746388583 79.1742 0.1144 8603 +8605 2 -150.15907668774935 -1016.2153128814788 79.4128 0.1144 8604 +8606 2 -150.50658451382188 -1015.1452410330412 79.686 0.1144 8605 +8607 2 -151.09753817383327 -1014.1817302278506 80.0338 0.1144 8606 +8608 2 -151.76029769242732 -1013.2650563597202 80.463 0.1144 8607 +8609 2 -152.4124050032138 -1012.3485255608822 80.9698 0.1144 8608 +8610 2 -152.99493086895768 -1011.3920420086246 81.5262 0.1144 8609 +8611 2 -153.4571050745771 -1010.3735542798521 82.0929 0.1144 8610 +8612 2 -153.94240168387876 -1009.3611800155603 82.5986 0.1144 8611 +8613 2 -154.49883191371399 -1008.3751573741745 83.008 0.1144 8612 +8614 2 -155.02987467430992 -1007.3735297205932 83.356 0.1144 8613 +8615 2 -155.4698197492986 -1006.3279969229283 83.6914 0.1144 8614 +8616 2 -155.6249256887662 -1005.2214750534914 84.0846 0.1144 8615 +8617 2 -155.99510893572693 -1004.1800137850472 84.4603 0.1144 8616 +8618 2 -156.56303158807205 -1003.1970642894203 84.7806 0.1144 8617 +8619 2 -157.14650309268018 -1002.2195639399009 85.064 0.1144 8618 +8620 2 -157.73411700712413 -1001.2460183900924 85.3695 0.1144 8619 +8621 2 -158.3262750808284 -1000.2805481493564 85.7604 0.1144 8620 +8622 2 -158.92043402932777 -999.3204161199365 86.2212 0.1144 8621 +8623 2 -159.51085310464882 -998.3619762337166 86.7166 0.1144 8622 +8624 2 -160.10768817287922 -997.3953898737205 87.0262 0.1144 8623 +8625 2 -160.70675307058323 -996.4207836720478 87.0702 0.1144 8624 +8626 2 -161.30505984485174 -995.4497024170211 86.8787 0.1144 8625 +8627 2 -161.2964561662332 -995.0267732779041 85.4605 0.1144 8626 +8628 2 -160.5906477179033 -994.6587819135133 83.5103 0.1144 8627 +8629 2 -159.6206397281506 -994.3123296371233 82.357 0.1144 8628 +8630 2 -158.56856249997742 -994.4444665583811 81.3159 0.1144 8629 +8631 2 -157.57727922792984 -994.7899256653078 80.3004 0.1144 8630 +8632 2 -156.9508413994106 -995.6845556038858 79.4671 0.1144 8631 +8633 2 -156.4109861301556 -996.6459043586349 78.7198 0.1144 8632 +8634 2 -155.93701697359762 -997.6463430117425 78.0254 0.1144 8633 +8635 2 -155.49121821524525 -998.5835740809306 76.8454 0.1144 8634 +8636 2 -161.56739715344168 -995.0819192791236 86.7322 0.1144 8626 +8637 2 -162.23189877200213 -994.1515262605928 86.6281 0.1144 8636 +8638 2 -163.10488160624945 -993.4151317799581 86.6942 0.1144 8637 +8639 2 -164.0222672343625 -992.7396014258424 86.9445 0.1144 8638 +8640 2 -164.61807658503858 -991.4863277136601 86.9056 0.1144 8639 +8641 2 -165.14323552836888 -990.4704017841553 86.8501 0.1144 8640 +8642 2 -165.75566398969522 -989.5067095720059 86.8146 0.1144 8641 +8643 2 -166.42996278598224 -988.5823386219399 86.77 0.1144 8642 +8644 2 -167.0867118552112 -987.6471803144503 86.7017 0.1144 8643 +8645 2 -167.74346092444014 -986.7120220069606 86.569 0.1144 8644 +8646 2 -168.51035272935655 -985.8728543124251 86.4147 0.1144 8645 +8647 2 -169.39295925404784 -985.1490659645136 86.3206 0.1144 8646 +8648 2 -170.3000544642974 -984.4511291983648 86.3024 0.1144 8647 +8649 2 -171.15946190997317 -983.6995821989582 86.3458 0.1144 8648 +8650 2 -171.3168787638927 -982.7422631434171 86.5015 0.1144 8649 +8651 2 -170.46205540785883 -982.042280457932 86.917 0.1144 8650 +8652 2 -169.55665593412292 -981.3917331476165 87.519 0.1144 8651 +8653 2 -168.92366885185987 -980.4990891851722 88.2165 0.1144 8652 +8654 2 -168.6896499891544 -979.4139677440893 88.8348 0.1144 8653 +8655 2 -168.67141691436294 -978.2814221136691 89.1078 0.1144 8654 +8656 2 -168.83454338804373 -977.1530674470929 88.9571 0.1144 8655 +8657 2 -169.0741228946833 -976.038018183608 88.7421 0.1144 8656 +8658 2 -169.32483372642503 -974.924528920594 88.5497 0.1144 8657 +8659 2 -169.57617294791953 -973.8100173433825 88.4055 0.1144 8658 +8660 2 -169.8270658791566 -972.6939402550704 88.3319 0.1144 8659 +8661 2 -170.07801117620642 -971.5777779739084 88.3254 0.1144 8660 +8662 2 -170.32992642164103 -970.4623292753491 88.3448 0.1144 8661 +8663 2 -170.58090454572786 -969.3463045528497 88.3582 0.1144 8662 +8664 2 -170.97845251973902 -968.2799935014394 88.3456 0.1144 8663 +8665 2 -171.61207918528578 -967.3387217294692 88.2885 0.1144 8664 +8666 2 -172.36066073066203 -966.4749177934269 88.1913 0.1144 8665 +8667 2 -173.12359532682115 -965.6225186779983 88.072 0.1144 8666 +8668 2 -173.9669247514769 -964.8556894261372 87.9752 0.1144 8667 +8669 2 -174.88982758881818 -964.1822591678124 87.9354 0.1144 8668 +8670 2 -175.83540584704764 -963.5374394894808 87.9575 0.1144 8669 +8671 2 -176.78165393427966 -962.8957312945746 88.0331 0.1144 8670 +8672 2 -177.6307210053258 -962.1392369067136 88.1527 0.1144 8671 +8673 2 -178.34501358583407 -961.2502481163282 88.3033 0.1144 8672 +8674 2 -179.00113426531016 -960.3161121230361 88.4682 0.1144 8673 +8675 2 -179.65106790655545 -959.3767645505276 88.6365 0.1144 8674 +8676 2 -180.30131027939564 -958.4390153161567 88.8056 0.1144 8675 +8677 2 -180.75835879118495 -957.4027043648148 88.9588 0.1144 8676 +8678 2 -180.75758714901875 -956.2875825218898 89.0641 0.1144 8677 +8679 2 -180.5522288230726 -955.16232663634 89.129 0.1144 8678 +8680 2 -180.39935540107106 -954.0303614395051 89.2346 0.1144 8679 +8681 2 -180.35933096838994 -952.8939290724948 89.4776 0.1144 8680 +8682 2 -180.3426962317362 -951.7610747104798 89.8722 0.1144 8681 +8683 2 -180.13137061218458 -950.6629046405357 90.3854 0.1144 8682 +8684 2 -179.84353579974191 -949.5822657828472 90.9857 0.1144 8683 +8685 2 -179.55404718176578 -948.5087096454878 91.6398 0.1144 8684 +8686 2 -179.2634065159094 -947.4370277508237 92.3177 0.1144 8685 +8687 2 -179.0228450281949 -946.3558666200811 93.0101 0.1144 8686 +8688 2 -178.80842672410878 -945.2694117241591 93.7138 0.1144 8687 +8689 2 -178.5976709253311 -944.1836821246357 94.4261 0.1144 8688 +8690 2 -178.40821092995606 -943.0936701475672 95.1457 0.1144 8689 +8691 2 -178.80002395071205 -942.1111652433729 95.8681 0.1144 8690 +8692 2 -179.39292542716916 -941.177140468961 96.5815 0.1144 8691 +8693 2 -179.9946017671553 -940.2485093732611 97.2919 0.1144 8692 +8694 2 -180.59633047295424 -939.3197930847114 97.9983 0.1144 8693 +8695 2 -181.28000618274092 -938.4630455292158 98.7857 0.1144 8694 +8696 2 -182.02100427410835 -937.6682953492285 99.6646 0.1144 8695 +8697 2 -182.73109217637852 -936.8451550264101 100.5348 0.1144 8696 +8698 2 -183.34827051344456 -935.9327433045123 101.2799 0.1144 8697 +8699 2 -184.43104780459058 -935.6502138763486 101.7626 0.1144 8698 +8700 2 -185.5447705209174 -935.4135859804076 102.0326 0.1144 8699 +8701 2 -186.66245664916772 -935.1768119135911 102.1446 0.1144 8700 +8702 2 -187.78085636002066 -934.9390678983898 102.1591 0.1144 8701 +8703 2 -188.90322350167924 -935.1535655658018 102.188 0.1144 8702 +8704 2 -189.9848230087101 -935.5216579270246 102.2935 0.1144 8703 +8705 2 -191.05198288703522 -935.9264183550474 102.482 0.1144 8704 +8706 2 -191.75054253230732 -936.8218062162547 102.7768 0.1144 8705 +8707 2 -192.4425595525704 -937.7211543878024 103.1344 0.1144 8706 +8708 2 -193.1341302825761 -938.6189370482493 103.5255 0.1144 8707 +8709 2 -193.8027168600987 -939.4865107905657 104.3302 0.1144 8708 +8710 2 -164.25904878957937 -991.4455874131248 87.5344 0.1144 8639 +8711 2 -164.49166910640645 -990.3397593034264 87.9578 0.1144 8710 +8712 2 -164.82047515754067 -989.2607743402608 88.4162 0.1144 8711 +8713 2 -165.1453951646214 -988.1795181083718 88.8549 0.1144 8712 +8714 2 -165.412503675541 -987.0786904454772 89.2321 0.1144 8713 +8715 2 -165.66179516705728 -985.9696108846441 89.556 0.1144 8714 +8716 2 -165.89499460940758 -984.8561568577137 89.8444 0.1144 8715 +8717 2 -166.07171049980607 -983.7320469235522 90.1239 0.1144 8716 +8718 2 -166.20726893900357 -982.6027106894915 90.4126 0.1144 8717 +8719 2 -166.45428133681665 -981.4950473673007 90.7189 0.1144 8718 +8720 2 -167.05169173645058 -980.55158651257 91.0204 0.1144 8719 +8721 2 -167.8015683989992 -979.6965605416399 91.3128 0.1144 8720 +8722 2 -168.55301057264842 -978.8410882804524 91.6031 0.1144 8721 +8723 2 -169.26836690660406 -977.9568616774429 91.8999 0.1144 8722 +8724 2 -169.9257827032525 -977.0315036492631 92.2172 0.1144 8723 +8725 2 -170.41918744866376 -976.0147227843734 92.5786 0.1144 8724 +8726 2 -170.77516450825348 -974.941757480626 92.9914 0.1144 8725 +8727 2 -171.07550133217686 -973.8546636888142 93.4503 0.1144 8726 +8728 2 -171.2634806904067 -972.7469849534042 93.9655 0.1144 8727 +8729 2 -171.31532058428468 -971.62933996263 94.5232 0.1144 8728 +8730 2 -171.36350889941718 -970.5067506849845 95.044 0.1144 8729 +8731 2 -171.43877751952587 -969.3794436660996 95.4873 0.1144 8730 +8732 2 -171.53014129038363 -968.2498223174281 95.8633 0.1144 8731 +8733 2 -171.890034119481 -967.1859546369507 96.2374 0.1144 8732 +8734 2 -172.74228865674934 -966.4744982337146 96.6297 0.1144 8733 +8735 2 -173.65713572379377 -965.8053893831379 97.008 0.1144 8734 +8736 2 -174.549938861286 -965.0999588424862 97.3053 0.1144 8735 +8737 2 -175.40021034602503 -964.3415050190799 97.5358 0.1144 8736 +8738 2 -176.14233756082524 -963.4750249633066 97.713 0.1144 8737 +8739 2 -176.8375703705707 -962.5689211170211 97.8544 0.1144 8738 +8740 2 -177.60358052153512 -961.7224034098115 97.9927 0.1144 8739 +8741 2 -178.4302394640382 -960.9347629824719 98.1599 0.1144 8740 +8742 2 -179.261900569855 -960.1540708183818 98.3693 0.1144 8741 +8743 2 -180.09288092010607 -959.3744861613391 98.6196 0.1144 8742 +8744 2 -180.9233376122299 -958.5957534327943 98.9086 0.1144 8743 +8745 2 -181.76981685797782 -957.8390769454379 99.2494 0.1144 8744 +8746 2 -182.64653887286696 -957.125052948216 99.661 0.1144 8745 +8747 2 -183.5213428914605 -956.4139583349242 100.1456 0.1144 8746 +8748 2 -184.38233395459127 -955.6970730168929 100.7121 0.1144 8747 +8749 2 -185.27984863015655 -955.0321003729856 101.3174 0.1144 8748 +8750 2 -186.23244182968295 -954.4480527326205 101.906 0.1144 8749 +8751 2 -187.1479939618135 -953.7995667548606 102.4531 0.1144 8750 +8752 2 -187.9999928258363 -953.0623641940241 102.9356 0.1144 8751 +8753 2 -188.6457786413124 -952.1339658471223 103.3306 0.1144 8752 +8754 2 -188.9215713122816 -951.0277944622819 103.5616 0.1144 8753 +8755 2 -189.26815914673554 -949.9395500076632 103.7344 0.1144 8754 +8756 2 -189.7136768983484 -948.8893433170552 103.9366 0.1144 8755 +8757 2 -190.1658725192824 -947.8433587185032 104.1737 0.1144 8756 +8758 2 -190.687076662902 -946.8315751988341 104.4344 0.1144 8757 +8759 2 -191.46880063589563 -946.0055153946753 104.6755 0.1144 8758 +8760 2 -192.42569162618605 -945.3837305181296 104.862 0.1144 8759 +8761 2 -193.41263235955932 -944.8114049474892 105.0577 0.1144 8760 +8762 2 -194.43078821950505 -944.299819280315 105.32 0.1144 8761 +8763 2 -195.4460889618075 -943.7905869731309 105.6448 0.1144 8762 +8764 2 -196.4592481690692 -943.2827380775519 106.0293 0.1144 8763 +8765 2 -197.4696569903131 -942.7770721562634 106.4664 0.1144 8764 +8766 2 -198.47163560824305 -942.2610596571792 106.9424 0.1144 8765 +8767 2 -199.39867395971737 -941.6290244169465 107.4592 0.1144 8766 +8768 2 -200.18890481135824 -940.8349563775979 108.0173 0.1144 8767 +8769 2 -200.9366837871624 -940.0028214466251 108.5986 0.1144 8768 +8770 2 -201.72125125869985 -939.2026898995621 109.167 0.1144 8769 +8771 2 -202.52683793654543 -938.4208778220923 109.6875 0.1144 8770 +8772 2 -203.23899449264266 -937.5439574781569 110.1153 0.1144 8771 +8773 2 -203.82099429121266 -936.5709520236684 110.425 0.1144 8772 +8774 2 -204.18886862432 -935.4984915791572 110.6633 0.1144 8773 +8775 2 -204.32259736165486 -934.3654482989552 110.8604 0.1144 8774 +8776 2 -204.43569461396004 -933.229113844879 111.0416 0.1144 8775 +8777 2 -204.54710833527778 -932.0930357565848 111.223 0.1144 8776 +8778 2 -204.6594920049803 -930.9576712508932 111.4145 0.1144 8777 +8779 2 -204.773578744446 -929.8218276279072 111.6195 0.1144 8778 +8780 2 -204.8971461050635 -928.6879379298368 111.8331 0.1144 8779 +8781 2 -205.03038401130806 -927.5558841367954 112.0566 0.1144 8780 +8782 2 -205.16259960335503 -926.4232019540011 112.2943 0.1144 8781 +8783 2 -205.29520911984682 -925.2921704751571 112.551 0.1144 8782 +8784 2 -205.42875575768625 -924.1617150202534 112.8299 0.1144 8783 +8785 2 -205.61491634061642 -923.0461102482292 113.1455 0.1144 8784 +8786 2 -206.1024811170583 -922.0365387357681 113.5652 0.1144 8785 +8787 2 -206.81427347416474 -921.1647940424289 114.0703 0.1144 8786 +8788 2 -207.52120983883282 -920.2900644977639 114.588 0.1144 8787 +8789 2 -208.22775227905612 -919.4136842491484 115.0834 0.1144 8788 +8790 2 -208.95152478817965 -918.5507120102919 115.5722 0.1144 8789 +8791 2 -209.72972622357392 -917.7412679134264 116.1003 0.1144 8790 +8792 2 -210.53932557757258 -916.9659132681157 116.6553 0.1144 8791 +8793 2 -211.3193598164126 -916.1534874215074 117.1318 0.1144 8792 +8794 2 -212.0755173222546 -915.3077216345671 117.4925 0.1144 8793 +8795 2 -212.84735031245913 -914.4715911571702 117.7607 0.1144 8794 +8796 2 -213.68399404281382 -913.6980700078419 117.9637 0.1144 8795 +8797 2 -214.57889727609702 -912.987122257962 118.1281 0.1144 8796 +8798 2 -215.48478807265366 -912.2911449273585 118.2784 0.1144 8797 +8799 2 -216.39469154536332 -911.6016250289141 118.4403 0.1144 8798 +8800 2 -217.32512890392056 -910.942099122068 118.6329 0.1144 8799 +8801 2 -218.27568668510486 -910.3111392543824 118.862 0.1144 8800 +8802 2 -219.22905272874945 -909.6885962544011 119.114 0.1144 8801 +8803 2 -220.1775658815386 -909.0563796072097 119.3662 0.1144 8802 +8804 2 -221.1184671452419 -908.4126760481381 119.6009 0.1144 8803 +8805 2 -222.05753870708253 -907.7652654429253 119.819 0.1144 8804 +8806 2 -222.99567314757545 -907.1172788137721 120.0282 0.1144 8805 +8807 2 -223.9357670236137 -906.4704965983121 120.2356 0.1144 8806 +8808 2 -224.88370415246274 -905.8392170724685 120.4728 0.1144 8807 +8809 2 -225.84940524236578 -905.240337264026 120.7993 0.1144 8808 +8810 2 -226.8224478274264 -904.6621686228334 121.2103 0.1144 8809 +8811 2 -227.71974516741278 -903.982272414833 121.5866 0.1144 8810 +8812 2 -228.41193765843641 -903.0877985497198 121.7588 0.1144 8811 +8813 2 -228.98151411631503 -902.097766333764 121.6877 0.1144 8812 +8814 2 -229.53510325665306 -901.1031892660111 121.4234 0.1144 8813 +8815 2 -229.9059124843201 -900.0433318526403 121.0252 0.1144 8814 +8816 2 -229.96086386162364 -898.9250170328635 120.5814 0.1144 8815 +8817 2 -230.21869816040737 -897.8413779996191 120.1768 0.1144 8816 +8818 2 -230.84252454664443 -896.9007729550683 119.9066 0.1144 8817 +8819 2 -231.54212251773797 -895.9986434472693 119.7619 0.1144 8818 +8820 2 -232.32246618070945 -895.1637533121856 119.7487 0.1144 8819 +8821 2 -233.22190264669004 -894.465099861851 119.8915 0.1144 8820 +8822 2 -234.17469266639444 -893.8434939832175 120.1752 0.1144 8821 +8823 2 -235.13050277350837 -893.234543501537 120.559 0.1144 8822 +8824 2 -236.12701103739315 -892.7056606789672 121.0073 0.1144 8823 +8825 2 -237.2109927422321 -892.4211718152582 121.49 0.1144 8824 +8826 2 -238.32904507007177 -892.2974257356744 121.977 0.1144 8825 +8827 2 -239.40149670727078 -891.9749785060862 122.4779 0.1144 8826 +8828 2 -240.38651565022877 -891.4363337418733 122.9827 0.1144 8827 +8829 2 -241.31217369168093 -890.7954681707159 123.475 0.1144 8828 +8830 2 -242.20871600981488 -890.1124081134773 123.9456 0.1144 8829 +8831 2 -243.10182167573586 -889.4219535027316 124.4009 0.1144 8830 +8832 2 -243.9964404869447 -888.7311377945783 124.845 0.1144 8831 +8833 2 -244.89048327421335 -888.0412592077728 125.2832 0.1144 8832 +8834 2 -245.78421732988716 -887.3497822828296 125.7217 0.1144 8833 +8835 2 -246.6791972385036 -886.6604797199641 126.1697 0.1144 8834 +8836 2 -247.57070456628693 -885.9703338408134 126.6345 0.1144 8835 +8837 2 -248.46354293986266 -885.2824146895532 127.1217 0.1144 8836 +8838 2 -249.3532174642002 -884.5952505601454 127.6346 0.1144 8837 +8839 2 -250.14028446660288 -883.8019375426493 128.2182 0.1144 8838 +8840 2 -250.51683064812372 -882.7764776198917 128.9098 0.1144 8839 +8841 2 -250.82459967068405 -881.7208323959871 129.6823 0.1144 8840 +8842 2 -251.12941666895543 -880.6701807231836 130.5007 0.1144 8841 +8843 2 -251.78120913967695 -879.7910182381386 131.2802 0.1144 8842 +8844 2 -252.4711187428777 -878.928712034165 132.0206 0.1144 8843 +8845 2 -253.16371307802217 -878.0639477385757 132.7161 0.1144 8844 +8846 2 -253.9395056860305 -877.258422512801 133.3016 0.1144 8845 +8847 2 -254.73405243478993 -876.4617252089045 133.8064 0.1144 8846 +8848 2 -255.53145430119264 -875.662674545018 134.26 0.1144 8847 +8849 2 -256.31945601589655 -874.8525637207331 134.6951 0.1144 8848 +8850 2 -257.07205264647246 -874.0125910475788 135.154 0.1144 8849 +8851 2 -257.82272266854017 -873.1715515193943 135.6398 0.1144 8850 +8852 2 -258.5706423045899 -872.3326949655002 136.1542 0.1144 8851 +8853 2 -259.31850957482703 -871.4939236044559 136.6904 0.1144 8852 +8854 2 -260.0642024829863 -870.6563980963541 137.2414 0.1144 8853 +8855 2 -260.81037450844013 -869.8205756580156 137.8009 0.1144 8854 +8856 2 -261.55543902684656 -868.9840724641116 138.3651 0.1144 8855 +8857 2 -262.3005887381028 -868.1476216360202 138.9343 0.1144 8856 +8858 2 -263.0457908151718 -867.311085615079 139.5108 0.1144 8857 +8859 2 -263.78965091988533 -866.4765418567202 140.0958 0.1144 8858 +8860 2 -264.37115136984863 -865.526118710594 140.7115 0.1144 8859 +8861 2 -264.93225790167344 -864.5630425765612 141.3499 0.1144 8860 +8862 2 -265.4912228984575 -863.6013498541337 142.0048 0.1144 8861 +8863 2 -266.05049662683655 -862.6412554698438 142.6695 0.1144 8862 +8864 2 -266.60781091967027 -861.679956671861 143.3373 0.1144 8863 +8865 2 -267.16606233385176 -860.7192338978182 144.0037 0.1144 8864 +8866 2 -267.7253884280435 -859.7590543206785 144.6634 0.1144 8865 +8867 2 -268.2848442559179 -858.7963721110904 145.3147 0.1144 8866 +8868 2 -268.95988335337466 -857.9101354232329 145.9391 0.1144 8867 +8869 2 -269.67991288773675 -857.0555441234607 146.5349 0.1144 8868 +8870 2 -270.4020839571395 -856.1995694120832 147.1112 0.1144 8869 +8871 2 -271.1258533646799 -855.3432859691109 147.6728 0.1144 8870 +8872 2 -271.8495899451833 -854.486864967476 148.2244 0.1144 8871 +8873 2 -272.57398774247656 -853.6295592103061 148.7704 0.1144 8872 +8874 2 -273.297757150017 -852.7732757673336 149.3145 0.1144 8873 +8875 2 -274.02215494731024 -851.9159700101638 149.8568 0.1144 8874 +8876 2 -274.7470435756938 -851.0576747658333 150.3978 0.1144 8875 +8877 2 -275.47144137298704 -850.2003690086634 150.9374 0.1144 8876 +8878 2 -276.25854430400983 -849.4005047539456 151.473 0.1144 8877 +8879 2 -277.1263179680873 -848.6876711422706 151.9974 0.1144 8878 +8880 2 -277.9994267418976 -847.9795254516846 152.5188 0.1144 8879 +8881 2 -278.8723979570454 -847.2714125881358 153.0418 0.1144 8880 +8882 2 -279.7449307069156 -846.5642040188976 153.5713 0.1144 8881 +8883 2 -280.7815463829484 -846.1512963897563 154.1529 0.1144 8882 +8884 2 -281.8805098124116 -845.9539572129503 154.7633 0.1144 8883 +8885 2 -282.9773403190468 -845.76199768671 155.3989 0.1144 8884 +8886 2 -284.0736276287789 -845.5711128404799 156.0465 0.1144 8885 +8887 2 -285.15871073219523 -845.3262713842671 156.693 0.1144 8886 +8888 2 -286.04446328385905 -844.6433872233576 157.2696 0.1144 8887 +8889 2 -286.934584098454 -843.9577886050504 157.7996 0.1144 8888 +8890 2 -287.8268464480897 -843.270806575138 158.293 0.1144 8889 +8891 2 -288.7196848216655 -842.5828874238778 158.7695 0.1144 8890 +8892 2 -289.61372760893414 -841.8930088370722 159.229 0.1144 8891 +8893 2 -290.7048334733518 -841.6143075765198 159.698 0.1144 8892 +8894 2 -291.81573871716535 -841.414918260689 160.1572 0.1144 8893 +8895 2 -292.92664396097894 -841.2155289448582 160.6111 0.1144 8894 +8896 2 -293.9978135028634 -841.0238774576762 161.4771 0.1144 8895 +8897 2 -97.44281456037703 -1101.2967499573074 47.1425 0.1144 8415 +8898 2 -98.27976632979005 -1100.5488897727296 46.9613 0.1144 8897 +8899 2 -98.9339275737209 -1099.6135493657448 46.8978 0.1144 8898 +8900 2 -99.55584448117878 -1098.6542808839222 46.8798 0.1144 8899 +8901 2 -100.24251735392767 -1097.7403330922893 46.9115 0.1144 8900 +8902 2 -101.03729615894866 -1096.9235889395159 47.0142 0.1144 8901 +8903 2 -101.90262335051011 -1096.179788978811 47.2018 0.1144 8902 +8904 2 -102.75195771390139 -1095.4207591314648 47.4446 0.1144 8903 +8905 2 -103.58103099441996 -1094.6398848678791 47.7142 0.1144 8904 +8906 2 -104.40853876383801 -1093.8594568945514 48.0004 0.1144 8905 +8907 2 -105.23706884745349 -1093.079657310976 48.2933 0.1144 8906 +8908 2 -106.06462898268416 -1092.2991441447982 48.5856 0.1144 8907 +8909 2 -106.89276514185497 -1091.5176938572727 48.8737 0.1144 8908 +8910 2 -107.74370645559662 -1090.7623515172918 49.1602 0.1144 8909 +8911 2 -108.72061485339856 -1090.210739522948 49.443 0.1144 8910 +8912 2 -109.80723813442154 -1089.8782223126582 49.719 0.1144 8911 +8913 2 -110.91250943949694 -1089.6028286631727 49.9895 0.1144 8912 +8914 2 -112.0061654840826 -1089.2894242819953 50.2575 0.1144 8913 +8915 2 -112.96289799186167 -1088.7160202372252 50.5224 0.1144 8914 +8916 2 -113.66907933467735 -1087.8381268433218 50.7794 0.1144 8915 +8917 2 -114.28756510055189 -1086.8821488428373 51.0322 0.1144 8916 +8918 2 -114.99811780788184 -1085.9948521956521 51.2901 0.1144 8917 +8919 2 -115.73605885924619 -1085.1284987719782 51.5592 0.1144 8918 +8920 2 -116.1252604377201 -1084.100018761811 51.8543 0.1144 8919 +8921 2 -116.03239241273309 -1082.986156391527 52.194 0.1144 8920 +8922 2 -116.00403629889098 -1081.8635869367458 52.5546 0.1144 8921 +8923 2 -116.55617424859176 -1080.9259865663853 52.9197 0.1144 8922 +8924 2 -117.13220744609299 -1079.9560043008892 53.2941 0.1144 8923 +8925 2 -116.92260610424202 -1078.8857742893993 53.6564 0.1144 8924 +8926 2 -116.26485753344596 -1077.959129169833 53.8236 0.1144 8925 +8927 2 -115.64548148428611 -1076.998319308452 53.8101 0.1144 8926 +8928 2 -115.36442135311398 -1075.8936732915463 53.7009 0.1144 8927 +8929 2 -115.1348792790848 -1074.7749155848687 53.5332 0.1144 8928 +8930 2 -114.71538827822141 -1073.71406379494 53.3627 0.1144 8929 +8931 2 -114.60898079328297 -1072.5784976686627 53.2148 0.1144 8930 +8932 2 -114.79100206796048 -1071.4522493010436 53.06 0.1144 8931 +8933 2 -115.1096966991436 -1070.3549588964306 52.9147 0.1144 8932 +8934 2 -115.46879927030494 -1069.2704159773239 52.7974 0.1144 8933 +8935 2 -115.8329727604372 -1068.186407642907 52.7136 0.1144 8934 +8936 2 -116.1961763021846 -1067.1016857258878 52.6576 0.1144 8935 +8937 2 -115.99005985280294 -1065.9799547869839 52.6834 0.1144 8936 +8938 2 -115.49482019153044 -1064.9504830933938 52.7993 0.1144 8937 +8939 2 -114.99312309809883 -1063.925024075957 52.9729 0.1144 8938 +8940 2 -114.2721015733978 -1063.0467006213473 53.2868 0.1144 8939 +8941 2 -87.56459961823225 -1109.148691144478 44.893 0.1144 8403 +8942 2 -88.28899810806212 -1108.267322760695 44.7574 0.1144 8941 +8943 2 -88.92258643594215 -1107.3152283952174 44.6986 0.1144 8942 +8944 2 -89.84268341986979 -1106.650755099917 44.6351 0.1144 8943 +8945 2 -90.8202380296903 -1106.0564615825213 44.5354 0.1144 8944 +8946 2 -91.72323226935384 -1105.3587038142846 44.3766 0.1144 8945 +8947 2 -92.49044373242816 -1104.5169154674138 44.1893 0.1144 8946 +8948 2 -93.03222389368142 -1103.5151971103533 43.979 0.1144 8947 +8949 2 -93.30231725592705 -1102.4095134550203 43.7973 0.1144 8948 +8950 2 -93.5465213912799 -1101.2934332651248 43.6416 0.1144 8949 +8951 2 -93.5191523555518 -1100.153980810705 43.5047 0.1144 8950 +8952 2 -93.39274728596621 -1099.0247862312003 43.1894 0.1144 8951 +8953 2 -92.96487775506495 -1097.9775652972392 42.9528 0.1144 8952 +8954 2 -92.30053419344722 -1097.054965680863 42.7148 0.1144 8953 +8955 2 -91.85430685528621 -1096.017941359703 42.373 0.1144 8954 +8956 2 -92.42208505326602 -1095.0724649094946 41.9518 0.1144 8955 +8957 2 -93.18951385191923 -1094.245600126717 41.4943 0.1144 8956 +8958 2 -93.59418288392601 -1093.1917654743474 41.0455 0.1144 8957 +8959 2 -94.22691076579162 -1092.2607402719443 40.577 0.1144 8958 +8960 2 -95.11703468196976 -1091.568452857753 40.1486 0.1144 8959 +8961 2 -95.64117061856587 -1090.5759611651083 39.6922 0.1144 8960 +8962 2 -95.78385011575892 -1089.4591013300885 39.2241 0.1144 8961 +8963 2 -95.71166043098475 -1088.337759905984 38.7198 0.1144 8962 +8964 2 -95.47528269765962 -1087.2390983124133 38.2175 0.1144 8963 +8965 2 -95.41828386932389 -1086.1150040932446 37.7546 0.1144 8964 +8966 2 -95.53075824250584 -1084.9903769882103 37.3537 0.1144 8965 +8967 2 -95.46649769592898 -1083.8605279929225 36.988 0.1144 8966 +8968 2 -95.23137984369254 -1082.7531329750718 36.5814 0.1144 8967 +8969 2 -95.07395846831099 -1081.6438438916618 36.0394 0.1144 8968 +8970 2 -95.03807024229945 -1080.5247439161308 35.4749 0.1144 8969 +8971 2 -94.98351857901622 -1079.4075534193785 34.9247 0.1144 8970 +8972 2 -95.06587232850023 -1078.2992740367563 34.279 0.1144 8971 +8973 2 -94.99563897768832 -1077.1858258222292 33.7061 0.1144 8972 +8974 2 -94.97955633423891 -1076.1326601996514 33.0862 0.1144 8973 +8975 2 -95.48988172441881 -1075.151751632996 32.3834 0.1144 8974 +8976 2 -96.05689328144672 -1074.2313929506354 31.5608 0.1144 8975 +8977 2 -96.70159752120969 -1073.3398916252117 30.8305 0.1144 8976 +8978 2 -97.19664135147167 -1072.3509984529635 30.135 0.1144 8977 +8979 2 -97.57297019741358 -1071.3106149661126 29.4403 0.1144 8978 +8980 2 -98.06177462363195 -1070.3165954074975 28.854 0.1144 8979 +8981 2 -98.84677676632722 -1069.546310988621 28.3178 0.1144 8980 +8982 2 -99.86754647760168 -1069.0980742581487 27.7894 0.1144 8981 +8983 2 -100.77547269250041 -1068.4490091548655 27.41 0.1144 8982 +8984 2 -101.35635878085682 -1067.4887005365797 27.1627 0.1144 8983 +8985 2 -101.48188798606617 -1066.3733890829312 27.005 0.1144 8984 +8986 2 -101.22021348698098 -1065.2698598778225 26.9109 0.1144 8985 +8987 2 -101.30368094667864 -1064.148883658997 26.8583 0.1144 8986 +8988 2 -101.58673843747209 -1063.041778254392 26.8272 0.1144 8987 +8989 2 -101.73026745411664 -1061.9080682467707 26.7908 0.1144 8988 +8990 2 -101.70877982660758 -1060.7655402375453 26.745 0.1144 8989 +8991 2 -101.92852741090266 -1059.6478086511634 26.6522 0.1144 8990 +8992 2 -102.29319955710508 -1058.5652806349972 26.5269 0.1144 8991 +8993 2 -102.84945389061113 -1057.5684682271412 26.4051 0.1144 8992 +8994 2 -103.24690805955987 -1056.4981085709578 26.2976 0.1144 8993 +8995 2 -103.3096650445442 -1055.3604112206772 26.173 0.1144 8994 +8996 2 -103.36668128155509 -1054.2190678022807 26.0341 0.1144 8995 +8997 2 -103.6882724696313 -1053.1235578353007 25.9195 0.1144 8996 +8998 2 -103.99787257912749 -1052.0234944043116 25.8323 0.1144 8997 +8999 2 -103.86718754104356 -1050.890377852133 25.7592 0.1144 8998 +9000 2 -103.48392993582218 -1049.8141185627237 25.6956 0.1144 8999 +9001 2 -103.04394269424134 -1048.758158001317 25.6363 0.1144 9000 +9002 2 -103.08705768135653 -1047.6176603082522 25.5727 0.1144 9001 +9003 2 -103.68585528671542 -1046.6455895660652 25.4982 0.1144 9002 +9004 2 -104.18625204897606 -1045.6197251060514 25.3134 0.1144 9003 +9005 2 -104.53568407451041 -1044.5333462819153 25.0974 0.1144 9004 +9006 2 -104.74572208297519 -1043.42701882361 24.9239 0.1144 9005 +9007 2 -104.12179567138872 -1042.471511244925 24.7923 0.1144 9006 +9008 2 -103.80117573461669 -1041.3853928231383 24.6979 0.1144 9007 +9009 2 -104.21546604802089 -1040.3267904727634 24.6359 0.1144 9008 +9010 2 -105.00515990592493 -1039.520419521657 24.5995 0.1144 9009 +9011 2 -105.14681157829082 -1038.3922462620394 24.5661 0.1144 9010 +9012 2 -104.87186732064592 -1037.2818516721804 24.5202 0.1144 9011 +9013 2 -104.48387725350258 -1036.2134824907648 24.4535 0.1144 9012 +9014 2 -103.75020033184853 -1035.3381791235647 24.3631 0.1144 9013 +9015 2 -102.90787188965783 -1034.5653535446163 24.246 0.1144 9014 +9016 2 -102.15258191548975 -1033.7143270380252 24.0768 0.1144 9015 +9017 2 -101.65025333072217 -1032.6965791306702 23.7578 0.1144 9016 +9018 2 -101.21008639869257 -1031.6605802252907 23.3317 0.1144 9017 +9019 2 -100.7591321092392 -1030.642131046969 22.9732 0.1144 9018 +9020 2 -100.64252731896323 -1029.5122697400448 22.7186 0.1144 9019 +9021 2 -100.62357515093964 -1028.3700090231648 22.5441 0.1144 9020 +9022 2 -100.5211389029046 -1027.2367665314232 22.429 0.1144 9021 +9023 2 -100.42880856419103 -1026.111144446284 22.3505 0.1144 9022 +9024 2 -100.3191451414618 -1025.0137211944275 22.3336 0.1144 9023 +9025 2 -99.87055893268112 -1023.9631567207795 22.4425 0.1144 9024 +9026 2 -99.54735427219404 -1022.8701674036132 22.6006 0.1144 9025 +9027 2 -99.63251387509172 -1021.7529310579663 22.6582 0.1144 9026 +9028 2 -99.84821595619664 -1020.6286044807624 22.6323 0.1144 9027 +9029 2 -99.59264020090947 -1019.5369232849414 22.5973 0.1144 9028 +9030 2 -99.85786595161707 -1018.4565363953682 22.5856 0.1144 9029 +9031 2 -100.43238359478389 -1017.469541396551 22.506 0.1144 9030 +9032 2 -100.92846756150925 -1016.4396174052011 22.4065 0.1144 9031 +9033 2 -101.05083050843379 -1015.3076871426762 22.2618 0.1144 9032 +9034 2 -101.25067190409769 -1014.1830018771111 22.1279 0.1144 9033 +9035 2 -101.14244254227643 -1013.0461985101035 22.0796 0.1144 9034 +9036 2 -101.44715383229709 -1011.9430126691258 22.0292 0.1144 9035 +9037 2 -101.60101461135861 -1010.8102538109981 21.9733 0.1144 9036 +9038 2 -101.37805660158816 -1009.6916695916033 21.7961 0.1144 9037 +9039 2 -101.33482688041897 -1008.5518584488224 21.5748 0.1144 9038 +9040 2 -101.38177554577501 -1007.4137172173306 21.3408 0.1144 9039 +9041 2 -101.35881621222782 -1006.2756841031362 21.1301 0.1144 9040 +9042 2 -101.1461047720245 -1005.1579986674225 21.0207 0.1144 9041 +9043 2 -101.197369334499 -1004.017228171383 20.9825 0.1144 9042 +9044 2 -101.07831737917056 -1002.880463142042 20.96 0.1144 9043 +9045 2 -100.92731509828144 -1001.7563387889714 20.8802 0.1144 9044 +9046 2 -101.18242942903791 -1000.6576464579513 20.754 0.1144 9045 +9047 2 -101.76234626154618 -999.6725616304498 20.657 0.1144 9046 +9048 2 -102.2141417548693 -998.6383039197157 20.5216 0.1144 9047 +9049 2 -102.23336459576723 -997.5234993259021 20.4971 0.1144 9048 +9050 2 -101.8512559368429 -996.4520545896814 20.614 0.1144 9049 +9051 2 -101.56507492993376 -995.3643330116641 20.8531 0.1144 9050 +9052 2 -101.63009698047523 -994.2361272090982 20.9931 0.1144 9051 +9053 2 -101.87435348164084 -993.1199618263532 21.0191 0.1144 9052 +9054 2 -102.15451441554126 -992.0110759841151 20.9147 0.1144 9053 +9055 2 -102.547515128709 -990.9433784195165 20.7368 0.1144 9054 +9056 2 -102.70907539875265 -989.8395326698109 20.5902 0.1144 9055 +9057 2 -102.6396532297255 -988.6984116891748 20.4474 0.1144 9056 +9058 2 -103.37429759658588 -987.842004715686 20.3454 0.1144 9057 +9059 2 -104.26474186345848 -987.1230340225464 20.2931 0.1144 9058 +9060 2 -105.39425989524085 -986.9632568781283 20.269 0.1144 9059 +9061 2 -106.50607933595481 -986.6945879531471 20.2596 0.1144 9060 +9062 2 -107.61415649444388 -986.4102373406372 20.2576 0.1144 9061 +9063 2 -108.75353126724204 -986.5117046117699 20.2781 0.1144 9062 +9064 2 -109.79285920441043 -986.9880973163965 20.3125 0.1144 9063 +9065 2 -110.92816755016949 -987.1313176014461 20.3604 0.1144 9064 +9066 2 -112.00593578800604 -987.5144273318248 20.4257 0.1144 9065 +9067 2 -112.64108091380663 -987.5866152059571 19.6659 0.1144 9066 +9068 2 -113.72028291077754 -987.6375970628671 18.8639 0.1144 9067 +9069 2 -114.84630443099107 -987.5576024629487 18.4422 0.1144 9068 +9070 2 -115.97120362877831 -987.4863084602725 17.9865 0.1144 9069 +9071 2 -117.09543750190423 -987.573069502891 17.5693 0.1144 9070 +9072 2 -118.18645707248751 -987.419208310239 17.188 0.1144 9071 +9073 2 -118.93524294926996 -986.6467348086021 16.8163 0.1144 9072 +9074 2 -119.38779656602858 -985.6089521512221 16.4993 0.1144 9073 +9075 2 -119.57947435818704 -984.4954474749889 16.1848 0.1144 9074 +9076 2 -119.66300038686359 -983.3610084715455 15.8936 0.1144 9075 +9077 2 -119.58278534978308 -982.226752183123 15.6796 0.1144 9076 +9078 2 -119.21204248126915 -981.1541944292252 15.5925 0.1144 9077 +9079 2 -118.68909102368465 -980.1371515869565 15.6022 0.1144 9078 +9080 2 -118.4173489529446 -979.0368245687524 15.6531 0.1144 9079 +9081 2 -118.42740059682228 -977.8976017615477 15.723 0.1144 9080 +9082 2 -118.55476019643083 -976.7619347274275 15.7941 0.1144 9081 +9083 2 -118.92592811245902 -975.6862166286156 15.8953 0.1144 9082 +9084 2 -119.49688798194288 -974.6983259477005 15.9981 0.1144 9083 +9085 2 -119.90342574601553 -973.6349583083664 16.0744 0.1144 9084 +9086 2 -120.09252974102193 -972.5103637462809 16.1219 0.1144 9085 +9087 2 -120.4085513540571 -971.41283887636 16.1412 0.1144 9086 +9088 2 -120.9832479951362 -970.4299448481289 16.1318 0.1144 9087 +9089 2 -121.48066300765404 -969.4022475846695 16.0913 0.1144 9088 +9090 2 -122.03166742427697 -968.4007996215371 16.0226 0.1144 9089 +9091 2 -122.8841156801403 -967.6584737759171 15.9241 0.1144 9090 +9092 2 -123.68842437054275 -966.8502871510938 15.7904 0.1144 9091 +9093 2 -123.7848412381056 -965.7628595959668 15.614 0.1144 9092 +9094 2 -123.96223446873492 -964.7707498179045 15.215 0.1144 9093 +9095 2 -124.51710460910982 -964.4054166448689 14.5204 0.1144 9094 +9096 2 -124.94283118509142 -963.3807240555998 13.9533 0.1144 9095 +9097 2 -125.49796870680089 -962.4032972798308 13.4441 0.1144 9096 +9098 2 -126.10985638027066 -961.4580535784205 12.9581 0.1144 9097 +9099 2 -126.68989364171225 -960.4905325061233 12.4947 0.1144 9098 +9100 2 -127.0670720071056 -959.4332988466707 12.0277 0.1144 9099 +9101 2 -127.21581191043 -958.3174644274314 11.5746 0.1144 9100 +9102 2 -127.11265587662615 -957.1985694758431 11.0981 0.1144 9101 +9103 2 -126.84309057701032 -956.1143704354253 10.5181 0.1144 9102 +9104 2 -126.3964107454257 -955.0891581949328 9.9444 0.1144 9103 +9105 2 -125.94184631647667 -954.0698985273631 9.3336 0.1144 9104 +9106 2 -125.92479983311247 -952.9770526702521 8.5933 0.1144 9105 +9107 2 -125.67969108455449 -951.8945050263211 7.9644 0.1144 9106 +9108 2 -124.9202470814511 -951.0678053371049 7.4957 0.1144 9107 +9109 2 -124.9114908336918 -949.9679650540977 6.7309 0.1144 9108 +9110 2 -112.29683593320578 -988.1619373360121 20.5587 0.1144 9066 +9111 2 -113.07274367800915 -988.9007439355727 20.7226 0.1144 9110 +9112 2 -114.18502032356548 -989.048588156799 20.939 0.1144 9111 +9113 2 -115.31350883169577 -989.052041708272 21.2055 0.1144 9112 +9114 2 -116.43842615352241 -989.231836255059 21.472 0.1144 9113 +9115 2 -117.56815431142928 -989.250841760378 21.6685 0.1144 9114 +9116 2 -118.69971286373536 -989.249491685225 21.8027 0.1144 9115 +9117 2 -119.79907122963854 -989.5384689219043 21.8851 0.1144 9116 +9118 2 -120.8928921550011 -989.849631440918 21.9408 0.1144 9117 +9119 2 -122.02804853516679 -989.9014360987125 21.998 0.1144 9118 +9120 2 -123.17000052045182 -989.8808855925512 22.0404 0.1144 9119 +9121 2 -124.30594105008342 -989.9923321409059 22.0427 0.1144 9120 +9122 2 -125.37016362480236 -990.3671157070595 21.999 0.1144 9121 +9123 2 -126.3679459810431 -990.9240836231681 21.8754 0.1144 9122 +9124 2 -127.44159342542937 -991.2308279224844 21.638 0.1144 9123 +9125 2 -128.56154902888187 -991.1391228719407 21.3267 0.1144 9124 +9126 2 -129.58316515802468 -990.6807247647507 20.9965 0.1144 9125 +9127 2 -130.29610887047477 -989.8311684553292 20.676 0.1144 9126 +9128 2 -129.99375433865816 -988.8986601405727 20.3399 0.1144 9127 +9129 2 -130.3670336558252 -987.915562082709 19.986 0.1144 9128 +9130 2 -130.89487112793304 -986.9105556533572 19.731 0.1144 9129 +9131 2 -131.15984120539505 -985.8044226061834 19.5169 0.1144 9130 +9132 2 -131.69555785893397 -984.8083676292263 19.3175 0.1144 9131 +9133 2 -132.60754980833508 -984.1416121386395 19.0597 0.1144 9132 +9134 2 -133.67899144297274 -983.7661922755995 18.813 0.1144 9133 +9135 2 -134.52616034058755 -983.0891717006432 18.5636 0.1144 9134 +9136 2 -134.64616682593896 -981.9610751163591 18.2279 0.1144 9135 +9137 2 -134.84528843583402 -980.8507373909473 17.7757 0.1144 9136 +9138 2 -134.94965467290646 -979.7305168865109 17.2775 0.1144 9137 +9139 2 -135.05531051652156 -978.6083893123422 16.8455 0.1144 9138 +9140 2 -135.3290554575126 -977.5076499438803 16.4938 0.1144 9139 +9141 2 -135.78049536405769 -976.4825641227031 16.2257 0.1144 9140 +9142 2 -136.60269774919666 -975.7042745828327 16.0084 0.1144 9141 +9143 2 -137.25351065303235 -974.9708837700998 15.7943 0.1144 9142 +9144 2 -137.3282261736483 -973.9143695056532 15.6131 0.1144 9143 +9145 2 -138.15785696330462 -973.1982799561873 15.4243 0.1144 9144 +9146 2 -139.2134064705373 -972.7742385928974 15.2201 0.1144 9145 +9147 2 -140.2086367469789 -972.2189812229743 15.0231 0.1144 9146 +9148 2 -141.19392367481865 -971.6537383726629 14.8153 0.1144 9147 +9149 2 -142.26349416834393 -971.2704776658585 14.5958 0.1144 9148 +9150 2 -143.31156082763675 -970.8565093848529 14.38 0.1144 9149 +9151 2 -144.05656918611078 -970.0508428062959 14.1416 0.1144 9150 +9152 2 -144.50079733118093 -969.0025431854204 13.894 0.1144 9151 +9153 2 -144.84751179773446 -967.9184848942375 13.6384 0.1144 9152 +9154 2 -144.74736043812084 -966.8712783791855 13.3207 0.1144 9153 +9155 2 -143.90555667803085 -966.1630999556944 12.9874 0.1144 9154 +9156 2 -143.04182941732188 -965.4361635973326 12.6799 0.1144 9155 +9157 2 -142.60722354281683 -964.423772416096 12.3821 0.1144 9156 +9158 2 -142.75524366037243 -963.3222855370099 12.103 0.1144 9157 +9159 2 -143.43393433657468 -962.4409931360236 11.8591 0.1144 9158 +9160 2 -144.4445604933975 -961.9502507788285 11.6589 0.1144 9159 +9161 2 -145.50945778651624 -961.5373547687867 11.4815 0.1144 9160 +9162 2 -145.91668210087272 -960.5603318377371 11.2893 0.1144 9161 +9163 2 -146.188916998159 -959.4532647707987 11.0705 0.1144 9162 +9164 2 -146.04668958079893 -958.3345340964399 10.7254 0.1144 9163 +9165 2 -145.6790550941274 -957.2679953094239 10.2739 0.1144 9164 +9166 2 -145.31316511646875 -956.2051112027364 9.7619 0.1144 9165 +9167 2 -145.238836998237 -955.0784643943531 9.3121 0.1144 9166 +9168 2 -145.2694755863114 -953.9450877592839 8.9433 0.1144 9167 +9169 2 -145.30175085019016 -952.822224986127 8.4137 0.1144 9168 +9170 2 -79.59806492250726 -1112.1518297479743 43.9928 0.1144 8395 +9171 2 -78.88421751415115 -1111.261834872942 43.9298 0.1144 9170 +9172 2 -77.9636771407429 -1110.5965813341122 43.8962 0.1144 9171 +9173 2 -76.93980804489473 -1110.0908377483229 43.892 0.1144 9172 +9174 2 -75.8814377507814 -1109.656500586042 43.9149 0.1144 9173 +9175 2 -74.76398206895698 -1109.438213781222 43.9835 0.1144 9174 +9176 2 -73.6237345385083 -1109.4101599168625 44.0922 0.1144 9175 +9177 2 -72.4918576361062 -1109.5563969087925 44.2112 0.1144 9176 +9178 2 -71.39709098289006 -1109.8758093302886 44.3492 0.1144 9177 +9179 2 -70.49013402383963 -1110.5496506427874 44.4592 0.1144 9178 +9180 2 -69.40129942814542 -1110.8244658592862 44.4704 0.1144 9179 +9181 2 -68.5946957282406 -1110.078881476872 44.4828 0.1144 9180 +9182 2 -67.66689053500818 -1109.414561957807 44.457 0.1144 9181 +9183 2 -66.89101292410663 -1108.5817519056932 44.2338 0.1144 9182 +9184 2 -66.57734716909738 -1109.0899475807382 44.1339 0.1144 9183 +9185 2 -65.97556781399561 -1110.0601855194795 43.9631 0.1144 9184 +9186 2 -65.31552826342886 -1110.991912685386 43.8276 0.1144 9185 +9187 2 -64.51175415771678 -1111.7950283912382 43.7214 0.1144 9186 +9188 2 -63.66820980652858 -1112.564307909735 43.6405 0.1144 9187 +9189 2 -62.98624985692601 -1113.4705883448864 43.5697 0.1144 9188 +9190 2 -62.80576496573548 -1114.539912380926 43.4669 0.1144 9189 +9191 2 -63.418294144947765 -1115.4482701653992 43.3731 0.1144 9190 +9192 2 -64.07305786441793 -1116.379771277404 43.3098 0.1144 9191 +9193 2 -64.56793642828268 -1117.4077298257057 43.2712 0.1144 9192 +9194 2 -64.97905200069135 -1118.4755236757178 43.2561 0.1144 9193 +9195 2 -65.2359088450047 -1119.586890623008 43.2634 0.1144 9194 +9196 2 -65.15502610902223 -1120.7147377372125 43.2894 0.1144 9195 +9197 2 -64.81405239044216 -1121.8024420965116 43.3289 0.1144 9196 +9198 2 -64.36590227269829 -1122.8550216858853 43.3852 0.1144 9197 +9199 2 -63.73143229086628 -1123.7997660386886 43.4647 0.1144 9198 +9200 2 -62.92253490037058 -1124.6024323527006 43.5716 0.1144 9199 +9201 2 -62.20748729800988 -1125.4882572938477 43.713 0.1144 9200 +9202 2 -61.696262431612354 -1126.5034750566833 43.941 0.1144 9201 +9203 2 -61.058805189407906 -1127.4357015711962 44.3142 0.1144 9202 +9204 2 -60.163828382374504 -1128.1183153381774 44.718 0.1144 9203 +9205 2 -59.474888035021934 -1129.0053977513667 45.1503 0.1144 9204 +9206 2 -58.7108020835193 -1129.835608482878 45.5927 0.1144 9205 +9207 2 -57.91420760478172 -1130.637737803153 46.0233 0.1144 9206 +9208 2 -57.114088179398266 -1131.4391089999922 46.4218 0.1144 9207 +9209 2 -56.28425987702724 -1132.2168194143396 46.7191 0.1144 9208 +9210 2 -55.21380221892048 -1132.582045073625 46.9266 0.1144 9209 +9211 2 -54.08957174915133 -1132.78134299344 47.0576 0.1144 9210 +9212 2 -53.057441065559544 -1133.2654404030473 47.1358 0.1144 9211 +9213 2 -52.1418742127463 -1133.9488967937773 47.1797 0.1144 9212 +9214 2 -51.31138159200236 -1134.7341807595437 47.2063 0.1144 9213 +9215 2 -50.66144795075712 -1135.6735283320522 47.2405 0.1144 9214 +9216 2 -50.12848409228252 -1136.6847741654478 47.3295 0.1144 9215 +9217 2 -49.75433132492839 -1137.765348256698 47.395 0.1144 9216 +9218 2 -49.70774375698005 -1138.9050026334776 47.4292 0.1144 9217 +9219 2 -49.56452347193033 -1140.040310979237 47.4314 0.1144 9218 +9220 2 -49.25999428140511 -1141.1409089949163 47.3502 0.1144 9219 +9221 2 -48.96990643609536 -1142.246275401138 47.234 0.1144 9220 +9222 2 -48.7416372524703 -1143.36698563568 47.1192 0.1144 9221 +9223 2 -48.89634347791764 -1144.495969082772 47.0187 0.1144 9222 +9224 2 -49.23157514560495 -1145.5869606267263 46.8569 0.1144 9223 +9225 2 -49.50082009452626 -1146.6978429460924 46.7342 0.1144 9224 +9226 2 -49.837926004909036 -1147.7899865379268 46.6516 0.1144 9225 +9227 2 -49.70160944227604 -1148.9228477186334 46.5982 0.1144 9226 +9228 2 -49.4365510703812 -1150.0356171958788 46.5623 0.1144 9227 +9229 2 -49.26811921242131 -1151.1661102959124 46.4856 0.1144 9228 +9230 2 -49.050372502921334 -1152.2891800936109 46.5259 0.1144 9229 +9231 2 -48.90060627849539 -1152.5328316440289 46.5744 0.1144 9230 +9232 2 -48.30154138079138 -1153.5074378457016 46.6312 0.1144 9231 +9233 2 -47.891657667985044 -1154.5741483321863 46.7006 0.1144 9232 +9234 2 -47.644237317581144 -1155.6910687367836 46.7874 0.1144 9233 +9235 2 -46.78691324641511 -1156.3538653021033 46.9876 0.1144 9234 +9236 2 -45.90297567593137 -1157.0754269221238 47.185 0.1144 9235 +9237 2 -44.909272572923726 -1157.6194154082823 47.4348 0.1144 9236 +9238 2 -43.80139462597418 -1157.6676010354226 47.7837 0.1144 9237 +9239 2 -42.7006757729132 -1157.446337896793 48.2944 0.1144 9238 +9240 2 -41.6280790778016 -1157.220762655165 49.0874 0.1144 9239 +9241 2 -40.6468169249668 -1156.8378127923706 50.1642 0.1144 9240 +9242 2 -40.033772983928486 -1156.0110703558428 51.3422 0.1144 9241 +9243 2 -40.06129426419608 -1154.9940973821938 52.5952 0.1144 9242 +9244 2 -39.629230667867944 -1154.1349247925891 54.0904 0.1144 9243 +9245 2 -38.99794083098669 -1153.357535545268 55.4366 0.1144 9244 +9246 2 -38.266717893076816 -1152.6420871997711 56.6364 0.1144 9245 +9247 2 -37.331264159938655 -1152.2000806804099 57.8099 0.1144 9246 +9248 2 -36.386381857709694 -1151.8824539105453 59.026 0.1144 9247 +9249 2 -36.24930915511902 -1151.2316020654957 60.893 0.1144 9248 +9250 2 -36.787175156700414 -1150.6558001079245 62.8835 0.1144 9249 +9251 2 -37.35777663959675 -1149.976517870768 64.6509 0.1144 9250 +9252 2 -37.48138005262945 -1150.3479409802894 65.7376 0.1144 9251 +9253 2 -37.606640976325934 -1151.2910880902327 66.4936 0.1144 9252 +9254 2 -37.46374655260041 -1152.4103981918884 66.2368 0.1144 9253 +9255 2 -37.142816581314094 -1153.505023403333 66.0696 0.1144 9254 +9256 2 -36.690174670122644 -1154.5494424907847 65.8899 0.1144 9255 +9257 2 -36.10033402778822 -1155.5243190863855 65.6821 0.1144 9256 +9258 2 -35.36840101674238 -1156.3917831186895 65.4371 0.1144 9257 +9259 2 -34.617140942588605 -1157.244667554579 65.1515 0.1144 9258 +9260 2 -34.181247887708025 -1158.1569988840351 64.3496 0.1144 9259 +9261 2 -34.807626264755015 -1158.9381772687643 63.0823 0.1144 9260 +9262 2 -35.474793502052194 -1159.8101607132612 62.3104 0.1144 9261 +9263 2 -35.92851530725255 -1160.808830335051 61.6748 0.1144 9262 +9264 2 -36.011225057105264 -1161.9151574915827 61.147 0.1144 9263 +9265 2 -35.81704773408154 -1163.021843638249 60.7029 0.1144 9264 +9266 2 -35.31126960474512 -1164.0041387180927 60.1485 0.1144 9265 +9267 2 -34.59361004554427 -1163.6489348933842 59.1592 0.1144 9266 +9268 2 -34.10820210554539 -1162.6670592842634 58.3579 0.1144 9267 +9269 2 -33.53542234265666 -1161.8664747520465 57.4636 0.1144 9268 +9270 2 -34.04768915615938 -1162.5667127200145 55.9224 0.1144 9269 +9271 2 -33.54249426021761 -1163.3842115928664 54.7828 0.1144 9270 +9272 2 -32.71180281869704 -1164.088850159072 53.9414 0.1144 9271 +9273 2 -31.674932161955212 -1164.4519490039997 53.2991 0.1144 9272 +9274 2 -30.575465589765543 -1164.7026219116656 52.8324 0.1144 9273 +9275 2 -29.467350786146426 -1164.952087304055 52.5095 0.1144 9274 +9276 2 -28.357132785153283 -1165.213758701557 52.2743 0.1144 9275 +9277 2 -27.226116328765613 -1165.3389265304127 52.0386 0.1144 9276 +9278 2 -26.094661484111725 -1165.2746071359106 51.7292 0.1144 9277 +9279 2 -24.96852433537282 -1165.1558050642525 51.338 0.1144 9278 +9280 2 -23.85831324206049 -1164.9608696177932 50.8665 0.1144 9279 +9281 2 -22.842451676252892 -1164.5097001051763 50.2684 0.1144 9280 +9282 2 -22.13946450653407 -1163.6545521125981 49.6877 0.1144 9281 +9283 2 -21.50448275264216 -1162.7431923470695 49.0176 0.1144 9282 +9284 2 -21.70612871748108 -1162.8564571909717 48.7738 0.1144 9283 +9285 2 -22.815283959337137 -1162.8587087377982 48.4411 0.1144 9284 +9286 2 -23.954747026568214 -1162.9535395788594 48.3627 0.1144 9285 +9287 2 -25.030191629868682 -1163.3406205461415 48.4159 0.1144 9286 +9288 2 -26.016610604745722 -1163.9160753106562 48.5349 0.1144 9287 +9289 2 -27.04912552297685 -1164.4056525809924 48.6534 0.1144 9288 +9290 2 -28.178540841417316 -1164.5802300379335 48.7343 0.1144 9289 +9291 2 -29.30103461517541 -1164.7989138687813 48.7866 0.1144 9290 +9292 2 -30.415242971421605 -1165.059339786983 48.82 0.1144 9291 +9293 2 -31.53626193755855 -1165.2892073087455 48.8396 0.1144 9292 +9294 2 -32.66528022997119 -1165.4688228576201 48.8561 0.1144 9293 +9295 2 -33.79710437579757 -1165.6394814434707 48.8779 0.1144 9294 +9296 2 -34.93115284046792 -1165.7914351527995 48.9076 0.1144 9295 +9297 2 -36.06976948983055 -1165.8964273705783 48.9569 0.1144 9296 +9298 2 -37.21265859646343 -1165.876452888357 49.0221 0.1144 9297 +9299 2 -38.35602992197386 -1165.8514926800149 49.0994 0.1144 9298 +9300 2 -39.48333594654849 -1165.658076168419 49.1851 0.1144 9299 +9301 2 -40.619078661691844 -1165.5383958233379 49.3419 0.1144 9300 +9302 2 -41.73742051378747 -1165.5060325439722 49.9215 0.1144 9301 +9303 2 -21.12702596753445 -1162.4857079293347 47.6459 0.1144 9283 +9304 2 -20.259951361040578 -1162.2294062969295 46.2185 0.1144 9303 +9305 2 -19.16853476442958 -1162.3883055815154 45.7358 0.1144 9304 +9306 2 -18.098600071913552 -1162.776741938916 45.4798 0.1144 9305 +9307 2 -17.025107605714652 -1163.1642826142188 45.3015 0.1144 9306 +9308 2 -15.909152650867725 -1163.391556521108 45.2035 0.1144 9307 +9309 2 -15.377004082049382 -1164.217959298635 45.2334 0.1144 9308 +9310 2 -15.957522981648992 -1165.2005457972232 45.4342 0.1144 9309 +9311 2 -37.20898216905482 -1149.6527613178828 65.2543 0.1144 9251 +9312 2 -36.81182841611934 -1148.68886259575 66.3292 0.1144 9311 +9313 2 -36.436300027334084 -1147.648342769309 67.0292 0.1144 9312 +9314 2 -36.3898972468736 -1146.5549420961952 67.5738 0.1144 9313 +9315 2 -36.73179095707229 -1145.485410343078 67.9694 0.1144 9314 +9316 2 -36.78701203576753 -1144.3819338945445 68.2606 0.1144 9315 +9317 2 -36.52988789910887 -1143.2731024067398 68.4827 0.1144 9316 +9318 2 -36.4609503580059 -1142.1443695307116 68.6846 0.1144 9317 +9319 2 -36.5692330571224 -1141.0091840229325 68.8862 0.1144 9318 +9320 2 -36.691915662204906 -1139.874633108072 69.0757 0.1144 9319 +9321 2 -36.82470727819191 -1138.74101380393 69.2616 0.1144 9320 +9322 2 -37.03742450797091 -1137.6215432191643 69.4896 0.1144 9321 +9323 2 -37.13924977492832 -1136.4903703875384 69.7407 0.1144 9322 +9324 2 -37.15687497022509 -1135.3518118987067 70.014 0.1144 9323 +9325 2 -37.186130146694325 -1134.2162937285966 70.3301 0.1144 9324 +9326 2 -37.31825744430847 -1133.0902479758738 70.6941 0.1144 9325 +9327 2 -37.560463113912704 -1131.9862034053917 71.1024 0.1144 9326 +9328 2 -37.97255883392688 -1130.9531322860846 71.7094 0.1144 9327 +9329 2 -38.19430349889734 -1129.8714903335158 72.3828 0.1144 9328 +9330 2 -38.28747984188868 -1128.7631726132267 73.0355 0.1144 9329 +9331 2 -38.402797713614405 -1127.6644737652884 73.7624 0.1144 9330 +9332 2 -38.37893890384953 -1126.5607498472743 74.485 0.1144 9331 +9333 2 -38.259117205986 -1125.4557913816652 75.1556 0.1144 9332 +9334 2 -38.340983225962816 -1124.3418126903193 75.731 0.1144 9333 +9335 2 -38.49413283146828 -1123.2273976113052 76.2328 0.1144 9334 +9336 2 -38.5920775650016 -1122.1046385458005 76.7122 0.1144 9335 +9337 2 -38.659557707158626 -1120.9791174751783 77.1848 0.1144 9336 +9338 2 -38.20258445082368 -1119.9637766786996 77.6558 0.1144 9337 +9339 2 -37.427370465758656 -1119.1474557017793 78.0982 0.1144 9338 +9340 2 -36.86180726475277 -1118.1888520528878 78.7052 0.1144 9339 +9341 2 -36.40181081942518 -1117.16754465534 79.2728 0.1144 9340 +9342 2 -35.93508413896376 -1116.142100358586 79.7527 0.1144 9341 +9343 2 -35.46621902504461 -1115.111350677553 80.1651 0.1144 9342 +9344 2 -34.995309282730375 -1114.0793442170143 80.521 0.1144 9343 +9345 2 -34.52480439142391 -1113.0447694699533 80.829 0.1144 9344 +9346 2 -34.05340691960248 -1112.0070637006909 81.0956 0.1144 9345 +9347 2 -33.65342267229602 -1110.9408298511498 81.3492 0.1144 9346 +9348 2 -33.58987880990486 -1109.803322111593 81.5954 0.1144 9347 +9349 2 -33.537700737923956 -1108.6647013543588 81.8367 0.1144 9348 +9350 2 -33.31995120578682 -1107.546618892617 82.0848 0.1144 9349 +9351 2 -32.908353414500596 -1106.4838107687265 82.3469 0.1144 9350 +9352 2 -32.88027079616984 -1105.3453282626915 82.6146 0.1144 9351 +9353 2 -33.01800359744516 -1104.214746175688 82.8822 0.1144 9352 +9354 2 -33.105715789557394 -1103.0801805401452 83.1468 0.1144 9353 +9355 2 -33.15577593833899 -1101.9413694796508 83.4092 0.1144 9354 +9356 2 -33.20619718452821 -1100.8040715644447 83.6741 0.1144 9355 +9357 2 -32.725839648099225 -1099.7702487376528 84.1593 0.1144 9356 +9358 2 -32.24708906202062 -1098.7401134182264 84.4816 0.1144 9357 +9359 2 -32.23169707672645 -1097.6161222141732 84.8764 0.1144 9358 +9360 2 -32.6298563107614 -1096.5663854308068 85.3647 0.1144 9359 +9361 2 -32.895798745654645 -1095.4783397969645 85.9295 0.1144 9360 +9362 2 -32.57962374714708 -1094.4111521047948 86.5407 0.1144 9361 +9363 2 -32.234089349960186 -1093.3500983925064 87.1646 0.1144 9362 +9364 2 -31.890120463873927 -1092.288598389961 87.7836 0.1144 9363 +9365 2 -31.704938027950675 -1091.1851345548373 88.3537 0.1144 9364 +9366 2 -31.783549495209854 -1090.0611734846862 88.8362 0.1144 9365 +9367 2 -31.86764844624338 -1088.9324861557793 89.2531 0.1144 9366 +9368 2 -31.952014689622104 -1087.8012633673868 89.6204 0.1144 9367 +9369 2 -32.11821671810833 -1086.6787901090297 89.9696 0.1144 9368 +9370 2 -32.36024338980036 -1085.5706445679612 90.3235 0.1144 9369 +9371 2 -32.47633100406114 -1084.4401391562913 90.6592 0.1144 9370 +9372 2 -32.384717349533275 -1083.3068583268832 90.9471 0.1144 9371 +9373 2 -32.293233428688154 -1082.1710748650266 91.198 0.1144 9372 +9374 2 -32.201493142060826 -1081.0336078721825 91.4211 0.1144 9373 +9375 2 -32.110722803818305 -1079.896854461941 91.6255 0.1144 9374 +9376 2 -32.01884495852835 -1078.7594202961345 91.8229 0.1144 9375 +9377 2 -31.927052306088342 -1077.6220384961402 92.0282 0.1144 9376 +9378 2 -31.836281967845764 -1076.4852850858988 92.2505 0.1144 9377 +9379 2 -31.990815890277304 -1076.251254816878 92.1371 0.1144 9378 +9380 2 -32.6152183004545 -1075.3097126509792 92.4851 0.1144 9379 +9381 2 -33.24537548675113 -1074.3609087668397 92.708 0.1144 9380 +9382 2 -33.87517157564014 -1073.4105917374122 92.9376 0.1144 9381 +9383 2 -34.52818077169076 -1072.4771255731225 93.1997 0.1144 9382 +9384 2 -35.261894220369584 -1071.6067649839251 93.4702 0.1144 9383 +9385 2 -36.01140978551052 -1070.7502258677073 93.7577 0.1144 9384 +9386 2 -36.75929418547679 -1069.8938579244218 94.0727 0.1144 9385 +9387 2 -37.367262987855895 -1068.9462053956254 94.5367 0.1144 9386 +9388 2 -37.84925198609051 -1067.9479965719916 95.2165 0.1144 9387 +9389 2 -38.30842110907173 -1066.9586502137831 96.0596 0.1144 9388 +9390 2 -38.78617329456773 -1066.0020896724404 96.9856 0.1144 9389 +9391 2 -39.741198245927364 -1065.483978794075 97.8597 0.1144 9390 +9392 2 -40.74022896512486 -1065.0317701341623 98.6605 0.1144 9391 +9393 2 -41.761342644077786 -1064.6026431312189 99.3518 0.1144 9392 +9394 2 -42.74012659263724 -1064.1944494491972 100.4038 0.1144 9393 +9395 2 -31.611878893593143 -1075.600691489796 92.4885 0.1144 9378 +9396 2 -31.333715319314138 -1074.4978259105233 92.7984 0.1144 9395 +9397 2 -31.055336818502667 -1073.3974105978864 93.142 0.1144 9396 +9398 2 -30.35497960586838 -1072.5225158758135 93.5332 0.1144 9397 +9399 2 -29.5337757941478 -1071.7437767541458 93.9537 0.1144 9398 +9400 2 -28.70383235498184 -1070.9771553431578 94.3928 0.1144 9399 +9401 2 -27.874826037163643 -1070.2111099561098 94.8343 0.1144 9400 +9402 2 -27.28574340644775 -1069.2514309346714 95.2893 0.1144 9401 +9403 2 -27.60264598089833 -1068.1853187040379 95.7337 0.1144 9402 +9404 2 -27.962233179983798 -1067.1131638895386 96.15 0.1144 9403 +9405 2 -28.308498254696758 -1066.0342288831391 96.5166 0.1144 9404 +9406 2 -28.215683288059154 -1064.8962186933923 96.7005 0.1144 9405 +9407 2 -28.084871617875706 -1063.7589159777776 96.7232 0.1144 9406 +9408 2 -28.000919809199956 -1062.6196630366712 96.579 0.1144 9407 +9409 2 -27.91518756289122 -1061.4833066524575 96.3449 0.1144 9408 +9410 2 -27.79315075623674 -1060.351397615555 96.1607 0.1144 9409 +9411 2 -27.532052281091694 -1059.2469312890983 96.4368 0.1144 9410 +9412 2 -27.527306300439022 -1058.1361746075213 96.8789 0.1144 9411 +9413 2 -27.69769449236105 -1057.0135747170648 97.2216 0.1144 9412 +9414 2 -27.759243962069377 -1055.8845255982135 97.5842 0.1144 9413 +9415 2 -27.64526533475822 -1054.7656689842918 98.0484 0.1144 9414 +9416 2 -27.456164027744308 -1053.6597963217823 98.6042 0.1144 9415 +9417 2 -27.27022346838561 -1052.5598574333048 99.2166 0.1144 9416 +9418 2 -27.084376714089387 -1051.4639671496004 99.8729 0.1144 9417 +9419 2 -26.905254684297518 -1050.3615287302578 100.4864 0.1144 9418 +9420 2 -26.728447676828978 -1049.2511228350509 101.0008 0.1144 9419 +9421 2 -26.552633258104038 -1048.13451897505 101.4177 0.1144 9420 +9422 2 -26.376278744059164 -1047.0123009991755 101.7576 0.1144 9421 +9423 2 -26.199615498419348 -1045.8884846851633 102.0443 0.1144 9422 +9424 2 -26.022591155371913 -1044.763155225863 102.2997 0.1144 9423 +9425 2 -26.003283400570183 -1043.63006639854 102.5592 0.1144 9424 +9426 2 -26.714252264255663 -1042.8383387150088 102.7942 0.1144 9425 +9427 2 -26.651333376282423 -1041.8329163244007 103.0641 0.1144 9426 +9428 2 -26.497125806905444 -1040.7054131955595 103.32 0.1144 9427 +9429 2 -26.535426240831896 -1039.5660644487918 103.5577 0.1144 9428 +9430 2 -26.579787080889844 -1038.4277411178048 103.7954 0.1144 9429 +9431 2 -26.62574625908536 -1037.289109055223 104.0418 0.1144 9430 +9432 2 -26.67170543728082 -1036.150476992641 104.3036 0.1144 9431 +9433 2 -26.716427374746388 -1035.0136668069417 104.5842 0.1144 9432 +9434 2 -26.73392283636059 -1033.8776109505584 104.9177 0.1144 9433 +9435 2 -26.67776732431014 -1032.7500441505567 105.3676 0.1144 9434 +9436 2 -26.597736795771596 -1031.6305738675646 105.9092 0.1144 9435 +9437 2 -26.517471801924927 -1030.513776602721 106.4809 0.1144 9436 +9438 2 -26.459001267551116 -1029.394177278583 107.0174 0.1144 9437 +9439 2 -26.58217160214076 -1028.2653256724466 107.3293 0.1144 9438 +9440 2 -26.801792554336288 -1027.1434079226283 107.3713 0.1144 9439 +9441 2 -26.979712858427746 -1026.0173385529215 107.2294 0.1144 9440 +9442 2 -27.004294141953977 -1024.8762477061873 107.0628 0.1144 9441 +9443 2 -26.992606793754618 -1023.7330529695429 106.9264 0.1144 9442 +9444 2 -26.98091944555523 -1022.5898582328982 106.8463 0.1144 9443 +9445 2 -26.98162020196375 -1021.4461788683294 106.8418 0.1144 9444 +9446 2 -27.046209990393805 -1020.3054997683058 106.9169 0.1144 9445 +9447 2 -27.18563803645236 -1019.1719687585967 107.0588 0.1144 9446 +9448 2 -27.338922791573793 -1018.0401470218168 107.2422 0.1144 9447 +9449 2 -27.48989562595483 -1016.9096039650167 107.4542 0.1144 9448 +9450 2 -27.643489112671176 -1015.7793805663745 107.6866 0.1144 9449 +9451 2 -27.79587818569459 -1014.6511166032776 107.9308 0.1144 9450 +9452 2 -27.807621280235793 -1013.5396962958642 108.1746 0.1144 9451 +9453 2 -27.33287785968068 -1012.5053333737525 108.4084 0.1144 9452 +9454 2 -26.85020219934526 -1011.4861668187087 108.6683 0.1144 9453 +9455 2 -26.70285149720172 -1010.3669867525094 108.9726 0.1144 9454 +9456 2 -26.86353321487647 -1009.2491021942454 109.2146 0.1144 9455 +9457 2 -27.24811154971013 -1008.1735278572625 109.3448 0.1144 9456 +9458 2 -27.633180715634097 -1007.0969640331189 109.3862 0.1144 9457 +9459 2 -28.067335778419732 -1006.0411815643035 109.3537 0.1144 9458 +9460 2 -28.60029963689425 -1005.029935730908 109.261 0.1144 9459 +9461 2 -28.880486596825165 -1003.9842167258763 109.1577 0.1144 9460 +9462 2 -28.698882165897203 -1002.8573631947253 109.093 0.1144 9461 +9463 2 -28.737934520093006 -1001.7278670930801 109.0494 0.1144 9462 +9464 2 -29.113330038806794 -1000.6561561597919 109.0404 0.1144 9463 +9465 2 -29.122031115801263 -999.7309099540395 109.2442 0.1144 9464 +9466 2 -28.402610338284404 -998.8696515985636 109.7631 0.1144 9465 +9467 2 -28.0155426718062 -997.8368288540585 110.3544 0.1144 9466 +9468 2 -28.03159856188276 -996.7294680779814 110.9346 0.1144 9467 +9469 2 -28.335680769614044 -995.6513671778142 111.4375 0.1144 9468 +9470 2 -28.724759510108015 -994.587949581714 111.8415 0.1144 9469 +9471 2 -29.12429974670158 -993.5229805026593 112.1434 0.1144 9470 +9472 2 -29.463622761331294 -992.4356700678052 112.3612 0.1144 9471 +9473 2 -29.295899348986723 -991.3322561894479 112.4712 0.1144 9472 +9474 2 -29.152250182354805 -990.2005613865412 112.5606 0.1144 9473 +9475 2 -29.323757595119986 -989.0759496947264 112.6336 0.1144 9474 +9476 2 -29.585343386181705 -987.962336901196 112.6824 0.1144 9475 +9477 2 -29.784738491588115 -986.8360861245303 112.7129 0.1144 9476 +9478 2 -29.927415579734628 -985.7018524587814 112.7333 0.1144 9477 +9479 2 -30.02537744299721 -984.5614968110356 112.7524 0.1144 9478 +9480 2 -30.06452119320906 -983.4186754834346 112.7689 0.1144 9479 +9481 2 -29.818401749553118 -982.307217832665 112.7655 0.1144 9480 +9482 2 -29.47345499540586 -981.216945381943 112.7484 0.1144 9481 +9483 2 -29.193781377422056 -980.1077521041939 112.7888 0.1144 9482 +9484 2 -28.97678996872048 -978.9861446958064 112.9075 0.1144 9483 +9485 2 -28.82641917916729 -977.8543092326541 113.0856 0.1144 9484 +9486 2 -28.703084153757487 -976.7203110265236 113.3048 0.1144 9485 +9487 2 -28.591999674292936 -975.5858610195061 113.5467 0.1144 9486 +9488 2 -28.485016165414322 -974.4512320145762 113.7903 0.1144 9487 +9489 2 -28.36520608665043 -973.3179919318812 114.0132 0.1144 9488 +9490 2 -28.11511540609112 -972.2042106465755 114.1762 0.1144 9489 +9491 2 -27.83962795154312 -971.0948907367268 114.2789 0.1144 9490 +9492 2 -27.58259210931743 -969.9794228188505 114.3173 0.1144 9491 +9493 2 -27.32960487186503 -968.8638610959117 114.31 0.1144 9492 +9494 2 -27.16541802526595 -967.7329237239039 114.331 0.1144 9493 +9495 2 -27.07380747232125 -966.5929540986116 114.4058 0.1144 9494 +9496 2 -27.098027658439804 -965.4503501065897 114.5113 0.1144 9495 +9497 2 -27.1458196400811 -964.3087362942648 114.6348 0.1144 9496 +9498 2 -27.195124767010242 -963.1667613845324 114.7667 0.1144 9497 +9499 2 -27.10703916071148 -962.0275498826755 114.8801 0.1144 9498 +9500 2 -26.951577913411825 -960.8954025863452 114.9632 0.1144 9499 +9501 2 -26.786944776555345 -959.7628997032368 115.0229 0.1144 9500 +9502 2 -26.622757929956265 -958.631962331229 115.0708 0.1144 9501 +9503 2 -26.45647408914934 -957.4998533725653 115.113 0.1144 9502 +9504 2 -26.38776550272479 -956.3577624435446 115.169 0.1144 9503 +9505 2 -26.403698554821545 -955.2154640815345 115.2533 0.1144 9504 +9506 2 -26.43518356076433 -954.071926069748 115.3639 0.1144 9505 +9507 2 -26.43272046793456 -952.9290017270315 115.467 0.1144 9506 +9508 2 -26.38298405037662 -951.7865996573694 115.5291 0.1144 9507 +9509 2 -26.361411230017723 -950.6440192823314 115.6534 0.1144 9508 +9510 2 -25.73681739847521 -949.7027740509496 115.8601 0.1144 9509 +9511 2 -25.477190629368295 -948.5938128294621 116.0662 0.1144 9510 +9512 2 -25.40282417346984 -947.4563434275717 116.2672 0.1144 9511 +9513 2 -25.328542910421163 -946.318926391494 116.5212 0.1144 9512 +9514 2 -25.308386328704586 -945.1786251101591 116.7538 0.1144 9513 +9515 2 -25.289219234148504 -944.0388146599148 116.9582 0.1144 9514 +9516 2 -25.27120418747262 -942.897129966975 117.143 0.1144 9515 +9517 2 -25.253241506609527 -941.7553600811852 117.3194 0.1144 9516 +9518 2 -25.20480330780694 -940.6150471807509 117.5149 0.1144 9517 +9519 2 -25.153286452616015 -939.4755416679818 117.7204 0.1144 9518 +9520 2 -25.100747283227406 -938.3354077654599 117.9346 0.1144 9519 +9521 2 -25.08727949739503 -937.1951095857083 118.1194 0.1144 9520 +9522 2 -25.1012531139464 -936.0516068100053 118.258 0.1144 9521 +9523 2 -25.116301410508072 -934.9086472312054 118.3563 0.1144 9522 +9524 2 -25.128761881771595 -933.76550555291 118.421 0.1144 9523 +9525 2 -25.246450935753074 -932.6280026137608 118.4845 0.1144 9524 +9526 2 -25.394879698436085 -931.493196025655 118.5545 0.1144 9525 +9527 2 -25.54259487851644 -930.359359385934 118.6296 0.1144 9526 +9528 2 -25.55086918634413 -929.2163443397383 118.6662 0.1144 9527 +9529 2 -25.55313545385326 -928.072218684912 118.6668 0.1144 9528 +9530 2 -25.552846723101254 -926.9280484892529 118.6357 0.1144 9529 +9531 2 -25.554175869262565 -925.7833468104866 118.5786 0.1144 9530 +9532 2 -25.55424823591821 -924.6406897601154 118.5027 0.1144 9531 +9533 2 -25.556514503427337 -923.496564105289 118.4162 0.1144 9532 +9534 2 -25.556586870082953 -922.3539070549178 118.3252 0.1144 9533 +9535 2 -25.50431499303957 -921.2112376929105 118.2381 0.1144 9534 +9536 2 -25.44469310332215 -920.069449984855 118.1443 0.1144 9535 +9537 2 -25.588307312816454 -918.9357923430464 118.0304 0.1144 9536 +9538 2 -25.988264114213536 -917.8655624205454 117.8839 0.1144 9537 +9539 2 -25.317620791758998 -917.7354014661576 117.602 0.1144 9538 +9540 2 -24.271921609591516 -917.5317589352012 116.5861 0.1144 9539 +9541 2 -23.391836723881312 -916.8444200275695 116.0832 0.1144 9540 +9542 2 -22.679590062709366 -915.9714902516715 115.6025 0.1144 9541 +9543 2 -22.137963548753646 -914.9846385052676 115.1461 0.1144 9542 +9544 2 -22.422892180659602 -913.885373944427 114.8174 0.1144 9543 +9545 2 -22.708217838593356 -912.7810712916526 114.5995 0.1144 9544 +9546 2 -22.994257079129767 -911.6757986904934 114.4268 0.1144 9545 +9547 2 -26.825503389598964 -916.8749008205266 117.644 0.1144 9538 +9548 2 -27.018628264523244 -915.8615897366606 117.2746 0.1144 9547 +9549 2 -26.5597776639097 -914.8517856881856 116.6623 0.1144 9548 +9550 2 -26.056646509570044 -913.8657067858999 115.9656 0.1144 9549 +9551 2 -25.653142133710674 -912.8334624743813 115.2836 0.1144 9550 +9552 2 -25.304261787790097 -911.7757516092437 114.6516 0.1144 9551 +9553 2 -25.025472232804788 -910.6912821748975 114.0919 0.1144 9552 +9554 2 -24.842571992167876 -909.5797133052475 113.615 0.1144 9553 +9555 2 -24.697001727657266 -908.4576366821552 113.2068 0.1144 9554 +9556 2 -24.575719942855187 -907.328891494491 112.8523 0.1144 9555 +9557 2 -24.488154893100727 -906.1955168600202 112.5485 0.1144 9556 +9558 2 -24.393377389334688 -905.0629910524646 112.2363 0.1144 9557 +9559 2 -24.32337609478435 -903.9294959890605 111.904 0.1144 9558 +9560 2 -24.37027239432763 -902.7914399504186 111.6973 0.1144 9559 +9561 2 -24.50787856350334 -901.6566716999795 111.6475 0.1144 9560 +9562 2 -24.713334075041075 -900.5314463390945 111.708 0.1144 9561 +9563 2 -24.95348960562069 -899.4154599542618 111.8337 0.1144 9562 +9564 2 -25.340336107594624 -898.3426883691093 111.9611 0.1144 9563 +9565 2 -25.960781309014436 -897.3879147823177 112.0042 0.1144 9564 +9566 2 -26.685361898339636 -896.5039585732366 111.9311 0.1144 9565 +9567 2 -27.349681417404724 -895.5761533800039 111.7959 0.1144 9566 +9568 2 -27.761127539728534 -894.5156853991462 111.7088 0.1144 9567 +9569 2 -27.901001876044546 -893.3837199005376 111.687 0.1144 9568 +9570 2 -27.809209223604455 -892.2463381005434 111.6424 0.1144 9569 +9571 2 -27.72329797938343 -891.1058807457439 111.5881 0.1144 9570 +9572 2 -27.80281133190678 -889.9649843101413 111.587 0.1144 9571 +9573 2 -27.949013366699262 -888.831508767828 111.6382 0.1144 9572 +9574 2 -28.137309974040562 -887.7038355493539 111.706 0.1144 9573 +9575 2 -28.435960857929956 -886.5996242925954 111.7542 0.1144 9574 +9576 2 -28.680845748848412 -885.4824365956529 111.7416 0.1144 9575 +9577 2 -28.827623807581006 -884.3480239319917 111.6578 0.1144 9576 +9578 2 -28.91163205513513 -883.2085992024274 111.5268 0.1144 9577 +9579 2 -28.974708698277368 -882.0682811998115 111.3728 0.1144 9578 +9580 2 -29.037732975606872 -880.9280483900453 111.2157 0.1144 9579 +9581 2 -29.099820131588586 -879.7872395563392 111.0701 0.1144 9580 +9582 2 -29.163472798670966 -878.6459844323755 110.9444 0.1144 9581 +9583 2 -29.22453764045514 -877.5045472089165 110.8377 0.1144 9582 +9584 2 -29.302537847690644 -876.3640118707216 110.8128 0.1144 9583 +9585 2 -29.215028265331966 -875.223863247517 110.8159 0.1144 9584 +9586 2 -29.05039512847543 -874.0913603644086 110.81 0.1144 9585 +9587 2 -28.88419648051834 -872.9593037715576 110.7999 0.1144 9586 +9588 2 -28.83090228927739 -871.8160060197974 110.808 0.1144 9587 +9589 2 -28.843362760540913 -870.6728643415022 110.843 0.1144 9588 +9590 2 -28.89070845192478 -869.5296850180766 110.9164 0.1144 9589 +9591 2 -29.016502540432725 -868.3944642742139 111.0693 0.1144 9590 +9592 2 -29.1720226356573 -867.2653077306021 111.298 0.1144 9591 +9593 2 -29.154762610833842 -866.1267868869004 111.5548 0.1144 9592 +9594 2 -29.02666539804804 -864.9938524342173 111.806 0.1144 9593 +9595 2 -28.881811817723218 -863.8641170668559 112.0434 0.1144 9594 +9596 2 -28.7381626510913 -862.7324222639493 112.2629 0.1144 9595 +9597 2 -28.591925659161234 -861.6005453615472 112.4617 0.1144 9596 +9598 2 -28.447339371181585 -860.4682745347004 112.6443 0.1144 9597 +9599 2 -28.30324391429224 -859.3350142206932 112.8165 0.1144 9598 +9600 2 -28.15865762631259 -858.2027433938464 112.9806 0.1144 9599 +9601 2 -27.95682424701235 -857.078245631732 113.1315 0.1144 9600 +9602 2 -27.555115029468652 -856.0081343503502 113.2538 0.1144 9601 +9603 2 -27.09209298610193 -854.9634865210047 113.349 0.1144 9602 +9604 2 -27.005605717940824 -853.8239662875528 113.4286 0.1144 9603 +9605 2 -27.09184069338545 -852.6832105121961 113.5131 0.1144 9604 +9606 2 -27.194297451678807 -851.5443265704881 113.6187 0.1144 9605 +9607 2 -27.208088968734756 -850.4034116200833 113.7388 0.1144 9606 +9608 2 -26.932516321337005 -849.2940393444219 113.8561 0.1144 9607 +9609 2 -26.57433814629664 -848.2077241024572 113.9625 0.1144 9608 +9610 2 -26.216468702851216 -847.1230071986301 114.0591 0.1144 9609 +9611 2 -25.856692189673197 -846.0370006882605 114.1476 0.1144 9610 +9612 2 -25.49953632883043 -844.9513138360487 114.2313 0.1144 9611 +9613 2 -25.141305787977302 -843.8650837869338 114.3178 0.1144 9612 +9614 2 -24.783042420087185 -842.7787161791564 114.4136 0.1144 9613 +9615 2 -24.425310535304305 -841.6939664482923 114.5228 0.1144 9614 +9616 2 -24.066994801601453 -840.6076840333646 114.6499 0.1144 9615 +9617 2 -23.702359194401936 -839.5253814675532 114.8118 0.1144 9616 +9618 2 -23.334816103746363 -838.4455174545815 115.0131 0.1144 9617 +9619 2 -22.990536077018646 -837.3650452831691 115.253 0.1144 9618 +9620 2 -23.238262057434326 -836.2564120125936 115.5686 0.1144 9619 +9621 2 -23.561010804020384 -835.1697128377632 115.9362 0.1144 9620 +9622 2 -23.770955007422685 -834.0593367746847 116.3613 0.1144 9621 +9623 2 -24.030137481728076 -832.9603278870895 116.8163 0.1144 9622 +9624 2 -24.37444001931263 -831.8868772628814 117.2808 0.1144 9623 +9625 2 -24.738254821083643 -830.8187296139058 117.752 0.1144 9624 +9626 2 -25.107371905550565 -829.7551323273567 118.2429 0.1144 9625 +9627 2 -25.498806415081106 -828.7119436796286 118.8757 0.1144 9626 +9628 2 -25.893443111516547 -827.6788226035555 119.5883 0.1144 9627 +9629 2 -26.288079807951988 -826.6457015274823 120.3065 0.1144 9628 +9630 2 -26.550981924123477 -825.5692858748125 120.8396 0.1144 9629 +9631 2 -26.524643814805614 -824.4344580491061 120.8105 0.1144 9630 +9632 2 -26.208381214401754 -823.3498441603947 120.4269 0.1144 9631 +9633 2 -25.696974545139852 -822.3357892710349 120.1138 0.1144 9632 +9634 2 -25.52975048140209 -821.2097930843153 119.9461 0.1144 9633 +9635 2 -25.467678325049008 -820.0677904497275 119.9579 0.1144 9634 +9636 2 -25.41095299222465 -818.9277831793049 120.1603 0.1144 9635 +9637 2 -25.354885774607055 -817.7935799492318 120.5014 0.1144 9636 +9638 2 -25.298912362051993 -816.6634253239317 120.9104 0.1144 9637 +9639 2 -25.24330004690458 -815.5347838439196 121.3439 0.1144 9638 +9640 2 -25.425847388755955 -814.4250573785314 121.8386 0.1144 9639 +9641 2 -25.623497292612882 -813.3192145481503 122.3684 0.1144 9640 +9642 2 -25.821593486727267 -812.2149372288698 122.9147 0.1144 9641 +9643 2 -26.01866736664408 -811.1100315198364 123.4582 0.1144 9642 +9644 2 -26.223403092413008 -809.9991536991047 123.9084 0.1144 9643 +9645 2 -26.428097378932193 -808.8841420807496 124.2884 0.1144 9644 +9646 2 -26.633858520481766 -807.7672038538865 124.6101 0.1144 9645 +9647 2 -26.83894983302872 -806.6471541435978 124.894 0.1144 9646 +9648 2 -27.045030632736257 -805.5275952643995 125.1578 0.1144 9647 +9649 2 -27.530239640141588 -804.4977948035661 125.4294 0.1144 9648 +9650 2 -28.124445443824072 -803.5268925464516 125.7203 0.1144 9649 +9651 2 -28.773425845987646 -803.0892312417791 126.0353 0.1144 9650 +9652 2 -29.714365447357608 -802.4563502762146 126.4136 0.1144 9651 +9653 2 -30.005557703838463 -801.993500624853 126.5734 0.1144 9652 +9654 2 -30.612680780885768 -801.0319468461612 126.8803 0.1144 9653 +9655 2 -31.219495126338217 -800.0687947293317 127.146 0.1144 9654 +9656 2 -31.82751388548354 -799.1036831769568 127.3821 0.1144 9655 +9657 2 -32.48091700597885 -798.1718677166177 127.6324 0.1144 9656 +9658 2 -33.18906398750599 -797.2818011446391 127.9225 0.1144 9657 +9659 2 -33.90121503297365 -796.3941957658589 128.1941 0.1144 9658 +9660 2 -34.609320575251076 -795.4999953962571 128.417 0.1144 9659 +9661 2 -35.31502039172571 -794.6030251018617 128.606 0.1144 9660 +9662 2 -36.01033839432094 -793.6969736213889 128.7882 0.1144 9661 +9663 2 -36.69483690499203 -792.7842716826985 128.9806 0.1144 9662 +9664 2 -37.3794206085129 -791.8716221098211 129.1884 0.1144 9663 +9665 2 -38.06329072943117 -790.9599424853283 129.4196 0.1144 9664 +9666 2 -38.75348544724281 -790.0534416130149 129.6784 0.1144 9665 +9667 2 -39.458427140282 -789.1599962652656 129.9687 0.1144 9666 +9668 2 -40.17093928315728 -788.2739040317733 130.2871 0.1144 9667 +9669 2 -40.92576574320674 -787.4259115169424 130.6071 0.1144 9668 +9670 2 -41.73291552310641 -786.6262793184862 130.9104 0.1144 9669 +9671 2 -42.55544066798643 -785.8386803303964 131.1979 0.1144 9670 +9672 2 -43.34705562376922 -785.0226911994755 131.4804 0.1144 9671 +9673 2 -43.886552897199664 -784.0531405035543 131.7994 0.1144 9672 +9674 2 -44.2184289925097 -782.9693519137631 132.1704 0.1144 9673 +9675 2 -44.54870674968208 -781.8858720555668 132.5671 0.1144 9674 +9676 2 -44.884416523232915 -780.8044399273485 132.9686 0.1144 9675 +9677 2 -45.391760856206474 -779.7976359306344 133.2506 0.1144 9676 +9678 2 -46.00970652676108 -778.8360438142759 133.3615 0.1144 9677 +9679 2 -46.63024002261383 -777.8746337974128 133.3352 0.1144 9678 +9680 2 -46.93507725219749 -776.7996967464838 133.3895 0.1144 9679 +9681 2 -47.076464733801345 -775.6673701504676 133.6048 0.1144 9680 +9682 2 -47.215580946681854 -774.538929598505 133.903 0.1144 9681 +9683 2 -47.02664632594406 -773.4895021502806 133.518 0.1144 9682 +9684 2 -46.9677992809433 -772.4274227204381 132.5811 0.1144 9683 +9685 2 -47.388205059426724 -771.4639016042097 131.5728 0.1144 9684 +9686 2 -48.020611898061276 -770.583622307368 130.697 0.1144 9685 +9687 2 -48.502997229787184 -769.6044380184134 129.8928 0.1144 9686 +9688 2 -48.85722908782748 -768.5518806609505 129.2343 0.1144 9687 +9689 2 -49.283816109823476 -767.5061189086069 128.8272 0.1144 9688 +9690 2 -49.757982086559565 -766.468122017231 128.6569 0.1144 9689 +9691 2 -50.29125157504595 -765.4651633178573 128.457 0.1144 9690 +9692 2 -51.166659253445715 -765.2513124431837 128.0644 0.1144 9691 +9693 2 -52.2533361963653 -765.480142930066 127.4342 0.1144 9692 +9694 2 -53.29461035212188 -765.1318410171322 126.8134 0.1144 9693 +9695 2 -54.22146970568389 -764.4957048063136 126.3363 0.1144 9694 +9696 2 -55.133732049013275 -763.8197250603572 125.9899 0.1144 9695 +9697 2 -55.616347027954276 -762.8031200917968 125.7424 0.1144 9696 +9698 2 -55.760501332768584 -761.6750765658619 125.5542 0.1144 9697 +9699 2 -56.430560907270504 -760.7749800673585 125.258 0.1144 9698 +9700 2 -57.20444403649978 -759.950791404312 124.8318 0.1144 9699 +9701 2 -58.00580931482597 -759.1515945695503 124.4116 0.1144 9700 +9702 2 -58.822635150982336 -758.3644833109677 124.0543 0.1144 9701 +9703 2 -59.64257247056419 -757.5767022233824 123.7508 0.1144 9702 +9704 2 -60.17230470076848 -756.6253296442723 124.2368 0.1144 9703 +9705 2 -60.727674278739556 -755.6278560196263 124.4116 0.1144 9704 +9706 2 -61.28268275930294 -754.6288692496926 124.5272 0.1144 9705 +9707 2 -61.83769123986633 -753.6298824797589 124.6386 0.1144 9706 +9708 2 -62.48009587052525 -752.6873155906162 124.6857 0.1144 9707 +9709 2 -63.270955804455596 -751.8681626104569 124.5829 0.1144 9708 +9710 2 -64.13226721828082 -751.1245940134772 124.3136 0.1144 9709 +9711 2 -65.10192551694117 -750.5389456259279 124.0397 0.1144 9710 +9712 2 -66.16464844798215 -750.1272954688288 123.8924 0.1144 9711 +9713 2 -67.25207980920688 -749.7737942883147 123.8807 0.1144 9712 +9714 2 -68.22218749970774 -749.1830226159818 123.8908 0.1144 9713 +9715 2 -68.99968387001582 -748.3529556462993 123.8104 0.1144 9714 +9716 2 -69.72172899985566 -747.468732144873 123.625 0.1144 9715 +9717 2 -70.1071944992708 -746.4111928554087 123.3204 0.1144 9716 +9718 2 -70.39287815302913 -745.3150921438064 122.9351 0.1144 9717 +9719 2 -70.35387603454554 -744.179288166549 122.6546 0.1144 9718 +9720 2 -69.99859441639828 -743.0947533622173 122.5924 0.1144 9719 +9721 2 -69.62757874490951 -742.0140460329603 122.7215 0.1144 9720 +9722 2 -69.2687246323966 -740.9635859595007 123.4013 0.1144 9721 +9723 2 -60.80361195146753 -757.4618894898391 123.2395 0.1144 9703 +9724 2 -61.93262994210656 -757.3487572803963 122.8808 0.1144 9723 +9725 2 -63.0599972287952 -757.2360189953984 122.5028 0.1144 9724 +9726 2 -64.1868213185808 -757.1243553904105 122.094 0.1144 9725 +9727 2 -65.3117383386338 -757.0114021788801 121.6765 0.1144 9726 +9728 2 -66.4385624284194 -756.8997385738924 121.2686 0.1144 9727 +9729 2 -67.57195688575437 -756.8887179531125 120.8964 0.1144 9728 +9730 2 -68.70255369344038 -756.9914803414176 120.5691 0.1144 9729 +9731 2 -69.84072816041703 -756.9377367583361 120.3723 0.1144 9730 +9732 2 -70.97684458637785 -757.0599730731611 120.2466 0.1144 9731 +9733 2 -72.0422599556901 -757.4610788208554 120.057 0.1144 9732 +9734 2 -73.1014352284221 -757.8811208087959 119.7974 0.1144 9733 +9735 2 -74.15700036165838 -758.3003523074882 119.4749 0.1144 9734 +9736 2 -75.21123444910221 -758.7173570782901 119.0991 0.1144 9735 +9737 2 -76.26390302544544 -759.1348081393494 118.6833 0.1144 9736 +9738 2 -77.31403614230318 -759.5519919080637 118.2591 0.1144 9737 +9739 2 -78.36670471864643 -759.9694429691228 117.8492 0.1144 9738 +9740 2 -79.41937329498964 -760.3868940301822 117.4572 0.1144 9739 +9741 2 -80.4730641855304 -760.8049734809944 117.0856 0.1144 9740 +9742 2 -81.47504983493624 -761.3442181827623 116.797 0.1144 9741 +9743 2 -82.58934407656878 -761.5806338401635 116.5592 0.1144 9742 +9744 2 -83.71608327527825 -761.7616656276806 116.354 0.1144 9743 +9745 2 -84.84314213214562 -761.9400767628623 116.1661 0.1144 9744 +9746 2 -85.97086220580287 -762.1176031425091 115.9838 0.1144 9745 +9747 2 -87.09479244951552 -762.3142806889348 115.7775 0.1144 9746 +9748 2 -88.2117135466495 -762.5376384127255 115.519 0.1144 9747 +9749 2 -89.3276646953987 -762.7602825539136 115.2276 0.1144 9748 +9750 2 -90.38403721630009 -763.1825927089945 114.94 0.1144 9749 +9751 2 -91.42733708290838 -763.637246421544 114.6687 0.1144 9750 +9752 2 -92.47308721615235 -764.092115060626 114.4212 0.1144 9751 +9753 2 -93.51826132545618 -764.5479208210558 114.2039 0.1144 9752 +9754 2 -93.78608051820154 -764.7742845328057 114.0807 0.1144 9753 +9755 2 -94.66027478563966 -765.5103544430577 113.9799 0.1144 9754 +9756 2 -95.5349153433352 -766.2479898644103 113.9348 0.1144 9755 +9757 2 -96.41016475200797 -766.9848257230776 113.9208 0.1144 9756 +9758 2 -97.29996093005839 -767.7021969599743 113.93 0.1144 9757 +9759 2 -98.23422355545001 -768.3625038028863 113.9555 0.1144 9758 +9760 2 -99.19448152443297 -768.9849115414346 113.9922 0.1144 9759 +9761 2 -100.15429320315843 -769.6057537688823 114.042 0.1144 9760 +9762 2 -101.11512719608146 -770.2272243860828 114.1076 0.1144 9761 +9763 2 -102.23245973815231 -770.1178258466522 114.2305 0.1144 9762 +9764 2 -103.27595551961771 -769.656678045981 114.3962 0.1144 9763 +9765 2 -104.36030822445399 -769.3039842531318 114.606 0.1144 9764 +9766 2 -105.43063994299776 -768.9105098037974 114.828 0.1144 9765 +9767 2 -106.4884685439337 -768.4850522018651 115.04 0.1144 9766 +9768 2 -107.56038318739586 -768.1503020605187 115.2262 0.1144 9767 +9769 2 -108.67455148946546 -768.3584689278712 115.3429 0.1144 9768 +9770 2 -109.71366450010139 -768.8373118991333 115.407 0.1144 9769 +9771 2 -110.72184028932118 -769.3750793842336 115.4843 0.1144 9770 +9772 2 -111.71944054606662 -769.9346351256404 115.5921 0.1144 9771 +9773 2 -112.71607085442729 -770.4934772844447 115.7223 0.1144 9772 +9774 2 -113.71207277303509 -771.0533417574464 115.8646 0.1144 9773 +9775 2 -114.70749866770282 -771.614143351796 116.0037 0.1144 9774 +9776 2 -115.6955159807175 -772.1892893847157 116.1056 0.1144 9775 +9777 2 -116.66415247973828 -772.7980662672965 116.1247 0.1144 9776 +9778 2 -117.6234209615607 -773.4199831747544 116.0589 0.1144 9777 +9779 2 -118.58323264028616 -774.0408254022021 115.9315 0.1144 9778 +9780 2 -119.54117007631612 -774.6605155817696 115.7635 0.1144 9779 +9781 2 -120.49946860975376 -775.2817189066249 115.5759 0.1144 9780 +9782 2 -121.45735367997099 -775.9014942790421 115.3886 0.1144 9781 +9783 2 -122.4156522134086 -776.5226976038975 115.2172 0.1144 9782 +9784 2 -123.37546389213405 -777.1435398313452 115.0691 0.1144 9783 +9785 2 -124.34868668220153 -777.7404631940085 114.956 0.1144 9784 +9786 2 -125.37116926486136 -778.2507540406414 114.912 0.1144 9785 +9787 2 -126.43305899499107 -778.675164291513 114.9459 0.1144 9786 +9788 2 -127.53513251082852 -778.9444471645104 115.059 0.1144 9787 +9789 2 -128.65746101304677 -778.8553744800977 115.1654 0.1144 9788 +9790 2 -129.7352717854107 -778.482578370976 115.0346 0.1144 9789 +9791 2 -130.78071538332185 -778.0509166010836 114.641 0.1144 9790 +9792 2 -131.83712733716754 -777.7240097125482 113.983 0.1144 9791 +9793 2 -132.8990277690978 -777.6610616969615 113.0158 0.1144 9792 +9794 2 -133.93463025199682 -777.8114283735005 111.8944 0.1144 9793 +9795 2 -134.9483866198319 -778.1566002534008 110.929 0.1144 9794 +9796 2 -135.95984227757825 -778.575599003295 110.1204 0.1144 9795 +9797 2 -136.97940848048063 -779.0075649833202 109.4212 0.1144 9796 +9798 2 -138.00738844950445 -779.4434114967694 108.8102 0.1144 9797 +9799 2 -139.0434413185543 -779.8573400202293 108.2001 0.1144 9798 +9800 2 -140.07515605857475 -780.1799795485335 107.3027 0.1144 9799 +9801 2 -141.08372067005763 -780.6078828956395 106.4977 0.1144 9800 +9802 2 -142.07675004897564 -781.1202591173806 105.8991 0.1144 9801 +9803 2 -143.07650656144446 -781.6434610342121 105.4469 0.1144 9802 +9804 2 -143.62031604969062 -782.6330631666337 105.0476 0.1144 9803 +9805 2 -143.76714378624342 -783.7290325347179 104.3302 0.1144 9804 +9806 2 -94.04193577136 -764.5152025584594 113.472 0.1144 9753 +9807 2 -95.0872204959968 -764.4487320052732 112.3629 0.1144 9806 +9808 2 -96.19656773993798 -764.3786776523735 111.7424 0.1144 9807 +9809 2 -97.31728077428942 -764.3075102817969 111.214 0.1144 9808 +9810 2 -98.44788789301303 -764.239724788574 110.8243 0.1144 9809 +9811 2 -99.58584502441074 -764.1710576413993 110.5832 0.1144 9810 +9812 2 -100.72633761529386 -764.1026577865697 110.462 0.1144 9811 +9813 2 -101.86803461986989 -764.0322984961948 110.43 0.1144 9812 +9814 2 -103.01017791470342 -763.9635047169204 110.4328 0.1144 9813 +9815 2 -104.1521836508744 -763.8947437646832 110.416 0.1144 9814 +9816 2 -105.29267624175752 -763.8263439098537 110.3312 0.1144 9815 +9817 2 -106.42778266515698 -763.8956075912267 110.0686 0.1144 9816 +9818 2 -107.53094627422392 -764.1064006215439 109.5433 0.1144 9817 +9819 2 -108.61098678707211 -764.3351428139935 108.815 0.1144 9818 +9820 2 -109.67743788320263 -764.5596402740284 107.9618 0.1144 9819 +9821 2 -110.73480228262603 -764.7838345130979 107.0465 0.1144 9820 +9822 2 -111.78645334517968 -765.0194242680317 106.1178 0.1144 9821 +9823 2 -112.77678298738262 -765.4924618138715 105.3315 0.1144 9822 +9824 2 -113.77525910336179 -765.9719153526207 104.6545 0.1144 9823 +9825 2 -114.89242256779498 -766.0046783460067 104.0642 0.1144 9824 +9826 2 -116.01437835350603 -765.942374133392 103.5423 0.1144 9825 +9827 2 -117.09713302197827 -765.8827368304553 102.6474 0.1144 9826 +9828 2 -47.24320104520427 -774.2470782148221 135.3061 0.1144 9682 +9829 2 -47.312381143563215 -773.5469334483694 137.3128 0.1144 9828 +9830 2 -47.47188206452907 -772.4768013321282 138.1492 0.1144 9829 +9831 2 -47.72976632007908 -771.3757032753051 138.5807 0.1144 9830 +9832 2 -47.98840559748143 -770.2777690677203 139.0446 0.1144 9831 +9833 2 -48.246331292281155 -769.1808048085204 139.5276 0.1144 9832 +9834 2 -48.507291102636486 -768.0855881599165 140.021 0.1144 9833 +9835 2 -48.88718082384443 -767.0394115592794 140.5158 0.1144 9834 +9836 2 -49.49813137596644 -766.093591833929 141.0116 0.1144 9835 +9837 2 -50.159054989531626 -765.1865885114257 141.5313 0.1144 9836 +9838 2 -50.970742820221716 -764.4339982739727 142.1025 0.1144 9837 +9839 2 -51.929037737518286 -763.8668367348292 142.7409 0.1144 9838 +9840 2 -52.883146491378994 -763.2998018277854 143.425 0.1144 9839 +9841 2 -53.815654504361845 -762.7046995376513 144.1247 0.1144 9840 +9842 2 -54.713207517593816 -762.0505494872514 144.8065 0.1144 9841 +9843 2 -55.614230010075886 -761.4039315490209 145.4844 0.1144 9842 +9844 2 -56.56045648092247 -760.8346339854663 146.2006 0.1144 9843 +9845 2 -57.53895090522592 -760.3350575032266 146.9779 0.1144 9844 +9846 2 -58.50383160329109 -759.8095059087077 147.756 0.1144 9845 +9847 2 -59.45534943027057 -759.2489776980526 148.4921 0.1144 9846 +9848 2 -60.397519471363964 -758.6773041341492 149.2341 0.1144 9847 +9849 2 -61.160370182735235 -757.9671189173498 150.0898 0.1144 9848 +9850 2 -61.47485672034534 -757.0687846434505 151.5461 0.1144 9849 +9851 2 -61.68143786296986 -756.1953285875943 153.2698 0.1144 9850 +9852 2 -62.06295125580937 -755.2360727191817 154.4757 0.1144 9851 +9853 2 -62.57324961367041 -754.3424788091955 155.6971 0.1144 9852 +9854 2 -62.76477374141051 -753.3121026261956 156.7916 0.1144 9853 +9855 2 -62.91223835042692 -752.2640346708189 157.8562 0.1144 9854 +9856 2 -63.344229663946024 -751.3316979317358 159.0658 0.1144 9855 +9857 2 -63.506835172634666 -750.2983362048734 160.1933 0.1144 9856 +9858 2 -63.968174265733566 -749.3881471029947 161.4239 0.1144 9857 +9859 2 -64.10426008016692 -748.417599035607 162.7601 0.1144 9858 +9860 2 -64.48042084278138 -747.788062213277 164.9091 0.1144 9859 +9861 2 -30.721235506593843 -802.8631399194132 127.7699 0.1144 9652 +9862 2 -31.758404494903687 -803.2817454373993 128.3419 0.1144 9861 +9863 2 -32.839390332864355 -803.6158896998496 128.6866 0.1144 9862 +9864 2 -33.95976450171892 -803.6371274436887 128.812 0.1144 9863 +9865 2 -35.09590355035354 -803.5364716332866 128.6538 0.1144 9864 +9866 2 -36.2276524059198 -803.6373597788963 128.4492 0.1144 9865 +9867 2 -37.357925068791644 -803.797556868647 128.2554 0.1144 9866 +9868 2 -38.48845409744564 -803.9594374893851 128.0812 0.1144 9867 +9869 2 -39.61671736800591 -804.1358891890216 127.9368 0.1144 9868 +9870 2 -40.720391631027525 -804.4222371611529 127.7819 0.1144 9869 +9871 2 -41.81412116037413 -804.7467249061222 127.5775 0.1144 9870 +9872 2 -42.90531523023532 -805.0709453587464 127.2989 0.1144 9871 +9873 2 -43.9934751845409 -805.3934182007745 126.947 0.1144 9872 +9874 2 -45.078790947766095 -805.7140254123199 126.5295 0.1144 9873 +9875 2 -46.170306060858394 -805.9874999593826 126.0442 0.1144 9874 +9876 2 -47.15646604812238 -805.6415914606152 125.3619 0.1144 9875 +9877 2 -48.09110087546324 -805.080076171846 124.5152 0.1144 9876 +9878 2 -49.015486031653865 -804.5243508952801 123.5875 0.1144 9877 +9879 2 -49.958845073221 -804.0097509354146 122.6537 0.1144 9878 +9880 2 -51.074202073990676 -803.9822436484873 122.0425 0.1144 9879 +9881 2 -52.204722898879936 -804.0392982231649 121.6404 0.1144 9880 +9882 2 -53.32830986745071 -804.1928034154482 121.2674 0.1144 9881 +9883 2 -54.44948490705252 -804.3569162747065 120.8827 0.1144 9882 +9884 2 -55.569946364051646 -804.5219990823496 120.4784 0.1144 9883 +9885 2 -56.68787236156541 -804.6868145976475 120.0497 0.1144 9884 +9886 2 -57.79964345534873 -804.8706187190046 119.5799 0.1144 9885 +9887 2 -58.84988268890518 -805.2395068487929 119.0566 0.1144 9886 +9888 2 -59.75785836883972 -805.9185178756896 118.7309 0.1144 9887 +9889 2 -60.51422612460115 -806.7633987833 118.627 0.1144 9888 +9890 2 -60.98526560059804 -807.7929026113903 118.7052 0.1144 9889 +9891 2 -61.15983967700987 -808.918017144158 118.9594 0.1144 9890 +9892 2 -61.301438704617055 -810.0377701327142 119.3937 0.1144 9891 +9893 2 -61.70296072048373 -810.9989543974493 120.2944 0.1144 9892 +9894 2 -62.62857312582537 -811.1206834616764 121.571 0.1144 9893 +9895 2 -63.4552605034055 -810.413583702272 122.4146 0.1144 9894 +9896 2 -64.03158391769927 -809.5109216103812 123.4013 0.1144 9895 +9897 2 -27.445320274442565 -803.1592215327552 126.2069 0.1144 9650 +9898 2 -26.49706158780441 -802.6461933042772 127.1309 0.1144 9897 +9899 2 -25.514510834715168 -802.1146690173402 127.6999 0.1144 9898 +9900 2 -24.52870552890829 -801.5731623515983 128.2019 0.1144 9899 +9901 2 -23.568793936650394 -800.987238171308 128.7138 0.1144 9900 +9902 2 -22.64156407482139 -800.3460441575082 129.1825 0.1144 9901 +9903 2 -21.717354992938596 -799.6934429140484 129.6028 0.1144 9902 +9904 2 -20.791238841323178 -799.0395520640459 129.9768 0.1144 9903 +9905 2 -19.864100375510162 -798.3850328242905 130.3198 0.1144 9904 +9906 2 -18.948410483910777 -797.712079101942 130.6508 0.1144 9905 +9907 2 -18.15590554661634 -796.9040281293147 131.0014 0.1144 9906 +9908 2 -17.662530823290126 -795.8957748712576 131.3886 0.1144 9907 +9909 2 -17.230921419210574 -794.8502460804966 131.8022 0.1144 9908 +9910 2 -16.79925964931826 -793.8048024825855 132.2272 0.1144 9909 +9911 2 -16.374468774805536 -792.7567741609591 132.6469 0.1144 9910 +9912 2 -16.000071225963012 -791.6859609160745 133.0126 0.1144 9911 +9913 2 -15.724049186724699 -790.5817119251966 133.2598 0.1144 9912 +9914 2 -15.333738586628357 -789.5106251848005 133.4446 0.1144 9913 +9915 2 -14.394734289261748 -788.9038638976974 133.7076 0.1144 9914 +9916 2 -13.3304733768762 -788.5182577380366 134.0914 0.1144 9915 +9917 2 -12.266153895511735 -788.146114362994 134.5781 0.1144 9916 +9918 2 -11.208617015094006 -787.7780226943077 135.1451 0.1144 9917 +9919 2 -10.15521393229929 -787.4098895863716 135.7591 0.1144 9918 +9920 2 -9.101201998527415 -787.0425560411209 136.3748 0.1144 9919 +9921 2 -8.043697945146704 -786.6746019310972 136.9525 0.1144 9920 +9922 2 -6.982818217578398 -786.3031643136773 137.4758 0.1144 9921 +9923 2 -5.917978179669689 -785.9251840712484 137.9084 0.1144 9922 +9924 2 -4.851752321109217 -785.52768846305 138.1828 0.1144 9923 +9925 2 -3.7709109375138326 -785.1560711551812 138.2788 0.1144 9924 +9926 2 -2.645288550601066 -784.9556537355772 138.2343 0.1144 9925 +9927 2 -1.5049674464020484 -784.8992658883192 138.089 0.1144 9926 +9928 2 -0.378451786437779 -784.719780073127 137.8812 0.1144 9927 +9929 2 0.7326810150030951 -784.4652355631445 137.6586 0.1144 9928 +9930 2 1.8449627627410337 -784.2058764999733 137.471 0.1144 9929 +9931 2 2.9479203415769177 -783.911869783573 137.373 0.1144 9930 +9932 2 3.9900681603050145 -783.455341828328 137.5102 0.1144 9931 +9933 2 4.917480121629353 -782.8167356398264 137.9778 0.1144 9932 +9934 2 5.726706882915863 -782.0534577685254 138.5625 0.1144 9933 +9935 2 6.412178869123551 -781.1675231173663 139.1219 0.1144 9934 +9936 2 7.060791478982878 -780.2477848217998 139.6335 0.1144 9935 +9937 2 7.701474950645007 -779.3195389550496 140.0921 0.1144 9936 +9938 2 8.302190664116324 -778.3635084107735 140.532 0.1144 9937 +9939 2 8.842921495974025 -777.3730988906868 141.0016 0.1144 9938 +9940 2 9.414401341282485 -776.4000594072093 141.4252 0.1144 9939 +9941 2 10.09550437202239 -775.4873476720393 141.6229 0.1144 9940 +9942 2 10.796514283930094 -774.5917448842996 141.4423 0.1144 9941 +9943 2 11.148174457233807 -773.6061578193926 140.5376 0.1144 9942 +9944 2 11.057267287671095 -772.6455188411484 139.1757 0.1144 9943 +9945 2 11.408842268125 -771.6599841420541 138.0644 0.1144 9944 +9946 2 11.885522199777938 -770.6942724393398 137.1241 0.1144 9945 +9947 2 12.431033041277317 -769.7465858815547 136.3102 0.1144 9946 +9948 2 13.052962372188404 -768.8271679366827 135.6334 0.1144 9947 +9949 2 13.654486165861442 -767.8921213626314 135.0177 0.1144 9948 +9950 2 14.051839432110086 -766.871639867551 134.2533 0.1144 9949 +9951 2 14.272947224616985 -765.8092444966591 133.3724 0.1144 9950 +9952 2 14.446188538726432 -764.7277931491238 132.5607 0.1144 9951 +9953 2 14.630707348813274 -763.6408183891942 131.8153 0.1144 9952 +9954 2 14.882452527442638 -762.5581824508304 131.1654 0.1144 9953 +9955 2 15.236367863713866 -761.4933857637807 130.6474 0.1144 9954 +9956 2 15.69676374411577 -760.4597426274377 130.2622 0.1144 9955 +9957 2 16.23535855156237 -759.457264660901 129.9791 0.1144 9956 +9958 2 16.937890126274425 -758.5836157917707 129.7372 0.1144 9957 +9959 2 17.851799580240794 -757.9077655125292 129.4846 0.1144 9958 +9960 2 18.80594477727962 -757.2862979969118 129.2026 0.1144 9959 +9961 2 19.758182904585922 -756.666120087837 128.879 0.1144 9960 +9962 2 20.76993188070793 -756.186489960222 128.4741 0.1144 9961 +9963 2 21.864663901387786 -755.9379182544745 127.9695 0.1144 9962 +9964 2 22.97059502620182 -755.746904780689 127.4213 0.1144 9963 +9965 2 24.073456106840084 -755.5510876802779 126.8551 0.1144 9964 +9966 2 25.18142985945063 -755.4770210648156 126.2498 0.1144 9965 +9967 2 26.290471473379952 -755.5553625517372 125.592 0.1144 9966 +9968 2 27.396618939462684 -755.6181106455629 124.8993 0.1144 9967 +9969 2 28.46227426702761 -755.4249734590023 124.1514 0.1144 9968 +9970 2 29.489513934881728 -755.0272612077615 123.398 0.1144 9969 +9971 2 30.52833742126161 -754.6398010367175 122.7106 0.1144 9970 +9972 2 31.58053609036338 -754.2697084932362 122.0979 0.1144 9971 +9973 2 32.64034113792138 -753.8988140727193 121.557 0.1144 9972 +9974 2 33.05179348053208 -753.0672180351144 121.1095 0.1144 9973 +9975 2 32.865365605256784 -751.9490778036048 120.8446 0.1144 9974 +9976 2 32.75663661588278 -750.8154578069262 120.675 0.1144 9975 +9977 2 32.994248488354856 -749.7119292943537 120.5103 0.1144 9976 +9978 2 33.37337229595316 -748.6356285656947 120.3182 0.1144 9977 +9979 2 34.00469085200001 -747.7009314699513 120.0478 0.1144 9978 +9980 2 34.8289318808592 -746.9271335335719 119.6888 0.1144 9979 +9981 2 35.877029579374934 -746.5568619921783 119.2702 0.1144 9980 +9982 2 36.92475386884688 -746.1357593523735 118.8555 0.1144 9981 +9983 2 37.89851744677088 -745.5572845004493 118.4809 0.1144 9982 +9984 2 38.95898852921181 -745.1525271740097 118.2188 0.1144 9983 +9985 2 40.08795346150153 -745.2415115639897 118.1737 0.1144 9984 +9986 2 41.22240105947256 -745.3699698741831 118.3241 0.1144 9985 +9987 2 42.252357984533774 -745.2673259142127 119.4749 0.1144 9986 +9988 2 -32.7143165999571 -1101.2067141982056 82.8719 0.1144 9356 +9989 2 -31.764897152258698 -1101.7202887422904 82.1747 0.1144 9988 +9990 2 -30.641648658421843 -1101.791188820522 81.8558 0.1144 9989 +9991 2 -29.50767376750173 -1101.6675690940917 81.6273 0.1144 9990 +9992 2 -28.371859869969626 -1101.5603087091727 81.4663 0.1144 9991 +9993 2 -27.23074540625157 -1101.489934419169 81.3669 0.1144 9992 +9994 2 -26.086490710279293 -1101.4661081574955 81.3235 0.1144 9993 +9995 2 -24.944362136128404 -1101.4999315237997 81.319 0.1144 9994 +9996 2 -23.800793990439956 -1101.56244997041 81.3252 0.1144 9995 +9997 2 -22.67506819764867 -1101.7204497787782 81.3344 0.1144 9996 +9998 2 -21.60423782303468 -1102.1124439098621 81.347 0.1144 9997 +9999 2 -20.5721040378599 -1102.6032301153534 81.3644 0.1144 9998 +10000 2 -19.530082371479068 -1103.0772568517227 81.3896 0.1144 9999 +10001 2 -18.493489619893694 -1103.5600201139546 81.4237 0.1144 10000 +10002 2 -17.476394411812123 -1104.0830567643889 81.4696 0.1144 10001 +10003 2 -16.420989358944723 -1104.4696250822603 81.5371 0.1144 10002 +10004 2 -15.387555443405233 -1104.2305603374468 81.6469 0.1144 10003 +10005 2 -14.52656287140627 -1103.4837068638908 81.7936 0.1144 10004 +10006 2 -13.719219562868318 -1102.6759255926554 81.9563 0.1144 10005 +10007 2 -12.872519756163285 -1101.912503266989 82.1313 0.1144 10006 +10008 2 -11.961074596978733 -1101.225960127923 82.313 0.1144 10007 +10009 2 -10.915820397006655 -1100.8816168436251 82.4065 0.1144 10008 +10010 2 -9.776582869119352 -1100.9065356127176 82.3211 0.1144 10009 +10011 2 -8.64796362101805 -1101.0560661875684 82.0826 0.1144 10010 +10012 2 -7.532240722432732 -1101.2632932455806 81.732 0.1144 10011 +10013 2 -6.423509148160292 -1101.4854993350818 81.3005 0.1144 10012 +10014 2 -5.319815665821636 -1101.7081024506106 80.8167 0.1144 10013 +10015 2 -4.216698207423121 -1101.929768444792 80.3076 0.1144 10014 +10016 2 -3.164994690067374 -1102.303822025956 79.7698 0.1144 10015 +10017 2 -2.1687184824442625 -1102.812657999649 79.1977 0.1144 10016 +10018 2 -1.1876215121599785 -1103.3470227953635 78.5929 0.1144 10017 +10019 2 -0.20932729370628067 -1103.879119423938 77.9579 0.1144 10018 +10020 2 0.7673490478340455 -1104.410684569405 77.2974 0.1144 10019 +10021 2 1.7965171120105765 -1104.7960077268704 76.5778 0.1144 10020 +10022 2 2.8485333798433317 -1104.7160751164083 75.728 0.1144 10021 +10023 2 3.911348310447522 -1104.5555549828277 74.7874 0.1144 10022 +10024 2 4.967141794815063 -1104.735177053763 73.8508 0.1144 10023 +10025 2 6.07383584347258 -1104.7289214429961 73.1643 0.1144 10024 +10026 2 7.154063557997802 -1104.3912522339 72.8073 0.1144 10025 +10027 2 8.240301721888102 -1104.0350985854445 72.919 0.1144 10026 +10028 2 -47.370213778897096 -1156.6962063145543 46.5562 0.1144 9234 +10029 2 -47.12720313067416 -1157.8145460593773 46.5559 0.1144 10028 +10030 2 -46.900945748407196 -1158.9363755147624 46.5559 0.1144 10029 +10031 2 -46.86023648709488 -1160.0796431326207 46.5559 0.1144 10030 +10032 2 -46.82109273688303 -1161.2224644602215 46.5559 0.1144 10031 +10033 2 -46.685531196102374 -1162.3584894901664 46.5559 0.1144 10032 +10034 2 -49.15009058842833 -1152.8392476016702 46.4234 0.1144 9230 +10035 2 -49.24037319716365 -1153.970301703188 46.2801 0.1144 10034 +10036 2 -49.68351436770803 -1154.8792447393396 46.205 0.1144 10035 +10037 2 -50.7318698467422 -1154.9998885107452 46.0124 0.1144 10036 +10038 2 -51.834461930503494 -1154.7376379877198 45.6481 0.1144 10037 +10039 2 -52.93974143934361 -1154.5670703842952 45.0934 0.1144 10038 +10040 2 -54.05136987228275 -1154.6393924907443 44.5004 0.1144 10039 +10041 2 -55.178289075192765 -1154.674043754972 44.0297 0.1144 10040 +10042 2 -56.314938777782004 -1154.648942886384 43.7032 0.1144 10041 +10043 2 -57.455812288937125 -1154.658600605817 43.5159 0.1144 10042 +10044 2 -58.59852239765763 -1154.6345251530097 43.475 0.1144 10043 +10045 2 -59.716778346681906 -1154.4101915566139 43.5758 0.1144 10044 +10046 2 -60.85793697244799 -1154.375654607707 43.6526 0.1144 10045 +10047 2 -61.921575005710224 -1154.77296811641 43.6971 0.1144 10046 +10048 2 -63.05860321952491 -1154.8085509913558 43.7181 0.1144 10047 +10049 2 -64.19261855538451 -1154.6676193837047 43.7189 0.1144 10048 +10050 2 -65.33480839164946 -1154.7144742439982 43.7049 0.1144 10049 +10051 2 -66.46253397593631 -1154.9026856584896 43.6576 0.1144 10050 +10052 2 -67.58297691813311 -1155.1334903016004 43.5952 0.1144 10051 +10053 2 -68.72141456958349 -1155.234381548793 43.5677 0.1144 10052 +10054 2 -69.86549026764351 -1155.254106839881 43.587 0.1144 10053 +10055 2 -71.0070958762036 -1155.1970727754615 43.6528 0.1144 10054 +10056 2 -72.14989427935711 -1155.1663608925828 43.7612 0.1144 10055 +10057 2 -73.2751702895448 -1155.3302947539287 44.0471 0.1144 10056 +10058 2 -73.88802612358523 -1155.169866898858 43.5506 0.1144 10057 +10059 2 -74.95088319795394 -1154.8912915778683 42.7781 0.1144 10058 +10060 2 -76.0636065245306 -1154.7238909252646 42.35 0.1144 10059 +10061 2 -77.19942212088762 -1154.656607189695 42.0692 0.1144 10060 +10062 2 -78.3380843173714 -1154.6085629153372 41.8107 0.1144 10061 +10063 2 -79.47625568276499 -1154.56150812814 41.5722 0.1144 10062 +10064 2 -80.59484840769824 -1154.7361239227475 41.3661 0.1144 10063 +10065 2 -81.70355525202399 -1155.0121838860618 41.1919 0.1144 10064 +10066 2 -82.82539632650872 -1155.210159651243 40.9998 0.1144 10065 +10067 2 -83.9617102651842 -1155.2707751011867 40.7414 0.1144 10066 +10068 2 -85.09749882922239 -1155.2908060222862 40.42 0.1144 10067 +10069 2 -86.23207987798452 -1155.3194851748153 40.0596 0.1144 10068 +10070 2 -87.36402245214566 -1155.389503878041 39.7029 0.1144 10069 +10071 2 -88.4960033639735 -1155.4703451747737 39.3604 0.1144 10070 +10072 2 -89.62999607715938 -1155.5523056923496 39.034 0.1144 10071 +10073 2 -90.76362769293763 -1155.6327530646377 38.7212 0.1144 10072 +10074 2 -91.88885344458555 -1155.5213981912448 38.3961 0.1144 10073 +10075 2 -92.97035344082502 -1155.1884315891148 38.0484 0.1144 10074 +10076 2 -94.0394745425096 -1154.8102941670936 37.6737 0.1144 10075 +10077 2 -95.10691211320682 -1154.4324131108551 37.2786 0.1144 10076 +10078 2 -96.1356043567713 -1154.7250234114774 36.832 0.1144 10077 +10079 2 -96.94580347548919 -1155.5063886961098 36.4316 0.1144 10078 +10080 2 -97.95434957216963 -1156.0000138786831 35.9976 0.1144 10079 +10081 2 -98.44620874116151 -1156.9912544034191 35.5401 0.1144 10080 +10082 2 -98.62238425729413 -1158.1093714087076 35.1411 0.1144 10081 +10083 2 -98.79696143528906 -1159.227797145591 34.7284 0.1144 10082 +10084 2 -98.50853639278165 -1159.3781194821036 35.4872 0.1144 10083 +10085 2 -97.53533332461103 -1159.8864653172427 35.3825 0.1144 10084 +10086 2 -96.52380769157048 -1160.411516870618 35.1736 0.1144 10085 +10087 2 -95.45351741227654 -1160.8091251175758 35.0252 0.1144 10086 +10088 2 -94.37681965758958 -1161.193287017108 34.914 0.1144 10087 +10089 2 -93.29962324683243 -1161.5759685983892 34.8382 0.1144 10088 +10090 2 -92.22190317794792 -1161.9595021081686 34.7939 0.1144 10089 +10091 2 -91.14852612749002 -1161.6435335534827 34.7768 0.1144 10090 +10092 2 -90.24438481833289 -1160.942816361546 34.7768 0.1144 10091 +10093 2 -99.72220073336058 -1159.6931050665467 33.8982 0.1144 10083 +10094 2 -100.51581497122345 -1160.3528817344136 32.9795 0.1144 10093 +10095 2 -100.9559997255189 -1161.3472214309386 32.1118 0.1144 10094 +10096 2 -101.36651083891041 -1162.3354117343633 31.1226 0.1144 10095 +10097 2 -101.81988936896886 -1163.2909090020107 30.0754 0.1144 10096 +10098 2 -102.22802178887656 -1164.1890147239724 28.768 0.1144 10097 +10099 2 -101.46233418486872 -1164.1239170813972 27.6996 0.1144 10098 +10100 2 -101.29819299720776 -1164.770973887646 26.4702 0.1144 10099 +10101 2 -101.86100099410277 -1165.6970128493704 25.674 0.1144 10100 +10102 2 -102.73824479031566 -1166.3757973306351 25.0377 0.1144 10101 +10103 2 -103.54175001096775 -1167.0456446717399 24.3893 0.1144 10102 +10104 2 -103.65255417622939 -1168.0430564307244 23.0924 0.1144 10103 +10105 2 -103.02596748369979 -1168.839581946163 21.9691 0.1144 10104 +10106 2 -102.4452707042932 -1169.6334436535067 20.8167 0.1144 10105 +10107 2 -103.46404113863008 -1170.0340493600575 20.0088 0.1144 10106 +10108 2 -104.50072549901586 -1170.4402667734357 19.3565 0.1144 10107 +10109 2 -105.54880537526577 -1170.8521975236836 18.8673 0.1144 10108 +10110 2 -106.60388277899489 -1171.2657297136523 18.4861 0.1144 10109 +10111 2 -107.66122834986425 -1171.6820646554515 18.1618 0.1144 10110 +10112 2 -108.71697248101276 -1172.1053971247302 17.8645 0.1144 10111 +10113 2 -109.44485939046376 -1172.9704508207801 17.5223 0.1144 10112 +10114 2 -110.15902955856086 -1173.8511362475929 17.1582 0.1144 10113 +10115 2 -110.90014788890494 -1174.7122327348857 16.8158 0.1144 10114 +10116 2 -111.71680684882841 -1175.506959174094 16.5731 0.1144 10115 +10117 2 -112.534934413207 -1176.3038795141556 16.4103 0.1144 10116 +10118 2 -113.35292441892295 -1177.1008326812544 16.2666 0.1144 10117 +10119 2 -73.61986145943575 -1155.785262903802 44.48 0.1144 10057 +10120 2 -73.31876651207688 -1156.87588164226 44.8428 0.1144 10119 +10121 2 -72.92260194967099 -1157.9443342287109 45.108 0.1144 10120 +10122 2 -72.61161842856967 -1159.0422561246594 45.2911 0.1144 10121 +10123 2 -72.59246916142189 -1160.1853947013717 45.3989 0.1144 10122 +10124 2 -72.6530281724871 -1161.3277584333673 45.4398 0.1144 10123 +10125 2 -73.04979280138588 -1162.108773535177 45.4437 0.1144 10124 +10126 2 -73.41568518809106 -1163.1890314725933 45.4482 0.1144 10125 +10127 2 -73.24516485343986 -1164.2967601647697 45.4546 0.1144 10126 +10128 2 -73.14319892623689 -1165.434654619317 45.4619 0.1144 10127 +10129 2 -73.28065795305474 -1166.5678266388913 45.4675 0.1144 10128 +10130 2 -73.4953702680532 -1167.690850285921 45.4863 0.1144 10129 +10131 2 -73.44690845740928 -1168.8293526148204 45.5319 0.1144 10130 +10132 2 -73.1795819183742 -1169.939319340235 45.5529 0.1144 10131 +10133 2 -72.6218066146003 -1170.9340230400874 45.5325 0.1144 10132 +10134 2 -71.99566210445676 -1171.8892843563863 45.4244 0.1144 10133 +10135 2 -71.46296553832735 -1172.8979947302964 45.2217 0.1144 10134 +10136 2 -71.11941492101215 -1173.9812979996268 44.9215 0.1144 10135 +10137 2 -70.97468459225774 -1175.1102786469096 44.6538 0.1144 10136 +10138 2 -70.86122624254489 -1176.2450999556982 44.4438 0.1144 10137 +10139 2 -70.75080200838767 -1177.3816688750826 44.2873 0.1144 10138 +10140 2 -70.64478747641135 -1178.5196571346924 44.179 0.1144 10139 +10141 2 -70.55061785213991 -1179.6582354463885 44.0535 0.1144 10140 +10142 2 -70.37951297603212 -1180.788494081114 43.9373 0.1144 10141 +10143 2 -70.05128535788447 -1181.8839157536609 43.8402 0.1144 10142 +10144 2 -70.05236503910902 -1183.0246985613367 43.7595 0.1144 10143 +10145 2 -70.28708276373447 -1184.1438204670048 43.6923 0.1144 10144 +10146 2 -70.32500710062476 -1185.2857700432435 43.6332 0.1144 10145 +10147 2 -70.08970756248351 -1186.404741279402 43.5789 0.1144 10146 +10148 2 -70.0194184653297 -1187.545908108933 43.5193 0.1144 10147 +10149 2 -69.85445918820312 -1188.677244525252 43.4031 0.1144 10148 +10150 2 -69.68045775520227 -1189.8057227223449 43.255 0.1144 10149 +10151 2 -69.4943878757515 -1190.9320648950265 43.0626 0.1144 10150 +10152 2 -69.05122348412868 -1191.9851267032777 42.9192 0.1144 10151 +10153 2 -68.49710287266146 -1192.5589192685375 42.8257 0.1144 10152 +10154 2 -67.85162578878038 -1193.488915953577 42.7736 0.1144 10153 +10155 2 -67.49791689633082 -1194.564684009155 42.8123 0.1144 10154 +10156 2 -67.49281264090757 -1195.69356644173 42.8691 0.1144 10155 +10157 2 -67.7989522022607 -1196.7881565060802 42.9013 0.1144 10156 +10158 2 -68.27387462072807 -1197.8266203987782 42.8974 0.1144 10157 +10159 2 -68.77472839787441 -1198.855551997048 42.859 0.1144 10158 +10160 2 -69.22733378204106 -1199.556796865994 42.4903 0.1144 10159 +10161 2 -68.93501369821138 -1200.6528092831636 42.2626 0.1144 10160 +10162 2 -68.65258459717069 -1201.7588923735711 42.1025 0.1144 10161 +10163 2 -68.65450759468047 -1202.8962026004137 41.9706 0.1144 10162 +10164 2 -68.84904332711943 -1204.02149682363 41.8622 0.1144 10163 +10165 2 -68.80525851100157 -1205.1588830332694 41.767 0.1144 10164 +10166 2 -68.51993285306787 -1206.263185686044 41.6139 0.1144 10165 +10167 2 -68.36848090139222 -1207.3920256730808 41.4232 0.1144 10166 +10168 2 -68.10782361946565 -1208.5022182515909 41.2188 0.1144 10167 +10169 2 -67.81996250204645 -1209.6062536120203 40.9872 0.1144 10168 +10170 2 -67.57312127716568 -1210.7155480993856 40.6871 0.1144 10169 +10171 2 -67.55652149764961 -1211.848046182086 40.3337 0.1144 10170 +10172 2 -67.579751225125 -1212.9768550409108 39.872 0.1144 10171 +10173 2 -67.5959865267044 -1214.0973736641308 39.3089 0.1144 10172 +10174 2 -67.51906169201578 -1215.2143895726153 38.738 0.1144 10173 +10175 2 -67.39862294455304 -1216.330012859442 38.1934 0.1144 10174 +10176 2 -67.27029098751314 -1217.447592480231 37.6804 0.1144 10175 +10177 2 -67.14226776206812 -1218.5667704391572 37.1977 0.1144 10176 +10178 2 -67.01571314107815 -1219.688142298937 36.745 0.1144 10177 +10179 2 -66.8863557682576 -1220.8117823258572 36.311 0.1144 10178 +10180 2 -66.75851154072495 -1221.9350612553694 35.884 0.1144 10179 +10181 2 -66.63066731319219 -1223.0583401848817 35.4595 0.1144 10180 +10182 2 -66.5013099403717 -1224.181980211802 35.0384 0.1144 10181 +10183 2 -66.28481449974771 -1225.2923203462603 34.6192 0.1144 10182 +10184 2 -66.00483015471303 -1226.3879333283558 34.2034 0.1144 10183 +10185 2 -65.7152799956769 -1227.4815400197222 33.7946 0.1144 10184 +10186 2 -65.45467818114605 -1228.5849586094982 33.4057 0.1144 10185 +10187 2 -65.35698671181177 -1229.7160900018748 33.0683 0.1144 10186 +10188 2 -65.29441182632274 -1230.8511995268573 32.7648 0.1144 10187 +10189 2 -65.22964303998043 -1231.9877776562948 32.4831 0.1144 10188 +10190 2 -65.16484142660101 -1233.1242182270698 32.2162 0.1144 10189 +10191 2 -65.08002579138167 -1234.2605643002457 31.9558 0.1144 10190 +10192 2 -64.92006316693914 -1235.3881639449696 31.7008 0.1144 10191 +10193 2 -64.74374120098537 -1236.5139245830815 31.4462 0.1144 10192 +10194 2 -64.68218862969394 -1237.6496624978167 31.1744 0.1144 10193 +10195 2 -64.74528620182764 -1238.7856047262735 30.8736 0.1144 10194 +10196 2 -64.62412766859609 -1239.915575553253 30.5539 0.1144 10195 +10197 2 -63.7218860417384 -1240.599123339999 30.2817 0.1144 10196 +10198 2 -64.03252049812227 -1241.6951851103875 30.0275 0.1144 10197 +10199 2 -64.34351605191381 -1242.7927600260637 29.7917 0.1144 10198 +10200 2 -64.65505480260845 -1243.8892602617298 29.5772 0.1144 10199 +10201 2 -64.96324209393975 -1244.9784183097017 29.1676 0.1144 10200 +10202 2 -69.593134509148 -1192.342288264707 41.9608 0.1144 10152 +10203 2 -70.61246424614387 -1192.6587236250512 40.9604 0.1144 10202 +10204 2 -71.73158094295616 -1192.7060686238983 40.4267 0.1144 10203 +10205 2 -72.84823375343478 -1192.6632766754701 39.8801 0.1144 10204 +10206 2 -73.88321124993763 -1193.1007246286401 39.3596 0.1144 10205 +10207 2 -74.84557310883116 -1193.6868637354628 38.8696 0.1144 10206 +10208 2 -75.85749798128245 -1194.1772836295481 38.3583 0.1144 10207 +10209 2 -76.8892202325311 -1194.628811830526 37.8636 0.1144 10208 +10210 2 -77.94884558964026 -1195.01966790707 37.4458 0.1144 10209 +10211 2 -79.0412697974512 -1195.1123480030374 37.1431 0.1144 10210 +10212 2 -79.9758785987616 -1194.4876658770622 36.9135 0.1144 10211 +10213 2 -80.04488760119938 -1193.5954984277664 36.3927 0.1144 10212 +10214 2 -79.03841486976455 -1193.4764184509518 35.9148 0.1144 10213 +10215 2 -78.14643763473981 -1194.1192058125243 35.5502 0.1144 10214 +10216 2 -78.12798212733048 -1195.1848300118772 35.247 0.1144 10215 +10217 2 -79.05858807179499 -1195.7286777259728 35.0126 0.1144 10216 +10218 2 -80.17498310175506 -1195.935513547533 34.7245 0.1144 10217 +10219 2 -80.49931860218487 -1196.9982094462553 34.2157 0.1144 10218 +10220 2 -72.40001402651092 -1161.8113754119113 46.0482 0.1144 10124 +10221 2 -72.17315808661942 -1162.547475970623 47.964 0.1144 10220 +10222 2 -72.49423122132976 -1163.178553059549 49.8501 0.1144 10221 +10223 2 -72.67098626572658 -1163.5530671370952 51.8358 0.1144 10222 +10224 2 -71.80953018475168 -1163.431802877928 53.3926 0.1144 10223 +10225 2 -71.22812873102191 -1163.8882313275242 55.5307 0.1144 10224 +10226 2 -66.94579251295238 -1107.2954770296865 44.1078 0.1144 9183 +10227 2 -67.23352389668895 -1106.1939443017056 44.2344 0.1144 10226 +10228 2 -67.64087215000984 -1105.126966522876 44.326 0.1144 10227 +10229 2 -67.95849210118269 -1104.0291329213603 44.4147 0.1144 10228 +10230 2 -68.14519037038633 -1102.901768434481 44.5046 0.1144 10229 +10231 2 -68.30097775795605 -1101.7700764313838 44.599 0.1144 10230 +10232 2 -68.48673890581193 -1100.6421359205647 44.7126 0.1144 10231 +10233 2 -68.69138392810146 -1099.5205206991752 44.9294 0.1144 10232 +10234 2 -68.5749581357378 -1098.394760362837 45.1802 0.1144 10233 +10235 2 -68.39534596739213 -1097.2692488040416 45.4255 0.1144 10234 +10236 2 -68.25989874193232 -1096.1371960053102 45.6551 0.1144 10235 +10237 2 -67.98263084975133 -1095.0307726523547 45.8354 0.1144 10236 +10238 2 -67.895876289245 -1093.8937878783881 45.9592 0.1144 10237 +10239 2 -68.10609088657549 -1092.7741875599402 46.0855 0.1144 10238 +10240 2 -68.59798868986508 -1091.7443902006898 46.1712 0.1144 10239 +10241 2 -69.06853591489272 -1090.7015865811052 46.1653 0.1144 10240 +10242 2 -69.07382537139449 -1089.5634275273478 46.1314 0.1144 10241 +10243 2 -69.07193830250475 -1088.4195660632836 46.1 0.1144 10242 +10244 2 -69.41469245871787 -1087.3289651470918 46.0743 0.1144 10243 +10245 2 -69.6393515028472 -1086.2074444233017 46.0555 0.1144 10244 +10246 2 -69.98913601357651 -1085.118582505493 46.0566 0.1144 10245 +10247 2 -70.62752796808229 -1084.1695581841911 46.0799 0.1144 10246 +10248 2 -71.07024606944759 -1083.1149308648392 46.1132 0.1144 10247 +10249 2 -70.91296294526512 -1081.981546327779 46.1518 0.1144 10248 +10250 2 -70.79132316463853 -1080.8445991989424 46.1927 0.1144 10249 +10251 2 -71.15084628982237 -1080.4103693376273 46.3187 0.1144 10250 +10252 2 -71.91832504524189 -1079.566045531271 46.4892 0.1144 10251 +10253 2 -72.5443843625356 -1078.6107318491595 46.5508 0.1144 10252 +10254 2 -72.90620139109461 -1077.5305571929835 46.5354 0.1144 10253 +10255 2 -72.77425647192194 -1076.406174065084 46.4817 0.1144 10254 +10256 2 -72.33133674482787 -1075.354984303266 46.3985 0.1144 10255 +10257 2 -72.51526749828446 -1074.2473993729186 46.2308 0.1144 10256 +10258 2 -72.82878647887128 -1073.1497447693152 46.0793 0.1144 10257 +10259 2 -72.76876756312606 -1072.0129951531935 45.911 0.1144 10258 +10260 2 -72.39338362870609 -1070.9350022813342 45.7856 0.1144 10259 +10261 2 -71.91067273228714 -1069.8983243368991 45.712 0.1144 10260 +10262 2 -71.74577230308546 -1068.7683569132762 45.6868 0.1144 10261 +10263 2 -71.87054407739589 -1067.6325077796605 45.7598 0.1144 10262 +10264 2 -72.07804421732868 -1066.5085391982811 45.8704 0.1144 10263 +10265 2 -72.06988181577532 -1065.366102585072 45.9847 0.1144 10264 +10266 2 -72.17746185885215 -1064.2276680352047 46.0916 0.1144 10265 +10267 2 -72.23599124115088 -1063.0859635194006 46.1919 0.1144 10266 +10268 2 -72.19707741710022 -1061.9435231120715 46.2924 0.1144 10267 +10269 2 -72.09856314173891 -1060.8060006518317 46.478 0.1144 10268 +10270 2 -72.41662938316921 -1059.7097325614168 46.6547 0.1144 10269 +10271 2 -72.478055322361 -1058.5698084832457 46.8308 0.1144 10270 +10272 2 -72.56188448301361 -1058.035840926343 46.6833 0.1144 10271 +10273 2 -72.69030783606948 -1056.9049360795989 46.5021 0.1144 10272 +10274 2 -72.71458038800077 -1055.762246894727 46.4937 0.1144 10273 +10275 2 -72.65504369113307 -1054.6205115524845 46.4352 0.1144 10274 +10276 2 -72.58245767286766 -1053.4801455937009 46.3187 0.1144 10275 +10277 2 -72.55780619612037 -1052.338372606328 46.1538 0.1144 10276 +10278 2 -72.6261327561457 -1051.2026901589884 45.9463 0.1144 10277 +10279 2 -72.82766629500975 -1050.0817447666018 45.7257 0.1144 10278 +10280 2 -72.9916001563557 -1048.9564687564139 45.5213 0.1144 10279 +10281 2 -72.79116829501507 -1047.869220500973 45.3443 0.1144 10280 +10282 2 -72.34918568926881 -1046.818606763095 45.1623 0.1144 10281 +10283 2 -72.55277516187581 -1045.7970554003905 45.0097 0.1144 10282 +10284 2 -72.93877524598133 -1044.7344451919553 44.9019 0.1144 10283 +10285 2 -73.03659644899824 -1043.6008111671308 44.816 0.1144 10284 +10286 2 -73.3031289359777 -1042.5009206255836 44.7432 0.1144 10285 +10287 2 -73.49040012753835 -1041.3793078132408 44.6734 0.1144 10286 +10288 2 -73.57654991013314 -1040.2384996720712 44.5945 0.1144 10287 +10289 2 -73.57858171233411 -1039.097047035393 44.4688 0.1144 10288 +10290 2 -73.46652728448478 -1037.9618834457729 44.2915 0.1144 10289 +10291 2 -73.33174127581484 -1036.8289458915065 44.0804 0.1144 10290 +10292 2 -72.94170347869328 -1035.7660087264696 43.8152 0.1144 10291 +10293 2 -72.4750681942478 -1034.72723920376 43.5588 0.1144 10292 +10294 2 -72.27715058445509 -1033.6118390649158 43.318 0.1144 10293 +10295 2 -72.18687107730284 -1032.4740961675138 43.1348 0.1144 10294 +10296 2 -72.12257219305926 -1031.3334245787184 43.034 0.1144 10295 +10297 2 -71.9422050028613 -1030.2047491706849 43.0576 0.1144 10296 +10298 2 -72.229186875375 -1029.1107376283103 43.1483 0.1144 10297 +10299 2 -72.7197864599091 -1028.0788510998318 43.2589 0.1144 10298 +10300 2 -73.02823452152512 -1026.9806619115382 43.3773 0.1144 10299 +10301 2 -72.9878489914363 -1025.84271639924 43.4932 0.1144 10300 +10302 2 -73.37861987513043 -1024.783038676318 43.7567 0.1144 10301 +10303 2 -73.9339894531015 -1023.7855650516723 43.9653 0.1144 10302 +10304 2 -74.06072066295724 -1022.6509203317496 44.1333 0.1144 10303 +10305 2 -74.63935158834619 -1021.6114020913211 43.7307 0.1144 10304 +10306 2 -75.42963549833647 -1020.7931862325097 43.5042 0.1144 10305 +10307 2 -75.90342875856527 -1019.7819578129319 43.2642 0.1144 10306 +10308 2 -76.32934905314181 -1018.7263957812787 42.9856 0.1144 10307 +10309 2 -76.91237426749251 -1017.7473299206588 42.7994 0.1144 10308 +10310 2 -77.60769227008771 -1016.8412784401861 42.6868 0.1144 10309 +10311 2 -78.03165312911898 -1015.7845119948399 42.6605 0.1144 10310 +10312 2 -78.50594883953764 -1014.7440124710157 42.665 0.1144 10311 +10313 2 -79.033119584226 -1013.729205762354 42.6325 0.1144 10312 +10314 2 -79.36518088061453 -1012.6361405513804 42.5306 0.1144 10313 +10315 2 -79.51276632701229 -1011.5048065441077 42.3676 0.1144 10314 +10316 2 -79.72859504021673 -1010.3846661303397 42.1394 0.1144 10315 +10317 2 -79.82743855743121 -1009.2516604952679 41.8452 0.1144 10316 +10318 2 -80.24636132452866 -1008.1944970238939 41.5909 0.1144 10317 +10319 2 -80.17136647887742 -1007.058049936201 41.3812 0.1144 10318 +10320 2 -79.94417776483823 -1005.9421473471667 41.1236 0.1144 10319 +10321 2 -79.78007090793989 -1005.7284722678548 40.8355 0.1144 10320 +10322 2 -79.70883846915143 -1004.9769990549827 39.2364 0.1144 10321 +10323 2 -80.41740670921587 -1004.2940162886027 37.9375 0.1144 10322 +10324 2 -81.33259255276784 -1004.1420604668583 36.8166 0.1144 10323 +10325 2 -82.41040842731337 -1003.8807791996813 36.1388 0.1144 10324 +10326 2 -83.45195297699826 -1003.5232530313777 35.4021 0.1144 10325 +10327 2 -84.09763198323904 -1002.6672129500149 34.7399 0.1144 10326 +10328 2 -84.89715825495333 -1001.8843754567644 34.2437 0.1144 10327 +10329 2 -85.76649191950168 -1001.1604105199872 33.8307 0.1144 10328 +10330 2 -86.55208480681978 -1000.3542185667928 33.3463 0.1144 10329 +10331 2 -87.39696261284692 -999.6045396069156 32.9014 0.1144 10330 +10332 2 -88.12230063307103 -998.7411210778015 32.4559 0.1144 10331 +10333 2 -88.49359448866227 -997.6936517690386 31.845 0.1144 10332 +10334 2 -88.80880802149571 -996.6171108693425 31.3009 0.1144 10333 +10335 2 -88.85832828774167 -996.3749915945399 31.1842 0.1144 10334 +10336 2 -89.00318765764214 -995.2675709414219 30.6645 0.1144 10335 +10337 2 -89.14723584575776 -994.1878230544129 30.1902 0.1144 10336 +10338 2 -89.71702963921535 -993.2127144025503 29.734 0.1144 10337 +10339 2 -90.14413652521895 -992.1968521442062 29.2555 0.1144 10338 +10340 2 -90.31835529379882 -991.0832975112068 28.7938 0.1144 10339 +10341 2 -90.38347045686618 -989.9832029400271 28.2993 0.1144 10340 +10342 2 -90.29042033238386 -988.8719283950411 27.8094 0.1144 10341 +10343 2 -90.61453466830935 -987.8290299641056 27.3232 0.1144 10342 +10344 2 -91.1521193613776 -986.8475046267971 26.7952 0.1144 10343 +10345 2 -91.48310218363613 -985.7846476414178 26.2197 0.1144 10344 +10346 2 -91.71087201865436 -984.686519715238 25.6617 0.1144 10345 +10347 2 -91.80480338349807 -983.5813658441872 25.0689 0.1144 10346 +10348 2 -92.3709989583331 -982.8699128443079 24.3251 0.1144 10347 +10349 2 -93.07929480387062 -982.0779506954685 23.5431 0.1144 10348 +10350 2 -93.23211785551538 -981.0035964871713 22.7979 0.1144 10349 +10351 2 -92.45910666760503 -980.2665703252438 22.0622 0.1144 10350 +10352 2 -91.62733042499329 -979.5029306639987 21.6129 0.1144 10351 +10353 2 -91.71767358047839 -978.1981368050857 21.3415 0.1144 10352 +10354 2 -92.06122419779368 -977.1148335357551 21.2809 0.1144 10353 +10355 2 -92.70727730561498 -976.183899729368 21.3593 0.1144 10354 +10356 2 -93.60248616890999 -975.4812391135099 21.5862 0.1144 10355 +10357 2 -94.56680074562465 -974.8869065659109 21.971 0.1144 10356 +10358 2 -95.53013134580848 -974.3027682220663 22.4142 0.1144 10357 +10359 2 -96.21737715859933 -973.6105526828002 22.9072 0.1144 10358 +10360 2 -96.40321188020542 -972.5109461548797 23.4393 0.1144 10359 +10361 2 -96.84752762717184 -971.4800727305458 23.8935 0.1144 10360 +10362 2 -97.43001825683217 -970.5060777888967 24.2342 0.1144 10361 +10363 2 -98.02573720580253 -969.5348144343747 24.4612 0.1144 10362 +10364 2 -98.62422607956645 -968.5611453540497 24.6028 0.1144 10363 +10365 2 -99.22266258751759 -967.5875614665746 24.6786 0.1144 10364 +10366 2 -99.84413320471813 -966.6267274736515 24.7123 0.1144 10365 +10367 2 -100.58987606964365 -965.7717429419712 24.7322 0.1144 10366 +10368 2 -101.4617427846309 -965.0306714668102 24.7538 0.1144 10367 +10369 2 -102.34087983007217 -964.2993510067294 24.784 0.1144 10368 +10370 2 -103.28386716142032 -963.6610380247864 24.8242 0.1144 10369 +10371 2 -104.27237340589426 -963.0882661638888 24.8795 0.1144 10370 +10372 2 -105.22003773176851 -962.4488370626858 24.9651 0.1144 10371 +10373 2 -106.14833665686808 -961.7840057715609 25.0899 0.1144 10372 +10374 2 -107.10619759554339 -961.1629344776177 25.2382 0.1144 10373 +10375 2 -108.09171347806165 -960.5843335743137 25.3893 0.1144 10374 +10376 2 -109.06302868383858 -959.9849136705512 25.5533 0.1144 10375 +10377 2 -110.02227303411908 -959.3659839116489 25.7451 0.1144 10376 +10378 2 -110.84604333940513 -958.6046219122499 26.0031 0.1144 10377 +10379 2 -111.50403515999375 -957.6783267627222 26.3141 0.1144 10378 +10380 2 -112.32967109576265 -956.9141205722428 26.5764 0.1144 10379 +10381 2 -113.25595821950421 -956.2481700602748 26.7744 0.1144 10380 +10382 2 -114.17526184391278 -955.569710322229 26.9183 0.1144 10381 +10383 2 -115.08770077610797 -954.8804577161297 27.0178 0.1144 10382 +10384 2 -115.9573931290175 -954.1406320939114 27.099 0.1144 10383 +10385 2 -116.76384335446062 -953.331062057483 27.1943 0.1144 10384 +10386 2 -117.53341127910801 -952.4854400323713 27.2983 0.1144 10385 +10387 2 -118.13510233977689 -951.5218385237013 27.3899 0.1144 10386 +10388 2 -118.30450345358489 -950.4161216328831 27.4633 0.1144 10387 +10389 2 -118.11683551494247 -949.2949314818358 27.5197 0.1144 10388 +10390 2 -118.02130298932403 -948.1592418250417 27.5647 0.1144 10389 +10391 2 -118.14233489045608 -947.0250848346261 27.6072 0.1144 10390 +10392 2 -118.27374309483798 -945.8893239954434 27.6592 0.1144 10391 +10393 2 -118.5555961719385 -944.7841780263836 27.7274 0.1144 10392 +10394 2 -118.89727564814135 -943.6930339132888 27.8105 0.1144 10393 +10395 2 -118.96101901870313 -942.5625161899826 27.9455 0.1144 10394 +10396 2 -118.40218295124811 -941.6147382361814 28.2453 0.1144 10395 +10397 2 -117.93376722916952 -940.5788652703649 28.5116 0.1144 10396 +10398 2 -117.98970568458702 -939.4436674509495 28.6868 0.1144 10397 +10399 2 -117.92028351555987 -938.3025464703135 28.784 0.1144 10398 +10400 2 -117.72788931816171 -937.1758688354917 28.8114 0.1144 10399 +10401 2 -117.31276658022955 -936.1123025881654 28.67 0.1144 10400 +10402 2 -116.82764685642462 -935.0795435148209 28.4612 0.1144 10401 +10403 2 -116.33779777228096 -934.0479857535863 28.2943 0.1144 10402 +10404 2 -115.80144030553609 -933.1663766180466 28.1649 0.1144 10403 +10405 2 -115.20871229924091 -932.1883757179685 28.0832 0.1144 10404 +10406 2 -114.60310225566451 -931.2185377288594 28.037 0.1144 10405 +10407 2 -113.89830320634886 -930.3180234812854 28.0193 0.1144 10406 +10408 2 -113.16217601805917 -929.4425051875526 28.009 0.1144 10407 +10409 2 -112.4665074190506 -928.5382127291336 27.9942 0.1144 10408 +10410 2 -112.01587658187483 -927.4863914759796 27.9742 0.1144 10409 +10411 2 -111.51675018401215 -926.4787111402796 27.9446 0.1144 10410 +10412 2 -110.49895862402454 -925.9563963880296 27.9026 0.1144 10411 +10413 2 -109.46635541136061 -925.4734555477645 27.8464 0.1144 10412 +10414 2 -108.5881539783989 -924.7416132401981 27.7755 0.1144 10413 +10415 2 -107.62171717494985 -924.218819968494 27.6467 0.1144 10414 +10416 2 -107.38526957300479 -923.670631112775 27.3085 0.1144 10415 +10417 2 -106.81019630948188 -922.7800143649081 27.1017 0.1144 10416 +10418 2 -105.81766938075376 -922.2383670389205 26.9461 0.1144 10417 +10419 2 -104.76469276535218 -921.7952550131105 26.814 0.1144 10418 +10420 2 -103.80515388960148 -921.1825623610221 26.6704 0.1144 10419 +10421 2 -103.38533943646055 -920.155082645926 26.5592 0.1144 10420 +10422 2 -103.66500102175416 -919.0687791120502 26.4997 0.1144 10421 +10423 2 -104.08392689043473 -918.0049268447921 26.4392 0.1144 10422 +10424 2 -104.22959434053683 -916.8765222214495 26.2788 0.1144 10423 +10425 2 -104.13752709730778 -916.5150931098326 25.0433 0.1144 10424 +10426 2 -103.90412941490055 -915.5928084401959 23.7541 0.1144 10425 +10427 2 -103.5341799059056 -914.5342371290437 23.2667 0.1144 10426 +10428 2 -103.02102562604773 -913.5232163552396 22.9296 0.1144 10427 +10429 2 -102.56023582120108 -912.4879225149461 22.5961 0.1144 10428 +10430 2 -102.25644961983804 -911.3961875682392 22.276 0.1144 10429 +10431 2 -102.07662252495999 -910.2731262760793 21.9883 0.1144 10430 +10432 2 -101.90107850016327 -909.147298160709 21.7505 0.1144 10431 +10433 2 -101.70690386513206 -908.0235170827805 21.5337 0.1144 10432 +10434 2 -101.48131348923056 -906.9073057621513 21.2631 0.1144 10433 +10435 2 -101.54193134822074 -905.7883656542048 20.9636 0.1144 10434 +10436 2 -101.87790841411675 -904.7043980665012 20.7003 0.1144 10435 +10437 2 -102.02646931952884 -903.5844626766759 20.4234 0.1144 10436 +10438 2 -101.73947782337146 -902.5003512381543 20.152 0.1144 10437 +10439 2 -101.25511312141901 -901.470756014048 19.8835 0.1144 10438 +10440 2 -100.74980278690865 -900.4511753032473 19.5913 0.1144 10439 +10441 2 -100.3107495650925 -899.4024795616649 19.2946 0.1144 10440 +10442 2 -99.94085001286382 -898.3264492269341 19.0188 0.1144 10441 +10443 2 -99.59377033588851 -897.2415564267778 18.7672 0.1144 10442 +10444 2 -99.26115932053648 -896.1508845409816 18.5339 0.1144 10443 +10445 2 -99.00430247622305 -895.0395175936912 18.3543 0.1144 10444 +10446 2 -98.60205867398898 -893.9744772312804 18.1857 0.1144 10445 +10447 2 -98.26486446917329 -892.8889700695174 17.9059 0.1144 10446 +10448 2 -98.14932033076158 -891.7705597458532 17.4355 0.1144 10447 +10449 2 -98.18048498600984 -890.6537050130149 16.84 0.1144 10448 +10450 2 -98.13497547860086 -889.5393727354893 16.215 0.1144 10449 +10451 2 -98.34251326366382 -888.4502893742304 15.5348 0.1144 10450 +10452 2 -98.43823126930675 -887.328861354518 15.037 0.1144 10451 +10453 2 -98.27016388928365 -886.2063377486317 14.6901 0.1144 10452 +10454 2 -97.64014114294574 -885.2563559913875 14.4674 0.1144 10453 +10455 2 -96.74636993387222 -884.5674125424518 14.023 0.1144 10454 +10456 2 -103.73862494027233 -916.6070158986963 26.4132 0.1144 10424 +10457 2 -102.803486455647 -916.0268112584421 26.8428 0.1144 10456 +10458 2 -101.75410696359035 -916.0800832177722 27.5041 0.1144 10457 +10459 2 -100.82049445044703 -916.6422268962941 28.2783 0.1144 10458 +10460 2 -99.93301211045303 -917.286485963905 29.0746 0.1144 10459 +10461 2 -98.93410463768339 -917.6728024026504 29.832 0.1144 10460 +10462 2 -97.84825148995841 -917.6567026642776 30.6071 0.1144 10461 +10463 2 -97.01945520927532 -917.6789980702148 32.163 0.1144 10462 +10464 2 -96.15716151774407 -918.2582167504604 33.3228 0.1144 10463 +10465 2 -95.19707555000326 -918.7060749697075 34.3759 0.1144 10464 +10466 2 -94.15662389335742 -918.7056747411291 35.4995 0.1144 10465 +10467 2 -93.30270752476949 -918.1002715321374 36.5826 0.1144 10466 +10468 2 -92.36760698704785 -917.8476998703209 37.9439 0.1144 10467 +10469 2 -91.51817341463882 -918.1984185126317 39.5889 0.1144 10468 +10470 2 -90.58993955775102 -918.4940099822774 41.0404 0.1144 10469 +10471 2 -89.69766459470551 -918.9405884975713 42.4007 0.1144 10470 +10472 2 -88.90081993566687 -919.51167611726 43.8234 0.1144 10471 +10473 2 -88.28808864413824 -920.1676446411859 45.5305 0.1144 10472 +10474 2 -87.68193762274862 -920.8545380748919 47.182 0.1144 10473 +10475 2 -87.09032134318917 -921.6510783110132 48.5601 0.1144 10474 +10476 2 -86.29975442586087 -922.2381149105759 49.8929 0.1144 10475 +10477 2 -85.60154397424392 -922.9852156636559 51.1087 0.1144 10476 +10478 2 -85.29623632286086 -922.8177405371239 53.8406 0.1144 10477 +10479 2 -84.41567432045466 -922.246902197558 54.9548 0.1144 10478 +10480 2 -83.62039876583006 -921.4653195773465 55.559 0.1144 10479 +10481 2 -82.78673596888666 -920.7528721119202 56.3486 0.1144 10480 +10482 2 -81.85347172695683 -920.173819519546 57.134 0.1144 10481 +10483 2 -81.12699625574015 -919.4922778335718 58.2938 0.1144 10482 +10484 2 -81.1545021227885 -918.5343378995061 59.8052 0.1144 10483 +10485 2 -80.77472901927351 -917.7233880676135 61.3348 0.1144 10484 +10486 2 -79.9897688075583 -917.1522711303546 62.7992 0.1144 10485 +10487 2 -79.1607552802856 -916.5500848289504 64.0298 0.1144 10486 +10488 2 -78.30573751312022 -915.9050342124624 64.9986 0.1144 10487 +10489 2 -77.35074689252323 -915.5624132052667 66.0579 0.1144 10488 +10490 2 -76.30866405301768 -915.3462035717903 67.0566 0.1144 10489 +10491 2 -75.23829718737963 -915.1126084884854 67.8622 0.1144 10490 +10492 2 -74.76425503779103 -914.1296198616878 68.5782 0.1144 10491 +10493 2 -74.3974662764513 -913.0769823245674 69.1986 0.1144 10492 +10494 2 -73.50066025928555 -912.4103538916489 69.7844 0.1144 10493 +10495 2 -72.45676964805449 -911.9916077134174 70.3018 0.1144 10494 +10496 2 -71.41247650016604 -911.5672145922747 70.7773 0.1144 10495 +10497 2 -70.37135340468194 -911.1286888575114 71.2121 0.1144 10496 +10498 2 -69.47206188479706 -910.444334108669 71.6531 0.1144 10497 +10499 2 -68.79680123207294 -909.5417868517995 72.119 0.1144 10498 +10500 2 -68.12091218959605 -908.6402619091276 72.602 0.1144 10499 +10501 2 -67.4481018035076 -907.7379295787905 73.1041 0.1144 10500 +10502 2 -66.77480058632884 -906.836586735614 73.6098 0.1144 10501 +10503 2 -66.111570042388 -905.9253529096484 74.0984 0.1144 10502 +10504 2 -65.46500516250688 -905.0001825977034 74.5494 0.1144 10503 +10505 2 -64.81648084708038 -904.0738078720656 74.9672 0.1144 10504 +10506 2 -64.1837641587457 -903.1719396542517 75.7235 0.1144 10505 +10507 2 -85.56423040564707 -923.2053755092195 51.7006 0.1144 10477 +10508 2 -85.41691225159451 -924.3341740570067 51.7549 0.1144 10507 +10509 2 -85.82911040600456 -925.2145893916647 51.3517 0.1144 10508 +10510 2 -86.88353649553346 -925.5592882627404 50.6766 0.1144 10509 +10511 2 -87.95613249810842 -925.8089261309817 49.9402 0.1144 10510 +10512 2 -89.06306611425572 -925.9240235655454 49.3209 0.1144 10511 +10513 2 -90.18922177779686 -925.9771038017366 48.853 0.1144 10512 +10514 2 -91.32317374426961 -926.0308678950763 48.5092 0.1144 10513 +10515 2 -92.46149707525666 -926.0752287351343 48.2594 0.1144 10514 +10516 2 -93.60201569217028 -926.0699957175109 48.0673 0.1144 10515 +10517 2 -94.74317190888979 -926.0180849378752 47.8948 0.1144 10516 +10518 2 -95.88312681349942 -925.9614447979006 47.7114 0.1144 10517 +10519 2 -97.02281442576395 -925.9073401174114 47.5037 0.1144 10518 +10520 2 -98.16177845813996 -925.8983343995727 47.2609 0.1144 10519 +10521 2 -99.27569418854708 -926.0740663134403 46.9574 0.1144 10520 +10522 2 -100.38243339356282 -926.2440958170013 46.5545 0.1144 10521 +10523 2 -101.48979827751123 -926.1029814173182 46.039 0.1144 10522 +10524 2 -102.58463170347102 -925.8749322572646 45.4661 0.1144 10523 +10525 2 -103.70014236865902 -925.764296477104 44.9226 0.1144 10524 +10526 2 -104.82508541474257 -925.7145101027799 44.4416 0.1144 10525 +10527 2 -105.95581296239956 -925.6642883647612 44.0238 0.1144 10526 +10528 2 -107.08961916644498 -925.6132592390774 43.6738 0.1144 10527 +10529 2 -108.22734665062757 -925.5820127715084 43.4003 0.1144 10528 +10530 2 -109.36588731719357 -925.6412971756596 43.2337 0.1144 10529 +10531 2 -110.45467325220545 -925.9453738727611 43.1609 0.1144 10530 +10532 2 -111.26368267791298 -926.693728179969 43.1334 0.1144 10531 +10533 2 -111.79305012840692 -927.7026245484615 43.164 0.1144 10532 +10534 2 -112.25923602101196 -928.7465173559548 43.2477 0.1144 10533 +10535 2 -112.64147131203572 -929.8221482556113 43.3538 0.1144 10534 +10536 2 -112.9056453419862 -930.9324959902872 43.475 0.1144 10535 +10537 2 -113.17133251722439 -932.0424826275553 43.6327 0.1144 10536 +10538 2 -113.43705251949976 -933.152606823486 43.8396 0.1144 10537 +10539 2 -113.85966903193471 -934.201880998055 44.1022 0.1144 10538 +10540 2 -114.73459298773128 -934.8538852937259 44.4114 0.1144 10539 +10541 2 -115.82062853672534 -935.160144965118 44.7521 0.1144 10540 +10542 2 -116.82306186146184 -935.6528299247603 45.1976 0.1144 10541 +10543 2 -117.35418923418788 -936.6063479339982 45.7383 0.1144 10542 +10544 2 -117.77943260212422 -937.6425641749568 46.3056 0.1144 10543 +10545 2 -118.5729277191158 -938.4270433520612 46.8076 0.1144 10544 +10546 2 -119.46899992236663 -939.1189271114899 47.2136 0.1144 10545 +10547 2 -120.37265660359958 -939.8072561988188 47.5336 0.1144 10546 +10548 2 -121.20009981936374 -940.5911217068533 47.7632 0.1144 10547 +10549 2 -121.60804603190451 -941.6489855438726 47.8864 0.1144 10548 +10550 2 -121.90562806530752 -942.7531054936045 47.9175 0.1144 10549 +10551 2 -122.19844791133474 -943.8582891967835 47.882 0.1144 10550 +10552 2 -122.84492139519986 -944.7967847346841 47.7904 0.1144 10551 +10553 2 -123.79924869173402 -945.4156644250033 47.6213 0.1144 10552 +10554 2 -124.7782731131042 -945.994555841731 47.3362 0.1144 10553 +10555 2 -125.75609622236453 -946.5687178981198 46.9675 0.1144 10554 +10556 2 -126.46548466431003 -947.4506898298919 46.5727 0.1144 10555 +10557 2 -127.03808062887853 -948.4284063078956 46.1905 0.1144 10556 +10558 2 -127.73726866390345 -949.3227718549053 45.8315 0.1144 10557 +10559 2 -128.72021815953036 -949.8906945072505 45.5118 0.1144 10558 +10560 2 -129.78059784595533 -950.3087770596456 45.2494 0.1144 10559 +10561 2 -130.85840201241203 -950.6853355528027 45.0766 0.1144 10560 +10562 2 -131.9384000797221 -951.0604254415045 44.9686 0.1144 10561 +10563 2 -133.0083627098778 -951.4629177023871 44.9081 0.1144 10562 +10564 2 -133.84756874208006 -952.2406321008107 44.8731 0.1144 10563 +10565 2 -116.99342592184186 -933.2893833679432 28.0622 0.1144 10403 +10566 2 -117.88034524206853 -932.569654551368 27.9604 0.1144 10565 +10567 2 -118.70193636718389 -931.774790743454 27.9231 0.1144 10566 +10568 2 -119.34358597599038 -930.8290600050731 27.8809 0.1144 10567 +10569 2 -119.7420624591366 -929.7593287386424 27.8013 0.1144 10568 +10570 2 -119.73149123019729 -928.6208109965237 27.6781 0.1144 10569 +10571 2 -119.44117401661853 -927.5157570270273 27.5682 0.1144 10570 +10572 2 -118.89549648884304 -926.5116252549572 27.4705 0.1144 10571 +10573 2 -118.50910786142046 -925.4362585460626 27.3631 0.1144 10572 +10574 2 -118.13498070650618 -924.3562210458083 27.2654 0.1144 10573 +10575 2 -117.82790712538832 -923.2543661616337 27.2153 0.1144 10574 +10576 2 -117.72658148598373 -922.1151156295736 27.2159 0.1144 10575 +10577 2 -117.38248666033454 -921.025366836979 27.2809 0.1144 10576 +10578 2 -117.02368009554127 -919.9400739092118 27.3939 0.1144 10577 +10579 2 -116.66429750680805 -918.8557181027925 27.5354 0.1144 10578 +10580 2 -116.34817866823286 -917.7576937952756 27.6746 0.1144 10579 +10581 2 -116.34224299456997 -916.6139261362739 27.7645 0.1144 10580 +10582 2 -116.34958018104987 -915.4703350661381 27.8081 0.1144 10581 +10583 2 -115.87212230309711 -914.431603881095 27.7907 0.1144 10582 +10584 2 -115.23112769079361 -913.4843858454782 27.7236 0.1144 10583 +10585 2 -114.59179239465323 -912.5407701243771 27.4848 0.1144 10584 +10586 2 -92.1584613910328 -979.104224723594 19.5378 0.1144 10352 +10587 2 -92.51063822065106 -978.8305166114014 17.6438 0.1144 10586 +10588 2 -91.84231241855574 -978.1002038686305 16.6748 0.1144 10587 +10589 2 -92.15475774310556 -977.0675051520791 15.9958 0.1144 10588 +10590 2 -91.9698818425151 -976.8505717259299 14.1513 0.1144 10589 +10591 2 -91.46632383001929 -976.2562821264488 12.2167 0.1144 10590 +10592 2 -91.30060500957836 -975.3178465545784 11.0035 0.1144 10591 +10593 2 -91.59124356301922 -974.3402941410201 9.8481 0.1144 10592 +10594 2 -91.27554088079961 -973.3378387971571 8.76 0.1144 10593 +10595 2 -91.06674110223241 -972.386421274473 7.2918 0.1144 10594 +10596 2 -92.30993816164431 -976.8675605404934 15.8642 0.1144 10589 +10597 2 -92.92106771167863 -975.925841785729 15.4412 0.1144 10596 +10598 2 -93.2826557855592 -974.8590251825459 15.4238 0.1144 10597 +10599 2 -92.8215476306166 -973.9686182590298 15.7678 0.1144 10598 +10600 2 -91.83234882835637 -973.4652872947458 16.242 0.1144 10599 +10601 2 -90.74987346209184 -973.1772971361806 16.7805 0.1144 10600 +10602 2 -89.66357543884564 -972.9083205857318 17.3585 0.1144 10601 +10603 2 -88.6056743594371 -972.5454045676418 17.9341 0.1144 10602 +10604 2 -87.59824438201662 -972.0564563795947 18.4859 0.1144 10603 +10605 2 -86.54408627736953 -971.6851594224204 19.008 0.1144 10604 +10606 2 -85.43306641131889 -971.5352705727988 19.5087 0.1144 10605 +10607 2 -84.32003784549332 -971.37757370645 20.014 0.1144 10606 +10608 2 -84.23236908808667 -970.3098685416339 20.3136 0.1144 10607 +10609 2 -84.54304387759313 -969.2103483075477 20.3953 0.1144 10608 +10610 2 -84.67151959646179 -968.0793582679536 20.2948 0.1144 10609 +10611 2 -84.36555251610301 -967.12866563322 19.9746 0.1144 10610 +10612 2 -85.42883566710188 -967.091921779287 19.1678 0.1144 10611 +10613 2 -86.5123231255157 -966.941530065885 18.4395 0.1144 10612 +10614 2 -87.50955558481434 -966.5338771717198 17.8594 0.1144 10613 +10615 2 -88.19386037689046 -965.6520446754137 17.6054 0.1144 10614 +10616 2 -88.78553382267063 -964.6741863300698 17.6037 0.1144 10615 +10617 2 -89.33029573366687 -963.674300776455 17.8413 0.1144 10616 +10618 2 -89.80663537994408 -962.6591206587494 18.3767 0.1144 10617 +10619 2 -89.80892216285412 -961.5674768062847 19.0827 0.1144 10618 +10620 2 -89.51364594172136 -960.501044828504 19.7806 0.1144 10619 +10621 2 -89.57924022208329 -959.4026533270875 20.5173 0.1144 10620 +10622 2 -90.00305972833226 -958.3766711312757 21.1889 0.1144 10621 +10623 2 -90.33047926627819 -957.3022334289535 21.6938 0.1144 10622 +10624 2 -90.47810615192566 -956.175033219304 22.0058 0.1144 10623 +10625 2 -90.6223870888395 -955.0511758568049 22.2146 0.1144 10624 +10626 2 -90.367043389814 -953.939447812107 22.2962 0.1144 10625 +10627 2 -90.33651050484761 -952.8007503795396 22.2163 0.1144 10626 +10628 2 -90.57817607913196 -951.6910916931834 22.0608 0.1144 10627 +10629 2 -91.11901911903757 -950.6887973121826 21.8521 0.1144 10628 +10630 2 -91.78948974771342 -949.7727549353882 21.5269 0.1144 10629 +10631 2 -92.57681001431519 -948.9878142447637 21.0406 0.1144 10630 +10632 2 -93.54031961241128 -948.4077768715051 20.5597 0.1144 10631 +10633 2 -94.48116781776528 -947.7882211318964 20.1183 0.1144 10632 +10634 2 -95.47615131726255 -947.2879810238203 19.5063 0.1144 10633 +10635 2 -96.44813014887592 -946.7050501952517 19.1797 0.1144 10634 +10636 2 -97.32953225987427 -945.9832212828856 18.9936 0.1144 10635 +10637 2 -97.69490947116284 -944.9213161395367 18.8511 0.1144 10636 +10638 2 -97.64445636941912 -943.7865728141435 18.6741 0.1144 10637 +10639 2 -97.40550794052493 -942.6701325388358 18.5305 0.1144 10638 +10640 2 -96.90634630657877 -941.6449408137443 18.3968 0.1144 10639 +10641 2 -96.55953392194871 -940.5575125541026 18.2576 0.1144 10640 +10642 2 -96.92370431049784 -939.4801930155701 18.1093 0.1144 10641 +10643 2 -97.50923215729688 -938.5012568886328 17.9102 0.1144 10642 +10644 2 -98.09711336408594 -937.5251758793389 17.6614 0.1144 10643 +10645 2 -98.68481247137964 -936.5516826953432 17.3722 0.1144 10644 +10646 2 -98.9909040714225 -935.4573271852903 17.0452 0.1144 10645 +10647 2 -99.21234379891774 -934.3433354720864 16.7068 0.1144 10646 +10648 2 -99.43485820642329 -933.2298869557856 16.369 0.1144 10647 +10649 2 -99.6521110779461 -932.1400845012944 15.7058 0.1144 10648 +10650 2 -87.97774867585403 -996.7481183653938 31.5949 0.1144 10334 +10651 2 -86.9922981633213 -997.2502272055359 31.9136 0.1144 10650 +10652 2 -86.16220256860512 -998.0304730793686 32.0894 0.1144 10651 +10653 2 -85.19408444755146 -998.5284457128411 32.3005 0.1144 10652 +10654 2 -84.31442702354462 -998.0348130190397 32.5044 0.1144 10653 +10655 2 -83.4668424613046 -997.2707294765835 32.6654 0.1144 10654 +10656 2 -82.37568603657351 -996.9813942440798 32.8188 0.1144 10655 +10657 2 -81.656124598811 -996.126857511525 33.094 0.1144 10656 +10658 2 -80.27772557693683 -1004.2000586849442 37.3223 0.1144 10323 +10659 2 -79.44249898540275 -1003.5294939671172 36.7419 0.1144 10658 +10660 2 -78.66795552187685 -1002.6922218470098 36.5994 0.1144 10659 +10661 2 -78.12125257832068 -1001.6941504810709 36.4728 0.1144 10660 +10662 2 -77.51158300340805 -1000.728625287497 36.3378 0.1144 10661 +10663 2 -77.21909412088664 -999.7189581821591 35.3377 0.1144 10662 +10664 2 -80.39299661060014 -1005.0175716749317 40.8391 0.1144 10320 +10665 2 -80.83981258096841 -1003.9694541535515 40.6146 0.1144 10664 +10666 2 -81.16759080727547 -1002.8791557657885 40.3808 0.1144 10665 +10667 2 -81.41456176583878 -1001.7673586459746 40.129 0.1144 10666 +10668 2 -81.69677594034707 -1000.6637258222028 39.8902 0.1144 10667 +10669 2 -82.04023275259982 -999.5763739480989 39.6738 0.1144 10668 +10670 2 -82.426685330129 -998.501951658996 39.5147 0.1144 10669 +10671 2 -82.83171305049686 -997.4322563211855 39.4198 0.1144 10670 +10672 2 -83.31492118310715 -996.3971176490361 39.38 0.1144 10671 +10673 2 -83.60492073398393 -995.2983876728857 39.3784 0.1144 10672 +10674 2 -83.72363210216301 -994.1615131234894 39.4013 0.1144 10673 +10675 2 -83.86217539268648 -993.0273208969903 39.4778 0.1144 10674 +10676 2 -84.21597257956893 -991.9449164113408 39.5797 0.1144 10675 +10677 2 -84.71975672981301 -990.9198429017998 39.6617 0.1144 10676 +10678 2 -84.91830541735101 -989.8037535018515 39.7202 0.1144 10677 +10679 2 -85.19681564730107 -988.6952615840582 39.7538 0.1144 10678 +10680 2 -85.7231430757042 -987.6839274562298 39.762 0.1144 10679 +10681 2 -86.22077301475446 -986.6537799261347 39.7477 0.1144 10680 +10682 2 -86.74589913104774 -985.6377164379675 39.7191 0.1144 10681 +10683 2 -87.52918861514198 -984.811210343551 39.6819 0.1144 10682 +10684 2 -88.25581383286234 -983.9285109139756 39.6116 0.1144 10683 +10685 2 -88.87216116527924 -982.967227529212 39.5032 0.1144 10684 +10686 2 -89.47216318433104 -981.9931973514794 39.4271 0.1144 10685 +10687 2 -90.11006430774643 -981.0451625173381 39.3176 0.1144 10686 +10688 2 -90.82748791045597 -980.1552811464378 39.2031 0.1144 10687 +10689 2 -91.2913135125624 -979.1123368666075 39.0958 0.1144 10688 +10690 2 -91.68524273486517 -978.0412190869886 38.9486 0.1144 10689 +10691 2 -92.23575632039783 -977.0407606110167 38.7876 0.1144 10690 +10692 2 -92.64501164345126 -975.9750724387297 38.6322 0.1144 10691 +10693 2 -93.03797091736922 -974.903241076508 38.4238 0.1144 10692 +10694 2 -93.36107525073334 -973.8073700121208 38.3166 0.1144 10693 +10695 2 -93.45430775365705 -972.6682156764847 38.2029 0.1144 10694 +10696 2 -93.7901058216408 -971.5801471181951 37.9366 0.1144 10695 +10697 2 -94.07895642622046 -970.476602588856 37.7177 0.1144 10696 +10698 2 -94.29870090893246 -969.365559798358 37.4769 0.1144 10697 +10699 2 -94.17357692837308 -968.2560509703225 37.2868 0.1144 10698 +10700 2 -94.67117093880319 -967.2324546774491 37.1462 0.1144 10699 +10701 2 -94.91346800442349 -966.1150848810112 37.0653 0.1144 10700 +10702 2 -95.22275938232477 -965.0134231118842 37.0563 0.1144 10701 +10703 2 -95.54296715879576 -963.9157716098638 37.049 0.1144 10702 +10704 2 -95.9397070526052 -962.8704445286781 36.9477 0.1144 10703 +10705 2 -96.79924113038052 -962.1230836927074 36.7923 0.1144 10704 +10706 2 -97.6757841473574 -961.4049587248995 36.6864 0.1144 10705 +10707 2 -98.35461927792491 -960.4861932784947 36.6576 0.1144 10706 +10708 2 -98.81377029455172 -959.4617389486535 36.6643 0.1144 10707 +10709 2 -98.93564551196908 -958.3241093774047 36.6652 0.1144 10708 +10710 2 -99.15668511185342 -957.2218445520189 36.6131 0.1144 10709 +10711 2 -99.67316299671711 -956.2045735485755 36.472 0.1144 10710 +10712 2 -100.08268491957924 -955.1604125434161 36.2138 0.1144 10711 +10713 2 -100.39255473046708 -954.0751874836704 35.9131 0.1144 10712 +10714 2 -101.02166937125386 -953.1500405879032 35.6678 0.1144 10713 +10715 2 -101.56107524866837 -952.1938151179377 35.4886 0.1144 10714 +10716 2 -101.79067547808586 -951.0753316112862 35.3738 0.1144 10715 +10717 2 -102.16826179607 -950.0088408694271 35.3125 0.1144 10716 +10718 2 -102.53795800606011 -948.937617665646 35.2862 0.1144 10717 +10719 2 -102.71606040964696 -947.8089604706411 35.233 0.1144 10718 +10720 2 -102.88008256542585 -946.6770480303817 35.1865 0.1144 10719 +10721 2 -102.95206380577977 -945.5396210740294 35.1918 0.1144 10720 +10722 2 -103.10873284730147 -944.4152790836063 35.2106 0.1144 10721 +10723 2 -103.48653719340115 -943.3396492792273 35.222 0.1144 10722 +10724 2 -103.85757847732984 -942.2597450169797 35.24 0.1144 10723 +10725 2 -104.22081484611422 -941.1751606586229 35.2372 0.1144 10724 +10726 2 -104.76870467772858 -940.1810713203772 35.1842 0.1144 10725 +10727 2 -105.22557109002256 -939.1473481943335 35.0941 0.1144 10726 +10728 2 -105.47570589782413 -938.0347960526673 34.9709 0.1144 10727 +10729 2 -105.58845066493433 -936.9009446922636 34.7757 0.1144 10728 +10730 2 -105.66916532956762 -935.764777617 34.5064 0.1144 10729 +10731 2 -105.92762560905763 -934.6627424388292 34.237 0.1144 10730 +10732 2 -105.87886395797753 -933.5558016132275 33.9368 0.1144 10731 +10733 2 -105.55735144069055 -932.4665521692397 33.6176 0.1144 10732 +10734 2 -105.52784638055138 -931.3391681612698 33.3987 0.1144 10733 +10735 2 -105.43952630894444 -930.2026296775608 33.229 0.1144 10734 +10736 2 -105.6307163715957 -929.0834256926039 33.0722 0.1144 10735 +10737 2 -105.67311777610828 -927.943897947924 32.9428 0.1144 10736 +10738 2 -105.39741539502788 -926.8370283047109 32.8017 0.1144 10737 +10739 2 -105.19552964991487 -925.7126157354464 32.632 0.1144 10738 +10740 2 -105.05660984362183 -924.5797196204298 32.4626 0.1144 10739 +10741 2 -105.38736981967182 -923.4912540361124 32.303 0.1144 10740 +10742 2 -106.07850165883124 -922.5853291877393 32.1174 0.1144 10741 +10743 2 -106.14945748340449 -921.4539626375182 31.8844 0.1144 10742 +10744 2 -106.22188501401595 -920.3181011922663 31.5991 0.1144 10743 +10745 2 -106.00477478621653 -919.6139440514341 31.2794 0.1144 10744 +10746 2 -105.94572581885609 -918.4779080179152 31.0299 0.1144 10745 +10747 2 -105.96126184492496 -917.3406477478388 30.7266 0.1144 10746 +10748 2 -105.92636069702743 -916.2046647726692 30.4214 0.1144 10747 +10749 2 -106.03344139149755 -915.0888125311641 30.1378 0.1144 10748 +10750 2 -106.44781689775147 -914.0302625466018 29.8561 0.1144 10749 +10751 2 -106.98265189733849 -913.0268575569706 29.5943 0.1144 10750 +10752 2 -107.52153240011566 -912.0300475581611 29.3308 0.1144 10751 +10753 2 -107.35245021712322 -911.0357842351956 29.1348 0.1144 10752 +10754 2 -107.08162744546516 -909.9776924497859 29.0035 0.1144 10753 +10755 2 -107.15267156447135 -908.8396894694934 28.8302 0.1144 10754 +10756 2 -107.12958249724153 -907.7041589877473 28.5709 0.1144 10755 +10757 2 -107.12287777358011 -906.5681352658644 28.2738 0.1144 10756 +10758 2 -107.2145088367831 -905.4359784577074 27.9662 0.1144 10757 +10759 2 -107.57003650453231 -904.3681364387436 27.6536 0.1144 10758 +10760 2 -108.23822493792181 -903.4601990964757 27.3466 0.1144 10759 +10761 2 -108.64039374652668 -902.4236085411524 26.9967 0.1144 10760 +10762 2 -108.22392214053627 -901.39947477479 26.7558 0.1144 10761 +10763 2 -108.23437321948816 -900.2725877063804 26.5835 0.1144 10762 +10764 2 -108.67962367875592 -899.2249164752577 26.4174 0.1144 10763 +10765 2 -109.25739897622344 -898.2412150593616 26.2056 0.1144 10764 +10766 2 -109.68679185163316 -897.1864963439937 25.9491 0.1144 10765 +10767 2 -110.0352836542366 -896.1062302918018 25.5951 0.1144 10766 +10768 2 -109.95542971456385 -894.9734871486671 25.2629 0.1144 10767 +10769 2 -110.05110938254012 -893.8412365354475 24.9397 0.1144 10768 +10770 2 -110.19783739551713 -893.3338410386132 24.5761 0.1144 10769 +10771 2 -110.6004531869161 -892.2747533677774 24.198 0.1144 10770 +10772 2 -110.96276035402894 -891.2176518510541 23.7813 0.1144 10771 +10773 2 -111.07001763736477 -890.0885267494062 23.4203 0.1144 10772 +10774 2 -111.31101889327618 -888.9864416144692 23.0579 0.1144 10773 +10775 2 -111.64766268659176 -887.9122743060753 22.6783 0.1144 10774 +10776 2 -111.63128672476665 -886.7984773057766 22.2391 0.1144 10775 +10777 2 -111.22506789150955 -885.761864731327 21.7793 0.1144 10776 +10778 2 -110.46731293002324 -884.9455937111733 21.352 0.1144 10777 +10779 2 -110.10195653076661 -884.0281201793904 20.9401 0.1144 10778 +10780 2 -110.13486328598123 -882.8975462961516 20.5553 0.1144 10779 +10781 2 -110.03540878768908 -881.766136607856 20.2455 0.1144 10780 +10782 2 -110.00460861037755 -880.6299746347739 19.9601 0.1144 10781 +10783 2 -110.03760366002513 -879.4927643214639 19.6709 0.1144 10782 +10784 2 -109.80203641594815 -878.3904925883971 19.4106 0.1144 10783 +10785 2 -109.38031868719426 -877.3309718442611 19.208 0.1144 10784 +10786 2 -109.66658077393919 -876.2513078420398 19.1003 0.1144 10785 +10787 2 -109.60400685993287 -875.1145136850853 18.9575 0.1144 10786 +10788 2 -109.74954767793545 -873.981922898307 18.7967 0.1144 10787 +10789 2 -110.06659160516816 -872.885026418139 18.6258 0.1144 10788 +10790 2 -110.2457163229526 -871.7569976128868 18.4797 0.1144 10789 +10791 2 -110.472419995477 -870.6367336686023 18.3272 0.1144 10790 +10792 2 -110.6278877248889 -869.5076623178403 18.13 0.1144 10791 +10793 2 -110.56398276509003 -868.3686414329953 17.9499 0.1144 10792 +10794 2 -110.30275765784543 -867.2599889431027 17.8428 0.1144 10793 +10795 2 -110.44441243179446 -866.125126887601 17.8233 0.1144 10794 +10796 2 -110.68158621263117 -865.0073076993226 17.9008 0.1144 10795 +10797 2 -111.05534195395757 -863.9317717000062 18.0316 0.1144 10796 +10798 2 -111.5939168267229 -862.9266745671748 18.191 0.1144 10797 +10799 2 -112.00343634053851 -861.8651397312865 18.4057 0.1144 10798 +10800 2 -112.05165068170149 -860.8057172908473 18.6292 0.1144 10799 +10801 2 -111.62116249906367 -859.8763803365573 18.9128 0.1144 10800 +10802 2 -112.1179898685418 -858.8779018115316 19.1923 0.1144 10801 +10803 2 -112.86301364023507 -858.0132021933913 19.378 0.1144 10802 +10804 2 -113.3931569246133 -857.0458837359904 19.5987 0.1144 10803 +10805 2 -113.7755992350358 -855.9823778454572 19.8269 0.1144 10804 +10806 2 -114.24819970067128 -854.9448272443387 19.9873 0.1144 10805 +10807 2 -114.66226957691345 -853.8779901257546 20.0672 0.1144 10806 +10808 2 -115.401560804398 -853.1144704855592 20.1371 0.1144 10807 +10809 2 -116.45782699581648 -852.6827703780002 20.2358 0.1144 10808 +10810 2 -117.16090816055441 -851.9036840632759 20.3196 0.1144 10809 +10811 2 -117.11052794002441 -850.8213373473944 20.4187 0.1144 10810 +10812 2 -117.05054736194575 -849.69541032478 20.567 0.1144 10811 +10813 2 -117.01899216278184 -848.5560845024598 20.7211 0.1144 10812 +10814 2 -116.97019286657164 -847.4142584567377 20.8738 0.1144 10813 +10815 2 -117.34932446434408 -846.3716068027466 21.0495 0.1144 10814 +10816 2 -117.78830269253112 -845.3186716265948 21.2094 0.1144 10815 +10817 2 -118.2359619791846 -844.2670815243815 21.282 0.1144 10816 +10818 2 -118.42140036729944 -843.1484504617816 21.3666 0.1144 10817 +10819 2 -118.16373544278434 -842.0580674847159 21.7079 0.1144 10818 +10820 2 -118.25455911832225 -840.9228320201704 21.9732 0.1144 10819 +10821 2 -118.22628740382595 -840.8531023266429 20.8512 0.1144 10820 +10822 2 -118.15534518183003 -840.1689492873759 19.09 0.1144 10821 +10823 2 -118.430355798628 -839.1469287099665 18.175 0.1144 10822 +10824 2 -118.78574142105845 -838.13393356715 17.2117 0.1144 10823 +10825 2 -118.93200471796507 -837.0811362514344 16.2086 0.1144 10824 +10826 2 -118.69877852224198 -836.03406387971 15.3262 0.1144 10825 +10827 2 -118.16209250103782 -835.074311977058 14.6116 0.1144 10826 +10828 2 -118.13674726455224 -834.0100533670446 13.8962 0.1144 10827 +10829 2 -118.59669164069805 -832.9995854799489 13.2849 0.1144 10828 +10830 2 -118.87577720205164 -831.9142190674208 12.7622 0.1144 10829 +10831 2 -119.36575080587932 -830.900728683869 12.3139 0.1144 10830 +10832 2 -120.20385152158951 -830.15768305248 11.8552 0.1144 10831 +10833 2 -120.34843739597858 -829.066175450616 11.4011 0.1144 10832 +10834 2 -119.90233668991712 -828.0333372928916 11.0194 0.1144 10833 +10835 2 -119.22903547273836 -827.1319944497151 10.5339 0.1144 10834 +10836 2 -118.8117767103951 -826.0804966488388 10.1145 0.1144 10835 +10837 2 -118.46018190707682 -825.0184175207698 9.5357 0.1144 10836 +10838 2 -118.82360229957243 -840.0801369876275 22.2676 0.1144 10820 +10839 2 -119.4062335894784 -839.0994204230572 22.4443 0.1144 10838 +10840 2 -119.92689763777796 -838.0820227875143 22.5348 0.1144 10839 +10841 2 -120.2998459914393 -837.0034081318095 22.5911 0.1144 10840 +10842 2 -120.38282882321272 -835.8700438083763 22.6521 0.1144 10841 +10843 2 -120.5693121658839 -834.7451295881328 22.7345 0.1144 10842 +10844 2 -120.6842836608846 -833.6099471819366 22.8637 0.1144 10843 +10845 2 -120.95944794210095 -832.5047981112938 23.062 0.1144 10844 +10846 2 -121.27172968195785 -831.4089653845732 23.2905 0.1144 10845 +10847 2 -121.53286608117898 -830.3004758758264 23.5453 0.1144 10846 +10848 2 -122.07165828952324 -829.3103023070883 23.9371 0.1144 10847 +10849 2 -122.6038171693792 -828.3133516480332 24.3731 0.1144 10848 +10850 2 -122.84120518421176 -827.2171448197321 24.896 0.1144 10849 +10851 2 -123.26604769719495 -826.16772838706 25.2968 0.1144 10850 +10852 2 -123.74974355931238 -825.1382890236343 25.599 0.1144 10851 +10853 2 -124.57714101517104 -825.1728851222397 26.647 0.1144 10852 +10854 2 -125.61500135417268 -825.4966024321373 27.3836 0.1144 10853 +10855 2 -126.63318345293328 -825.9504895037348 28.0006 0.1144 10854 +10856 2 -127.63968260116147 -825.8159259328255 28.8232 0.1144 10855 +10857 2 -128.63475060097204 -825.3398008171752 29.5624 0.1144 10856 +10858 2 -129.70749865812985 -825.0712961694236 30.2061 0.1144 10857 +10859 2 -130.72783949296462 -824.6806645260962 30.9851 0.1144 10858 +10860 2 -131.77005077006893 -824.3329386371024 31.7568 0.1144 10859 +10861 2 -132.84198764544195 -824.0921067554597 32.5318 0.1144 10860 +10862 2 -133.93298259275286 -824.0429340502056 33.3508 0.1144 10861 +10863 2 -135.02579011219728 -824.0150649733341 34.1799 0.1144 10862 +10864 2 -135.08885565079797 -824.0980822476872 35.98 0.1144 10863 +10865 2 -135.32157097978208 -824.1672937760319 38.7164 0.1144 10864 +10866 2 -135.62244699884704 -824.5321790609526 41.116 0.1144 10865 +10867 2 -135.65092883946778 -824.7806914042171 43.7226 0.1144 10866 +10868 2 -136.28790676871415 -824.8498975286066 45.864 0.1144 10867 +10869 2 -137.20944462026324 -824.7181620430217 47.4684 0.1144 10868 +10870 2 -138.20036440354164 -824.5697965379087 48.8149 0.1144 10869 +10871 2 -138.3844018772442 -823.9994114852705 50.5742 0.1144 10870 +10872 2 -138.26274427435183 -822.9041235652884 51.2296 0.1144 10871 +10873 2 -138.12729704889196 -821.7720707665571 51.3433 0.1144 10872 +10874 2 -137.92130723160986 -820.654525991089 51.091 0.1144 10873 +10875 2 -137.52413365581012 -819.6140828399816 50.542 0.1144 10874 +10876 2 -137.10485929798912 -818.5922172407594 49.8204 0.1144 10875 +10877 2 -136.93726492679056 -817.5103633565668 49.0963 0.1144 10876 +10878 2 -136.75078909020493 -816.4395580136731 48.2437 0.1144 10877 +10879 2 -136.22473194391318 -815.5106372157386 47.304 0.1144 10878 +10880 2 -135.39362483776742 -814.774171664532 46.6578 0.1144 10879 +10881 2 -134.5410429303068 -814.0378875202841 46.1751 0.1144 10880 +10882 2 -133.69024766364532 -813.2853292273749 45.8315 0.1144 10881 +10883 2 -133.26870583122061 -812.236598249709 45.995 0.1144 10882 +10884 2 -135.69540810786046 -823.5417281906053 34.9751 0.1144 10863 +10885 2 -136.622808249279 -822.8871434690476 35.31 0.1144 10884 +10886 2 -137.59523647273286 -822.2990893556954 35.5519 0.1144 10885 +10887 2 -138.66569102925652 -821.9405524922939 35.7566 0.1144 10886 +10888 2 -139.79663901407548 -821.8985655224844 35.95 0.1144 10887 +10889 2 -140.93490928671318 -821.9670741820051 36.1362 0.1144 10888 +10890 2 -141.99625631737715 -821.6821711625391 36.3457 0.1144 10889 +10891 2 -143.00363954058187 -821.1531648094528 36.6369 0.1144 10890 +10892 2 -144.1079268691264 -820.8879653637217 36.696 0.1144 10891 +10893 2 -145.21516071133016 -820.607087332045 36.5842 0.1144 10892 +10894 2 -146.2350087144761 -820.0992415380492 36.4272 0.1144 10893 +10895 2 -147.0992166851944 -819.3574533787025 36.2404 0.1144 10894 +10896 2 -147.83444327916112 -818.4867316920976 36.0231 0.1144 10895 +10897 2 -148.20325473361623 -817.4148472715267 35.7854 0.1144 10896 +10898 2 -148.37150139049754 -816.2936307926751 35.4413 0.1144 10897 +10899 2 -149.18952753247538 -815.6617303883068 34.8085 0.1144 10898 +10900 2 -150.31127039225254 -815.7200800801567 34.333 0.1144 10899 +10901 2 -151.42142911975213 -815.9151007194657 33.8814 0.1144 10900 +10902 2 -152.54513692570424 -815.9853398598532 33.4373 0.1144 10901 +10903 2 -153.61626641341206 -815.741429321822 33.026 0.1144 10902 +10904 2 -154.58311885865868 -815.1647378972971 32.6388 0.1144 10903 +10905 2 -155.6687020032184 -814.873251506109 32.2899 0.1144 10904 +10906 2 -156.80101047519523 -814.7635504382497 31.976 0.1144 10905 +10907 2 -157.9332306527392 -814.6604858004617 31.6828 0.1144 10906 +10908 2 -159.04591633418585 -814.458199927738 31.4163 0.1144 10907 +10909 2 -160.00599409816192 -813.9055156624302 31.1724 0.1144 10908 +10910 2 -160.8307874101822 -813.120719426171 30.9285 0.1144 10909 +10911 2 -161.7199389689289 -812.4103445986481 30.6634 0.1144 10910 +10912 2 -162.65170427169554 -811.7597342155767 30.3444 0.1144 10911 +10913 2 -163.59949763871595 -811.1418651085385 29.9404 0.1144 10912 +10914 2 -164.54991716870109 -810.535000694503 29.4694 0.1144 10913 +10915 2 -165.49824752945835 -809.9294344992228 28.9629 0.1144 10914 +10916 2 -166.44474818835283 -809.3201612578014 28.4704 0.1144 10915 +10917 2 -167.40683603717713 -808.7271597559949 28.0403 0.1144 10916 +10918 2 -168.39426139847444 -808.1672222899625 27.6951 0.1144 10917 +10919 2 -169.39559041871402 -807.6238129293272 27.4387 0.1144 10918 +10920 2 -170.4018606242418 -807.0834407858306 27.2642 0.1144 10919 +10921 2 -171.45767432223658 -806.6635527589394 27.2176 0.1144 10920 +10922 2 -172.3288496865321 -806.0173694918669 27.3305 0.1144 10921 +10923 2 -172.94247945996824 -805.0584066400563 27.5465 0.1144 10922 +10924 2 -173.50680289938066 -804.0704276647082 27.8149 0.1144 10923 +10925 2 -174.0725871182682 -803.0821727848023 28.1014 0.1144 10924 +10926 2 -174.6384237029684 -802.0938327120466 28.3632 0.1144 10925 +10927 2 -175.21490078168054 -801.1080421269223 28.5267 0.1144 10926 +10928 2 -175.7595360605772 -800.1039704098717 28.5216 0.1144 10927 +10929 2 -176.08058956238 -799.0202201577471 28.2904 0.1144 10928 +10930 2 -176.07116968878427 -797.9038907995462 27.8085 0.1144 10929 +10931 2 -175.57328534974465 -796.9291362484211 27.2042 0.1144 10930 +10932 2 -174.91401201456114 -796.0311338433485 26.5662 0.1144 10931 +10933 2 -173.91228816455595 -795.694649225081 25.8575 0.1144 10932 +10934 2 -172.81524622373433 -795.5655598371421 25.1341 0.1144 10933 +10935 2 -172.27572490775123 -794.6847057234548 24.3036 0.1144 10934 +10936 2 -171.99617722933039 -793.6037612357546 23.6847 0.1144 10935 +10937 2 -171.8231655624361 -792.4848892086137 23.2925 0.1144 10936 +10938 2 -171.64952860737196 -791.3603506997861 22.9975 0.1144 10937 +10939 2 -123.62914482047003 -824.8385543506489 25.7425 0.1144 10852 +10940 2 -123.735106294097 -823.7247139105019 25.9387 0.1144 10939 +10941 2 -124.12699088800463 -822.6523393513773 26.0343 0.1144 10940 +10942 2 -124.48364319253042 -821.5675815057377 26.2135 0.1144 10941 +10943 2 -124.966137742538 -820.5334127819732 26.3967 0.1144 10942 +10944 2 -125.44835638798784 -819.4977832787334 26.4974 0.1144 10943 +10945 2 -125.75315287085829 -818.3946498035683 26.5305 0.1144 10944 +10946 2 -125.25377631037972 -817.3719083451124 26.5507 0.1144 10945 +10947 2 -125.45356534023085 -816.2473082723972 26.5664 0.1144 10946 +10948 2 -124.77152309855532 -815.8253750187062 26.4025 0.1144 10947 +10949 2 -123.876877746758 -815.2579702297703 25.4035 0.1144 10948 +10950 2 -123.20345089178994 -814.6211263548623 24.4014 0.1144 10949 +10951 2 -123.40484848182703 -813.9352278122722 22.8952 0.1144 10950 +10952 2 -122.92489789170054 -813.0426293969491 21.6385 0.1144 10951 +10953 2 -122.29283251756607 -812.2095944980282 20.504 0.1144 10952 +10954 2 -121.44463017838441 -811.5687331465591 19.4676 0.1144 10953 +10955 2 -120.5567273733572 -810.9531210131302 18.5453 0.1144 10954 +10956 2 -119.62524046747734 -810.3778606597472 17.7507 0.1144 10955 +10957 2 -118.50820914577326 -810.3599688646418 17.1541 0.1144 10956 +10958 2 -117.46436698758285 -810.7846331070549 16.7278 0.1144 10957 +10959 2 -116.91332733487633 -811.7685696807958 16.2666 0.1144 10958 +10960 2 -125.4083819959196 -815.4097255090855 26.6066 0.1144 10947 +10961 2 -125.29186550007651 -814.2732277720897 26.7066 0.1144 10960 +10962 2 -125.48879561816463 -813.1817324818618 26.8462 0.1144 10961 +10963 2 -126.09564830128366 -812.2294029585396 26.9989 0.1144 10962 +10964 2 -126.65391133456473 -811.2403985674109 27.1023 0.1144 10963 +10965 2 -126.67196809943641 -810.1383760026499 27.1741 0.1144 10964 +10966 2 -126.53331558548848 -809.0029444281479 27.2527 0.1144 10965 +10967 2 -126.66779934467576 -807.8730649971842 27.3039 0.1144 10966 +10968 2 -126.9473318888233 -806.7652014691437 27.3823 0.1144 10967 +10969 2 -127.11871266948896 -805.6364036138931 27.5061 0.1144 10968 +10970 2 -127.00018127070474 -804.5054754519383 27.6924 0.1144 10969 +10971 2 -127.29268035244677 -803.4135640053548 27.8854 0.1144 10970 +10972 2 -127.77387668369899 -802.3773061123622 28.0428 0.1144 10971 +10973 2 -128.21098066919046 -801.3232188883303 28.2397 0.1144 10972 +10974 2 -128.98504899949822 -800.4897536041015 28.3945 0.1144 10973 +10975 2 -129.45924780327132 -799.4518942713883 28.4962 0.1144 10974 +10976 2 -129.56821125795344 -798.3156012565616 28.5564 0.1144 10975 +10977 2 -129.10149078065814 -797.2767793680391 28.6726 0.1144 10976 +10978 2 -129.56855401853733 -797.1637199508207 29.5403 0.1144 10977 +10979 2 -130.50416832377476 -797.0659911329874 31.1234 0.1144 10978 +10980 2 -131.5568136738969 -797.1208388026388 32.0989 0.1144 10979 +10981 2 -132.6263026797027 -797.3163324507723 32.9535 0.1144 10980 +10982 2 -133.29799974634054 -797.9145512323817 34.389 0.1144 10981 +10983 2 -134.28470293050765 -797.567568053604 35.5205 0.1144 10982 +10984 2 -135.3315278327512 -797.413421746341 36.5823 0.1144 10983 +10985 2 -136.13956970143536 -797.9624557238444 37.9789 0.1144 10984 +10986 2 -137.076258674705 -798.2844367284939 39.3526 0.1144 10985 +10987 2 -137.65815326189738 -798.2379701878835 41.6861 0.1144 10986 +10988 2 -137.51198015391222 -798.1064512443737 44.345 0.1144 10987 +10989 2 -136.70390945938794 -797.7936869838657 46.1387 0.1144 10988 +10990 2 -135.90485978981172 -797.2649702491673 47.6568 0.1144 10989 +10991 2 -135.16439477426638 -796.5909107185963 49.0028 0.1144 10990 +10992 2 -134.7321497709795 -795.7102633276768 50.3782 0.1144 10991 +10993 2 -134.639468255133 -794.7293906006523 51.7796 0.1144 10992 +10994 2 -134.55714011808885 -793.6770583917701 52.8374 0.1144 10993 +10995 2 -134.004992846518 -792.7292835395521 53.6312 0.1144 10994 +10996 2 -133.20454094876055 -791.9713993469629 54.3802 0.1144 10995 +10997 2 -132.40836661045486 -791.2000632963187 55.0598 0.1144 10996 +10998 2 -131.82181943922444 -790.2406515672255 55.5853 0.1144 10997 +10999 2 -131.23252498355922 -789.2767340165386 56.0213 0.1144 10998 +11000 2 -130.6425083330787 -788.309790175276 56.4082 0.1144 10999 +11001 2 -130.05110827099293 -787.3407047989726 56.7563 0.1144 11000 +11002 2 -129.4988602866788 -786.8454881859427 57.2863 0.1144 11001 +11003 2 -128.55516737568644 -786.2681246351856 57.8024 0.1144 11002 +11004 2 -127.5033957775251 -786.4085486904651 58.0717 0.1144 11003 +11005 2 -126.39595971118794 -786.3227223601478 58.0734 0.1144 11004 +11006 2 -125.55622150334192 -785.567452711424 58.0588 0.1144 11005 +11007 2 -124.55678534156758 -785.0175675156443 58.1507 0.1144 11006 +11008 2 -123.54687055396445 -784.4868303850601 58.3453 0.1144 11007 +11009 2 -122.96846195451914 -783.7217563611333 59.176 0.1144 11008 +11010 2 -122.35982020443366 -782.767544592157 59.4882 0.1144 11009 +11011 2 -121.95980002850699 -781.7078619798378 59.6982 0.1144 11010 +11012 2 -121.43050856080984 -780.7446734249728 59.9432 0.1144 11011 +11013 2 -120.52404292458006 -780.0719900965526 60.1807 0.1144 11012 +11014 2 -119.52871083497485 -779.5152371069763 60.3974 0.1144 11013 +11015 2 -118.45896684846002 -779.2699346746291 60.7054 0.1144 11014 +11016 2 -117.36761911418048 -779.0288427152383 61.1461 0.1144 11015 +11017 2 -116.6284009578662 -778.2064760528697 61.5415 0.1144 11016 +11018 2 -116.13819628694445 -777.1840901811919 61.8498 0.1144 11017 +11019 2 -115.70529176569255 -776.1297834253187 62.0763 0.1144 11018 +11020 2 -115.28161460139336 -775.0690582674897 62.2294 0.1144 11019 +11021 2 -114.86079255473747 -774.0059797496706 62.3188 0.1144 11020 +11022 2 -114.42245601710712 -772.9496252638194 62.3731 0.1144 11021 +11023 2 -113.9665197956524 -771.8999424441231 62.4235 0.1144 11022 +11024 2 -113.55095076746274 -770.8348106856961 62.4887 0.1144 11023 +11025 2 -113.26641805545749 -769.7293213525052 62.5778 0.1144 11024 +11026 2 -113.02858884740641 -768.6108692758395 62.6993 0.1144 11025 +11027 2 -112.72823688920987 -767.5091550519105 62.8841 0.1144 11026 +11028 2 -112.39224709808707 -766.4216884546022 63.1462 0.1144 11027 +11029 2 -112.06132822593514 -765.3347564419843 63.4684 0.1144 11028 +11030 2 -111.84421259418048 -764.2263367008899 63.8968 0.1144 11029 +11031 2 -111.75388002867892 -763.1127416229509 64.4826 0.1144 11030 +11032 2 -111.82188313642666 -762.0104312504438 65.21 0.1144 11031 +11033 2 -112.46328217416925 -761.1504691964071 66.08 0.1144 11032 +11034 2 -113.13323563197248 -760.2986683368295 66.9808 0.1144 11033 +11035 2 -114.07571371212423 -759.7526557376768 67.8247 0.1144 11034 +11036 2 -115.12455521613383 -759.4183957348841 68.5756 0.1144 11035 +11037 2 -116.19195955134603 -759.141206927083 69.3241 0.1144 11036 +11038 2 -117.02309998196613 -759.1674220866041 71.2362 0.1144 11037 +11039 2 -122.60765432497419 -784.269408134126 58.5203 0.1144 11008 +11040 2 -121.5146414798133 -783.9372616448877 58.6256 0.1144 11039 +11041 2 -120.4309418769915 -783.5746864928932 58.7773 0.1144 11040 +11042 2 -119.33538126070904 -783.2946169550088 59.1231 0.1144 11041 +11043 2 -118.24111914727065 -783.0934037668393 59.7694 0.1144 11042 +11044 2 -117.17269389491217 -782.9026723060815 60.6488 0.1144 11043 +11045 2 -116.12440929649307 -782.7162215063589 61.6725 0.1144 11044 +11046 2 -115.10356540792112 -782.5506287372978 62.8648 0.1144 11045 +11047 2 -114.0951479616237 -782.3953739338198 64.129 0.1144 11046 +11048 2 -113.03818740691965 -782.3190929021032 65.1854 0.1144 11047 +11049 2 -112.62076316539483 -782.3821409202118 65.4598 0.1144 11048 +11050 2 -111.65639963820225 -782.8434509975141 65.5096 0.1144 11049 +11051 2 -110.85681479750903 -783.6397512753827 65.135 0.1144 11050 +11052 2 -110.10208214252202 -784.4917923949868 64.8682 0.1144 11051 +11053 2 -109.3577257907848 -785.3422296658237 64.4336 0.1144 11052 +11054 2 -108.6235776709481 -786.1827431268343 63.8291 0.1144 11053 +11055 2 -107.99264563993472 -787.0518387327612 62.9126 0.1144 11054 +11056 2 -107.3751216186803 -787.9037042697879 61.8184 0.1144 11055 +11057 2 -106.63805952813266 -788.6832666949198 60.8572 0.1144 11056 +11058 2 -105.87202955430394 -789.4532399731548 59.978 0.1144 11057 +11059 2 -105.12301162125983 -790.2457603236685 59.1377 0.1144 11058 +11060 2 -104.47515515135812 -791.1097350538582 58.2294 0.1144 11059 +11061 2 -103.86617944800074 -791.9977261533185 57.2863 0.1144 11060 +11062 2 -103.25765003490082 -792.887282763879 56.3478 0.1144 11061 +11063 2 -102.64671179441495 -793.7807582455304 55.4364 0.1144 11062 +11064 2 -101.65631699501088 -794.286518664418 54.8262 0.1144 11063 +11065 2 -100.63211234803333 -794.7687972987255 54.432 0.1144 11064 +11066 2 -99.59917117519342 -795.2565048478286 54.2542 0.1144 11065 +11067 2 -98.56080108755808 -795.7354758710692 54.2536 0.1144 11066 +11068 2 -97.49491740886191 -796.1411922541365 54.4659 0.1144 11067 +11069 2 -96.43549898730475 -796.5453657664618 54.8232 0.1144 11068 +11070 2 -95.43449652092588 -797.0487142563804 55.3697 0.1144 11069 +11071 2 -94.52684550036346 -797.5073221879211 56.6524 0.1144 11070 +11072 2 -112.86833739300144 -782.0843979239465 65.7524 0.1144 11048 +11073 2 -112.22906405151167 -781.1973978028302 66.4684 0.1144 11072 +11074 2 -111.52805103802088 -780.3084838109746 66.8769 0.1144 11073 +11075 2 -110.80893968463552 -779.4247611670232 67.1138 0.1144 11074 +11076 2 -110.08756016410997 -778.5382357712414 67.2316 0.1144 11075 +11077 2 -109.36466749829651 -777.6520714728671 67.2843 0.1144 11076 +11078 2 -108.64168963963333 -776.7658548086802 67.3081 0.1144 11077 +11079 2 -107.91785985247209 -775.8791144863658 67.3145 0.1144 11078 +11080 2 -107.19488199380889 -774.9928978221787 67.3168 0.1144 11079 +11081 2 -106.47193696218271 -774.1068187166543 67.3198 0.1144 11080 +11082 2 -105.74802198217175 -773.2200260285272 67.3238 0.1144 11081 +11083 2 -105.02570534029842 -772.3329246088051 67.3294 0.1144 11082 +11084 2 -104.30272748163519 -771.4467079446181 67.3369 0.1144 11083 +11085 2 -103.57489052895045 -770.5641952249894 67.3467 0.1144 11084 +11086 2 -102.82761798741252 -769.6980247171426 67.3646 0.1144 11085 +11087 2 -102.07691430429122 -768.8351446906337 67.3879 0.1144 11086 +11088 2 -101.32626298698257 -767.972179471275 67.4131 0.1144 11087 +11089 2 -100.57467454832621 -767.1086382279761 67.4363 0.1144 11088 +11090 2 -99.82397086520487 -766.2457582014672 67.4526 0.1144 11089 +11091 2 -99.07340474074606 -765.3828453479211 67.4562 0.1144 11090 +11092 2 -98.32270105762471 -764.5199653214123 67.4391 0.1144 11091 +11093 2 -97.57204974031612 -763.6570001020535 67.3938 0.1144 11092 +11094 2 -96.82134605719476 -762.7941200755447 67.3126 0.1144 11093 +11095 2 -96.0717170540837 -761.9317832459387 67.1894 0.1144 11094 +11096 2 -95.06750398425083 -761.4179322165763 66.9463 0.1144 11095 +11097 2 -93.9486439669724 -761.2458518814542 66.5714 0.1144 11096 +11098 2 -92.832897842166 -761.0904755480583 66.0946 0.1144 11097 +11099 2 -91.72076185685536 -760.9359097039107 65.5525 0.1144 11098 +11100 2 -90.61209845237786 -760.7821871760483 64.9788 0.1144 11099 +11101 2 -89.50397824480343 -760.6273899681756 64.3972 0.1144 11100 +11102 2 -88.39200722925895 -760.487832880971 63.8425 0.1144 11101 +11103 2 -87.28221810470541 -760.691899191328 63.3906 0.1144 11102 +11104 2 -86.16645376687032 -760.8949924517169 63.0204 0.1144 11103 +11105 2 -85.04614526977487 -761.0900104030335 62.7236 0.1144 11104 +11106 2 -83.93412390670125 -761.2847227243382 62.2616 0.1144 11105 +11107 2 -130.55791181611 -786.3523493129977 57.2132 0.1144 11001 +11108 2 -130.45774573581375 -785.3401132109157 58.0115 0.1144 11107 +11109 2 -130.40373175880399 -784.2111629993087 58.4399 0.1144 11108 +11110 2 -130.33256679727387 -783.1078237956862 59.1556 0.1144 11109 +11111 2 -130.11133237266742 -782.0412422613583 59.9525 0.1144 11110 +11112 2 -129.5412448352655 -781.151107732369 60.7813 0.1144 11111 +11113 2 -128.56430098859568 -780.782902435756 61.7151 0.1144 11112 +11114 2 -127.55007501529283 -780.6831197965952 62.8253 0.1144 11113 +11115 2 -126.74308318566155 -780.0233369255623 63.7644 0.1144 11114 +11116 2 -126.11536315001078 -779.1177319361532 64.5056 0.1144 11115 +11117 2 -125.72833623024573 -778.1131056158843 65.2856 0.1144 11116 +11118 2 -125.66053532380364 -777.0415315367438 66.2161 0.1144 11117 +11119 2 -125.69279517446316 -775.9777018031701 67.2465 0.1144 11118 +11120 2 -125.75303652282636 -774.9162815895189 68.2786 0.1144 11119 +11121 2 -125.8295879484712 -773.8500967794453 69.2737 0.1144 11120 +11122 2 -125.91192697727261 -772.7767878097931 70.2248 0.1144 11121 +11123 2 -126.03414787887834 -771.6997044234154 71.118 0.1144 11122 +11124 2 -126.32747796526948 -770.6566646396977 71.9754 0.1144 11123 +11125 2 -126.73035183896054 -769.6406969571915 72.7964 0.1144 11124 +11126 2 -126.96728736036945 -768.5563022095582 73.4082 0.1144 11125 +11127 2 -126.91990981343116 -767.4274402923841 73.7218 0.1144 11126 +11128 2 -126.65329102747471 -766.3275626660204 74.0944 0.1144 11127 +11129 2 -126.38223860860157 -765.3068915602165 75.1626 0.1144 11128 +11130 2 -131.66717046384457 -785.996183631852 57.8609 0.1144 11107 +11131 2 -132.7497841702976 -785.650520193519 58.1823 0.1144 11130 +11132 2 -133.8727687871241 -785.4490479116265 58.3906 0.1144 11131 +11133 2 -134.99908532453813 -785.2551405689404 58.5211 0.1144 11132 +11134 2 -136.11882159181317 -785.0303083164745 58.6519 0.1144 11133 +11135 2 -137.2361075924526 -784.805261137476 58.896 0.1144 11134 +11136 2 -128.26583361385946 -796.8383638578459 28.6241 0.1144 10977 +11137 2 -127.417711365346 -796.0860400302447 28.5566 0.1144 11136 +11138 2 -127.0935418586557 -795.1038519724207 28.5317 0.1144 11137 +11139 2 -127.28678826349781 -793.9832122100458 28.5746 0.1144 11138 +11140 2 -127.25152601819259 -792.8457160895882 28.658 0.1144 11139 +11141 2 -127.15755900367475 -791.7095801425368 28.7608 0.1144 11140 +11142 2 -127.08714424590403 -790.5746571266948 28.8935 0.1144 11141 +11143 2 -126.7202319540478 -789.5111446302543 29.0797 0.1144 11142 +11144 2 -126.36173032672986 -788.4582014631221 29.3241 0.1144 11143 +11145 2 -126.4537084591944 -787.33846558661 29.5725 0.1144 11144 +11146 2 -126.35798152244445 -786.2577079988132 29.7965 0.1144 11145 +11147 2 -125.73013554723076 -785.3238542193552 29.9583 0.1144 11146 +11148 2 -125.2197340624372 -784.3280243019894 30.0521 0.1144 11147 +11149 2 -125.56624180622302 -783.3512423235028 30.0454 0.1144 11148 +11150 2 -126.5507551974081 -782.8485574594206 29.9737 0.1144 11149 +11151 2 -127.51739340865889 -782.2502536749182 29.8998 0.1144 11150 +11152 2 -128.2964029242548 -781.4198256078281 29.8416 0.1144 11151 +11153 2 -129.20416486192386 -780.7316891209889 29.8435 0.1144 11152 +11154 2 -130.24489382017885 -780.2662582502364 29.8701 0.1144 11153 +11155 2 -131.32360337622384 -779.8832155715475 29.8396 0.1144 11154 +11156 2 -132.45790962141268 -779.7855415108883 29.7746 0.1144 11155 +11157 2 -133.55931201216367 -779.4902800104383 29.7021 0.1144 11156 +11158 2 -134.6582734410283 -779.1747371958032 29.6114 0.1144 11157 +11159 2 -135.79619802947758 -779.1826996704528 29.4764 0.1144 11158 +11160 2 -136.93886980053145 -779.1478016241384 29.3633 0.1144 11159 +11161 2 -138.08066571235162 -779.1930057804816 29.2874 0.1144 11160 +11162 2 -139.22497415920984 -779.1686215960794 29.2407 0.1144 11161 +11163 2 -140.36805967757275 -779.21191868269 29.2194 0.1144 11162 +11164 2 -141.50610030299538 -779.3178480218164 29.2233 0.1144 11163 +11165 2 -142.57708834893174 -779.7142798765676 29.2387 0.1144 11164 +11166 2 -143.5023995219285 -780.3824659009106 29.2116 0.1144 11165 +11167 2 -144.56112540281998 -780.8076311736347 29.3023 0.1144 11166 +11168 2 -145.6768030560578 -781.0461883660766 29.4613 0.1144 11167 +11169 2 -146.5695317196215 -781.7587888033848 29.601 0.1144 11168 +11170 2 -147.46262148059282 -782.4729023859809 29.7265 0.1144 11169 +11171 2 -148.3547741202164 -783.1864399446368 29.8421 0.1144 11170 +11172 2 -149.24794907403754 -783.9006058930456 29.9482 0.1144 11171 +11173 2 -150.14098646919615 -784.6148046684914 30.0367 0.1144 11172 +11174 2 -150.6017314143155 -783.4544641384973 30.3103 0.1144 11173 +11175 2 -151.03789827845924 -782.3998008905253 30.5222 0.1144 11174 +11176 2 -151.40483859180193 -781.3200756261899 30.6978 0.1144 11175 +11177 2 -151.68365755334685 -780.2131820465341 30.8358 0.1144 11176 +11178 2 -151.8048684523912 -779.0831260267047 30.9448 0.1144 11177 +11179 2 -151.77572208061315 -777.9398813332938 31.0456 0.1144 11178 +11180 2 -151.81339412478684 -776.8015549007237 31.1517 0.1144 11179 +11181 2 -152.06624338998614 -775.6933710219887 31.2449 0.1144 11180 +11182 2 -152.52303863757635 -774.6486877437751 31.3138 0.1144 11181 +11183 2 -153.19095426799112 -773.732600826148 31.3634 0.1144 11182 +11184 2 -154.04309999542562 -772.9752990506219 31.3956 0.1144 11183 +11185 2 -154.9515786172804 -772.2795038195137 31.3986 0.1144 11184 +11186 2 -155.80064878990964 -771.5163206357685 31.3813 0.1144 11185 +11187 2 -156.62558276217555 -770.724802776588 31.3922 0.1144 11186 +11188 2 -157.50417661071367 -769.9945569965175 31.4779 0.1144 11187 +11189 2 -158.53742371533912 -769.8078843397537 31.7106 0.1144 11188 +11190 2 -159.2800346755701 -770.6161379272774 32.0365 0.1144 11189 +11191 2 -160.02507497858795 -771.4729544460718 32.361 0.1144 11190 +11192 2 -160.56848744080634 -772.4675946704273 32.6855 0.1144 11191 +11193 2 -160.6789051928514 -773.5922443981351 32.9546 0.1144 11192 +11194 2 -161.02616696932193 -774.6745493729932 33.1601 0.1144 11193 +11195 2 -161.81060520975666 -775.4911407438414 33.315 0.1144 11194 +11196 2 -162.84570554423942 -775.9635262829444 33.4636 0.1144 11195 +11197 2 -163.91179074255425 -776.367743514064 33.689 0.1144 11196 +11198 2 -165.0389909522038 -776.5153703997115 33.9618 0.1144 11197 +11199 2 -166.0621294366875 -776.010955747299 34.1029 0.1144 11198 +11200 2 -165.46159241935482 -774.7662784152917 34.1737 0.1144 11199 +11201 2 -165.16000322042822 -773.6663860682454 34.1499 0.1144 11200 +11202 2 -164.78057068123502 -772.5884870014487 34.1144 0.1144 11201 +11203 2 -164.25641480995756 -771.5734035947252 34.06 0.1144 11202 +11204 2 -164.03412352760654 -770.46461965464 34.0267 0.1144 11203 +11205 2 -163.7838093083021 -769.3492923970093 34.0052 0.1144 11204 +11206 2 -163.3130402262335 -768.3105643135494 33.9522 0.1144 11205 +11207 2 -163.36409565689382 -767.2596962994771 33.094 0.1144 11206 +11208 2 -166.21401147189735 -775.9955017063869 34.2026 0.1144 11199 +11209 2 -167.34020447879493 -775.7907194043809 34.2342 0.1144 11208 +11210 2 -168.46743721370794 -775.6457360903734 34.2552 0.1144 11209 +11211 2 -169.56875501515643 -775.9359177407455 34.3291 0.1144 11210 +11212 2 -170.56872886320423 -776.4740432216704 34.571 0.1144 11211 +11213 2 -171.40768402256884 -777.0447785461207 35.8103 0.1144 11212 +11214 2 -172.47430630360975 -776.8517405457504 36.5907 0.1144 11213 +11215 2 -173.59153954767356 -776.9435889445324 37.1487 0.1144 11214 +11216 2 -174.7021469744771 -777.1575489256709 37.5754 0.1144 11215 +11217 2 -175.81818641765915 -777.3735566367876 37.8742 0.1144 11216 +11218 2 -176.93934914562476 -777.5900137397448 38.0554 0.1144 11217 +11219 2 -178.0616639214706 -777.8045966000066 38.1783 0.1144 11218 +11220 2 -179.18384896363378 -778.0216820927167 38.3076 0.1144 11219 +11221 2 -180.30594881294715 -778.238715219614 38.4412 0.1144 11220 +11222 2 -181.4271115409128 -778.4551723225713 38.5798 0.1144 11221 +11223 2 -182.55041580391918 -778.6702460139235 38.7251 0.1144 11222 +11224 2 -183.67157853188476 -778.8867031168807 38.8802 0.1144 11223 +11225 2 -184.79268889403772 -779.1032454126878 39.0496 0.1144 11224 +11226 2 -185.91327559806317 -779.3206396369928 39.2386 0.1144 11225 +11227 2 -187.03305491442364 -779.5349552049095 39.4503 0.1144 11226 +11228 2 -188.15328052104147 -779.7508362839267 39.685 0.1144 11227 +11229 2 -189.2143799932353 -780.1545712961687 40.014 0.1144 11228 +11230 2 -189.89455268651324 -779.0982361186237 40.6137 0.1144 11229 +11231 2 -190.54287085989165 -778.1767938599513 41.0808 0.1144 11230 +11232 2 -191.21970752471063 -777.2700640329595 41.4865 0.1144 11231 +11233 2 -191.61157670539905 -776.256722513418 41.9028 0.1144 11232 +11234 2 -191.59591742775973 -775.1352667688503 42.4186 0.1144 11233 +11235 2 -191.73065065702633 -774.0445110872555 43.0041 0.1144 11234 +11236 2 -192.40977841343297 -773.2104396451847 43.5434 0.1144 11235 +11237 2 -193.27331896419523 -772.4829138331414 43.9874 0.1144 11236 +11238 2 -194.0996223199203 -771.7044452953587 44.3044 0.1144 11237 +11239 2 -194.9143980170519 -770.9053922224257 44.4816 0.1144 11238 +11240 2 -195.84273527981816 -770.251383524808 44.5329 0.1144 11239 +11241 2 -196.93139397918327 -769.9657785418389 44.4662 0.1144 11240 +11242 2 -198.0657149450547 -769.8331340682096 44.3215 0.1144 11241 +11243 2 -199.18424369705377 -769.6169500471731 44.1501 0.1144 11242 +11244 2 -200.27692738420814 -769.2854582526642 44.0082 0.1144 11243 +11245 2 -201.3779717791345 -768.9819948110421 43.9172 0.1144 11244 +11246 2 -202.4881873710812 -768.7029495828111 43.8682 0.1144 11245 +11247 2 -203.60574686723197 -768.4619893525589 43.8253 0.1144 11246 +11248 2 -204.73136074860642 -768.2648329677847 43.7402 0.1144 11247 +11249 2 -205.82688242367493 -767.948584395527 43.5991 0.1144 11248 +11250 2 -206.85358419247123 -767.4557504600573 43.4157 0.1144 11249 +11251 2 -207.85901108171373 -766.918850897394 43.2034 0.1144 11250 +11252 2 -208.8650468219334 -766.3811517720453 42.9758 0.1144 11251 +11253 2 -209.88921623282738 -765.8813617483463 42.7543 0.1144 11252 +11254 2 -210.94134311599316 -765.4390180451924 42.5541 0.1144 11253 +11255 2 -211.99591716421145 -765.003578064455 42.3601 0.1144 11254 +11256 2 -213.04551168947486 -764.5542782730719 42.1602 0.1144 11255 +11257 2 -214.09242458437768 -764.1007477774199 41.956 0.1144 11256 +11258 2 -215.16000040627395 -763.698771267531 41.7662 0.1144 11257 +11259 2 -216.25682030009784 -763.3846118645013 41.6122 0.1144 11258 +11260 2 -217.3684576413164 -763.1185307648183 41.491 0.1144 11259 +11261 2 -218.48828220302437 -762.8870620822807 41.3907 0.1144 11260 +11262 2 -219.61060319401452 -762.6691007251943 41.302 0.1144 11261 +11263 2 -220.73362684104424 -762.454388410196 41.216 0.1144 11262 +11264 2 -221.85661766103698 -762.2395385365351 41.1242 0.1144 11263 +11265 2 -222.9793325764718 -762.0232278833989 41.022 0.1144 11264 +11266 2 -224.10138627511674 -761.8078019857979 40.9094 0.1144 11265 +11267 2 -225.2127563239901 -761.5442563456004 40.7756 0.1144 11266 +11268 2 -226.3010693391668 -761.1981051777602 40.6039 0.1144 11267 +11269 2 -227.39655818719825 -760.8817190468399 40.4118 0.1144 11268 +11270 2 -228.4241939757592 -760.3961499311945 40.2206 0.1144 11269 +11271 2 -229.3790731646916 -759.7732458338056 40.0221 0.1144 11270 +11272 2 -230.43265703321276 -759.3613776485911 39.7692 0.1144 11271 +11273 2 -231.51127519324177 -758.9916601958578 39.5139 0.1144 11272 +11274 2 -232.63446141867624 -758.990563384904 39.2059 0.1144 11273 +11275 2 -233.47363832326488 -759.7117997420055 38.7598 0.1144 11274 +11276 2 -234.21677224908672 -760.5432640276442 38.1872 0.1144 11275 +11277 2 -235.17522003729766 -760.9457613907084 37.0205 0.1144 11276 +11278 2 -188.53652792189956 -780.6040658894465 38.388 0.1144 11229 +11279 2 -187.7775577439524 -781.3058373401244 37.2999 0.1144 11278 +11280 2 -187.3642959479119 -782.3516904884839 36.8141 0.1144 11279 +11281 2 -187.08614440632306 -783.4443217208363 36.346 0.1144 11280 +11282 2 -186.78309002341894 -784.533736045601 35.9251 0.1144 11281 +11283 2 -186.44270325534194 -785.6162842930792 35.5928 0.1144 11282 +11284 2 -185.9408816422262 -786.635873420429 35.3542 0.1144 11283 +11285 2 -185.2615478555885 -787.5531585485829 35.1915 0.1144 11284 +11286 2 -184.50636580876096 -788.4103229529707 35.065 0.1144 11285 +11287 2 -183.72361641998663 -789.2424431632609 34.9465 0.1144 11286 +11288 2 -182.87629935089802 -789.7972966884647 34.7206 0.1144 11287 +11289 2 -182.58793126182698 -788.8639950141892 34.2966 0.1144 11288 +11290 2 -182.18304588340885 -787.8469829983588 34.0631 0.1144 11289 +11291 2 -181.4984702718358 -786.9334279469036 33.9688 0.1144 11290 +11292 2 -180.7697598689639 -786.1483912606614 33.094 0.1144 11291 +11293 2 -151.1952403795043 -785.108353868268 29.9477 0.1144 11173 +11294 2 -152.22784359216828 -785.591294708533 30.1784 0.1144 11293 +11295 2 -153.2863052822977 -786.0123066448584 30.3173 0.1144 11294 +11296 2 -154.3987283828179 -786.2408814584953 30.4763 0.1144 11295 +11297 2 -155.5379357768033 -786.3099661419561 30.6575 0.1144 11296 +11298 2 -156.6762091510241 -786.3717860055926 30.8829 0.1144 11297 +11299 2 -157.8099698079484 -786.4737933720455 31.1651 0.1144 11298 +11300 2 -158.93792263040382 -786.6072102762023 31.5017 0.1144 11299 +11301 2 -160.0617799929028 -786.7514912131161 31.8825 0.1144 11300 +11302 2 -161.18412421011396 -786.8961332474375 32.2935 0.1144 11301 +11303 2 -162.3045473294465 -787.0503934615734 32.7194 0.1144 11302 +11304 2 -163.4142207364854 -787.2570886228876 33.1531 0.1144 11303 +11305 2 -164.50881140438304 -787.5364445781695 33.5919 0.1144 11304 +11306 2 -165.59626319201936 -787.8449833432649 34.0225 0.1144 11305 +11307 2 -166.69272500102943 -788.132180142311 34.3974 0.1144 11306 +11308 2 -167.78284439088026 -788.4558573980321 34.659 0.1144 11307 +11309 2 -168.85503685050958 -788.8503298172379 34.8166 0.1144 11308 +11310 2 -169.95652372959566 -788.9983499347935 34.918 0.1144 11309 +11311 2 -170.92307874859523 -788.5181974223074 34.9933 0.1144 11310 +11312 2 -171.42391259106031 -787.5395539212093 35.0521 0.1144 11311 +11313 2 -171.66620965668062 -786.4221841247713 35.1305 0.1144 11312 +11314 2 -172.04102915145432 -785.3514103128308 35.3217 0.1144 11313 +11315 2 -172.54423417617517 -784.3339627205216 35.6563 0.1144 11314 +11316 2 -173.12663100077302 -783.3559191740993 35.9038 0.1144 11315 +11317 2 -173.80372023725448 -782.4816243005921 35.3377 0.1144 11316 +11318 2 -111.33447919611524 -893.4966618822822 24.5742 0.1144 10769 +11319 2 -112.46034634168876 -893.3078778243797 24.4199 0.1144 11318 +11320 2 -113.56802647415006 -893.0285653038036 24.2526 0.1144 11319 +11321 2 -113.1515579697427 -891.997742741557 23.8267 0.1144 11320 +11322 2 -113.00545001895873 -890.8874258333195 23.4966 0.1144 11321 +11323 2 -113.27130415941915 -889.8060166295488 23.1655 0.1144 11322 +11324 2 -113.82016393941828 -888.8126408739058 22.8208 0.1144 11323 +11325 2 -114.4356648539669 -887.8615188658596 22.4349 0.1144 11324 +11326 2 -115.09396230456727 -886.9435108503537 22.0098 0.1144 11325 +11327 2 -115.85421457782911 -886.1109436572694 21.6051 0.1144 11326 +11328 2 -116.70199204233239 -885.356356339141 21.2697 0.1144 11327 +11329 2 -117.56085629110518 -884.6058840197447 21.0305 0.1144 11328 +11330 2 -118.44653837060179 -883.8879770800523 20.8641 0.1144 11329 +11331 2 -119.45399516755674 -883.3873047098648 20.7196 0.1144 11330 +11332 2 -120.57180723537004 -883.1787794330972 20.5493 0.1144 11331 +11333 2 -121.69616674628531 -883.0010415074471 20.3342 0.1144 11332 +11334 2 -122.81708650340451 -882.8225978241743 20.0285 0.1144 11333 +11335 2 -123.94264011697507 -882.8134483445069 19.5918 0.1144 11334 +11336 2 -125.06172978146856 -882.9481080000234 19.1163 0.1144 11335 +11337 2 -126.17189091801464 -883.1605024700613 18.7048 0.1144 11336 +11338 2 -127.283021310409 -883.3976731493149 18.3739 0.1144 11337 +11339 2 -128.3973155520416 -883.6340888067161 18.1194 0.1144 11338 +11340 2 -129.51513784190317 -883.8645737916686 17.947 0.1144 11339 +11341 2 -130.63200588068779 -884.1120793349223 17.8766 0.1144 11340 +11342 2 -131.68262362546972 -884.5416512082443 17.905 0.1144 11341 +11343 2 -132.66940369775446 -885.1186191180468 17.9786 0.1144 11342 +11344 2 -133.7323719020141 -885.5128211433243 18.0349 0.1144 11343 +11345 2 -134.85777385176493 -885.7050037947192 18.0413 0.1144 11344 +11346 2 -135.9954034230136 -885.8268790121365 17.9948 0.1144 11345 +11347 2 -137.13588370226054 -885.810823401006 17.9087 0.1144 11346 +11348 2 -138.26597775798305 -885.6501091352401 17.8006 0.1144 11347 +11349 2 -139.39794295481798 -885.4972357132386 17.6715 0.1144 11348 +11350 2 -140.53683169693383 -885.4184595551592 17.5116 0.1144 11349 +11351 2 -141.67412520249516 -885.3333033327906 17.3165 0.1144 11350 +11352 2 -142.79639313513596 -885.139489795167 17.0859 0.1144 11351 +11353 2 -143.90233426921392 -884.867207629107 16.8242 0.1144 11352 +11354 2 -145.00265887837153 -884.5780917276381 16.5388 0.1144 11353 +11355 2 -146.12926804162473 -884.468878389286 16.2529 0.1144 11354 +11356 2 -147.26746543304873 -884.484990439295 15.9792 0.1144 11355 +11357 2 -148.3841990267321 -884.3066733881217 15.6762 0.1144 11356 +11358 2 -149.50641390102348 -884.137007669961 15.3443 0.1144 11357 +11359 2 -150.63792490560994 -884.1704904491157 15.0151 0.1144 11358 +11360 2 -151.77164791740412 -884.2376125954481 14.6814 0.1144 11359 +11361 2 -152.90644940332828 -884.2745265161864 14.3369 0.1144 11360 +11362 2 -154.03856036259052 -884.2264463132085 13.975 0.1144 11361 +11363 2 -155.07046380801359 -883.7971434139358 13.5886 0.1144 11362 +11364 2 -155.85756673903649 -882.997279159218 13.2119 0.1144 11363 +11365 2 -156.68997976512247 -882.2264396402503 12.874 0.1144 11364 +11366 2 -157.38916978362516 -881.3335672148579 12.5685 0.1144 11365 +11367 2 -157.18624320951227 -880.2742480913079 12.257 0.1144 11366 +11368 2 -156.96168065843798 -879.1693501952764 11.7869 0.1144 11367 +11369 2 -157.33984300036224 -878.1019223320695 11.4035 0.1144 11368 +11370 2 -157.7332376379747 -877.0358754714213 11.0723 0.1144 11369 +11371 2 -158.09095369594772 -875.9558798131577 10.7853 0.1144 11370 +11372 2 -158.37886717917962 -874.8517592598787 10.5619 0.1144 11371 +11373 2 -158.66575834821393 -873.7470103168467 10.3967 0.1144 11372 +11374 2 -159.03674726632994 -872.667191247449 10.2426 0.1144 11373 +11375 2 -159.42391342646172 -871.5917990099613 10.073 0.1144 11374 +11376 2 -159.03364667466164 -870.542219897917 9.5357 0.1144 11375 +11377 2 -113.9898419030535 -893.0326584613878 24.6404 0.1144 11320 +11378 2 -115.05521962723566 -893.3988789889615 25.0866 0.1144 11377 +11379 2 -116.05706461639585 -893.9448453136507 25.2524 0.1144 11378 +11380 2 -116.90759259071208 -894.6999390660454 25.5386 0.1144 11379 +11381 2 -117.24942545238733 -895.773507515041 25.9656 0.1144 11380 +11382 2 -116.91049306551992 -896.1828321259948 26.2387 0.1144 11381 +11383 2 -116.04135381210307 -896.8518649937748 26.8328 0.1144 11382 +11384 2 -115.04633197493905 -897.3412825083437 27.5148 0.1144 11383 +11385 2 -114.101541974047 -897.8885737874762 28.3231 0.1144 11384 +11386 2 -113.74922439519383 -898.778561665838 29.2331 0.1144 11385 +11387 2 -113.2412736026046 -899.5875584781357 30.2896 0.1144 11386 +11388 2 -112.41465779817611 -900.2047885826099 31.4986 0.1144 11387 +11389 2 -111.59344729155913 -900.784962206469 32.8294 0.1144 11388 +11390 2 -110.57425510124779 -900.8876606446677 33.9982 0.1144 11389 +11391 2 -109.5217083565961 -900.6556286634168 34.9073 0.1144 11390 +11392 2 -108.44287225744088 -900.4249270354219 35.6479 0.1144 11391 +11393 2 -107.34995831952415 -900.2083439929016 36.2779 0.1144 11392 +11394 2 -106.25136558828464 -900.0447304822501 36.9435 0.1144 11393 +11395 2 -105.47331992458163 -900.4956721582937 38.1402 0.1144 11394 +11396 2 -105.11066127856225 -901.4047752748143 39.1891 0.1144 11395 +11397 2 -104.15383365765871 -901.8318644503692 40.1652 0.1144 11396 +11398 2 -103.13494160441468 -902.1481455655753 41.0659 0.1144 11397 +11399 2 -102.14749090962334 -902.6208535677883 41.86 0.1144 11398 +11400 2 -101.11880747337094 -903.0185648298616 42.6034 0.1144 11399 +11401 2 -100.31067541576525 -903.6538471115837 43.507 0.1144 11400 +11402 2 -100.07407255668693 -904.6592143365696 44.4811 0.1144 11401 +11403 2 -99.8882532483002 -905.699787824907 45.4922 0.1144 11402 +11404 2 -99.18727597347277 -906.4426055079057 46.426 0.1144 11403 +11405 2 -98.47401291661654 -907.1683636024001 47.6176 0.1144 11404 +11406 2 -99.09751566061931 -907.8994135447576 48.68 0.1144 11405 +11407 2 -99.82935157506282 -908.6728726156402 49.6966 0.1144 11406 +11408 2 -100.2441351457245 -909.5360962190648 51.1532 0.1144 11407 +11409 2 -100.57066231593987 -909.360833396107 53.3649 0.1144 11408 +11410 2 -100.19907092228468 -908.5738109465152 54.9371 0.1144 11409 +11411 2 -99.51966024752929 -908.5671449860891 56.6292 0.1144 11410 +11412 2 -99.08061875662966 -909.4211982978143 58.0698 0.1144 11411 +11413 2 -98.5933520989714 -910.3101682716236 59.3608 0.1144 11412 +11414 2 -98.29545113475285 -911.3060285356756 60.515 0.1144 11413 +11415 2 -98.10516975837231 -912.3452678766374 61.5852 0.1144 11414 +11416 2 -97.42302501613923 -913.159995125871 62.5716 0.1144 11415 +11417 2 -96.66339872358373 -913.9741661740288 63.2064 0.1144 11416 +11418 2 -95.91526105941838 -914.8221617904427 63.6345 0.1144 11417 +11419 2 -94.98144251604396 -915.4675191550479 63.973 0.1144 11418 +11420 2 -94.0140523845239 -916.0559702944279 64.3552 0.1144 11419 +11421 2 -93.11293608697935 -916.698539627885 65.0661 0.1144 11420 +11422 2 -117.87698781671565 -895.8906865186152 25.1161 0.1144 11381 +11423 2 -118.92847460203961 -896.0872048899929 24.1423 0.1144 11422 +11424 2 -119.72329925595545 -895.4101720034006 23.6133 0.1144 11423 +11425 2 -120.19113443263197 -894.3803739516137 23.2123 0.1144 11424 +11426 2 -120.6586085119007 -893.3490627545389 22.8147 0.1144 11425 +11427 2 -121.19134341569674 -892.351174974136 22.4353 0.1144 11426 +11428 2 -122.0954914197504 -891.6929794205458 21.84 0.1144 11427 +11429 2 -106.84648995010005 -920.0360111466791 31.4779 0.1144 10744 +11430 2 -107.93658271037313 -919.711026048559 31.3491 0.1144 11429 +11431 2 -109.06775043981762 -919.7013364735717 31.2964 0.1144 11430 +11432 2 -110.21004570024459 -919.7239583215526 31.2542 0.1144 11431 +11433 2 -111.32033727498796 -919.4906209069492 31.1951 0.1144 11432 +11434 2 -112.35509412154451 -919.0175281903445 31.0447 0.1144 11433 +11435 2 -113.45905009582034 -918.9736225317027 30.9532 0.1144 11434 +11436 2 -114.58422619247568 -919.1724744402061 30.8538 0.1144 11435 +11437 2 -115.32650948074078 -918.2402397219284 30.4637 0.1144 11436 +11438 2 -116.34017864942055 -917.8320083947767 29.9748 0.1144 11437 +11439 2 -117.38302341845937 -917.5947750335301 29.318 0.1144 11438 +11440 2 -118.27980599661973 -916.9964941734751 28.3864 0.1144 11439 +11441 2 -119.24983359645242 -916.5171849772742 27.5094 0.1144 11440 +11442 2 -120.29908204676454 -916.3241493859504 26.6495 0.1144 11441 +11443 2 -121.26606452746748 -916.0377030872946 25.5596 0.1144 11442 +11444 2 -122.11249002232947 -915.3292370460142 24.8412 0.1144 11443 +11445 2 -122.26308634608367 -914.2562138835094 24.1052 0.1144 11444 +11446 2 -122.36329855422076 -913.1603201964484 23.3382 0.1144 11445 +11447 2 -121.39960564953464 -912.5719543617352 22.4069 0.1144 11446 +11448 2 -120.64552829282428 -911.823794465659 21.743 0.1144 11447 +11449 2 -120.23605180526647 -910.7838883082884 21.1375 0.1144 11448 +11450 2 -119.86293534545018 -909.7327608148728 20.5285 0.1144 11449 +11451 2 -119.35455937640901 -908.8535611992556 19.6437 0.1144 11450 +11452 2 -118.66260292572335 -908.0589538809187 18.7267 0.1144 11451 +11453 2 -118.24278847258242 -907.0314741658226 18.1373 0.1144 11452 +11454 2 -117.91624027240815 -905.9592015265359 17.5729 0.1144 11453 +11455 2 -117.28494533334526 -905.07029743727 16.8791 0.1144 11454 +11456 2 -116.27376006952719 -904.6420744320062 16.2261 0.1144 11455 +11457 2 -115.15812516360117 -904.5499173016294 15.6958 0.1144 11456 +11458 2 -114.0439797859789 -904.4116060673675 15.1581 0.1144 11457 +11459 2 -112.98050843899273 -904.0707377729495 14.5722 0.1144 11458 +11460 2 -111.98859277028825 -903.5456647150056 14.0411 0.1144 11459 +11461 2 -111.26644040564454 -902.6976346788397 13.4914 0.1144 11460 +11462 2 -110.55441108005155 -901.8396284670349 12.8708 0.1144 11461 +11463 2 -110.40712915125019 -900.930015300107 11.2182 0.1144 11462 +11464 2 -122.83973740951572 -912.5534512837785 22.4912 0.1144 11446 +11465 2 -123.52270495263323 -911.6827696513501 21.8103 0.1144 11464 +11466 2 -124.22131894719584 -910.7908343473055 21.425 0.1144 11465 +11467 2 -124.7857573996082 -909.8353231524792 20.9618 0.1144 11466 +11468 2 -124.93043156843018 -908.7371791205436 20.4691 0.1144 11467 +11469 2 -124.67476751871013 -907.6521343547939 20.0568 0.1144 11468 +11470 2 -124.98887205274877 -907.0166155181759 19.7394 0.1144 11469 +11471 2 -125.935892575651 -906.4372417707536 19.7239 0.1144 11470 +11472 2 -125.8935191926249 -905.4335317546579 19.9154 0.1144 11471 +11473 2 -125.41624031258436 -904.398901540201 20.1616 0.1144 11472 +11474 2 -124.87782760463318 -903.3938357483661 20.392 0.1144 11473 +11475 2 -124.11901268381914 -902.5420511183393 20.57 0.1144 11474 +11476 2 -123.36438702802411 -901.6834510603286 20.679 0.1144 11475 +11477 2 -123.52907591122246 -900.561338899379 20.7539 0.1144 11476 +11478 2 -115.24153918679295 -919.1910291566332 32.2767 0.1144 11436 +11479 2 -116.34151331135408 -919.022599986666 32.9162 0.1144 11478 +11480 2 -117.41331914498247 -918.6420044730296 33.1834 0.1144 11479 +11481 2 -118.47051935616557 -918.2175691852949 33.4572 0.1144 11480 +11482 2 -119.59424427416181 -918.0542311656108 33.7798 0.1144 11481 +11483 2 -120.6880683011075 -918.3587048887402 34.1004 0.1144 11482 +11484 2 -121.7655784566519 -918.6986946307893 34.5072 0.1144 11483 +11485 2 -122.85705562284048 -918.6445361994143 35.3377 0.1144 11484 +11486 2 -72.91013447438874 -1022.6593555362778 44.2814 0.1144 10304 +11487 2 -71.93552827271603 -1022.0602906385737 44.3299 0.1144 11486 +11488 2 -70.96194438524086 -1021.4618541306226 44.401 0.1144 11487 +11489 2 -69.98319035779903 -1020.8737384585255 44.5701 0.1144 11488 +11490 2 -68.94299818049657 -1020.4491663394705 44.8658 0.1144 11489 +11491 2 -67.85746749073888 -1020.1310093945608 45.2194 0.1144 11490 +11492 2 -66.79182006516504 -1019.7499504957435 45.6257 0.1144 11491 +11493 2 -65.81536564682736 -1019.2129003873656 45.9883 0.1144 11492 +11494 2 -64.89597421971621 -1018.5524614017245 46.3369 0.1144 11493 +11495 2 -63.84534106171506 -1018.1819225679858 46.6819 0.1144 11494 +11496 2 -62.76337124722349 -1017.8579725092899 46.9848 0.1144 11495 +11497 2 -61.844161227071226 -1017.2190083249637 47.2528 0.1144 11496 +11498 2 -61.17601922329618 -1016.311563636406 47.525 0.1144 11497 +11499 2 -60.8516125581626 -1015.2379075855141 47.784 0.1144 11498 +11500 2 -60.99553480671534 -1014.1299109084562 47.9755 0.1144 11499 +11501 2 -61.41811225414128 -1013.0710029280692 48.0981 0.1144 11500 +11502 2 -61.90385584623701 -1012.036131548265 48.1729 0.1144 11501 +11503 2 -62.317658430133946 -1010.9718298891663 48.2101 0.1144 11502 +11504 2 -62.45940390756232 -1009.8477052343221 48.2188 0.1144 11503 +11505 2 -62.379062238382375 -1008.7092627824637 48.2132 0.1144 11504 +11506 2 -62.43045343295637 -1007.57267844986 48.204 0.1144 11505 +11507 2 -62.590341791112195 -1006.4408074488505 48.1953 0.1144 11506 +11508 2 -62.63901852828852 -1005.2998548533155 48.1698 0.1144 11507 +11509 2 -62.634595999913444 -1004.1557260969062 48.1242 0.1144 11508 +11510 2 -62.53104363261835 -1003.0178066106387 48.0931 0.1144 11509 +11511 2 -62.19607615569305 -1001.9309684030832 48.1043 0.1144 11510 +11512 2 -62.09292322347227 -1000.8053846556106 48.1816 0.1144 11511 +11513 2 -62.34007317994792 -999.6976885063829 48.347 0.1144 11512 +11514 2 -62.56334571088894 -998.5807150434362 48.5666 0.1144 11513 +11515 2 -62.92408495785463 -997.5066859862413 48.8863 0.1144 11514 +11516 2 -63.251774889728836 -996.4230240285497 49.2786 0.1144 11515 +11517 2 -63.00786745328071 -995.3452057449576 49.6863 0.1144 11516 +11518 2 -62.622324551189934 -994.2837402859589 50.1315 0.1144 11517 +11519 2 -62.445035324843815 -993.1783201168731 50.6573 0.1144 11518 +11520 2 -62.09901319814966 -992.1115670958611 51.1795 0.1144 11519 +11521 2 -61.72906058757164 -991.0596845805932 51.8006 0.1144 11520 +11522 2 -61.710507162085776 -989.9538222291213 52.4854 0.1144 11521 +11523 2 -62.06027695213237 -988.8999307242829 53.1437 0.1144 11522 +11524 2 -62.108380074415095 -987.7772890808246 53.6637 0.1144 11523 +11525 2 -62.07739779760814 -986.6437149330408 54.0246 0.1144 11524 +11526 2 -62.283608330998334 -985.521653421394 54.2595 0.1144 11525 +11527 2 -62.37122671804812 -984.3830391810778 54.39 0.1144 11526 +11528 2 -62.44467966444017 -983.2411173296947 54.453 0.1144 11527 +11529 2 -62.47362921089757 -982.0973120255629 54.486 0.1144 11528 +11530 2 -62.33019497079806 -980.9631669560207 54.5168 0.1144 11529 +11531 2 -61.90304522566575 -979.9015984819065 54.56 0.1144 11530 +11532 2 -61.28366917650587 -978.9407886205254 54.621 0.1144 11531 +11533 2 -60.597762519140275 -978.0250068411797 54.7075 0.1144 11532 +11534 2 -60.10100971257995 -976.9958962449974 54.8237 0.1144 11533 +11535 2 -59.25119842244945 -976.2331437483338 54.9716 0.1144 11534 +11536 2 -58.83601812753352 -975.6677059951605 53.9596 0.1144 11535 +11537 2 -58.65955749678997 -974.5937836582117 53.496 0.1144 11536 +11538 2 -58.747845712842434 -973.458280901321 53.237 0.1144 11537 +11539 2 -58.78922170157435 -972.3248135627724 52.8797 0.1144 11538 +11540 2 -58.85936703689944 -971.1970571520471 52.4454 0.1144 11539 +11541 2 -59.014073541292674 -970.0781995438152 52.0209 0.1144 11540 +11542 2 -58.946381160595706 -968.975703656478 51.613 0.1144 11541 +11543 2 -58.76885746894146 -967.8729565055402 51.0908 0.1144 11542 +11544 2 -59.017376116339705 -966.8023723043232 50.4795 0.1144 11543 +11545 2 -59.15470027248759 -965.7051099263396 49.8358 0.1144 11544 +11546 2 -59.16786511630059 -964.6066537474743 49.0571 0.1144 11545 +11547 2 -58.5972898493915 -963.7108199097612 48.2283 0.1144 11546 +11548 2 -57.70503350211578 -963.06295182076 47.5269 0.1144 11547 +11549 2 -57.036538320609196 -962.1820528524881 46.8902 0.1144 11548 +11550 2 -56.18207365293651 -961.4662094815618 46.3243 0.1144 11549 +11551 2 -55.131978181208865 -961.083910932968 45.8265 0.1144 11550 +11552 2 -54.10757070655066 -960.6139896886467 45.3522 0.1144 11551 +11553 2 -53.61245698484112 -959.6127667851058 44.9422 0.1144 11552 +11554 2 -52.878600372738276 -958.7574250739325 44.5141 0.1144 11553 +11555 2 -51.798766582657805 -958.4214065687867 44.1062 0.1144 11554 +11556 2 -50.877905858555124 -957.7828363089053 43.633 0.1144 11555 +11557 2 -50.32981881085712 -956.8066860345388 43.083 0.1144 11556 +11558 2 -49.628741812454024 -955.946138852619 42.4074 0.1144 11557 +11559 2 -48.965369915730975 -955.0656892761876 41.69 0.1144 11558 +11560 2 -48.44227710536427 -954.0794306834531 41.0903 0.1144 11559 +11561 2 -47.72884585336371 -953.285004772075 40.6949 0.1144 11560 +11562 2 -46.67211774568426 -952.8718665065511 40.3572 0.1144 11561 +11563 2 -45.64472541970011 -952.4068012546682 40.0456 0.1144 11562 +11564 2 -44.730727671300855 -951.7375874054981 39.7141 0.1144 11563 +11565 2 -43.78320418365075 -951.1511785972837 39.3364 0.1144 11564 +11566 2 -42.71965685386789 -950.7646024892381 38.9228 0.1144 11565 +11567 2 -41.658507424907896 -950.3783265005746 38.4768 0.1144 11566 +11568 2 -40.585384662622346 -950.1362293567155 37.8577 0.1144 11567 +11569 2 -39.56750339346564 -949.8718623355124 36.8553 0.1144 11568 +11570 2 -38.53148576049935 -949.475445201444 36.1785 0.1144 11569 +11571 2 -37.53077981504663 -949.0040115043714 35.4637 0.1144 11570 +11572 2 -36.52477089436147 -948.5520900714853 34.746 0.1144 11571 +11573 2 -35.488521205133594 -948.1757197862937 34.0466 0.1144 11572 +11574 2 -34.55160228287528 -947.5984117029324 33.3194 0.1144 11573 +11575 2 -33.71157896041822 -946.8873367225483 32.5508 0.1144 11574 +11576 2 -32.9385301273779 -946.1154253405005 31.7562 0.1144 11575 +11577 2 -32.33574886166258 -945.2064860214573 30.9548 0.1144 11576 +11578 2 -31.868219611628973 -944.2127107297727 30.1644 0.1144 11577 +11579 2 -31.35620506801513 -943.252159956972 29.3642 0.1144 11578 +11580 2 -30.586625021688263 -942.5118433137068 28.4945 0.1144 11579 +11581 2 -29.607208676472 -942.0495048308577 27.6159 0.1144 11580 +11582 2 -28.609307891896293 -941.5931767973736 26.8501 0.1144 11581 +11583 2 -27.6483178255084 -941.0374608426778 26.1706 0.1144 11582 +11584 2 -26.685326884325434 -940.4764066766656 25.5384 0.1144 11583 +11585 2 -25.71471553654007 -939.925458419975 24.9227 0.1144 11584 +11586 2 -24.908458213360262 -939.216357595819 24.2976 0.1144 11585 +11587 2 -24.714614541834806 -938.1880931157315 23.6392 0.1144 11586 +11588 2 -24.56349383261096 -937.1646086452857 22.9995 0.1144 11587 +11589 2 -23.81767758389188 -936.3529762819915 22.4425 0.1144 11588 +11590 2 -22.91963191694964 -935.6707958952269 21.9847 0.1144 11589 +11591 2 -21.98321613741774 -935.0401540810061 21.5627 0.1144 11590 +11592 2 -20.964957363323805 -934.564621822394 21.1036 0.1144 11591 +11593 2 -19.870209929424703 -934.3750831562297 20.6009 0.1144 11592 +11594 2 -18.788384480309134 -934.6232181953634 20.176 0.1144 11593 +11595 2 -17.689620564159156 -934.877140145117 19.8305 0.1144 11594 +11596 2 -16.558081834717342 -934.9550346492445 19.4987 0.1144 11595 +11597 2 -15.42420274945826 -934.9536671654165 19.1299 0.1144 11596 +11598 2 -14.308941252575949 -934.8106789366285 18.6643 0.1144 11597 +11599 2 -13.197929590290073 -934.7656161330675 18.0742 0.1144 11598 +11600 2 -12.145880388746036 -935.0791235293606 17.4121 0.1144 11599 +11601 2 -11.10015208467189 -935.4541501604925 16.7456 0.1144 11600 +11602 2 -10.002928346128527 -935.6203963561693 16.1314 0.1144 11601 +11603 2 -8.882494915758457 -935.6366840235615 15.5771 0.1144 11602 +11604 2 -7.828558964783298 -935.3150582919383 14.9828 0.1144 11603 +11605 2 -6.9674048086898495 -934.623274446042 14.3691 0.1144 11604 +11606 2 -6.335675198469119 -933.7045232285896 13.8006 0.1144 11605 +11607 2 -5.9843891267458105 -932.6440424386583 13.2731 0.1144 11606 +11608 2 -6.056763599007894 -931.5323288128694 12.7847 0.1144 11607 +11609 2 -6.101121337482681 -930.4006942777665 12.3901 0.1144 11608 +11610 2 -5.983494233009168 -929.2702045810895 12.1243 0.1144 11609 +11611 2 -5.8458116674461 -928.1354865891901 11.9688 0.1144 11610 +11612 2 -6.090106506278374 -927.0301437999524 11.8519 0.1144 11611 +11613 2 -6.098068980928048 -925.8922192115031 11.826 0.1144 11612 +11614 2 -5.945686390016874 -924.7592645275076 11.8796 0.1144 11613 +11615 2 -5.652866543989745 -923.6540808243286 11.9539 0.1144 11614 +11616 2 -4.611518512709267 -923.6813009960464 12.2464 0.1144 11615 +11617 2 -3.49870448265321 -923.8379642479924 12.7485 0.1144 11616 +11618 2 -2.4904663360417203 -923.979558173418 14.023 0.1144 11617 +11619 2 -59.38690222133317 -975.944577743807 55.0861 0.1144 11535 +11620 2 -60.30099215925239 -975.5476789715806 55.4772 0.1144 11619 +11621 2 -61.36010996399 -975.8562913104262 55.9488 0.1144 11620 +11622 2 -62.429279927163236 -976.2207345019501 56.3872 0.1144 11621 +11623 2 -62.57653060395742 -975.4438019449134 57.0419 0.1144 11622 +11624 2 -62.546846545905964 -974.3123169663575 57.4244 0.1144 11623 +11625 2 -62.51836690154735 -973.1788725522563 57.7858 0.1144 11624 +11626 2 -62.379391627858524 -972.0527504259737 58.121 0.1144 11625 +11627 2 -61.888272760036415 -971.0996441634462 58.4175 0.1144 11626 +11628 2 -60.94588727785248 -970.4787143341023 58.6813 0.1144 11627 +11629 2 -59.86801223078078 -970.1679628692625 58.956 0.1144 11628 +11630 2 -58.79835583418418 -970.3592532590368 59.3432 0.1144 11629 +11631 2 -57.942787678346264 -970.0951169860334 59.7761 0.1144 11630 +11632 2 -57.56934776625238 -969.0773615674503 60.1546 0.1144 11631 +11633 2 -57.4082779137085 -967.9564394012847 60.5399 0.1144 11632 +11634 2 -57.28061296303406 -966.8359782460591 60.9857 0.1144 11633 +11635 2 -56.96835993720023 -965.764510585391 61.4281 0.1144 11634 +11636 2 -56.40432701121148 -964.7879492568507 61.8187 0.1144 11635 +11637 2 -56.025329143176094 -963.7398973182404 62.2009 0.1144 11636 +11638 2 -56.07916991184919 -962.6275905387822 62.5918 0.1144 11637 +11639 2 -56.194050010833934 -961.5057333585416 63.0356 0.1144 11638 +11640 2 -55.846106786261174 -960.4485985173441 63.3956 0.1144 11639 +11641 2 -55.34953297761314 -959.4235888917478 63.6544 0.1144 11640 +11642 2 -54.849434222319104 -958.3978211427162 63.8352 0.1144 11641 +11643 2 -54.41890570141604 -957.33945795709 63.9517 0.1144 11642 +11644 2 -54.17496061983786 -956.2267544533776 64.0234 0.1144 11643 +11645 2 -54.06477182247133 -955.0887466726771 64.0718 0.1144 11644 +11646 2 -54.009912120129826 -953.9458952111743 64.1242 0.1144 11645 +11647 2 -53.855440359990666 -952.8142387459343 64.195 0.1144 11646 +11648 2 -53.652669859342694 -951.6891649598798 64.2891 0.1144 11647 +11649 2 -53.4966325881029 -950.5579547848972 64.4479 0.1144 11648 +11650 2 -53.43785091308766 -949.4193832918927 64.65 0.1144 11649 +11651 2 -53.22968673372782 -948.3030843693674 64.9177 0.1144 11650 +11652 2 -53.066296348230935 -947.1794446442209 65.2484 0.1144 11651 +11653 2 -52.96519114598834 -946.0484288803699 65.5956 0.1144 11652 +11654 2 -52.87830685179935 -944.9139467388519 65.884 0.1144 11653 +11655 2 -52.923690006054784 -943.7762517976178 66.1139 0.1144 11654 +11656 2 -53.03763918685797 -942.6404410016687 66.2984 0.1144 11655 +11657 2 -53.21315376514667 -941.5116017071684 66.4334 0.1144 11656 +11658 2 -53.53532097716297 -940.4151546188409 66.5098 0.1144 11657 +11659 2 -53.70673458486567 -939.2864943222528 66.5277 0.1144 11658 +11660 2 -53.77867438596988 -938.1449335682773 66.5008 0.1144 11659 +11661 2 -53.83524433272325 -937.0020246387802 66.4404 0.1144 11660 +11662 2 -53.891185889723886 -935.8601380234805 66.3558 0.1144 11661 +11663 2 -53.872286087513004 -934.7177921137509 66.2614 0.1144 11662 +11664 2 -53.58387594366678 -933.614027750797 66.176 0.1144 11663 +11665 2 -53.208183277651926 -932.5344365408002 66.1058 0.1144 11664 +11666 2 -52.78887437628393 -931.4709969255734 66.0167 0.1144 11665 +11667 2 -52.46656539789478 -930.3744498347243 65.91 0.1144 11666 +11668 2 -52.588085028534095 -929.2459921530324 65.8249 0.1144 11667 +11669 2 -52.66349741047145 -928.1052747153423 65.7695 0.1144 11668 +11670 2 -52.27113908039689 -927.0396199913246 65.7364 0.1144 11669 +11671 2 -52.09327452264728 -925.9110743169736 65.7437 0.1144 11670 +11672 2 -52.14266484242626 -924.7691517730539 65.7952 0.1144 11671 +11673 2 -52.25024488550315 -923.6307172231865 65.8454 0.1144 11672 +11674 2 -52.39440229190052 -922.4959849013675 65.8462 0.1144 11673 +11675 2 -52.56861865143381 -921.365056437639 65.812 0.1144 11674 +11676 2 -52.83207868519099 -920.2525956919889 65.7807 0.1144 11675 +11677 2 -53.105156898762516 -919.1420560442174 65.7597 0.1144 11676 +11678 2 -53.37872594342434 -918.0305269092853 65.7549 0.1144 11677 +11679 2 -53.70601644022429 -916.9345292127985 65.7742 0.1144 11678 +11680 2 -54.0702422961692 -915.8504356855319 65.8204 0.1144 11679 +11681 2 -54.43990016849264 -914.7683898882436 65.8882 0.1144 11680 +11682 2 -54.96933908032128 -913.7563859314125 66.0162 0.1144 11681 +11683 2 -55.347771816173776 -912.679733812836 66.1898 0.1144 11682 +11684 2 -55.31564059306976 -911.5413451118636 66.3642 0.1144 11683 +11685 2 -55.247549469835064 -910.4024508591181 66.5518 0.1144 11684 +11686 2 -55.14065115380632 -909.267874220001 66.7965 0.1144 11685 +11687 2 -55.03055616150232 -908.1339150440738 67.0832 0.1144 11686 +11688 2 -55.046486112015884 -906.998305477948 67.4016 0.1144 11687 +11689 2 -55.489688841305394 -905.9560662632039 67.7533 0.1144 11688 +11690 2 -55.94446918595446 -904.9169525600314 68.122 0.1144 11689 +11691 2 -56.39924953060358 -903.8778388568588 68.4866 0.1144 11690 +11692 2 -56.76264847779274 -903.0068700025466 69.0654 0.1144 11691 +11693 2 -57.199931461196456 -901.9568837491007 69.2933 0.1144 11692 +11694 2 -57.56700150822169 -900.874655852317 69.3661 0.1144 11693 +11695 2 -57.782521489831254 -899.7529171004112 69.414 0.1144 11694 +11696 2 -57.908943968092075 -898.6166740423508 69.4462 0.1144 11695 +11697 2 -58.02409756258817 -897.4789038108565 69.473 0.1144 11696 +11698 2 -58.132253629605145 -896.3395321396415 69.5106 0.1144 11697 +11699 2 -58.18668204131791 -895.1980066217495 69.5904 0.1144 11698 +11700 2 -58.181055099249875 -894.0558373008855 69.7393 0.1144 11699 +11701 2 -58.28471316965303 -892.9216827195165 69.977 0.1144 11700 +11702 2 -58.65365125620764 -891.8539844623815 70.3329 0.1144 11701 +11703 2 -59.11724790363559 -890.8243982355439 70.7762 0.1144 11702 +11704 2 -59.54232178034371 -889.7789975806081 71.246 0.1144 11703 +11705 2 -59.94114533275152 -888.7216872458223 71.6808 0.1144 11704 +11706 2 -60.01040901412472 -887.5865808224228 71.8124 0.1144 11705 +11707 2 -59.84746802046834 -886.4578178124927 71.6086 0.1144 11706 +11708 2 -59.6346299481655 -885.3359462133433 71.444 0.1144 11707 +11709 2 -59.40316126562806 -884.2161216516353 71.4017 0.1144 11708 +11710 2 -59.31778701514389 -883.0879672085938 71.4498 0.1144 11709 +11711 2 -59.523815449038636 -881.9684935222452 71.5436 0.1144 11710 +11712 2 -59.851467043246174 -880.8740089710462 71.6542 0.1144 11711 +11713 2 -60.1812078066817 -879.7782262010918 71.7514 0.1144 11712 +11714 2 -60.50689996534393 -878.6825372362 71.8127 0.1144 11713 +11715 2 -60.8286208871028 -877.5845246367719 71.8463 0.1144 11714 +11716 2 -61.13190422468543 -876.4817522590145 71.8704 0.1144 11715 +11717 2 -61.34836132764269 -875.3605895310488 71.9015 0.1144 11716 +11718 2 -61.45277752148132 -874.2229100030339 71.9471 0.1144 11717 +11719 2 -61.51954167198923 -873.0809850500677 72.0037 0.1144 11718 +11720 2 -61.58635818830979 -871.9389749042517 72.0642 0.1144 11719 +11721 2 -61.67856837703599 -870.7991921788627 72.1185 0.1144 11720 +11722 2 -61.853145833976924 -869.6697768604222 72.1543 0.1144 11721 +11723 2 -62.101588498578366 -868.5534848455777 72.1619 0.1144 11722 +11724 2 -62.363036730977484 -867.4399048790842 72.1378 0.1144 11723 +11725 2 -62.576597277041685 -866.3169617134856 72.0726 0.1144 11724 +11726 2 -62.72885971796555 -865.1845115869529 71.9597 0.1144 11725 +11727 2 -62.85969189840728 -864.0496878691179 71.8102 0.1144 11726 +11728 2 -62.95083523210306 -862.9118317522372 71.6467 0.1144 11727 +11729 2 -62.901501351202484 -861.775076625486 71.4986 0.1144 11728 +11730 2 -62.7101818338146 -860.6489421875672 71.388 0.1144 11729 +11731 2 -62.47612532597901 -859.528935526364 71.318 0.1144 11730 +11732 2 -62.24305830530389 -858.4094196962509 71.2816 0.1144 11731 +11733 2 -62.009991284628825 -857.2899038661379 71.2701 0.1144 11732 +11734 2 -61.825490296807686 -856.1612698973539 71.2746 0.1144 11733 +11735 2 -61.815312992313125 -855.0244028591858 71.2894 0.1144 11734 +11736 2 -61.97969624549964 -853.8940035642145 71.311 0.1144 11735 +11737 2 -62.19281050130638 -852.7694948875151 71.3367 0.1144 11736 +11738 2 -62.51168413040182 -851.6763054534885 71.3745 0.1144 11737 +11739 2 -63.11479694034247 -850.7256680733664 71.4454 0.1144 11738 +11740 2 -63.91727592888225 -849.9137744024019 71.552 0.1144 11739 +11741 2 -64.41690225607132 -848.9437791327332 71.6313 0.1144 11740 +11742 2 -64.50202662288552 -847.809031397695 71.6204 0.1144 11741 +11743 2 -64.97616005667311 -846.8476641281435 71.5064 0.1144 11742 +11744 2 -65.90498194736352 -846.2060435351337 71.3118 0.1144 11743 +11745 2 -66.95524009846332 -845.7732328189443 71.0598 0.1144 11744 +11746 2 -68.06562547826925 -845.5439440091142 70.7644 0.1144 11745 +11747 2 -68.51613336564816 -844.6297970059417 70.5757 0.1144 11746 +11748 2 -68.64950100557533 -843.4952405804518 70.572 0.1144 11747 +11749 2 -68.76567691426905 -842.3580987387104 70.7036 0.1144 11748 +11750 2 -68.88266021062779 -841.2240355533572 70.9377 0.1144 11749 +11751 2 -68.99365736714205 -840.0932183085092 71.2449 0.1144 11750 +11752 2 -68.90373585581443 -838.9636773522794 71.6038 0.1144 11751 +11753 2 -68.76258622004778 -837.8388010789396 71.9804 0.1144 11752 +11754 2 -68.61822036923016 -836.7147650203019 72.3643 0.1144 11753 +11755 2 -68.47336368732223 -835.5917184488247 72.7518 0.1144 11754 +11756 2 -68.32899783650461 -834.4676823901871 73.1402 0.1144 11755 +11757 2 -67.80162815922264 -833.4708130288947 73.519 0.1144 11756 +11758 2 -66.97409354744255 -832.7002727468159 73.8693 0.1144 11757 +11759 2 -66.11202319385023 -831.9595648722411 74.2011 0.1144 11758 +11760 2 -65.73525515528848 -830.9034930919543 74.5679 0.1144 11759 +11761 2 -65.5272699738409 -829.7912951400148 74.9636 0.1144 11760 +11762 2 -65.33023711958324 -828.6765562179604 75.3808 0.1144 11761 +11763 2 -65.13464004274354 -827.5638736380969 75.8111 0.1144 11762 +11764 2 -65.13221528758046 -826.4317718888876 76.2082 0.1144 11763 +11765 2 -65.22228083968281 -825.3000613709881 76.5607 0.1144 11764 +11766 2 -65.32054833295723 -824.1679928572639 76.8776 0.1144 11765 +11767 2 -65.41939185017173 -823.0349872221921 77.1758 0.1144 11766 +11768 2 -65.51729824603851 -821.9014055631801 77.4707 0.1144 11767 +11769 2 -65.61454342511533 -820.7687086597032 77.7734 0.1144 11768 +11770 2 -66.08313362364419 -819.7420744571544 78.1676 0.1144 11769 +11771 2 -66.67225448020977 -818.7815454017067 78.6478 0.1144 11770 +11772 2 -67.26285255344303 -817.8272064860729 79.1823 0.1144 11771 +11773 2 -67.79205940901011 -816.8352493781186 79.6984 0.1144 11772 +11774 2 -68.17766556867085 -815.7709884657331 80.1069 0.1144 11773 +11775 2 -68.56460587570726 -814.702265485354 80.4269 0.1144 11774 +11776 2 -68.93792064174215 -814.6389847184472 80.6669 0.1144 11775 +11777 2 -70.05359358356125 -814.4492166840139 81.0723 0.1144 11776 +11778 2 -71.16084794116597 -814.2208204546987 81.4654 0.1144 11777 +11779 2 -72.11961007256878 -813.6068764219174 81.7289 0.1144 11778 +11780 2 -73.07635489198401 -812.981128133448 81.755 0.1144 11779 +11781 2 -74.0735446039709 -812.4270751772178 81.5643 0.1144 11780 +11782 2 -75.02703727971496 -811.8087183406724 81.2596 0.1144 11781 +11783 2 -75.97421628512859 -811.1809637614747 80.9354 0.1144 11782 +11784 2 -76.92927447197323 -810.5621606346718 80.6378 0.1144 11783 +11785 2 -77.88227941821006 -809.9381044894028 80.3891 0.1144 11784 +11786 2 -78.81093944071736 -809.2747863435657 80.1923 0.1144 11785 +11787 2 -79.71549919148146 -808.5765822850717 80.0316 0.1144 11786 +11788 2 -80.60839062340659 -807.8645153143486 79.8885 0.1144 11787 +11789 2 -81.45866210814566 -807.1060614909422 79.7555 0.1144 11788 +11790 2 -82.15099836099799 -806.1981772070237 79.6342 0.1144 11789 +11791 2 -82.7728629026432 -805.2389939180509 79.5298 0.1144 11790 +11792 2 -83.39469461725133 -804.2796730704158 79.441 0.1144 11791 +11793 2 -84.07904936609378 -803.380381550531 79.3722 0.1144 11792 +11794 2 -85.0655899718561 -802.8197828677087 79.3498 0.1144 11793 +11795 2 -86.16343528146064 -802.4995630585476 79.3727 0.1144 11794 +11796 2 -87.27075741809736 -802.2120485967993 79.4167 0.1144 11795 +11797 2 -88.36459005154882 -801.885371355479 79.4441 0.1144 11796 +11798 2 -89.39789232179643 -801.3991769516639 79.3834 0.1144 11797 +11799 2 -90.33268081355564 -800.7545331696614 79.2042 0.1144 11798 +11800 2 -91.1322273165822 -799.9474102982855 78.9018 0.1144 11799 +11801 2 -91.86971897610607 -799.0861801593953 78.5406 0.1144 11800 +11802 2 -92.55421438519403 -798.1801670165892 78.2057 0.1144 11801 +11803 2 -93.20882191938227 -797.2463921207047 77.9878 0.1144 11802 +11804 2 -93.87363226953767 -796.3175974403118 78.0094 0.1144 11803 +11805 2 -94.54298677895343 -795.3968780689913 78.2723 0.1144 11804 +11806 2 -95.1653390501059 -794.4433940887424 78.512 0.1144 11805 +11807 2 -95.69589408119452 -793.4360671264374 78.3835 0.1144 11806 +11808 2 -96.26021752060697 -792.4480881510895 78.0878 0.1144 11807 +11809 2 -96.5384839862065 -791.9974828425069 76.7903 0.1144 11808 +11810 2 -97.12818017417558 -791.0600792923244 76.0956 0.1144 11809 +11811 2 -97.82799858243118 -790.1661845527344 75.7686 0.1144 11810 +11812 2 -98.69990604413167 -789.4533095018096 75.3122 0.1144 11811 +11813 2 -99.60025390720315 -788.9848129965263 74.7642 0.1144 11812 +11814 2 -99.78710224751165 -789.1265439660565 73.5672 0.1144 11813 +11815 2 -100.73731946437422 -788.7625333332749 72.7692 0.1144 11814 +11816 2 -101.6729944281784 -788.1599872254044 72.1291 0.1144 11815 +11817 2 -102.39092317421294 -787.3349757614735 71.5198 0.1144 11816 +11818 2 -103.13486847177627 -786.5004843689275 71.136 0.1144 11817 +11819 2 -103.96741433312803 -785.7204534216273 70.9727 0.1144 11818 +11820 2 -104.80299431003543 -784.942170084923 70.8126 0.1144 11819 +11821 2 -105.64849809676889 -784.1740949801193 70.6586 0.1144 11820 +11822 2 -106.49814429333823 -783.4099746750263 70.5709 0.1144 11821 +11823 2 -107.13261358263365 -782.489292948836 70.5552 0.1144 11822 +11824 2 -107.53354033241555 -781.4197766089377 70.5684 0.1144 11823 +11825 2 -107.87232325172528 -780.3268520582097 70.5914 0.1144 11824 +11826 2 -107.97878958458864 -779.2011143445452 70.6154 0.1144 11825 +11827 2 -107.60914570560554 -778.1508301674148 70.6292 0.1144 11826 +11828 2 -107.02301269013208 -777.1687837641466 70.6266 0.1144 11827 +11829 2 -106.44556383470827 -776.1813936389328 70.6163 0.1144 11828 +11830 2 -105.74241238775984 -775.2871742627983 70.576 0.1144 11829 +11831 2 -104.8953186566101 -774.5221012331817 70.52 0.1144 11830 +11832 2 -104.04385666252914 -773.7597426609627 70.4894 0.1144 11831 +11833 2 -103.17207122247694 -773.0197538796201 70.5029 0.1144 11832 +11834 2 -102.28410784787224 -772.2994008929804 70.565 0.1144 11833 +11835 2 -101.56415007661853 -771.4258396257466 70.7 0.1144 11834 +11836 2 -101.05964712977324 -770.4093375713343 70.9442 0.1144 11835 +11837 2 -100.63533847413811 -769.356323523587 71.2802 0.1144 11836 +11838 2 -100.21834700413999 -768.3022902632252 71.6652 0.1144 11837 +11839 2 -99.77800107419806 -767.2621903872596 72.1081 0.1144 11838 +11840 2 -99.31733790145103 -766.231082710402 72.5491 0.1144 11839 +11841 2 -98.852929344896 -765.1909821418999 72.7784 0.1144 11840 +11842 2 -98.38514511415339 -764.1473980660016 72.7577 0.1144 11841 +11843 2 -97.53479613774941 -763.396405284193 72.7115 0.1144 11842 +11844 2 -96.54262238675287 -762.8282122379196 72.7364 0.1144 11843 +11845 2 -95.54300722706625 -762.2742260715537 72.7779 0.1144 11844 +11846 2 -94.59452610266752 -761.6347594370377 72.8213 0.1144 11845 +11847 2 -93.9510374701283 -760.6914079066987 72.7871 0.1144 11846 +11848 2 -93.3212296503228 -759.7389758828189 72.676 0.1144 11847 +11849 2 -92.18873808454038 -759.582579644272 72.5656 0.1144 11848 +11850 2 -91.05663502726924 -759.4427381349931 72.3582 0.1144 11849 +11851 2 -96.62546999942711 -792.5289252509614 77.8571 0.1144 11808 +11852 2 -97.74257250351991 -792.7737577760672 77.7784 0.1144 11851 +11853 2 -98.8585034209568 -793.0206872953808 77.8484 0.1144 11852 +11854 2 -99.96963622239764 -793.2752318053633 78.0724 0.1144 11853 +11855 2 -101.05195000456771 -793.6182915915882 78.3751 0.1144 11854 +11856 2 -102.06258457793962 -794.1346811820191 78.7097 0.1144 11855 +11857 2 -102.97578655777332 -794.7725347577148 79.3092 0.1144 11856 +11858 2 -103.90376633927298 -795.3053777788081 80.204 0.1144 11857 +11859 2 -104.94738184515711 -795.305022985534 81.03 0.1144 11858 +11860 2 -105.97103029105887 -794.9002259015488 81.7578 0.1144 11859 +11861 2 -107.05671234286268 -794.7243029570787 82.294 0.1144 11860 +11862 2 -108.15626511989737 -794.9583481247607 82.5255 0.1144 11861 +11863 2 -109.23634838005725 -795.3334903792754 82.4631 0.1144 11862 +11864 2 -110.35036781811655 -795.4435528234885 82.1246 0.1144 11863 +11865 2 -111.4655228965265 -795.3420889328847 81.5646 0.1144 11864 +11866 2 -112.56553776780083 -795.2018561871536 80.8808 0.1144 11865 +11867 2 -113.66315473825233 -795.0613233220402 80.1634 0.1144 11866 +11868 2 -114.76214729532909 -794.9204621865563 79.473 0.1144 11867 +11869 2 -115.88266281696589 -794.910915680861 78.9141 0.1144 11868 +11870 2 -116.98982438150337 -795.1631365563074 78.6246 0.1144 11869 +11871 2 -118.12844513873742 -795.1109584843266 78.552 0.1144 11870 +11872 2 -119.26760737636465 -795.0162692749934 78.6341 0.1144 11871 +11873 2 -120.40486254425932 -794.9202904591175 78.8166 0.1144 11872 +11874 2 -121.54157451525091 -794.8253863232519 79.0496 0.1144 11873 +11875 2 -122.67717897919515 -794.7298014318208 79.2876 0.1144 11874 +11876 2 -123.79148082104518 -794.4855476186476 79.4906 0.1144 11875 +11877 2 -124.89007805091907 -794.175180454609 79.6522 0.1144 11876 +11878 2 -126.00189749163302 -793.9065115296278 79.7647 0.1144 11877 +11879 2 -127.14044536765348 -793.801936848135 79.8073 0.1144 11878 +11880 2 -128.28072062295763 -793.7186134292122 79.767 0.1144 11879 +11881 2 -129.42197133727626 -793.6466886277367 79.6267 0.1144 11880 +11882 2 -130.55938837335398 -793.572407364688 79.4192 0.1144 11881 +11883 2 -131.68482015523304 -793.3778388052121 79.2392 0.1144 11882 +11884 2 -132.80962664894236 -793.1776037640495 79.0922 0.1144 11883 +11885 2 -133.93412441105676 -792.9757703847492 78.9768 0.1144 11884 +11886 2 -135.06026195055847 -792.7777620714771 78.8836 0.1144 11885 +11887 2 -136.18663395536845 -792.5770807400572 78.797 0.1144 11886 +11888 2 -137.3192603689932 -792.4233225625206 78.6974 0.1144 11887 +11889 2 -138.4578417822724 -792.510803390908 78.5641 0.1144 11888 +11890 2 -139.5950335807801 -792.609520276023 78.3866 0.1144 11889 +11891 2 -140.73238524687235 -792.6117310761362 78.0752 0.1144 11890 +11892 2 -141.85611356822534 -792.7344520188853 77.6521 0.1144 11891 +11893 2 -142.89733046877188 -793.1770263584219 77.2355 0.1144 11892 +11894 2 -143.27530711788722 -793.4644102701559 77.532 0.1144 11893 +11895 2 -144.16350324129013 -794.1406537813056 76.9997 0.1144 11894 +11896 2 -145.06809704387092 -794.8295588925745 76.6816 0.1144 11895 +11897 2 -145.79272870806767 -795.7086928364326 76.4439 0.1144 11896 +11898 2 -146.43496056110115 -796.6540889951666 76.3056 0.1144 11897 +11899 2 -147.07595517340468 -797.6013070307835 76.2843 0.1144 11898 +11900 2 -143.1771406163022 -791.896079489368 76.1765 0.1144 11893 +11901 2 -143.46223352543774 -790.8358863120835 75.4018 0.1144 11900 +11902 2 -143.87209941597837 -789.8108350344532 74.6925 0.1144 11901 +11903 2 -144.36883538944048 -788.8256817353832 73.9556 0.1144 11902 +11904 2 -144.91750385989124 -787.8805492528533 73.1354 0.1144 11903 +11905 2 -145.5344087014459 -786.9840505822093 72.273 0.1144 11904 +11906 2 -146.1959452915447 -786.1350579850916 71.3266 0.1144 11905 +11907 2 -146.9328684383566 -785.403653640223 70.1683 0.1144 11906 +11908 2 -147.97584765249673 -785.5922428734034 69.2793 0.1144 11907 +11909 2 -149.0329937100529 -785.951995042255 68.6666 0.1144 11908 +11910 2 -150.10095925953323 -786.3183976693242 68.2158 0.1144 11909 +11911 2 -151.100933107581 -786.856523150249 67.9025 0.1144 11910 +11912 2 -151.9929067492923 -787.565959738319 67.6743 0.1144 11911 +11913 2 -153.12115940704135 -787.6202115611659 67.4159 0.1144 11912 +11914 2 -153.8774817046709 -788.0085708176647 67.216 0.1144 11913 +11915 2 -154.96332043348696 -788.3523887273251 67.1857 0.1144 11914 +11916 2 -156.02571571538965 -788.7408390780663 67.2305 0.1144 11915 +11917 2 -156.96051602705467 -789.3893862061232 67.31 0.1144 11916 +11918 2 -157.82846468728297 -790.1337073217768 67.4078 0.1144 11917 +11919 2 -158.63225022213794 -790.9405929109145 67.5206 0.1144 11918 +11920 2 -159.28607682026023 -791.8715179989789 67.6536 0.1144 11919 +11921 2 -159.81891685158735 -792.8812576837568 67.8034 0.1144 11920 +11922 2 -160.26340208978198 -793.9320011553173 67.9613 0.1144 11921 +11923 2 -160.6604343127995 -795.0032285559591 68.1388 0.1144 11922 +11924 2 -161.01001662222313 -796.088251089798 68.332 0.1144 11923 +11925 2 -161.28839202145144 -797.195355198319 68.5269 0.1144 11924 +11926 2 -161.71568862999567 -798.2368244577438 68.7336 0.1144 11925 +11927 2 -162.5301300720818 -798.9872264949297 68.9346 0.1144 11926 +11928 2 -163.55230702472974 -799.4892302075407 69.1127 0.1144 11927 +11929 2 -164.55780118358894 -800.0227669883723 69.2941 0.1144 11928 +11930 2 -165.36666925651423 -800.8019055451143 69.494 0.1144 11929 +11931 2 -165.85277605843308 -801.8177816188203 69.694 0.1144 11930 +11932 2 -166.0600031164452 -802.9335045174056 69.904 0.1144 11931 +11933 2 -166.14061207797036 -804.0694115097785 70.147 0.1144 11932 +11934 2 -166.38540357741698 -805.1719536367737 70.4231 0.1144 11933 +11935 2 -167.11643141165874 -805.9663966778809 70.756 0.1144 11934 +11936 2 -168.1159206317824 -806.4921340541978 71.1469 0.1144 11935 +11937 2 -169.14246653989812 -806.967360682798 71.5817 0.1144 11936 +11938 2 -170.21918402846006 -807.2693013554887 72.0871 0.1144 11937 +11939 2 -171.3318340830602 -807.3663144783038 72.6664 0.1144 11938 +11940 2 -172.44655038244085 -807.3921737492732 73.2855 0.1144 11939 +11941 2 -173.49263317801547 -807.7680148657079 73.8178 0.1144 11940 +11942 2 -174.22440682405653 -808.6112772038682 74.1289 0.1144 11941 +11943 2 -174.8830894146173 -809.5451871432587 74.2311 0.1144 11942 +11944 2 -175.66845857323352 -810.3757321298153 74.263 0.1144 11943 +11945 2 -176.6439111927746 -810.9646356508019 74.419 0.1144 11944 +11946 2 -177.59986626881187 -811.513265783586 75.1626 0.1144 11945 +11947 2 -153.31548960097945 -787.4831843167071 64.3378 0.1144 11913 +11948 2 -153.83381290269887 -786.7033350781394 62.991 0.1144 11947 +11949 2 -154.0583356962276 -785.7241134458282 61.6812 0.1144 11948 +11950 2 -154.49089752305724 -784.7801545505527 60.5102 0.1144 11949 +11951 2 -154.84075321617522 -783.9182333627443 58.9753 0.1144 11950 +11952 2 -154.31552188336155 -783.5362275289789 57.6752 0.1144 11951 +11953 2 -153.25252414874728 -783.8215244728897 56.9355 0.1144 11952 +11954 2 -152.22970670749464 -784.2751932197407 56.4385 0.1144 11953 +11955 2 -151.1918007323825 -784.7140705452276 56.0854 0.1144 11954 +11956 2 -150.08199858597118 -784.7785631480662 55.8177 0.1144 11955 +11957 2 -148.95623484627617 -784.6089299779965 55.5318 0.1144 11956 +11958 2 -147.85983390861725 -784.7192217904786 55.0721 0.1144 11957 +11959 2 -146.8882699252975 -785.255455318259 54.5317 0.1144 11958 +11960 2 -145.8429855024343 -785.6146736297627 54.0134 0.1144 11959 +11961 2 -144.74486198589963 -785.5224812633023 53.4573 0.1144 11960 +11962 2 -143.69198427774222 -785.1949326842102 52.7335 0.1144 11961 +11963 2 -142.7207969060168 -784.6449215488676 52.1455 0.1144 11962 +11964 2 -141.96434085582246 -783.8066770713287 51.751 0.1144 11963 +11965 2 -141.06733463280696 -783.1075284920757 51.5007 0.1144 11964 +11966 2 -140.1144297780812 -782.4775503036913 51.3884 0.1144 11965 +11967 2 -139.24719470045554 -781.7322592396529 51.4139 0.1144 11966 +11968 2 -138.54595342482276 -780.8326406741769 51.5284 0.1144 11967 +11969 2 -137.9580399717163 -779.8534908278018 51.6533 0.1144 11968 +11970 2 -137.20006836718755 -778.9982336169418 51.7591 0.1144 11969 +11971 2 -136.2457441722364 -778.3726651307384 51.8344 0.1144 11970 +11972 2 -135.27595562533546 -777.765762490853 51.8756 0.1144 11971 +11973 2 -134.41125600719522 -777.0207387191597 51.7658 0.1144 11972 +11974 2 -133.63081882381414 -776.2388863975566 51.0432 0.1144 11973 +11975 2 -68.81117800274353 -814.16362814338 80.9357 0.1144 11775 +11976 2 -69.25767121337077 -813.1248200702194 81.3501 0.1144 11975 +11977 2 -69.72951665715385 -812.0841056198626 81.501 0.1144 11976 +11978 2 -70.18746395262434 -811.0375480989536 81.6668 0.1144 11977 +11979 2 -70.56438354318894 -809.9612570777848 81.8894 0.1144 11978 +11980 2 -70.83086676593874 -808.8547629332035 82.1576 0.1144 11979 +11981 2 -71.01774403305467 -807.7314994169103 82.4149 0.1144 11980 +11982 2 -71.21125773024204 -806.60832419505 82.6613 0.1144 11981 +11983 2 -71.54705579822578 -805.5202556367605 82.934 0.1144 11982 +11984 2 -71.76591862698584 -804.4018628335882 83.1846 0.1144 11983 +11985 2 -71.87202696402463 -803.2679231787517 83.4358 0.1144 11984 +11986 2 -72.12051106787584 -802.1557649615303 83.6881 0.1144 11985 +11987 2 -72.58705112737994 -801.1171889446312 83.9404 0.1144 11986 +11988 2 -73.06254814990848 -800.0814187811459 84.1887 0.1144 11987 +11989 2 -73.46410018786011 -799.0175689229343 84.4827 0.1144 11988 +11990 2 -73.85206280909404 -797.9494743323079 84.8128 0.1144 11989 +11991 2 -74.34377851288815 -796.9222647983557 85.0676 0.1144 11990 +11992 2 -74.90880770992331 -795.9308460692115 85.2706 0.1144 11991 +11993 2 -75.6810900919684 -795.0895923070311 85.4375 0.1144 11992 +11994 2 -76.95263962111108 -794.6397391143815 85.2723 0.1144 11993 +11995 2 -78.05631328058541 -794.3405915698778 85.2748 0.1144 11994 +11996 2 -79.176851424896 -794.1081529389555 85.2813 0.1144 11995 +11997 2 -80.30615522268255 -793.92676343456 85.29 0.1144 11996 +11998 2 -81.43385517170185 -793.7349976269146 85.3014 0.1144 11997 +11999 2 -82.57555217627791 -793.6646383365397 85.3185 0.1144 11998 +12000 2 -83.71343332487885 -793.5502633757374 85.3448 0.1144 11999 +12001 2 -84.84464109081492 -793.3768522737687 85.3787 0.1144 12000 +12002 2 -85.9849194477022 -793.2868400589616 85.4185 0.1144 12001 +12003 2 -87.1245834429827 -793.1869423719951 85.4686 0.1144 12002 +12004 2 -87.87793268636449 -792.3327597173503 85.5935 0.1144 12003 +12005 2 -88.80239793322326 -791.6655719646523 85.82 0.1144 12004 +12006 2 -75.62173850718995 -794.5481384868541 85.5719 0.1144 11993 +12007 2 -75.54353837305067 -793.4083126233904 85.7254 0.1144 12006 +12008 2 -75.58602497041298 -792.2688372445232 85.9396 0.1144 12007 +12009 2 -75.70268860861387 -791.1373947115054 86.2445 0.1144 12008 +12010 2 -75.79333018465636 -790.0047470722582 86.5612 0.1144 12009 +12011 2 -75.85457402435279 -788.8674108193851 86.8174 0.1144 12010 +12012 2 -76.07241453891533 -787.7483896264602 87.0464 0.1144 12011 +12013 2 -76.55762354632066 -786.7185891656268 87.3085 0.1144 12012 +12014 2 -77.10603703606236 -785.7236478988832 87.5714 0.1144 12013 +12015 2 -77.40833329553101 -784.6377585207644 87.4742 0.1144 12014 +12016 2 -77.56871448537566 -783.6231016704232 86.7241 0.1144 12015 +12017 2 -78.62674570120785 -783.2475380455545 86.5578 0.1144 12016 +12018 2 -79.73801204242912 -783.0496618750116 86.9739 0.1144 12017 +12019 2 -80.81545381539425 -782.8632743328587 87.7834 0.1144 12018 +12020 2 -81.77363099689256 -782.372690049727 88.7001 0.1144 12019 +12021 2 -82.32101837831704 -781.4078718157278 89.3822 0.1144 12020 +12022 2 -82.75891572332753 -780.3677710344414 89.84 0.1144 12021 +12023 2 -83.09565091265907 -779.2802785000919 90.104 0.1144 12022 +12024 2 -83.39273628544781 -778.1765135335909 90.2258 0.1144 12023 +12025 2 -84.074605531571 -777.2594956977821 90.216 0.1144 12024 +12026 2 -85.04721034389065 -776.6581687242871 90.1919 0.1144 12025 +12027 2 -85.74075101043594 -775.7483250048232 90.2107 0.1144 12026 +12028 2 -86.61289362998114 -775.0087143091373 90.2773 0.1144 12027 +12029 2 -87.6733302698425 -774.3431728507446 90.7323 0.1144 12028 +12030 2 -88.36205328161604 -773.441166873462 91.0123 0.1144 12029 +12031 2 -89.133404052943 -772.6100221221861 91.336 0.1144 12030 +12032 2 -89.93018063117597 -771.805304976613 91.7118 0.1144 12031 +12033 2 -90.79683576694681 -771.070420539683 92.0242 0.1144 12032 +12034 2 -91.79316503291929 -770.5374367465272 92.3975 0.1144 12033 +12035 2 -92.69651967745389 -769.8652547501915 92.8598 0.1144 12034 +12036 2 -93.64217150943355 -769.2487690547586 93.312 0.1144 12035 +12037 2 -94.54730969318433 -768.5670017056457 93.6961 0.1144 12036 +12038 2 -95.24819185488721 -767.6778691534316 94.0254 0.1144 12037 +12039 2 -96.06906319423376 -766.8973528856707 94.3919 0.1144 12038 +12040 2 -97.150330441675 -766.6084957590305 94.8508 0.1144 12039 +12041 2 -98.2742073252647 -766.5365733666015 95.3285 0.1144 12040 +12042 2 -99.23768168727723 -765.9390246039516 95.706 0.1144 12041 +12043 2 -99.24984974548599 -765.6134948228878 95.8768 0.1144 12042 +12044 2 -99.33202759864082 -764.4944256737951 96.3852 0.1144 12043 +12045 2 -99.5107029245847 -763.3715201533265 96.6916 0.1144 12044 +12046 2 -99.71356750924119 -762.2528014888303 96.9912 0.1144 12045 +12047 2 -100.03052314204103 -761.1625414387338 97.2342 0.1144 12046 +12048 2 -100.5102063280054 -760.1266446431489 97.3582 0.1144 12047 +12049 2 -101.0525210739491 -759.1198553671175 97.3666 0.1144 12048 +12050 2 -101.39821253376846 -758.0592313127947 97.3305 0.1144 12049 +12051 2 -100.91060079032648 -757.148542382557 97.4137 0.1144 12050 +12052 2 -100.00543096380561 -756.4605743926359 97.6738 0.1144 12051 +12053 2 -99.07886542034966 -755.8118068274168 98.0851 0.1144 12052 +12054 2 -98.15809299067986 -755.166600137464 98.607 0.1144 12053 +12055 2 -97.23223251231003 -754.5384554450619 99.1816 0.1144 12054 +12056 2 -96.2737895245071 -753.9547251656252 99.7282 0.1144 12055 +12057 2 -95.28638588056259 -753.413527231478 100.207 0.1144 12056 +12058 2 -94.28885919756735 -752.8823054729698 100.6415 0.1144 12057 +12059 2 -93.50481819594485 -752.9629819117533 101.6137 0.1144 12058 +12060 2 -94.2294982070722 -753.3896428092733 102.9286 0.1144 12059 +12061 2 -95.2092298897906 -753.1042250279812 104.1169 0.1144 12060 +12062 2 -95.97999191709336 -752.4271914488522 105.2643 0.1144 12061 +12063 2 -95.40518493962728 -751.6845207353754 106.1144 0.1144 12062 +12064 2 -94.49083160444995 -751.0244787757621 106.561 0.1144 12063 +12065 2 -93.40803009277265 -750.6757196808135 106.6934 0.1144 12064 +12066 2 -92.34330497887464 -750.9397653621544 106.013 0.1144 12065 +12067 2 -100.25052054384446 -765.4578589873208 96.1425 0.1144 12042 +12068 2 -101.28101145004878 -764.9699365116853 96.3645 0.1144 12067 +12069 2 -102.31314523522356 -764.4791503061939 96.4636 0.1144 12068 +12070 2 -103.34729082175642 -763.9894833215455 96.5698 0.1144 12069 +12071 2 -104.37434817733076 -763.487477496519 96.6675 0.1144 12070 +12072 2 -105.3634828115575 -762.9136833214238 96.7067 0.1144 12071 +12073 2 -106.35460970836657 -762.3412311186839 96.6977 0.1144 12072 +12074 2 -107.34507538838572 -761.7696636714793 96.651 0.1144 12073 +12075 2 -108.33303843595655 -761.1979664905919 96.4774 0.1144 12074 +12076 2 -87.09667468494843 -773.9793273115243 89.2718 0.1144 12028 +12077 2 -87.66945332973195 -772.9993626672233 88.9834 0.1144 12076 +12078 2 -88.42726153952432 -772.1532029558383 88.7141 0.1144 12077 +12079 2 -89.20431161957495 -771.3215704750553 88.4103 0.1144 12078 +12080 2 -89.97726072903957 -770.4901169921845 88.0849 0.1144 12079 +12081 2 -90.73075614329657 -769.6398977494632 87.7498 0.1144 12080 +12082 2 -91.48232494904536 -768.7886116517114 87.4163 0.1144 12081 +12083 2 -92.23452214454693 -767.9363032397622 87.0864 0.1144 12082 +12084 2 -92.98609095029569 -767.0850171420104 86.7577 0.1144 12083 +12085 2 -93.74969227387423 -766.2424183058914 86.4408 0.1144 12084 +12086 2 -94.5481226576407 -765.4306184399894 86.1655 0.1144 12085 +12087 2 -95.37758986260398 -764.6513948803542 85.9102 0.1144 12086 +12088 2 -96.37116633351211 -764.10322023076 85.6072 0.1144 12087 +12089 2 -97.30791666986318 -763.4771546931794 85.1329 0.1144 12088 +12090 2 -97.61964821614679 -763.4485616336784 84.9402 0.1144 12089 +12091 2 -98.72709218447503 -763.3464662517388 84.3004 0.1144 12090 +12092 2 -99.85583978118578 -763.2425582976656 83.9174 0.1144 12091 +12093 2 -100.98390662233099 -763.1397578506397 83.5341 0.1144 12092 +12094 2 -102.11202582928894 -763.0368722107642 83.1435 0.1144 12093 +12095 2 -103.23805896860196 -762.9285959937598 82.7305 0.1144 12094 +12096 2 -104.35238614394594 -762.7715716444061 82.2483 0.1144 12095 +12097 2 -105.3825272580904 -762.3802732736592 81.6301 0.1144 12096 +12098 2 -106.20316584863872 -761.6438664813882 80.8889 0.1144 12097 +12099 2 -106.8665019947202 -761.3117510085451 79.4545 0.1144 12098 +12100 2 -107.5104523307361 -762.1976350104014 78.6509 0.1144 12099 +12101 2 -108.15520222943725 -763.0841278632349 77.8476 0.1144 12100 +12102 2 -108.82628833782505 -763.958520135118 77.0958 0.1144 12101 +12103 2 -109.51211901239392 -764.8285941008362 76.405 0.1144 12102 +12104 2 -110.20030304695277 -765.7015231841976 75.7484 0.1144 12103 +12105 2 -110.84583740887159 -766.5212390603291 74.6018 0.1144 12104 +12106 2 -97.06356795634994 -763.1188438836796 83.8597 0.1144 12089 +12107 2 -96.60729627275514 -762.4476251408323 81.8888 0.1144 12106 +12108 2 -96.04503106431525 -761.6213413061979 80.5921 0.1144 12107 +12109 2 -95.3755481121581 -760.7813879641776 79.6295 0.1144 12108 +12110 2 -94.64059899777914 -759.9671622649556 78.8376 0.1144 12109 +12111 2 -93.81292303321683 -759.2274062324112 78.1659 0.1144 12110 +12112 2 -92.914656236576 -758.5610537040506 77.5835 0.1144 12111 +12113 2 -92.45068786180845 -757.5614852985798 76.9782 0.1144 12112 +12114 2 -92.05394344653699 -756.5402042408141 76.2056 0.1144 12113 +12115 2 -91.78557465862306 -755.6419674771078 74.6018 0.1144 12114 +12116 2 -55.95349821386088 -903.4843536047563 68.7618 0.1144 11691 +12117 2 -55.09512939578025 -902.731130993474 68.9489 0.1144 12116 +12118 2 -54.242548180856204 -901.9707842226131 69.0788 0.1144 12117 +12119 2 -53.50058102359722 -901.1024752813088 69.1863 0.1144 12118 +12120 2 -52.91761185736203 -900.1196738561882 69.3031 0.1144 12119 +12121 2 -52.34983664914836 -899.1274308401191 69.4134 0.1144 12120 +12122 2 -51.751621159078866 -898.1541561987968 69.5083 0.1144 12121 +12123 2 -51.042324113149306 -897.2588590410691 69.5901 0.1144 12122 +12124 2 -50.150438765870945 -896.5427860229277 69.664 0.1144 12123 +12125 2 -49.198920424333465 -895.9082605736997 69.7337 0.1144 12124 +12126 2 -48.24513081407264 -895.2776211685255 69.8048 0.1144 12125 +12127 2 -47.24765718942672 -894.7222515905545 69.9028 0.1144 12126 +12128 2 -46.15254114689179 -894.4023111064287 70.0823 0.1144 12127 +12129 2 -45.03632580738062 -894.1755136288417 70.3206 0.1144 12128 +12130 2 -43.94268147088377 -893.8510782496852 70.5051 0.1144 12129 +12131 2 -42.86349389282185 -893.4723782214875 70.5916 0.1144 12130 +12132 2 -41.78952099555954 -893.0808023591748 70.5872 0.1144 12131 +12133 2 -40.74733483916481 -892.6134518104225 70.5009 0.1144 12132 +12134 2 -39.77317492774952 -892.015952423819 70.3461 0.1144 12133 +12135 2 -38.837567228419346 -891.3643266393736 70.1448 0.1144 12134 +12136 2 -37.99893962920376 -890.6030489503312 69.9152 0.1144 12135 +12137 2 -37.40829769055347 -889.6304386273819 69.6592 0.1144 12136 +12138 2 -36.84902385035744 -888.6595023412784 69.3776 0.1144 12137 +12139 2 -35.91426187635906 -888.0217778067288 69.0385 0.1144 12138 +12140 2 -34.88476704553747 -887.5448559333452 68.6739 0.1144 12139 +12141 2 -33.85662279928408 -887.0699380363399 68.2906 0.1144 12140 +12142 2 -32.826913041930055 -886.595466429592 67.9064 0.1144 12141 +12143 2 -31.78810807035248 -886.1422844230806 67.5427 0.1144 12142 +12144 2 -30.707210526824696 -885.8015037305588 67.23 0.1144 12143 +12145 2 -29.58252767030612 -885.6190361656239 66.9939 0.1144 12144 +12146 2 -28.44626748251659 -885.5102102696043 66.8441 0.1144 12145 +12147 2 -27.304238821898252 -885.5091155887511 66.8108 0.1144 12146 +12148 2 -26.164001904260715 -885.6032616011812 66.8968 0.1144 12147 +12149 2 -25.027771459610108 -885.7172426375389 67.0547 0.1144 12148 +12150 2 -23.896382286715266 -885.8691789381926 67.2062 0.1144 12149 +12151 2 -22.81889496662899 -886.2086029724819 67.1947 0.1144 12150 +12152 2 -21.843446655765547 -886.784001688881 66.8377 0.1144 12151 +12153 2 -20.939062588546278 -886.5906896122797 66.3132 0.1144 12152 +12154 2 -20.15707151316417 -885.7810019638481 65.8647 0.1144 12153 +12155 2 -19.406819630929903 -884.9303724832845 65.494 0.1144 12154 +12156 2 -18.653704018839562 -884.0781001237503 65.2002 0.1144 12155 +12157 2 -17.899257360956767 -883.2236010363258 64.9905 0.1144 12156 +12158 2 -17.14245734308392 -882.3662468312579 64.8438 0.1144 12157 +12159 2 -16.40935644537001 -881.4900063427098 64.7284 0.1144 12158 +12160 2 -15.77402831475311 -880.5421630189231 64.6428 0.1144 12159 +12161 2 -15.190698051110274 -879.5578484485146 64.5887 0.1144 12160 +12162 2 -14.615390730727114 -878.5690749116957 64.5602 0.1144 12161 +12163 2 -14.039592579253735 -877.5812908620371 64.5509 0.1144 12162 +12164 2 -13.464285258870603 -876.5925173252181 64.5534 0.1144 12163 +12165 2 -12.716475031059247 -875.7381065322264 64.5747 0.1144 12164 +12166 2 -11.819557102476637 -875.032321522902 64.6167 0.1144 12165 +12167 2 -11.011103185308258 -874.230548291985 64.6576 0.1144 12166 +12168 2 -10.551641324671039 -873.2041699754662 64.6596 0.1144 12167 +12169 2 -10.233019853647562 -872.1060159342667 64.6103 0.1144 12168 +12170 2 -9.926883393877489 -871.0047370740322 64.5106 0.1144 12169 +12171 2 -9.620256103017141 -869.9044477009581 64.3622 0.1144 12170 +12172 2 -9.314651126354335 -868.804786717637 64.1729 0.1144 12171 +12173 2 -8.982316015560116 -867.7155756113158 63.9027 0.1144 12172 +12174 2 -8.633306628493528 -866.6363047520133 63.5482 0.1144 12173 +12175 2 -8.281855587004031 -865.5608152051391 63.1383 0.1144 12174 +12176 2 -7.930798469959257 -864.486976362215 62.697 0.1144 12175 +12177 2 -7.666536145575918 -863.3832650576107 62.3445 0.1144 12176 +12178 2 -7.459182455464287 -862.2633559955896 62.1102 0.1144 12177 +12179 2 -7.262111263539964 -861.1377944800279 61.9615 0.1144 12178 +12180 2 -7.066553216903515 -860.0118718670585 61.8444 0.1144 12179 +12181 2 -6.402731928339961 -859.1365455754108 61.3063 0.1144 12180 +12182 2 -5.7517532384064225 -858.3671262130001 60.2067 0.1144 12181 +12183 2 -5.34373855429709 -857.3924432350267 59.1738 0.1144 12182 +12184 2 -4.709497101574868 -856.5192177317065 58.3156 0.1144 12183 +12185 2 -3.947952310143961 -855.7220978783316 57.5677 0.1144 12184 +12186 2 -3.177847581716378 -854.9171340796092 56.9349 0.1144 12185 +12187 2 -2.3705450198916083 -854.1375492326098 56.4096 0.1144 12186 +12188 2 -1.4650134034264966 -853.4721307240138 55.9524 0.1144 12187 +12189 2 -0.4684238417790425 -852.9414849894457 55.5254 0.1144 12188 +12190 2 0.5554459466056869 -852.4598040302694 55.1093 0.1144 12189 +12191 2 1.52075121757548 -851.8826547135081 54.7008 0.1144 12190 +12192 2 2.2765436419334435 -851.0608993111632 54.3144 0.1144 12191 +12193 2 2.8516750659873367 -850.0829155408144 53.9619 0.1144 12192 +12194 2 3.4030135648198723 -849.0900940917587 53.6326 0.1144 12193 +12195 2 4.12399434280772 -848.239967061385 53.312 0.1144 12194 +12196 2 5.091033196227414 -847.6549440738223 53.0032 0.1144 12195 +12197 2 6.112273027527607 -847.1535163851513 52.7136 0.1144 12196 +12198 2 7.1290039356510135 -846.6426526161614 52.439 0.1144 12197 +12199 2 8.157332690446339 -846.1529487137253 52.1674 0.1144 12198 +12200 2 9.191625637263968 -845.6836418310108 51.8484 0.1144 12199 +12201 2 9.73838884862397 -844.8735773701786 51.3503 0.1144 12200 +12202 2 9.647888625363692 -843.7717139804656 50.6982 0.1144 12201 +12203 2 10.000468097749433 -842.7438916827641 50.0993 0.1144 12202 +12204 2 10.65091351105454 -841.8271351369406 49.6384 0.1144 12203 +12205 2 11.367834065169518 -840.9486326844185 49.2551 0.1144 12204 +12206 2 12.053073995115568 -840.0426511843825 48.9353 0.1144 12205 +12207 2 12.577861357728978 -839.0352788877408 48.6786 0.1144 12206 +12208 2 13.040522303687993 -837.9921442036829 48.4613 0.1144 12207 +12209 2 13.490398119011388 -836.9434867997672 48.2608 0.1144 12208 +12210 2 13.927403610849268 -835.8893590418064 48.0757 0.1144 12209 +12211 2 14.482032591019617 -834.8931064511673 47.8946 0.1144 12210 +12212 2 15.335997910085496 -834.1546807718788 47.6832 0.1144 12211 +12213 2 16.27762767788036 -833.51285216516 47.4312 0.1144 12212 +12214 2 17.218003767752634 -832.8756677259303 47.1226 0.1144 12213 +12215 2 18.155799857306675 -832.2361955807846 46.7597 0.1144 12214 +12216 2 19.026251842519912 -831.5158073580615 46.3414 0.1144 12215 +12217 2 19.55821091243169 -830.5374803125707 45.8405 0.1144 12216 +12218 2 19.915951314731046 -829.4743234029083 45.3121 0.1144 12217 +12219 2 20.236350814341023 -828.3964397493307 44.7871 0.1144 12218 +12220 2 20.553062806585473 -827.316949145403 44.2848 0.1144 12219 +12221 2 21.03390566347511 -826.2948008406163 43.8631 0.1144 12220 +12222 2 21.731228068017202 -825.3975911025262 43.5728 0.1144 12221 +12223 2 22.461165116492907 -824.5205955921258 43.3908 0.1144 12222 +12224 2 23.19243321076101 -823.6413733538348 43.2771 0.1144 12223 +12225 2 23.92370130502917 -822.7621511155437 43.1964 0.1144 12224 +12226 2 24.654884206447548 -821.8829812430655 43.1189 0.1144 12225 +12227 2 25.43651349188542 -821.0507441133087 42.952 0.1144 12226 +12228 2 26.243369070916174 -820.2486621507968 42.6661 0.1144 12227 +12229 2 27.05119769991481 -819.4525554015663 42.2957 0.1144 12228 +12230 2 27.85618213783306 -818.6583142828188 41.8785 0.1144 12229 +12231 2 28.48309650232858 -817.7143514924562 41.4896 0.1144 12230 +12232 2 28.825105260332975 -816.6299932769904 41.1967 0.1144 12231 +12233 2 29.158686224069868 -815.5386078085915 40.99 0.1144 12232 +12234 2 29.49009282572905 -814.4459764872497 40.85 0.1144 12233 +12235 2 29.87910210548688 -813.3702901201974 40.7473 0.1144 12234 +12236 2 30.498968985737037 -812.4104697459768 40.6395 0.1144 12235 +12237 2 31.126059246561766 -811.455717189144 40.5166 0.1144 12236 +12238 2 31.644909733560212 -810.4384953489629 40.3542 0.1144 12237 +12239 2 32.09572267023137 -809.3892619211072 40.1811 0.1144 12238 +12240 2 32.688365483676705 -808.4113133868419 40.0714 0.1144 12239 +12241 2 33.28100829712204 -807.4333648525767 40.007 0.1144 12240 +12242 2 33.59284966523472 -806.9314468302526 40.1915 0.1144 12241 +12243 2 34.193688909222516 -805.9645413266567 39.9294 0.1144 12242 +12244 2 34.8191284660968 -805.0093948453791 39.7715 0.1144 12243 +12245 2 35.566001572560424 -804.1555600763276 39.6606 0.1144 12244 +12246 2 36.47768119705316 -803.4716899554093 39.6634 0.1144 12245 +12247 2 37.34580954773037 -802.7473304957826 39.7832 0.1144 12246 +12248 2 37.59554023186652 -801.7599547894779 40.0095 0.1144 12247 +12249 2 37.45059256753319 -800.6458977062886 40.476 0.1144 12248 +12250 2 37.41068828483938 -799.5169252627707 40.8892 0.1144 12249 +12251 2 37.406377388935226 -798.3740563874501 40.9542 0.1144 12250 +12252 2 37.50271730221877 -797.2352880742676 40.8554 0.1144 12251 +12253 2 37.048959271767245 -796.1955459813423 40.7431 0.1144 12252 +12254 2 36.158729931427075 -795.4790255548382 40.6454 0.1144 12253 +12255 2 35.46065913376751 -794.5881649308039 40.5471 0.1144 12254 +12256 2 35.20780676698513 -793.4732922561848 40.4578 0.1144 12255 +12257 2 35.10294428288901 -792.3371782392704 40.3326 0.1144 12256 +12258 2 35.16029800546622 -791.1981932830455 40.112 0.1144 12257 +12259 2 35.24615998545758 -790.0643395312803 39.8269 0.1144 12258 +12260 2 35.452234995589464 -788.9467423899995 39.5399 0.1144 12259 +12261 2 35.84432603331882 -787.8785522064964 39.2997 0.1144 12260 +12262 2 36.377433356991105 -786.8713479812039 39.0942 0.1144 12261 +12263 2 37.01098104997496 -785.9206081005243 38.9152 0.1144 12262 +12264 2 37.63985174843269 -784.9687521005845 38.7503 0.1144 12263 +12265 2 38.21244461141809 -783.9843468266967 38.547 0.1144 12264 +12266 2 38.59923026486854 -782.914018209736 38.3272 0.1144 12265 +12267 2 38.86121039396551 -781.8022018706051 38.1836 0.1144 12266 +12268 2 39.202505569367275 -780.7168737067545 38.0786 0.1144 12267 +12269 2 39.79737821228619 -779.7469450141659 37.9823 0.1144 12268 +12270 2 40.51434803063083 -778.8618389586094 37.8868 0.1144 12269 +12271 2 41.000548637612155 -777.8419142801301 37.8132 0.1144 12270 +12272 2 41.1882134746715 -776.7140353331986 37.7731 0.1144 12271 +12273 2 41.30575228471214 -775.57690920645 37.7602 0.1144 12272 +12274 2 41.451093594544176 -774.4414745303649 37.7804 0.1144 12273 +12275 2 41.60339099260554 -773.3085722121823 37.835 0.1144 12274 +12276 2 41.91203077736057 -772.2312262448781 37.9316 0.1144 12275 +12277 2 42.70450117110805 -771.4647492882555 38.0943 0.1144 12276 +12278 2 43.74624103724534 -770.9989642506036 38.3096 0.1144 12277 +12279 2 44.77604149807874 -770.5137552431983 38.5622 0.1144 12278 +12280 2 45.800481107237374 -770.0196338136013 38.859 0.1144 12279 +12281 2 46.858149437847715 -769.6126083200215 39.2171 0.1144 12280 +12282 2 47.94033658791825 -769.2737346972324 39.5875 0.1144 12281 +12283 2 49.027738418788346 -768.9477369085582 39.9319 0.1144 12282 +12284 2 50.11670576075902 -768.6221854101416 40.2363 0.1144 12283 +12285 2 51.208026462719744 -768.2937787940817 40.4818 0.1144 12284 +12286 2 52.29965279469231 -767.9570850439999 40.6358 0.1144 12285 +12287 2 53.388567078313685 -767.6073857261205 40.6588 0.1144 12286 +12288 2 54.46781012377137 -767.2354596866568 40.5118 0.1144 12287 +12289 2 55.53349588701188 -766.8435781943322 40.178 0.1144 12288 +12290 2 56.46577305082768 -766.2476426023195 39.7426 0.1144 12289 +12291 2 57.248571513874936 -765.4348762974994 39.2986 0.1144 12290 +12292 2 58.04976371280212 -764.6388578427019 38.859 0.1144 12291 +12293 2 58.863666776078205 -763.8526334640479 38.4661 0.1144 12292 +12294 2 59.65482663943408 -763.035901432954 38.157 0.1144 12293 +12295 2 60.44055999704106 -762.2105320969936 37.9215 0.1144 12294 +12296 2 61.22833798304316 -761.3839059815276 37.7362 0.1144 12295 +12297 2 62.07561381368829 -760.6214207772091 37.5838 0.1144 12296 +12298 2 62.99074569300576 -759.9380110220425 37.4578 0.1144 12297 +12299 2 63.928162768190134 -759.2839818734927 37.3484 0.1144 12298 +12300 2 64.87545119269174 -758.645248360355 37.2095 0.1144 12299 +12301 2 65.86154972217808 -758.0686993770545 37.1269 0.1144 12300 +12302 2 66.8768793017343 -757.5439069944133 37.2058 0.1144 12301 +12303 2 67.90048420682034 -757.0423167450226 37.4368 0.1144 12302 +12304 2 68.9350116189461 -756.575682880456 37.7815 0.1144 12303 +12305 2 69.90117511627626 -755.9857984371736 38.1142 0.1144 12304 +12306 2 70.84029053782699 -755.3414070072137 38.3729 0.1144 12305 +12307 2 71.9026450730165 -754.9811530807087 38.7296 0.1144 12306 +12308 2 72.99714503743475 -754.7125345260844 39.207 0.1144 12307 +12309 2 74.08598944672936 -754.4475096737632 39.7698 0.1144 12308 +12310 2 75.16999897682683 -754.1826395571818 40.3872 0.1144 12309 +12311 2 76.2522718228913 -753.9189543155176 41.0264 0.1144 12310 +12312 2 77.34343435609239 -753.6685857349445 41.5996 0.1144 12311 +12313 2 78.46010288156388 -753.4776629646384 41.9846 0.1144 12312 +12314 2 79.58435667225034 -753.288768432883 42.2229 0.1144 12313 +12315 2 80.71655983244632 -753.1326668504367 42.3304 0.1144 12314 +12316 2 81.8506338319811 -753.2614721825437 42.2181 0.1144 12315 +12317 2 82.94813356977853 -753.4006685385831 41.5078 0.1144 12316 +12318 2 34.36033692619256 -807.3781968322307 39.8563 0.1144 12241 +12319 2 35.501019127799196 -807.3202958396848 39.6987 0.1144 12318 +12320 2 36.64076420805807 -807.262970871079 39.4982 0.1144 12319 +12321 2 37.77157835132306 -807.1452849186805 39.2532 0.1144 12320 +12322 2 38.875751962951426 -806.8815192549116 38.967 0.1144 12321 +12323 2 39.95981025413437 -806.5348047883581 38.6618 0.1144 12322 +12324 2 41.04377474025483 -806.1921389265779 38.36 0.1144 12323 +12325 2 42.130010495098645 -805.8533591088511 38.0666 0.1144 12324 +12326 2 43.21692700550804 -805.5156867981718 37.781 0.1144 12325 +12327 2 44.3037911501047 -805.1779292946428 37.5052 0.1144 12326 +12328 2 45.39230599865172 -804.8405657155585 37.2394 0.1144 12327 +12329 2 46.47917014324838 -804.5028082120293 36.9852 0.1144 12328 +12330 2 47.56964752892384 -804.1709290151363 36.7382 0.1144 12329 +12331 2 48.64982218509971 -803.8091119865771 36.4946 0.1144 12330 +12332 2 49.66959341194489 -803.3098781987596 36.2804 0.1144 12331 +12333 2 50.62328921714324 -802.6832873983587 36.1267 0.1144 12332 +12334 2 51.56121744942638 -802.0289440549325 36.0304 0.1144 12333 +12335 2 52.49972170564969 -801.375537832854 35.9803 0.1144 12334 +12336 2 53.43768276496989 -800.7210569307654 35.9663 0.1144 12335 +12337 2 54.38073738361972 -800.0729529913826 35.9786 0.1144 12336 +12338 2 55.318037226150096 -799.417587333759 36.0086 0.1144 12337 +12339 2 56.23777262093964 -798.7380386205887 36.0517 0.1144 12338 +12340 2 57.15403233331298 -798.0526444278197 36.1127 0.1144 12339 +12341 2 58.06918453863892 -797.3679309906162 36.2001 0.1144 12340 +12342 2 58.983845912874514 -796.6822280662522 36.3219 0.1144 12341 +12343 2 59.981463991885775 -796.1643315336996 36.4868 0.1144 12342 +12344 2 61.09304067453755 -795.9255953433453 36.701 0.1144 12343 +12345 2 62.161112340716485 -795.6074883552019 37.0955 0.1144 12344 +12346 2 63.212735678414774 -795.2605213169859 37.7157 0.1144 12345 +12347 2 64.3209798249536 -795.1956789568933 38.3228 0.1144 12346 +12348 2 65.40815370743348 -795.0068046091019 38.9791 0.1144 12347 +12349 2 66.44257059321554 -794.6274525741675 39.7149 0.1144 12348 +12350 2 67.49714044457313 -794.2961641218972 40.4239 0.1144 12349 +12351 2 68.5026845601985 -793.7800863646443 40.7817 0.1144 12350 +12352 2 69.55472405425228 -793.3375503627742 40.9542 0.1144 12351 +12353 2 70.6193344449459 -792.9221494407396 41.1093 0.1144 12352 +12354 2 71.68363610404461 -792.5083468568428 41.251 0.1144 12353 +12355 2 72.70705580805217 -791.9974799862697 41.3372 0.1144 12354 +12356 2 73.72631907407788 -791.4796601290504 41.4 0.1144 12355 +12357 2 74.74591061047424 -790.9604646852059 41.4812 0.1144 12356 +12358 2 75.76517387649996 -790.4426448279867 41.5663 0.1144 12357 +12359 2 76.32334532380834 -789.7800410810838 41.683 0.1144 12358 +12360 2 77.15016014981961 -788.9951532588518 41.8978 0.1144 12359 +12361 2 78.0062639023431 -788.2514221952845 42.2517 0.1144 12360 +12362 2 78.96929007960964 -787.6728566398809 42.7672 0.1144 12361 +12363 2 79.87816514106567 -787.0537438693268 43.5336 0.1144 12362 +12364 2 80.70219873693556 -786.3645875714685 44.3761 0.1144 12363 +12365 2 81.1986113699371 -785.3853381253127 45.1592 0.1144 12364 +12366 2 81.71278786929636 -784.399278021918 45.799 0.1144 12365 +12367 2 82.41133880765955 -783.5334754598337 45.8934 0.1144 12366 +12368 2 83.22083095538888 -782.8653476256846 44.8291 0.1144 12367 +12369 2 84.04158948314024 -782.2386555089931 43.6489 0.1144 12368 +12370 2 84.94364601502946 -781.6170432075736 42.8641 0.1144 12369 +12371 2 85.88120444299607 -780.9937983085581 42.3886 0.1144 12370 +12372 2 86.84604009081302 -780.3872403288879 42.1957 0.1144 12371 +12373 2 87.85172185979717 -779.8456063385098 42.2237 0.1144 12372 +12374 2 88.88079392264908 -779.3500460299119 42.3746 0.1144 12373 +12375 2 89.91269216492313 -778.8621390023013 42.5603 0.1144 12374 +12376 2 90.93989859729224 -778.363734502623 42.7291 0.1144 12375 +12377 2 91.94845969874406 -777.828312552533 42.8949 0.1144 12376 +12378 2 92.95167948729679 -777.2842009317637 43.0819 0.1144 12377 +12379 2 93.8241377632385 -776.573378523042 43.2622 0.1144 12378 +12380 2 94.4177239011978 -775.608231556605 43.2911 0.1144 12379 +12381 2 95.35252712505354 -775.0175513447568 43.0786 0.1144 12380 +12382 2 96.10666815292447 -774.1713393913541 42.8809 0.1144 12381 +12383 2 96.65660842477291 -773.1712781245313 42.707 0.1144 12382 +12384 2 97.1669044854044 -772.151215194853 42.4883 0.1144 12383 +12385 2 97.65702086189329 -771.1221928931036 42.2601 0.1144 12384 +12386 2 98.1512178829597 -770.0946532713035 42.0221 0.1144 12385 +12387 2 98.69600283022031 -769.0936525214345 41.7883 0.1144 12386 +12388 2 99.31998239485227 -768.1367037020499 41.6304 0.1144 12387 +12389 2 100.019090747657 -767.2317054860082 41.5727 0.1144 12388 +12390 2 100.83632262993751 -766.4312273722635 41.5906 0.1144 12389 +12391 2 101.69459454137258 -765.6753645698705 41.6503 0.1144 12390 +12392 2 102.55278125995785 -764.9195541332899 41.722 0.1144 12391 +12393 2 103.41056234030262 -764.1627018437364 41.7696 0.1144 12392 +12394 2 104.26742662530806 -763.4051218960858 41.7606 0.1144 12393 +12395 2 105.07979941356709 -762.600939837783 41.6609 0.1144 12394 +12396 2 105.84148195305298 -761.7526746911205 41.4464 0.1144 12395 +12397 2 106.44004441768787 -760.7925681783157 41.0413 0.1144 12396 +12398 2 106.91823999837143 -759.7842546821179 40.427 0.1144 12397 +12399 2 107.45506116919155 -758.8419094372318 39.5657 0.1144 12398 +12400 2 108.16638643598674 -758.1550075921195 38.1738 0.1144 12399 +12401 2 108.96497569246327 -757.642537642327 36.6206 0.1144 12400 +12402 2 109.79560287639664 -757.1252821722633 35.1834 0.1144 12401 +12403 2 110.60323240053006 -756.4865880030804 33.9752 0.1144 12402 +12404 2 111.39425191739204 -755.7895532163278 32.8894 0.1144 12403 +12405 2 112.16043596352284 -755.0540237624957 31.852 0.1144 12404 +12406 2 112.91665805155324 -754.2883470137466 30.9058 0.1144 12405 +12407 2 113.75963098925266 -753.5996394151923 30.0852 0.1144 12406 +12408 2 114.71585025605197 -753.0468559460094 29.3821 0.1144 12407 +12409 2 115.71395596987415 -752.5488491648955 28.7602 0.1144 12408 +12410 2 116.70741992525384 -752.0322148751302 28.189 0.1144 12409 +12411 2 117.64819294645774 -751.4256575879965 27.6504 0.1144 12410 +12412 2 118.56600395239312 -750.7809800194525 27.1071 0.1144 12411 +12413 2 119.58304319564161 -750.5868547308047 26.4523 0.1144 12412 +12414 2 120.66966236879321 -750.7622016513347 25.6913 0.1144 12413 +12415 2 121.75809482429989 -750.7243269922648 24.9114 0.1144 12414 +12416 2 122.78001178875341 -750.3580578456497 24.1255 0.1144 12415 +12417 2 123.6781611633478 -749.7415469285398 23.3207 0.1144 12416 +12418 2 124.14083802567023 -748.832686031003 22.3275 0.1144 12417 +12419 2 125.04801804371355 -748.5786128429982 21.2625 0.1144 12418 +12420 2 126.05185680488863 -748.2570267867667 20.19 0.1144 12419 +12421 2 127.10195027601779 -747.9929318760019 19.3 0.1144 12420 +12422 2 128.21862670348037 -747.9899308179527 18.6913 0.1144 12421 +12423 2 129.35071673889374 -747.9896630161921 18.288 0.1144 12422 +12424 2 130.465176560111 -748.207056914203 17.9494 0.1144 12423 +12425 2 75.48476056089372 -791.0044768513092 41.2658 0.1144 12358 +12426 2 74.9758924527003 -792.024953244208 41.2143 0.1144 12425 +12427 2 74.46536502834384 -793.0490319516225 41.2619 0.1144 12426 +12428 2 74.0927510187174 -794.1294305492845 41.225 0.1144 12427 +12429 2 74.05000902705544 -795.2635423833419 41.034 0.1144 12428 +12430 2 74.5521917375788 -796.2816183654039 40.9632 0.1144 12429 +12431 2 75.04631626875883 -797.3127467704467 40.8456 0.1144 12430 +12432 2 75.5197100939133 -798.3363109288196 40.3858 0.1144 12431 +12433 2 -72.92759866531048 -1058.0592104977327 47.1624 0.1144 10271 +12434 2 -73.44803616797805 -1057.0725447459113 47.5546 0.1144 12433 +12435 2 -73.83662717896485 -1056.0034278410872 47.8419 0.1144 12434 +12436 2 -74.29590241864466 -1054.965785843953 48.1586 0.1144 12435 +12437 2 -74.89126578083693 -1054.0036943789878 48.5313 0.1144 12436 +12438 2 -75.09073066587388 -1052.936529007718 48.9135 0.1144 12437 +12439 2 -75.08501542937296 -1051.8009961169255 49.2554 0.1144 12438 +12440 2 -75.4338152710348 -1050.7463910294841 49.5547 0.1144 12439 +12441 2 -75.97390018750491 -1049.7476215951297 49.8744 0.1144 12440 +12442 2 -76.20665264706108 -1048.6566646837114 50.2076 0.1144 12441 +12443 2 -76.58155974373108 -1047.6033170683127 50.5862 0.1144 12442 +12444 2 -77.24413716282976 -1046.6892310254807 50.9188 0.1144 12443 +12445 2 -78.1157389945185 -1045.9680688405338 51.2201 0.1144 12444 +12446 2 -78.68062373718826 -1045.0141231568082 51.6622 0.1144 12445 +12447 2 -78.74088049877074 -1043.893669903574 52.1332 0.1144 12446 +12448 2 -78.88262597619914 -1042.7695452487296 52.5067 0.1144 12447 +12449 2 -79.15253723894935 -1041.6664494186946 52.8464 0.1144 12448 +12450 2 -79.40093304836762 -1040.5609276315445 53.1832 0.1144 12449 +12451 2 -79.09671148331 -1039.4634081832642 53.4447 0.1144 12450 +12452 2 -78.65075453907735 -1038.4171596067342 53.6567 0.1144 12451 +12453 2 -78.68125246690616 -1037.2905045945863 53.9694 0.1144 12452 +12454 2 -79.11335979971355 -1036.2401541421495 54.2892 0.1144 12453 +12455 2 -79.47490953592745 -1035.162514945459 54.5664 0.1144 12454 +12456 2 -79.97931897434131 -1034.1431079176045 54.8397 0.1144 12455 +12457 2 -80.57356621727357 -1033.1763394581133 55.1947 0.1144 12456 +12458 2 -81.13101876130634 -1032.1909452064801 55.5472 0.1144 12457 +12459 2 -81.48072048823235 -1031.1194047535878 55.9115 0.1144 12458 +12460 2 -81.73026455141121 -1030.0427601462395 56.4133 0.1144 12459 +12461 2 -82.17087635381944 -1029.0070276278843 56.7955 0.1144 12460 +12462 2 -82.15333052184843 -1027.9367640791354 57.136 0.1144 12461 +12463 2 -81.70888362132044 -1026.896843201082 57.5162 0.1144 12462 +12464 2 -81.4450730978242 -1025.805382442423 57.9788 0.1144 12463 +12465 2 -81.75059446864512 -1024.7994162690495 58.4895 0.1144 12464 +12466 2 -82.29731822423321 -1023.8181089598565 58.9646 0.1144 12465 +12467 2 -82.24845045645444 -1022.7594637731804 59.4507 0.1144 12466 +12468 2 -82.19652495613607 -1021.6532779694311 59.9614 0.1144 12467 +12469 2 -82.65022992823828 -1020.6376836959686 60.3865 0.1144 12468 +12470 2 -83.23672462183907 -1019.6661499475182 60.7261 0.1144 12469 +12471 2 -83.832228644277 -1018.6973368596317 61.0487 0.1144 12470 +12472 2 -84.28161841179733 -1017.660309224104 61.4188 0.1144 12471 +12473 2 -84.50621888694772 -1016.552251284932 61.7901 0.1144 12472 +12474 2 -84.70597198817867 -1015.4342024494384 62.109 0.1144 12473 +12475 2 -85.0341113118935 -1014.3454172069631 62.3837 0.1144 12474 +12476 2 -85.51976660955626 -1013.3171822572302 62.6321 0.1144 12475 +12477 2 -85.98296382190986 -1012.2752602915975 62.8653 0.1144 12476 +12478 2 -86.52367712813279 -1011.2754685430451 63.1599 0.1144 12477 +12479 2 -86.8222749536728 -1010.1954051057496 63.6185 0.1144 12478 +12480 2 -87.026646480451 -1009.089702935614 64.1248 0.1144 12479 +12481 2 -87.26813546586962 -1007.9933171094007 64.6699 0.1144 12480 +12482 2 -87.80104626599487 -1007.006219095468 65.1678 0.1144 12481 +12483 2 -88.56134238755291 -1006.1951595307357 65.7866 0.1144 12482 +12484 2 -89.15483150704972 -1005.2319160178903 66.1982 0.1144 12483 +12485 2 -89.74970713973482 -1004.2641252442013 66.5428 0.1144 12484 +12486 2 -90.34699159980579 -1003.2924155994217 66.7383 0.1144 12485 +12487 2 -90.9460564975098 -1002.317809397749 66.8136 0.1144 12486 +12488 2 -91.69400756354537 -1001.9463822813233 66.7097 0.1144 12487 +12489 2 -92.4681610867029 -1001.1129693629074 66.488 0.1144 12488 +12490 2 -93.08236688407911 -1000.1530693897489 66.2494 0.1144 12489 +12491 2 -93.66089720339909 -999.1725318230909 66.0108 0.1144 12490 +12492 2 -94.09665611495194 -998.1271256575255 65.756 0.1144 12491 +12493 2 -94.33141796681974 -997.0199141362218 65.506 0.1144 12492 +12494 2 -94.86152360606783 -996.0177104587004 65.2484 0.1144 12493 +12495 2 -95.55907384718316 -995.1210129672799 64.9132 0.1144 12494 +12496 2 -96.1051692130184 -994.1407279722845 64.6332 0.1144 12495 +12497 2 -96.37330313971864 -993.0338399032584 64.3821 0.1144 12496 +12498 2 -96.6613432550501 -991.9339055134151 64.1178 0.1144 12497 +12499 2 -96.8478594247583 -990.8091288518341 63.8957 0.1144 12498 +12500 2 -96.88486404897597 -989.6850647665673 63.7098 0.1144 12499 +12501 2 -96.74779825406617 -988.5776060775564 63.5373 0.1144 12500 +12502 2 -97.09460342409906 -987.504285187031 63.2814 0.1144 12501 +12503 2 -97.56368135213515 -986.483350293206 62.9087 0.1144 12502 +12504 2 -97.70648748142773 -985.3706766216219 62.627 0.1144 12503 +12505 2 -97.75663833368867 -984.2426029617851 62.41 0.1144 12504 +12506 2 -98.04548893826836 -983.1390584324461 62.2499 0.1144 12505 +12507 2 -98.39817000589076 -982.0519769522705 62.1292 0.1144 12506 +12508 2 -98.58014132380202 -980.9431876082301 62.0172 0.1144 12507 +12509 2 -98.40632226924251 -979.8212369247007 61.9136 0.1144 12508 +12510 2 -98.13966514561943 -978.7105367048299 61.8374 0.1144 12509 +12511 2 -98.02960298035248 -977.5767150875653 61.7873 0.1144 12510 +12512 2 -98.05948964815758 -976.4334858073736 61.7635 0.1144 12511 +12513 2 -98.17214061020536 -975.2955858421966 61.7492 0.1144 12512 +12514 2 -98.17863137881693 -974.1621561487781 61.7408 0.1144 12513 +12515 2 -97.93682783227945 -973.0480692334604 61.7957 0.1144 12514 +12516 2 -97.72109010150038 -971.931105992562 61.9153 0.1144 12515 +12517 2 -97.86425732820064 -970.8199454662658 62.0298 0.1144 12516 +12518 2 -98.23493751472168 -969.7385280587304 62.1348 0.1144 12517 +12519 2 -98.6299859578676 -968.6653984777532 62.2182 0.1144 12518 +12520 2 -99.05144728603352 -967.6018135028403 62.2378 0.1144 12519 +12521 2 -99.44939228607254 -966.5304643594962 62.1874 0.1144 12520 +12522 2 -99.92306743171832 -965.493456955281 62.088 0.1144 12521 +12523 2 -100.53682693883707 -964.531991471022 61.9833 0.1144 12522 +12524 2 -101.44885343178515 -963.9068099964397 61.9007 0.1144 12523 +12525 2 -102.49003178188073 -963.4362558409035 61.8554 0.1144 12524 +12526 2 -103.57816269756196 -963.0926924983615 61.8481 0.1144 12525 +12527 2 -104.60308402872525 -962.602755119785 61.8965 0.1144 12526 +12528 2 -105.4618599830651 -961.8589192304602 61.9676 0.1144 12527 +12529 2 -106.15651676887038 -960.9537525055224 62.0298 0.1144 12528 +12530 2 -106.87232249466658 -960.0644026177293 62.1382 0.1144 12529 +12531 2 -107.53432148077869 -959.1338798655161 62.2913 0.1144 12530 +12532 2 -108.16474595942049 -958.1825405218909 62.4548 0.1144 12531 +12533 2 -108.96990347673784 -957.3815663510793 62.6184 0.1144 12532 +12534 2 -109.9072797937952 -956.7371046685721 62.8513 0.1144 12533 +12535 2 -110.61978031757096 -955.8792940521658 63.2912 0.1144 12534 +12536 2 -111.21567826445357 -954.9121316682297 63.6202 0.1144 12535 +12537 2 -111.64917211044926 -953.8572339549495 63.8019 0.1144 12536 +12538 2 -112.21452096564235 -952.8631945734701 63.8613 0.1144 12537 +12539 2 -112.811626427801 -951.8873839581045 63.8722 0.1144 12538 +12540 2 -113.10265139445849 -950.7825935758228 63.9498 0.1144 12539 +12541 2 -113.809152786195 -949.5852691446537 64.1245 0.1144 12540 +12542 2 -114.39142297869327 -948.6030394347956 64.2608 0.1144 12541 +12543 2 -115.00385144001953 -947.6393472226462 64.409 0.1144 12542 +12544 2 -115.75676531970689 -946.7793800664278 64.5411 0.1144 12543 +12545 2 -116.50935954123631 -945.9220335625447 64.6556 0.1144 12544 +12546 2 -117.08864798399168 -944.9379710492408 64.7833 0.1144 12545 +12547 2 -117.58771370045994 -943.9098798613368 64.9247 0.1144 12546 +12548 2 -118.08601346851276 -942.8828438146672 65.0756 0.1144 12547 +12549 2 -118.58601630632873 -941.8553286507033 65.2305 0.1144 12548 +12550 2 -119.1064130622832 -940.8404664746457 65.3836 0.1144 12549 +12551 2 -119.8138902148078 -939.9472884192415 65.5354 0.1144 12550 +12552 2 -120.6209133626079 -939.1434700573495 65.672 0.1144 12551 +12553 2 -121.20701723334705 -938.1635968090645 65.7446 0.1144 12552 +12554 2 -121.66567811142014 -937.1160693397707 65.742 0.1144 12553 +12555 2 -122.1296858130219 -936.0705372346422 65.6824 0.1144 12554 +12556 2 -122.62282085704143 -935.0389179985092 65.5816 0.1144 12555 +12557 2 -123.15035269913747 -934.0256244351353 65.4553 0.1144 12556 +12558 2 -123.68709787004016 -933.0168202561628 65.3187 0.1144 12557 +12559 2 -124.2327554631344 -932.0133769288649 65.1762 0.1144 12558 +12560 2 -124.84228736756756 -931.0479042790823 65.0647 0.1144 12559 +12561 2 -125.52442390603593 -930.1283509837882 65.0261 0.1144 12560 +12562 2 -126.23537363939369 -929.2360162446691 65.0292 0.1144 12561 +12563 2 -127.0879656570857 -928.4802799802436 65.0619 0.1144 12562 +12564 2 -128.07339634675424 -927.9016267111269 65.1176 0.1144 12563 +12565 2 -129.03918883267323 -927.2894216767288 65.1384 0.1144 12564 +12566 2 -129.84565957351725 -926.532333442662 65.0952 0.1144 12565 +12567 2 -130.00869395864552 -925.4413666286544 65.0124 0.1144 12566 +12568 2 -129.51624473756752 -924.4619710116233 64.8995 0.1144 12567 +12569 2 -129.06706298375605 -923.6285469886657 64.7335 0.1144 12568 +12570 2 -129.49026882093494 -922.5686166940814 64.589 0.1144 12569 +12571 2 -129.97507529168283 -921.533169290337 64.4728 0.1144 12570 +12572 2 -130.4588070824205 -920.4971786896895 64.372 0.1144 12571 +12573 2 -130.9435283603186 -919.4616789201325 64.2779 0.1144 12572 +12574 2 -131.4415717625893 -918.4329593424756 64.1729 0.1144 12573 +12575 2 -131.97782610240168 -917.4251446506634 64.02 0.1144 12574 +12576 2 -132.52575186263613 -916.4245040751962 63.8061 0.1144 12575 +12577 2 -132.9521598867199 -915.3746413522666 63.5793 0.1144 12576 +12578 2 -133.2390510557542 -914.2698924092347 63.3791 0.1144 12577 +12579 2 -133.5250051034408 -913.1645674422626 63.2066 0.1144 12578 +12580 2 -133.82253676648708 -912.0623679868622 63.0664 0.1144 12579 +12581 2 -134.1861342326792 -910.9792967737933 62.9793 0.1144 12580 +12582 2 -134.6243902660508 -909.9233353070658 62.9527 0.1144 12581 +12583 2 -135.10955783420644 -908.8894010486092 62.9283 0.1144 12582 +12584 2 -135.6602011534217 -907.886439940189 62.8527 0.1144 12583 +12585 2 -136.21325019843982 -906.8862487565623 62.729 0.1144 12584 +12586 2 -136.7647009053202 -905.8863663045306 62.5626 0.1144 12585 +12587 2 -137.3174826579931 -904.8887105803892 62.3596 0.1144 12586 +12588 2 -137.92037813235487 -903.9231496361738 62.1258 0.1144 12587 +12589 2 -138.6014368892298 -903.0097419398608 61.8708 0.1144 12588 +12590 2 -139.23012236948838 -902.0654329507518 61.6042 0.1144 12589 +12591 2 -139.7513265131079 -901.0536494310828 61.3306 0.1144 12590 +12592 2 -140.252478297221 -900.0309488203075 61.0498 0.1144 12591 +12593 2 -140.75296886454416 -899.0091329650671 60.76 0.1144 12592 +12594 2 -141.25376816346227 -897.9889154479645 60.4587 0.1144 12593 +12595 2 -141.7542915578226 -896.9672371513866 60.144 0.1144 12594 +12596 2 -142.29959356413875 -895.9729657136456 59.8046 0.1144 12595 +12597 2 -143.00858316941466 -895.1034891874468 59.4124 0.1144 12596 +12598 2 -143.79462234699014 -894.2988627453531 58.9666 0.1144 12597 +12599 2 -144.50717282753206 -893.4235931053681 58.4982 0.1144 12598 +12600 2 -145.21037242060487 -892.543866908019 58.011 0.1144 12599 +12601 2 -145.7513382984903 -891.5765101129514 57.5053 0.1144 12600 +12602 2 -146.08120810307187 -890.5022873371618 56.9834 0.1144 12601 +12603 2 -146.3781137854118 -889.4184840266878 56.4561 0.1144 12602 +12604 2 -146.53499706092936 -888.315754396242 55.9272 0.1144 12603 +12605 2 -146.5312795976404 -887.1922485126496 55.4014 0.1144 12604 +12606 2 -146.5206169726851 -886.0670559964867 54.892 0.1144 12605 +12607 2 -146.52443162156564 -884.9400806336442 54.4118 0.1144 12606 +12608 2 -146.78136713666822 -883.8666881699671 53.9966 0.1144 12607 +12609 2 -147.43459056671472 -882.9548343656551 53.692 0.1144 12608 +12610 2 -148.242732935358 -882.149004202405 53.4965 0.1144 12609 +12611 2 -149.0403144922096 -881.3299918824914 53.3842 0.1144 12610 +12612 2 -149.73211616037165 -880.4271785175437 53.3324 0.1144 12611 +12613 2 -150.19531027114203 -879.3919453477952 53.3196 0.1144 12612 +12614 2 -150.52857598122353 -878.2969207012762 53.3268 0.1144 12613 +12615 2 -150.86228798156245 -877.2034615658579 53.3428 0.1144 12614 +12616 2 -151.19666119869123 -876.1091176749046 53.3646 0.1144 12615 +12617 2 -151.52034155599537 -875.0123094891695 53.396 0.1144 12616 +12618 2 -151.7908843100815 -873.9015025490528 53.4411 0.1144 12617 +12619 2 -151.97656026508758 -872.7735096724207 53.5024 0.1144 12618 +12620 2 -152.13799459556824 -871.6414151326661 53.5816 0.1144 12619 +12621 2 -152.41517067814272 -870.5373852828665 53.6976 0.1144 12620 +12622 2 -153.0014004884448 -869.5857608246304 53.9003 0.1144 12621 +12623 2 -153.7364449829161 -868.7176269633236 54.1797 0.1144 12622 +12624 2 -154.31786875754605 -867.7455586301828 54.4132 0.1144 12623 +12625 2 -154.8110038015656 -866.7139393940497 54.5504 0.1144 12624 +12626 2 -155.34035752054444 -865.7018830714059 54.6216 0.1144 12625 +12627 2 -156.196353647501 -865.0301709823118 54.7901 0.1144 12626 +12628 2 -157.30846119773474 -865.1041961585241 55.1177 0.1144 12627 +12629 2 -158.43202494008437 -864.8950979593997 55.1824 0.1144 12628 +12630 2 -159.3820556478065 -864.3980976833585 55.0186 0.1144 12629 +12631 2 -159.7193661685416 -863.3337306542744 54.9564 0.1144 12630 +12632 2 -159.8577273595697 -862.2021262530734 55.0637 0.1144 12631 +12633 2 -160.43240006991306 -861.2998580856272 55.3115 0.1144 12632 +12634 2 -160.86823427172607 -860.3242223603025 55.5234 0.1144 12633 +12635 2 -160.90969855489084 -859.1841185916825 55.5492 0.1144 12634 +12636 2 -160.95044064324034 -858.0409885324867 55.5979 0.1144 12635 +12637 2 -161.00327071681548 -856.8997717461897 55.7318 0.1144 12636 +12638 2 -161.05649471483528 -855.7602056638431 55.9549 0.1144 12637 +12639 2 -161.5429433720171 -854.7459571568558 56.2481 0.1144 12638 +12640 2 -162.28262583081133 -853.8899472093947 56.5995 0.1144 12639 +12641 2 -163.05138877684007 -853.0586203586236 56.9934 0.1144 12640 +12642 2 -163.82059801312627 -852.228859018953 57.4112 0.1144 12641 +12643 2 -164.5669521380755 -851.3904487553164 57.9538 0.1144 12642 +12644 2 -165.26443460015884 -850.5528694963288 58.7941 0.1144 12643 +12645 2 -165.21107594425334 -850.3643070826829 59.631 0.1144 12644 +12646 2 -164.9278113171016 -849.3549103712733 60.7485 0.1144 12645 +12647 2 -164.68259335026187 -848.3273471621523 61.8153 0.1144 12646 +12648 2 -164.485327747206 -847.2567177155878 62.6766 0.1144 12647 +12649 2 -164.299968722417 -846.1665267406072 63.3898 0.1144 12648 +12650 2 -164.1538576700499 -845.062898628254 64.0072 0.1144 12649 +12651 2 -164.1262565780602 -843.943493022711 64.5714 0.1144 12650 +12652 2 -164.15591118960373 -842.8203105913963 65.1036 0.1144 12651 +12653 2 -164.19171140012838 -841.6982059416748 65.6452 0.1144 12652 +12654 2 -164.2282666325055 -840.5792651411917 66.2236 0.1144 12653 +12655 2 -164.25903426172593 -839.4674485002872 66.8758 0.1144 12654 +12656 2 -164.35545353833535 -838.3973947758891 67.7634 0.1144 12655 +12657 2 -164.89175372704253 -837.529291350258 68.8125 0.1144 12656 +12658 2 -165.70614370349412 -836.8334136194351 69.7942 0.1144 12657 +12659 2 -166.53168914856803 -836.9607759298639 71.0898 0.1144 12658 +12660 2 -166.43821617283362 -837.1128451667507 72.1966 0.1144 12659 +12661 2 -166.21896051490648 -837.4695476288489 74.8017 0.1144 12660 +12662 2 -165.95989386479008 -837.7642174793554 77.4281 0.1144 12661 +12663 2 -165.49600648601162 -837.5314298727048 79.5514 0.1144 12662 +12664 2 -164.9915192541592 -836.7486425370269 81.1664 0.1144 12663 +12665 2 -165.03416532834316 -835.8294714580885 82.7548 0.1144 12664 +12666 2 -165.98129467876421 -835.511923660787 84.1103 0.1144 12665 +12667 2 -166.8063073269619 -834.8602546264499 85.213 0.1144 12666 +12668 2 -167.67343408648415 -834.2141651644399 86.1288 0.1144 12667 +12669 2 -168.48052159798144 -833.4843362332614 86.9912 0.1144 12668 +12670 2 -169.1002347019963 -832.5962544303219 87.8763 0.1144 12669 +12671 2 -169.91183113667046 -831.8569894188245 88.6558 0.1144 12670 +12672 2 -170.73513181880372 -831.1250360823345 89.4149 0.1144 12671 +12673 2 -171.04347927435063 -830.0858275678112 90.2166 0.1144 12672 +12674 2 -171.2571127016285 -829.0152810117243 91.0493 0.1144 12673 +12675 2 -171.5988151022787 -827.9939925317198 91.9876 0.1144 12674 +12676 2 -171.99352778151092 -827.0065792692743 93.0213 0.1144 12675 +12677 2 -172.38627482203157 -826.0313391849041 94.1256 0.1144 12676 +12678 2 -172.39944808239375 -825.9400149536649 94.6915 0.1144 12677 +12679 2 -171.80030128337972 -825.2695970815648 96.1853 0.1144 12678 +12680 2 -171.0987286534783 -824.5912723031782 97.5472 0.1144 12679 +12681 2 -171.03754876388842 -823.5788195580539 98.8319 0.1144 12680 +12682 2 -171.16843841232452 -822.5554254893138 100.0392 0.1144 12681 +12683 2 -171.4319066498465 -821.5477907897242 101.1903 0.1144 12682 +12684 2 -171.8730291062093 -820.5876132131831 102.2605 0.1144 12683 +12685 2 -172.31803209599605 -819.6190218705206 103.2763 0.1144 12684 +12686 2 -172.5781464827933 -818.8026517303383 104.8281 0.1144 12685 +12687 2 -172.83300344147926 -817.8527573622061 106.2555 0.1144 12686 +12688 2 -172.78473392955144 -816.8870933138859 107.6452 0.1144 12687 +12689 2 -172.4450891443483 -815.9277900928528 108.9068 0.1144 12688 +12690 2 -172.15477944199768 -814.95162479603 110.1422 0.1144 12689 +12691 2 -172.22581635154933 -813.9774809013813 111.4688 0.1144 12690 +12692 2 -172.64998423512185 -813.1061859016564 112.9285 0.1144 12691 +12693 2 -173.29492083292018 -812.4873854856737 114.6169 0.1144 12692 +12694 2 -174.1963047245835 -812.1350284510486 116.0726 0.1144 12693 +12695 2 -175.03493522457597 -811.5681448170616 117.3348 0.1144 12694 +12696 2 -175.79782737519696 -810.8620933978852 118.4952 0.1144 12695 +12697 2 -176.54744184758204 -810.1211177283853 119.5832 0.1144 12696 +12698 2 -177.10246094095675 -809.244330835241 120.6976 0.1144 12697 +12699 2 -177.39333155065918 -808.2467315728059 121.8339 0.1144 12698 +12700 2 -177.59251442266827 -807.2170720739916 122.9536 0.1144 12699 +12701 2 -177.7825254051205 -806.1870569883995 124.0761 0.1144 12700 +12702 2 -178.00051478369343 -805.1661402186139 125.2222 0.1144 12701 +12703 2 -178.62155172404618 -804.4441442292087 126.5331 0.1144 12702 +12704 2 -179.34200802757508 -803.8073217698799 128.0434 0.1144 12703 +12705 2 -179.54649148345516 -802.9567567539809 129.7789 0.1144 12704 +12706 2 -179.6160504838025 -802.0004853461312 131.2956 0.1144 12705 +12707 2 -179.63142974386992 -800.9530423651726 132.4212 0.1144 12706 +12708 2 -179.643284749828 -799.8807786341652 133.3984 0.1144 12707 +12709 2 -179.66767162222266 -798.7946198564283 134.2788 0.1144 12708 +12710 2 -179.7346024590066 -797.7091401177471 135.1442 0.1144 12709 +12711 2 -180.28625198666361 -796.789903065276 136.0892 0.1144 12710 +12712 2 -180.8533542471709 -795.8802817835727 137.0673 0.1144 12711 +12713 2 -181.419337286835 -794.9726723032275 138.0582 0.1144 12712 +12714 2 -181.9769417964613 -794.0786936788497 139.1158 0.1144 12713 +12715 2 -182.46225412075586 -793.3000341332922 140.7896 0.1144 12714 +12716 2 -171.6170192833115 -820.0515804058105 103.8237 0.1144 12685 +12717 2 -170.93875266545592 -820.8405200581938 104.7766 0.1144 12716 +12718 2 -170.77796213794733 -821.9125592441676 105.4206 0.1144 12717 +12719 2 -170.82739051644694 -823.029300349079 106.006 0.1144 12718 +12720 2 -170.81070003345138 -824.151061031122 106.5333 0.1144 12719 +12721 2 -170.4608747760089 -825.2117265246944 106.9827 0.1144 12720 +12722 2 -169.94787257356137 -826.2231520485389 107.319 0.1144 12721 +12723 2 -169.41227945053896 -827.230081984816 107.548 0.1144 12722 +12724 2 -168.87638620813425 -828.2394098219161 107.6771 0.1144 12723 +12725 2 -168.44320109373342 -829.2959058733338 107.595 0.1144 12724 +12726 2 -168.1180989871574 -830.379749930521 107.2198 0.1144 12725 +12727 2 -167.82752410487706 -831.455354401406 106.5795 0.1144 12726 +12728 2 -167.37363772581605 -832.4494738735535 105.7636 0.1144 12727 +12729 2 -167.5432445909092 -833.5083843519761 104.8603 0.1144 12728 +12730 2 -168.22048250144434 -834.3704768136843 104.0592 0.1144 12729 +12731 2 -168.8994977480295 -835.2363615143835 103.3012 0.1144 12730 +12732 2 -169.53611107554406 -836.0467202998797 102.0866 0.1144 12731 +12733 2 -172.776414817937 -825.5648680886989 93.5158 0.1144 12677 +12734 2 -173.4382478279946 -824.769818073418 92.3213 0.1144 12733 +12735 2 -174.1325633392566 -823.939682632167 91.4816 0.1144 12734 +12736 2 -174.84524286094455 -823.0859729863467 90.8219 0.1144 12735 +12737 2 -175.57534237600797 -822.2455533303985 90.1802 0.1144 12736 +12738 2 -176.3572836845806 -821.4344170903329 89.7058 0.1144 12737 +12739 2 -177.1646679297884 -820.6321118737288 89.425 0.1144 12738 +12740 2 -177.97769911790715 -819.8294041204672 89.3183 0.1144 12739 +12741 2 -178.7903887473939 -819.0249604704054 89.3402 0.1144 12740 +12742 2 -179.60404832526547 -818.2212304029464 89.4387 0.1144 12741 +12743 2 -180.42594818197568 -817.4279649331698 89.5698 0.1144 12742 +12744 2 -181.29986813757085 -816.6921464764752 89.7148 0.1144 12743 +12745 2 -182.16880546862808 -815.9491570050186 89.8234 0.1144 12744 +12746 2 -183.01253191931164 -815.1772896612238 89.8652 0.1144 12745 +12747 2 -183.84832682275146 -814.3965560578839 89.8456 0.1144 12746 +12748 2 -184.68309941199368 -813.6151940647912 89.7831 0.1144 12747 +12749 2 -185.5178720012359 -812.8338320716986 89.6983 0.1144 12748 +12750 2 -186.35366690467578 -812.0530984683587 89.6274 0.1144 12749 +12751 2 -187.18906788367084 -811.2707141610684 89.5868 0.1144 12750 +12752 2 -188.02384047291304 -810.4893521679758 89.5812 0.1144 12751 +12753 2 -188.84311106507545 -809.6917708010809 89.6333 0.1144 12752 +12754 2 -189.9213177801676 -809.6548096115689 89.801 0.1144 12753 +12755 2 -190.93303632061412 -809.9356954334198 90.8681 0.1144 12754 +12756 2 -167.1719101004218 -836.4586879068963 71.629 0.1144 12659 +12757 2 -168.11734459682253 -835.82727864737 71.4762 0.1144 12756 +12758 2 -169.18352159389437 -835.4821936420237 71.1418 0.1144 12757 +12759 2 -170.31284831612837 -835.3706597707186 70.8341 0.1144 12758 +12760 2 -171.43394707115974 -835.1963170580318 70.5261 0.1144 12759 +12761 2 -172.45302774081716 -834.7376516584967 70.091 0.1144 12760 +12762 2 -173.20591217913912 -833.9476253282187 69.3874 0.1144 12761 +12763 2 -173.51477949869368 -832.9383163076947 68.357 0.1144 12762 +12764 2 -173.72599488853263 -831.9173440705133 67.2151 0.1144 12763 +12765 2 -174.07968836776286 -830.9006090545184 66.2978 0.1144 12764 +12766 2 -174.55495023244674 -829.8915745357941 65.6914 0.1144 12765 +12767 2 -175.05713294297004 -828.8734985537321 65.3635 0.1144 12766 +12768 2 -175.56643430244247 -827.850525139982 65.3187 0.1144 12767 +12769 2 -176.08933058926215 -826.8424814934913 65.6177 0.1144 12768 +12770 2 -176.60170681100334 -825.8494521145734 66.2049 0.1144 12769 +12771 2 -177.01464825634923 -824.8302822451622 66.9312 0.1144 12770 +12772 2 -177.2832137526243 -823.7599301002068 67.6735 0.1144 12771 +12773 2 -177.43812838254337 -822.701651503883 68.5952 0.1144 12772 +12774 2 -177.3896774636568 -821.7145126542479 69.9924 0.1144 12773 +12775 2 -177.01282384148226 -820.9751988930788 71.2754 0.1144 12774 +12776 2 -175.88974442528306 -820.9039374384937 71.6234 0.1144 12775 +12777 2 -174.75287807965148 -820.8900521163753 71.358 0.1144 12776 +12778 2 -173.62571071472402 -820.9585433672207 70.9276 0.1144 12777 +12779 2 -172.49886880267263 -821.1118661810629 70.6342 0.1144 12778 +12780 2 -171.3678790648521 -821.2761382205117 70.5331 0.1144 12779 +12781 2 -170.23675959334895 -821.4429128924089 70.6507 0.1144 12780 +12782 2 -169.10995601896423 -821.6070582997581 70.9223 0.1144 12781 +12783 2 -167.98725341516558 -821.7710247091952 71.2715 0.1144 12782 +12784 2 -166.90828818587497 -822.1283212302836 71.5873 0.1144 12783 +12785 2 -165.85411116368448 -822.5587231190872 71.8368 0.1144 12784 +12786 2 -164.7982060696737 -822.991936371934 72.035 0.1144 12785 +12787 2 -163.7430036317026 -823.4283986668688 72.1991 0.1144 12786 +12788 2 -162.68628804844366 -823.8652220592113 72.3486 0.1144 12787 +12789 2 -161.63077687887758 -824.3000860160085 72.5063 0.1144 12788 +12790 2 -160.5752657093115 -824.7349499728057 72.6956 0.1144 12789 +12791 2 -159.4598430367828 -824.5462015645774 72.8966 0.1144 12790 +12792 2 -158.35527309166315 -824.263411366129 73.127 0.1144 12791 +12793 2 -157.2258276393207 -824.1828373617415 73.5134 0.1144 12792 +12794 2 -156.11727306236207 -824.2909407839998 74.1482 0.1144 12793 +12795 2 -155.0320034498053 -824.4027925969528 74.9834 0.1144 12794 +12796 2 -153.9664391274934 -824.5131405693674 75.9685 0.1144 12795 +12797 2 -152.91948587664038 -824.6216642558526 77.0661 0.1144 12796 +12798 2 -153.79028473030897 -824.0330008830754 78.7346 0.1144 12797 +12799 2 -154.5647082566318 -823.5071740942202 80.3466 0.1144 12798 +12800 2 -155.3257597018159 -822.9920261370437 82.0106 0.1144 12799 +12801 2 -155.81361189524097 -822.3492113523891 83.7869 0.1144 12800 +12802 2 -155.4971877284276 -821.5356476691679 85.3742 0.1144 12801 +12803 2 -155.39450500522202 -820.7501701975909 87.0531 0.1144 12802 +12804 2 -156.29200967152332 -820.5484931935292 88.4551 0.1144 12803 +12805 2 -157.1295647989689 -820.0051289892522 89.7333 0.1144 12804 +12806 2 -156.86649967882403 -819.0633173347462 90.8684 0.1144 12805 +12807 2 -156.47006571165736 -818.0850710724603 91.9492 0.1144 12806 +12808 2 -155.92333263419934 -817.1810031590747 93.0143 0.1144 12807 +12809 2 -156.40261559158535 -817.1855580201357 94.9312 0.1144 12808 +12810 2 -157.3213858383981 -817.6831602343306 96.0299 0.1144 12809 +12811 2 -158.362314220977 -817.8838702797736 96.845 0.1144 12810 +12812 2 -159.29719171739072 -817.4245080189171 97.5344 0.1144 12811 +12813 2 -159.90345365588695 -816.5080860299128 98.1098 0.1144 12812 +12814 2 -160.37524604132068 -815.4915193990189 98.6815 0.1144 12813 +12815 2 -160.91585633242812 -814.5333344935082 99.4207 0.1144 12814 +12816 2 -161.51824935660005 -813.5970446535392 100.06 0.1144 12815 +12817 2 -162.13040432241496 -812.6492654926435 100.5309 0.1144 12816 +12818 2 -162.74710965065643 -811.6961840490519 100.8742 0.1144 12817 +12819 2 -163.36523431912326 -810.7386929032795 101.1142 0.1144 12818 +12820 2 -164.06746155476475 -809.8408792925989 101.3197 0.1144 12819 +12821 2 -164.8214391878994 -808.9856743237565 101.5406 0.1144 12820 +12822 2 -165.45515414787903 -808.0377661217148 101.6977 0.1144 12821 +12823 2 -166.3167414662621 -807.2956583042101 101.8189 0.1144 12822 +12824 2 -167.39770136718158 -806.9570775862061 102.0116 0.1144 12823 +12825 2 -168.50221765040462 -806.6785200874823 102.2795 0.1144 12824 +12826 2 -169.61606940787752 -806.4634521857058 102.6312 0.1144 12825 +12827 2 -170.73222697762077 -806.2860722558803 103.0632 0.1144 12826 +12828 2 -171.8443250160277 -806.1130051215902 103.5591 0.1144 12827 +12829 2 -172.9550474678093 -805.9402662576706 104.0785 0.1144 12828 +12830 2 -174.06714550621626 -805.7671991233805 104.5867 0.1144 12829 +12831 2 -175.148733104352 -805.4516587177919 105.0692 0.1144 12830 +12832 2 -176.05083407096404 -804.7748325539673 105.5166 0.1144 12831 +12833 2 -177.12107439349182 -804.3946833305884 105.8291 0.1144 12832 +12834 2 -178.23925917781241 -804.1593895820228 105.999 0.1144 12833 +12835 2 -178.2937042098389 -804.1298220578175 106.6685 0.1144 12834 +12836 2 -179.13969533531667 -803.684256646668 108.2066 0.1144 12835 +12837 2 -180.10826594979397 -803.1744719325277 109.0001 0.1144 12836 +12838 2 -181.07161637284213 -802.6668780176578 109.8628 0.1144 12837 +12839 2 -182.0286062703767 -802.1606565878301 110.7646 0.1144 12838 +12840 2 -182.97511203145285 -801.6628981883534 111.7323 0.1144 12839 +12841 2 -183.81205789947336 -801.2211633538617 113.3048 0.1144 12840 +12842 2 -179.38964755189258 -803.9198274840584 105.9103 0.1144 12834 +12843 2 -180.28190749248176 -803.215471623417 105.7171 0.1144 12842 +12844 2 -181.25592174243707 -802.679453022169 105.4449 0.1144 12843 +12845 2 -182.32433668375796 -803.0407323644547 105.1414 0.1144 12844 +12846 2 -183.44568190198194 -802.9377912571832 104.6755 0.1144 12845 +12847 2 -184.52691931729487 -803.0356853414138 103.8579 0.1144 12846 +12848 2 -185.55786052066068 -803.4208828559472 103.1484 0.1144 12847 +12849 2 -186.63233145846783 -803.6476101454557 102.6228 0.1144 12848 +12850 2 -187.75309755116857 -803.5522949554161 102.1686 0.1144 12849 +12851 2 -188.87854984844847 -803.4102081983017 101.8133 0.1144 12850 +12852 2 -190.01415431239275 -803.3146233068705 101.5686 0.1144 12851 +12853 2 -191.1534924463492 -803.2307238640076 101.4034 0.1144 12852 +12854 2 -192.29429066724418 -803.1706111431998 101.2788 0.1144 12853 +12855 2 -193.4262739881185 -803.2688262706615 101.2057 0.1144 12854 +12856 2 -194.53012724905238 -803.5592752133789 101.2035 0.1144 12855 +12857 2 -195.61970274946367 -803.9080897757233 101.2463 0.1144 12856 +12858 2 -196.74107460924344 -804.0346443967132 101.1998 0.1144 12857 +12859 2 -197.8259410696174 -803.7508167497941 100.8759 0.1144 12858 +12860 2 -198.94365694100676 -803.7368496153549 100.4475 0.1144 12859 +12861 2 -200.05643872988801 -803.9495637435508 100.0835 0.1144 12860 +12862 2 -201.1699810512513 -804.1761267558296 99.7704 0.1144 12861 +12863 2 -202.28713351211036 -804.4035002573567 99.5168 0.1144 12862 +12864 2 -203.40517072850437 -804.6315349756736 99.3322 0.1144 12863 +12865 2 -204.52530493910626 -804.8607412806464 99.2006 0.1144 12864 +12866 2 -205.64490766660094 -805.0883297087058 99.0844 0.1144 12865 +12867 2 -206.7649043185403 -805.3175688407157 98.9696 0.1144 12866 +12868 2 -207.8852206286375 -805.5441873203903 98.8548 0.1144 12867 +12869 2 -209.00521728057691 -805.7734264524001 98.7403 0.1144 12868 +12870 2 -210.1249052009213 -806.0010672462724 98.6255 0.1144 12869 +12871 2 -211.2449542186734 -806.2302211854325 98.5107 0.1144 12870 +12872 2 -212.36495087061274 -806.4594603174423 98.3959 0.1144 12871 +12873 2 -213.48521481489732 -806.6861639899668 98.2814 0.1144 12872 +12874 2 -214.60526383264943 -806.9153179291268 98.1669 0.1144 12873 +12875 2 -215.7249517529938 -807.1429587229991 98.0521 0.1144 12874 +12876 2 -216.845576794686 -807.3711755408112 97.9376 0.1144 12875 +12877 2 -217.9655734466254 -807.6004146728212 97.823 0.1144 12876 +12878 2 -219.08526136696977 -807.8280554666934 97.7088 0.1144 12877 +12879 2 -220.20531038472188 -808.0572094058534 97.5946 0.1144 12878 +12880 2 -221.32499830506632 -808.2848501997256 97.4809 0.1144 12879 +12881 2 -222.4455709809458 -808.5131522103877 97.3675 0.1144 12880 +12882 2 -223.5656199986979 -808.7423061495479 97.2544 0.1144 12881 +12883 2 -224.68530791904232 -808.9699469434199 97.1418 0.1144 12882 +12884 2 -225.80530457098166 -809.1991860754299 97.0306 0.1144 12883 +12885 2 -226.92499249132607 -809.4268268693021 96.9206 0.1144 12884 +12886 2 -228.04561753301826 -809.6550436871144 96.8125 0.1144 12885 +12887 2 -229.16566655077037 -809.8841976262744 96.707 0.1144 12886 +12888 2 -230.2862915924626 -810.1124144440867 96.605 0.1144 12887 +12889 2 -231.4059271469943 -810.3401404308088 96.5087 0.1144 12888 +12890 2 -232.52597616474634 -810.5692943699687 96.42 0.1144 12889 +12891 2 -233.64660120643853 -810.7975111877811 96.341 0.1144 12890 +12892 2 -234.76731144098054 -811.0257803714061 96.2746 0.1144 12891 +12893 2 -235.88306887113475 -811.2792939549784 96.2242 0.1144 12892 +12894 2 -236.8926225613302 -811.8085179402747 96.22 0.1144 12893 +12895 2 -237.89076601497865 -812.3669990016712 96.2536 0.1144 12894 +12896 2 -238.8889946614769 -812.9255324288805 96.3124 0.1144 12895 +12897 2 -239.88719048093816 -813.4839282974273 96.3819 0.1144 12896 +12898 2 -240.88541912743648 -814.0424617246366 96.448 0.1144 12897 +12899 2 -241.88356258108502 -814.6009427860332 96.4956 0.1144 12898 +12900 2 -242.8817912275833 -815.1594762132424 96.5124 0.1144 12899 +12901 2 -243.87993468123176 -815.717957274639 96.4919 0.1144 12900 +12902 2 -244.90744984519577 -816.2179601124551 96.3634 0.1144 12901 +12903 2 -245.93933947525716 -816.7018709011049 96.1293 0.1144 12902 +12904 2 -246.96841774127523 -817.1840536179345 95.8157 0.1144 12903 +12905 2 -247.99550374471096 -817.6648943624087 95.4467 0.1144 12904 +12906 2 -249.02160026098616 -818.1452442757926 95.0454 0.1144 12905 +12907 2 -250.04573734171606 -818.6243897754836 94.6322 0.1144 12906 +12908 2 -251.0712578340512 -819.1056768102151 94.2276 0.1144 12907 +12909 2 -252.09641722897862 -819.5854506996588 93.8384 0.1144 12908 +12910 2 -253.1235032324143 -820.066291444133 93.469 0.1144 12909 +12911 2 -254.15155918423486 -820.5478457712097 93.1232 0.1144 12910 +12912 2 -255.2117598727475 -820.9618273530191 92.8404 0.1144 12911 +12913 2 -256.28778360157116 -821.341282403069 92.6274 0.1144 12912 +12914 2 -257.3659488654355 -821.719354041514 92.4692 0.1144 12913 +12915 2 -258.4436232982095 -822.0984151671192 92.3504 0.1144 12914 +12916 2 -259.52214965948156 -822.4779999508519 92.258 0.1144 12915 +12917 2 -260.60133723754336 -822.8566999790496 92.1799 0.1144 12916 +12918 2 -261.680577181418 -823.2353148143975 92.1043 0.1144 12917 +12919 2 -262.75976475947994 -823.6140148425952 92.0284 0.1144 12918 +12920 2 -263.8383763136017 -823.9936519921406 91.9512 0.1144 12919 +12921 2 -264.9175638916636 -824.3723520203382 91.8719 0.1144 12920 +12922 2 -265.99675146972544 -824.7510520485359 91.7902 0.1144 12921 +12923 2 -267.07496909940255 -825.129038494131 91.705 0.1144 12922 +12924 2 -268.1535282877116 -825.5087608365262 91.6143 0.1144 12923 +12925 2 -269.2327682315862 -825.8873756718741 91.5166 0.1144 12924 +12926 2 -270.31093349545057 -826.2654473103189 91.4105 0.1144 12925 +12927 2 -271.3802677358534 -826.668961885399 91.2909 0.1144 12926 +12928 2 -272.3849154768442 -827.2126600429478 91.1445 0.1144 12927 +12929 2 -273.385341125779 -827.763036069818 90.9731 0.1144 12928 +12930 2 -274.386375625691 -828.3126125340029 90.7774 0.1144 12929 +12931 2 -275.3848746661176 -828.8619217058426 90.5598 0.1144 12930 +12932 2 -276.38337370654415 -829.4112308776823 90.3106 0.1144 12931 +12933 2 -277.381478822526 -829.9588893455716 90.0421 0.1144 12932 +12934 2 -277.9849972878279 -830.9126517227073 89.7042 0.1144 12933 +12935 2 -278.4232954877916 -831.9581836150514 89.329 0.1144 12934 +12936 2 -278.8595818863973 -833.0025962865524 88.9246 0.1144 12935 +12937 2 -279.2809180023426 -834.008122083039 88.0785 0.1144 12936 +12938 2 -152.61058721608933 -824.55398569566 76.0735 0.1144 12797 +12939 2 -151.78416932711653 -824.3736179247423 74.1994 0.1144 12938 +12940 2 -150.79210950582043 -824.1787656705344 72.9739 0.1144 12939 +12941 2 -149.75031688310742 -824.029876210663 71.8794 0.1144 12940 +12942 2 -148.7213149016597 -823.8861490657785 70.7109 0.1144 12941 +12943 2 -147.68874412526986 -823.7201561691064 69.5738 0.1144 12942 +12944 2 -146.6535526965447 -823.5538436142765 68.4536 0.1144 12943 +12945 2 -145.62947648716593 -823.4721867261139 67.2269 0.1144 12944 +12946 2 -144.6099718481512 -823.4136467310038 65.9672 0.1144 12945 +12947 2 -143.58762301805615 -823.353241105411 64.7195 0.1144 12946 +12948 2 -142.53173783589898 -823.2534406439844 63.6703 0.1144 12947 +12949 2 -141.45540636979067 -823.1410723875011 62.7598 0.1144 12948 +12950 2 -141.1806187891579 -822.5504186517727 61.9867 0.1144 12949 +12951 2 -140.87696473052395 -821.4735549033462 61.4048 0.1144 12950 +12952 2 -140.4399999853992 -820.4476235696216 61.0481 0.1144 12951 +12953 2 -139.78390522013666 -819.5138957297265 61.087 0.1144 12952 +12954 2 -139.10677342630007 -818.6035076290926 61.4261 0.1144 12953 +12955 2 -138.40330162865723 -817.7359715319064 62.0138 0.1144 12954 +12956 2 -137.66906919846397 -816.9140870884154 62.7592 0.1144 12955 +12957 2 -136.89112913690167 -816.1216794656502 63.4315 0.1144 12956 +12958 2 -136.09246929587673 -815.332617099082 63.9719 0.1144 12957 +12959 2 -135.28628044426554 -814.5403354158798 64.3952 0.1144 12958 +12960 2 -134.47644001390884 -813.7431094458063 64.7242 0.1144 12959 +12961 2 -133.66464014800678 -812.9446790620398 64.9821 0.1144 12960 +12962 2 -132.85159442916213 -812.1440743161955 65.1991 0.1144 12961 +12963 2 -132.0387722490626 -811.3450155426763 65.408 0.1144 12962 +12964 2 -131.18320618281254 -810.5895247642538 65.5892 0.1144 12963 +12965 2 -130.2956039056155 -809.870684922902 65.7395 0.1144 12964 +12966 2 -129.402246852299 -809.1591067997914 65.8871 0.1144 12965 +12967 2 -128.51566688929955 -808.4408953481925 66.0806 0.1144 12966 +12968 2 -127.71219249508599 -807.6529819279215 66.5384 0.1144 12967 +12969 2 -126.96089737480531 -806.8500720623434 67.3081 0.1144 12968 +12970 2 -126.24216384010884 -806.0510957885388 68.2637 0.1144 12969 +12971 2 -125.59164995523514 -805.2175201017612 69.2902 0.1144 12970 +12972 2 -125.38422848609153 -804.1567292721732 70.196 0.1144 12971 +12973 2 -125.33648914920897 -803.0504168363243 70.8949 0.1144 12972 +12974 2 -125.28861156112725 -801.9681998541255 71.797 0.1144 12973 +12975 2 -140.87996611317442 -823.1902150478425 62.2107 0.1144 12949 +12976 2 -139.77252524642924 -823.285621633898 62.5411 0.1144 12975 +12977 2 -138.6407544607259 -823.3835629869022 62.8463 0.1144 12976 +12978 2 -137.50644821553703 -823.4812370475614 63.1266 0.1144 12977 +12979 2 -136.37374030848588 -823.5786023766257 63.4192 0.1144 12978 +12980 2 -135.23493234957482 -823.5218534319599 63.6289 0.1144 12979 +12981 2 -134.12367291603442 -823.2631227585416 63.686 0.1144 12980 +12982 2 -133.01759292721002 -822.9740048616168 63.6054 0.1144 12981 +12983 2 -131.91846971915157 -822.6582919801765 63.5337 0.1144 12982 +12984 2 -130.82759289840183 -822.3140770444882 63.5975 0.1144 12983 +12985 2 -129.73979473404046 -821.9690547211349 63.7857 0.1144 12984 +12986 2 -128.68598300611842 -821.6342413222186 64.5053 0.1144 12985 +12987 2 -165.38617177916143 -850.3416412802957 58.8235 0.1144 12644 +12988 2 -165.95614216148473 -849.3532597682903 58.6659 0.1144 12987 +12989 2 -166.52674093356092 -848.3638559420872 58.5578 0.1144 12988 +12990 2 -167.09890521673768 -847.3740058256268 58.4545 0.1144 12989 +12991 2 -167.6699948199041 -846.3836125122632 58.3408 0.1144 12990 +12992 2 -168.24122198173316 -845.3931863718626 58.2246 0.1144 12991 +12993 2 -168.8124491435622 -844.4027602314621 58.1118 0.1144 12992 +12994 2 -169.38456106092616 -843.4129953078514 58.0084 0.1144 12993 +12995 2 -169.87413833126269 -842.3804803896203 57.9208 0.1144 12994 +12996 2 -170.3089217838012 -841.3236756066075 57.8584 0.1144 12995 +12997 2 -170.81885153302645 -840.2996798786598 57.8416 0.1144 12996 +12998 2 -171.34593708486503 -839.2848208041854 57.8542 0.1144 12997 +12999 2 -171.76133800689962 -838.2202104134918 57.8438 0.1144 12998 +13000 2 -171.42057130771826 -837.168777982601 57.6366 0.1144 12999 +13001 2 -170.97416497164494 -836.1276526908548 57.2499 0.1144 13000 +13002 2 -170.88561145870332 -835.0592863092488 56.9388 0.1144 13001 +13003 2 -170.94350934966613 -833.9252929035264 56.6149 0.1144 13002 +13004 2 -171.0854369265899 -832.798580423384 56.2654 0.1144 13003 +13005 2 -171.3007748087041 -831.6794294967765 56.037 0.1144 13004 +13006 2 -171.52899162651636 -830.5588044550843 55.93 0.1144 13005 +13007 2 -171.75720844432863 -829.438179413392 55.8978 0.1144 13006 +13008 2 -171.88670957897796 -828.3011289676665 55.9056 0.1144 13007 +13009 2 -171.68647453781534 -827.1763224739573 55.9647 0.1144 13008 +13010 2 -170.46681066245617 -827.2578000852616 55.8575 0.1144 13009 +13011 2 -169.3263334847923 -827.267166900508 55.6492 0.1144 13010 +13012 2 -168.18924980358184 -827.2383580142962 55.3554 0.1144 13011 +13013 2 -167.05538543900536 -827.2020201174981 54.994 0.1144 13012 +13014 2 -166.0221384233693 -826.7791346310138 54.5672 0.1144 13013 +13015 2 -165.30293498143143 -825.9327998396311 54.0882 0.1144 13014 +13016 2 -164.9144455656813 -824.8870129665781 53.536 0.1144 13015 +13017 2 -164.6106617733647 -823.8126518506 52.9357 0.1144 13016 +13018 2 -164.4713278113146 -822.7023904097584 52.3516 0.1144 13017 +13019 2 -164.80480775539195 -821.6289781232169 51.8893 0.1144 13018 +13020 2 -165.29254912069962 -820.6061337506129 51.5278 0.1144 13019 +13021 2 -166.08754836288261 -819.7976243660487 51.2134 0.1144 13020 +13022 2 -166.92035841499649 -819.0217467551472 50.9345 0.1144 13021 +13023 2 -167.75504270980582 -818.247021192126 50.6752 0.1144 13022 +13024 2 -168.57693946493305 -817.4604445182338 50.3835 0.1144 13023 +13025 2 -169.24584458250823 -816.5448484316968 50.0178 0.1144 13024 +13026 2 -169.7036212966155 -816.5013218878279 49.8618 0.1144 13025 +13027 2 -170.8085339133297 -816.2417889237834 49.6171 0.1144 13026 +13028 2 -171.8507729152895 -815.7826857515073 49.4788 0.1144 13027 +13029 2 -172.8298375688148 -815.1947199325881 49.4001 0.1144 13028 +13030 2 -173.6857200678446 -814.442414809746 49.3702 0.1144 13029 +13031 2 -174.4608990067828 -813.6029414851986 49.3587 0.1144 13030 +13032 2 -175.23670633547385 -812.7624458464536 49.331 0.1144 13031 +13033 2 -176.0784733506121 -811.9893740889659 49.3511 0.1144 13032 +13034 2 -176.91849585673745 -811.2126476511496 49.4253 0.1144 13033 +13035 2 -177.62210650398416 -810.3169755755096 49.5197 0.1144 13034 +13036 2 -178.09091473062853 -809.2812023104412 49.6255 0.1144 13035 +13037 2 -178.32461282904893 -808.1692286017616 49.845 0.1144 13036 +13038 2 -178.51402555565028 -807.0462323778136 50.0909 0.1144 13037 +13039 2 -178.90862460695564 -805.9782260816202 50.286 0.1144 13038 +13040 2 -179.69605029771947 -805.1690523786829 50.4409 0.1144 13039 +13041 2 -180.59958773428605 -804.4702199304361 50.5618 0.1144 13040 +13042 2 -181.6317707836905 -803.9860373279789 50.6601 0.1144 13041 +13043 2 -182.39006672299013 -803.1455769253175 50.7424 0.1144 13042 +13044 2 -183.10979131987693 -802.2586358649105 50.8603 0.1144 13043 +13045 2 -183.91575071422974 -801.4500553156425 51.0306 0.1144 13044 +13046 2 -184.78210021998876 -800.7068837446907 51.235 0.1144 13045 +13047 2 -185.5876547633339 -799.9008714819452 51.4478 0.1144 13046 +13048 2 -186.19763295802454 -798.9369643432633 51.6354 0.1144 13047 +13049 2 -186.7102771646475 -797.9173368782467 51.8045 0.1144 13048 +13050 2 -187.0367243451621 -796.8248117625932 52.0019 0.1144 13049 +13051 2 -187.325522583929 -795.721352426104 52.2222 0.1144 13050 +13052 2 -187.34952784351512 -794.5811987007177 52.4014 0.1144 13051 +13053 2 -187.2646389134917 -793.441369735671 52.5274 0.1144 13052 +13054 2 -187.14875080740143 -792.3038496844777 52.6078 0.1144 13053 +13055 2 -187.1319401744185 -791.1602055559924 52.6453 0.1144 13054 +13056 2 -186.9724303223456 -790.0281520647246 52.645 0.1144 13055 +13057 2 -186.82543830856315 -788.8931113130843 52.621 0.1144 13056 +13058 2 -186.90236383578835 -787.7520327779864 52.5868 0.1144 13057 +13059 2 -187.05525466646503 -786.6185603372562 52.5157 0.1144 13058 +13060 2 -187.21771131114326 -785.4870941872543 52.4082 0.1144 13059 +13061 2 -187.32520616137037 -784.3486072715743 52.3183 0.1144 13060 +13062 2 -187.41491371764818 -783.2086948125027 52.2508 0.1144 13061 +13063 2 -187.59973774415627 -782.0801782777434 52.204 0.1144 13062 +13064 2 -187.8340149680999 -780.9605786518318 52.1766 0.1144 13063 +13065 2 -188.2674673748459 -779.9015471409285 52.166 0.1144 13064 +13066 2 -188.97766208635124 -779.0060485525713 52.1651 0.1144 13065 +13067 2 -189.98206115076664 -778.4578355653103 52.1651 0.1144 13066 +13068 2 -190.89682061591478 -777.771300518192 52.1651 0.1144 13067 +13069 2 -169.45912332832893 -816.3617170401192 49.3511 0.1144 13025 +13070 2 -170.11221671094108 -815.578784735518 48.1698 0.1144 13069 +13071 2 -170.83130912395535 -814.7236174118057 47.6073 0.1144 13070 +13072 2 -171.68620454487115 -813.9881952886021 47.1859 0.1144 13071 +13073 2 -172.33733098070977 -813.0751698976342 46.7292 0.1144 13072 +13074 2 -172.1438959543117 -812.013585708527 46.1874 0.1144 13073 +13075 2 -171.86292652661893 -810.9196770922788 45.747 0.1144 13074 +13076 2 -171.7630257380693 -809.7867018928824 45.4507 0.1144 13075 +13077 2 -171.93871931427026 -808.6619635689681 45.2088 0.1144 13076 +13078 2 -171.85316916745694 -807.5230193594564 45.1167 0.1144 13077 +13079 2 -171.34559066580627 -806.5006358968251 45.213 0.1144 13078 +13080 2 -170.91958986697102 -805.4438819758994 45.453 0.1144 13079 +13081 2 -170.53000146169003 -804.375821526079 45.7744 0.1144 13080 +13082 2 -170.06644173204984 -803.3429334115883 46.1664 0.1144 13081 +13083 2 -169.52443870746723 -802.41360155948 47.117 0.1144 13082 +13084 2 -172.2337181574111 -826.2249146587635 56.4334 0.1144 13009 +13085 2 -172.6343776148478 -825.1579337783508 56.5278 0.1144 13084 +13086 2 -172.91294021061054 -824.0493566677076 56.588 0.1144 13085 +13087 2 -173.17893570385323 -822.9371632144025 56.6829 0.1144 13086 +13088 2 -173.40754644611027 -821.8181888766608 56.8523 0.1144 13087 +13089 2 -173.6163448047985 -820.6963094645093 57.0119 0.1144 13088 +13090 2 -173.82420604213902 -819.5738540284178 56.9237 0.1144 13089 +13091 2 -174.02363328204592 -818.4718034370278 56.3926 0.1144 13090 +13092 2 -174.4984512655188 -817.4785772379319 55.6982 0.1144 13091 +13093 2 -175.15069071903434 -816.5769176373742 55.0572 0.1144 13092 +13094 2 -175.5331158997277 -815.5310083290823 54.4779 0.1144 13093 +13095 2 -175.5377379362734 -814.4071116226282 54.0445 0.1144 13094 +13096 2 -175.79740262945643 -813.3031170089122 53.7541 0.1144 13095 +13097 2 -176.30269682340526 -812.2843711978476 53.536 0.1144 13096 +13098 2 -176.97169023541332 -811.3621386812392 53.305 0.1144 13097 +13099 2 -177.7066080977851 -810.4898186564967 53.0788 0.1144 13098 +13100 2 -178.53064638795303 -809.7018585709992 52.8917 0.1144 13099 +13101 2 -179.57978841979275 -809.2643708602836 52.7414 0.1144 13100 +13102 2 -179.87944689719703 -808.1957584062482 52.6201 0.1144 13101 +13103 2 -179.90776805390158 -807.052975416314 52.5392 0.1144 13102 +13104 2 -179.9953012481016 -805.914308810185 52.4087 0.1144 13103 +13105 2 -180.5559207429558 -804.9214707408156 52.1651 0.1144 13104 +13106 2 -170.86497918016966 -836.1087825308155 56.6328 0.1144 13001 +13107 2 -169.80265267160922 -835.9298990793457 55.7519 0.1144 13106 +13108 2 -168.68665397514033 -835.7420877924651 55.3515 0.1144 13107 +13109 2 -167.60178450217256 -835.4230460920204 54.9214 0.1144 13108 +13110 2 -166.55843157721492 -834.9925401989337 54.4771 0.1144 13109 +13111 2 -165.53429449648505 -834.5133946992428 54.0436 0.1144 13110 +13112 2 -164.5759983720939 -833.9095652051163 53.6556 0.1144 13111 +13113 2 -163.57927666771732 -833.3640482722677 53.3226 0.1144 13112 +13114 2 -162.53052765500126 -832.9249434119813 53.0286 0.1144 13113 +13115 2 -161.47960428020755 -832.4870844046375 52.7629 0.1144 13114 +13116 2 -160.42711539431323 -832.049671687551 52.5168 0.1144 13115 +13117 2 -159.36825977973913 -831.6270090472752 52.2824 0.1144 13116 +13118 2 -158.40149562892537 -832.1970640417287 51.9445 0.1144 13117 +13119 2 -157.4818227033444 -832.7691845884261 51.0432 0.1144 13118 +13120 2 -112.73214318635195 -950.3936881275122 62.9773 0.1144 12540 +13121 2 -112.04367913936377 -949.6764685544352 61.668 0.1144 13120 +13122 2 -111.20637268335099 -948.9871356677112 60.8199 0.1144 13121 +13123 2 -110.28366133353677 -948.393206366427 60.027 0.1144 13122 +13124 2 -109.33457094971291 -947.8553691016962 59.1968 0.1144 13123 +13125 2 -108.32312108668481 -947.5238225671337 58.2439 0.1144 13124 +13126 2 -107.58419144833817 -946.9433201988586 56.9246 0.1144 13125 +13127 2 -107.361450986931 -946.7419654451226 54.7845 0.1144 13126 +13128 2 -106.58928311530593 -946.0014667023619 53.8328 0.1144 13127 +13129 2 -106.09001777370759 -945.0419444469251 53.3383 0.1144 13128 +13130 2 -106.35135919687147 -944.0007227459705 52.449 0.1144 13129 +13131 2 -106.98755926880742 -943.3873512447832 50.9617 0.1144 13130 +13132 2 -107.12250615135022 -944.2733012201722 49.677 0.1144 13131 +13133 2 -106.44190979048855 -945.1051787613897 48.7236 0.1144 13132 +13134 2 -105.73911884254318 -945.951585249719 47.9503 0.1144 13133 +13135 2 -105.16893422622402 -946.918354401747 47.416 0.1144 13134 +13136 2 -104.61459006403359 -947.9097676202616 47.0716 0.1144 13135 +13137 2 -103.87188131466368 -948.7664997625379 46.7208 0.1144 13136 +13138 2 -102.84219538707805 -949.2401270638329 46.3523 0.1144 13137 +13139 2 -101.80722120494252 -949.6982962163443 45.9603 0.1144 13138 +13140 2 -100.73912000840892 -950.0596881973892 45.5487 0.1144 13139 +13141 2 -99.67829023760683 -949.6707915563906 45.1248 0.1144 13140 +13142 2 -98.65024248955109 -949.2940632753744 44.3122 0.1144 13141 +13143 2 -108.05547208453964 -946.6112382632742 56.287 0.1144 13126 +13144 2 -108.77942048999233 -945.7590557908878 55.7606 0.1144 13143 +13145 2 -109.35202013686364 -944.7749901760008 55.5307 0.1144 13144 +13146 2 -109.93259818616178 -943.7890205929643 55.5601 0.1144 13145 +13147 2 -110.4467196094524 -942.7755832677619 55.8522 0.1144 13146 +13148 2 -110.54216342704737 -941.6941309259164 56.6387 0.1144 13147 +13149 2 -110.36899568668815 -940.64101356128 57.6279 0.1144 13148 +13150 2 -110.29029310235899 -939.5304588020629 58.2263 0.1144 13149 +13151 2 -110.29589129045567 -938.3938980864431 58.4892 0.1144 13150 +13152 2 -109.96051516840305 -937.3403795879074 58.5796 0.1144 13151 +13153 2 -109.21150052689876 -936.487928230461 58.5698 0.1144 13152 +13154 2 -108.21598564526155 -935.957825692796 58.5178 0.1144 13153 +13155 2 -107.10843084881594 -935.679891486786 58.4926 0.1144 13154 +13156 2 -105.98115465636965 -935.486556787511 58.5208 0.1144 13155 +13157 2 -104.84244971257408 -935.3882009998036 58.6174 0.1144 13156 +13158 2 -103.70078043285346 -935.3471830068963 58.7121 0.1144 13157 +13159 2 -102.60759099882677 -935.0283093778008 58.7924 0.1144 13158 +13160 2 -101.7136051649945 -934.6345639538184 59.1321 0.1144 13159 +13161 2 -101.10594509421028 -935.5838148207522 59.3737 0.1144 13160 +13162 2 -100.22882054266378 -936.2921918750632 59.4908 0.1144 13161 +13163 2 -99.22460357774378 -936.8378170370258 59.5851 0.1144 13162 +13164 2 -98.20555986067987 -937.3554302832945 59.6635 0.1144 13163 +13165 2 -97.17845013929278 -937.8575213011708 59.7307 0.1144 13164 +13166 2 -96.16412175442161 -938.3848410216864 59.8349 0.1144 13165 +13167 2 -95.20149311774088 -938.9962910342322 60.0135 0.1144 13166 +13168 2 -94.22728445665399 -939.5872417044774 60.2174 0.1144 13167 +13169 2 -93.19265424219705 -940.0645205845178 60.4128 0.1144 13168 +13170 2 -92.07732257492123 -940.1792573352644 60.5377 0.1144 13169 +13171 2 -91.04536516582789 -939.7544647790476 60.6057 0.1144 13170 +13172 2 -89.99413305943924 -939.315007433566 60.5374 0.1144 13171 +13173 2 -88.88361702865166 -939.0877222264719 60.2182 0.1144 13172 +13174 2 -87.7757264682923 -938.8955043389935 59.6966 0.1144 13173 +13175 2 -86.68124632673835 -938.7034302133437 59.0366 0.1144 13174 +13176 2 -85.59352924735543 -938.5156305455628 58.2985 0.1144 13175 +13177 2 -84.51054152831142 -938.326629565672 57.5274 0.1144 13176 +13178 2 -83.42496598396912 -938.1374464862856 56.7736 0.1144 13177 +13179 2 -82.333776323753 -937.9488035022194 56.0703 0.1144 13178 +13180 2 -81.23960732284053 -937.7757015454363 55.4322 0.1144 13179 +13181 2 -80.29779597010827 -938.3315144238986 54.924 0.1144 13180 +13182 2 -79.81503722933854 -939.3615298112645 54.6627 0.1144 13181 +13183 2 -79.41251214141897 -940.4313548827577 54.5485 0.1144 13182 +13184 2 -79.10388198030765 -941.5321318963496 54.5664 0.1144 13183 +13185 2 -78.60471425501217 -942.4513484334198 54.558 0.1144 13184 +13186 2 -77.68526527091743 -942.2890379419318 53.9174 0.1144 13185 +13187 2 -76.95672375572644 -943.0001226349489 53.0074 0.1144 13186 +13188 2 -76.23479195203979 -943.6721914118057 52.0318 0.1144 13187 +13189 2 -75.44002394978676 -942.9728525292926 51.0983 0.1144 13188 +13190 2 -75.17587525333022 -941.9497342584361 50.1421 0.1144 13189 +13191 2 -75.34779882245093 -940.9206915302752 49.0857 0.1144 13190 +13192 2 -75.02093537376382 -939.9866170118814 48.0872 0.1144 13191 +13193 2 -74.77105913998471 -939.7967539881187 46.3529 0.1144 13192 +13194 2 -74.57738396537715 -940.5814212722212 44.8879 0.1144 13193 +13195 2 -73.74535355838802 -941.2557742449628 43.9396 0.1144 13194 +13196 2 -72.7438811847677 -941.7117642173034 43.1864 0.1144 13195 +13197 2 -71.76518994028623 -942.2488989378115 42.5762 0.1144 13196 +13198 2 -71.0031164826782 -943.0561662635528 41.9602 0.1144 13197 +13199 2 -71.08199875745623 -944.1467593667428 41.3126 0.1144 13198 +13200 2 -70.55551867092305 -945.0907404939292 40.6445 0.1144 13199 +13201 2 -69.56160583255394 -945.13913594542 39.2641 0.1144 13200 +13202 2 -91.06315510864218 -1001.5089617512352 68.3337 0.1144 12487 +13203 2 -91.72691911916806 -1000.634575481712 68.8201 0.1144 13202 +13204 2 -92.55421196205359 -999.8565977750196 69.1634 0.1144 13203 +13205 2 -93.05033116486254 -998.8441851730612 69.4966 0.1144 13204 +13206 2 -93.5119269374953 -997.8092607349076 69.8874 0.1144 13205 +13207 2 -94.0136602561781 -996.7963080376293 70.3035 0.1144 13206 +13208 2 -94.76834295439886 -995.9617259416038 70.7638 0.1144 13207 +13209 2 -95.5642731147635 -995.167170172748 71.2678 0.1144 13208 +13210 2 -96.1977560184815 -994.2393088195832 71.7959 0.1144 13209 +13211 2 -96.69792623511023 -993.2441762432911 72.4052 0.1144 13210 +13212 2 -97.0267291846614 -992.1718800760098 72.9529 0.1144 13211 +13213 2 -97.251817389319 -991.0695214455612 73.4012 0.1144 13212 +13214 2 -97.24703927416584 -989.9345645787089 73.7307 0.1144 13213 +13215 2 -97.16705870239355 -988.7976352721383 73.9505 0.1144 13214 +13216 2 -97.24277671434268 -987.66520496847 74.088 0.1144 13215 +13217 2 -97.64704631127515 -986.5990345773054 74.1891 0.1144 13216 +13218 2 -98.0501874773114 -985.5805314353137 74.2913 0.1144 13217 +13219 2 -97.74507333173887 -984.479880964832 74.366 0.1144 13218 +13220 2 -97.61410628062706 -983.384270285109 74.3719 0.1144 13219 +13221 2 -97.90077391091631 -982.2779753697522 74.3618 0.1144 13220 +13222 2 -98.20726253698695 -981.1785817677654 74.4047 0.1144 13221 +13223 2 -98.22434694442728 -980.0584717896729 74.5195 0.1144 13222 +13224 2 -98.29859255780173 -978.9545990076483 74.6208 0.1144 13223 +13225 2 -98.49298790894102 -977.8387737984621 74.65 0.1144 13224 +13226 2 -98.72343386369033 -976.7341915417063 74.5721 0.1144 13225 +13227 2 -99.18174225656844 -975.6891471660851 74.4313 0.1144 13226 +13228 2 -99.37475350356593 -974.5952430484714 74.333 0.1144 13227 +13229 2 -99.48990399647892 -973.4641616128612 74.3453 0.1144 13228 +13230 2 -99.63699078680642 -972.3313472873377 74.4142 0.1144 13229 +13231 2 -99.79594202361443 -971.1989002623881 74.4965 0.1144 13230 +13232 2 -100.00241984934976 -970.074303291256 74.5833 0.1144 13231 +13233 2 -99.96586489591868 -968.9454030364151 74.655 0.1144 13232 +13234 2 -99.89523831319858 -967.8062414913245 74.7222 0.1144 13233 +13235 2 -100.01773881878572 -966.6742784017625 74.8023 0.1144 13234 +13236 2 -100.24746878188583 -965.5532922626627 74.8552 0.1144 13235 +13237 2 -100.34657959144559 -964.4177511681053 74.8756 0.1144 13236 +13238 2 -100.38569051462028 -963.2747922818419 74.8689 0.1144 13237 +13239 2 -100.15823140665285 -962.1681139481774 74.9535 0.1144 13238 +13240 2 -100.02438251933069 -961.0357524178511 75.1117 0.1144 13239 +13241 2 -99.88580427166966 -959.9045921996349 75.3234 0.1144 13240 +13242 2 -100.07660040987614 -958.7837375107275 75.5353 0.1144 13241 +13243 2 -100.43962185212817 -957.7016034190063 75.7117 0.1144 13242 +13244 2 -100.61393201672394 -956.5747235600513 75.8988 0.1144 13243 +13245 2 -100.97985001586903 -955.494369905963 76.0578 0.1144 13244 +13246 2 -101.38879660732758 -954.4270833955384 76.1734 0.1144 13245 +13247 2 -101.76843375687295 -953.3484718414167 76.2538 0.1144 13246 +13248 2 -101.71945236116747 -952.2092336209927 76.3157 0.1144 13247 +13249 2 -102.10336947921118 -951.1345440395446 76.3652 0.1144 13248 +13250 2 -102.02289025136866 -949.9961344147233 76.4086 0.1144 13249 +13251 2 -102.51001725506958 -948.9634045699597 76.4604 0.1144 13250 +13252 2 -102.40495174248659 -947.8258461810998 76.531 0.1144 13251 +13253 2 -102.4014663354593 -946.6822934486306 76.6256 0.1144 13252 +13254 2 -102.21115721139569 -945.2923212592332 76.634 0.1144 13253 +13255 2 -101.99991747723055 -944.1701409284886 76.7931 0.1144 13254 +13256 2 -101.50847005494916 -943.1388918988489 76.9507 0.1144 13255 +13257 2 -101.22220144614366 -942.0337441242899 77.1131 0.1144 13256 +13258 2 -101.09784410653626 -940.8991175284066 77.2878 0.1144 13257 +13259 2 -101.16541564470919 -939.7602712318289 77.5074 0.1144 13258 +13260 2 -101.40467549319081 -938.6478426206791 77.7932 0.1144 13259 +13261 2 -101.18587583301141 -938.250067195715 78.0363 0.1144 13260 +13262 2 -100.96147515012021 -937.1668668525106 78.5708 0.1144 13261 +13263 2 -101.28808660786444 -936.1134131204132 79.0885 0.1144 13262 +13264 2 -101.76189389623934 -935.0912769144783 79.5847 0.1144 13263 +13265 2 -102.13430456362713 -934.0244219736285 80.0058 0.1144 13264 +13266 2 -102.79024555265443 -933.1102476363635 80.3426 0.1144 13265 +13267 2 -103.69532826900931 -932.4352542759846 80.6854 0.1144 13266 +13268 2 -104.2399104895567 -931.4553303783968 81.0247 0.1144 13267 +13269 2 -104.14188084211949 -930.3301960227648 81.289 0.1144 13268 +13270 2 -103.99916879683539 -929.1990772437982 81.541 0.1144 13269 +13271 2 -104.00200798670147 -928.0607032635083 81.7981 0.1144 13270 +13272 2 -104.06636330982346 -926.9226971816328 82.0372 0.1144 13271 +13273 2 -104.55807901361763 -925.8954876476806 82.2114 0.1144 13272 +13274 2 -104.96002807759703 -924.8265996975351 82.3273 0.1144 13273 +13275 2 -105.31521177766777 -923.7396479510422 82.4015 0.1144 13274 +13276 2 -105.56869253420297 -922.6237529622256 82.4401 0.1144 13275 +13277 2 -105.82314323912303 -921.5085715560114 82.4547 0.1144 13276 +13278 2 -106.26884309023126 -920.4557770401052 82.4578 0.1144 13277 +13279 2 -106.85325481777028 -919.4721639186419 82.4592 0.1144 13278 +13280 2 -107.40693225254117 -918.4709504208176 82.4611 0.1144 13279 +13281 2 -107.87841659891654 -917.428722825173 82.4639 0.1144 13280 +13282 2 -108.28446663348205 -916.3596558771153 82.4678 0.1144 13281 +13283 2 -108.74259602844785 -915.3105105309081 82.4732 0.1144 13282 +13284 2 -109.18187437601705 -914.2551774539335 82.4802 0.1144 13283 +13285 2 -109.55759265447185 -913.1741570724258 82.4902 0.1144 13284 +13286 2 -109.7928921926131 -912.0551858362671 82.5054 0.1144 13285 +13287 2 -110.01407865590915 -910.9328217961917 82.5261 0.1144 13286 +13288 2 -109.7442053172351 -909.822961791023 82.5538 0.1144 13287 +13289 2 -109.25119238385312 -908.7921590516407 82.5871 0.1144 13288 +13290 2 -108.78412173571314 -907.7476050273575 82.6414 0.1144 13289 +13291 2 -108.45169281985645 -906.6543453162631 82.7579 0.1144 13290 +13292 2 -108.44980575096676 -905.510483852199 82.8517 0.1144 13291 +13293 2 -108.73633582259347 -904.4042217638791 82.9226 0.1144 13292 +13294 2 -108.57429051103509 -903.2719009802662 82.9724 0.1144 13293 +13295 2 -108.28985470567534 -902.1637714559643 83.0024 0.1144 13294 +13296 2 -107.8445620798156 -901.1099493280153 83.0155 0.1144 13295 +13297 2 -101.60942283805932 -937.5086831828613 76.4837 0.1144 13260 +13298 2 -101.40699871413631 -936.4200929550649 75.9072 0.1144 13297 +13299 2 -101.51977871733013 -935.3037529840526 75.4034 0.1144 13298 +13300 2 -101.47360248250163 -934.1796204272173 74.9081 0.1144 13299 +13301 2 -101.55106500346372 -933.0508448038775 74.4876 0.1144 13300 +13302 2 -101.76399956882162 -931.9462977832053 73.9906 0.1144 13301 +13303 2 -101.05272285603442 -931.0740815899098 73.5305 0.1144 13302 +13304 2 -100.1644415397817 -930.3977857129474 72.919 0.1144 13303 +13305 2 -102.57686308896047 -946.2395895533899 76.7071 0.1144 13253 +13306 2 -102.87608689520681 -945.1411299711679 76.9157 0.1144 13305 +13307 2 -103.20386512151396 -944.0508315834047 77.1826 0.1144 13306 +13308 2 -103.6121473945995 -942.9911186243992 77.5099 0.1144 13307 +13309 2 -104.0381943212756 -941.9397427561819 77.8786 0.1144 13308 +13310 2 -104.4650486356168 -940.8914455443529 78.2698 0.1144 13309 +13311 2 -104.88343681802391 -939.8393529919498 78.6649 0.1144 13310 +13312 2 -105.25023647112093 -938.7663493505356 79.0322 0.1144 13311 +13313 2 -105.57080224341647 -937.6768997896875 79.3618 0.1144 13312 +13314 2 -105.88094244823256 -936.5824504745719 79.6673 0.1144 13313 +13315 2 -106.20163795421081 -935.4904982812753 79.9688 0.1144 13314 +13316 2 -106.59547888208067 -934.4260169317278 80.3009 0.1144 13315 +13317 2 -107.08982074883963 -933.4098120907781 80.7089 0.1144 13316 +13318 2 -107.5070014159707 -932.3663677698046 81.2162 0.1144 13317 +13319 2 -107.7765954296095 -931.2832664228338 81.8082 0.1144 13318 +13320 2 -107.9456026189728 -930.1758988280652 82.3665 0.1144 13319 +13321 2 -108.073573478605 -929.0568060619886 82.864 0.1144 13320 +13322 2 -108.36686591986614 -927.9788810581506 83.4243 0.1144 13321 +13323 2 -109.37378333172273 -927.6645125233066 84.201 0.1144 13322 +13324 2 -110.13847985071249 -926.8749386864522 84.9358 0.1144 13323 +13325 2 -110.75984745279743 -925.9557115365708 85.6086 0.1144 13324 +13326 2 -111.51051678232852 -925.1387346349992 86.2523 0.1144 13325 +13327 2 -112.4095446031817 -924.4734008936844 86.8353 0.1144 13326 +13328 2 -113.32732346320279 -923.8235838701321 87.358 0.1144 13327 +13329 2 -114.21321977669527 -923.1272892904171 87.8284 0.1144 13328 +13330 2 -115.07261009264187 -922.3933388732518 88.2734 0.1144 13329 +13331 2 -115.93298989574893 -921.6598792871766 88.704 0.1144 13330 +13332 2 -116.79804359179903 -920.9319923777257 89.1201 0.1144 13331 +13333 2 -117.70116997419169 -920.2491058077696 89.5084 0.1144 13332 +13334 2 -118.64678346850474 -919.6217975188295 89.8484 0.1144 13333 +13335 2 -119.47866190990038 -918.8560289188326 90.1505 0.1144 13334 +13336 2 -120.06515660350115 -917.8844951703823 90.4428 0.1144 13335 +13337 2 -120.45851531249343 -916.8249995469557 90.8323 0.1144 13336 +13338 2 -120.72921993476265 -915.7358901596662 91.3651 0.1144 13337 +13339 2 -121.05031177423211 -914.6629625010489 91.9444 0.1144 13338 +13340 2 -121.40481402620065 -913.6011808882163 92.5168 0.1144 13339 +13341 2 -121.75861362212959 -912.5361502332958 93.0574 0.1144 13340 +13342 2 -122.11543089642154 -911.4664011445993 93.5329 0.1144 13341 +13343 2 -122.47679853314006 -910.391349773207 93.8865 0.1144 13342 +13344 2 -122.84783981706872 -909.3114455109594 94.0276 0.1144 13343 +13345 2 -123.22488914131597 -908.2326518573423 93.9403 0.1144 13344 +13346 2 -123.60060431818772 -907.1583202717187 93.6821 0.1144 13345 +13347 2 -124.0691945167165 -906.1316860691702 93.3229 0.1144 13346 +13348 2 -124.81607470883961 -905.3097977077643 92.9552 0.1144 13347 +13349 2 -125.78591510699525 -904.7215614949168 92.6503 0.1144 13348 +13350 2 -126.82833310686732 -904.2665592932268 92.3983 0.1144 13349 +13351 2 -127.93127087481699 -904.0648549550726 92.1264 0.1144 13350 +13352 2 -128.93694622785057 -903.7175606356536 91.709 0.1144 13351 +13353 2 -129.35682593916013 -902.7375176171944 91.175 0.1144 13352 +13354 2 -129.49879185375056 -901.6216277305593 90.6637 0.1144 13353 +13355 2 -129.59072854696532 -900.4977580564241 90.1992 0.1144 13354 +13356 2 -129.6103100762244 -899.3670927771695 89.7907 0.1144 13355 +13357 2 -129.59898072384962 -898.2320999816969 89.4482 0.1144 13356 +13358 2 -129.59504592498178 -897.0936705340113 89.175 0.1144 13357 +13359 2 -129.75095994465107 -895.9661646943499 88.9907 0.1144 13358 +13360 2 -129.98719660414002 -894.8477694821312 88.8866 0.1144 13359 +13361 2 -130.33734221227698 -893.7604207096105 88.8516 0.1144 13360 +13362 2 -130.81600308404379 -892.7238955242727 88.8787 0.1144 13361 +13363 2 -131.33724315628345 -891.7055607673822 88.9532 0.1144 13362 +13364 2 -131.86179324863662 -890.6904344005625 89.0574 0.1144 13363 +13365 2 -132.155135646664 -889.5950503731458 89.1635 0.1144 13364 +13366 2 -132.31497163900704 -888.4632645649862 89.2592 0.1144 13365 +13367 2 -132.4652222785728 -887.3296952176104 89.3474 0.1144 13366 +13368 2 -132.9027256991385 -886.2879437323734 89.4566 0.1144 13367 +13369 2 -133.47100393826173 -885.2958223471896 89.5947 0.1144 13368 +13370 2 -134.03122950867123 -884.3013335738697 89.7383 0.1144 13369 +13371 2 -134.5813819967962 -883.29936195261 89.8794 0.1144 13370 +13372 2 -135.13144929207138 -882.2973379655374 90.0183 0.1144 13371 +13373 2 -135.6809405634065 -881.2962510998127 90.1572 0.1144 13372 +13374 2 -136.23007073733396 -880.2936510888002 90.2969 0.1144 13373 +13375 2 -136.7796472015188 -879.2926165888881 90.4425 0.1144 13374 +13376 2 -137.36481395091025 -878.312167316663 90.6153 0.1144 13375 +13377 2 -138.00868718602405 -877.3717943283739 90.837 0.1144 13376 +13378 2 -138.67171709854645 -876.445896204874 91.105 0.1144 13377 +13379 2 -139.45325897204475 -875.6224242260132 91.3822 0.1144 13378 +13380 2 -140.32111852150848 -874.8855803535379 91.6454 0.1144 13379 +13381 2 -140.9619600501133 -873.9608335853816 91.9271 0.1144 13380 +13382 2 -141.4800855373444 -872.9498574533777 92.2396 0.1144 13381 +13383 2 -141.92284197637633 -871.906052727533 92.5994 0.1144 13382 +13384 2 -142.34225247298102 -870.8545885648828 93.0006 0.1144 13383 +13385 2 -142.7574768061498 -869.8032510343321 93.4307 0.1144 13384 +13386 2 -143.1931059840201 -868.7603475012149 93.8689 0.1144 13385 +13387 2 -143.72788551621122 -867.7637165003177 94.2757 0.1144 13386 +13388 2 -144.32539041344424 -866.8002416237472 94.6386 0.1144 13387 +13389 2 -145.00560585403394 -865.8903065082673 94.948 0.1144 13388 +13390 2 -145.7111235710132 -864.9959240391702 95.2227 0.1144 13389 +13391 2 -146.4170023854001 -864.1030547153607 95.489 0.1144 13390 +13392 2 -147.04381362296317 -863.1575936783715 95.8272 0.1144 13391 +13393 2 -147.55003873509358 -862.1528014830154 96.3194 0.1144 13392 +13394 2 -148.02022968080658 -861.1432323796008 96.9489 0.1144 13393 +13395 2 -148.5724206888567 -860.1814841897774 97.631 0.1144 13394 +13396 2 -149.18995461270083 -859.2599005783228 98.3161 0.1144 13395 +13397 2 -149.81921232277975 -858.3454058903633 98.9934 0.1144 13396 +13398 2 -150.44962208073892 -857.4290369597082 99.6526 0.1144 13397 +13399 2 -151.0800318386981 -856.5126680290532 100.2971 0.1144 13398 +13400 2 -151.82576308452406 -855.6859651144589 100.931 0.1144 13399 +13401 2 -152.58677278868478 -854.8739356013417 101.5753 0.1144 13400 +13402 2 -153.327465942577 -854.0468356607195 102.2473 0.1144 13401 +13403 2 -154.13197724787568 -853.2885430129597 102.965 0.1144 13402 +13404 2 -154.89408835061374 -852.5161609073389 103.8377 0.1144 13403 +13405 2 -155.41222204160957 -851.6100108213955 104.9462 0.1144 13404 +13406 2 -155.8773533736996 -850.6980443834669 106.1976 0.1144 13405 +13407 2 -157.03663093177227 -850.5204063713493 106.1259 0.1144 13406 +13408 2 -158.14880836831074 -850.2599393875402 105.9738 0.1144 13407 +13409 2 -159.23699475138784 -849.9096020562642 105.9629 0.1144 13408 +13410 2 -160.3223728720048 -849.5508478572838 106.0713 0.1144 13409 +13411 2 -161.3895024036436 -849.1473058362942 106.2625 0.1144 13410 +13412 2 -162.25762924545256 -848.4079265043334 106.4504 0.1144 13411 +13413 2 -163.2962197702499 -847.9371902493019 106.6439 0.1144 13412 +13414 2 -164.41115000185283 -847.6919141219314 106.8256 0.1144 13413 +13415 2 -165.52683525530807 -847.4498018437989 106.9844 0.1144 13414 +13416 2 -166.64390392036856 -847.2098311007072 107.1291 0.1144 13415 +13417 2 -167.7608873925793 -846.9698079918028 107.2672 0.1144 13416 +13418 2 -168.87759496023207 -846.7283241034231 107.4038 0.1144 13417 +13419 2 -169.9951544563829 -846.4873638731709 107.5312 0.1144 13418 +13420 2 -171.11279914538343 -846.2464560087315 107.6429 0.1144 13419 +13421 2 -172.230443834384 -846.005548144292 107.7339 0.1144 13420 +13422 2 -173.34800333053482 -845.7645879140398 107.7986 0.1144 13421 +13423 2 -174.4797511917908 -845.596790927945 107.8148 0.1144 13422 +13424 2 -175.62373859541793 -845.6231526491042 107.7773 0.1144 13423 +13425 2 -176.76105702602518 -845.7260556976549 107.6382 0.1144 13424 +13426 2 -177.89677711849478 -845.8292674778006 107.4276 0.1144 13425 +13427 2 -179.03186882121156 -845.9335015721439 107.1717 0.1144 13426 +13428 2 -180.1446455079112 -846.034700858395 106.5739 0.1144 13427 +13429 2 -154.88912923124286 -850.623752228661 108.0374 0.1144 13406 +13430 2 -153.89126708610752 -850.4709945470019 109.3422 0.1144 13429 +13431 2 -153.47495805852182 -849.660476284684 110.6325 0.1144 13430 +13432 2 -153.31175177311883 -848.6524523720684 111.8902 0.1144 13431 +13433 2 -153.17003500971344 -847.6092766395238 112.9834 0.1144 13432 +13434 2 -153.03511005730772 -846.5244971655208 113.8099 0.1144 13433 +13435 2 -152.9449533881354 -845.421691854052 114.5122 0.1144 13434 +13436 2 -152.99562720598712 -844.3168288923304 115.2231 0.1144 13435 +13437 2 -153.09035433939633 -843.2430352947539 116.1504 0.1144 13436 +13438 2 -153.08548993040887 -842.2329184958019 117.4589 0.1144 13437 +13439 2 -153.14739569711688 -841.2866154386113 118.9818 0.1144 13438 +13440 2 -153.6639091198378 -840.5796035828769 120.6131 0.1144 13439 +13441 2 -154.55836085400756 -840.1491530453691 121.9814 0.1144 13440 +13442 2 -155.5415038554451 -839.7839003537646 123.0928 0.1144 13441 +13443 2 -156.55600402877397 -839.4245406894786 124.0383 0.1144 13442 +13444 2 -157.59459896321647 -839.089381903005 124.8792 0.1144 13443 +13445 2 -158.47883667076744 -838.5814029599917 125.7214 0.1144 13444 +13446 2 -158.85880237477215 -837.5809341729821 126.6252 0.1144 13445 +13447 2 -159.06369927618758 -836.5158165316907 127.514 0.1144 13446 +13448 2 -159.26717683737766 -835.4551085925801 128.4399 0.1144 13447 +13449 2 -159.46984390931954 -834.3980107929654 129.3858 0.1144 13448 +13450 2 -159.6730541781644 -833.3398383133401 130.3288 0.1144 13449 +13451 2 -159.87041896741042 -832.2781901512988 131.2486 0.1144 13450 +13452 2 -159.85871861503833 -831.2114022849662 132.1446 0.1144 13451 +13453 2 -159.58214106726078 -830.1605722177977 133.0003 0.1144 13452 +13454 2 -159.266238871728 -829.1015341009872 133.7168 0.1144 13453 +13455 2 -158.98045178926347 -828.0154632269202 134.2457 0.1144 13454 +13456 2 -158.70340433424454 -826.9172746421738 134.6307 0.1144 13455 +13457 2 -158.49376844884662 -825.805470614679 135.0177 0.1144 13456 +13458 2 -158.3687851285328 -824.6892401637222 135.5446 0.1144 13457 +13459 2 -158.29626958243452 -823.5838969837215 136.2396 0.1144 13458 +13460 2 -158.56415914123704 -822.5494000072713 137.0656 0.1144 13459 +13461 2 -159.13852001840235 -821.6522222975717 138.0445 0.1144 13460 +13462 2 -159.8433637985076 -820.9118986348086 139.2779 0.1144 13461 +13463 2 -160.19053516812983 -819.9516057315158 140.4634 0.1144 13462 +13464 2 -160.93429356578977 -819.3009350806406 141.7965 0.1144 13463 +13465 2 -161.65238658905395 -818.5149950002659 142.8154 0.1144 13464 +13466 2 -162.16016249160228 -817.5447269276225 143.624 0.1144 13465 +13467 2 -162.5130133470839 -816.5074018658478 144.4324 0.1144 13466 +13468 2 -162.89236228043535 -815.4796737759499 145.2354 0.1144 13467 +13469 2 -163.35831400436314 -814.4943791240976 146.0827 0.1144 13468 +13470 2 -163.82532948173832 -813.5138466596213 146.9628 0.1144 13469 +13471 2 -164.28856054510226 -812.5375613366062 147.8873 0.1144 13470 +13472 2 -164.7501823437656 -811.5658037356588 148.8404 0.1144 13471 +13473 2 -165.21225043268635 -810.5956116458121 149.7958 0.1144 13472 +13474 2 -165.67275301050654 -809.625865846223 150.7621 0.1144 13473 +13475 2 -166.13349005363483 -808.6534470284857 151.7155 0.1144 13474 +13476 2 -166.5985429938816 -807.6783989462007 152.6372 0.1144 13475 +13477 2 -167.06618686100958 -806.6968441675268 153.5117 0.1144 13476 +13478 2 -167.56175055527927 -805.7378504892777 154.4085 0.1144 13477 +13479 2 -168.03353814030504 -804.9025167747566 155.9345 0.1144 13478 +13480 2 -70.49467575454742 -1080.33323958567 45.521 0.1144 10250 +13481 2 -70.33632346098426 -1079.2099968865514 45.8766 0.1144 13480 +13482 2 -69.9802313535888 -1078.1290722217154 46.0118 0.1144 13481 +13483 2 -69.05839276142518 -1077.4617295136577 46.2274 0.1144 13482 +13484 2 -67.97160770120843 -1077.162991027872 46.6189 0.1144 13483 +13485 2 -66.84612696885142 -1077.2245371170513 47.0548 0.1144 13484 +13486 2 -65.74181200444082 -1076.9915557028166 47.5107 0.1144 13485 +13487 2 -64.65948040000495 -1076.690155125446 48.0278 0.1144 13486 +13488 2 -63.57201079010292 -1076.4232755692049 48.5464 0.1144 13487 +13489 2 -62.440144198738494 -1076.398964679607 48.9401 0.1144 13488 +13490 2 -61.342000166802904 -1076.254290510785 49.1347 0.1144 13489 +13491 2 -60.40946561323159 -1075.5911723038298 49.1596 0.1144 13490 +13492 2 -59.46740048174229 -1074.9435591955375 49.0893 0.1144 13491 +13493 2 -58.525644081847815 -1074.297544425383 48.9336 0.1144 13492 +13494 2 -57.58072073113203 -1073.658973472965 48.7113 0.1144 13493 +13495 2 -56.63128845723941 -1073.0298386008658 48.4355 0.1144 13494 +13496 2 -55.66425201286626 -1072.462189444032 48.0245 0.1144 13495 +13497 2 -54.623762711090365 -1072.4269039953333 47.1593 0.1144 13496 +13498 2 -53.55785270459012 -1072.4767057828767 46.2543 0.1144 13497 +13499 2 -52.50206612790339 -1072.1997210098507 45.4765 0.1144 13498 +13500 2 -51.52962438571876 -1071.6691283336322 44.8423 0.1144 13499 +13501 2 -50.49302831976598 -1071.2562744901825 44.3355 0.1144 13500 +13502 2 -49.37187310302846 -1071.1687060598988 44.0028 0.1144 13501 +13503 2 -48.3917279747746 -1071.6686764665833 43.792 0.1144 13502 +13504 2 -47.62755372883913 -1072.505523628166 43.587 0.1144 13503 +13505 2 -46.75372516925995 -1073.228016858905 43.3779 0.1144 13504 +13506 2 -45.654104222430306 -1073.3699003085865 43.1332 0.1144 13505 +13507 2 -44.5209572345762 -1073.3018410409063 42.8033 0.1144 13506 +13508 2 -43.46385502531638 -1072.9635965004068 42.2106 0.1144 13507 +13509 2 -42.63873765747121 -1073.1962692948632 41.585 0.1144 13508 +13510 2 -41.83331594939182 -1073.9930901292764 41.2636 0.1144 13509 +13511 2 -40.88935315902921 -1074.6200044937718 41.0374 0.1144 13510 +13512 2 -39.92672452234842 -1075.2314545063175 40.8937 0.1144 13511 +13513 2 -39.00452434104682 -1075.9081338067303 40.8103 0.1144 13512 +13514 2 -37.976991567601374 -1076.3520960793342 40.7324 0.1144 13513 +13515 2 -36.85269542607307 -1076.3351383039935 40.6207 0.1144 13514 +13516 2 -35.75836755188624 -1076.5272275639163 40.5065 0.1144 13515 +13517 2 -34.75490009818907 -1077.0653315402728 40.4135 0.1144 13516 +13518 2 -33.790799755470175 -1077.681276447849 40.336 0.1144 13517 +13519 2 -32.783774528089964 -1078.2184847421074 40.2657 0.1144 13518 +13520 2 -31.75372681056001 -1078.7146615247275 40.1988 0.1144 13519 +13521 2 -30.65940954918449 -1079.02895066144 40.1226 0.1144 13520 +13522 2 -29.521684474048413 -1079.0775709597378 40.017 0.1144 13521 +13523 2 -28.39528924301743 -1078.91564889975 39.846 0.1144 13522 +13524 2 -27.294602932904922 -1078.617756139296 39.6318 0.1144 13523 +13525 2 -26.16753617404646 -1078.6272667163712 39.4036 0.1144 13524 +13526 2 -25.037099535718653 -1078.720746001382 39.0368 0.1144 13525 +13527 2 -23.93442836757754 -1078.943977506664 38.5442 0.1144 13526 +13528 2 -22.861832276013217 -1079.3038977816705 38.1436 0.1144 13527 +13529 2 -21.78905649400002 -1079.683779712704 37.8431 0.1144 13528 +13530 2 -20.677149451389766 -1079.9350224411437 37.6205 0.1144 13529 +13531 2 -19.535661578627924 -1079.9154792495515 37.4584 0.1144 13530 +13532 2 -18.45455290268734 -1079.5463974011682 37.3425 0.1144 13531 +13533 2 -17.388162074360707 -1079.1338930360266 37.2378 0.1144 13532 +13534 2 -16.452375377118244 -1078.478166280995 37.1087 0.1144 13533 +13535 2 -16.23013094995042 -1077.3586121132155 36.9499 0.1144 13534 +13536 2 -15.94151939830249 -1077.3759448064684 36.8379 0.1144 13535 +13537 2 -14.834676787408227 -1077.5643325308797 36.3947 0.1144 13536 +13538 2 -13.79026170686086 -1077.9832450987565 35.9629 0.1144 13537 +13539 2 -12.796558603853214 -1078.5272335849147 35.5692 0.1144 13538 +13540 2 -11.763185861438501 -1078.9784052099471 35.2131 0.1144 13539 +13541 2 -10.653601050606142 -1079.0578213768788 34.9236 0.1144 13540 +13542 2 -9.533372342405187 -1078.8486290937458 34.7172 0.1144 13541 +13543 2 -8.416401981041531 -1078.6186677669207 34.5626 0.1144 13542 +13544 2 -7.303938133808174 -1078.3618965290475 34.4114 0.1144 13543 +13545 2 -6.193756481861158 -1078.0970202566482 34.2185 0.1144 13544 +13546 2 -5.089785094366164 -1078.1999589548732 33.9979 0.1144 13545 +13547 2 -3.968463493126194 -1078.3486930686217 33.7196 0.1144 13546 +13548 2 -2.8858498756625295 -1078.0847983637068 33.3749 0.1144 13547 +13549 2 -2.480663969414252 -1077.1710140557993 32.9426 0.1144 13548 +13550 2 -2.705903447128719 -1076.1841336792193 32.4386 0.1144 13549 +13551 2 -1.5818673884910481 -1076.3284995300369 32.0835 0.1144 13550 +13552 2 -0.4568080213455801 -1076.2035518593973 31.7705 0.1144 13551 +13553 2 0.5718763202277728 -1075.7230198465181 31.4569 0.1144 13552 +13554 2 1.6215368190239587 -1075.6633161844284 31.1268 0.1144 13553 +13555 2 2.44557510919185 -1076.4512762699258 30.9042 0.1144 13554 +13556 2 3.217281467296857 -1077.2915929107585 30.7168 0.1144 13555 +13557 2 3.951749937828083 -1078.1587896507174 30.5231 0.1144 13556 +13558 2 4.885069132595731 -1078.7815647069601 30.3489 0.1144 13557 +13559 2 6.001097661192887 -1078.9805046309507 30.2131 0.1144 13558 +13560 2 7.142893573013112 -1078.9353004746074 30.0905 0.1144 13559 +13561 2 8.269537972349838 -1079.0270024235679 29.9426 0.1144 13560 +13562 2 9.323756433790038 -1079.4532705147485 29.7674 0.1144 13561 +13563 2 10.271511463143725 -1080.081962215294 29.5926 0.1144 13562 +13564 2 11.162622457435702 -1080.791132629124 29.3978 0.1144 13563 +13565 2 12.170925672259159 -1081.3019663760288 29.1858 0.1144 13564 +13566 2 13.275445057065212 -1081.5872126706367 28.9918 0.1144 13565 +13567 2 14.33187242413021 -1081.9731525987554 28.7935 0.1144 13566 +13568 2 15.264448216145013 -1082.6273731213223 28.5295 0.1144 13567 +13569 2 16.23695311493219 -1083.19378204766 28.2251 0.1144 13568 +13570 2 17.33020492403557 -1083.33828925126 27.9564 0.1144 13569 +13571 2 18.460296179948614 -1083.199566962824 27.6881 0.1144 13570 +13572 2 19.57807742132337 -1083.2900261604252 27.4275 0.1144 13571 +13573 2 20.616165495930886 -1083.7314913112104 27.1945 0.1144 13572 +13574 2 21.541873494149286 -1084.3898159059465 26.9387 0.1144 13573 +13575 2 22.539265128495856 -1084.8699122585003 26.5947 0.1144 13574 +13576 2 23.66226105067028 -1084.9732472902165 26.2409 0.1144 13575 +13577 2 24.783403653997937 -1085.1260823745513 25.9338 0.1144 13576 +13578 2 25.852078465425052 -1085.5057853076728 25.6745 0.1144 13577 +13579 2 26.749769729856155 -1086.1840308117228 25.4899 0.1144 13578 +13580 2 27.395246813737344 -1087.114027496762 25.3865 0.1144 13579 +13581 2 27.96994655639952 -1088.1036103208776 25.3158 0.1144 13580 +13582 2 28.68695359430552 -1088.9882308483316 25.3083 0.1144 13581 +13583 2 29.473982951578193 -1089.8164290859481 25.3998 0.1144 13582 +13584 2 30.277090329870703 -1090.62934507111 25.5207 0.1144 13583 +13585 2 31.18316012433968 -1091.3212214311277 25.6234 0.1144 13584 +13586 2 32.133144983166915 -1091.9579329733497 25.7011 0.1144 13585 +13587 2 33.13015569724155 -1092.516086900166 25.7552 0.1144 13586 +13588 2 34.14034477386002 -1093.0540502162767 25.781 0.1144 13587 +13589 2 35.13654810026952 -1093.6152827994815 25.7843 0.1144 13588 +13590 2 36.152620994153494 -1094.1389478396686 25.7784 0.1144 13589 +13591 2 37.22059384207762 -1094.5459624414912 25.769 0.1144 13590 +13592 2 38.3324101812085 -1094.8079425705882 25.7559 0.1144 13591 +13593 2 39.42856334761291 -1095.1319022529276 25.7373 0.1144 13592 +13594 2 40.53842335278159 -1095.4017755916018 25.7115 0.1144 13593 +13595 2 41.650818817435606 -1095.6713816379306 25.6758 0.1144 13594 +13596 2 42.76882460384388 -1095.9107763570823 25.6252 0.1144 13595 +13597 2 43.85620049767272 -1096.2575035488626 25.5528 0.1144 13596 +13598 2 44.86398074690527 -1096.7915479938827 25.453 0.1144 13597 +13599 2 45.8160188463404 -1097.4230065176384 25.3208 0.1144 13598 +13600 2 46.57729653538286 -1098.261634116854 25.1391 0.1144 13599 +13601 2 47.3131484175193 -1099.1266893217726 24.811 0.1144 13600 +13602 2 48.20731783688757 -1099.8123817451421 24.3825 0.1144 13601 +13603 2 49.199419500174486 -1100.3493727038217 23.9314 0.1144 13602 +13604 2 50.18154498782252 -1100.8964867015516 23.4265 0.1144 13603 +13605 2 51.286823804126016 -1101.0429916783633 22.9155 0.1144 13604 +13606 2 52.40969378673742 -1101.1745755001284 22.4788 0.1144 13605 +13607 2 53.5041924550718 -1101.4673898355259 22.1183 0.1144 13606 +13608 2 54.62712300726065 -1101.4942328040802 21.6523 0.1144 13607 +13609 2 55.75407303660916 -1101.577647619019 21.2167 0.1144 13608 +13610 2 56.88736447882863 -1101.5470613967573 20.8452 0.1144 13609 +13611 2 58.01840757677215 -1101.4427334973516 20.4939 0.1144 13610 +13612 2 59.07498180724886 -1101.84877264016 20.1718 0.1144 13611 +13613 2 60.07878771799497 -1102.3784519238316 19.8093 0.1144 13612 +13614 2 61.085903648854554 -1102.9049228174326 19.5031 0.1144 13613 +13615 2 62.0773800239717 -1103.4475802577986 19.0711 0.1144 13614 +13616 2 -16.16390095856417 -1076.69085434408 37.3391 0.1144 13535 +13617 2 -16.036919865038442 -1075.5625968859226 37.532 0.1144 13616 +13618 2 -16.114779412028383 -1074.4287831706492 37.5085 0.1144 13617 +13619 2 -16.175268229872472 -1073.288283068538 37.5015 0.1144 13618 +13620 2 -15.798321193398351 -1072.2281103176651 37.6474 0.1144 13619 +13621 2 -15.78796730003802 -1071.1045161396396 37.9226 0.1144 13620 +13622 2 -16.88651418238271 -1071.1284183841103 38.3664 0.1144 13621 +13623 2 -17.964443986628737 -1071.2404779089986 39.2641 0.1144 13622 +13624 2 -77.10857664747175 -1132.1606207116597 44.9028 0.1144 8272 +13625 2 -76.21870840453926 -1132.8786542834514 44.9148 0.1144 13624 +13626 2 -75.32826413766674 -1133.5976249765913 44.9313 0.1144 13625 +13627 2 -74.47219953914151 -1134.3525179247313 44.9546 0.1144 13626 +13628 2 -73.72597135375531 -1135.219176978417 44.9868 0.1144 13627 +13629 2 -72.93306368984673 -1136.0437619749546 45.0316 0.1144 13628 +13630 2 -72.24349736178789 -1136.9492405330707 45.0996 0.1144 13629 +13631 2 -71.76131154337514 -1137.9850075949728 45.1942 0.1144 13630 +13632 2 -71.20050994902556 -1138.9804334896405 45.3107 0.1144 13631 +13633 2 -70.61476717569411 -1139.9618198832134 45.4689 0.1144 13632 +13634 2 -69.91821942591207 -1140.782601335412 45.7822 0.1144 13633 +13635 2 -68.90555455406479 -1140.546794937436 46.4822 0.1144 13634 +13636 2 -67.97143907617357 -1139.9431560603214 47.1246 0.1144 13635 +13637 2 -66.91896011055388 -1139.6520058466376 47.705 0.1144 13636 +13638 2 -65.81684514348859 -1139.797755801597 48.2135 0.1144 13637 +13639 2 -64.71243187538118 -1140.0347064572793 48.652 0.1144 13638 +13640 2 -63.624204745590816 -1140.356847364319 48.9731 0.1144 13639 +13641 2 -62.67743679435114 -1140.9686560652258 49.1831 0.1144 13640 +13642 2 -61.72625062341399 -1141.6006382471091 49.3192 0.1144 13641 +13643 2 -60.635758126292956 -1141.6205398481166 49.4147 0.1144 13642 +13644 2 -59.49750257433789 -1141.5170607756259 49.4771 0.1144 13643 +13645 2 -58.36089841886991 -1141.3891251520772 49.5256 0.1144 13644 +13646 2 -57.23705957117323 -1141.1791223796959 49.6098 0.1144 13645 +13647 2 -56.200625089314826 -1140.7111989085865 49.7277 0.1144 13646 +13648 2 -55.28779341694184 -1140.029203030364 49.8406 0.1144 13647 +13649 2 -54.399830042337214 -1139.3088500437243 49.9394 0.1144 13648 +13650 2 -53.53869129946304 -1138.5580331582446 50.0301 0.1144 13649 +13651 2 -52.7061771647281 -1137.77363306552 50.1214 0.1144 13650 +13652 2 -51.61556663003512 -1137.5773641642218 50.2205 0.1144 13651 +13653 2 -50.484767509226515 -1137.7174555571708 50.335 0.1144 13652 +13654 2 -49.34657321938556 -1137.6946547112775 50.4748 0.1144 13653 +13655 2 -48.20887827815136 -1137.649271557022 50.759 0.1144 13654 +13656 2 -47.141276430224536 -1137.9880812297047 51.233 0.1144 13655 +13657 2 -47.15526877436258 -1137.6811625200999 51.4097 0.1144 13656 +13658 2 -47.08476572215898 -1136.5528759343292 51.7698 0.1144 13657 +13659 2 -46.831827748936234 -1135.4439178144248 51.9658 0.1144 13658 +13660 2 -46.53361732578031 -1134.3408201788907 52.0825 0.1144 13659 +13661 2 -46.35361123298998 -1133.2136579161447 52.1284 0.1144 13660 +13662 2 -46.14357591251769 -1132.089518149855 52.1268 0.1144 13661 +13663 2 -45.93510610314604 -1130.9649320933077 52.1108 0.1144 13662 +13664 2 -46.08125818117236 -1129.8489155745729 52.0887 0.1144 13663 +13665 2 -46.33317342660695 -1128.7334668760136 52.0607 0.1144 13664 +13666 2 -46.31195860207265 -1127.5990884421478 52.0257 0.1144 13665 +13667 2 -45.87423332446593 -1126.5593082243404 51.945 0.1144 13666 +13668 2 -45.559676895408245 -1125.4675264224502 51.8465 0.1144 13667 +13669 2 -45.45233228912207 -1124.3313842722323 51.7658 0.1144 13668 +13670 2 -45.37525137582594 -1123.1895466074106 51.7096 0.1144 13669 +13671 2 -45.253696788049126 -1122.0526518443871 51.6768 0.1144 13670 +13672 2 -45.02473073796 -1120.9329570163618 51.6676 0.1144 13671 +13673 2 -44.624928590148954 -1119.8641353415228 51.6813 0.1144 13672 +13674 2 -44.19461499577835 -1118.8033218892608 51.7098 0.1144 13673 +13675 2 -44.339471264095664 -1117.7025900320273 51.7485 0.1144 13674 +13676 2 -44.856756536624516 -1116.6883976849722 51.7992 0.1144 13675 +13677 2 -45.815448479948884 -1116.116198053895 51.9198 0.1144 13676 +13678 2 -45.59242130607328 -1115.1048573201592 52.0458 0.1144 13677 +13679 2 -45.138444520163944 -1114.056378914156 52.1492 0.1144 13678 +13680 2 -44.70758772889019 -1112.9966401419044 52.2399 0.1144 13679 +13681 2 -44.409429671547116 -1111.8934573135202 52.3194 0.1144 13680 +13682 2 -44.141697867913706 -1110.7822138967463 52.3891 0.1144 13681 +13683 2 -44.38906275092171 -1109.672067480883 52.5353 0.1144 13682 +13684 2 -44.70999272220803 -1108.5774422694385 52.7187 0.1144 13683 +13685 2 -44.79457699370232 -1107.4370804185264 52.8041 0.1144 13684 +13686 2 -44.54712850485237 -1106.4415996776952 52.8864 0.1144 13685 +13687 2 -44.46037394434609 -1105.3046149037286 52.9609 0.1144 13686 +13688 2 -44.647466137994456 -1104.1789011207998 53.0368 0.1144 13687 +13689 2 -45.08171190425941 -1103.1338560526422 53.1233 0.1144 13688 +13690 2 -45.915065153276316 -1102.3569037617303 53.3075 0.1144 13689 +13691 2 -46.61300931883642 -1101.4618569742602 53.6029 0.1144 13690 +13692 2 -47.053083434971086 -1100.4378841707598 53.8602 0.1144 13691 +13693 2 -46.89498061148748 -1099.3537652210102 54.0453 0.1144 13692 +13694 2 -46.16308412746645 -1098.4755652969168 54.1559 0.1144 13693 +13695 2 -45.36072585251293 -1097.6923288711719 54.1943 0.1144 13694 +13696 2 -44.374917445123 -1097.157511001314 54.1626 0.1144 13695 +13697 2 -43.509165378883324 -1096.5058622924212 54.0736 0.1144 13696 +13698 2 -42.407400594640706 -1096.2381777575615 53.9431 0.1144 13697 +13699 2 -41.36418902246538 -1095.7768876149407 53.7242 0.1144 13698 +13700 2 -40.28841786530427 -1095.4298675183752 53.4204 0.1144 13699 +13701 2 -39.18250215370949 -1095.1798210050065 53.125 0.1144 13700 +13702 2 -38.162377749132645 -1094.7071329374749 52.8223 0.1144 13701 +13703 2 -37.53615303650406 -1093.8428260595124 52.4695 0.1144 13702 +13704 2 -37.154708003416204 -1092.7878703984854 51.9985 0.1144 13703 +13705 2 -36.54962643606018 -1091.851928142336 51.4324 0.1144 13704 +13706 2 -35.728046806249324 -1091.1066462883507 50.8654 0.1144 13705 +13707 2 -34.692610015316234 -1090.744039694392 50.318 0.1144 13706 +13708 2 -33.70022713250546 -1090.265749130086 49.7882 0.1144 13707 +13709 2 -33.02768334622567 -1089.3849439668766 49.3363 0.1144 13708 +13710 2 -32.47179448496655 -1088.397424800517 48.9516 0.1144 13709 +13711 2 -31.997497354668894 -1087.3646273895056 48.6604 0.1144 13710 +13712 2 -31.613035335754603 -1086.2903275356416 48.4635 0.1144 13711 +13713 2 -31.161594009330656 -1085.2421164219834 48.3423 0.1144 13712 +13714 2 -30.48370719364175 -1084.3285644721113 48.2756 0.1144 13713 +13715 2 -29.73185146264018 -1083.467558688298 48.2471 0.1144 13714 +13716 2 -29.093307116972312 -1082.5205555792136 48.2434 0.1144 13715 +13717 2 -28.64761746508475 -1081.4717715431984 48.2552 0.1144 13716 +13718 2 -27.875876060852875 -1080.6562938825637 48.2345 0.1144 13717 +13719 2 -26.85776174112425 -1080.143288578533 48.2177 0.1144 13718 +13720 2 -25.76474889596335 -1079.8111420892947 48.2401 0.1144 13719 +13721 2 -24.70659903901202 -1079.3850396952228 48.4011 0.1144 13720 +13722 2 -23.79033312347258 -1078.713023094222 48.7018 0.1144 13721 +13723 2 -23.067928187166217 -1077.8325581045715 48.9625 0.1144 13722 +13724 2 -21.930602547104513 -1077.8935141416646 49.177 0.1144 13723 +13725 2 -21.095982504175424 -1076.8111984650059 49.4589 0.1144 13724 +13726 2 -20.202804448771133 -1076.1037213124814 49.5379 0.1144 13725 +13727 2 -19.125130015997115 -1075.724660186876 49.6222 0.1144 13726 +13728 2 -18.2172655549428 -1075.1088683629982 49.7283 0.1144 13727 +13729 2 -18.281620185528254 -1073.9949249077358 49.8624 0.1144 13728 +13730 2 -18.934541087145988 -1073.0680951735176 50.0682 0.1144 13729 +13731 2 -19.65826053792017 -1072.2292707541242 50.2334 0.1144 13730 +13732 2 -19.878636511968068 -1071.1105168535441 50.3569 0.1144 13731 +13733 2 -19.927941638897323 -1069.9685419438117 50.4423 0.1144 13732 +13734 2 -19.925924836324953 -1068.827183112196 50.4986 0.1144 13733 +13735 2 -20.010602912881723 -1067.6908698660573 50.5327 0.1144 13734 +13736 2 -19.799759512207686 -1066.5877140699918 50.5551 0.1144 13735 +13737 2 -19.202800801643832 -1065.6123948002746 50.5859 0.1144 13736 +13738 2 -18.464992775501912 -1064.8312738835398 50.6296 0.1144 13737 +13739 2 -17.379638674610078 -1064.4998440784873 50.6836 0.1144 13738 +13740 2 -16.36393628385042 -1063.976231107482 50.7573 0.1144 13739 +13741 2 -15.37233786425736 -1063.431163566474 50.8987 0.1144 13740 +13742 2 -14.473137740388381 -1062.7334835916758 51.1062 0.1144 13741 +13743 2 -13.478560672635524 -1062.1798944513378 51.2641 0.1144 13742 +13744 2 -12.432055517539254 -1061.7218619630175 51.3705 0.1144 13743 +13745 2 -11.401012305346228 -1061.2277897976503 51.4282 0.1144 13744 +13746 2 -10.486567574153014 -1060.5810730639926 51.4374 0.1144 13745 +13747 2 -9.797623699648682 -1059.670232469935 51.392 0.1144 13746 +13748 2 -9.291287949357582 -1058.6567121652656 51.2921 0.1144 13747 +13749 2 -9.04049151117556 -1057.546370633756 51.1756 0.1144 13748 +13750 2 -8.905259212248154 -1056.411867568389 51.0756 0.1144 13749 +13751 2 -8.609098928116964 -1055.3207117472052 50.988 0.1144 13750 +13752 2 -8.130127904876304 -1054.28234165957 50.9082 0.1144 13751 +13753 2 -7.79836571643915 -1053.1988822277854 50.832 0.1144 13752 +13754 2 -7.508354132872114 -1052.1021153923107 50.7377 0.1144 13753 +13755 2 -7.0152114658075675 -1051.0738152853764 50.5904 0.1144 13754 +13756 2 -6.516986953209084 -1050.0491995842253 50.4078 0.1144 13755 +13757 2 -6.069913889716361 -1048.9982740131693 50.2505 0.1144 13756 +13758 2 -5.609033381390304 -1047.9522427722186 50.1435 0.1144 13757 +13759 2 -5.0000828997098665 -1046.9964326651045 50.0858 0.1144 13758 +13760 2 -4.201029826776903 -1046.181656967973 50.0758 0.1144 13759 +13761 2 -3.3706900541196774 -1045.3960110223056 50.1077 0.1144 13760 +13762 2 -2.57917219493919 -1044.5710770500395 50.176 0.1144 13761 +13763 2 -1.6187543583717456 -1044.045175396493 50.2967 0.1144 13762 +13764 2 -0.48814283000302794 -1043.9773834211583 50.4526 0.1144 13763 +13765 2 0.4181831522694779 -1043.4484599636921 50.6688 0.1144 13764 +13766 2 1.0437110035766182 -1042.499949912486 50.9146 0.1144 13765 +13767 2 1.7328698046133582 -1041.591559585064 51.1053 0.1144 13766 +13768 2 2.4908414091420354 -1040.736302374204 51.2184 0.1144 13767 +13769 2 3.4468194096266984 -1040.1178166083296 51.2562 0.1144 13768 +13770 2 4.551607382861846 -1039.844165472401 51.2299 0.1144 13769 +13771 2 5.593666907157001 -1039.3810010870843 51.116 0.1144 13770 +13772 2 6.280381644724287 -1038.4862032779633 50.8539 0.1144 13771 +13773 2 6.782475764183744 -1037.4657823524603 50.5548 0.1144 13772 +13774 2 7.433317510980146 -1036.5300012719576 50.3297 0.1144 13773 +13775 2 8.200240567903677 -1035.6826232425285 50.1766 0.1144 13774 +13776 2 8.907757176200164 -1034.7844295279074 50.0912 0.1144 13775 +13777 2 9.405447104108248 -1033.7547429077854 50.069 0.1144 13776 +13778 2 9.327130050502376 -1033.3301900970368 50.6962 0.1144 13777 +13779 2 9.09888279701454 -1032.4083093611089 52.122 0.1144 13778 +13780 2 8.254405521339265 -1032.4063342995596 53.7883 0.1144 13779 +13781 2 7.537097139271452 -1032.906287482383 55.5643 0.1144 13780 +13782 2 6.921975334352965 -1033.6335944499792 57.1007 0.1144 13781 +13783 2 6.171699627493069 -1033.1077146027746 58.511 0.1144 13782 +13784 2 6.778659545416019 -1032.3277905885047 59.8186 0.1144 13783 +13785 2 7.709227152213828 -1031.7947654679162 60.73 0.1144 13784 +13786 2 8.372960838881113 -1030.9368653728102 61.5104 0.1144 13785 +13787 2 8.73413548434695 -1029.8836877403699 62.1328 0.1144 13786 +13788 2 8.944491155513816 -1028.7862312530283 62.6833 0.1144 13787 +13789 2 8.867081692901053 -1027.6816034491512 63.1719 0.1144 13788 +13790 2 8.377075262036215 -1026.668250624262 63.5575 0.1144 13789 +13791 2 7.767940383630815 -1025.7078160664132 63.8224 0.1144 13790 +13792 2 7.291688339249902 -1024.6752097521662 64.0136 0.1144 13791 +13793 2 7.0264095301929785 -1023.5706750431302 64.1589 0.1144 13792 +13794 2 7.020855882929197 -1022.4366693257715 64.2894 0.1144 13793 +13795 2 7.316834067565026 -1021.3429256792896 64.4398 0.1144 13794 +13796 2 7.763460840800349 -1020.2935656193342 64.6363 0.1144 13795 +13797 2 8.14752893526989 -1019.2209164694206 64.8962 0.1144 13796 +13798 2 8.350440788700155 -1018.1266269329004 65.2974 0.1144 13797 +13799 2 8.607483147843709 -1017.1509554740549 66.2284 0.1144 13798 +13800 2 9.412844788925554 -1016.4382968762158 67.1538 0.1144 13799 +13801 2 10.326420177803016 -1015.8512743989312 68.0243 0.1144 13800 +13802 2 9.501626351224786 -1016.261531822555 69.0642 0.1144 13801 +13803 2 8.518199738901899 -1016.7129539068343 69.9706 0.1144 13802 +13804 2 8.397535630074032 -1016.9361965166577 70.2204 0.1144 13803 +13805 2 8.290705394850846 -1017.8371436298903 71.4087 0.1144 13804 +13806 2 8.988072831956146 -1018.2880240438197 73.1556 0.1144 13805 +13807 2 9.03015920074023 -1018.3870477660411 73.5666 0.1144 13806 +13808 2 9.418980160715762 -1019.2008375921533 72.3598 0.1144 13807 +13809 2 10.239230621537558 -1019.851442873043 71.3899 0.1144 13808 +13810 2 10.729853130519075 -1020.8134737684308 70.5312 0.1144 13809 +13811 2 10.83705976455218 -1021.901077219887 69.7119 0.1144 13810 +13812 2 10.467994318555668 -1022.9349246876362 68.9564 0.1144 13811 +13813 2 10.599345670468551 -1024.0157862848587 68.15 0.1144 13812 +13814 2 10.94658241007619 -1025.0525712513136 67.3392 0.1144 13813 +13815 2 11.95931755899133 -1025.4680673982896 66.6061 0.1144 13814 +13816 2 13.002246212817965 -1025.8475146581654 65.9291 0.1144 13815 +13817 2 13.847490218434444 -1026.48416563081 64.9998 0.1144 13816 +13818 2 14.780016657230362 -1026.5354316131634 63.3833 0.1144 13817 +13819 2 8.773370140601457 -1017.2329247099535 74.349 0.1144 13806 +13820 2 8.561349772143927 -1016.1976572984316 75.4211 0.1144 13819 +13821 2 8.34924110925354 -1015.1557534568384 76.4537 0.1144 13820 +13822 2 8.112135799985339 -1014.1211151276059 77.4939 0.1144 13821 +13823 2 7.763007403864293 -1013.1446528072771 78.6758 0.1144 13822 +13824 2 7.165013469062131 -1012.3291435038723 79.9428 0.1144 13823 +13825 2 6.250584665646102 -1011.8398396172303 81.1272 0.1144 13824 +13826 2 5.339179051222658 -1011.3445691295192 82.3091 0.1144 13825 +13827 2 4.475642608331896 -1010.7742136072355 83.4898 0.1144 13826 +13828 2 3.7916773742891507 -1010.0088488519581 84.6846 0.1144 13827 +13829 2 3.6839902202034125 -1009.0908037948694 85.869 0.1144 13828 +13830 2 4.28529737083403 -1008.1947434115244 86.7905 0.1144 13829 +13831 2 4.762194638065978 -1007.2141081447169 87.5428 0.1144 13830 +13832 2 4.94550593287687 -1006.1184851533577 88.1185 0.1144 13831 +13833 2 4.853442607562442 -1004.9988016426583 88.6043 0.1144 13832 +13834 2 4.759414336073178 -1003.8910075804966 89.0641 0.1144 13833 +13835 2 5.002067402062181 -1002.7937708377806 89.5406 0.1144 13834 +13836 2 5.35553334649282 -1001.7238508659473 90.0284 0.1144 13835 +13837 2 5.68207844508396 -1000.6448894307764 90.503 0.1144 13836 +13838 2 5.948879330535789 -999.547599629711 90.9412 0.1144 13837 +13839 2 6.181279623791397 -998.4378840789077 91.3214 0.1144 13838 +13840 2 6.416576473940097 -997.3263880904714 91.6387 0.1144 13839 +13841 2 6.651658397556332 -996.2124418353993 91.9128 0.1144 13840 +13842 2 6.887710269557402 -995.0977819977247 92.1715 0.1144 13841 +13843 2 7.109199674872855 -993.9813916791833 92.4468 0.1144 13842 +13844 2 7.282966363619636 -992.8593558028042 92.7727 0.1144 13843 +13845 2 7.417531935127528 -991.734653016747 93.1661 0.1144 13844 +13846 2 7.744097957567533 -990.7040395863145 93.7182 0.1144 13845 +13847 2 8.669657606333516 -990.265414944307 94.5062 0.1144 13846 +13848 2 9.725394226253968 -989.9709711477024 95.2851 0.1144 13847 +13849 2 10.629063911659728 -989.3590489306856 95.9916 0.1144 13848 +13850 2 11.17182746872436 -988.4158681944942 96.6395 0.1144 13849 +13851 2 12.049306405096985 -987.979799935821 97.487 0.1144 13850 +13852 2 12.875841426320704 -988.4615049375501 98.1064 0.1144 13851 +13853 2 12.910563576306004 -987.3296229329663 98.471 0.1144 13852 +13854 2 13.064101316680478 -986.2052312875506 98.6132 0.1144 13853 +13855 2 13.444738269566642 -985.1292916562991 98.707 0.1144 13854 +13856 2 13.842037784929346 -984.0605997151428 98.7935 0.1144 13855 +13857 2 14.070609910573722 -982.9425555910678 98.884 0.1144 13856 +13858 2 14.281403354481427 -981.821940771424 98.9923 0.1144 13857 +13859 2 14.654913046205905 -980.7450999474449 99.1068 0.1144 13858 +13860 2 15.093516876181468 -979.691280921079 99.2006 0.1144 13859 +13861 2 15.365352751983949 -978.5869052981017 99.2653 0.1144 13860 +13862 2 15.457539328868762 -977.4478727941571 99.3068 0.1144 13861 +13863 2 15.50664735667388 -976.3044484102974 99.3348 0.1144 13862 +13864 2 15.602934904144718 -975.165594904265 99.3616 0.1144 13863 +13865 2 15.780223437954248 -974.0361121085662 99.4003 0.1144 13864 +13866 2 15.990258758426506 -972.9119723422764 99.4504 0.1144 13865 +13867 2 16.192453235134423 -971.7859614348741 99.4969 0.1144 13866 +13868 2 16.367462675240745 -970.655062400533 99.5109 0.1144 13867 +13869 2 16.525459382025815 -969.5226478118575 99.4804 0.1144 13868 +13870 2 16.699584066597083 -968.3924099943064 99.4294 0.1144 13869 +13871 2 16.89134987424248 -967.264710045287 99.3812 0.1144 13870 +13872 2 17.08721665247387 -966.13718909418 99.3429 0.1144 13871 +13873 2 17.282722333297556 -965.0111812883608 99.3182 0.1144 13872 +13874 2 17.495345479067993 -963.8868594225756 99.3096 0.1144 13873 +13875 2 17.792481222213638 -962.7843049839445 99.316 0.1144 13874 +13876 2 18.14754791382842 -961.6973199129772 99.3297 0.1144 13875 +13877 2 18.42155505012559 -960.5875013470584 99.3415 0.1144 13876 +13878 2 18.630077225310032 -959.4630004833609 99.3569 0.1144 13877 +13879 2 18.79016310132303 -958.3318841134408 99.4081 0.1144 13878 +13880 2 18.8617268053909 -957.1921465444101 99.5434 0.1144 13879 +13881 2 18.886560381633586 -956.0529613823354 99.7766 0.1144 13880 +13882 2 18.90497245433727 -954.9163147813293 100.0938 0.1144 13881 +13883 2 18.771475773264058 -953.8033183500041 100.4752 0.1144 13882 +13884 2 18.31554097168825 -952.7797042348651 100.8885 0.1144 13883 +13885 2 17.801384312314042 -951.783778299054 101.3726 0.1144 13884 +13886 2 17.47360677854354 -950.7175425379039 101.9623 0.1144 13885 +13887 2 17.327149070505442 -949.6098131531911 102.5217 0.1144 13886 +13888 2 17.12072430311946 -948.5093640015218 103.0014 0.1144 13887 +13889 2 16.796595246511316 -947.4314951576163 103.5034 0.1144 13888 +13890 2 16.85842404125492 -946.367582924328 104.1314 0.1144 13889 +13891 2 17.6173604919868 -945.6231269728099 104.6996 0.1144 13890 +13892 2 18.550036398340353 -944.990793015389 105.1708 0.1144 13891 +13893 2 19.19125824881249 -944.0983694901068 105.6135 0.1144 13892 +13894 2 19.088434598393235 -943.0484509090186 106.0679 0.1144 13893 +13895 2 18.813717299970932 -941.9657989538882 106.6439 0.1144 13894 +13896 2 18.99057495674225 -940.8969147088732 107.3288 0.1144 13895 +13897 2 19.29775465455873 -939.8433554636243 108.1161 0.1144 13896 +13898 2 19.50023493841414 -938.785601851175 109.0429 0.1144 13897 +13899 2 19.375223596613978 -937.758594541356 110.1649 0.1144 13898 +13900 2 19.32310510504294 -936.7365513412728 111.3988 0.1144 13899 +13901 2 19.752565462853653 -935.8185278115803 112.6042 0.1144 13900 +13902 2 20.53044226170337 -935.2250020532417 113.9673 0.1144 13901 +13903 2 21.44428092404391 -935.0929028889311 115.5655 0.1144 13902 +13904 2 22.13475625783215 -935.569617754894 117.4074 0.1144 13903 +13905 2 22.325663916692633 -936.3345054824647 119.3738 0.1144 13904 +13906 2 22.15799627351757 -937.1519455912386 121.273 0.1144 13905 +13907 2 21.759466921978685 -937.6963494174208 123.1093 0.1144 13906 +13908 2 20.791086007214233 -937.6698219991532 124.5154 0.1144 13907 +13909 2 19.741786605825723 -937.7280125159551 125.6072 0.1144 13908 +13910 2 19.022290839822375 -938.3662935533541 126.686 0.1144 13909 +13911 2 18.741972726329863 -939.3913688507095 127.6369 0.1144 13910 +13912 2 18.826941019679197 -940.4603619232433 128.5441 0.1144 13911 +13913 2 19.09211061045434 -941.5099121974694 129.4328 0.1144 13912 +13914 2 18.99307847168393 -942.5591305138796 130.3994 0.1144 13913 +13915 2 18.103388019569138 -943.0079870047716 131.3665 0.1144 13914 +13916 2 17.077551586184626 -943.327013291997 132.33 0.1144 13915 +13917 2 16.051808957862562 -943.6419909744492 133.2968 0.1144 13916 +13918 2 15.02450081843989 -943.9565223666439 134.2611 0.1144 13917 +13919 2 13.996255557669457 -944.2716297827787 135.2154 0.1144 13918 +13920 2 12.978277790315047 -944.634186419971 136.1371 0.1144 13919 +13921 2 11.964037487092469 -945.0158090310922 137.0298 0.1144 13920 +13922 2 10.950031649178015 -945.4001046603614 137.9238 0.1144 13921 +13923 2 9.864349295600533 -945.5169294742087 138.7193 0.1144 13922 +13924 2 8.75643370352094 -945.5036290671891 139.4117 0.1144 13923 +13925 2 7.640679676723494 -945.471083688328 140.019 0.1144 13924 +13926 2 6.700642754121645 -945.907925483656 140.9912 0.1144 13925 +13927 2 6.039978407115484 -946.3273999531949 143.0332 0.1144 13926 +13928 2 8.28612821288985 -1016.8422207889597 69.554 0.1144 13803 +13929 2 7.232483171243842 -1017.120588973591 68.9296 0.1144 13928 +13930 2 6.494390846822597 -1016.3697138037855 68.7431 0.1144 13929 +13931 2 6.054357477401055 -1015.317544576049 68.6381 0.1144 13930 +13932 2 5.7687973541591475 -1014.2105689051267 68.5692 0.1144 13931 +13933 2 5.552125324669447 -1013.0869559105255 68.5353 0.1144 13932 +13934 2 5.383065076956825 -1011.955440496294 68.5353 0.1144 13933 +13935 2 5.07884461802638 -1010.8532441424767 68.57 0.1144 13934 +13936 2 4.8269293725917635 -1009.7377954439174 68.6263 0.1144 13935 +13937 2 4.574077005809386 -1008.6229227692982 68.7033 0.1144 13936 +13938 2 4.213376096510331 -1007.5380711185961 68.8041 0.1144 13937 +13939 2 3.7262490928094394 -1006.5053412738326 68.9542 0.1144 13938 +13940 2 3.24242349700927 -1005.4733992779585 69.1972 0.1144 13939 +13941 2 2.490047303595418 -1004.6251918365953 69.5131 0.1144 13940 +13942 2 1.5255506273853143 -1004.028271463698 69.8642 0.1144 13941 +13943 2 0.5025004373344757 -1003.530493241357 70.173 0.1144 13942 +13944 2 -0.5385372525154253 -1003.0666607087422 70.4001 0.1144 13943 +13945 2 -1.467858491812592 -1002.4024578073701 70.5488 0.1144 13944 +13946 2 -2.480494733483596 -1001.871398213676 70.6303 0.1144 13945 +13947 2 -3.5751378561832325 -1001.54111083286 70.6656 0.1144 13946 +13948 2 -4.421782195492426 -1002.3113071472602 70.6754 0.1144 13947 +13949 2 9.18734310329836 -1033.083104303452 50.0984 0.1144 13777 +13950 2 9.453691495326552 -1031.974002421719 50.1626 0.1144 13949 +13951 2 9.515369727234884 -1030.8336504910812 50.3098 0.1144 13950 +13952 2 9.741224382887765 -1030.3228439773015 50.421 0.1144 13951 +13953 2 10.428794748376447 -1029.4838629927126 50.6302 0.1144 13952 +13954 2 11.490068808837492 -1029.2116044784425 50.7937 0.1144 13953 +13955 2 12.54443363625225 -1028.9475838339645 50.888 0.1144 13954 +13956 2 13.46404239894224 -1028.27222128423 51.0003 0.1144 13955 +13957 2 14.422840973523222 -1027.6976628943498 51.1832 0.1144 13956 +13958 2 15.520669064409333 -1027.390727978022 51.394 0.1144 13957 +13959 2 16.52488833740847 -1026.890254540428 51.6314 0.1144 13958 +13960 2 17.3029574401169 -1026.076286923498 51.8328 0.1144 13959 +13961 2 17.742997740046917 -1025.044474181554 51.9744 0.1144 13960 +13962 2 17.99023330296299 -1023.9283395362584 52.0542 0.1144 13961 +13963 2 18.241569836464947 -1022.8123838888749 52.0848 0.1144 13962 +13964 2 18.43613839594093 -1021.6869521069958 52.0783 0.1144 13963 +13965 2 18.608036352621724 -1020.555383243652 52.0478 0.1144 13964 +13966 2 18.914537011382492 -1019.4592800340139 52.0075 0.1144 13965 +13967 2 19.130321597344704 -1018.35308702081 51.9347 0.1144 13966 +13968 2 19.49662573076037 -1017.3128375882975 51.8263 0.1144 13967 +13969 2 20.067746887707642 -1016.3239374193789 51.6816 0.1144 13968 +13970 2 20.783154296534775 -1015.4450738694491 51.5231 0.1144 13969 +13971 2 21.377936235974346 -1014.4858825775179 51.6393 0.1144 13970 +13972 2 22.607544063482607 -1013.9718791917992 51.6684 0.1144 13971 +13973 2 23.668512174473136 -1014.2166361476988 51.6211 0.1144 13972 +13974 2 24.73229816642484 -1014.5994614908087 51.4716 0.1144 13973 +13975 2 25.742025539566527 -1015.0799572784368 51.1988 0.1144 13974 +13976 2 26.505841097140944 -1015.9009437545784 50.8696 0.1144 13975 +13977 2 27.29366071234955 -1016.7084667535652 50.5182 0.1144 13976 +13978 2 28.32657926251568 -1016.9732821774411 50.0914 0.1144 13977 +13979 2 29.367811576281497 -1016.5897408774878 49.6605 0.1144 13978 +13980 2 30.28176857796754 -1015.9487234525537 49.0974 0.1144 13979 +13981 2 31.04813102417023 -1015.1594413413601 48.3493 0.1144 13980 +13982 2 31.592258454064364 -1014.2138963186156 47.5168 0.1144 13981 +13983 2 31.669410247975634 -1013.1378656821112 46.6497 0.1144 13982 +13984 2 32.36933589103512 -1012.299506884109 45.8553 0.1144 13983 +13985 2 32.768795456240895 -1011.2979201900253 45.064 0.1144 13984 +13986 2 33.62361571069161 -1010.5912487086558 44.4016 0.1144 13985 +13987 2 34.338900281538855 -1009.7473227446591 43.6842 0.1144 13986 +13988 2 34.94737775439478 -1008.8321823592389 42.9915 0.1144 13987 +13989 2 35.26569187889652 -1007.7837519094032 42.1826 0.1144 13988 +13990 2 35.637745277802054 -1006.7614492299766 41.4159 0.1144 13989 +13991 2 36.22594074393638 -1005.8198052560571 40.7683 0.1144 13990 +13992 2 36.58787661442082 -1004.7768413661469 40.1598 0.1144 13991 +13993 2 36.584743413642485 -1003.6750361369649 39.4604 0.1144 13992 +13994 2 36.48413487201421 -1002.5981669845831 38.57 0.1144 13993 +13995 2 36.54158068314399 -1001.4965698809269 37.856 0.1144 13994 +13996 2 36.61413146532581 -1000.3737153115347 37.3604 0.1144 13995 +13997 2 36.84079721377421 -999.2810234206157 36.8948 0.1144 13996 +13998 2 37.1412733950238 -998.1924968639797 36.4585 0.1144 13997 +13999 2 37.34886155044356 -997.0752608201066 36.1628 0.1144 13998 +14000 2 37.711551750243785 -996.005070454345 35.8436 0.1144 13999 +14001 2 38.277905209185576 -995.0257915668238 35.4774 0.1144 14000 +14002 2 39.02954360460822 -994.1797093471038 35.1383 0.1144 14001 +14003 2 39.56644937043771 -993.1876600496295 34.865 0.1144 14002 +14004 2 40.358863604252804 -992.3903464776597 34.6567 0.1144 14003 +14005 2 41.03599539808931 -991.4799583770258 34.4229 0.1144 14004 +14006 2 41.727924123919564 -990.5739737754067 34.2364 0.1144 14005 +14007 2 42.24918343830396 -989.5606708063164 34.0861 0.1144 14006 +14008 2 42.88103898808765 -988.613670798815 33.8887 0.1144 14007 +14009 2 43.74778943778921 -987.8807678393844 33.7156 0.1144 14008 +14010 2 44.418281699971175 -986.9637792372991 33.565 0.1144 14009 +14011 2 44.87738487224726 -985.9215402353394 33.3886 0.1144 14010 +14012 2 45.46864427408738 -984.9457332361148 33.241 0.1144 14011 +14013 2 46.1229586017169 -984.0091088393268 33.1226 0.1144 14012 +14014 2 46.050980462946086 -982.8783706788585 33.0408 0.1144 14013 +14015 2 46.148918714367255 -981.7399110972709 32.9666 0.1144 14014 +14016 2 46.7389737025145 -980.7621446625011 32.8994 0.1144 14015 +14017 2 47.52991553775482 -979.9362735688874 32.8238 0.1144 14016 +14018 2 48.211060007744464 -979.0194280360944 32.699 0.1144 14017 +14019 2 48.62778108381434 -977.956170520363 32.513 0.1144 14018 +14020 2 49.016217441215105 -976.8862358278471 32.3288 0.1144 14019 +14021 2 49.0494647835792 -975.7431701323485 32.2014 0.1144 14020 +14022 2 49.05041473112112 -974.5998846922244 32.1364 0.1144 14021 +14023 2 49.00672372006582 -973.4584498778119 32.0698 0.1144 14022 +14024 2 48.801450308023476 -972.335812342225 32.0191 0.1144 14023 +14025 2 48.788361447007105 -971.1916483497321 31.9799 0.1144 14024 +14026 2 48.727117607310646 -970.0543120968591 31.9435 0.1144 14025 +14027 2 48.36837613355692 -968.9682560324642 31.9634 0.1144 14026 +14028 2 48.0942317574916 -967.8798524027974 31.9707 0.1144 14027 +14029 2 48.327748170007226 -966.765459857468 31.7268 0.1144 14028 +14030 2 48.33200642115273 -965.6604024846148 31.4031 0.1144 14029 +14031 2 48.05527973041882 -964.5614959195988 31.1212 0.1144 14030 +14032 2 48.05596307815213 -963.4397376466023 30.8286 0.1144 14031 +14033 2 48.41222867283028 -962.3653970460251 30.6144 0.1144 14032 +14034 2 48.63020785218251 -961.2847352638893 30.6415 0.1144 14033 +14035 2 48.86118949774931 -960.1946726375181 30.8266 0.1144 14034 +14036 2 49.41578565088258 -959.1985576055415 30.9019 0.1144 14035 +14037 2 49.987300732274605 -958.2080067326725 30.9355 0.1144 14036 +14038 2 50.25548502933165 -957.1085753965665 31.0293 0.1144 14037 +14039 2 50.34001286194746 -955.9702595768076 31.1777 0.1144 14038 +14040 2 50.74511488340792 -954.914261370271 31.4426 0.1144 14039 +14041 2 51.415736879272515 -953.9997754006341 31.771 0.1144 14040 +14042 2 51.35855877407849 -952.8801295350648 32.1678 0.1144 14041 +14043 2 51.16963136793791 -951.7688078331221 32.4887 0.1144 14042 +14044 2 51.50214857822752 -950.682184552099 32.7662 0.1144 14043 +14045 2 51.54319842668929 -949.5518125912201 33.1173 0.1144 14044 +14046 2 51.3061684076813 -948.447403821747 33.3892 0.1144 14045 +14047 2 50.78848921070767 -947.4348621786426 33.5972 0.1144 14046 +14048 2 50.63495868493035 -946.3985046738912 33.7588 0.1144 14047 +14049 2 51.491100775120486 -945.6439510168165 33.9128 0.1144 14048 +14050 2 52.21046029052326 -944.8633708879382 34.1183 0.1144 14049 +14051 2 52.22829633928683 -943.7257871655843 34.2843 0.1144 14050 +14052 2 52.16126248738726 -942.5987005838616 34.3871 0.1144 14051 +14053 2 52.362519842747446 -941.4732657003995 34.4336 0.1144 14052 +14054 2 52.50590171703416 -940.3390354380074 34.4067 0.1144 14053 +14055 2 52.523664192047534 -939.2297856985522 34.2642 0.1144 14054 +14056 2 52.14897132937338 -938.1548257231759 34.0668 0.1144 14055 +14057 2 52.169502012670364 -937.0894181668655 33.9111 0.1144 14056 +14058 2 52.84614607699967 -936.1847293749552 33.81 0.1144 14057 +14059 2 53.39924208901783 -935.2646601158831 33.7663 0.1144 14058 +14060 2 53.409058296104746 -934.1293062230027 33.7464 0.1144 14059 +14061 2 53.36955655006838 -932.9946868365739 33.726 0.1144 14060 +14062 2 53.59897199199804 -931.8801152933322 33.717 0.1144 14061 +14063 2 53.68626734036084 -930.761579030105 33.7128 0.1144 14062 +14064 2 53.70031115013333 -929.6222179717013 33.7148 0.1144 14063 +14065 2 53.74341113761986 -928.4799041964719 33.7254 0.1144 14064 +14066 2 53.759593380849964 -927.3352377537892 33.7484 0.1144 14065 +14067 2 53.90761081041305 -926.2062574082802 33.7837 0.1144 14066 +14068 2 54.16678818767946 -925.092172902009 33.8456 0.1144 14067 +14069 2 54.402081936245054 -923.9739881176886 33.9324 0.1144 14068 +14070 2 54.51859843208811 -922.8374903806928 34.015 0.1144 14069 +14071 2 54.591099257503686 -921.697176787722 34.0774 0.1144 14070 +14072 2 54.74499499370276 -920.5645832011342 34.1166 0.1144 14071 +14073 2 54.62766772966549 -919.4496297433103 34.1149 0.1144 14072 +14074 2 54.30897309848237 -918.3523393386976 34.0827 0.1144 14073 +14075 2 54.186249054150124 -917.2219222214604 34.0701 0.1144 14074 +14076 2 54.20140898318269 -916.0778841685305 34.0978 0.1144 14075 +14077 2 54.261030872900164 -914.936096460475 34.1639 0.1144 14076 +14078 2 54.4192096791806 -913.8062696970978 34.272 0.1144 14077 +14079 2 54.44657871490875 -912.666817242678 34.3885 0.1144 14078 +14080 2 54.297565316072934 -911.5350697721849 34.4702 0.1144 14079 +14081 2 54.09461243698357 -910.4097146776173 34.5052 0.1144 14080 +14082 2 54.01371567285494 -909.2709597770554 34.4826 0.1144 14081 +14083 2 54.13206497214375 -908.1374437898025 34.3932 0.1144 14082 +14084 2 54.33697700783247 -907.0137534153533 34.2499 0.1144 14083 +14085 2 54.563355232623394 -905.8942406868234 34.0844 0.1144 14084 +14086 2 54.835816396595646 -904.7841985821594 33.9433 0.1144 14085 +14087 2 55.133889261089024 -903.6810681195882 33.847 0.1144 14086 +14088 2 55.29785256894294 -902.5516767199052 33.7966 0.1144 14087 +14089 2 55.278309377350524 -901.4101888471434 33.7856 0.1144 14088 +14090 2 55.37745204246468 -900.2736887011012 33.8173 0.1144 14089 +14091 2 55.59532820670134 -899.1514200759239 33.8836 0.1144 14090 +14092 2 55.83623607114083 -898.0337753869231 33.971 0.1144 14091 +14093 2 55.92139229350943 -896.8964818813619 34.0631 0.1144 14092 +14094 2 55.78664124197704 -895.7640669909127 34.1457 0.1144 14093 +14095 2 55.53467363072971 -894.6485330995037 34.1762 0.1144 14094 +14096 2 55.40281913609036 -893.5143377714215 34.2073 0.1144 14095 +14097 2 55.49683851642092 -892.3782870172198 34.288 0.1144 14096 +14098 2 55.979693174668625 -891.35501949159 34.4154 0.1144 14097 +14099 2 56.56052080586315 -890.3708346548642 34.568 0.1144 14098 +14100 2 56.951407429899604 -889.3006850358158 34.6864 0.1144 14099 +14101 2 57.348439652917136 -888.2294576351741 34.8177 0.1144 14100 +14102 2 57.80892623679844 -887.1850770981737 35.0048 0.1144 14101 +14103 2 58.30500921435615 -886.159077985417 35.245 0.1144 14102 +14104 2 59.132725925631604 -885.3911255286364 35.5085 0.1144 14103 +14105 2 60.052240883259174 -884.7198115836753 35.7806 0.1144 14104 +14106 2 60.930712710149095 -883.9971935314786 36.0704 0.1144 14105 +14107 2 60.867127822098695 -882.9150566399478 36.4316 0.1144 14106 +14108 2 61.94421941224107 -882.6880096922815 36.7758 0.1144 14107 +14109 2 63.0527260507171 -882.4444698753016 37.1134 0.1144 14108 +14110 2 63.9148846987423 -881.7103984307983 37.485 0.1144 14109 +14111 2 64.77120337779826 -880.9691176338664 37.8717 0.1144 14110 +14112 2 65.13456039400731 -880.4986851320431 38.0736 0.1144 14111 +14113 2 65.82911287375586 -879.5990696681504 38.4129 0.1144 14112 +14114 2 66.52308932956433 -878.6985170829098 38.7041 0.1144 14113 +14115 2 67.2190252209181 -877.7967600839761 38.96 0.1144 14114 +14116 2 67.91620696521454 -876.8928287229649 39.1779 0.1144 14115 +14117 2 68.67288035098787 -876.0396606813327 39.3288 0.1144 14116 +14118 2 69.49523861963502 -875.2454219716317 39.3926 0.1144 14117 +14119 2 70.33573425838 -874.4696146429407 39.3834 0.1144 14118 +14120 2 71.17743431081789 -873.695766749795 39.326 0.1144 14119 +14121 2 71.8412049500786 -872.7789188079554 39.2938 0.1144 14120 +14122 2 72.25931253933678 -871.7202085530676 39.345 0.1144 14121 +14123 2 72.67919746464486 -870.6577060591886 39.424 0.1144 14122 +14124 2 73.15973399898607 -869.6197822618108 39.4836 0.1144 14123 +14125 2 73.65211854261523 -868.5879572082308 39.5195 0.1144 14124 +14126 2 73.99229449717387 -867.5006172430221 39.5492 0.1144 14125 +14127 2 74.41931761020669 -866.4432349323436 39.6001 0.1144 14126 +14128 2 74.97644922282535 -865.4468526080218 39.6875 0.1144 14127 +14129 2 75.2727916064519 -864.3582846121361 39.8138 0.1144 14128 +14130 2 75.18356937063479 -863.2300466750697 39.9627 0.1144 14129 +14131 2 74.96363968684435 -862.1097272633895 40.1215 0.1144 14130 +14132 2 74.73145163212868 -860.9914258562333 40.2816 0.1144 14131 +14133 2 74.51339619103373 -859.8699543966727 40.4275 0.1144 14132 +14134 2 74.30851670343608 -858.7456661571355 40.5684 0.1144 14133 +14135 2 74.11371339970603 -857.6205838655426 40.7198 0.1144 14134 +14136 2 73.92006996883603 -856.494906011234 40.8859 0.1144 14135 +14137 2 73.72780212459136 -855.369556427296 41.0642 0.1144 14136 +14138 2 73.53473471766145 -854.2448156943351 41.251 0.1144 14137 +14139 2 73.34246687341684 -853.1194661103971 41.4434 0.1144 14138 +14140 2 73.15033658783469 -851.9941493534961 41.636 0.1144 14139 +14141 2 72.95713162224231 -850.8693757934982 41.8253 0.1144 14140 +14142 2 73.01916544092867 -849.7381957524175 42.0059 0.1144 14141 +14143 2 73.40368292723883 -848.6706698872874 42.1697 0.1144 14142 +14144 2 73.88822662710362 -847.6369736925951 42.3212 0.1144 14143 +14145 2 74.38181558442568 -846.6071080745605 42.4684 0.1144 14144 +14146 2 74.87486134484472 -845.5761677765157 42.6208 0.1144 14145 +14147 2 75.36685196402912 -844.5459934268863 42.784 0.1144 14146 +14148 2 75.86792066770792 -843.5195120952519 42.9682 0.1144 14147 +14149 2 76.44759935260532 -842.5401418117148 43.2247 0.1144 14148 +14150 2 77.06015997378147 -841.5835212153527 43.5501 0.1144 14149 +14151 2 77.67606654369126 -840.6302434661411 43.9074 0.1144 14150 +14152 2 78.29183555493854 -839.6769328898924 44.2618 0.1144 14151 +14153 2 78.90716610090824 -838.722718019333 44.5866 0.1144 14152 +14154 2 79.52534083795824 -837.7666375182907 44.8608 0.1144 14153 +14155 2 80.46741758854718 -837.1473060270845 44.8356 0.1144 14154 +14156 2 81.39743689626033 -836.7247210684303 44.3638 0.1144 14155 +14157 2 81.95496553490682 -835.7333768360422 44.0765 0.1144 14156 +14158 2 82.50456503535607 -834.7335250324704 43.8726 0.1144 14157 +14159 2 82.8505488243835 -833.6775946049657 43.8024 0.1144 14158 +14160 2 82.91493600305995 -832.5435594462417 43.9396 0.1144 14159 +14161 2 83.13112002409649 -831.4250306942428 44.1907 0.1144 14160 +14162 2 83.3833522396965 -830.3126328205423 44.3775 0.1144 14161 +14163 2 83.67611971991087 -829.2073639245134 44.3971 0.1144 14162 +14164 2 84.12448549152948 -828.1650342190742 44.3299 0.1144 14163 +14165 2 84.8846845164853 -827.3351706806196 44.3153 0.1144 14164 +14166 2 85.7589639767732 -826.599048404555 44.4133 0.1144 14165 +14167 2 86.6191655982996 -825.8488075430156 44.6163 0.1144 14166 +14168 2 87.47419156922972 -825.098930880467 44.905 0.1144 14167 +14169 2 88.32833278462478 -824.3497154347083 45.2432 0.1144 14168 +14170 2 89.05127540720444 -823.4810101599127 45.54 0.1144 14169 +14171 2 89.2946451573791 -822.3914321614656 45.5753 0.1144 14170 +14172 2 89.45638173734254 -821.2607097159903 45.5297 0.1144 14171 +14173 2 89.76421344189585 -820.1623797784616 45.7579 0.1144 14172 +14174 2 90.0548010494029 -819.0665500643347 46.0496 0.1144 14173 +14175 2 90.12579183111374 -817.9325641698404 46.3215 0.1144 14174 +14176 2 90.1241156156908 -816.800283422719 46.6567 0.1144 14175 +14177 2 90.28567629932503 -815.6803507437139 47.0714 0.1144 14176 +14178 2 90.50872570511152 -814.5750917502746 47.5132 0.1144 14177 +14179 2 90.8249359397026 -813.4903926687134 47.9548 0.1144 14178 +14180 2 91.20049646298834 -812.425672656997 48.3988 0.1144 14179 +14181 2 91.54206203231837 -811.3495687485159 48.8373 0.1144 14180 +14182 2 91.74524358714027 -810.2404408407522 49.2422 0.1144 14181 +14183 2 91.82416040546526 -809.1082737215577 49.5984 0.1144 14182 +14184 2 91.97009255461631 -807.9831575196281 49.91 0.1144 14183 +14185 2 92.24560343675584 -806.8792227236268 50.1861 0.1144 14184 +14186 2 92.53348209749477 -805.7770762375864 50.4375 0.1144 14185 +14187 2 92.7250157541823 -804.6549184998526 50.6766 0.1144 14186 +14188 2 92.8436534590576 -803.5211078564989 50.9118 0.1144 14187 +14189 2 92.95465274567233 -802.3867102152941 51.1476 0.1144 14188 +14190 2 93.06590761083648 -801.2521554766511 51.3856 0.1144 14189 +14191 2 93.17719530303768 -800.1174631793456 51.6258 0.1144 14190 +14192 2 93.28885580644231 -798.9839502936758 51.8675 0.1144 14191 +14193 2 93.39976990020727 -797.8496050182837 52.1094 0.1144 14192 +14194 2 93.51076918682203 -796.715207377079 52.3513 0.1144 14193 +14195 2 93.62163091477429 -795.5807769088372 52.5935 0.1144 14194 +14196 2 93.7328005870886 -794.4462745360069 52.8368 0.1144 14195 +14197 2 93.83961371026751 -793.3117502627024 53.0813 0.1144 14196 +14198 2 93.92090421459108 -792.1754243438276 53.3215 0.1144 14197 +14199 2 93.97282670802257 -791.0369606840317 53.5584 0.1144 14198 +14200 2 94.03713730606195 -789.8989816521598 53.8112 0.1144 14199 +14201 2 94.12264601362551 -788.7641712402713 54.0943 0.1144 14200 +14202 2 94.21340773965537 -787.6314140689906 54.409 0.1144 14201 +14203 2 94.3322392578218 -786.5028838078587 54.7674 0.1144 14202 +14204 2 94.4968785978445 -785.3837585165186 55.1846 0.1144 14203 +14205 2 94.66760177159011 -784.2689929232452 55.6461 0.1144 14204 +14206 2 94.81438816358941 -783.1515682926218 56.1235 0.1144 14205 +14207 2 94.95142742932454 -782.0320356938796 56.6034 0.1144 14206 +14208 2 95.06089944780912 -780.9119582290723 57.0872 0.1144 14207 +14209 2 95.02466466082278 -779.7941116473751 57.605 0.1144 14208 +14210 2 94.65298308395306 -778.761670634331 58.1613 0.1144 14209 +14211 2 93.8644794222034 -777.9975294527374 58.6569 0.1144 14210 +14212 2 92.82668595634854 -777.5691472376197 59.0204 0.1144 14211 +14213 2 91.70678350594153 -777.4760009463766 59.2651 0.1144 14212 +14214 2 90.58277358000868 -777.6620458237702 59.4222 0.1144 14213 +14215 2 89.47341801992154 -777.9383871549239 59.5288 0.1144 14214 +14216 2 88.43264740963251 -778.37939598336 59.5885 0.1144 14215 +14217 2 87.52477173792661 -779.0677359972518 59.5826 0.1144 14216 +14218 2 86.70750781584181 -779.8668252361098 59.5384 0.1144 14217 +14219 2 85.7873200223248 -780.5089728084499 59.4737 0.1144 14218 +14220 2 84.69543510491599 -780.8135457999233 59.3922 0.1144 14219 +14221 2 83.55910954714096 -780.8458796327811 59.3261 0.1144 14220 +14222 2 82.41809098378019 -780.7684126200201 59.318 0.1144 14221 +14223 2 81.27718774717114 -780.7848966939997 59.3942 0.1144 14222 +14224 2 80.1442530874105 -780.923958179369 59.5328 0.1144 14223 +14225 2 79.03890159126385 -781.1978383173242 59.7041 0.1144 14224 +14226 2 78.28355185243612 -781.9360986657466 59.9102 0.1144 14225 +14227 2 77.6746576253843 -782.8971563280453 60.1454 0.1144 14226 +14228 2 76.69383145176933 -783.1079927982108 60.5615 0.1144 14227 +14229 2 75.93437614275385 -782.3433687052029 61.1828 0.1144 14228 +14230 2 75.9176783441937 -782.3536324044993 61.5513 0.1144 14229 +14231 2 75.51763144342881 -782.3981053984214 64.0612 0.1144 14230 +14232 2 74.65211984999976 -782.062669008565 65.4058 0.1144 14231 +14233 2 74.13835132035203 -781.1525445841353 66.2502 0.1144 14232 +14234 2 73.7750249406248 -780.1027602530489 66.9127 0.1144 14233 +14235 2 73.3244338609946 -779.0704619778602 67.3896 0.1144 14234 +14236 2 72.84983252056406 -778.0382495880577 67.7062 0.1144 14235 +14237 2 72.41366565642038 -776.9835863400857 67.8784 0.1144 14236 +14238 2 72.00923428600106 -775.9135244415861 67.9689 0.1144 14237 +14239 2 71.61239679300941 -774.8414945426764 68.0266 0.1144 14238 +14240 2 71.36635124199806 -773.7264288419988 68.0957 0.1144 14239 +14241 2 71.25092174294409 -772.5901193899797 68.1937 0.1144 14240 +14242 2 71.16591150720089 -771.4500193681313 68.3183 0.1144 14241 +14243 2 70.98567928236913 -770.3226713184446 68.4639 0.1144 14242 +14244 2 70.66972253617526 -769.2263977647481 68.6241 0.1144 14243 +14245 2 70.30009670365607 -768.1457408423464 68.7912 0.1144 14244 +14246 2 69.92498648894565 -767.0670464570733 68.9573 0.1144 14245 +14247 2 69.549961467085 -765.9882997059873 69.1163 0.1144 14246 +14248 2 69.174680866675 -764.9097100523395 69.2656 0.1144 14247 +14249 2 69.04133744157215 -763.7790123071477 69.3893 0.1144 14248 +14250 2 69.09037199032328 -762.6383328460244 69.4764 0.1144 14249 +14251 2 69.17294899960643 -761.497225200998 69.5338 0.1144 14250 +14252 2 69.2581787010291 -760.3571867727002 69.5727 0.1144 14251 +14253 2 69.87050166061785 -759.4167934224683 69.6074 0.1144 14252 +14254 2 70.44992166538275 -758.4308914404851 69.631 0.1144 14253 +14255 2 70.54895881163863 -757.2957473422925 69.641 0.1144 14254 +14256 2 70.08397333667213 -756.2533986251781 69.6598 0.1144 14255 +14257 2 70.49651526366134 -756.040198886726 68.2744 0.1144 14256 +14258 2 71.23308453393388 -755.6666810557057 66.3628 0.1144 14257 +14259 2 72.25826655153509 -755.409799291489 65.5029 0.1144 14258 +14260 2 73.36848384801364 -755.228241436798 64.9925 0.1144 14259 +14261 2 74.49848180200833 -755.1688085000733 64.6271 0.1144 14260 +14262 2 75.55844783582046 -754.8033320204407 64.1998 0.1144 14261 +14263 2 76.6217777353282 -754.4572685366508 63.6132 0.1144 14262 +14264 2 77.71998904315159 -754.2964718533241 62.937 0.1144 14263 +14265 2 78.79743052004999 -754.140459950384 62.116 0.1144 14264 +14266 2 79.74379794093777 -754.0045647529624 60.5788 0.1144 14265 +14267 2 69.8368179762412 -755.5499650762125 69.7724 0.1144 14256 +14268 2 69.45950446123189 -754.4753247589941 70.019 0.1144 14267 +14269 2 68.80272325750244 -753.56436663678 70.3231 0.1144 14268 +14270 2 67.90806069269357 -752.8694694968165 70.6104 0.1144 14269 +14271 2 67.17828093048428 -752.0060814330411 70.856 0.1144 14270 +14272 2 66.84975078390784 -750.9256356904004 71.0175 0.1144 14271 +14273 2 66.68593105363287 -749.7950073934023 71.1054 0.1144 14272 +14274 2 66.54858046300652 -748.6600820455251 71.2082 0.1144 14273 +14275 2 66.59599634761149 -747.5203975348436 71.328 0.1144 14274 +14276 2 66.96652428959301 -746.4453895143104 71.4521 0.1144 14275 +14277 2 66.75583987971721 -745.3475586532779 71.659 0.1144 14276 +14278 2 66.55046094881659 -744.2262771655406 71.8852 0.1144 14277 +14279 2 66.50840031570323 -743.0865399576098 72.109 0.1144 14278 +14280 2 66.69248705307109 -741.9608603748131 72.3164 0.1144 14279 +14281 2 67.95059853895609 -741.6387437824364 72.5822 0.1144 14280 +14282 2 68.91639473571236 -741.0369948926734 72.3506 0.1144 14281 +14283 2 69.88206119878603 -740.432743370462 72.0994 0.1144 14282 +14284 2 70.83397656635131 -739.803256013168 71.9102 0.1144 14283 +14285 2 71.50278288849933 -738.9033848760296 71.6223 0.1144 14284 +14286 2 71.74343507969323 -737.8114863446294 71.1586 0.1144 14285 +14287 2 71.00108871810792 -737.0269553704538 70.6031 0.1144 14286 +14288 2 70.98072012719223 -735.8980650655508 70.152 0.1144 14287 +14289 2 70.91151191321492 -734.7697326308853 69.7287 0.1144 14288 +14290 2 70.70772571512613 -733.6850339697501 68.9926 0.1144 14289 +14291 2 66.6873350371438 -741.699450989496 72.8031 0.1144 14280 +14292 2 66.66660826101108 -740.6299407460896 73.7531 0.1144 14291 +14293 2 66.64545260843872 -739.5028254155382 74.1782 0.1144 14292 +14294 2 66.5584805281037 -738.3813036381115 74.6861 0.1144 14293 +14295 2 66.44034819075158 -737.2776440661094 75.3584 0.1144 14294 +14296 2 65.94197003085549 -736.3136896637964 76.1858 0.1144 14295 +14297 2 64.94201199820378 -735.9573641624143 77.1039 0.1144 14296 +14298 2 63.881882995224004 -736.219645761161 77.9192 0.1144 14297 +14299 2 62.84768675368139 -736.3236043297311 79.0891 0.1144 14298 +14300 2 75.78044428797793 -781.8311281424932 61.6258 0.1144 14229 +14301 2 75.48211695106237 -780.7346999004048 61.9632 0.1144 14300 +14302 2 75.34942224172082 -779.6037207873737 62.2042 0.1144 14301 +14303 2 74.8448713558286 -778.5791185701472 62.3574 0.1144 14302 +14304 2 74.25745755253823 -777.5986419341666 62.4932 0.1144 14303 +14305 2 73.57396964226892 -776.6826190487998 62.5892 0.1144 14304 +14306 2 72.85480935552641 -775.7939225528168 62.6598 0.1144 14305 +14307 2 72.1351582376936 -774.9042365696732 62.6923 0.1144 14306 +14308 2 71.41536956119828 -774.0145177594927 62.6738 0.1144 14307 +14309 2 70.6962092744558 -773.1258212635098 62.5923 0.1144 14308 +14310 2 69.97793295601552 -772.2379899842861 62.4375 0.1144 14309 +14311 2 69.87050867321602 -772.7283522620614 62.1261 0.1144 14310 +14312 2 69.62882555561194 -773.824875422175 61.591 0.1144 14311 +14313 2 69.39106681972802 -774.9083047200577 60.9076 0.1144 14312 +14314 2 69.15460320101649 -775.9829560528284 60.1401 0.1144 14313 +14315 2 68.91826621440448 -777.0534212221633 59.3421 0.1144 14314 +14316 2 68.66598024791853 -778.1176086497878 58.522 0.1144 14315 +14317 2 68.34921760637128 -779.155577603524 57.6425 0.1144 14316 +14318 2 67.82540501023577 -780.1274886561052 57.0786 0.1144 14317 +14319 2 67.23191888050512 -781.1019646095374 57.0072 0.1144 14318 +14320 2 66.65883828801252 -782.092069192149 57.0433 0.1144 14319 +14321 2 66.00724151936379 -783.0310141218899 57.0744 0.1144 14320 +14322 2 65.43612036241647 -784.0199142908086 56.9926 0.1144 14321 +14323 2 64.62127778643116 -784.6081079463011 56.7008 0.1144 14322 +14324 2 63.86837552584342 -783.7764224071688 56.551 0.1144 14323 +14325 2 63.22785744951622 -782.8850477138449 56.6524 0.1144 14324 +14326 2 62.169392255062704 -782.5633938437758 56.856 0.1144 14325 +14327 2 61.02949351038542 -782.5375903191482 57.055 0.1144 14326 +14328 2 59.88759148186661 -782.5344988365656 57.241 0.1144 14327 +14329 2 58.745028236557886 -782.530522598448 57.3854 0.1144 14328 +14330 2 57.6021038938415 -782.5280595056183 57.4759 0.1144 14329 +14331 2 56.45761404002447 -782.5251501225309 57.528 0.1144 14330 +14332 2 55.314113673368 -782.5217499083535 57.5621 0.1144 14331 +14333 2 54.17021697322022 -782.5373742288552 57.582 0.1144 14332 +14334 2 53.02878285134432 -782.6051278665236 57.5786 0.1144 14333 +14335 2 51.89043659590989 -782.7193443396719 57.547 0.1144 14334 +14336 2 50.75298912415656 -782.8438073823875 57.4907 0.1144 14335 +14337 2 49.617139990540934 -782.9685791566978 57.4165 0.1144 14336 +14338 2 48.479692518787644 -783.0930421994133 57.3308 0.1144 14337 +14339 2 47.34348228776429 -783.2193271190116 57.2373 0.1144 14338 +14340 2 46.2079035480769 -783.3533231486916 57.1346 0.1144 14339 +14341 2 45.073402589982905 -783.4934647773528 57.0268 0.1144 14340 +14342 2 43.93947765582902 -783.6345435273618 56.9293 0.1144 14341 +14343 2 42.813714608670566 -783.8282393240444 56.8744 0.1144 14342 +14344 2 41.738090314921266 -784.1953586352994 56.9234 0.1144 14343 +14345 2 40.746583291344194 -784.7537514022631 57.1245 0.1144 14344 +14346 2 39.80259396039311 -785.3850575348567 57.4588 0.1144 14345 +14347 2 38.86720359664184 -786.0217597552089 57.871 0.1144 14346 +14348 2 37.93440105818878 -786.6582798760656 58.3055 0.1144 14347 +14349 2 36.99870196284259 -787.2965804345554 58.7146 0.1144 14348 +14350 2 35.95958135198927 -787.2947539352433 58.9966 0.1144 14349 +14351 2 35.350282196354215 -786.3733907609508 58.9302 0.1144 14350 +14352 2 34.62899518994993 -785.4926922061702 58.6726 0.1144 14351 +14353 2 33.723374787321575 -784.8059391309364 58.3719 0.1144 14352 +14354 2 32.80750230449647 -784.1307698742282 58.0745 0.1144 14353 +14355 2 31.768156757846697 -783.663197468435 57.8642 0.1144 14354 +14356 2 30.660964354892627 -783.3781856391352 57.7917 0.1144 14355 +14357 2 29.550833955795753 -783.0990880450914 57.8385 0.1144 14356 +14358 2 28.442845091739542 -782.821373862653 57.9642 0.1144 14357 +14359 2 27.33516495927833 -782.5420613420769 58.1398 0.1144 14358 +14360 2 26.22976392052027 -782.264165060143 58.3456 0.1144 14359 +14361 2 25.109490659508367 -782.0516357194351 58.5749 0.1144 14360 +14362 2 23.978424246354564 -781.9090088670007 58.8269 0.1144 14361 +14363 2 22.84811595663618 -781.7699069612123 59.0979 0.1144 14362 +14364 2 21.719799929500198 -781.6294630830685 59.3846 0.1144 14363 +14365 2 20.643554668236902 -781.257113264204 59.6504 0.1144 14364 +14366 2 19.53894457995139 -780.9826043702536 59.9525 0.1144 14365 +14367 2 18.436710492014726 -780.7121519060563 60.2792 0.1144 14366 +14368 2 17.333486916917536 -780.4421902729493 60.6228 0.1144 14367 +14369 2 16.230624439228023 -780.1707154945544 60.9756 0.1144 14368 +14370 2 15.188294733788865 -779.7223497229359 61.3141 0.1144 14369 +14371 2 14.150283334514711 -779.2592393851363 61.6386 0.1144 14370 +14372 2 13.1122719352405 -778.7961290473368 61.9447 0.1144 14371 +14373 2 12.072747390678444 -778.3326576121294 62.2381 0.1144 14372 +14374 2 12.803663704266313 -777.8941815323587 62.5797 0.1144 14373 +14375 2 13.790623466999932 -777.3371752785833 62.9367 0.1144 14374 +14376 2 14.802139694323785 -776.8134356754783 63.1963 0.1144 14375 +14377 2 15.82814481458297 -776.3197605361389 63.4726 0.1144 14376 +14378 2 16.857226182184178 -775.8442666151934 63.8235 0.1144 14377 +14379 2 17.85577828096004 -775.3191052628166 64.2678 0.1144 14378 +14380 2 18.84845207310002 -774.7975571515185 64.8088 0.1144 14379 +14381 2 19.908019269678192 -774.4940680974565 65.4511 0.1144 14380 +14382 2 21.013995249076743 -774.4320284891945 66.1172 0.1144 14381 +14383 2 22.109653778293108 -774.3050806362965 66.8021 0.1144 14382 +14384 2 23.09302733226673 -773.8295107325542 67.475 0.1144 14383 +14385 2 23.983323551460558 -773.1587844306329 68.0896 0.1144 14384 +14386 2 24.858056197708663 -772.458536861849 68.6482 0.1144 14385 +14387 2 25.756859988086376 -771.7798814217304 69.1351 0.1144 14386 +14388 2 26.68565225943283 -771.1324449023039 69.5372 0.1144 14387 +14389 2 27.62616590796766 -770.4952932901111 69.8625 0.1144 14388 +14390 2 28.57064296842597 -769.8582878487937 70.128 0.1144 14389 +14391 2 29.512220370408116 -769.2163740492251 70.3483 0.1144 14390 +14392 2 30.42892947462198 -768.5361031412397 70.5267 0.1144 14391 +14393 2 31.314090097396047 -767.8134819874597 70.6647 0.1144 14392 +14394 2 32.18952160556417 -767.0792339540906 70.7728 0.1144 14393 +14395 2 33.065366576952684 -766.3435579682832 70.8596 0.1144 14394 +14396 2 33.9417875722813 -765.6088191038239 70.931 0.1144 14395 +14397 2 34.81815620179715 -764.8739950465146 70.9929 0.1144 14396 +14398 2 35.69466238997555 -764.1392038162423 71.0494 0.1144 14397 +14399 2 36.57108338530418 -763.4044649517829 71.1032 0.1144 14398 +14400 2 37.438318462929814 -762.6591738877444 71.1539 0.1144 14399 +14401 2 38.22172818600073 -761.8298333148806 71.1987 0.1144 14400 +14402 2 38.90669772201855 -760.914627559475 71.2348 0.1144 14401 +14403 2 39.50799186847648 -759.9421603058179 71.2639 0.1144 14402 +14404 2 39.98032646164569 -758.9038785126154 71.2908 0.1144 14403 +14405 2 40.36078131503646 -757.8253510560658 71.3199 0.1144 14404 +14406 2 40.72212333931506 -756.7397908359535 71.3558 0.1144 14405 +14407 2 41.00143585989119 -755.6321107034922 71.4031 0.1144 14406 +14408 2 40.853468108148306 -754.530709017256 71.4669 0.1144 14407 +14409 2 40.790929151279514 -753.4021507294951 71.5722 0.1144 14408 +14410 2 41.218493052168895 -752.3632169295557 71.727 0.1144 14409 +14411 2 41.788101063828336 -751.3739556632295 71.9169 0.1144 14410 +14412 2 42.36759764923035 -750.3919975543943 72.1213 0.1144 14411 +14413 2 42.946826942287174 -749.4075039860735 72.3223 0.1144 14412 +14414 2 43.527260649036975 -748.4249698532981 72.5077 0.1144 14413 +14415 2 43.96644050295265 -747.3720879482801 72.6258 0.1144 14414 +14416 2 43.87356978997316 -746.2554830939691 72.5528 0.1144 14415 +14417 2 43.92896407700505 -745.1177025514371 72.3593 0.1144 14416 +14418 2 44.57106929793903 -744.176492556139 72.2714 0.1144 14417 +14419 2 45.08154435648278 -743.1523286558745 72.2921 0.1144 14418 +14420 2 45.218374993547826 -742.0181343221026 72.4164 0.1144 14419 +14421 2 45.35057317691968 -740.8853788673317 72.6247 0.1144 14420 +14422 2 45.48246262869655 -739.7542217506984 72.8938 0.1144 14421 +14423 2 45.61199631143688 -738.6432935824375 73.4798 0.1144 14422 +14424 2 11.447418259180438 -778.171797494947 62.5887 0.1144 14373 +14425 2 10.38407345530456 -777.8989214826812 63.364 0.1144 14424 +14426 2 9.30807325447563 -777.6230253830058 63.9828 0.1144 14425 +14427 2 8.213175151066906 -777.3425467864033 64.4221 0.1144 14426 +14428 2 7.12300640799711 -777.0632695019108 64.9228 0.1144 14427 +14429 2 6.03600151416552 -776.7847472392706 65.4612 0.1144 14428 +14430 2 4.948996620333929 -776.5062249766304 66.0167 0.1144 14429 +14431 2 3.862928847850128 -776.2271266900502 66.5703 0.1144 14430 +14432 2 2.775871588205831 -775.9485192345602 67.1115 0.1144 14431 +14433 2 1.6895334217937261 -775.6601966926103 67.636 0.1144 14432 +14434 2 0.6060004162587518 -775.3567684870718 68.1386 0.1144 14433 +14435 2 -0.4670803032297215 -775.0092363166729 68.6036 0.1144 14434 +14436 2 -1.523387241361263 -774.6057326333502 69.0144 0.1144 14435 +14437 2 -2.5734632929657266 -774.1755097424589 69.365 0.1144 14436 +14438 2 -3.624873491945749 -773.740824783574 69.6545 0.1144 14437 +14439 2 -4.6794475401640625 -773.3053848028367 69.8807 0.1144 14438 +14440 2 -5.73495870973008 -772.8705208460394 70.0414 0.1144 14439 +14441 2 -6.810410611474367 -772.4841845844296 70.1151 0.1144 14440 +14442 2 -7.930004833430587 -772.314199208111 70.0218 0.1144 14441 +14443 2 -9.06718912071014 -772.2840274205523 69.741 0.1144 14442 +14444 2 -10.199021168527622 -772.2667642941457 69.3311 0.1144 14443 +14445 2 -11.325867490224027 -772.2490189488615 68.8523 0.1144 14444 +14446 2 -12.326893573586943 -771.7914634654203 68.4351 0.1144 14445 +14447 2 -13.23978430666915 -771.1144614052664 68.1397 0.1144 14446 +14448 2 -14.138157019202424 -770.4110457675558 67.9602 0.1144 14447 +14449 2 -15.12585277442804 -769.841884046154 67.8748 0.1144 14448 +14450 2 -16.23906072892882 -769.6868714981583 67.8572 0.1144 14449 +14451 2 -17.382525859501783 -769.6659598945893 67.8835 0.1144 14450 +14452 2 -18.526925009839402 -769.6523131108446 67.9336 0.1144 14451 +14453 2 -19.66981101488915 -769.6390274245075 68.005 0.1144 14452 +14454 2 -20.80897015093325 -769.5510270110585 68.1055 0.1144 14453 +14455 2 -21.931638211184975 -769.345486585617 68.248 0.1144 14454 +14456 2 -23.047502462552472 -769.1074752780706 68.446 0.1144 14455 +14457 2 -24.161407278374696 -768.8682595568314 68.7109 0.1144 14456 +14458 2 -25.269742519155926 -768.6270289326508 69.0721 0.1144 14457 +14459 2 -26.352775483547504 -768.3702456620877 69.704 0.1144 14458 +14460 2 -27.406098878415122 -768.1138642356452 70.5908 0.1144 14459 +14461 2 -28.437490255147367 -767.8603176955339 71.6288 0.1144 14460 +14462 2 -29.45512655285907 -767.6115802926779 72.7527 0.1144 14461 +14463 2 -30.470568949717375 -767.364311494277 73.8931 0.1144 14462 +14464 2 -31.47996566112701 -767.0810468671252 74.9759 0.1144 14463 +14465 2 -32.35052666381574 -766.4249781278932 75.8184 0.1144 14464 +14466 2 -33.157000506242866 -765.661201097942 76.4859 0.1144 14465 +14467 2 -33.94079754270862 -764.9169387412242 77.4063 0.1144 14466 +14468 2 69.86421061120419 -772.110457720562 62.6878 0.1144 14310 +14469 2 69.1923395655533 -771.3565572841541 63.9453 0.1144 14468 +14470 2 68.44187275622232 -770.5152754656815 64.4098 0.1144 14469 +14471 2 67.6998752751047 -769.6512980423565 64.6489 0.1144 14470 +14472 2 66.97097637961456 -768.7820863994564 64.8642 0.1144 14471 +14473 2 66.07398707868653 -768.0765292267051 65.0577 0.1144 14472 +14474 2 65.17365493060792 -767.3743180026877 65.221 0.1144 14473 +14475 2 64.37105000250523 -766.590673121772 65.3414 0.1144 14474 +14476 2 63.87212184469955 -765.562614760905 65.3951 0.1144 14475 +14477 2 63.26681754295193 -764.5931349455989 65.3932 0.1144 14476 +14478 2 62.56410808843283 -763.6903356087973 65.347 0.1144 14477 +14479 2 61.83947513329488 -762.8062942068664 65.2736 0.1144 14478 +14480 2 61.07765975797899 -761.9559068927957 65.1599 0.1144 14479 +14481 2 60.26448239898501 -761.1571625514576 64.9004 0.1144 14480 +14482 2 59.53193812791554 -760.3062727871971 64.491 0.1144 14481 +14483 2 59.06704946489843 -759.292153321356 63.9873 0.1144 14482 +14484 2 58.92050105338092 -758.1951613373005 63.3884 0.1144 14483 +14485 2 59.01774044288217 -757.0907022202982 62.6954 0.1144 14484 +14486 2 59.17850225636778 -755.9954410188834 62.018 0.1144 14485 +14487 2 59.492191846852336 -754.9203905824751 61.4723 0.1144 14486 +14488 2 59.95058685245915 -753.8920856574481 61.0308 0.1144 14487 +14489 2 60.36469648624683 -752.8748032476896 60.5018 0.1144 14488 +14490 2 60.124905752498364 -751.8136442002285 59.9245 0.1144 14489 +14491 2 59.91421273040987 -750.7198095781566 59.4205 0.1144 14490 +14492 2 59.90700208133326 -749.5976214047471 58.8986 0.1144 14491 +14493 2 60.002158599468984 -748.4796526005955 58.3596 0.1144 14492 +14494 2 60.13321403970984 -747.3650892907817 57.822 0.1144 14493 +14495 2 60.27767989875615 -746.250382219139 57.302 0.1144 14494 +14496 2 60.43507784654612 -745.1357080218816 56.7988 0.1144 14495 +14497 2 60.59907939737052 -744.0210830888539 56.3119 0.1144 14496 +14498 2 60.764529226641415 -742.9055679370096 55.8446 0.1144 14497 +14499 2 60.93003220895788 -741.7886115444658 55.3986 0.1144 14498 +14500 2 61.088055444917615 -740.6682708655217 54.9749 0.1144 14499 +14501 2 61.14742795925186 -739.5400178466729 54.5754 0.1144 14500 +14502 2 61.01328807304691 -738.4166177483423 54.2357 0.1144 14501 +14503 2 60.93377782210666 -737.282410108624 53.9787 0.1144 14502 +14504 2 61.16271724832484 -736.1762304310296 53.7832 0.1144 14503 +14505 2 61.96484397016086 -735.4481879033456 53.599 0.1144 14504 +14506 2 63.02973646857852 -735.0447037936042 53.4652 0.1144 14505 +14507 2 63.679991957972675 -735.8172902602944 53.2868 0.1144 14506 +14508 2 64.56534171916891 -880.4027568764808 37.5547 0.1144 14111 +14509 2 64.18580758473908 -879.3657521654006 36.8264 0.1144 14508 +14510 2 63.803726371724196 -878.3007331295796 36.4333 0.1144 14509 +14511 2 63.44899206349399 -877.2189046678702 36.1424 0.1144 14510 +14512 2 63.11039124367966 -876.1285679424403 35.9744 0.1144 14511 +14513 2 62.77320666250756 -875.0359521233073 35.8798 0.1144 14512 +14514 2 62.45130674283641 -873.9420404944653 35.6899 0.1144 14513 +14515 2 62.16170421798748 -872.8483486102489 35.2696 0.1144 14514 +14516 2 61.89705449121999 -871.7688988420234 34.6164 0.1144 14515 +14517 2 61.64096539398571 -870.7056677550636 33.794 0.1144 14516 +14518 2 61.38857783226314 -869.6549514048112 32.8762 0.1144 14517 +14519 2 61.13637237003593 -868.606822879857 31.9332 0.1144 14518 +14520 2 60.8964995450207 -867.5524049940927 31.0274 0.1144 14519 +14521 2 60.76086512302649 -866.4687765736597 30.2358 0.1144 14520 +14522 2 60.81876273504332 -865.3549289240582 29.6363 0.1144 14521 +14523 2 60.95354323308368 -864.2326764046368 29.2146 0.1144 14522 +14524 2 60.876547926227914 -863.1506832749347 28.8859 0.1144 14523 +14525 2 60.10406052023998 -862.3766973205467 28.5415 0.1144 14524 +14526 2 59.15204265211716 -861.7695241749161 28.2038 0.1144 14525 +14527 2 58.89047638214615 -860.8721147107285 27.9936 0.1144 14526 +14528 2 58.848757118272346 -859.7818197263222 27.9238 0.1144 14527 +14529 2 58.371121662286214 -858.7513549471157 27.8492 0.1144 14528 +14530 2 57.78929776004534 -857.7675597261571 27.7402 0.1144 14529 +14531 2 57.209924124440136 -856.7835495786658 27.5957 0.1144 14530 +14532 2 56.663905433938254 -855.7816193966559 27.4024 0.1144 14531 +14533 2 56.25718867195329 -854.7223527279078 27.1413 0.1144 14532 +14534 2 56.01811092296711 -853.6125119420562 26.8453 0.1144 14533 +14535 2 55.840457911220795 -852.4889780318348 26.5507 0.1144 14534 +14536 2 55.62382181035119 -851.3719162744552 26.2699 0.1144 14535 +14537 2 55.365358429278075 -850.2631923004003 26.0036 0.1144 14536 +14538 2 54.94211425443254 -849.2140845993231 25.7558 0.1144 14537 +14539 2 54.291513885767785 -848.2845373061242 25.5321 0.1144 14538 +14540 2 53.58301441904567 -847.3919876404728 25.304 0.1144 14539 +14541 2 52.94492568550524 -846.4520500158781 25.0045 0.1144 14540 +14542 2 52.38493768198697 -845.4669230565903 24.6266 0.1144 14541 +14543 2 52.15137783476564 -844.3790448015608 24.2597 0.1144 14542 +14544 2 52.07921759649943 -843.2457188157945 23.9311 0.1144 14543 +14545 2 52.00582011750325 -842.1105709531453 23.6329 0.1144 14544 +14546 2 51.86420127217437 -840.9822601348652 23.3522 0.1144 14545 +14547 2 51.61496214647079 -839.873265766882 23.0714 0.1144 14546 +14548 2 51.32976622221966 -838.771465746556 22.7868 0.1144 14547 +14549 2 51.06168466133215 -837.6646628703796 22.5076 0.1144 14548 +14550 2 50.92265364130148 -836.5361699526043 22.2842 0.1144 14549 +14551 2 50.845281823818766 -835.396656928607 22.1343 0.1144 14550 +14552 2 50.709326358593444 -834.2622826026125 22.0651 0.1144 14551 +14553 2 50.33936285625816 -833.1885239393459 22.0702 0.1144 14552 +14554 2 49.74367673432485 -832.2171230261613 22.0888 0.1144 14553 +14555 2 48.9342064214722 -831.420208386686 22.0818 0.1144 14554 +14556 2 48.1165341674475 -830.622935751386 22.0201 0.1144 14555 +14557 2 47.506250342745005 -829.6673157467259 21.8891 0.1144 14556 +14558 2 46.96456398655411 -828.661548784892 21.7048 0.1144 14557 +14559 2 46.41329537916906 -827.6642541581584 21.4843 0.1144 14558 +14560 2 45.83868393093982 -826.6813077641145 21.211 0.1144 14559 +14561 2 45.24670485514778 -825.7117365527924 20.8756 0.1144 14560 +14562 2 44.60514664235728 -824.7793310403672 20.4721 0.1144 14561 +14563 2 43.95095016234288 -823.8615020227737 19.9907 0.1144 14562 +14564 2 43.50102340108566 -822.8367772990041 19.4891 0.1144 14563 +14565 2 43.0074505843252 -821.8283163951733 18.9867 0.1144 14564 +14566 2 42.26875830522806 -820.9958782432352 18.434 0.1144 14565 +14567 2 41.2602884041286 -820.5414897106152 17.8602 0.1144 14566 +14568 2 40.31592928027476 -819.9335998807991 17.3734 0.1144 14567 +14569 2 39.975017137560485 -818.8916361621648 16.9236 0.1144 14568 +14570 2 39.261803031182126 -818.0328555973738 16.4969 0.1144 14569 +14571 2 38.329691351690514 -817.4187287725604 15.934 0.1144 14570 +14572 2 37.447130072346795 -817.140724675103 15.5463 0.1144 14571 +14573 2 37.30278796230817 -816.7071036824497 15.3242 0.1144 14572 +14574 2 36.96885862639036 -815.6285681111247 14.9152 0.1144 14573 +14575 2 36.617957996401 -814.5443831878422 14.7431 0.1144 14574 +14576 2 36.11885084068305 -813.5204257975611 14.6372 0.1144 14575 +14577 2 35.563481262711974 -812.5229521729152 14.5702 0.1144 14576 +14578 2 35.101039072210796 -811.4778663580443 14.5155 0.1144 14577 +14579 2 34.56246730102853 -810.4794580210971 14.4675 0.1144 14578 +14580 2 33.74849968409862 -809.7013889183887 14.4177 0.1144 14579 +14581 2 32.757278982227064 -809.1329853204222 14.3555 0.1144 14580 +14582 2 31.81603064926219 -808.5017026929955 14.2623 0.1144 14581 +14583 2 31.127399033504588 -807.6130219416685 14.11 0.1144 14582 +14584 2 30.661881288198032 -806.5738175350166 13.9115 0.1144 14583 +14585 2 30.281489116800202 -805.498369830133 13.7154 0.1144 14584 +14586 2 29.763143192407085 -804.4956284663383 13.5514 0.1144 14585 +14587 2 29.2487161391046 -803.4904782751576 13.4137 0.1144 14586 +14588 2 28.94057680908358 -802.3906907487262 13.3036 0.1144 14587 +14589 2 28.87733209459205 -801.2586927071692 13.2112 0.1144 14588 +14590 2 28.879348897164334 -800.1173338755534 13.0765 0.1144 14589 +14591 2 28.665876645533018 -799.0010271400262 12.8843 0.1144 14590 +14592 2 28.30607141833198 -797.9197332630072 12.6985 0.1144 14591 +14593 2 27.770969126399848 -796.9137928138905 12.5568 0.1144 14592 +14594 2 27.173863664241168 -795.9379821985249 12.4654 0.1144 14593 +14595 2 26.476362687355447 -795.0346811040699 12.3831 0.1144 14594 +14596 2 25.625515178676324 -794.2752901593159 12.338 0.1144 14595 +14597 2 24.76918328780596 -793.5178617516901 12.3896 0.1144 14596 +14598 2 24.298721948164683 -792.4990683929059 12.5196 0.1144 14597 +14599 2 24.007250691249794 -791.3958435217248 12.6879 0.1144 14598 +14600 2 23.667797942937455 -790.3060304544224 12.8556 0.1144 14599 +14601 2 23.305137598093125 -789.2223832174133 13.0176 0.1144 14600 +14602 2 23.014636289563043 -788.1184447636297 13.1734 0.1144 14601 +14603 2 22.807849732232825 -786.9954461306352 13.3263 0.1144 14602 +14604 2 22.783450548202012 -785.8569431091993 13.5128 0.1144 14603 +14605 2 22.741231243184842 -784.7200031898175 13.795 0.1144 14604 +14606 2 22.347299611835552 -783.6662592409274 14.1739 0.1144 14605 +14607 2 21.88009282491194 -782.637483503338 14.6097 0.1144 14606 +14608 2 21.474580476619934 -781.5801762701353 15.0102 0.1144 14607 +14609 2 21.080824741599827 -780.515642554775 15.3701 0.1144 14608 +14610 2 20.70025357228971 -779.4442958204775 15.6599 0.1144 14609 +14611 2 20.329840678113925 -778.3654138724276 15.8694 0.1144 14610 +14612 2 19.9713664967054 -777.281893267518 16.0758 0.1144 14611 +14613 2 19.631288460223317 -776.1977466819021 16.3973 0.1144 14612 +14614 2 19.29772022171312 -775.1176979652892 16.8321 0.1144 14613 +14615 2 18.835190429315617 -774.0900383469599 17.3148 0.1144 14614 +14616 2 18.261298766855163 -773.1214394930691 17.7978 0.1144 14615 +14617 2 17.67649070582496 -772.1568509062852 18.2662 0.1144 14616 +14618 2 17.147228382862068 -771.158119809597 18.6997 0.1144 14617 +14619 2 16.96022758522969 -770.0457312526238 19.136 0.1144 14618 +14620 2 16.78778615269985 -768.9283843806332 19.5627 0.1144 14619 +14621 2 16.992149196767286 -767.8910715415054 19.863 0.1144 14620 +14622 2 17.254311425359646 -766.7818430276727 20.0833 0.1144 14621 +14623 2 17.51785706555725 -765.6704729787994 20.2391 0.1144 14622 +14624 2 17.78179663019955 -764.5574522259756 20.3496 0.1144 14623 +14625 2 18.04730170594246 -763.4448777634092 20.4316 0.1144 14624 +14626 2 18.418317377431208 -762.3641704341522 20.5441 0.1144 14625 +14627 2 18.862311784535507 -761.3124374754311 20.7076 0.1144 14626 +14628 2 19.306168632977318 -760.2606716896731 20.8811 0.1144 14627 +14629 2 19.749501823291723 -759.2080539754171 21.0563 0.1144 14628 +14630 2 20.157806031657074 -758.1419881972255 21.2131 0.1144 14629 +14631 2 20.53287030791911 -757.061374673031 21.3394 0.1144 14630 +14632 2 20.90548431754553 -755.980976075369 21.4423 0.1144 14631 +14633 2 21.277522303231848 -754.8996403563592 21.5365 0.1144 14632 +14634 2 21.651073434206026 -753.818665734757 21.6373 0.1144 14633 +14635 2 22.00261517917491 -752.7324387872252 21.7672 0.1144 14634 +14636 2 22.281533775306343 -751.6264093587143 21.9758 0.1144 14635 +14637 2 22.55692742479185 -750.521138053639 22.2458 0.1144 14636 +14638 2 22.832503173772707 -749.4184545738617 22.5565 0.1144 14637 +14639 2 23.108707312506425 -748.3167934082821 22.889 0.1144 14638 +14640 2 23.388108127515437 -747.2157497058922 23.2254 0.1144 14639 +14641 2 23.901441405285652 -746.200627961502 23.5224 0.1144 14640 +14642 2 24.461014672327238 -745.2080269496084 23.775 0.1144 14641 +14643 2 25.02371896157007 -744.2163185182296 23.9916 0.1144 14642 +14644 2 25.799147180630953 -743.3783851813322 24.1696 0.1144 14643 +14645 2 26.591208236714465 -742.5545258890767 24.3195 0.1144 14644 +14646 2 27.38335448564777 -741.7306142310083 24.452 0.1144 14645 +14647 2 28.17442605457073 -740.907245769843 24.5775 0.1144 14646 +14648 2 28.96251277216777 -740.0790213162393 24.7013 0.1144 14647 +14649 2 29.62061933878843 -739.1441742555012 24.8145 0.1144 14648 +14650 2 30.277651225398756 -738.209870391666 24.9319 0.1144 14649 +14651 2 30.93512940226657 -737.2740010167303 25.0672 0.1144 14650 +14652 2 31.59122416752912 -736.3402731768351 25.2333 0.1144 14651 +14653 2 32.247318932791714 -735.4065453369402 25.4415 0.1144 14652 +14654 2 31.701321568879678 -735.188940170179 23.0764 0.1144 14653 +14655 2 32.51206147545406 -734.4260233962858 22.6366 0.1144 14654 +14656 2 33.57258251466122 -734.0387250934248 22.2182 0.1144 14655 +14657 2 34.68479138118553 -733.8317626397654 21.799 0.1144 14656 +14658 2 35.799230077183424 -733.6328200277826 21.3981 0.1144 14657 +14659 2 36.91683262241958 -733.4346324376522 21.0332 0.1144 14658 +14660 2 37.287809956241674 -732.3647477019026 20.7285 0.1144 14659 +14661 2 37.54788060655956 -731.2715948000434 20.193 0.1144 14660 +14662 2 32.18055897914458 -735.0313488169816 25.6707 0.1144 14653 +14663 2 31.981834395277332 -733.9260491835036 26.1968 0.1144 14662 +14664 2 31.7852622730138 -732.8263519521036 26.7995 0.1144 14663 +14665 2 31.737391206992655 -731.7237571575221 27.5284 0.1144 14664 +14666 2 31.992303336443427 -730.6485650368949 28.2475 0.1144 14665 +14667 2 32.507199716267706 -729.651263413491 28.7801 0.1144 14666 +14668 2 33.311555764433166 -728.8559999805459 29.213 0.1144 14667 +14669 2 34.125585459808775 -728.0655894384562 29.552 0.1144 14668 +14670 2 34.943534026275 -727.2727700689804 29.8178 0.1144 14669 +14671 2 35.80943805810817 -726.5297057328326 30.0191 0.1144 14670 +14672 2 36.79808376087573 -725.9555820141104 30.1512 0.1144 14671 +14673 2 37.70057436608245 -725.254470897729 30.2448 0.1144 14672 +14674 2 38.60457811657706 -724.5537208787553 30.3052 0.1144 14673 +14675 2 39.508634232884376 -723.8530560526314 30.3447 0.1144 14674 +14676 2 40.41214715228867 -723.1513165464971 30.3755 0.1144 14675 +14677 2 41.31615090278328 -722.4505665275233 30.4102 0.1144 14676 +14678 2 42.219493436487966 -721.7489317530145 30.459 0.1144 14677 +14679 2 43.12142834376306 -721.0455798332484 30.5256 0.1144 14678 +14680 2 44.023631330616155 -720.3432369394185 30.6144 0.1144 14679 +14681 2 44.65704296866308 -720.2533336759253 30.7406 0.1144 14680 +14682 2 45.78660204893225 -720.0921666377898 30.9397 0.1144 14681 +14683 2 46.840383642952446 -719.6633497863202 31.1928 0.1144 14682 +14684 2 47.7975574449173 -719.0508196949515 31.4958 0.1144 14683 +14685 2 48.746620009189584 -718.4271942071009 31.8352 0.1144 14684 +14686 2 49.694607893451504 -717.8041119161533 32.1978 0.1144 14685 +14687 2 50.642136986427374 -717.1814290129317 32.5699 0.1144 14686 +14688 2 51.418689842264826 -716.3604115027099 32.9812 0.1144 14687 +14689 2 52.17474104145147 -715.5195987386487 33.411 0.1144 14688 +14690 2 52.95983971144321 -714.7054185568848 33.8268 0.1144 14689 +14691 2 53.831716547511434 -713.9787550014977 34.1776 0.1144 14690 +14692 2 54.7269423328939 -713.2767098653517 34.4719 0.1144 14691 +14693 2 55.66923331747866 -712.6357660141679 34.7175 0.1144 14692 +14694 2 56.58163592401955 -711.9473431691247 34.8331 0.1144 14693 +14695 2 57.477986440874716 -711.2366247994919 34.8547 0.1144 14694 +14696 2 58.37442215057973 -710.5258540640464 34.846 0.1144 14695 +14697 2 59.27072030162218 -709.8150505015639 34.825 0.1144 14696 +14698 2 60.167732035267264 -709.1052168874662 34.8009 0.1144 14697 +14699 2 61.064167744972266 -708.3944461520207 34.7768 0.1144 14698 +14700 2 43.82994834300683 -719.9802060863071 31.3466 0.1144 14680 +14701 2 43.219549185845736 -719.5657821983169 33.4746 0.1144 14700 +14702 2 42.55105341791257 -719.1267350729927 35.3536 0.1144 14701 +14703 2 42.484422896174436 -719.0467889437999 38.1422 0.1144 14702 +14704 2 15.892305599392728 -768.7779323994274 19.9099 0.1144 14620 +14705 2 14.79219591676761 -768.4912667645941 19.7691 0.1144 14704 +14706 2 13.974645192660773 -767.8013228078031 19.697 0.1144 14705 +14707 2 13.546456730944016 -766.7485635279805 19.5637 0.1144 14706 +14708 2 13.300422893728467 -765.6361903842267 19.6377 0.1144 14707 +14709 2 13.147904779559013 -764.5294864152945 20.2078 0.1144 14708 +14710 2 12.684247651542904 -764.2141991849157 20.6683 0.1144 14709 +14711 2 11.809259532855464 -763.6187203841548 21.7286 0.1144 14710 +14712 2 10.8977323885141 -763.0161212179348 22.4924 0.1144 14711 +14713 2 9.959163969399924 -762.4220443435813 23.1598 0.1144 14712 +14714 2 9.03348300350035 -761.8510344055144 24.0214 0.1144 14713 +14715 2 8.118845760806693 -761.2958906635181 25.0116 0.1144 14714 +14716 2 7.148672398546665 -760.9213746863406 26.1371 0.1144 14715 +14717 2 6.157580134273928 -760.9169066108445 27.4697 0.1144 14716 +14718 2 5.139516374858772 -760.8618754218187 28.7286 0.1144 14717 +14719 2 4.106769311376752 -760.7218477000304 29.8808 0.1144 14718 +14720 2 3.064312672064432 -760.5704158501651 30.9722 0.1144 14719 +14721 2 2.0132492405723497 -760.4160577179528 32.011 0.1144 14720 +14722 2 0.9534602097808715 -760.2604896614179 32.993 0.1144 14721 +14723 2 -0.11453076218268166 -760.1045636090585 33.9195 0.1144 14722 +14724 2 -1.1895630152253034 -759.9461575646094 34.802 0.1144 14723 +14725 2 -2.257622458757453 -759.7070506532039 35.609 0.1144 14724 +14726 2 -3.2465979179361284 -759.2056999364972 36.258 0.1144 14725 +14727 2 -4.21263987393462 -758.632618651468 36.7786 0.1144 14726 +14728 2 -5.181454856309642 -758.0504428447518 37.2193 0.1144 14727 +14729 2 -6.278610815820969 -757.943314881508 37.7594 0.1144 14728 +14730 2 -7.38524190353948 -758.0434363861657 38.4152 0.1144 14729 +14731 2 -8.481170826684092 -758.1611599836942 39.1681 0.1144 14730 +14732 2 -9.521061570835514 -757.8107165357195 39.9462 0.1144 14731 +14733 2 -10.487989998878845 -757.2797329248223 40.6935 0.1144 14732 +14734 2 -11.448640685211956 -756.732800334051 41.4109 0.1144 14733 +14735 2 -12.413522075813688 -756.1831861129191 42.0851 0.1144 14734 +14736 2 -13.382280898256369 -755.6318469215499 42.7227 0.1144 14735 +14737 2 -14.49408081787962 -755.5793813259116 43.3434 0.1144 14736 +14738 2 -15.524381319856417 -756.0179453983417 43.9228 0.1144 14737 +14739 2 -16.55302801629972 -756.4635921911006 44.478 0.1144 14738 +14740 2 -17.582611834090756 -756.9098150077996 45.0198 0.1144 14739 +14741 2 -18.61486867002978 -757.3562722898066 45.5409 0.1144 14740 +14742 2 -19.647349044713962 -757.8042755441386 46.0334 0.1144 14741 +14743 2 -20.684282875179093 -758.2496167068857 46.4937 0.1144 14742 +14744 2 -21.764780983632562 -758.5780616606123 46.9235 0.1144 14743 +14745 2 -22.86613682097405 -758.5863181461742 47.6778 0.1144 14744 +14746 2 13.163606289952071 -764.4566842685447 20.7484 0.1144 14709 +14747 2 13.404834505086058 -763.3657228584924 21.3462 0.1144 14746 +14748 2 13.645936088120465 -762.278947611876 21.9883 0.1144 14747 +14749 2 13.845954486240657 -761.1931273088729 22.63 0.1144 14748 +14750 2 13.499959805456001 -760.1234165578433 23.1423 0.1144 14749 +14751 2 13.093064045558748 -759.0682508596811 23.5679 0.1144 14750 +14752 2 12.613251818448333 -758.053914058261 24.0062 0.1144 14751 +14753 2 11.735390067315194 -757.3903600620426 24.7574 0.1144 14752 +14754 2 10.97252325018809 -756.5970791790469 25.4932 0.1144 14753 +14755 2 10.680957886437056 -755.7906506709567 26.4596 0.1144 14754 +14756 2 11.521865271892523 -755.0548518471695 26.9891 0.1144 14755 +14757 2 12.373239664077147 -754.3099194714922 27.407 0.1144 14756 +14758 2 13.227562978967597 -753.5632918510316 27.7683 0.1144 14757 +14759 2 14.0812579041052 -752.8156419163736 28.1148 0.1144 14758 +14760 2 14.935614046032697 -752.0688767372504 28.476 0.1144 14759 +14761 2 15.72486994123912 -751.2601231085835 28.9019 0.1144 14760 +14762 2 16.500530216561643 -750.4422366205629 29.3804 0.1144 14761 +14763 2 17.272717911050933 -749.6251934488276 29.899 0.1144 14762 +14764 2 18.045087705035655 -748.8107381023905 30.4461 0.1144 14763 +14765 2 18.814869673722214 -747.9964648554487 31.0114 0.1144 14764 +14766 2 19.583714521061026 -747.1827676324472 31.5854 0.1144 14765 +14767 2 20.353187758152643 -746.370092723643 32.1616 0.1144 14766 +14768 2 21.12194741264163 -745.5564478664542 32.7382 0.1144 14767 +14769 2 21.891420649733263 -744.74377295765 33.3155 0.1144 14768 +14770 2 22.660265497072032 -743.9300757346484 33.8929 0.1144 14769 +14771 2 23.429110344410816 -743.1163785116468 34.4702 0.1144 14770 +14772 2 24.198583581502476 -742.3037036028427 35.0498 0.1144 14771 +14773 2 24.967343235991464 -741.4900587456538 35.6306 0.1144 14772 +14774 2 25.736188083330234 -740.6763615226521 36.2135 0.1144 14773 +14775 2 26.50472419907409 -739.8642626377881 36.7993 0.1144 14774 +14776 2 27.273175121968137 -739.0522161187369 37.3895 0.1144 14775 +14777 2 28.041573679049492 -738.2400844068358 37.9845 0.1144 14776 +14778 2 28.850136121963033 -737.4692329841157 38.5916 0.1144 14777 +14779 2 29.792213565088545 -736.8739641195224 39.2129 0.1144 14778 +14780 2 30.740365442491466 -736.2885776255056 39.8493 0.1144 14779 +14781 2 31.687442639884097 -735.7037343283919 40.4984 0.1144 14780 +14782 2 32.63193201197856 -735.1190731307734 41.1592 0.1144 14781 +14783 2 33.577049773825834 -734.5354342473524 41.83 0.1144 14782 +14784 2 34.519323344592834 -733.9536609944146 42.5365 0.1144 14783 +14785 2 35.45958511400171 -733.3730069623196 43.2572 0.1144 14784 +14786 2 36.40024080785537 -732.7907022262743 43.9751 0.1144 14785 +14787 2 37.34246201280959 -732.2088437804865 44.674 0.1144 14786 +14788 2 38.21928965266699 -731.6256282628758 45.7257 0.1144 14787 +14789 2 39.038705213752664 -731.2656290153061 47.4681 0.1144 14788 +14790 2 36.99230056443548 -817.1369393437927 15.1446 0.1144 14572 +14791 2 35.85994934514687 -817.1736383379985 14.7488 0.1144 14790 +14792 2 34.730572364373046 -817.3373932014322 14.5607 0.1144 14791 +14793 2 33.603243113577406 -817.5065800812445 14.3243 0.1144 14792 +14794 2 32.47721208153726 -817.6736777918286 14.0577 0.1144 14793 +14795 2 31.60292951966622 -818.4031112720091 13.7709 0.1144 14794 +14796 2 30.780215664240984 -819.1881780921533 13.4805 0.1144 14795 +14797 2 29.969746151594848 -819.9603191214162 12.901 0.1144 14796 +14798 2 38.70236261652701 -817.1292064273689 15.3671 0.1144 14571 +14799 2 39.60187147199085 -816.4299281144332 15.4782 0.1144 14798 +14800 2 40.50596041533521 -815.7291257296467 15.5274 0.1144 14799 +14801 2 41.54315542967558 -815.2473533744544 15.5478 0.1144 14800 +14802 2 42.625829616716715 -814.8787178163285 15.5417 0.1144 14801 +14803 2 43.709655851638075 -814.5119565008982 15.5175 0.1144 14802 +14804 2 44.79405811049952 -814.1461323068156 15.4833 0.1144 14803 +14805 2 45.87694722407315 -813.7799470153253 15.4475 0.1144 14804 +14806 2 46.9676419453275 -813.4331442543389 15.4382 0.1144 14805 +14807 2 48.07109507865047 -813.1309684238037 15.4799 0.1144 14806 +14808 2 49.17378226355811 -812.8277374520337 15.5613 0.1144 14807 +14809 2 50.27500866899058 -812.5242305757059 15.6706 0.1144 14808 +14810 2 51.38822753807631 -812.2642954885946 15.8142 0.1144 14809 +14811 2 52.495782334521905 -811.9863612825848 15.9792 0.1144 14810 +14812 2 53.37304664613575 -811.2550949989584 16.1016 0.1144 14811 +14813 2 54.25218520044518 -810.522676667452 16.1852 0.1144 14812 +14814 2 55.130386633406786 -809.7908343598855 16.2666 0.1144 14813 +14815 2 21.304386276826676 -1014.6372040020069 52.402 0.1144 13971 +14816 2 21.029119170451395 -1015.1287310003985 54.8313 0.1144 14815 +14817 2 20.44342954445861 -1014.7810505695365 56.0734 0.1144 14816 +14818 2 19.779824300532738 -1013.8782779513019 56.6364 0.1144 14817 +14819 2 19.141667503871673 -1012.9559892747611 57.1847 0.1144 14818 +14820 2 18.753934529852813 -1011.9253153637407 57.7343 0.1144 14819 +14821 2 18.84689395085576 -1010.824778219412 58.2313 0.1144 14820 +14822 2 19.0447701213987 -1009.7135118781908 58.6765 0.1144 14821 +14823 2 18.91457012482948 -1008.6104618970506 59.1248 0.1144 14822 +14824 2 18.40749618578414 -1007.6128821557061 59.5633 0.1144 14823 +14825 2 17.677399079767213 -1006.755088669029 59.9833 0.1144 14824 +14826 2 16.742208743887176 -1006.1401544565505 60.4394 0.1144 14825 +14827 2 15.863935246043496 -1005.4365919554281 60.886 0.1144 14826 +14828 2 15.184745221234465 -1004.5327172460796 61.2136 0.1144 14827 +14829 2 14.578506899722157 -1003.5705022505979 61.5017 0.1144 14828 +14830 2 13.94158665125451 -1002.6259728243268 61.7674 0.1144 14829 +14831 2 13.121470333760385 -1001.8422927073276 62.0144 0.1144 14830 +14832 2 12.435591513067152 -1000.9384210995622 62.288 0.1144 14831 +14833 2 11.83073660316009 -999.9740645690398 62.5576 0.1144 14832 +14834 2 11.23769377392074 -999.0092555450937 62.944 0.1144 14833 +14835 2 10.645802992561642 -998.046320763843 63.3693 0.1144 14834 +14836 2 10.18567582438385 -997.009202424836 63.7316 0.1144 14835 +14837 2 10.29034500347555 -995.8906685706553 64.0483 0.1144 14836 +14838 2 10.460189719548595 -994.7643527257779 64.3224 0.1144 14837 +14839 2 10.630001608584507 -993.6381744395629 64.5652 0.1144 14838 +14840 2 10.626586394778258 -992.4988633379254 64.7956 0.1144 14839 +14841 2 10.602581135192196 -991.3587096125391 65.0359 0.1144 14840 +14842 2 10.289544373482983 -990.2660407350567 65.2674 0.1144 14841 +14843 2 9.892718594287146 -989.1967033930707 65.4836 0.1144 14842 +14844 2 9.640891643285357 -988.0878911245829 65.7622 0.1144 14843 +14845 2 9.538217549413133 -986.9639307469683 66.2088 0.1144 14844 +14846 2 9.302971069621265 -985.8691073302725 66.6873 0.1144 14845 +14847 2 8.644711956687473 -984.9402767212594 66.9609 0.1144 14846 +14848 2 8.043288188363874 -983.9792106720747 67.0998 0.1144 14847 +14849 2 7.881046470218081 -982.8501947887086 67.1754 0.1144 14848 +14850 2 7.9602689185549025 -981.7097405354921 67.2277 0.1144 14849 +14851 2 7.960645943739792 -980.5722067699045 67.296 0.1144 14850 +14852 2 7.60368490761914 -979.4890472624026 67.4831 0.1144 14851 +14853 2 7.132288855676592 -978.4534560968294 67.7765 0.1144 14852 +14854 2 6.6496153077566476 -977.4233883436509 68.0593 0.1144 14853 +14855 2 6.160220136915541 -976.393461250718 68.2867 0.1144 14854 +14856 2 5.716300723440327 -975.3435632917048 68.4634 0.1144 14855 +14857 2 5.456239004229531 -974.2345305860549 68.6059 0.1144 14856 +14858 2 5.396687307733174 -973.0934544600036 68.7319 0.1144 14857 +14859 2 5.325461089231624 -971.9528636544129 68.852 0.1144 14858 +14860 2 5.191018769294175 -970.8188504258261 68.9668 0.1144 14859 +14861 2 4.919144969415555 -969.7102702136 69.0656 0.1144 14860 +14862 2 4.3488819612531415 -968.8065827059283 69.2076 0.1144 14861 +14863 2 3.3757134366295247 -968.2566628547846 69.3938 0.1144 14862 +14864 2 2.6442681550910265 -967.3834995137568 69.4473 0.1144 14863 +14865 2 2.0137139427664863 -966.4296575376833 69.3748 0.1144 14864 +14866 2 1.4385264705970542 -965.4457740222916 69.2362 0.1144 14865 +14867 2 1.017462168458934 -964.3872271393125 69.1046 0.1144 14866 +14868 2 0.7158295348267529 -963.2848486859998 69.0264 0.1144 14867 +14869 2 0.46840918442282486 -962.1679282814024 69.0376 0.1144 14868 +14870 2 0.29093517058885254 -961.0402934005949 69.1779 0.1144 14869 +14871 2 0.1761457750834552 -959.907698819697 69.4464 0.1144 14870 +14872 2 0.07654723601655178 -958.7778570338633 69.8012 0.1144 14871 +14873 2 0.04265099364138791 -957.647773981715 70.1991 0.1144 14872 +14874 2 0.1908121850332236 -956.5322040550114 70.611 0.1144 14873 +14875 2 0.49267177788806293 -955.4415359633348 71.0094 0.1144 14874 +14876 2 0.6708098311490858 -954.3289033402375 71.3194 0.1144 14875 +14877 2 0.580168255106571 -953.1962557009902 71.4512 0.1144 14876 +14878 2 0.6942906442464505 -952.0908095058738 71.4776 0.1144 14877 +14879 2 1.0625363909416592 -951.0076964508141 71.4843 0.1144 14878 +14880 2 1.1492557153644043 -949.8882230662392 71.4053 0.1144 14879 +14881 2 1.0135675424842532 -948.7563841997302 71.2096 0.1144 14880 +14882 2 0.845447517702496 -947.6309815574429 70.9282 0.1144 14881 +14883 2 0.6775947852658248 -946.5081143746409 70.5849 0.1144 14882 +14884 2 0.5100093451744101 -945.3877826513244 70.1904 0.1144 14883 +14885 2 0.3426060045783572 -944.270038753306 69.7648 0.1144 14884 +14886 2 0.17622497817981753 -943.1516664655348 69.3356 0.1144 14885 +14887 2 0.00926792784122199 -942.0323570564159 68.9153 0.1144 14886 +14888 2 -0.15768912249734512 -940.9130476472969 68.5101 0.1144 14887 +14889 2 -0.4321890853407808 -939.8154721280732 68.126 0.1144 14888 +14890 2 -0.8817164115236551 -938.7784116655087 67.7732 0.1144 14889 +14891 2 -1.4061258436311732 -937.7700069216103 67.4559 0.1144 14890 +14892 2 -1.9706642095760003 -936.7795776796266 67.2017 0.1144 14891 +14893 2 -2.5650521127538752 -935.806087597214 67.0289 0.1144 14892 +14894 2 -3.171869559789428 -934.8362466845003 66.9329 0.1144 14893 +14895 2 -3.837702224142305 -933.9080803938601 66.897 0.1144 14894 +14896 2 -4.733704446956381 -933.2194062207475 66.8861 0.1144 14895 +14897 2 -5.7595573888378055 -932.7193598312663 66.9166 0.1144 14896 +14898 2 -6.8401349844121455 -932.3508467922259 67.0401 0.1144 14897 +14899 2 -7.924135204053414 -932.0006360930495 67.265 0.1144 14898 +14900 2 -8.974032257745563 -931.5663122315722 67.5844 0.1144 14899 +14901 2 -9.363527847131678 -930.5744009725129 67.8863 0.1144 14900 +14902 2 -9.403211692663405 -929.4371937607859 68.1153 0.1144 14901 +14903 2 -9.371210203242043 -928.296302427365 68.2973 0.1144 14902 +14904 2 -9.55929188405085 -927.1710794755265 68.3346 0.1144 14903 +14905 2 -9.807682182839613 -926.0548726535318 68.2366 0.1144 14904 +14906 2 -10.057423066196492 -924.9406698079152 68.0546 0.1144 14905 +14907 2 -10.539374419301083 -923.9075757641609 67.9039 0.1144 14906 +14908 2 -11.136926171717192 -922.9333306598958 67.8264 0.1144 14907 +14909 2 -11.74672536849559 -921.9653225506279 67.8191 0.1144 14908 +14910 2 -12.367173671498506 -921.003860167952 67.8628 0.1144 14909 +14911 2 -13.11188871159689 -920.1375622116741 67.944 0.1144 14910 +14912 2 -14.07590075988287 -919.5282537341692 68.0702 0.1144 14911 +14913 2 -15.149214228169512 -919.1366120882803 68.1708 0.1144 14912 +14914 2 -16.245943418514003 -918.811715284593 68.224 0.1144 14913 +14915 2 -17.387410775874997 -918.7787766738239 68.2654 0.1144 14914 +14916 2 -18.507674720159486 -919.0054803463483 68.2746 0.1144 14915 +14917 2 -19.595117297742803 -919.3596745592586 68.1747 0.1144 14916 +14918 2 -20.676314268116187 -919.7221199775705 67.9787 0.1144 14917 +14919 2 -21.756094999847335 -920.0822863021791 67.6964 0.1144 14918 +14920 2 -22.845544560695686 -920.4028520744747 67.3546 0.1144 14919 +14921 2 -23.93504958893982 -920.7166438580363 66.978 0.1144 14920 +14922 2 -25.023926227431076 -921.0314579557954 66.5949 0.1144 14921 +14923 2 -25.838047318822674 -921.8085432719297 66.1329 0.1144 14922 +14924 2 -26.485843644715573 -922.64443949166 65.0661 0.1144 14923 +14925 2 8.85022850256314 -1030.6099305517776 50.3992 0.1144 13951 +14926 2 8.14506437176334 -1029.8429236100662 49.2551 0.1144 14925 +14927 2 8.11670556992874 -1028.7350258402525 48.715 0.1144 14926 +14928 2 8.625232812026724 -1027.7403479707668 48.1194 0.1144 14927 +14929 2 9.557709897603644 -1027.1886594129066 47.252 0.1144 14928 +14930 2 10.31631979447485 -1026.404142590672 46.4576 0.1144 14929 +14931 2 10.8524297917389 -1025.4434535666724 45.6907 0.1144 14930 +14932 2 11.342599919113667 -1024.462641710999 44.9336 0.1144 14931 +14933 2 12.048530500908669 -1023.6164835084821 44.2355 0.1144 14932 +14934 2 12.432704712076912 -1022.5921299974942 43.5904 0.1144 14933 +14935 2 12.054855209619035 -1021.6802740859092 42.8921 0.1144 14934 +14936 2 10.97903469923898 -1021.424339642261 42.3531 0.1144 14935 +14937 2 9.850442483456504 -1021.3621237240792 42.0017 0.1144 14936 +14938 2 8.81089811603016 -1020.9751967178466 41.79 0.1144 14937 +14939 2 8.052693572746534 -1020.1480615411408 41.7141 0.1144 14938 +14940 2 7.557631920218768 -1019.1175091600381 41.7124 0.1144 14939 +14941 2 6.99999727669055 -1018.129527083107 41.7082 0.1144 14940 +14942 2 6.276662540307967 -1017.243396511948 41.6679 0.1144 14941 +14943 2 5.4744508441134485 -1016.434038300469 41.5792 0.1144 14942 +14944 2 4.514413826850529 -1015.8531576109251 41.3991 0.1144 14943 +14945 2 3.43510812222749 -1015.8384699981806 41.0659 0.1144 14944 +14946 2 2.330522763888581 -1016.0622271570456 40.6353 0.1144 14945 +14947 2 1.2056783232755777 -1016.189625094321 40.224 0.1144 14946 +14948 2 0.12789467221978157 -1016.5137017851164 39.888 0.1144 14947 +14949 2 -0.928205045706818 -1016.9278623648378 39.5371 0.1144 14948 +14950 2 -2.0443629172236797 -1017.0432301933298 39.2118 0.1144 14949 +14951 2 -3.1838677374562394 -1017.0157759647519 38.9866 0.1144 14950 +14952 2 -4.261866315044415 -1017.3374023889118 38.8368 0.1144 14951 +14953 2 -5.388109580481938 -1017.4079088216445 38.7394 0.1144 14952 +14954 2 -6.491603549507403 -1017.1287229331678 38.6814 0.1144 14953 +14955 2 -7.512027576593397 -1016.6199400178242 38.6072 0.1144 14954 +14956 2 -8.496788437259283 -1016.0381752652819 38.6005 0.1144 14955 +14957 2 -8.532126944307265 -1014.9735381440431 38.6425 0.1144 14956 +14958 2 -7.9856061002464855 -1013.9728789528061 38.663 0.1144 14957 +14959 2 -7.662668732104578 -1012.8773541761545 38.6579 0.1144 14958 +14960 2 -7.678962881608896 -1011.7365689594324 38.7565 0.1144 14959 +14961 2 -7.775177134275509 -1010.599247427242 38.9558 0.1144 14960 +14962 2 -7.640535792755202 -1010.3311427291227 39.2722 0.1144 14961 +14963 2 -7.136200917259146 -1009.3229606357693 39.7158 0.1144 14962 +14964 2 -6.50955694669193 -1008.3697735900372 39.9062 0.1144 14963 +14965 2 -5.432622122550981 -1008.0529093532533 40.1517 0.1144 14964 +14966 2 -5.155930254310135 -1006.9455488789499 40.3483 0.1144 14965 +14967 2 -4.812857742858455 -1005.8564284761081 40.5292 0.1144 14966 +14968 2 -4.368410842330491 -1004.8165075980548 40.9469 0.1144 14967 +14969 2 -8.02110406128844 -1010.5879573178547 39.1222 0.1144 14961 +14970 2 -9.161992985662835 -1010.5385819977045 39.2692 0.1144 14969 +14971 2 -10.2836780756719 -1010.1927542821419 39.4246 0.1144 14970 +14972 2 -11.37640010049293 -1009.8720850811402 39.5587 0.1144 14971 +14973 2 -12.514983212596974 -1009.785021789039 39.7242 0.1144 14972 +14974 2 -13.656127117680313 -1009.7854552531022 39.8997 0.1144 14973 +14975 2 -14.788375321853295 -1009.8637610903496 40.0747 0.1144 14974 +14976 2 -15.84902850378964 -1010.2659305914912 40.2791 0.1144 14975 +14977 2 -16.833861452165195 -1010.7893498439016 40.6325 0.1144 14976 +14978 2 -17.939441098072535 -1010.8323649174844 40.9581 0.1144 14977 +14979 2 -19.01248417243093 -1010.4499475269652 41.2014 0.1144 14978 +14980 2 -20.088731842740714 -1010.0949715388297 41.379 0.1144 14979 +14981 2 -21.2184319740185 -1009.9326065691133 41.5016 0.1144 14980 +14982 2 -22.31969370452387 -1009.6440666915845 41.5769 0.1144 14981 +14983 2 -23.356286456109302 -1009.1613034293529 41.6217 0.1144 14982 +14984 2 -24.271923781089697 -1008.5128698174059 41.6685 0.1144 14983 +14985 2 -24.925062710822942 -1007.576901020668 41.734 0.1144 14984 +14986 2 -25.440655840151607 -1006.5589688004347 41.8236 0.1144 14985 +14987 2 -25.84260490413112 -1005.4900808502892 41.942 0.1144 14986 +14988 2 -26.263222916011813 -1004.4299684562095 42.1137 0.1144 14987 +14989 2 -26.845528344593617 -1003.4652501357428 42.4012 0.1144 14988 +14990 2 -27.511401755659733 -1002.5652802693388 42.7932 0.1144 14989 +14991 2 -27.94021550554629 -1001.5181874712029 43.1746 0.1144 14990 +14992 2 -28.285097168654033 -1000.4371109297628 43.5196 0.1144 14991 +14993 2 -28.63573050629816 -999.3554614659657 43.8231 0.1144 14992 +14994 2 -29.023960419877255 -998.2848314158539 44.07 0.1144 14993 +14995 2 -29.486816073598845 -997.2411735534209 44.2487 0.1144 14994 +14996 2 -30.022133292063415 -996.2327828376688 44.3786 0.1144 14995 +14997 2 -30.617588050271763 -995.2573661467478 44.4931 0.1144 14996 +14998 2 -31.225874101762287 -994.2897191348876 44.6018 0.1144 14997 +14999 2 -31.7689438695584 -993.2860937080943 44.6984 0.1144 14998 +15000 2 -32.19727299152078 -992.2266128053506 44.7734 0.1144 14999 +15001 2 -32.55146720443096 -991.1391702277673 44.8263 0.1144 15000 +15002 2 -32.884156890572314 -990.0450827025961 44.8613 0.1144 15001 +15003 2 -33.2220026885343 -988.951582127928 44.8823 0.1144 15002 +15004 2 -33.60903129000357 -987.8762227174774 44.8944 0.1144 15003 +15005 2 -34.062174958848345 -986.8265951523925 44.9022 0.1144 15004 +15006 2 -34.48140955912379 -985.764341223272 44.9145 0.1144 15005 +15007 2 -34.7769817866247 -984.6609373541787 44.9408 0.1144 15006 +15008 2 -34.98252249101222 -983.5357643591065 44.9719 0.1144 15007 +15009 2 -35.08787580619864 -982.3986608550316 44.9672 0.1144 15008 +15010 2 -35.17112593031732 -981.2627610721132 44.898 0.1144 15009 +15011 2 -35.521488874033196 -980.1903358636857 44.7916 0.1144 15010 +15012 2 -36.00928570673665 -979.1607175023477 44.6628 0.1144 15011 +15013 2 -36.36423494149926 -978.0764387740027 44.5001 0.1144 15012 +15014 2 -36.66016826640785 -976.9745480501972 44.3114 0.1144 15013 +15015 2 -36.95769992945412 -975.8723485947968 44.1146 0.1144 15014 +15016 2 -37.25710583519586 -974.7713011872765 43.9286 0.1144 15015 +15017 2 -37.54912028901376 -973.6670016360853 43.7674 0.1144 15016 +15018 2 -37.794399104376964 -972.551464643093 43.6262 0.1144 15017 +15019 2 -37.97699640299453 -971.4242791541261 43.491 0.1144 15018 +15020 2 -38.13170911055403 -970.2920439541259 43.3544 0.1144 15019 +15021 2 -38.308874392793115 -969.1628107351808 43.2132 0.1144 15020 +15022 2 -38.559946321942476 -968.0508346174547 43.0634 0.1144 15021 +15023 2 -38.87503081362988 -966.9527337235938 42.9047 0.1144 15022 +15024 2 -39.23907457007945 -965.8712280216254 42.7423 0.1144 15023 +15025 2 -39.697330597144855 -964.826268838854 42.5886 0.1144 15024 +15026 2 -40.067740389737565 -963.7540756866882 42.4449 0.1144 15025 +15027 2 -40.56064578654198 -962.7598771301608 42.2948 0.1144 15026 +15028 2 -41.304338512442826 -961.89295078413 42.124 0.1144 15027 +15029 2 -42.06878315230662 -961.0468793671779 41.9241 0.1144 15028 +15030 2 -42.855991507491524 -960.2227821001474 41.6828 0.1144 15029 +15031 2 -43.67833455287612 -959.4377709373557 41.3854 0.1144 15030 +15032 2 -44.51787173854083 -958.6727190215446 41.032 0.1144 15031 +15033 2 -45.35455380656214 -957.9100204657235 40.633 0.1144 15032 +15034 2 -46.15030496901451 -957.1113637262818 40.1862 0.1144 15033 +15035 2 -46.80263271696293 -956.2030676956527 39.683 0.1144 15034 +15036 2 -47.34525550196494 -955.2219393843719 39.1269 0.1144 15035 +15037 2 -47.99584114994701 -954.3273625041433 38.5 0.1144 15036 +15038 2 -48.92445080724016 -953.7823331889849 37.8073 0.1144 15037 +15039 2 -49.97775437924341 -953.4494073335679 37.0737 0.1144 15038 +15040 2 -51.06198764945654 -953.347834917219 36.3112 0.1144 15039 +15041 2 -52.146050048510915 -953.5373790940129 35.6042 0.1144 15040 +15042 2 -53.241413951289644 -953.4614293047481 34.9334 0.1144 15041 +15043 2 -53.87430212630852 -954.2385098204743 34.1902 0.1144 15042 +15044 2 -54.72459343391188 -953.5566004260426 33.7355 0.1144 15043 +15045 2 -55.676308773605996 -952.9344513505062 33.427 0.1144 15044 +15046 2 -56.71583331816808 -952.4709799152988 33.1486 0.1144 15045 +15047 2 -57.757763588532896 -952.0102784048852 32.8983 0.1144 15046 +15048 2 -58.78976764002505 -951.521994831842 32.7359 0.1144 15047 +15049 2 -59.82038827991198 -951.0315697237581 32.5332 0.1144 15048 +15050 2 -9.351154951243473 -1011.1396373701766 39.0037 0.1144 14970 +15051 2 -9.602182753150544 -1012.2539946794226 38.85 0.1144 15050 +15052 2 -9.704084416495249 -1013.3923080901349 38.7976 0.1144 15051 +15053 2 -9.809596219335702 -1014.5314319900954 38.7576 0.1144 15052 +15054 2 -9.930659976022213 -1015.6693162402795 38.7293 0.1144 15053 +15055 2 -10.053236877996568 -1016.8068393930558 38.7114 0.1144 15054 +15056 2 -9.469401174397717 -1017.7895153931714 38.703 0.1144 15055 +15057 2 -8.819285433657086 -1018.7314507909781 38.703 0.1144 15056 +15058 2 -8.167753454274191 -1019.6711070950817 38.703 0.1144 15057 +15059 2 -20.96265320191486 -1077.956577484003 48.7449 0.1144 13724 +15060 2 -19.919746868988284 -1077.8203848603343 47.8374 0.1144 15059 +15061 2 -19.575824133570507 -1077.1913438822871 46.6088 0.1144 15060 +15062 2 -19.026641482013417 -1076.262998415756 45.7204 0.1144 15061 +15063 2 -18.723981320185032 -1075.3222029669778 44.3122 0.1144 15062 +15064 2 -44.43108163730483 -1107.6003015136012 52.4964 0.1144 13685 +15065 2 -43.56791109222962 -1107.9909372647999 50.9779 0.1144 15064 +15066 2 -42.60503468429437 -1108.3887194074882 49.8859 0.1144 15065 +15067 2 -41.57271508251574 -1108.7224533431072 48.9964 0.1144 15066 +15068 2 -41.36635088470723 -1109.9276433479872 48.2171 0.1144 15067 +15069 2 -41.11434803737626 -1111.0256658500048 47.7534 0.1144 15068 +15070 2 -40.69565112337426 -1112.0761600642704 47.3816 0.1144 15069 +15071 2 -40.102555928322204 -1113.0410542810662 47.0834 0.1144 15070 +15072 2 -39.34007072400374 -1113.8883301117112 46.8737 0.1144 15071 +15073 2 -38.464015436534055 -1114.6121543882427 46.7368 0.1144 15072 +15074 2 -37.438212451418906 -1115.0947417541454 46.6416 0.1144 15073 +15075 2 -36.320294959443515 -1115.3275000432254 46.5858 0.1144 15074 +15076 2 -35.210758406552486 -1115.5640013070674 46.5626 0.1144 15075 +15077 2 -34.22538077523336 -1116.1185067567212 46.5584 0.1144 15076 +15078 2 -33.39292871894406 -1116.9025863087945 46.5592 0.1144 15077 +15079 2 -32.66994956933962 -1117.7795449903965 46.5606 0.1144 15078 +15080 2 -32.160777943549874 -1118.8000157716983 46.5626 0.1144 15079 +15081 2 -31.812676963808087 -1119.8886213237247 46.5651 0.1144 15080 +15082 2 -31.60152524512972 -1121.0076456182328 46.569 0.1144 15081 +15083 2 -31.583941489082633 -1122.1503379046876 46.5741 0.1144 15082 +15084 2 -31.689092194515297 -1123.2879486593604 46.5819 0.1144 15083 +15085 2 -31.854353721124767 -1124.4194292282712 46.592 0.1144 15084 +15086 2 -32.06692450108244 -1125.5438362869063 46.6032 0.1144 15085 +15087 2 -32.2870273932096 -1126.664773866291 46.6222 0.1144 15086 +15088 2 -32.3771693416993 -1127.80254959073 46.6642 0.1144 15087 +15089 2 -32.35909475456185 -1128.9462313643453 46.7107 0.1144 15088 +15090 2 -32.36819427746303 -1130.0892440014945 46.73 0.1144 15089 +15091 2 -32.39543357950845 -1131.2311990883627 46.6852 0.1144 15090 +15092 2 -32.24584725831568 -1132.3571948843191 46.5402 0.1144 15091 +15093 2 -31.91485281695759 -1133.4483334867846 46.3585 0.1144 15092 +15094 2 -31.58146047477669 -1134.5391719698678 46.1969 0.1144 15093 +15095 2 -31.307935970947653 -1135.6481461065387 46.0681 0.1144 15094 +15096 2 -31.06020688894887 -1136.7634681729985 45.9721 0.1144 15095 +15097 2 -30.919128138939982 -1137.8973931071523 45.9029 0.1144 15096 +15098 2 -30.941065158289575 -1139.034797831594 45.8483 0.1144 15097 +15099 2 -31.029693961491375 -1140.1729346534407 45.7895 0.1144 15098 +15100 2 -31.04141413672778 -1141.3162669487479 45.7125 0.1144 15099 +15101 2 -30.954245141518527 -1142.4497579042804 45.5882 0.1144 15100 +15102 2 -30.619918779572856 -1143.5333315675393 45.4003 0.1144 15101 +15103 2 -30.19248533970847 -1144.5892546966002 45.1996 0.1144 15102 +15104 2 -29.66518555387404 -1145.582501411097 44.9705 0.1144 15103 +15105 2 -28.760701484132937 -1146.0336655249012 44.5012 0.1144 15104 +15106 2 -28.60985738912433 -1146.8930208175484 43.9925 0.1144 15105 +15107 2 -28.698265755164073 -1148.022922871186 43.6187 0.1144 15106 +15108 2 -28.815231642847607 -1149.1542973233982 43.3353 0.1144 15107 +15109 2 -28.697366692536946 -1150.281010496077 43.0909 0.1144 15108 +15110 2 -28.112112341249315 -1151.2440335717604 42.9052 0.1144 15109 +15111 2 -27.480174717319642 -1152.1957340127933 42.7888 0.1144 15110 +15112 2 -26.895369065335842 -1153.1776964303062 42.712 0.1144 15111 +15113 2 -26.614987694273452 -1154.2783475043352 42.6569 0.1144 15112 +15114 2 -26.888692302141862 -1155.373190140348 42.6222 0.1144 15113 +15115 2 -27.55174625721685 -1156.2976968264566 42.572 0.1144 15114 +15116 2 -27.798315092713324 -1157.4040311924427 42.5673 0.1144 15115 +15117 2 -27.87277535367423 -1158.5455491991065 42.5793 0.1144 15116 +15118 2 -27.91114598082197 -1159.6890642864455 42.5905 0.1144 15117 +15119 2 -27.67490932133302 -1160.8074594986642 42.5998 0.1144 15118 +15120 2 -27.356660980407298 -1161.9063154143776 42.607 0.1144 15119 +15121 2 -27.29648089415815 -1163.0484138546267 42.6121 0.1144 15120 +15122 2 -27.39067927240103 -1164.1885655794142 42.6079 0.1144 15121 +15123 2 -27.368366156014986 -1165.3324591779788 42.5995 0.1144 15122 +15124 2 -27.414001602987014 -1166.4750402455534 42.5877 0.1144 15123 +15125 2 -27.554357186697985 -1167.6099927027608 42.5704 0.1144 15124 +15126 2 -27.451815235554875 -1168.7488242786558 42.546 0.1144 15125 +15127 2 -27.329972845174552 -1169.8865914085673 42.5144 0.1144 15126 +15128 2 -27.331859914064296 -1171.0304528726313 42.4757 0.1144 15127 +15129 2 -27.373309197600406 -1172.1731605723053 42.4054 0.1144 15128 +15130 2 -27.12103285475814 -1173.2870961255767 42.2817 0.1144 15129 +15131 2 -26.42036802863413 -1174.191152241884 42.1781 0.1144 15130 +15132 2 -25.933602122340915 -1175.2253952319356 42.0918 0.1144 15131 +15133 2 -26.0554414162807 -1176.4189251337193 42.0106 0.1144 15132 +15134 2 -26.371475062006027 -1177.5168970754235 41.9476 0.1144 15133 +15135 2 -26.730942843589105 -1178.6013052476555 41.8858 0.1144 15134 +15136 2 -26.936483269030646 -1179.7239733079073 41.8118 0.1144 15135 +15137 2 -27.01254186812929 -1180.865182582976 41.7155 0.1144 15136 +15138 2 -27.127727318179893 -1181.9994535920814 41.5797 0.1144 15137 +15139 2 -27.076677682237744 -1183.1377738214856 41.3395 0.1144 15138 +15140 2 -26.904024424758575 -1184.2508821642273 41.0273 0.1144 15139 +15141 2 -26.374850396228624 -1185.2429768308439 40.6882 0.1144 15140 +15142 2 -25.641319047045158 -1186.110749594743 40.3676 0.1144 15141 +15143 2 -25.071434550108222 -1187.0751208459483 40.0548 0.1144 15142 +15144 2 -24.803929013160825 -1188.1809866007768 39.7886 0.1144 15143 +15145 2 -24.69996531274586 -1189.306854048124 39.5727 0.1144 15144 +15146 2 -24.938748771873748 -1190.4082855664888 39.3492 0.1144 15145 +15147 2 -25.30641918716543 -1191.468273116283 39.058 0.1144 15146 +15148 2 -25.340204215803 -1192.5995790969266 38.75 0.1144 15147 +15149 2 -25.39671531463148 -1193.7179740073716 38.4544 0.1144 15148 +15150 2 -25.710480793216618 -1194.8131431972452 38.2057 0.1144 15149 +15151 2 -26.013583137431056 -1195.9126744468836 38.0022 0.1144 15150 +15152 2 -26.20316907236912 -1197.0309352140007 37.8087 0.1144 15151 +15153 2 -26.096308815060922 -1198.1550222237152 37.6076 0.1144 15152 +15154 2 -25.70246788719112 -1199.2195035732625 37.4013 0.1144 15153 +15155 2 -25.207279602563744 -1200.2458697909296 37.175 0.1144 15154 +15156 2 -24.957647244952 -1201.3291508283492 36.9729 0.1144 15155 +15157 2 -24.97566229162794 -1202.4708355212892 36.7718 0.1144 15156 +15158 2 -25.060278418676603 -1203.6025149109764 36.554 0.1144 15157 +15159 2 -25.356926432314992 -1204.699370040884 36.3457 0.1144 15158 +15160 2 -25.796734675983487 -1205.7512296317045 36.1337 0.1144 15159 +15161 2 -26.211678416003394 -1206.810694908445 35.8954 0.1144 15160 +15162 2 -26.32290424825021 -1207.9143606659281 35.6213 0.1144 15161 +15163 2 -25.948137811825802 -1208.9609866584055 35.2993 0.1144 15162 +15164 2 -25.539908597089607 -1209.996551797948 34.9896 0.1144 15163 +15165 2 -25.5144487611945 -1211.123603836124 34.7332 0.1144 15164 +15166 2 -25.597284450610175 -1212.2581797827047 34.5013 0.1144 15165 +15167 2 -25.475500629208796 -1213.3824841279975 34.2502 0.1144 15166 +15168 2 -25.151856200524833 -1214.472741076511 33.9786 0.1144 15167 +15169 2 -24.716585018479066 -1215.5238465508 33.728 0.1144 15168 +15170 2 -24.37981149148095 -1216.6005164916423 33.4869 0.1144 15169 +15171 2 -24.17409178918109 -1217.7215885161286 33.2503 0.1144 15170 +15172 2 -23.99875931038781 -1218.8478399853307 33.0498 0.1144 15171 +15173 2 -23.8669376427855 -1219.9821728720756 32.8801 0.1144 15172 +15174 2 -23.620148783717582 -1221.0913821665913 32.6906 0.1144 15173 +15175 2 -23.008402463030052 -1222.0058416184675 32.4363 0.1144 15174 +15176 2 -21.985329348531764 -1222.4337642077178 32.2062 0.1144 15175 +15177 2 -21.209155127714894 -1223.1852944858433 32.0326 0.1144 15176 +15178 2 -21.168949009128994 -1224.2752283728419 31.892 0.1144 15177 +15179 2 -21.83111890120557 -1225.1750112155473 31.789 0.1144 15178 +15180 2 -22.5095786392514 -1226.094314839956 31.6812 0.1144 15179 +15181 2 -22.943687574196247 -1227.1466621602838 31.5241 0.1144 15180 +15182 2 -23.21003596622444 -1228.2557640420168 31.3544 0.1144 15181 +15183 2 -23.29296546070259 -1229.3943885933709 31.2309 0.1144 15182 +15184 2 -23.13370549229961 -1230.5252372801826 31.1671 0.1144 15183 +15185 2 -22.7829838602226 -1231.6135231740511 31.1696 0.1144 15184 +15186 2 -22.361161434649034 -1232.6755950036763 31.2402 0.1144 15185 +15187 2 -21.827175261976834 -1233.6862124473191 31.337 0.1144 15186 +15188 2 -21.037390008056775 -1234.5059086243814 31.5319 0.1144 15187 +15189 2 -20.267158457573032 -1235.3350415742989 31.9505 0.1144 15188 +15190 2 -19.548817964827947 -1236.2000615431339 32.4612 0.1144 15189 +15191 2 -18.876925586880247 -1237.1031397913803 32.9616 0.1144 15190 +15192 2 -18.207982131638403 -1238.0079132844098 33.4718 0.1144 15191 +15193 2 -17.54024309008952 -1238.910727341894 34.0012 0.1144 15192 +15194 2 -17.26064997636439 -1239.9138500167237 35.1389 0.1144 15193 +15195 2 -16.877101165182864 -1240.826193657816 36.4711 0.1144 15194 +15196 2 -16.151576635818287 -1241.5566225436703 37.6155 0.1144 15195 +15197 2 -15.483471394680066 -1242.346408613922 38.6761 0.1144 15196 +15198 2 -15.354323846210264 -1243.3560835322617 39.699 0.1144 15197 +15199 2 -15.48230984011576 -1244.4257987819258 40.6375 0.1144 15198 +15200 2 -15.508321804020852 -1245.4998576712487 41.5797 0.1144 15199 +15201 2 -15.086224574873938 -1246.4355762876855 42.5536 0.1144 15200 +15202 2 -14.439035524928329 -1247.2852886705718 43.5602 0.1144 15201 +15203 2 -13.77621784580333 -1248.1145955162203 44.5973 0.1144 15202 +15204 2 -12.828027843518043 -1248.4206923302618 45.5874 0.1144 15203 +15205 2 -11.753956642558876 -1248.4990485378662 46.531 0.1144 15204 +15206 2 -10.675338180756228 -1248.576018232282 47.446 0.1144 15205 +15207 2 -9.593608235528052 -1248.6536577557004 48.3344 0.1144 15206 +15208 2 -8.507777319713853 -1248.731476277031 49.1999 0.1144 15207 +15209 2 -7.4203808927990735 -1248.8097410886194 50.0466 0.1144 15208 +15210 2 -6.48099838598057 -1248.4350438163 51.0577 0.1144 15209 +15211 2 -6.110398870847348 -1247.449905450697 52.0075 0.1144 15210 +15212 2 -6.059448829543385 -1246.355118264395 52.8007 0.1144 15211 +15213 2 -6.089097237920782 -1245.2453134248485 53.4649 0.1144 15212 +15214 2 -6.12107238241731 -1244.1248485525145 54.031 0.1144 15213 +15215 2 -6.153168648383655 -1242.9978848087717 54.5079 0.1144 15214 +15216 2 -6.204791206682842 -1241.865316253904 54.8761 0.1144 15215 +15217 2 -6.287019016603892 -1240.7287880812328 55.1177 0.1144 15216 +15218 2 -6.371027264157988 -1239.5893633516685 55.2779 0.1144 15217 +15219 2 -6.455663901464959 -1238.4489163079065 55.3837 0.1144 15218 +15220 2 -6.539672149019111 -1237.3094915783422 55.4523 0.1144 15219 +15221 2 -6.748737800052538 -1236.1850767067053 55.5136 0.1144 15220 +15222 2 -7.314789311285267 -1235.194286367314 55.6147 0.1144 15221 +15223 2 -7.8928319010979635 -1234.2080494919323 55.7432 0.1144 15222 +15224 2 -8.505836386364365 -1233.2434201584351 55.8317 0.1144 15223 +15225 2 -9.152118448864144 -1232.2991282990552 55.8286 0.1144 15224 +15226 2 -9.798709242958864 -1231.356434777813 55.7474 0.1144 15225 +15227 2 -10.445300037053528 -1230.4137412565708 55.603 0.1144 15226 +15228 2 -11.090686417455231 -1229.473007170874 55.4072 0.1144 15227 +15229 2 -11.736125163669783 -1228.5321878923273 55.1877 0.1144 15228 +15230 2 -12.380883154318724 -1227.592476120828 54.9682 0.1144 15229 +15231 2 -13.025875610275818 -1226.6500913311806 54.7618 0.1144 15230 +15232 2 -13.671261990677522 -1225.7093572454837 54.5703 0.1144 15231 +15233 2 -14.31308749581325 -1224.7744162735733 54.2021 0.1144 15232 +15234 2 -25.83223524449278 -1175.4034834293977 42.371 0.1144 15132 +15235 2 -25.354881801534418 -1176.3964423361485 43.1024 0.1144 15234 +15236 2 -25.167376144665752 -1177.5207281666394 43.3325 0.1144 15235 +15237 2 -24.71193148164366 -1178.567415421231 43.5064 0.1144 15236 +15238 2 -24.088140331490195 -1179.525531855173 43.6299 0.1144 15237 +15239 2 -23.34613974878954 -1180.3961980743823 43.708 0.1144 15238 +15240 2 -22.663694478726256 -1181.3141530315388 43.745 0.1144 15239 +15241 2 -22.45917608853631 -1182.439954416364 43.7455 0.1144 15240 +15242 2 -22.228423811238542 -1183.560312165711 43.7433 0.1144 15241 +15243 2 -21.984476041667847 -1184.6780758865934 43.7399 0.1144 15242 +15244 2 -21.84125575661824 -1185.8133842323527 43.7354 0.1144 15243 +15245 2 -21.70370195325529 -1186.9480672899422 43.7293 0.1144 15244 +15246 2 -21.27038710517172 -1188.0070659738085 43.7203 0.1144 15245 +15247 2 -20.751054102664625 -1189.0266903372417 43.708 0.1144 15246 +15248 2 -20.219027365537897 -1190.0385121945774 43.6906 0.1144 15247 +15249 2 -19.619025346486126 -1191.01254237231 43.666 0.1144 15248 +15250 2 -18.890525886070293 -1191.8940897540053 43.6318 0.1144 15249 +15251 2 -18.065953011212002 -1192.6871207584736 43.5856 0.1144 15250 +15252 2 -17.2170094706824 -1193.4544901056547 43.5204 0.1144 15251 +15253 2 -16.366340959915533 -1194.217982020995 43.4249 0.1144 15252 +15254 2 -15.483020852621564 -1194.942740317291 43.2894 0.1144 15253 +15255 2 -14.536954864884933 -1195.5818606868988 43.1122 0.1144 15254 +15256 2 -13.812717248927981 -1196.2162414918048 43.6778 0.1144 15255 +15257 2 -13.12955288563245 -1197.1244813625015 43.6159 0.1144 15256 +15258 2 -12.775361774305338 -1198.2052351442007 43.5495 0.1144 15257 +15259 2 -12.684932023212241 -1199.3421213126965 43.4664 0.1144 15258 +15260 2 -12.718179365576304 -1200.4851870081952 43.3398 0.1144 15259 +15261 2 -12.790371459396908 -1201.6239022630282 43.1768 0.1144 15260 +15262 2 -12.904300129941873 -1202.7602179005285 42.9898 0.1144 15261 +15263 2 -13.034409144085657 -1203.894271574055 42.791 0.1144 15262 +15264 2 -13.16509418216964 -1205.0273881262333 42.5897 0.1144 15263 +15265 2 -13.29520319631348 -1206.1614417997598 42.3956 0.1144 15264 +15266 2 -13.144412461427748 -1207.2893970312616 42.2192 0.1144 15265 +15267 2 -12.614612452191466 -1208.2998878428048 42.0893 0.1144 15266 +15268 2 -12.074257141793055 -1209.3078815325293 41.9891 0.1144 15267 +15269 2 -11.5339018313947 -1210.3158752222537 41.9082 0.1144 15268 +15270 2 -10.992524206798805 -1211.3232405222252 41.8379 0.1144 15269 +15271 2 -10.45211653058766 -1212.3313194047996 41.7684 0.1144 15270 +15272 2 -9.910824098841488 -1213.3387370705836 41.6926 0.1144 15271 +15273 2 -9.371097178195953 -1214.3457084461106 41.603 0.1144 15272 +15274 2 -9.006477397806293 -1215.428151269427 41.4795 0.1144 15273 +15275 2 -8.77277619780267 -1216.5468137739908 41.3199 0.1144 15274 +15276 2 -8.5421536541877 -1217.6646688908893 41.1387 0.1144 15275 +15277 2 -8.311668669235132 -1218.7824911807509 40.9497 0.1144 15276 +15278 2 -8.694929376039624 -1219.8520616742762 40.6515 0.1144 15277 +15279 2 -13.819771428069885 -1194.84147116242 42.8551 0.1144 15255 +15280 2 -13.073421287196993 -1194.0108470914836 42.2626 0.1144 15279 +15281 2 -12.219569596057909 -1193.3530144459428 41.4764 0.1144 15280 +15282 2 -11.153526138766608 -1193.2456787707638 40.887 0.1144 15281 +15283 2 -10.043017228444171 -1193.464092621274 40.5378 0.1144 15282 +15284 2 -9.056309243869123 -1193.9923087164243 40.3836 0.1144 15283 +15285 2 -8.125436521617416 -1194.646050121697 40.579 0.1144 15284 +15286 2 -7.283672608062204 -1195.4124330833004 40.8075 0.1144 15285 +15287 2 -6.462081482946928 -1196.2072968912144 40.9024 0.1144 15286 +15288 2 -5.640936648088996 -1197.0037262102292 40.8534 0.1144 15287 +15289 2 -4.7328155075007885 -1196.5126697226265 40.6022 0.1144 15288 +15290 2 -3.8117350387726674 -1195.8418020679228 40.3511 0.1144 15289 +15291 2 -2.8448782848483347 -1195.2541912550619 40.0481 0.1144 15290 +15292 2 -1.785073929826865 -1194.8592342079319 39.697 0.1144 15291 +15293 2 -0.6839758730039307 -1194.601349952382 39.2963 0.1144 15292 +15294 2 0.4353482567976812 -1194.4693633150137 38.8721 0.1144 15293 +15295 2 1.5645917867804542 -1194.4627459143026 38.4367 0.1144 15294 +15296 2 2.131180895297234 -1194.8557378253008 37.4226 0.1144 15295 +15297 2 1.8403389106284749 -1195.415880807006 36.5319 0.1144 15296 +15298 2 1.4316082348699979 -1196.4069676673237 35.8686 0.1144 15297 +15299 2 1.266616409652329 -1197.5236098649912 35.8324 0.1144 15298 +15300 2 1.360242837020735 -1198.661113496677 35.8061 0.1144 15299 +15301 2 1.528727060793301 -1199.7916917895604 35.7686 0.1144 15300 +15302 2 1.6162930820303814 -1200.9302208370268 35.7157 0.1144 15301 +15303 2 1.5419266261319535 -1202.0676902389173 35.6437 0.1144 15302 +15304 2 1.3943585884094318 -1203.20179386921 35.551 0.1144 15303 +15305 2 1.1919820122061537 -1204.325216951314 35.3998 0.1144 15304 +15306 2 0.9486653203807691 -1205.438942769224 35.1742 0.1144 15305 +15307 2 0.7025458767248551 -1206.5504004199938 34.8972 0.1144 15306 +15308 2 0.4940205999573095 -1207.668212487807 34.5982 0.1144 15307 +15309 2 0.40998049684873195 -1208.800828998842 34.3227 0.1144 15308 +15310 2 0.38930025700483384 -1209.940278351679 34.0875 0.1144 15309 +15311 2 0.3666082158027848 -1211.0808469253586 33.8906 0.1144 15310 +15312 2 0.3451205882936961 -1212.2233749345837 33.7232 0.1144 15311 +15313 2 0.32291937818206407 -1213.3649329954242 33.5726 0.1144 15312 +15314 2 0.30143175067297534 -1214.5074610046493 33.4275 0.1144 15313 +15315 2 0.2793680992237455 -1215.6490518925266 33.2763 0.1144 15314 +15316 2 0.25788047171477047 -1216.791579901752 33.1069 0.1144 15315 +15317 2 0.23675394161335817 -1217.9325947656894 32.9084 0.1144 15316 +15318 2 0.5701808273413462 -1218.9818592327679 32.7141 0.1144 15317 +15319 2 1.1436761563106188 -1219.9694826213376 32.5304 0.1144 15318 +15320 2 1.2188410687670626 -1221.031120170568 32.1219 0.1144 15319 +15321 2 1.0174392590416232 -1222.1190820086117 31.4143 0.1144 15320 +15322 2 0.8220478986813191 -1223.188559407296 30.5449 0.1144 15321 +15323 2 0.6603848924680733 -1224.2909478698725 29.9068 0.1144 15322 +15324 2 0.4975315007080212 -1225.4022846832609 29.3756 0.1144 15323 +15325 2 0.3336917233705776 -1226.5208011236239 28.9439 0.1144 15324 +15326 2 0.3138931374785443 -1227.6529004637864 28.5628 0.1144 15325 +15327 2 0.5429556806226401 -1228.7596242555828 28.1467 0.1144 15326 +15328 2 0.7772681406498236 -1229.861712492103 27.6543 0.1144 15327 +15329 2 1.0104699920465805 -1230.9577926883044 27.0886 0.1144 15328 +15330 2 1.2405048926219706 -1232.0464290667696 26.445 0.1144 15329 +15331 2 1.468844548414154 -1233.1321165225286 25.7533 0.1144 15330 +15332 2 1.6963823271707952 -1234.2101975998312 25.0236 0.1144 15331 +15333 2 1.9043777078389894 -1235.1995781998135 23.7135 0.1144 15332 +15334 2 1.4137097448680152 -1193.9310236000929 36.5355 0.1144 15296 +15335 2 1.025890885462843 -1192.8763394282719 36.1735 0.1144 15334 +15336 2 0.7364118911302739 -1191.7717725847353 35.9912 0.1144 15335 +15337 2 0.3244835499289138 -1190.7063188777565 35.9083 0.1144 15336 +15338 2 -0.09885202093261114 -1189.6438859507239 35.9016 0.1144 15337 +15339 2 -0.49398565692831653 -1188.5708087355592 35.9027 0.1144 15338 +15340 2 -0.8616840937064012 -1187.4875585245782 35.9041 0.1144 15339 +15341 2 -1.0944481723622062 -1186.3683199960742 35.9066 0.1144 15340 +15342 2 -1.2010059012415581 -1185.2292570564541 35.91 0.1144 15341 +15343 2 -1.2309253960838191 -1184.086165334925 35.9145 0.1144 15342 +15344 2 -0.8423593050002864 -1183.0187332748574 35.9212 0.1144 15343 +15345 2 -0.03728416360263509 -1182.2137547554526 35.9299 0.1144 15344 +15346 2 0.7183114405772812 -1181.3544411148391 35.943 0.1144 15345 +15347 2 1.3348847379065774 -1180.391363086318 35.9612 0.1144 15346 +15348 2 2.0812201580967553 -1179.5257686024113 35.9859 0.1144 15347 +15349 2 2.9113778312585623 -1178.7375348314458 36.0167 0.1144 15348 +15350 2 3.642560732676884 -1177.8583649589675 36.0634 0.1144 15349 +15351 2 4.004746073240824 -1176.7762773196882 36.1547 0.1144 15350 +15352 2 4.224272941427785 -1175.6544026189558 36.2544 0.1144 15351 +15353 2 4.432742750799491 -1174.5298165624085 36.3345 0.1144 15352 +15354 2 4.639614222033458 -1173.4049217742663 36.3924 0.1144 15353 +15355 2 4.927128683781632 -1172.2975996376294 36.4302 0.1144 15354 +15356 2 5.120545195377417 -1171.170293613055 36.4493 0.1144 15355 +15357 2 5.157893508327447 -1170.0274069154686 36.454 0.1144 15356 +15358 2 5.097137398138273 -1168.884371353872 36.4526 0.1144 15357 +15359 2 4.979448344156765 -1167.746868414723 36.4498 0.1144 15358 +15360 2 4.8999349916333585 -1166.6059719791203 36.4465 0.1144 15359 +15361 2 4.94075588541665 -1165.4622419652487 36.442 0.1144 15360 +15362 2 4.938541983720313 -1164.3182015032721 36.4344 0.1144 15361 +15363 2 5.04405378656071 -1163.1790776033117 36.4199 0.1144 15362 +15364 2 5.157406433165477 -1162.0418248444635 36.4006 0.1144 15363 +15365 2 5.521912306682395 -1160.9570196462037 36.409 0.1144 15364 +15366 2 5.890786443130423 -1159.8749289053414 36.3888 0.1144 15365 +15367 2 6.154908107268113 -1158.7644959778158 36.2692 0.1144 15366 +15368 2 6.2065101553089335 -1157.624938099234 36.0718 0.1144 15367 +15369 2 6.289527944219913 -1156.4929499779516 35.7221 0.1144 15368 +15370 2 6.409478683229452 -1155.366431518178 35.3486 0.1144 15369 +15371 2 6.655653594281262 -1154.261747856142 34.96 0.1144 15370 +15372 2 6.943127309316253 -1153.1826221437414 34.5598 0.1144 15371 +15373 2 6.743250677568881 -1152.075448267568 34.1172 0.1144 15372 +15374 2 6.548242349895986 -1151.0176337837675 33.7663 0.1144 15373 +15375 2 6.991484836731047 -1149.975753470169 33.4799 0.1144 15374 +15376 2 7.177151900578394 -1148.8599015304376 33.1766 0.1144 15375 +15377 2 7.141530687966053 -1147.7336959101299 32.6984 0.1144 15376 +15378 2 7.085498427485959 -1146.602546695488 32.3134 0.1144 15377 +15379 2 7.263903773092181 -1145.492449531876 31.8035 0.1144 15378 +15380 2 7.404353854402302 -1144.3775110965084 31.2886 0.1144 15379 +15381 2 7.397390769502749 -1143.3088137513967 30.2893 0.1144 15380 +15382 2 -40.924522635915935 -1108.7698384902628 48.05 0.1144 15067 +15383 2 -39.811150404185526 -1108.8857796547022 48.587 0.1144 15382 +15384 2 -38.71835239656775 -1109.1607410420766 48.9457 0.1144 15383 +15385 2 -37.685288385747924 -1109.6135110052464 49.408 0.1144 15384 +15386 2 -36.64892769042416 -1110.0762274186013 49.7266 0.1144 15385 +15387 2 -35.592970230600656 -1110.5095258642978 49.6885 0.1144 15386 +15388 2 -34.54197108579456 -1110.928264944892 49.2915 0.1144 15387 +15389 2 -33.47059171955931 -1111.2338815406542 48.6674 0.1144 15388 +15390 2 -32.382565204066736 -1111.4877127869286 48.0656 0.1144 15389 +15391 2 -31.365264279505766 -1111.9675442561838 47.5804 0.1144 15390 +15392 2 -30.351209390146096 -1112.4789509254456 47.236 0.1144 15391 +15393 2 -29.246830665585605 -1112.7574755971323 47.0501 0.1144 15392 +15394 2 -28.15695524089142 -1113.0973842593457 46.8734 0.1144 15393 +15395 2 -27.07130431729979 -1113.447988882967 46.6838 0.1144 15394 +15396 2 -25.985887859016145 -1113.79592048844 46.4537 0.1144 15395 +15397 2 -24.977746512375973 -1114.3284517881723 46.2367 0.1144 15396 +15398 2 -24.00906057114696 -1114.9321875890532 46.053 0.1144 15397 +15399 2 -23.012102222885062 -1115.4902563230196 45.9001 0.1144 15398 +15400 2 -21.933842058680625 -1115.868175716925 45.7792 0.1144 15399 +15401 2 -20.834307707458947 -1116.1779668570234 45.6537 0.1144 15400 +15402 2 -19.89171430055552 -1116.8179305429169 45.4742 0.1144 15401 +15403 2 -18.86625528311879 -1117.3196276363485 45.29 0.1144 15402 +15404 2 -17.81765024501584 -1117.769418258822 45.1013 0.1144 15403 +15405 2 -16.774154463550417 -1118.2305660594934 44.8806 0.1144 15404 +15406 2 -15.79946117453943 -1118.8091286251306 44.5222 0.1144 15405 +15407 2 -14.80165710094576 -1119.3532961092014 44.1902 0.1144 15406 +15408 2 -13.849944862834775 -1119.9687563888538 43.8259 0.1144 15407 +15409 2 -12.90321524926162 -1120.5913876832678 43.428 0.1144 15408 +15410 2 -11.959073460986758 -1121.2142010771772 43.006 0.1144 15409 +15411 2 -11.014124285046705 -1121.8339358146982 42.5692 0.1144 15410 +15412 2 -10.07163320072226 -1122.4563552841632 42.1218 0.1144 15411 +15413 2 -9.130784995368174 -1123.0759110237718 41.6377 0.1144 15412 +15414 2 -8.19670767716508 -1123.7022110266607 41.1345 0.1144 15413 +15415 2 -7.352549656906717 -1124.4375424463847 40.558 0.1144 15414 +15416 2 -6.512886531679044 -1125.174345572147 39.9552 0.1144 15415 +15417 2 -5.675141402747045 -1125.9082193139789 39.3224 0.1144 15416 +15418 2 -4.895152018491615 -1126.5916712950639 38.1422 0.1144 15417 +15419 2 -46.51534925566 -1138.958266110097 52.1668 0.1144 13656 +15420 2 -45.84113875380581 -1139.8760006300913 52.2046 0.1144 15419 +15421 2 -45.607886945642804 -1140.9895398498716 52.2214 0.1144 15420 +15422 2 -45.786112600800095 -1142.1195986695107 52.2444 0.1144 15421 +15423 2 -45.979391553733365 -1143.2469375211222 52.2735 0.1144 15422 +15424 2 -46.20461773064403 -1144.3683244923477 52.3116 0.1144 15423 +15425 2 -46.46348637631553 -1145.480810660481 52.3872 0.1144 15424 +15426 2 -46.517899788399575 -1146.622096610883 52.4916 0.1144 15425 +15427 2 -46.477011529174945 -1147.7612632581554 52.5806 0.1144 15426 +15428 2 -46.67826888453504 -1148.8866981416177 52.6478 0.1144 15427 +15429 2 -46.847631381730366 -1150.017999712616 52.6943 0.1144 15428 +15430 2 -46.957905371946765 -1151.1560598591295 52.7223 0.1144 15429 +15431 2 -46.9647781669575 -1152.3004035420713 52.7352 0.1144 15430 +15432 2 -46.87925677411556 -1153.4401893690433 52.7405 0.1144 15431 +15433 2 -46.74873332526863 -1154.576611425016 52.7464 0.1144 15432 +15434 2 -46.66352066402163 -1155.7179955901256 52.7542 0.1144 15433 +15435 2 -46.62851071143285 -1156.8607754784769 52.766 0.1144 15434 +15436 2 -46.69121125753878 -1158.0017557988672 52.7828 0.1144 15435 +15437 2 -46.88930476366062 -1159.1279457041815 52.8052 0.1144 15436 +15438 2 -46.97998129684066 -1160.2606505096496 52.8335 0.1144 15437 +15439 2 -46.66293736960802 -1161.3575469898176 52.8724 0.1144 15438 +15440 2 -46.15648020121586 -1162.3823860340506 52.9564 0.1144 15439 +15441 2 -45.71684075623904 -1163.4362059657374 53.0533 0.1144 15440 +15442 2 -45.41333387991125 -1164.5374323711699 53.1278 0.1144 15441 +15443 2 -45.19781389830172 -1165.6591711230758 53.1768 0.1144 15442 +15444 2 -44.793596667182044 -1166.7252563213906 53.2008 0.1144 15443 +15445 2 -44.23792145919913 -1167.7144428120146 53.2003 0.1144 15444 +15446 2 -44.015136657765424 -1168.8371155836849 53.1754 0.1144 15445 +15447 2 -43.78049833641404 -1169.9552020643087 53.1314 0.1144 15446 +15448 2 -43.37022069916304 -1171.020261846843 53.0687 0.1144 15447 +15449 2 -42.80095297287937 -1172.0118924009362 52.9816 0.1144 15448 +15450 2 -42.18264620491709 -1172.971971372007 52.8662 0.1144 15449 +15451 2 -41.5657235410967 -1173.9101292515052 52.6946 0.1144 15450 +15452 2 -41.40567572380428 -1175.0376765304163 52.4317 0.1144 15451 +15453 2 -41.28473211710508 -1176.1651970907603 52.0649 0.1144 15452 +15454 2 -41.21667595100797 -1177.2916552827305 51.6404 0.1144 15453 +15455 2 -41.06120822159619 -1178.4207266334924 51.4077 0.1144 15454 +15456 2 -40.83414345166403 -1179.539477432489 51.2529 0.1144 15455 +15457 2 -40.465117070676456 -1180.6138121196955 51.1003 0.1144 15456 +15458 2 -39.94119536807614 -1181.6279161723176 50.9242 0.1144 15457 +15459 2 -39.62505091706117 -1182.6905034563051 50.7452 0.1144 15458 +15460 2 -39.96382294461364 -1183.7232200841117 50.4932 0.1144 15459 +15461 2 -40.50608094990531 -1184.7023607204337 50.192 0.1144 15460 +15462 2 -40.73607551735813 -1185.8093063464435 49.9078 0.1144 15461 +15463 2 -40.76277472408367 -1186.9456473174378 49.663 0.1144 15462 +15464 2 -40.71111623716439 -1188.084767109527 49.4371 0.1144 15463 +15465 2 -40.740800295215934 -1189.216252088083 49.0983 0.1144 15464 +15466 2 -40.86672073687748 -1190.3330585629799 48.5803 0.1144 15465 +15467 2 -40.94951808862646 -1191.456811916053 48.1149 0.1144 15466 +15468 2 -41.05334084984986 -1192.585507146951 47.7333 0.1144 15467 +15469 2 -41.07567489522722 -1193.7178737794588 47.378 0.1144 15468 +15470 2 -40.95125870769493 -1194.8445510235176 47.0361 0.1144 15469 +15471 2 -40.893936840672154 -1195.9776073078924 46.7152 0.1144 15470 +15472 2 -40.70461240850369 -1197.093967101769 46.3898 0.1144 15471 +15473 2 -40.31647078935754 -1198.157960721809 46.0435 0.1144 15472 +15474 2 -39.550172830647 -1198.954532086143 45.6154 0.1144 15473 +15475 2 -39.24241852876935 -1199.975206897077 44.9971 0.1144 15474 +15476 2 -38.879268045371305 -1201.0357809946336 44.4752 0.1144 15475 +15477 2 -38.64981157778254 -1202.1408540824796 44.0328 0.1144 15476 +15478 2 -38.53056321586649 -1203.265425720118 43.6024 0.1144 15477 +15479 2 -38.56849917185633 -1204.3790936792707 42.9901 0.1144 15478 +15480 2 -38.41414825424113 -1205.4887793979456 42.4144 0.1144 15479 +15481 2 -38.08793002840497 -1206.5679464606064 41.9479 0.1144 15480 +15482 2 -37.5899167600362 -1207.5026625857104 41.0987 0.1144 15481 +15483 2 -37.1916308939019 -1208.5482132056409 40.5418 0.1144 15482 +15484 2 -37.011354820773875 -1209.6540536269756 40.0733 0.1144 15483 +15485 2 -37.04308660880355 -1210.7801065891529 39.6217 0.1144 15484 +15486 2 -37.14299049893634 -1211.9063929926651 39.1896 0.1144 15485 +15487 2 -37.32211493777476 -1213.026205242737 38.8534 0.1144 15486 +15488 2 -37.65249061302359 -1214.1142119353651 38.6042 0.1144 15487 +15489 2 -38.17793919242689 -1215.120699476472 38.3743 0.1144 15488 +15490 2 -38.80636360062715 -1216.0709899653111 38.136 0.1144 15489 +15491 2 -39.35466488232095 -1217.068752599655 37.905 0.1144 15490 +15492 2 -39.66477878216057 -1218.1589775026573 37.6751 0.1144 15491 +15493 2 -39.73794392594914 -1219.291717544209 37.394 0.1144 15492 +15494 2 -39.62818711174799 -1220.41402411629 36.967 0.1144 15493 +15495 2 -39.45263729737576 -1221.5253520213987 36.4633 0.1144 15494 +15496 2 -39.1448152164661 -1222.605145064766 35.945 0.1144 15495 +15497 2 -38.71457661572458 -1223.6459625302384 35.4564 0.1144 15496 +15498 2 -38.422311999290685 -1224.7352009586739 35.0199 0.1144 15497 +15499 2 -38.330948228432874 -1225.8648223073455 34.6766 0.1144 15498 +15500 2 -38.02780555109587 -1226.9608730621817 34.4417 0.1144 15499 +15501 2 -37.13701800908137 -1227.6366714011792 34.291 0.1144 15500 +15502 2 -36.03494578932782 -1227.9288214182038 34.2059 0.1144 15501 +15503 2 -35.47887114627059 -1228.9056721700326 34.1502 0.1144 15502 +15504 2 -35.948417797281195 -1229.301693574157 34.2647 0.1144 15503 +15505 2 -36.82176013622126 -1230.0372398262818 34.454 0.1144 15504 +15506 2 -37.695954403659414 -1230.773309736534 34.5635 0.1144 15505 +15507 2 -38.569605474194475 -1231.5104543267962 34.6483 0.1144 15506 +15508 2 -39.44330891054233 -1232.2475137242086 34.7402 0.1144 15507 +15509 2 -40.316298764287524 -1232.9855430700059 34.832 0.1144 15508 +15510 2 -41.175998628160585 -1233.7409924091785 34.9059 0.1144 15509 +15511 2 -42.027460622241506 -1234.5033509813975 34.9563 0.1144 15510 +15512 2 -42.8100270290272 -1235.3361641350944 34.9866 0.1144 15511 +15513 2 -43.510948646502015 -1236.2384033529056 35.002 0.1144 15512 +15514 2 -44.193561720946605 -1237.157442786552 35.0095 0.1144 15513 +15515 2 -44.873534604280394 -1238.076385313553 35.0171 0.1144 15514 +15516 2 -45.55614767872504 -1238.9954247471996 35.0347 0.1144 15515 +15517 2 -46.236172927871564 -1239.9142820813504 35.0694 0.1144 15516 +15518 2 -46.91771132230599 -1240.832778318094 35.124 0.1144 15517 +15519 2 -47.59867369280022 -1241.7522116761852 35.1968 0.1144 15518 +15520 2 -48.15571150035646 -1242.7445453957334 35.3346 0.1144 15519 +15521 2 -48.27468988193465 -1243.852976442176 35.658 0.1144 15520 +15522 2 -48.06046260845096 -1244.9661193284646 35.9817 0.1144 15521 +15523 2 -47.70350157233031 -1246.0492788359666 36.1659 0.1144 15522 +15524 2 -47.337316280840014 -1247.1321679495404 36.2328 0.1144 15523 +15525 2 -46.97055496540963 -1248.2159941844616 36.1962 0.1144 15524 +15526 2 -46.60442203973213 -1249.2987981051854 36.0718 0.1144 15525 +15527 2 -46.237928016647004 -1250.3800888806213 35.8868 0.1144 15526 +15528 2 -45.87005058195655 -1251.4592381210164 35.6541 0.1144 15527 +15529 2 -45.501779222821426 -1252.5367366574615 35.3968 0.1144 15528 +15530 2 -45.03171421667139 -1253.5745545509249 35.161 0.1144 15529 +15531 2 -44.439732039296246 -1254.5508145581312 34.9913 0.1144 15530 +15532 2 -43.84218028688019 -1255.525059662396 34.8776 0.1144 15531 +15533 2 -43.244137703373724 -1256.5002942538217 34.8099 0.1144 15532 +15534 2 -42.646009927017474 -1257.4754764794343 34.7766 0.1144 15533 +15535 2 -41.99362601913657 -1258.4146091254106 34.7561 0.1144 15534 +15536 2 -41.05428716495072 -1259.0645551901089 34.7584 0.1144 15535 +15537 2 -40.105685717728704 -1259.7034082673717 34.769 0.1144 15536 +15538 2 -39.16375903824468 -1260.3531722325747 34.7696 0.1144 15537 +15539 2 -38.269845292122 -1261.0646108135452 34.6702 0.1144 15538 +15540 2 -37.38777955528735 -1261.7699506507174 34.2157 0.1144 15539 +15541 2 -35.401476102566846 -1229.682581802622 34.1124 0.1144 15503 +15542 2 -35.482264062004276 -1230.8225897655811 34.0698 0.1144 15541 +15543 2 -35.52941265426415 -1231.964809735748 34.0124 0.1144 15542 +15544 2 -35.272013026638206 -1233.0782958971786 33.9349 0.1144 15543 +15545 2 -34.933806131268625 -1234.170283326559 33.789 0.1144 15544 +15546 2 -34.57020866507651 -1235.253354539628 33.6515 0.1144 15545 +15547 2 -34.40418563450254 -1236.379928768571 33.4706 0.1144 15546 +15548 2 -34.742851545356416 -1237.4609410353032 33.0996 0.1144 15547 +15549 2 -35.20213681712784 -1238.5005922119649 32.8003 0.1144 15548 +15550 2 -35.739921135326256 -1239.5066803179975 32.576 0.1144 15549 +15551 2 -36.28613634937517 -1240.4990523752126 32.3845 0.1144 15550 +15552 2 -36.5255310685269 -1241.6170581616207 32.3226 0.1144 15551 +15553 2 -36.69957056024833 -1242.7472436133594 32.3106 0.1144 15552 +15554 2 -36.80592567937401 -1243.8828949324866 32.2188 0.1144 15553 +15555 2 -36.71326920039036 -1245.021112146775 32.1 0.1144 15554 +15556 2 -36.537178598161574 -1246.150888562623 31.9883 0.1144 15555 +15557 2 -36.35654073508931 -1247.279278465283 31.8864 0.1144 15556 +15558 2 -35.972706809296824 -1248.2358167747147 31.792 0.1144 15557 +15559 2 -35.02854278911104 -1248.7647119089208 31.7878 0.1144 15558 +15560 2 -34.567702038330594 -1249.8028001963125 32.0208 0.1144 15559 +15561 2 -34.26081948781524 -1250.900543094349 32.1202 0.1144 15560 +15562 2 -34.03117781914801 -1252.0148928033773 31.8819 0.1144 15561 +15563 2 -34.10644616031061 -1253.1354268398165 31.5227 0.1144 15562 +15564 2 -33.8398400995809 -1254.2069833984647 31.0962 0.1144 15563 +15565 2 -32.86532339943574 -1254.7722731039594 30.8042 0.1144 15564 +15566 2 -32.4475636067815 -1255.8233433421647 30.5189 0.1144 15565 +15567 2 -32.04293291244136 -1256.8880005880415 30.2596 0.1144 15566 +15568 2 -31.63929170526177 -1257.9531486650085 29.9992 0.1144 15567 +15569 2 -31.235289400674503 -1259.016783596688 29.715 0.1144 15568 +15570 2 -30.854718231364416 -1260.0881303309852 29.4048 0.1144 15569 +15571 2 -30.66909774375415 -1261.2093492188833 29.0839 0.1144 15570 +15572 2 -30.485960349816594 -1262.3309205919763 28.7678 0.1144 15571 +15573 2 -30.30381244303959 -1263.4529827961596 28.4536 0.1144 15572 +15574 2 -30.12009902516195 -1264.5754912906004 28.138 0.1144 15573 +15575 2 -29.937013997037127 -1265.6969774708436 27.8179 0.1144 15574 +15576 2 -29.75544211420015 -1266.8181025536792 27.4897 0.1144 15575 +15577 2 -29.57293311001547 -1267.9386516125746 27.1486 0.1144 15576 +15578 2 -29.277140445352472 -1269.0338207134591 26.7789 0.1144 15577 +15579 2 -28.85028613101133 -1270.082117925288 26.3754 0.1144 15578 +15580 2 -28.42312308507519 -1271.1288167989792 25.9484 0.1144 15579 +15581 2 -27.995566114694384 -1272.17386496872 25.5081 0.1144 15580 +15582 2 -27.699136341955864 -1271.9701766778583 24.6768 0.1144 15581 +15583 2 -27.911578080767413 -1273.0730237423286 24.1706 0.1144 15582 +15584 2 -28.138587796894285 -1274.1848253607768 23.8177 0.1144 15583 +15585 2 -27.627140492736146 -1275.0736047175742 23.4998 0.1144 15584 +15586 2 -26.771216554456544 -1275.8217760427933 23.214 0.1144 15585 +15587 2 -25.90927675087852 -1276.5663669539704 22.9391 0.1144 15586 +15588 2 -25.512463283318766 -1277.5833600522574 22.5609 0.1144 15587 +15589 2 -25.34189609348448 -1278.7018589721283 22.1593 0.1144 15588 +15590 2 -25.18709268244561 -1279.823356771471 21.7594 0.1144 15589 +15591 2 -25.01947441531712 -1280.9435509361251 21.3676 0.1144 15590 +15592 2 -24.824398308612274 -1282.0604836523585 20.9931 0.1144 15591 +15593 2 -24.621801016300992 -1283.1766668573694 20.6387 0.1144 15592 +15594 2 -24.428108321201364 -1284.2957411086436 20.3049 0.1144 15593 +15595 2 -24.589363374823733 -1285.4073866536269 19.9917 0.1144 15594 +15596 2 -24.83611120823258 -1286.517821990199 19.6889 0.1144 15595 +15597 2 -25.082773848791476 -1287.6282049609586 19.3863 0.1144 15596 +15598 2 -25.328499368002724 -1288.7380119077777 19.0781 0.1144 15597 +15599 2 -25.575247201411514 -1289.8484472443497 18.7646 0.1144 15598 +15600 2 -26.17400107029107 -1290.7858995442039 18.3432 0.1144 15599 +15601 2 -26.87319530848208 -1291.6668874994452 17.8328 0.1144 15600 +15602 2 -27.572348107423466 -1292.5437416570637 17.2854 0.1144 15601 +15603 2 -28.11160723324309 -1293.538646072181 16.8912 0.1144 15602 +15604 2 -28.564646897804778 -1294.5865484542444 16.7059 0.1144 15603 +15605 2 -29.016396955823666 -1295.6363579060403 16.8274 0.1144 15604 +15606 2 -38.42728748561427 -1206.5509348105847 41.9846 0.1144 15481 +15607 2 -39.56857033443333 -1206.503210194385 42.1128 0.1144 15606 +15608 2 -40.70011898414981 -1206.5715781936601 42.2416 0.1144 15607 +15609 2 -41.79861380245541 -1206.8883133892978 42.3382 0.1144 15608 +15610 2 -42.87460160265891 -1207.2743196765696 42.4063 0.1144 15609 +15611 2 -43.91986090481248 -1207.7301778028122 42.4435 0.1144 15610 +15612 2 -44.807210610347056 -1208.4165826906792 42.4469 0.1144 15611 +15613 2 -45.465179618305115 -1209.3514625784546 42.4147 0.1144 15612 +15614 2 -46.0371440915377 -1210.33689016654 42.3478 0.1144 15613 +15615 2 -46.42437603524553 -1211.408784294601 42.2444 0.1144 15614 +15616 2 -47.031320930712184 -1211.9309309635237 42.0207 0.1144 15615 +15617 2 -48.06333309697982 -1212.1570315797892 41.7217 0.1144 15616 +15618 2 -49.05674719028946 -1212.7167139532958 41.473 0.1144 15617 +15619 2 -50.05021364941183 -1213.2763111339523 41.2555 0.1144 15618 +15620 2 -51.0447024227318 -1213.8365367043616 41.076 0.1144 15619 +15621 2 -51.843450558189545 -1214.6189626408582 40.9422 0.1144 15620 +15622 2 -52.18283625481223 -1215.6856273674375 40.8859 0.1144 15621 +15623 2 -52.38258046488443 -1216.8114233483072 40.885 0.1144 15622 +15624 2 -52.58312423764198 -1217.9378281801542 40.9245 0.1144 15623 +15625 2 -52.787545442240344 -1219.062508041764 41.0094 0.1144 15624 +15626 2 -53.00283378117888 -1220.1845945674459 41.1578 0.1144 15625 +15627 2 -53.22414108699894 -1221.3035727112856 41.3655 0.1144 15626 +15628 2 -53.44505446837428 -1222.4209001511747 41.6189 0.1144 15627 +15629 2 -53.66555438652921 -1223.5367996386258 41.9084 0.1144 15628 +15630 2 -53.886106670496986 -1224.6526139332273 42.2285 0.1144 15629 +15631 2 -54.10692624680985 -1225.765892768343 42.5732 0.1144 15630 +15632 2 -54.326671143112435 -1226.878628406556 42.94 0.1144 15631 +15633 2 -54.38113451196273 -1228.0024553333792 43.3586 0.1144 15632 +15634 2 -54.026147632070035 -1229.0518488416042 43.846 0.1144 15633 +15635 2 -53.55670860662639 -1230.071270590141 44.3909 0.1144 15634 +15636 2 -53.08750404649078 -1231.0880193205303 44.973 0.1144 15635 +15637 2 -52.619451534235395 -1232.102893808224 45.5694 0.1144 15636 +15638 2 -52.151399021979955 -1233.1177682959178 46.1608 0.1144 15637 +15639 2 -51.682503193439345 -1234.1361153644443 46.7261 0.1144 15638 +15640 2 -52.51176868882726 -1234.1852411026985 47.1962 0.1144 15639 +15641 2 -53.63091110989643 -1234.0030051804342 47.5591 0.1144 15640 +15642 2 -54.75406069648915 -1233.8165416554848 47.8492 0.1144 15641 +15643 2 -55.87811457739258 -1233.6305165958129 48.0903 0.1144 15642 +15644 2 -56.7126713399241 -1234.2979698302142 48.2174 0.1144 15643 +15645 2 -57.140540870825305 -1235.3451907641756 48.3672 0.1144 15644 +15646 2 -57.51279378304406 -1236.4240762165496 48.5764 0.1144 15645 +15647 2 -57.884258846373314 -1237.499660261023 48.8379 0.1144 15646 +15648 2 -58.256299933642765 -1238.5743071841487 49.1431 0.1144 15647 +15649 2 -58.62735153375172 -1239.648463276184 49.4819 0.1144 15648 +15650 2 -58.9977004778209 -1240.7193703261314 49.8467 0.1144 15649 +15651 2 -59.36786732239477 -1241.7928652013766 50.211 0.1144 15650 +15652 2 -59.67476500718334 -1242.8839303190812 50.5772 0.1144 15651 +15653 2 -59.88319647888841 -1243.9976937821211 50.9466 0.1144 15652 +15654 2 -60.081560378938605 -1245.1146594320662 51.315 0.1144 15653 +15655 2 -60.50448562296856 -1246.1655319447727 51.6438 0.1144 15654 +15656 2 -60.958911800718454 -1247.2088870659925 51.9378 0.1144 15655 +15657 2 -61.414222734003374 -1248.2529034040022 52.2035 0.1144 15656 +15658 2 -61.870608347298685 -1249.297462938915 52.4468 0.1144 15657 +15659 2 -62.32699396059394 -1250.3420224738277 52.6753 0.1144 15658 +15660 2 -62.78332720807646 -1251.3866672015902 52.8962 0.1144 15659 +15661 2 -63.23908443161889 -1252.4322490507004 53.1152 0.1144 15660 +15662 2 -63.695831142321765 -1253.4783217309011 53.3336 0.1144 15661 +15663 2 -64.1515883658642 -1254.5239035800114 53.5506 0.1144 15662 +15664 2 -64.60734558940658 -1255.5694854291219 53.7692 0.1144 15663 +15665 2 -65.06373120270189 -1256.6140449640343 53.9851 0.1144 15664 +15666 2 -65.52051074044186 -1257.6602552028976 54.1937 0.1144 15665 +15667 2 -65.71664791260156 -1258.778551898635 54.4124 0.1144 15666 +15668 2 -65.03932592732184 -1259.696956247632 54.5997 0.1144 15667 +15669 2 -64.36556481730821 -1260.609567482843 54.9696 0.1144 15668 +15670 2 -78.3862453976219 -1139.7904413370013 44.8717 0.1144 8265 +15671 2 -78.85818365729995 -1140.8096985955244 45.3855 0.1144 15670 +15672 2 -78.8330386614698 -1141.899382319907 45.638 0.1144 15671 +15673 2 -78.59382025223795 -1143.01594472868 45.8304 0.1144 15672 +15674 2 -78.35589144954884 -1144.1306000677203 46.0502 0.1144 15673 +15675 2 -78.11694033266213 -1145.2446270170076 46.2994 0.1144 15674 +15676 2 -78.03890178775998 -1146.3743397616954 46.6077 0.1144 15675 +15677 2 -78.30971294031843 -1147.460713164191 47.0028 0.1144 15676 +15678 2 -78.68077856857343 -1148.5239614698692 47.4807 0.1144 15677 +15679 2 -79.04938610521293 -1149.5845250436037 48.0228 0.1144 15678 +15680 2 -79.4185805923554 -1150.6399325055177 48.6086 0.1144 15679 +15681 2 -79.78576327813994 -1151.6942207465884 49.2218 0.1144 15680 +15682 2 -80.15348916082746 -1152.7474343076487 49.8467 0.1144 15681 +15683 2 -80.52027792216728 -1153.8000718447693 50.4736 0.1144 15682 +15684 2 -80.88715187635682 -1154.8527617477025 51.1011 0.1144 15683 +15685 2 -81.25394063769659 -1155.9053992848226 51.7289 0.1144 15684 +15686 2 -81.62166652038411 -1156.9586128458832 52.3564 0.1144 15685 +15687 2 -81.98854047457371 -1158.0113027488164 52.9861 0.1144 15686 +15688 2 -82.3549353114687 -1159.0622895819863 53.6225 0.1144 15687 +15689 2 -82.83208825194629 -1160.0686710063942 54.245 0.1144 15688 +15690 2 -83.36271317448245 -1161.0514601198788 54.8559 0.1144 15689 +15691 2 -83.84164655259298 -1162.0549449873938 55.5108 0.1144 15690 +15692 2 -83.14268828857826 -1162.6350228055917 56.289 0.1144 15691 +15693 2 -82.16289943963898 -1163.1017586961066 57.171 0.1144 15692 +15694 2 -81.25480653846415 -1163.6943785851045 58.0577 0.1144 15693 +15695 2 -80.3741012887873 -1164.3320043242268 58.9252 0.1144 15694 +15696 2 -79.49027362912187 -1164.9745188828247 59.757 0.1144 15695 +15697 2 -78.60070211989984 -1165.6200761691912 60.5307 0.1144 15696 +15698 2 -77.70430115454815 -1166.2723519768954 61.2245 0.1144 15697 +15699 2 -77.69451559592108 -1166.2380482913447 61.7865 0.1144 15698 +15700 2 -77.45585327594813 -1165.346098479402 62.9188 0.1144 15699 +15701 2 -77.16258954871 -1164.2567230958512 63.3536 0.1144 15700 +15702 2 -77.23411829564031 -1163.1311082201664 63.6787 0.1144 15701 +15703 2 -77.57148187472467 -1162.0425933716192 63.873 0.1144 15702 +15704 2 -77.92669840183248 -1160.9557791837888 63.9719 0.1144 15703 +15705 2 -78.28094498055538 -1159.8682514133557 64.001 0.1144 15704 +15706 2 -78.30646338542937 -1158.727736590562 64.0452 0.1144 15705 +15707 2 -78.18014661027655 -1157.5919055809857 64.1528 0.1144 15706 +15708 2 -78.049100474785 -1156.4572758835193 64.3334 0.1144 15707 +15709 2 -78.20019994126568 -1155.330918990155 64.5826 0.1144 15708 +15710 2 -78.72888072965884 -1154.3224399799697 64.8519 0.1144 15709 +15711 2 -79.25841344654992 -1153.314484627912 65.1294 0.1144 15710 +15712 2 -79.78763743184618 -1152.3049309377166 65.3937 0.1144 15711 +15713 2 -80.31783136552718 -1151.2960908301238 65.6342 0.1144 15712 +15714 2 -80.90179611027213 -1150.334974824173 65.8437 0.1144 15713 +15715 2 -82.00208548334615 -1150.0283475333126 66.0114 0.1144 15714 +15716 2 -83.10268358801505 -1149.7233185805899 66.1242 0.1144 15715 +15717 2 -84.10707475043938 -1149.363027305586 66.1548 0.1144 15716 +15718 2 -83.6969346370451 -1148.3066320730213 65.9501 0.1144 15717 +15719 2 -83.10589567236707 -1147.339059842006 65.5984 0.1144 15718 +15720 2 -82.51934850113662 -1146.379648112913 65.0908 0.1144 15719 +15721 2 -81.85961276993982 -1145.563175862936 64.244 0.1144 15720 +15722 2 -81.02778617979885 -1145.1338056102 62.6416 0.1144 15721 +15723 2 -80.26056220428222 -1144.7064656736243 60.879 0.1144 15722 +15724 2 -79.76806743608296 -1143.88010654873 59.3872 0.1144 15723 +15725 2 -79.47781589426336 -1142.9913082743892 57.7744 0.1144 15724 +15726 2 -77.38824370188206 -1166.76686994079 61.6661 0.1144 15698 +15727 2 -76.77714938793139 -1167.7261000849458 61.9679 0.1144 15726 +15728 2 -76.16267629820999 -1168.6885355175896 62.1379 0.1144 15727 +15729 2 -75.54864949874604 -1169.6525364613337 62.2177 0.1144 15728 +15730 2 -75.00178749195891 -1170.657939224177 62.2401 0.1144 15729 +15731 2 -75.31037421836453 -1171.7594330109441 62.2303 0.1144 15730 +15732 2 -75.61744779948236 -1172.8612878951185 62.2174 0.1144 15731 +15733 2 -75.92603452588804 -1173.9627816818856 62.2017 0.1144 15732 +15734 2 -76.2330229141561 -1175.0645842002473 62.1832 0.1144 15733 +15735 2 -76.54160964056172 -1176.1660779870144 62.1622 0.1144 15734 +15736 2 -76.84868322167955 -1177.2679328711888 62.1387 0.1144 15735 +15737 2 -77.15726994808529 -1178.369426657956 62.1116 0.1144 15736 +15738 2 -77.46528065055082 -1179.4718575660709 62.0791 0.1144 15737 +15739 2 -77.77391974276924 -1180.5732661599877 62.0399 0.1144 15738 +15740 2 -78.08085576522456 -1181.6751538711997 61.9948 0.1144 15739 +15741 2 -77.51453084746976 -1182.0722991185967 60.8703 0.1144 15740 +15742 2 -77.08645881348923 -1182.9062148779653 59.9206 0.1144 15741 +15743 2 -77.28695873795056 -1184.0111120814604 59.5148 0.1144 15742 +15744 2 -77.58713169823477 -1185.1087253348032 59.2301 0.1144 15743 +15745 2 -77.88805968037144 -1186.2095024373848 59.0153 0.1144 15744 +15746 2 -78.60500726680527 -1187.0006902332377 58.7779 0.1144 15745 +15747 2 -79.6949847003267 -1186.769656221858 58.5435 0.1144 15746 +15748 2 -80.79202192972951 -1186.4704203829215 58.2436 0.1144 15747 +15749 2 -81.90013363176558 -1186.2276437864161 57.8656 0.1144 15748 +15750 2 -82.29788564055195 -1187.2845236469047 57.4904 0.1144 15749 +15751 2 -82.6935375535474 -1188.3469207166218 57.1113 0.1144 15750 +15752 2 -83.0883899038576 -1189.4087089353616 56.7342 0.1144 15751 +15753 2 -83.484041816853 -1190.4711060050784 56.3573 0.1144 15752 +15754 2 -83.87823295037333 -1191.533778979353 55.9714 0.1144 15753 +15755 2 -84.20134690738104 -1192.616030895862 55.5338 0.1144 15754 +15756 2 -84.32481708240698 -1193.7326224442263 55.0099 0.1144 15755 +15757 2 -84.44334607214466 -1194.846176775452 54.4407 0.1144 15756 +15758 2 -84.5608527476848 -1195.9591027169251 53.858 0.1144 15757 +15759 2 -84.67964902976763 -1197.0701215886656 53.2616 0.1144 15758 +15760 2 -84.79125137264134 -1198.1162674518532 52.1651 0.1144 15759 +15761 2 -78.85575791711148 -1182.4965653058662 61.8612 0.1144 15740 +15762 2 -79.64046585893789 -1183.3279950479578 61.745 0.1144 15761 +15763 2 -80.42520662780123 -1184.159562348712 61.6207 0.1144 15762 +15764 2 -81.30252330522791 -1184.8907434394885 61.5689 0.1144 15763 +15765 2 -82.212281831842 -1185.5842317402212 61.605 0.1144 15764 +15766 2 -83.12354489153131 -1186.2733627045855 61.712 0.1144 15765 +15767 2 -84.03419910024337 -1186.963293231635 61.8666 0.1144 15766 +15768 2 -84.94600535683577 -1187.6513495159888 62.0382 0.1144 15767 +15769 2 -85.8562984681401 -1188.339766897751 62.1981 0.1144 15768 +15770 2 -86.76792262523708 -1189.030411007403 62.3199 0.1144 15769 +15771 2 -87.66046918930539 -1189.7455992700093 62.3882 0.1144 15770 +15772 2 -87.96434678668447 -1190.8240089907608 62.2905 0.1144 15771 +15773 2 -88.20615033322201 -1191.9380959060782 62.0539 0.1144 15772 +15774 2 -88.44612417789676 -1193.0484757752547 61.7266 0.1144 15773 +15775 2 -88.68578929097669 -1194.157257306293 61.3539 0.1144 15774 +15776 2 -88.92514567246167 -1195.2644404991943 60.9756 0.1144 15775 +15777 2 -89.18338902996334 -1196.371260185641 60.6612 0.1144 15776 +15778 2 -89.49318017006192 -1197.4707945368627 60.5116 0.1144 15777 +15779 2 -89.80333240756823 -1198.5718420333721 60.485 0.1144 15778 +15780 2 -90.11191913397391 -1199.673335820139 60.5461 0.1144 15779 +15781 2 -90.42273258827015 -1200.7734985611137 60.6612 0.1144 15780 +15782 2 -90.73043766072385 -1201.8676423352067 60.9773 0.1144 15781 +15783 2 -69.30126508113011 -1148.3663678822181 42.2103 0.1144 3407 +15784 2 -70.4086022402231 -1148.3366307658175 42.7784 0.1144 15783 +15785 2 -71.39117081557805 -1148.8264958439 43.1964 0.1144 15784 +15786 2 -72.30703419446013 -1149.4928655019899 43.5898 0.1144 15785 +15787 2 -73.2194305031386 -1150.1690768786389 43.9306 0.1144 15786 +15788 2 -74.09054611418827 -1150.905954176556 44.1067 0.1144 15787 +15789 2 -74.91196726148769 -1151.699616862317 44.0468 0.1144 15788 +15790 2 -75.71975996186615 -1152.502274848769 43.7898 0.1144 15789 +15791 2 -76.5226443039935 -1153.3020331767448 43.4101 0.1144 15790 +15792 2 -77.32388886873349 -1154.0979664386925 42.9719 0.1144 15791 +15793 2 -78.12450504372055 -1154.894922014838 42.5306 0.1144 15792 +15794 2 -78.8816278213344 -1155.7429667716865 42.2223 0.1144 15793 +15795 2 -79.63125682444542 -1156.6053036012922 42.061 0.1144 15794 +15796 2 -80.37910538992344 -1157.4705369877913 42.0274 0.1144 15795 +15797 2 -81.12703914825124 -1158.3358227401031 42.0972 0.1144 15796 +15798 2 -81.80350662371484 -1159.253784392156 42.3069 0.1144 15797 +15799 2 -82.38764186597626 -1160.223803788224 42.6857 0.1144 15798 +15800 2 -82.97115182006803 -1161.1881567026055 43.1598 0.1144 15799 +15801 2 -83.72305750783585 -1162.0317034628401 43.596 0.1144 15800 +15802 2 -84.48062967729021 -1162.8746249349051 43.9799 0.1144 15801 +15803 2 -85.24041764807214 -1163.7204343516505 44.2837 0.1144 15802 +15804 2 -85.90618606054483 -1164.6493093006902 44.4312 0.1144 15803 +15805 2 -86.4771251179967 -1165.6407972949069 44.3876 0.1144 15804 +15806 2 -87.04571081545868 -1166.6294301714802 44.186 0.1144 15805 +15807 2 -87.61263719675742 -1167.6144607335377 43.86 0.1144 15806 +15808 2 -88.0887976551657 -1168.2334625573221 43.3913 0.1144 15807 +15809 2 -88.80850044571031 -1169.0572150403427 42.5838 0.1144 15808 +15810 2 -89.68201978196419 -1169.6786586252242 41.622 0.1144 15809 +15811 2 -90.5419787344178 -1170.3267464588512 40.6826 0.1144 15810 +15812 2 -91.33863839318417 -1171.08640798749 39.919 0.1144 15811 +15813 2 -92.14488030314465 -1171.8545418512294 39.277 0.1144 15812 +15814 2 -92.95962978428906 -1172.630604853166 38.7668 0.1144 15813 +15815 2 -94.31355308658635 -1172.4704892340142 38.3522 0.1144 15814 +15816 2 -95.44391443465406 -1172.307239508763 38.1962 0.1144 15815 +15817 2 -96.53106378285094 -1171.9912442007044 38.1004 0.1144 15816 +15818 2 -97.3677803944193 -1171.2701196608878 38.0372 0.1144 15817 +15819 2 -98.13877006833854 -1170.4374617643239 37.9845 0.1144 15818 +15820 2 -99.08821724089239 -1169.8125099369568 37.9221 0.1144 15819 +15821 2 -100.09746919616305 -1169.273970596906 37.8417 0.1144 15820 +15822 2 -101.09617205343784 -1168.719556543268 37.718 0.1144 15821 +15823 2 -102.17348788684001 -1168.5049202110665 37.4965 0.1144 15822 +15824 2 -103.27771455681773 -1168.7445380553727 37.2333 0.1144 15823 +15825 2 -104.39459731628511 -1168.957073185656 36.9919 0.1144 15824 +15826 2 -105.38656604333886 -1169.4579984241373 36.729 0.1144 15825 +15827 2 -105.95671243380826 -1170.4114373489956 36.4736 0.1144 15826 +15828 2 -106.45111188037862 -1171.4376928275342 36.2496 0.1144 15827 +15829 2 -106.85215126891967 -1172.5046926254904 36.0405 0.1144 15828 +15830 2 -106.67714224240399 -1173.5975720198603 35.7865 0.1144 15829 +15831 2 -106.19607013420477 -1174.6206422455598 35.4133 0.1144 15830 +15832 2 -106.47117287436112 -1175.6826560036432 35.0224 0.1144 15831 +15833 2 -106.71819110169815 -1176.7838670848457 34.5881 0.1144 15832 +15834 2 -106.66951505705839 -1177.9007570537674 34.0225 0.1144 15833 +15835 2 -106.5929544213605 -1179.012597311656 33.3931 0.1144 15834 +15836 2 -106.57203633567934 -1180.1303508281753 32.8065 0.1144 15835 +15837 2 -106.55369514873337 -1181.252505434663 32.2557 0.1144 15836 +15838 2 -106.08814216734322 -1182.2741984519234 31.7419 0.1144 15837 +15839 2 -105.8064656791085 -1183.3660715608403 31.2704 0.1144 15838 +15840 2 -105.77410212079678 -1184.4955707640688 30.8372 0.1144 15839 +15841 2 -105.75295508043718 -1185.6266823335807 30.4284 0.1144 15840 +15842 2 -105.7306036263846 -1186.759753338638 30.0336 0.1144 15841 +15843 2 -105.7088805620848 -1187.8918020294977 29.6531 0.1144 15842 +15844 2 -105.5841970822072 -1189.0210147330422 29.3056 0.1144 15843 +15845 2 -105.3182046905477 -1190.1265193904628 29.0086 0.1144 15844 +15846 2 -105.04753530436204 -1191.233140167144 28.7451 0.1144 15845 +15847 2 -104.77788823237404 -1192.3403893335776 28.499 0.1144 15846 +15848 2 -104.50824116038586 -1193.4476385000114 28.2554 0.1144 15847 +15849 2 -104.76042411175627 -1194.5534327706775 27.9558 0.1144 15848 +15850 2 -105.04985967138305 -1195.6511367275 27.5988 0.1144 15849 +15851 2 -105.38656614669168 -1196.7309445805392 27.1915 0.1144 15850 +15852 2 -105.76831680979137 -1197.794187375588 26.7493 0.1144 15851 +15853 2 -106.15666246371273 -1198.8533846674463 26.3026 0.1144 15852 +15854 2 -106.8479244621235 -1199.749568989756 25.9018 0.1144 15853 +15855 2 -107.60251557437158 -1200.5665950317618 25.2412 0.1144 15854 +15856 2 -92.99112350855467 -1172.7869465473232 38.5669 0.1144 15814 +15857 2 -93.2062068235503 -1173.8417652652129 37.7048 0.1144 15856 +15858 2 -93.43345100498527 -1174.950893865513 37.3436 0.1144 15857 +15859 2 -93.661662033222 -1176.0674248443001 37.0944 0.1144 15858 +15860 2 -93.88942677120127 -1177.1823903119866 36.8001 0.1144 15859 +15861 2 -94.11751116733836 -1178.2947351273378 36.4672 0.1144 15860 +15862 2 -94.38765489994074 -1179.3953708771369 36.0892 0.1144 15861 +15863 2 -94.73563336059703 -1180.4700171077259 35.6552 0.1144 15862 +15864 2 -95.11720502578453 -1181.5291589321887 35.1688 0.1144 15863 +15865 2 -95.49852032518982 -1182.5866172256638 34.6408 0.1144 15864 +15866 2 -95.8780911155821 -1183.6404208388103 34.0788 0.1144 15865 +15867 2 -96.25878112681761 -1184.692212650599 33.4916 0.1144 15866 +15868 2 -96.6033784026568 -1185.752690338947 32.87 0.1144 15867 +15869 2 -96.90400144731814 -1186.8211176808934 32.193 0.1144 15868 +15870 2 -97.51414503734372 -1187.6768311022856 31.4278 0.1144 15869 +15871 2 -98.52134095790399 -1188.0676225013808 30.7003 0.1144 15870 +15872 2 -99.59980123896895 -1188.331781397058 30.0224 0.1144 15871 +15873 2 -100.65133318065125 -1188.6920736612296 29.3768 0.1144 15872 +15874 2 -101.48191732120614 -1189.405328514321 28.7899 0.1144 15873 +15875 2 -102.08450176674347 -1190.3518260716323 28.3032 0.1144 15874 +15876 2 -102.73480651980299 -1191.2753042403774 27.8902 0.1144 15875 +15877 2 -103.74922651347435 -1191.6369651954715 27.5325 0.1144 15876 +15878 2 -104.87765135044413 -1191.5423666896177 27.2648 0.1144 15877 +15879 2 -105.94562350583163 -1191.1594147144083 27.0266 0.1144 15878 +15880 2 -107.0413580178448 -1191.3320703809336 26.7394 0.1144 15879 +15881 2 -108.17191207821907 -1191.2884327071738 26.3973 0.1144 15880 +15882 2 -109.18151041021474 -1190.7863769253809 26.0 0.1144 15881 +15883 2 -110.29103254419675 -1190.8775938328272 25.4756 0.1144 15882 +15884 2 -111.35558167277628 -1191.212316528264 24.8733 0.1144 15883 +15885 2 -112.45149828428481 -1191.3823843694913 24.2362 0.1144 15884 +15886 2 -113.49990821871955 -1191.0115884426282 23.5927 0.1144 15885 +15887 2 -114.47083970441508 -1190.6335475188048 22.4367 0.1144 15886 +15888 2 -87.98831834464016 -1167.693608791793 45.1665 0.1144 15807 +15889 2 -88.85764129540985 -1167.8761687470542 46.8664 0.1144 15888 +15890 2 -89.9126882634634 -1168.0909566312585 47.7128 0.1144 15889 +15891 2 -91.00659168854065 -1168.3080305048693 48.3451 0.1144 15890 +15892 2 -92.08960233203209 -1168.5668871178505 48.9807 0.1144 15891 +15893 2 -93.06975587683507 -1169.074048658792 49.6398 0.1144 15892 +15894 2 -94.01264380920878 -1169.6657073838896 50.2818 0.1144 15893 +15895 2 -94.92989370127918 -1170.3275297811358 50.6948 0.1144 15894 +15896 2 -96.00647293864199 -1170.6535659074766 51.002 0.1144 15895 +15897 2 -97.11844905636809 -1170.904637836626 51.2324 0.1144 15896 +15898 2 -98.23296063357958 -1171.1559770581207 51.3828 0.1144 15897 +15899 2 -99.32437203901969 -1171.495121074838 51.3075 0.1144 15898 +15900 2 -100.39723502018819 -1171.8686423508561 50.995 0.1144 15899 +15901 2 -101.46163969440244 -1172.2408380917113 50.521 0.1144 15900 +15902 2 -102.54909217457538 -1172.525314230194 50.0035 0.1144 15901 +15903 2 -103.64686141239389 -1172.7689447506532 49.495 0.1144 15902 +15904 2 -104.74805086523287 -1173.0135037802474 49.0162 0.1144 15903 +15905 2 -105.85188050918276 -1173.2581597164876 48.5887 0.1144 15904 +15906 2 -106.95753203001544 -1173.5040528934574 48.2059 0.1144 15905 +15907 2 -108.06580420318329 -1173.7502657285854 47.8568 0.1144 15906 +15908 2 -109.17506586351175 -1173.9969693948033 47.53 0.1144 15907 +15909 2 -110.28529747222501 -1174.2443866436242 47.2262 0.1144 15908 +15910 2 -111.39817237363229 -1174.4852120032065 46.9577 0.1144 15909 +15911 2 -112.52102483575152 -1174.688035148613 46.7743 0.1144 15910 +15912 2 -113.6460711987242 -1174.8893896895647 46.6567 0.1144 15911 +15913 2 -114.77151148614166 -1175.092394934467 46.5559 0.1144 15912 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8cf3256 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 606c33f..601e33f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +1,10 @@ [metadata] name = skeleton_keys -version = 0.0.1 +version = attr: skeleton_keys.__version__ [options] packages = find: +python_requires = >=3.9 install_requires = numpy scipy @@ -23,6 +24,8 @@ console_scripts = skelekeys-morph-features = skeleton_keys.cmds.process_morphology_features:console_script skelekeys-postprocess-features = skeleton_keys.cmds.postprocess_features:console_script skelekeys-profiles-from-swcs = skeleton_keys.cmds.depth_profiles_from_aligned_swcs:main + skelekeys-profiles-from-coords = skeleton_keys.cmds.depth_profiles_from_aligned_coords:console_script skelekeys-layer-aligned-swc = skeleton_keys.cmds.layer_aligned_swc:console_script + skelekeys-layer-aligned-coords = skeleton_keys.cmds.layer_aligned_coords:console_script skelekeys-upright-corrected-swc = skeleton_keys.cmds.upright_corrected_swc:console_script skelekeys-calc-histogram-loadings = skeleton_keys.cmds.calc_histogram_loadings:console_script \ No newline at end of file diff --git a/skeleton_keys/__init__.py b/skeleton_keys/__init__.py index e69de29..a68927d 100644 --- a/skeleton_keys/__init__.py +++ b/skeleton_keys/__init__.py @@ -0,0 +1 @@ +__version__ = "0.1.0" \ No newline at end of file diff --git a/skeleton_keys/cmds/calc_histogram_loadings.py b/skeleton_keys/cmds/calc_histogram_loadings.py index adf3ee1..6b4a074 100644 --- a/skeleton_keys/cmds/calc_histogram_loadings.py +++ b/skeleton_keys/cmds/calc_histogram_loadings.py @@ -54,7 +54,7 @@ class CalcHistogramLoadingsParameters(ags.ArgSchema): def main(args): # Load specimen IDs specimen_id_file = args["specimen_id_file"] - specimen_ids = np.loadtxt(specimen_id_file).astype(int) + specimen_ids = np.loadtxt(specimen_id_file, ndmin=1).astype(int) # Load depth profiles aligned_depth_profile_file = args["aligned_depth_profile_file"] diff --git a/skeleton_keys/cmds/depth_profiles_from_aligned_coords.py b/skeleton_keys/cmds/depth_profiles_from_aligned_coords.py new file mode 100644 index 0000000..b6dadde --- /dev/null +++ b/skeleton_keys/cmds/depth_profiles_from_aligned_coords.py @@ -0,0 +1,125 @@ +import os +import json +import argschema as ags +import numpy as np +import pandas as pd +from skeleton_keys.io import load_default_layer_template + + +class ProfilesFromAlignedCoordsParameters(ags.ArgSchema): + coordinate_file = ags.fields.InputFile( + description="File with specimen IDs on each line" + ) + depth_label = ags.fields.String( + default="y", + description="label of column with aligned depth values", + ) + index_label = ags.fields.String( + default=None, + allow_none=True, + description="label of column to split values across rows" + ) + hist_split_label = ags.fields.String( + default=None, + allow_none=True, + description="label of column to split values across multiple sets of columns" + ) + layer_depths_file = ags.fields.InputFile( + description="JSON file with layer depths; used to establish bins for profile histogram", + default=None, allow_none=True) + bin_size = ags.fields.Float(description="bin size, in microns", default=5.0) + below_wm = ags.fields.Float(description="extent below white matter to include, in microns", default=200.0) + output_hist_file = ags.fields.OutputFile( + description="output CSV file for depth profiles", + default="aligned_histograms_corrected.csv") + + + + +def main(args): + # Load the coordinates + coordinate_file = args['coordinate_file'] + coord_df = pd.read_csv(coordinate_file) + + + # Load the layer info + layer_depths_file = args['layer_depths_file'] + if layer_depths_file: + with open(layer_depths_file, "r") as f: + avg_layer_depths = json.load(f) + else: + avg_layer_depths = load_default_layer_template() + + # Set up bins for profile histograms + bin_size = args['bin_size'] + below_wm = args['below_wm'] + bottom_edge = avg_layer_depths["wm"] + below_wm + bins = np.arange(0, bottom_edge, bin_size) + + record_list = [] + + depth_label = args['depth_label'] + index_group_label = args['index_label'] + col_group_label = args['hist_split_label'] + + if index_group_label is None: + if col_group_label is None: + # Calculating a single histogram for all values + col_prefix = "bin" + names = [f"{col_prefix}_{i}" for i in range(len(bins) - 1)] + y_values = -coord_df[depth_label].values + hist_values, _ = np.histogram(y_values, bins=bins) + out_df = pd.DataFrame(hist_values, index=names).T + else: + names = [] + hist_list = [] + for col_ind, col_group in coord_df.groupby(col_group_label): + names += [f"{col_ind}_{i}" for i in range(len(bins) - 1)] + y_values = -col_group[depth_label].values + hist_values, _ = np.histogram(y_values, bins=bins) + hist_list.append(hist_values) + out_df = pd.DataFrame(np.hstack(hist_list), index=names).T + + else: + if col_group_label is None: + col_prefix = "bin" + names = [f"{col_prefix}_{i}" for i in range(len(bins) - 1)] + group_dict = {} + for row_ind, row_group in coord_df.groupby(index_group_label): + y_values = -row_group[depth_label].values + hist_values, _ = np.histogram(y_values, bins=bins) + group_dict[row_ind] = hist_values + out_df = pd.DataFrame(group_dict, index=names).T.rename_axis(index_group_label).reset_index() + else: + group_dict = {} + all_col_names_in_order = [] + for cn, _ in coord_df.groupby(col_group_label): + all_col_names_in_order += [f"{cn}_{i}" for i in range(len(bins) - 1)] + + data_for_df = {} + for group_names, group_df in coord_df.groupby([index_group_label, col_group_label]): + ind_name = group_names[0] + if ind_name not in data_for_df: + data_for_df[ind_name] = {} + col_prefix = group_names[1] + + y_values = -group_df[depth_label].values + hist_values, _ = np.histogram(y_values, bins=bins) + names = [f"{col_prefix}_{i}" for i in range(len(hist_values))] + data_for_df[ind_name].update(dict(zip(names, hist_values))) + + out_df = pd.DataFrame(data_for_df).fillna(0).astype(int).T + out_df = out_df[all_col_names_in_order] + out_df = out_df.rename_axis(index_group_label).reset_index() + + out_df.to_csv(args['output_hist_file'], index=False) + + +def console_script(): + module = ags.ArgSchemaParser(schema_type=ProfilesFromAlignedCoordsParameters) + main(module.args) + + +if __name__ == "__main__": + module = ags.ArgSchemaParser(schema_type=ProfilesFromAlignedCoordsParameters) + main(module.args) diff --git a/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py b/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py index 5150b98..6f02680 100644 --- a/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py +++ b/skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py @@ -3,7 +3,7 @@ import numpy as np import pandas as pd import json -from skeleton_keys.io import load_swc_as_dataframe +from skeleton_keys.io import load_swc_as_dataframe, load_default_layer_template class ProfilesFromAlignedSwcsParameters(ags.ArgSchema): @@ -15,7 +15,7 @@ class ProfilesFromAlignedSwcsParameters(ags.ArgSchema): ) layer_depths_file = ags.fields.InputFile( description="JSON file with layer depths; used to establish bins for profile histogram", - default="avg_layer_depths.json") + default=None, allow_none=True) bin_size = ags.fields.Float(description="bin size, in microns", default=5.0) below_wm = ags.fields.Float(description="extent below white matter to include, in microns", default=200.0) output_hist_file = ags.fields.OutputFile( @@ -31,12 +31,15 @@ def main(): # Load the specimen IDs specimen_id_file = module.args['specimen_id_file'] - specimen_ids = np.loadtxt(specimen_id_file, dtype=int) + specimen_ids = np.loadtxt(specimen_id_file, dtype=int, ndmin=1) # Load the layer info layer_depths_file = module.args['layer_depths_file'] - with open(layer_depths_file, "r") as f: - avg_layer_depths = json.load(f) + if layer_depths_file: + with open(layer_depths_file, "r") as f: + avg_layer_depths = json.load(f) + else: + avg_layer_depths = load_default_layer_template() # Get directory with layer-aligned SWCs swc_dir = module.args['swc_dir'] @@ -89,4 +92,4 @@ def main(): if __name__ == "__main__": - main() \ No newline at end of file + main() diff --git a/skeleton_keys/cmds/layer_aligned_coords.py b/skeleton_keys/cmds/layer_aligned_coords.py new file mode 100644 index 0000000..5211368 --- /dev/null +++ b/skeleton_keys/cmds/layer_aligned_coords.py @@ -0,0 +1,194 @@ +import json +import logging +import numpy as np +import pandas as pd +import argschema as ags +from neuron_morphology.transforms.pia_wm_streamlines.calculate_pia_wm_streamlines import ( + run_streamlines, convert_path_str_to_list +) +from neuron_morphology.transforms.upright_angle.compute_angle import get_upright_angle +from neuron_morphology.transforms.affine_transform import ( + rotation_from_angle, + affine_from_transform_translation, + affine_from_translation, + AffineTransform, +) +from neuron_morphology.morphology import Morphology +from skeleton_keys.database_queries import ( + query_for_image_series_id, + swc_paths_from_database, + pia_wm_soma_from_database, + layer_polygons_from_database, + shrinkage_factor_from_database, + query_pinning_info, + determine_flip_switch, +) +from skeleton_keys.slice_angle import slice_angle_tilt +from skeleton_keys.drawings import ( + snap_hand_drawn_polygons, + convert_and_translate_snapped_to_microns, +) +from skeleton_keys.upright import corrected_without_uprighting_morph +from skeleton_keys.io import load_default_layer_template +from skeleton_keys.layer_alignment import layer_aligned_y_values, cortex_thickness_aligned_y_values + + +class LayerAlignedCoordsSchema(ags.ArgSchema): + coordinate_file = ags.fields.InputFile( + description="CSV file with three coordinate columns") + layer_depths_file = ags.fields.InputFile(default=None, allow_none=True) + output_file = ags.fields.OutputFile( + description="CSV file with adjusted coordinates", + default="output.csv") + coordinate_column_prefix = ags.fields.String( + description="common prefix for coordinate columns", + default="" + ) + coordinate_column_suffix = ags.fields.String( + description="common suffix for coordinate columns", + default="" + ) + surface_and_layers_file = ags.fields.InputFile( + description="JSON file with surface and layer polygon paths", + default=None, + allow_none=False, + ) + layer_list = ags.fields.List( + ags.fields.String, + description="List of layer names in order", + default=["Layer1", "Layer2/3", "Layer4", "Layer5", "Layer6a", "Layer6b"], + cli_as_single_argument=True, + ) + + +def main(args): + + # Get the path to the SWC file + coordinate_file = args["coordinate_file"] + + # Load the reference layer depths + layer_depths_file = args['layer_depths_file'] + if layer_depths_file: + with open(layer_depths_file, "r") as f: + avg_layer_depths = json.load(f) + else: + avg_layer_depths = load_default_layer_template() + + + layer_list = args["layer_list"] + + # Get pia, white matter, soma, and layers + surface_and_layers_file = args["surface_and_layers_file"] + with open(surface_and_layers_file, "r") as f: + surfaces_and_paths = json.load(f) + pia_surface = surfaces_and_paths["pia_path"] + wm_surface = surfaces_and_paths["wm_path"] + layer_polygons = surfaces_and_paths["layer_polygons"] + if "soma_path" in surfaces_and_paths: + soma_drawing = surfaces_and_paths["soma_path"] + else: + soma_drawing = None + + # Check that layer polygons exist + if len(layer_polygons) < 1: + logging.warning(f"No layer drawings found; will instead align to cortex depth") + no_layers = True + else: + no_layers = False + + # Load the coordinates + coord_df = pd.read_csv(coordinate_file) + + # Names of coordinate columns + prefix = args["coordinate_column_prefix"] + suffix = args["coordinate_column_suffix"] + coord_cols = [prefix + c + suffix for c in ["x", "y", "z"]] + + # Determine the streamline field and upright angle + + # Construct strings from paths + pia_path = ",".join(["{},{}".format(x, y) for x, y in pia_surface["path"]]) + wm_path = ",".join(["{},{}".format(x, y) for x, y in wm_surface["path"]]) + if soma_drawing is not None: + soma_path = ",".join(["{},{}".format(x, y) for x, y in soma_drawing["path"]]) + else: + soma_path = None + resolution = pia_surface["resolution"] + + logging.info(f"Calculating depth field") + depth_field, gradient_field, translation = run_streamlines( + pia_path, + wm_path, + resolution, + soma_path, + ) + + # Calculate rotation angle from the mean of the coordinates + if soma_path is not None: + logging.info("Using specified soma location in layer drawings file to determine upright angle") + upright_angle = get_upright_angle(gradient_field) + else: + logging.info("No soma location specified in layer drawings file; using coordinate centroid to determine upright angle") + upright_angle = get_upright_angle( + gradient_field, + coord_df[coord_cols].mean(axis=0).tolist(), + ) + + coords_to_transform = coord_df[coord_cols].values + + # Translate to correct location + print(coords_to_transform[:5, :]) + coords_to_transform[:, :2] = coords_to_transform[:, :2] + translation + print(coords_to_transform[:5, :]) + + # get aligned y-values for coordinates + if no_layers: + logging.info("Calculating cortex-thickness adjusted depths for all points") + y_values = cortex_thickness_aligned_y_values( + coords_to_transform[:, 0], coords_to_transform[:, 1], + avg_layer_depths, depth_field + ) + else: + # snap together hand-drawn layer borders and determine pia/wm sides + snapped_polys_surfs = snap_hand_drawn_polygons( + layer_polygons, pia_surface, wm_surface, layer_list + ) + + # convert to micron scale and translate to soma-centered depth field + snapped_polys_surfs = convert_and_translate_snapped_to_microns( + snapped_polys_surfs, resolution, translation + ) + + logging.info("Calculating layer-aligned depths for all points") + y_values = layer_aligned_y_values( + coords_to_transform[:, 0], coords_to_transform[:, 1], + avg_layer_depths, layer_list, depth_field, gradient_field, snapped_polys_surfs + ) + + + # upright the coordinates + rotation_upright_matrix = rotation_from_angle(upright_angle, axis=2) + rotation_upright_affine = affine_from_transform_translation( + transform=rotation_upright_matrix + ) + T_rotate = AffineTransform(rotation_upright_affine) + upright_coords = T_rotate.transform(coords_to_transform) + + # assign new y-values + new_coord_df = coord_df.copy() + new_coord_df[coord_cols] = upright_coords + new_coord_df[coord_cols[1]] = y_values + + # save to cvs + output_file = args["output_file"] + new_coord_df.to_csv(output_file, index=False) + + +def console_script(): + module = ags.ArgSchemaParser(schema_type=LayerAlignedCoordsSchema) + main(module.args) + + +if __name__ == "__main__": + module = ags.ArgSchemaParser(schema_type=LayerAlignedCoordsSchema) + main(module.args) diff --git a/skeleton_keys/cmds/layer_aligned_swc.py b/skeleton_keys/cmds/layer_aligned_swc.py index 2386e85..c81d29d 100644 --- a/skeleton_keys/cmds/layer_aligned_swc.py +++ b/skeleton_keys/cmds/layer_aligned_swc.py @@ -1,4 +1,5 @@ import json +import logging import numpy as np import pandas as pd import argschema as ags @@ -29,7 +30,8 @@ convert_and_translate_snapped_to_microns, ) from skeleton_keys.upright import corrected_without_uprighting_morph -from skeleton_keys.layer_alignment import layer_aligned_y_values +from skeleton_keys.io import load_default_layer_template +from skeleton_keys.layer_alignment import layer_aligned_y_values_for_morph, cortex_thickness_aligned_y_values_for_morph class LayerAlignedSwcSchema(ags.ArgSchema): @@ -37,7 +39,7 @@ class LayerAlignedSwcSchema(ags.ArgSchema): swc_path = ags.fields.InputFile( description="path to SWC file (optional)", default=None, allow_none=True ) - layer_depths_file = ags.fields.InputFile(default="avg_layer_depths.json") + layer_depths_file = ags.fields.InputFile(default=None, allow_none=True) output_file = ags.fields.OutputFile(default="output.swc") correct_for_shrinkage = ags.fields.Boolean( default=True, @@ -79,8 +81,13 @@ def main(args): swc_path = swc_paths_from_database([specimen_id])[specimen_id] # Load the reference layer depths - with open(args["layer_depths_file"], "r") as f: - avg_layer_depths = json.load(f) + layer_depths_file = args['layer_depths_file'] + if layer_depths_file: + with open(layer_depths_file, "r") as f: + avg_layer_depths = json.load(f) + else: + avg_layer_depths = load_default_layer_template() + layer_list = args["layer_list"] @@ -105,6 +112,13 @@ def main(args): # Query for layers layer_polygons = layer_polygons_from_database(imser_id) + # Check that layer polygons exist + if len(layer_polygons) < 1: + logging.warning(f"No layer drawings found for {specimen_id}; will instead align to cortex depth") + no_layers = True + else: + no_layers = False + # Load the morphology morph = morphology_from_swc(swc_path) @@ -116,6 +130,7 @@ def main(args): soma_path = ",".join(["{},{}".format(x, y) for x, y in soma_drawing["path"]]) resolution = pia_surface["resolution"] + logging.info(f"Calculating depth field for {specimen_id}") depth_field, gradient_field, translation = run_streamlines( pia_path, wm_path, @@ -127,11 +142,13 @@ def main(args): # Correct for shrinkage and/or slice angle if requested if args["correct_for_shrinkage"] or args["correct_for_slice_angle"]: if args["correct_for_shrinkage"]: + logging.info("Calculating shrinkage correction factor") shrink_factor = shrinkage_factor_from_database(morph, specimen_id) else: shrink_factor = 1 if args["correct_for_slice_angle"]: + logging.info("Determining slice angle") pin_df = pd.DataFrame.from_records(query_pinning_info()) slice_angle = slice_angle_tilt( pin_df, @@ -157,21 +174,27 @@ def main(args): T_translate = AffineTransform(translation_affine) T_translate.transform_morphology(morph) - # snap together hand-drawn layer borders and determine pia/wm sides - snapped_polys_surfs = snap_hand_drawn_polygons( - layer_polygons, pia_surface, wm_surface, layer_list - ) + # get aligned y-values for morph + if no_layers: + logging.info("Calculating cortex-thickness adjusted depths for all points") + y_value_info = cortex_thickness_aligned_y_values_for_morph( + morph, avg_layer_depths, depth_field + ) + else: + # snap together hand-drawn layer borders and determine pia/wm sides + snapped_polys_surfs = snap_hand_drawn_polygons( + layer_polygons, pia_surface, wm_surface, layer_list + ) - # convert to micron scale and translate to soma-centered depth field - snapped_polys_surfs = convert_and_translate_snapped_to_microns( - snapped_polys_surfs, resolution, translation - ) + # convert to micron scale and translate to soma-centered depth field + snapped_polys_surfs = convert_and_translate_snapped_to_microns( + snapped_polys_surfs, resolution, translation + ) - # get aligned y-values for morph - print("Calculating layer-aligned depths for all points") - y_value_info = layer_aligned_y_values( - morph, avg_layer_depths, depth_field, gradient_field, snapped_polys_surfs - ) + logging.info("Calculating layer-aligned depths for all points") + y_value_info = layer_aligned_y_values_for_morph( + morph, avg_layer_depths, layer_list, depth_field, gradient_field, snapped_polys_surfs + ) # upright the morphology rotation_upright_matrix = rotation_from_angle(upright_angle, axis=2) diff --git a/skeleton_keys/cmds/postprocess_features.py b/skeleton_keys/cmds/postprocess_features.py index 91fbd5f..30cfbe7 100644 --- a/skeleton_keys/cmds/postprocess_features.py +++ b/skeleton_keys/cmds/postprocess_features.py @@ -31,6 +31,14 @@ class PostprocessFeaturesParameters(ags.ArgSchema): default=False, description="Whether to drop number of apical dendrite stems features", ) + drop_neurite_radius_features = ags.fields.Boolean( + default=False, + description="Whether to drop features that are calculated using the radius of neurite compartments.", + ) + drop_soma_surface_area = ags.fields.Boolean( + default=False, + description="Whether to drop the soma surface area features", + ) drop_nans = ags.fields.Boolean( default=True, description="Whether to drop cells that have nan for any values", @@ -53,6 +61,8 @@ def main(args): drop_stem_exit = args["drop_stem_exit"] drop_bifurcation_angle = args["drop_bifurcation_angle"] drop_apical_n_stems = args["drop_apical_n_stems"] + drop_neurite_radius_features = args["drop_neurite_radius_features"] + drop_soma_surface_area = args["drop_soma_surface_area"] drop_nans = args['drop_nans'] if drop_stem_exit: @@ -65,6 +75,14 @@ def main(args): mask = ((morph_df["feature"].str.startswith("calculate_number_of_stems")) & (morph_df["compartment_type"] == "apical_dendrite")) morph_df = morph_df.loc[~mask, :] + if drop_neurite_radius_features: + mask = (morph_df["feature"].str.startswith("mean_diameter") | + morph_df["feature"].str.startswith("total_surface_area")) + morph_df = morph_df.loc[~mask, :] + if drop_soma_surface_area: + mask = ((morph_df["feature"].str.startswith("surface_area")) & + (morph_df["compartment_type"] == "soma")) + morph_df = morph_df.loc[~mask, :] # log-transform number of outer bifurcations mask = ((morph_df["feature"].str.startswith("num_outer"))) diff --git a/skeleton_keys/cmds/process_morphology_features.py b/skeleton_keys/cmds/process_morphology_features.py index 9ae47c5..2ce25b3 100644 --- a/skeleton_keys/cmds/process_morphology_features.py +++ b/skeleton_keys/cmds/process_morphology_features.py @@ -147,14 +147,13 @@ def analyze_depth_profiles(df, preexisting_file, output_file): def specimen_morph_features( - specimen_id, - swc_path, - layer_list, - analyze_axon, - analyze_apical_dendrite, - analyze_basal_dendrite, + specimen_id, + swc_path, + layer_list, + analyze_axon, + analyze_apical_dendrite, + analyze_basal_dendrite, ): - # Load the morphology and transform if necessary morph = morphology_from_swc(swc_path) @@ -164,7 +163,7 @@ def specimen_morph_features( fe_results = fe.extract(cell_data) # Determine compartments from which to keep features - compartments = [] + compartments = ["soma"] if analyze_axon: compartments.append("axon") if analyze_basal_dendrite: @@ -180,6 +179,8 @@ def specimen_morph_features( "max_euclidean_distance", "max_path_distance", "mean_contraction", + "num_outer_bifurcations", + "early_branch_path" ] dendrite_only_features = [ "total_surface_area", @@ -194,10 +195,16 @@ def specimen_morph_features( for fullname, value in long_results.items(): split_name = fullname.split(".") compartment_name = split_name[0] - if compartment_name not in compartments: + + # neuron_morphology assigns the calculate_soma_surface.name attribute to 'calculate_soma_surface' so + # split_name and compartment_name are = 'calculate_soma_surface' + if not any([c in compartment_name for c in compartments]): continue + if len(split_name) > 1: + primary_feature = split_name[1] + else: + primary_feature = split_name[0] - primary_feature = split_name[1] result = { "specimen_id": specimen_id, "feature": primary_feature, @@ -207,6 +214,12 @@ def specimen_morph_features( result["dimension"] = "none" result["value"] = value result_list.append(result) + elif primary_feature == "calculate_soma_surface": + result["dimension"] = "none" + result["value"] = value + result["feature"] = "surface_area" + result["compartment_type"] = "soma" + result_list.append(result) elif primary_feature == "soma_percentile": # soma percentile returned as a 2-tuple; split them into # separate entries for x & y @@ -218,9 +231,16 @@ def specimen_morph_features( result_y["dimension"] = "y" result_y["value"] = value[1] result_list += [result_x, result_y] + elif primary_feature == "moments_along_max_distance_projection" and ( + split_name[-1] == "mean" or split_name[-1] == "std"): + statistical_metric = split_name[-1] + result["feature"] = f"{statistical_metric}_{result['feature']}" + result["dimension"] = "none" + result["value"] = value + result_list.append(result) elif primary_feature in dendrite_only_features and compartment_name in ( - "basal_dendrite", - "apical_dendrite", + "basal_dendrite", + "apical_dendrite", ): result["dimension"] = "none" result["value"] = value @@ -248,6 +268,17 @@ def specimen_morph_features( result["value"] = value result_list.append(result) + if "early_branch_path" in long_results: + result_list.append( + { + "specimen_id": specimen_id, + "feature": "early_branch_path", + "compartment_type": "none", + "dimension": "none", + "value": long_results["early_branch_path"], + } + ) + if "basal_dendrite.calculate_stem_exit_and_distance" in long_results: stem_info = long_results["basal_dendrite.calculate_stem_exit_and_distance"] total_stems = len(stem_info) @@ -306,7 +337,7 @@ def specimen_morph_features( def main(args): # Load specimen IDs specimen_id_file = args["specimen_id_file"] - specimen_ids = np.loadtxt(specimen_id_file).astype(int) + specimen_ids = np.loadtxt(specimen_id_file, ndmin=1).astype(int) # Get paths to SWC files swc_paths_file = args["swc_paths_file"] diff --git a/skeleton_keys/database_queries.py b/skeleton_keys/database_queries.py index 71241a7..fdd4330 100644 --- a/skeleton_keys/database_queries.py +++ b/skeleton_keys/database_queries.py @@ -1,6 +1,7 @@ import os import logging import numpy as np +import pandas as pd import allensdk.internal.core.lims_utilities as lu from functools import partial from neuron_morphology.marker import read_marker_file @@ -21,6 +22,7 @@ def default_query_engine(): def query_for_swc_file(specimen_id, query_engine=None): + """Get an SWC file path for a specimen ID using the specified query engine""" if query_engine is None: query_engine = default_query_engine() @@ -44,6 +46,7 @@ def query_for_swc_file(specimen_id, query_engine=None): def query_for_image_series_id(specimen_id, query_engine=None): + """Get an image series ID for a specimen ID using the specified query engine""" if query_engine is None: query_engine = default_query_engine() @@ -65,7 +68,7 @@ def query_for_image_series_id(specimen_id, query_engine=None): def query_for_cortical_surfaces(focal_plane_image_series_id, specimen_id=None, query_engine=None): - """ Return the pia and white matter surface drawings for this image series + """ Return the pia and white matter surface drawings for an image series (and optionally specimen ID) """ if query_engine is None: query_engine = default_query_engine() @@ -106,7 +109,8 @@ def query_for_cortical_surfaces(focal_plane_image_series_id, specimen_id=None, q elif specimen_id is not None and item["biospecimen_id"] == specimen_id: results[item["name"]] = data elif len(results[item["name"]]["path"]) < len(data["path"]): - if specimen_id is not None and results[item["name"]]["biospecimen_id"] == specimen_id and item["biospecimen_id"] != specimen_id: + if specimen_id is not None and results[item["name"]]["biospecimen_id"] == specimen_id and item[ + "biospecimen_id"] != specimen_id: # don't replace if already have a match by ID (and this isn't also a match) pass else: @@ -116,7 +120,7 @@ def query_for_cortical_surfaces(focal_plane_image_series_id, specimen_id=None, q def query_for_soma_center(focal_plane_image_series_id, specimen_id, query_engine=None): - """ Return the soma center coordinates for this specimen + """ Return the soma center coordinates for an image series ID and specimen ID """ if query_engine is None: query_engine = default_query_engine() @@ -153,7 +157,7 @@ def query_for_soma_center(focal_plane_image_series_id, specimen_id, query_engine return { "name": item["name"], "path": path, - "center": np.asarray(path).mean(axis=0), + "center": np.asarray(path).mean(axis=0).tolist(), "resolution": resolution, } else: @@ -161,7 +165,7 @@ def query_for_soma_center(focal_plane_image_series_id, specimen_id, query_engine def query_marker_file(specimen_id, query_engine=None): - """ Return marker file path for specimen """ + """ Return the marker file path for a specimen ID""" if query_engine is None: query_engine = default_query_engine() @@ -180,7 +184,7 @@ def query_marker_file(specimen_id, query_engine=None): if len(results) > 0: return os.path.join(results[0]["storage_directory"], results[0]["filename"]) else: - raise ValueError(f"No marker file found for specimen ID {specimen_id}") + return None def query_cell_depth(specimen_id, query_engine=None): @@ -241,6 +245,7 @@ def query_for_layer_polygons(focal_plane_image_series_id, query_engine=None): def query_pinning_info(project_codes=["T301", "T301x", "mIVSCC-MET"], query_engine=None): + """Get the pinned CCF coordinates for a set of projects""" if query_engine is None: query_engine = default_query_engine() @@ -285,7 +290,7 @@ def swc_paths_from_database(specimen_ids): engine = default_query_engine() paths = {int(sp_id): query_for_swc_file(int(sp_id), engine) - for sp_id in specimen_ids} + for sp_id in specimen_ids} return paths @@ -317,35 +322,47 @@ def pia_wm_soma_from_database(specimen_id, imser_id): return pia_surface, wm_surface, soma_center + def shrinkage_factor_from_database(morph, specimen_id, cut_thickness=350.): """Determine shrinkage factor for morphology using database information Parameters ---------- + morph : Morphology + Neuronal morphology + cut_thickness : float, default 350. specimen_id : int Specimen ID + cut_thickness : float, default 350. + The cutting thickness (in microns) of the original slice. Used + as an upper limit to the calculated thickness or as a fallback value + if the thickness cannot be determined from the morphology and markers. Returns ------- - pia_path : str - Pia drawing path - wm_path : str - White matter drawing path - soma_path : str - Soma drawing path - resolution : float - Resolution of drawings + corrected_scale : float + The factor to multiply the z-dimension by to adjust for shrinkage """ engine = default_query_engine() cell_depth = query_cell_depth(specimen_id, engine) - if cell_depth == 0 and specimen_id == 992386952: # special case for missing LIMS entry - cell_depth = 40.0 + + # special cases for missing LIMS entry + special_cases = {992386952: 40.0, + 738006528: 50.0, + 848629140: 37.0, + 848672037: 61.0, + 701072075: 0} + if cell_depth == 0 and specimen_id in special_cases.keys(): + cell_depth = special_cases[specimen_id] marker_file = query_marker_file(specimen_id, engine) - markers = read_marker_file(marker_file) + if marker_file: + markers = read_marker_file(marker_file) + else: + markers = [] soma_marker = _identify_soma_marker(morph, markers) soma = morph.get_soma() - if (soma_marker is not None) and (cell_depth is not None): + if (soma_marker is not None) and (cell_depth != 0) and (cell_depth is not None): z_level = soma_marker["z"] fixed_depth = np.abs(soma["z"] - z_level) @@ -371,7 +388,7 @@ def shrinkage_factor_from_database(morph, specimen_id, cut_thickness=350.): def _identify_soma_marker(morph, markers, marker_tol=10.0): - soma_markers = [m for m in markers if m["name"] == 30] # 30 is the code for soma marker + soma_markers = [m for m in markers if m["name"] == 30] # 30 is the code for soma marker soma = morph.get_soma() if len(soma_markers) == 0: soma_marker = None @@ -446,13 +463,16 @@ def determine_flip_switch(morph, specimen_id, revised_marker_file=None, marker_t if specimen_id in revised_marker_paths["specimen_id"].tolist(): logging.debug("using revised markers for {:d}".format(specimen_id)) marker_path = revised_marker_paths.set_index("specimen_id").at[specimen_id, "revised_marker_path"] - markers = read_marker_file(marker_path) - info_list = [] + if marker_path: + markers = read_marker_file(marker_path) + else: + markers = [] + info_list = [] soma_marker = _identify_soma_marker(morph, markers, marker_tol=marker_tol) - flip_toggle = 1. # Assume "flipped" ie rostral surface on top by default + flip_toggle = 1. # Assume "flipped" ie rostral surface on top by default if soma_marker is not None: if (soma_marker["z"] - morph.get_soma()["z"]) > 0: print("cut surface is to the right!") @@ -461,7 +481,7 @@ def determine_flip_switch(morph, specimen_id, revised_marker_file=None, marker_t else: info_list.append("cut surface appears to be to the 'left' as is typical") else: - info_list.append("no soma marker to determine side of cut surface") + info_list.append("no soma marker to determine side of cut surface") flip_sql = f""" select distinct sp.id, sp.name, flip.name diff --git a/skeleton_keys/drawings.py b/skeleton_keys/drawings.py index e650bb5..f461a0d 100644 --- a/skeleton_keys/drawings.py +++ b/skeleton_keys/drawings.py @@ -79,6 +79,7 @@ def snap_hand_drawn_polygons( def convert_and_translate_snapped_to_microns(polys_surfs, res, translation): + """ Convert surfaces and layers from pixels to microns and translate to specified location""" surfs = [] for s in polys_surfs["surfaces"]: path_coords = np.asarray(s["path"]) diff --git a/skeleton_keys/feature_definition.py b/skeleton_keys/feature_definition.py index 098560a..1d80254 100644 --- a/skeleton_keys/feature_definition.py +++ b/skeleton_keys/feature_definition.py @@ -5,7 +5,10 @@ NEURITE_SPECIALIZATIONS, AxonSpec, BasalDendriteSpec, + ApicalDendriteSpec ) +from neuron_morphology.features.statistics.moments_along_max_distance_projection import \ + moments_along_max_distance_projection from neuron_morphology.features.statistics.coordinates import COORD_TYPE_SPECIALIZATIONS from neuron_morphology.features.dimension import dimension from neuron_morphology.features.intrinsic import ( @@ -17,10 +20,13 @@ max_euclidean_distance ) from neuron_morphology.features.path import ( - max_path_distance, mean_contraction + max_path_distance, mean_contraction, early_branch_path ) from neuron_morphology.features.soma import ( - soma_percentile, calculate_number_of_stems, calculate_stem_exit_and_distance + soma_percentile, calculate_number_of_stems, calculate_stem_exit_and_distance, calculate_soma_surface +) +from neuron_morphology.features.branching.bifurcations import ( + num_outer_bifurcations ) @@ -28,8 +34,8 @@ def default_features(): """ Get set of default morphology features for feature extractor""" return [ nested_specialize( - dimension, - [COORD_TYPE_SPECIALIZATIONS, NEURITE_SPECIALIZATIONS]), + dimension, + [COORD_TYPE_SPECIALIZATIONS, NEURITE_SPECIALIZATIONS]), specialize(num_branches, NEURITE_SPECIALIZATIONS), specialize(max_branch_order, NEURITE_SPECIALIZATIONS), specialize(total_length, NEURITE_SPECIALIZATIONS), @@ -40,5 +46,9 @@ def default_features(): specialize(mean_contraction, NEURITE_SPECIALIZATIONS), specialize(soma_percentile, NEURITE_SPECIALIZATIONS), specialize(calculate_number_of_stems, [BasalDendriteSpec]), - specialize(calculate_stem_exit_and_distance, [AxonSpec, BasalDendriteSpec]) + specialize(calculate_stem_exit_and_distance, [AxonSpec, BasalDendriteSpec]), + specialize(moments_along_max_distance_projection, [ApicalDendriteSpec]), + specialize(early_branch_path, [ApicalDendriteSpec]), + specialize(num_outer_bifurcations, [ApicalDendriteSpec]), + calculate_soma_surface, ] diff --git a/skeleton_keys/io.py b/skeleton_keys/io.py index 05e1e98..66cab98 100644 --- a/skeleton_keys/io.py +++ b/skeleton_keys/io.py @@ -1,4 +1,28 @@ import pandas as pd +from importlib.resources import files +import json +from skeleton_keys.database_queries import ( + query_for_image_series_id, + pia_wm_soma_from_database, + layer_polygons_from_database +) + +def load_default_layer_template(): + """ Load the default average cortical layer depth JSON file. + + Keys are strings representing cortical layers (e.g.'2/3','4'...) + Values represent the cortical depth for the top (pia side) of a given layer + + Returns + ------- + depths : dict + Dictionary of distances to the pia (in microns) from the upper side of each layer + """ + depth_file = files('skeleton_keys') / "test_files/avg_layer_depths.json" + + with open(depth_file, "r") as fn: + depths = json.load(fn) + return depths def load_swc_as_dataframe(swc_file): @@ -33,3 +57,47 @@ def load_swc_as_dataframe(swc_file): comment="#", names=["id", "type", "x", "y", "z", "r", "parent_id"], ) + + +def save_lims_surface_and_layers_to_json(json_file, specimen_id): + """ Save a set of databased surfaces and layers to a JSON file + + This function is only for users of the internal Allen Institute LIMS + database. + + It saves the databased surface and layer drawings to a JSON file in the + format expected by the ``skelekeys-layer-aligned-swc`` command line utility. + + Parameters + ---------- + json_file : str + Path to output JSON file + specimen_id : int + Specimen ID + """ + + # Query for image series ID + imser_id = query_for_image_series_id(specimen_id) + + # Query for pia, white matter, and soma + pia_surface, wm_surface, soma_drawing = pia_wm_soma_from_database( + specimen_id, imser_id + ) + + print(pia_surface) + print(pia_surface['path']) + print(type(pia_surface['path'])) + + # Query for layers + layer_polygons = layer_polygons_from_database(imser_id) + + output_data = { + "pia_path": pia_surface, + "wm_path": wm_surface, + "soma_path": soma_drawing, + "layer_polygons": layer_polygons, + } + + with open(json_file, "w") as out_f: + json.dump(output_data, out_f) + diff --git a/skeleton_keys/layer_alignment.py b/skeleton_keys/layer_alignment.py index cbab527..e5fb01f 100644 --- a/skeleton_keys/layer_alignment.py +++ b/skeleton_keys/layer_alignment.py @@ -1,35 +1,172 @@ import geopandas +import logging import shapely import shapely.vectorized import numpy as np from scipy.interpolate import RegularGridInterpolator from shapely.geometry import LineString from typing import Dict, List, Tuple, Optional -from neuron_morphology.layered_point_depths.__main__ import tuplize +from neuron_morphology.layered_point_depths.__main__ import tuplize, setup_interpolator +from tqdm import tqdm -def layer_aligned_y_values(morph, avg_layer_depths, - depth_field, gradient_field, snapped_polys_surfs): +def cortex_thickness_aligned_y_values_for_morph(morph, avg_layer_depths, + depth_field): + """Point depths for a morphology aligned to the full thickness of cortex. + + Layer-specific information is not used. Zero is pia, negative values are + below pia. + + Parameters + ---------- + morph : Morphology + Morphology object + avg_layer_depths : dict + Dictionary of distances from top of layer to pia (in microns) + depth_field : xarray DataArray + Data array of the depth field + + Returns + ------- + depths_dict : dict + Dictionary of node ids (keys) and cortex-thickness aligned depths (values) + + """ nodes_ids, nodes_x, nodes_y = zip(*[(n["id"], n["x"], n["y"]) for n in morph.nodes()]) - avg_side_depths = layer_side_depths(avg_layer_depths) + nodes_ids = np.array(nodes_ids) + nodes_x = np.array(nodes_x) + nodes_y = np.array(nodes_y) + + depths = cortex_thickness_aligned_y_values(nodes_x, nodes_y, + avg_layer_depths, depth_field) + + nan_mask = np.isnan(depths) + logging.info(f"NaN y-values: {np.sum(nan_mask)}") + return dict(zip(nodes_ids[~nan_mask], depths[~nan_mask])) + + + +def cortex_thickness_aligned_y_values(x, y, avg_layer_depths, + depth_field): + """Point depths for a x, y coordinates aligned to the full thickness of cortex. + + Layer-specific information is not used. Zero is pia, negative values are + below pia. + + Parameters + ---------- + x : array (n_points, ) + Array of x-coordinates + y : array (n_points, ) + Array of y-coordinates + avg_layer_depths : dict + Dictionary of distances from top of layer to pia (in microns) (must + include "wm" (white matter) as a key) + depth_field : xarray DataArray + Data array of the depth field + + Returns + ------- + depths : array + Array of cortex-thickness aligned depth coordinates + """ + + # Interpolators for navigating fields - gives nan values for points outside field + depth_interp = setup_interpolator( + depth_field, None, method="linear", + bounds_error=False, fill_value=None) + + pos = np.column_stack((x, y)) + rel_depths = depth_interp(pos) + + total_thickness = avg_layer_depths['wm'] + depths = -total_thickness * (1 - rel_depths) + + return depths + + +def layer_aligned_y_values_for_morph(morph, avg_layer_depths, layer_list, + depth_field, gradient_field, snapped_polys_surfs): + """Point depths for a morphology aligned to a set of layer thicknesses. + + Parameters + ---------- + morph : Morphology + Morphology object + avg_layer_depths : dict + Dictionary of distances from top of layer to pia (in microns) + layer_list : dict + List of layers + depth_field : xarray DataArray + Data array of the depth field + gradient_field : xarray DataArray + Data array of the depth field + snapped_polys_surfs : dict + Dictionary of surface and layer drawings + + Returns + ------- + y_values : dict + Dictionary of node ids (keys) and layer-aligned depths (values) + """ + + nodes_ids, nodes_x, nodes_y = zip(*[(n["id"], n["x"], n["y"]) for n in morph.nodes()]) nodes_ids = np.array(nodes_ids) nodes_x = np.array(nodes_x) nodes_y = np.array(nodes_y) + y_values_arr = layer_aligned_y_values(nodes_x, nodes_y, + avg_layer_depths, layer_list, + depth_field, gradient_field, snapped_polys_surfs + ) + + y_values = {n_id: y for n_id, y in zip(nodes_ids, y_values_arr) if not np.isnan(y)} + return y_values + + +def layer_aligned_y_values(x, y, avg_layer_depths, layer_list, + depth_field, gradient_field, snapped_polys_surfs): + """Point depths for a morphology aligned to a set of layer thicknesses. + + Parameters + ---------- + x : array (n_points, ) + Array of x-coordinates + y : array (n_points, ) + Array of y-coordinates + avg_layer_depths : dict + Dictionary of distances from top of layer to pia (in microns) + layer_list : dict + List of layers + depth_field : xarray DataArray + Data array of the depth field + gradient_field : xarray DataArray + Data array of the depth field + snapped_polys_surfs : dict + Dictionary of surface and layer drawings + + Returns + ------- + y_values : array (n_points, ) + Dictionary of node ids (keys) and layer-aligned depths (values) + """ + # Depths of each side of layers + avg_side_depths = layer_side_depths(avg_layer_depths, layer_list) + # Assign nodes to layers layer_containing_masks = layer_locations( - snapped_polys_surfs["polygons"], nodes_x, nodes_y) + snapped_polys_surfs["polygons"], x, y) # QC that most nodes are actually in layers running_total = 0 for k in layer_containing_masks: mask = layer_containing_masks[k] n_in_layer = np.sum(mask) - print(k, n_in_layer) + logging.info(f"{k}: {n_in_layer}") running_total += n_in_layer - print(running_total, "out of", len(layer_containing_masks[k]), "points located in layers") + logging.info(f"{running_total} out of {len(layer_containing_masks[k])} points located in layers") # Interpolators for navigating fields depth_interp = setup_interpolator_without_nan( @@ -45,10 +182,13 @@ def layer_aligned_y_values(morph, avg_layer_depths, # Find intersection with layer edges to calculate fraction within layer surfs_dict = {s["name"]: shapely.geometry.LineString(s["path"]) for s in snapped_polys_surfs["surfaces"]} - y_values = {} + all_pos = np.array([x, y]).T + y_values = np.zeros_like(y) + mask_inside_layers = np.zeros_like(y).astype(bool) for layer in layer_containing_masks: - print("processing points in", layer) + logging.info(f"processing points in {layer}") mask = layer_containing_masks[layer] + mask_inside_layers = mask_inside_layers | mask if np.sum(mask) == 0: continue @@ -57,56 +197,53 @@ def layer_aligned_y_values(morph, avg_layer_depths, pia_surf = surfs_dict[layer + "_pia"] wm_surf = surfs_dict[layer + "_wm"] - nodes = morph.nodes(node_ids=nodes_ids[mask]) - layer_fracs = nodes_fractions_within_layer(nodes, pia_surf, wm_surf, depth_interp, dx_interp, dy_interp) + pos = all_pos[mask, :] + layer_fracs = fractions_within_layer(pos, pia_surf, wm_surf, depth_interp, dx_interp, dy_interp) layer_y_values = -avg_pia_side - (avg_wm_side - avg_pia_side) * layer_fracs - layer_y_values = dict(zip( - [n['id'] for n in nodes], - layer_y_values - )) - - y_values.update(layer_y_values) + y_values[mask] = layer_y_values - ids_outside_layers = [i for i in nodes_ids if i not in y_values] + mask_outside_layers = ~mask_inside_layers pia_coords = list(surfs_dict["pia"].coords) wm_coords = list(surfs_dict["wm"].coords) pia = surfs_dict["pia"] wm = surfs_dict["wm"] pts_in_wm = 0 - print("processing points outside layers") - for node in morph.nodes(node_ids=ids_outside_layers): + logging.info("processing points outside layers") + outside_values = np.zeros_like(y_values[mask_outside_layers]) + for i, (pt_x, pt_y) in enumerate(all_pos[mask_outside_layers, :]): # check if it's within the wm - pia_tri = shapely.geometry.Polygon([pia_coords[0], pia_coords[-1], (node["x"], node["y"])]) - wm_tri = shapely.geometry.Polygon([wm_coords[0], wm_coords[-1], (node["x"], node["y"])]) - node_pt = shapely.geometry.Point((node["x"], node["y"])) + pia_tri = shapely.geometry.Polygon([pia_coords[0], pia_coords[-1], (pt_x, pt_y)]) + wm_tri = shapely.geometry.Polygon([wm_coords[0], wm_coords[-1], (pt_x, pt_y)]) + node_pt = shapely.geometry.Point((pt_x, pt_y)) if pia_tri.intersection(wm_tri).area > 0 and (pia_tri.area > wm_tri.area): # likely below white matter border, but check if it's closer to wm than pia if pia.distance(node_pt) < wm.distance(node_pt): # not in white matter since closer to pia + outside_values[i] = np.nan continue elif wm.convex_hull.contains(node_pt): # in white matter, but where triangles don't overlap pass else: # not in white matter + outside_values[i] = np.nan continue pts_in_wm += 1 - y_values[node["id"]] = -avg_layer_depths["wm"] - node_pt.distance(wm) - - print("points in wm", pts_in_wm) - unassigned = len(nodes_ids) - pts_in_wm - running_total + outside_values[i] = -avg_layer_depths["wm"] - node_pt.distance(wm) + y_values[mask_outside_layers] = outside_values + logging.info(f"points in wm: {pts_in_wm}") + unassigned = len(y) - pts_in_wm - running_total if unassigned > 0: - print(f"{unassigned} points not assigned new y-value") + logging.info(f"{unassigned} points not assigned new y-value") - print(f"{np.sum(np.isnan([y for k, y in y_values.items()]))} NaN y-values") + logging.info(f"{np.sum(np.isnan(y_values))} NaN y-values") return y_values -def nodes_fractions_within_layer(nodes, pia_side_surf, wm_side_surf, +def fractions_within_layer(pos, pia_side_surf, wm_side_surf, depth_interp, dx_interp, dy_interp, step_size=1.0, max_iter=1000): - pos = np.array(list(zip(*[(n['x'], n['y']) for n in nodes]))).T depths = depth_interp(pos) local_pia_side_depths = step_all_nodes( @@ -129,44 +266,46 @@ def step_all_nodes(pos, depth_interp, dx_interp, dy_interp, surf, step_size, max surf_df = geopandas.GeoDataFrame({"name": ['surf'], "geometry": [surf]}) - for _ in range(max_iter): - dx = dx_interp(cur_pos) - dy = dy_interp(cur_pos) - base_step = np.vstack([dx, dy]).T - base_step = base_step / np.linalg.norm(base_step, axis=1)[:, np.newaxis] - step = step_size * adaptive_scale[:, np.newaxis] * base_step - step[finished] = 0 * step[finished] - next_pos = cur_pos + step - ray_list = [shapely.geometry.LineString([tuple(pos[i, :]), tuple(next_pos[i, :])]) for i in range(cur_pos.shape[0]) if not finished[i]] - ray_df = geopandas.GeoDataFrame({"ind": orig_ind[~finished], "geometry": ray_list}) - intersect_df = surf_df.sjoin(ray_df, how='inner', predicate='intersects') - - # handle matches - for ind in intersect_df['ind']: - if adaptive_scale[ind] > 1: - # Reduce scale and try again from same point - adaptive_scale[ind] /= 2 - next_pos[ind, :] = cur_pos[ind, :] - continue - ray = ray_df.set_index("ind").at[ind, "geometry"] - intersection = ray.intersection(surf) - if intersection.geom_type == "MultiPoint": - cur_pt = shapely.geometry.Point(cur_pos[ind, :]) - dist = np.inf - for test_pt in intersection: - test_dist = cur_pt.distance(test_pt) - if test_dist < dist: - dist = test_dist - closest_pt = test_pt - intersection_pt = list(closest_pt.coords) - else: - intersection_pt = list(intersection.coords) - depths_of_intersections[ind] = float(depth_interp(intersection_pt[0])) - finished[ind] = True - - if np.all(finished): - break - cur_pos = next_pos + with tqdm(total=pos.shape[0]) as pbar: + for _ in range(max_iter): + dx = dx_interp(cur_pos) + dy = dy_interp(cur_pos) + base_step = np.vstack([dx, dy]).T + base_step = base_step / np.linalg.norm(base_step, axis=1)[:, np.newaxis] + step = step_size * adaptive_scale[:, np.newaxis] * base_step + step[finished] = 0 * step[finished] + next_pos = cur_pos + step + ray_list = [shapely.geometry.LineString([tuple(pos[i, :]), tuple(next_pos[i, :])]) for i in range(cur_pos.shape[0]) if not finished[i]] + ray_df = geopandas.GeoDataFrame({"ind": orig_ind[~finished], "geometry": ray_list}) + intersect_df = surf_df.sjoin(ray_df, how='inner', predicate='intersects') + + # handle matches + n_already_finished = finished.sum() + for ind in intersect_df['ind']: + if adaptive_scale[ind] > 1: + # Reduce scale and try again from same point + adaptive_scale[ind] /= 2 + next_pos[ind, :] = cur_pos[ind, :] + continue + ray = ray_df.set_index("ind").at[ind, "geometry"] + intersection = ray.intersection(surf) + if intersection.geom_type == "MultiPoint": + cur_pt = shapely.geometry.Point(cur_pos[ind, :]) + dist = np.inf + for test_pt in intersection.geoms: + test_dist = cur_pt.distance(test_pt) + if test_dist < dist: + dist = test_dist + closest_pt = test_pt + intersection_pt = list(closest_pt.coords) + else: + intersection_pt = list(intersection.coords) + depths_of_intersections[ind] = float(depth_interp(intersection_pt[0])) + finished[ind] = True + pbar.update(finished.sum() - n_already_finished) + if np.all(finished): + break + cur_pos = next_pos return depths_of_intersections diff --git a/skeleton_keys/plotting.py b/skeleton_keys/plotting.py index b3f1654..ca949ec 100644 --- a/skeleton_keys/plotting.py +++ b/skeleton_keys/plotting.py @@ -3,18 +3,23 @@ def plot_cortical_cell(ax, sk, ld=None, title=None): - """plot a cortical neuron according to ivscc style plot - - Args: - ax (matplotlib.axes]): axes in which to put plot - sk (allensdk.core.swc.Morphology): skeleton file read with allensdk - assumes the skeleton has negative y values which get more - negative as the cell gets lower in cortex, and has - compartment labels with soma as 2 - ld (dict): dictionary of layer depths, where values are positive - indicating how below pia (assumed to be at zero) - layers are, note will be inverted for plotting purposes - title ([type]): what title to give the plot + """Plot a cortical neuron according to ivscc style plot + + Parameters + ---------- + ax : matplotlib.axes + Axes object in which to put plot + sk : allensdk.core.swc.Morphology + Morphology object skeleton read with allensdk. + Assumes pia is defined as y = 0 and that the skeleton has negative y + values which get more negative as the cell gets lower in cortex, and has + compartment labels with soma as 1, axon as 2, basal dendrite as 3, and + apical dendrite as 4. + ld : dict + Dictionary of layer distances, where values are positive + indicating distance of the top of the layer fom pia + title : str, optional + Title for the plot """ MORPH_COLORS = {3: "firebrick", 4: "salmon", 2: "steelblue"} for compartment, color in MORPH_COLORS.items(): @@ -46,6 +51,20 @@ def plot_cortical_cell(ax, sk, ld=None, title=None): def plot_layer_polygon(ax, surfaces_and_paths): + """Plot the surface and layer drawings + + Parameters + ---------- + ax : matplotlib.axes + Axes object in which to put plot + surfaces_and_paths : dictionary + Dictionary of surface and path dictionaries. The dictionary is expected + to have the keys 'pia_path', 'wm_path', 'soma_path', and 'layer_polygons'. + The '*_path' values are dictionaries that have 'resolution' and + 'path' elements, while 'layer_polygons' is a list of dictionaries that + also have 'path' elements. Each 'path' is a 2D array of coordinates. + + """ pia_surface = surfaces_and_paths["pia_path"] wm_surface = surfaces_and_paths["wm_path"] soma_drawing = surfaces_and_paths["soma_path"] diff --git a/skeleton_keys/test_files/4493.json b/skeleton_keys/test_files/4493.json new file mode 100644 index 0000000..1d3afe1 --- /dev/null +++ b/skeleton_keys/test_files/4493.json @@ -0,0 +1 @@ +{"layer_polygons": [{"name": "Layer6a", "path": [[402.776, 956.5], [508.56, 933.504], [587.524, 917.712], [788.136, 882.5], [914.32, 864.0600000000001], [1021.828, 848.352], [1189.364, 838.748], [1186.068, 988.556], [1023.696, 996.224], [836.236, 1010.16], [683.616, 1024.796], [548.424, 1040.128], [422.984, 1054.76]], "resolution": 1}, {"name": "Layer6b", "path": [[421.824, 1059.276], [547.056, 1046.32], [686.3240000000001, 1029.048], [832.956, 1013.7520000000001], [1024.384, 999.552], [1185.032, 991.136], [1184.24, 1016.604], [1038.332, 1022.7040000000001], [875.26, 1031.7640000000001], [713.5840000000001, 1047.792], [635.532, 1056.8600000000001], [537.968, 1070.092], [416.016, 1086.1200000000001]], "resolution": 1}, {"name": "Layer1", "path": [[372.38, 357.576], [517.904, 334.42], [686.264, 321.176], [785.188, 311.344], [906.48, 298.588], [1043.568, 290.116], [1155.244, 286.264], [1153.704, 367.904], [1048.96, 374.064], [952.688, 380.996], [847.176, 389.468], [737.812, 401.02], [656.944, 408.724], [549.888, 418.736], [477.492, 424.896], [366.588, 428.748]], "resolution": 1}, {"name": "Layer4", "path": [[378.432, 708.808], [452.208, 699.3480000000001], [591.5600000000001, 681.692], [758.016, 656.596], [878.384, 636.42], [946.82, 624.952], [1091.696, 609.736], [1180.984, 603.856], [1183.032, 664.04], [1087.184, 670.344], [985.664, 681.064], [859.552, 701.24], [730.916, 715.744], [630.6560000000001, 728.988], [561.924, 739.7040000000001], [377.8, 766.82]], "resolution": 1}, {"name": "Layer5", "path": [[377.688, 771.1320000000001], [460.568, 757.552], [564.452, 743.952], [629.948, 733.428], [731.644, 718.828], [866.136, 705.004], [988.852, 687.504], [1088.508, 677.052], [1176.08, 670.064], [1188.808, 832.4], [1025.088, 842.908], [855.052, 868.696], [786.756, 878.452], [678.044, 898.66], [586.7520000000001, 913.296], [402.776, 949.532]], "resolution": 1}, {"name": "Layer2/3", "path": [[365.81600000000003, 435.68], [474.136, 430.62], [565.292, 421.81600000000003], [659.696, 414.18], [747.052, 405.64], [849.96, 393.04], [956.54, 384.076], [1052.828, 378.212], [1152.164, 372.524], [1181.432, 598.956], [1090.968, 606.6560000000001], [945.94, 621.792], [758.66, 653.948], [590.3000000000001, 678.54], [449.052, 695.568], [377.168, 703.1320000000001]], "resolution": 1}], "pia_path": {"name": null, "path": [[371.34000000000003, 351.34000000000003], [521.048, 329.508], [696.744, 311.832], [905.62, 294.732], [1143.616, 278.688], [1279.972, 279.604]], "resolution": 1}, "soma_path": {"name": null, "path": [[822.792, 832.192], [825.08, 832.788], [827.232, 834.732], [828.468, 837.0], [827.9200000000001, 840.684], [826.432, 842.952], [822.836, 843.8000000000001], [820.2040000000001, 842.288], [818.556, 838.808], [820.2280000000001, 835.076]], "resolution": 1, "center": [823.9748, 838.0319999999999]}, "wm_path": {"name": null, "path": [[418.92400000000004, 1088.952], [538.744, 1072.888], [636.836, 1059.468], [712.212, 1050.692], [874.856, 1035.444], [1037.972, 1026.944], [1184.336, 1020.9200000000001]], "resolution": 1}} \ No newline at end of file diff --git a/skeleton_keys/test_files/4493.swc b/skeleton_keys/test_files/4493.swc new file mode 100644 index 0000000..abd8527 --- /dev/null +++ b/skeleton_keys/test_files/4493.swc @@ -0,0 +1,7704 @@ +#name +#comment +##n,type,x,y,z,radius,parent +1 1 824.056 838.908 976.842 1.000 -1 +2 3 823.920 837.836 976.514 1.000 1 +3 3 823.776 836.704 976.374 1.000 2 +4 3 823.632 835.572 976.206 1.000 3 +5 3 823.488 834.440 976.016 1.000 4 +6 3 823.344 833.308 975.811 1.000 5 +7 3 823.200 832.177 975.598 1.000 6 +8 3 823.055 831.045 975.377 1.000 7 +9 3 822.912 829.913 975.153 1.000 8 +10 3 822.701 828.797 974.915 1.000 9 +11 3 822.377 827.707 974.658 1.000 10 +12 3 822.427 826.610 974.383 1.000 11 +13 3 822.706 825.508 974.100 1.000 12 +14 3 822.593 824.376 973.826 1.000 13 +15 3 822.465 823.242 973.563 1.000 14 +16 3 822.900 823.143 973.308 1.000 15 +17 3 823.992 822.895 973.017 1.000 16 +18 3 824.426 822.030 972.720 1.000 17 +19 3 824.586 820.911 972.443 1.000 18 +20 2 824.277 820.213 972.219 1.000 19 +21 2 823.842 819.169 972.042 1.000 20 +22 2 823.709 818.037 972.006 1.000 21 +23 2 823.579 816.905 972.082 1.000 22 +24 2 823.678 815.784 972.272 1.000 23 +25 2 823.761 814.663 972.532 1.000 24 +26 2 823.699 813.529 972.801 1.000 25 +27 2 823.832 812.426 973.042 1.000 26 +28 2 824.279 811.375 973.210 1.000 27 +29 2 824.666 810.300 973.311 1.000 28 +30 2 824.992 809.204 973.344 1.000 29 +31 2 825.219 808.086 973.319 1.000 30 +32 2 825.394 806.962 973.249 1.000 31 +33 2 825.782 805.908 973.143 1.000 32 +34 2 826.018 804.793 972.997 1.000 33 +35 2 826.310 803.689 972.838 1.000 34 +36 2 826.601 802.585 972.670 1.000 35 +37 2 826.557 801.443 972.493 1.000 36 +38 2 826.510 800.302 972.308 1.000 37 +39 2 826.432 799.170 972.093 1.000 38 +40 2 826.435 798.035 971.866 1.000 39 +41 2 826.521 796.899 971.636 1.000 40 +42 2 826.752 795.790 971.415 1.000 41 +43 2 827.112 794.706 971.211 1.000 42 +44 2 827.198 793.589 971.020 1.000 43 +45 2 827.107 792.451 970.833 1.000 44 +46 2 827.152 791.309 970.656 1.000 45 +47 2 827.154 790.171 970.480 1.000 46 +48 2 826.944 789.052 970.281 1.000 47 +49 2 826.797 787.933 970.068 1.000 48 +50 2 826.956 786.809 969.842 1.000 49 +51 2 826.958 785.675 969.629 1.000 50 +52 2 826.848 784.537 969.450 1.000 51 +53 2 826.529 783.450 969.290 1.000 52 +54 2 826.106 782.387 969.150 1.000 53 +55 2 825.858 781.280 969.007 1.000 54 +56 2 825.675 780.155 968.856 1.000 55 +57 2 825.668 779.016 968.708 1.000 56 +58 2 825.636 777.880 968.562 1.000 57 +59 2 825.404 776.762 968.444 1.000 58 +60 2 825.256 775.629 968.363 1.000 59 +61 2 825.159 774.489 968.321 1.000 60 +62 2 825.071 773.350 968.282 1.000 61 +63 2 824.995 772.208 968.218 1.000 62 +64 2 824.897 771.069 968.122 1.000 63 +65 2 824.789 769.931 967.988 1.000 64 +66 2 824.671 768.802 967.786 1.000 65 +67 2 824.508 767.687 967.523 1.000 66 +68 2 824.261 766.589 967.212 1.000 67 +69 2 824.000 765.490 966.885 1.000 68 +70 2 823.685 764.393 966.594 1.000 69 +71 2 823.526 763.272 966.344 1.000 70 +72 2 823.505 762.128 966.148 1.000 71 +73 2 823.341 761.379 965.980 1.000 72 +74 2 823.320 760.241 965.790 1.000 73 +75 2 823.325 759.108 965.563 1.000 74 +76 2 823.534 758.014 965.297 1.000 75 +77 2 823.704 756.918 965.020 1.000 76 +78 2 823.667 755.785 964.737 1.000 77 +79 2 823.383 754.736 964.491 1.000 78 +80 2 823.369 753.594 964.289 1.000 79 +81 2 823.224 752.466 964.110 1.000 80 +82 2 823.074 751.338 963.950 1.000 81 +83 2 822.793 750.034 963.841 1.000 82 +84 2 822.534 748.923 963.869 1.000 83 +85 2 822.215 747.826 963.928 1.000 84 +86 2 821.961 746.716 964.004 1.000 85 +87 2 821.835 745.584 964.090 1.000 86 +88 2 821.792 744.790 964.113 1.000 87 +89 2 821.732 743.650 964.071 1.000 88 +90 2 821.660 742.511 963.987 1.000 89 +91 2 821.582 741.370 963.878 1.000 90 +92 2 821.210 740.329 963.768 1.000 91 +93 2 821.029 739.200 963.662 1.000 92 +94 2 820.663 738.119 963.556 1.000 93 +95 2 820.283 737.043 963.444 1.000 94 +96 2 819.929 735.956 963.351 1.000 95 +97 2 819.550 734.878 963.273 1.000 96 +98 2 819.125 733.837 963.189 1.000 97 +99 2 818.920 732.715 963.088 1.000 98 +100 2 818.704 731.591 963.001 1.000 99 +101 2 818.480 730.470 962.926 1.000 100 +102 2 818.244 729.352 962.870 1.000 101 +103 2 817.448 728.706 962.749 1.000 102 +104 2 816.847 727.817 962.573 1.000 103 +105 2 816.587 726.705 962.430 1.000 104 +106 2 816.270 725.606 962.332 1.000 105 +107 2 815.933 724.515 962.268 1.000 106 +108 2 815.514 723.450 962.228 1.000 107 +109 2 815.053 722.409 962.212 1.000 108 +110 2 814.769 721.300 962.206 1.000 109 +111 2 814.485 720.193 962.186 1.000 110 +112 2 814.197 719.085 962.150 1.000 111 +113 2 813.986 717.964 962.105 1.000 112 +114 2 813.860 716.828 962.055 1.000 113 +115 2 813.763 715.690 961.993 1.000 114 +116 2 813.673 714.552 961.920 1.000 115 +117 2 813.593 713.411 961.870 1.000 116 +118 2 813.478 712.274 961.845 1.000 117 +119 2 813.286 711.147 961.856 1.000 118 +120 2 812.905 710.074 961.895 1.000 119 +121 2 812.606 708.969 961.940 1.000 120 +122 2 812.391 707.850 961.990 1.000 121 +123 2 812.302 706.711 962.052 1.000 122 +124 2 812.238 705.570 962.147 1.000 123 +125 2 812.183 704.431 962.284 1.000 124 +126 2 812.091 703.298 962.469 1.000 125 +127 2 811.836 702.200 962.690 1.000 126 +128 2 811.506 701.107 962.920 1.000 127 +129 2 811.182 700.014 963.138 1.000 128 +130 2 810.987 698.901 963.346 1.000 129 +131 2 810.821 697.783 963.578 1.000 130 +132 2 810.590 696.670 963.810 1.000 131 +133 2 810.351 695.555 964.029 1.000 132 +134 2 810.104 694.440 964.225 1.000 133 +135 2 809.811 693.335 964.390 1.000 134 +136 2 809.492 692.237 964.519 1.000 135 +137 2 809.029 691.203 964.662 1.000 136 +138 2 808.672 690.117 964.785 1.000 137 +139 2 808.392 689.009 964.911 1.000 138 +140 2 808.122 687.900 965.040 1.000 139 +141 2 807.846 686.791 965.171 1.000 140 +142 2 807.598 685.677 965.294 1.000 141 +143 2 807.409 684.550 965.404 1.000 142 +144 2 807.232 683.421 965.499 1.000 143 +145 2 807.101 682.286 965.586 1.000 144 +146 2 806.990 681.149 965.644 1.000 145 +147 2 806.899 680.008 965.667 1.000 146 +148 2 806.719 678.880 965.656 1.000 147 +149 2 806.477 677.763 965.622 1.000 148 +150 2 806.259 676.643 965.544 1.000 149 +151 2 806.044 675.522 965.429 1.000 150 +152 2 805.791 674.407 965.294 1.000 151 +153 2 805.545 673.292 965.154 1.000 152 +154 2 805.368 672.162 965.028 1.000 153 +155 2 805.242 671.028 964.894 1.000 154 +156 2 805.160 669.890 964.734 1.000 155 +157 2 805.163 668.752 964.552 1.000 156 +158 2 805.193 667.613 964.351 1.000 157 +159 2 805.203 666.483 964.121 1.000 158 +160 2 805.203 665.357 963.869 1.000 159 +161 2 805.203 664.217 963.662 1.000 160 +162 2 805.161 663.080 963.514 1.000 161 +163 2 804.969 661.954 963.460 1.000 162 +164 2 804.801 660.825 963.491 1.000 163 +165 2 804.963 659.744 963.600 1.000 164 +166 2 805.314 658.716 963.757 1.000 165 +167 2 805.325 657.576 963.948 1.000 166 +168 2 805.263 656.438 964.146 1.000 167 +169 2 805.151 655.300 964.345 1.000 168 +170 2 805.048 654.162 964.541 1.000 169 +171 2 804.740 653.073 964.740 1.000 170 +172 2 804.668 651.942 964.981 1.000 171 +173 2 804.644 650.809 965.250 1.000 172 +174 2 804.756 649.676 965.530 1.000 173 +175 2 804.830 648.544 965.821 1.000 174 +176 2 804.745 647.414 966.129 1.000 175 +177 2 804.781 646.281 966.434 1.000 176 +178 2 804.867 645.146 966.722 1.000 177 +179 2 805.063 644.065 966.991 1.000 178 +180 2 805.176 642.939 967.271 1.000 179 +181 2 805.344 641.809 967.512 1.000 180 +182 2 805.517 640.680 967.722 1.000 181 +183 2 805.859 639.598 967.935 1.000 182 +184 2 806.113 638.500 968.142 1.000 183 +185 2 806.136 637.357 968.313 1.000 184 +186 2 806.081 636.218 968.447 1.000 185 +187 2 805.941 635.082 968.554 1.000 186 +188 2 805.866 633.942 968.624 1.000 187 +189 2 805.820 632.799 968.668 1.000 188 +190 2 805.783 631.656 968.713 1.000 189 +191 2 805.741 630.514 968.775 1.000 190 +192 2 805.464 629.407 968.859 1.000 191 +193 2 805.263 628.288 968.954 1.000 192 +194 2 805.254 627.144 969.038 1.000 193 +195 2 805.254 626.004 969.128 1.000 194 +196 2 805.283 624.869 969.245 1.000 195 +197 2 804.825 623.847 969.298 1.000 196 +198 2 804.766 622.706 969.352 1.000 197 +199 2 804.776 621.564 969.391 1.000 198 +200 2 804.838 620.422 969.410 1.000 199 +201 2 804.718 619.287 969.399 1.000 200 +202 2 804.619 618.150 969.366 1.000 201 +203 2 804.629 617.006 969.335 1.000 202 +204 2 804.588 615.866 969.304 1.000 203 +205 2 804.425 614.734 969.270 1.000 204 +206 2 804.336 613.597 969.234 1.000 205 +207 2 804.323 612.455 969.198 1.000 206 +208 2 804.424 611.322 969.209 1.000 207 +209 2 804.551 610.190 969.268 1.000 208 +210 2 804.738 609.064 969.346 1.000 209 +211 2 804.867 607.934 969.413 1.000 210 +212 2 804.867 606.792 969.433 1.000 211 +213 2 804.876 605.651 969.416 1.000 212 +214 2 804.910 604.507 969.380 1.000 213 +215 2 804.834 603.374 969.332 1.000 214 +216 2 804.600 602.254 969.287 1.000 215 +217 2 804.386 601.133 969.273 1.000 216 +218 2 804.178 600.010 969.298 1.000 217 +219 2 804.060 598.874 969.321 1.000 218 +220 2 803.967 597.733 969.332 1.000 219 +221 2 803.826 596.598 969.343 1.000 220 +222 2 803.758 595.461 969.349 1.000 221 +223 2 803.832 594.319 969.352 1.000 222 +224 2 803.872 593.178 969.338 1.000 223 +225 2 803.848 592.037 969.298 1.000 224 +226 2 803.979 590.908 969.259 1.000 225 +227 2 804.195 589.785 969.231 1.000 226 +228 2 804.376 588.455 969.189 1.000 227 +229 2 804.441 587.324 969.167 1.000 228 +230 2 804.258 586.198 969.102 1.000 229 +231 2 804.103 585.067 969.010 1.000 230 +232 2 804.004 583.927 968.906 1.000 231 +233 2 804.005 582.788 968.786 1.000 232 +234 2 804.075 581.648 968.643 1.000 233 +235 2 803.868 580.539 968.475 1.000 234 +236 2 803.610 579.433 968.293 1.000 235 +237 2 803.490 578.294 968.142 1.000 236 +238 2 803.371 577.157 968.005 1.000 237 +239 2 803.278 576.022 967.856 1.000 238 +240 2 803.048 574.934 967.719 1.000 239 +241 2 802.540 573.932 967.621 1.000 240 +242 2 802.301 572.816 967.523 1.000 241 +243 2 802.104 571.703 967.380 1.000 242 +244 2 801.994 570.589 967.240 1.000 243 +245 2 802.211 569.476 967.207 1.000 244 +246 2 802.118 568.351 967.173 1.000 245 +247 2 801.971 567.221 967.126 1.000 246 +248 2 802.177 566.130 967.140 1.000 247 +249 2 802.516 565.050 967.232 1.000 248 +250 2 802.527 563.910 967.352 1.000 249 +251 2 802.562 562.770 967.473 1.000 250 +252 2 802.657 561.632 967.557 1.000 251 +253 2 802.720 560.492 967.635 1.000 252 +254 2 802.750 559.353 967.728 1.000 253 +255 2 802.767 558.213 967.820 1.000 254 +256 2 802.767 557.068 967.898 1.000 255 +257 2 802.767 555.926 967.952 1.000 256 +258 2 802.768 554.783 967.980 1.000 257 +259 2 802.813 553.640 968.005 1.000 258 +260 2 802.831 552.497 968.030 1.000 259 +261 2 802.713 551.360 968.058 1.000 260 +262 2 802.694 550.223 968.106 1.000 261 +263 2 802.833 549.089 968.192 1.000 262 +264 2 802.842 547.950 968.296 1.000 263 +265 2 802.801 546.806 968.405 1.000 264 +266 2 802.796 545.665 968.540 1.000 265 +267 2 802.809 544.526 968.694 1.000 266 +268 2 802.847 543.399 968.890 1.000 267 +269 2 803.167 542.399 969.074 1.000 268 +270 2 802.967 541.333 969.206 1.000 269 +271 2 802.661 540.231 969.293 1.000 270 +272 2 802.634 539.089 969.326 1.000 271 +273 2 802.598 537.948 969.335 1.000 272 +274 2 802.554 536.805 969.352 1.000 273 +275 2 802.349 535.687 969.385 1.000 274 +276 2 802.041 534.584 969.441 1.000 275 +277 2 801.641 533.517 969.531 1.000 276 +278 2 801.212 532.459 969.654 1.000 277 +279 2 800.823 531.388 969.797 1.000 278 +280 2 800.641 530.267 969.973 1.000 279 +281 2 800.435 529.143 970.133 1.000 280 +282 2 800.309 528.019 970.270 1.000 281 +283 2 800.507 526.892 970.388 1.000 282 +284 2 800.668 525.761 970.502 1.000 283 +285 2 800.777 524.622 970.620 1.000 284 +286 2 801.132 523.975 970.780 1.000 285 +287 2 801.143 522.836 970.964 1.000 286 +288 2 801.181 521.696 971.158 1.000 287 +289 2 801.259 520.557 971.345 1.000 288 +290 2 801.425 519.430 971.522 1.000 289 +291 2 801.682 518.315 971.678 1.000 290 +292 2 801.791 517.183 971.830 1.000 291 +293 2 801.838 516.041 971.978 1.000 292 +294 2 801.584 514.935 972.138 1.000 293 +295 2 801.284 513.834 972.308 1.000 294 +296 2 801.563 512.734 972.488 1.000 295 +297 2 801.755 511.619 972.664 1.000 296 +298 2 801.745 510.475 972.818 1.000 297 +299 2 801.734 509.331 972.958 1.000 298 +300 2 801.722 508.188 973.092 1.000 299 +301 2 801.596 507.057 973.232 1.000 300 +302 2 801.389 505.935 973.392 1.000 301 +303 2 800.960 504.885 973.529 1.000 302 +304 2 800.616 503.814 973.720 1.000 303 +305 2 800.527 502.685 973.932 1.000 304 +306 2 800.483 501.546 974.148 1.000 305 +307 2 800.455 500.411 974.378 1.000 306 +308 2 800.465 499.274 974.596 1.000 307 +309 2 800.565 498.134 974.761 1.000 308 +310 2 800.700 496.999 974.893 1.000 309 +311 2 801.046 495.945 975.038 1.000 310 +312 2 801.383 494.910 975.220 1.000 311 +313 2 801.429 493.770 975.397 1.000 312 +314 2 801.444 492.629 975.579 1.000 313 +315 2 801.444 491.491 975.766 1.000 314 +316 2 801.296 490.363 975.948 1.000 315 +317 2 801.057 489.257 976.102 1.000 316 +318 2 800.626 488.223 976.178 1.000 317 +319 2 800.493 487.087 976.234 1.000 318 +320 2 800.422 485.945 976.290 1.000 319 +321 2 800.328 484.805 976.349 1.000 320 +322 2 800.182 483.672 976.419 1.000 321 +323 2 800.155 482.535 976.517 1.000 322 +324 2 800.214 481.395 976.648 1.000 323 +325 2 800.226 480.253 976.783 1.000 324 +326 2 800.226 479.109 976.917 1.000 325 +327 2 800.083 477.977 977.049 1.000 326 +328 2 799.889 476.852 977.189 1.000 327 +329 2 799.546 475.762 977.332 1.000 328 +330 2 799.252 474.663 977.483 1.000 329 +331 2 799.204 473.521 977.645 1.000 330 +332 2 799.153 472.385 977.844 1.000 331 +333 2 799.097 471.257 978.096 1.000 332 +334 2 799.039 470.121 978.359 1.000 333 +335 2 798.981 468.979 978.608 1.000 334 +336 2 799.391 467.959 978.880 1.000 335 +337 2 799.953 466.977 979.180 1.000 336 +338 2 800.196 466.599 979.462 1.000 337 +339 2 800.803 465.649 979.768 1.000 338 +340 2 801.538 464.798 980.092 1.000 339 +341 2 801.959 463.747 980.367 1.000 340 +342 2 802.334 462.666 980.591 1.000 341 +343 2 802.570 461.548 980.787 1.000 342 +344 2 802.768 460.425 980.980 1.000 343 +345 2 803.038 459.388 981.196 1.000 344 +346 2 803.961 458.721 981.425 1.000 345 +347 2 804.901 458.090 981.691 1.000 346 +348 2 805.445 457.134 981.974 1.000 347 +349 2 805.824 456.062 982.254 1.000 348 +350 2 806.159 454.973 982.520 1.000 349 +351 2 806.494 453.882 982.755 1.000 350 +352 2 806.827 452.788 982.954 1.000 351 +353 2 807.157 451.873 983.195 1.000 352 +354 2 807.364 450.869 983.394 1.000 353 +355 2 807.596 449.758 983.584 1.000 354 +356 2 807.905 448.663 983.783 1.000 355 +357 2 807.934 447.532 983.954 1.000 356 +358 2 807.879 446.389 984.094 1.000 357 +359 2 808.079 445.269 984.220 1.000 358 +360 2 808.333 444.153 984.348 1.000 359 +361 2 808.412 443.014 984.480 1.000 360 +362 2 808.527 441.881 984.631 1.000 361 +363 2 808.767 440.775 984.838 1.000 362 +364 2 809.240 439.774 985.096 1.000 363 +365 2 809.608 438.701 985.354 1.000 364 +366 2 809.809 437.589 985.611 1.000 365 +367 2 809.865 436.454 985.874 1.000 366 +368 2 809.785 435.323 986.121 1.000 367 +369 2 809.627 434.194 986.339 1.000 368 +370 2 809.638 433.054 986.516 1.000 369 +371 2 809.701 431.913 986.650 1.000 370 +372 2 810.047 430.834 986.812 1.000 371 +373 2 810.351 429.747 986.983 1.000 372 +374 2 810.375 428.605 987.126 1.000 373 +375 2 810.404 427.464 987.227 1.000 374 +376 2 810.436 426.321 987.274 1.000 375 +377 2 810.481 425.182 987.263 1.000 376 +378 2 810.540 424.050 987.193 1.000 377 +379 2 811.127 423.147 987.118 1.000 378 +380 2 811.833 422.263 987.120 1.000 379 +381 2 812.484 421.336 987.218 1.000 380 +382 2 813.101 420.383 987.386 1.000 381 +383 2 813.692 419.418 987.610 1.000 382 +384 2 814.299 418.449 987.812 1.000 383 +385 2 815.012 417.562 987.988 1.000 384 +386 2 815.808 416.747 988.154 1.000 385 +387 2 816.544 415.897 988.364 1.000 386 +388 2 817.365 415.111 988.574 1.000 387 +389 2 818.089 414.236 988.778 1.000 388 +390 2 818.737 413.307 988.966 1.000 389 +391 2 819.130 412.234 989.108 1.000 390 +392 2 819.967 411.460 989.187 1.000 391 +393 2 820.794 410.671 989.212 1.000 392 +394 2 821.638 409.902 989.184 1.000 393 +395 2 822.517 409.171 989.086 1.000 394 +396 2 823.164 408.241 988.907 1.000 395 +397 2 823.992 407.465 988.686 1.000 396 +398 2 824.483 406.446 988.420 1.000 397 +399 2 824.983 405.429 988.120 1.000 398 +400 2 825.600 404.479 987.804 1.000 399 +401 2 826.060 403.434 987.501 1.000 400 +402 2 826.469 402.369 987.210 1.000 401 +403 2 826.873 401.301 986.927 1.000 402 +404 2 827.130 400.209 986.602 1.000 403 +405 2 827.376 399.116 986.241 1.000 404 +406 2 827.740 398.065 985.852 1.000 405 +407 2 828.075 396.983 985.485 1.000 406 +408 2 828.227 395.851 985.186 1.000 407 +409 2 828.366 394.718 984.948 1.000 408 +410 2 828.477 393.581 984.766 1.000 409 +411 2 828.557 392.440 984.640 1.000 410 +412 2 828.605 391.297 984.561 1.000 411 +413 2 828.712 390.160 984.494 1.000 412 +414 2 828.843 389.024 984.427 1.000 413 +415 2 829.283 387.973 984.365 1.000 414 +416 2 829.742 386.925 984.309 1.000 415 +417 2 830.065 385.830 984.270 1.000 416 +418 2 830.359 384.725 984.250 1.000 417 +419 2 830.631 383.615 984.273 1.000 418 +420 2 830.894 382.504 984.329 1.000 419 +421 2 831.015 381.368 984.402 1.000 420 +422 2 831.157 380.235 984.472 1.000 421 +423 2 831.394 379.138 984.502 1.000 422 +424 2 832.032 378.253 984.550 1.000 423 +425 2 832.257 377.133 984.598 1.000 424 +426 2 832.396 376.000 984.631 1.000 425 +427 2 832.491 374.859 984.642 1.000 426 +428 2 832.597 373.721 984.637 1.000 427 +429 2 832.713 372.583 984.620 1.000 428 +430 2 832.818 372.308 984.578 1.000 429 +431 2 833.226 371.246 984.488 1.000 430 +432 2 833.862 370.333 984.407 1.000 431 +433 2 834.541 369.426 984.357 1.000 432 +434 2 835.130 368.447 984.326 1.000 433 +435 2 835.559 367.392 984.253 1.000 434 +436 2 836.227 366.488 984.127 1.000 435 +437 2 836.762 365.489 983.987 1.000 436 +438 2 837.257 364.462 983.847 1.000 437 +439 2 837.427 363.339 983.741 1.000 438 +440 2 837.742 362.262 983.682 1.000 439 +441 2 838.368 361.308 983.693 1.000 440 +442 2 839.034 360.381 983.780 1.000 441 +443 2 839.332 360.218 983.923 1.000 442 +444 2 840.301 359.690 984.169 1.000 443 +445 2 841.339 359.342 984.460 1.000 444 +446 2 842.108 358.689 984.735 1.000 445 +447 2 842.656 357.702 984.892 1.000 446 +448 2 843.300 356.772 984.861 1.000 447 +449 2 843.484 355.745 984.642 1.000 448 +450 2 843.376 354.658 984.259 1.000 449 +451 2 843.654 353.677 983.808 1.000 450 +452 2 844.297 352.849 983.360 1.000 451 +453 2 844.989 351.939 982.996 1.000 452 +454 2 845.685 351.036 982.696 1.000 453 +455 2 846.709 350.548 982.478 1.000 454 +456 2 847.798 350.209 982.332 1.000 455 +457 2 848.904 349.923 982.229 1.000 456 +458 2 849.616 349.705 982.078 1.000 457 +459 2 850.691 349.373 981.854 1.000 458 +460 2 851.510 348.615 981.602 1.000 459 +461 2 852.507 348.061 981.341 1.000 460 +462 2 853.484 347.475 981.089 1.000 461 +463 2 854.388 346.780 980.862 1.000 462 +464 2 855.278 346.091 980.624 1.000 463 +465 2 856.298 345.621 980.372 1.000 464 +466 2 857.320 345.156 980.157 1.000 465 +467 2 858.366 344.731 980.048 1.000 466 +468 2 859.439 344.347 979.958 1.000 467 +469 2 860.493 343.910 979.905 1.000 468 +470 2 861.554 343.501 979.902 1.000 469 +471 2 862.655 343.199 980.000 1.000 470 +472 2 863.649 342.657 980.165 1.000 471 +473 2 864.714 342.501 980.484 1.000 472 +474 2 865.813 342.504 980.862 1.000 473 +475 2 866.946 342.653 981.212 1.000 474 +476 2 868.041 342.499 981.532 1.000 475 +477 2 869.107 342.102 981.820 1.000 476 +478 2 870.091 341.549 982.080 1.000 477 +479 2 871.042 340.933 982.307 1.000 478 +480 2 872.070 340.483 982.456 1.000 479 +481 2 873.198 340.295 982.556 1.000 480 +482 2 874.293 339.999 982.607 1.000 481 +483 2 875.332 339.531 982.607 1.000 482 +484 2 876.453 339.670 982.582 1.000 483 +485 2 877.578 339.841 982.562 1.000 484 +486 2 878.701 339.787 982.649 1.000 485 +487 2 879.824 339.658 982.853 1.000 486 +488 2 880.869 339.317 983.198 1.000 487 +489 2 881.919 338.953 983.595 1.000 488 +490 2 882.797 338.242 984.024 1.000 489 +491 2 883.753 337.626 984.472 1.000 490 +492 2 884.477 336.758 984.948 1.000 491 +493 2 885.424 336.350 985.510 1.000 492 +494 2 886.498 336.047 986.104 1.000 493 +495 2 887.579 335.727 986.726 1.000 494 +496 2 888.666 335.430 987.384 1.000 495 +497 2 889.755 335.146 988.067 1.000 496 +498 2 890.699 334.614 988.784 1.000 497 +499 2 891.145 334.212 989.710 1.000 498 +500 2 891.508 333.856 990.783 1.000 499 +501 2 891.870 333.501 991.897 1.000 500 +502 2 892.097 333.514 992.519 1.000 501 +503 2 892.910 333.560 992.519 1.000 502 +504 2 893.725 333.604 992.037 1.000 503 +505 2 894.837 333.503 991.424 1.000 504 +506 2 895.962 333.396 990.791 1.000 505 +507 2 897.089 333.290 990.226 1.000 506 +508 2 898.217 333.216 989.811 1.000 507 +509 2 899.357 333.255 989.559 1.000 508 +510 2 900.496 333.290 989.430 1.000 509 +511 2 901.638 333.275 989.425 1.000 510 +512 2 902.727 332.988 989.520 1.000 511 +513 2 903.771 332.533 989.677 1.000 512 +514 2 904.664 332.031 989.976 1.000 513 +515 2 905.484 331.671 990.466 1.000 514 +516 2 906.329 331.354 990.993 1.000 515 +517 2 907.336 331.315 991.116 1.000 516 +518 2 908.342 331.275 990.923 1.000 517 +519 2 909.421 330.990 990.604 1.000 518 +520 2 910.443 330.592 990.209 1.000 519 +521 2 911.440 330.063 989.853 1.000 520 +522 2 912.492 329.616 989.604 1.000 521 +523 2 913.191 329.113 989.528 1.000 522 +524 2 914.137 328.487 989.565 1.000 523 +525 2 915.191 328.072 989.649 1.000 524 +526 2 916.313 327.912 989.766 1.000 525 +527 2 917.448 327.794 989.831 1.000 526 +528 2 918.587 327.690 989.822 1.000 527 +529 2 919.576 327.178 989.716 1.000 528 +530 2 920.509 326.533 989.503 1.000 529 +531 2 921.535 326.223 989.181 1.000 530 +532 2 922.611 326.428 988.781 1.000 531 +533 2 923.642 326.889 988.347 1.000 532 +534 2 924.714 327.255 987.890 1.000 533 +535 2 925.697 327.737 987.372 1.000 534 +536 2 926.608 328.317 986.807 1.000 535 +537 2 927.437 329.014 986.213 1.000 536 +538 2 928.459 329.471 985.678 1.000 537 +539 2 929.541 329.784 985.250 1.000 538 +540 2 930.601 329.704 984.945 1.000 539 +541 2 931.511 329.032 984.668 1.000 540 +542 2 932.470 328.445 984.413 1.000 541 +543 2 933.547 328.248 984.175 1.000 542 +544 2 934.681 328.390 983.970 1.000 543 +545 2 935.773 328.556 983.788 1.000 544 +546 2 936.912 328.486 983.676 1.000 545 +547 2 938.051 328.573 983.592 1.000 546 +548 2 939.192 328.667 983.520 1.000 547 +549 2 940.333 328.660 983.466 1.000 548 +550 2 941.457 328.605 983.382 1.000 549 +551 2 942.435 328.418 983.136 1.000 550 +552 2 943.552 328.174 982.884 1.000 551 +553 2 944.641 327.841 982.640 1.000 552 +554 2 945.757 327.746 982.299 1.000 553 +555 2 946.862 327.672 981.856 1.000 554 +556 2 947.980 327.648 981.366 1.000 555 +557 2 949.108 327.659 980.862 1.000 556 +558 2 950.188 327.566 980.300 1.000 557 +559 2 951.241 327.409 979.684 1.000 558 +560 2 952.358 327.305 979.135 1.000 559 +561 2 953.477 327.202 978.653 1.000 560 +562 2 954.619 327.134 978.306 1.000 561 +563 2 955.759 327.050 978.068 1.000 562 +564 2 956.891 326.890 977.908 1.000 563 +565 2 958.024 326.745 977.805 1.000 564 +566 2 959.162 326.628 977.746 1.000 565 +567 2 960.297 326.657 977.704 1.000 566 +568 2 961.427 326.826 977.651 1.000 567 +569 2 962.543 327.070 977.558 1.000 568 +570 2 963.656 327.326 977.416 1.000 569 +571 2 964.731 327.630 977.150 1.000 570 +572 2 965.811 327.926 976.791 1.000 571 +573 2 966.928 328.172 976.433 1.000 572 +574 2 968.033 328.447 976.074 1.000 573 +575 2 968.983 328.990 975.635 1.000 574 +576 2 969.920 329.456 975.058 1.000 575 +577 2 971.011 329.718 974.459 1.000 576 +578 2 972.112 329.909 973.834 1.000 577 +579 2 973.249 329.795 973.221 1.000 578 +580 2 974.375 329.733 972.572 1.000 579 +581 2 975.476 329.765 971.824 1.000 580 +582 2 976.466 329.796 970.917 1.000 581 +583 2 977.294 329.824 969.769 1.000 582 +584 2 978.160 329.863 968.475 1.000 583 +585 2 979.195 329.948 967.182 1.000 584 +586 2 980.237 330.028 965.927 1.000 585 +587 2 981.304 330.084 964.754 1.000 586 +588 2 982.371 330.140 963.668 1.000 587 +589 2 983.181 330.670 962.590 1.000 588 +590 2 984.222 331.034 961.610 1.000 589 +591 2 985.327 331.227 960.714 1.000 590 +592 2 986.423 331.421 959.862 1.000 591 +593 2 987.482 331.623 958.994 1.000 592 +594 2 988.536 331.826 958.110 1.000 593 +595 2 988.977 332.486 957.065 1.000 594 +596 2 989.952 332.854 956.066 1.000 595 +597 2 991.013 333.173 955.147 1.000 596 +598 2 992.073 333.491 954.318 1.000 597 +599 2 993.002 334.006 953.546 1.000 598 +600 2 993.812 334.712 952.843 1.000 599 +601 2 994.583 335.520 952.274 1.000 600 +602 2 995.623 335.984 951.804 1.000 601 +603 2 996.662 336.449 951.415 1.000 602 +604 2 997.728 336.816 951.096 1.000 603 +605 2 998.855 336.911 950.835 1.000 604 +606 2 999.971 336.755 950.578 1.000 605 +607 2 1001.093 336.649 950.314 1.000 606 +608 2 1002.200 336.444 950.116 1.000 607 +609 2 1003.297 336.146 950.012 1.000 608 +610 2 1004.406 335.968 949.976 1.000 609 +611 2 1005.546 336.018 949.900 1.000 610 +612 2 1006.688 336.067 949.780 1.000 611 +613 2 1007.808 336.195 949.578 1.000 612 +614 2 1008.911 336.251 949.278 1.000 613 +615 2 1010.003 336.151 948.889 1.000 614 +616 2 1011.098 336.195 948.497 1.000 615 +617 2 1012.197 336.510 948.203 1.000 616 +618 2 1013.204 337.043 948.013 1.000 617 +619 2 1014.199 337.602 947.926 1.000 618 +620 2 1015.147 338.224 947.909 1.000 619 +621 2 1016.070 338.744 947.909 1.000 620 +622 2 1017.212 338.781 947.909 1.000 621 +623 2 1018.354 338.829 947.853 1.000 622 +624 2 1019.497 338.848 947.741 1.000 623 +625 2 1020.626 338.753 947.559 1.000 624 +626 2 1021.703 338.838 947.285 1.000 625 +627 2 1022.777 339.190 946.946 1.000 626 +628 2 1023.497 338.380 946.551 1.000 627 +629 2 1024.621 338.322 946.145 1.000 628 +630 2 1025.678 338.600 945.686 1.000 629 +631 2 1026.699 339.091 945.207 1.000 630 +632 2 1027.623 339.726 944.728 1.000 631 +633 2 1028.371 340.551 944.199 1.000 632 +634 2 1028.955 341.319 943.480 1.000 633 +635 2 1030.016 341.477 942.696 1.000 634 +636 2 1031.000 341.253 941.853 1.000 635 +637 2 1032.057 341.046 941.035 1.000 636 +638 2 1033.157 340.906 940.288 1.000 637 +639 2 1034.201 341.206 939.632 1.000 638 +640 2 1035.227 341.652 939.075 1.000 639 +641 2 1036.262 342.132 938.655 1.000 640 +642 2 1037.292 342.625 938.339 1.000 641 +643 2 1038.260 343.206 938.090 1.000 642 +644 2 1039.337 343.592 937.882 1.000 643 +645 2 1040.382 344.024 937.625 1.000 644 +646 2 1041.422 344.462 937.303 1.000 645 +647 2 1042.295 345.180 936.964 1.000 646 +648 2 1043.009 346.057 936.558 1.000 647 +649 2 1043.845 346.772 936.082 1.000 648 +650 2 1044.844 347.220 935.516 1.000 649 +651 2 1045.836 347.678 934.878 1.000 650 +652 2 1046.782 348.247 934.212 1.000 651 +653 2 1047.578 349.005 933.562 1.000 652 +654 2 1048.323 349.824 932.946 1.000 653 +655 2 1049.165 350.510 932.352 1.000 654 +656 2 1050.105 351.099 931.224 1.000 655 +657 2 912.052 329.451 988.742 1.000 522 +658 2 911.585 328.779 987.146 1.000 657 +659 2 911.656 327.677 986.507 1.000 658 +660 2 911.193 326.890 985.670 1.000 659 +661 2 910.841 325.978 984.684 1.000 660 +662 2 910.616 324.976 983.668 1.000 661 +663 2 910.416 323.889 982.736 1.000 662 +664 2 909.952 322.877 981.851 1.000 663 +665 2 909.408 322.003 980.960 1.000 664 +666 2 909.023 321.223 979.994 1.000 665 +667 2 909.016 320.116 979.062 1.000 666 +668 2 909.006 319.010 978.138 1.000 667 +669 2 908.498 318.122 977.141 1.000 668 +670 2 907.844 317.402 976.097 1.000 669 +671 2 907.101 316.815 975.041 1.000 670 +672 2 906.763 315.773 974.022 1.000 671 +673 2 906.255 314.892 973.014 1.000 672 +674 2 905.200 314.530 972.031 1.000 673 +675 2 904.331 314.042 971.009 1.000 674 +676 2 903.844 313.295 969.844 1.000 675 +677 2 903.639 312.462 968.568 1.000 676 +678 2 903.233 311.825 967.212 1.000 677 +679 2 902.293 311.655 965.888 1.000 678 +680 2 901.199 311.415 964.771 1.000 679 +681 2 900.105 311.176 963.855 1.000 680 +682 2 899.018 310.868 963.150 1.000 681 +683 2 898.149 310.947 961.570 1.000 682 +684 2 891.741 333.569 996.296 1.000 501 +685 2 891.340 333.778 999.928 1.000 684 +686 2 890.939 333.983 1001.482 1.000 685 +687 2 890.593 333.938 1003.316 1.000 686 +688 2 890.177 333.960 1005.290 1.000 687 +689 2 889.324 334.385 1007.160 1.000 688 +690 2 888.813 335.079 1008.890 1.000 689 +691 2 888.457 336.008 1010.408 1.000 690 +692 2 888.004 336.961 1011.721 1.000 691 +693 2 887.528 337.915 1012.875 1.000 692 +694 2 887.003 338.875 1013.897 1.000 693 +695 2 886.578 339.878 1014.843 1.000 694 +696 2 886.594 340.879 1015.781 1.000 695 +697 2 886.623 341.908 1016.702 1.000 696 +698 2 886.336 342.991 1017.551 1.000 697 +699 2 886.039 344.067 1018.357 1.000 698 +700 2 885.699 345.113 1019.164 1.000 699 +701 2 885.376 346.158 1019.973 1.000 700 +702 2 885.297 347.221 1020.827 1.000 701 +703 2 885.250 348.300 1021.709 1.000 702 +704 2 885.240 349.397 1022.605 1.000 703 +705 2 885.282 350.492 1023.512 1.000 704 +706 2 885.438 351.574 1024.433 1.000 705 +707 2 885.621 352.608 1025.410 1.000 706 +708 2 885.700 353.614 1026.460 1.000 707 +709 2 885.511 354.433 1027.555 1.000 708 +710 2 884.493 354.671 1028.661 1.000 709 +711 2 883.483 354.896 1029.767 1.000 710 +712 2 882.475 355.139 1030.851 1.000 711 +713 2 881.475 355.607 1031.839 1.000 712 +714 2 880.563 356.179 1032.794 1.000 713 +715 2 879.666 356.783 1033.715 1.000 714 +716 2 878.952 357.486 1034.636 1.000 715 +717 2 878.566 358.318 1035.619 1.000 716 +718 2 878.067 359.057 1036.594 1.000 717 +719 2 876.987 359.311 1037.411 1.000 718 +720 2 876.328 360.177 1037.966 1.000 719 +721 2 875.778 361.179 1038.307 1.000 720 +722 2 875.238 362.187 1038.556 1.000 721 +723 2 848.652 349.824 982.951 1.000 457 +724 2 847.836 349.161 983.363 1.000 723 +725 2 847.180 348.230 983.531 1.000 724 +726 2 846.586 347.261 983.682 1.000 725 +727 2 845.932 346.371 983.805 1.000 726 +728 2 845.012 345.728 983.909 1.000 727 +729 2 844.002 345.200 983.914 1.000 728 +730 2 843.105 344.505 983.763 1.000 729 +731 2 843.010 343.630 983.380 1.000 730 +732 2 843.484 342.748 982.733 1.000 731 +733 2 844.111 342.037 981.870 1.000 732 +734 2 844.700 341.153 980.918 1.000 733 +735 2 845.115 340.530 979.793 1.000 734 +736 2 845.824 339.840 978.718 1.000 735 +737 2 846.577 339.140 977.763 1.000 736 +738 2 847.568 338.629 977.066 1.000 737 +739 2 848.395 337.860 976.688 1.000 738 +740 2 849.065 336.958 976.590 1.000 739 +741 2 849.661 336.003 976.713 1.000 740 +742 2 850.565 335.335 976.948 1.000 741 +743 2 849.597 334.929 977.634 1.000 742 +744 2 838.959 359.243 981.526 1.000 442 +745 2 838.939 358.180 980.728 1.000 744 +746 2 838.930 357.198 979.717 1.000 745 +747 2 838.938 356.277 978.516 1.000 746 +748 2 839.055 355.263 977.239 1.000 747 +749 2 839.172 354.250 975.929 1.000 748 +750 2 839.497 353.267 974.635 1.000 749 +751 2 840.139 352.442 973.361 1.000 750 +752 2 840.600 351.531 972.084 1.000 751 +753 2 840.944 350.558 970.777 1.000 752 +754 2 841.291 349.589 969.416 1.000 753 +755 2 841.667 348.669 967.985 1.000 754 +756 2 842.224 348.049 966.409 1.000 755 +757 2 842.390 347.594 964.687 1.000 756 +758 2 842.038 347.355 962.819 1.000 757 +759 2 841.967 346.630 960.963 1.000 758 +760 2 841.701 345.765 959.199 1.000 759 +761 2 841.936 345.328 957.667 1.000 760 +762 2 842.626 344.719 956.220 1.000 761 +763 2 843.467 344.271 954.828 1.000 762 +764 2 844.246 343.718 953.478 1.000 763 +765 2 845.108 343.289 952.157 1.000 764 +766 2 846.089 343.038 950.877 1.000 765 +767 2 847.013 342.530 949.670 1.000 766 +768 2 847.943 341.977 948.553 1.000 767 +769 2 848.880 341.437 947.498 1.000 768 +770 2 849.760 340.832 946.467 1.000 769 +771 2 850.709 340.346 945.437 1.000 770 +772 2 851.270 339.546 944.395 1.000 771 +773 2 851.565 338.515 943.328 1.000 772 +774 2 852.042 337.596 942.239 1.000 773 +775 2 852.401 336.858 941.030 1.000 774 +776 2 852.978 336.336 939.700 1.000 775 +777 2 853.933 336.024 938.454 1.000 776 +778 2 854.942 335.694 937.278 1.000 777 +779 2 856.012 335.454 936.211 1.000 778 +780 2 857.093 335.230 935.242 1.000 779 +781 2 858.034 334.736 934.332 1.000 780 +782 2 858.947 334.182 933.442 1.000 781 +783 2 859.938 334.056 932.534 1.000 782 +784 2 860.974 334.212 931.610 1.000 783 +785 2 862.007 334.542 930.737 1.000 784 +786 2 863.067 334.925 929.939 1.000 785 +787 2 864.141 335.046 929.166 1.000 786 +788 2 865.220 334.993 928.385 1.000 787 +789 2 866.006 334.432 927.629 1.000 788 +790 2 867.117 334.398 926.884 1.000 789 +791 2 868.128 334.637 926.097 1.000 790 +792 2 869.188 334.967 925.319 1.000 791 +793 2 870.211 335.306 924.512 1.000 792 +794 2 871.209 335.653 923.667 1.000 793 +795 2 872.302 335.701 922.858 1.000 794 +796 2 873.433 335.637 922.099 1.000 795 +797 2 874.485 335.635 921.290 1.000 796 +798 2 875.599 335.563 920.486 1.000 797 +799 2 876.672 335.439 919.635 1.000 798 +800 2 877.743 335.312 918.730 1.000 799 +801 2 878.818 335.470 917.781 1.000 800 +802 2 879.894 335.638 916.784 1.000 801 +803 2 880.933 335.478 915.712 1.000 802 +804 2 881.977 335.378 914.561 1.000 803 +805 2 883.038 335.503 913.352 1.000 804 +806 2 884.099 335.628 912.072 1.000 805 +807 2 884.876 335.410 910.596 1.000 806 +808 2 885.614 335.147 908.953 1.000 807 +809 2 886.333 334.928 907.200 1.000 808 +810 2 886.865 335.137 905.335 1.000 809 +811 2 887.397 335.346 903.423 1.000 810 +812 2 888.301 335.666 901.670 1.000 811 +813 2 889.231 336.077 900.105 1.000 812 +814 2 890.175 336.448 898.708 1.000 813 +815 2 891.195 336.558 897.453 1.000 814 +816 2 892.148 336.957 896.319 1.000 815 +817 2 893.217 337.118 895.317 1.000 816 +818 2 894.316 337.199 894.412 1.000 817 +819 2 895.411 337.266 893.570 1.000 818 +820 2 896.506 337.335 892.774 1.000 819 +821 2 897.601 337.402 892.013 1.000 820 +822 2 898.695 337.470 891.276 1.000 821 +823 2 898.952 337.557 890.621 1.000 822 +824 2 899.905 337.883 889.902 1.000 823 +825 2 900.938 338.030 889.202 1.000 824 +826 2 902.063 337.973 888.602 1.000 825 +827 2 903.204 337.952 888.132 1.000 826 +828 2 904.345 337.932 887.760 1.000 827 +829 2 905.365 337.489 885.245 1.000 828 +830 2 906.329 337.072 884.282 1.000 829 +831 2 907.293 336.878 883.103 1.000 830 +832 2 907.229 337.013 881.737 1.000 831 +833 2 907.026 337.004 880.169 1.000 832 +834 2 907.440 336.805 878.564 1.000 833 +835 2 908.230 336.672 875.344 1.000 834 +836 2 905.050 337.901 887.499 1.000 828 +837 2 906.192 337.851 887.320 1.000 836 +838 2 907.297 337.598 887.110 1.000 837 +839 2 908.400 337.332 886.864 1.000 838 +840 2 909.514 337.170 886.572 1.000 839 +841 2 910.615 336.974 886.248 1.000 840 +842 2 911.673 336.630 885.466 1.000 841 +843 2 852.717 336.299 938.944 1.000 776 +844 2 851.591 336.144 938.414 1.000 843 +845 2 850.472 336.104 938.216 1.000 844 +846 2 849.367 336.282 937.843 1.000 845 +847 2 848.310 336.081 937.292 1.000 846 +848 2 847.276 335.715 936.583 1.000 847 +849 2 846.297 335.281 935.721 1.000 848 +850 2 845.336 334.824 934.738 1.000 849 +851 2 844.876 334.677 933.528 1.000 850 +852 2 843.991 334.745 932.266 1.000 851 +853 2 842.953 334.739 931.050 1.000 852 +854 2 841.879 334.928 929.953 1.000 853 +855 2 840.805 335.117 928.967 1.000 854 +856 2 839.712 335.253 928.102 1.000 855 +857 2 838.771 334.984 927.335 1.000 856 +858 2 838.022 334.199 926.593 1.000 857 +859 2 837.557 333.199 925.966 1.000 858 +860 2 836.855 332.297 925.450 1.000 859 +861 2 836.148 331.405 925.014 1.000 860 +862 2 835.416 330.622 924.540 1.000 861 +863 2 835.086 330.770 923.182 1.000 862 +864 2 841.620 345.600 958.230 1.000 760 +865 2 841.140 344.627 957.418 1.000 864 +866 2 840.345 343.931 957.068 1.000 865 +867 2 839.334 343.427 956.707 1.000 866 +868 2 838.363 342.836 956.390 1.000 867 +869 2 837.384 342.248 956.136 1.000 868 +870 2 836.375 341.716 955.928 1.000 869 +871 2 835.335 341.256 955.741 1.000 870 +872 2 834.436 340.573 955.609 1.000 871 +873 2 833.434 340.030 955.522 1.000 872 +874 2 832.425 339.499 955.444 1.000 873 +875 2 831.534 338.794 955.279 1.000 874 +876 2 830.661 338.057 955.055 1.000 875 +877 2 829.718 337.427 954.738 1.000 876 +878 2 828.805 336.789 954.316 1.000 877 +879 2 828.019 336.130 953.725 1.000 878 +880 2 827.014 335.659 953.075 1.000 879 +881 2 825.975 335.255 952.412 1.000 880 +882 2 824.863 335.011 951.773 1.000 881 +883 2 823.818 334.596 951.115 1.000 882 +884 2 822.733 334.547 950.398 1.000 883 +885 2 821.695 334.866 949.637 1.000 884 +886 2 821.048 334.883 948.738 1.000 885 +887 2 821.365 334.165 947.668 1.000 886 +888 2 820.666 334.440 946.621 1.000 887 +889 2 819.779 335.151 945.776 1.000 888 +890 2 818.859 335.801 945.031 1.000 889 +891 2 817.864 336.236 944.356 1.000 890 +892 2 816.784 336.428 943.709 1.000 891 +893 2 815.691 336.572 943.079 1.000 892 +894 2 814.566 336.587 942.474 1.000 893 +895 2 813.470 336.640 941.858 1.000 894 +896 2 812.484 337.080 941.304 1.000 895 +897 2 811.413 337.275 940.769 1.000 896 +898 2 810.327 337.429 939.666 1.000 897 +899 2 832.456 372.334 984.866 1.000 429 +900 2 831.643 371.553 986.367 1.000 899 +901 2 831.431 370.538 987.056 1.000 900 +902 2 831.296 369.418 987.860 1.000 901 +903 2 831.159 368.298 988.784 1.000 902 +904 2 831.338 367.910 989.878 1.000 903 +905 2 831.771 367.277 991.281 1.000 904 +906 2 832.411 367.216 992.981 1.000 905 +907 2 833.054 367.135 994.896 1.000 906 +908 2 833.697 367.049 996.971 1.000 907 +909 2 834.341 366.963 999.130 1.000 908 +910 2 834.605 366.995 1001.342 1.000 909 +911 2 834.644 367.151 1003.548 1.000 910 +912 2 834.405 367.926 1005.603 1.000 911 +913 2 833.672 367.567 1007.490 1.000 912 +914 2 832.778 367.205 1009.168 1.000 913 +915 2 831.779 367.528 1010.621 1.000 914 +916 2 830.780 367.853 1011.909 1.000 915 +917 2 829.709 367.989 1013.051 1.000 916 +918 2 828.624 368.089 1014.101 1.000 917 +919 2 827.633 368.433 1015.146 1.000 918 +920 2 826.795 368.891 1016.212 1.000 919 +921 2 826.693 369.891 1017.327 1.000 920 +922 2 826.831 370.892 1018.458 1.000 921 +923 2 827.193 371.894 1019.572 1.000 922 +924 2 827.717 372.816 1020.673 1.000 923 +925 2 828.197 373.765 1021.756 1.000 924 +926 2 828.655 374.718 1022.823 1.000 925 +927 2 829.345 375.409 1023.940 1.000 926 +928 2 830.174 376.032 1025.024 1.000 927 +929 2 831.100 376.542 1026.094 1.000 928 +930 2 831.183 377.607 1027.132 1.000 929 +931 2 831.192 378.666 1028.149 1.000 930 +932 2 830.788 379.614 1029.179 1.000 931 +933 2 830.394 380.574 1030.204 1.000 932 +934 2 830.060 381.614 1031.178 1.000 933 +935 2 829.726 382.655 1032.111 1.000 934 +936 2 828.922 383.372 1033.007 1.000 935 +937 2 827.992 383.211 1033.900 1.000 936 +938 2 827.039 382.763 1034.804 1.000 937 +939 2 826.388 381.859 1035.644 1.000 938 +940 2 825.720 380.963 1036.445 1.000 939 +941 2 825.044 380.128 1037.243 1.000 940 +942 2 824.760 379.102 1038.092 1.000 941 +943 2 824.408 378.135 1038.974 1.000 942 +944 2 823.357 377.760 1039.842 1.000 943 +945 2 822.820 376.856 1040.768 1.000 944 +946 2 822.434 375.820 1041.715 1.000 945 +947 2 822.069 374.766 1042.686 1.000 946 +948 2 822.022 373.680 1043.725 1.000 947 +949 2 822.043 372.600 1044.845 1.000 948 +950 2 821.904 372.378 1046.321 1.000 949 +951 2 821.924 371.880 1047.998 1.000 950 +952 2 822.104 371.106 1049.756 1.000 951 +953 2 821.774 370.226 1051.448 1.000 952 +954 2 821.234 369.343 1053.032 1.000 953 +955 2 820.517 368.689 1054.558 1.000 954 +956 2 819.803 368.069 1056.026 1.000 955 +957 2 819.118 367.416 1057.462 1.000 956 +958 2 818.482 366.606 1058.837 1.000 957 +959 2 817.690 366.204 1060.217 1.000 958 +960 2 816.844 366.015 1061.612 1.000 959 +961 2 816.992 365.044 1062.950 1.000 960 +962 2 817.100 364.044 1064.207 1.000 961 +963 2 817.154 362.958 1065.324 1.000 962 +964 2 817.485 361.951 1066.341 1.000 963 +965 2 817.717 360.965 1067.312 1.000 964 +966 2 816.770 360.371 1068.074 1.000 965 +967 2 816.087 359.570 1068.754 1.000 966 +968 2 815.746 358.516 1069.471 1.000 967 +969 2 814.920 357.737 1070.213 1.000 968 +970 2 814.173 356.904 1071.042 1.000 969 +971 2 813.357 356.252 1072.047 1.000 970 +972 2 812.441 355.803 1073.279 1.000 971 +973 2 812.009 355.376 1074.780 1.000 972 +974 2 812.208 354.971 1076.586 1.000 973 +975 2 812.406 354.567 1078.608 1.000 974 +976 2 812.064 354.609 1080.727 1.000 975 +977 2 811.472 354.857 1082.864 1.000 976 +978 2 810.824 354.925 1084.938 1.000 977 +979 2 809.982 354.432 1086.834 1.000 978 +980 2 809.083 354.037 1088.573 1.000 979 +981 2 808.183 353.642 1090.202 1.000 980 +982 2 807.458 353.108 1091.793 1.000 981 +983 2 806.692 352.763 1093.383 1.000 982 +984 2 805.835 352.498 1094.968 1.000 983 +985 2 804.942 352.089 1096.505 1.000 984 +986 2 804.051 351.679 1097.998 1.000 985 +987 2 803.281 351.161 1099.468 1.000 986 +988 2 802.590 350.511 1100.890 1.000 987 +989 2 801.899 349.824 1102.245 1.000 988 +990 2 800.996 349.362 1103.514 1.000 989 +991 2 800.094 348.890 1104.709 1.000 990 +992 2 799.126 348.642 1105.787 1.000 991 +993 2 798.050 348.974 1106.686 1.000 992 +994 2 797.051 349.349 1107.526 1.000 993 +995 2 796.124 349.858 1108.324 1.000 994 +996 2 795.157 350.430 1108.990 1.000 995 +997 2 794.180 350.956 1109.564 1.000 996 +998 2 793.192 351.360 1110.124 1.000 997 +999 2 792.666 351.015 1110.922 1.000 998 +1000 2 830.931 367.497 986.381 1.000 903 +1001 2 830.650 366.518 985.376 1.000 1000 +1002 2 830.330 365.457 984.967 1.000 1001 +1003 2 829.593 364.894 984.558 1.000 1002 +1004 2 828.479 364.783 984.186 1.000 1003 +1005 2 827.435 364.354 983.898 1.000 1004 +1006 2 826.410 363.852 983.760 1.000 1005 +1007 2 825.722 363.071 983.822 1.000 1006 +1008 2 825.732 361.975 984.015 1.000 1007 +1009 2 826.276 360.978 984.343 1.000 1008 +1010 2 826.824 359.992 984.785 1.000 1009 +1011 2 827.412 359.094 985.390 1.000 1010 +1012 2 828.233 358.407 986.112 1.000 1011 +1013 2 828.934 357.582 986.882 1.000 1012 +1014 2 829.584 356.716 987.680 1.000 1013 +1015 2 830.291 355.965 988.529 1.000 1014 +1016 2 830.991 355.151 989.352 1.000 1015 +1017 2 831.710 354.306 990.086 1.000 1016 +1018 2 832.293 353.359 990.693 1.000 1017 +1019 2 832.594 352.259 991.206 1.000 1018 +1020 2 832.046 351.406 991.659 1.000 1019 +1021 2 831.554 350.455 992.082 1.000 1020 +1022 2 831.338 349.340 992.516 1.000 1021 +1023 2 831.012 348.250 993.000 1.000 1022 +1024 2 830.911 347.185 993.616 1.000 1023 +1025 2 830.995 346.141 994.395 1.000 1024 +1026 2 831.272 345.202 995.324 1.000 1025 +1027 2 831.807 344.404 996.366 1.000 1026 +1028 2 832.515 343.695 997.438 1.000 1027 +1029 2 832.972 342.789 998.474 1.000 1028 +1030 2 833.343 341.817 999.435 1.000 1029 +1031 2 833.504 341.819 1000.140 1.000 1030 +1032 2 834.632 341.791 1000.656 1.000 1031 +1033 2 835.578 341.174 1001.084 1.000 1032 +1034 2 836.595 340.703 1001.442 1.000 1033 +1035 2 837.625 340.268 1001.762 1.000 1034 +1036 2 838.561 339.656 1002.086 1.000 1035 +1037 2 839.355 338.884 1002.403 1.000 1036 +1038 2 840.234 338.219 1002.677 1.000 1037 +1039 2 840.961 337.455 1002.859 1.000 1038 +1040 2 841.333 336.376 1002.910 1.000 1039 +1041 2 841.812 335.344 1002.862 1.000 1040 +1042 2 842.263 334.307 1002.722 1.000 1041 +1043 2 842.683 333.275 1002.487 1.000 1042 +1044 2 843.464 332.494 1002.154 1.000 1043 +1045 2 844.361 331.808 1001.809 1.000 1044 +1046 2 845.307 331.185 1001.501 1.000 1045 +1047 2 846.277 330.595 1001.263 1.000 1046 +1048 2 847.061 329.766 1001.070 1.000 1047 +1049 2 847.659 328.843 1000.902 1.000 1048 +1050 2 848.029 327.799 1000.756 1.000 1049 +1051 2 848.834 327.000 1000.689 1.000 1050 +1052 2 849.756 326.333 1000.656 1.000 1051 +1053 2 850.697 325.693 1000.740 1.000 1052 +1054 2 851.687 325.161 1000.958 1.000 1053 +1055 2 852.733 324.754 1001.305 1.000 1054 +1056 2 853.682 324.143 1001.745 1.000 1055 +1057 2 854.633 323.532 1002.249 1.000 1056 +1058 2 855.667 323.076 1002.817 1.000 1057 +1059 2 856.712 322.640 1003.436 1.000 1058 +1060 2 857.766 322.256 1004.128 1.000 1059 +1061 2 858.666 321.752 1004.959 1.000 1060 +1062 2 859.470 320.994 1005.889 1.000 1061 +1063 2 860.259 320.622 1007.076 1.000 1062 +1064 2 861.026 320.294 1008.462 1.000 1063 +1065 2 861.763 319.885 1009.946 1.000 1064 +1066 2 862.486 319.414 1011.433 1.000 1065 +1067 2 863.206 318.933 1012.858 1.000 1066 +1068 2 863.625 318.234 1015.602 1.000 1067 +1069 2 833.180 341.165 1000.695 1.000 1030 +1070 2 832.903 340.059 1000.667 1.000 1069 +1071 2 832.535 338.988 1000.686 1.000 1070 +1072 2 831.786 338.314 1000.656 1.000 1071 +1073 2 830.685 338.069 1000.513 1.000 1072 +1074 2 829.561 338.178 1000.266 1.000 1073 +1075 2 828.438 338.241 999.933 1.000 1074 +1076 2 827.319 338.074 999.538 1.000 1075 +1077 2 826.208 337.965 999.099 1.000 1076 +1078 2 825.134 338.185 998.589 1.000 1077 +1079 2 824.052 338.287 998.080 1.000 1078 +1080 2 822.943 338.010 997.676 1.000 1079 +1081 2 821.903 337.633 997.273 1.000 1080 +1082 2 820.915 337.181 996.806 1.000 1081 +1083 2 819.885 336.823 996.324 1.000 1082 +1084 2 818.898 336.424 995.876 1.000 1083 +1085 2 818.016 335.737 995.478 1.000 1084 +1086 2 817.046 335.139 995.156 1.000 1085 +1087 2 816.396 334.341 994.896 1.000 1086 +1088 2 799.324 466.928 978.922 1.000 337 +1089 2 798.205 466.840 978.578 1.000 1088 +1090 2 797.649 466.087 978.440 1.000 1089 +1091 2 797.401 464.971 978.342 1.000 1090 +1092 2 797.211 463.845 978.247 1.000 1091 +1093 2 797.033 462.718 978.158 1.000 1092 +1094 2 796.961 461.577 978.096 1.000 1093 +1095 2 796.893 460.435 978.074 1.000 1094 +1096 2 796.839 459.293 978.099 1.000 1095 +1097 2 796.567 458.434 978.141 1.000 1096 +1098 2 796.534 457.296 978.253 1.000 1097 +1099 2 796.455 456.163 978.412 1.000 1098 +1100 2 796.233 455.043 978.594 1.000 1099 +1101 2 796.036 453.921 978.788 1.000 1100 +1102 2 795.871 452.794 978.986 1.000 1101 +1103 2 795.586 451.697 979.182 1.000 1102 +1104 2 795.198 450.627 979.370 1.000 1103 +1105 2 794.583 449.784 979.516 1.000 1104 +1106 2 794.609 448.640 979.608 1.000 1105 +1107 2 794.466 447.513 979.661 1.000 1106 +1108 2 794.217 446.397 979.686 1.000 1107 +1109 2 793.875 445.307 979.695 1.000 1108 +1110 2 793.499 444.228 979.700 1.000 1109 +1111 2 792.672 443.436 979.714 1.000 1110 +1112 2 792.207 442.410 979.762 1.000 1111 +1113 2 791.724 441.376 979.829 1.000 1112 +1114 2 791.217 440.351 979.910 1.000 1113 +1115 2 790.638 439.366 980.003 1.000 1114 +1116 2 790.175 438.325 980.109 1.000 1115 +1117 2 789.616 437.334 980.213 1.000 1116 +1118 2 788.936 436.426 980.300 1.000 1117 +1119 2 788.094 435.651 980.342 1.000 1118 +1120 2 787.466 434.696 980.353 1.000 1119 +1121 2 786.678 433.880 980.344 1.000 1120 +1122 2 786.047 432.969 980.316 1.000 1121 +1123 2 785.636 431.901 980.277 1.000 1122 +1124 2 785.047 430.925 980.210 1.000 1123 +1125 2 784.459 429.946 980.146 1.000 1124 +1126 2 783.845 428.983 980.095 1.000 1125 +1127 2 783.204 428.036 980.062 1.000 1126 +1128 2 782.382 427.244 980.017 1.000 1127 +1129 2 781.551 426.464 979.944 1.000 1128 +1130 2 780.743 425.664 979.838 1.000 1129 +1131 2 780.310 424.707 979.737 1.000 1130 +1132 2 780.340 423.563 979.670 1.000 1131 +1133 2 780.313 422.423 979.653 1.000 1132 +1134 2 780.290 421.283 979.664 1.000 1133 +1135 2 780.378 420.156 979.661 1.000 1134 +1136 2 780.659 419.053 979.628 1.000 1135 +1137 2 780.821 417.925 979.544 1.000 1136 +1138 2 780.751 416.798 979.412 1.000 1137 +1139 2 780.469 415.733 979.247 1.000 1138 +1140 2 779.861 414.797 979.087 1.000 1139 +1141 2 779.447 413.732 979.003 1.000 1140 +1142 2 779.022 412.673 978.992 1.000 1141 +1143 2 778.475 411.682 979.031 1.000 1142 +1144 2 777.909 410.704 979.096 1.000 1143 +1145 2 777.525 409.626 979.160 1.000 1144 +1146 2 777.076 409.800 979.230 1.000 1145 +1147 2 776.008 410.212 979.306 1.000 1146 +1148 2 774.928 410.550 979.381 1.000 1147 +1149 2 773.787 410.550 979.448 1.000 1148 +1150 2 772.645 410.577 979.532 1.000 1149 +1151 2 771.550 410.453 979.670 1.000 1150 +1152 2 770.508 410.188 979.933 1.000 1151 +1153 2 769.398 410.259 980.333 1.000 1152 +1154 2 768.318 410.512 980.854 1.000 1153 +1155 2 767.229 410.528 981.501 1.000 1154 +1156 2 766.137 410.614 982.234 1.000 1155 +1157 2 765.325 410.044 983.010 1.000 1156 +1158 2 764.376 409.571 983.842 1.000 1157 +1159 2 763.507 408.924 984.690 1.000 1158 +1160 2 763.321 407.865 985.524 1.000 1159 +1161 2 763.054 406.793 986.339 1.000 1160 +1162 2 762.674 405.744 987.137 1.000 1161 +1163 2 762.119 404.814 987.938 1.000 1162 +1164 2 761.279 404.236 988.803 1.000 1163 +1165 2 760.270 404.270 989.699 1.000 1164 +1166 2 759.531 404.454 990.746 1.000 1165 +1167 2 758.538 404.160 991.757 1.000 1166 +1168 2 757.506 403.763 992.583 1.000 1167 +1169 2 756.444 403.428 993.219 1.000 1168 +1170 2 755.353 403.350 993.784 1.000 1169 +1171 2 754.246 403.326 994.216 1.000 1170 +1172 2 753.110 403.378 994.454 1.000 1171 +1173 2 751.984 403.554 994.624 1.000 1172 +1174 2 750.860 403.762 994.784 1.000 1173 +1175 2 749.732 403.851 994.980 1.000 1174 +1176 2 748.603 403.813 995.212 1.000 1175 +1177 2 747.475 403.630 995.464 1.000 1176 +1178 2 746.350 403.428 995.750 1.000 1177 +1179 2 745.254 403.119 996.086 1.000 1178 +1180 2 744.151 402.848 996.481 1.000 1179 +1181 2 743.041 402.614 996.940 1.000 1180 +1182 2 741.929 402.484 997.494 1.000 1181 +1183 2 740.820 402.431 998.169 1.000 1182 +1184 2 739.944 401.753 998.962 1.000 1183 +1185 2 738.991 401.242 999.902 1.000 1184 +1186 2 738.024 400.797 1000.989 1.000 1185 +1187 2 737.043 400.432 1002.218 1.000 1186 +1188 2 736.662 399.643 1003.621 1.000 1187 +1189 2 736.388 399.390 1005.312 1.000 1188 +1190 2 736.114 399.147 1007.199 1.000 1189 +1191 2 736.173 399.664 1009.061 1.000 1190 +1192 2 736.251 400.327 1010.929 1.000 1191 +1193 2 736.373 400.979 1012.735 1.000 1192 +1194 2 737.282 401.446 1014.292 1.000 1193 +1195 2 738.190 401.914 1015.616 1.000 1194 +1196 2 739.172 402.339 1016.666 1.000 1195 +1197 2 740.304 402.339 1017.475 1.000 1196 +1198 2 741.432 402.405 1018.108 1.000 1197 +1199 2 742.559 402.474 1018.626 1.000 1198 +1200 2 743.682 402.487 1019.091 1.000 1199 +1201 2 744.806 402.500 1019.525 1.000 1200 +1202 2 745.927 402.582 1019.939 1.000 1201 +1203 2 747.049 402.715 1020.317 1.000 1202 +1204 2 748.171 402.885 1020.648 1.000 1203 +1205 2 749.303 402.937 1020.911 1.000 1204 +1206 2 750.446 402.872 1021.093 1.000 1205 +1207 2 751.589 402.842 1021.205 1.000 1206 +1208 2 752.730 402.862 1021.275 1.000 1207 +1209 2 753.869 402.953 1021.345 1.000 1208 +1210 2 755.007 403.036 1021.423 1.000 1209 +1211 2 756.151 403.057 1021.485 1.000 1210 +1212 2 757.285 403.008 1021.532 1.000 1211 +1213 2 758.391 402.746 1021.538 1.000 1212 +1214 2 759.232 402.026 1021.597 1.000 1213 +1215 2 760.244 401.730 1021.675 1.000 1214 +1216 2 761.252 402.047 1021.790 1.000 1215 +1217 2 762.277 402.380 1022.000 1.000 1216 +1218 2 763.256 402.066 1022.249 1.000 1217 +1219 2 764.184 401.418 1022.521 1.000 1218 +1220 2 765.204 400.958 1022.840 1.000 1219 +1221 2 766.304 400.997 1023.288 1.000 1220 +1222 2 767.404 401.037 1023.834 1.000 1221 +1223 2 768.514 401.085 1024.442 1.000 1222 +1224 2 769.631 401.154 1025.086 1.000 1223 +1225 2 770.741 401.239 1025.763 1.000 1224 +1226 2 771.819 401.494 1026.460 1.000 1225 +1227 2 772.877 401.846 1027.174 1.000 1226 +1228 2 773.966 401.990 1027.916 1.000 1227 +1229 2 775.082 401.968 1028.698 1.000 1228 +1230 2 776.164 401.899 1029.563 1.000 1229 +1231 2 777.230 401.808 1030.534 1.000 1230 +1232 2 778.289 401.814 1031.610 1.000 1231 +1233 2 779.336 401.891 1032.788 1.000 1232 +1234 2 780.301 402.383 1034.034 1.000 1233 +1235 2 781.108 402.637 1035.488 1.000 1234 +1236 2 781.837 402.760 1037.126 1.000 1235 +1237 2 782.513 402.796 1038.912 1.000 1236 +1238 2 781.997 402.768 1040.760 1.000 1237 +1239 2 782.106 402.193 1042.608 1.000 1238 +1240 2 782.562 401.426 1044.364 1.000 1239 +1241 2 782.927 400.718 1046.052 1.000 1240 +1242 2 783.751 400.151 1047.561 1.000 1241 +1243 2 784.609 399.544 1048.883 1.000 1242 +1244 2 785.510 398.928 1050.017 1.000 1243 +1245 2 786.522 398.573 1051.036 1.000 1244 +1246 2 787.535 398.250 1051.971 1.000 1245 +1247 2 788.589 398.352 1052.845 1.000 1246 +1248 2 789.643 398.454 1053.674 1.000 1247 +1249 2 789.945 398.253 1054.379 1.000 1248 +1250 2 790.597 397.656 1055.076 1.000 1249 +1251 2 790.152 396.607 1055.578 1.000 1250 +1252 2 789.707 395.559 1055.902 1.000 1251 +1253 2 788.953 394.871 1056.034 1.000 1252 +1254 2 787.863 394.578 1055.967 1.000 1253 +1255 2 786.778 394.369 1055.726 1.000 1254 +1256 2 785.695 394.170 1055.365 1.000 1255 +1257 2 785.373 394.148 1055.057 1.000 1256 +1258 2 784.243 394.071 1054.771 1.000 1257 +1259 2 783.341 393.463 1054.567 1.000 1258 +1260 2 782.268 393.072 1054.449 1.000 1259 +1261 2 781.399 392.403 1054.432 1.000 1260 +1262 2 780.630 391.603 1054.516 1.000 1261 +1263 2 779.541 391.251 1054.704 1.000 1262 +1264 2 779.157 391.711 1055.037 1.000 1263 +1265 2 778.421 392.519 1055.544 1.000 1264 +1266 2 777.601 393.117 1056.264 1.000 1265 +1267 2 776.702 393.578 1057.126 1.000 1266 +1268 2 775.774 393.979 1058.058 1.000 1267 +1269 2 775.538 394.284 1058.996 1.000 1268 +1270 2 775.554 395.336 1059.839 1.000 1269 +1271 2 774.939 396.280 1060.514 1.000 1270 +1272 2 774.104 397.037 1060.965 1.000 1271 +1273 2 773.177 397.699 1061.239 1.000 1272 +1274 2 772.163 398.168 1061.438 1.000 1273 +1275 2 771.083 398.078 1061.654 1.000 1274 +1276 2 770.130 397.459 1061.850 1.000 1275 +1277 2 769.285 396.701 1062.037 1.000 1276 +1278 2 768.610 395.782 1062.253 1.000 1277 +1279 2 767.579 395.346 1062.505 1.000 1278 +1280 2 766.506 394.969 1062.785 1.000 1279 +1281 2 765.433 394.593 1063.082 1.000 1280 +1282 2 764.329 394.423 1063.412 1.000 1281 +1283 2 763.324 394.148 1063.782 1.000 1282 +1284 2 762.548 393.347 1064.176 1.000 1283 +1285 2 761.672 392.630 1064.549 1.000 1284 +1286 2 760.969 391.772 1064.918 1.000 1285 +1287 2 760.075 391.166 1065.224 1.000 1286 +1288 2 759.012 390.746 1065.448 1.000 1287 +1289 2 757.914 390.471 1065.534 1.000 1288 +1290 2 756.820 390.194 1065.520 1.000 1289 +1291 2 755.925 389.529 1065.523 1.000 1290 +1292 2 755.398 388.518 1065.546 1.000 1291 +1293 2 754.945 387.472 1065.554 1.000 1292 +1294 2 754.354 386.500 1065.571 1.000 1293 +1295 2 753.901 385.453 1065.646 1.000 1294 +1296 2 753.491 384.454 1065.862 1.000 1295 +1297 2 752.867 383.518 1066.167 1.000 1296 +1298 2 752.244 382.582 1066.540 1.000 1297 +1299 2 751.465 381.848 1066.996 1.000 1298 +1300 2 750.907 380.855 1067.424 1.000 1299 +1301 2 750.233 379.949 1067.828 1.000 1300 +1302 2 749.537 379.059 1068.197 1.000 1301 +1303 2 748.848 378.161 1068.525 1.000 1302 +1304 2 748.152 377.272 1068.808 1.000 1303 +1305 2 747.090 376.850 1069.018 1.000 1304 +1306 2 746.153 376.238 1069.152 1.000 1305 +1307 2 745.351 375.423 1069.214 1.000 1306 +1308 2 744.561 374.596 1069.236 1.000 1307 +1309 2 743.888 373.694 1069.183 1.000 1308 +1310 2 743.178 372.824 1069.062 1.000 1309 +1311 2 742.415 371.991 1068.970 1.000 1310 +1312 2 741.691 371.134 1068.984 1.000 1311 +1313 2 740.937 370.274 1069.012 1.000 1312 +1314 2 740.074 369.531 1069.029 1.000 1313 +1315 2 739.003 369.261 1069.032 1.000 1314 +1316 2 737.889 369.040 1069.040 1.000 1315 +1317 2 736.792 368.727 1069.054 1.000 1316 +1318 2 735.728 368.319 1069.051 1.000 1317 +1319 2 734.710 367.826 1069.026 1.000 1318 +1320 2 733.965 366.960 1068.945 1.000 1319 +1321 2 733.001 366.495 1068.738 1.000 1320 +1322 2 732.080 365.988 1068.421 1.000 1321 +1323 2 731.422 365.077 1068.071 1.000 1322 +1324 2 730.625 364.263 1067.752 1.000 1323 +1325 2 729.579 363.930 1067.503 1.000 1324 +1326 2 728.448 363.762 1067.340 1.000 1325 +1327 2 727.994 362.804 1067.214 1.000 1326 +1328 2 727.440 361.822 1067.158 1.000 1327 +1329 2 726.683 360.975 1067.192 1.000 1328 +1330 2 725.821 360.227 1067.307 1.000 1329 +1331 2 724.807 359.712 1067.494 1.000 1330 +1332 2 723.716 359.486 1067.738 1.000 1331 +1333 2 722.573 359.463 1068.015 1.000 1332 +1334 2 721.678 358.887 1068.371 1.000 1333 +1335 2 720.828 358.194 1068.827 1.000 1334 +1336 2 719.971 357.517 1069.351 1.000 1335 +1337 2 718.874 357.267 1069.872 1.000 1336 +1338 2 718.398 356.292 1070.406 1.000 1337 +1339 2 717.847 355.300 1070.868 1.000 1338 +1340 2 717.076 354.504 1071.258 1.000 1339 +1341 2 716.105 353.909 1071.605 1.000 1340 +1342 2 715.486 352.985 1071.969 1.000 1341 +1343 2 714.866 352.049 1072.355 1.000 1342 +1344 2 714.045 351.256 1072.716 1.000 1343 +1345 2 713.024 350.798 1073.100 1.000 1344 +1346 2 711.960 350.483 1073.562 1.000 1345 +1347 2 711.058 349.899 1074.128 1.000 1346 +1348 2 710.993 349.555 1074.842 1.000 1347 +1349 2 709.945 349.383 1075.561 1.000 1348 +1350 2 709.052 348.668 1076.118 1.000 1349 +1351 2 708.179 347.941 1076.566 1.000 1350 +1352 2 707.224 347.339 1076.902 1.000 1351 +1353 2 706.288 346.719 1077.110 1.000 1352 +1354 2 705.361 346.106 1077.171 1.000 1353 +1355 2 704.293 345.694 1077.177 1.000 1354 +1356 2 703.339 345.097 1077.126 1.000 1355 +1357 2 702.541 344.305 1077.023 1.000 1356 +1358 2 701.900 343.365 1076.908 1.000 1357 +1359 2 701.265 342.413 1076.844 1.000 1358 +1360 2 700.327 341.786 1076.855 1.000 1359 +1361 2 699.336 341.238 1076.928 1.000 1360 +1362 2 698.203 341.086 1077.003 1.000 1361 +1363 2 697.641 340.180 1077.090 1.000 1362 +1364 2 697.239 339.117 1077.210 1.000 1363 +1365 2 696.856 338.050 1077.356 1.000 1364 +1366 2 696.444 336.987 1077.510 1.000 1365 +1367 2 779.474 390.499 1053.480 1.000 1263 +1368 2 779.374 389.376 1052.520 1.000 1367 +1369 2 779.477 388.264 1052.111 1.000 1368 +1370 2 779.637 387.155 1051.610 1.000 1369 +1371 2 779.802 386.057 1051.025 1.000 1370 +1372 2 779.971 384.967 1050.370 1.000 1371 +1373 2 780.088 383.900 1049.644 1.000 1372 +1374 2 780.192 382.837 1048.888 1.000 1373 +1375 2 780.183 381.754 1048.144 1.000 1374 +1376 2 780.173 380.671 1047.432 1.000 1375 +1377 2 779.782 379.646 1046.808 1.000 1376 +1378 2 779.321 378.619 1046.298 1.000 1377 +1379 2 778.895 377.558 1045.960 1.000 1378 +1380 2 778.288 376.622 1045.783 1.000 1379 +1381 2 777.885 375.596 1045.660 1.000 1380 +1382 2 777.651 374.508 1045.523 1.000 1381 +1383 2 777.540 373.457 1045.335 1.000 1382 +1384 2 777.069 372.415 1045.237 1.000 1383 +1385 2 776.786 371.317 1045.260 1.000 1384 +1386 2 776.562 370.250 1045.458 1.000 1385 +1387 2 776.484 369.134 1045.780 1.000 1386 +1388 2 776.150 368.097 1046.170 1.000 1387 +1389 2 776.084 366.960 1046.562 1.000 1388 +1390 2 776.289 365.860 1046.912 1.000 1389 +1391 2 776.328 364.746 1047.284 1.000 1390 +1392 2 776.424 363.615 1047.634 1.000 1391 +1393 2 776.542 362.481 1047.973 1.000 1392 +1394 2 776.815 361.393 1048.348 1.000 1393 +1395 2 777.116 360.312 1048.754 1.000 1394 +1396 2 777.419 359.222 1049.166 1.000 1395 +1397 2 777.721 358.132 1049.566 1.000 1396 +1398 2 778.077 357.073 1049.986 1.000 1397 +1399 2 778.715 356.131 1050.336 1.000 1398 +1400 2 779.213 355.108 1050.655 1.000 1399 +1401 2 779.678 354.067 1050.963 1.000 1400 +1402 2 780.142 353.050 1051.313 1.000 1401 +1403 2 780.611 352.025 1051.677 1.000 1402 +1404 2 781.059 351.024 1052.072 1.000 1403 +1405 2 781.488 350.041 1052.512 1.000 1404 +1406 2 781.939 348.991 1052.820 1.000 1405 +1407 2 782.393 347.943 1053.004 1.000 1406 +1408 2 782.860 346.934 1053.130 1.000 1407 +1409 2 783.194 345.856 1053.150 1.000 1408 +1410 2 782.990 344.733 1053.091 1.000 1409 +1411 2 782.755 343.630 1052.979 1.000 1410 +1412 2 782.061 342.825 1052.478 1.000 1411 +1413 2 790.351 398.604 1054.866 1.000 1248 +1414 2 791.282 399.043 1055.555 1.000 1413 +1415 2 791.828 400.049 1055.818 1.000 1414 +1416 2 792.382 401.049 1056.118 1.000 1415 +1417 2 793.051 401.964 1056.448 1.000 1416 +1418 2 793.763 402.797 1056.938 1.000 1417 +1419 2 794.634 403.401 1057.580 1.000 1418 +1420 2 795.085 404.221 1058.347 1.000 1419 +1421 2 795.197 405.249 1059.215 1.000 1420 +1422 2 796.111 405.009 1060.111 1.000 1421 +1423 2 797.104 404.644 1060.998 1.000 1422 +1424 2 797.915 403.941 1061.777 1.000 1423 +1425 2 798.739 403.159 1062.398 1.000 1424 +1426 2 799.468 402.296 1062.897 1.000 1425 +1427 2 800.190 401.467 1063.336 1.000 1426 +1428 2 801.203 401.015 1063.796 1.000 1427 +1429 2 802.232 400.612 1064.280 1.000 1428 +1430 2 803.373 400.567 1064.742 1.000 1429 +1431 2 804.511 400.480 1065.204 1.000 1430 +1432 2 805.569 400.198 1065.694 1.000 1431 +1433 2 806.654 400.026 1066.274 1.000 1432 +1434 2 807.750 399.859 1066.965 1.000 1433 +1435 2 808.742 399.420 1067.788 1.000 1434 +1436 2 809.680 398.882 1068.743 1.000 1435 +1437 2 810.208 398.167 1069.936 1.000 1436 +1438 2 810.737 397.452 1071.288 1.000 1437 +1439 2 811.151 396.775 1072.770 1.000 1438 +1440 2 811.663 396.179 1074.301 1.000 1439 +1441 2 812.495 395.674 1075.766 1.000 1440 +1442 2 813.488 395.209 1077.054 1.000 1441 +1443 2 814.529 394.869 1078.182 1.000 1442 +1444 2 815.624 394.663 1079.184 1.000 1443 +1445 2 816.716 394.604 1080.131 1.000 1444 +1446 2 817.806 394.729 1081.086 1.000 1445 +1447 2 818.880 394.856 1082.105 1.000 1446 +1448 2 819.788 395.028 1083.312 1.000 1447 +1449 2 820.439 395.832 1084.608 1.000 1448 +1450 2 820.890 396.403 1086.033 1.000 1449 +1451 2 820.682 396.085 1087.666 1.000 1450 +1452 2 820.319 395.454 1089.374 1.000 1451 +1453 2 820.720 394.585 1090.989 1.000 1452 +1454 2 821.211 393.689 1092.487 1.000 1453 +1455 2 821.978 392.959 1093.856 1.000 1454 +1456 2 822.829 392.319 1095.119 1.000 1455 +1457 2 823.722 391.738 1096.301 1.000 1456 +1458 2 824.634 391.209 1097.457 1.000 1457 +1459 2 825.404 390.724 1098.706 1.000 1458 +1460 2 826.174 390.240 1100.028 1.000 1459 +1461 2 826.947 389.635 1101.352 1.000 1460 +1462 2 827.849 389.034 1102.587 1.000 1461 +1463 2 828.650 388.326 1103.746 1.000 1462 +1464 2 829.276 387.635 1104.894 1.000 1463 +1465 2 829.956 387.132 1106.056 1.000 1464 +1466 2 830.809 386.475 1107.123 1.000 1465 +1467 2 831.653 385.785 1108.100 1.000 1466 +1468 2 832.635 385.275 1108.990 1.000 1467 +1469 2 833.626 384.822 1109.822 1.000 1468 +1470 2 834.601 384.343 1110.609 1.000 1469 +1471 2 835.495 383.699 1111.334 1.000 1470 +1472 2 836.452 383.153 1112.014 1.000 1471 +1473 2 837.457 382.662 1112.614 1.000 1472 +1474 2 838.473 382.182 1113.132 1.000 1473 +1475 2 839.349 381.507 1114.092 1.000 1474 +1476 2 735.052 399.040 1007.594 1.000 1190 +1477 2 733.929 398.907 1006.575 1.000 1476 +1478 2 732.843 398.605 1006.149 1.000 1477 +1479 2 731.781 398.604 1005.606 1.000 1478 +1480 2 730.752 398.995 1004.937 1.000 1479 +1481 2 729.743 399.406 1004.150 1.000 1480 +1482 2 728.725 399.775 1003.265 1.000 1481 +1483 2 727.642 399.923 1002.310 1.000 1482 +1484 2 726.554 399.984 1001.277 1.000 1483 +1485 2 725.513 400.204 1000.160 1.000 1484 +1486 2 724.535 400.321 998.903 1.000 1485 +1487 2 723.880 400.621 997.489 1.000 1486 +1488 2 723.621 401.144 995.893 1.000 1487 +1489 2 723.363 401.666 994.188 1.000 1488 +1490 2 723.103 402.189 992.438 1.000 1489 +1491 2 722.753 402.159 990.998 1.000 1490 +1492 2 722.300 401.515 990.144 1.000 1491 +1493 2 722.826 401.567 989.108 1.000 1492 +1494 2 723.413 401.662 987.874 1.000 1493 +1495 2 724.268 401.371 986.602 1.000 1494 +1496 2 725.225 400.931 985.331 1.000 1495 +1497 2 725.927 400.177 984.024 1.000 1496 +1498 2 726.685 399.537 982.680 1.000 1497 +1499 2 727.248 399.407 981.358 1.000 1498 +1500 2 726.657 400.115 980.039 1.000 1499 +1501 2 726.892 400.471 978.762 1.000 1500 +1502 2 727.865 400.005 977.595 1.000 1501 +1503 2 728.689 399.251 976.489 1.000 1502 +1504 2 729.427 398.438 975.383 1.000 1503 +1505 2 730.261 397.757 974.215 1.000 1504 +1506 2 730.903 397.077 972.908 1.000 1505 +1507 2 731.088 396.322 971.345 1.000 1506 +1508 2 731.340 395.782 969.539 1.000 1507 +1509 2 731.654 395.443 967.532 1.000 1508 +1510 2 732.025 394.871 965.451 1.000 1509 +1511 2 732.420 394.203 963.379 1.000 1510 +1512 2 732.334 393.551 961.332 1.000 1511 +1513 2 732.151 392.794 959.370 1.000 1512 +1514 2 732.011 391.876 957.538 1.000 1513 +1515 2 732.002 390.944 955.830 1.000 1514 +1516 2 732.305 389.975 954.234 1.000 1515 +1517 2 732.893 389.247 952.703 1.000 1516 +1518 2 733.704 388.706 951.196 1.000 1517 +1519 2 734.252 387.985 949.676 1.000 1518 +1520 2 734.580 387.111 948.128 1.000 1519 +1521 2 734.966 386.298 946.537 1.000 1520 +1522 2 735.403 385.535 944.910 1.000 1521 +1523 2 735.772 384.716 943.272 1.000 1522 +1524 2 736.110 383.843 941.648 1.000 1523 +1525 2 736.773 383.025 940.106 1.000 1524 +1526 2 737.159 382.054 938.608 1.000 1525 +1527 2 737.461 381.125 937.079 1.000 1526 +1528 2 737.695 380.260 935.463 1.000 1527 +1529 2 738.119 379.684 933.719 1.000 1528 +1530 2 738.636 379.664 931.818 1.000 1529 +1531 2 739.286 379.867 929.860 1.000 1530 +1532 2 739.345 379.464 927.886 1.000 1531 +1533 2 739.230 378.839 925.988 1.000 1532 +1534 2 739.104 378.134 924.235 1.000 1533 +1535 2 739.095 377.287 921.040 1.000 1534 +1536 2 777.208 408.389 978.746 1.000 1145 +1537 2 776.926 407.287 978.594 1.000 1536 +1538 2 776.636 406.183 978.426 1.000 1537 +1539 2 776.114 405.297 978.253 1.000 1538 +1540 2 776.034 404.157 978.104 1.000 1539 +1541 2 775.953 403.016 977.970 1.000 1540 +1542 2 775.871 401.876 977.850 1.000 1541 +1543 2 775.856 400.734 977.740 1.000 1542 +1544 2 775.931 399.593 977.640 1.000 1543 +1545 2 776.511 398.684 977.463 1.000 1544 +1546 2 777.143 397.740 977.236 1.000 1545 +1547 2 777.567 396.696 976.979 1.000 1546 +1548 2 777.817 395.579 976.693 1.000 1547 +1549 2 778.312 394.602 976.296 1.000 1548 +1550 2 778.932 393.698 975.761 1.000 1549 +1551 2 779.523 392.774 975.125 1.000 1550 +1552 2 780.011 391.775 974.417 1.000 1551 +1553 2 780.484 390.779 973.644 1.000 1552 +1554 2 780.913 389.781 972.804 1.000 1553 +1555 2 781.313 388.775 971.922 1.000 1554 +1556 2 781.488 387.742 970.970 1.000 1555 +1557 2 781.746 386.721 969.973 1.000 1556 +1558 2 782.138 385.719 968.957 1.000 1557 +1559 2 782.823 384.980 967.901 1.000 1558 +1560 2 783.647 384.367 966.820 1.000 1559 +1561 2 784.543 383.834 965.745 1.000 1560 +1562 2 784.665 382.798 964.678 1.000 1561 +1563 2 784.761 381.731 963.648 1.000 1562 +1564 2 784.773 380.688 962.632 1.000 1563 +1565 2 784.738 379.572 961.702 1.000 1564 +1566 2 784.741 378.463 960.837 1.000 1565 +1567 2 785.067 377.439 959.955 1.000 1566 +1568 2 785.417 376.426 959.050 1.000 1567 +1569 2 785.843 375.447 958.121 1.000 1568 +1570 2 786.207 374.453 957.166 1.000 1569 +1571 2 786.343 373.406 956.175 1.000 1570 +1572 2 786.763 372.492 955.198 1.000 1571 +1573 2 786.938 371.441 954.226 1.000 1572 +1574 2 787.041 370.368 953.243 1.000 1573 +1575 2 786.896 369.273 952.269 1.000 1574 +1576 2 786.786 368.184 951.272 1.000 1575 +1577 2 786.974 367.139 950.194 1.000 1576 +1578 2 787.166 366.115 949.010 1.000 1577 +1579 2 787.368 365.136 947.699 1.000 1578 +1580 2 787.571 364.156 946.274 1.000 1579 +1581 2 787.523 363.455 944.642 1.000 1580 +1582 2 787.292 362.785 942.855 1.000 1581 +1583 2 786.791 361.902 941.069 1.000 1582 +1584 2 786.421 361.271 939.184 1.000 1583 +1585 2 786.387 360.470 937.241 1.000 1584 +1586 2 786.652 360.159 935.178 1.000 1585 +1587 2 786.919 359.850 933.055 1.000 1586 +1588 2 787.185 359.541 930.913 1.000 1587 +1589 2 787.182 359.398 929.858 1.000 1588 +1590 2 786.988 358.412 931.986 1.000 1589 +1591 2 786.217 357.593 932.722 1.000 1590 +1592 2 786.160 356.886 933.906 1.000 1591 +1593 2 786.104 356.179 935.441 1.000 1592 +1594 2 785.894 355.591 937.250 1.000 1593 +1595 2 785.644 355.032 939.246 1.000 1594 +1596 2 785.096 354.657 941.307 1.000 1595 +1597 2 784.372 354.446 943.379 1.000 1596 +1598 2 783.657 354.270 945.398 1.000 1597 +1599 2 783.058 354.377 947.246 1.000 1598 +1600 2 782.210 354.527 949.035 1.000 1599 +1601 2 781.361 354.661 950.779 1.000 1600 +1602 2 780.491 354.512 952.479 1.000 1601 +1603 2 779.619 354.364 954.139 1.000 1602 +1604 2 778.696 354.203 955.738 1.000 1603 +1605 2 777.745 354.034 957.281 1.000 1604 +1606 2 776.746 353.856 958.731 1.000 1605 +1607 2 775.724 353.676 960.100 1.000 1606 +1608 2 774.678 353.579 961.402 1.000 1607 +1609 2 773.661 353.494 962.685 1.000 1608 +1610 2 772.838 353.141 964.029 1.000 1609 +1611 2 771.903 352.759 965.356 1.000 1610 +1612 2 770.875 352.574 966.692 1.000 1611 +1613 2 769.883 352.410 968.075 1.000 1612 +1614 2 768.912 352.228 969.503 1.000 1613 +1615 2 768.374 351.676 971.057 1.000 1614 +1616 2 767.838 351.123 972.695 1.000 1615 +1617 2 767.300 350.570 974.383 1.000 1616 +1618 2 766.764 350.017 976.083 1.000 1617 +1619 2 766.247 350.248 977.514 1.000 1618 +1620 2 765.232 350.703 978.788 1.000 1619 +1621 2 764.272 350.772 980.034 1.000 1620 +1622 2 763.345 350.621 981.333 1.000 1621 +1623 2 762.301 350.506 982.629 1.000 1622 +1624 2 761.311 350.304 983.976 1.000 1623 +1625 2 760.442 349.990 985.457 1.000 1624 +1626 2 759.629 349.662 987.048 1.000 1625 +1627 2 758.814 349.335 988.711 1.000 1626 +1628 2 759.403 349.312 990.388 1.000 1627 +1629 2 760.178 349.283 992.152 1.000 1628 +1630 2 760.953 349.253 993.969 1.000 1629 +1631 2 761.862 348.832 995.705 1.000 1630 +1632 2 762.800 348.493 997.394 1.000 1631 +1633 2 763.649 348.132 999.090 1.000 1632 +1634 2 764.306 347.725 1000.871 1.000 1633 +1635 2 765.055 347.403 1002.702 1.000 1634 +1636 2 765.849 347.143 1004.573 1.000 1635 +1637 2 766.538 346.870 1006.508 1.000 1636 +1638 2 767.228 346.597 1008.473 1.000 1637 +1639 2 767.918 346.324 1010.433 1.000 1638 +1640 2 768.608 346.051 1012.362 1.000 1639 +1641 2 769.051 346.659 1014.196 1.000 1640 +1642 2 769.432 347.491 1015.924 1.000 1641 +1643 2 769.804 348.348 1017.542 1.000 1642 +1644 2 770.203 349.237 1019.049 1.000 1643 +1645 2 770.802 350.119 1020.404 1.000 1644 +1646 2 771.526 350.875 1021.670 1.000 1645 +1647 2 772.300 351.581 1022.882 1.000 1646 +1648 2 773.193 352.056 1024.086 1.000 1647 +1649 2 774.197 352.288 1025.276 1.000 1648 +1650 2 775.280 352.360 1026.446 1.000 1649 +1651 2 776.298 352.391 1027.687 1.000 1650 +1652 2 777.315 352.422 1028.994 1.000 1651 +1653 2 777.337 352.427 1030.198 1.000 1652 +1654 2 778.066 352.622 1031.649 1.000 1653 +1655 2 778.602 352.914 1033.323 1.000 1654 +1656 2 778.409 353.414 1035.177 1.000 1655 +1657 2 777.712 353.893 1037.100 1.000 1656 +1658 2 776.930 354.251 1039.072 1.000 1657 +1659 2 776.072 354.496 1041.068 1.000 1658 +1660 2 775.221 354.724 1043.056 1.000 1659 +1661 2 774.419 354.825 1045.089 1.000 1660 +1662 2 773.950 354.613 1047.236 1.000 1661 +1663 2 773.522 354.362 1049.490 1.000 1662 +1664 2 773.037 354.284 1051.817 1.000 1663 +1665 2 772.520 354.307 1054.180 1.000 1664 +1666 2 772.003 354.329 1056.549 1.000 1665 +1667 2 771.486 354.351 1058.898 1.000 1666 +1668 2 771.356 353.641 1061.141 1.000 1667 +1669 2 771.288 352.814 1063.283 1.000 1668 +1670 2 771.539 352.076 1065.355 1.000 1669 +1671 2 771.764 351.465 1067.385 1.000 1670 +1672 2 771.467 351.146 1069.426 1.000 1671 +1673 2 771.329 350.845 1071.442 1.000 1672 +1674 2 771.873 350.620 1073.372 1.000 1673 +1675 2 772.416 350.395 1075.183 1.000 1674 +1676 2 772.576 349.545 1076.620 1.000 1675 +1677 2 772.556 348.402 1077.622 1.000 1676 +1678 2 772.489 347.277 1078.322 1.000 1677 +1679 2 772.353 346.163 1078.804 1.000 1678 +1680 2 772.389 345.058 1079.098 1.000 1679 +1681 2 773.020 344.106 1079.235 1.000 1680 +1682 2 773.612 343.131 1079.302 1.000 1681 +1683 2 774.303 342.252 1079.333 1.000 1682 +1684 2 775.023 341.450 1079.364 1.000 1683 +1685 2 775.010 340.307 1079.459 1.000 1684 +1686 2 775.708 339.619 1079.672 1.000 1685 +1687 2 776.731 339.140 1080.008 1.000 1686 +1688 2 777.728 338.603 1080.439 1.000 1687 +1689 2 778.760 338.252 1081.002 1.000 1688 +1690 2 779.750 337.882 1081.679 1.000 1689 +1691 2 780.558 337.334 1082.488 1.000 1690 +1692 2 781.456 336.694 1083.230 1.000 1691 +1693 2 782.395 336.057 1083.886 1.000 1692 +1694 2 783.345 335.449 1084.485 1.000 1693 +1695 2 783.947 334.508 1085.017 1.000 1694 +1696 2 784.543 333.864 1085.647 1.000 1695 +1697 2 785.159 333.040 1086.249 1.000 1696 +1698 2 785.636 332.011 1086.753 1.000 1697 +1699 2 786.113 330.975 1087.128 1.000 1698 +1700 2 786.747 330.066 1087.372 1.000 1699 +1701 2 787.698 329.433 1087.509 1.000 1700 +1702 2 788.718 328.923 1087.486 1.000 1701 +1703 2 757.490 349.394 988.865 1.000 1627 +1704 2 756.352 349.444 988.929 1.000 1703 +1705 2 755.212 349.494 988.957 1.000 1704 +1706 2 754.077 349.601 988.985 1.000 1705 +1707 2 752.949 349.781 989.041 1.000 1706 +1708 2 751.813 349.737 989.108 1.000 1707 +1709 2 750.673 349.635 989.184 1.000 1708 +1710 2 749.585 349.290 989.246 1.000 1709 +1711 2 748.629 348.705 989.478 1.000 1710 +1712 2 767.068 349.881 977.071 1.000 1618 +1713 2 768.084 349.427 976.433 1.000 1712 +1714 2 769.033 348.847 976.167 1.000 1713 +1715 2 770.129 348.596 975.906 1.000 1714 +1716 2 771.253 348.404 975.660 1.000 1715 +1717 2 772.359 348.139 975.198 1.000 1716 +1718 2 784.546 353.988 947.478 1.000 1598 +1719 2 785.462 353.697 948.296 1.000 1718 +1720 2 786.511 353.542 948.643 1.000 1719 +1721 2 787.654 353.482 948.884 1.000 1720 +1722 2 788.767 353.271 948.979 1.000 1721 +1723 2 789.741 352.686 948.945 1.000 1722 +1724 2 790.630 352.069 948.903 1.000 1723 +1725 2 790.054 351.143 948.760 1.000 1724 +1726 2 789.422 350.313 948.422 1.000 1725 +1727 2 788.382 349.856 948.088 1.000 1726 +1728 2 787.495 349.173 947.825 1.000 1727 +1729 2 786.632 348.586 947.584 1.000 1728 +1730 2 786.072 349.021 946.848 1.000 1729 +1731 2 787.048 359.766 929.023 1.000 1588 +1732 2 786.725 360.299 927.170 1.000 1731 +1733 2 786.397 360.838 925.383 1.000 1732 +1734 2 785.774 361.713 923.880 1.000 1733 +1735 2 784.934 362.285 922.569 1.000 1734 +1736 2 783.927 362.200 921.435 1.000 1735 +1737 2 782.883 361.876 920.450 1.000 1736 +1738 2 781.839 361.531 919.604 1.000 1737 +1739 2 780.756 361.431 918.851 1.000 1738 +1740 2 779.655 361.431 918.145 1.000 1739 +1741 2 778.537 361.529 917.532 1.000 1740 +1742 2 777.407 361.681 917.000 1.000 1741 +1743 2 776.289 361.848 916.490 1.000 1742 +1744 2 775.166 361.973 915.992 1.000 1743 +1745 2 774.029 361.950 915.499 1.000 1744 +1746 2 772.924 361.846 914.967 1.000 1745 +1747 2 771.889 361.573 914.323 1.000 1746 +1748 2 770.871 361.409 913.578 1.000 1747 +1749 2 769.864 361.334 912.758 1.000 1748 +1750 2 768.777 361.048 912.033 1.000 1749 +1751 2 767.667 360.956 911.361 1.000 1750 +1752 2 766.557 360.866 910.753 1.000 1751 +1753 2 765.446 360.775 910.216 1.000 1752 +1754 2 764.329 360.868 909.784 1.000 1753 +1755 2 763.207 361.091 909.462 1.000 1754 +1756 2 762.068 361.132 909.185 1.000 1755 +1757 2 761.140 361.692 908.936 1.000 1756 +1758 2 760.022 361.916 908.687 1.000 1757 +1759 2 758.904 362.138 908.418 1.000 1758 +1760 2 757.791 362.343 908.102 1.000 1759 +1761 2 756.678 362.547 907.746 1.000 1760 +1762 2 755.593 362.773 907.323 1.000 1761 +1763 2 754.508 362.966 906.861 1.000 1762 +1764 2 753.413 362.642 906.450 1.000 1763 +1765 2 752.312 362.346 906.083 1.000 1764 +1766 2 751.196 362.094 905.761 1.000 1765 +1767 2 750.084 362.063 905.425 1.000 1766 +1768 2 748.973 362.169 905.047 1.000 1767 +1769 2 747.853 362.208 904.649 1.000 1768 +1770 2 746.727 362.208 904.240 1.000 1769 +1771 2 745.605 362.026 903.857 1.000 1770 +1772 2 744.577 361.648 903.507 1.000 1771 +1773 2 743.762 360.847 903.204 1.000 1772 +1774 2 742.661 360.797 902.941 1.000 1773 +1775 2 741.677 361.366 902.670 1.000 1774 +1776 2 740.562 361.514 902.364 1.000 1775 +1777 2 739.427 361.617 902.062 1.000 1776 +1778 2 738.372 361.451 901.751 1.000 1777 +1779 2 737.412 360.918 901.418 1.000 1778 +1780 2 736.288 360.834 901.090 1.000 1779 +1781 2 735.165 360.957 900.752 1.000 1780 +1782 2 734.035 361.085 900.424 1.000 1781 +1783 2 732.899 361.210 900.116 1.000 1782 +1784 2 731.817 361.375 899.752 1.000 1783 +1785 2 730.731 361.657 899.371 1.000 1784 +1786 2 729.647 361.971 899.007 1.000 1785 +1787 2 728.561 362.321 898.694 1.000 1786 +1788 2 727.449 362.558 898.422 1.000 1787 +1789 2 726.326 362.752 898.192 1.000 1788 +1790 2 725.190 362.726 898.041 1.000 1789 +1791 2 724.050 362.635 897.952 1.000 1790 +1792 2 722.967 362.963 897.848 1.000 1791 +1793 2 721.967 363.493 897.719 1.000 1792 +1794 2 720.847 363.561 897.602 1.000 1793 +1795 2 719.703 363.540 897.504 1.000 1794 +1796 2 718.560 363.506 897.425 1.000 1795 +1797 2 717.441 363.655 897.344 1.000 1796 +1798 2 716.346 363.973 897.252 1.000 1797 +1799 2 715.230 364.213 897.168 1.000 1798 +1800 2 714.105 364.425 897.095 1.000 1799 +1801 2 712.982 364.349 897.030 1.000 1800 +1802 2 711.860 364.128 896.972 1.000 1801 +1803 2 710.717 364.109 896.907 1.000 1802 +1804 2 709.574 364.100 896.832 1.000 1803 +1805 2 708.433 364.196 896.756 1.000 1804 +1806 2 707.333 364.442 896.636 1.000 1805 +1807 2 706.271 364.849 896.448 1.000 1806 +1808 2 705.246 365.343 896.224 1.000 1807 +1809 2 704.250 365.891 895.950 1.000 1808 +1810 2 703.226 366.361 895.619 1.000 1809 +1811 2 702.136 366.666 895.236 1.000 1810 +1812 2 701.023 366.876 894.816 1.000 1811 +1813 2 699.890 367.007 894.376 1.000 1812 +1814 2 698.873 367.484 893.928 1.000 1813 +1815 2 698.144 368.116 893.292 1.000 1814 +1816 2 697.247 368.153 892.545 1.000 1815 +1817 2 696.209 367.819 891.772 1.000 1816 +1818 2 695.169 367.449 891.019 1.000 1817 +1819 2 694.093 367.385 890.341 1.000 1818 +1820 2 693.262 367.916 889.602 1.000 1819 +1821 2 692.312 367.515 888.922 1.000 1820 +1822 2 691.315 367.015 888.356 1.000 1821 +1823 2 690.205 366.787 887.950 1.000 1822 +1824 2 689.104 366.518 887.718 1.000 1823 +1825 2 688.047 366.099 887.659 1.000 1824 +1826 2 686.987 365.691 887.732 1.000 1825 +1827 2 685.917 365.302 887.855 1.000 1826 +1828 2 684.936 364.736 888.014 1.000 1827 +1829 2 683.921 364.206 888.132 1.000 1828 +1830 2 682.970 363.603 888.199 1.000 1829 +1831 2 682.269 362.703 888.194 1.000 1830 +1832 2 681.513 361.860 888.112 1.000 1831 +1833 2 680.667 361.122 887.970 1.000 1832 +1834 2 679.798 360.386 887.852 1.000 1833 +1835 2 679.004 359.580 887.818 1.000 1834 +1836 2 678.179 358.979 887.902 1.000 1835 +1837 2 677.043 358.994 888.087 1.000 1836 +1838 2 675.918 358.898 888.370 1.000 1837 +1839 2 674.796 358.769 888.714 1.000 1838 +1840 2 673.704 358.485 889.092 1.000 1839 +1841 2 672.626 358.156 889.476 1.000 1840 +1842 2 671.605 357.657 889.834 1.000 1841 +1843 2 670.597 357.142 890.182 1.000 1842 +1844 2 669.613 356.577 890.504 1.000 1843 +1845 2 668.606 356.048 890.778 1.000 1844 +1846 2 667.526 355.678 891.024 1.000 1845 +1847 2 666.453 355.302 891.265 1.000 1846 +1848 2 665.376 354.973 891.531 1.000 1847 +1849 2 664.260 354.794 891.783 1.000 1848 +1850 2 663.121 354.877 892.010 1.000 1849 +1851 2 662.077 354.530 892.245 1.000 1850 +1852 2 661.072 354.019 892.489 1.000 1851 +1853 2 660.043 353.535 892.702 1.000 1852 +1854 2 659.119 352.930 892.844 1.000 1853 +1855 2 659.589 353.032 892.920 1.000 1854 +1856 2 787.645 359.833 928.371 1.000 1588 +1857 2 788.330 360.267 925.117 1.000 1856 +1858 2 789.017 360.702 923.731 1.000 1857 +1859 2 789.675 361.219 922.074 1.000 1858 +1860 2 790.232 361.990 920.256 1.000 1859 +1861 2 790.719 362.571 918.260 1.000 1860 +1862 2 790.616 362.766 916.056 1.000 1861 +1863 2 790.391 362.958 913.732 1.000 1862 +1864 2 790.132 363.363 911.350 1.000 1863 +1865 2 789.875 363.768 908.939 1.000 1864 +1866 2 789.617 364.155 906.534 1.000 1865 +1867 2 789.362 364.506 904.176 1.000 1866 +1868 2 789.107 364.856 901.897 1.000 1867 +1869 2 789.236 365.469 899.763 1.000 1868 +1870 2 789.672 366.133 897.814 1.000 1869 +1871 2 790.550 366.629 896.106 1.000 1870 +1872 2 791.428 367.126 894.586 1.000 1871 +1873 2 792.408 367.627 893.290 1.000 1872 +1874 2 793.390 368.045 892.108 1.000 1873 +1875 2 794.310 368.500 890.954 1.000 1874 +1876 2 795.107 369.018 889.756 1.000 1875 +1877 2 795.967 369.441 888.521 1.000 1876 +1878 2 797.017 369.517 887.323 1.000 1877 +1879 2 798.042 369.334 886.152 1.000 1878 +1880 2 799.046 368.972 885.027 1.000 1879 +1881 2 800.049 368.612 883.935 1.000 1880 +1882 2 801.051 368.255 882.871 1.000 1881 +1883 2 802.041 367.892 881.807 1.000 1882 +1884 2 802.912 367.534 880.681 1.000 1883 +1885 2 803.970 367.603 879.572 1.000 1884 +1886 2 805.066 367.575 878.514 1.000 1885 +1887 2 806.106 367.375 877.470 1.000 1886 +1888 2 807.163 367.416 876.428 1.000 1887 +1889 2 808.254 367.481 875.400 1.000 1888 +1890 2 809.305 367.524 874.331 1.000 1889 +1891 2 810.343 367.537 873.202 1.000 1890 +1892 2 811.271 367.253 871.979 1.000 1891 +1893 2 812.147 366.896 870.691 1.000 1892 +1894 2 812.812 367.510 869.341 1.000 1893 +1895 2 813.866 367.661 868.020 1.000 1894 +1896 2 814.813 368.011 866.690 1.000 1895 +1897 2 815.709 368.458 865.337 1.000 1896 +1898 2 816.147 369.350 863.960 1.000 1897 +1899 2 816.553 370.272 862.546 1.000 1898 +1900 2 816.515 371.263 861.095 1.000 1899 +1901 2 816.274 372.235 859.583 1.000 1900 +1902 2 815.957 373.142 857.990 1.000 1901 +1903 2 815.965 373.944 856.237 1.000 1902 +1904 2 815.974 374.745 854.356 1.000 1903 +1905 2 816.411 375.052 852.331 1.000 1904 +1906 2 817.023 375.160 850.186 1.000 1905 +1907 2 817.634 375.267 847.963 1.000 1906 +1908 2 818.305 375.467 845.715 1.000 1907 +1909 2 819.019 375.729 843.480 1.000 1908 +1910 2 819.564 376.215 841.254 1.000 1909 +1911 2 819.737 376.470 838.972 1.000 1910 +1912 2 819.840 376.675 836.640 1.000 1911 +1913 2 820.489 376.974 834.378 1.000 1912 +1914 2 821.291 377.299 832.205 1.000 1913 +1915 2 822.083 377.624 830.102 1.000 1914 +1916 2 821.654 377.628 827.985 1.000 1915 +1917 2 821.265 377.383 825.824 1.000 1916 +1918 2 820.782 377.406 823.690 1.000 1917 +1919 2 820.868 377.781 821.582 1.000 1918 +1920 2 820.532 377.676 819.630 1.000 1919 +1921 2 821.226 377.789 817.886 1.000 1920 +1922 2 821.751 377.559 814.926 1.000 1921 +1923 2 805.163 590.425 969.354 1.000 227 +1924 2 805.917 591.267 969.377 1.000 1923 +1925 2 806.362 592.308 969.382 1.000 1924 +1926 2 806.727 593.392 969.382 1.000 1925 +1927 2 806.922 594.515 969.394 1.000 1926 +1928 2 807.081 595.645 969.430 1.000 1927 +1929 2 807.302 596.764 969.469 1.000 1928 +1930 2 807.326 597.861 969.486 1.000 1929 +1931 2 806.975 598.938 969.469 1.000 1930 +1932 2 807.182 599.961 969.441 1.000 1931 +1933 2 807.744 600.873 969.466 1.000 1932 +1934 2 818.769 729.363 963.393 1.000 102 +1935 2 819.892 729.386 964.230 1.000 1934 +1936 2 821.013 729.307 964.586 1.000 1935 +1937 2 822.134 729.189 965.003 1.000 1936 +1938 2 823.210 729.383 965.479 1.000 1937 +1939 2 824.253 729.794 965.989 1.000 1938 +1940 2 825.298 730.204 966.521 1.000 1939 +1941 2 826.341 730.615 967.053 1.000 1940 +1942 2 827.040 731.427 967.593 1.000 1941 +1943 2 827.606 732.385 968.139 1.000 1942 +1944 2 828.114 733.383 968.671 1.000 1943 +1945 2 828.345 734.307 969.130 1.000 1944 +1946 2 828.516 734.474 969.542 1.000 1945 +1947 2 829.265 735.212 970.029 1.000 1946 +1948 2 829.824 736.118 970.502 1.000 1947 +1949 2 830.140 737.204 970.892 1.000 1948 +1950 2 830.010 738.341 971.177 1.000 1949 +1951 2 829.686 739.415 971.379 1.000 1950 +1952 2 829.198 740.447 971.527 1.000 1951 +1953 2 828.771 741.508 971.642 1.000 1952 +1954 2 828.385 742.584 971.743 1.000 1953 +1955 2 828.237 743.694 971.866 1.000 1954 +1956 2 828.313 744.834 972.034 1.000 1955 +1957 2 828.499 745.950 972.283 1.000 1956 +1958 2 828.760 747.047 972.630 1.000 1957 +1959 2 828.908 748.152 973.078 1.000 1958 +1960 2 829.017 749.259 973.610 1.000 1959 +1961 2 828.963 749.646 974.159 1.000 1960 +1962 2 828.814 750.708 974.803 1.000 1961 +1963 2 828.640 751.767 975.492 1.000 1962 +1964 2 828.262 752.804 976.172 1.000 1963 +1965 2 827.980 753.874 976.816 1.000 1964 +1966 2 827.763 754.964 977.421 1.000 1965 +1967 2 827.421 756.043 977.936 1.000 1966 +1968 2 827.001 757.103 978.362 1.000 1967 +1969 2 826.581 758.163 978.726 1.000 1968 +1970 2 825.967 758.315 979.034 1.000 1969 +1971 2 824.864 758.607 979.320 1.000 1970 +1972 2 823.849 759.092 979.672 1.000 1971 +1973 2 822.855 759.594 980.115 1.000 1972 +1974 2 822.069 760.371 980.624 1.000 1973 +1975 2 821.170 760.972 981.187 1.000 1974 +1976 2 820.160 761.391 981.798 1.000 1975 +1977 2 819.213 761.843 982.458 1.000 1976 +1978 2 818.316 762.355 983.066 1.000 1977 +1979 2 818.404 763.460 983.598 1.000 1978 +1980 2 818.200 764.579 983.968 1.000 1979 +1981 2 817.967 765.699 984.192 1.000 1980 +1982 2 817.290 766.533 984.256 1.000 1981 +1983 2 816.779 767.521 984.161 1.000 1982 +1984 2 816.151 768.453 984.026 1.000 1983 +1985 2 815.545 769.330 983.870 1.000 1984 +1986 2 815.523 770.343 983.632 1.000 1985 +1987 2 815.545 771.487 983.492 1.000 1986 +1988 2 815.495 772.596 983.514 1.000 1987 +1989 2 815.380 773.692 983.704 1.000 1988 +1990 2 815.515 774.812 983.973 1.000 1989 +1991 2 815.179 775.800 984.267 1.000 1990 +1992 2 814.488 776.703 984.544 1.000 1991 +1993 2 814.042 777.755 984.777 1.000 1992 +1994 2 813.725 778.855 984.953 1.000 1993 +1995 2 813.415 779.955 985.099 1.000 1994 +1996 2 812.993 780.997 985.286 1.000 1995 +1997 2 812.743 782.109 985.505 1.000 1996 +1998 2 812.465 783.209 985.774 1.000 1997 +1999 2 812.160 784.298 986.082 1.000 1998 +2000 2 811.654 785.308 986.432 1.000 1999 +2001 2 810.901 786.147 986.773 1.000 2000 +2002 2 810.174 787.001 987.101 1.000 2001 +2003 2 809.683 788.024 987.451 1.000 2002 +2004 2 809.160 789.027 987.832 1.000 2003 +2005 2 808.295 789.659 988.280 1.000 2004 +2006 2 807.312 790.208 988.736 1.000 2005 +2007 2 806.319 790.764 989.184 1.000 2006 +2008 2 805.426 791.447 989.643 1.000 2007 +2009 2 804.592 792.201 990.122 1.000 2008 +2010 2 803.710 792.889 990.618 1.000 2009 +2011 2 802.784 793.493 991.124 1.000 2010 +2012 2 802.157 794.441 991.645 1.000 2011 +2013 2 801.260 795.104 992.188 1.000 2012 +2014 2 800.496 795.875 992.804 1.000 2013 +2015 2 799.881 796.777 993.524 1.000 2014 +2016 2 799.155 797.556 994.367 1.000 2015 +2017 2 798.122 797.877 995.282 1.000 2016 +2018 2 797.217 798.258 996.310 1.000 2017 +2019 2 796.456 798.727 997.478 1.000 2018 +2020 2 795.768 799.428 998.670 1.000 2019 +2021 2 794.980 800.064 999.816 1.000 2020 +2022 2 793.927 800.443 1000.826 1.000 2021 +2023 2 792.917 800.877 1001.753 1.000 2022 +2024 2 792.329 801.617 1002.660 1.000 2023 +2025 2 791.889 802.578 1003.528 1.000 2024 +2026 2 791.710 803.391 1004.296 1.000 2025 +2027 2 791.470 804.486 1005.024 1.000 2026 +2028 2 791.202 805.569 1005.735 1.000 2027 +2029 2 790.655 806.409 1006.449 1.000 2028 +2030 2 789.639 806.831 1007.180 1.000 2029 +2031 2 788.723 807.320 1008.000 1.000 2030 +2032 2 787.848 807.997 1008.804 1.000 2031 +2033 2 787.167 808.811 1009.590 1.000 2032 +2034 2 787.090 809.867 1010.453 1.000 2033 +2035 2 786.856 810.863 1011.380 1.000 2034 +2036 2 786.311 811.732 1012.368 1.000 2035 +2037 2 785.978 812.600 1013.438 1.000 2036 +2038 2 784.928 812.979 1014.434 1.000 2037 +2039 2 783.877 813.357 1015.370 1.000 2038 +2040 2 782.830 813.519 1016.291 1.000 2039 +2041 2 781.820 813.577 1017.240 1.000 2040 +2042 2 781.307 814.547 1018.161 1.000 2041 +2043 2 780.706 815.359 1019.080 1.000 2042 +2044 2 779.691 815.432 1020.068 1.000 2043 +2045 2 778.661 815.495 1021.084 1.000 2044 +2046 2 777.612 815.546 1022.106 1.000 2045 +2047 2 776.593 815.979 1023.030 1.000 2046 +2048 2 775.706 816.697 1023.854 1.000 2047 +2049 2 774.826 817.413 1024.694 1.000 2048 +2050 2 774.072 818.214 1025.626 1.000 2049 +2051 2 774.268 818.467 1026.925 1.000 2050 +2052 2 774.209 818.388 1028.602 1.000 2051 +2053 2 773.820 818.558 1030.571 1.000 2052 +2054 2 773.430 818.728 1032.732 1.000 2053 +2055 2 772.960 819.248 1034.925 1.000 2054 +2056 2 772.488 819.768 1037.081 1.000 2055 +2057 2 771.936 820.327 1039.114 1.000 2056 +2058 2 771.288 820.934 1040.987 1.000 2057 +2059 2 771.435 821.639 1042.784 1.000 2058 +2060 2 771.478 822.543 1044.420 1.000 2059 +2061 2 771.347 823.590 1045.859 1.000 2060 +2062 2 771.019 824.626 1047.130 1.000 2061 +2063 2 770.850 825.714 1048.281 1.000 2062 +2064 2 770.721 826.816 1049.364 1.000 2063 +2065 2 770.056 827.551 1050.454 1.000 2064 +2066 2 769.180 828.080 1051.635 1.000 2065 +2067 2 768.741 828.172 1053.058 1.000 2066 +2068 2 768.405 828.084 1054.696 1.000 2067 +2069 2 767.843 828.479 1056.384 1.000 2068 +2070 2 767.211 829.082 1057.991 1.000 2069 +2071 2 766.146 829.172 1059.416 1.000 2070 +2072 2 765.080 829.262 1060.668 1.000 2071 +2073 2 764.027 829.068 1061.763 1.000 2072 +2074 2 762.976 828.847 1062.743 1.000 2073 +2075 2 761.891 828.807 1063.653 1.000 2074 +2076 2 760.791 828.854 1064.504 1.000 2075 +2077 2 759.688 829.010 1065.310 1.000 2076 +2078 2 758.661 829.419 1066.100 1.000 2077 +2079 2 757.621 829.651 1066.934 1.000 2078 +2080 2 756.608 829.667 1067.802 1.000 2079 +2081 2 755.662 829.154 1068.690 1.000 2080 +2082 2 754.709 828.647 1069.597 1.000 2081 +2083 2 753.730 828.142 1070.485 1.000 2082 +2084 2 753.030 827.256 1071.330 1.000 2083 +2085 2 752.527 826.289 1072.196 1.000 2084 +2086 2 752.044 825.354 1073.114 1.000 2085 +2087 2 751.373 824.738 1074.139 1.000 2086 +2088 2 751.998 824.454 1075.332 1.000 2087 +2089 2 752.340 824.070 1076.600 1.000 2088 +2090 2 751.776 823.270 1077.709 1.000 2089 +2091 2 751.058 822.407 1078.524 1.000 2090 +2092 2 750.140 821.737 1078.991 1.000 2091 +2093 2 749.111 821.254 1079.145 1.000 2092 +2094 2 748.070 820.797 1079.058 1.000 2093 +2095 2 747.019 820.365 1078.815 1.000 2094 +2096 2 746.314 819.484 1078.493 1.000 2095 +2097 2 745.805 818.525 1078.123 1.000 2096 +2098 2 745.767 817.421 1077.692 1.000 2097 +2099 2 745.767 816.292 1077.278 1.000 2098 +2100 2 745.792 815.149 1076.919 1.000 2099 +2101 2 745.356 814.140 1076.566 1.000 2100 +2102 2 744.612 813.320 1076.174 1.000 2101 +2103 2 743.591 812.905 1075.760 1.000 2102 +2104 2 742.568 812.489 1075.337 1.000 2103 +2105 2 741.529 812.021 1074.996 1.000 2104 +2106 2 741.059 811.032 1074.800 1.000 2105 +2107 2 741.039 809.910 1074.707 1.000 2106 +2108 2 741.242 808.823 1074.668 1.000 2107 +2109 2 741.939 807.927 1074.643 1.000 2108 +2110 2 742.767 807.139 1074.534 1.000 2109 +2111 2 743.595 806.356 1074.293 1.000 2110 +2112 2 743.969 805.437 1073.828 1.000 2111 +2113 2 744.129 804.452 1073.150 1.000 2112 +2114 2 745.017 804.097 1072.375 1.000 2113 +2115 2 746.062 803.875 1071.566 1.000 2114 +2116 2 747.090 803.441 1070.880 1.000 2115 +2117 2 747.961 802.701 1070.320 1.000 2116 +2118 2 748.769 801.927 1069.827 1.000 2117 +2119 2 749.567 801.226 1069.312 1.000 2118 +2120 2 750.614 800.840 1068.791 1.000 2119 +2121 2 751.581 800.247 1068.295 1.000 2120 +2122 2 752.515 799.602 1067.805 1.000 2121 +2123 2 753.416 798.932 1067.298 1.000 2122 +2124 2 754.343 798.364 1066.733 1.000 2123 +2125 2 755.336 797.918 1066.128 1.000 2124 +2126 2 756.392 797.588 1065.515 1.000 2125 +2127 2 757.502 797.415 1064.955 1.000 2126 +2128 2 758.617 797.431 1064.428 1.000 2127 +2129 2 759.732 797.594 1063.975 1.000 2128 +2130 2 760.767 798.021 1063.126 1.000 2129 +2131 2 792.063 802.569 1004.032 1.000 2025 +2132 2 793.171 802.511 1005.413 1.000 2131 +2133 2 794.254 802.426 1005.992 1.000 2132 +2134 2 795.285 802.276 1006.734 1.000 2133 +2135 2 796.273 802.413 1007.588 1.000 2134 +2136 2 797.236 802.721 1008.496 1.000 2135 +2137 2 798.186 803.050 1009.386 1.000 2136 +2138 2 799.069 803.500 1010.198 1.000 2137 +2139 2 799.318 803.217 1010.834 1.000 2138 +2140 2 799.142 802.100 1011.111 1.000 2139 +2141 2 798.740 801.128 1010.971 1.000 2140 +2142 2 798.074 800.363 1010.458 1.000 2141 +2143 2 797.680 799.355 1009.714 1.000 2142 +2144 2 797.322 798.337 1008.818 1.000 2143 +2145 2 797.152 797.263 1007.849 1.000 2144 +2146 2 796.777 796.292 1006.832 1.000 2145 +2147 2 796.332 795.353 1005.780 1.000 2146 +2148 2 795.930 794.400 1004.696 1.000 2147 +2149 2 795.523 793.485 1003.573 1.000 2148 +2150 2 794.970 792.694 1002.417 1.000 2149 +2151 2 794.333 791.828 1001.319 1.000 2150 +2152 2 793.914 790.808 1000.303 1.000 2151 +2153 2 793.675 789.734 999.356 1.000 2152 +2154 2 793.566 788.617 998.466 1.000 2153 +2155 2 793.294 787.651 997.562 1.000 2154 +2156 2 792.642 787.029 996.528 1.000 2155 +2157 2 792.587 785.946 995.462 1.000 2156 +2158 2 792.745 784.942 994.311 1.000 2157 +2159 2 792.802 784.026 993.031 1.000 2158 +2160 2 792.387 783.154 991.707 1.000 2159 +2161 2 791.606 782.701 990.324 1.000 2160 +2162 2 790.910 782.241 988.912 1.000 2161 +2163 2 790.220 781.782 987.521 1.000 2162 +2164 2 790.231 781.032 984.628 1.000 2163 +2165 2 827.485 758.379 979.138 1.000 1969 +2166 2 828.203 759.188 980.417 1.000 2165 +2167 2 828.724 760.135 980.966 1.000 2166 +2168 2 829.148 761.118 981.652 1.000 2167 +2169 2 829.676 762.028 982.456 1.000 2168 +2170 2 830.005 763.111 983.220 1.000 2169 +2171 2 829.852 764.086 984.021 1.000 2170 +2172 2 829.107 764.857 984.864 1.000 2171 +2173 2 828.246 765.478 985.726 1.000 2172 +2174 2 827.254 765.924 986.597 1.000 2173 +2175 2 826.955 766.687 987.496 1.000 2174 +2176 2 827.213 767.706 988.439 1.000 2175 +2177 2 827.603 768.739 989.341 1.000 2176 +2178 2 827.755 769.849 990.209 1.000 2177 +2179 2 827.873 770.969 991.066 1.000 2178 +2180 2 828.003 772.083 991.939 1.000 2179 +2181 2 828.708 772.917 992.911 1.000 2180 +2182 2 829.354 773.587 994.098 1.000 2181 +2183 2 829.994 774.236 995.484 1.000 2182 +2184 2 830.609 774.839 997.049 1.000 2183 +2185 2 831.212 775.417 998.746 1.000 2184 +2186 2 831.638 776.148 1000.521 1.000 2185 +2187 2 831.696 776.840 1002.366 1.000 2186 +2188 2 831.573 777.697 1004.158 1.000 2187 +2189 2 831.607 778.747 1005.852 1.000 2188 +2190 2 831.848 779.705 1007.530 1.000 2189 +2191 2 832.238 780.460 1009.288 1.000 2190 +2192 2 832.672 781.015 1011.186 1.000 2191 +2193 2 833.107 781.570 1013.211 1.000 2192 +2194 2 833.671 781.454 1015.372 1.000 2193 +2195 2 834.238 781.328 1017.632 1.000 2194 +2196 2 834.683 781.080 1019.950 1.000 2195 +2197 2 835.063 780.767 1022.291 1.000 2196 +2198 2 835.320 780.146 1024.590 1.000 2197 +2199 2 835.872 779.554 1026.808 1.000 2198 +2200 2 836.485 779.034 1028.969 1.000 2199 +2201 2 837.122 778.559 1031.100 1.000 2200 +2202 2 837.846 778.334 1033.231 1.000 2201 +2203 2 838.578 778.136 1035.376 1.000 2202 +2204 2 839.296 777.941 1037.551 1.000 2203 +2205 2 839.579 777.809 1039.833 1.000 2204 +2206 2 839.863 777.677 1042.180 1.000 2205 +2207 2 839.572 777.524 1044.532 1.000 2206 +2208 2 839.615 777.300 1046.881 1.000 2207 +2209 2 840.382 777.386 1049.104 1.000 2208 +2210 2 841.154 777.492 1051.198 1.000 2209 +2211 2 841.952 777.785 1053.139 1.000 2210 +2212 2 842.752 778.077 1054.948 1.000 2211 +2213 2 843.265 778.359 1056.630 1.000 2212 +2214 2 842.281 778.586 1058.137 1.000 2213 +2215 2 841.297 778.812 1059.520 1.000 2214 +2216 2 840.285 778.833 1060.777 1.000 2215 +2217 2 839.266 778.785 1061.911 1.000 2216 +2218 2 838.240 778.870 1062.914 1.000 2217 +2219 2 837.199 778.955 1063.787 1.000 2218 +2220 2 836.472 779.184 1065.016 1.000 2219 +2221 2 829.284 749.313 973.434 1.000 1960 +2222 2 830.398 749.535 973.417 1.000 2221 +2223 2 831.280 750.193 973.420 1.000 2222 +2224 2 832.247 750.780 973.462 1.000 2223 +2225 2 833.266 751.281 973.563 1.000 2224 +2226 2 834.279 751.775 973.725 1.000 2225 +2227 2 835.170 752.447 973.938 1.000 2226 +2228 2 836.021 753.192 974.123 1.000 2227 +2229 2 836.805 754.018 974.215 1.000 2228 +2230 2 837.511 754.919 974.182 1.000 2229 +2231 2 837.933 755.975 974.030 1.000 2230 +2232 2 838.272 757.039 973.672 1.000 2231 +2233 2 838.245 758.092 973.118 1.000 2232 +2234 2 838.041 759.141 972.406 1.000 2233 +2235 2 838.046 760.140 971.578 1.000 2234 +2236 2 838.517 761.027 970.648 1.000 2235 +2237 2 839.385 761.647 969.755 1.000 2236 +2238 2 840.354 762.197 968.937 1.000 2237 +2239 2 841.189 762.898 968.176 1.000 2238 +2240 2 842.166 763.425 967.484 1.000 2239 +2241 2 843.142 763.946 966.843 1.000 2240 +2242 2 844.118 764.443 966.232 1.000 2241 +2243 2 845.042 765.079 965.692 1.000 2242 +2244 2 846.018 765.657 965.238 1.000 2243 +2245 2 847.004 766.221 964.863 1.000 2244 +2246 2 847.975 766.793 964.541 1.000 2245 +2247 2 849.117 766.755 964.306 1.000 2246 +2248 2 850.255 766.867 964.152 1.000 2247 +2249 2 851.377 767.059 964.060 1.000 2248 +2250 2 852.468 767.404 964.020 1.000 2249 +2251 2 853.551 767.762 964.023 1.000 2250 +2252 2 854.378 768.544 964.029 1.000 2251 +2253 2 854.987 769.510 964.071 1.000 2252 +2254 2 855.531 770.513 964.146 1.000 2253 +2255 2 856.107 771.485 964.244 1.000 2254 +2256 2 856.902 772.308 964.340 1.000 2255 +2257 2 857.856 772.920 964.443 1.000 2256 +2258 2 858.764 773.608 964.538 1.000 2257 +2259 2 859.513 774.466 964.634 1.000 2258 +2260 2 860.210 775.370 964.709 1.000 2259 +2261 2 860.833 776.328 964.740 1.000 2260 +2262 2 860.798 777.163 964.813 1.000 2261 +2263 2 860.720 778.301 965.182 1.000 2262 +2264 2 860.598 779.437 965.331 1.000 2263 +2265 2 860.436 780.559 965.530 1.000 2264 +2266 2 860.040 781.592 965.784 1.000 2265 +2267 2 859.288 782.441 966.036 1.000 2266 +2268 2 858.454 783.222 966.255 1.000 2267 +2269 2 857.530 783.894 966.501 1.000 2268 +2270 2 856.634 784.603 966.781 1.000 2269 +2271 2 855.784 785.361 967.126 1.000 2270 +2272 2 855.006 786.188 967.576 1.000 2271 +2273 2 854.228 787.018 968.136 1.000 2272 +2274 2 853.521 787.748 968.934 1.000 2273 +2275 2 853.337 788.543 969.956 1.000 2274 +2276 2 853.622 789.421 971.149 1.000 2275 +2277 2 853.961 790.194 972.465 1.000 2276 +2278 2 854.396 790.777 973.871 1.000 2277 +2279 2 854.590 791.855 975.103 1.000 2278 +2280 2 854.605 792.950 976.142 1.000 2279 +2281 2 854.467 794.060 977.001 1.000 2280 +2282 2 854.490 795.189 977.698 1.000 2281 +2283 2 854.539 796.320 978.284 1.000 2282 +2284 2 854.457 797.448 978.810 1.000 2283 +2285 2 854.323 798.575 979.336 1.000 2284 +2286 2 854.970 799.499 979.902 1.000 2285 +2287 2 855.657 800.390 980.538 1.000 2286 +2288 2 856.424 801.203 981.271 1.000 2287 +2289 2 856.971 802.143 982.145 1.000 2288 +2290 2 857.549 802.979 983.170 1.000 2289 +2291 2 858.204 803.415 984.432 1.000 2290 +2292 2 858.619 803.716 985.922 1.000 2291 +2293 2 858.283 803.647 987.521 1.000 2292 +2294 2 857.320 803.328 988.949 1.000 2293 +2295 2 856.199 803.249 990.136 1.000 2294 +2296 2 855.433 803.686 991.136 1.000 2295 +2297 2 855.070 804.707 992.004 1.000 2296 +2298 2 854.590 805.725 992.715 1.000 2297 +2299 2 853.884 806.539 993.370 1.000 2298 +2300 2 853.017 807.030 994.036 1.000 2299 +2301 2 852.088 806.432 994.694 1.000 2300 +2302 2 851.268 805.697 995.308 1.000 2301 +2303 2 850.594 804.774 995.834 1.000 2302 +2304 2 850.750 803.678 996.383 1.000 2303 +2305 2 850.920 802.579 996.954 1.000 2304 +2306 2 851.059 801.457 997.511 1.000 2305 +2307 2 851.191 800.333 998.077 1.000 2306 +2308 2 851.135 799.209 998.684 1.000 2307 +2309 2 851.150 798.091 999.351 1.000 2308 +2310 2 851.221 796.978 1000.087 1.000 2309 +2311 2 851.082 795.907 1000.916 1.000 2310 +2312 2 850.737 794.880 1001.860 1.000 2311 +2313 2 850.398 793.978 1002.943 1.000 2312 +2314 2 849.946 793.431 1004.251 1.000 2313 +2315 2 849.875 792.570 1005.654 1.000 2314 +2316 2 850.233 791.768 1007.104 1.000 2315 +2317 2 850.337 790.671 1008.448 1.000 2316 +2318 2 850.225 789.573 1009.697 1.000 2317 +2319 2 850.073 788.473 1010.878 1.000 2318 +2320 2 849.822 787.681 1012.175 1.000 2319 +2321 2 849.689 786.860 1013.608 1.000 2320 +2322 2 849.944 786.322 1015.157 1.000 2321 +2323 2 849.505 785.502 1016.739 1.000 2322 +2324 2 849.002 784.698 1018.338 1.000 2323 +2325 2 848.727 783.880 1019.900 1.000 2324 +2326 2 848.968 783.027 1021.390 1.000 2325 +2327 2 849.330 782.204 1022.767 1.000 2326 +2328 2 850.105 781.557 1023.957 1.000 2327 +2329 2 850.920 780.906 1026.060 1.000 2328 +2330 2 861.508 777.057 964.734 1.000 2261 +2331 2 862.258 777.915 964.737 1.000 2330 +2332 2 862.976 778.801 964.785 1.000 2331 +2333 2 863.666 779.709 964.874 1.000 2332 +2334 2 863.979 780.799 964.989 1.000 2333 +2335 2 864.410 781.834 965.126 1.000 2334 +2336 2 864.824 782.868 965.252 1.000 2335 +2337 2 865.041 783.990 965.362 1.000 2336 +2338 2 865.545 784.985 965.504 1.000 2337 +2339 2 866.209 785.903 965.706 1.000 2338 +2340 2 866.970 786.740 965.964 1.000 2339 +2341 2 867.806 787.518 966.230 1.000 2340 +2342 2 868.456 788.444 966.518 1.000 2341 +2343 2 868.423 789.520 966.854 1.000 2342 +2344 2 868.262 790.638 967.212 1.000 2343 +2345 2 868.068 791.743 967.602 1.000 2344 +2346 2 868.051 792.858 967.991 1.000 2345 +2347 2 868.208 793.985 968.355 1.000 2346 +2348 2 868.161 795.096 968.699 1.000 2347 +2349 2 867.906 796.191 969.035 1.000 2348 +2350 2 867.792 797.311 969.329 1.000 2349 +2351 2 867.845 798.449 969.550 1.000 2350 +2352 2 868.079 799.568 969.690 1.000 2351 +2353 2 868.312 800.688 969.766 1.000 2352 +2354 2 868.329 801.830 969.819 1.000 2353 +2355 2 868.369 802.968 969.872 1.000 2354 +2356 2 868.568 804.079 969.928 1.000 2355 +2357 2 868.656 805.199 969.951 1.000 2356 +2358 2 868.493 806.305 969.945 1.000 2357 +2359 2 868.009 807.332 969.926 1.000 2358 +2360 2 867.674 808.426 969.906 1.000 2359 +2361 2 867.469 809.550 969.884 1.000 2360 +2362 2 867.263 810.676 969.870 1.000 2361 +2363 2 867.262 811.802 969.892 1.000 2362 +2364 2 867.404 812.931 969.951 1.000 2363 +2365 2 867.490 814.070 970.007 1.000 2364 +2366 2 867.571 815.210 970.040 1.000 2365 +2367 2 867.641 816.352 970.024 1.000 2366 +2368 2 867.770 817.485 969.951 1.000 2367 +2369 2 867.969 818.611 969.816 1.000 2368 +2370 2 868.013 819.734 969.606 1.000 2369 +2371 2 867.939 820.857 969.324 1.000 2370 +2372 2 868.020 821.979 968.999 1.000 2371 +2373 2 868.125 823.101 968.666 1.000 2372 +2374 2 868.282 824.230 968.366 1.000 2373 +2375 2 868.358 825.361 968.117 1.000 2374 +2376 2 868.239 826.498 967.935 1.000 2375 +2377 2 868.152 827.637 967.809 1.000 2376 +2378 2 868.127 828.781 967.739 1.000 2377 +2379 2 868.277 829.909 967.697 1.000 2378 +2380 2 868.526 831.024 967.683 1.000 2379 +2381 2 868.334 832.126 967.708 1.000 2380 +2382 2 868.267 833.226 967.736 1.000 2381 +2383 2 868.954 834.135 967.789 1.000 2382 +2384 2 869.628 835.055 967.884 1.000 2383 +2385 2 869.032 835.415 968.136 1.000 2384 +2386 2 867.930 835.554 968.565 1.000 2385 +2387 2 866.919 835.928 969.167 1.000 2386 +2388 2 866.033 836.496 969.914 1.000 2387 +2389 2 865.294 837.145 970.785 1.000 2388 +2390 2 864.323 837.291 971.765 1.000 2389 +2391 2 863.300 837.446 972.748 1.000 2390 +2392 2 862.210 837.608 973.650 1.000 2391 +2393 2 861.121 837.723 974.464 1.000 2392 +2394 2 860.043 837.426 975.181 1.000 2393 +2395 2 858.959 837.184 975.820 1.000 2394 +2396 2 857.838 837.171 976.382 1.000 2395 +2397 2 856.740 837.365 976.872 1.000 2396 +2398 2 855.659 837.707 977.292 1.000 2397 +2399 2 854.573 837.661 977.665 1.000 2398 +2400 2 853.482 837.375 978.370 1.000 2399 +2401 2 828.670 735.402 967.296 1.000 1945 +2402 2 828.976 736.428 966.566 1.000 2401 +2403 2 828.451 736.540 967.103 1.000 2402 +2404 2 827.332 736.778 967.109 1.000 2403 +2405 2 826.312 737.152 967.114 1.000 2404 +2406 2 825.752 738.149 967.120 1.000 2405 +2407 2 825.397 739.210 967.098 1.000 2406 +2408 2 825.254 740.337 967.033 1.000 2407 +2409 2 825.148 741.466 966.949 1.000 2408 +2410 2 825.254 742.605 966.907 1.000 2409 +2411 2 825.529 743.645 966.941 1.000 2410 +2412 2 825.219 744.725 967.033 1.000 2411 +2413 2 824.977 745.820 967.134 1.000 2412 +2414 2 824.881 746.961 967.187 1.000 2413 +2415 2 824.698 748.088 967.170 1.000 2414 +2416 2 824.490 749.210 967.084 1.000 2415 +2417 2 824.159 750.300 966.921 1.000 2416 +2418 2 823.838 751.392 966.708 1.000 2417 +2419 2 823.670 752.519 966.468 1.000 2418 +2420 2 823.219 753.544 966.207 1.000 2419 +2421 2 822.806 754.598 965.941 1.000 2420 +2422 2 822.446 755.678 965.686 1.000 2421 +2423 2 821.983 756.687 965.395 1.000 2422 +2424 2 821.615 757.729 965.115 1.000 2423 +2425 2 821.509 758.869 964.933 1.000 2424 +2426 2 821.320 759.981 964.863 1.000 2425 +2427 2 821.357 761.116 964.888 1.000 2426 +2428 2 821.497 762.217 964.995 1.000 2427 +2429 2 821.715 763.327 965.124 1.000 2428 +2430 2 821.871 764.446 965.152 1.000 2429 +2431 2 821.993 765.569 965.034 1.000 2430 +2432 2 822.217 766.671 964.790 1.000 2431 +2433 2 822.398 767.768 964.452 1.000 2432 +2434 2 822.272 768.869 964.037 1.000 2433 +2435 2 822.114 769.966 963.595 1.000 2434 +2436 2 821.947 771.064 963.208 1.000 2435 +2437 2 822.123 772.192 962.945 1.000 2436 +2438 2 822.194 773.329 962.794 1.000 2437 +2439 2 822.379 774.441 962.699 1.000 2438 +2440 2 822.780 775.513 962.606 1.000 2439 +2441 2 822.990 776.617 962.497 1.000 2440 +2442 2 822.990 777.759 962.354 1.000 2441 +2443 2 822.755 778.855 962.091 1.000 2442 +2444 2 822.360 779.920 961.668 1.000 2443 +2445 2 822.586 780.099 961.097 1.000 2444 +2446 2 823.528 780.579 960.263 1.000 2445 +2447 2 824.546 780.901 959.190 1.000 2446 +2448 2 825.394 781.251 957.866 1.000 2447 +2449 2 825.745 781.603 956.166 1.000 2448 +2450 2 826.096 781.954 954.198 1.000 2449 +2451 2 826.151 782.511 952.064 1.000 2450 +2452 2 826.187 783.082 949.850 1.000 2451 +2453 2 826.222 783.653 947.607 1.000 2452 +2454 2 826.312 784.324 945.423 1.000 2453 +2455 2 826.517 785.196 943.384 1.000 2454 +2456 2 827.062 785.790 941.441 1.000 2455 +2457 2 827.802 786.259 939.590 1.000 2456 +2458 2 828.599 786.540 937.815 1.000 2457 +2459 2 829.519 786.424 936.107 1.000 2458 +2460 2 830.438 786.309 934.436 1.000 2459 +2461 2 831.450 786.392 932.828 1.000 2460 +2462 2 832.467 786.486 931.263 1.000 2461 +2463 2 832.976 787.321 929.695 1.000 2462 +2464 2 833.350 787.253 928.029 1.000 2463 +2465 2 833.844 787.029 926.215 1.000 2464 +2466 2 834.545 787.166 924.330 1.000 2465 +2467 2 835.316 787.429 922.418 1.000 2466 +2468 2 836.124 787.621 920.528 1.000 2467 +2469 2 837.073 787.612 918.705 1.000 2468 +2470 2 838.010 787.397 916.950 1.000 2469 +2471 2 838.912 787.126 915.225 1.000 2470 +2472 2 839.775 787.056 913.472 1.000 2471 +2473 2 840.630 787.115 911.674 1.000 2472 +2474 2 841.483 787.175 909.843 1.000 2473 +2475 2 841.564 787.234 907.878 1.000 2474 +2476 2 841.474 787.294 905.817 1.000 2475 +2477 2 842.113 787.591 903.865 1.000 2476 +2478 2 843.000 788.051 902.087 1.000 2477 +2479 2 843.774 788.699 900.460 1.000 2478 +2480 2 844.052 789.548 898.920 1.000 2479 +2481 2 844.644 790.258 897.450 1.000 2480 +2482 2 845.010 791.219 896.084 1.000 2481 +2483 2 845.376 792.181 894.774 1.000 2482 +2484 2 845.756 793.140 893.502 1.000 2483 +2485 2 846.603 793.643 892.315 1.000 2484 +2486 2 847.544 793.926 891.122 1.000 2485 +2487 2 848.379 794.201 889.876 1.000 2486 +2488 2 849.318 794.470 888.675 1.000 2487 +2489 2 850.319 794.736 887.572 1.000 2488 +2490 2 851.348 794.935 886.600 1.000 2489 +2491 2 852.453 794.935 884.982 1.000 2490 +2492 2 822.503 780.202 962.800 1.000 2444 +2493 2 823.021 781.222 962.427 1.000 2492 +2494 2 823.288 782.318 962.251 1.000 2493 +2495 2 823.340 783.444 962.018 1.000 2494 +2496 2 823.543 784.549 961.794 1.000 2495 +2497 2 823.491 785.690 961.579 1.000 2496 +2498 2 823.480 786.832 961.377 1.000 2497 +2499 2 823.492 787.972 961.195 1.000 2498 +2500 2 823.427 789.105 961.022 1.000 2499 +2501 2 823.322 790.243 960.893 1.000 2500 +2502 2 823.116 791.364 960.772 1.000 2501 +2503 2 829.522 736.975 965.692 1.000 2402 +2504 2 830.193 737.681 964.662 1.000 2503 +2505 2 830.402 738.390 963.441 1.000 2504 +2506 2 829.957 739.280 962.254 1.000 2505 +2507 2 829.433 740.250 961.237 1.000 2506 +2508 2 829.211 741.350 960.344 1.000 2507 +2509 2 828.671 742.209 959.350 1.000 2508 +2510 2 828.131 743.068 958.269 1.000 2509 +2511 2 827.937 743.966 957.068 1.000 2510 +2512 2 827.867 744.877 955.732 1.000 2511 +2513 2 827.587 745.746 954.313 1.000 2512 +2514 2 827.043 746.534 952.890 1.000 2513 +2515 2 826.339 747.252 951.530 1.000 2514 +2516 2 826.327 748.168 950.242 1.000 2515 +2517 2 826.550 749.153 949.035 1.000 2516 +2518 2 826.643 750.051 947.915 1.000 2517 +2519 2 825.607 750.196 946.910 1.000 2518 +2520 2 825.214 751.058 946.019 1.000 2519 +2521 2 824.761 752.048 945.314 1.000 2520 +2522 2 824.143 753.007 944.812 1.000 2521 +2523 2 823.774 754.065 944.504 1.000 2522 +2524 2 823.574 755.191 944.350 1.000 2523 +2525 2 823.359 756.311 944.311 1.000 2524 +2526 2 823.060 757.415 944.306 1.000 2525 +2527 2 822.832 758.533 944.334 1.000 2526 +2528 2 822.605 759.650 944.370 1.000 2527 +2529 2 822.451 760.783 944.348 1.000 2528 +2530 2 822.296 761.912 944.261 1.000 2529 +2531 2 822.130 763.034 944.101 1.000 2530 +2532 2 821.987 764.160 943.891 1.000 2531 +2533 2 821.887 765.289 943.656 1.000 2532 +2534 2 821.686 766.396 943.418 1.000 2533 +2535 2 821.349 767.471 943.191 1.000 2534 +2536 2 821.280 768.598 943.051 1.000 2535 +2537 2 821.329 769.735 943.046 1.000 2536 +2538 2 821.315 770.857 943.183 1.000 2537 +2539 2 820.976 771.943 943.387 1.000 2538 +2540 2 820.224 772.796 943.687 1.000 2539 +2541 2 819.456 773.551 944.126 1.000 2540 +2542 2 818.680 774.242 944.706 1.000 2541 +2543 2 817.758 774.860 945.291 1.000 2542 +2544 2 816.926 775.624 945.798 1.000 2543 +2545 2 816.229 776.520 946.254 1.000 2544 +2546 2 815.544 777.422 946.663 1.000 2545 +2547 2 814.912 778.330 947.061 1.000 2546 +2548 2 814.702 779.435 947.414 1.000 2547 +2549 2 814.526 780.550 947.724 1.000 2548 +2550 2 814.409 781.683 947.960 1.000 2549 +2551 2 814.245 782.808 948.111 1.000 2550 +2552 2 814.005 783.924 948.172 1.000 2551 +2553 2 814.398 784.953 948.046 1.000 2552 +2554 2 814.860 785.975 947.769 1.000 2553 +2555 2 815.107 787.055 947.377 1.000 2554 +2556 2 815.479 788.039 946.865 1.000 2555 +2557 2 815.392 789.152 946.344 1.000 2556 +2558 2 815.067 790.216 945.871 1.000 2557 +2559 2 815.006 791.332 945.487 1.000 2558 +2560 2 815.051 792.473 945.185 1.000 2559 +2561 2 815.003 793.604 944.924 1.000 2560 +2562 2 814.809 794.699 944.717 1.000 2561 +2563 2 814.261 795.702 944.594 1.000 2562 +2564 2 813.711 796.705 944.513 1.000 2563 +2565 2 813.154 797.703 944.454 1.000 2564 +2566 2 812.487 798.632 944.418 1.000 2565 +2567 2 811.880 799.600 944.373 1.000 2566 +2568 2 811.326 800.595 944.306 1.000 2567 +2569 2 810.926 801.664 944.227 1.000 2568 +2570 2 810.594 802.754 944.163 1.000 2569 +2571 2 810.526 803.894 944.110 1.000 2570 +2572 2 810.348 805.001 944.037 1.000 2571 +2573 2 809.774 805.988 943.897 1.000 2572 +2574 2 809.385 807.027 943.673 1.000 2573 +2575 2 809.284 808.148 943.345 1.000 2574 +2576 2 809.127 809.259 942.925 1.000 2575 +2577 2 808.997 810.362 942.427 1.000 2576 +2578 2 809.159 811.487 941.917 1.000 2577 +2579 2 809.807 812.380 941.340 1.000 2578 +2580 2 810.405 813.315 940.727 1.000 2579 +2581 2 811.026 814.218 940.097 1.000 2580 +2582 2 811.978 814.779 939.436 1.000 2581 +2583 2 812.886 815.416 938.756 1.000 2582 +2584 2 813.752 816.104 938.064 1.000 2583 +2585 2 814.562 816.856 937.364 1.000 2584 +2586 2 815.432 817.522 936.648 1.000 2585 +2587 2 816.317 818.192 935.934 1.000 2586 +2588 2 817.178 818.890 935.225 1.000 2587 +2589 2 817.993 819.631 934.508 1.000 2588 +2590 2 818.749 820.438 933.792 1.000 2589 +2591 2 819.648 821.091 933.080 1.000 2590 +2592 2 820.563 821.724 932.378 1.000 2591 +2593 2 821.424 822.394 931.658 1.000 2592 +2594 2 822.142 823.200 930.908 1.000 2593 +2595 2 822.744 824.117 930.149 1.000 2594 +2596 2 823.418 825.002 929.415 1.000 2595 +2597 2 824.209 825.792 928.712 1.000 2596 +2598 2 825.105 826.420 927.970 1.000 2597 +2599 2 825.986 827.074 927.220 1.000 2598 +2600 2 826.878 827.631 926.464 1.000 2599 +2601 2 827.813 827.750 925.621 1.000 2600 +2602 2 828.732 828.311 924.848 1.000 2601 +2603 2 829.564 829.059 923.580 1.000 2602 +2604 2 827.134 733.311 969.259 1.000 1944 +2605 2 826.030 733.106 969.259 1.000 2604 +2606 2 824.968 732.686 969.240 1.000 2605 +2607 2 823.906 732.268 969.198 1.000 2606 +2608 2 822.823 731.923 969.156 1.000 2607 +2609 2 821.706 731.681 969.139 1.000 2608 +2610 2 820.589 731.431 969.147 1.000 2609 +2611 2 819.455 731.297 969.195 1.000 2610 +2612 2 818.315 731.204 969.287 1.000 2611 +2613 2 817.187 731.261 969.464 1.000 2612 +2614 2 816.060 731.325 969.710 1.000 2613 +2615 2 815.736 731.285 969.940 1.000 2614 +2616 2 814.601 731.144 970.161 1.000 2615 +2617 2 813.525 730.807 970.407 1.000 2616 +2618 2 812.483 730.356 970.690 1.000 2617 +2619 2 811.477 729.854 971.029 1.000 2618 +2620 2 810.365 729.588 971.368 1.000 2619 +2621 2 809.367 729.088 971.754 1.000 2620 +2622 2 808.409 728.504 972.188 1.000 2621 +2623 2 807.336 728.273 972.667 1.000 2622 +2624 2 806.241 728.113 973.179 1.000 2623 +2625 2 805.133 728.066 973.675 1.000 2624 +2626 2 804.002 728.238 974.095 1.000 2625 +2627 2 802.881 728.032 974.487 1.000 2626 +2628 2 801.824 727.690 974.859 1.000 2627 +2629 2 800.848 727.129 975.262 1.000 2628 +2630 2 799.852 726.602 975.705 1.000 2629 +2631 2 798.915 726.010 976.226 1.000 2630 +2632 2 798.000 725.404 976.828 1.000 2631 +2633 2 797.146 725.068 977.430 1.000 2632 +2634 2 796.100 724.656 978.048 1.000 2633 +2635 2 795.035 724.377 978.701 1.000 2634 +2636 2 793.957 724.197 979.390 1.000 2635 +2637 2 792.910 723.937 980.120 1.000 2636 +2638 2 791.897 723.529 980.862 1.000 2637 +2639 2 790.824 723.233 981.585 1.000 2638 +2640 2 789.741 722.965 982.288 1.000 2639 +2641 2 788.645 722.727 982.965 1.000 2640 +2642 2 787.598 722.346 983.634 1.000 2641 +2643 2 786.831 721.569 984.326 1.000 2642 +2644 2 785.966 720.881 985.040 1.000 2643 +2645 2 785.027 720.333 985.790 1.000 2644 +2646 2 784.014 719.941 986.591 1.000 2645 +2647 2 783.135 719.276 987.389 1.000 2646 +2648 2 782.138 718.790 988.212 1.000 2647 +2649 2 781.116 718.443 989.086 1.000 2648 +2650 2 780.076 718.206 990.035 1.000 2649 +2651 2 779.200 717.728 991.068 1.000 2650 +2652 2 778.497 716.967 992.183 1.000 2651 +2653 2 777.696 716.254 993.342 1.000 2652 +2654 2 776.892 715.563 994.546 1.000 2653 +2655 2 776.153 715.077 995.879 1.000 2654 +2656 2 775.438 714.660 997.326 1.000 2655 +2657 2 774.677 714.161 998.810 1.000 2656 +2658 2 773.903 713.639 1000.283 1.000 2657 +2659 2 773.333 713.043 1001.725 1.000 2658 +2660 2 773.217 712.022 1003.052 1.000 2659 +2661 2 773.494 711.017 1004.240 1.000 2660 +2662 2 772.988 710.689 1005.256 1.000 2661 +2663 2 771.920 710.922 1006.116 1.000 2662 +2664 2 771.234 711.694 1006.967 1.000 2663 +2665 2 770.390 712.270 1007.787 1.000 2664 +2666 2 769.338 712.592 1008.563 1.000 2665 +2667 2 768.198 712.490 1009.201 1.000 2666 +2668 2 767.059 712.388 1009.758 1.000 2667 +2669 2 766.017 712.717 1010.355 1.000 2668 +2670 2 765.032 713.193 1011.032 1.000 2669 +2671 2 764.587 713.353 1011.965 1.000 2670 +2672 2 764.440 712.428 1013.034 1.000 2671 +2673 2 763.967 711.551 1014.196 1.000 2672 +2674 2 763.205 710.805 1015.344 1.000 2673 +2675 2 762.252 710.655 1016.459 1.000 2674 +2676 2 761.213 710.767 1017.526 1.000 2675 +2677 2 760.145 710.788 1018.500 1.000 2676 +2678 2 759.063 710.651 1019.379 1.000 2677 +2679 2 758.242 709.980 1020.222 1.000 2678 +2680 2 757.381 709.394 1021.020 1.000 2679 +2681 2 756.268 709.344 1021.706 1.000 2680 +2682 2 755.188 709.249 1022.322 1.000 2681 +2683 2 754.149 709.313 1022.888 1.000 2682 +2684 2 753.015 709.366 1023.198 1.000 2683 +2685 2 751.884 709.401 1023.288 1.000 2684 +2686 2 750.791 709.612 1023.257 1.000 2685 +2687 2 749.680 709.862 1023.134 1.000 2686 +2688 2 748.568 710.082 1022.952 1.000 2687 +2689 2 747.453 709.905 1022.448 1.000 2688 +2690 2 798.845 725.363 976.248 1.000 2632 +2691 2 798.239 724.508 976.548 1.000 2690 +2692 2 797.430 723.699 976.662 1.000 2691 +2693 2 796.492 723.061 976.825 1.000 2692 +2694 2 795.484 722.532 977.040 1.000 2693 +2695 2 794.406 722.166 977.318 1.000 2694 +2696 2 793.369 721.813 977.704 1.000 2695 +2697 2 792.398 721.339 978.180 1.000 2696 +2698 2 791.459 720.704 978.681 1.000 2697 +2699 2 790.502 720.100 979.185 1.000 2698 +2700 2 789.536 719.503 979.670 1.000 2699 +2701 2 788.521 719.015 980.126 1.000 2700 +2702 2 787.482 718.628 980.574 1.000 2701 +2703 2 786.492 718.494 981.834 1.000 2702 +2704 2 815.788 731.289 970.152 1.000 2614 +2705 2 814.744 731.154 971.328 1.000 2704 +2706 2 813.680 731.287 971.816 1.000 2705 +2707 2 812.597 731.640 972.297 1.000 2706 +2708 2 811.708 731.718 972.891 1.000 2707 +2709 2 810.967 730.975 973.526 1.000 2708 +2710 2 810.022 730.398 974.047 1.000 2709 +2711 2 808.992 729.902 974.431 1.000 2710 +2712 2 807.953 729.442 974.792 1.000 2711 +2713 2 806.907 729.025 975.156 1.000 2712 +2714 2 805.857 728.627 975.509 1.000 2713 +2715 2 804.787 728.356 975.895 1.000 2714 +2716 2 803.781 727.888 976.262 1.000 2715 +2717 2 802.851 727.231 976.816 1.000 2716 +2718 2 820.916 745.962 965.205 1.000 87 +2719 2 819.933 746.367 967.019 1.000 2718 +2720 2 818.988 746.809 967.792 1.000 2719 +2721 2 818.054 747.264 968.719 1.000 2720 +2722 2 817.180 747.688 969.794 1.000 2721 +2723 2 816.308 748.107 970.948 1.000 2722 +2724 2 815.299 748.159 972.098 1.000 2723 +2725 2 814.338 748.541 973.168 1.000 2724 +2726 2 813.353 749.042 974.100 1.000 2725 +2727 2 812.359 749.544 974.901 1.000 2726 +2728 2 811.349 750.050 975.559 1.000 2727 +2729 2 810.359 750.503 976.158 1.000 2728 +2730 2 809.378 750.998 976.716 1.000 2729 +2731 2 808.395 751.506 977.228 1.000 2730 +2732 2 808.446 752.142 977.614 1.000 2731 +2733 2 808.540 753.278 977.917 1.000 2732 +2734 2 808.488 754.417 978.124 1.000 2733 +2735 2 808.393 755.556 978.244 1.000 2734 +2736 2 808.370 756.698 978.286 1.000 2735 +2737 2 808.441 757.824 978.281 1.000 2736 +2738 2 808.819 758.901 978.258 1.000 2737 +2739 2 809.302 759.921 978.275 1.000 2738 +2740 2 809.457 761.052 978.348 1.000 2739 +2741 2 809.766 762.129 978.474 1.000 2740 +2742 2 810.307 763.128 978.653 1.000 2741 +2743 2 811.017 764.009 978.841 1.000 2742 +2744 2 811.618 764.953 979.014 1.000 2743 +2745 2 812.016 766.025 979.160 1.000 2744 +2746 2 812.798 766.829 979.345 1.000 2745 +2747 2 813.598 767.629 979.530 1.000 2746 +2748 2 814.160 768.604 979.661 1.000 2747 +2749 2 814.622 769.651 979.731 1.000 2748 +2750 2 814.760 770.773 979.717 1.000 2749 +2751 2 814.837 771.911 979.630 1.000 2750 +2752 2 815.014 773.034 979.490 1.000 2751 +2753 2 815.314 774.133 979.325 1.000 2752 +2754 2 815.331 775.266 979.160 1.000 2753 +2755 2 815.315 776.406 979.014 1.000 2754 +2756 2 815.345 777.549 978.914 1.000 2755 +2757 2 815.197 778.669 978.818 1.000 2756 +2758 2 815.180 779.813 978.790 1.000 2757 +2759 2 815.220 780.953 978.858 1.000 2758 +2760 2 815.635 781.967 979.009 1.000 2759 +2761 2 816.340 782.862 979.233 1.000 2760 +2762 2 817.068 783.741 979.518 1.000 2761 +2763 2 817.200 784.074 979.854 1.000 2762 +2764 2 817.515 785.119 980.300 1.000 2763 +2765 2 817.684 786.196 980.829 1.000 2764 +2766 2 817.819 787.292 981.394 1.000 2765 +2767 2 817.935 788.396 981.954 1.000 2766 +2768 2 817.971 789.537 982.422 1.000 2767 +2769 2 818.388 789.755 982.836 1.000 2768 +2770 2 819.249 790.342 983.287 1.000 2769 +2771 2 819.709 791.314 983.643 1.000 2770 +2772 2 820.040 792.409 983.853 1.000 2771 +2773 2 820.336 793.513 983.951 1.000 2772 +2774 2 820.519 794.626 983.959 1.000 2773 +2775 2 820.376 795.758 983.892 1.000 2774 +2776 2 820.248 796.892 983.763 1.000 2775 +2777 2 820.178 798.027 983.604 1.000 2776 +2778 2 820.452 799.108 983.469 1.000 2777 +2779 2 820.892 800.162 983.377 1.000 2778 +2780 2 820.928 801.276 983.287 1.000 2779 +2781 2 820.805 802.413 983.192 1.000 2780 +2782 2 820.958 803.538 983.083 1.000 2781 +2783 2 821.486 804.456 982.870 1.000 2782 +2784 2 822.192 805.329 982.632 1.000 2783 +2785 2 822.108 805.946 982.498 1.000 2784 +2786 2 821.965 807.073 982.472 1.000 2785 +2787 2 821.843 808.208 982.503 1.000 2786 +2788 2 822.084 809.306 982.587 1.000 2787 +2789 2 822.440 810.390 982.708 1.000 2788 +2790 2 822.510 811.501 982.803 1.000 2789 +2791 2 822.368 812.634 982.845 1.000 2790 +2792 2 822.402 813.773 982.862 1.000 2791 +2793 2 822.443 814.912 982.887 1.000 2792 +2794 2 822.432 816.056 982.979 1.000 2793 +2795 2 822.412 817.199 983.161 1.000 2794 +2796 2 822.347 818.336 983.464 1.000 2795 +2797 2 822.366 819.470 983.886 1.000 2796 +2798 2 822.466 820.491 984.508 1.000 2797 +2799 2 822.579 821.424 985.351 1.000 2798 +2800 2 821.987 822.184 986.303 1.000 2799 +2801 2 821.394 823.021 987.260 1.000 2800 +2802 2 820.939 824.056 988.092 1.000 2801 +2803 2 820.397 825.051 988.809 1.000 2802 +2804 2 820.047 826.087 989.470 1.000 2803 +2805 2 819.701 827.126 990.077 1.000 2804 +2806 2 819.011 827.983 990.612 1.000 2805 +2807 2 818.622 828.954 991.164 1.000 2806 +2808 2 818.608 828.965 991.553 1.000 2807 +2809 2 817.722 829.689 991.810 1.000 2808 +2810 2 816.815 830.380 991.936 1.000 2809 +2811 2 815.852 830.987 991.936 1.000 2810 +2812 2 814.843 831.516 991.858 1.000 2811 +2813 2 814.149 830.710 991.740 1.000 2812 +2814 2 813.395 829.861 991.620 1.000 2813 +2815 2 812.349 829.401 991.539 1.000 2814 +2816 2 811.361 828.837 991.536 1.000 2815 +2817 2 810.398 828.233 991.614 1.000 2816 +2818 2 809.374 827.737 991.715 1.000 2817 +2819 2 808.279 827.425 991.819 1.000 2818 +2820 2 807.137 827.465 991.928 1.000 2819 +2821 2 805.995 827.501 992.051 1.000 2820 +2822 2 804.862 827.336 992.211 1.000 2821 +2823 2 803.731 827.170 992.424 1.000 2822 +2824 2 802.664 826.835 992.776 1.000 2823 +2825 2 801.681 826.923 993.322 1.000 2824 +2826 2 800.742 827.258 994.039 1.000 2825 +2827 2 799.780 827.519 994.837 1.000 2826 +2828 2 798.734 827.485 995.627 1.000 2827 +2829 2 797.653 827.413 996.288 1.000 2828 +2830 2 796.517 827.279 996.699 1.000 2829 +2831 2 795.404 827.080 996.881 1.000 2830 +2832 2 794.395 826.582 996.834 1.000 2831 +2833 2 793.595 825.803 996.652 1.000 2832 +2834 2 792.775 825.041 996.411 1.000 2833 +2835 2 791.770 824.516 996.167 1.000 2834 +2836 2 790.679 824.258 995.918 1.000 2835 +2837 2 789.778 823.661 995.747 1.000 2836 +2838 2 788.735 823.240 995.725 1.000 2837 +2839 2 787.682 822.848 995.798 1.000 2838 +2840 2 786.591 822.541 995.910 1.000 2839 +2841 2 785.568 822.085 995.971 1.000 2840 +2842 2 784.581 821.554 995.904 1.000 2841 +2843 2 783.542 821.146 995.708 1.000 2842 +2844 2 782.550 820.603 995.439 1.000 2843 +2845 2 781.548 820.079 995.142 1.000 2844 +2846 2 780.454 819.790 994.879 1.000 2845 +2847 2 779.325 819.612 994.680 1.000 2846 +2848 2 778.217 819.336 994.566 1.000 2847 +2849 2 777.117 819.035 994.498 1.000 2848 +2850 2 776.051 818.621 994.426 1.000 2849 +2851 2 774.980 818.233 994.311 1.000 2850 +2852 2 773.906 817.890 994.115 1.000 2851 +2853 2 772.838 817.523 993.866 1.000 2852 +2854 2 771.736 817.271 993.580 1.000 2853 +2855 2 770.622 817.100 993.283 1.000 2854 +2856 2 769.498 817.031 992.992 1.000 2855 +2857 2 768.409 816.690 992.793 1.000 2856 +2858 2 767.330 816.320 992.684 1.000 2857 +2859 2 766.624 815.419 992.642 1.000 2858 +2860 2 765.684 815.293 992.659 1.000 2859 +2861 2 764.587 815.412 992.718 1.000 2860 +2862 2 763.475 815.146 992.813 1.000 2861 +2863 2 762.351 815.081 992.942 1.000 2862 +2864 2 761.218 815.226 993.118 1.000 2863 +2865 2 760.087 815.147 993.320 1.000 2864 +2866 2 758.958 814.992 993.560 1.000 2865 +2867 2 757.876 814.843 993.986 1.000 2866 +2868 2 756.812 814.695 994.616 1.000 2867 +2869 2 755.968 814.264 995.473 1.000 2868 +2870 2 755.420 813.698 996.554 1.000 2869 +2871 2 754.776 813.246 997.735 1.000 2870 +2872 2 753.722 813.012 998.824 1.000 2871 +2873 2 752.644 812.889 999.751 1.000 2872 +2874 2 751.510 813.032 1000.440 1.000 2873 +2875 2 750.386 813.031 1000.958 1.000 2874 +2876 2 749.280 812.799 1001.398 1.000 2875 +2877 2 748.190 812.526 1001.818 1.000 2876 +2878 2 747.138 812.154 1002.271 1.000 2877 +2879 2 746.201 811.607 1002.711 1.000 2878 +2880 2 745.086 811.437 1003.139 1.000 2879 +2881 2 744.497 812.127 1003.722 1.000 2880 +2882 2 743.430 812.511 1004.231 1.000 2881 +2883 2 742.355 812.892 1004.671 1.000 2882 +2884 2 741.243 813.155 1005.049 1.000 2883 +2885 2 740.120 813.290 1005.399 1.000 2884 +2886 2 738.982 813.242 1005.749 1.000 2885 +2887 2 737.873 813.085 1006.110 1.000 2886 +2888 2 736.873 812.528 1006.502 1.000 2887 +2889 2 735.851 812.175 1006.998 1.000 2888 +2890 2 734.787 812.175 1007.695 1.000 2889 +2891 2 733.702 812.158 1008.538 1.000 2890 +2892 2 732.611 812.132 1009.498 1.000 2891 +2893 2 732.547 811.177 1010.638 1.000 2892 +2894 2 732.505 810.268 1011.931 1.000 2893 +2895 2 732.463 809.459 1013.351 1.000 2894 +2896 2 732.422 808.650 1014.829 1.000 2895 +2897 2 732.724 807.744 1016.243 1.000 2896 +2898 2 733.042 806.813 1017.548 1.000 2897 +2899 2 732.972 805.691 1018.604 1.000 2898 +2900 2 733.571 805.203 1019.466 1.000 2899 +2901 2 734.676 805.278 1020.188 1.000 2900 +2902 2 735.767 805.529 1020.796 1.000 2901 +2903 2 736.876 805.765 1021.286 1.000 2902 +2904 2 737.984 805.665 1021.756 1.000 2903 +2905 2 739.054 805.512 1022.252 1.000 2904 +2906 2 740.032 805.898 1022.686 1.000 2905 +2907 2 741.045 806.274 1023.022 1.000 2906 +2908 2 742.183 806.314 1023.324 1.000 2907 +2909 2 743.320 806.299 1023.590 1.000 2908 +2910 2 744.460 806.212 1023.806 1.000 2909 +2911 2 745.594 806.279 1024.033 1.000 2910 +2912 2 746.683 806.031 1024.299 1.000 2911 +2913 2 747.805 805.824 1024.548 1.000 2912 +2914 2 748.930 805.697 1024.789 1.000 2913 +2915 2 750.045 805.877 1025.063 1.000 2914 +2916 2 751.165 806.067 1025.346 1.000 2915 +2917 2 752.289 806.268 1025.612 1.000 2916 +2918 2 753.421 806.326 1025.875 1.000 2917 +2919 2 754.561 806.268 1026.138 1.000 2918 +2920 2 755.691 806.395 1026.402 1.000 2919 +2921 2 756.818 806.589 1026.673 1.000 2920 +2922 2 757.954 806.578 1026.998 1.000 2921 +2923 2 759.089 806.563 1027.382 1.000 2922 +2924 2 760.217 806.495 1027.832 1.000 2923 +2925 2 761.332 806.432 1028.367 1.000 2924 +2926 2 762.404 806.383 1029.022 1.000 2925 +2927 2 763.471 806.261 1029.759 1.000 2926 +2928 2 764.535 806.066 1030.537 1.000 2927 +2929 2 765.597 805.890 1031.335 1.000 2928 +2930 2 766.632 805.597 1032.114 1.000 2929 +2931 2 767.534 805.349 1032.805 1.000 2930 +2932 2 768.012 806.363 1033.446 1.000 2931 +2933 2 768.123 807.465 1034.029 1.000 2932 +2934 2 768.880 808.003 1034.600 1.000 2933 +2935 2 769.828 808.503 1035.196 1.000 2934 +2936 2 770.706 809.125 1035.824 1.000 2935 +2937 2 771.455 809.977 1036.386 1.000 2936 +2938 2 772.190 810.848 1036.879 1.000 2937 +2939 2 772.912 811.732 1037.313 1.000 2938 +2940 2 773.701 812.493 1037.722 1.000 2939 +2941 2 774.791 812.724 1038.164 1.000 2940 +2942 2 775.726 813.206 1038.643 1.000 2941 +2943 2 776.378 814.118 1039.153 1.000 2942 +2944 2 776.933 815.098 1039.671 1.000 2943 +2945 2 777.707 815.927 1040.192 1.000 2944 +2946 2 778.620 816.548 1040.740 1.000 2945 +2947 2 779.605 817.057 1041.328 1.000 2946 +2948 2 780.477 817.684 1041.992 1.000 2947 +2949 2 781.345 818.381 1042.661 1.000 2948 +2950 2 781.951 819.253 1043.328 1.000 2949 +2951 2 782.228 820.305 1044.025 1.000 2950 +2952 2 783.164 820.807 1044.705 1.000 2951 +2953 2 783.996 821.487 1045.391 1.000 2952 +2954 2 784.852 822.084 1046.032 1.000 2953 +2955 2 785.960 822.257 1046.620 1.000 2954 +2956 2 787.039 822.576 1047.158 1.000 2955 +2957 2 788.003 823.130 1047.654 1.000 2956 +2958 2 788.916 823.788 1048.113 1.000 2957 +2959 2 789.850 824.444 1048.499 1.000 2958 +2960 2 790.799 825.073 1048.858 1.000 2959 +2961 2 791.680 825.786 1049.188 1.000 2960 +2962 2 792.551 826.471 1049.504 1.000 2961 +2963 2 793.633 826.804 1049.860 1.000 2962 +2964 2 794.686 827.202 1050.272 1.000 2963 +2965 2 795.733 827.618 1050.745 1.000 2964 +2966 2 796.790 828.008 1051.263 1.000 2965 +2967 2 797.622 828.745 1051.840 1.000 2966 +2968 2 798.660 829.146 1052.472 1.000 2967 +2969 2 799.697 829.548 1053.153 1.000 2968 +2970 2 800.487 830.174 1053.889 1.000 2969 +2971 2 801.180 830.645 1054.698 1.000 2970 +2972 2 802.205 830.743 1055.555 1.000 2971 +2973 2 803.202 831.053 1056.429 1.000 2972 +2974 2 804.201 831.363 1057.286 1.000 2973 +2975 2 804.782 832.054 1058.137 1.000 2974 +2976 2 805.430 832.895 1058.823 1.000 2975 +2977 2 806.427 833.175 1059.243 1.000 2976 +2978 2 807.563 833.108 1059.428 1.000 2977 +2979 2 808.680 832.938 1059.430 1.000 2978 +2980 2 809.712 832.536 1059.318 1.000 2979 +2981 2 810.534 831.744 1059.173 1.000 2980 +2982 2 811.288 830.887 1059.047 1.000 2981 +2983 2 811.795 829.868 1058.991 1.000 2982 +2984 2 812.296 828.843 1059.005 1.000 2983 +2985 2 812.893 827.881 1059.114 1.000 2984 +2986 2 813.657 827.065 1059.302 1.000 2985 +2987 2 814.527 826.357 1059.506 1.000 2986 +2988 2 815.558 825.955 1059.666 1.000 2987 +2989 2 816.667 825.703 1059.724 1.000 2988 +2990 2 817.748 825.332 1059.640 1.000 2989 +2991 2 818.796 824.909 1059.408 1.000 2990 +2992 2 819.794 824.410 1059.030 1.000 2991 +2993 2 820.098 823.417 1058.540 1.000 2992 +2994 2 820.396 822.407 1057.952 1.000 2993 +2995 2 820.722 821.415 1056.490 1.000 2994 +2996 2 814.634 832.133 991.934 1.000 2812 +2997 2 814.273 833.208 993.339 1.000 2996 +2998 2 813.546 833.809 993.969 1.000 2997 +2999 2 812.806 834.333 994.809 1.000 2998 +3000 2 812.539 835.276 995.767 1.000 2999 +3001 2 812.574 836.353 996.708 1.000 3000 +3002 2 812.609 837.431 997.587 1.000 3001 +3003 2 812.742 838.425 999.390 1.000 3002 +3004 2 819.220 828.261 993.614 1.000 2807 +3005 2 820.113 827.866 995.501 1.000 3004 +3006 2 821.088 827.889 996.313 1.000 3005 +3007 2 822.077 827.997 997.259 1.000 3006 +3008 2 823.131 828.031 998.228 1.000 3007 +3009 2 824.204 828.089 999.158 1.000 3008 +3010 2 825.224 828.036 1000.017 1.000 3009 +3011 2 826.324 827.763 1000.714 1.000 3010 +3012 2 827.441 827.612 1001.288 1.000 3011 +3013 2 828.563 827.488 1001.770 1.000 3012 +3014 2 829.687 827.403 1002.184 1.000 3013 +3015 2 830.811 827.303 1002.537 1.000 3014 +3016 2 831.914 827.022 1003.128 1.000 3015 +3017 2 822.597 805.254 981.921 1.000 2784 +3018 2 823.720 805.043 981.966 1.000 3017 +3019 2 824.841 804.825 981.991 1.000 3018 +3020 2 825.925 804.463 982.016 1.000 3019 +3021 2 827.032 804.581 981.999 1.000 3020 +3022 2 828.146 804.831 981.935 1.000 3021 +3023 2 828.957 805.582 981.795 1.000 3022 +3024 2 829.975 805.869 981.632 1.000 3023 +3025 2 831.089 805.653 981.495 1.000 3024 +3026 2 832.218 805.466 981.364 1.000 3025 +3027 2 833.315 805.170 981.238 1.000 3026 +3028 2 834.380 804.757 981.112 1.000 3027 +3029 2 835.428 804.305 980.972 1.000 3028 +3030 2 836.458 803.817 980.812 1.000 3029 +3031 2 837.516 803.424 980.664 1.000 3030 +3032 2 838.635 803.250 980.571 1.000 3031 +3033 2 839.658 802.908 980.378 1.000 3032 +3034 2 840.719 802.555 980.104 1.000 3033 +3035 2 841.744 802.078 979.798 1.000 3034 +3036 2 842.748 801.541 979.510 1.000 3035 +3037 2 843.862 801.454 979.230 1.000 3036 +3038 2 844.988 801.510 978.953 1.000 3037 +3039 2 846.021 801.838 978.631 1.000 3038 +3040 2 847.115 802.000 978.303 1.000 3039 +3041 2 848.207 802.340 978.068 1.000 3040 +3042 2 849.320 802.523 977.917 1.000 3041 +3043 2 850.462 802.492 977.850 1.000 3042 +3044 2 851.588 802.593 977.889 1.000 3043 +3045 2 852.687 802.893 978.060 1.000 3044 +3046 2 853.797 803.075 978.359 1.000 3045 +3047 2 854.914 803.172 978.776 1.000 3046 +3048 2 856.027 803.141 979.292 1.000 3047 +3049 2 857.140 803.083 979.877 1.000 3048 +3050 2 858.207 802.934 980.546 1.000 3049 +3051 2 859.268 802.737 981.254 1.000 3050 +3052 2 860.295 802.320 981.949 1.000 3051 +3053 2 861.120 801.655 982.607 1.000 3052 +3054 2 861.623 800.646 983.192 1.000 3053 +3055 2 861.956 799.601 983.766 1.000 3054 +3056 2 862.704 798.930 984.312 1.000 3055 +3057 2 863.778 798.613 984.802 1.000 3056 +3058 2 864.883 798.394 985.250 1.000 3057 +3059 2 865.950 798.052 985.628 1.000 3058 +3060 2 866.906 797.434 985.914 1.000 3059 +3061 2 867.790 796.718 986.157 1.000 3060 +3062 2 868.770 796.128 986.359 1.000 3061 +3063 2 869.679 795.450 986.552 1.000 3062 +3064 2 870.582 794.764 986.754 1.000 3063 +3065 2 871.546 794.166 986.941 1.000 3064 +3066 2 872.570 793.655 987.087 1.000 3065 +3067 2 873.491 792.984 987.185 1.000 3066 +3068 2 874.479 792.424 987.238 1.000 3067 +3069 2 875.507 791.920 987.255 1.000 3068 +3070 2 876.438 791.264 987.263 1.000 3069 +3071 2 877.473 790.812 987.330 1.000 3070 +3072 2 878.473 790.274 987.434 1.000 3071 +3073 2 879.455 789.700 987.557 1.000 3072 +3074 2 880.521 789.322 987.630 1.000 3073 +3075 2 881.643 789.188 987.613 1.000 3074 +3076 2 882.765 788.979 987.574 1.000 3075 +3077 2 883.877 788.729 987.524 1.000 3076 +3078 2 884.873 788.164 987.482 1.000 3077 +3079 2 885.867 787.601 987.451 1.000 3078 +3080 2 886.881 787.097 987.428 1.000 3079 +3081 2 888.014 786.938 987.417 1.000 3080 +3082 2 889.136 786.971 987.493 1.000 3081 +3083 2 890.260 786.931 987.591 1.000 3082 +3084 2 891.386 786.748 987.636 1.000 3083 +3085 2 892.497 786.501 987.627 1.000 3084 +3086 2 893.582 786.158 987.571 1.000 3085 +3087 2 894.692 785.904 987.507 1.000 3086 +3088 2 895.821 785.718 987.454 1.000 3087 +3089 2 896.956 785.579 987.442 1.000 3088 +3090 2 898.091 785.454 987.470 1.000 3089 +3091 2 899.153 785.059 987.543 1.000 3090 +3092 2 900.275 784.875 987.619 1.000 3091 +3093 2 901.363 784.523 987.669 1.000 3092 +3094 2 902.449 784.165 987.700 1.000 3093 +3095 2 903.484 783.677 987.722 1.000 3094 +3096 2 904.481 783.120 987.739 1.000 3095 +3097 2 905.420 782.470 987.770 1.000 3096 +3098 2 906.321 781.772 987.837 1.000 3097 +3099 2 907.397 781.390 987.955 1.000 3098 +3100 2 908.487 781.053 988.106 1.000 3099 +3101 2 909.601 780.815 988.288 1.000 3100 +3102 2 910.712 780.572 988.498 1.000 3101 +3103 2 911.798 780.225 988.719 1.000 3102 +3104 2 912.905 780.028 988.952 1.000 3103 +3105 2 914.041 780.041 989.192 1.000 3104 +3106 2 915.117 779.760 989.419 1.000 3105 +3107 2 916.112 779.217 989.612 1.000 3106 +3108 2 916.903 778.428 989.792 1.000 3107 +3109 2 917.907 777.897 990.002 1.000 3108 +3110 2 918.935 777.465 990.234 1.000 3109 +3111 2 920.054 777.380 990.506 1.000 3110 +3112 2 921.140 777.132 990.777 1.000 3111 +3113 2 922.153 776.615 990.984 1.000 3112 +3114 2 923.190 776.242 991.105 1.000 3113 +3115 2 924.333 776.298 991.155 1.000 3114 +3116 2 925.467 776.234 991.152 1.000 3115 +3117 2 926.594 776.040 991.113 1.000 3116 +3118 2 927.631 775.574 991.032 1.000 3117 +3119 2 928.659 775.091 990.940 1.000 3118 +3120 2 929.628 774.503 990.931 1.000 3119 +3121 2 930.674 774.044 990.970 1.000 3120 +3122 2 931.679 773.503 991.021 1.000 3121 +3123 2 932.633 772.881 991.074 1.000 3122 +3124 2 933.547 772.206 991.144 1.000 3123 +3125 2 934.539 771.642 991.234 1.000 3124 +3126 2 935.524 771.062 991.312 1.000 3125 +3127 2 936.469 770.421 991.374 1.000 3126 +3128 2 937.408 769.779 991.427 1.000 3127 +3129 2 938.424 769.266 991.494 1.000 3128 +3130 2 939.433 768.733 991.542 1.000 3129 +3131 2 940.377 768.101 991.516 1.000 3130 +3132 2 941.282 767.418 991.416 1.000 3131 +3133 2 942.345 767.085 991.214 1.000 3132 +3134 2 943.345 766.569 991.032 1.000 3133 +3135 2 944.418 766.205 990.889 1.000 3134 +3136 2 945.507 765.874 990.760 1.000 3135 +3137 2 946.587 765.519 990.646 1.000 3136 +3138 2 947.677 765.199 990.578 1.000 3137 +3139 2 948.795 764.966 990.604 1.000 3138 +3140 2 949.865 764.596 990.710 1.000 3139 +3141 2 950.880 764.099 990.900 1.000 3140 +3142 2 951.932 763.667 991.113 1.000 3141 +3143 2 953.010 763.287 991.318 1.000 3142 +3144 2 954.106 763.005 991.530 1.000 3143 +3145 2 955.222 762.841 991.780 1.000 3144 +3146 2 956.329 762.560 991.998 1.000 3145 +3147 2 957.428 762.247 992.183 1.000 3146 +3148 2 958.554 762.343 992.387 1.000 3147 +3149 2 959.682 762.485 992.600 1.000 3148 +3150 2 960.736 762.105 992.844 1.000 3149 +3151 2 961.775 761.685 993.090 1.000 3150 +3152 2 962.662 760.965 993.250 1.000 3151 +3153 2 963.656 760.449 993.317 1.000 3152 +3154 2 964.751 760.117 993.342 1.000 3153 +3155 2 965.839 759.769 993.336 1.000 3154 +3156 2 966.876 759.287 993.306 1.000 3155 +3157 2 967.887 758.767 993.255 1.000 3156 +3158 2 968.940 758.503 993.205 1.000 3157 +3159 2 970.071 758.639 993.222 1.000 3158 +3160 2 971.182 758.594 993.328 1.000 3159 +3161 2 972.032 757.841 993.493 1.000 3160 +3162 2 973.131 757.639 993.720 1.000 3161 +3163 2 974.237 757.409 993.958 1.000 3162 +3164 2 975.337 757.091 994.140 1.000 3163 +3165 2 976.443 756.819 994.269 1.000 3164 +3166 2 977.580 756.721 994.339 1.000 3165 +3167 2 978.693 756.495 994.392 1.000 3166 +3168 2 979.784 756.154 994.479 1.000 3167 +3169 2 980.783 755.641 994.630 1.000 3168 +3170 2 981.685 754.947 994.871 1.000 3169 +3171 2 982.641 754.363 995.226 1.000 3170 +3172 2 983.743 754.310 995.658 1.000 3171 +3173 2 984.867 754.270 996.142 1.000 3172 +3174 2 985.991 754.201 996.660 1.000 3173 +3175 2 987.082 754.108 997.231 1.000 3174 +3176 2 988.149 753.996 997.850 1.000 3175 +3177 2 989.197 753.699 998.460 1.000 3176 +3178 2 990.228 753.356 999.034 1.000 3177 +3179 2 990.964 752.526 999.516 1.000 3178 +3180 2 991.805 751.773 999.849 1.000 3179 +3181 2 992.697 751.069 1000.006 1.000 3180 +3182 2 993.774 750.685 999.964 1.000 3181 +3183 2 994.777 750.289 999.642 1.000 3182 +3184 2 995.719 749.897 999.065 1.000 3183 +3185 2 996.652 749.461 998.337 1.000 3184 +3186 2 997.554 748.818 997.601 1.000 3185 +3187 2 998.548 748.356 996.909 1.000 3186 +3188 2 999.603 747.956 996.304 1.000 3187 +3189 2 1000.650 747.533 995.795 1.000 3188 +3190 2 1001.588 746.950 995.322 1.000 3189 +3191 2 1002.536 746.344 994.949 1.000 3190 +3192 2 1003.556 745.850 994.692 1.000 3191 +3193 2 1004.617 745.440 994.501 1.000 3192 +3194 2 1005.724 745.335 994.230 1.000 3193 +3195 2 1006.836 745.284 993.860 1.000 3194 +3196 2 1007.855 744.811 993.420 1.000 3195 +3197 2 1008.874 744.339 992.902 1.000 3196 +3198 2 1009.865 744.174 992.242 1.000 3197 +3199 2 1011.001 744.120 991.640 1.000 3198 +3200 2 1012.076 743.751 991.038 1.000 3199 +3201 2 1013.142 743.414 990.391 1.000 3200 +3202 2 1014.185 743.160 989.615 1.000 3201 +3203 2 1015.210 742.880 988.725 1.000 3202 +3204 2 1015.870 742.025 987.745 1.000 3203 +3205 2 1015.675 741.415 986.636 1.000 3204 +3206 2 1015.090 740.621 985.404 1.000 3205 +3207 2 1014.763 739.845 984.021 1.000 3206 +3208 2 1014.004 739.962 982.486 1.000 3207 +3209 2 1013.240 740.000 980.857 1.000 3208 +3210 2 1012.443 739.828 979.219 1.000 3209 +3211 2 1011.613 739.438 977.665 1.000 3210 +3212 2 1010.782 739.048 976.228 1.000 3211 +3213 2 1010.548 738.359 974.940 1.000 3212 +3214 2 1010.787 737.494 973.834 1.000 3213 +3215 2 1011.926 737.414 973.151 1.000 3214 +3216 2 1013.059 737.412 972.801 1.000 3215 +3217 2 1014.162 737.703 972.703 1.000 3216 +3218 2 1015.265 737.911 972.787 1.000 3217 +3219 2 1016.368 737.760 973.028 1.000 3218 +3220 2 1017.114 738.466 973.708 1.000 3219 +3221 2 838.624 803.051 981.873 1.000 3032 +3222 2 838.585 802.406 983.917 1.000 3221 +3223 2 838.013 801.770 984.791 1.000 3222 +3224 2 837.566 800.869 985.678 1.000 3223 +3225 2 837.469 799.762 986.457 1.000 3224 +3226 2 837.426 798.632 987.092 1.000 3225 +3227 2 837.189 797.519 987.552 1.000 3226 +3228 2 836.938 796.412 987.843 1.000 3227 +3229 2 836.965 795.302 987.958 1.000 3228 +3230 2 836.993 794.192 987.991 1.000 3229 +3231 2 837.557 793.270 988.156 1.000 3230 +3232 2 837.911 792.466 988.655 1.000 3231 +3233 2 838.101 791.397 989.290 1.000 3232 +3234 2 838.291 790.328 990.030 1.000 3233 +3235 2 838.671 789.299 990.811 1.000 3234 +3236 2 839.195 788.336 991.586 1.000 3235 +3237 2 839.950 787.534 992.326 1.000 3236 +3238 2 840.626 786.637 992.981 1.000 3237 +3239 2 841.192 785.682 993.616 1.000 3238 +3240 2 841.751 784.732 994.249 1.000 3239 +3241 2 842.479 783.870 994.837 1.000 3240 +3242 2 843.104 782.918 995.403 1.000 3241 +3243 2 843.772 782.065 995.994 1.000 3242 +3244 2 844.625 781.633 996.750 1.000 3243 +3245 2 845.200 780.868 997.615 1.000 3244 +3246 2 845.659 780.009 998.497 1.000 3245 +3247 2 845.776 778.881 999.242 1.000 3246 +3248 2 846.285 777.875 999.813 1.000 3247 +3249 2 846.550 776.765 1000.216 1.000 3248 +3250 2 846.797 775.654 1000.504 1.000 3249 +3251 2 846.913 774.554 1000.852 1.000 3250 +3252 2 846.910 773.447 1001.260 1.000 3251 +3253 2 846.785 772.335 1001.739 1.000 3252 +3254 2 847.293 771.372 1002.252 1.000 3253 +3255 2 847.983 770.469 1002.781 1.000 3254 +3256 2 848.761 769.631 1003.288 1.000 3255 +3257 2 849.666 769.061 1003.867 1.000 3256 +3258 2 850.529 768.706 1004.637 1.000 3257 +3259 2 851.227 767.997 1005.544 1.000 3258 +3260 2 851.471 766.951 1006.491 1.000 3259 +3261 2 851.715 765.906 1007.462 1.000 3260 +3262 2 851.739 764.806 1008.406 1.000 3261 +3263 2 851.760 763.707 1009.308 1.000 3262 +3264 2 852.273 762.755 1010.156 1.000 3263 +3265 2 852.430 761.707 1011.032 1.000 3264 +3266 2 852.718 760.654 1011.912 1.000 3265 +3267 2 853.001 759.598 1012.805 1.000 3266 +3268 2 853.043 758.481 1013.692 1.000 3267 +3269 2 853.107 757.376 1014.591 1.000 3268 +3270 2 853.524 756.446 1015.594 1.000 3269 +3271 2 853.940 755.515 1016.674 1.000 3270 +3272 2 854.301 755.093 1017.971 1.000 3271 +3273 2 854.356 754.018 1019.200 1.000 3272 +3274 2 854.264 752.941 1020.348 1.000 3273 +3275 2 853.859 751.945 1021.443 1.000 3274 +3276 2 853.491 750.941 1022.470 1.000 3275 +3277 2 853.210 749.898 1023.422 1.000 3276 +3278 2 852.906 748.889 1024.318 1.000 3277 +3279 2 852.542 747.954 1025.209 1.000 3278 +3280 2 851.992 747.138 1027.132 1.000 3279 +3281 2 817.817 789.714 982.321 1.000 2768 +3282 2 817.115 790.513 980.400 1.000 3281 +3283 2 816.790 791.352 979.538 1.000 3282 +3284 2 816.261 791.887 978.494 1.000 3283 +3285 2 815.224 791.746 977.399 1.000 3284 +3286 2 814.173 791.574 976.318 1.000 3285 +3287 2 813.107 791.261 975.344 1.000 3286 +3288 2 812.320 790.629 974.372 1.000 3287 +3289 2 811.431 790.157 973.437 1.000 3288 +3290 2 810.429 789.867 972.546 1.000 3289 +3291 2 809.353 789.647 971.762 1.000 3290 +3292 2 808.249 789.453 971.099 1.000 3291 +3293 2 807.916 789.456 970.603 1.000 3292 +3294 2 806.779 789.468 970.225 1.000 3293 +3295 2 805.692 789.685 969.928 1.000 3294 +3296 2 804.685 790.223 969.693 1.000 3295 +3297 2 803.641 790.601 969.486 1.000 3296 +3298 2 802.499 790.576 969.296 1.000 3297 +3299 2 801.358 790.517 969.111 1.000 3298 +3300 2 800.219 790.431 968.943 1.000 3299 +3301 2 799.132 790.650 968.761 1.000 3300 +3302 2 798.077 791.057 968.559 1.000 3301 +3303 2 797.061 791.570 968.372 1.000 3302 +3304 2 796.034 792.062 968.248 1.000 3303 +3305 2 794.920 792.316 968.192 1.000 3304 +3306 2 793.807 792.569 968.181 1.000 3305 +3307 2 792.670 792.668 968.195 1.000 3306 +3308 2 791.530 792.744 968.212 1.000 3307 +3309 2 790.449 793.071 968.142 1.000 3308 +3310 2 789.367 793.417 968.005 1.000 3309 +3311 2 788.231 793.483 967.837 1.000 3310 +3312 2 787.175 793.147 967.644 1.000 3311 +3313 2 786.041 793.014 967.459 1.000 3312 +3314 2 784.900 793.012 967.305 1.000 3313 +3315 2 783.757 793.052 967.187 1.000 3314 +3316 2 782.756 793.506 967.095 1.000 3315 +3317 2 781.614 793.524 966.988 1.000 3316 +3318 2 780.475 793.622 966.882 1.000 3317 +3319 2 779.339 793.748 966.776 1.000 3318 +3320 2 778.270 794.126 966.613 1.000 3319 +3321 2 777.203 794.514 966.420 1.000 3320 +3322 2 776.140 794.930 966.230 1.000 3321 +3323 2 775.058 795.272 966.050 1.000 3322 +3324 2 773.954 795.511 965.891 1.000 3323 +3325 2 772.917 795.969 965.751 1.000 3324 +3326 2 771.806 796.245 965.653 1.000 3325 +3327 2 770.707 796.552 965.580 1.000 3326 +3328 2 769.625 796.924 965.510 1.000 3327 +3329 2 768.517 797.136 965.409 1.000 3328 +3330 2 767.384 797.172 965.261 1.000 3329 +3331 2 766.304 797.500 965.101 1.000 3330 +3332 2 765.220 797.862 964.950 1.000 3331 +3333 2 764.296 798.502 964.793 1.000 3332 +3334 2 763.423 799.228 964.642 1.000 3333 +3335 2 762.549 799.943 964.550 1.000 3334 +3336 2 761.414 800.085 964.530 1.000 3335 +3337 2 760.274 800.157 964.575 1.000 3336 +3338 2 759.131 800.180 964.687 1.000 3337 +3339 2 758.216 800.797 964.821 1.000 3338 +3340 2 757.346 801.530 964.981 1.000 3339 +3341 2 756.273 801.734 965.345 1.000 3340 +3342 2 755.214 801.958 965.882 1.000 3341 +3343 2 754.207 802.318 966.532 1.000 3342 +3344 2 753.237 802.784 967.252 1.000 3343 +3345 2 752.233 803.012 968.002 1.000 3344 +3346 2 751.190 802.998 969.634 1.000 3345 +3347 2 808.146 789.298 970.239 1.000 3292 +3348 2 807.242 788.758 969.066 1.000 3347 +3349 2 806.225 788.330 968.559 1.000 3348 +3350 2 805.175 787.988 967.980 1.000 3349 +3351 2 804.111 787.686 967.366 1.000 3350 +3352 2 803.057 787.416 966.736 1.000 3351 +3353 2 802.008 787.083 966.143 1.000 3352 +3354 2 800.898 786.996 965.076 1.000 3353 +3355 2 817.473 783.566 978.964 1.000 2762 +3356 2 818.330 782.903 978.340 1.000 3355 +3357 2 819.365 782.499 978.082 1.000 3356 +3358 2 820.460 782.186 977.838 1.000 3357 +3359 2 821.599 782.137 977.617 1.000 3358 +3360 2 822.733 782.026 977.438 1.000 3359 +3361 2 823.852 781.792 977.318 1.000 3360 +3362 2 824.975 781.580 977.262 1.000 3361 +3363 2 826.104 781.392 977.256 1.000 3362 +3364 2 827.114 780.874 977.292 1.000 3363 +3365 2 828.209 780.547 977.379 1.000 3364 +3366 2 829.305 780.708 977.530 1.000 3365 +3367 2 830.396 781.041 977.746 1.000 3366 +3368 2 831.447 781.199 978.113 1.000 3367 +3369 2 832.499 781.024 978.603 1.000 3368 +3370 2 833.549 780.690 979.129 1.000 3369 +3371 2 834.619 780.375 979.644 1.000 3370 +3372 2 835.721 780.518 980.078 1.000 3371 +3373 2 836.804 780.834 980.414 1.000 3372 +3374 2 837.784 781.414 980.616 1.000 3373 +3375 2 838.805 781.907 980.675 1.000 3374 +3376 2 839.939 782.057 980.669 1.000 3375 +3377 2 841.075 782.100 980.630 1.000 3376 +3378 2 842.212 781.993 980.585 1.000 3377 +3379 2 843.351 781.917 980.532 1.000 3378 +3380 2 844.495 781.931 980.456 1.000 3379 +3381 2 845.628 781.872 980.314 1.000 3380 +3382 2 846.755 781.775 980.095 1.000 3381 +3383 2 847.864 781.950 979.812 1.000 3382 +3384 2 848.973 782.151 979.488 1.000 3383 +3385 2 850.097 782.335 979.182 1.000 3384 +3386 2 851.226 782.489 978.916 1.000 3385 +3387 2 852.362 782.534 978.681 1.000 3386 +3388 2 853.467 782.702 978.480 1.000 3387 +3389 2 854.490 783.179 978.306 1.000 3388 +3390 2 855.512 783.643 978.186 1.000 3389 +3391 2 856.613 783.952 978.188 1.000 3390 +3392 2 857.724 784.088 978.334 1.000 3391 +3393 2 858.849 783.956 978.650 1.000 3392 +3394 2 859.915 784.107 979.143 1.000 3393 +3395 2 860.918 784.555 979.815 1.000 3394 +3396 2 861.866 784.341 980.658 1.000 3395 +3397 2 862.789 783.855 981.635 1.000 3396 +3398 2 863.730 783.511 982.722 1.000 3397 +3399 2 864.654 783.329 983.898 1.000 3398 +3400 2 864.402 782.534 985.141 1.000 3399 +3401 2 863.671 781.844 986.348 1.000 3400 +3402 2 862.698 781.389 987.406 1.000 3401 +3403 2 861.620 781.042 988.299 1.000 3402 +3404 2 860.512 780.769 989.064 1.000 3403 +3405 2 859.403 780.508 989.766 1.000 3404 +3406 2 858.299 780.297 990.489 1.000 3405 +3407 2 857.230 780.478 991.368 1.000 3406 +3408 2 856.284 780.732 992.482 1.000 3407 +3409 2 855.911 781.224 993.899 1.000 3408 +3410 2 855.731 781.794 995.560 1.000 3409 +3411 2 856.262 781.978 997.335 1.000 3410 +3412 2 857.026 782.035 999.130 1.000 3411 +3413 2 857.931 782.053 1000.818 1.000 3412 +3414 2 858.959 782.092 1002.313 1.000 3413 +3415 2 859.972 782.363 1003.615 1.000 3414 +3416 2 861.016 782.459 1004.769 1.000 3415 +3417 2 862.092 782.504 1005.785 1.000 3416 +3418 2 863.179 782.535 1006.692 1.000 3417 +3419 2 864.251 782.300 1007.502 1.000 3418 +3420 2 865.318 781.948 1008.232 1.000 3419 +3421 2 866.412 781.680 1008.907 1.000 3420 +3422 2 867.439 781.291 1009.562 1.000 3421 +3423 2 868.325 780.654 1010.246 1.000 3422 +3424 2 869.240 780.129 1010.996 1.000 3423 +3425 2 870.216 779.688 1011.777 1.000 3424 +3426 2 871.175 779.180 1012.539 1.000 3425 +3427 2 872.024 778.417 1013.208 1.000 3426 +3428 2 872.978 777.833 1013.855 1.000 3427 +3429 2 874.014 777.572 1014.516 1.000 3428 +3430 2 875.099 777.541 1015.210 1.000 3429 +3431 2 876.143 777.353 1015.935 1.000 3430 +3432 2 877.096 776.895 1016.691 1.000 3431 +3433 2 877.951 776.237 1017.428 1.000 3432 +3434 2 878.975 775.821 1018.111 1.000 3433 +3435 2 880.031 775.478 1018.707 1.000 3434 +3436 2 881.163 775.305 1019.152 1.000 3435 +3437 2 882.289 775.172 1019.519 1.000 3436 +3438 2 883.316 774.864 1019.866 1.000 3437 +3439 2 884.195 774.199 1020.211 1.000 3438 +3440 2 885.239 773.783 1020.538 1.000 3439 +3441 2 886.297 773.402 1020.830 1.000 3440 +3442 2 887.391 773.091 1021.051 1.000 3441 +3443 2 888.454 772.687 1021.129 1.000 3442 +3444 2 889.596 772.612 1021.096 1.000 3443 +3445 2 890.706 772.435 1020.930 1.000 3444 +3446 2 891.776 772.128 1020.606 1.000 3445 +3447 2 892.847 771.876 1020.160 1.000 3446 +3448 2 893.920 771.639 1019.645 1.000 3447 +3449 2 894.988 771.321 1019.127 1.000 3448 +3450 2 896.054 770.977 1018.646 1.000 3449 +3451 2 897.120 770.632 1018.220 1.000 3450 +3452 2 898.186 770.287 1017.873 1.000 3451 +3453 2 899.251 769.887 1017.708 1.000 3452 +3454 2 900.321 769.494 1017.699 1.000 3453 +3455 2 901.429 769.212 1017.786 1.000 3454 +3456 2 902.510 768.856 1017.962 1.000 3455 +3457 2 903.429 768.230 1018.234 1.000 3456 +3458 2 904.131 767.372 1018.584 1.000 3457 +3459 2 904.586 766.345 1018.984 1.000 3458 +3460 2 905.232 765.441 1019.390 1.000 3459 +3461 2 906.088 764.698 1019.785 1.000 3460 +3462 2 907.015 764.079 1020.208 1.000 3461 +3463 2 907.893 763.455 1020.698 1.000 3462 +3464 2 908.239 763.397 1021.093 1.000 3463 +3465 2 909.367 763.205 1021.420 1.000 3464 +3466 2 910.468 762.942 1021.726 1.000 3465 +3467 2 911.499 762.471 1022.073 1.000 3466 +3468 2 912.561 762.090 1022.468 1.000 3467 +3469 2 913.656 761.925 1022.963 1.000 3468 +3470 2 914.736 761.722 1023.557 1.000 3469 +3471 2 915.713 761.234 1024.234 1.000 3470 +3472 2 916.717 760.759 1024.940 1.000 3471 +3473 2 917.745 760.491 1025.682 1.000 3472 +3474 2 918.775 760.691 1026.455 1.000 3473 +3475 2 919.885 760.845 1027.191 1.000 3474 +3476 2 920.991 761.046 1027.891 1.000 3475 +3477 2 922.088 761.367 1028.532 1.000 3476 +3478 2 923.179 761.540 1029.202 1.000 3477 +3479 2 924.265 761.475 1029.983 1.000 3478 +3480 2 925.350 761.410 1030.876 1.000 3479 +3481 2 926.049 761.100 1032.032 1.000 3480 +3482 2 926.500 760.206 1033.295 1.000 3481 +3483 2 927.030 759.391 1034.634 1.000 3482 +3484 2 927.920 759.007 1036.042 1.000 3483 +3485 2 928.809 758.625 1037.487 1.000 3484 +3486 2 929.410 758.766 1038.878 1.000 3485 +3487 2 930.344 758.984 1040.301 1.000 3486 +3488 2 931.279 759.203 1041.757 1.000 3487 +3489 2 931.962 759.393 1043.325 1.000 3488 +3490 2 931.846 760.127 1044.912 1.000 3489 +3491 2 931.838 761.032 1046.464 1.000 3490 +3492 2 932.711 761.673 1047.878 1.000 3491 +3493 2 933.706 762.038 1049.194 1.000 3492 +3494 2 934.677 762.450 1050.440 1.000 3493 +3495 2 935.538 763.064 1051.641 1.000 3494 +3496 2 936.493 763.305 1052.892 1.000 3495 +3497 2 937.417 763.626 1054.197 1.000 3496 +3498 2 938.288 764.072 1055.555 1.000 3497 +3499 2 939.116 764.534 1056.961 1.000 3498 +3500 2 939.898 765.048 1058.408 1.000 3499 +3501 2 940.707 765.616 1059.817 1.000 3500 +3502 2 941.427 766.193 1061.172 1.000 3501 +3503 2 941.758 766.804 1062.541 1.000 3502 +3504 2 942.311 767.181 1063.703 1.000 3503 +3505 2 942.165 766.669 1065.540 1.000 3504 +3506 2 907.973 762.745 1022.535 1.000 3463 +3507 2 907.974 762.745 1023.873 1.000 3506 +3508 2 907.003 763.032 1024.453 1.000 3507 +3509 2 906.200 762.291 1024.923 1.000 3508 +3510 2 905.457 761.430 1025.298 1.000 3509 +3511 2 905.013 760.496 1025.744 1.000 3510 +3512 2 904.739 759.528 1026.292 1.000 3511 +3513 2 904.596 758.478 1027.614 1.000 3512 +3514 2 807.344 751.238 978.124 1.000 2731 +3515 2 806.239 750.958 979.163 1.000 3514 +3516 2 805.130 750.862 979.597 1.000 3515 +3517 2 804.019 750.875 980.179 1.000 3516 +3518 2 802.984 750.604 980.924 1.000 3517 +3519 2 802.065 750.089 981.812 1.000 3518 +3520 2 801.061 749.668 982.764 1.000 3519 +3521 2 800.325 749.176 983.822 1.000 3520 +3522 2 800.142 748.440 985.088 1.000 3521 +3523 2 799.975 748.497 986.233 1.000 3522 +3524 2 799.060 748.814 987.462 1.000 3523 +3525 2 798.145 749.130 988.750 1.000 3524 +3526 2 797.600 749.814 990.066 1.000 3525 +3527 2 797.314 750.755 991.379 1.000 3526 +3528 2 797.406 751.670 992.670 1.000 3527 +3529 2 797.822 752.561 993.947 1.000 3528 +3530 2 798.466 753.329 995.151 1.000 3529 +3531 2 799.197 754.047 996.268 1.000 3530 +3532 2 799.184 754.093 997.150 1.000 3531 +3533 2 798.728 754.643 998.068 1.000 3532 +3534 2 797.653 754.977 998.819 1.000 3533 +3535 2 796.586 755.357 999.421 1.000 3534 +3536 2 795.609 755.881 999.911 1.000 3535 +3537 2 794.783 756.642 1000.322 1.000 3536 +3538 2 793.674 756.920 1000.630 1.000 3537 +3539 2 792.586 757.264 1000.860 1.000 3538 +3540 2 791.510 757.638 1001.053 1.000 3539 +3541 2 790.471 758.112 1001.216 1.000 3540 +3542 2 789.423 758.559 1001.328 1.000 3541 +3543 2 788.360 758.979 1001.398 1.000 3542 +3544 2 787.271 759.307 1001.470 1.000 3543 +3545 2 786.158 759.557 1001.560 1.000 3544 +3546 2 785.051 759.793 1001.672 1.000 3545 +3547 2 783.951 760.007 1001.823 1.000 3546 +3548 2 782.843 760.251 1001.944 1.000 3547 +3549 2 781.901 760.710 1001.946 1.000 3548 +3550 2 781.124 761.321 1001.778 1.000 3549 +3551 2 779.987 761.445 1001.552 1.000 3550 +3552 2 778.891 761.692 1001.221 1.000 3551 +3553 2 777.831 762.049 1000.759 1.000 3552 +3554 2 776.755 762.260 1000.191 1.000 3553 +3555 2 775.665 762.308 999.527 1.000 3554 +3556 2 774.575 762.363 998.799 1.000 3555 +3557 2 773.484 762.419 998.024 1.000 3556 +3558 2 772.669 763.058 997.206 1.000 3557 +3559 2 771.794 763.673 996.380 1.000 3558 +3560 2 770.839 764.161 995.585 1.000 3559 +3561 2 769.762 764.459 994.860 1.000 3560 +3562 2 768.699 764.843 994.227 1.000 3561 +3563 2 767.595 764.976 993.633 1.000 3562 +3564 2 766.483 765.080 993.073 1.000 3563 +3565 2 765.367 765.185 992.547 1.000 3564 +3566 2 764.298 765.520 992.043 1.000 3565 +3567 2 763.237 765.884 991.561 1.000 3566 +3568 2 762.128 766.049 991.110 1.000 3567 +3569 2 761.001 766.133 990.702 1.000 3568 +3570 2 759.916 766.466 990.338 1.000 3569 +3571 2 758.829 766.710 990.018 1.000 3570 +3572 2 757.687 766.638 989.772 1.000 3571 +3573 2 756.548 766.626 989.568 1.000 3572 +3574 2 755.495 766.971 989.349 1.000 3573 +3575 2 754.460 767.361 989.097 1.000 3574 +3576 2 753.334 767.547 988.826 1.000 3575 +3577 2 752.252 767.856 988.518 1.000 3576 +3578 2 751.231 768.337 988.159 1.000 3577 +3579 2 750.368 769.014 987.731 1.000 3578 +3580 2 749.676 769.869 987.269 1.000 3579 +3581 2 749.061 770.811 986.829 1.000 3580 +3582 2 748.377 771.729 986.479 1.000 3581 +3583 2 747.455 771.729 986.118 1.000 3582 +3584 2 746.357 771.861 985.776 1.000 3583 +3585 2 745.294 772.279 985.522 1.000 3584 +3586 2 744.871 773.268 985.253 1.000 3585 +3587 2 744.658 774.374 984.953 1.000 3586 +3588 2 744.566 775.503 984.634 1.000 3587 +3589 2 744.346 776.581 984.315 1.000 3588 +3590 2 743.543 777.300 983.979 1.000 3589 +3591 2 742.463 777.613 983.640 1.000 3590 +3592 2 741.343 777.706 983.368 1.000 3591 +3593 2 740.200 777.690 983.184 1.000 3592 +3594 2 739.058 777.767 983.066 1.000 3593 +3595 2 737.920 777.870 983.004 1.000 3594 +3596 2 736.787 778.029 982.982 1.000 3595 +3597 2 735.655 778.192 982.976 1.000 3596 +3598 2 734.523 778.357 982.968 1.000 3597 +3599 2 733.384 778.336 982.968 1.000 3598 +3600 2 732.268 778.323 983.016 1.000 3599 +3601 2 731.166 778.292 983.091 1.000 3600 +3602 2 730.065 778.260 983.144 1.000 3601 +3603 2 730.094 778.401 982.990 1.000 3602 +3604 2 730.174 779.156 982.416 1.000 3603 +3605 2 729.716 779.703 981.520 1.000 3604 +3606 2 729.051 780.437 980.515 1.000 3605 +3607 2 728.220 781.063 979.552 1.000 3606 +3608 2 727.140 781.367 978.762 1.000 3607 +3609 2 726.021 781.570 978.183 1.000 3608 +3610 2 724.902 781.806 977.822 1.000 3609 +3611 2 723.785 782.042 977.612 1.000 3610 +3612 2 722.714 782.441 977.486 1.000 3611 +3613 2 721.619 782.741 977.418 1.000 3612 +3614 2 720.483 782.875 977.396 1.000 3613 +3615 2 719.349 782.996 977.432 1.000 3614 +3616 2 718.259 783.257 977.511 1.000 3615 +3617 2 717.174 783.607 977.609 1.000 3616 +3618 2 716.075 783.923 977.740 1.000 3617 +3619 2 714.965 784.188 977.875 1.000 3618 +3620 2 713.853 784.450 978.032 1.000 3619 +3621 2 712.751 784.752 978.272 1.000 3620 +3622 2 711.650 785.041 978.608 1.000 3621 +3623 2 710.600 784.966 979.177 1.000 3622 +3624 2 709.552 784.888 979.936 1.000 3623 +3625 2 708.540 784.790 980.862 1.000 3624 +3626 2 707.529 784.588 981.873 1.000 3625 +3627 2 706.522 784.220 982.895 1.000 3626 +3628 2 705.565 783.871 983.937 1.000 3627 +3629 2 704.531 783.645 984.934 1.000 3628 +3630 2 703.488 783.440 985.869 1.000 3629 +3631 2 702.368 783.386 986.686 1.000 3630 +3632 2 701.253 783.385 987.409 1.000 3631 +3633 2 700.157 783.607 988.067 1.000 3632 +3634 2 699.081 783.889 988.683 1.000 3633 +3635 2 698.029 784.237 989.282 1.000 3634 +3636 2 696.956 784.547 989.850 1.000 3635 +3637 2 695.838 784.776 990.352 1.000 3636 +3638 2 694.742 784.927 990.867 1.000 3637 +3639 2 693.658 785.038 991.424 1.000 3638 +3640 2 692.535 785.101 991.956 1.000 3639 +3641 2 691.403 785.158 992.449 1.000 3640 +3642 2 690.303 785.411 992.928 1.000 3641 +3643 2 689.201 785.620 993.418 1.000 3642 +3644 2 688.082 785.824 993.868 1.000 3643 +3645 2 686.994 785.777 994.316 1.000 3644 +3646 2 685.949 785.356 994.787 1.000 3645 +3647 2 684.905 784.935 995.288 1.000 3646 +3648 2 684.057 784.241 995.809 1.000 3647 +3649 2 683.341 783.367 996.355 1.000 3648 +3650 2 682.607 782.533 996.954 1.000 3649 +3651 2 681.782 781.804 997.615 1.000 3650 +3652 2 680.876 781.276 998.334 1.000 3651 +3653 2 679.836 781.066 999.116 1.000 3652 +3654 2 678.853 780.713 999.922 1.000 3653 +3655 2 677.766 780.765 1000.726 1.000 3654 +3656 2 676.681 780.770 1001.507 1.000 3655 +3657 2 675.595 780.661 1002.254 1.000 3656 +3658 2 674.491 780.555 1002.921 1.000 3657 +3659 2 673.533 780.229 1003.523 1.000 3658 +3660 2 672.813 779.378 1004.027 1.000 3659 +3661 2 671.957 778.661 1004.433 1.000 3660 +3662 2 670.911 778.204 1004.794 1.000 3661 +3663 2 669.988 777.533 1005.186 1.000 3662 +3664 2 669.283 776.808 1005.774 1.000 3663 +3665 2 668.758 776.056 1006.650 1.000 3664 +3666 2 667.911 776.003 1007.745 1.000 3665 +3667 2 666.970 776.153 1009.005 1.000 3666 +3668 2 666.025 776.755 1010.204 1.000 3667 +3669 2 665.287 777.557 1011.391 1.000 3668 +3670 2 664.831 778.374 1012.665 1.000 3669 +3671 2 664.516 779.141 1014.082 1.000 3670 +3672 2 664.150 779.883 1015.613 1.000 3671 +3673 2 663.297 780.424 1017.164 1.000 3672 +3674 2 662.477 781.084 1018.718 1.000 3673 +3675 2 662.080 781.299 1020.317 1.000 3674 +3676 2 662.478 780.676 1022.048 1.000 3675 +3677 2 662.520 779.845 1023.834 1.000 3676 +3678 2 662.305 779.105 1025.693 1.000 3677 +3679 2 661.939 778.554 1027.639 1.000 3678 +3680 2 661.375 778.554 1029.650 1.000 3679 +3681 2 660.870 778.868 1031.643 1.000 3680 +3682 2 660.641 779.033 1033.581 1.000 3681 +3683 2 660.014 778.856 1035.336 1.000 3682 +3684 2 658.976 778.804 1036.862 1.000 3683 +3685 2 657.888 778.848 1038.145 1.000 3684 +3686 2 656.769 778.950 1039.220 1.000 3685 +3687 2 655.653 779.142 1040.141 1.000 3686 +3688 2 654.662 778.927 1041.113 1.000 3687 +3689 2 653.727 778.571 1042.171 1.000 3688 +3690 2 652.859 778.044 1043.314 1.000 3689 +3691 2 652.027 777.422 1044.512 1.000 3690 +3692 2 651.036 777.072 1045.713 1.000 3691 +3693 2 650.227 776.599 1047.024 1.000 3692 +3694 2 649.210 776.443 1048.348 1.000 3693 +3695 2 648.193 776.288 1049.692 1.000 3694 +3696 2 647.236 776.378 1051.098 1.000 3695 +3697 2 646.315 776.436 1052.562 1.000 3696 +3698 2 645.566 776.332 1054.122 1.000 3697 +3699 2 644.817 776.227 1055.718 1.000 3698 +3700 2 643.896 775.985 1057.227 1.000 3699 +3701 2 642.922 775.702 1058.610 1.000 3700 +3702 2 641.921 775.394 1059.836 1.000 3701 +3703 2 640.865 775.037 1060.861 1.000 3702 +3704 2 639.781 774.917 1061.746 1.000 3703 +3705 2 638.665 774.845 1062.519 1.000 3704 +3706 2 637.559 774.719 1063.236 1.000 3705 +3707 2 636.459 774.555 1063.933 1.000 3706 +3708 2 635.350 774.578 1064.624 1.000 3707 +3709 2 634.240 774.680 1065.333 1.000 3708 +3710 2 633.147 774.739 1066.086 1.000 3709 +3711 2 632.063 774.812 1066.890 1.000 3710 +3712 2 630.969 774.880 1067.727 1.000 3711 +3713 2 630.001 775.264 1068.620 1.000 3712 +3714 2 629.017 775.709 1069.550 1.000 3713 +3715 2 628.039 776.165 1070.502 1.000 3714 +3716 2 627.229 776.881 1071.465 1.000 3715 +3717 2 626.309 777.350 1072.484 1.000 3716 +3718 2 625.768 777.955 1073.540 1.000 3717 +3719 2 625.900 778.953 1074.601 1.000 3718 +3720 2 626.236 779.876 1075.620 1.000 3719 +3721 2 626.992 780.648 1076.524 1.000 3720 +3722 2 627.544 781.516 1078.308 1.000 3721 +3723 2 729.899 778.180 985.636 1.000 3602 +3724 2 729.271 777.878 988.868 1.000 3723 +3725 2 729.028 777.998 990.242 1.000 3724 +3726 2 729.382 778.773 991.838 1.000 3725 +3727 2 730.049 779.148 993.594 1.000 3726 +3728 2 730.814 779.307 995.434 1.000 3727 +3729 2 731.542 779.095 997.284 1.000 3728 +3730 2 732.110 779.398 999.060 1.000 3729 +3731 2 732.655 780.117 1000.737 1.000 3730 +3732 2 732.939 781.029 1002.299 1.000 3731 +3733 2 733.553 781.582 1003.778 1.000 3732 +3734 2 734.413 781.977 1005.155 1.000 3733 +3735 2 734.558 782.005 1006.516 1.000 3734 +3736 2 735.447 782.178 1008.980 1.000 3735 +3737 2 736.336 782.351 1010.038 1.000 3736 +3738 2 737.285 782.407 1011.270 1.000 3737 +3739 2 738.263 782.393 1012.600 1.000 3738 +3740 2 739.299 782.197 1013.930 1.000 3739 +3741 2 740.334 782.003 1015.235 1.000 3740 +3742 2 741.241 781.534 1016.506 1.000 3741 +3743 2 742.068 780.926 1017.780 1.000 3742 +3744 2 742.930 780.423 1019.094 1.000 3743 +3745 2 743.878 780.080 1020.452 1.000 3744 +3746 2 744.820 779.725 1021.866 1.000 3745 +3747 2 745.744 779.343 1023.341 1.000 3746 +3748 2 746.588 778.905 1024.892 1.000 3747 +3749 2 747.368 778.565 1026.558 1.000 3748 +3750 2 748.066 778.111 1028.320 1.000 3749 +3751 2 748.742 777.700 1030.165 1.000 3750 +3752 2 749.421 777.424 1032.100 1.000 3751 +3753 2 750.099 777.147 1034.093 1.000 3752 +3754 2 750.101 777.108 1035.854 1.000 3753 +3755 2 750.130 776.665 1037.795 1.000 3754 +3756 2 749.751 776.170 1039.811 1.000 3755 +3757 2 749.628 776.040 1041.961 1.000 3756 +3758 2 749.935 775.918 1044.201 1.000 3757 +3759 2 749.958 775.805 1046.489 1.000 3758 +3760 2 749.847 776.100 1048.743 1.000 3759 +3761 2 750.102 776.737 1050.851 1.000 3760 +3762 2 749.954 777.437 1052.828 1.000 3761 +3763 2 749.601 778.092 1054.648 1.000 3762 +3764 2 749.212 778.738 1056.311 1.000 3763 +3765 2 748.152 778.603 1057.627 1.000 3764 +3766 2 747.062 778.435 1058.655 1.000 3765 +3767 2 745.950 778.534 1059.400 1.000 3766 +3768 2 744.829 778.747 1059.904 1.000 3767 +3769 2 743.706 778.964 1060.234 1.000 3768 +3770 2 742.624 779.324 1060.447 1.000 3769 +3771 2 741.608 779.831 1060.609 1.000 3770 +3772 2 740.673 780.486 1060.752 1.000 3771 +3773 2 739.571 780.718 1060.940 1.000 3772 +3774 2 738.443 780.858 1061.208 1.000 3773 +3775 2 737.342 780.947 1061.640 1.000 3774 +3776 2 736.243 781.025 1062.202 1.000 3775 +3777 2 735.160 780.818 1062.880 1.000 3776 +3778 2 734.076 780.612 1063.642 1.000 3777 +3779 2 733.405 780.718 1064.451 1.000 3778 +3780 2 732.342 780.771 1065.333 1.000 3779 +3781 2 731.319 780.627 1066.288 1.000 3780 +3782 2 730.364 780.471 1067.332 1.000 3781 +3783 2 729.436 780.492 1068.438 1.000 3782 +3784 2 728.521 780.822 1069.527 1.000 3783 +3785 2 727.529 781.384 1070.420 1.000 3784 +3786 2 726.548 781.821 1071.238 1.000 3785 +3787 2 725.445 781.988 1071.938 1.000 3786 +3788 2 724.332 782.137 1072.534 1.000 3787 +3789 2 723.373 782.547 1073.058 1.000 3788 +3790 2 722.665 783.404 1073.534 1.000 3789 +3791 2 721.893 784.204 1073.937 1.000 3790 +3792 2 720.846 784.665 1074.486 1.000 3791 +3793 2 750.744 777.084 1034.345 1.000 3753 +3794 2 751.793 776.790 1035.110 1.000 3793 +3795 2 752.588 775.969 1035.409 1.000 3794 +3796 2 753.179 775.042 1035.874 1.000 3795 +3797 2 753.938 774.565 1036.529 1.000 3796 +3798 2 754.966 774.528 1037.341 1.000 3797 +3799 2 755.923 774.390 1038.274 1.000 3798 +3800 2 756.875 774.219 1039.251 1.000 3799 +3801 2 757.890 773.914 1041.202 1.000 3800 +3802 2 734.743 781.893 1006.247 1.000 3734 +3803 2 735.804 781.622 1007.213 1.000 3802 +3804 2 736.857 781.565 1008.090 1.000 3803 +3805 2 737.898 781.867 1008.916 1.000 3804 +3806 2 738.970 782.068 1009.697 1.000 3805 +3807 2 740.060 782.212 1010.453 1.000 3806 +3808 2 741.171 782.248 1011.186 1.000 3807 +3809 2 742.297 782.210 1011.870 1.000 3808 +3810 2 743.394 782.249 1012.564 1.000 3809 +3811 2 744.490 782.292 1013.264 1.000 3810 +3812 2 745.593 782.425 1013.958 1.000 3811 +3813 2 746.695 782.557 1014.650 1.000 3812 +3814 2 747.746 782.875 1015.358 1.000 3813 +3815 2 748.824 783.166 1016.047 1.000 3814 +3816 2 749.931 783.049 1016.714 1.000 3815 +3817 2 751.034 782.952 1017.394 1.000 3816 +3818 2 752.130 783.053 1018.097 1.000 3817 +3819 2 753.204 783.339 1018.816 1.000 3818 +3820 2 754.311 783.511 1019.553 1.000 3819 +3821 2 755.404 783.589 1020.345 1.000 3820 +3822 2 756.481 783.577 1021.222 1.000 3821 +3823 2 757.511 783.424 1022.190 1.000 3822 +3824 2 758.514 783.240 1023.249 1.000 3823 +3825 2 759.482 783.256 1024.405 1.000 3824 +3826 2 760.442 782.970 1025.559 1.000 3825 +3827 2 761.234 782.289 1026.698 1.000 3826 +3828 2 762.179 781.905 1027.838 1.000 3827 +3829 2 763.144 781.629 1028.952 1.000 3828 +3830 2 764.194 781.772 1030.008 1.000 3829 +3831 2 765.245 781.916 1031.010 1.000 3830 +3832 2 766.110 782.517 1031.934 1.000 3831 +3833 2 767.069 783.059 1032.774 1.000 3832 +3834 2 768.043 783.578 1033.561 1.000 3833 +3835 2 768.999 784.122 1034.314 1.000 3834 +3836 2 769.684 784.991 1035.026 1.000 3835 +3837 2 770.322 785.896 1035.728 1.000 3836 +3838 2 770.730 786.920 1036.426 1.000 3837 +3839 2 771.029 788.005 1037.114 1.000 3838 +3840 2 771.003 789.107 1037.817 1.000 3839 +3841 2 770.836 790.217 1038.551 1.000 3840 +3842 2 770.666 791.257 1039.402 1.000 3841 +3843 2 770.494 792.281 1040.357 1.000 3842 +3844 2 770.722 793.237 1041.421 1.000 3843 +3845 2 771.019 794.181 1042.558 1.000 3844 +3846 2 771.320 795.024 1043.776 1.000 3845 +3847 2 772.098 795.739 1044.890 1.000 3846 +3848 2 773.073 796.305 1045.859 1.000 3847 +3849 2 774.056 796.778 1046.769 1.000 3848 +3850 2 775.042 797.206 1047.654 1.000 3849 +3851 2 776.072 797.525 1048.522 1.000 3850 +3852 2 777.172 797.616 1049.373 1.000 3851 +3853 2 778.253 797.783 1050.249 1.000 3852 +3854 2 779.328 797.979 1051.156 1.000 3853 +3855 2 780.398 798.199 1052.094 1.000 3854 +3856 2 781.469 798.419 1053.072 1.000 3855 +3857 2 782.525 798.593 1054.124 1.000 3856 +3858 2 783.579 798.768 1055.247 1.000 3857 +3859 2 784.398 799.277 1056.510 1.000 3858 +3860 2 784.266 799.839 1057.972 1.000 3859 +3861 2 784.087 800.533 1059.520 1.000 3860 +3862 2 784.063 801.411 1061.035 1.000 3861 +3863 2 784.040 802.289 1062.460 1.000 3862 +3864 2 783.720 803.229 1065.036 1.000 3863 +3865 2 748.178 772.458 987.022 1.000 3582 +3866 2 747.842 773.512 988.296 1.000 3865 +3867 2 747.288 774.494 988.809 1.000 3866 +3868 2 747.240 775.589 989.464 1.000 3867 +3869 2 747.455 776.617 990.254 1.000 3868 +3870 2 748.103 777.358 991.172 1.000 3869 +3871 2 749.015 777.859 992.174 1.000 3870 +3872 2 749.979 778.331 993.199 1.000 3871 +3873 2 750.910 778.852 994.235 1.000 3872 +3874 2 751.849 779.343 995.274 1.000 3873 +3875 2 752.837 779.709 996.313 1.000 3874 +3876 2 753.642 780.261 997.410 1.000 3875 +3877 2 753.917 781.170 998.463 1.000 3876 +3878 2 753.895 782.286 999.449 1.000 3877 +3879 2 754.184 783.320 1000.440 1.000 3878 +3880 2 754.483 784.349 1001.442 1.000 3879 +3881 2 755.112 785.194 1002.484 1.000 3880 +3882 2 755.552 786.097 1003.576 1.000 3881 +3883 2 755.685 787.111 1004.716 1.000 3882 +3884 2 756.004 788.034 1005.892 1.000 3883 +3885 2 756.605 788.814 1007.110 1.000 3884 +3886 2 757.445 789.362 1008.333 1.000 3885 +3887 2 758.502 789.487 1009.515 1.000 3886 +3888 2 759.566 789.477 1010.663 1.000 3887 +3889 2 760.633 789.424 1011.791 1.000 3888 +3890 2 761.682 789.449 1012.925 1.000 3889 +3891 2 762.728 789.500 1014.076 1.000 3890 +3892 2 763.739 789.310 1015.255 1.000 3891 +3893 2 764.722 789.270 1016.495 1.000 3892 +3894 2 765.638 789.576 1017.806 1.000 3893 +3895 2 766.617 789.999 1019.110 1.000 3894 +3896 2 767.619 790.021 1020.446 1.000 3895 +3897 2 768.628 789.913 1021.826 1.000 3896 +3898 2 769.510 789.813 1023.294 1.000 3897 +3899 2 770.270 789.613 1024.864 1.000 3898 +3900 2 771.046 789.164 1026.500 1.000 3899 +3901 2 771.772 789.208 1028.166 1.000 3900 +3902 2 772.559 789.495 1029.795 1.000 3901 +3903 2 773.439 789.552 1031.327 1.000 3902 +3904 2 774.354 789.471 1032.713 1.000 3903 +3905 2 775.131 789.012 1035.238 1.000 3904 +3906 2 800.122 753.996 997.256 1.000 3531 +3907 2 801.260 753.933 998.592 1.000 3906 +3908 2 802.370 753.935 999.116 1.000 3907 +3909 2 803.307 754.343 999.891 1.000 3908 +3910 2 804.171 754.332 1000.916 1.000 3909 +3911 2 804.929 753.734 1002.100 1.000 3910 +3912 2 805.394 754.311 1003.363 1.000 3911 +3913 2 806.129 755.008 1004.643 1.000 3912 +3914 2 806.915 755.677 1005.897 1.000 3913 +3915 2 807.674 756.346 1007.115 1.000 3914 +3916 2 808.360 757.017 1008.322 1.000 3915 +3917 2 808.999 757.878 1009.431 1.000 3916 +3918 2 809.258 758.835 1010.458 1.000 3917 +3919 2 808.730 759.688 1011.441 1.000 3918 +3920 2 807.885 760.323 1012.318 1.000 3919 +3921 2 806.981 760.958 1013.062 1.000 3920 +3922 2 806.239 761.799 1013.704 1.000 3921 +3923 2 805.294 762.429 1014.163 1.000 3922 +3924 2 804.376 763.103 1014.569 1.000 3923 +3925 2 803.463 763.790 1015.003 1.000 3924 +3926 2 802.545 764.467 1015.515 1.000 3925 +3927 2 801.673 765.185 1016.190 1.000 3926 +3928 2 800.930 765.927 1017.128 1.000 3927 +3929 2 800.336 766.588 1018.388 1.000 3928 +3930 2 799.885 767.143 1019.976 1.000 3929 +3931 2 800.459 767.149 1021.804 1.000 3930 +3932 2 801.116 766.999 1023.812 1.000 3931 +3933 2 801.744 766.446 1025.878 1.000 3932 +3934 2 802.489 766.255 1027.984 1.000 3933 +3935 2 803.253 766.299 1030.131 1.000 3934 +3936 2 803.506 766.677 1032.357 1.000 3935 +3937 2 803.542 767.147 1034.662 1.000 3936 +3938 2 803.129 767.071 1037.036 1.000 3937 +3939 2 802.716 766.995 1039.455 1.000 3938 +3940 2 802.771 767.063 1041.883 1.000 3939 +3941 2 803.054 767.397 1044.280 1.000 3940 +3942 2 802.460 767.732 1046.570 1.000 3941 +3943 2 801.802 768.046 1048.757 1.000 3942 +3944 2 801.268 768.125 1050.888 1.000 3943 +3945 2 800.745 768.151 1052.957 1.000 3944 +3946 2 799.758 767.879 1054.788 1.000 3945 +3947 2 798.771 767.606 1056.437 1.000 3946 +3948 2 797.788 767.332 1057.941 1.000 3947 +3949 2 797.002 767.042 1059.428 1.000 3948 +3950 2 796.215 766.752 1060.878 1.000 3949 +3951 2 795.633 766.803 1062.244 1.000 3950 +3952 2 794.568 766.896 1064.020 1.000 3951 +3953 2 793.500 766.980 1064.776 1.000 3952 +3954 2 792.402 766.940 1065.652 1.000 3953 +3955 2 791.464 767.282 1066.710 1.000 3954 +3956 2 790.423 767.230 1067.900 1.000 3955 +3957 2 789.418 767.242 1069.214 1.000 3956 +3958 2 788.524 767.438 1070.670 1.000 3957 +3959 2 787.629 767.634 1072.240 1.000 3958 +3960 2 787.168 768.174 1073.920 1.000 3959 +3961 2 787.030 768.972 1075.682 1.000 3960 +3962 2 786.911 769.315 1077.496 1.000 3961 +3963 2 786.838 768.628 1079.338 1.000 3962 +3964 2 786.765 767.959 1081.158 1.000 3963 +3965 2 786.710 768.803 1082.824 1.000 3964 +3966 2 786.006 768.785 1084.378 1.000 3965 +3967 2 785.062 769.307 1085.678 1.000 3966 +3968 2 783.996 769.581 1086.767 1.000 3967 +3969 2 782.942 769.907 1087.691 1.000 3968 +3970 2 781.907 770.298 1088.506 1.000 3969 +3971 2 780.992 770.935 1089.220 1.000 3970 +3972 2 780.148 771.660 1089.908 1.000 3971 +3973 2 779.296 772.354 1090.620 1.000 3972 +3974 2 778.356 772.886 1091.370 1.000 3973 +3975 2 777.501 773.533 1092.160 1.000 3974 +3976 2 776.601 774.088 1092.974 1.000 3975 +3977 2 775.679 774.604 1093.795 1.000 3976 +3978 2 774.733 775.172 1094.548 1.000 3977 +3979 2 773.645 775.457 1095.195 1.000 3978 +3980 2 772.638 775.963 1095.716 1.000 3979 +3981 2 771.658 776.545 1096.113 1.000 3980 +3982 2 770.682 777.132 1096.424 1.000 3981 +3983 2 770.175 777.966 1097.040 1.000 3982 +3984 2 795.626 766.130 1062.250 1.000 3950 +3985 2 794.819 765.536 1063.518 1.000 3984 +3986 2 794.678 764.543 1064.596 1.000 3985 +3987 2 794.938 763.445 1065.450 1.000 3986 +3988 2 795.445 762.419 1066.094 1.000 3987 +3989 2 796.148 761.572 1066.626 1.000 3988 +3990 2 797.111 760.960 1067.142 1.000 3989 +3991 2 797.729 760.172 1067.811 1.000 3990 +3992 2 798.272 759.427 1068.668 1.000 3991 +3993 2 799.167 759.705 1069.690 1.000 3992 +3994 2 800.118 759.988 1070.776 1.000 3993 +3995 2 801.143 760.277 1071.806 1.000 3994 +3996 2 802.167 760.571 1072.739 1.000 3995 +3997 2 803.003 760.355 1073.568 1.000 3996 +3998 2 803.733 759.717 1074.321 1.000 3997 +3999 2 803.552 760.217 1074.699 1.000 3998 +4000 2 803.189 761.224 1074.727 1.000 3999 +4001 2 802.904 762.287 1074.553 1.000 4000 +4002 2 802.610 763.377 1074.290 1.000 4001 +4003 2 802.207 764.435 1074.007 1.000 4002 +4004 2 801.786 765.487 1073.772 1.000 4003 +4005 2 801.453 766.567 1073.643 1.000 4004 +4006 2 801.171 767.663 1073.626 1.000 4005 +4007 2 801.394 768.660 1073.887 1.000 4006 +4008 2 801.796 769.597 1074.410 1.000 4007 +4009 2 802.709 770.088 1075.122 1.000 4008 +4010 2 803.621 770.578 1075.945 1.000 4009 +4011 2 804.568 771.055 1076.790 1.000 4010 +4012 2 805.354 771.837 1077.552 1.000 4011 +4013 2 806.070 772.680 1078.204 1.000 4012 +4014 2 806.401 773.671 1078.700 1.000 4013 +4015 2 806.244 774.801 1078.994 1.000 4014 +4016 2 806.165 775.918 1079.145 1.000 4015 +4017 2 806.693 776.929 1079.260 1.000 4016 +4018 2 807.367 777.819 1079.568 1.000 4017 +4019 2 804.068 759.768 1076.779 1.000 3998 +4020 2 805.032 759.917 1077.877 1.000 4019 +4021 2 805.996 760.067 1078.423 1.000 4020 +4022 2 807.069 759.717 1078.829 1.000 4021 +4023 2 808.024 759.201 1079.092 1.000 4022 +4024 2 808.540 758.183 1079.232 1.000 4023 +4025 2 809.086 757.183 1079.260 1.000 4024 +4026 2 809.593 756.161 1079.229 1.000 4025 +4027 2 809.992 755.091 1079.207 1.000 4026 +4028 2 810.326 753.998 1079.226 1.000 4027 +4029 2 810.574 752.886 1079.288 1.000 4028 +4030 2 810.708 751.750 1079.378 1.000 4029 +4031 2 811.215 750.759 1079.504 1.000 4030 +4032 2 811.874 749.828 1079.666 1.000 4031 +4033 2 812.561 748.915 1079.831 1.000 4032 +4034 2 813.287 748.039 1080.002 1.000 4033 +4035 2 814.076 747.236 1080.220 1.000 4034 +4036 2 814.756 746.326 1080.428 1.000 4035 +4037 2 815.535 745.500 1080.850 1.000 4036 +4038 2 800.523 748.501 985.401 1.000 3522 +4039 2 801.642 748.679 983.822 1.000 4038 +4040 2 802.731 748.945 983.186 1.000 4039 +4041 2 803.808 749.250 982.386 1.000 4040 +4042 2 803.927 749.418 981.142 1.000 4041 +4043 2 803.199 749.242 979.706 1.000 4042 +4044 2 802.287 748.991 978.174 1.000 4043 +4045 2 801.311 748.676 976.646 1.000 4044 +4046 2 800.357 748.296 975.153 1.000 4045 +4047 2 799.582 747.884 973.650 1.000 4046 +4048 2 798.696 747.763 972.115 1.000 4047 +4049 2 797.811 747.642 970.525 1.000 4048 +4050 2 797.210 747.702 968.976 1.000 4049 +4051 2 796.293 747.796 967.366 1.000 4050 +4052 2 795.375 747.890 965.700 1.000 4051 +4053 2 795.058 748.110 963.886 1.000 4052 +4054 2 794.797 748.627 962.052 1.000 4053 +4055 2 793.729 748.893 960.344 1.000 4054 +4056 2 793.065 748.917 958.521 1.000 4055 +4057 2 792.496 748.885 956.572 1.000 4056 +4058 2 791.926 748.853 954.551 1.000 4057 +4059 2 791.305 749.083 952.521 1.000 4058 +4060 2 790.646 749.513 950.519 1.000 4059 +4061 2 789.986 749.942 948.545 1.000 4060 +4062 2 789.327 750.372 946.630 1.000 4061 +4063 2 789.282 750.503 945.053 1.000 4062 +4064 2 788.730 751.373 943.513 1.000 4063 +4065 2 788.264 752.010 941.895 1.000 4064 +4066 2 788.007 752.082 940.030 1.000 4065 +4067 2 788.488 751.782 938.031 1.000 4066 +4068 2 789.124 751.406 935.928 1.000 4067 +4069 2 789.760 751.028 933.738 1.000 4068 +4070 2 790.360 751.060 931.496 1.000 4069 +4071 2 790.687 751.180 929.233 1.000 4070 +4072 2 790.392 751.490 926.971 1.000 4071 +4073 2 790.709 751.609 924.736 1.000 4072 +4074 2 791.005 751.851 922.569 1.000 4073 +4075 2 791.198 752.274 920.520 1.000 4074 +4076 2 791.362 752.965 918.672 1.000 4075 +4077 2 791.682 754.037 917.260 1.000 4076 +4078 2 792.006 755.114 916.205 1.000 4077 +4079 2 791.917 756.238 915.482 1.000 4078 +4080 2 791.749 757.369 915.004 1.000 4079 +4081 2 791.369 758.406 914.589 1.000 4080 +4082 2 790.721 759.192 914.161 1.000 4081 +4083 2 789.743 759.657 913.696 1.000 4082 +4084 2 788.928 760.457 913.310 1.000 4083 +4085 2 788.054 761.183 912.976 1.000 4084 +4086 2 787.096 761.787 912.699 1.000 4085 +4087 2 786.078 762.296 912.492 1.000 4086 +4088 2 785.095 762.880 912.372 1.000 4087 +4089 2 784.205 763.588 912.346 1.000 4088 +4090 2 784.026 764.692 912.394 1.000 4089 +4091 2 783.905 765.824 912.489 1.000 4090 +4092 2 783.837 766.964 912.601 1.000 4091 +4093 2 783.639 768.054 912.705 1.000 4092 +4094 2 782.944 768.963 912.741 1.000 4093 +4095 2 782.233 769.856 912.752 1.000 4094 +4096 2 781.661 770.834 912.708 1.000 4095 +4097 2 781.132 771.837 912.604 1.000 4096 +4098 2 780.316 772.636 912.509 1.000 4097 +4099 2 779.609 773.534 912.374 1.000 4098 +4100 2 779.063 774.528 912.190 1.000 4099 +4101 2 778.588 775.563 911.946 1.000 4100 +4102 2 778.532 776.667 911.646 1.000 4101 +4103 2 778.650 777.800 911.294 1.000 4102 +4104 2 778.611 778.912 910.840 1.000 4103 +4105 2 778.559 780.022 910.305 1.000 4104 +4106 2 778.134 781.042 909.728 1.000 4105 +4107 2 778.322 782.026 909.096 1.000 4106 +4108 2 778.588 783.069 908.435 1.000 4107 +4109 2 778.643 784.181 907.763 1.000 4108 +4110 2 778.675 785.287 907.080 1.000 4109 +4111 2 778.595 786.357 906.385 1.000 4110 +4112 2 778.281 787.350 905.685 1.000 4111 +4113 2 778.555 788.405 904.991 1.000 4112 +4114 2 778.764 789.441 904.274 1.000 4113 +4115 2 778.900 790.472 903.535 1.000 4114 +4116 2 779.682 791.306 902.947 1.000 4115 +4117 2 780.447 792.155 902.471 1.000 4116 +4118 2 781.094 793.086 902.073 1.000 4117 +4119 2 781.620 794.095 901.709 1.000 4118 +4120 2 782.161 795.070 901.323 1.000 4119 +4121 2 782.804 795.947 900.914 1.000 4120 +4122 2 783.392 796.802 900.466 1.000 4121 +4123 2 783.472 797.918 899.996 1.000 4122 +4124 2 783.423 799.018 899.528 1.000 4123 +4125 2 783.018 800.070 899.086 1.000 4124 +4126 2 782.485 801.067 898.691 1.000 4125 +4127 2 782.180 802.152 898.369 1.000 4126 +4128 2 782.833 802.992 898.089 1.000 4127 +4129 2 783.744 803.675 897.856 1.000 4128 +4130 2 784.446 804.532 897.646 1.000 4129 +4131 2 784.803 805.573 897.392 1.000 4130 +4132 2 784.991 806.652 897.072 1.000 4131 +4133 2 785.369 807.716 896.770 1.000 4132 +4134 2 785.946 808.633 896.515 1.000 4133 +4135 2 786.879 809.292 896.342 1.000 4134 +4136 2 787.387 810.281 896.336 1.000 4135 +4137 2 787.893 811.273 896.473 1.000 4136 +4138 2 788.682 812.062 896.708 1.000 4137 +4139 2 789.575 812.774 896.930 1.000 4138 +4140 2 790.447 813.510 897.123 1.000 4139 +4141 2 791.304 814.264 897.254 1.000 4140 +4142 2 792.143 815.039 897.294 1.000 4141 +4143 2 792.941 815.850 897.243 1.000 4142 +4144 2 793.611 816.777 897.154 1.000 4143 +4145 2 794.014 817.828 897.042 1.000 4144 +4146 2 794.254 818.943 896.913 1.000 4145 +4147 2 794.320 820.084 896.762 1.000 4146 +4148 2 794.388 821.225 896.588 1.000 4147 +4149 2 794.802 822.227 896.381 1.000 4148 +4150 2 795.776 822.799 896.148 1.000 4149 +4151 2 796.191 823.861 895.863 1.000 4150 +4152 2 796.605 824.924 895.527 1.000 4151 +4153 2 796.973 825.965 895.073 1.000 4152 +4154 2 797.692 826.774 894.496 1.000 4153 +4155 2 798.282 827.678 893.850 1.000 4154 +4156 2 798.755 828.666 893.180 1.000 4155 +4157 2 798.692 829.617 892.508 1.000 4156 +4158 2 798.168 830.550 891.094 1.000 4157 +4159 2 797.163 747.766 970.634 1.000 4049 +4160 2 796.044 747.983 970.533 1.000 4159 +4161 2 795.042 748.441 970.418 1.000 4160 +4162 2 794.146 749.138 970.306 1.000 4161 +4163 2 793.198 749.764 970.220 1.000 4162 +4164 2 792.189 750.298 970.161 1.000 4163 +4165 2 791.163 750.787 970.110 1.000 4164 +4166 2 790.085 751.169 970.054 1.000 4165 +4167 2 789.005 751.535 969.970 1.000 4166 +4168 2 787.923 751.867 969.802 1.000 4167 +4169 2 786.850 752.215 969.567 1.000 4168 +4170 2 785.756 752.518 969.310 1.000 4169 +4171 2 784.652 752.709 969.030 1.000 4170 +4172 2 783.550 752.869 968.736 1.000 4171 +4173 2 782.417 753.025 968.551 1.000 4172 +4174 2 781.286 753.155 968.467 1.000 4173 +4175 2 780.168 753.060 968.531 1.000 4174 +4176 2 779.045 753.040 968.680 1.000 4175 +4177 2 777.913 753.167 968.842 1.000 4176 +4178 2 776.815 753.390 968.979 1.000 4177 +4179 2 775.857 754.013 969.016 1.000 4178 +4180 2 774.942 754.697 968.971 1.000 4179 +4181 2 773.882 755.112 968.842 1.000 4180 +4182 2 772.831 755.557 968.646 1.000 4181 +4183 2 771.812 756.072 968.394 1.000 4182 +4184 2 770.779 756.540 968.066 1.000 4183 +4185 2 769.714 756.937 967.677 1.000 4184 +4186 2 768.634 757.212 967.198 1.000 4185 +4187 2 767.535 757.339 966.602 1.000 4186 +4188 2 766.439 757.543 965.927 1.000 4187 +4189 2 765.344 757.790 965.194 1.000 4188 +4190 2 764.486 758.358 964.359 1.000 4189 +4191 2 763.991 759.096 963.371 1.000 4190 +4192 2 764.163 759.931 962.237 1.000 4191 +4193 2 763.748 760.858 961.111 1.000 4192 +4194 2 763.032 761.588 959.977 1.000 4193 +4195 2 762.081 762.104 958.910 1.000 4194 +4196 2 761.111 762.604 957.925 1.000 4195 +4197 2 760.070 762.966 957.034 1.000 4196 +4198 2 758.989 763.200 956.203 1.000 4197 +4199 2 757.980 763.602 955.368 1.000 4198 +4200 2 756.971 764.004 954.528 1.000 4199 +4201 2 755.994 764.310 953.632 1.000 4200 +4202 2 755.051 764.655 952.692 1.000 4201 +4203 2 754.092 765.131 951.787 1.000 4202 +4204 2 753.023 765.434 950.961 1.000 4203 +4205 2 751.943 765.730 950.219 1.000 4204 +4206 2 750.860 766.021 949.550 1.000 4205 +4207 2 750.191 766.871 948.962 1.000 4206 +4208 2 749.354 767.582 948.410 1.000 4207 +4209 2 748.358 767.983 947.842 1.000 4208 +4210 2 747.296 767.730 947.201 1.000 4209 +4211 2 746.232 767.489 946.495 1.000 4210 +4212 2 745.122 767.552 945.764 1.000 4211 +4213 2 744.232 768.040 944.961 1.000 4212 +4214 2 743.438 768.712 944.090 1.000 4213 +4215 2 742.815 769.654 943.278 1.000 4214 +4216 2 741.767 769.979 942.508 1.000 4215 +4217 2 740.687 770.251 941.741 1.000 4216 +4218 2 739.872 770.857 940.895 1.000 4217 +4219 2 738.992 771.370 939.980 1.000 4218 +4220 2 738.108 771.852 938.997 1.000 4219 +4221 2 737.584 772.777 937.961 1.000 4220 +4222 2 736.789 773.453 936.888 1.000 4221 +4223 2 735.888 773.969 935.788 1.000 4222 +4224 2 734.955 774.411 934.665 1.000 4223 +4225 2 734.037 774.946 933.556 1.000 4224 +4226 2 733.127 775.506 932.464 1.000 4225 +4227 2 732.208 776.022 931.367 1.000 4226 +4228 2 731.757 776.727 930.202 1.000 4227 +4229 2 731.312 777.421 928.995 1.000 4228 +4230 2 730.351 777.887 927.856 1.000 4229 +4231 2 729.342 778.326 926.803 1.000 4230 +4232 2 728.384 778.849 925.828 1.000 4231 +4233 2 727.560 779.593 924.921 1.000 4232 +4234 2 726.729 780.264 924.020 1.000 4233 +4235 2 725.956 780.958 923.087 1.000 4234 +4236 2 725.293 781.694 922.096 1.000 4235 +4237 2 724.502 782.407 921.133 1.000 4236 +4238 2 723.537 782.803 920.203 1.000 4237 +4239 2 722.508 783.074 919.324 1.000 4238 +4240 2 721.552 783.616 918.529 1.000 4239 +4241 2 720.576 784.156 917.829 1.000 4240 +4242 2 719.539 784.551 917.216 1.000 4241 +4243 2 718.449 784.816 916.672 1.000 4242 +4244 2 717.563 785.528 916.216 1.000 4243 +4245 2 716.694 786.256 915.810 1.000 4244 +4246 2 716.149 787.217 915.471 1.000 4245 +4247 2 715.796 788.302 915.183 1.000 4246 +4248 2 715.696 789.431 914.864 1.000 4247 +4249 2 715.591 790.560 914.508 1.000 4248 +4250 2 715.252 791.641 914.116 1.000 4249 +4251 2 714.343 792.255 913.654 1.000 4250 +4252 2 713.509 792.916 913.105 1.000 4251 +4253 2 712.884 793.708 912.458 1.000 4252 +4254 2 712.086 793.819 911.980 1.000 4253 +4255 2 711.765 792.722 911.616 1.000 4254 +4256 2 711.628 791.610 911.324 1.000 4255 +4257 2 711.669 790.482 910.812 1.000 4256 +4258 2 822.783 751.345 962.444 1.000 82 +4259 2 822.171 751.359 961.402 1.000 4258 +4260 2 822.100 752.305 961.050 1.000 4259 +4261 2 822.013 753.444 960.809 1.000 4260 +4262 2 822.690 754.311 960.730 1.000 4261 +4263 2 823.516 755.093 960.823 1.000 4262 +4264 2 824.397 755.810 961.080 1.000 4263 +4265 2 825.259 756.528 961.506 1.000 4264 +4266 2 826.125 757.207 962.038 1.000 4265 +4267 2 827.008 757.760 962.693 1.000 4266 +4268 2 828.023 758.074 963.388 1.000 4267 +4269 2 829.061 758.405 964.065 1.000 4268 +4270 2 830.154 758.662 964.617 1.000 4269 +4271 2 831.227 759.004 965.028 1.000 4270 +4272 2 832.230 759.549 965.348 1.000 4271 +4273 2 833.271 760.005 965.605 1.000 4272 +4274 2 834.349 760.372 965.840 1.000 4273 +4275 2 835.371 760.862 966.076 1.000 4274 +4276 2 836.159 761.669 966.344 1.000 4275 +4277 2 836.811 762.598 966.605 1.000 4276 +4278 2 837.441 763.544 966.846 1.000 4277 +4279 2 838.136 764.443 967.044 1.000 4278 +4280 2 838.951 765.243 967.184 1.000 4279 +4281 2 839.905 765.874 967.252 1.000 4280 +4282 2 840.862 766.501 967.254 1.000 4281 +4283 2 842.130 766.382 967.025 1.000 4282 +4284 2 843.254 766.371 966.781 1.000 4283 +4285 2 844.364 766.551 966.470 1.000 4284 +4286 2 845.399 766.849 966.106 1.000 4285 +4287 2 846.507 766.777 965.728 1.000 4286 +4288 2 847.628 766.808 965.404 1.000 4287 +4289 2 848.758 766.893 965.168 1.000 4288 +4290 2 849.898 766.832 965.098 1.000 4289 +4291 2 851.033 766.742 965.210 1.000 4290 +4292 2 852.109 766.445 965.524 1.000 4291 +4293 2 853.164 766.072 966.006 1.000 4292 +4294 2 854.149 765.616 966.647 1.000 4293 +4295 2 855.078 765.109 967.417 1.000 4294 +4296 2 855.901 764.518 968.307 1.000 4295 +4297 2 856.966 764.545 969.217 1.000 4296 +4298 2 858.078 764.378 970.057 1.000 4297 +4299 2 859.191 764.203 970.836 1.000 4298 +4300 2 860.289 764.086 971.603 1.000 4299 +4301 2 861.385 763.967 972.373 1.000 4300 +4302 2 862.463 763.761 973.165 1.000 4301 +4303 2 863.530 763.531 974.002 1.000 4302 +4304 2 864.565 763.228 974.907 1.000 4303 +4305 2 865.600 762.924 975.864 1.000 4304 +4306 2 866.667 762.809 976.867 1.000 4305 +4307 2 867.700 762.664 977.917 1.000 4306 +4308 2 868.606 762.589 979.068 1.000 4307 +4309 2 869.237 763.242 980.291 1.000 4308 +4310 2 870.037 763.842 981.487 1.000 4309 +4311 2 870.582 764.507 982.635 1.000 4310 +4312 2 871.378 765.108 983.671 1.000 4311 +4313 2 872.440 765.431 984.514 1.000 4312 +4314 2 873.501 765.754 985.180 1.000 4313 +4315 2 874.625 765.927 985.636 1.000 4314 +4316 2 875.754 766.061 985.911 1.000 4315 +4317 2 876.895 766.072 985.992 1.000 4316 +4318 2 878.033 766.121 985.933 1.000 4317 +4319 2 879.153 766.338 985.774 1.000 4318 +4320 2 880.047 767.036 985.558 1.000 4319 +4321 2 881.078 767.483 985.278 1.000 4320 +4322 2 882.153 767.773 984.931 1.000 4321 +4323 2 883.246 767.734 984.497 1.000 4322 +4324 2 884.342 767.812 984.015 1.000 4323 +4325 2 885.456 767.919 983.548 1.000 4324 +4326 2 886.510 768.293 983.158 1.000 4325 +4327 2 887.449 768.927 982.848 1.000 4326 +4328 2 888.279 769.713 982.598 1.000 4327 +4329 2 889.031 770.248 983.928 1.000 4328 +4330 2 889.986 770.606 985.676 1.000 4329 +4331 2 890.722 771.216 986.474 1.000 4330 +4332 2 891.803 771.421 987.325 1.000 4331 +4333 2 892.738 770.980 988.198 1.000 4332 +4334 2 893.554 770.215 989.086 1.000 4333 +4335 2 894.425 769.724 990.027 1.000 4334 +4336 2 895.397 769.702 991.074 1.000 4335 +4337 2 896.371 769.677 992.202 1.000 4336 +4338 2 897.343 769.654 993.401 1.000 4337 +4339 2 898.317 769.629 994.633 1.000 4338 +4340 2 898.588 770.082 995.722 1.000 4339 +4341 2 899.138 771.005 996.761 1.000 4340 +4342 2 899.630 771.961 997.749 1.000 4341 +4343 2 899.772 773.011 998.724 1.000 4342 +4344 2 899.913 774.060 999.704 1.000 4343 +4345 2 899.885 774.396 1000.602 1.000 4344 +4346 2 899.802 775.447 1001.571 1.000 4345 +4347 2 899.603 776.496 1002.588 1.000 4346 +4348 2 899.372 777.544 1003.646 1.000 4347 +4349 2 898.971 778.535 1004.752 1.000 4348 +4350 2 898.688 779.478 1005.978 1.000 4349 +4351 2 898.729 780.377 1007.314 1.000 4350 +4352 2 899.213 781.212 1008.722 1.000 4351 +4353 2 899.853 781.803 1010.232 1.000 4352 +4354 2 900.709 781.876 1011.783 1.000 4353 +4355 2 901.629 781.799 1013.340 1.000 4354 +4356 2 902.557 781.704 1014.871 1.000 4355 +4357 2 903.490 781.596 1016.361 1.000 4356 +4358 2 904.337 781.096 1017.750 1.000 4357 +4359 2 905.171 780.456 1019.021 1.000 4358 +4360 2 906.141 780.097 1020.225 1.000 4359 +4361 2 907.115 779.984 1021.412 1.000 4360 +4362 2 908.099 780.001 1022.577 1.000 4361 +4363 2 909.132 780.440 1023.616 1.000 4362 +4364 2 910.201 780.727 1024.576 1.000 4363 +4365 2 911.276 780.615 1025.539 1.000 4364 +4366 2 912.317 780.414 1026.544 1.000 4365 +4367 2 913.278 780.317 1027.653 1.000 4366 +4368 2 914.192 780.279 1028.880 1.000 4367 +4369 2 915.131 780.216 1030.170 1.000 4368 +4370 2 916.116 780.106 1031.450 1.000 4369 +4371 2 917.098 780.104 1032.685 1.000 4370 +4372 2 918.078 780.163 1033.861 1.000 4371 +4373 2 918.845 780.695 1034.804 1.000 4372 +4374 2 919.576 781.476 1035.504 1.000 4373 +4375 2 920.583 781.945 1036.160 1.000 4374 +4376 2 921.627 782.350 1036.787 1.000 4375 +4377 2 922.681 782.724 1037.417 1.000 4376 +4378 2 923.707 782.899 1038.162 1.000 4377 +4379 2 924.718 783.225 1038.985 1.000 4378 +4380 2 925.586 783.863 1039.847 1.000 4379 +4381 2 926.411 784.557 1040.715 1.000 4380 +4382 2 927.109 785.325 1041.606 1.000 4381 +4383 2 928.062 785.681 1042.476 1.000 4382 +4384 2 928.979 786.055 1043.288 1.000 4383 +4385 2 929.446 787.019 1043.991 1.000 4384 +4386 2 930.241 787.721 1044.498 1.000 4385 +4387 2 931.317 788.081 1044.792 1.000 4386 +4388 2 932.422 788.340 1044.879 1.000 4387 +4389 2 932.026 789.504 1044.168 1.000 4388 +4390 2 931.198 790.043 1043.336 1.000 4389 +4391 2 930.689 790.838 1042.264 1.000 4390 +4392 2 930.153 791.624 1041.040 1.000 4391 +4393 2 929.238 792.173 1039.777 1.000 4392 +4394 2 928.437 792.906 1038.542 1.000 4393 +4395 2 927.682 793.667 1037.322 1.000 4394 +4396 2 926.862 794.227 1036.011 1.000 4395 +4397 2 926.221 794.626 1034.522 1.000 4396 +4398 2 925.630 794.982 1032.861 1.000 4397 +4399 2 924.903 795.463 1031.139 1.000 4398 +4400 2 924.138 795.976 1029.409 1.000 4399 +4401 2 923.343 796.502 1027.709 1.000 4400 +4402 2 922.614 797.071 1026.054 1.000 4401 +4403 2 922.167 797.792 1024.422 1.000 4402 +4404 2 922.136 798.672 1022.815 1.000 4403 +4405 2 922.170 799.632 1021.266 1.000 4404 +4406 2 922.213 800.607 1019.774 1.000 4405 +4407 2 922.138 801.647 1018.366 1.000 4406 +4408 2 922.114 802.699 1017.027 1.000 4407 +4409 2 922.186 803.774 1015.748 1.000 4408 +4410 2 922.257 804.845 1014.485 1.000 4409 +4411 2 922.281 805.760 1013.104 1.000 4410 +4412 2 922.305 806.676 1011.618 1.000 4411 +4413 2 922.073 807.352 1010.013 1.000 4412 +4414 2 921.428 807.646 1008.277 1.000 4413 +4415 2 920.716 808.365 1006.592 1.000 4414 +4416 2 919.944 808.893 1004.926 1.000 4415 +4417 2 919.406 809.346 1003.209 1.000 4416 +4418 2 918.814 810.117 1001.526 1.000 4417 +4419 2 918.169 810.802 999.852 1.000 4418 +4420 2 917.402 811.245 998.136 1.000 4419 +4421 2 916.619 811.723 996.380 1.000 4420 +4422 2 915.859 812.180 994.588 1.000 4421 +4423 2 915.207 812.503 992.704 1.000 4422 +4424 2 914.554 812.825 990.744 1.000 4423 +4425 2 913.762 812.891 988.753 1.000 4424 +4426 2 912.950 812.917 986.748 1.000 4425 +4427 2 912.073 813.056 984.768 1.000 4426 +4428 2 911.275 813.171 982.825 1.000 4427 +4429 2 911.213 812.640 980.787 1.000 4428 +4430 2 911.485 812.349 978.684 1.000 4429 +4431 2 910.869 812.547 976.553 1.000 4430 +4432 2 910.704 812.659 974.428 1.000 4431 +4433 2 911.461 812.598 972.348 1.000 4432 +4434 2 912.218 812.537 970.334 1.000 4433 +4435 2 912.960 812.572 968.419 1.000 4434 +4436 2 913.652 812.937 966.608 1.000 4435 +4437 2 914.381 813.281 964.902 1.000 4436 +4438 2 915.311 813.505 963.376 1.000 4437 +4439 2 915.845 814.372 962.144 1.000 4438 +4440 2 916.771 814.987 961.167 1.000 4439 +4441 2 917.488 815.829 960.392 1.000 4440 +4442 2 918.204 815.703 959.028 1.000 4441 +4443 2 932.508 788.334 1046.494 1.000 4388 +4444 2 933.629 788.255 1047.676 1.000 4443 +4445 2 934.749 788.177 1048.158 1.000 4444 +4446 2 935.822 788.120 1048.788 1.000 4445 +4447 2 936.870 788.074 1049.566 1.000 4446 +4448 2 937.938 788.186 1050.417 1.000 4447 +4449 2 939.009 788.325 1051.310 1.000 4448 +4450 2 940.129 788.370 1052.164 1.000 4449 +4451 2 941.244 788.381 1052.990 1.000 4450 +4452 2 942.226 788.038 1053.884 1.000 4451 +4453 2 943.213 787.685 1054.827 1.000 4452 +4454 2 944.224 787.278 1055.785 1.000 4453 +4455 2 945.280 786.940 1056.745 1.000 4454 +4456 2 946.352 786.935 1057.750 1.000 4455 +4457 2 947.397 787.081 1058.806 1.000 4456 +4458 2 948.210 787.610 1059.934 1.000 4457 +4459 2 948.361 788.298 1061.239 1.000 4458 +4460 2 948.864 788.813 1062.586 1.000 4459 +4461 2 949.418 789.151 1063.941 1.000 4460 +4462 2 949.265 790.097 1065.235 1.000 4461 +4463 2 948.997 791.202 1066.299 1.000 4462 +4464 2 948.659 792.284 1067.186 1.000 4463 +4465 2 948.129 793.273 1067.979 1.000 4464 +4466 2 947.365 794.008 1068.830 1.000 4465 +4467 2 946.601 794.744 1069.751 1.000 4466 +4468 2 946.857 795.455 1070.880 1.000 4467 +4469 2 947.376 796.269 1072.084 1.000 4468 +4470 2 948.000 797.148 1073.265 1.000 4469 +4471 2 948.719 797.909 1074.419 1.000 4470 +4472 2 949.513 798.565 1075.547 1.000 4471 +4473 2 950.294 799.143 1076.676 1.000 4472 +4474 2 950.527 800.043 1077.745 1.000 4473 +4475 2 950.748 801.142 1078.686 1.000 4474 +4476 2 950.983 802.245 1079.532 1.000 4475 +4477 2 951.132 803.342 1080.321 1.000 4476 +4478 2 951.132 804.432 1081.133 1.000 4477 +4479 2 951.003 805.466 1081.982 1.000 4478 +4480 2 950.646 806.414 1082.883 1.000 4479 +4481 2 950.140 807.370 1083.743 1.000 4480 +4482 2 949.960 808.410 1084.566 1.000 4481 +4483 2 950.397 809.256 1086.330 1.000 4482 +4484 2 901.159 774.138 999.740 1.000 4344 +4485 2 902.129 774.469 999.723 1.000 4484 +4486 2 902.780 775.393 999.855 1.000 4485 +4487 2 903.389 776.330 1000.135 1.000 4486 +4488 2 903.504 777.426 1000.524 1.000 4487 +4489 2 903.006 778.373 1001.048 1.000 4488 +4490 2 902.709 779.439 1001.636 1.000 4489 +4491 2 902.411 780.510 1002.235 1.000 4490 +4492 2 902.116 781.595 1002.786 1.000 4491 +4493 2 901.933 782.690 1003.310 1.000 4492 +4494 2 901.991 783.823 1003.752 1.000 4493 +4495 2 902.274 784.869 1004.128 1.000 4494 +4496 2 903.002 785.740 1004.433 1.000 4495 +4497 2 903.735 786.618 1004.640 1.000 4496 +4498 2 904.009 787.728 1004.800 1.000 4497 +4499 2 903.999 788.850 1004.937 1.000 4498 +4500 2 903.815 789.979 1005.085 1.000 4499 +4501 2 903.698 791.111 1005.304 1.000 4500 +4502 2 903.590 792.245 1005.598 1.000 4501 +4503 2 903.140 793.259 1005.959 1.000 4502 +4504 2 903.127 794.325 1006.471 1.000 4503 +4505 2 903.378 795.318 1007.132 1.000 4504 +4506 2 903.195 796.353 1007.843 1.000 4505 +4507 2 902.846 797.414 1008.501 1.000 4506 +4508 2 902.498 798.493 1009.070 1.000 4507 +4509 2 902.375 799.613 1009.554 1.000 4508 +4510 2 902.229 800.733 1009.940 1.000 4509 +4511 2 901.919 801.833 1010.218 1.000 4510 +4512 2 901.769 802.951 1010.419 1.000 4511 +4513 2 901.841 804.090 1010.570 1.000 4512 +4514 2 902.049 805.183 1010.741 1.000 4513 +4515 2 902.480 806.197 1011.018 1.000 4514 +4516 2 902.871 807.227 1011.368 1.000 4515 +4517 2 903.231 808.270 1011.755 1.000 4516 +4518 2 903.394 809.381 1012.085 1.000 4517 +4519 2 903.383 810.524 1012.312 1.000 4518 +4520 2 903.204 811.639 1012.404 1.000 4519 +4521 2 902.900 812.729 1012.354 1.000 4520 +4522 2 902.401 813.737 1012.222 1.000 4521 +4523 2 901.795 814.701 1012.057 1.000 4522 +4524 2 901.177 815.662 1011.928 1.000 4523 +4525 2 900.766 816.727 1011.853 1.000 4524 +4526 2 900.561 817.839 1011.850 1.000 4525 +4527 2 900.532 818.975 1011.914 1.000 4526 +4528 2 900.687 820.108 1011.993 1.000 4527 +4529 2 901.060 821.125 1012.080 1.000 4528 +4530 2 901.797 821.974 1012.180 1.000 4529 +4531 2 902.382 822.938 1012.309 1.000 4530 +4532 2 902.760 824.014 1012.402 1.000 4531 +4533 2 903.175 825.067 1012.427 1.000 4532 +4534 2 903.695 826.042 1012.301 1.000 4533 +4535 2 904.210 827.007 1012.052 1.000 4534 +4536 2 904.281 828.146 1011.828 1.000 4535 +4537 2 904.343 829.288 1011.640 1.000 4536 +4538 2 904.591 830.398 1011.550 1.000 4537 +4539 2 904.842 831.507 1011.542 1.000 4538 +4540 2 905.243 832.571 1011.587 1.000 4539 +4541 2 905.977 833.436 1011.604 1.000 4540 +4542 2 906.826 834.195 1011.570 1.000 4541 +4543 2 907.533 834.985 1011.399 1.000 4542 +4544 2 908.145 835.821 1011.091 1.000 4543 +4545 2 908.112 837.057 1010.839 1.000 4544 +4546 2 908.378 838.153 1010.929 1.000 4545 +4547 2 908.760 839.230 1011.161 1.000 4546 +4548 2 909.259 840.243 1011.590 1.000 4547 +4549 2 909.893 841.025 1012.290 1.000 4548 +4550 2 910.714 841.471 1013.202 1.000 4549 +4551 2 911.710 841.615 1014.252 1.000 4550 +4552 2 912.707 841.721 1015.386 1.000 4551 +4553 2 913.727 841.515 1016.537 1.000 4552 +4554 2 914.752 841.271 1017.652 1.000 4553 +4555 2 915.793 840.932 1018.682 1.000 4554 +4556 2 916.822 840.584 1019.654 1.000 4555 +4557 2 917.875 840.362 1020.592 1.000 4556 +4558 2 918.972 840.278 1021.502 1.000 4557 +4559 2 920.059 840.234 1022.434 1.000 4558 +4560 2 921.126 840.029 1023.380 1.000 4559 +4561 2 922.172 839.657 1024.346 1.000 4560 +4562 2 923.064 839.361 1025.475 1.000 4561 +4563 2 924.035 839.175 1026.707 1.000 4562 +4564 2 925.006 838.991 1028.020 1.000 4563 +4565 2 925.569 839.744 1029.381 1.000 4564 +4566 2 925.973 840.644 1030.781 1.000 4565 +4567 2 926.226 841.593 1032.212 1.000 4566 +4568 2 926.629 842.489 1033.648 1.000 4567 +4569 2 927.079 843.368 1035.093 1.000 4568 +4570 2 927.429 844.193 1036.588 1.000 4569 +4571 2 927.789 845.005 1038.108 1.000 4570 +4572 2 928.302 845.728 1039.632 1.000 4571 +4573 2 928.833 846.372 1041.127 1.000 4572 +4574 2 929.487 846.506 1042.546 1.000 4573 +4575 2 929.410 846.815 1043.851 1.000 4574 +4576 2 929.530 847.943 1044.753 1.000 4575 +4577 2 930.090 848.820 1045.758 1.000 4576 +4578 2 908.168 835.255 1009.128 1.000 4544 +4579 2 908.209 834.260 1007.392 1.000 4578 +4580 2 908.250 833.266 1006.625 1.000 4579 +4581 2 908.596 832.222 1005.802 1.000 4580 +4582 2 908.951 831.181 1004.954 1.000 4581 +4583 2 909.441 830.185 1004.116 1.000 4582 +4584 2 910.285 829.503 1003.296 1.000 4583 +4585 2 910.903 828.583 1002.481 1.000 4584 +4586 2 911.531 827.699 1001.650 1.000 4585 +4587 2 912.067 826.856 1000.762 1.000 4586 +4588 2 912.199 825.858 999.835 1.000 4587 +4589 2 912.342 824.859 998.914 1.000 4588 +4590 2 912.640 823.852 997.060 1.000 4589 +4591 2 898.491 769.596 995.257 1.000 4339 +4592 2 899.605 769.386 994.862 1.000 4591 +4593 2 900.726 769.273 994.686 1.000 4592 +4594 2 901.859 769.273 994.479 1.000 4593 +4595 2 902.996 769.240 994.328 1.000 4594 +4596 2 904.135 769.198 994.238 1.000 4595 +4597 2 905.276 769.146 994.185 1.000 4596 +4598 2 906.205 768.609 994.123 1.000 4597 +4599 2 907.017 767.809 994.025 1.000 4598 +4600 2 907.864 767.061 993.857 1.000 4599 +4601 2 908.737 766.343 993.636 1.000 4600 +4602 2 909.547 765.567 993.370 1.000 4601 +4603 2 909.849 764.548 993.152 1.000 4602 +4604 2 909.887 763.406 993.023 1.000 4603 +4605 2 909.258 762.553 992.922 1.000 4604 +4606 2 888.890 770.013 982.369 1.000 4328 +4607 2 889.884 770.562 982.122 1.000 4606 +4608 2 890.821 771.198 981.837 1.000 4607 +4609 2 891.644 771.944 981.464 1.000 4608 +4610 2 892.445 772.759 981.112 1.000 4609 +4611 2 893.400 773.312 980.750 1.000 4610 +4612 2 894.410 773.725 980.361 1.000 4611 +4613 2 894.904 774.734 979.924 1.000 4612 +4614 2 895.397 775.742 979.454 1.000 4613 +4615 2 895.892 776.751 978.953 1.000 4614 +4616 2 896.385 777.759 978.421 1.000 4615 +4617 2 896.878 778.767 977.872 1.000 4616 +4618 2 897.372 779.776 977.312 1.000 4617 +4619 2 897.906 780.750 976.758 1.000 4618 +4620 2 898.684 781.540 976.195 1.000 4619 +4621 2 899.472 782.168 975.570 1.000 4620 +4622 2 900.270 782.649 974.862 1.000 4621 +4623 2 900.788 783.116 974.422 1.000 4622 +4624 2 901.709 783.767 974.190 1.000 4623 +4625 2 902.738 784.240 974.058 1.000 4624 +4626 2 903.812 784.635 973.986 1.000 4625 +4627 2 904.826 785.128 973.930 1.000 4626 +4628 2 905.842 785.605 973.848 1.000 4627 +4629 2 906.929 785.958 973.720 1.000 4628 +4630 2 908.018 786.305 973.571 1.000 4629 +4631 2 909.146 786.452 973.412 1.000 4630 +4632 2 910.286 786.537 973.238 1.000 4631 +4633 2 911.413 786.695 973.036 1.000 4632 +4634 2 912.538 786.873 972.801 1.000 4633 +4635 2 913.666 787.044 972.544 1.000 4634 +4636 2 914.738 787.427 972.280 1.000 4635 +4637 2 915.686 787.006 971.961 1.000 4636 +4638 2 916.813 786.911 971.606 1.000 4637 +4639 2 917.935 786.979 971.194 1.000 4638 +4640 2 918.757 787.603 970.710 1.000 4639 +4641 2 919.734 788.134 970.189 1.000 4640 +4642 2 920.568 788.818 969.654 1.000 4641 +4643 2 921.163 789.760 969.133 1.000 4642 +4644 2 922.073 790.314 968.646 1.000 4643 +4645 2 923.155 790.642 968.240 1.000 4644 +4646 2 924.265 790.918 967.940 1.000 4645 +4647 2 925.288 791.386 967.714 1.000 4646 +4648 2 926.368 791.727 967.543 1.000 4647 +4649 2 927.434 792.131 967.392 1.000 4648 +4650 2 928.482 792.588 967.224 1.000 4649 +4651 2 929.382 793.245 967.000 1.000 4650 +4652 2 930.064 794.155 966.734 1.000 4651 +4653 2 930.715 795.087 966.437 1.000 4652 +4654 2 931.615 795.628 965.944 1.000 4653 +4655 2 932.574 795.924 965.227 1.000 4654 +4656 2 933.638 796.103 964.426 1.000 4655 +4657 2 934.728 796.234 963.606 1.000 4656 +4658 2 935.180 796.664 962.536 1.000 4657 +4659 2 936.243 796.391 961.534 1.000 4658 +4660 2 937.307 796.118 960.621 1.000 4659 +4661 2 938.381 795.852 959.809 1.000 4660 +4662 2 939.412 795.467 959.076 1.000 4661 +4663 2 940.480 795.151 958.440 1.000 4662 +4664 2 941.596 794.932 957.916 1.000 4663 +4665 2 942.718 794.717 957.468 1.000 4664 +4666 2 943.827 794.533 957.023 1.000 4665 +4667 2 944.922 794.387 956.519 1.000 4666 +4668 2 946.030 794.191 955.996 1.000 4667 +4669 2 947.138 793.990 955.450 1.000 4668 +4670 2 948.239 793.928 954.856 1.000 4669 +4671 2 949.334 793.966 954.209 1.000 4670 +4672 2 950.442 793.889 953.560 1.000 4671 +4673 2 951.436 793.566 952.893 1.000 4672 +4674 2 952.417 793.148 952.221 1.000 4673 +4675 2 953.514 792.913 951.597 1.000 4674 +4676 2 954.635 792.742 951.040 1.000 4675 +4677 2 955.741 792.519 950.536 1.000 4676 +4678 2 956.766 792.032 950.062 1.000 4677 +4679 2 957.785 791.539 949.598 1.000 4678 +4680 2 958.812 791.129 949.094 1.000 4679 +4681 2 959.889 790.906 948.539 1.000 4680 +4682 2 960.977 790.726 947.946 1.000 4681 +4683 2 962.069 790.712 947.346 1.000 4682 +4684 2 963.166 790.895 946.767 1.000 4683 +4685 2 964.228 791.197 946.224 1.000 4684 +4686 2 965.236 791.700 945.750 1.000 4685 +4687 2 966.294 792.083 945.384 1.000 4686 +4688 2 967.417 792.302 945.112 1.000 4687 +4689 2 968.509 792.623 944.913 1.000 4688 +4690 2 969.543 793.093 944.759 1.000 4689 +4691 2 970.444 793.786 944.616 1.000 4690 +4692 2 971.453 794.326 944.465 1.000 4691 +4693 2 972.489 794.734 944.230 1.000 4692 +4694 2 973.551 795.030 943.866 1.000 4693 +4695 2 974.544 795.508 943.426 1.000 4694 +4696 2 975.657 795.543 942.945 1.000 4695 +4697 2 976.774 795.605 942.458 1.000 4696 +4698 2 977.898 795.785 942.029 1.000 4697 +4699 2 978.986 796.126 941.674 1.000 4698 +4700 2 980.067 796.488 941.380 1.000 4699 +4701 2 981.209 796.488 941.111 1.000 4700 +4702 2 982.348 796.485 940.853 1.000 4701 +4703 2 983.408 796.139 940.534 1.000 4702 +4704 2 984.467 795.794 940.164 1.000 4703 +4705 2 985.604 795.690 939.831 1.000 4704 +4706 2 986.745 795.614 939.534 1.000 4705 +4707 2 987.887 795.557 939.274 1.000 4706 +4708 2 989.005 795.352 939.011 1.000 4707 +4709 2 990.129 795.327 938.706 1.000 4708 +4710 2 991.234 795.146 938.361 1.000 4709 +4711 2 992.330 794.872 937.975 1.000 4710 +4712 2 993.439 795.093 937.569 1.000 4711 +4713 2 994.503 795.471 937.168 1.000 4712 +4714 2 995.599 795.597 936.765 1.000 4713 +4715 2 996.351 795.209 936.337 1.000 4714 +4716 2 997.488 795.289 935.897 1.000 4715 +4717 2 998.615 795.387 935.421 1.000 4716 +4718 2 999.681 795.459 934.816 1.000 4717 +4719 2 1000.429 795.079 934.049 1.000 4718 +4720 2 1001.531 795.194 933.274 1.000 4719 +4721 2 1002.582 795.512 932.523 1.000 4720 +4722 2 1003.630 795.846 931.806 1.000 4721 +4723 2 1004.727 795.936 931.112 1.000 4722 +4724 2 1005.797 796.056 930.418 1.000 4723 +4725 2 1006.873 796.182 929.746 1.000 4724 +4726 2 1007.978 796.334 929.124 1.000 4725 +4727 2 1009.085 796.517 928.572 1.000 4726 +4728 2 1010.193 796.795 928.158 1.000 4727 +4729 2 1011.304 797.036 927.816 1.000 4728 +4730 2 1012.417 797.212 927.478 1.000 4729 +4731 2 1013.484 797.512 927.111 1.000 4730 +4732 2 1014.606 797.599 926.738 1.000 4731 +4733 2 1015.740 797.570 926.394 1.000 4732 +4734 2 1016.848 797.336 926.083 1.000 4733 +4735 2 1017.962 797.132 925.798 1.000 4734 +4736 2 1019.089 796.995 925.540 1.000 4735 +4737 2 1020.229 797.042 925.324 1.000 4736 +4738 2 1021.365 797.018 925.148 1.000 4737 +4739 2 1022.484 796.785 925.022 1.000 4738 +4740 2 1023.612 796.625 924.918 1.000 4739 +4741 2 1024.754 796.602 924.815 1.000 4740 +4742 2 1025.882 796.438 924.722 1.000 4741 +4743 2 1027.002 796.205 924.644 1.000 4742 +4744 2 1028.127 796.015 924.549 1.000 4743 +4745 2 1029.252 795.837 924.294 1.000 4744 +4746 2 900.826 782.240 971.989 1.000 4622 +4747 2 901.551 781.704 969.791 1.000 4746 +4748 2 901.908 781.172 968.898 1.000 4747 +4749 2 902.422 780.359 967.814 1.000 4748 +4750 2 902.575 779.263 966.672 1.000 4749 +4751 2 902.734 778.177 965.521 1.000 4750 +4752 2 903.577 778.318 964.250 1.000 4751 +4753 2 903.950 778.000 962.870 1.000 4752 +4754 2 904.316 777.277 961.531 1.000 4753 +4755 2 904.743 776.370 958.944 1.000 4754 +4756 2 902.665 781.704 970.396 1.000 4747 +4757 2 903.808 781.704 970.570 1.000 4756 +4758 2 904.910 781.457 970.626 1.000 4757 +4759 2 905.977 781.056 970.682 1.000 4758 +4760 2 907.017 780.606 970.780 1.000 4759 +4761 2 908.103 780.255 971.040 1.000 4760 +4762 2 840.644 766.787 967.854 1.000 4282 +4763 2 839.968 767.677 968.806 1.000 4762 +4764 2 839.958 768.789 969.203 1.000 4763 +4765 2 839.976 769.910 969.674 1.000 4764 +4766 2 839.856 770.993 970.245 1.000 4765 +4767 2 839.743 772.107 970.833 1.000 4766 +4768 2 839.709 773.246 971.404 1.000 4767 +4769 2 839.671 774.383 971.953 1.000 4768 +4770 2 839.853 775.439 972.541 1.000 4769 +4771 2 839.461 776.188 973.288 1.000 4770 +4772 2 839.412 777.215 974.095 1.000 4771 +4773 2 839.270 778.258 974.915 1.000 4772 +4774 2 838.837 779.272 975.688 1.000 4773 +4775 2 838.266 780.117 976.391 1.000 4774 +4776 2 837.137 780.268 976.959 1.000 4775 +4777 2 836.275 780.909 977.404 1.000 4776 +4778 2 835.566 781.803 977.788 1.000 4777 +4779 2 834.875 782.711 978.166 1.000 4778 +4780 2 834.184 783.623 978.555 1.000 4779 +4781 2 833.879 784.600 979.065 1.000 4780 +4782 2 833.989 785.645 979.768 1.000 4781 +4783 2 834.148 786.634 980.652 1.000 4782 +4784 2 834.390 787.527 981.714 1.000 4783 +4785 2 834.625 788.487 982.848 1.000 4784 +4786 2 833.941 788.544 983.889 1.000 4785 +4787 2 832.864 788.636 984.875 1.000 4786 +4788 2 831.818 788.775 985.821 1.000 4787 +4789 2 830.781 788.929 986.734 1.000 4788 +4790 2 829.870 788.630 987.518 1.000 4789 +4791 2 828.805 788.280 988.224 1.000 4790 +4792 2 827.766 788.073 988.918 1.000 4791 +4793 2 826.770 788.088 989.654 1.000 4792 +4794 2 826.605 788.531 991.732 1.000 4793 +4795 2 826.330 789.273 994.143 1.000 4794 +4796 2 825.807 789.701 995.184 1.000 4795 +4797 2 824.900 789.638 996.358 1.000 4796 +4798 2 823.975 789.593 997.573 1.000 4797 +4799 2 822.852 789.768 998.595 1.000 4798 +4800 2 821.764 790.109 999.410 1.000 4799 +4801 2 820.679 790.474 1000.054 1.000 4800 +4802 2 819.560 790.652 1000.644 1.000 4801 +4803 2 818.434 790.784 1001.263 1.000 4802 +4804 2 817.330 790.829 1002.008 1.000 4803 +4805 2 816.537 791.129 1002.957 1.000 4804 +4806 2 816.324 791.945 1004.189 1.000 4805 +4807 2 816.045 792.672 1005.654 1.000 4806 +4808 2 815.232 792.941 1007.244 1.000 4807 +4809 2 814.369 793.205 1008.885 1.000 4808 +4810 2 813.386 793.479 1010.475 1.000 4809 +4811 2 812.341 793.729 1011.970 1.000 4810 +4812 2 811.397 794.016 1013.460 1.000 4811 +4813 2 810.478 794.311 1014.978 1.000 4812 +4814 2 809.595 794.595 1016.551 1.000 4813 +4815 2 809.021 794.777 1018.284 1.000 4814 +4816 2 808.433 794.989 1020.132 1.000 4815 +4817 2 807.749 795.404 1021.986 1.000 4816 +4818 2 806.940 795.714 1023.767 1.000 4817 +4819 2 806.050 796.010 1025.419 1.000 4818 +4820 2 805.310 796.224 1026.964 1.000 4819 +4821 2 804.813 796.302 1028.443 1.000 4820 +4822 2 805.031 796.939 1029.714 1.000 4821 +4823 2 805.484 797.898 1030.602 1.000 4822 +4824 2 805.967 798.878 1030.971 1.000 4823 +4825 2 806.469 799.801 1030.828 1.000 4824 +4826 2 807.426 800.314 1030.338 1.000 4825 +4827 2 808.418 800.793 1029.608 1.000 4826 +4828 2 809.341 800.544 1028.619 1.000 4827 +4829 2 810.335 800.250 1027.550 1.000 4828 +4830 2 811.383 799.923 1026.494 1.000 4829 +4831 2 812.446 799.595 1025.475 1.000 4830 +4832 2 813.514 799.410 1024.442 1.000 4831 +4833 2 814.340 799.389 1023.226 1.000 4832 +4834 2 814.419 800.427 1021.966 1.000 4833 +4835 2 814.511 801.354 1020.625 1.000 4834 +4836 2 814.654 801.783 1019.077 1.000 4835 +4837 2 814.895 802.355 1017.484 1.000 4836 +4838 2 815.210 803.036 1015.963 1.000 4837 +4839 2 815.524 803.718 1014.574 1.000 4838 +4840 2 815.840 804.399 1013.337 1.000 4839 +4841 2 815.834 803.964 1012.808 1.000 4840 +4842 2 815.766 803.313 1013.628 1.000 4841 +4843 2 826.570 787.019 990.214 1.000 4793 +4844 2 825.995 786.205 990.679 1.000 4843 +4845 2 824.990 785.758 991.119 1.000 4844 +4846 2 824.028 785.207 991.486 1.000 4845 +4847 2 823.387 784.301 991.690 1.000 4846 +4848 2 822.816 783.322 991.763 1.000 4847 +4849 2 822.068 782.467 991.763 1.000 4848 +4850 2 821.185 781.752 991.668 1.000 4849 +4851 2 820.357 780.978 991.519 1.000 4850 +4852 2 819.477 780.261 991.388 1.000 4851 +4853 2 818.546 779.602 991.292 1.000 4852 +4854 2 817.856 778.691 991.220 1.000 4853 +4855 2 817.213 777.748 991.127 1.000 4854 +4856 2 816.589 776.792 991.001 1.000 4855 +4857 2 815.891 775.893 990.847 1.000 4856 +4858 2 815.123 775.057 990.646 1.000 4857 +4859 2 814.664 774.075 990.304 1.000 4858 +4860 2 813.954 773.246 989.895 1.000 4859 +4861 2 813.160 772.470 989.475 1.000 4860 +4862 2 812.279 771.766 989.100 1.000 4861 +4863 2 811.337 771.120 988.834 1.000 4862 +4864 2 810.625 770.256 988.719 1.000 4863 +4865 2 809.828 769.493 988.733 1.000 4864 +4866 2 808.815 768.961 988.820 1.000 4865 +4867 2 807.798 768.452 988.974 1.000 4866 +4868 2 806.822 767.857 989.150 1.000 4867 +4869 2 805.822 767.324 989.358 1.000 4868 +4870 2 804.733 767.039 989.663 1.000 4869 +4871 2 803.679 766.713 990.080 1.000 4870 +4872 2 802.650 766.294 990.576 1.000 4871 +4873 2 801.625 765.821 991.108 1.000 4872 +4874 2 800.626 765.273 991.642 1.000 4873 +4875 2 799.602 764.783 992.202 1.000 4874 +4876 2 798.533 764.460 992.830 1.000 4875 +4877 2 797.450 764.199 993.549 1.000 4876 +4878 2 796.358 764.001 994.381 1.000 4877 +4879 2 795.327 763.660 995.347 1.000 4878 +4880 2 794.366 763.153 996.458 1.000 4879 +4881 2 793.905 762.581 997.864 1.000 4880 +4882 2 793.505 762.000 999.499 1.000 4881 +4883 2 793.096 762.311 1001.319 1.000 4882 +4884 2 792.844 762.675 1003.246 1.000 4883 +4885 2 792.953 762.439 1005.186 1.000 4884 +4886 2 792.489 761.586 1006.919 1.000 4885 +4887 2 791.968 760.643 1008.423 1.000 4886 +4888 2 791.496 759.689 1009.761 1.000 4887 +4889 2 790.894 758.895 1011.027 1.000 4888 +4890 2 790.577 758.056 1012.281 1.000 4889 +4891 2 790.574 757.349 1013.555 1.000 4890 +4892 2 789.786 756.817 1014.804 1.000 4891 +4893 2 788.814 756.344 1015.904 1.000 4892 +4894 2 788.066 755.569 1016.882 1.000 4893 +4895 2 787.358 754.705 1017.663 1.000 4894 +4896 2 786.555 753.915 1018.256 1.000 4895 +4897 2 785.607 753.282 1018.746 1.000 4896 +4898 2 785.207 752.236 1019.239 1.000 4897 +4899 2 784.823 751.188 1019.743 1.000 4898 +4900 2 784.659 750.102 1020.284 1.000 4899 +4901 2 784.313 749.102 1020.869 1.000 4900 +4902 2 783.657 748.272 1022.218 1.000 4901 +4903 2 830.383 790.014 988.733 1.000 4789 +4904 2 830.282 791.000 989.402 1.000 4903 +4905 2 830.237 791.974 990.265 1.000 4904 +4906 2 830.650 792.995 991.155 1.000 4905 +4907 2 831.084 794.017 992.051 1.000 4906 +4908 2 831.408 795.086 992.930 1.000 4907 +4909 2 831.636 796.192 993.770 1.000 4908 +4910 2 831.873 797.207 994.694 1.000 4909 +4911 2 832.114 798.195 995.725 1.000 4910 +4912 2 831.614 798.821 996.892 1.000 4911 +4913 2 830.868 799.472 998.136 1.000 4912 +4914 2 830.226 800.353 999.384 1.000 4913 +4915 2 829.432 800.967 1000.695 1.000 4914 +4916 2 829.235 801.907 1002.081 1.000 4915 +4917 2 829.243 802.749 1003.576 1.000 4916 +4918 2 829.600 803.444 1005.155 1.000 4917 +4919 2 830.284 804.036 1006.760 1.000 4918 +4920 2 830.992 804.608 1008.361 1.000 4919 +4921 2 831.858 804.965 1009.915 1.000 4920 +4922 2 832.723 805.385 1011.396 1.000 4921 +4923 2 833.573 805.870 1012.794 1.000 4922 +4924 2 833.894 806.859 1014.045 1.000 4923 +4925 2 833.777 807.965 1015.174 1.000 4924 +4926 2 833.556 809.007 1016.282 1.000 4925 +4927 2 833.377 810.079 1017.383 1.000 4926 +4928 2 833.196 811.151 1018.511 1.000 4927 +4929 2 833.029 812.113 1019.780 1.000 4928 +4930 2 832.908 813.060 1021.196 1.000 4929 +4931 2 832.861 814.006 1022.742 1.000 4930 +4932 2 833.119 814.668 1024.430 1.000 4931 +4933 2 833.685 815.008 1026.273 1.000 4932 +4934 2 834.331 815.178 1028.202 1.000 4933 +4935 2 835.105 815.359 1030.131 1.000 4934 +4936 2 835.862 815.552 1032.021 1.000 4935 +4937 2 835.591 816.265 1033.830 1.000 4936 +4938 2 835.972 816.334 1035.535 1.000 4937 +4939 2 835.170 816.719 1037.114 1.000 4938 +4940 2 834.917 817.585 1038.517 1.000 4939 +4941 2 834.917 818.657 1039.749 1.000 4940 +4942 2 834.715 819.698 1040.878 1.000 4941 +4943 2 834.367 820.717 1041.911 1.000 4942 +4944 2 834.302 821.824 1042.824 1.000 4943 +4945 2 834.249 822.935 1043.630 1.000 4944 +4946 2 833.860 823.831 1044.417 1.000 4945 +4947 2 833.595 824.440 1046.452 1.000 4946 +4948 2 834.987 788.600 983.654 1.000 4785 +4949 2 836.071 788.939 983.380 1.000 4948 +4950 2 837.109 789.407 983.276 1.000 4949 +4951 2 838.108 789.953 983.058 1.000 4950 +4952 2 839.123 790.463 982.710 1.000 4951 +4953 2 840.164 790.917 982.246 1.000 4952 +4954 2 840.514 790.283 981.562 1.000 4953 +4955 2 840.696 789.342 980.661 1.000 4954 +4956 2 840.886 788.406 979.619 1.000 4955 +4957 2 841.278 787.495 978.538 1.000 4956 +4958 2 841.764 786.597 977.469 1.000 4957 +4959 2 841.522 785.609 976.606 1.000 4958 +4960 2 841.248 784.499 975.920 1.000 4959 +4961 2 840.938 783.433 975.302 1.000 4960 +4962 2 840.594 782.409 974.663 1.000 4961 +4963 2 840.043 781.490 973.997 1.000 4962 +4964 2 839.337 780.643 973.316 1.000 4963 +4965 2 838.612 779.792 972.639 1.000 4964 +4966 2 838.037 778.812 971.992 1.000 4965 +4967 2 837.378 777.911 971.334 1.000 4966 +4968 2 836.720 777.014 970.656 1.000 4967 +4969 2 836.068 776.117 969.951 1.000 4968 +4970 2 835.584 775.189 969.184 1.000 4969 +4971 2 835.558 774.189 968.304 1.000 4970 +4972 2 835.548 773.184 967.361 1.000 4971 +4973 2 836.224 772.571 966.465 1.000 4972 +4974 2 837.305 772.242 965.678 1.000 4973 +4975 2 838.406 771.962 964.986 1.000 4974 +4976 2 839.506 772.001 964.342 1.000 4975 +4977 2 840.608 772.182 963.712 1.000 4976 +4978 2 841.691 772.211 963.046 1.000 4977 +4979 2 842.762 772.139 962.321 1.000 4978 +4980 2 843.710 771.666 961.559 1.000 4979 +4981 2 844.621 771.098 960.784 1.000 4980 +4982 2 845.560 770.618 960.044 1.000 4981 +4983 2 846.668 770.410 959.389 1.000 4982 +4984 2 847.768 770.130 958.846 1.000 4983 +4985 2 848.866 769.832 958.401 1.000 4984 +4986 2 849.982 769.656 958.017 1.000 4985 +4987 2 851.101 769.508 957.676 1.000 4986 +4988 2 852.222 769.504 956.970 1.000 4987 +4989 2 842.078 786.994 976.083 1.000 4958 +4990 2 842.967 787.303 974.526 1.000 4989 +4991 2 843.724 788.011 973.885 1.000 4990 +4992 2 844.441 788.839 973.216 1.000 4991 +4993 2 845.170 789.425 972.454 1.000 4992 +4994 2 845.966 790.190 971.844 1.000 4993 +4995 2 846.779 790.995 971.435 1.000 4994 +4996 2 847.628 791.749 971.228 1.000 4995 +4997 2 848.636 792.278 971.186 1.000 4996 +4998 2 849.615 792.857 971.261 1.000 4997 +4999 2 850.479 793.569 971.628 1.000 4998 +5000 2 822.013 751.044 959.392 1.000 4259 +5001 2 821.613 750.243 956.992 1.000 5000 +5002 2 820.932 749.596 955.973 1.000 5001 +5003 2 820.481 748.693 954.803 1.000 5002 +5004 2 820.031 747.790 953.534 1.000 5003 +5005 2 819.841 746.826 952.207 1.000 5004 +5006 2 819.841 745.815 950.866 1.000 5005 +5007 2 819.843 744.807 949.544 1.000 5006 +5008 2 819.857 743.809 948.223 1.000 5007 +5009 2 819.223 743.252 946.901 1.000 5008 +5010 2 819.019 742.433 945.582 1.000 5009 +5011 2 819.105 741.430 944.269 1.000 5010 +5012 2 818.818 740.405 943.020 1.000 5011 +5013 2 818.508 739.364 941.822 1.000 5012 +5014 2 818.517 738.307 940.598 1.000 5013 +5015 2 818.238 737.403 939.249 1.000 5014 +5016 2 817.912 736.556 937.782 1.000 5015 +5017 2 817.457 735.868 936.169 1.000 5016 +5018 2 817.009 735.498 934.385 1.000 5017 +5019 2 816.564 735.189 932.476 1.000 5018 +5020 2 816.427 734.853 930.938 1.000 5019 +5021 2 816.059 733.947 929.060 1.000 5020 +5022 2 815.689 733.041 928.245 1.000 5021 +5023 2 815.715 731.992 927.360 1.000 5022 +5024 2 815.426 731.299 926.402 1.000 5023 +5025 2 814.612 731.136 925.350 1.000 5024 +5026 2 814.774 730.477 924.588 1.000 5025 +5027 2 815.045 729.385 924.101 1.000 5026 +5028 2 815.404 728.313 923.692 1.000 5027 +5029 2 815.992 727.351 923.286 1.000 5028 +5030 2 816.596 726.397 922.858 1.000 5029 +5031 2 817.324 725.605 922.334 1.000 5030 +5032 2 818.326 725.684 921.637 1.000 5031 +5033 2 819.316 726.117 920.917 1.000 5032 +5034 2 820.416 726.228 920.195 1.000 5033 +5035 2 821.516 726.355 919.478 1.000 5034 +5036 2 822.614 726.483 918.778 1.000 5035 +5037 2 823.722 726.322 918.126 1.000 5036 +5038 2 824.832 726.130 917.510 1.000 5037 +5039 2 825.940 725.938 916.908 1.000 5038 +5040 2 827.026 725.873 916.294 1.000 5039 +5041 2 828.056 726.120 915.614 1.000 5040 +5042 2 829.117 726.349 914.917 1.000 5041 +5043 2 830.225 726.552 914.259 1.000 5042 +5044 2 831.323 726.354 913.660 1.000 5043 +5045 2 832.419 726.033 913.108 1.000 5044 +5046 2 832.710 725.933 912.573 1.000 5045 +5047 2 833.738 725.605 911.926 1.000 5046 +5048 2 834.750 725.297 911.145 1.000 5047 +5049 2 835.584 724.848 910.235 1.000 5048 +5050 2 835.762 723.945 909.171 1.000 5049 +5051 2 835.278 723.286 908.062 1.000 5050 +5052 2 834.367 722.693 907.029 1.000 5051 +5053 2 833.515 721.954 906.108 1.000 5052 +5054 2 832.906 721.007 905.260 1.000 5053 +5055 2 832.339 720.032 904.448 1.000 5054 +5056 2 831.649 719.226 903.599 1.000 5055 +5057 2 830.736 718.680 902.622 1.000 5056 +5058 2 830.466 717.835 901.485 1.000 5057 +5059 2 830.371 716.991 900.147 1.000 5058 +5060 2 830.204 716.337 898.601 1.000 5059 +5061 2 830.506 715.490 896.960 1.000 5060 +5062 2 830.904 714.723 895.278 1.000 5061 +5063 2 831.800 714.387 893.600 1.000 5062 +5064 2 832.690 714.135 891.937 1.000 5063 +5065 2 833.565 714.094 890.271 1.000 5064 +5066 2 834.440 714.052 888.608 1.000 5065 +5067 2 834.700 713.349 886.956 1.000 5066 +5068 2 834.776 712.440 885.321 1.000 5067 +5069 2 834.943 711.387 883.795 1.000 5068 +5070 2 835.601 710.732 882.294 1.000 5069 +5071 2 836.319 710.117 880.785 1.000 5070 +5072 2 836.961 709.399 879.256 1.000 5071 +5073 2 837.712 708.779 877.705 1.000 5072 +5074 2 838.401 708.227 876.061 1.000 5073 +5075 2 839.166 707.652 874.364 1.000 5074 +5076 2 839.982 707.197 872.617 1.000 5075 +5077 2 840.572 707.595 870.758 1.000 5076 +5078 2 841.034 708.223 868.787 1.000 5077 +5079 2 841.215 708.938 866.706 1.000 5078 +5080 2 841.378 709.588 864.531 1.000 5079 +5081 2 841.307 709.330 862.226 1.000 5080 +5082 2 841.437 709.821 859.844 1.000 5081 +5083 2 841.111 710.095 857.385 1.000 5082 +5084 2 840.784 710.368 854.879 1.000 5083 +5085 2 840.475 710.656 852.348 1.000 5084 +5086 2 840.380 711.129 849.811 1.000 5085 +5087 2 840.284 711.601 847.286 1.000 5086 +5088 2 840.188 712.073 844.771 1.000 5087 +5089 2 840.108 712.523 842.279 1.000 5088 +5090 2 840.039 712.957 839.812 1.000 5089 +5091 2 839.913 713.202 837.371 1.000 5090 +5092 2 839.718 713.234 834.966 1.000 5091 +5093 2 839.622 713.747 832.653 1.000 5092 +5094 2 839.567 714.129 830.514 1.000 5093 +5095 2 838.722 714.036 828.531 1.000 5094 +5096 2 837.734 713.983 826.745 1.000 5095 +5097 2 836.746 713.932 825.107 1.000 5096 +5098 2 835.779 713.883 823.553 1.000 5097 +5099 2 834.820 713.838 822.038 1.000 5098 +5100 2 833.842 713.673 820.557 1.000 5099 +5101 2 833.240 713.049 819.095 1.000 5100 +5102 2 832.755 712.339 817.555 1.000 5101 +5103 2 831.848 711.951 816.038 1.000 5102 +5104 2 830.867 711.610 814.540 1.000 5103 +5105 2 829.990 711.200 813.011 1.000 5104 +5106 2 829.391 710.769 811.350 1.000 5105 +5107 2 828.758 710.401 809.598 1.000 5106 +5108 2 827.949 710.355 807.797 1.000 5107 +5109 2 827.141 710.308 806.002 1.000 5108 +5110 2 826.332 710.262 804.269 1.000 5109 +5111 2 825.721 709.760 802.645 1.000 5110 +5112 2 825.093 709.271 801.172 1.000 5111 +5113 2 824.040 709.233 798.946 1.000 5112 +5114 2 832.600 726.112 913.704 1.000 5045 +5115 2 833.647 726.566 913.956 1.000 5114 +5116 2 834.696 727.007 914.063 1.000 5115 +5117 2 835.817 727.178 914.200 1.000 5116 +5118 2 836.946 727.303 914.332 1.000 5117 +5119 2 838.090 727.333 914.410 1.000 5118 +5120 2 839.220 727.289 914.430 1.000 5119 +5121 2 840.310 726.993 914.351 1.000 5120 +5122 2 841.372 727.193 914.225 1.000 5121 +5123 2 842.400 727.672 914.096 1.000 5122 +5124 2 843.339 728.323 914.032 1.000 5123 +5125 2 844.233 729.016 914.046 1.000 5124 +5126 2 844.994 729.843 914.122 1.000 5125 +5127 2 845.775 730.648 914.197 1.000 5126 +5128 2 846.717 731.285 914.155 1.000 5127 +5129 2 847.685 731.868 913.987 1.000 5128 +5130 2 848.663 732.435 913.710 1.000 5129 +5131 2 849.590 733.055 913.326 1.000 5130 +5132 2 850.492 733.703 912.870 1.000 5131 +5133 2 851.540 734.145 912.430 1.000 5132 +5134 2 852.636 734.402 911.999 1.000 5133 +5135 2 853.750 734.394 911.593 1.000 5134 +5136 2 854.875 734.223 911.221 1.000 5135 +5137 2 855.980 734.405 910.882 1.000 5136 +5138 2 857.079 734.697 910.560 1.000 5137 +5139 2 858.180 734.764 910.232 1.000 5138 +5140 2 859.282 734.799 909.913 1.000 5139 +5141 2 860.386 735.079 909.628 1.000 5140 +5142 2 861.458 735.425 909.378 1.000 5141 +5143 2 862.366 736.029 908.944 1.000 5142 +5144 2 814.035 730.827 923.070 1.000 5025 +5145 2 813.116 730.334 919.859 1.000 5144 +5146 2 812.912 730.177 918.414 1.000 5145 +5147 2 812.970 729.984 916.586 1.000 5146 +5148 2 813.271 729.727 914.519 1.000 5147 +5149 2 813.882 729.341 912.380 1.000 5148 +5150 2 814.141 729.396 910.241 1.000 5149 +5151 2 813.924 730.046 908.160 1.000 5150 +5152 2 813.708 730.695 906.170 1.000 5151 +5153 2 813.383 731.396 904.484 1.000 5152 +5154 2 812.987 732.377 902.958 1.000 5153 +5155 2 812.704 733.219 901.452 1.000 5154 +5156 2 812.536 733.918 899.881 1.000 5155 +5157 2 812.480 734.648 898.279 1.000 5156 +5158 2 813.097 735.162 896.706 1.000 5157 +5159 2 813.876 735.734 895.230 1.000 5158 +5160 2 814.662 736.509 893.956 1.000 5159 +5161 2 815.522 737.193 892.850 1.000 5160 +5162 2 816.269 737.986 891.876 1.000 5161 +5163 2 817.059 738.665 890.954 1.000 5162 +5164 2 817.945 739.204 890.028 1.000 5163 +5165 2 818.017 740.170 889.098 1.000 5164 +5166 2 818.116 741.212 888.194 1.000 5165 +5167 2 818.516 742.254 887.370 1.000 5166 +5168 2 818.916 743.295 886.612 1.000 5167 +5169 2 818.582 744.383 885.954 1.000 5168 +5170 2 818.334 745.474 885.349 1.000 5169 +5171 2 818.359 746.579 884.716 1.000 5170 +5172 2 818.448 747.652 884.019 1.000 5171 +5173 2 818.578 748.705 883.252 1.000 5172 +5174 2 818.612 749.778 882.454 1.000 5173 +5175 2 818.548 750.871 881.661 1.000 5174 +5176 2 819.147 751.720 880.900 1.000 5175 +5177 2 820.177 752.070 880.200 1.000 5176 +5178 2 820.548 753.109 879.547 1.000 5177 +5179 2 820.882 754.183 878.976 1.000 5178 +5180 2 821.196 755.278 878.489 1.000 5179 +5181 2 820.786 756.290 878.055 1.000 5180 +5182 2 820.238 757.287 877.652 1.000 5181 +5183 2 819.999 758.372 877.232 1.000 5182 +5184 2 819.889 759.481 876.781 1.000 5183 +5185 2 820.264 760.552 876.322 1.000 5184 +5186 2 820.617 761.627 875.846 1.000 5185 +5187 2 820.866 762.721 875.325 1.000 5186 +5188 2 821.076 763.818 874.768 1.000 5187 +5189 2 821.055 764.935 874.166 1.000 5188 +5190 2 821.099 766.044 873.527 1.000 5189 +5191 2 821.482 767.105 872.869 1.000 5190 +5192 2 822.052 768.060 872.155 1.000 5191 +5193 2 822.555 768.995 871.312 1.000 5192 +5194 2 823.003 769.923 870.372 1.000 5193 +5195 2 823.359 770.846 869.352 1.000 5194 +5196 2 823.752 771.546 868.241 1.000 5195 +5197 2 824.075 772.582 867.250 1.000 5196 +5198 2 824.397 773.619 865.474 1.000 5197 +5199 2 813.876 730.200 904.039 1.000 5152 +5200 2 814.138 729.395 901.267 1.000 5199 +5201 2 814.280 728.703 900.038 1.000 5200 +5202 2 813.916 727.796 898.666 1.000 5201 +5203 2 813.551 726.890 897.204 1.000 5202 +5204 2 813.872 726.069 895.670 1.000 5203 +5205 2 814.435 725.438 894.135 1.000 5204 +5206 2 815.443 725.264 892.690 1.000 5205 +5207 2 816.451 725.089 891.307 1.000 5206 +5208 2 817.353 724.555 889.972 1.000 5207 +5209 2 818.089 723.888 888.653 1.000 5208 +5210 2 818.608 723.050 887.328 1.000 5209 +5211 2 817.970 722.947 885.920 1.000 5210 +5212 2 817.129 722.975 884.472 1.000 5211 +5213 2 816.834 723.474 883.075 1.000 5212 +5214 2 817.357 724.225 881.812 1.000 5213 +5215 2 818.432 724.110 880.757 1.000 5214 +5216 2 819.336 723.745 878.998 1.000 5215 +5217 2 816.563 735.194 930.857 1.000 5019 +5218 2 816.392 736.127 929.247 1.000 5217 +5219 2 816.171 736.036 927.506 1.000 5218 +5220 2 816.564 736.134 925.674 1.000 5219 +5221 2 817.262 736.336 923.955 1.000 5220 +5222 2 818.032 736.765 922.314 1.000 5221 +5223 2 818.760 737.346 920.758 1.000 5222 +5224 2 819.684 737.593 919.352 1.000 5223 +5225 2 820.616 737.952 918.131 1.000 5224 +5226 2 821.554 738.502 917.134 1.000 5225 +5227 2 822.484 739.144 916.353 1.000 5226 +5228 2 823.423 739.795 915.771 1.000 5227 +5229 2 824.360 740.445 915.328 1.000 5228 +5230 2 825.298 741.095 914.970 1.000 5229 +5231 2 826.236 741.746 914.651 1.000 5230 +5232 2 827.170 742.351 914.276 1.000 5231 +5233 2 828.179 742.864 913.870 1.000 5232 +5234 2 829.272 743.161 913.441 1.000 5233 +5235 2 830.375 743.431 912.996 1.000 5234 +5236 2 831.481 743.383 912.495 1.000 5235 +5237 2 832.588 743.256 911.949 1.000 5236 +5238 2 833.668 743.492 911.372 1.000 5237 +5239 2 834.741 743.808 910.764 1.000 5238 +5240 2 835.812 744.111 910.115 1.000 5239 +5241 2 836.774 744.721 909.488 1.000 5240 +5242 2 837.588 745.435 908.802 1.000 5241 +5243 2 838.319 746.212 908.018 1.000 5242 +5244 2 839.121 746.952 907.164 1.000 5243 +5245 2 839.926 747.653 906.231 1.000 5244 +5246 2 840.688 748.412 905.240 1.000 5245 +5247 2 841.402 749.253 904.224 1.000 5246 +5248 2 841.981 749.763 903.045 1.000 5247 +5249 2 841.280 750.374 901.821 1.000 5248 +5250 2 840.567 750.731 900.556 1.000 5249 +5251 2 840.204 751.325 899.279 1.000 5250 +5252 2 840.053 752.255 898.080 1.000 5251 +5253 2 839.706 753.228 897.095 1.000 5252 +5254 2 839.706 753.710 896.465 1.000 5253 +5255 2 839.786 754.825 896.129 1.000 5254 +5256 2 840.263 755.852 895.952 1.000 5255 +5257 2 840.433 756.982 895.891 1.000 5256 +5258 2 840.474 758.110 895.902 1.000 5257 +5259 2 840.359 759.234 895.952 1.000 5258 +5260 2 840.460 760.348 895.885 1.000 5259 +5261 2 840.616 761.459 895.700 1.000 5260 +5262 2 840.478 762.537 895.412 1.000 5261 +5263 2 840.257 763.604 895.054 1.000 5262 +5264 2 840.416 764.733 894.771 1.000 5263 +5265 2 840.581 765.863 894.575 1.000 5264 +5266 2 840.635 766.999 894.538 1.000 5265 +5267 2 840.603 768.124 894.642 1.000 5266 +5268 2 840.355 769.216 894.869 1.000 5267 +5269 2 839.682 770.094 895.118 1.000 5268 +5270 2 838.978 770.990 895.359 1.000 5269 +5271 2 838.209 771.818 895.574 1.000 5270 +5272 2 837.271 772.470 895.748 1.000 5271 +5273 2 836.436 773.250 895.854 1.000 5272 +5274 2 835.663 774.088 895.938 1.000 5273 +5275 2 835.441 775.201 896.008 1.000 5274 +5276 2 835.210 776.317 896.062 1.000 5275 +5277 2 834.815 777.390 896.087 1.000 5276 +5278 2 834.169 778.260 896.050 1.000 5277 +5279 2 833.469 779.033 895.930 1.000 5278 +5280 2 833.303 780.142 895.773 1.000 5279 +5281 2 832.687 781.103 895.597 1.000 5280 +5282 2 832.060 782.056 895.409 1.000 5281 +5283 2 831.348 782.939 895.194 1.000 5282 +5284 2 830.702 783.881 895.017 1.000 5283 +5285 2 830.231 784.913 894.858 1.000 5284 +5286 2 829.784 785.941 894.678 1.000 5285 +5287 2 829.085 786.785 894.421 1.000 5286 +5288 2 828.668 787.837 894.118 1.000 5287 +5289 2 828.134 788.814 893.766 1.000 5288 +5290 2 827.475 789.716 893.362 1.000 5289 +5291 2 826.805 790.638 892.982 1.000 5290 +5292 2 826.180 791.595 892.671 1.000 5291 +5293 2 825.540 792.541 892.399 1.000 5292 +5294 2 824.909 793.472 892.077 1.000 5293 +5295 2 824.479 794.498 891.677 1.000 5294 +5296 2 824.114 795.552 891.215 1.000 5295 +5297 2 823.754 796.607 890.700 1.000 5296 +5298 2 823.527 797.686 890.134 1.000 5297 +5299 2 822.980 798.601 889.540 1.000 5298 +5300 2 822.281 799.463 888.992 1.000 5299 +5301 2 821.414 800.157 888.521 1.000 5300 +5302 2 820.478 800.781 888.135 1.000 5301 +5303 2 819.421 801.147 887.905 1.000 5302 +5304 2 818.319 801.409 887.852 1.000 5303 +5305 2 817.270 801.775 887.967 1.000 5304 +5306 2 816.215 802.211 888.135 1.000 5305 +5307 2 815.209 802.741 888.334 1.000 5306 +5308 2 814.694 803.710 888.518 1.000 5307 +5309 2 814.377 804.785 888.670 1.000 5308 +5310 2 814.774 805.855 888.768 1.000 5309 +5311 2 815.377 806.813 888.840 1.000 5310 +5312 2 815.939 807.789 888.961 1.000 5311 +5313 2 816.404 808.815 889.148 1.000 5312 +5314 2 816.805 809.874 889.367 1.000 5313 +5315 2 817.206 810.935 889.602 1.000 5314 +5316 2 816.972 812.048 889.806 1.000 5315 +5317 2 816.728 813.163 889.966 1.000 5316 +5318 2 816.607 814.296 890.022 1.000 5317 +5319 2 840.143 752.997 894.071 1.000 5253 +5320 2 840.786 752.671 891.850 1.000 5319 +5321 2 841.486 753.452 890.952 1.000 5320 +5322 2 842.165 754.245 889.963 1.000 5321 +5323 2 842.741 755.091 888.919 1.000 5322 +5324 2 843.318 755.937 887.860 1.000 5323 +5325 2 843.630 756.154 886.945 1.000 5324 +5326 2 844.543 756.771 886.141 1.000 5325 +5327 2 845.454 757.436 885.416 1.000 5326 +5328 2 846.299 758.154 884.694 1.000 5327 +5329 2 847.229 758.723 883.932 1.000 5328 +5330 2 848.315 758.731 883.103 1.000 5329 +5331 2 849.363 758.934 882.204 1.000 5330 +5332 2 850.355 759.445 881.258 1.000 5331 +5333 2 851.286 759.950 880.216 1.000 5332 +5334 2 851.719 760.574 878.993 1.000 5333 +5335 2 851.415 761.468 877.635 1.000 5334 +5336 2 852.109 761.960 876.131 1.000 5335 +5337 2 852.810 762.452 874.527 1.000 5336 +5338 2 853.601 762.962 872.908 1.000 5337 +5339 2 854.312 763.562 871.276 1.000 5338 +5340 2 855.022 764.161 869.680 1.000 5339 +5341 2 855.887 764.394 868.179 1.000 5340 +5342 2 856.756 764.440 866.774 1.000 5341 +5343 2 857.279 764.771 865.388 1.000 5342 +5344 2 858.333 764.694 862.932 1.000 5343 +5345 2 842.669 755.772 886.337 1.000 5324 +5346 2 841.681 755.521 884.321 1.000 5345 +5347 2 840.687 755.383 883.467 1.000 5346 +5348 2 839.674 755.615 882.459 1.000 5347 +5349 2 838.896 755.891 881.322 1.000 5348 +5350 2 839.044 756.781 880.071 1.000 5349 +5351 2 839.167 757.804 878.833 1.000 5350 +5352 2 839.749 758.668 877.652 1.000 5351 +5353 2 840.188 759.507 876.487 1.000 5352 +5354 2 840.311 760.467 875.381 1.000 5353 +5355 2 840.400 761.440 873.160 1.000 5354 +5356 2 816.993 736.458 924.470 1.000 5220 +5357 2 817.857 737.150 922.939 1.000 5356 +5358 2 818.101 738.195 922.278 1.000 5357 +5359 2 818.471 739.159 921.435 1.000 5358 +5360 2 818.826 740.118 920.447 1.000 5359 +5361 2 819.178 741.036 919.360 1.000 5360 +5362 2 819.943 741.512 918.156 1.000 5361 +5363 2 820.866 742.002 916.997 1.000 5362 +5364 2 821.932 742.183 915.950 1.000 5363 +5365 2 823.038 742.292 914.990 1.000 5364 +5366 2 824.069 742.644 914.040 1.000 5365 +5367 2 825.001 743.044 913.044 1.000 5366 +5368 2 825.815 743.483 911.943 1.000 5367 +5369 2 826.729 743.587 910.790 1.000 5368 +5370 2 827.734 743.385 909.644 1.000 5369 +5371 2 828.745 743.164 908.544 1.000 5370 +5372 2 829.771 742.833 907.547 1.000 5371 +5373 2 830.792 742.446 906.676 1.000 5372 +5374 2 831.822 741.996 905.957 1.000 5373 +5375 2 832.919 741.723 905.355 1.000 5374 +5376 2 834.029 741.535 904.820 1.000 5375 +5377 2 835.133 741.309 904.347 1.000 5376 +5378 2 836.231 741.032 903.930 1.000 5377 +5379 2 837.320 740.751 903.543 1.000 5378 +5380 2 838.383 740.460 902.664 1.000 5379 +5381 3 824.615 820.909 971.936 1.000 19 +5382 3 825.746 820.821 971.208 1.000 5381 +5383 3 826.723 820.462 970.897 1.000 5382 +5384 3 827.511 819.726 970.488 1.000 5383 +5385 3 828.527 819.270 970.026 1.000 5384 +5386 3 829.584 818.853 969.590 1.000 5385 +5387 3 830.601 818.388 969.184 1.000 5386 +5388 3 831.424 817.699 968.772 1.000 5387 +5389 3 832.524 817.404 968.422 1.000 5388 +5390 3 833.293 817.060 968.136 1.000 5389 +5391 3 834.335 816.593 967.884 1.000 5390 +5392 3 835.438 816.305 967.652 1.000 5391 +5393 3 836.556 816.060 967.422 1.000 5392 +5394 3 837.258 816.079 967.148 1.000 5393 +5395 3 838.386 816.110 966.790 1.000 5394 +5396 3 839.495 816.095 966.339 1.000 5395 +5397 3 840.589 816.048 965.798 1.000 5396 +5398 3 841.672 815.830 965.216 1.000 5397 +5399 3 842.750 815.631 964.611 1.000 5398 +5400 3 843.819 815.309 964.051 1.000 5399 +5401 3 844.881 814.966 963.544 1.000 5400 +5402 3 845.946 814.737 963.080 1.000 5401 +5403 3 847.024 814.395 962.752 1.000 5402 +5404 3 847.906 813.703 962.550 1.000 5403 +5405 3 849.017 813.439 962.441 1.000 5404 +5406 3 850.132 813.178 962.422 1.000 5405 +5407 3 851.246 812.917 962.478 1.000 5406 +5408 3 852.330 812.571 962.646 1.000 5407 +5409 3 853.370 812.130 962.906 1.000 5408 +5410 3 854.369 811.599 963.234 1.000 5409 +5411 3 855.449 811.223 963.628 1.000 5410 +5412 3 856.411 810.707 964.166 1.000 5411 +5413 3 857.205 810.208 964.998 1.000 5412 +5414 3 858.129 810.082 966.042 1.000 5413 +5415 3 859.068 809.999 967.238 1.000 5414 +5416 3 860.066 810.077 968.481 1.000 5415 +5417 3 861.094 810.237 969.707 1.000 5416 +5418 3 862.084 810.484 970.894 1.000 5417 +5419 3 863.058 810.768 972.028 1.000 5418 +5420 3 863.082 810.762 972.933 1.000 5419 +5421 3 864.120 810.505 973.820 1.000 5420 +5422 3 865.160 810.247 974.711 1.000 5421 +5423 3 866.252 810.143 975.579 1.000 5422 +5424 3 867.350 810.055 976.441 1.000 5423 +5425 3 868.409 810.052 977.351 1.000 5424 +5426 3 869.447 810.054 978.323 1.000 5425 +5427 3 870.266 809.457 979.325 1.000 5426 +5428 3 871.355 809.572 980.297 1.000 5427 +5429 3 872.442 809.624 981.257 1.000 5428 +5430 3 873.515 809.674 982.218 1.000 5429 +5431 3 874.315 809.989 983.212 1.000 5430 +5432 3 875.152 810.578 984.180 1.000 5431 +5433 3 876.156 810.907 985.152 1.000 5432 +5434 3 877.204 811.082 986.140 1.000 5433 +5435 3 878.277 811.218 987.118 1.000 5434 +5436 3 879.372 811.320 988.072 1.000 5435 +5437 3 880.464 811.349 989.024 1.000 5436 +5438 3 881.552 811.339 989.999 1.000 5437 +5439 3 882.499 811.039 991.040 1.000 5438 +5440 3 883.356 810.551 992.169 1.000 5439 +5441 3 884.322 810.396 993.348 1.000 5440 +5442 3 885.344 810.405 994.543 1.000 5441 +5443 3 886.363 810.390 995.742 1.000 5442 +5444 3 887.378 810.335 996.920 1.000 5443 +5445 3 888.401 810.463 998.043 1.000 5444 +5446 3 889.432 810.800 999.088 1.000 5445 +5447 3 890.350 811.324 1000.054 1.000 5446 +5448 3 891.167 812.016 1000.958 1.000 5447 +5449 3 892.182 812.390 1001.860 1.000 5448 +5450 3 892.959 813.116 1002.761 1.000 5449 +5451 3 893.371 813.922 1003.744 1.000 5450 +5452 3 893.974 814.820 1004.730 1.000 5451 +5453 3 894.736 815.575 1005.712 1.000 5452 +5454 3 895.569 816.242 1006.698 1.000 5453 +5455 3 896.474 816.763 1007.681 1.000 5454 +5456 3 897.457 817.072 1008.675 1.000 5455 +5457 3 898.492 817.276 1009.627 1.000 5456 +5458 3 899.605 817.320 1010.498 1.000 5457 +5459 3 900.686 817.469 1011.321 1.000 5458 +5460 3 901.739 817.700 1012.119 1.000 5459 +5461 3 902.801 817.793 1012.875 1.000 5460 +5462 3 903.884 817.532 1013.564 1.000 5461 +5463 3 904.990 817.461 1014.194 1.000 5462 +5464 3 906.107 817.484 1014.768 1.000 5463 +5465 3 907.213 817.414 1015.294 1.000 5464 +5466 3 908.313 817.320 1015.773 1.000 5465 +5467 3 908.675 817.268 1016.117 1.000 5466 +5468 3 909.801 817.103 1016.378 1.000 5467 +5469 3 910.923 816.976 1016.515 1.000 5468 +5470 3 912.038 816.880 1016.506 1.000 5469 +5471 3 913.150 816.690 1016.467 1.000 5470 +5472 3 914.261 816.422 1016.478 1.000 5471 +5473 3 915.380 816.314 1016.579 1.000 5472 +5474 3 916.493 816.201 1016.750 1.000 5473 +5475 3 917.581 815.858 1016.924 1.000 5474 +5476 3 918.720 815.746 1017.097 1.000 5475 +5477 3 919.852 815.780 1017.293 1.000 5476 +5478 3 920.973 815.760 1017.503 1.000 5477 +5479 3 922.065 815.519 1017.733 1.000 5478 +5480 3 923.154 815.238 1017.934 1.000 5479 +5481 3 924.234 814.863 1018.032 1.000 5480 +5482 3 925.215 814.337 1018.004 1.000 5481 +5483 3 926.156 813.784 1017.859 1.000 5482 +5484 3 927.234 813.451 1017.668 1.000 5483 +5485 3 928.231 812.912 1017.442 1.000 5484 +5486 3 929.180 812.304 1017.206 1.000 5485 +5487 3 930.066 811.615 1016.985 1.000 5486 +5488 3 931.127 811.223 1016.873 1.000 5487 +5489 3 932.254 811.062 1016.904 1.000 5488 +5490 3 909.192 817.054 1018.178 1.000 5466 +5491 3 910.069 816.786 1020.060 1.000 5490 +5492 3 911.016 816.829 1020.872 1.000 5491 +5493 3 912.019 817.108 1021.765 1.000 5492 +5494 3 913.077 816.800 1022.627 1.000 5493 +5495 3 914.113 816.500 1023.456 1.000 5494 +5496 3 915.150 816.376 1024.218 1.000 5495 +5497 3 916.286 816.376 1024.811 1.000 5496 +5498 3 917.410 816.239 1025.273 1.000 5497 +5499 3 918.494 815.942 1025.651 1.000 5498 +5500 3 919.505 815.421 1025.956 1.000 5499 +5501 3 920.553 814.967 1026.189 1.000 5500 +5502 3 921.645 814.641 1026.360 1.000 5501 +5503 3 922.757 814.384 1026.486 1.000 5502 +5504 3 923.874 814.569 1026.816 1.000 5503 +5505 3 862.998 811.131 972.714 1.000 5419 +5506 3 862.815 812.259 972.992 1.000 5505 +5507 3 862.483 813.344 973.115 1.000 5506 +5508 3 861.908 814.318 973.260 1.000 5507 +5509 3 861.187 815.190 973.417 1.000 5508 +5510 3 860.171 815.718 973.563 1.000 5509 +5511 3 859.524 816.650 973.717 1.000 5510 +5512 3 858.725 817.412 973.893 1.000 5511 +5513 3 857.809 818.049 974.106 1.000 5512 +5514 3 857.076 818.916 974.327 1.000 5513 +5515 3 856.191 819.634 974.518 1.000 5514 +5516 3 855.354 820.405 974.683 1.000 5515 +5517 3 854.542 821.208 974.809 1.000 5516 +5518 3 853.769 822.044 974.882 1.000 5517 +5519 3 853.123 822.987 974.893 1.000 5518 +5520 3 852.271 823.749 974.848 1.000 5519 +5521 3 851.503 824.573 974.725 1.000 5520 +5522 3 850.817 825.467 974.554 1.000 5521 +5523 3 850.193 826.420 974.386 1.000 5522 +5524 3 849.204 826.979 974.238 1.000 5523 +5525 3 848.300 827.669 974.165 1.000 5524 +5526 3 847.780 828.596 974.187 1.000 5525 +5527 3 847.628 829.726 974.296 1.000 5526 +5528 3 847.426 830.848 974.490 1.000 5527 +5529 3 847.122 831.929 974.772 1.000 5528 +5530 3 846.720 832.974 975.134 1.000 5529 +5531 3 846.392 834.041 975.540 1.000 5530 +5532 3 846.098 835.120 975.965 1.000 5531 +5533 3 846.092 836.241 976.349 1.000 5532 +5534 3 846.179 837.377 976.668 1.000 5533 +5535 3 846.330 838.500 976.937 1.000 5534 +5536 3 846.495 839.622 977.155 1.000 5535 +5537 3 846.595 840.759 977.262 1.000 5536 +5538 3 846.569 841.884 977.264 1.000 5537 +5539 3 846.323 842.988 977.180 1.000 5538 +5540 3 845.831 843.948 977.052 1.000 5539 +5541 3 845.357 844.945 976.962 1.000 5540 +5542 3 844.771 845.866 976.937 1.000 5541 +5543 3 843.889 846.591 976.987 1.000 5542 +5544 3 843.759 847.722 977.108 1.000 5543 +5545 3 843.511 848.835 977.270 1.000 5544 +5546 3 843.191 849.928 977.458 1.000 5545 +5547 3 842.788 850.990 977.665 1.000 5546 +5548 3 842.420 852.063 977.875 1.000 5547 +5549 3 842.209 853.185 978.062 1.000 5548 +5550 3 842.168 854.305 978.222 1.000 5549 +5551 3 842.403 855.423 978.345 1.000 5550 +5552 3 842.729 856.514 978.418 1.000 5551 +5553 3 843.144 857.580 978.432 1.000 5552 +5554 3 843.232 858.714 978.407 1.000 5553 +5555 3 843.687 859.643 978.323 1.000 5554 +5556 3 844.574 860.345 978.169 1.000 5555 +5557 3 845.008 861.398 977.992 1.000 5556 +5558 3 845.009 862.500 977.822 1.000 5557 +5559 3 844.809 863.625 977.508 1.000 5558 +5560 3 836.725 815.749 967.991 1.000 5393 +5561 3 837.170 814.701 968.260 1.000 5560 +5562 3 837.543 813.620 968.355 1.000 5561 +5563 3 838.292 812.785 968.506 1.000 5562 +5564 3 838.702 811.739 968.694 1.000 5563 +5565 3 839.355 810.952 968.937 1.000 5564 +5566 3 840.420 810.557 969.262 1.000 5565 +5567 3 841.206 809.780 969.682 1.000 5566 +5568 3 842.010 809.017 970.197 1.000 5567 +5569 3 842.964 808.583 970.802 1.000 5568 +5570 3 844.039 808.751 971.491 1.000 5569 +5571 3 845.113 808.918 972.236 1.000 5570 +5572 3 846.222 808.920 972.980 1.000 5571 +5573 3 847.324 808.973 973.720 1.000 5572 +5574 3 848.394 809.246 974.462 1.000 5573 +5575 3 849.362 809.738 975.192 1.000 5574 +5576 3 850.379 810.045 975.906 1.000 5575 +5577 3 851.491 810.152 976.629 1.000 5576 +5578 3 852.590 810.357 977.379 1.000 5577 +5579 3 853.665 810.526 978.205 1.000 5578 +5580 3 854.726 810.674 979.124 1.000 5579 +5581 3 855.734 810.606 980.151 1.000 5580 +5582 3 856.651 810.171 981.294 1.000 5581 +5583 3 857.586 809.720 982.514 1.000 5582 +5584 3 858.609 809.611 983.752 1.000 5583 +5585 3 859.303 809.255 985.166 1.000 5584 +5586 3 860.094 808.819 986.653 1.000 5585 +5587 3 860.897 808.373 988.173 1.000 5586 +5588 3 861.424 807.722 989.702 1.000 5587 +5589 3 861.708 806.891 991.217 1.000 5588 +5590 3 861.492 806.426 992.650 1.000 5589 +5591 3 860.476 806.546 993.927 1.000 5590 +5592 3 859.460 806.666 995.072 1.000 5591 +5593 3 858.419 806.967 996.010 1.000 5592 +5594 3 857.370 807.411 996.722 1.000 5593 +5595 3 856.412 808.037 997.259 1.000 5594 +5596 3 855.471 808.681 997.718 1.000 5595 +5597 3 854.439 809.096 998.200 1.000 5596 +5598 3 853.383 809.428 998.749 1.000 5597 +5599 3 852.852 810.370 999.426 1.000 5598 +5600 3 853.190 811.119 1000.185 1.000 5599 +5601 3 853.634 812.105 1001.039 1.000 5600 +5602 3 854.276 812.948 1001.972 1.000 5601 +5603 3 855.131 813.583 1002.966 1.000 5602 +5604 3 855.982 814.189 1004.030 1.000 5603 +5605 3 856.735 814.957 1005.136 1.000 5604 +5606 3 857.367 815.800 1006.298 1.000 5605 +5607 3 857.917 816.623 1007.563 1.000 5606 +5608 3 858.535 817.316 1008.958 1.000 5607 +5609 3 859.047 818.140 1010.430 1.000 5608 +5610 3 859.524 819.007 1011.945 1.000 5609 +5611 3 860.184 819.145 1013.608 1.000 5610 +5612 3 860.847 819.271 1015.356 1.000 5611 +5613 3 860.782 819.237 1017.092 1.000 5612 +5614 3 859.943 819.032 1018.744 1.000 5613 +5615 3 859.027 818.898 1020.253 1.000 5614 +5616 3 857.961 818.909 1021.532 1.000 5615 +5617 3 856.930 819.138 1022.588 1.000 5616 +5618 3 855.942 819.635 1023.439 1.000 5617 +5619 3 854.920 820.122 1024.078 1.000 5618 +5620 3 853.909 820.655 1024.554 1.000 5619 +5621 3 852.870 821.077 1024.954 1.000 5620 +5622 3 851.741 821.063 1025.374 1.000 5621 +5623 3 850.611 821.169 1025.825 1.000 5622 +5624 3 849.479 821.337 1026.320 1.000 5623 +5625 3 848.705 822.097 1026.903 1.000 5624 +5626 3 848.040 822.887 1027.622 1.000 5625 +5627 3 847.482 822.733 1028.759 1.000 5626 +5628 3 846.735 822.756 1030.151 1.000 5627 +5629 3 845.930 822.833 1031.696 1.000 5628 +5630 3 845.125 822.911 1033.329 1.000 5629 +5631 3 844.408 823.307 1034.928 1.000 5630 +5632 3 843.771 823.985 1036.392 1.000 5631 +5633 3 842.933 824.711 1037.543 1.000 5632 +5634 3 842.119 825.445 1038.450 1.000 5633 +5635 3 841.764 826.413 1039.836 1.000 5634 +5636 3 852.494 810.271 999.583 1.000 5599 +5637 3 851.504 810.000 1001.451 1.000 5636 +5638 3 850.455 809.876 1002.238 1.000 5637 +5639 3 849.394 809.786 1003.156 1.000 5638 +5640 3 848.509 809.421 1004.186 1.000 5639 +5641 3 847.793 809.045 1005.354 1.000 5640 +5642 3 846.761 808.926 1006.516 1.000 5641 +5643 3 845.826 808.658 1007.692 1.000 5642 +5644 3 844.850 808.540 1008.818 1.000 5643 +5645 3 843.756 808.871 1009.747 1.000 5644 +5646 3 842.747 809.010 1010.640 1.000 5645 +5647 3 841.794 809.021 1011.578 1.000 5646 +5648 3 840.753 808.998 1012.472 1.000 5647 +5649 3 839.631 808.946 1013.256 1.000 5648 +5650 3 838.509 808.911 1013.961 1.000 5649 +5651 3 837.379 809.065 1014.583 1.000 5650 +5652 3 836.262 809.034 1015.143 1.000 5651 +5653 3 835.159 808.767 1015.694 1.000 5652 +5654 3 834.058 808.484 1016.291 1.000 5653 +5655 3 832.960 808.193 1016.968 1.000 5654 +5656 3 832.206 807.436 1017.792 1.000 5655 +5657 3 831.513 806.721 1018.870 1.000 5656 +5658 3 830.883 806.062 1020.202 1.000 5657 +5659 3 830.621 805.447 1021.824 1.000 5658 +5660 3 830.358 805.084 1023.672 1.000 5659 +5661 3 830.093 804.911 1025.674 1.000 5660 +5662 3 829.644 805.211 1027.670 1.000 5661 +5663 3 829.421 805.922 1029.540 1.000 5662 +5664 3 829.384 806.867 1031.181 1.000 5663 +5665 3 829.006 807.844 1032.539 1.000 5664 +5666 3 828.613 808.811 1033.642 1.000 5665 +5667 3 827.661 809.423 1034.443 1.000 5666 +5668 3 826.959 809.760 1035.552 1.000 5667 +5669 3 832.659 818.424 967.282 1.000 5389 +5670 3 833.040 819.393 965.040 1.000 5669 +5671 3 833.632 820.250 964.107 1.000 5670 +5672 3 834.367 820.929 962.954 1.000 5671 +5673 3 834.286 821.644 961.495 1.000 5672 +5674 3 833.700 822.171 959.860 1.000 5673 +5675 3 833.569 822.586 958.171 1.000 5674 +5676 3 833.342 823.214 956.376 1.000 5675 +5677 3 832.975 823.891 954.559 1.000 5676 +5678 3 832.609 824.565 952.756 1.000 5677 +5679 3 831.776 825.196 951.132 1.000 5678 +5680 3 830.912 825.824 949.656 1.000 5679 +5681 3 830.522 826.701 948.228 1.000 5680 +5682 3 830.223 827.587 946.817 1.000 5681 +5683 3 829.943 828.460 945.409 1.000 5682 +5684 3 829.771 829.362 944.014 1.000 5683 +5685 3 829.890 830.333 942.668 1.000 5684 +5686 3 829.002 830.701 941.391 1.000 5685 +5687 3 827.985 831.019 940.229 1.000 5686 +5688 3 827.010 831.426 939.159 1.000 5687 +5689 3 826.162 832.139 938.224 1.000 5688 +5690 3 825.317 832.859 937.367 1.000 5689 +5691 3 824.460 833.553 936.541 1.000 5690 +5692 3 823.426 833.873 934.962 1.000 5691 +5693 3 822.459 834.311 934.035 1.000 5692 +5694 3 821.533 834.784 933.016 1.000 5693 +5695 3 820.632 835.154 931.871 1.000 5694 +5696 3 819.695 835.485 930.647 1.000 5695 +5697 3 818.728 835.784 929.382 1.000 5696 +5698 3 817.992 836.500 928.141 1.000 5697 +5699 3 817.129 837.068 926.915 1.000 5698 +5700 3 816.218 837.566 925.688 1.000 5699 +5701 3 815.798 838.509 924.442 1.000 5700 +5702 3 815.234 839.386 923.188 1.000 5701 +5703 3 814.519 840.205 921.956 1.000 5702 +5704 3 814.136 840.999 920.615 1.000 5703 +5705 3 813.608 841.500 919.050 1.000 5704 +5706 3 813.902 842.003 917.272 1.000 5705 +5707 3 814.196 842.508 915.348 1.000 5706 +5708 3 814.485 843.018 913.346 1.000 5707 +5709 3 814.471 843.854 911.403 1.000 5708 +5710 3 814.458 844.691 909.563 1.000 5709 +5711 3 814.446 845.526 907.858 1.000 5710 +5712 3 814.504 846.522 906.368 1.000 5711 +5713 3 814.576 847.546 905.083 1.000 5712 +5714 3 814.328 848.581 904.005 1.000 5713 +5715 3 814.001 849.618 903.101 1.000 5714 +5716 3 812.869 849.552 902.401 1.000 5715 +5717 3 811.737 849.500 901.852 1.000 5716 +5718 3 810.596 849.571 901.432 1.000 5717 +5719 3 809.454 849.626 901.079 1.000 5718 +5720 3 808.313 849.672 900.746 1.000 5719 +5721 3 807.174 849.593 900.413 1.000 5720 +5722 3 806.151 849.577 899.903 1.000 5721 +5723 3 805.084 849.792 899.296 1.000 5722 +5724 3 804.015 850.023 898.618 1.000 5723 +5725 3 802.929 850.342 897.957 1.000 5724 +5726 3 801.896 850.785 897.324 1.000 5725 +5727 3 800.962 851.358 896.666 1.000 5726 +5728 3 800.159 851.996 895.950 1.000 5727 +5729 3 799.662 852.980 895.213 1.000 5728 +5730 3 799.087 853.912 894.466 1.000 5729 +5731 3 798.322 854.711 893.712 1.000 5730 +5732 3 797.660 855.516 892.895 1.000 5731 +5733 3 796.814 856.231 892.100 1.000 5732 +5734 3 796.098 857.052 891.335 1.000 5733 +5735 3 795.588 858.019 890.602 1.000 5734 +5736 3 795.317 859.065 889.896 1.000 5735 +5737 3 795.016 860.102 889.232 1.000 5736 +5738 3 794.661 861.127 888.048 1.000 5737 +5739 3 824.451 834.013 936.183 1.000 5691 +5740 3 824.429 835.050 934.811 1.000 5739 +5741 3 824.779 835.906 934.214 1.000 5740 +5742 3 825.502 836.579 933.514 1.000 5741 +5743 3 826.225 837.251 932.775 1.000 5742 +5744 3 825.468 836.746 932.316 1.000 5743 +5745 3 833.990 821.860 958.308 1.000 5674 +5746 3 834.430 821.387 956.130 1.000 5745 +5747 3 834.948 820.559 955.240 1.000 5746 +5748 3 835.499 819.581 954.341 1.000 5747 +5749 3 836.021 818.613 953.400 1.000 5748 +5750 3 836.478 817.603 952.445 1.000 5749 +5751 3 836.876 816.592 951.460 1.000 5750 +5752 3 837.211 815.586 950.429 1.000 5751 +5753 3 837.527 814.590 949.312 1.000 5752 +5754 3 837.582 813.719 948.027 1.000 5753 +5755 3 837.866 812.977 946.613 1.000 5754 +5756 3 837.949 812.139 945.129 1.000 5755 +5757 3 837.562 811.421 943.681 1.000 5756 +5758 3 836.884 810.637 942.388 1.000 5757 +5759 3 836.724 809.609 941.273 1.000 5758 +5760 3 836.724 808.525 940.338 1.000 5759 +5761 3 837.207 807.702 938.490 1.000 5760 +5762 3 821.294 822.962 972.824 1.000 15 +5763 3 820.221 822.600 972.502 1.000 5762 +5764 3 819.279 821.998 972.076 1.000 5763 +5765 3 819.042 820.911 971.482 1.000 5764 +5766 3 818.795 820.484 970.712 1.000 5765 +5767 3 818.346 819.703 969.690 1.000 5766 +5768 3 817.721 819.038 968.517 1.000 5767 +5769 3 816.881 818.511 967.274 1.000 5768 +5770 3 816.044 817.879 966.059 1.000 5769 +5771 3 814.983 817.826 964.908 1.000 5770 +5772 3 813.904 817.771 963.819 1.000 5771 +5773 3 812.854 817.421 962.791 1.000 5772 +5774 3 811.846 817.440 961.699 1.000 5773 +5775 3 810.772 817.493 960.579 1.000 5774 +5776 3 809.740 817.533 959.386 1.000 5775 +5777 3 808.818 817.542 958.051 1.000 5776 +5778 3 807.902 817.552 956.617 1.000 5777 +5779 3 807.103 817.552 955.074 1.000 5778 +5780 3 806.337 817.789 953.506 1.000 5779 +5781 3 805.598 818.383 951.989 1.000 5780 +5782 3 804.778 818.882 950.550 1.000 5781 +5783 3 803.988 819.490 949.242 1.000 5782 +5784 3 803.263 820.306 948.114 1.000 5783 +5785 3 802.495 821.089 947.145 1.000 5784 +5786 3 801.640 821.725 946.288 1.000 5785 +5787 3 800.686 822.148 945.498 1.000 5786 +5788 3 799.995 822.990 944.765 1.000 5787 +5789 3 799.974 823.045 944.188 1.000 5788 +5790 3 799.577 824.100 943.653 1.000 5789 +5791 3 798.989 825.030 943.135 1.000 5790 +5792 3 798.272 825.888 942.626 1.000 5791 +5793 3 797.564 826.733 942.130 1.000 5792 +5794 3 796.533 827.164 941.612 1.000 5793 +5795 3 795.464 827.513 941.074 1.000 5794 +5796 3 794.392 827.851 940.542 1.000 5795 +5797 3 793.562 828.611 939.980 1.000 5796 +5798 3 792.525 829.025 939.378 1.000 5797 +5799 3 791.466 829.402 938.725 1.000 5798 +5800 3 790.382 829.673 938.011 1.000 5799 +5801 3 789.921 830.598 937.168 1.000 5800 +5802 3 789.223 831.283 936.194 1.000 5801 +5803 3 788.367 831.807 935.108 1.000 5802 +5804 3 787.506 832.468 934.013 1.000 5803 +5805 3 786.660 832.916 932.842 1.000 5804 +5806 3 785.820 833.280 931.602 1.000 5805 +5807 3 785.197 833.181 930.462 1.000 5806 +5808 3 784.203 833.022 929.345 1.000 5807 +5809 3 783.200 832.973 928.278 1.000 5808 +5810 3 782.167 833.270 927.304 1.000 5809 +5811 3 781.097 833.467 926.447 1.000 5810 +5812 3 779.988 833.552 925.705 1.000 5811 +5813 3 778.860 833.681 925.109 1.000 5812 +5814 3 777.726 833.826 924.647 1.000 5813 +5815 3 776.618 833.922 924.193 1.000 5814 +5816 3 775.522 833.998 923.700 1.000 5815 +5817 3 774.415 834.065 923.188 1.000 5816 +5818 3 773.301 834.140 922.667 1.000 5817 +5819 3 772.173 834.267 922.180 1.000 5818 +5820 3 771.047 834.269 921.724 1.000 5819 +5821 3 769.920 834.166 921.295 1.000 5820 +5822 3 768.790 834.126 920.898 1.000 5821 +5823 3 767.696 834.327 920.536 1.000 5822 +5824 3 766.765 834.960 920.175 1.000 5823 +5825 3 765.706 835.373 919.792 1.000 5824 +5826 3 764.629 835.724 919.372 1.000 5825 +5827 3 763.517 835.945 918.904 1.000 5826 +5828 3 762.398 836.082 918.361 1.000 5827 +5829 3 761.275 836.139 917.731 1.000 5828 +5830 3 760.202 836.010 916.975 1.000 5829 +5831 3 759.152 835.801 916.087 1.000 5830 +5832 3 758.172 835.904 915.037 1.000 5831 +5833 3 757.202 836.043 913.850 1.000 5832 +5834 3 756.155 836.007 912.629 1.000 5833 +5835 3 755.063 835.867 911.417 1.000 5834 +5836 3 755.071 836.790 910.101 1.000 5835 +5837 3 754.946 837.696 908.701 1.000 5836 +5838 3 754.473 838.505 907.231 1.000 5837 +5839 3 753.999 839.314 905.705 1.000 5838 +5840 3 753.452 840.045 904.128 1.000 5839 +5841 3 752.834 840.723 902.530 1.000 5840 +5842 3 752.157 841.286 900.928 1.000 5841 +5843 3 751.472 841.699 899.310 1.000 5842 +5844 3 750.781 842.372 897.775 1.000 5843 +5845 3 750.013 843.047 896.356 1.000 5844 +5846 3 748.948 843.367 895.082 1.000 5845 +5847 3 747.884 843.516 893.858 1.000 5846 +5848 3 746.820 843.658 892.651 1.000 5847 +5849 3 746.022 843.902 891.318 1.000 5848 +5850 3 745.324 844.186 889.832 1.000 5849 +5851 3 745.242 844.914 888.238 1.000 5850 +5852 3 745.704 845.729 886.662 1.000 5851 +5853 3 746.097 846.645 885.164 1.000 5852 +5854 3 746.463 847.600 883.770 1.000 5853 +5855 3 746.468 848.666 882.526 1.000 5854 +5856 3 746.394 849.758 881.406 1.000 5855 +5857 3 746.014 850.696 880.309 1.000 5856 +5858 3 745.825 851.741 879.228 1.000 5857 +5859 3 745.465 852.692 878.111 1.000 5858 +5860 3 745.072 853.691 877.002 1.000 5859 +5861 3 744.908 854.686 875.874 1.000 5860 +5862 3 745.063 855.664 874.706 1.000 5861 +5863 3 745.814 856.212 873.488 1.000 5862 +5864 3 746.042 857.038 872.281 1.000 5863 +5865 3 745.923 858.081 871.147 1.000 5864 +5866 3 745.945 859.202 870.148 1.000 5865 +5867 3 746.058 860.291 869.246 1.000 5866 +5868 3 746.588 861.243 868.381 1.000 5867 +5869 3 747.223 862.080 867.527 1.000 5868 +5870 3 748.100 862.650 866.659 1.000 5869 +5871 3 748.564 863.689 865.830 1.000 5870 +5872 3 748.902 864.707 864.914 1.000 5871 +5873 3 749.220 865.722 863.906 1.000 5872 +5874 3 749.461 866.699 862.786 1.000 5873 +5875 3 749.592 867.624 861.535 1.000 5874 +5876 3 749.486 868.433 860.152 1.000 5875 +5877 3 749.630 868.839 858.684 1.000 5876 +5878 3 748.943 869.402 857.276 1.000 5877 +5879 3 747.986 869.907 856.036 1.000 5878 +5880 3 746.978 870.379 854.974 1.000 5879 +5881 3 745.907 870.727 854.078 1.000 5880 +5882 3 744.876 871.141 853.300 1.000 5881 +5883 3 744.003 871.833 852.580 1.000 5882 +5884 3 742.995 872.178 851.771 1.000 5883 +5885 3 742.198 872.694 850.811 1.000 5884 +5886 3 741.510 873.303 849.705 1.000 5885 +5887 3 740.699 873.968 848.579 1.000 5886 +5888 3 739.904 874.662 847.468 1.000 5887 +5889 3 739.248 875.453 846.409 1.000 5888 +5890 3 738.975 876.504 845.449 1.000 5889 +5891 3 738.498 877.450 844.530 1.000 5890 +5892 3 738.017 878.394 843.648 1.000 5891 +5893 3 737.258 879.166 842.817 1.000 5892 +5894 3 736.776 880.167 842.061 1.000 5893 +5895 3 736.037 881.013 841.389 1.000 5894 +5896 3 735.244 881.818 840.790 1.000 5895 +5897 3 734.424 882.594 840.252 1.000 5896 +5898 3 733.858 883.501 839.672 1.000 5897 +5899 3 733.193 884.391 839.110 1.000 5898 +5900 3 732.671 885.347 838.569 1.000 5899 +5901 3 732.455 886.381 838.054 1.000 5900 +5902 3 733.441 886.949 837.640 1.000 5901 +5903 3 734.437 887.492 837.326 1.000 5902 +5904 3 735.546 887.733 837.060 1.000 5903 +5905 3 786.257 834.231 929.928 1.000 5806 +5906 3 787.044 834.929 929.054 1.000 5905 +5907 3 787.977 835.531 928.684 1.000 5906 +5908 3 788.810 836.243 928.236 1.000 5907 +5909 3 789.653 837.014 927.842 1.000 5908 +5910 3 790.507 837.747 927.464 1.000 5909 +5911 3 791.359 838.483 927.116 1.000 5910 +5912 3 792.306 839.094 926.850 1.000 5911 +5913 3 793.343 839.574 926.649 1.000 5912 +5914 3 794.214 840.249 926.509 1.000 5913 +5915 3 795.083 840.826 926.416 1.000 5914 +5916 3 796.208 841.029 926.355 1.000 5915 +5917 3 797.328 841.260 926.248 1.000 5916 +5918 3 818.680 820.543 972.882 1.000 5765 +5919 3 817.921 819.772 973.720 1.000 5918 +5920 3 816.969 819.180 974.056 1.000 5919 +5921 3 815.921 818.818 974.397 1.000 5920 +5922 3 814.782 818.841 974.756 1.000 5921 +5923 3 814.263 818.363 975.128 1.000 5922 +5924 3 814.519 817.259 975.526 1.000 5923 +5925 3 814.259 816.251 975.971 1.000 5924 +5926 3 813.673 815.321 976.478 1.000 5925 +5927 3 812.831 814.562 976.979 1.000 5926 +5928 3 812.330 813.588 977.516 1.000 5927 +5929 3 811.888 812.563 978.057 1.000 5928 +5930 3 811.435 811.517 978.541 1.000 5929 +5931 3 810.847 810.572 979.026 1.000 5930 +5932 3 810.252 809.636 979.527 1.000 5931 +5933 3 809.713 808.668 980.034 1.000 5932 +5934 3 809.485 807.555 980.487 1.000 5933 +5935 3 808.825 806.690 980.918 1.000 5934 +5936 3 808.238 805.762 981.344 1.000 5935 +5937 3 807.786 804.741 981.753 1.000 5936 +5938 3 807.570 804.494 982.058 1.000 5937 +5939 3 806.809 803.642 982.279 1.000 5938 +5940 3 805.988 802.850 982.433 1.000 5939 +5941 3 805.152 802.087 982.612 1.000 5940 +5942 3 804.273 801.370 982.834 1.000 5941 +5943 3 803.388 800.652 983.094 1.000 5942 +5944 3 802.508 800.221 983.455 1.000 5943 +5945 3 801.997 799.412 983.870 1.000 5944 +5946 3 801.319 798.570 984.290 1.000 5945 +5947 3 800.393 797.931 984.707 1.000 5946 +5948 3 799.840 796.987 985.146 1.000 5947 +5949 3 798.823 796.469 985.508 1.000 5948 +5950 3 797.800 795.963 985.799 1.000 5949 +5951 3 796.700 795.654 986.031 1.000 5950 +5952 3 795.669 795.190 986.227 1.000 5951 +5953 3 794.667 794.646 986.404 1.000 5952 +5954 3 793.732 794.020 986.566 1.000 5953 +5955 3 792.969 793.167 986.709 1.000 5954 +5956 3 792.250 792.325 986.916 1.000 5955 +5957 3 791.466 791.520 987.115 1.000 5956 +5958 3 790.636 790.735 987.235 1.000 5957 +5959 3 789.844 789.917 987.260 1.000 5958 +5960 3 789.228 788.954 987.213 1.000 5959 +5961 3 788.372 788.269 987.101 1.000 5960 +5962 3 787.321 787.850 986.927 1.000 5961 +5963 3 786.197 787.705 986.712 1.000 5962 +5964 3 785.070 787.583 986.482 1.000 5963 +5965 3 783.941 787.492 986.261 1.000 5964 +5966 3 782.804 787.409 986.090 1.000 5965 +5967 3 781.662 787.334 985.989 1.000 5966 +5968 3 780.531 787.440 985.975 1.000 5967 +5969 3 779.404 787.625 986.048 1.000 5968 +5970 3 778.262 787.601 986.188 1.000 5969 +5971 3 777.128 787.515 986.387 1.000 5970 +5972 3 776.012 787.305 986.639 1.000 5971 +5973 3 774.887 787.131 986.916 1.000 5972 +5974 3 773.749 787.055 987.213 1.000 5973 +5975 3 772.614 786.994 987.543 1.000 5974 +5976 3 771.483 786.947 987.918 1.000 5975 +5977 3 770.411 786.638 988.347 1.000 5976 +5978 3 769.364 786.225 988.826 1.000 5977 +5979 3 768.294 785.885 989.355 1.000 5978 +5980 3 767.222 785.549 989.929 1.000 5979 +5981 3 766.118 785.292 990.522 1.000 5980 +5982 3 765.354 784.498 991.175 1.000 5981 +5983 3 764.542 783.752 991.903 1.000 5982 +5984 3 763.833 782.997 992.715 1.000 5983 +5985 3 763.660 781.937 993.628 1.000 5984 +5986 3 763.776 780.897 994.658 1.000 5985 +5987 3 764.090 780.003 995.823 1.000 5986 +5988 3 764.414 779.186 997.100 1.000 5987 +5989 3 764.014 778.557 998.424 1.000 5988 +5990 3 763.192 778.628 999.804 1.000 5989 +5991 3 762.363 778.665 1001.182 1.000 5990 +5992 3 761.434 778.664 1002.456 1.000 5991 +5993 3 760.345 778.384 1003.405 1.000 5992 +5994 3 759.246 778.065 1004.066 1.000 5993 +5995 3 758.133 778.050 1004.539 1.000 5994 +5996 3 757.013 778.217 1004.900 1.000 5995 +5997 3 755.907 778.446 1005.206 1.000 5996 +5998 3 754.810 778.651 1005.497 1.000 5997 +5999 3 753.692 778.421 1005.763 1.000 5998 +6000 3 752.574 778.193 1006.004 1.000 5999 +6001 3 751.451 777.978 1006.177 1.000 6000 +6002 3 750.350 777.693 1006.317 1.000 6001 +6003 3 749.283 777.283 1006.443 1.000 6002 +6004 3 748.556 776.408 1006.650 1.000 6003 +6005 3 747.494 776.103 1006.936 1.000 6004 +6006 3 746.369 775.923 1007.334 1.000 6005 +6007 3 745.249 775.785 1007.916 1.000 6006 +6008 3 744.148 775.603 1008.686 1.000 6007 +6009 3 743.121 775.257 1009.683 1.000 6008 +6010 3 742.518 774.751 1011.002 1.000 6009 +6011 3 741.947 774.577 1012.659 1.000 6010 +6012 3 741.377 774.404 1014.594 1.000 6011 +6013 3 740.806 774.232 1016.669 1.000 6012 +6014 3 740.848 773.677 1018.772 1.000 6013 +6015 3 740.901 773.115 1020.804 1.000 6014 +6016 3 740.993 772.696 1022.703 1.000 6015 +6017 3 741.510 772.905 1026.124 1.000 6016 +6018 3 808.141 804.555 983.366 1.000 5937 +6019 3 808.818 804.197 986.129 1.000 6018 +6020 3 809.476 804.216 987.356 1.000 6019 +6021 3 810.295 804.225 988.739 1.000 6020 +6022 3 811.391 804.083 990.086 1.000 6021 +6023 3 812.409 803.765 991.402 1.000 6022 +6024 3 813.367 803.376 992.726 1.000 6023 +6025 3 814.340 803.071 994.059 1.000 6024 +6026 3 815.202 802.705 995.478 1.000 6025 +6027 3 816.039 802.326 997.016 1.000 6026 +6028 3 816.180 801.959 998.584 1.000 6027 +6029 3 816.519 801.338 1000.322 1.000 6028 +6030 3 817.382 801.324 1002.156 1.000 6029 +6031 3 817.969 801.394 1004.122 1.000 6030 +6032 3 817.835 801.963 1006.183 1.000 6031 +6033 3 817.669 802.561 1008.294 1.000 6032 +6034 3 817.164 802.785 1010.419 1.000 6033 +6035 3 816.572 802.914 1012.508 1.000 6034 +6036 3 815.875 802.937 1014.499 1.000 6035 +6037 3 814.976 802.762 1016.313 1.000 6036 +6038 3 813.999 802.780 1017.929 1.000 6037 +6039 3 812.957 802.958 1019.351 1.000 6038 +6040 3 811.971 803.344 1020.597 1.000 6039 +6041 3 811.042 803.944 1021.714 1.000 6040 +6042 3 810.070 804.373 1022.851 1.000 6041 +6043 3 809.127 804.862 1024.044 1.000 6042 +6044 3 808.644 805.169 1025.374 1.000 6043 +6045 3 809.250 804.970 1026.948 1.000 6044 +6046 3 809.876 804.765 1028.689 1.000 6045 +6047 3 809.405 805.108 1030.512 1.000 6046 +6048 3 808.738 805.540 1032.324 1.000 6047 +6049 3 807.845 805.874 1034.009 1.000 6048 +6050 3 806.827 805.788 1035.544 1.000 6049 +6051 3 805.807 805.709 1036.949 1.000 6050 +6052 3 804.749 805.753 1038.232 1.000 6051 +6053 3 803.706 805.784 1039.447 1.000 6052 +6054 3 802.727 805.728 1040.676 1.000 6053 +6055 3 801.707 805.463 1041.883 1.000 6054 +6056 3 800.648 805.409 1043.084 1.000 6055 +6057 3 799.582 805.305 1044.271 1.000 6056 +6058 3 798.579 805.114 1045.472 1.000 6057 +6059 3 797.834 805.004 1046.844 1.000 6058 +6060 3 797.039 804.904 1048.292 1.000 6059 +6061 3 796.136 804.821 1049.714 1.000 6060 +6062 3 795.331 804.288 1051.022 1.000 6061 +6063 3 794.566 803.613 1052.170 1.000 6062 +6064 3 794.031 802.641 1053.970 1.000 6063 +6065 3 816.404 802.262 996.814 1.000 6027 +6066 3 817.520 802.065 997.629 1.000 6065 +6067 3 818.641 801.925 997.970 1.000 6066 +6068 3 819.772 801.864 998.385 1.000 6067 +6069 3 820.893 801.794 998.880 1.000 6068 +6070 3 821.988 801.703 999.485 1.000 6069 +6071 3 823.099 801.730 1000.149 1.000 6070 +6072 3 824.218 801.810 1000.852 1.000 6071 +6073 3 825.323 801.812 1001.613 1.000 6072 +6074 3 826.412 801.832 1002.436 1.000 6073 +6075 3 827.237 802.446 1003.374 1.000 6074 +6076 3 828.195 802.610 1004.394 1.000 6075 +6077 3 829.232 802.555 1005.469 1.000 6076 +6078 3 830.272 802.518 1006.578 1.000 6077 +6079 3 831.291 802.310 1007.689 1.000 6078 +6080 3 832.308 802.081 1008.787 1.000 6079 +6081 3 833.330 801.971 1009.859 1.000 6080 +6082 3 834.355 801.942 1010.904 1.000 6081 +6083 3 835.269 801.599 1011.900 1.000 6082 +6084 3 836.270 801.182 1012.777 1.000 6083 +6085 3 837.259 800.681 1013.522 1.000 6084 +6086 3 838.225 800.119 1014.146 1.000 6085 +6087 3 839.111 799.443 1014.661 1.000 6086 +6088 3 840.065 798.830 1015.022 1.000 6087 +6089 3 841.092 798.338 1015.260 1.000 6088 +6090 3 842.180 797.985 1015.420 1.000 6089 +6091 3 843.253 797.593 1015.538 1.000 6090 +6092 3 844.271 797.111 1015.661 1.000 6091 +6093 3 844.389 797.539 1015.708 1.000 6092 +6094 3 823.570 839.726 977.026 1.000 1 +6095 3 822.988 840.706 977.340 1.000 6094 +6096 3 822.406 841.687 977.472 1.000 6095 +6097 3 821.823 842.667 977.628 1.000 6096 +6098 3 821.241 843.648 977.796 1.000 6097 +6099 3 820.659 844.629 977.964 1.000 6098 +6100 3 820.076 845.609 978.121 1.000 6099 +6101 3 819.494 846.590 978.244 1.000 6100 +6102 3 818.912 847.570 978.323 1.000 6101 +6103 3 818.599 848.634 978.379 1.000 6102 +6104 3 818.434 849.744 978.407 1.000 6103 +6105 3 817.934 850.215 978.186 1.000 6104 +6106 3 817.139 850.873 977.724 1.000 6105 +6107 3 816.163 851.401 977.150 1.000 6106 +6108 3 815.115 851.764 976.503 1.000 6107 +6109 3 814.067 852.130 975.814 1.000 6108 +6110 3 813.077 852.664 975.136 1.000 6109 +6111 3 812.505 853.598 974.448 1.000 6110 +6112 3 811.448 853.750 973.776 1.000 6111 +6113 3 810.335 853.815 973.109 1.000 6112 +6114 3 809.505 854.403 972.443 1.000 6113 +6115 3 808.707 855.112 971.757 1.000 6114 +6116 3 807.786 855.669 971.054 1.000 6115 +6117 3 806.887 856.308 970.379 1.000 6116 +6118 3 806.208 857.157 969.732 1.000 6117 +6119 3 805.504 858.006 969.147 1.000 6118 +6120 3 804.687 858.793 968.688 1.000 6119 +6121 3 804.153 859.803 968.344 1.000 6120 +6122 3 803.294 860.239 968.072 1.000 6121 +6123 3 802.395 860.875 967.851 1.000 6122 +6124 3 801.806 861.832 967.697 1.000 6123 +6125 3 800.694 862.083 967.562 1.000 6124 +6126 3 799.595 862.383 967.456 1.000 6125 +6127 3 798.562 862.832 967.422 1.000 6126 +6128 3 797.916 863.769 967.392 1.000 6127 +6129 3 797.468 864.806 967.375 1.000 6128 +6130 3 797.076 865.872 967.378 1.000 6129 +6131 3 796.245 866.443 967.842 1.000 6130 +6132 3 795.270 866.551 968.363 1.000 6131 +6133 3 794.428 866.896 968.892 1.000 6132 +6134 3 793.927 867.924 969.296 1.000 6133 +6135 3 793.101 868.684 969.581 1.000 6134 +6136 3 792.404 869.543 969.766 1.000 6135 +6137 3 791.899 870.566 969.861 1.000 6136 +6138 3 791.301 871.540 969.878 1.000 6137 +6139 3 790.590 872.205 969.928 1.000 6138 +6140 3 789.646 872.241 970.158 1.000 6139 +6141 3 789.442 872.737 970.239 1.000 6140 +6142 3 789.843 873.610 969.987 1.000 6141 +6143 3 790.058 874.532 969.522 1.000 6142 +6144 3 789.692 875.608 969.041 1.000 6143 +6145 3 789.247 876.635 968.559 1.000 6144 +6146 3 788.416 877.416 968.122 1.000 6145 +6147 3 787.560 878.141 967.711 1.000 6146 +6148 3 787.101 879.179 967.372 1.000 6147 +6149 3 786.499 880.107 967.061 1.000 6148 +6150 3 785.652 880.845 966.739 1.000 6149 +6151 3 785.256 881.850 966.521 1.000 6150 +6152 3 784.702 882.843 966.358 1.000 6151 +6153 3 784.059 883.779 966.207 1.000 6152 +6154 3 783.460 884.724 966.050 1.000 6153 +6155 3 783.162 885.818 965.989 1.000 6154 +6156 3 782.736 886.843 965.980 1.000 6155 +6157 3 782.050 887.741 965.933 1.000 6156 +6158 3 781.445 888.691 965.804 1.000 6157 +6159 3 780.515 889.344 965.625 1.000 6158 +6160 3 779.808 890.213 965.392 1.000 6159 +6161 3 779.021 891.004 965.132 1.000 6160 +6162 3 778.122 891.691 964.874 1.000 6161 +6163 3 777.441 892.605 964.645 1.000 6162 +6164 3 776.531 893.280 964.440 1.000 6163 +6165 3 775.806 894.101 964.272 1.000 6164 +6166 3 775.145 894.985 964.169 1.000 6165 +6167 3 774.232 895.673 964.130 1.000 6166 +6168 3 773.305 896.342 964.116 1.000 6167 +6169 3 772.186 896.579 964.127 1.000 6168 +6170 3 771.087 896.870 964.163 1.000 6169 +6171 3 770.055 897.364 964.230 1.000 6170 +6172 3 769.211 898.077 964.404 1.000 6171 +6173 3 768.304 898.703 964.670 1.000 6172 +6174 3 767.293 899.202 964.986 1.000 6173 +6175 3 766.175 899.384 965.306 1.000 6174 +6176 3 765.047 899.539 965.602 1.000 6175 +6177 3 763.919 899.695 965.871 1.000 6176 +6178 3 762.787 899.796 966.092 1.000 6177 +6179 3 761.646 899.751 966.258 1.000 6178 +6180 3 760.832 900.156 966.392 1.000 6179 +6181 3 759.752 900.520 966.473 1.000 6180 +6182 3 758.649 900.702 966.510 1.000 6181 +6183 3 757.516 900.553 966.504 1.000 6182 +6184 3 756.381 900.496 966.470 1.000 6183 +6185 3 755.242 900.597 966.420 1.000 6184 +6186 3 754.110 900.747 966.370 1.000 6185 +6187 3 752.984 900.950 966.350 1.000 6186 +6188 3 751.869 900.724 966.353 1.000 6187 +6189 3 750.753 900.469 966.384 1.000 6188 +6190 3 749.622 900.479 966.454 1.000 6189 +6191 3 748.491 900.632 966.563 1.000 6190 +6192 3 747.380 900.898 966.714 1.000 6191 +6193 3 746.267 901.144 966.902 1.000 6192 +6194 3 745.139 901.245 967.154 1.000 6193 +6195 3 744.019 901.390 967.456 1.000 6194 +6196 3 742.909 901.582 967.800 1.000 6195 +6197 3 741.780 901.581 968.145 1.000 6196 +6198 3 740.647 901.539 968.481 1.000 6197 +6199 3 739.515 901.593 968.792 1.000 6198 +6200 3 738.457 901.847 969.060 1.000 6199 +6201 3 737.508 902.340 969.251 1.000 6200 +6202 3 736.365 902.372 969.402 1.000 6201 +6203 3 735.229 902.503 969.528 1.000 6202 +6204 3 734.096 902.655 969.643 1.000 6203 +6205 3 732.973 902.875 969.752 1.000 6204 +6206 3 731.875 903.162 969.884 1.000 6205 +6207 3 730.823 903.580 970.077 1.000 6206 +6208 3 729.721 903.757 970.304 1.000 6207 +6209 3 728.583 903.757 970.542 1.000 6208 +6210 3 727.455 903.902 970.766 1.000 6209 +6211 3 726.469 904.433 970.981 1.000 6210 +6212 3 725.436 904.912 971.180 1.000 6211 +6213 3 724.384 905.358 971.368 1.000 6212 +6214 3 723.301 905.713 971.533 1.000 6213 +6215 3 722.357 906.276 971.695 1.000 6214 +6216 3 721.228 906.384 971.894 1.000 6215 +6217 3 720.091 906.464 972.140 1.000 6216 +6218 3 718.964 906.454 972.474 1.000 6217 +6219 3 717.836 906.444 972.882 1.000 6218 +6220 3 716.781 906.856 973.333 1.000 6219 +6221 3 715.728 907.214 973.837 1.000 6220 +6222 3 714.666 907.352 974.445 1.000 6221 +6223 3 713.597 907.470 975.117 1.000 6222 +6224 3 712.512 907.537 975.806 1.000 6223 +6225 3 711.410 907.642 976.464 1.000 6224 +6226 3 710.329 907.904 977.038 1.000 6225 +6227 3 709.410 908.576 977.514 1.000 6226 +6228 3 708.500 909.223 977.964 1.000 6227 +6229 3 707.535 909.780 978.379 1.000 6228 +6230 3 706.507 910.230 978.732 1.000 6229 +6231 3 705.682 911.007 979.062 1.000 6230 +6232 3 704.635 911.411 979.373 1.000 6231 +6233 3 703.610 911.887 979.642 1.000 6232 +6234 3 702.631 912.475 979.846 1.000 6233 +6235 3 701.658 913.074 979.972 1.000 6234 +6236 3 700.575 913.430 980.062 1.000 6235 +6237 3 699.472 913.729 980.126 1.000 6236 +6238 3 698.348 913.927 980.148 1.000 6237 +6239 3 697.220 914.090 980.151 1.000 6238 +6240 3 696.078 914.102 980.162 1.000 6239 +6241 3 694.948 913.995 980.221 1.000 6240 +6242 3 693.830 913.759 980.350 1.000 6241 +6243 3 692.711 913.539 980.568 1.000 6242 +6244 3 691.593 913.327 980.879 1.000 6243 +6245 3 690.517 913.001 981.299 1.000 6244 +6246 3 689.470 912.607 981.831 1.000 6245 +6247 3 688.369 912.453 982.464 1.000 6246 +6248 3 687.263 912.323 983.186 1.000 6247 +6249 3 686.166 912.254 983.976 1.000 6248 +6250 3 685.254 911.872 984.936 1.000 6249 +6251 3 684.236 912.037 985.998 1.000 6250 +6252 3 683.380 912.493 987.162 1.000 6251 +6253 3 682.529 912.978 988.397 1.000 6252 +6254 3 681.658 913.441 989.663 1.000 6253 +6255 3 680.762 913.813 990.914 1.000 6254 +6256 3 679.801 913.959 992.107 1.000 6255 +6257 3 678.807 914.051 993.194 1.000 6256 +6258 3 677.709 913.984 994.081 1.000 6257 +6259 3 677.587 915.096 995.358 1.000 6258 +6260 3 784.803 880.791 965.706 1.000 6150 +6261 3 783.702 880.720 964.765 1.000 6260 +6262 3 782.585 880.698 964.365 1.000 6261 +6263 3 781.461 880.683 963.908 1.000 6262 +6264 3 780.336 880.506 963.441 1.000 6263 +6265 3 779.210 880.382 962.956 1.000 6264 +6266 3 778.081 880.496 962.441 1.000 6265 +6267 3 776.966 880.480 961.892 1.000 6266 +6268 3 775.918 880.115 961.251 1.000 6267 +6269 3 774.890 879.761 960.504 1.000 6268 +6270 3 773.892 879.571 959.594 1.000 6269 +6271 3 772.865 879.452 958.580 1.000 6270 +6272 3 771.931 879.167 957.510 1.000 6271 +6273 3 771.177 878.514 956.396 1.000 6272 +6274 3 770.169 878.249 955.279 1.000 6273 +6275 3 769.161 877.983 954.178 1.000 6274 +6276 3 768.161 877.765 953.095 1.000 6275 +6277 3 767.155 877.541 952.039 1.000 6276 +6278 3 766.099 877.242 951.084 1.000 6277 +6279 3 765.043 876.945 950.214 1.000 6278 +6280 3 763.977 876.960 949.402 1.000 6279 +6281 3 762.898 877.119 948.660 1.000 6280 +6282 3 761.801 877.344 948.010 1.000 6281 +6283 3 760.667 877.461 947.481 1.000 6282 +6284 3 759.544 877.576 947.002 1.000 6283 +6285 3 758.425 877.743 946.565 1.000 6284 +6286 3 757.311 877.956 946.165 1.000 6285 +6287 3 756.191 878.086 945.770 1.000 6286 +6288 3 755.069 878.190 945.370 1.000 6287 +6289 3 753.952 878.383 944.983 1.000 6288 +6290 3 752.837 878.614 944.619 1.000 6289 +6291 3 751.710 878.789 944.269 1.000 6290 +6292 3 750.584 878.907 943.919 1.000 6291 +6293 3 749.462 878.741 943.547 1.000 6292 +6294 3 748.344 878.733 943.146 1.000 6293 +6295 3 747.234 878.972 942.710 1.000 6294 +6296 3 746.117 879.130 942.194 1.000 6295 +6297 3 744.996 879.232 941.620 1.000 6296 +6298 3 743.889 879.225 940.988 1.000 6297 +6299 3 742.811 879.177 940.296 1.000 6298 +6300 3 741.907 879.555 939.518 1.000 6299 +6301 3 741.489 879.291 937.546 1.000 6300 +6302 3 797.037 866.065 966.056 1.000 6130 +6303 3 796.855 866.959 963.875 1.000 6302 +6304 3 796.512 867.886 962.965 1.000 6303 +6305 3 796.137 868.719 961.876 1.000 6304 +6306 3 795.830 869.709 960.753 1.000 6305 +6307 3 795.357 870.587 959.638 1.000 6306 +6308 3 794.548 871.265 958.594 1.000 6307 +6309 3 793.716 872.025 957.723 1.000 6308 +6310 3 793.414 872.139 957.012 1.000 6309 +6311 3 792.396 872.520 956.318 1.000 6310 +6312 3 791.554 873.156 955.646 1.000 6311 +6313 3 790.788 873.956 954.999 1.000 6312 +6314 3 789.865 874.604 954.363 1.000 6313 +6315 3 789.103 875.440 953.739 1.000 6314 +6316 3 788.352 876.202 953.028 1.000 6315 +6317 3 787.540 876.845 952.235 1.000 6316 +6318 3 786.482 877.105 951.404 1.000 6317 +6319 3 785.936 877.956 950.561 1.000 6318 +6320 3 785.640 879.012 949.696 1.000 6319 +6321 3 785.434 880.078 948.800 1.000 6320 +6322 3 784.910 880.926 947.845 1.000 6321 +6323 3 784.385 881.783 946.851 1.000 6322 +6324 3 784.213 882.881 945.874 1.000 6323 +6325 3 784.101 883.977 944.871 1.000 6324 +6326 3 784.069 885.072 943.821 1.000 6325 +6327 3 784.154 886.163 942.701 1.000 6326 +6328 3 784.609 887.099 941.489 1.000 6327 +6329 3 784.668 887.707 939.980 1.000 6328 +6330 3 784.765 888.269 938.227 1.000 6329 +6331 3 784.424 888.178 936.289 1.000 6330 +6332 3 784.056 888.048 934.245 1.000 6331 +6333 3 783.975 887.783 932.355 1.000 6332 +6334 3 784.521 887.465 930.591 1.000 6333 +6335 3 785.613 887.289 929.065 1.000 6334 +6336 3 786.669 887.203 927.657 1.000 6335 +6337 3 787.288 887.506 926.218 1.000 6336 +6338 3 787.580 888.101 924.658 1.000 6337 +6339 3 787.962 888.712 923.014 1.000 6338 +6340 3 788.662 889.244 921.435 1.000 6339 +6341 3 789.415 889.959 919.974 1.000 6340 +6342 3 790.121 890.709 918.607 1.000 6341 +6343 3 790.992 891.174 917.302 1.000 6342 +6344 3 791.526 892.067 916.070 1.000 6343 +6345 3 792.308 892.751 914.892 1.000 6344 +6346 3 793.173 893.366 913.727 1.000 6345 +6347 3 793.728 894.203 912.531 1.000 6346 +6348 3 794.062 895.171 911.330 1.000 6347 +6349 3 794.343 896.168 910.123 1.000 6348 +6350 3 794.470 897.150 908.894 1.000 6349 +6351 3 794.422 898.114 907.628 1.000 6350 +6352 3 795.013 898.853 906.385 1.000 6351 +6353 3 795.828 899.493 905.184 1.000 6352 +6354 3 796.859 899.493 904.014 1.000 6353 +6355 3 797.751 899.853 902.882 1.000 6354 +6356 3 798.647 900.401 901.821 1.000 6355 +6357 3 799.647 900.357 900.805 1.000 6356 +6358 3 800.697 900.305 899.825 1.000 6357 +6359 3 801.786 900.383 898.887 1.000 6358 +6360 3 802.820 900.362 897.938 1.000 6359 +6361 3 803.843 900.321 896.980 1.000 6360 +6362 3 804.908 900.322 896.056 1.000 6361 +6363 3 805.994 900.346 895.202 1.000 6362 +6364 3 807.121 900.425 894.471 1.000 6363 +6365 3 808.238 900.551 893.836 1.000 6364 +6366 3 809.334 900.792 893.267 1.000 6365 +6367 3 810.421 901.064 892.752 1.000 6366 +6368 3 811.430 901.582 892.284 1.000 6367 +6369 3 812.410 902.133 891.828 1.000 6368 +6370 3 813.518 902.093 891.372 1.000 6369 +6371 3 814.645 902.068 890.929 1.000 6370 +6372 3 815.777 902.087 890.509 1.000 6371 +6373 3 816.902 902.131 890.098 1.000 6372 +6374 3 818.021 902.195 889.683 1.000 6373 +6375 3 819.154 902.116 889.322 1.000 6374 +6376 3 820.290 902.021 889.017 1.000 6375 +6377 3 821.386 902.300 888.748 1.000 6376 +6378 3 822.471 902.637 888.521 1.000 6377 +6379 3 823.495 903.147 888.216 1.000 6378 +6380 3 783.725 888.118 932.506 1.000 6332 +6381 3 782.734 888.325 931.053 1.000 6380 +6382 3 781.744 888.533 930.401 1.000 6381 +6383 3 780.783 889.020 929.720 1.000 6382 +6384 3 779.884 889.677 929.079 1.000 6383 +6385 3 779.102 890.470 928.488 1.000 6384 +6386 3 778.133 891.068 928.010 1.000 6385 +6387 3 777.206 891.698 927.612 1.000 6386 +6388 3 776.212 892.209 927.282 1.000 6387 +6389 3 775.182 892.680 927.018 1.000 6388 +6390 3 774.243 893.331 926.873 1.000 6389 +6391 3 773.558 894.229 926.820 1.000 6390 +6392 3 772.925 895.178 926.820 1.000 6391 +6393 3 771.877 895.579 926.890 1.000 6392 +6394 3 771.495 896.641 926.878 1.000 6393 +6395 3 770.894 897.610 926.800 1.000 6394 +6396 3 770.183 898.477 926.643 1.000 6395 +6397 3 769.292 899.160 926.414 1.000 6396 +6398 3 768.207 899.467 926.136 1.000 6397 +6399 3 767.286 900.064 925.882 1.000 6398 +6400 3 766.276 900.430 925.688 1.000 6399 +6401 3 765.136 900.519 925.532 1.000 6400 +6402 3 763.995 900.607 925.397 1.000 6401 +6403 3 762.858 900.712 925.268 1.000 6402 +6404 3 761.763 901.041 925.123 1.000 6403 +6405 3 760.672 901.382 924.938 1.000 6404 +6406 3 759.593 901.753 924.686 1.000 6405 +6407 3 758.625 902.301 924.370 1.000 6406 +6408 3 757.497 902.261 923.983 1.000 6407 +6409 3 756.423 902.406 923.516 1.000 6408 +6410 3 755.388 902.689 922.978 1.000 6409 +6411 3 754.362 902.581 921.648 1.000 6410 +6412 3 794.365 872.517 957.242 1.000 6309 +6413 3 795.037 873.362 957.300 1.000 6412 +6414 3 795.341 874.461 957.314 1.000 6413 +6415 3 795.760 875.522 957.379 1.000 6414 +6416 3 796.177 876.582 957.480 1.000 6415 +6417 3 796.845 877.380 957.832 1.000 6416 +6418 3 804.532 859.877 967.924 1.000 6121 +6419 3 805.418 860.358 967.070 1.000 6418 +6420 3 805.957 861.312 966.689 1.000 6419 +6421 3 806.480 862.295 966.269 1.000 6420 +6422 3 807.007 863.294 965.880 1.000 6421 +6423 3 807.767 864.147 965.600 1.000 6422 +6424 3 808.435 865.071 965.381 1.000 6423 +6425 3 809.259 865.818 965.182 1.000 6424 +6426 3 810.111 866.538 964.986 1.000 6425 +6427 3 810.795 867.452 964.816 1.000 6426 +6428 3 811.619 868.217 964.611 1.000 6427 +6429 3 812.170 869.214 964.468 1.000 6428 +6430 3 812.702 870.225 964.396 1.000 6429 +6431 3 813.681 870.760 964.376 1.000 6430 +6432 3 814.299 871.722 964.387 1.000 6431 +6433 3 814.899 872.697 964.412 1.000 6432 +6434 3 815.571 873.611 964.457 1.000 6433 +6435 3 816.262 874.505 964.499 1.000 6434 +6436 3 816.778 875.526 964.499 1.000 6435 +6437 3 817.476 876.342 964.499 1.000 6436 +6438 3 818.302 877.059 964.496 1.000 6437 +6439 3 818.969 877.989 964.438 1.000 6438 +6440 3 819.779 878.774 964.337 1.000 6439 +6441 3 819.843 879.898 964.121 1.000 6440 +6442 3 820.203 880.945 963.816 1.000 6441 +6443 3 820.693 881.958 963.441 1.000 6442 +6444 3 821.180 882.966 963.015 1.000 6443 +6445 3 821.773 883.852 962.590 1.000 6444 +6446 3 822.264 884.877 962.192 1.000 6445 +6447 3 822.765 885.894 961.822 1.000 6446 +6448 3 823.604 886.611 961.475 1.000 6447 +6449 3 823.840 887.562 961.153 1.000 6448 +6450 3 823.683 888.685 960.862 1.000 6449 +6451 3 823.379 889.787 960.635 1.000 6450 +6452 3 823.086 890.887 960.434 1.000 6451 +6453 3 822.596 891.912 960.238 1.000 6452 +6454 3 822.131 892.949 960.050 1.000 6453 +6455 3 821.762 894.025 959.888 1.000 6454 +6456 3 821.409 895.106 959.753 1.000 6455 +6457 3 821.068 896.192 959.675 1.000 6456 +6458 3 820.813 897.295 959.680 1.000 6457 +6459 3 820.863 898.381 959.781 1.000 6458 +6460 3 821.620 899.185 960.084 1.000 6459 +6461 3 822.097 900.176 960.523 1.000 6460 +6462 3 822.567 901.168 961.075 1.000 6461 +6463 3 823.132 902.091 961.722 1.000 6462 +6464 3 823.951 902.576 962.433 1.000 6463 +6465 3 824.998 902.978 963.088 1.000 6464 +6466 3 826.000 903.484 963.676 1.000 6465 +6467 3 826.829 904.182 964.228 1.000 6466 +6468 3 827.745 904.846 964.695 1.000 6467 +6469 3 828.563 905.628 965.082 1.000 6468 +6470 3 829.352 906.445 965.401 1.000 6469 +6471 3 830.288 907.081 965.684 1.000 6470 +6472 3 831.051 907.878 965.919 1.000 6471 +6473 3 831.718 908.774 966.095 1.000 6472 +6474 3 832.583 909.506 966.196 1.000 6473 +6475 3 833.358 910.340 966.188 1.000 6474 +6476 3 834.095 911.162 966.039 1.000 6475 +6477 3 834.825 911.985 965.796 1.000 6476 +6478 3 835.401 912.934 965.703 1.000 6477 +6479 3 835.547 912.601 962.270 1.000 6478 +6480 3 836.509 912.815 961.075 1.000 6479 +6481 3 837.401 912.804 959.731 1.000 6480 +6482 3 838.250 912.672 958.306 1.000 6481 +6483 3 838.613 912.615 956.900 1.000 6482 +6484 3 837.686 912.759 955.612 1.000 6483 +6485 3 837.459 912.052 953.610 1.000 6484 +6486 3 835.590 913.127 965.661 1.000 6478 +6487 3 836.391 913.920 965.684 1.000 6486 +6488 3 837.260 914.631 965.661 1.000 6487 +6489 3 838.219 915.247 965.642 1.000 6488 +6490 3 839.115 915.943 965.639 1.000 6489 +6491 3 840.042 916.561 965.709 1.000 6490 +6492 3 841.079 917.016 965.871 1.000 6491 +6493 3 842.045 917.626 966.070 1.000 6492 +6494 3 842.746 918.465 966.350 1.000 6493 +6495 3 843.199 919.460 966.697 1.000 6494 +6496 3 843.318 920.556 967.596 1.000 6495 +6497 3 818.560 850.472 980.722 1.000 6104 +6498 3 818.731 851.471 982.310 1.000 6497 +6499 3 818.951 852.389 983.052 1.000 6498 +6500 3 818.724 853.501 983.783 1.000 6499 +6501 3 818.553 854.622 984.497 1.000 6500 +6502 3 818.412 855.750 985.191 1.000 6501 +6503 3 818.236 856.679 985.956 1.000 6502 +6504 3 818.039 857.723 986.784 1.000 6503 +6505 3 817.909 858.784 987.669 1.000 6504 +6506 3 817.803 859.838 988.627 1.000 6505 +6507 3 817.803 860.869 989.646 1.000 6506 +6508 3 817.812 861.898 990.693 1.000 6507 +6509 3 818.358 862.797 991.724 1.000 6508 +6510 3 818.904 863.696 992.718 1.000 6509 +6511 3 819.614 864.539 993.619 1.000 6510 +6512 3 820.264 865.419 994.445 1.000 6511 +6513 3 821.095 866.043 995.215 1.000 6512 +6514 3 822.108 866.418 995.946 1.000 6513 +6515 3 822.085 867.403 996.503 1.000 6514 +6516 3 822.204 868.511 996.962 1.000 6515 +6517 3 822.700 869.530 997.430 1.000 6516 +6518 3 823.254 870.498 997.945 1.000 6517 +6519 3 823.608 871.469 998.567 1.000 6518 +6520 3 823.659 872.556 999.292 1.000 6519 +6521 3 823.799 873.646 1000.112 1.000 6520 +6522 3 823.934 874.729 1001.000 1.000 6521 +6523 3 824.059 875.797 1001.952 1.000 6522 +6524 3 824.251 876.670 1003.027 1.000 6523 +6525 3 824.181 877.531 1004.170 1.000 6524 +6526 3 823.934 878.573 1005.264 1.000 6525 +6527 3 824.123 879.625 1006.351 1.000 6526 +6528 3 824.313 880.677 1007.423 1.000 6527 +6529 3 824.362 880.928 1008.398 1.000 6528 +6530 3 824.559 881.927 1009.450 1.000 6529 +6531 3 824.277 882.890 1010.576 1.000 6530 +6532 3 823.842 883.843 1011.780 1.000 6531 +6533 3 823.173 884.640 1013.048 1.000 6532 +6534 3 822.843 885.363 1014.429 1.000 6533 +6535 3 823.306 885.948 1015.997 1.000 6534 +6536 3 824.133 885.945 1017.680 1.000 6535 +6537 3 825.092 885.846 1019.393 1.000 6536 +6538 3 826.049 885.748 1021.126 1.000 6537 +6539 3 826.648 885.287 1022.946 1.000 6538 +6540 3 826.948 884.722 1024.850 1.000 6539 +6541 3 827.523 884.551 1026.777 1.000 6540 +6542 3 828.108 884.829 1028.684 1.000 6541 +6543 3 828.402 885.551 1030.540 1.000 6542 +6544 3 828.695 886.272 1032.312 1.000 6543 +6545 3 828.558 887.145 1033.906 1.000 6544 +6546 3 828.229 888.085 1035.303 1.000 6545 +6547 3 827.432 888.831 1036.431 1.000 6546 +6548 3 826.689 889.648 1037.344 1.000 6547 +6549 3 825.990 890.506 1038.094 1.000 6548 +6550 3 825.365 891.407 1038.730 1.000 6549 +6551 3 824.867 892.425 1039.217 1.000 6550 +6552 3 824.271 893.388 1039.590 1.000 6551 +6553 3 823.579 894.294 1039.889 1.000 6552 +6554 3 823.213 895.331 1040.096 1.000 6553 +6555 3 823.246 896.475 1040.256 1.000 6554 +6556 3 823.180 897.610 1040.404 1.000 6555 +6557 3 823.011 898.737 1040.586 1.000 6556 +6558 3 822.728 899.437 1040.782 1.000 6557 +6559 3 822.300 900.495 1041.009 1.000 6558 +6560 3 822.021 901.594 1041.272 1.000 6559 +6561 3 821.807 902.711 1041.575 1.000 6560 +6562 3 821.733 903.837 1041.928 1.000 6561 +6563 3 821.709 904.966 1042.322 1.000 6562 +6564 3 821.359 906.051 1042.692 1.000 6563 +6565 3 821.143 907.151 1043.126 1.000 6564 +6566 3 821.268 908.227 1043.655 1.000 6565 +6567 3 821.302 909.319 1044.240 1.000 6566 +6568 3 821.217 910.438 1044.831 1.000 6567 +6569 3 821.207 911.567 1045.411 1.000 6568 +6570 3 821.254 912.693 1045.993 1.000 6569 +6571 3 821.251 913.818 1046.570 1.000 6570 +6572 3 821.085 914.933 1047.158 1.000 6571 +6573 3 821.049 916.049 1047.796 1.000 6572 +6574 3 821.039 917.164 1048.499 1.000 6573 +6575 3 820.996 918.280 1049.272 1.000 6574 +6576 3 820.900 919.371 1050.132 1.000 6575 +6577 3 820.485 920.299 1051.154 1.000 6576 +6578 3 820.068 921.225 1052.307 1.000 6577 +6579 3 820.163 922.112 1053.615 1.000 6578 +6580 3 820.312 922.995 1055.032 1.000 6579 +6581 3 820.405 923.869 1056.504 1.000 6580 +6582 3 819.817 924.648 1057.946 1.000 6581 +6583 3 818.887 924.972 1059.327 1.000 6582 +6584 3 817.926 925.263 1060.620 1.000 6583 +6585 3 816.913 925.501 1061.799 1.000 6584 +6586 3 815.863 925.685 1062.858 1.000 6585 +6587 3 814.777 925.817 1063.787 1.000 6586 +6588 3 813.789 926.209 1064.641 1.000 6587 +6589 3 812.680 926.331 1065.361 1.000 6588 +6590 3 811.885 927.122 1065.994 1.000 6589 +6591 3 811.011 927.822 1066.565 1.000 6590 +6592 3 810.240 928.626 1067.083 1.000 6591 +6593 3 809.581 929.539 1067.550 1.000 6592 +6594 3 808.595 930.055 1067.993 1.000 6593 +6595 3 808.222 931.118 1068.407 1.000 6594 +6596 3 808.006 932.216 1068.782 1.000 6595 +6597 3 807.912 933.340 1069.113 1.000 6596 +6598 3 808.300 934.415 1069.348 1.000 6597 +6599 3 808.690 935.489 1069.502 1.000 6598 +6600 3 808.741 936.591 1069.555 1.000 6599 +6601 3 808.964 937.471 1069.524 1.000 6600 +6602 3 809.378 938.419 1069.418 1.000 6601 +6603 3 809.590 939.533 1069.261 1.000 6602 +6604 3 809.722 940.659 1069.096 1.000 6603 +6605 3 809.774 941.798 1068.953 1.000 6604 +6606 3 808.823 942.008 1068.917 1.000 6605 +6607 3 808.599 942.899 1068.939 1.000 6606 +6608 3 808.643 944.043 1069.001 1.000 6607 +6609 3 808.048 945.001 1069.130 1.000 6608 +6610 3 807.212 945.724 1069.326 1.000 6609 +6611 3 806.263 946.317 1069.583 1.000 6610 +6612 3 805.718 947.317 1069.874 1.000 6611 +6613 3 805.298 948.351 1070.194 1.000 6612 +6614 3 805.255 949.495 1070.507 1.000 6613 +6615 3 805.068 950.518 1070.899 1.000 6614 +6616 3 804.866 951.562 1071.395 1.000 6615 +6617 3 804.861 952.657 1071.941 1.000 6616 +6618 3 805.319 953.545 1072.515 1.000 6617 +6619 3 806.280 954.049 1073.097 1.000 6618 +6620 3 807.324 954.451 1074.214 1.000 6619 +6621 3 823.403 880.334 1007.723 1.000 6528 +6622 3 822.345 879.934 1008.837 1.000 6621 +6623 3 821.318 879.882 1009.344 1.000 6622 +6624 3 820.302 879.942 1010.005 1.000 6623 +6625 3 819.787 879.857 1010.668 1.000 6624 +6626 3 818.791 879.694 1011.385 1.000 6625 +6627 3 817.726 879.607 1012.018 1.000 6626 +6628 3 816.585 879.607 1012.452 1.000 6627 +6629 3 815.507 879.911 1012.659 1.000 6628 +6630 3 814.462 880.365 1012.668 1.000 6629 +6631 3 813.402 880.767 1012.511 1.000 6630 +6632 3 812.346 881.168 1012.228 1.000 6631 +6633 3 811.382 881.679 1011.864 1.000 6632 +6634 3 810.256 881.801 1011.475 1.000 6633 +6635 3 809.215 882.216 1011.072 1.000 6634 +6636 3 808.183 882.660 1010.668 1.000 6635 +6637 3 807.180 883.169 1010.290 1.000 6636 +6638 3 806.391 883.951 1009.963 1.000 6637 +6639 3 805.524 884.636 1009.702 1.000 6638 +6640 3 804.493 885.114 1009.515 1.000 6639 +6641 3 803.653 885.870 1009.436 1.000 6640 +6642 3 802.902 886.721 1009.495 1.000 6641 +6643 3 802.254 887.632 1009.691 1.000 6642 +6644 3 801.696 888.592 1010.002 1.000 6643 +6645 3 800.681 889.044 1010.330 1.000 6644 +6646 3 800.338 889.995 1010.621 1.000 6645 +6647 3 799.964 891.028 1010.892 1.000 6646 +6648 3 799.335 891.961 1011.167 1.000 6647 +6649 3 798.617 892.829 1011.416 1.000 6648 +6650 3 797.731 893.453 1011.637 1.000 6649 +6651 3 796.651 893.735 1011.819 1.000 6650 +6652 3 795.983 894.610 1011.811 1.000 6651 +6653 3 794.967 895.107 1011.674 1.000 6652 +6654 3 794.021 895.672 1011.450 1.000 6653 +6655 3 793.452 896.568 1011.237 1.000 6654 +6656 3 792.357 896.848 1010.971 1.000 6655 +6657 3 791.288 897.183 1010.668 1.000 6656 +6658 3 790.343 897.695 1010.355 1.000 6657 +6659 3 789.765 898.660 1010.061 1.000 6658 +6660 3 788.932 899.433 1009.848 1.000 6659 +6661 3 788.433 900.380 1009.758 1.000 6660 +6662 3 788.343 901.490 1009.814 1.000 6661 +6663 3 788.470 902.619 1009.949 1.000 6662 +6664 3 788.480 903.752 1010.066 1.000 6663 +6665 3 788.422 904.886 1010.136 1.000 6664 +6666 3 788.242 906.014 1010.229 1.000 6665 +6667 3 788.130 907.147 1010.341 1.000 6666 +6668 3 788.130 908.287 1010.481 1.000 6667 +6669 3 788.277 909.400 1010.649 1.000 6668 +6670 3 788.739 910.435 1010.850 1.000 6669 +6671 3 789.379 911.366 1011.077 1.000 6670 +6672 3 790.136 912.200 1011.315 1.000 6671 +6673 3 790.915 913.023 1011.522 1.000 6672 +6674 3 791.407 914.027 1011.646 1.000 6673 +6675 3 791.745 915.115 1011.671 1.000 6674 +6676 3 791.794 916.249 1011.567 1.000 6675 +6677 3 791.844 917.383 1011.363 1.000 6676 +6678 3 791.895 918.515 1011.088 1.000 6677 +6679 3 791.830 919.630 1010.775 1.000 6678 +6680 3 791.481 920.699 1010.444 1.000 6679 +6681 3 790.796 921.381 1010.066 1.000 6680 +6682 3 790.493 922.302 1009.778 1.000 6681 +6683 3 790.448 923.444 1009.632 1.000 6682 +6684 3 790.123 924.532 1009.593 1.000 6683 +6685 3 789.937 925.632 1009.666 1.000 6684 +6686 3 790.040 926.768 1009.865 1.000 6685 +6687 3 789.940 927.874 1010.164 1.000 6686 +6688 3 789.496 928.928 1010.542 1.000 6687 +6689 3 788.920 929.864 1011.035 1.000 6688 +6690 3 788.076 930.554 1011.724 1.000 6689 +6691 3 787.176 931.152 1012.584 1.000 6690 +6692 3 786.302 931.520 1013.706 1.000 6691 +6693 3 785.429 931.843 1015.011 1.000 6692 +6694 3 784.483 932.087 1016.380 1.000 6693 +6695 3 784.580 931.743 1017.820 1.000 6694 +6696 3 784.055 931.366 1019.245 1.000 6695 +6697 3 783.846 930.531 1022.134 1.000 6696 +6698 3 820.199 879.762 1010.484 1.000 6624 +6699 3 819.381 879.186 1010.218 1.000 6698 +6700 3 818.245 879.124 1010.094 1.000 6699 +6701 3 817.112 878.969 1009.954 1.000 6700 +6702 3 815.983 878.806 1009.803 1.000 6701 +6703 3 814.878 878.550 1009.621 1.000 6702 +6704 3 813.779 878.264 1009.445 1.000 6703 +6705 3 812.698 877.903 1009.330 1.000 6704 +6706 3 811.566 877.834 1009.246 1.000 6705 +6707 3 810.424 877.823 1009.156 1.000 6706 +6708 3 809.293 877.684 1008.997 1.000 6707 +6709 3 808.163 877.516 1008.745 1.000 6708 +6710 3 807.023 877.447 1008.384 1.000 6709 +6711 3 806.249 876.725 1007.810 1.000 6710 +6712 3 805.419 876.049 1007.045 1.000 6711 +6713 3 804.532 875.448 1006.127 1.000 6712 +6714 3 803.721 874.771 1005.080 1.000 6713 +6715 3 802.827 874.397 1003.904 1.000 6714 +6716 3 802.129 874.128 1002.529 1.000 6715 +6717 3 801.144 873.998 1001.146 1.000 6716 +6718 3 800.130 873.882 999.779 1.000 6717 +6719 3 799.380 873.396 998.424 1.000 6718 +6720 3 798.639 872.776 997.091 1.000 6719 +6721 3 797.808 872.227 995.812 1.000 6720 +6722 3 797.003 871.556 994.624 1.000 6721 +6723 3 796.248 870.818 993.507 1.000 6722 +6724 3 795.494 870.052 992.468 1.000 6723 +6725 3 794.690 869.314 991.505 1.000 6724 +6726 3 793.764 868.703 990.618 1.000 6725 +6727 3 792.779 868.219 989.758 1.000 6726 +6728 3 791.789 867.748 988.907 1.000 6727 +6729 3 790.767 867.379 988.042 1.000 6728 +6730 3 789.857 866.912 987.123 1.000 6729 +6731 3 788.944 866.534 986.149 1.000 6730 +6732 3 787.887 866.419 985.169 1.000 6731 +6733 3 786.793 866.247 984.245 1.000 6732 +6734 3 785.729 865.987 983.366 1.000 6733 +6735 3 784.825 865.374 982.517 1.000 6734 +6736 3 784.003 864.760 981.655 1.000 6735 +6737 3 783.177 864.218 980.750 1.000 6736 +6738 3 782.275 863.712 979.866 1.000 6737 +6739 3 781.390 863.126 979.048 1.000 6738 +6740 3 780.549 862.380 978.398 1.000 6739 +6741 3 779.730 861.586 977.939 1.000 6740 +6742 3 778.943 860.766 977.642 1.000 6741 +6743 3 778.004 860.131 977.500 1.000 6742 +6744 3 777.020 859.551 977.502 1.000 6743 +6745 3 776.109 858.901 977.662 1.000 6744 +6746 3 775.446 858.011 978.001 1.000 6745 +6747 3 774.416 857.573 978.446 1.000 6746 +6748 3 773.362 857.167 978.972 1.000 6747 +6749 3 772.286 857.208 979.622 1.000 6748 +6750 3 771.210 857.261 980.367 1.000 6749 +6751 3 770.197 856.806 981.095 1.000 6750 +6752 3 769.101 856.814 981.879 1.000 6751 +6753 3 768.052 856.982 982.761 1.000 6752 +6754 3 767.471 856.197 983.713 1.000 6753 +6755 3 766.597 855.704 984.777 1.000 6754 +6756 3 765.722 855.266 985.964 1.000 6755 +6757 3 764.906 854.637 987.182 1.000 6756 +6758 3 764.035 854.110 988.380 1.000 6757 +6759 3 763.106 853.693 989.526 1.000 6758 +6760 3 762.341 853.225 990.643 1.000 6759 +6761 3 761.817 852.537 992.880 1.000 6760 +6762 3 822.772 866.429 997.080 1.000 6514 +6763 3 823.861 866.447 998.220 1.000 6762 +6764 3 824.954 866.533 998.707 1.000 6763 +6765 3 826.058 866.750 999.247 1.000 6764 +6766 3 827.077 867.169 999.849 1.000 6765 +6767 3 828.195 867.202 1000.457 1.000 6766 +6768 3 829.310 867.250 1001.084 1.000 6767 +6769 3 830.409 867.344 1001.745 1.000 6768 +6770 3 831.490 867.580 1002.434 1.000 6769 +6771 3 832.565 867.851 1003.148 1.000 6770 +6772 3 833.585 868.251 1003.906 1.000 6771 +6773 3 834.688 868.342 1004.688 1.000 6772 +6774 3 835.773 868.401 1005.514 1.000 6773 +6775 3 836.853 868.464 1006.376 1.000 6774 +6776 3 837.892 868.600 1007.294 1.000 6775 +6777 3 838.932 868.712 1008.249 1.000 6776 +6778 3 839.979 868.447 1009.196 1.000 6777 +6779 3 841.029 868.202 1010.120 1.000 6778 +6780 3 842.096 868.063 1011.024 1.000 6779 +6781 3 843.163 867.946 1011.898 1.000 6780 +6782 3 844.233 868.264 1012.701 1.000 6781 +6783 3 845.316 868.392 1013.454 1.000 6782 +6784 3 846.418 868.302 1014.185 1.000 6783 +6785 3 847.523 868.310 1014.896 1.000 6784 +6786 3 848.632 868.380 1015.599 1.000 6785 +6787 3 849.748 868.460 1016.288 1.000 6786 +6788 3 850.873 868.549 1016.966 1.000 6787 +6789 3 851.972 868.463 1017.685 1.000 6788 +6790 3 853.067 868.351 1018.452 1.000 6789 +6791 3 853.652 867.427 1019.267 1.000 6790 +6792 3 854.408 866.716 1020.163 1.000 6791 +6793 3 855.264 866.134 1021.149 1.000 6792 +6794 3 855.934 865.318 1022.202 1.000 6793 +6795 3 856.759 864.651 1023.280 1.000 6794 +6796 3 857.693 864.626 1024.458 1.000 6795 +6797 3 858.622 864.269 1025.674 1.000 6796 +6798 3 859.559 863.901 1026.900 1.000 6797 +6799 3 860.555 863.763 1028.126 1.000 6798 +6800 3 861.574 863.634 1029.328 1.000 6799 +6801 3 862.650 863.521 1030.450 1.000 6800 +6802 3 863.722 863.488 1031.512 1.000 6801 +6803 3 864.791 863.562 1032.548 1.000 6802 +6804 3 865.872 863.538 1033.556 1.000 6803 +6805 3 866.971 863.379 1034.541 1.000 6804 +6806 3 868.065 863.344 1035.552 1.000 6805 +6807 3 869.156 863.403 1036.630 1.000 6806 +6808 3 870.178 863.496 1037.834 1.000 6807 +6809 3 871.107 863.634 1039.226 1.000 6808 +6810 3 871.959 863.663 1040.799 1.000 6809 +6811 3 872.636 863.441 1042.577 1.000 6810 +6812 3 873.220 863.210 1044.512 1.000 6811 +6813 3 873.588 862.712 1046.531 1.000 6812 +6814 3 873.954 862.166 1048.564 1.000 6813 +6815 3 874.612 861.744 1050.535 1.000 6814 +6816 3 875.271 861.321 1052.428 1.000 6815 +6817 3 875.957 860.541 1054.113 1.000 6816 +6818 3 876.784 859.892 1055.622 1.000 6817 +6819 3 877.671 859.302 1057.011 1.000 6818 +6820 3 878.201 858.474 1058.392 1.000 6819 +6821 3 878.770 857.642 1059.778 1.000 6820 +6822 3 879.067 856.786 1061.231 1.000 6821 +6823 3 878.647 856.107 1062.762 1.000 6822 +6824 3 877.971 855.543 1064.358 1.000 6823 +6825 3 877.678 854.926 1066.027 1.000 6824 +6826 3 877.816 854.096 1067.699 1.000 6825 +6827 3 878.570 853.572 1069.289 1.000 6826 +6828 3 879.460 853.116 1070.782 1.000 6827 +6829 3 880.480 853.060 1072.156 1.000 6828 +6830 3 881.533 853.111 1073.433 1.000 6829 +6831 3 882.567 853.047 1074.654 1.000 6830 +6832 3 883.592 852.935 1075.858 1.000 6831 +6833 3 884.485 852.529 1077.040 1.000 6832 +6834 3 885.488 852.404 1078.238 1.000 6833 +6835 3 886.465 852.253 1079.478 1.000 6834 +6836 3 887.400 852.063 1080.744 1.000 6835 +6837 3 888.385 851.949 1081.959 1.000 6836 +6838 3 889.417 851.909 1083.079 1.000 6837 +6839 3 890.341 851.620 1084.093 1.000 6838 +6840 3 891.261 851.277 1085.848 1.000 6839 +6841 3 818.644 855.788 984.822 1.000 6502 +6842 3 819.690 855.960 986.681 1.000 6841 +6843 3 820.541 856.387 987.479 1.000 6842 +6844 3 821.208 857.053 988.478 1.000 6843 +6845 3 822.033 857.668 989.551 1.000 6844 +6846 3 822.992 858.087 990.629 1.000 6845 +6847 3 823.967 858.485 991.668 1.000 6846 +6848 3 824.824 859.087 992.628 1.000 6847 +6849 3 825.801 859.240 993.476 1.000 6848 +6850 3 826.919 859.142 994.179 1.000 6849 +6851 3 828.057 859.122 994.756 1.000 6850 +6852 3 829.180 859.184 995.252 1.000 6851 +6853 3 830.280 859.391 995.728 1.000 6852 +6854 3 831.344 859.731 996.190 1.000 6853 +6855 3 832.395 860.119 996.643 1.000 6854 +6856 3 833.517 860.247 997.055 1.000 6855 +6857 3 834.654 860.326 997.424 1.000 6856 +6858 3 835.778 860.447 997.780 1.000 6857 +6859 3 836.900 860.564 998.122 1.000 6858 +6860 3 838.043 860.584 998.385 1.000 6859 +6861 3 839.179 860.561 998.623 1.000 6860 +6862 3 840.284 860.350 998.931 1.000 6861 +6863 3 841.365 860.517 999.320 1.000 6862 +6864 3 842.442 860.778 999.771 1.000 6863 +6865 3 843.549 860.846 1000.244 1.000 6864 +6866 3 844.675 860.804 1000.717 1.000 6865 +6867 3 845.807 860.722 1001.146 1.000 6866 +6868 3 846.943 860.622 1001.512 1.000 6867 +6869 3 848.078 860.513 1001.837 1.000 6868 +6870 3 849.212 860.477 1002.134 1.000 6869 +6871 3 850.343 860.629 1002.420 1.000 6870 +6872 3 851.464 860.742 1002.736 1.000 6871 +6873 3 852.577 860.818 1003.103 1.000 6872 +6874 3 853.673 860.724 1003.509 1.000 6873 +6875 3 854.815 860.709 1003.864 1.000 6874 +6876 3 855.952 860.628 1004.189 1.000 6875 +6877 3 857.087 860.520 1004.492 1.000 6876 +6878 3 858.224 860.579 1004.735 1.000 6877 +6879 3 859.363 860.685 1004.937 1.000 6878 +6880 3 860.433 860.408 1005.220 1.000 6879 +6881 3 861.516 860.288 1005.575 1.000 6880 +6882 3 862.600 860.614 1005.964 1.000 6881 +6883 3 863.706 860.735 1006.376 1.000 6882 +6884 3 864.839 860.616 1006.802 1.000 6883 +6885 3 865.931 860.374 1007.252 1.000 6884 +6886 3 866.951 859.900 1007.740 1.000 6885 +6887 3 868.011 859.645 1008.288 1.000 6886 +6888 3 869.102 859.552 1008.902 1.000 6887 +6889 3 870.172 859.353 1009.557 1.000 6888 +6890 3 871.235 859.121 1010.232 1.000 6889 +6891 3 872.281 858.849 1010.901 1.000 6890 +6892 3 873.314 858.436 1011.503 1.000 6891 +6893 3 874.410 858.143 1011.979 1.000 6892 +6894 3 875.519 857.880 1012.340 1.000 6893 +6895 3 876.310 857.136 1012.586 1.000 6894 +6896 3 877.145 856.386 1012.724 1.000 6895 +6897 3 878.020 855.678 1012.794 1.000 6896 +6898 3 878.720 854.782 1012.858 1.000 6897 +6899 3 879.833 854.606 1013.034 1.000 6898 +6900 3 880.907 854.267 1013.306 1.000 6899 +6901 3 881.982 853.924 1013.656 1.000 6900 +6902 3 883.062 853.591 1014.065 1.000 6901 +6903 3 883.978 853.008 1014.516 1.000 6902 +6904 3 884.750 852.218 1014.986 1.000 6903 +6905 3 885.885 852.139 1015.417 1.000 6904 +6906 3 886.972 851.874 1015.902 1.000 6905 +6907 3 888.060 851.608 1016.436 1.000 6906 +6908 3 888.774 850.807 1016.994 1.000 6907 +6909 3 889.490 850.082 1017.671 1.000 6908 +6910 3 890.366 849.522 1018.419 1.000 6909 +6911 3 891.252 848.969 1019.194 1.000 6910 +6912 3 892.163 848.354 1019.897 1.000 6911 +6913 3 893.187 847.872 1020.438 1.000 6912 +6914 3 894.266 847.507 1020.816 1.000 6913 +6915 3 895.388 847.289 1021.059 1.000 6914 +6916 3 896.520 847.157 1021.216 1.000 6915 +6917 3 897.664 847.147 1021.322 1.000 6916 +6918 3 898.803 847.101 1021.418 1.000 6917 +6919 3 899.929 846.917 1021.496 1.000 6918 +6920 3 900.963 846.447 1021.574 1.000 6919 +6921 3 901.961 845.901 1021.768 1.000 6920 +6922 3 903.013 845.483 1022.076 1.000 6921 +6923 3 904.072 845.081 1022.498 1.000 6922 +6924 3 904.931 844.399 1023.070 1.000 6923 +6925 3 905.937 843.944 1023.767 1.000 6924 +6926 3 906.599 843.135 1024.598 1.000 6925 +6927 3 907.024 842.232 1025.562 1.000 6926 +6928 3 907.968 841.984 1026.564 1.000 6927 +6929 3 909.002 841.751 1027.603 1.000 6928 +6930 3 910.013 841.443 1028.636 1.000 6929 +6931 3 910.988 841.078 1029.647 1.000 6930 +6932 3 911.922 840.643 1030.610 1.000 6931 +6933 3 912.779 840.049 1031.503 1.000 6932 +6934 3 913.731 839.538 1033.158 1.000 6933 +6935 3 860.088 861.111 1004.184 1.000 6879 +6936 3 861.139 861.538 1004.086 1.000 6935 +6937 3 862.206 861.950 1004.055 1.000 6936 +6938 3 863.274 862.360 1004.049 1.000 6937 +6939 3 864.402 862.541 1004.083 1.000 6938 +6940 3 865.520 862.756 1004.150 1.000 6939 +6941 3 866.593 863.127 1004.254 1.000 6940 +6942 3 867.629 863.606 1004.354 1.000 6941 +6943 3 868.664 864.088 1004.408 1.000 6942 +6944 3 869.633 864.636 1004.388 1.000 6943 +6945 3 870.177 865.493 1004.293 1.000 6944 +6946 3 870.720 866.406 1004.242 1.000 6945 +6947 3 871.349 867.356 1004.290 1.000 6946 +6948 3 871.983 868.232 1004.562 1.000 6947 +6949 3 872.897 868.879 1004.987 1.000 6948 +6950 3 873.796 869.475 1005.584 1.000 6949 +6951 3 874.718 869.734 1006.376 1.000 6950 +6952 3 875.598 869.778 1007.255 1.000 6951 +6953 3 876.251 868.883 1008.053 1.000 6952 +6954 3 877.347 868.684 1008.703 1.000 6953 +6955 3 878.481 868.573 1009.198 1.000 6954 +6956 3 879.620 868.490 1009.554 1.000 6955 +6957 3 880.755 868.351 1009.784 1.000 6956 +6958 3 881.889 868.200 1009.935 1.000 6957 +6959 3 882.930 868.603 1010.100 1.000 6958 +6960 3 883.930 869.143 1010.271 1.000 6959 +6961 3 884.970 869.581 1010.439 1.000 6960 +6962 3 886.077 869.828 1010.624 1.000 6961 +6963 3 887.196 869.966 1010.831 1.000 6962 +6964 3 888.313 870.121 1011.035 1.000 6963 +6965 3 889.412 870.436 1011.153 1.000 6964 +6966 3 890.511 870.741 1011.170 1.000 6965 +6967 3 891.611 871.027 1011.069 1.000 6966 +6968 3 892.732 871.019 1010.887 1.000 6967 +6969 3 893.863 870.865 1010.646 1.000 6968 +6970 3 895.003 870.841 1010.372 1.000 6969 +6971 3 895.980 871.236 1010.016 1.000 6970 +6972 3 896.847 871.884 1009.560 1.000 6971 +6973 3 897.927 872.025 1009.154 1.000 6972 +6974 3 899.033 872.273 1008.764 1.000 6973 +6975 3 900.132 872.580 1008.372 1.000 6974 +6976 3 901.221 872.909 1007.961 1.000 6975 +6977 3 901.525 873.791 1007.454 1.000 6976 +6978 3 901.598 874.834 1006.841 1.000 6977 +6979 3 901.700 875.858 1006.141 1.000 6978 +6980 3 902.100 876.772 1005.463 1.000 6979 +6981 3 902.959 877.517 1004.917 1.000 6980 +6982 3 903.872 878.205 1004.539 1.000 6981 +6983 3 904.734 878.948 1004.312 1.000 6982 +6984 3 905.604 879.502 1004.178 1.000 6983 +6985 3 823.913 838.857 977.161 1.000 1 +6986 3 823.093 838.571 980.000 1.000 6985 +6987 3 822.274 838.284 981.210 1.000 6986 +6988 3 821.455 837.998 982.649 1.000 6987 +6989 3 820.636 837.711 984.234 1.000 6988 +6990 3 819.816 837.425 985.897 1.000 6989 +6991 3 818.996 837.138 987.566 1.000 6990 +6992 3 818.807 836.429 989.184 1.000 6991 +6993 3 818.775 835.613 990.744 1.000 6992 +6994 3 818.382 834.670 992.110 1.000 6993 +6995 3 817.909 833.700 993.286 1.000 6994 +6996 3 818.398 833.485 994.193 1.000 6995 +6997 3 819.445 833.025 994.927 1.000 6996 +6998 3 820.057 832.236 995.660 1.000 6997 +6999 3 820.428 831.264 996.484 1.000 6998 +7000 3 820.692 831.259 997.307 1.000 6999 +7001 3 821.687 831.242 998.298 1.000 7000 +7002 3 822.682 831.224 999.426 1.000 7001 +7003 3 823.642 831.324 1000.658 1.000 7002 +7004 3 824.593 831.452 1001.946 1.000 7003 +7005 3 825.533 831.674 1003.254 1.000 7004 +7006 3 826.540 832.112 1004.464 1.000 7005 +7007 3 827.439 832.663 1005.603 1.000 7006 +7008 3 828.425 832.921 1006.737 1.000 7007 +7009 3 829.374 833.310 1007.863 1.000 7008 +7010 3 830.318 833.712 1008.980 1.000 7009 +7011 3 830.990 834.498 1010.066 1.000 7010 +7012 3 831.913 834.927 1011.125 1.000 7011 +7013 3 832.899 835.294 1012.152 1.000 7012 +7014 3 833.801 835.849 1013.149 1.000 7013 +7015 3 834.437 836.724 1014.073 1.000 7014 +7016 3 834.967 837.704 1014.938 1.000 7015 +7017 3 835.415 838.718 1015.773 1.000 7016 +7018 3 836.392 839.245 1016.607 1.000 7017 +7019 3 837.300 839.728 1017.520 1.000 7018 +7020 3 838.174 840.197 1018.514 1.000 7019 +7021 3 838.279 840.945 1019.654 1.000 7020 +7022 3 837.553 841.414 1020.760 1.000 7021 +7023 3 836.724 841.930 1021.790 1.000 7022 +7024 3 835.694 842.429 1022.526 1.000 7023 +7025 3 834.778 843.099 1022.972 1.000 7024 +7026 3 833.909 843.841 1023.201 1.000 7025 +7027 3 833.085 844.629 1023.288 1.000 7026 +7028 3 832.336 845.492 1023.333 1.000 7027 +7029 3 831.560 846.330 1023.383 1.000 7028 +7030 3 830.668 847.042 1023.453 1.000 7029 +7031 3 829.748 847.721 1023.554 1.000 7030 +7032 3 828.886 848.453 1023.674 1.000 7031 +7033 3 828.136 849.211 1023.812 1.000 7032 +7034 3 827.041 849.481 1023.999 1.000 7033 +7035 3 826.062 849.999 1024.234 1.000 7034 +7036 3 825.086 850.529 1024.456 1.000 7035 +7037 3 824.521 851.523 1024.640 1.000 7036 +7038 3 823.632 852.226 1024.775 1.000 7037 +7039 3 822.775 852.972 1024.918 1.000 7038 +7040 3 821.871 853.602 1025.128 1.000 7039 +7041 3 820.793 853.922 1025.430 1.000 7040 +7042 3 819.756 854.251 1025.858 1.000 7041 +7043 3 818.755 854.601 1026.410 1.000 7042 +7044 3 817.874 855.249 1026.967 1.000 7043 +7045 3 816.925 855.886 1027.418 1.000 7044 +7046 3 816.064 856.625 1027.807 1.000 7045 +7047 3 815.277 857.451 1028.191 1.000 7046 +7048 3 814.500 858.281 1028.605 1.000 7047 +7049 3 813.726 859.106 1029.106 1.000 7048 +7050 3 812.993 859.973 1029.717 1.000 7049 +7051 3 812.311 860.883 1030.450 1.000 7050 +7052 3 811.682 861.835 1031.307 1.000 7051 +7053 3 811.075 861.795 1032.590 1.000 7052 +7054 3 810.470 861.701 1034.219 1.000 7053 +7055 3 809.954 861.375 1036.104 1.000 7054 +7056 3 809.477 860.946 1038.156 1.000 7055 +7057 3 808.920 860.731 1040.298 1.000 7056 +7058 3 808.297 860.730 1042.451 1.000 7057 +7059 3 807.683 860.834 1044.546 1.000 7058 +7060 3 806.915 860.746 1046.514 1.000 7059 +7061 3 806.051 860.540 1048.331 1.000 7060 +7062 3 805.406 859.995 1049.978 1.000 7061 +7063 3 804.998 859.082 1051.448 1.000 7062 +7064 3 804.590 858.169 1052.778 1.000 7063 +7065 3 803.666 857.674 1053.923 1.000 7064 +7066 3 802.657 857.247 1054.922 1.000 7065 +7067 3 801.619 857.038 1055.827 1.000 7066 +7068 3 800.563 857.045 1056.672 1.000 7067 +7069 3 799.634 856.556 1057.476 1.000 7068 +7070 3 798.543 856.451 1058.196 1.000 7069 +7071 3 797.435 856.401 1058.823 1.000 7070 +7072 3 796.315 856.401 1059.338 1.000 7071 +7073 3 795.217 856.212 1059.722 1.000 7072 +7074 3 794.142 855.833 1059.957 1.000 7073 +7075 3 793.045 855.747 1060.027 1.000 7074 +7076 3 791.926 855.948 1059.932 1.000 7075 +7077 3 790.801 856.016 1059.702 1.000 7076 +7078 3 789.673 856.036 1059.374 1.000 7077 +7079 3 788.580 856.111 1058.954 1.000 7078 +7080 3 787.499 856.236 1058.484 1.000 7079 +7081 3 786.390 856.394 1058.044 1.000 7080 +7082 3 785.278 856.549 1057.680 1.000 7081 +7083 3 784.145 856.687 1057.482 1.000 7082 +7084 3 783.015 856.682 1057.437 1.000 7083 +7085 3 781.893 856.521 1057.529 1.000 7084 +7086 3 780.795 856.223 1057.689 1.000 7085 +7087 3 779.703 855.887 1057.876 1.000 7086 +7088 3 778.579 855.786 1058.072 1.000 7087 +7089 3 777.437 855.808 1058.260 1.000 7088 +7090 3 776.297 855.890 1058.425 1.000 7089 +7091 3 775.161 856.006 1058.588 1.000 7090 +7092 3 774.038 856.188 1058.795 1.000 7091 +7093 3 772.913 856.323 1059.044 1.000 7092 +7094 3 771.780 856.389 1059.335 1.000 7093 +7095 3 770.659 856.545 1059.646 1.000 7094 +7096 3 769.549 856.784 1059.971 1.000 7095 +7097 3 768.447 856.880 1060.332 1.000 7096 +7098 3 767.338 856.768 1060.668 1.000 7097 +7099 3 766.253 856.671 1060.968 1.000 7098 +7100 3 765.193 857.081 1061.194 1.000 7099 +7101 3 764.176 857.604 1061.368 1.000 7100 +7102 3 763.165 858.136 1061.500 1.000 7101 +7103 3 762.124 858.594 1061.617 1.000 7102 +7104 3 761.103 859.066 1061.752 1.000 7103 +7105 3 760.014 859.296 1061.822 1.000 7104 +7106 3 758.892 859.407 1061.802 1.000 7105 +7107 3 757.965 858.808 1061.673 1.000 7106 +7108 3 756.924 858.346 1061.609 1.000 7107 +7109 3 755.820 858.254 1061.564 1.000 7108 +7110 3 754.682 858.359 1061.525 1.000 7109 +7111 3 753.547 858.496 1061.511 1.000 7110 +7112 3 752.411 858.604 1061.536 1.000 7111 +7113 3 751.271 858.591 1061.631 1.000 7112 +7114 3 750.164 858.382 1061.760 1.000 7113 +7115 3 749.088 857.993 1061.911 1.000 7114 +7116 3 748.030 857.580 1062.130 1.000 7115 +7117 3 746.975 857.161 1062.401 1.000 7116 +7118 3 745.872 857.007 1062.732 1.000 7117 +7119 3 744.766 856.922 1063.104 1.000 7118 +7120 3 743.837 856.347 1063.488 1.000 7119 +7121 3 742.804 855.861 1063.835 1.000 7120 +7122 3 741.815 855.293 1064.134 1.000 7121 +7123 3 740.880 854.653 1064.417 1.000 7122 +7124 3 739.932 854.043 1064.686 1.000 7123 +7125 3 738.909 853.541 1064.910 1.000 7124 +7126 3 737.859 853.128 1065.131 1.000 7125 +7127 3 737.184 852.390 1065.520 1.000 7126 +7128 3 838.346 840.954 1021.003 1.000 7021 +7129 3 838.904 841.029 1023.688 1.000 7128 +7130 3 839.547 841.076 1024.881 1.000 7129 +7131 3 840.616 840.975 1026.091 1.000 7130 +7132 3 841.677 840.937 1027.295 1.000 7131 +7133 3 842.737 840.904 1028.462 1.000 7132 +7134 3 843.793 840.942 1029.568 1.000 7133 +7135 3 844.849 840.983 1030.588 1.000 7134 +7136 3 845.925 840.914 1031.542 1.000 7135 +7137 3 847.004 840.831 1032.464 1.000 7136 +7138 3 848.104 840.666 1033.320 1.000 7137 +7139 3 849.174 840.402 1034.135 1.000 7138 +7140 3 850.240 840.302 1034.956 1.000 7139 +7141 3 851.333 840.284 1035.782 1.000 7140 +7142 3 852.418 839.999 1036.605 1.000 7141 +7143 3 853.500 839.749 1037.450 1.000 7142 +7144 3 854.542 839.749 1038.422 1.000 7143 +7145 3 855.561 839.658 1039.506 1.000 7144 +7146 3 856.564 839.508 1040.690 1.000 7145 +7147 3 857.541 839.325 1041.956 1.000 7146 +7148 3 858.182 838.729 1043.353 1.000 7147 +7149 3 858.913 838.112 1044.778 1.000 7148 +7150 3 859.769 837.565 1046.181 1.000 7149 +7151 3 860.489 836.846 1047.556 1.000 7150 +7152 3 861.067 836.002 1048.911 1.000 7151 +7153 3 861.771 835.332 1050.263 1.000 7152 +7154 3 862.623 834.864 1051.627 1.000 7153 +7155 3 863.455 834.386 1053.010 1.000 7154 +7156 3 864.205 833.849 1054.418 1.000 7155 +7157 3 864.855 833.140 1055.810 1.000 7156 +7158 3 865.124 832.233 1057.148 1.000 7157 +7159 3 865.226 831.237 1058.434 1.000 7158 +7160 3 864.781 830.311 1059.604 1.000 7159 +7161 3 863.964 829.632 1060.632 1.000 7160 +7162 3 863.022 829.072 1061.511 1.000 7161 +7163 3 862.023 828.573 1062.239 1.000 7162 +7164 3 861.672 828.051 1063.779 1.000 7163 +7165 3 820.414 830.605 995.862 1.000 6999 +7166 3 820.390 829.480 995.434 1.000 7165 +7167 3 820.695 828.392 995.282 1.000 7166 +7168 3 821.036 827.308 995.142 1.000 7167 +7169 3 821.026 826.180 994.932 1.000 7168 +7170 3 821.013 825.053 994.675 1.000 7169 +7171 3 820.944 823.919 994.409 1.000 7170 +7172 3 821.158 823.047 994.148 1.000 7171 +7173 3 821.937 822.533 993.922 1.000 7172 +7174 3 822.296 821.447 993.742 1.000 7173 +7175 3 822.586 820.342 993.622 1.000 7174 +7176 3 822.828 819.224 993.549 1.000 7175 +7177 3 823.097 818.125 993.454 1.000 7176 +7178 3 823.706 817.192 993.384 1.000 7177 +7179 3 824.314 816.231 993.345 1.000 7178 +7180 3 824.840 815.217 993.331 1.000 7179 +7181 3 825.526 814.324 993.353 1.000 7180 +7182 3 826.380 813.563 993.418 1.000 7181 +7183 3 827.300 812.916 993.558 1.000 7182 +7184 3 828.233 812.311 993.784 1.000 7183 +7185 3 829.012 811.477 994.050 1.000 7184 +7186 3 829.887 810.752 994.361 1.000 7185 +7187 3 830.753 810.014 994.714 1.000 7186 +7188 3 831.662 809.378 995.112 1.000 7187 +7189 3 832.762 809.093 995.560 1.000 7188 +7190 3 833.847 808.832 996.114 1.000 7189 +7191 3 834.927 808.600 996.769 1.000 7190 +7192 3 835.929 808.926 997.576 1.000 7191 +7193 3 836.828 809.429 998.497 1.000 7192 +7194 3 837.597 810.154 999.499 1.000 7193 +7195 3 838.366 810.835 1000.577 1.000 7194 +7196 3 839.158 811.525 1001.678 1.000 7195 +7197 3 840.039 811.987 1002.786 1.000 7196 +7198 3 840.961 812.338 1003.906 1.000 7197 +7199 3 841.751 812.963 1005.024 1.000 7198 +7200 3 842.510 813.672 1006.102 1.000 7199 +7201 3 843.362 814.348 1007.082 1.000 7200 +7202 3 844.369 814.811 1007.975 1.000 7201 +7203 3 845.387 815.242 1008.801 1.000 7202 +7204 3 846.439 815.578 1009.585 1.000 7203 +7205 3 847.473 815.944 1010.352 1.000 7204 +7206 3 848.545 816.190 1011.116 1.000 7205 +7207 3 849.634 816.297 1011.889 1.000 7206 +7208 3 850.725 816.309 1012.682 1.000 7207 +7209 3 851.832 816.276 1013.471 1.000 7208 +7210 3 852.923 816.191 1014.255 1.000 7209 +7211 3 853.748 815.612 1015.087 1.000 7210 +7212 3 854.839 815.385 1015.916 1.000 7211 +7213 3 855.894 815.086 1016.775 1.000 7212 +7214 3 856.920 814.728 1017.691 1.000 7213 +7215 3 857.997 814.543 1018.648 1.000 7214 +7216 3 859.023 814.328 1019.665 1.000 7215 +7217 3 859.462 813.510 1020.844 1.000 7216 +7218 3 860.153 812.891 1022.134 1.000 7217 +7219 3 860.948 812.330 1023.487 1.000 7218 +7220 3 861.678 811.638 1024.856 1.000 7219 +7221 3 862.618 811.391 1026.250 1.000 7220 +7222 3 863.599 811.230 1027.653 1.000 7221 +7223 3 864.616 811.036 1029.022 1.000 7222 +7224 3 865.620 810.840 1030.389 1.000 7223 +7225 3 866.557 810.632 1031.800 1.000 7224 +7226 3 867.494 810.423 1033.256 1.000 7225 +7227 3 868.350 810.046 1034.771 1.000 7226 +7228 3 869.101 809.354 1036.274 1.000 7227 +7229 3 869.839 808.603 1037.784 1.000 7228 +7230 3 870.622 807.951 1039.338 1.000 7229 +7231 3 870.641 807.392 1041.085 1.000 7230 +7232 3 870.667 806.942 1043.017 1.000 7231 +7233 3 870.776 806.543 1045.080 1.000 7232 +7234 3 870.955 806.082 1047.206 1.000 7233 +7235 3 871.278 805.495 1049.300 1.000 7234 +7236 3 871.979 805.047 1051.229 1.000 7235 +7237 3 872.954 804.701 1052.934 1.000 7236 +7238 3 873.880 804.295 1054.474 1.000 7237 +7239 3 874.742 803.809 1055.919 1.000 7238 +7240 3 875.472 803.079 1057.277 1.000 7239 +7241 3 876.198 802.352 1058.593 1.000 7240 +7242 3 876.748 801.750 1060.002 1.000 7241 +7243 3 876.787 800.818 1061.404 1.000 7242 +7244 3 876.630 799.766 1062.743 1.000 7243 +7245 3 876.495 798.671 1063.994 1.000 7244 +7246 3 876.391 797.619 1065.238 1.000 7245 +7247 3 876.099 796.906 1066.607 1.000 7246 +7248 3 875.797 796.145 1068.052 1.000 7247 +7249 3 875.535 795.261 1069.510 1.000 7248 +7250 3 876.116 794.700 1070.947 1.000 7249 +7251 3 876.982 794.247 1072.327 1.000 7250 +7252 3 877.807 793.715 1073.601 1.000 7251 +7253 3 878.414 792.769 1074.604 1.000 7252 +7254 3 879.037 791.926 1075.578 1.000 7253 +7255 3 879.531 790.956 1076.519 1.000 7254 +7256 3 880.043 790.016 1077.448 1.000 7255 +7257 3 880.930 789.627 1078.476 1.000 7256 +7258 3 881.882 789.397 1079.557 1.000 7257 +7259 3 882.959 789.476 1080.626 1.000 7258 +7260 3 884.001 789.407 1081.651 1.000 7259 +7261 3 884.919 788.896 1082.656 1.000 7260 +7262 3 885.839 788.574 1083.667 1.000 7261 +7263 3 886.814 788.704 1084.661 1.000 7262 +7264 3 887.781 789.144 1085.540 1.000 7263 +7265 3 888.618 789.863 1086.291 1.000 7264 +7266 3 889.572 790.481 1086.851 1.000 7265 +7267 3 890.530 791.103 1087.232 1.000 7266 +7268 3 891.261 791.952 1087.590 1.000 7267 +7269 3 817.709 833.478 994.476 1.000 6995 +7270 3 817.054 832.748 997.357 1.000 7269 +7271 3 816.328 832.213 998.578 1.000 7270 +7272 3 815.609 831.737 1000.070 1.000 7271 +7273 3 815.061 831.627 1001.854 1.000 7272 +7274 3 814.511 831.518 1003.814 1.000 7273 +7275 3 813.950 831.524 1005.838 1.000 7274 +7276 3 813.353 831.929 1007.807 1.000 7275 +7277 3 812.859 832.355 1009.683 1.000 7276 +7278 3 812.658 832.839 1011.461 1.000 7277 +7279 3 812.595 833.024 1012.777 1.000 7278 +7280 3 812.265 833.997 1013.852 1.000 7279 +7281 3 811.936 834.970 1014.720 1.000 7280 +7282 3 811.133 835.681 1015.232 1.000 7281 +7283 3 810.227 836.364 1015.426 1.000 7282 +7284 3 809.367 837.100 1015.389 1.000 7283 +7285 3 808.688 837.975 1015.193 1.000 7284 +7286 3 808.188 838.998 1014.916 1.000 7285 +7287 3 807.737 840.040 1014.608 1.000 7286 +7288 3 807.263 841.062 1014.294 1.000 7287 +7289 3 806.740 842.036 1013.986 1.000 7288 +7290 3 806.765 843.176 1013.732 1.000 7289 +7291 3 806.557 844.271 1013.538 1.000 7290 +7292 3 806.085 845.313 1013.410 1.000 7291 +7293 3 805.691 845.694 1013.314 1.000 7292 +7294 3 804.908 846.511 1013.236 1.000 7293 +7295 3 804.627 847.619 1013.155 1.000 7294 +7296 3 804.401 848.739 1013.065 1.000 7295 +7297 3 804.166 849.857 1012.964 1.000 7296 +7298 3 803.763 850.927 1012.844 1.000 7297 +7299 3 803.503 852.018 1012.710 1.000 7298 +7300 3 803.574 853.160 1012.575 1.000 7299 +7301 3 803.575 854.293 1012.418 1.000 7300 +7302 3 803.289 855.337 1012.183 1.000 7301 +7303 3 802.452 855.918 1011.828 1.000 7302 +7304 3 801.644 856.727 1011.542 1.000 7303 +7305 3 800.806 857.504 1011.310 1.000 7304 +7306 3 800.063 858.339 1011.125 1.000 7305 +7307 3 799.702 859.424 1011.004 1.000 7306 +7308 3 799.540 860.544 1010.934 1.000 7307 +7309 3 799.519 861.688 1010.895 1.000 7308 +7310 3 798.790 862.275 1010.764 1.000 7309 +7311 3 797.800 862.663 1010.548 1.000 7310 +7312 3 797.351 863.686 1010.509 1.000 7311 +7313 3 796.643 864.576 1010.582 1.000 7312 +7314 3 795.978 865.505 1010.738 1.000 7313 +7315 3 795.401 866.462 1010.985 1.000 7314 +7316 3 795.141 867.528 1011.377 1.000 7315 +7317 3 794.650 868.466 1011.816 1.000 7316 +7318 3 793.787 869.212 1012.214 1.000 7317 +7319 3 792.991 870.019 1012.589 1.000 7318 +7320 3 792.267 870.885 1012.956 1.000 7319 +7321 3 791.465 871.591 1013.337 1.000 7320 +7322 3 790.399 871.941 1014.132 1.000 7321 +7323 3 806.593 845.336 1013.480 1.000 7292 +7324 3 807.556 845.626 1013.594 1.000 7323 +7325 3 807.929 846.706 1013.628 1.000 7324 +7326 3 808.306 847.786 1013.667 1.000 7325 +7327 3 808.765 848.834 1013.751 1.000 7326 +7328 3 809.378 849.793 1013.869 1.000 7327 +7329 3 809.931 850.789 1014.042 1.000 7328 +7330 3 810.422 851.822 1014.286 1.000 7329 +7331 3 811.046 852.674 1014.737 1.000 7330 +7332 3 811.976 853.225 1015.308 1.000 7331 +7333 3 813.019 853.576 1015.960 1.000 7332 +7334 3 814.073 853.903 1016.672 1.000 7333 +7335 3 815.062 854.440 1017.352 1.000 7334 +7336 3 816.069 854.948 1018.016 1.000 7335 +7337 3 817.005 855.433 1018.744 1.000 7336 +7338 3 817.753 855.988 1019.617 1.000 7337 +7339 3 818.104 856.881 1020.522 1.000 7338 +7340 3 818.276 857.915 1021.398 1.000 7339 +7341 3 817.800 858.909 1022.168 1.000 7340 +7342 3 817.215 859.866 1023.310 1.000 7341 +7343 3 812.194 832.238 1014.745 1.000 7278 +7344 3 811.548 831.468 1015.221 1.000 7343 +7345 3 810.729 830.708 1015.448 1.000 7344 +7346 3 809.756 830.154 1015.487 1.000 7345 +7347 3 808.895 829.442 1015.386 1.000 7346 +7348 3 808.194 828.561 1015.196 1.000 7347 +7349 3 807.669 827.546 1014.955 1.000 7348 +7350 3 806.977 826.674 1014.644 1.000 7349 +7351 3 806.220 825.887 1014.252 1.000 7350 +7352 3 805.282 825.282 1013.852 1.000 7351 +7353 3 804.330 824.688 1013.452 1.000 7352 +7354 3 803.273 824.373 1013.074 1.000 7353 +7355 3 802.473 823.746 1012.474 1.000 7354 +7356 3 824.275 838.811 976.405 1.000 1 +7357 3 825.113 838.439 973.823 1.000 7356 +7358 3 825.951 838.067 972.723 1.000 7357 +7359 3 826.788 837.695 971.418 1.000 7358 +7360 3 827.627 837.322 969.979 1.000 7359 +7361 3 828.464 836.950 968.475 1.000 7360 +7362 3 829.302 836.579 966.983 1.000 7361 +7363 3 830.213 836.662 965.591 1.000 7362 +7364 3 830.575 837.079 964.244 1.000 7363 +7365 3 830.424 837.628 962.900 1.000 7364 +7366 3 829.635 837.994 958.759 1.000 7365 +7367 3 829.278 838.560 955.444 1.000 7366 +7368 3 829.333 839.297 954.027 1.000 7367 +7369 3 829.336 840.052 952.325 1.000 7368 +7370 3 829.341 840.807 950.418 1.000 7369 +7371 3 829.344 841.563 948.385 1.000 7370 +7372 3 829.349 842.318 946.296 1.000 7371 +7373 3 829.359 843.050 944.210 1.000 7372 +7374 3 829.403 843.620 942.091 1.000 7373 +7375 3 829.964 844.043 940.008 1.000 7374 +7376 3 830.793 844.309 937.997 1.000 7375 +7377 3 831.781 844.322 936.088 1.000 7376 +7378 3 832.109 844.882 934.161 1.000 7377 +7379 3 832.226 845.616 932.196 1.000 7378 +7380 3 832.552 846.190 930.171 1.000 7379 +7381 3 832.934 846.720 928.094 1.000 7380 +7382 3 833.409 847.187 925.991 1.000 7381 +7383 3 834.234 847.417 923.944 1.000 7382 +7384 3 834.788 847.717 921.911 1.000 7383 +7385 3 835.122 848.075 919.867 1.000 7384 +7386 3 834.697 848.662 917.927 1.000 7385 +7387 3 833.723 848.829 916.152 1.000 7386 +7388 3 832.730 848.972 914.505 1.000 7387 +7389 3 831.810 849.354 912.951 1.000 7388 +7390 3 830.900 849.770 911.459 1.000 7389 +7391 3 830.123 850.262 909.958 1.000 7390 +7392 3 829.476 850.882 908.424 1.000 7391 +7393 3 829.084 851.832 906.914 1.000 7392 +7394 3 828.651 852.547 905.344 1.000 7393 +7395 3 828.500 852.857 903.703 1.000 7394 +7396 3 829.148 852.356 902.045 1.000 7395 +7397 3 829.983 851.970 900.449 1.000 7396 +7398 3 830.256 851.484 899.013 1.000 7397 +7399 3 830.733 850.634 897.604 1.000 7398 +7400 3 831.506 850.031 896.263 1.000 7399 +7401 3 832.524 849.635 894.995 1.000 7400 +7402 3 833.549 849.283 893.738 1.000 7401 +7403 3 834.380 848.888 892.394 1.000 7402 +7404 3 834.706 848.381 890.812 1.000 7403 +7405 3 834.778 847.777 889.084 1.000 7404 +7406 3 834.490 847.035 887.286 1.000 7405 +7407 3 834.105 846.365 885.472 1.000 7406 +7408 3 833.176 846.104 883.747 1.000 7407 +7409 3 832.308 846.101 882.115 1.000 7408 +7410 3 831.591 846.584 880.564 1.000 7409 +7411 3 830.930 847.102 879.080 1.000 7410 +7412 3 830.046 847.563 877.758 1.000 7411 +7413 3 829.059 848.000 876.621 1.000 7412 +7414 3 828.005 848.221 875.666 1.000 7413 +7415 3 826.876 848.196 874.894 1.000 7414 +7416 3 825.747 848.072 874.269 1.000 7415 +7417 3 824.619 847.920 873.732 1.000 7416 +7418 3 823.504 847.768 873.197 1.000 7417 +7419 3 822.392 847.615 872.628 1.000 7418 +7420 3 821.349 847.284 871.979 1.000 7419 +7421 3 820.320 846.966 871.251 1.000 7420 +7422 3 819.253 847.092 870.442 1.000 7421 +7423 3 818.185 847.209 869.579 1.000 7422 +7424 3 817.112 847.258 868.694 1.000 7423 +7425 3 816.039 847.307 867.812 1.000 7424 +7426 3 815.023 847.495 866.922 1.000 7425 +7427 3 814.009 847.685 866.051 1.000 7426 +7428 3 812.937 847.451 865.284 1.000 7427 +7429 3 811.850 847.359 864.648 1.000 7428 +7430 3 810.730 847.587 864.192 1.000 7429 +7431 3 809.613 847.836 863.906 1.000 7430 +7432 3 808.498 848.086 863.750 1.000 7431 +7433 3 807.385 848.348 863.682 1.000 7432 +7434 3 806.652 849.030 863.584 1.000 7433 +7435 3 831.023 852.034 900.178 1.000 7397 +7436 3 832.155 852.105 900.558 1.000 7435 +7437 3 833.261 852.215 900.754 1.000 7436 +7438 3 834.367 852.451 900.945 1.000 7437 +7439 3 835.471 852.744 901.079 1.000 7438 +7440 3 836.606 852.838 901.124 1.000 7439 +7441 3 837.742 852.958 901.093 1.000 7440 +7442 3 838.878 853.083 900.992 1.000 7441 +7443 3 839.920 853.518 900.816 1.000 7442 +7444 3 840.952 854.003 900.586 1.000 7443 +7445 3 842.017 854.418 900.354 1.000 7444 +7446 3 842.905 855.108 900.066 1.000 7445 +7447 3 843.826 855.763 899.713 1.000 7446 +7448 3 844.770 856.389 899.304 1.000 7447 +7449 3 845.582 857.166 898.834 1.000 7448 +7450 3 846.553 857.714 898.293 1.000 7449 +7451 3 847.232 858.493 897.683 1.000 7450 +7452 3 847.611 859.471 897.019 1.000 7451 +7453 3 848.539 858.876 896.353 1.000 7452 +7454 3 849.358 858.230 895.622 1.000 7453 +7455 3 850.379 858.630 894.947 1.000 7454 +7456 3 851.199 859.412 894.354 1.000 7455 +7457 3 852.196 859.922 893.819 1.000 7456 +7458 3 853.207 860.410 893.332 1.000 7457 +7459 3 854.030 861.155 892.867 1.000 7458 +7460 3 854.900 861.890 892.497 1.000 7459 +7461 3 855.992 862.116 892.192 1.000 7460 +7462 3 857.119 862.265 891.943 1.000 7461 +7463 3 858.244 862.141 891.744 1.000 7462 +7464 3 859.151 861.839 891.604 1.000 7463 +7465 3 858.874 860.745 891.607 1.000 7464 +7466 3 858.249 859.824 891.954 1.000 7465 +7467 3 831.093 837.747 962.035 1.000 7365 +7468 3 832.152 837.933 961.590 1.000 7467 +7469 3 833.125 838.457 961.327 1.000 7468 +7470 3 833.960 839.150 961.036 1.000 7469 +7471 3 834.620 840.016 960.716 1.000 7470 +7472 3 835.155 841.017 960.386 1.000 7471 +7473 3 835.528 842.076 960.002 1.000 7472 +7474 3 835.904 843.104 959.563 1.000 7473 +7475 3 836.122 844.163 959.098 1.000 7474 +7476 3 836.162 845.292 958.642 1.000 7475 +7477 3 836.230 846.422 958.191 1.000 7476 +7478 3 836.315 847.551 957.737 1.000 7477 +7479 3 836.501 848.662 957.264 1.000 7478 +7480 3 836.666 849.770 956.771 1.000 7479 +7481 3 836.463 850.890 956.287 1.000 7480 +7482 3 836.224 852.001 955.786 1.000 7481 +7483 3 835.870 853.063 955.251 1.000 7482 +7484 3 835.012 853.726 954.604 1.000 7483 +7485 3 834.602 854.638 953.845 1.000 7484 +7486 3 834.412 855.671 952.997 1.000 7485 +7487 3 834.452 856.730 952.098 1.000 7486 +7488 3 834.517 857.793 951.177 1.000 7487 +7489 3 834.668 858.883 950.309 1.000 7488 +7490 3 834.823 859.976 949.500 1.000 7489 +7491 3 834.652 861.035 948.716 1.000 7490 +7492 3 834.456 862.092 947.957 1.000 7491 +7493 3 834.364 862.881 947.332 1.000 7492 +7494 3 834.230 864.013 946.789 1.000 7493 +7495 3 834.571 865.055 946.257 1.000 7494 +7496 3 835.018 866.079 945.711 1.000 7495 +7497 3 835.436 867.115 945.146 1.000 7496 +7498 3 836.293 867.763 944.544 1.000 7497 +7499 3 837.242 868.365 943.919 1.000 7498 +7500 3 838.099 869.076 943.275 1.000 7499 +7501 3 838.645 870.010 942.544 1.000 7500 +7502 3 839.391 870.641 941.716 1.000 7501 +7503 3 839.391 871.747 940.862 1.000 7502 +7504 3 840.187 872.396 939.977 1.000 7503 +7505 3 840.874 873.101 938.997 1.000 7504 +7506 3 841.653 873.650 937.966 1.000 7505 +7507 3 842.641 873.954 936.947 1.000 7506 +7508 3 843.734 873.984 936.015 1.000 7507 +7509 3 844.829 874.013 935.161 1.000 7508 +7510 3 845.868 874.362 934.413 1.000 7509 +7511 3 846.645 875.120 933.786 1.000 7510 +7512 3 847.244 876.084 933.254 1.000 7511 +7513 3 848.243 876.415 932.753 1.000 7512 +7514 3 849.339 876.625 932.260 1.000 7513 +7515 3 850.402 877.000 931.787 1.000 7514 +7516 3 851.332 877.575 931.294 1.000 7515 +7517 3 852.337 878.079 930.835 1.000 7516 +7518 3 853.351 878.575 930.412 1.000 7517 +7519 3 854.099 879.423 930.054 1.000 7518 +7520 3 854.982 880.147 929.785 1.000 7519 +7521 3 855.830 880.909 929.580 1.000 7520 +7522 3 856.493 881.809 929.429 1.000 7521 +7523 3 857.048 882.794 929.345 1.000 7522 +7524 3 857.855 883.600 929.368 1.000 7523 +7525 3 858.678 884.394 929.463 1.000 7524 +7526 3 859.265 885.356 929.620 1.000 7525 +7527 3 859.746 886.393 929.835 1.000 7526 +7528 3 859.997 887.449 930.208 1.000 7527 +7529 3 860.519 888.298 930.672 1.000 7528 +7530 3 860.628 889.293 931.168 1.000 7529 +7531 3 860.260 890.225 931.650 1.000 7530 +7532 3 859.233 890.715 932.064 1.000 7531 +7533 3 858.232 891.209 932.484 1.000 7532 +7534 3 857.524 892.019 932.845 1.000 7533 +7535 3 857.331 893.091 933.150 1.000 7534 +7536 3 857.469 894.217 933.430 1.000 7535 +7537 3 857.794 895.293 933.671 1.000 7536 +7538 3 858.522 895.987 934.038 1.000 7537 +7539 3 834.485 862.169 947.302 1.000 7492 +7540 3 834.829 863.100 945.809 1.000 7539 +7541 3 835.147 864.045 945.137 1.000 7540 +7542 3 835.127 865.168 944.468 1.000 7541 +7543 3 835.107 866.292 943.813 1.000 7542 +7544 3 834.688 866.847 943.239 1.000 7543 +7545 3 833.930 867.678 942.701 1.000 7544 +7546 3 833.059 868.388 942.178 1.000 7545 +7547 3 832.325 869.227 941.640 1.000 7546 +7548 3 831.562 870.026 941.052 1.000 7547 +7549 3 830.819 870.810 940.400 1.000 7548 +7550 3 829.790 871.106 939.697 1.000 7549 +7551 3 828.910 871.734 939.022 1.000 7550 +7552 3 828.066 872.467 938.395 1.000 7551 +7553 3 827.201 873.175 937.815 1.000 7552 +7554 3 826.192 873.706 937.387 1.000 7553 +7555 3 825.126 874.103 937.017 1.000 7554 +7556 3 824.120 874.567 936.603 1.000 7555 +7557 3 823.242 875.184 936.099 1.000 7556 +7558 3 822.714 876.153 935.553 1.000 7557 +7559 3 822.501 877.236 934.993 1.000 7558 +7560 3 822.330 878.328 934.438 1.000 7559 +7561 3 822.613 879.396 933.324 1.000 7560 +7562 3 835.476 866.148 943.370 1.000 7543 +7563 3 836.527 865.737 942.371 1.000 7562 +7564 3 837.426 866.305 941.912 1.000 7563 +7565 3 838.504 866.480 941.357 1.000 7564 +7566 3 839.625 866.629 940.786 1.000 7565 +7567 3 840.673 866.947 940.212 1.000 7566 +7568 3 841.593 867.473 939.604 1.000 7567 +7569 3 842.673 867.398 938.963 1.000 7568 +7570 3 843.735 867.517 938.308 1.000 7569 +7571 3 844.792 867.802 937.667 1.000 7570 +7572 3 845.890 868.089 937.118 1.000 7571 +7573 3 846.987 868.377 936.659 1.000 7572 +7574 3 848.078 868.696 936.295 1.000 7573 +7575 3 848.925 869.379 935.698 1.000 7574 +7576 3 824.140 839.256 977.542 1.000 1 +7577 3 824.350 840.124 980.339 1.000 7576 +7578 3 824.560 840.993 981.526 1.000 7577 +7579 3 824.770 841.863 982.946 1.000 7578 +7580 3 824.980 842.731 984.528 1.000 7579 +7581 3 825.189 843.600 986.202 1.000 7580 +7582 3 825.399 844.470 987.902 1.000 7581 +7583 3 825.016 845.019 989.635 1.000 7582 +7584 3 825.421 845.002 991.360 1.000 7583 +7585 3 826.073 844.815 993.028 1.000 7584 +7586 3 827.054 844.454 994.434 1.000 7585 +7587 3 828.047 844.086 995.590 1.000 7586 +7588 3 829.056 843.651 996.464 1.000 7587 +7589 3 830.076 843.150 997.038 1.000 7588 +7590 3 831.148 842.842 997.357 1.000 7589 +7591 3 832.291 842.809 997.452 1.000 7590 +7592 3 833.422 842.915 997.410 1.000 7591 +7593 3 834.540 843.150 997.268 1.000 7592 +7594 3 835.480 843.624 996.929 1.000 7593 +7595 3 836.463 844.121 996.444 1.000 7594 +7596 3 837.064 844.847 995.767 1.000 7595 +7597 3 837.987 845.346 995.058 1.000 7596 +7598 3 839.045 845.737 994.386 1.000 7597 +7599 3 840.141 846.046 993.790 1.000 7598 +7600 3 841.216 846.376 993.258 1.000 7599 +7601 3 841.913 847.131 992.670 1.000 7600 +7602 3 842.845 847.739 992.104 1.000 7601 +7603 3 843.557 848.625 991.564 1.000 7602 +7604 3 844.406 849.333 991.004 1.000 7603 +7605 3 845.201 850.046 990.391 1.000 7604 +7606 3 845.797 850.905 989.716 1.000 7605 +7607 3 846.864 851.007 989.142 1.000 7606 +7608 3 847.955 851.295 988.621 1.000 7607 +7609 3 849.037 851.629 988.137 1.000 7608 +7610 3 849.998 852.209 987.658 1.000 7609 +7611 3 850.734 853.051 987.213 1.000 7610 +7612 3 851.376 853.985 986.784 1.000 7611 +7613 3 851.864 854.976 986.303 1.000 7612 +7614 3 852.811 855.546 985.779 1.000 7613 +7615 3 853.538 856.381 985.250 1.000 7614 +7616 3 854.353 857.094 984.735 1.000 7615 +7617 3 855.416 857.478 984.245 1.000 7616 +7618 3 856.403 858.031 983.786 1.000 7617 +7619 3 857.419 858.500 983.340 1.000 7618 +7620 3 858.515 858.596 982.906 1.000 7619 +7621 3 859.460 858.853 982.500 1.000 7620 +7622 3 860.420 859.191 982.139 1.000 7621 +7623 3 861.546 859.314 981.820 1.000 7622 +7624 3 862.649 859.618 981.576 1.000 7623 +7625 3 863.757 859.899 981.383 1.000 7624 +7626 3 864.877 860.119 981.198 1.000 7625 +7627 3 865.995 860.306 980.986 1.000 7626 +7628 3 867.114 860.476 980.742 1.000 7627 +7629 3 868.245 860.539 980.487 1.000 7628 +7630 3 869.378 860.529 980.232 1.000 7629 +7631 3 870.479 860.272 979.986 1.000 7630 +7632 3 871.582 860.047 979.776 1.000 7631 +7633 3 872.711 860.224 979.681 1.000 7632 +7634 3 873.840 860.389 979.695 1.000 7633 +7635 3 874.969 860.496 979.832 1.000 7634 +7636 3 876.098 860.619 980.050 1.000 7635 +7637 3 877.231 860.765 980.311 1.000 7636 +7638 3 878.365 860.804 980.610 1.000 7637 +7639 3 879.503 860.795 980.941 1.000 7638 +7640 3 880.585 860.997 981.324 1.000 7639 +7641 3 881.707 861.204 981.697 1.000 7640 +7642 3 882.825 861.390 982.108 1.000 7641 +7643 3 883.923 861.628 982.565 1.000 7642 +7644 3 884.906 862.202 983.052 1.000 7643 +7645 3 885.844 862.800 983.606 1.000 7644 +7646 3 886.563 863.628 984.248 1.000 7645 +7647 3 887.453 864.032 985.062 1.000 7646 +7648 3 888.300 864.586 985.967 1.000 7647 +7649 3 889.201 865.065 986.877 1.000 7648 +7650 3 890.332 865.133 987.678 1.000 7649 +7651 3 891.383 865.446 988.439 1.000 7650 +7652 3 892.351 865.929 989.139 1.000 7651 +7653 3 893.177 866.692 989.761 1.000 7652 +7654 3 894.057 867.401 990.326 1.000 7653 +7655 3 894.926 868.125 990.864 1.000 7654 +7656 3 895.693 868.927 991.416 1.000 7655 +7657 3 896.299 869.837 992.009 1.000 7656 +7658 3 896.651 870.863 992.625 1.000 7657 +7659 3 896.903 871.934 993.252 1.000 7658 +7660 3 896.796 873.004 993.854 1.000 7659 +7661 3 896.483 874.073 994.414 1.000 7660 +7662 3 895.893 875.040 994.879 1.000 7661 +7663 3 895.302 876.008 995.260 1.000 7662 +7664 3 894.801 877.021 995.557 1.000 7663 +7665 3 894.474 878.115 995.820 1.000 7664 +7666 3 834.565 842.620 998.399 1.000 7593 +7667 3 834.895 841.653 999.278 1.000 7666 +7668 3 835.868 841.073 999.642 1.000 7667 +7669 3 836.863 840.585 1000.096 1.000 7668 +7670 3 837.975 840.561 1000.656 1.000 7669 +7671 3 839.058 840.472 1001.319 1.000 7670 +7672 3 840.068 840.181 1002.092 1.000 7671 +7673 3 841.094 839.901 1002.918 1.000 7672 +7674 3 842.176 839.814 1003.741 1.000 7673 +7675 3 843.285 839.840 1004.531 1.000 7674 +7676 3 844.389 839.779 1005.284 1.000 7675 +7677 3 845.470 839.591 1006.001 1.000 7676 +7678 3 846.526 839.277 1006.692 1.000 7677 +7679 3 847.615 839.023 1007.339 1.000 7678 +7680 3 848.730 838.814 1007.938 1.000 7679 +7681 3 849.855 838.750 1008.529 1.000 7680 +7682 3 850.982 838.711 1009.126 1.000 7681 +7683 3 851.927 838.266 1009.728 1.000 7682 +7684 3 853.011 838.335 1010.422 1.000 7683 +7685 3 854.034 838.330 1011.245 1.000 7684 +7686 3 855.057 838.303 1012.164 1.000 7685 +7687 3 856.126 838.154 1013.090 1.000 7686 +7688 3 857.196 838.005 1014.003 1.000 7687 +7689 3 858.188 837.536 1014.874 1.000 7688 +7690 3 859.178 837.065 1015.683 1.000 7689 +7691 3 860.029 836.364 1016.428 1.000 7690 +7692 3 860.837 835.697 1017.187 1.000 7691 +7693 3 861.474 834.764 1017.817 1.000 7692 +7694 3 862.114 833.826 1018.349 1.000 7693 +7695 3 863.048 833.215 1018.903 1.000 7694 +7696 3 864.061 832.775 1019.516 1.000 7695 +7697 3 865.081 832.353 1020.166 1.000 7696 +7698 3 866.031 831.853 1020.863 1.000 7697 +7699 3 866.912 831.322 1021.628 1.000 7698 +7700 3 867.699 830.628 1022.372 1.000 7699 +7701 3 868.581 830.109 1023.708 1.000 7700 diff --git a/skeleton_keys/test_files/Surface_And_Layer_Polygon_Example.ipynb b/skeleton_keys/test_files/Surface_And_Layer_Polygon_Example.ipynb new file mode 100644 index 0000000..0099175 --- /dev/null +++ b/skeleton_keys/test_files/Surface_And_Layer_Polygon_Example.ipynb @@ -0,0 +1,325 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "from neuron_morphology.swc_io import morphology_from_swc" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### This notebook will walk through the expected format for surface_and_layers file. This is a required input for generating layer aligned swc files outside of the Allen Institute's IVSCC Protocol\n", + "\n", + "The surface and layers file is a json which contians x,y coordinates + resolution, for cortical laye\n", + "rs, pia and white matter surfaces, and the soma polygon\n", + "\n", + "This data is needed to map a cells laminar distribution to an average laminar template." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Load an swc file and its corresponding surface and layers json.\n", + "morphology = morphology_from_swc(\"./4493.swc\")\n", + "with open(\"./4493.json\",'r') as f:\n", + " surface_and_layers = json.load(f)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "dict_keys(['layer_polygons', 'pia_path', 'soma_path', 'wm_path'])" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "surface_and_layers.keys()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'name': 'Layer6a',\n", + " 'path': [[402.776, 956.5],\n", + " [508.56, 933.504],\n", + " [587.524, 917.712],\n", + " [788.136, 882.5],\n", + " [914.32, 864.0600000000001],\n", + " [1021.828, 848.352],\n", + " [1189.364, 838.748],\n", + " [1186.068, 988.556],\n", + " [1023.696, 996.224],\n", + " [836.236, 1010.16],\n", + " [683.616, 1024.796],\n", + " [548.424, 1040.128],\n", + " [422.984, 1054.76]],\n", + " 'resolution': 1},\n", + " {'name': 'Layer6b',\n", + " 'path': [[421.824, 1059.276],\n", + " [547.056, 1046.32],\n", + " [686.3240000000001, 1029.048],\n", + " [832.956, 1013.7520000000001],\n", + " [1024.384, 999.552],\n", + " [1185.032, 991.136],\n", + " [1184.24, 1016.604],\n", + " [1038.332, 1022.7040000000001],\n", + " [875.26, 1031.7640000000001],\n", + " [713.5840000000001, 1047.792],\n", + " [635.532, 1056.8600000000001],\n", + " [537.968, 1070.092],\n", + " [416.016, 1086.1200000000001]],\n", + " 'resolution': 1},\n", + " {'name': 'Layer1',\n", + " 'path': [[372.38, 357.576],\n", + " [517.904, 334.42],\n", + " [686.264, 321.176],\n", + " [785.188, 311.344],\n", + " [906.48, 298.588],\n", + " [1043.568, 290.116],\n", + " [1155.244, 286.264],\n", + " [1153.704, 367.904],\n", + " [1048.96, 374.064],\n", + " [952.688, 380.996],\n", + " [847.176, 389.468],\n", + " [737.812, 401.02],\n", + " [656.944, 408.724],\n", + " [549.888, 418.736],\n", + " [477.492, 424.896],\n", + " [366.588, 428.748]],\n", + " 'resolution': 1},\n", + " {'name': 'Layer4',\n", + " 'path': [[378.432, 708.808],\n", + " [452.208, 699.3480000000001],\n", + " [591.5600000000001, 681.692],\n", + " [758.016, 656.596],\n", + " [878.384, 636.42],\n", + " [946.82, 624.952],\n", + " [1091.696, 609.736],\n", + " [1180.984, 603.856],\n", + " [1183.032, 664.04],\n", + " [1087.184, 670.344],\n", + " [985.664, 681.064],\n", + " [859.552, 701.24],\n", + " [730.916, 715.744],\n", + " [630.6560000000001, 728.988],\n", + " [561.924, 739.7040000000001],\n", + " [377.8, 766.82]],\n", + " 'resolution': 1},\n", + " {'name': 'Layer5',\n", + " 'path': [[377.688, 771.1320000000001],\n", + " [460.568, 757.552],\n", + " [564.452, 743.952],\n", + " [629.948, 733.428],\n", + " [731.644, 718.828],\n", + " [866.136, 705.004],\n", + " [988.852, 687.504],\n", + " [1088.508, 677.052],\n", + " [1176.08, 670.064],\n", + " [1188.808, 832.4],\n", + " [1025.088, 842.908],\n", + " [855.052, 868.696],\n", + " [786.756, 878.452],\n", + " [678.044, 898.66],\n", + " [586.7520000000001, 913.296],\n", + " [402.776, 949.532]],\n", + " 'resolution': 1},\n", + " {'name': 'Layer2/3',\n", + " 'path': [[365.81600000000003, 435.68],\n", + " [474.136, 430.62],\n", + " [565.292, 421.81600000000003],\n", + " [659.696, 414.18],\n", + " [747.052, 405.64],\n", + " [849.96, 393.04],\n", + " [956.54, 384.076],\n", + " [1052.828, 378.212],\n", + " [1152.164, 372.524],\n", + " [1181.432, 598.956],\n", + " [1090.968, 606.6560000000001],\n", + " [945.94, 621.792],\n", + " [758.66, 653.948],\n", + " [590.3000000000001, 678.54],\n", + " [449.052, 695.568],\n", + " [377.168, 703.1320000000001]],\n", + " 'resolution': 1}]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# surface_and_layers['layer_polygons'] is a list of dictionaries, each representing the coordinates path for a single cortical layer\n", + "surface_and_layers['layer_polygons']" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'name': None,\n", + " 'path': [[822.792, 832.192],\n", + " [825.08, 832.788],\n", + " [827.232, 834.732],\n", + " [828.468, 837.0],\n", + " [827.9200000000001, 840.684],\n", + " [826.432, 842.952],\n", + " [822.836, 843.8000000000001],\n", + " [820.2040000000001, 842.288],\n", + " [818.556, 838.808],\n", + " [820.2280000000001, 835.076]],\n", + " 'resolution': 1,\n", + " 'center': [823.9748, 838.0319999999999]}" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# surface_and_layers['pia_path'], surface_and_layers['soma_path'] and surface_and_layers['wm_path'] are each single dictionaries \n", + "# contianing the polygon path coordinates. the surface_and_layers['soma_path'] has the added key of center, which is the soma centroid\n", + "surface_and_layers['soma_path']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Visualize surface and layers with raw orientation morphology" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'Example Morphology With Surface and Layer Polygons')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeEAAAEICAYAAABoAUxEAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8QVMy6AAAACXBIWXMAAAsTAAALEwEAmpwYAACVrUlEQVR4nOydd3wcxd3/37PXm+qp2ZY7lrFNMdU2NQnFdBIgQKgOJU/ASZ6HhxZCiAMJNXHy5AckoRlMsxNC6JgAoSVYgE0JzcK4N3XpdKeruzu/P3bvfCed5KZmed+v12pnZ2d351Z799nvzHfmK6SUWFhYWFhYWAw8ymBXwMLCwsLCYk/FEmELCwsLC4tBwhJhCwsLCwuLQcISYQsLCwsLi0HCEmELCwsLC4tBwhJhCwsLCwuLQcIS4T5GCHGxEOJfg12PHUEI8bAQ4lc7eeybQohL+7pOfYkQ4nMhxNG97B/UzyCE+LYQYoMQIiKEmD5Y9dhZhBBHCyE2DnY9BgIhxDwhxGODXQ+L4cNuJcJCiLVCiJj5Y5Ve7h7sevUVphhIIcR+XfL/buYfPTg1GzoIIarMe1GRlfezHvKWAEgpp0op3zTzd/lHVAhxgxBijfn8bRRCLN6V8wG/AeZKKf1Syo928VxDDvN/M3Gw65GN+RykzP9huxDiXSHEzMGul8Wex24lwianmD9W6WXuYFeoj/kKuDC9IYQoBWYCTTtzMiGEvY/qNSSQUm4BvgaOzMo+EliRJ+/tvr6+EOIi4ALgGCmlHzgIeH0nz5X+34wBPu+bGlp0pZfvwGLzf1gG/At4WgghBq5mFha7pwjnRQjxRyHE37K27xBCvC4MioUQLwghmoQQbWZ6VFbZN4UQvzLfhiNCiOeFEKVCiMeFEB1CiA+EEGOzykshxI+FEKuFEM1CiLuEEHnvpRBishDiVSFEqxCiTgjx3W18lMeBs4UQNnP7XODvQDLrnC4hxO+FEJvN5fdCCJe572jTOrtOCFEPLMjKu8Gs71ohxHldrlsshHhRCBEWQrwnhJiQdb1Z5j0ImetZPXxWRQhxoxBinRCiUQixUAhRmLX/QnNfixDi52Y9jhFCVAohouYLR7rsAeb/y5HnUm9jCq55nw4A/q9L3kyzHFnXmQ3cYN7fiBDik6xzjhFC/Nv8/P8QQgR7+P8cDLwipVwFIKWsl1Lel1XvtUKIY7K2M5a3EGKs+excIoRYD7wjhIgANuATIcQqs9z1QohVZl2+EEJ8u8t9vkwI8WXW/gPM/BFCiL+Z922NEOLHPXwGhBAnCSE+Mp/vDUKIeVn70vW8SAix3nxmfpa13yOMLow2IcQX5j3ZYYQQE4QQ/zSfh2bz+1Zk7rtGZH2fzbw/CCH+z0wXCiEeFEJsEUJsEsb312buu9j8X/5OCNECzKMXpJQp4BGgEig17+Nz5nf2ayHEZT3U/0UhxI+65P0n/f8SQhwnjO98SAhxrxDiLWF2e/T2XdmO+3+IEGKZ+b9rEELM3/67bjHkkFLuNguwFsMCybfPi2FFXgwcATQDo8x9pcAZZpkA8Ffgmaxj38SwriYAhcAX5rmOAezAQmBBVnkJvAGUAKPNspea+y4G/mWmfcAGYI55nulmvab08BneBC4F/gGcYOa9jyEoG4GjzbybgVqgHOMt/l3gFnPf0YAK3AG4AE9W3nwz7yigE6gxj3kYaAEOMev5OLDI3FcCtGFYf3aMl4I2oDS7zmb6++Z9HA/4gaeBR819U4AIcDjgxGiCTaX/n8BLwA+z7sXvgP/Xw326CPjETB+EIbZ7dcmLAc6uzw3GD/Jjee77KmCSeb/eBG7v4drnA63ANeZ1bL09o9nXA8ZiPDsLMZ4NT9bzNDHrmLOAERgvyWeb/6uqrH2bMIRPABMxLGkFWA7cZN7f8cBq4PgePsfRwD7mcfsCDcDpXep5v3k/9gMSwN7m/tuBd8xnoxr4DNjYy/c25/Nl5U8EjsV4JsvM/+PvzX1V5ucuMrftQCNwoLn9d+DP5n0sx/ie/CDrO6gCPzKP8+S5dvb/xQXcBaw3t98G7gXcwP4YrVDfzHPcd4H3ss65H8b3yAkEgQ7gO2YdfoLxvG/Pd2Vb938pcIGZ9gMzBvu32Vp2fhn0CuxQZY0fuAjQnrVclrX/UIwfyHXAub2cZ3+gLWv7TeBnWdu/BV7O2j4F+DhrWwKzs7avAF430xezVYTPBt7pcu0/A7/ooV5vYojw+cCTwGTgK3NftgivAk7MOu54YK2ZPhrDanZn7T8a40fJl5X3F+DnZvph4IGsfScCK8z0BcD7Xeq5FLg4u85m+nXgiqxyNeYPjx1DHJ7M2uc163lM1r36t5m2AfXAIT3cp7GABhQB/wP82szfnJX3RpfnZlsifGOX/+eSXp6f84DXMESiBbgu37W6Xo+tP67ju5wvr0hl7f8YOM1MvwL8JE+ZQzFFJCvvp2S9PG7ju/V74Hdd6jkqa//7wDlmejW5z//l7IQI5yl3OvBR1vbLmN9v4GTgCzNdgSFKnqyy56b/5xjfwfXbuNY88/lrxxD3fwIHYrxUaEAgq+xtwMN5/p9ujBfSvczt3wD3mukLgaVZ5xAYL+Tb813Z1v1/G/glENye/621DO1ld2yOPl1KWZS13J/eIaV8D+MHQmCIDABCCK8Q4s9m008HxkNcJLY2+YJhCaSJ5dn2d6nHhqz0OgzLpStjgEOF4fjRLoRox/gBr9zGZ3wa+CYwF3g0z/4R5jV7un6TlDLe5Zg2KWVnL8fUZ6WjbP28Xa+VPnbkdtbLjvGjOYKseyaljGIIWJpngSlCiHEY1lFISvl+nmsgpVyLYQ0egdEE/Y65692svB3tD+7p8+e7/uNSymMwBP+/gFuEEMfvwLU29LZTGM32H2c9M9MwLCswRGJVnsPGACO6PGs3YNz7fNc4VAjxhtl0HTI/R9cm+N6eia7P/w4jhKgQQiwym5M7gMe61OERjBdSzHX6uzAGcABbsj7rnzEs4jS93mOTv5i/IeVSym9KKZdjfLZWKWU4q1ze5938ji0GzhdGd9S5WXXs+rxLjBdpsvb39F1J09P9vwSj1WaFMLqHTt6Oz2oxRNkdRbhHhBBXYjQtbQauzdr1vxhvmodKKQvY6sCzK04Y1Vnp0eY1u7IBeKvLS4NfSvnD3k5sCtTLwA/JL8KbMX6Ierq+zHNMsRDCtx113ta10sdu2s56qRgvNFuA7H54D0Y3gVFh4wftLxg/theQ/3Nnk+4XnokhvmCI8ZEYTd49iXC+e7NTSClTUsq/Av/BEEowrGNvVrF8L1w91kEIMQajGXIuRpN/EUZzb/pZ3YDRbdKVDcCaLs9aQEp5Yg+XegJ4DqiWUhYCf2L7vw9b6P787wy3YtyLfczv5fld6vAMsK8QYhqGJfy4mb8BwxIOZn3WAinl1Kxjd/b/vBkoEUIEsvJ6et7BeFE4D/gWEJVSLjXzuz7vInub3r8rvSKlXCmlPBfjpeMO4Kku322L3YhhI8JCiEnAr9j6I36tEGJ/c3cAw5ptF0KUAL/og0teIwyHr2qM/p58w1ReACYJIS4QQjjM5WAhxN7bcf4bgKNMq68rTwI3CiHKhOFAdBOGFbEtfimEcAohjsD4UfvrdhzzkvkZvieEsAshzsbo332hh3r9jxBinBDCj/Eju1hKqQJPAacIw8nLidGs1/VHfyFGU+KpbJ8IXwhsllJ2mHn/MvMKMZrM89EAjBU9ONJtC9Pp5yQhRMB0rjkBmAq8Zxb5GDjH/F8fBJy5g5fwYQhIk3m9OWwVeIAHgKuFEAcKg4mmcL8PhIXhkOcRQtiEENOEED05TQUwLL64EOIQ4Hs7UMe/AD81n/9RGH2v28IphHBnLTazDhEgJIQYidHPnsF8MXsK44XhfSnlejN/C4bfxG+FEAXm/2GCEOKoHfgMeZFSbsB4qbvNrOe+GJZn3u+XKbo6RhdW9jP7IrCPEOJ0YXhnX0nuC1lv35VeEUKcL4Qok1LqGM3pmHWw2A3ZHUX4eZE7Tvjv5kP+GHCHlPITKeVKDBF7VBhew7/HcHBoxnBoWtIH9XgWwxHmY4wv3INdC5hNWscB52C8+daz1WGqV6SUm6WUPU368StgGYYF9inwoZnXG/UY/VebMSyK/5JSrtiOerRgCPb/YjQfXwucLKVszlP8IYwforeBNUAc8wdaSvm5mV6EYSVEMPriElnX+jfGj8mHUsptNXG+hWEJZN+jjzH+z8vN1oR8pF88WoQQH27jGvnowHi21mP8AN6J4VCWrsfPMSzVNox+uyd25ORSyi8wftCXYrww7AP8O2v/X4Ffm+cNY1iLJVJKDeP/tD/GvW/GEOzCHi51BXCzECKM8RL3lx7K5eOXGM2nazDEcFsvTGAMwYplLXPM8xwAhDC+Q0/nOe4RjHvQ9RoXYjhAfYFxr5/CcObqC87F6JfdjOEA9gsp5Wu9lF9o1jEj1Ob34yyM56MF48V1GVuf9x6/K9vBbOBzYXjW/x9GX3FsO4+1GGIIo6vCYkcQQkgMZ4yvB7su24MwJvl4TEo5ahtFBwzz7b8d4z6uycr/J/CElPKBwaqbxdBBCDEaYwx4ZVaLx5BCCHEhcLmU8vBeyigYfcLnSSnfGLDKWQx5dkdL2GI3RQhxiukk58PwJP0Uw5s4vf9gDMtoV2egshgGmMJ1FcZwuaEqwF6MVoX78uw7XghRZLbG3YDR/VI7wFW0GOJYImwxkJyG0cS3GWNc7zmm1yhCiEcwhv38dxfPVIs9EPNFrQPDU74vfDj6HNMjvgmj2yBft8NMDE/2ZoxhjqdbzcYWXbGaoy0sLCwsLAYJyxK2sLCwsLAYJIb05P7BYFCOHTt2sKthYWFhsVuxfPnyZill2WDXw2LbDGkRHjt2LMuWLRvsalhYWFjsVgghdmoWM4uBx2qOtrCwsLCwGCQsEbawsLCwsBgkLBG2sLCwsLAYJCwRtrCwsLCwGCQsEbawsLCwsBgkLBG2sLCwsLAYJCwRtrCwsLCwGCSG9DhhCwsLi56QukQmNfSEhjSXTDorX09qICUIgUhHsBbCCKcgMP4IzH3d89PF8x1j7NuaJl0uXWRb++hyvqwyiseOa0xB390wiyGJJcIWFhYDglT1buKYI575BDWZX1hlUkOmhncce2d1gPIr9x/salj0M5YIW1hYdENKCaq+VTDTwrctccwS16770bYzWIwAnAq4FHAIdCdIB+he0AolqkNHs+uodo2UXSNpV0nZVJJ2lbiSJGFLEVcSxGwJYrY4MRKkZIqUZiwum5OrDvhf/E4fSIwFicxKZ/LNADcyK02XcjJdIJO/dTtnX5d05px590kUp22H/mcWuyc7LcJCCDfwNuAyz/OUlPIXQohxwCKgFFgOXCClTJoxNRcCBwItwNlSyrW7WH8LCwuMH22Z1HsQRBWZ0LuIp4pM6pm0ntTNchp6QkcmVdhOQ1NXJKopikm7StKWIm5LEleSxNxxYl5TEEWcqBInKmJERJROESNMhIjoJEyUsIgQUxIkRWprE24+VHPZDpyKE4fNYawVB5rUaIm3cNKEkzmo8qCcsr1d0sKiv9gVSzgBfFNKGRFCOIB/CSFexgjC/Tsp5SIhxJ+AS4A/mus2KeVEIcQ5wB3A2btYfwuL3RqpS0P44ip6TEXGzXQ8T7oXq1Qmta0W1TbQbLphQdq2CmZMiRNTEnQ6Y3S6okRElDAROogQVxJElYS5jmfKxhTD0lSFljm3x+7BY/fgtXvxODx4bB6cNkMA02uHzYFD8VOsFFPRZV+mjFkuLZ5d8/Md07WMXdi39ruavLPxHa54/QocNkdf/hstLHaanRZhMxh7xNx0mIsEvgl8z8x/BJiHIcKnmWmAp4C7hRBCWgGNLXZTpJTIlI40BVSPa0Y6npWOaaaIGnldxVYmtG1eR7VpJOwpErYUCSVJzBTDqBIj4ogScXYSEVFTIE1xVOJZork1L6Yk0IVuiKTdg9fhzYhmdtrYV85o+9hu5TyOrDJZ2267G0UM7QEXST0JGBayhcVQYJf6hIUQNowm54nAPcAqoF1KmW4s2giMNNMjgQ0AUkpVCBHCaLJu7nLOy4HLAUaPHr0r1bOw6BWp6rmCaYpmtmBm0jEznchKxzXQe3+HlApoTknKoZG0p4jZk3QqMSLeTkK+CO2EaJFttNNBRIkRtcWM/bYYUSVGpy2G2+mh0FWI3+HvQTR9BOxBKsztbYnr7iCW/UVKTwHgtFkibDE02CURllJqwP5CiCLg78DkXa2QlPI+4D6Agw46yLKSLfKyzWbcmIqeyEp3ad7VYxqo2+70FC4b0iXQXZKUQydpV4kVJYja4kSUKCERJkQHLbKdZtlKo9pMC210mgKaEMmczka/w0+Rq8hY3EUUu4opdJVR455EkauIYndxZn+xu5hCZ6HVdNqHpDRDhB2KdU8thgZ94h0tpWwXQrwBzASKhBB20xoeBWwyi20CqoGNQgg7UIjhoGWxhyJTOno0hRZV0aMp9PS6p77RHWzGFQ4F4bahuO0Itx3pAjWgkLQrxO0qUVuCTiVGh4gQEmFaTSFt0lqo1xppUBsJq5Eez+93+Cl0FVLsKqbIbQjnNNeYbkKaEV1X0Q4Jal1dHafOOZUNGzZQXV3NggULqKmp2e7jLbpjWcIWQ41d8Y4uA1KmAHuAYzGcrd4AzsTwkL4IeNY85Dlze6m5/59Wf/DwQOrSsDZNAdWjKnpnlqimBTaWm9/rOE9FoLhtCI8dxW1HcdmwBz0oppgm7Cni9mTGIu0QnbQToo0QLXobjXozbal2QokQ7Yl2QskQqq4aXgspc8nC5/AZoukqpjBQyGTXFGa4ZnW3TNOiu4OCujNcddVVLF26FICNGzcyY8YMamtrLSHeBZKa0SdsV6zRmRZDg115EquAR8x+YQX4i5TyBSHEF8AiIcSvgI+AB83yDwKPCiG+BlqBc3bh2hb9QNrRqJt4RlPonWqumHaxXHv0zBWgeO0oXgeK14GtyIWjyofitaO5BSmXSsyZotMWJaREaLcZFmmr1kYoaQpoIpQR045kB7ForMfP4FScFLmKKHQXUuQqYlzhOApdRjp7nZMegCbf5uZmfvKTn/DMM8/w0EMPcfbZ2x4YMH/+fNra2njvvffQdZ329nZLiHcRyxK2GGqIoWyMHnTQQXLZsmWDXY3dEqlJ9Fi2Ndr7Ot0kjNrz8yCcNlNQ7Ui3QHND0qWRdKrEnEmi9jgRe4wOJUJICdMqQrTSTiQVySzhZJhIKkJnshNV9jzY0yZsGbEsdPYgnmY6e9tj9/TH7dxpamtrOfvss2lrayMcDgPg8/mIRHpu5s53jiOOOAJVNe7XwQcfzPvvv98v9R3uPPjpg/z+w9/z/nnvD7lnpS8RQiyXUh607ZIWg43VJrMbIFM6WjjZzfrMbtrt2q8q4730mSog3Qq6R6C5dJIejXhBipgjQac9TsTWSbstQrvooEVpo0W20UQrbaohqJ2pTrNiQNxcul5CKPgdfgLOAH6HH5/DR4W3gglFE/A7/Mbi9BNwBPA7/d2E1efwDagHb3NzMwsWLGDOnDkEg8FdPl9afDdv3pwRTwBFUXjwwQd7ObI7M2bM4J133mHWrFlIKfnwww8ZNWoUqZRh1bndbv785z/zwgsv8PzzzxMIBGhtbUXTNBRFobS0lNbWVqSUOelx48btcf3MGUvYGqJkMUSwRHgQkVIi4xpaKIHWkTTW6XR6uyOB3tmzxag5JSmXTtKZIu5IEfXGiRTE6LB1ZqzRFtFGEy00SMNzN6rE808PpANJcNlcGZH02431SMcoahyTDVF1+rsJqc/pywiq3+HHY/d0myhhqNLc3Mypp57K0qVLWbduHXffffcOn2PJkiVceOGFLFy4kKKiohzLVVEUysvLd0r0mpubmTdvHs888wzpVitN09i0aVNOuRNPPJGeWrXq6+t7TB988MH4/X40betLm67rqKrKk08+yezZs7e7rrsDSS2JTdiwKdaUkBZDA0uE+wmpS/RIEi2UzBLWRO52KJHXOSnhUom4Y7Q6OmjwN7M50EiDaKbN1kGHLULY1kmHrZOwrRNN5B7vc/gyFqjP4cuI5FhnDdMcB24VTnN/WjizhXQwh8T0tUW6Lerq6jjmmGPYuHEjAK+88kqP9Zo3bx5PPfUUzc3NaJrGiBEjUBSF6upqVqxYQVtbGyeccEK3Y202G6qqsmrVKo488shu+xVFwe/3s2bNmhwxLCkpQdM0QqFQ3nOWlpYC0NramhF8t9vNhAkTtmkJRyIRwuFwZsnHCSecQHl5ed5zxGIxHn/8cWbMmLGNOzy0SOkpa3iSxZDCEuGdQKY0Q0zTotpVXDsSaOFkt7l3pSJJeLStAlvewkaxhfVyM032Vprt7bTaQ6QUlWJXMZW+Sip9lZR7yxnpnExNFwu0a5Ou1+7d7d/wr7/+eh588EHq6up44IEH+u066ebihoYGEokEYIjho48+mrf8nXfeyT333JOTt3nzZoCMgPdEKpWiubm51zL5aG1tzZvvcrl48803MwJYW1vL9773PSorK7fb0m5ububOO+/kjTfeYNOmTd0s4dbWVnRdp7GxEchvTR922GE5L0oOh4OjjjqKxsZG7r777iHZzJ3SU9a4a4shheWYlYWUEhlTUTPCaoir3pFEDSXQOwyR1aPdm4d1JyS8KhFXnDZnBw22FjZSz1q5gU2igRZHOyFbBCkkTsVJlb+KSl8lVb4qqnxVGcFNp4ez00hvBINBWlpaEEJQXV3N4sWL+9za6uroBGC323nsscd69Fo+9thjee2113A4HKiq2mPTb08oioKuG29lQogdPj6ba665hjvvvHOnj98e0i8p8Xg8ryVcV1eXc/+64na7KSoqGnL9zjcvvZnX17/OW2e/NdhV6Vcsx6zdhz1GhKUm0SLJjLB2s2LNdb5ZlHSvIOE1LNg2R5hGWwsbRT1r9PWskRtosbcTtW31Tgp6ghkxTYtsttCWuEt2m/7SgWbJkiWcdNJJGcGy2WyMHDlyh8S4rq6Oq666ivnz51NaWsr111/PokWLMn2daYemrpSUlPDiiy8yceJE5s2bx0svvcSJJ57IvHnzaGlpyTlnup82Ho/T0tL7nDPZAtwVv9+P3++ntLSUzz//HACPx8M///lPzjzzTEKhEJWVldTX1xMIBPjOd77DvHnzBqSpvjeyRRqgs7OTzk7DYa/r53W73VxyySVDot4///fPqd1Sy6tnvjqo9ehvLBHefRjWIpzcGKbtma8NazaS7D6W1SaQfsUUWMOC3SqwG1iprqbR1tItSswI34gcy7XKv1VkK7wV1hhEk2wx3BFLqLa2lhNOOIH29vZMnqIoVFVV8dRTT21TjE866SReeuklioqKkFLm7VPtCSEEXq83IyhgNP+ed9553HHHHXlFxO12Z5q0e8PlclFcXExpaSmRSISTTz45R5h8Ph/RaLTb9XcH0s3bH330EZdeeinXXnttTlM/wJVXXrlTTm99yXVvX8enzZ/y0ndeGtR69DeWCO8+DGsRTjVG2fC3j7MEtpWNop61+ga+0lazUd2c4yWsCIVyb3m35uFsS7bAWWBZsdtJWgzdbjcFBQXYbDbGjh27Xc2T2V7B2Z7AiqJw8cUX9yiIYIj/EUccQVNT0y7VP1+z8YQJE3jxxRcz9a+trWXmzJmZuuWzeF0uFwcccECPn3vJkiWce+65mZeOioqKnD7Y3ZW6ujrmzJnDBx98gKqqTJw4kZUrVw5qna568ypWt6/mmdOfGdR69DeWCO8+DGsRBvjGX75Bc8xwigk4AzmC2rXJuMxbZk1n14fU1dVx4IEHdrPqCgsLcbvdxONxFi1atM1hMEuWLOHb3/52pukTYMSIEYwZM4bx48fz5ptvkkqlsNlsVFRUUFBQwE9/+lNuvvlmNm3axD777MMbb7xBNBrdrnqXlpYyadIkfvKTn3D11VezefPmHHFNNxcDHHnkkT02bwshmDlzJg899FBe8W1ubs44omUzc+ZM3n333e2q6+5AbW0tc+bMYcGCBYPuTf2j139EQ7SBv5zyl0GtR39jifBuhJRyyC4HHnig3FU+avhIrmxdKcOJ8C6fy2LHWbp0qRw9erQsLy+Xfr9fYnQKZBZFUeTIkSPllVdeKZuamrodO378eDl16lRZUVEh3W53t+N7WgKBgKysrJRVVVWyqqpqu48DZHV1dU49VqxYIffaa6+cMqNGjZKjRo3KbJeXl+fsF0LIl19+udd784tf/CKnfEVFhZw5c6ZcsWJFn/8fLAwu/8fl8nsvfG+wq9HvAMvkEPgNt5ZtL8Pe7Nu/fP/BrsIezYwZM1i3bh2QOyxmw4YNNDQ0oOs6mzZt4p577mHhwoV4PFu9wpubm3t0aOpKuunY4/EQi8Xyjn91uVyUlJQAsGXLlky+3W7P8fTdsGEDFRUVOcfquo7X681Y0xs3bsTtdmf2p4fypHnppZe2e6ILr9fL3/72t2E3MUZfI6UkoSWIqbG8S1SNEkvlyUtvp2J83vI5E4smDvZHGRSWL19ebrfbHwCmYcz3bzEw6MBnqqpeeuCBBzZ23TnsRdhi6BAMBnOG1nQdq5tPOO12OzU1NbS0tKDrOjabjZKSEurr63O8ko2Xf4jFYlRUVFBWVkZzczNCiEwT9X333UdNTQ3Nzc1UVVVlhPexxx7j3HPPzZwDuotqPrKbx7NZunTpdjW7zp07F5/PN2ATkwwUutSJqTEiyQidaiedyU461c5uAplXRLvmZx0T1+LoUgcJNh3smoJdE+ZiptWtaYem4JYO3NKJS3fg0u3MspdzwBnHDvYtGhTsdvsDlZWVe5eVlbUpijJ0+yGHGbqui6ampin19fUPAKd23W+JsMWgkbaS0w48a9as6Ta0ZVtDk5YsWcJ5551HcXExq1atAqChoSEzoUW+vthgMMj+++9P2t/gV7/6VY4Al5eXdztG13Visdg2vZaPPfbY7e73DAaDXHPNNdtVtr9JC2dnqpNIKkI0Fc3ME951iSQjRNVoN5HNrFOdCEmuIGals0XToSl4pBO3dODSHXh0G4WaDbuuYFcV7JofRfWjqBKh6pDSIaWB3DENsTkc2OwOkrEoByX2TEsYmGYJ8MCjKIosKysL1dfXT8u33xJhi0GnpqZmpx2RZs+ezYsvvsgxxxyTk79+/XqmT5/OP//5z7yi+NhjjzF16lQ0TeOzzz7L5B900EF88MEHPV5vW8ORpJTU1dUN2OQUUkqiatSITpXMjVSVXqfzMyKaFtlkmFgiSiIeJRWPY1OFKYzCFEBDJLMtTJdmywimX7NRrNtwaAKbasemFiJSAURKB237uhHSKDY7DrcLh9OFw+3G7nLjCLhxuFzm4sbhcmPPpM1yZnmHy20em7+sYrORjEX5fxd/l+b1a5l40KH99B8Z0iiWAA8O5n3P2wVgibDFbs8ZZ5yRsVBtNhtOp5NYLEYsFuPII4/k7bff7ibENTU1TJ8+nWzve0VReOyxx3q91iOPPMI55/QcCvu1115j7ty5vPrqtieD2F4BzUmnjLLhRJh4NIIai2FPglNVcKaUrWsz7UgpuFQFt+bArdoo1RQqVIFNAyUlEdIDbN/sbEJRcLo9GQF0uDyG6Jl5TrfHEE8zbZTzGGXTQunKFda0UNrs/f9T5PR4KSyvoGn92n6/loXF9mKJsMVuzeLFizNzOAP88Y9/5Mgjj+S4445j/fr1pFIpvvGNb/Dxxx93s06vvvrqHEH1+XzbtGDPPvtszj77bOrq6jjyyCNpbGpE8SjYA3Zsfht2v52yb5Tx8GcP05Hs6CagGcFNhElFY9hT5IpnZi3MtQ2v6sCtOShTFUakBPakREk5gGJzyY/D48Hl9eH2+XF5fbi8XlMw3TizhbHL2pnZ9my1LN0ebHb7bj9GPjh6LM2WCA8aXq93ejQa/Wigrvfee+95fvCDH4yJRCI2RVHkxx9//KXX6x1SrQG7LMJCCBuwDNgkpTxZCDEOWASUAsuBC6SUSSGEC1gIHAi0AGdLKdfu6vUt9mwuuuiiTHrRokWZuZ+XL1/OXnvtRXt7O/F4nKlTp1JZWZmZcau2tpZzzz0351yHzjiUtVvWYvPZaEu00Z5opz3RTlu8LWfdFGli5YaVlPyshDJ/GQ6p4E7a8CQUPAkbieQaXlv0AJ6kDZ/qwqPZKVVtVKYU7CmwJZ0ItaTXzyWEwOn1mgLqx+XzmULqy6TdPh8un98o5zXS6TJOrwdlNw/m0R8Eq8ey+sMPUFMp7A4rkMNwJT12/4ILLhj3yCOPrJk5c2asvr7e5nQ6h5QAQ99Ywj8BvgQKzO07gN9JKRcJIf4EXAL80Vy3SSknCiHOMcvlny3fwmI7uP/++zP9szabLSf4QmlpKX9/8e9896LvEtEi2Pw2OgOdnHrzqfiDfhJKglFXjMpYsDa/jS3+LZzyj1NAgkMVeBI2U1xteJI2nB3gidkojikckfDh1Qrx6nacIr/YuXx+vAUFOE3hdKcF1OfH5fFuTWcJa1pcHe7dJx7z7kRw9BikrtO6aQPlY8cPdnUsgCeeeKLw9ttvr0qlUkpxcbG6ePHi1SNGjFDHjx8/benSpStGjBihaprGuHHjptXW1q4AmDNnzphNmzY5AebPn7/+uOOO67zqqqtGrF692rV+/XrXyJEjE+eff37r3nvvHZs5c2YMoLKyMjP/8HnnnTf6k08+8cXjceWUU05p+93vfrc5f+36n10SYSHEKOAk4NfAVcL41fgm8D2zyCPAPAwRPs1MAzwF3C2EEFLuoJujxR5HXI0TSoQIJUOsb1zPdTddx5r6Ndh8NirOqMiI6LjrxmEP2HEXu7EH7KhSpeLGCiqoAGk0+3qSCu6YDVcInBGBu1XBvdkQWa9mxyvteIUdRx5h1aUkmkgSjicIJ2LUxxOE4wkiiQROn58/3v8g3sIivEVFeAsKsdktS2uoUTZ6LADN69fu0SJ8zVOfVH9VH/b25TknVQaid52534YdPe7YY4+NnHPOOSsURWH+/PnBm2++ufL+++/feOaZZ7Y88MADJTfddFPjs88+W7D33nvHRowYoZ5yyinjrrrqqobjjz8+snLlSufxxx+/1+rVqz8HWLlypfu9995b4ff75c0331wuhODwww/fq7W11f6d73yn9Ve/+lUDwPz58zdVVFRoqqoya9asmvfee89z6KGHxvryfmwvu2oJ/x64FgiY26VAu5QyPfPBRmCkmR4JbACQUqpCiJBZPifQqhDicuBygNGjR+9i9SyGClJKIqlIRkxDiRAdiQ5jnezIyc/O60h2kNC6eCOfCKO1kThTNpwxgSMM9gg4OwXOZoFrhdE87NV8eHU7PuHAa3NgV7o7J2q6TiSRJBJPEIp3sskU2Uh6nRHaJJ2JJKXBIG63m02bNuWEJnz33XcZN92aJXCoU1Q5ApvdbjlnDSHWrFnjPP3000c1NTU5ksmkUl1dnQD44Q9/2HzqqadOvOmmmxofeuih4MUXX9wM8O9//7tg5cqVGW/CSCRiC4VCCsDs2bPbzZn5UFVVfPDBB/5ly5Z96ff79SOOOGLSwQcfHD3ttNPCjzzySMnDDz8cVFVVNDU1OT755BP3bifCQoiTgUYp5XIhxNF9VSEp5X3AfWDMHd1X57XoG5JasptI9rTuSHQQShpi25HsQJNat/MpGrhSNgp1D0XST5H0Uap7GK0W4lFLcSUV7EmwJXREXEXrjBMLdWAXPU/4o2paRkTb41E2JBJZgpokYm6H4wliyRQSwzP6iSee4Nprr2X9+vWZczmdToqKiiguLOYf5pjlurq6jOMXGPNYD/acyBbbh81up2TUaJo3rBvsqgwqO2Ox9hdz584d/ZOf/KT+vPPOC73wwguBm2++eQTAxIkTU8FgUH3uuecCH3/8se+ZZ55ZDcYL/YcffpjXwcrn82XGxo0aNSp56KGHhquqqlSAY489NrRs2TJvTU1N4u67765Yvnz5l2VlZdoZZ5wxNh6PD9oMYrtiCR8GnCqEOBFwY/QJ/x9QJISwm9bwKCAdAmcTUA1sFELYgUIMBy2LAUbTNSKpSI5I9ro2hTWcDBNTu7wsSrDphievS1UoxE8RfgLSwwjdzV56OW51REZMlYSGiKno8SRqZwwtmexSOxUIA2EUmx1PIIDbby6lAdx+P55AAW6fH7c/kLvfH+DTL7/kO2eeRWNjI4qiIKVECLHN6S9ffPFFZs+ezf7778/555/PV199RU1NDY8++miOx3RdXR0zZ86kra0NAIfDwVNPPbXr/xSLAaOsegzrP/tksKthYRIOh22jR49OATz88MOl2fu+//3vN1166aXjzjjjjBa7OYzt8MMP77jtttvKb7nllgaAd9991zNr1qxuVuy3v/3tjt///veV4XBYcbvd+r///e/Aj3/844a2tjabx+PRS0pKtA0bNtjffPPNwqOOOirc9fiBYqdFWEr5U+CnAKYlfLWU8jwhxF+BMzE8pC8CnjUPec7cXmru/6fVH7zzpIU0nAznLNtjoYaTYaQZXNmmgUPNHVfql24C0kNAeijXnIzVPLg0Pw7Tu1dJ6pBQkYkUWiyBzCtwCXMBxWbLiKQnUIy7JIDbF8AdCODxG8Lq9heY663C6nC5d9g56bAjymhoaOiWnx2EPj315eeff57Z/9RTTzF79mxqamp6nKyjtraWb37zm8Rixvc9HU3JsoJ3L4Kjx/LFO28Qi4Tx+APbPsCiz4jH40pFRcW+6e0f/vCHDT/72c82n3vuuRMKCwvVww8/PLx+/XpXev+5554bmjt3ru3yyy/PGGz33XffhksvvXT0pEmTpmiaJg499NDwrFmz1ne9VllZmTZ37tyG6dOn7y2E4Fvf+lbonHPOCQFMmzYtOmHChGlVVVXJAw88MNLfn7s3+iSUYZYInyyEGI8hwCXAR8D5UsqEEMINPApMB1qBc6SUq3s7b1+EMhyq9Cai4WQ4M6Y0Jy9riaTM58b05HWlFJwpG66kgiul4FZtFOpefJrbHGdqx6mmh8hISGjIRGrbMxsJgcvjxen1Zsaaurw+nB6v6dm7Nd+Z2Z+bP1Q9fWtra5k1axZSSgoKCgiFQr2WPeKIIzLzTRcXF7N06dIBmxnLou9Y8/Fynr7tF3z3F7dRPWWfwa5Ov5AvlOEnn3yydr/99mvu6ZihyNtvv+39n//5n+rly5fXDXZddpVPPvkkuN9++43tmt8nk3VIKd8E3jTTq4FD8pSJA2f1xfV2BiklqlRJaSlSurEktWTedbpMUk+S0sy1uV/V1Z6PM4/NLp9zPi25dYakVJeXL2nMeuRKGlapO2WjQPdSoHvwaS6qVAfjUg6cqVIciVKUhA5xFRlPgt7zi5TD5c4dY2qKpdvnM0TT00VEfb5csXV7EHkcmoYDM2bMoKioiLa2Nmy23sfUnn322RkBLioqsgR4NyY4egxgeEgPVxEeDtxwww2VDz/8cNmCBQvWDHZd+pNhO2PW91/5Pl+3fZ0jhukm2F1GgqKDCwce6cSFOQG9dOCSdhzSjlO34ZZ2/LqCQ7fh0N3YU26cySKcKYE9YTgbEU+hx5JosTg9V0/F6XHg9vuMJtug2bRrNt+m+0fd/uwm3gAun9+akGAbpJuW29raWLJkSY/hBNPlHA4HtbW1lgDvxviLS3H7/DSv37Ods4Y6t956a/2tt95aP9j16G+GpQhrqsoB+kQm2oPYdQWbIrDpxgT0Ns3wyE0vQjOiswhVB1WCqiFVDZky1npKRU+l0FMqWjKFpqZQk8ltRHFRzaX7RP8un88UzgDu0q3i6enSL+o2+0o9ppgOxNy6eyIPP/xwZurKk046iX//+9/d+niXLFlCU1MTYMT+tQR490YIQXDMWJo2rB3sqlhYDE8RTnRGSDz8Lq6sPM1cchACu9OJ3eE01k6nEZXF6cTucGP3bc2zORzYnS7sTicOpxObY+u+zLFdzmPPOsbudFlTCQ5Bzj77bP7xj3/w0EMPoes6hx12WMZTOs15552XSf/5z38ejGpa9DHB6rF8/tbrSF0ftt0tFrsHw1KEXT4/p1/7c+yOLIF0dhfU4TAhvcWuc8cdd/Dll1+ydOlSdF3nlFNO4bPPPstYvCUlJbS2tgLkjCG22H0pGz2WVDxGR3MjheWVg10diz2YYSnCNrudCQfukfFCLXaCYDDIc889x/Tp09m4cSOqqnLBBRfw/vvvA7BlyxbA6A+eM2fOYFbVoo9IO2c1rV9nibDFoGK1w1hYYAjxa6+9lvGSXr58OXV1xqiI9EQfdrudYDA4aHW06DuC1Vs9pC0GDq/XO30gr/fee+959t9//8kTJ06cOmnSpCnRaFQMRj16wxJhCwuTmpoapk83vpu6rjNnzhzq6uqIx+OAMbWlxfDA6fFSUFZhifAwJZVKkUqluOCCC8b98Y9/XPf1119//vbbb9cNxVCG1q+KhUUWjz32GE6nE4Cvv/6aY445hvSENtmhEi12f8rGjN3j55AeCjzxxBOF++677+S99957yqxZsyZt2LDBrmkaY8aMmbZ582Y7gKZpjB49etrmzZvtmzdvth9//PETpk2btve0adP2/sc//uEDuOqqq0acfvrp4w444IDJ3/nOd8Y9/fTThV1DGdqzRplccskl1RMnTpw6c+bMSenrDAbDsk/YwmJnqampwW63k0wmaWlpyTRFezwe7rjjjkGunUVfEqwey+oPP0BNpfa88fTPXFlN4xd9GsqQ8ilRTr9ntwhlGIvFlIMOOqjzwQcf3HD11VdXXX/99SMWLlw4KF6XlghbWHQh7TGfHarw6aeftvqDhxnB0WOQuk7rpg17dGzhwWYwQhkqisKll17aCvD973+/5Tvf+c7Egf/kBpYIW1h0Ye+99yZ7zvI5c+b0OJOWxe5L2eixgOGctceJ8E5YrP3FQIcyPO2007pFTBrMoapWn7CFRRcee+yxjBOWzWazmqGHKUWVI7DZ7TRZzlmDyvaEMjzllFNau4YyTJd59913PeTh29/+dseKFSs84XBYSaVS/Pvf/w5MnTo1DkYr14IFC4rT1zzkkEMGLZShJcIWFl2oqamhuLgYMII1WM3QwxOb3U7JyGrLOWsASYcyTC/z5s2rSIcynDp16t6lpaVqdvlzzz03FI1Gu4Uy/PDDD32TJk2aMmHChKl33313Wb5rZYcynDJlytR99903mg5l6PF49Pfff9+31157TX377bcDt91225b+/eQ9YzVHW1jkIT0sKb22GJ6UjR7L+s//M9jV2GPQdX15vvzzzz+/PV/+e++956mpqYlOnz4980WsqqpSX3zxxW5hcOfPn7+5a94VV1zResUVV7R2zY9Gox+ZyY3bW/f+wrKELSzy4Ha7c9YWw5Pg6LFEWluIRwY1rrtFHm644YbKc845Z8Ktt966abDr0p/skggLIdYKIT4VQnwshFhm5pUIIV4VQqw018VmvhBC/EEI8bUQ4j9CiAP64gNYWPQH6djBLS0tLFmyZJBrY9FfBLOcsyyGFrfeemv95s2bPz3++OOH9RtSX1jC35BS7i+lPMjcvh54XUq5F/C6uQ1wArCXuVwO/LEPrm1h0S8sWrQo4zF57rnnDnJtLPqLrXNID+u48RZDmP5ojj4NeMRMPwKcnpW/UBrUAkVCiKp+uL6FRZ+QninL5/MNck0s+gt/cSlun5/m9ZZzlsXgsKsiLIF/CCGWCyEuN/MqpJRpT7N6oMJMjwSyx6ZtNPNyEEJcLoRYJoRYlg6kbmEx0KStXyEEDzzwwCDXxqK/EEIQHD2Wpg1rB7sqFnsouyrCh0spD8Boar5SCHFk9k5pmBI7NGG2lPI+KeVBUsqDysryep5bWPQ7aetXSskLL7wwyLWx6E+Co8fQsmFdpuXDwmIg2SURllJuMteNwN+BQ4CGdDOzuW40i28CqrMOH2XmWVgMOZ566qlMWMOnn356kGtj0Z+UjR5HMhajo6lx24UtdomBDCFYX19vO/TQQyd5vd7pF1544eiBuu6OstMiLITwCSEC6TRwHPAZ8BxwkVnsIuBZM/0ccKHpJT0DCGU1W1tYDClmzJiBy+UCIBQKDXJtLPqTtHNWs9UkPWxIpVJ4vV558803b543b96gjwXujV2xhCuAfwkhPgHeB16UUi4BbgeOFUKsBI4xtwFeAlYDXwP3A1fswrUtLCws+oRgtSnClnPWoNBfoQwLCgr0448/PuJ2u/XeazC47PSMWVLK1cB+efJbgG/lyZfAlTt7PQuLgaS5uTmT9nr7NuKbxdDC6fFSUFZB07o9Z5jSz//98+qv277u0wd7YvHE6C2H3TJkQhn25WfrT6xpKy0s8nD99dcTjUYBS4T3BIKjx1hzSA8S/RXKcHfBEmELizxkO2PdeOONg1gTi4GgbPRY1ny0DDWVwu5wDHZ1+p2dsVj7i/4KZbi7YM0dbWGRh29/+9uZ9M033zyINbEYCIKjxyJ1ndZNQ0ab9hj6K5Th7oIlwhYWebjjjjtwmBZRW1vbINfGor8pS88hbTVJ9ysDGcoQYOTIkfv8/Oc/r37qqadKKyoq9l2+fPmQi8hiNUdbWOQhGAxSUFBAS0uLFUlpD6CocgQ2u90K5NDPDHQow02bNn26C9UdECwRtrDogVgslrO2GL7Y7HZKRlZbIjyEuOGGGyoffvjhsgULFgxrt3WrOdrCwsICo1+4yRLhIYMVytDCYg/H4/HkrC2GN8HqMURaW4hHhvVvvsUQwxJhC4seiMfjOWuL4U3ZmHEAVpO0xYBiibCFRQ+kHbIsx6w9g/Qc0lZYQ4uBxBJhC4sesByz9iz8xaW4fX7LErYYUCwRtrCwsACEEARHj7UCOfQjAxnKMM3KlSudXq93+k033VQx0NfeHiwRtrDoAcsxa8/DmEN6LUa8GYvdlVQqlUn/6Ec/GnXUUUcN2XiklghbWPRAMpkEoKWlhdra2kGujcVAEKweSzIWo6OpcbCrssfQX6EMAR599NGiMWPGJPfee+8h611pTdZhYdEDZ511Fg899BAAZ599NuvWWc2Uw51gZvrKtRSWD8nWyz5h8w0/q06sXNmn4cFce+0VHXHrr4dMKMNQKKT89re/rXzrrbe++uUvf1nZl5+1L9klERZCFAEPANMACXwfqAMWA2OBtcB3pZRtQggB/B9wIhAFLpZSfrgr17ew6E/uuOMOFi1aRDQapbOzc7CrYzEABKsND+nm9euYcOChg1ybPYP+CmV4zTXXjJg7d25DYWHhkI6stKuW8P8BS6SUZwohnIAXuAF4XUp5uxDieuB64DrgBGAvczkU+KO5trAYkgSDwcwY4dbWVpqbmwkGg4NcK4v+xOX1UlBWMexnztoZi7W/6K9QhsuXL/e9+OKLxb/4xS9GdXR02BRFwe126zfccEPTwH26bbPTfcJCiELgSOBBACllUkrZDpwGPGIWewQ43UyfBiyUBrVAkRCiamevb2HR3zQ3N2ccdKSUXHfddYNcI4u+RlNTRDtCtG3ZRP3XX7H2Px/h8vmsYUoDSH+FMly+fHndpk2bPt20adOnl112WeNPfvKTLUNNgGHXLOFxQBOwQAixH7Ac+AlQIaXcYpapB9IdKyOB7LevjWbeFiwshiALFizI8ZL929/+xoMPPjiINbLoiqamSHR2Eu/sJBntJB7tJNHZSSIaMdfGvkRnhERmn7Edj3aiJhJ5z1tYNnz7gweTdCjD9PYPf/jDhnQow8LCQvXwww8Pr1+/3pXef+6554bmzp3bLZThpZdeOnrSpElTNE0Thx56aHjWrFnrB/qz9BW7IsJ24ADgR1LK94QQ/4fR9JxBSimFEDvk6y+EuBy4HGD06NG7UD0Li11jzpw5/OxnP8sMd5g0adIg12h4InWdeLSTWEcH8UgHsXAHsXCYWLiDeCTcTTgTaVHt7ERNJXs9t0DgtNlwCAUHAoeUuDUdv6phT6nYk0ns8YSxaDoOXceh6RTbCgfo0+9ZDHQow+3ZN9jsighvBDZKKd8zt5/CEOEGIUSVlHKL2dyc9vXfBFRnHT/KzMtBSnkfcB/AQQcdZA3Wsxg0smMKOxwOHn300cGu0pBH1zUSnZ2GkHZ0EIuEiYVDxE1R3SqwIWKhELFwB4loZ4/jcgXgkODQJQ5Nx66qOJMpfJpuiKammWtjSec5NB27rmOz2bF7vQifF8XrRfH5ctc5aR+Kz0vomWdRG60hSoPNnhLKcKdFWEpZL4TYIISokVLWAd8CvjCXi4DbzfWz5iHPAXOFEIswHLJCWc3WFhZDkrRjltPppKamZpBrM7DoukY8EskSz44uYprO68gIajwaxRgo0R0FcOrgVFUcyRQuVSOgajg1DYeq40ynUfD4fHgKCnEVFGLz+7sI6LbEdGtaOJ07/LnjX3xBcu3aXbp3FrvOrbfeWn/rrbfWD3Y9+ptd9Y7+EfC46Rm9GpiD8V37ixDiEmAd8F2z7EsYw5O+xhiiNGcXr21h0e+43W46Ozt3+yAOuqYRj4SzLNQuzb5p6zRLUBOxGL0JqksHhymo7rSgqhpOTcdhCqoTgcfnx1NQiLOwCHtJCbbiImxFRdiLi7Gll6Iic12M4vNijGgcHBSvDz0aHbTrW+xZ7JIISyk/Bg7Ks+tbecpK4MpduZ6FxUCzOwRx0NQUHc1NdDQ2EmpqoKOpkVBjPR1NjXS2tRKPpAU1PzYMCzUtqJ6USmG2kKpmWpiCGijAWVScX1DTYmqmFZ9vUAV1Z1C8XmQ8jtQ0hM022NWxGOZYM2ZZWAxxNFUl3NKcEdaOpgZCTY10NDbQXr+FzlA72RarADy6xB1P4k0kKcqxTs1mX9NCdRcU4CouyRLQ4SWoO4PiNSaS0mNxbH7fINfGYrhjibCFRS94PB6i0Wi/BnHQVJVIazOhxmyBrSfU2ECowRDZro5LHk3iiScoSiSpSqp4kyqeZAq/x0egshLXiJE4Ro7EXlGet9l3TxHUnSEjwtFOS4Qt+h1LhC0seqEvmqN1TSPS2kKoqYFQYwMd6SbjhnpCDVuItLflEVkddzxJYSJFZTKFJ6niTabwBwooqKjENXoUjpEjcIwciWOEua6qygiIxc6j+Ix7KK1+4T7H6/VOj0ajHw3Eterq6pz77bfftLFjx8YBDjjggMgTTzwx5MYTWyJsYbGL6Lohsjl9sk0NhOq39Ciybk3HE08QSKhUpAyR9aQ0AgVFFFRW4hozcqvAjhiBc+RI7FVVKC5XD7Ww6Cu2WsKWCO+upMf2V1dXJ1asWPHFIFenVywRtrDoBY/HQywWpbyokI0rPs9xegptMUQ2HGpD6rlzxGdENqlSblqxHk0SKCqmoKIK96hRGYF1jBiBY9RIHBUVCIdjkD6pRRrF7HqwRHhgeOKJJwpvv/32qlQqpRQXF6uLFy9ePWLECHX8+PHTli5dumLEiBGqpmmMGzduWm1t7QqAOXPmjNm0aZMTYP78+euPO+64zquuumrE6tWrXevXr3eNHDky8Zvf/KbbPBRDEUuELfZ4pK7T2d6WaSoOmZZsx5bNzJ25Hz63C0VRWPyLrXNHu1QdTyKJL5mizOyP9UooKC6loHIE7pGmJTtyRKa52F5WZnnb7gbsCZbw6wu/rG7dFOnTvouSkf7oty7ce8iEMqyrq3Nu3LjRuffee0/x+/3aLbfcsmn27NmRvvzMfYElwhbDHqnrdIbac7yKQ40NhDZvJNRYT7i9Db2LJetSNTyJFJOSKp5IHE9SxScUCkoMkfVkW7Jms7GttBSh7HRMFIshgsiI8NAdljac6K9QhqNHj06tWbPmP5WVldo777zjPeussyZ+8cUXn5WUlAyp0IaWCFvs1uiaRqStlUhrC5HWZiKtLYRbWwg3NxFuqCfS2kxnRwearuUc51Q1PKbDU6m59tmdBEpKKawagWek4fh02Q03UNfaSiwQYFVjo+VRvAegeA2P6OFsCe+Mxdpf9FcoQ4/HIz0ejwZwxBFHREePHp347LPP3EceeeSQ+sdaImwxZEnF44S7iGuktdkQ2MYGIq0tRDu7ty4pUuJOqrhSKr6USmnKEFy/001BadAQ2VHVphWbZckGAt3O9cqVVxJNJPDabJYA7yGkvaOHswgPJbYnlOEZZ5zR0jWU4S233NIARijDWbNmdWu22Lx5s728vFy12+188cUXzrVr17pqamryh80aRCwRthhwpJTEwh2m9dpiCqwptGmBbW8jmYh3O9ah67gSKu6USklKZUTKSHvsTvxFRQTKKvBVVeGorMJRWYHdXDtGjLCG71ggdR09GkPv7ESPdqJHo2Y6ioxG0To70UMhwBLh/mAgQxn+4x//8P/qV78aabfbpaIo8ve///26iooKrWu5wcYSYYs+RVNVOtvbtlqvLS1E2loItzQTaW4i3NxEZ6gNTevyXZDg0nXciSTulEpVSsOdFliHC39xCYHycjyVI7BXVeKoqMReWYGjshJ7RWW/TaowEJN1WORHSomMxQyhzBLLTLozT36+cllp2ct4b6NtUyCQIASOqsqB+qh7DAMZyvDiiy9uv/jii/OedyhhibDFdpOMx7Zari2GyBoC20KkxRDYaLij23GKBLeq4U4k8aVUgikVlymyPpcbX3Ep/ooKXFUjDOu1ohJHlSGujopyFN/gzVqUjqKUXlvsHFJV0UIhtLY2tPZ21LY2I93Wbq7N/PateXokAj2EOOx2frsd/EXo/mI0XyG6twjNE0Qr8KM6/WgOD6rdg2pzkxJOVBykpJ2UbiOlClIpSCYlNrvC2f87lYIRRdZwsUHGCmVosceQ3TycK65bm4gjrS0k492tCIfEsFjjyZzmYXdKw+v24A+W4SuvwFFVaVitlea6wrBilSFuYQ6XKEp9idQ0tI6OreLZ1maIant7rqhmhLU908SbD+H1YisqRBQF0YorUUdMQ/UVo7r8hnAqLlTFRcoUTlW3kVQFqZQgmZSkkjrJmIau5xFsCSTMRYDTZcPpseP02HF57ATMtNNjR01o1L1XTyiiUGgJ8KBjhTK02K3RdY14OExnqJ1oezvRjnaiIWPpDG1NR9va6OxoR+/aPAy4JbgTKVzxBFWqhjupZpqIvT4//mAQT0XVVqs1x4qtQBkGwpVIGH4cra2t1NXVDduYwlokgrplC6ktW1CbmnoX1o6OHi1U4XJhKymB4iB6UQVq1d6ovhJUTxEpl5+UzUdSuEhKBwnVRiIJ8U6VeCSFmjIdW2Pmkn1egSGW7rRo2ggUbxXQtKim9znd2dvm4rIhlJ6d6zqaY9S9V0+kfcj57lgMYywR3o1Qk0lTTEOmmLZl0tkCGwu1Ewt3dJsqEczA6tKYbMKZSFCQTFGmariz+mC9/gD+YBnOqhE4KioM67Vqq/Vqr6jYY6ZPnDx5MsuWLUNKyZw5c3j33XcHu0o7jFRV1KYmUlu2kNq8hdSWzYbgbjZEN7VlC3pH924E4XRiKy6G4jK04nK0yZNQvSWonkJSrgBJm4+U4iIpnYagJiAe7SKocXPJwuUVuH0Ct9+Gv9hBcJQDt99YPH4nbp+Rdvm2CqnD1f/e6b4i45nutETYYgCxRHgQkVKSjMWIhtpM8QzlWqmhrRZsZ3s7yVh+b027ELgkOFMazkSC0kQSV8oIsO4yF6cu8QQCeEqDOIJl2INB7MFS7MEgttIgjopy7GmBdToH+E4MXR577DH23Xdfkskkq1d38wUZEmjhcI/imtqyGbWhEbq0dCiFReijxqOOmIo69ViSgTISriLiwktMdRCPS+JRbTsEVdkqqCUOgtX5BdXtdxhpnx3FNjQnNLHZFTwBh2UJWwwoOy3CQogaYHFW1njgJmChmT8WWAt8V0rZJozX2P8DTgSiwMVSyg939vpDlXQzcG6zb4hoqI1oRygjqGlx1cyJxrviVBTcUuBMqXjiCQpi8a2Cml6nNDx+P+5gEFswiL00aIhrWTAjrpl0UZE1ZeJOUFNTg91uJ5lMEg6HB/z6MpVCbWzcKqqm2Ka2bEE1xVaP5I6VVl0+9JETUMvHktrvYJL+IAlXEQlTYKMxiHakjD5UCbSaiwBvAHxFCr4S524tqDuLr8hFZ5slwhYDx06LsJSyDtgfQAhhAzYBfweuB16XUt4uhLje3L4OOAHYy1wOBf5orocsUkpSiTixjg7ikTCxjhCxcIexRMLEOox0PNJBtKODaKidWEcHUnafFU0gcNtspsWqUhhPUNYZw6mqW4XVtF7dbg/OYBBbsBR7ZdpqNSxXWzCIPVhmiGtxMcKyWvsdm/nyEo1GWbJkCbNnz+6T80op0Ts6em0mVhsbwZxSUxcKKUeAVLAatXw0qVFHk5wcJOEsIq54iat2OqOQSmQ9f2b/qsNtw1/kwlvoYuRoF76i9OLEV+Qy9hU4h52o7ij+YjfhVssTvr8YyFCGf//73wtuvPHGkalUSjgcDnnbbbdtPPXUUzNv0jfccENldXV1MhwO2x544IEyRVHw+Xzafffdt+7AAw8csIegr5qjvwWsklKuE0KcBhxt5j8CvIkhwqcBC6XRUVkrhCgSQlRJKbf0UR16RUqJmkhsFdGOkCGk6e2wkY6HQ4a4mvt6slQBXHYHTqHg1CXOlEpZPI6jM4ozmcppDnaqGk67A4cpprZKU1SzLFV7xpotHfIew3saf/nLXzjxxBORUnLuuefS1tbWa3kpJXpnFK2tFa21FbWlFa2t1eiX3ZzVTLx5izFJBKDZ3Ia16i1FLR9DqvgAkvuWkXAVEsdLTLUTj3fxh5IgOgU+uxNfgYuSIhfVhYaw+ouyhdaF0231PG0PviIX9at69uS22D1IpVKUl5enXnzxxa/Hjh2b+uCDD9wnnXTSpMbGxv+ky7z++usFf//731e73W792muvbQJ4/PHHC//7v/+7+p133lk5UHXtq2/mOcCTZroiS1jrgQozPRLInq90o5mXI8JCiMuBywFGjx7dJ5Vbtfw9nv/d7b0IqsDlduF2OHEKGy4p8ac0HKrAHtWwh8M4ojEcqo5TM0TVoekImw17qdmvWlZlimnZ1ibhUtNyLStD8fmsaQ93U44//niqS0shFGKcy0X49ddRW1vRWtsMkW1rRWsx12aenkyh2r0kHT5Uh4+Uw0fK4UctKEMrmkSyehaJCYVGH2zKjqp1fzZcdju+gCGi5aa16it05oirJ+BE6cXj12LH8Bc5iXemUFMadofVfTMQ9Fcow+effz4zvvjAAw+MJxIJJRaLCY/HI1tbW5VUKqWMGDFCza5LJBKxDfTv9C6LsBDCCZwK/LTrPimlFEJs32j7rcfcB9wHcNBBB+3QsT1RVDGCyeUjsXdGsUej2MMR7G0hbO2hrYKaVd5WWIitzBTUURNy+1mzmoNtRUVW1JwhSG1tLeeddx4ej4eWlhacTieLFy9mxowZwNZm4IyFmhbU7HRrC6opqMn2Dp6tGk9qtI+U3ceHv7iflMNPyuEj7vCjBypRPTWEfQoxrxM5zo/N6TfG1eRBsQt8hYaolptrX5ELX7ETX+FWgXU4LREYaHxFxrC6zvYkhWXDt0XqlT/+vrp5w7o+ncc1WD0mevwP/3vIhDLMvsYjjzxSPHXq1KjH45EAzz//fMGRRx6ZGRJw2223ld17770VqVRKefXVV+t29V7sCH1hCZ8AfCilbDC3G9LNzEKIKqDRzN8EVGcdN8rM63dKR1Uz6esN6NGoIajV47BND261XLs0CVvewbsXUteN2ZhajebfP188h4NbWim22yix2ShJqXz53bNpsNkocnrwugqQTn/GOk3Z05aqzxjP6qlBdfpJVfpIVrlQZc9fk2QqTiTRQWc4RGe8g85Eh7GOd/Dr22/u4sjkwON34HBbwSCGKv7MMKX4sBbhoUR/hTJMs2zZMvdNN900csmSJZkm5iVLlhRecsklzentn/70p00//elPm/70pz+V/OIXv6h6+umn1/bzx87QFyJ8LlubogGeAy4CbjfXz2blzxVCLMJwyAoNVH8wwPjnnt12IYshhR6NojY1ZS3NOduJplY6O1IkYhopm4ekw4/q8HHm2JNJ7ZW2VL3EbT5iTh8bHH422np+wXJ6bBmx9PmduP32zHZ900Z++etfEI614/U7efbFpznm+G+wctVXPZ7vhW8t6I/bYtGP+IoNER7uw5R2xmLtL/orlCHAqlWrHGeeeebEBx98cM3UqVMz/9SPPvrId/TRR6/revxll13Wes011/RNP+h2sksiLITwAccCP8jKvh34ixDiEmAd8F0z/yWM4UlfYwxRmrMr17bYPZFSGlMZNjahNjfliKrW3Iza2ESqqYlYW5SY7jKclZxFJFyFRtpdTNK7HwlHAakRbhjR/RpCgMtjw+134gs4EckIH/z7n7S0N6KSIJoI09i6JWOxdiY60EWKWDxKYWEhgUAgp/naYBznXPke0WgUr9fL6AkjeP7F55gyZQq63t0b/pe//GX/3USLfiNtCUesYUoDRn+FMmxubradeOKJe/3yl7/ceNxxx3Wm85ctW+aeOHFiPH2+Tz/91LXPPvskABYvXlw4ZsyYAf3n75IISyk7gdIueS0Y3tJdy0rgyl25nsXQRaZSqC0tPVqtalMTanMzidYQCcVHwmmKqssQ2KS3lKR3OglvIfFxXuS43L52IcDjt+Mr9lBWnOX5W+jCE9ja3Ov2O3B57N2mJzyfo3K26+rquOCCC1j74Rc5EZ3a2tpoa2tj5syZ+Hw+nnrqqcyQpLTYRqNR7HY7paWlFBYW5nhLL1q0iLPPPrtP763FwJGencuaNat/GMhQhnfeeWf5+vXrXbfddtuI2267bQTA66+//tVzzz1XeNxxx2Vc4OfPn1/+zjvvFNjtdllYWKg+/PDDAxowQuSb2nCocNBBB8lly5YNdjX2eLRIJ2r9FlJb6o2hNfX1pLbUozY2bhXYtnZSDn9GVNMWbLKgnKS31JiNSfGRkt0nxne4FHxF7sx41bTA+otceM3hNv01hrWuro45c+bw8ccfE+shzJ2iKHmt3Z4oLy/H7XbnsaYtdgeemFdLyQgfsy/fZ7CrstMIIZZLKQ/Kzvvkk0/W7rfffs09HTMUefvtt73/8z//U718+fI+c5aaNWvWXk8++eTaMWPG9Dz+tB/45JNPgvvtt9/YrvnW4ME9HD2Z3CqqGaHdQqp+C+qWelL19WgdYVIOP3F3MXFXCXFPKcmiEST940iMKCI+ykdCutBlrvUpBHgKDBENdhHX7LTTM3iPYU1NDe+++y7Nzc3ceeedvPHGG6xevZq2trbM3Ns7IsAAjY2GL+Jhhx1GMBhEURTGjRvHggULhm0AiOGEr8hlNUcPAforlOG77747YGOAtwfLEh7GSE1DbW7ORMdJbanfKq5bthgC29yMpjhIuIozIpssGkGisIqEp5SYLUBMd6HLXCvU7rJlxHSgrdeBoLm5mZ/85Cf89a9/RdO0bQqx3W5n//33Z9OmTXR0dNDZ2dmtjMfjYf/999+txbiuro7LL7+cjo4O2traOPnkk5k3bx7BYHCwq9ZnvPbwF2yqa+Oi2w4b7KrsNMPFEh5OWJbwMENPJo3m4Pp6UvUNqA0NpBrqURvMvIYG1KYmpKaRcgQyApsIVJAsGU2i5EDilYXEpJeE1uUxEOArdBEocVFV4iZQ7MZf4iZQ4jLXblxe+7AeZhMMBnn88cd5/PHHAbj//vu5/PLLeyyvqir19fWMHTuW+fPn89hjj/HMM8+QSqVQFIX29nZisRhLly7lqquu4sUXXxyoj9KnzJ07l7fffjuzfc899zBmzBiuueaaQaxV3+IvctEZSqLr0poIxaLfsUR4CKJFOlEb6g1hrW9AbTBFtb6BVKO5bguRdAZIOgtJOAtJOgtI+ktRC8aQLJxOMlhAXHhIaI5uzcR2l41AiZuCEhcjTJHNFlhfkQubffe0YPuLyy67DKBXId64cSMbN27kqquu4t133+Xuu+/O7KutreV73/selZWVzJ8/v9/r25c0Nzczb948nnnmGVpbW3P22Ww25swZXgMdfEUupC6JhZP4CveMkJ0Wg4clwgNIZnhOvdHXqjY0GtarackmGxpINIeIpWwknQUknAUkTYFN+ctI+saSLCskUeElmcfBCcATcOAtcOIvdFFe4DTSxXuWFbuj1NbWMmfOHA477DAefPDBbvtdLhcHHnjgdscSXrp0Kffffz+XXXYZixcv5pJLLuHBBx8csqEQ85EtvB0dHT1GkDr77LOHVVM05MYVtkTYor+x+oT7CKmqRv9rHus10dBAtLmTaChBQnhIugpNgTVF1ldq5Nl86HSfqtBmF3gLXHgLDVH1FeZLu/AUOLDtpn2wA01tbS1nn3028Xic5ubmHXa+2h6klHg8HuLxOG63u0fv66FC2lr3er2sX7++m/C6XC4KCwtRFIVRo0bxjW98g2uvvXbYiXDjug7+etsyTvivfRi/f9lgV2ensPqEhx5Wn/AuoCcSpriafa4NW/thEw1NdLZ0EokK4s4i4u4So+/VXUzSVUnSNZmkzwv+PBP0e2x4C134C42J+b0FTryFLlNct6Yty3XXSQ9FWrNmDUII2traiMf7N1rZiBEjSCaTu3ye5uZmFixYwJw5c/IKXnZT9/Y6fWULbmtrK5qm0draiqrmzGePoiiUl5fvUd7d2ZawhUV/s0eLsJQSPRIxHZkac/teTSeneGMr0bhiiKspsHF3CXFvJQnPNOLFPijJtT49XgVfsYtgidcQ0kInvrTApi3YAhc2h2W1DgS1tbV84xvfyCu6Qgh2pDXovvvu67VfOJstW7bOypq2tNMWOLDd44jnzZvHPffcw7XXXovdbqegoACn00lpaSnNzc00NjYipWTNmjXst99+XHrppTkey9lNyykzklg+wQWjj3fy5Mm0trbicDj2yLHOXjMylTVMaeA4++yzx1x77bUN/R3H94UXXgi4XC792GOP7QQ444wzxp588smhOXPm9B6ftB/ZI0RYi0ToeP75XC/i+gZSDQ0kUkquuLoND+KEd29ilYWkKnP7hIRieE8GSj1Ulhp9rIFS07mp1I2/2IXdin4zaKStxn322YdLLrmExsbGvGKTZke7Y2677badqlcymcTtdqOqamaGrpkzZ1JRUUEwGCQWi/H444/nFbxnnnkmk1ZVNeMcVV9f361sIpHgnnvu4Z577skItqqqdHR0dCubLbiaplkTjJgIReAtclqW8ACyePHibvM49wf//Oc/A36/X0uL8FBgjxDheEeMj/60JDPJRMI3mfjYImJjvWgyVzAdLhuBUjfFJW6qzWE5gVI3gRIPgRIX3kKXNWxhCJK2MFtbW4lEItt1jNvtpqysjA0btn8u+zVr8s8bYLPZcqa/zEciYfyoK2b4S13XaWhooKHBCEB22GGH4ff7CYfDeL3evGON09cqKyvLWMKxWIwZM2bw7rvvEo1GM1Z3tmADBAIBPB5P5rNbgtsz/iLXsA7i0PrUV9Wp+s4+DWXoqPRFS86c1OuXqa6uzjl79uy99tlnn+hnn33mnTRpUuyvf/3r2m9961t7/eY3v9lw5JFHRs8777zRn3zyiS8ejyunnHJK2+9+97vNPZ1v5MiR+5xyyilt//znPwtcLpd88sknV0+bNi2RL0ZxNBpVFi5cWKYoivzLX/5S+vvf/349wFtvveX/wx/+UNHU1OS45ZZbNg60VbxHiLDq9PHl3hcBhvdwoMRNRak74y2csWYtz+HtIrt5U9d1SkpKCIVCVFdXD3i/YXoO6A8++KDXcn6/H6/Xi81mo7S0lJaWFuLxeF4BdjgcmWbb7aWoqIiWlpZtlisrK+O5556jvb2dc845B7fbTUFBAStXrkTX9YzF2pMABwIBPvjgg5x7nH4BEUJ0czArKSnB4/Fw+umnD7tJNfoTX5Gblk3b9zJnsWOsXbvW/ec//3ntcccd13nWWWeNveuuu3K83+bPn7+poqJCU1WVWbNm1bz33nueQw89tEevxsLCQvWrr7764u677y790Y9+VP3GG2983VOM4gsvvLDJ7/drN998cwPA/fffH2xoaHAsW7Zsxccff+z+9re/PdES4X4gUOLhvF/OsJqK+4Da2lpOOumkHAsr3fe5ceNGpk6dSnFxccbaS6VStLe3U1hYiMPhIBaLMXnyZB577LFdEuu6ujoOP/xwmpu3z9kzEolgs9m46667uP3223P6a7P55S9/yU033ZT3c/ZGbwJst9szTeLNzc20t7dTVFREYWEh8Xic9eu7zT2fl1GjRvHaa6+xZs2aTFN2KBSiqakpp8nd7XYzffr0PcaRqj/wF7lY93kLUsph+VK+LYu1P6msrEymoxpdcMEFLX/4wx/Ks/c/8sgjJQ8//HBQVVXR1NTk+OSTT9y9ifBFF13UCkYYwhtvvLEaeo5RnI9TTz213WazceCBB8ZbWlryj/3sR/YIEVYUQVFFn7a87LFccMEFGWFyOBwEg0FKSkrYsGEDHR0daJqWVxjb29sz6WXLlnHwwQfj9XqJx+MsWrQoE6kItlp2mqblWHC1tbWcdtppNDU17XBfLkAoFOrRqWrp0qW0t7dz/vnns27dOu644w5aWlo45JBDtmllbwubzZYRSSklJ5xwQt6gEGlrPZlM5tyvNBs3bmTy5MmZ7ezoTQCVlZV7lBdzf+IrcqEmNJIxFZd3wH+XhzVdX2qyt1esWOG8++67K5YvX/5lWVmZdsYZZ4yNx+O9erCmX/jNc0noOUZxPtxud+bHZDCG7FruuRY7xPHHH59Jz5o1i82bN/PZZ5+xatUqLrnkEgoKCggGg5SXl1NenvOCi8PhyHzhwuEwDQ0NhEIhTjrpJCoqKhgxYgTTpk3j8MMPZ/369WzatIl77rmHiRMnMnHiRGbOnJnxBO5rzjrrLE466SRaWlp46KGH+O///m9qa2vZsmULBQUFlJSU7PS5033B2ei6jhCC8vJyRo4cyZVXXsmrr77KhAkT8Hg8FBUV7dA1bDYbJ510Es899xw1NTXU1dUxa9Ysxo4dy9y5c7e7xcDCwF9sxhUexv3Cg8WWLVucr732mg/g8ccfL5k1a1am3b+trc3m8Xj0kpISbcOGDfY333yzcFvnW7hwYQnAgw8+WDx9+vRO6DlGcSAQ0MLh8JBqDt0lS1gI8T/ApYAEPgXmAFXAIow4w8uBC6SUSSGEC1gIHAi0AGdLKdfuyvUtBp558+bh9Xr56KOPcqZlDAaDPPDAAzzwwAM55ZcsWcJ5553H+PHjeeyxxwD4wQ9+QHt7O/X19TQ0NKDreibyULqZ2G63Y7PZSCQShEIhQqEQ+cjnEOXxeBgzZgx1dXXbLdgbN27M2X7iiSdYtGjRNp2tdoXx48cze/ZsHn/88YxH886iaRoPPvggTzzxBOPHj2fVqlWZIVn33HMPW7Zsoaqqiueff55AIEAkEhmWwRf6iuyxwqUj/INcm+HF2LFj4//v//2/8ssvv9y71157xa+++uqml19+uQhg5syZsWnTpkUnTJgwraqqKnnggQdus2O+ra3NNmnSpClOp1MuWrRoNUBPMYrPOOOM9jPPPHPCyy+/XJR2zBpsdnrGLCHESOBfwBQpZUwI8RfgJeBE4Gkp5SIhxJ+AT6SUfxRCXAHsK6X8LyHEOcC3pZS9Rj/fnWbMstg5smeustlslJSUEI1GeeKJJyguLmbOnDksW7Ysx1Fq9OjR2+XZu2TJEk488cRBaWLKx957743b7eajjz7arvIVFRXouk5TU1Mmr6qqCk3TCIVCeS3sHSXdBO5wODKtHK+99hqBQCAzdClNbyEZ6+rqmDt3LtOnTx8Ws2h1NMd49MalfOOCyUw5rMeWzCHLUJ0xq66uznnyySfvtXLlys/74nwjR47cZ9myZV9WVVX1PA5xiNBfM2bZAY8QIgV4gS3AN4HvmfsfAeYBfwROM9MATwF3CyGEHCq/kBaDwowZM1i3ruchgu+++y4lJSWZ/s9LLrmkm7Wdj7q6Om6++WaKioq69Z0OBg6Hg/nz53PFFVf0Ws7r9VJYWMh3vvMd5s2bx9dff82sWbOQUlJQUMDmzcZojbq6Ok455RRWrtyx0Khut5sJEyZkLOVIJJIZ0vXQQw9t8/j6+noOPvhg/H4/UkpKS0tpbW3NzED22muvUVZWtttHVUrPGW2NFbbob3ZahKWUm4QQvwHWAzHgHxjNz+1SyvRbyUZgpJkeCWwwj1WFECGMJuucNzMhxOXA5WBYPBYWTzzxBOeffz6nnXYat99+e69l6+rqOP/88/nwww/7ZT7onSWVSnHCCSf0uL+nccH7779/xpI/66yzMvk1NTXdvKqznb38fj+6rhONRjP7Dz74YB599NFMn/GcOXNYu3YtmqYRj8czw6PSQt3VEo7FYoTD4cwCuROGeL1errzyymERVcnmUHD7HVafcB9TU1OT3Bkr+Nhjj52wYcOGnJmTfv3rX2/ctGnTp31Xu8Fhp0VYCFGMYd2OA9qBvwKzeztme5BS3gfcB0Zz9K6ez2L3Z/bs2T06Fi1evJg5c+YwatQoWltbt2usLsCYMWNIJpM0Nzfv8Jjg/qC4uDhvftpLWlGUHOuyubk5I5Dp4BBdm4QBJk+enLknRx99dKYZuaamJicqVHNzM3feeWemrz+fd3W6zBtvvMGmTZtyLOHhOMWlv9hlWcJDhFdffXXVYNehv9iV5uhjgDVSyiYAIcTTwGFAkRDCblrDo4BNZvlNQDWwUQhhBwoxHLQsLHaaCy+8kGQyucPNsuvXr+ell15i3LhxTJ06tV8dsLaFEILOzk4qKiqA3L7X4uJiOjs70XWdG264gY8++gi3282qVatyhj3NnTuXV155hUcffTRHCP1+f0aEe+uLDgaD3Hnnnb3Wc3vKDCd8RZYIW/Q/uzJEaT0wQwjhFca4k28BXwBvAGeaZS4CnjXTz5nbmPv/afUHW+wq2xOlKN9kC+nxulOmTMHlyp0ffPz48UybNg2/358Rxv5ESkl7ezuNjY00NjZSX1/P0qVLmT59Oqeffnqm3HPPPceaNWv48ssvcz63ruvcc889fP31192agk8++WTA6NrJ9ma32Da+IpcVxMGi39lpEZZSvofhYPUhxvAkBaMZ+TrgKiHE1xh9vuko6Q8CpWb+VcD1u1BvCwvAiGpkt/feoNPbu17XflOA1atX43a7WbNmDSeffDJut7tP6pqP9Hjq7CX9UhCLxXKEs6dAFOnmdK/Xy4IFC3L2zZs3jzvvvJPly5dbE3jsIP4iF/FICjU1eK0kFsOfnR6iNBBYQ5Qstpf0UKeuzkrpIThpdmRoj9Pp7JN4wF0JBAKEw+FMAIau1NXVcdxxx23XdJaKolBUVERNTY01U1Yf88W/N/PGoys4/5aZFJZ5Brs6O8RQHaK0J9PTECVrxiyLYUF6qNPSpUtzZreKRCI88sgjXHTRRey7775cdtllOcfZbD1PnrOzAuxw9DzN4ZgxYzKWayyWfzrcmpoali9fzpVXXtnjedNe05qm0dLSwrvvvmsJcB+TnjXL6hfec/nDH/5Qunbt2swXb+TIkfts2bKlT6d7tkTYYlgxY8YM6urqcvpyTzrpJO666y5ee+21nObd8847D1VV+e1vf7vD15k5cybTpk3rJuI1NTV5va0XLVrEMcccw7p16zIzWfXmDBYMBrn77rt5+eWXM3nZzdEFBQU7XGeLXKSUpJIa0Y4koaYYzRsjbFkVYv0XLaz6qJHGtWZEK0uE91gee+yx4Pr16/t18vA9IoCDxZ5FMBjkrbfe4uijj6a+vj7veGGXy8Wrr77KtGnTWLVqx0Y/nHbaaey///4ANDQ0sGDBAhKJBCeffDI/+9nPuOWWW3jzzTczfc0vv/wyjz76KK+99lrOebZnaNTs2bMpLCwkFApl+rY9Hg/33XffDtV5d0fqhmCmEhqpuLnOWpJxtVtebtn8+9mO3jibY/jZKs8880x1Y2Njn0a1KS8vj55++um9Rmfq6OhQTj311PFbtmxx6rourr322s3l5eXq9ddfX61pGvvtt1904cKF6zwejxw5cuQ+p59+euvrr79eaLfb5Z/+9Kd1119//ch169a5fvSjHzVce+21TaFQSJk9e/bEUChkU1VV3HTTTZvPP//89nzX7imWcSAQ0K+++uqqJUuWFCUSCeWggw6KPP744+seeeSR4s8++8x74YUXjne73fqyZcu+BLjzzjvLX3nllUJVVcXixYtXT58+Pb4r980SYYthSWlpaa8OWYlEIuONnI+SkhLC4TB2uz2n2biyspL999+fd999l6amJk477TSmTJnCRx99xAsvvMALL7zQ7Vw9TdKxvf4YixYtyjmHy+Xi6KOPzvQpJxIJnnzyyZxIVIOJpumoOQKZLXxqXhHdlnCqye2feEUoYHfZsDlsKE4FYRdgV5B2gQzY0Yoc6ApIASlFkgCSUhJDEpeSmNTo1HQ6NZ2IrlGhJRjff7drj+Lpp58uqKysTL355ptfA7S0tNimTp069R//+Efdvvvum/j2t7899q677iq76aabGgFGjx6dXLFixReXXHJJ9fe///2x77333opYLKbss88+U6+99tomr9erv/jii1+XlJToW7ZssR966KGTv/e977VnR1bKJl8s45tvvrnhmmuuafzNb36zBeD0008ft2jRosI5c+a0/fGPfyz/zW9+s+HII4/MeG8Gg0H1iy+++PL2228vu/322ysWL17c85R/24ElwhbDirSDVktLS84MVOmITun5qVtaWhBCZMR2n3324ZVXXsk0+ba2tjJ58mSuuuqqnPCHsViMVCrF5MmT2WuvvQB6FPJt8ec//3m7yhUVFeXMhpWewCN7tqqTTjqJf//73/02WYam6nS2J4i0J4i0xYm0JehsSxBpM7Zj4VRGMDV1+wVTsQlDKB0Kwq6AXSBtAs0u0H0KasBGSkiSApKmSMaRxHSdTl0npuuEVY2wphFOacSkRANIj0pTzaUH7IrA47ThddrwOu14HDY8Lhtep5Ogw8ZndU18uL6NMw8ctQt3b+ixLYu1vzjggANiP/vZz6p/+MMfjjzttNNChYWF2qhRoxL77rtvAuDiiy9uueeee8qBRoDvfve77QD77LNPtLOzUykuLtaLi4t1p9OpNzc32wKBgP7f//3fo2pra/2KotDY2OjcuHGjffTo0Xn/6z3EMm54+eWXA/Pnz6+Mx+NKe3u7fcqUKTEgb9SY733ve20AhxxySPS5557LP8vODmCJsMWw4swzz2TTpk2ZbSEETz75JGef3WusEICcqRwdDgcLFizgqKOOyikTCoVYvHgxhx9+OGCIfvb1esNms1FaWspZZ53Va/Si7KAWiqLQ3t7erUnd6XSy1157sXLlSpLJJLquc9xxx7F69eodDp6wLYGNtCWIhpPdmm6FQ0F6bKRcgpRbkPIoJFBIIElInRiSqK4T1XQimk5E04jqOkkhSQEpAXr2EG4d6OILpwgMcTSF0mMuXqcDj8NOsdOG12Hbuj+TtuN12nA70gJrHuuw5ZzPYeu9qXmfea/gsg+/5ujBYt999018+OGHX/ztb38r/PnPfz7yyCOP7OitfDrWr6IoOJ3OzBOoKAqpVEr8+c9/LmlpabF/+umnX7pcLjly5Mh9YrFYj/+wfLGMo9Go+N///d8x77333hcTJ05MXXXVVSN6i2GcrpPdbpeqqnafhGAHsUTYYrcne8rF7Gkrs6Mt1dXVcdVVVzF//vwevYizp3Ksq6vjjDPOyOshvWrVqu3uRx41ahR//etfe7RQm5ubmTdvHosXL95mzF+fz4eiKEyePDlnDugpU6ag6zrhcJgFCxbkTG+5swKLQ0F3KyQcgrBT0losqFdTNGkaYUUSVgzrFMArbHiVrSLncdrxOpx4nTYCThsVjrQI2k0R3H7RdNqUvJOtDBQJVcdpiXCfsXbtWkd5ebl6xRVXtBYXF2v33ntv+aZNm5yfffaZa9q0aYmFCxeWHnHEEeHtPV8oFLIFg8GUy+WSzz//fGDz5s3O3sqnYxkfc8wxnelYxtFoVAGorKxUQ6GQ8vzzzxefcsopbQB+v18LhUL9Gn/YEmGL3Z4FCxZw1113dcv/xz/+kRHc73//+7z77ru89NJLgPEm7Xa78fv9lJWV5TRP19fXb/cc1Nti48aNHH744fzXf/1XXuv3rLPO4s0338x7rM/nIxAIMGrUKL7xjW90CxGoqTpVpaN55N6/8Mc/PMBhhxzFfuXH8fKfPt2GwAo0l42YA8J2SXMhNKRStKHnCKwioMzvorLQQ2WBl6mFHioK3FQWuqgs8FBZ6KaywI3HOaRipPcZUkqSqo7LPjw/32CwfPlyz09/+tNRiqJgt9vlvffeu66trc121llnTUg7Zl199dVN2z6TwaWXXtp6wgknTJw0adKUfffdNzpu3LhenaTyxTIOBAL6eeed17T33ntPLSsrU/fbb79MP9aFF17Y/KMf/WjMNddck3HM6musyTosdnuam5s588wzeeutt3Ly09GAWlpacvpPBxuHw9GrZ7QQgpNOPJm7f/cnHMK7YxasXZByK8RsEBI6zZpOg5YiLGSOwLodCpUFbioK3FQVuqkwBbWqMJ3nIeh3Yt9Gc+1wJqFq1Ny4hGuOr+HKb0wc7OrsENZkHd3p61jGO0p/xRO2sBh0gsEgTz31FPPmzeOee+7J5MfjcT7/fPu/b6Wlpdhstp12tNpedE1S4q+gyF9Gsa+MIn8ZRb4yiv1llPjLKQlU4HMX8sJvV+QcJ+2ClEshaoN2dJq8Gi361ubhtMAWeR1UFripLPRRWeBmmimwFYWGyFYWuCn0OAa1mXd3IGE6mFl9whb9iSXCFsOC9OQWJ598cs5wnqlTp2aamseOHZuZ2rGuro4LLriADz74IFM2Eols97ChnnDa3RT5ghT6gsbaG6TIV7pVaH1lBLzFKCL3hz2upejQE4SFxtd2hU5nkrBN5AisqkB5wBTTAjdjC93MMEW1MmvtdljNp31B0hLh3ZL6+nrb0Ucf3c3x480336wbLCu4NywRthgWpB2cnnnmmUyeoih89tlnecvX1NTw/vvvU1tbywknnEB7e3veOaXHjRvH9OnTeebvzxDwlFDkK6W6ajyK5jSE1huk0FdqpkvxuPzdzhHXU3ToScJCZ63dRsSpEVbUHIGNq3G0cAtauAU10oIWbjbS4RYqC1zcfdevOf6omdgUy3odKLZawtZLze5EZWWltmLFii8Gux7biyXCFsOC6667joceeign78QTT2Tu3Lm88MILmbi6XS3iGTNmsOLLOn54yY/58pOvtwqqacUW+kop9pVx9KX/haLk/hhrUieiJQijErLBJruNTkeKiCKJmH2wEUWSiHfgt2nsXzOWMWUFTClw07z+a/70u9uxJSMQbUNR45SWllJXV9ctWtIa4LzvnMTKlSt3ePiRxc6TMKMnWd7RFv2JJcIWuz1LlizpFsLP6/Xy/vvvZ2aw8jj9lBWMIFg4gkB8BL/+4UNUFI+i2FdBwFPCt6ov51vVW4+PaUnCesK0XhU6nSqdNqP/NSIMce2UGmq0DT3SysiAj2njR7H0+cV01K8n0d5gWLaRFqSapKSkhB+/+CIzZuxrXmESv/r+id0+S0/RoNrb25k3b54VE3gAsfqELQYCS4QtdmsWL17MOeecg0BQ5CszhLZgBMGCqsy6rHAkXlcg57iIFqdNJllvgw5ninaHoCNLYFNagkKHpGXDKhKhxpzmYS3dXNzZDlKnoqKC//fMM8ZY4B+dmNM03hwTJFRjBq4jjjiCd955p9dZrdLRoJYsWcKFF17I9ddfz/XXX08qleKVV17p57tpkU2mT3gYzh1tMXSwRNhit0FNaYRb4oSaYoSaYnQ0xXj70TXc+N2HKA1U4bBvHaevS50OUoQUnVUuBy2kaFd02m2SdkWSTETQw40kGreQatuCGmpA7Wjk8OlTefr3d5CMtHP88cezOcsidTgcSCm7NRc3NDTwve99j9WrVwNbncTuvvtu6urqmDFjBu3t7aiqyplnnsnGjRu3+Vlnz56d8dKeNWsWc+bM6WbtW/QvVp+wxUCwSyIshPgJcBnGTK33Syl/L4QoARYDY4G1wHellG3CGA/xf8CJQBS4WEr54a5c32L4Ee9M0dEcyxHadLozlMgZF6spUDZqP1oVyXqHoF1J0q4YIqu7FUaW+hhV7GFUsZeDS7xUF3uoLvHilTF+du3/8uSTT3abDvK11cvZ75WnAcNbGsBut3PwwQdn+pFra2uZOXNmznGVlZV5P09NTQ1/+tOfOOeccwBj2ssdZcaMGXz5Zb/ME2DRCwnV6hMezlx//fWVt99+ez0M7hjinRZhIcQ0DAE+BGPG1yVCiBeAy4HXpZS3CyGuB64HrgNOAPYyl0OBP5priz0ITdWJtCUIt8YzYtvRFKO9KUqoMUYqnhtjN2GHkCJpkhrtLpkR2agDikvclLhcrPzkPcb4/Xzv1OOYMqaC6hIvxd7842Bra2s56FvfyoQZzEdafMEQ4K5NyPfff39OeY/H06uVeuONN2bSEyfuXpM+7MlYQ5SGN3/4wx+q0iI8mOyKJbw38J6UMgoghHgL+A5wGnC0WeYR4E0MET4NWCiNgZi1QogiIUSVlHLLLtTBYgghpSTRqRJujRNujRNpixNuTRAxt0MtMeIduTNF6UCnHVrQaFMk7W5Ju6LTYZN4it1UlhrWa02xl+oSw6qtLvFQEXCjKMLof/3qaZ554hmWP3ZbToQkr9fLunXrMs3HTqcz71zQixYtYsyYMRx++OFoWu5LwKhRo/jOd76TyVcUpdvsW//85z97nI8a4Pjjj+frr78G4Nhjj93h+2oxOAzn5ugvvryuujPyVZ/GE/b5J0Wn7H1Hr9GZfv7zn1e4XC554403Nl5yySXVn3/+uae2tvar5557LvDAAw8EX3vttaILLrig6fXXXy8sLy9P/frXv9543XXXVW/evNl5xx13rD/vvPPyNiX94Q9/KH322WeLwuGwvaGhwXHmmWe2/Pa3v90CcMwxx0zYsmWLM5FIKP/1X//VcPXVVzdfccUVIxOJhDJ58uQpkyZNit11112bNE3jnHPOGbNs2TJ/RUVF8pVXXvna7/f3+5SSuyLCnwG/FkKUAjGMZuZlQEWWsNYDFWZ6JJD9D9po5uWIsBDicgxrmtGjR+9C9Sz6Gi2lE2nPFdZIa5xwm7Hd0RpH6xL3VReGyLah0y50wm5Jhzl8RwQcFAfdjCr1UV3s4YASL9WmyFYVero1A9bW1nLW0UZ0ITCiEgFs2bL1EcpOd6WrANfU1PDss89SU1PDmDFjugkwwNq1a7d5X3784x9nAirkI3vO6Llz527zfBZDA6s5uu85+uijI7/5zW8qgMaPP/7Ym0wmlUQiId566y3/EUccEX7++edLvvWtb3X8+c9/3njsscdOuPHGG0e+8847X3344YfuOXPmjOtJhAH+85//+D799NPP/X6/Pn369CmnnXZa6Mgjj4w+/vjjaysqKrRIJCKmT58+5fzzz2+79957Nz388MPl6fHEdXV1zvXr17sfe+yx1bNmzVp34oknjl+4cGHxFVdc0drf92SnRVhK+aUQ4g7gH0An8DGgdSkjhRA79CYhpbwPuA+MuaN3tn4WO4aUknhnikhrYqsl22oKbpuxHe3oPldxyiHotEGL1GgTOh1unQ5F0qFIdI+NslIP1aWGuE4pMQS2utjLqGLvNif+T4cWXLNmDUII2traMgLcFZfLRUlJyTYt4VQqRVlZGc8++2xOE3O6edrr9fLQQw/xgx/8ALfbTTAYpLW1tVdL+IMPPmCfffbhueeeY/bs2d3qFgwGmTdvXq+f1WLoMZybo7dlsfYXhx9+ePSiiy7ytba2Ki6XS+67776Rd955x7t06dLA//t//2+9w+GQZ555ZgfA1KlTYy6XS3e5XPKQQw6Jbdq0qdcISYcffnhHZWWlBnDSSSe1vfnmm/4jjzwyescdd1S8+OKLRQD19fWOzz//3F1ZWdnZ9fiRI0cmZs2aFQOYPn16dO3ata4+vwF52CXHLCnlg8CDAEKIWzGs24Z0M7MQogozODOwCcgaickoM89igNBSOqHmGKHGKO2NxrqjOZaxbNVUrhUrFUi5FMI2SYuu0+hSM1ZshyJJuQRVWQ5Pe2c3GRd7KfQ6eqxLbW0tZ511Fm1tbXg8HhwOR0ZA085SoVCo2yxWbrebgoICwLCEKyoqKCgo4L777uu1SXhbpIU6FotRWFhIe3t7j2V9Ph/RaBQhBC6Xi3g8TiqV4oQTTkBRFP70pz9x2WWX7XRdLIYG1jjhvsflcsnq6urEvffeGzzkkEMi++23X+y1114LrFu3zjV9+vS43W6XimLcb0VRcLlcEozvuqZpvU4Xly9W8AsvvBB46623AsuWLVsRCAT0Qw45pKaneMPZ8YptNpvsLS5xX7Kr3tHlUspGIcRojP7gGcA44CLgdnP9rFn8OWCuEGIRhkNWyOoP7ns0TSfcHKe90XB0MtaG6EZa4+RMjexUSLiN8bHNHp0t9iQdQmYs2ZRNMKLYYwhrkZfDSgyxTffLlvldOxUEoLm5mVNPPZWmJiNiWWen8VLaU1NyIBDA7/fnzHTV1zz55JOccMIJSCk55ZRT+Oyzz7Z5HY/Hw7p163Jm69J1ncsvv5zq6uq8VrHF7kPCfCm1mqP7lpkzZ0buueeeij/+8Y9rDzzwwNgNN9wwatq0adG0+O4s//rXvwoaGhpsPp9Pf+mll4oeeOCBtevXr3cWFhZqgUBA/+ijj9yffPKJL13ebrfLRCIh0kI/WOzqOOG/mX3CKeBKKWW7EOJ24C9CiEuAdcB3zbIvYfQbf40xRGnOLl57j0XXdDpa4lkiGyPUZAhtuCWO1LOeKYcg6bHRbpNsCUg2qinaFJ02RRJXoDzgYnSJl+oSL4cVexiV1S9bWeDul1B2CxYsoKmpicLCQlRV7dESdjgcnH766Xnj8PY1s2fPZvLkyaxYsQJVVZk7dy6vvvpq3rIul4toNIrL5SIYDPLggw8ydepU/vd//zdT5tRTT+XTTz/tlxcGi4EhqQ1fx6zB5Kijjgr/4Q9/qPzmN7/ZWVBQoLtcLnnYYYdFtn1k7+y7776dp5566oT6+nrnmWee2XLkkUdGY7FY7L777isbP3781PHjx8ezYwWbMYSnTJs2LXrXXXcNWqusFU94iKLrkkhrV4vWWIeb4+jZQmsXpLw2OuxQr6usTyZpVSRtik5MQLHPwbigj3FBP+OCXsYF/YwNehlb6sPnGvj5Wpqbm1mwYAFz5swZUnMhV1ZW0tDQAMA111zDnXfemdlXV1fHD37wA9rb2/nkk08A4yUh29mrrq6O888/n48//hhVVTnxxBN58cUXB/ZDWPQZ8/9Rx/9742tW33ribhf2cU+LJ/yHP/yhdNmyZb6FCxeu33bpwcGKJzwEkbok0p7oJrShxiih5hi6miu0mim0jYWS9ckUTUKnTdGJCvC77YwNehkXLOabpV7GlfkYW+pjXNBHkbdXf4YBJxgMcs011wx2NTKkBTYtwA6Hg2uvvTazv7a2lm9+85vEYrGc48rKynK2a2pq+OCDD6irq+Oqq65i/vz5/V95i34joeo4bcpuJ8AWuxeWCPczUpd0hhIZR6jsdUdTDE3d6gwlbALNZyPiEDQWCtYnUjSg0abodApwOhTGlfoYGyxgRherdmf7Zy1gzpw5LF26NLNdUVGRY6GfeeaZGQEOBAL4fD6cTieLFy/Oe76amhrLAh4GJFTdcsoaYvztb38r+NnPfjYqO6+6ujrx6quvrgJaBqlau4Qlwn2AlJJoR7KbyIZMyzbb61jYBErATtyl0BK0sVHVWRVP0KZIwkIiFKgu9DKhzMd+wXLGlfkYV+pjXJmPqgJjggqLviV7yFFxcTF//etfc/a3tbVl0h988IHVz7uHkFB1XA6rP3goccYZZ3ScccYZu02s4O3BEuHtREpJLJzqLrTp6RYTW4dIC5vAWeAk5VXoGOFii6ayKh5nXTJFWEgk4NQUxgd9TCgv4ttlfiaWG8u4oA+39cUfUJ544gkuuOACjj/++LxOYGm/CY/HYwnwHkRC1XD2g2OihUU2lghnkZ6woqsjVLqfNpk1r7FQwFPkgoCD1GgPTeisSyZZEYlSr2pIGYVOKHDbmVjuZ+/yck7OEttRxV5sllU7JJgxYwYrV67Mu6+uri4zVtlq7t+zSKq6FcbQot+xRNjklfs/Y8OXrSSiW8PUCQH+Ejf2QieOCQEiis4mNcXKWIIvQ1GSegzMSdSqCt1MKPNz/NRSJpT7mVjmZ0K5z+qr3c05//zzM0OmSkpKBrk2FgOJ0SdstUpZ9C+WCJu4ip0UTCok7IQGXWNNPMGXHVE2drSBOXuoTRGMKfUycYSfWftXMtG0bCeU+/EPwlAfi/5nxYoVmXTX6EkWwxvLMWv3ZGfCEp5xxhljTz755NCcOXPatl26b7GUw+SuzQ18vrkDAI/DxoRyHweNL+Ecs/l4QpmfMaU+a/acPYyioqJMaMNPP/3UmgVrDyKpatb3fYiSSqVwOHqeFnd3whJhk6uPr0ERgonlfssL2SLDX//614zT1pw51iRvexIJVbdauPqYuro65+zZs/c64IADOpcvX+7fd999O7///e8333zzzSNbWlrsDz/88OopU6YkzjvvvLHr1693eTwe/b777lt36KGHxq666qoRq1evdq1fv941cuTIxLHHHtvRU/jCnsISvvvuu54f/vCHY2KxmDJmzJjEE088sbasrCwn8NCzzz4buP7666s1TWO//faLLly4cJ3H45GLFy8uvP7660d5vV794IMPjqxbt8712muvfT1+/PhpS5cuXTFixAhV0zTGjRs3rba2dsWIESPU/HchF+s1z+QbNeUcNamMkUUeS4AtMqSdtu6+++4hNbuXRf+TSFl9wlu2bLH//Oc/r9iyZUufvY1s2LDBfd111zWsWrXqs1WrVrkff/zx0mXLlq349a9/vfHXv/511bXXXjtiv/32i3711Vdf3HLLLZsuuuiiceljV65c6X777bfrnn/++TVghC987rnnvv78888/f+6550refvttL8D69evdP/7xjxu//vrrzwsLC7WFCxcWA1x88cXjbr311o1fffXVF1OnTo1dd911I7LrFo1GxQ9+8INxixcvXvXVV199oaoqd911V1k0GhU/+clPxrz88ssrP//88y9bWlrsYASWOPPMM1seeOCBEoBnn322YO+9945trwCDJcIWFhYWeUlqVp/wvffeW/qrX/1q1L333lvaV+ccOXJk4pBDDonZbDYmTZoU++Y3v9mhKAoHHHBAdOPGja73338/cMkll7QAnHrqqeH29nZ7a2urAjB79ux2v9+fmUowHb7Q7/fLdPjC9DW6hiVsaWmxhcNh20knnRQBuOyyy1pqa2v92XX75JNP3KNGjUrsu+++CYCLL7645V//+lfg448/dldXVycmT56cBDjnnHMycYZ/+MMfNi9atKgU4KGHHgpefPHFOzQ1qNXWYmFhYZGHhKrt8SJ8xRVXtGSv+4LskIGKouB2u3PCFdrt9h4DGvh8vpx4q/nCF3a9Rn+HJZw4cWIqGAyqzz33XODjjz/2PfPMM6t35Pg9+wmzsLCw6IFEyhonXFVVpd5yyy0NVVVV2928uqsceuih4QULFpQCvPDCC4Hi4mK1pKREz1c2Hb4wEomIl156qeioo47qMRpTaWmpVlBQoC1ZssQP8OCDD5bOnDkzp/x+++0X37Rpk/Ozzz5zASxcuLD0iCOOCO+7777xDRs2uOrq6pwAixcvzhmv+P3vf7/p0ksvHXfKKae02u07Ztvu2U+YhYWFRQ8kNd2aMWsQuOOOOzZ/9NFH3kmTJk352c9+NvLhhx9e01PZdPjCqVOnTj3llFPajjzyyGhv516wYMGa6667btSkSZOm/Oc///Hcfvvtm7P3e71e+ac//WntWWedNWHSpElTFEXh6quvbvL7/XL+/PnrZs+evdfUqVP39vv9WiAQyDh0nXvuuaFoNGq7/PLLd7jFwAplaGFhsceh65K4qhFP6cRTmrnoJNJ5qsYPHl3OxbPGcsOJew92dXeYPSGU4UCHLwyFQkphYaGu6zoXXnjh6L322iv+i1/8ohHg7bff9v7P//xP9fLly+t6On6nQxkKIR4CTgYapZTTzLwSYDEwFlgLfFdK2SaMBvn/A04EosDFUsoPzWMuAm40T/srKeUj2/nZLSwshjG6LkmophhmCWMmL0cgu4hlaqtoxlMaiZROIpmEVAyZjCLVGKRiCDWGosawqXHsWhybHscjknhI4CGJWyRwkzK2RRI3CX6Ni5D3zm1/AIs9gt///vfBJ598MphKpcTUqVOjV111VTPADTfcUPnwww+XLViwoEeLvTe2aQkLIY4EIsDCLBG+E2iVUt4uhLgeKJZSXieEOBH4EYYIHwr8n5TyUFO0lwEHARJYDhwopex1dhLLErawGHxUTaczoRFOpOhMaEQSKcJxlUhCJWKuY0mti2VpCGMiSzyTyRSkDGEUpjCmRdEjErhI4iGJR5jCSAK3MPOyxDFbLD0igZckHpHEZR7jZMe7LyUCze5Bt7nR7R5sehJHrAn9ig9Qyif1w13tX/YES3h3Y6ctYSnl20KIrgeeBhxtph8B3gSuM/MXSkPZa4UQRUKIKrPsq1LKVgAhxKvAbODJnfgsFhYW20BKw7rMFsq0cHYmVMKZ/BSRePa2sSRiMfREByIRxqF24ieGX0TxEScgYua2sS4SMaqI4xVJfCKFV5gCyVZhdMkE9nziaKfXXyEpFHSbB+nwIO0ecLgRDi/CWYhwelEcHnB4weE2156stQfsni55WfscW/cJmxN7tqft8ofh+Z+guHx9/a8ZTHRd14WiKEO3D3KYouu6API6l+3sEKUKKeUWM10PVJjpkcCGrHIbzbye8rshhLgcuBxg9OjRO1k9C4vdE12XRFNaRiCzLc60UHaaQpkjnHGVSDyJmohAPIxIhnHr0YxQZoTTFM8AMUaIGAERp0CJUSDiRlkZxSNjOEgZFbKZSx6kUJDOALj8CGcA4XCDozBH3LqKXbd0N5HMFVVhc2IbjAAoSdO/x+EZ+Gv3H581NTVNKSsrC1lCPHDoui6ampoKgc/y7d/lccJSSimE6LN/qJTyPuA+MJqj++q8Fhb9iaZLwvEs0ewinNkWZ0ZE0025sTgyEYZEGCUVwSejGaH0i1iu9UmMChGlUIlTYAqojxg+GcUtYyiYX5leptXVbW5w+sEdQLgCCFcpuAJ5loIu2/6cPOHwDt8IYalOY+0cPpawqqqX1tfXP1BfXz8Na2TMQKIDn6mqemm+nTsrwg1CiCop5RazubnRzN8EVGeVG2XmbWJr83U6/82dvLaFRb+RVHVCsRShWJL2aMpYYinao0lCsS7b0STJaAci1oItEcprbaYt0aCIMY4YhUqcgGKIqo8YXhnFJY14xQjA2XPddIffED93AcIVgIx4FpgC2ZuAmnlOP4q9l4tYGCSjIGxgGz736sADD2wETh3seljksrMi/BxwEXC7uX42K3+uEGIRhmNWyBTqV4BbhRDFZrnjgJ/ufLUtLHpGSkk8pdOeJaShWFcRzRXaUDSJFmvHlWqnmAjFIkwxYWMtIpQQZpQIE7R1UqpEKCRMgR7e2s/p6qEuit1ssg0g3AGEqwBcI3sXTKc/b56iWMbLDqHroCVAjYPadZ3ssm2mtYSxXl9rWMHD1dK3GDJszxClJzGs2KAQYiPwCwzx/YsQ4hJgHfBds/hLGJ7RX2MMUZoDIKVsFULcAnxglrs57aRlYdETUkoiCdUUzLSAJrO2kxlRDeXsS+BSI5SIMCWEKRJGughjPUaJcIitk1LFENhCvQOfHsamaHnFVAob0lOC8JYgvKXgHQ/eEvCUgLfUWDxFXYTTSAu7a/g22faGlKB1FbptCF83scyT12vZLvl6CglIAboi0BVzndnOysvs25pm4jhGDfZ9tBj2bI939Lk97PpWnrISuLKH8zwEPLRDtbMYNui6pD2WorUzQXMkSWtnkpbOJK2RJO2xpCmiprBmRDWFrmsU0pkjomkrtdwWZR97hKASoUSJUCjDBPQOvPYOFHteR0SkYgdPWkxLwDvBFNG0oJZkbRtp4SpADDcrVDOGC5GMGutUFFIxSHYa6//f3r3FSHLddRz//uvaPfdbz+yu7WTX8hLHthITViaRJWQlEDvBigGBZIiEAUt5AQXxgmJZKPAGIpIJEAKRMSYIxQnmtgoC4zhIeYrjtWIZO07wOoZ47d2dnet2T890dXf9eTinbzOzHq89uz0z/f9IpTp1qmam+mzN/uacur2tuu7vVd0xAJsBqF/X9HUaQFN8ORSaUUweRuRhSB4G5FFIngZdIeq/t0AuIbkMkUuBnFFyaZLT3LEpLiUMqxbC5oqzFziYt6WZKyvVTpguVjKW1mouWP3y4lqtXV6uZuQKEQ2mKFOSVUqywoysciSqcEO8RilcY1oqTHCRsajM8NAqhUaZYPsr+yGIOz3RoSkYumFrmPYE6pQbDt7rPdM8B/+QiU7Ytebb1GVdQbilrtoJy8yVtb5GU5rt8GuGPhRDfDgKeehCMvfrm4GQx7ELxSikmYbkQwHNIPDbKk2BXAo0JSGX0XcUgN2CIO2aki3LUc+65BLbbv26dlkSgtCVwyBF/HIYXOIcgzG7yELYAJ1Q7QSqC9FWeWktY6FSa5dboQpbg/W6pML7kwpHojKzwSpTxVUmkmVGGksU6ivb74CmkHT3RI+/aZgyNO3One7FQG02YGMF1pehuuTm60u95da6jdV2UOb1NfLmOs18wwdbKyDpCsZOXU9AhiHNOPLzkLwQ+N4lNANoBkou0CRF5U0unX4TQVAkDIuEQYEgLBAGxfY8Dgu+vkgYFgiCQjvUgiBFgqRdvnRAbp6niMSDOZxvBoaF8AHVzJXl6tbwXPA91k5vtROq3Q9P6w7Wo4UK70orfCgqcygsUxpdYWJkhbHGMkP1RdJsZesOZIAOw0gJRuZg+CYYmYXh2a46Xx4u7c1AVXUh2Q7N5e0D1ZfzjUXq9RUajQr1WGhEQj0KqEdCI+6apwn1YkRjNKARKk1RcslRCYBhP71VQTv0wrDog9IFY9QdjD3B2dnGfV1nG/c9ts5dIO6xfx9jDgAL4X1CVVldr3fOp1ZqLPh5a+i3e93Kep3NTyRtBeux4hrXFyrcHFc4HJWZnbzIzOQyY/kKI/Ulitkica3riaIKbPhyPOzCdHQWht/ryiNzLkjbIeunvXKPparrbVaXenuh24SrVhdp1JZo1FeoN8s0QqUeCfU48KEqNKKAeizUk5hGIaI+Ii5Mgxx3g+7ktrsRhaNE8ThxPEEcTVCIx4jCEcJwaJsQbAVj0fUow+K224gkFo7G7GMWwn1UzRosVlxPdbsgXfQ910Xfk23km59dogxR42hxnXcVN7g1rXJNoczc8EVKrDKpK4w2lxnOFklqC0Qby60vg3U/geuFtkP0RheqI7Oduu6Q7XewNmrbD+v2lJdpri/SyBap11dpNC5SD5o9vdNGJC5Io4BGHFEvhDRGhHqQu/t1EWBsy48PJCGOxoniCeJ4gkI8zmjkgjWKxnrmvXWjiFzi0VPGmIFlIbyLskbecy61NW8F6eJa9zxjvd594YoyRpVJKXM4rnJdcYOfSNY5HK9RmlhjatLdmzqSX2SosUqSLRPVVpBm5kK16qeW7mCdubHTQx0ubQ3ZfgZrfR3WFmDtAlQX3bw9LdCsnifbmKeeLVFvlqlLzfVEu4Z4O73TgEYaUh+GvOdi5s2fT4jCEeJojDiZIoonKLaCtRWa8XgnbNtBOk4YFq5i4xhjDjoL4R00mjmvLqy5IG2Ha+8wcKs3e3HDPbghIGeczr2pM2GF69INbkyqzMVVZpIKE9NlxvUiQ82LFOurxNkKol2hXPMTuCf39NyXehyKk1tvqRme6X+wNus+TBfaQdoO1eoC+do82cZ56tkCWWOVTGrUYyGLA7IkIIvdUG+WhGQjAfl49zdP6b6RN5CEOBwljseJ4imGkknfQ+0NUDcfd9tFE0TRCCIH7JYjY8y+ZCG8g+rGBr/y0En3wAfKTEiZaSlzOFnn1rjKbFhhKlhjYugiI8Wy66XWLyJsGjpu4oZ/s2TTbTTv7l3uWeeX0zHo532qqm6Yt3IOymehfN6Xz6Hls9TXz5PVF8jqy9R1zQVqO0yDznIhpDHS/Y0TWs9pFCKSaIwkniJOZxlKZ0mSaZJkmjieJk4mfbCOE0cTxPEYgd1CYozZ5yyEdzD63MM8U/i9rSsU0CGIp2BoEoZKUHzPNg98mOx9GMReehRenrtzqT3B6spafoNs/SxZ7Ty1xjK1qEktcb3VWhJQSwOyNCKbEbT9cUI651GFOBwliaZI0hlG0zmSdJok9sGaTLXLSTJDGI7YBUbGmIFjIbwDuf4O+Pjntu+p7tXXnOW5GxIun4XK+U7Ils+ilXNk1dfJavPUGkvUYu0EaytkCxFZqTtch9rfOg7GSJMZ0uJhRgpHSJMSSVrqhGs85ecTdiGSMcbswEJ4J4ff56a9oNmAtXkfrK2eq5tr+Sz16hvUauepNVfIYm0H66XDtTM2HAejLlCLhxkuHCZNZknSWdJ0ljSZI01nSZIZguDgvFXGGGP6zUJ4L6hVXLBWzkP5HFTm2wGrlXNk62epZRfI8ovUEukZFm6H6+ylwnXEBWrxMMPpIRem6Rxp4gM2nbNwNcaYPrEQvlLa51vPuUCtzPcEbF4+R1Y7R62+QCa13h5rEpClAbWhiGwMf98qdN+32tNzTQ9t6rWWSJI50nTGLl4yxpg9zEL4cjVqvtc6v03Anqe5dpZsY+v51k64RtTGQ+rTraunu2+7EZJowvVcC4f8xUyzvtdaIvG9V+u5GmPMwWAhfClvfBde+Mf2kHCzeo5abZ5M16gl0nuVcBJSS2OyktA41ArX0fa3EkKSeIo0naNQOMR4OusCNSn5UC2RpnPE8RRBYP8kxhgzKHb8H19EHgHuBuZV9RZf90vA7wPvBW5T1VNd2z8A3I+7M/bTqvqEr78L+DzuPpaHVfUPd/ej7LLFVzj/yiO8cnSIbNy9hcY1V+fpEYEkJMkMaTrHcDrHlO+1Jmmpc2FTUiKOJ+3hEMYYY7Z4K92uR4E/B77cVfcC8AvAX3VvKCI3AfcCNwNHgG+IyI/51V8AfgY4AzwjIidV9XvvaO+vpJt/nvjIYcbOfq0dpq25u5hp1j8P2O5tNcYY8/bsGMKq+i0RObqp7iVguwC6B3hMVWvAqyJyGrjNrzutqj/0X/eY33bvhnAQMjV9O1PTt/d7T4wxxhxQuz1Geg3wWtfyGV93qXpjjDFmYO25E5Ui8ikROSUipy5cuNDv3THGGGOumN0O4deB67qWr/V1l6rfQlW/pKonVPVEqVTa5d0zxhhj9o7dDuGTwL0ikorIMeA48B3gGeC4iBwTkQR38dbJXf7ZxhhjzL7yVm5R+gpwBzAjImeAzwJLwJ8BJeDfROQ5Vb1TVV8Uka/hLrhqAL+p6l6SKyK/BTyBu0XpEVV98Up8IGOMMWa/EFXdeas+OXHihJ46dWrnDY0xxrSJyLOqeqLf+2F2tucuzDLGGGMGhYWwMcYY0yd7ejhaRC4A/3eVftwMsHCVftZeZ23hWDt0WFs4+6Ud3q2qdnvJPrCnQ/hqEpFTdg7FsbZwrB06rC0cawez22w42hhjjOkTC2FjjDGmTyyEO77U7x3YQ6wtHGuHDmsLx9rB7Co7J2yMMcb0ifWEjTHGmD6xEDbGGGP6ZKBCWERCEfmuiHzdLx8TkadF5LSIfNW/XAL/Aoqv+vqnReRoX3d8l4nIhIg8LiLfF5GXRORDIjIlIk+KyMt+Pum3FRH5U98Wz4vIB/q9/7tFRH5HRF4UkRdE5CsiUhiUY0JEHhGReRF5oavuso8BEbnPb/+yiNzXj8/yTl2iLf7Y/348LyL/LCITXese8G3xAxG5s6v+Ll93WkQ+c5U/htmnBiqEgd8GXupa/iPgIVW9AVgG7vf19wPLvv4hv91B8nngP1T1RuD9uDb5DPCUqh4HnvLLAB/DvQ3rOPAp4ItXf3d3n4hcA3waOKGqt+BeLHIvg3NMPArctanuso4BEZnCvdDlJ4HbgM+2gnufeZStbfEkcIuqvg/4H+ABABG5CXec3Oy/5i/8H/ch8AVcW90E/LLf1pg3NTAhLCLXAj8LPOyXBfgw8Ljf5G+Bn/Ple/wyfv1H/Pb7noiMAz8F/DWAqmaqukLvZ97cFl9W59vAhIgcvqo7feVEQFFEImAIOMuAHBOq+i3c29C6Xe4xcCfwpKouqeoyLrg2h9met11bqOp/qmrDL34b9w50cG3xmKrWVPVV4DTuD5DbgNOq+kNVzYDH/LbGvKmBCWHgT4DfBXK/PA2sdP2inQGu8eVrgNcA/PpVv/1BcAy4APyNH5p/WESGgTlVPeu3OQfM+XK7Lbzudtq3VPV14HPAj3Dhuwo8y2AeEy2XewwcyGNjG78B/LsvD3pbmF02ECEsIncD86r6bL/3ZQ+IgA8AX1TVHwfW6Aw7AqDuvrUDfe+aHza9B/dHyRFgmH3Yi7tSBuEYeCtE5EHcu9H/vt/7Yg6mgQhh4HbgEyLyv7hhog/jzotO+KFIcMNNr/vy68B1AH79OLB4NXf4CjoDnFHVp/3y47hQPt8aZvbzeb++3RZedzvtZz8NvKqqF1S1DvwT7jgZxGOi5XKPgYN6bAAgIr8G3A18UjsPVBjItjBXzkCEsKo+oKrXqupR3EUV31TVTwL/Bfyi3+w+4F99+aRfxq//Ztcv4b6mqueA10TkPb7qI8D36P3Mm9viV/0Vsh8EVruGLPezHwEfFJEhf2631Q4Dd0x0udxj4AngoyIy6UcWPurr9j0RuQt3+uoTqlrtWnUSuNdfLX8Md7Had4BngOP+6voE9//Myau932YfUtWBmoA7gK/78vW4X6DTwD8Aqa8v+OXTfv31/d7vXW6DW4FTwPPAvwCTuPObTwEvA98Apvy2grvq8xXgv3FXE/f9M+xSO/wB8H3gBeDvgHRQjgngK7hz4XXc6Mj9b+cYwJ0vPe2nX+/359rFtjiNO8f7nJ/+smv7B31b/AD4WFf9x3FXUr8CPNjvz2XT/pjssZXGGGNMnwzEcLQxxhizF1kIG2OMMX1iIWyMMcb0iYWwMcYY0ycWwsYYY0yfWAgbY4wxfWIhbIwxxvTJ/wNOrDJXNdFvWgAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "fig,axe=plt.gcf(),plt.gca()\n", + "\n", + "\n", + "# get morphology coordinates\n", + "morphology_coords = np.array([ [n['x'],n['y']] for n in morphology.nodes() ])\n", + "\n", + "for key,value in surface_and_layers.items():\n", + " \n", + " if key == \"layer_polygons\":\n", + " \n", + " for layer_dict in value:\n", + " \n", + " layer_polygon_coords = np.array(layer_dict['path']) * layer_dict['resolution']\n", + " layer_name = layer_dict['name']\n", + " \n", + " axe.plot(layer_polygon_coords[:,0],layer_polygon_coords[:,1],label=layer_name)\n", + " \n", + " else:\n", + " \n", + " polygon_label = key\n", + " polygon_coords = np.array(value['path']) * value['resolution']\n", + " axe.plot(polygon_coords[:,0],polygon_coords[:,1],label=polygon_label)\n", + "\n", + "axe.scatter(morphology_coords[:,0],morphology_coords[:,1],s=1,c='k',label='morphology')\n", + "axe.legend(bbox_to_anchor=(1.0,0.5), loc=\"center left\")\n", + "axe.invert_yaxis()\n", + "axe.set_title(\"Example Morphology With Surface and Layer Polygons\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:new_neuron_morph_no_bug]", + "language": "python", + "name": "conda-env-new_neuron_morph_no_bug-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.10" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/skeleton_keys/test_files/avg_layer_depths.json b/skeleton_keys/test_files/avg_layer_depths.json new file mode 100644 index 0000000..5680fac --- /dev/null +++ b/skeleton_keys/test_files/avg_layer_depths.json @@ -0,0 +1 @@ +{"2\/3":116.8406715462,"4":349.9050202564,"5":477.8605504893,"6a":717.1835081307,"6b":909.8772394508,"wm":957.0592130899} \ No newline at end of file diff --git a/skeleton_keys/test_files/feature_pipeline.sh b/skeleton_keys/test_files/feature_pipeline.sh new file mode 100644 index 0000000..1db75c6 --- /dev/null +++ b/skeleton_keys/test_files/feature_pipeline.sh @@ -0,0 +1,60 @@ +#!bin/bash +### This is an example of running a single pair of swc file + annotation polygons (pia,wm,soma,layers) through +### feature calculation pipeline. This involves: +### 1. Uprighting the swc so that pia is up and white-matter is down +### 2. Layer aligning the cell so that laminar profiles are standardized to an average template +### 3. Extracting soma depth from pia, and laminar distribution profile (laminar histogram) +### 4. Measuring morphological features + +# Step 0, defining input/output files +specimen_id="4493" +specimen_id_file="specimen_ids.txt" +raw_orientation_swc_path="4493.swc" +surface_and_layers_file="4493.json" +layer_aligned_output_file="LayerAlignedSWCs/4493.swc" +upright_output_file="UprightSWCs/4493.swc" +histogram_output_file="AlignedLaminarHistogram.csv" +soma_depths_output_file="AlignedSomaDepths.csv" +feature_output_file="MorphologyFeatures.csv" + +mkdir LayerAlignedSWCs +mkdir UprightSWCs + + +# Step 1, Generate upright swc file +skelekeys-upright-corrected-swc \ +--output_file ${upright_output_file} \ +--correct_for_shrinkage False \ +--correct_for_slice_angle False \ +--surface_and_layers_file ${surface_and_layers_file} \ +--swc_path ${raw_orientation_swc_path} \ +--specimen_id ${specimen_id} + +# Step 2, Generate the layer-aligned swc file +skelekeys-layer-aligned-swc \ +--output_file ${layer_aligned_output_file} \ +--correct_for_shrinkage False \ +--correct_for_slice_angle False \ +--surface_and_layers_file ${surface_and_layers_file} \ +--swc_path ${raw_orientation_swc_path} \ +--specimen_id ${specimen_id} + +# Step 3, create laminar histogram and soma depth from pia csv files +skelekeys-profiles-from-swcs \ +--specimen_id_file ${specimen_id_file} \ +--swc_dir LayerAlignedSWCs \ +--output_hist_file ${histogram_output_file} \ +--output_soma_file ${soma_depths_output_file} + +# Step 4, measure morphological features +skelekeys-morph-features \ +--swc_dir UprightSWCs \ +--specimen_id_file ${specimen_id_file} \ +--aligned_depth_profile_file ${histogram_output_file} \ +--aligned_soma_file ${soma_depths_output_file} \ +--analyze_axon True \ +--analyze_basal_dendrite True \ +--analyze_apical_dendrite False \ +--analyze_basal_dendrite_depth False \ +--output_file ${feature_output_file} + diff --git a/skeleton_keys/test_files/specimen_ids.txt b/skeleton_keys/test_files/specimen_ids.txt new file mode 100644 index 0000000..f1331cf --- /dev/null +++ b/skeleton_keys/test_files/specimen_ids.txt @@ -0,0 +1 @@ +4493 diff --git a/skeleton_keys/upright.py b/skeleton_keys/upright.py index a48289f..e07eab3 100644 --- a/skeleton_keys/upright.py +++ b/skeleton_keys/upright.py @@ -82,7 +82,7 @@ def corrected_without_uprighting_morph( shrink_factor): """ Correct for shrinkage and slice angle without uprighting - Note, though, that upright_angle must be provided so that the slice angle + Note, though, that `upright_angle` must be provided so that the slice angle corrections are correctly applied Parameters @@ -101,7 +101,7 @@ def corrected_without_uprighting_morph( Returns ------- corrected_morph : Morphology - Morphology in upright orientation after correcting for shrinkage + Morphology in original orientation after correcting for shrinkage and slice angle """ morphology = upright_corrected_morph( From ca1f48f1c9728febee839ee2076806ab05621794 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Fri, 28 Oct 2022 15:57:12 -0700 Subject: [PATCH 09/23] adding notebook --- .../test_files/Surface_And_Layer_Polygon_Example.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skeleton_keys/test_files/Surface_And_Layer_Polygon_Example.ipynb b/skeleton_keys/test_files/Surface_And_Layer_Polygon_Example.ipynb index 0099175..9a2011e 100644 --- a/skeleton_keys/test_files/Surface_And_Layer_Polygon_Example.ipynb +++ b/skeleton_keys/test_files/Surface_And_Layer_Polygon_Example.ipynb @@ -238,7 +238,7 @@ }, { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeEAAAEICAYAAABoAUxEAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8QVMy6AAAACXBIWXMAAAsTAAALEwEAmpwYAACVrUlEQVR4nOydd3wcxd3/37PXm+qp2ZY7lrFNMdU2NQnFdBIgQKgOJU/ASZ6HhxZCiAMJNXHy5AckoRlMsxNC6JgAoSVYgE0JzcK4N3XpdKeruzu/P3bvfCed5KZmed+v12pnZ2d351Z799nvzHfmK6SUWFhYWFhYWAw8ymBXwMLCwsLCYk/FEmELCwsLC4tBwhJhCwsLCwuLQcISYQsLCwsLi0HCEmELCwsLC4tBwhJhCwsLCwuLQcIS4T5GCHGxEOJfg12PHUEI8bAQ4lc7eeybQohL+7pOfYkQ4nMhxNG97B/UzyCE+LYQYoMQIiKEmD5Y9dhZhBBHCyE2DnY9BgIhxDwhxGODXQ+L4cNuJcJCiLVCiJj5Y5Ve7h7sevUVphhIIcR+XfL/buYfPTg1GzoIIarMe1GRlfezHvKWAEgpp0op3zTzd/lHVAhxgxBijfn8bRRCLN6V8wG/AeZKKf1Syo928VxDDvN/M3Gw65GN+RykzP9huxDiXSHEzMGul8Wex24lwianmD9W6WXuYFeoj/kKuDC9IYQoBWYCTTtzMiGEvY/qNSSQUm4BvgaOzMo+EliRJ+/tvr6+EOIi4ALgGCmlHzgIeH0nz5X+34wBPu+bGlp0pZfvwGLzf1gG/At4WgghBq5mFha7pwjnRQjxRyHE37K27xBCvC4MioUQLwghmoQQbWZ6VFbZN4UQvzLfhiNCiOeFEKVCiMeFEB1CiA+EEGOzykshxI+FEKuFEM1CiLuEEHnvpRBishDiVSFEqxCiTgjx3W18lMeBs4UQNnP7XODvQDLrnC4hxO+FEJvN5fdCCJe572jTOrtOCFEPLMjKu8Gs71ohxHldrlsshHhRCBEWQrwnhJiQdb1Z5j0ImetZPXxWRQhxoxBinRCiUQixUAhRmLX/QnNfixDi52Y9jhFCVAohouYLR7rsAeb/y5HnUm9jCq55nw4A/q9L3kyzHFnXmQ3cYN7fiBDik6xzjhFC/Nv8/P8QQgR7+P8cDLwipVwFIKWsl1Lel1XvtUKIY7K2M5a3EGKs+excIoRYD7wjhIgANuATIcQqs9z1QohVZl2+EEJ8u8t9vkwI8WXW/gPM/BFCiL+Z922NEOLHPXwGhBAnCSE+Mp/vDUKIeVn70vW8SAix3nxmfpa13yOMLow2IcQX5j3ZYYQQE4QQ/zSfh2bz+1Zk7rtGZH2fzbw/CCH+z0wXCiEeFEJsEUJsEsb312buu9j8X/5OCNECzKMXpJQp4BGgEig17+Nz5nf2ayHEZT3U/0UhxI+65P0n/f8SQhwnjO98SAhxrxDiLWF2e/T2XdmO+3+IEGKZ+b9rEELM3/67bjHkkFLuNguwFsMCybfPi2FFXgwcATQDo8x9pcAZZpkA8Ffgmaxj38SwriYAhcAX5rmOAezAQmBBVnkJvAGUAKPNspea+y4G/mWmfcAGYI55nulmvab08BneBC4F/gGcYOa9jyEoG4GjzbybgVqgHOMt/l3gFnPf0YAK3AG4AE9W3nwz7yigE6gxj3kYaAEOMev5OLDI3FcCtGFYf3aMl4I2oDS7zmb6++Z9HA/4gaeBR819U4AIcDjgxGiCTaX/n8BLwA+z7sXvgP/Xw326CPjETB+EIbZ7dcmLAc6uzw3GD/Jjee77KmCSeb/eBG7v4drnA63ANeZ1bL09o9nXA8ZiPDsLMZ4NT9bzNDHrmLOAERgvyWeb/6uqrH2bMIRPABMxLGkFWA7cZN7f8cBq4PgePsfRwD7mcfsCDcDpXep5v3k/9gMSwN7m/tuBd8xnoxr4DNjYy/c25/Nl5U8EjsV4JsvM/+PvzX1V5ucuMrftQCNwoLn9d+DP5n0sx/ie/CDrO6gCPzKP8+S5dvb/xQXcBaw3t98G7gXcwP4YrVDfzHPcd4H3ss65H8b3yAkEgQ7gO2YdfoLxvG/Pd2Vb938pcIGZ9gMzBvu32Vp2fhn0CuxQZY0fuAjQnrVclrX/UIwfyHXAub2cZ3+gLWv7TeBnWdu/BV7O2j4F+DhrWwKzs7avAF430xezVYTPBt7pcu0/A7/ooV5vYojw+cCTwGTgK3NftgivAk7MOu54YK2ZPhrDanZn7T8a40fJl5X3F+DnZvph4IGsfScCK8z0BcD7Xeq5FLg4u85m+nXgiqxyNeYPjx1DHJ7M2uc163lM1r36t5m2AfXAIT3cp7GABhQB/wP82szfnJX3RpfnZlsifGOX/+eSXp6f84DXMESiBbgu37W6Xo+tP67ju5wvr0hl7f8YOM1MvwL8JE+ZQzFFJCvvp2S9PG7ju/V74Hdd6jkqa//7wDlmejW5z//l7IQI5yl3OvBR1vbLmN9v4GTgCzNdgSFKnqyy56b/5xjfwfXbuNY88/lrxxD3fwIHYrxUaEAgq+xtwMN5/p9ujBfSvczt3wD3mukLgaVZ5xAYL+Tb813Z1v1/G/glENye/621DO1ld2yOPl1KWZS13J/eIaV8D+MHQmCIDABCCK8Q4s9m008HxkNcJLY2+YJhCaSJ5dn2d6nHhqz0OgzLpStjgEOF4fjRLoRox/gBr9zGZ3wa+CYwF3g0z/4R5jV7un6TlDLe5Zg2KWVnL8fUZ6WjbP28Xa+VPnbkdtbLjvGjOYKseyaljGIIWJpngSlCiHEY1lFISvl+nmsgpVyLYQ0egdEE/Y65692svB3tD+7p8+e7/uNSymMwBP+/gFuEEMfvwLU29LZTGM32H2c9M9MwLCswRGJVnsPGACO6PGs3YNz7fNc4VAjxhtl0HTI/R9cm+N6eia7P/w4jhKgQQiwym5M7gMe61OERjBdSzHX6uzAGcABbsj7rnzEs4jS93mOTv5i/IeVSym9KKZdjfLZWKWU4q1ze5938ji0GzhdGd9S5WXXs+rxLjBdpsvb39F1J09P9vwSj1WaFMLqHTt6Oz2oxRNkdRbhHhBBXYjQtbQauzdr1vxhvmodKKQvY6sCzK04Y1Vnp0eY1u7IBeKvLS4NfSvnD3k5sCtTLwA/JL8KbMX6Ierq+zHNMsRDCtx113ta10sdu2s56qRgvNFuA7H54D0Y3gVFh4wftLxg/theQ/3Nnk+4XnokhvmCI8ZEYTd49iXC+e7NTSClTUsq/Av/BEEowrGNvVrF8L1w91kEIMQajGXIuRpN/EUZzb/pZ3YDRbdKVDcCaLs9aQEp5Yg+XegJ4DqiWUhYCf2L7vw9b6P787wy3YtyLfczv5fld6vAMsK8QYhqGJfy4mb8BwxIOZn3WAinl1Kxjd/b/vBkoEUIEsvJ6et7BeFE4D/gWEJVSLjXzuz7vInub3r8rvSKlXCmlPBfjpeMO4Kku322L3YhhI8JCiEnAr9j6I36tEGJ/c3cAw5ptF0KUAL/og0teIwyHr2qM/p58w1ReACYJIS4QQjjM5WAhxN7bcf4bgKNMq68rTwI3CiHKhOFAdBOGFbEtfimEcAohjsD4UfvrdhzzkvkZvieEsAshzsbo332hh3r9jxBinBDCj/Eju1hKqQJPAacIw8nLidGs1/VHfyFGU+KpbJ8IXwhsllJ2mHn/MvMKMZrM89EAjBU9ONJtC9Pp5yQhRMB0rjkBmAq8Zxb5GDjH/F8fBJy5g5fwYQhIk3m9OWwVeIAHgKuFEAcKg4mmcL8PhIXhkOcRQtiEENOEED05TQUwLL64EOIQ4Hs7UMe/AD81n/9RGH2v28IphHBnLTazDhEgJIQYidHPnsF8MXsK44XhfSnlejN/C4bfxG+FEAXm/2GCEOKoHfgMeZFSbsB4qbvNrOe+GJZn3u+XKbo6RhdW9jP7IrCPEOJ0YXhnX0nuC1lv35VeEUKcL4Qok1LqGM3pmHWw2A3ZHUX4eZE7Tvjv5kP+GHCHlPITKeVKDBF7VBhew7/HcHBoxnBoWtIH9XgWwxHmY4wv3INdC5hNWscB52C8+daz1WGqV6SUm6WUPU368StgGYYF9inwoZnXG/UY/VebMSyK/5JSrtiOerRgCPb/YjQfXwucLKVszlP8IYwforeBNUAc8wdaSvm5mV6EYSVEMPriElnX+jfGj8mHUsptNXG+hWEJZN+jjzH+z8vN1oR8pF88WoQQH27jGvnowHi21mP8AN6J4VCWrsfPMSzVNox+uyd25ORSyi8wftCXYrww7AP8O2v/X4Ffm+cNY1iLJVJKDeP/tD/GvW/GEOzCHi51BXCzECKM8RL3lx7K5eOXGM2nazDEcFsvTGAMwYplLXPM8xwAhDC+Q0/nOe4RjHvQ9RoXYjhAfYFxr5/CcObqC87F6JfdjOEA9gsp5Wu9lF9o1jEj1Ob34yyM56MF48V1GVuf9x6/K9vBbOBzYXjW/x9GX3FsO4+1GGIIo6vCYkcQQkgMZ4yvB7su24MwJvl4TEo5ahtFBwzz7b8d4z6uycr/J/CElPKBwaqbxdBBCDEaYwx4ZVaLx5BCCHEhcLmU8vBeyigYfcLnSSnfGLDKWQx5dkdL2GI3RQhxiukk58PwJP0Uw5s4vf9gDMtoV2egshgGmMJ1FcZwuaEqwF6MVoX78uw7XghRZLbG3YDR/VI7wFW0GOJYImwxkJyG0cS3GWNc7zmm1yhCiEcwhv38dxfPVIs9EPNFrQPDU74vfDj6HNMjvgmj2yBft8NMDE/2ZoxhjqdbzcYWXbGaoy0sLCwsLAYJyxK2sLCwsLAYJIb05P7BYFCOHTt2sKthYWFhsVuxfPnyZill2WDXw2LbDGkRHjt2LMuWLRvsalhYWFjsVgghdmoWM4uBx2qOtrCwsLCwGCQsEbawsLCwsBgkLBG2sLCwsLAYJCwRtrCwsLCwGCQsEbawsLCwsBgkLBG2sLCwsLAYJCwRtrCwsLCwGCSG9DhhCwsLi56QukQmNfSEhjSXTDorX09qICUIgUhHsBbCCKcgMP4IzH3d89PF8x1j7NuaJl0uXWRb++hyvqwyiseOa0xB390wiyGJJcIWFhYDglT1buKYI575BDWZX1hlUkOmhncce2d1gPIr9x/salj0M5YIW1hYdENKCaq+VTDTwrctccwS16770bYzWIwAnAq4FHAIdCdIB+he0AolqkNHs+uodo2UXSNpV0nZVJJ2lbiSJGFLEVcSxGwJYrY4MRKkZIqUZiwum5OrDvhf/E4fSIwFicxKZ/LNADcyK02XcjJdIJO/dTtnX5d05px590kUp22H/mcWuyc7LcJCCDfwNuAyz/OUlPIXQohxwCKgFFgOXCClTJoxNRcCBwItwNlSyrW7WH8LCwuMH22Z1HsQRBWZ0LuIp4pM6pm0ntTNchp6QkcmVdhOQ1NXJKopikm7StKWIm5LEleSxNxxYl5TEEWcqBInKmJERJROESNMhIjoJEyUsIgQUxIkRWprE24+VHPZDpyKE4fNYawVB5rUaIm3cNKEkzmo8qCcsr1d0sKiv9gVSzgBfFNKGRFCOIB/CSFexgjC/Tsp5SIhxJ+AS4A/mus2KeVEIcQ5wB3A2btYfwuL3RqpS0P44ip6TEXGzXQ8T7oXq1Qmta0W1TbQbLphQdq2CmZMiRNTEnQ6Y3S6okRElDAROogQVxJElYS5jmfKxhTD0lSFljm3x+7BY/fgtXvxODx4bB6cNkMA02uHzYFD8VOsFFPRZV+mjFkuLZ5d8/Md07WMXdi39ruavLPxHa54/QocNkdf/hstLHaanRZhMxh7xNx0mIsEvgl8z8x/BJiHIcKnmWmAp4C7hRBCWgGNLXZTpJTIlI40BVSPa0Y6npWOaaaIGnldxVYmtG1eR7VpJOwpErYUCSVJzBTDqBIj4ogScXYSEVFTIE1xVOJZork1L6Yk0IVuiKTdg9fhzYhmdtrYV85o+9hu5TyOrDJZ2267G0UM7QEXST0JGBayhcVQYJf6hIUQNowm54nAPcAqoF1KmW4s2giMNNMjgQ0AUkpVCBHCaLJu7nLOy4HLAUaPHr0r1bOw6BWp6rmCaYpmtmBm0jEznchKxzXQe3+HlApoTknKoZG0p4jZk3QqMSLeTkK+CO2EaJFttNNBRIkRtcWM/bYYUSVGpy2G2+mh0FWI3+HvQTR9BOxBKsztbYnr7iCW/UVKTwHgtFkibDE02CURllJqwP5CiCLg78DkXa2QlPI+4D6Agw46yLKSLfKyzWbcmIqeyEp3ad7VYxqo2+70FC4b0iXQXZKUQydpV4kVJYja4kSUKCERJkQHLbKdZtlKo9pMC210mgKaEMmczka/w0+Rq8hY3EUUu4opdJVR455EkauIYndxZn+xu5hCZ6HVdNqHpDRDhB2KdU8thgZ94h0tpWwXQrwBzASKhBB20xoeBWwyi20CqoGNQgg7UIjhoGWxhyJTOno0hRZV0aMp9PS6p77RHWzGFQ4F4bahuO0Itx3pAjWgkLQrxO0qUVuCTiVGh4gQEmFaTSFt0lqo1xppUBsJq5Eez+93+Cl0FVLsKqbIbQjnNNeYbkKaEV1X0Q4Jal1dHafOOZUNGzZQXV3NggULqKmp2e7jLbpjWcIWQ41d8Y4uA1KmAHuAYzGcrd4AzsTwkL4IeNY85Dlze6m5/59Wf/DwQOrSsDZNAdWjKnpnlqimBTaWm9/rOE9FoLhtCI8dxW1HcdmwBz0oppgm7Cni9mTGIu0QnbQToo0QLXobjXozbal2QokQ7Yl2QskQqq4aXgspc8nC5/AZoukqpjBQyGTXFGa4ZnW3TNOiu4OCujNcddVVLF26FICNGzcyY8YMamtrLSHeBZKa0SdsV6zRmRZDg115EquAR8x+YQX4i5TyBSHEF8AiIcSvgI+AB83yDwKPCiG+BlqBc3bh2hb9QNrRqJt4RlPonWqumHaxXHv0zBWgeO0oXgeK14GtyIWjyofitaO5BSmXSsyZotMWJaREaLcZFmmr1kYoaQpoIpQR045kB7ForMfP4FScFLmKKHQXUuQqYlzhOApdRjp7nZMegCbf5uZmfvKTn/DMM8/w0EMPcfbZ2x4YMH/+fNra2njvvffQdZ329nZLiHcRyxK2GGqIoWyMHnTQQXLZsmWDXY3dEqlJ9Fi2Ndr7Ot0kjNrz8yCcNlNQ7Ui3QHND0qWRdKrEnEmi9jgRe4wOJUJICdMqQrTSTiQVySzhZJhIKkJnshNV9jzY0yZsGbEsdPYgnmY6e9tj9/TH7dxpamtrOfvss2lrayMcDgPg8/mIRHpu5s53jiOOOAJVNe7XwQcfzPvvv98v9R3uPPjpg/z+w9/z/nnvD7lnpS8RQiyXUh607ZIWg43VJrMbIFM6WjjZzfrMbtrt2q8q4730mSog3Qq6R6C5dJIejXhBipgjQac9TsTWSbstQrvooEVpo0W20UQrbaohqJ2pTrNiQNxcul5CKPgdfgLOAH6HH5/DR4W3gglFE/A7/Mbi9BNwBPA7/d2E1efwDagHb3NzMwsWLGDOnDkEg8FdPl9afDdv3pwRTwBFUXjwwQd7ObI7M2bM4J133mHWrFlIKfnwww8ZNWoUqZRh1bndbv785z/zwgsv8PzzzxMIBGhtbUXTNBRFobS0lNbWVqSUOelx48btcf3MGUvYGqJkMUSwRHgQkVIi4xpaKIHWkTTW6XR6uyOB3tmzxag5JSmXTtKZIu5IEfXGiRTE6LB1ZqzRFtFGEy00SMNzN6rE808PpANJcNlcGZH02431SMcoahyTDVF1+rsJqc/pywiq3+HHY/d0myhhqNLc3Mypp57K0qVLWbduHXffffcOn2PJkiVceOGFLFy4kKKiohzLVVEUysvLd0r0mpubmTdvHs888wzpVitN09i0aVNOuRNPPJGeWrXq6+t7TB988MH4/X40betLm67rqKrKk08+yezZs7e7rrsDSS2JTdiwKdaUkBZDA0uE+wmpS/RIEi2UzBLWRO52KJHXOSnhUom4Y7Q6OmjwN7M50EiDaKbN1kGHLULY1kmHrZOwrRNN5B7vc/gyFqjP4cuI5FhnDdMcB24VTnN/WjizhXQwh8T0tUW6Lerq6jjmmGPYuHEjAK+88kqP9Zo3bx5PPfUUzc3NaJrGiBEjUBSF6upqVqxYQVtbGyeccEK3Y202G6qqsmrVKo488shu+xVFwe/3s2bNmhwxLCkpQdM0QqFQ3nOWlpYC0NramhF8t9vNhAkTtmkJRyIRwuFwZsnHCSecQHl5ed5zxGIxHn/8cWbMmLGNOzy0SOkpa3iSxZDCEuGdQKY0Q0zTotpVXDsSaOFkt7l3pSJJeLStAlvewkaxhfVyM032Vprt7bTaQ6QUlWJXMZW+Sip9lZR7yxnpnExNFwu0a5Ou1+7d7d/wr7/+eh588EHq6up44IEH+u066ebihoYGEokEYIjho48+mrf8nXfeyT333JOTt3nzZoCMgPdEKpWiubm51zL5aG1tzZvvcrl48803MwJYW1vL9773PSorK7fb0m5ububOO+/kjTfeYNOmTd0s4dbWVnRdp7GxEchvTR922GE5L0oOh4OjjjqKxsZG7r777iHZzJ3SU9a4a4shheWYlYWUEhlTUTPCaoir3pFEDSXQOwyR1aPdm4d1JyS8KhFXnDZnBw22FjZSz1q5gU2igRZHOyFbBCkkTsVJlb+KSl8lVb4qqnxVGcFNp4ez00hvBINBWlpaEEJQXV3N4sWL+9za6uroBGC323nsscd69Fo+9thjee2113A4HKiq2mPTb08oioKuG29lQogdPj6ba665hjvvvHOnj98e0i8p8Xg8ryVcV1eXc/+64na7KSoqGnL9zjcvvZnX17/OW2e/NdhV6Vcsx6zdhz1GhKUm0SLJjLB2s2LNdb5ZlHSvIOE1LNg2R5hGWwsbRT1r9PWskRtosbcTtW31Tgp6ghkxTYtsttCWuEt2m/7SgWbJkiWcdNJJGcGy2WyMHDlyh8S4rq6Oq666ivnz51NaWsr111/PokWLMn2daYemrpSUlPDiiy8yceJE5s2bx0svvcSJJ57IvHnzaGlpyTlnup82Ho/T0tL7nDPZAtwVv9+P3++ntLSUzz//HACPx8M///lPzjzzTEKhEJWVldTX1xMIBPjOd77DvHnzBqSpvjeyRRqgs7OTzk7DYa/r53W73VxyySVDot4///fPqd1Sy6tnvjqo9ehvLBHefRjWIpzcGKbtma8NazaS7D6W1SaQfsUUWMOC3SqwG1iprqbR1tItSswI34gcy7XKv1VkK7wV1hhEk2wx3BFLqLa2lhNOOIH29vZMnqIoVFVV8dRTT21TjE866SReeuklioqKkFLm7VPtCSEEXq83IyhgNP+ed9553HHHHXlFxO12Z5q0e8PlclFcXExpaSmRSISTTz45R5h8Ph/RaLTb9XcH0s3bH330EZdeeinXXnttTlM/wJVXXrlTTm99yXVvX8enzZ/y0ndeGtR69DeWCO8+DGsRTjVG2fC3j7MEtpWNop61+ga+0lazUd2c4yWsCIVyb3m35uFsS7bAWWBZsdtJWgzdbjcFBQXYbDbGjh27Xc2T2V7B2Z7AiqJw8cUX9yiIYIj/EUccQVNT0y7VP1+z8YQJE3jxxRcz9a+trWXmzJmZuuWzeF0uFwcccECPn3vJkiWce+65mZeOioqKnD7Y3ZW6ujrmzJnDBx98gKqqTJw4kZUrVw5qna568ypWt6/mmdOfGdR69DeWCO8+DGsRBvjGX75Bc8xwigk4AzmC2rXJuMxbZk1n14fU1dVx4IEHdrPqCgsLcbvdxONxFi1atM1hMEuWLOHb3/52pukTYMSIEYwZM4bx48fz5ptvkkqlsNlsVFRUUFBQwE9/+lNuvvlmNm3axD777MMbb7xBNBrdrnqXlpYyadIkfvKTn3D11VezefPmHHFNNxcDHHnkkT02bwshmDlzJg899FBe8W1ubs44omUzc+ZM3n333e2q6+5AbW0tc+bMYcGCBYPuTf2j139EQ7SBv5zyl0GtR39jifBuhJRyyC4HHnig3FU+avhIrmxdKcOJ8C6fy2LHWbp0qRw9erQsLy+Xfr9fYnQKZBZFUeTIkSPllVdeKZuamrodO378eDl16lRZUVEh3W53t+N7WgKBgKysrJRVVVWyqqpqu48DZHV1dU49VqxYIffaa6+cMqNGjZKjRo3KbJeXl+fsF0LIl19+udd784tf/CKnfEVFhZw5c6ZcsWJFn/8fLAwu/8fl8nsvfG+wq9HvAMvkEPgNt5ZtL8Pe7Nu/fP/BrsIezYwZM1i3bh2QOyxmw4YNNDQ0oOs6mzZt4p577mHhwoV4PFu9wpubm3t0aOpKuunY4/EQi8Xyjn91uVyUlJQAsGXLlky+3W7P8fTdsGEDFRUVOcfquo7X681Y0xs3bsTtdmf2p4fypHnppZe2e6ILr9fL3/72t2E3MUZfI6UkoSWIqbG8S1SNEkvlyUtvp2J83vI5E4smDvZHGRSWL19ebrfbHwCmYcz3bzEw6MBnqqpeeuCBBzZ23TnsRdhi6BAMBnOG1nQdq5tPOO12OzU1NbS0tKDrOjabjZKSEurr63O8ko2Xf4jFYlRUVFBWVkZzczNCiEwT9X333UdNTQ3Nzc1UVVVlhPexxx7j3HPPzZwDuotqPrKbx7NZunTpdjW7zp07F5/PN2ATkwwUutSJqTEiyQidaiedyU461c5uAplXRLvmZx0T1+LoUgcJNh3smoJdE+ZiptWtaYem4JYO3NKJS3fg0u3MspdzwBnHDvYtGhTsdvsDlZWVe5eVlbUpijJ0+yGHGbqui6ampin19fUPAKd23W+JsMWgkbaS0w48a9as6Ta0ZVtDk5YsWcJ5551HcXExq1atAqChoSEzoUW+vthgMMj+++9P2t/gV7/6VY4Al5eXdztG13Visdg2vZaPPfbY7e73DAaDXHPNNdtVtr9JC2dnqpNIKkI0Fc3ME951iSQjRNVoN5HNrFOdCEmuIGals0XToSl4pBO3dODSHXh0G4WaDbuuYFcV7JofRfWjqBKh6pDSIaWB3DENsTkc2OwOkrEoByX2TEsYmGYJ8MCjKIosKysL1dfXT8u33xJhi0GnpqZmpx2RZs+ezYsvvsgxxxyTk79+/XqmT5/OP//5z7yi+NhjjzF16lQ0TeOzzz7L5B900EF88MEHPV5vW8ORpJTU1dUN2OQUUkqiatSITpXMjVSVXqfzMyKaFtlkmFgiSiIeJRWPY1OFKYzCFEBDJLMtTJdmywimX7NRrNtwaAKbasemFiJSAURKB237uhHSKDY7DrcLh9OFw+3G7nLjCLhxuFzm4sbhcmPPpM1yZnmHy20em7+sYrORjEX5fxd/l+b1a5l40KH99B8Z0iiWAA8O5n3P2wVgibDFbs8ZZ5yRsVBtNhtOp5NYLEYsFuPII4/k7bff7ibENTU1TJ8+nWzve0VReOyxx3q91iOPPMI55/QcCvu1115j7ty5vPrqtieD2F4BzUmnjLLhRJh4NIIai2FPglNVcKaUrWsz7UgpuFQFt+bArdoo1RQqVIFNAyUlEdIDbN/sbEJRcLo9GQF0uDyG6Jl5TrfHEE8zbZTzGGXTQunKFda0UNrs/f9T5PR4KSyvoGn92n6/loXF9mKJsMVuzeLFizNzOAP88Y9/5Mgjj+S4445j/fr1pFIpvvGNb/Dxxx93s06vvvrqHEH1+XzbtGDPPvtszj77bOrq6jjyyCNpbGpE8SjYA3Zsfht2v52yb5Tx8GcP05Hs6CagGcFNhElFY9hT5IpnZi3MtQ2v6sCtOShTFUakBPakREk5gGJzyY/D48Hl9eH2+XF5fbi8XlMw3TizhbHL2pnZ9my1LN0ebHb7bj9GPjh6LM2WCA8aXq93ejQa/Wigrvfee+95fvCDH4yJRCI2RVHkxx9//KXX6x1SrQG7LMJCCBuwDNgkpTxZCDEOWASUAsuBC6SUSSGEC1gIHAi0AGdLKdfu6vUt9mwuuuiiTHrRokWZuZ+XL1/OXnvtRXt7O/F4nKlTp1JZWZmZcau2tpZzzz0351yHzjiUtVvWYvPZaEu00Z5opz3RTlu8LWfdFGli5YaVlPyshDJ/GQ6p4E7a8CQUPAkbieQaXlv0AJ6kDZ/qwqPZKVVtVKYU7CmwJZ0ItaTXzyWEwOn1mgLqx+XzmULqy6TdPh8un98o5zXS6TJOrwdlNw/m0R8Eq8ey+sMPUFMp7A4rkMNwJT12/4ILLhj3yCOPrJk5c2asvr7e5nQ6h5QAQ99Ywj8BvgQKzO07gN9JKRcJIf4EXAL80Vy3SSknCiHOMcvlny3fwmI7uP/++zP9szabLSf4QmlpKX9/8e9896LvEtEi2Pw2OgOdnHrzqfiDfhJKglFXjMpYsDa/jS3+LZzyj1NAgkMVeBI2U1xteJI2nB3gidkojikckfDh1Qrx6nacIr/YuXx+vAUFOE3hdKcF1OfH5fFuTWcJa1pcHe7dJx7z7kRw9BikrtO6aQPlY8cPdnUsgCeeeKLw9ttvr0qlUkpxcbG6ePHi1SNGjFDHjx8/benSpStGjBihaprGuHHjptXW1q4AmDNnzphNmzY5AebPn7/+uOOO67zqqqtGrF692rV+/XrXyJEjE+eff37r3nvvHZs5c2YMoLKyMjP/8HnnnTf6k08+8cXjceWUU05p+93vfrc5f+36n10SYSHEKOAk4NfAVcL41fgm8D2zyCPAPAwRPs1MAzwF3C2EEFLuoJujxR5HXI0TSoQIJUOsb1zPdTddx5r6Ndh8NirOqMiI6LjrxmEP2HEXu7EH7KhSpeLGCiqoAGk0+3qSCu6YDVcInBGBu1XBvdkQWa9mxyvteIUdRx5h1aUkmkgSjicIJ2LUxxOE4wkiiQROn58/3v8g3sIivEVFeAsKsdktS2uoUTZ6LADN69fu0SJ8zVOfVH9VH/b25TknVQaid52534YdPe7YY4+NnHPOOSsURWH+/PnBm2++ufL+++/feOaZZ7Y88MADJTfddFPjs88+W7D33nvHRowYoZ5yyinjrrrqqobjjz8+snLlSufxxx+/1+rVqz8HWLlypfu9995b4ff75c0331wuhODwww/fq7W11f6d73yn9Ve/+lUDwPz58zdVVFRoqqoya9asmvfee89z6KGHxvryfmwvu2oJ/x64FgiY26VAu5QyPfPBRmCkmR4JbACQUqpCiJBZPifQqhDicuBygNGjR+9i9SyGClJKIqlIRkxDiRAdiQ5jnezIyc/O60h2kNC6eCOfCKO1kThTNpwxgSMM9gg4OwXOZoFrhdE87NV8eHU7PuHAa3NgV7o7J2q6TiSRJBJPEIp3sskU2Uh6nRHaJJ2JJKXBIG63m02bNuWEJnz33XcZN92aJXCoU1Q5ApvdbjlnDSHWrFnjPP3000c1NTU5ksmkUl1dnQD44Q9/2HzqqadOvOmmmxofeuih4MUXX9wM8O9//7tg5cqVGW/CSCRiC4VCCsDs2bPbzZn5UFVVfPDBB/5ly5Z96ff79SOOOGLSwQcfHD3ttNPCjzzySMnDDz8cVFVVNDU1OT755BP3bifCQoiTgUYp5XIhxNF9VSEp5X3AfWDMHd1X57XoG5JasptI9rTuSHQQShpi25HsQJNat/MpGrhSNgp1D0XST5H0Uap7GK0W4lFLcSUV7EmwJXREXEXrjBMLdWAXPU/4o2paRkTb41E2JBJZgpokYm6H4wliyRQSwzP6iSee4Nprr2X9+vWZczmdToqKiiguLOYf5pjlurq6jOMXGPNYD/acyBbbh81up2TUaJo3rBvsqgwqO2Ox9hdz584d/ZOf/KT+vPPOC73wwguBm2++eQTAxIkTU8FgUH3uuecCH3/8se+ZZ55ZDcYL/YcffpjXwcrn82XGxo0aNSp56KGHhquqqlSAY489NrRs2TJvTU1N4u67765Yvnz5l2VlZdoZZ5wxNh6PD9oMYrtiCR8GnCqEOBFwY/QJ/x9QJISwm9bwKCAdAmcTUA1sFELYgUIMBy2LAUbTNSKpSI5I9ro2hTWcDBNTu7wsSrDphievS1UoxE8RfgLSwwjdzV56OW51REZMlYSGiKno8SRqZwwtmexSOxUIA2EUmx1PIIDbby6lAdx+P55AAW6fH7c/kLvfH+DTL7/kO2eeRWNjI4qiIKVECLHN6S9ffPFFZs+ezf7778/555/PV199RU1NDY8++miOx3RdXR0zZ86kra0NAIfDwVNPPbXr/xSLAaOsegzrP/tksKthYRIOh22jR49OATz88MOl2fu+//3vN1166aXjzjjjjBa7OYzt8MMP77jtttvKb7nllgaAd9991zNr1qxuVuy3v/3tjt///veV4XBYcbvd+r///e/Aj3/844a2tjabx+PRS0pKtA0bNtjffPPNwqOOOirc9fiBYqdFWEr5U+CnAKYlfLWU8jwhxF+BMzE8pC8CnjUPec7cXmru/6fVH7zzpIU0nAznLNtjoYaTYaQZXNmmgUPNHVfql24C0kNAeijXnIzVPLg0Pw7Tu1dJ6pBQkYkUWiyBzCtwCXMBxWbLiKQnUIy7JIDbF8AdCODxG8Lq9heY663C6nC5d9g56bAjymhoaOiWnx2EPj315eeff57Z/9RTTzF79mxqamp6nKyjtraWb37zm8Rixvc9HU3JsoJ3L4Kjx/LFO28Qi4Tx+APbPsCiz4jH40pFRcW+6e0f/vCHDT/72c82n3vuuRMKCwvVww8/PLx+/XpXev+5554bmjt3ru3yyy/PGGz33XffhksvvXT0pEmTpmiaJg499NDwrFmz1ne9VllZmTZ37tyG6dOn7y2E4Fvf+lbonHPOCQFMmzYtOmHChGlVVVXJAw88MNLfn7s3+iSUYZYInyyEGI8hwCXAR8D5UsqEEMINPApMB1qBc6SUq3s7b1+EMhyq9Cai4WQ4M6Y0Jy9riaTM58b05HWlFJwpG66kgiul4FZtFOpefJrbHGdqx6mmh8hISGjIRGrbMxsJgcvjxen1Zsaaurw+nB6v6dm7Nd+Z2Z+bP1Q9fWtra5k1axZSSgoKCgiFQr2WPeKIIzLzTRcXF7N06dIBmxnLou9Y8/Fynr7tF3z3F7dRPWWfwa5Ov5AvlOEnn3yydr/99mvu6ZihyNtvv+39n//5n+rly5fXDXZddpVPPvkkuN9++43tmt8nk3VIKd8E3jTTq4FD8pSJA2f1xfV2BiklqlRJaSlSurEktWTedbpMUk+S0sy1uV/V1Z6PM4/NLp9zPi25dYakVJeXL2nMeuRKGlapO2WjQPdSoHvwaS6qVAfjUg6cqVIciVKUhA5xFRlPgt7zi5TD5c4dY2qKpdvnM0TT00VEfb5csXV7EHkcmoYDM2bMoKioiLa2Nmy23sfUnn322RkBLioqsgR4NyY4egxgeEgPVxEeDtxwww2VDz/8cNmCBQvWDHZd+pNhO2PW91/5Pl+3fZ0jhukm2F1GgqKDCwce6cSFOQG9dOCSdhzSjlO34ZZ2/LqCQ7fh0N3YU26cySKcKYE9YTgbEU+hx5JosTg9V0/F6XHg9vuMJtug2bRrNt+m+0fd/uwm3gAun9+akGAbpJuW29raWLJkSY/hBNPlHA4HtbW1lgDvxviLS3H7/DSv37Ods4Y6t956a/2tt95aP9j16G+GpQhrqsoB+kQm2oPYdQWbIrDpxgT0Ns3wyE0vQjOiswhVB1WCqiFVDZky1npKRU+l0FMqWjKFpqZQk8ltRHFRzaX7RP8un88UzgDu0q3i6enSL+o2+0o9ppgOxNy6eyIPP/xwZurKk046iX//+9/d+niXLFlCU1MTYMT+tQR490YIQXDMWJo2rB3sqlhYDE8RTnRGSDz8Lq6sPM1cchACu9OJ3eE01k6nEZXF6cTucGP3bc2zORzYnS7sTicOpxObY+u+zLFdzmPPOsbudFlTCQ5Bzj77bP7xj3/w0EMPoes6hx12WMZTOs15552XSf/5z38ejGpa9DHB6rF8/tbrSF0ftt0tFrsHw1KEXT4/p1/7c+yOLIF0dhfU4TAhvcWuc8cdd/Dll1+ydOlSdF3nlFNO4bPPPstYvCUlJbS2tgLkjCG22H0pGz2WVDxGR3MjheWVg10diz2YYSnCNrudCQfukfFCLXaCYDDIc889x/Tp09m4cSOqqnLBBRfw/vvvA7BlyxbA6A+eM2fOYFbVoo9IO2c1rV9nibDFoGK1w1hYYAjxa6+9lvGSXr58OXV1xqiI9EQfdrudYDA4aHW06DuC1Vs9pC0GDq/XO30gr/fee+959t9//8kTJ06cOmnSpCnRaFQMRj16wxJhCwuTmpoapk83vpu6rjNnzhzq6uqIx+OAMbWlxfDA6fFSUFZhifAwJZVKkUqluOCCC8b98Y9/XPf1119//vbbb9cNxVCG1q+KhUUWjz32GE6nE4Cvv/6aY445hvSENtmhEi12f8rGjN3j55AeCjzxxBOF++677+S99957yqxZsyZt2LDBrmkaY8aMmbZ582Y7gKZpjB49etrmzZvtmzdvth9//PETpk2btve0adP2/sc//uEDuOqqq0acfvrp4w444IDJ3/nOd8Y9/fTThV1DGdqzRplccskl1RMnTpw6c+bMSenrDAbDsk/YwmJnqampwW63k0wmaWlpyTRFezwe7rjjjkGunUVfEqwey+oPP0BNpfa88fTPXFlN4xd9GsqQ8ilRTr9ntwhlGIvFlIMOOqjzwQcf3HD11VdXXX/99SMWLlw4KF6XlghbWHQh7TGfHarw6aeftvqDhxnB0WOQuk7rpg17dGzhwWYwQhkqisKll17aCvD973+/5Tvf+c7Egf/kBpYIW1h0Ye+99yZ7zvI5c+b0OJOWxe5L2eixgOGctceJ8E5YrP3FQIcyPO2007pFTBrMoapWn7CFRRcee+yxjBOWzWazmqGHKUWVI7DZ7TRZzlmDyvaEMjzllFNau4YyTJd59913PeTh29/+dseKFSs84XBYSaVS/Pvf/w5MnTo1DkYr14IFC4rT1zzkkEMGLZShJcIWFl2oqamhuLgYMII1WM3QwxOb3U7JyGrLOWsASYcyTC/z5s2rSIcynDp16t6lpaVqdvlzzz03FI1Gu4Uy/PDDD32TJk2aMmHChKl33313Wb5rZYcynDJlytR99903mg5l6PF49Pfff9+31157TX377bcDt91225b+/eQ9YzVHW1jkIT0sKb22GJ6UjR7L+s//M9jV2GPQdX15vvzzzz+/PV/+e++956mpqYlOnz4980WsqqpSX3zxxW5hcOfPn7+5a94VV1zResUVV7R2zY9Gox+ZyY3bW/f+wrKELSzy4Ha7c9YWw5Pg6LFEWluIRwY1rrtFHm644YbKc845Z8Ktt966abDr0p/skggLIdYKIT4VQnwshFhm5pUIIV4VQqw018VmvhBC/EEI8bUQ4j9CiAP64gNYWPQH6djBLS0tLFmyZJBrY9FfBLOcsyyGFrfeemv95s2bPz3++OOH9RtSX1jC35BS7i+lPMjcvh54XUq5F/C6uQ1wArCXuVwO/LEPrm1h0S8sWrQo4zF57rnnDnJtLPqLrXNID+u48RZDmP5ojj4NeMRMPwKcnpW/UBrUAkVCiKp+uL6FRZ+QninL5/MNck0s+gt/cSlun5/m9ZZzlsXgsKsiLIF/CCGWCyEuN/MqpJRpT7N6oMJMjwSyx6ZtNPNyEEJcLoRYJoRYlg6kbmEx0KStXyEEDzzwwCDXxqK/EEIQHD2Wpg1rB7sqFnsouyrCh0spD8Boar5SCHFk9k5pmBI7NGG2lPI+KeVBUsqDysryep5bWPQ7aetXSskLL7wwyLWx6E+Co8fQsmFdpuXDwmIg2SURllJuMteNwN+BQ4CGdDOzuW40i28CqrMOH2XmWVgMOZ566qlMWMOnn356kGtj0Z+UjR5HMhajo6lx24UtdomBDCFYX19vO/TQQyd5vd7pF1544eiBuu6OstMiLITwCSEC6TRwHPAZ8BxwkVnsIuBZM/0ccKHpJT0DCGU1W1tYDClmzJiBy+UCIBQKDXJtLPqTtHNWs9UkPWxIpVJ4vV558803b543b96gjwXujV2xhCuAfwkhPgHeB16UUi4BbgeOFUKsBI4xtwFeAlYDXwP3A1fswrUtLCws+oRgtSnClnPWoNBfoQwLCgr0448/PuJ2u/XeazC47PSMWVLK1cB+efJbgG/lyZfAlTt7PQuLgaS5uTmT9nr7NuKbxdDC6fFSUFZB07o9Z5jSz//98+qv277u0wd7YvHE6C2H3TJkQhn25WfrT6xpKy0s8nD99dcTjUYBS4T3BIKjx1hzSA8S/RXKcHfBEmELizxkO2PdeOONg1gTi4GgbPRY1ny0DDWVwu5wDHZ1+p2dsVj7i/4KZbi7YM0dbWGRh29/+9uZ9M033zyINbEYCIKjxyJ1ndZNQ0ab9hj6K5Th7oIlwhYWebjjjjtwmBZRW1vbINfGor8pS88hbTVJ9ysDGcoQYOTIkfv8/Oc/r37qqadKKyoq9l2+fPmQi8hiNUdbWOQhGAxSUFBAS0uLFUlpD6CocgQ2u90K5NDPDHQow02bNn26C9UdECwRtrDogVgslrO2GL7Y7HZKRlZbIjyEuOGGGyoffvjhsgULFgxrt3WrOdrCwsICo1+4yRLhIYMVytDCYg/H4/HkrC2GN8HqMURaW4hHhvVvvsUQwxJhC4seiMfjOWuL4U3ZmHEAVpO0xYBiibCFRQ+kHbIsx6w9g/Qc0lZYQ4uBxBJhC4sesByz9iz8xaW4fX7LErYYUCwRtrCwsACEEARHj7UCOfQjAxnKMM3KlSudXq93+k033VQx0NfeHiwRtrDoAcsxa8/DmEN6LUa8GYvdlVQqlUn/6Ec/GnXUUUcN2XiklghbWPRAMpkEoKWlhdra2kGujcVAEKweSzIWo6OpcbCrssfQX6EMAR599NGiMWPGJPfee+8h611pTdZhYdEDZ511Fg899BAAZ599NuvWWc2Uw51gZvrKtRSWD8nWyz5h8w0/q06sXNmn4cFce+0VHXHrr4dMKMNQKKT89re/rXzrrbe++uUvf1nZl5+1L9klERZCFAEPANMACXwfqAMWA2OBtcB3pZRtQggB/B9wIhAFLpZSfrgr17ew6E/uuOMOFi1aRDQapbOzc7CrYzEABKsND+nm9euYcOChg1ybPYP+CmV4zTXXjJg7d25DYWHhkI6stKuW8P8BS6SUZwohnIAXuAF4XUp5uxDieuB64DrgBGAvczkU+KO5trAYkgSDwcwY4dbWVpqbmwkGg4NcK4v+xOX1UlBWMexnztoZi7W/6K9QhsuXL/e9+OKLxb/4xS9GdXR02BRFwe126zfccEPTwH26bbPTfcJCiELgSOBBACllUkrZDpwGPGIWewQ43UyfBiyUBrVAkRCiamevb2HR3zQ3N2ccdKSUXHfddYNcI4u+RlNTRDtCtG3ZRP3XX7H2Px/h8vmsYUoDSH+FMly+fHndpk2bPt20adOnl112WeNPfvKTLUNNgGHXLOFxQBOwQAixH7Ac+AlQIaXcYpapB9IdKyOB7LevjWbeFiwshiALFizI8ZL929/+xoMPPjiINbLoiqamSHR2Eu/sJBntJB7tJNHZSSIaMdfGvkRnhERmn7Edj3aiJhJ5z1tYNnz7gweTdCjD9PYPf/jDhnQow8LCQvXwww8Pr1+/3pXef+6554bmzp3bLZThpZdeOnrSpElTNE0Thx56aHjWrFnrB/qz9BW7IsJ24ADgR1LK94QQ/4fR9JxBSimFEDvk6y+EuBy4HGD06NG7UD0Li11jzpw5/OxnP8sMd5g0adIg12h4InWdeLSTWEcH8UgHsXAHsXCYWLiDeCTcTTgTaVHt7ERNJXs9t0DgtNlwCAUHAoeUuDUdv6phT6nYk0ns8YSxaDoOXceh6RTbCgfo0+9ZDHQow+3ZN9jsighvBDZKKd8zt5/CEOEGIUSVlHKL2dyc9vXfBFRnHT/KzMtBSnkfcB/AQQcdZA3Wsxg0smMKOxwOHn300cGu0pBH1zUSnZ2GkHZ0EIuEiYVDxE1R3SqwIWKhELFwB4loZ4/jcgXgkODQJQ5Nx66qOJMpfJpuiKammWtjSec5NB27rmOz2bF7vQifF8XrRfH5ctc5aR+Kz0vomWdRG60hSoPNnhLKcKdFWEpZL4TYIISokVLWAd8CvjCXi4DbzfWz5iHPAXOFEIswHLJCWc3WFhZDkrRjltPppKamZpBrM7DoukY8EskSz44uYprO68gIajwaxRgo0R0FcOrgVFUcyRQuVSOgajg1DYeq40ynUfD4fHgKCnEVFGLz+7sI6LbEdGtaOJ07/LnjX3xBcu3aXbp3FrvOrbfeWn/rrbfWD3Y9+ptd9Y7+EfC46Rm9GpiD8V37ixDiEmAd8F2z7EsYw5O+xhiiNGcXr21h0e+43W46Ozt3+yAOuqYRj4SzLNQuzb5p6zRLUBOxGL0JqksHhymo7rSgqhpOTcdhCqoTgcfnx1NQiLOwCHtJCbbiImxFRdiLi7Gll6Iic12M4vNijGgcHBSvDz0aHbTrW+xZ7JIISyk/Bg7Ks+tbecpK4MpduZ6FxUCzOwRx0NQUHc1NdDQ2EmpqoKOpkVBjPR1NjXS2tRKPpAU1PzYMCzUtqJ6USmG2kKpmWpiCGijAWVScX1DTYmqmFZ9vUAV1Z1C8XmQ8jtQ0hM022NWxGOZYM2ZZWAxxNFUl3NKcEdaOpgZCTY10NDbQXr+FzlA72RarADy6xB1P4k0kKcqxTs1mX9NCdRcU4CouyRLQ4SWoO4PiNSaS0mNxbH7fINfGYrhjibCFRS94PB6i0Wi/BnHQVJVIazOhxmyBrSfU2ECowRDZro5LHk3iiScoSiSpSqp4kyqeZAq/x0egshLXiJE4Ro7EXlGet9l3TxHUnSEjwtFOS4Qt+h1LhC0seqEvmqN1TSPS2kKoqYFQYwMd6SbjhnpCDVuItLflEVkddzxJYSJFZTKFJ6niTabwBwooqKjENXoUjpEjcIwciWOEua6qygiIxc6j+Ix7KK1+4T7H6/VOj0ajHw3Eterq6pz77bfftLFjx8YBDjjggMgTTzwx5MYTWyJsYbGL6Lohsjl9sk0NhOq39Ciybk3HE08QSKhUpAyR9aQ0AgVFFFRW4hozcqvAjhiBc+RI7FVVKC5XD7Ww6Cu2WsKWCO+upMf2V1dXJ1asWPHFIFenVywRtrDoBY/HQywWpbyokI0rPs9xegptMUQ2HGpD6rlzxGdENqlSblqxHk0SKCqmoKIK96hRGYF1jBiBY9RIHBUVCIdjkD6pRRrF7HqwRHhgeOKJJwpvv/32qlQqpRQXF6uLFy9ePWLECHX8+PHTli5dumLEiBGqpmmMGzduWm1t7QqAOXPmjNm0aZMTYP78+euPO+64zquuumrE6tWrXevXr3eNHDky8Zvf/KbbPBRDEUuELfZ4pK7T2d6WaSoOmZZsx5bNzJ25Hz63C0VRWPyLrXNHu1QdTyKJL5mizOyP9UooKC6loHIE7pGmJTtyRKa52F5WZnnb7gbsCZbw6wu/rG7dFOnTvouSkf7oty7ce8iEMqyrq3Nu3LjRuffee0/x+/3aLbfcsmn27NmRvvzMfYElwhbDHqnrdIbac7yKQ40NhDZvJNRYT7i9Db2LJetSNTyJFJOSKp5IHE9SxScUCkoMkfVkW7Jms7GttBSh7HRMFIshgsiI8NAdljac6K9QhqNHj06tWbPmP5WVldo777zjPeussyZ+8cUXn5WUlAyp0IaWCFvs1uiaRqStlUhrC5HWZiKtLYRbWwg3NxFuqCfS2kxnRwearuUc51Q1PKbDU6m59tmdBEpKKawagWek4fh02Q03UNfaSiwQYFVjo+VRvAegeA2P6OFsCe+Mxdpf9FcoQ4/HIz0ejwZwxBFHREePHp347LPP3EceeeSQ+sdaImwxZEnF44S7iGuktdkQ2MYGIq0tRDu7ty4pUuJOqrhSKr6USmnKEFy/001BadAQ2VHVphWbZckGAt3O9cqVVxJNJPDabJYA7yGkvaOHswgPJbYnlOEZZ5zR0jWU4S233NIARijDWbNmdWu22Lx5s728vFy12+188cUXzrVr17pqamryh80aRCwRthhwpJTEwh2m9dpiCqwptGmBbW8jmYh3O9ah67gSKu6USklKZUTKSHvsTvxFRQTKKvBVVeGorMJRWYHdXDtGjLCG71ggdR09GkPv7ESPdqJHo2Y6ioxG0To70UMhwBLh/mAgQxn+4x//8P/qV78aabfbpaIo8ve///26iooKrWu5wcYSYYs+RVNVOtvbtlqvLS1E2loItzQTaW4i3NxEZ6gNTevyXZDg0nXciSTulEpVSsOdFliHC39xCYHycjyVI7BXVeKoqMReWYGjshJ7RWW/TaowEJN1WORHSomMxQyhzBLLTLozT36+cllp2ct4b6NtUyCQIASOqsqB+qh7DAMZyvDiiy9uv/jii/OedyhhibDFdpOMx7Zari2GyBoC20KkxRDYaLij23GKBLeq4U4k8aVUgikVlymyPpcbX3Ep/ooKXFUjDOu1ohJHlSGujopyFN/gzVqUjqKUXlvsHFJV0UIhtLY2tPZ21LY2I93Wbq7N/PateXokAj2EOOx2frsd/EXo/mI0XyG6twjNE0Qr8KM6/WgOD6rdg2pzkxJOVBykpJ2UbiOlClIpSCYlNrvC2f87lYIRRdZwsUHGCmVosceQ3TycK65bm4gjrS0k492tCIfEsFjjyZzmYXdKw+v24A+W4SuvwFFVaVitlea6wrBilSFuYQ6XKEp9idQ0tI6OreLZ1maIant7rqhmhLU908SbD+H1YisqRBQF0YorUUdMQ/UVo7r8hnAqLlTFRcoUTlW3kVQFqZQgmZSkkjrJmIau5xFsCSTMRYDTZcPpseP02HF57ATMtNNjR01o1L1XTyiiUGgJ8KBjhTK02K3RdY14OExnqJ1oezvRjnaiIWPpDG1NR9va6OxoR+/aPAy4JbgTKVzxBFWqhjupZpqIvT4//mAQT0XVVqs1x4qtQBkGwpVIGH4cra2t1NXVDduYwlokgrplC6ktW1CbmnoX1o6OHi1U4XJhKymB4iB6UQVq1d6ovhJUTxEpl5+UzUdSuEhKBwnVRiIJ8U6VeCSFmjIdW2Pmkn1egSGW7rRo2ggUbxXQtKim9znd2dvm4rIhlJ6d6zqaY9S9V0+kfcj57lgMYywR3o1Qk0lTTEOmmLZl0tkCGwu1Ewt3dJsqEczA6tKYbMKZSFCQTFGmariz+mC9/gD+YBnOqhE4KioM67Vqq/Vqr6jYY6ZPnDx5MsuWLUNKyZw5c3j33XcHu0o7jFRV1KYmUlu2kNq8hdSWzYbgbjZEN7VlC3pH924E4XRiKy6G4jK04nK0yZNQvSWonkJSrgBJm4+U4iIpnYagJiAe7SKocXPJwuUVuH0Ct9+Gv9hBcJQDt99YPH4nbp+Rdvm2CqnD1f/e6b4i45nutETYYgCxRHgQkVKSjMWIhtpM8QzlWqmhrRZsZ3s7yVh+b027ELgkOFMazkSC0kQSV8oIsO4yF6cu8QQCeEqDOIJl2INB7MFS7MEgttIgjopy7GmBdToH+E4MXR577DH23Xdfkskkq1d38wUZEmjhcI/imtqyGbWhEbq0dCiFReijxqOOmIo69ViSgTISriLiwktMdRCPS+JRbTsEVdkqqCUOgtX5BdXtdxhpnx3FNjQnNLHZFTwBh2UJWwwoOy3CQogaYHFW1njgJmChmT8WWAt8V0rZJozX2P8DTgSiwMVSyg939vpDlXQzcG6zb4hoqI1oRygjqGlx1cyJxrviVBTcUuBMqXjiCQpi8a2Cml6nNDx+P+5gEFswiL00aIhrWTAjrpl0UZE1ZeJOUFNTg91uJ5lMEg6HB/z6MpVCbWzcKqqm2Ka2bEE1xVaP5I6VVl0+9JETUMvHktrvYJL+IAlXEQlTYKMxiHakjD5UCbSaiwBvAHxFCr4S524tqDuLr8hFZ5slwhYDx06LsJSyDtgfQAhhAzYBfweuB16XUt4uhLje3L4OOAHYy1wOBf5orocsUkpSiTixjg7ikTCxjhCxcIexRMLEOox0PNJBtKODaKidWEcHUnafFU0gcNtspsWqUhhPUNYZw6mqW4XVtF7dbg/OYBBbsBR7ZdpqNSxXWzCIPVhmiGtxMcKyWvsdm/nyEo1GWbJkCbNnz+6T80op0Ts6em0mVhsbwZxSUxcKKUeAVLAatXw0qVFHk5wcJOEsIq54iat2OqOQSmQ9f2b/qsNtw1/kwlvoYuRoF76i9OLEV+Qy9hU4h52o7ij+YjfhVssTvr8YyFCGf//73wtuvPHGkalUSjgcDnnbbbdtPPXUUzNv0jfccENldXV1MhwO2x544IEyRVHw+Xzafffdt+7AAw8csIegr5qjvwWsklKuE0KcBhxt5j8CvIkhwqcBC6XRUVkrhCgSQlRJKbf0UR16RUqJmkhsFdGOkCGk6e2wkY6HQ4a4mvt6slQBXHYHTqHg1CXOlEpZPI6jM4ozmcppDnaqGk67A4cpprZKU1SzLFV7xpotHfIew3saf/nLXzjxxBORUnLuuefS1tbWa3kpJXpnFK2tFa21FbWlFa2t1eiX3ZzVTLx5izFJBKDZ3Ia16i1FLR9DqvgAkvuWkXAVEsdLTLUTj3fxh5IgOgU+uxNfgYuSIhfVhYaw+ouyhdaF0231PG0PviIX9at69uS22D1IpVKUl5enXnzxxa/Hjh2b+uCDD9wnnXTSpMbGxv+ky7z++usFf//731e73W792muvbQJ4/PHHC//7v/+7+p133lk5UHXtq2/mOcCTZroiS1jrgQozPRLInq90o5mXI8JCiMuBywFGjx7dJ5Vbtfw9nv/d7b0IqsDlduF2OHEKGy4p8ac0HKrAHtWwh8M4ojEcqo5TM0TVoekImw17qdmvWlZlimnZ1ibhUtNyLStD8fmsaQ93U44//niqS0shFGKcy0X49ddRW1vRWtsMkW1rRWsx12aenkyh2r0kHT5Uh4+Uw0fK4UctKEMrmkSyehaJCYVGH2zKjqp1fzZcdju+gCGi5aa16it05oirJ+BE6cXj12LH8Bc5iXemUFMadofVfTMQ9Fcow+effz4zvvjAAw+MJxIJJRaLCY/HI1tbW5VUKqWMGDFCza5LJBKxDfTv9C6LsBDCCZwK/LTrPimlFEJs32j7rcfcB9wHcNBBB+3QsT1RVDGCyeUjsXdGsUej2MMR7G0hbO2hrYKaVd5WWIitzBTUURNy+1mzmoNtRUVW1JwhSG1tLeeddx4ej4eWlhacTieLFy9mxowZwNZm4IyFmhbU7HRrC6opqMn2Dp6tGk9qtI+U3ceHv7iflMNPyuEj7vCjBypRPTWEfQoxrxM5zo/N6TfG1eRBsQt8hYaolptrX5ELX7ETX+FWgXU4LREYaHxFxrC6zvYkhWXDt0XqlT/+vrp5w7o+ncc1WD0mevwP/3vIhDLMvsYjjzxSPHXq1KjH45EAzz//fMGRRx6ZGRJw2223ld17770VqVRKefXVV+t29V7sCH1hCZ8AfCilbDC3G9LNzEKIKqDRzN8EVGcdN8rM63dKR1Uz6esN6NGoIajV47BND261XLs0CVvewbsXUteN2ZhajebfP188h4NbWim22yix2ShJqXz53bNpsNkocnrwugqQTn/GOk3Z05aqzxjP6qlBdfpJVfpIVrlQZc9fk2QqTiTRQWc4RGe8g85Eh7GOd/Dr22/u4sjkwON34HBbwSCGKv7MMKX4sBbhoUR/hTJMs2zZMvdNN900csmSJZkm5iVLlhRecsklzentn/70p00//elPm/70pz+V/OIXv6h6+umn1/bzx87QFyJ8LlubogGeAy4CbjfXz2blzxVCLMJwyAoNVH8wwPjnnt12IYshhR6NojY1ZS3NOduJplY6O1IkYhopm4ekw4/q8HHm2JNJ7ZW2VL3EbT5iTh8bHH422np+wXJ6bBmx9PmduP32zHZ900Z++etfEI614/U7efbFpznm+G+wctVXPZ7vhW8t6I/bYtGP+IoNER7uw5R2xmLtL/orlCHAqlWrHGeeeebEBx98cM3UqVMz/9SPPvrId/TRR6/revxll13Wes011/RNP+h2sksiLITwAccCP8jKvh34ixDiEmAd8F0z/yWM4UlfYwxRmrMr17bYPZFSGlMZNjahNjfliKrW3Iza2ESqqYlYW5SY7jKclZxFJFyFRtpdTNK7HwlHAakRbhjR/RpCgMtjw+134gs4EckIH/z7n7S0N6KSIJoI09i6JWOxdiY60EWKWDxKYWEhgUAgp/naYBznXPke0WgUr9fL6AkjeP7F55gyZQq63t0b/pe//GX/3USLfiNtCUesYUoDRn+FMmxubradeOKJe/3yl7/ceNxxx3Wm85ctW+aeOHFiPH2+Tz/91LXPPvskABYvXlw4ZsyYAf3n75IISyk7gdIueS0Y3tJdy0rgyl25nsXQRaZSqC0tPVqtalMTanMzidYQCcVHwmmKqssQ2KS3lKR3OglvIfFxXuS43L52IcDjt+Mr9lBWnOX5W+jCE9ja3Ov2O3B57N2mJzyfo3K26+rquOCCC1j74Rc5EZ3a2tpoa2tj5syZ+Hw+nnrqqcyQpLTYRqNR7HY7paWlFBYW5nhLL1q0iLPPPrtP763FwJGencuaNat/GMhQhnfeeWf5+vXrXbfddtuI2267bQTA66+//tVzzz1XeNxxx2Vc4OfPn1/+zjvvFNjtdllYWKg+/PDDAxowQuSb2nCocNBBB8lly5YNdjX2eLRIJ2r9FlJb6o2hNfX1pLbUozY2bhXYtnZSDn9GVNMWbLKgnKS31JiNSfGRkt0nxne4FHxF7sx41bTA+otceM3hNv01hrWuro45c+bw8ccfE+shzJ2iKHmt3Z4oLy/H7XbnsaYtdgeemFdLyQgfsy/fZ7CrstMIIZZLKQ/Kzvvkk0/W7rfffs09HTMUefvtt73/8z//U718+fI+c5aaNWvWXk8++eTaMWPG9Dz+tB/45JNPgvvtt9/YrvnW4ME9HD2Z3CqqGaHdQqp+C+qWelL19WgdYVIOP3F3MXFXCXFPKcmiEST940iMKCI+ykdCutBlrvUpBHgKDBENdhHX7LTTM3iPYU1NDe+++y7Nzc3ceeedvPHGG6xevZq2trbM3Ns7IsAAjY2GL+Jhhx1GMBhEURTGjRvHggULhm0AiOGEr8hlNUcPAforlOG77747YGOAtwfLEh7GSE1DbW7ORMdJbanfKq5bthgC29yMpjhIuIozIpssGkGisIqEp5SYLUBMd6HLXCvU7rJlxHSgrdeBoLm5mZ/85Cf89a9/RdO0bQqx3W5n//33Z9OmTXR0dNDZ2dmtjMfjYf/999+txbiuro7LL7+cjo4O2traOPnkk5k3bx7BYHCwq9ZnvPbwF2yqa+Oi2w4b7KrsNMPFEh5OWJbwMENPJo3m4Pp6UvUNqA0NpBrqURvMvIYG1KYmpKaRcgQyApsIVJAsGU2i5EDilYXEpJeE1uUxEOArdBEocVFV4iZQ7MZf4iZQ4jLXblxe+7AeZhMMBnn88cd5/PHHAbj//vu5/PLLeyyvqir19fWMHTuW+fPn89hjj/HMM8+QSqVQFIX29nZisRhLly7lqquu4sUXXxyoj9KnzJ07l7fffjuzfc899zBmzBiuueaaQaxV3+IvctEZSqLr0poIxaLfsUR4CKJFOlEb6g1hrW9AbTBFtb6BVKO5bguRdAZIOgtJOAtJOgtI+ktRC8aQLJxOMlhAXHhIaI5uzcR2l41AiZuCEhcjTJHNFlhfkQubffe0YPuLyy67DKBXId64cSMbN27kqquu4t133+Xuu+/O7KutreV73/selZWVzJ8/v9/r25c0Nzczb948nnnmGVpbW3P22Ww25swZXgMdfEUupC6JhZP4CveMkJ0Wg4clwgNIZnhOvdHXqjY0GtarackmGxpINIeIpWwknQUknAUkTYFN+ctI+saSLCskUeElmcfBCcATcOAtcOIvdFFe4DTSxXuWFbuj1NbWMmfOHA477DAefPDBbvtdLhcHHnjgdscSXrp0Kffffz+XXXYZixcv5pJLLuHBBx8csqEQ85EtvB0dHT1GkDr77LOHVVM05MYVtkTYor+x+oT7CKmqRv9rHus10dBAtLmTaChBQnhIugpNgTVF1ldq5Nl86HSfqtBmF3gLXHgLDVH1FeZLu/AUOLDtpn2wA01tbS1nn3028Xic5ubmHXa+2h6klHg8HuLxOG63u0fv66FC2lr3er2sX7++m/C6XC4KCwtRFIVRo0bxjW98g2uvvXbYiXDjug7+etsyTvivfRi/f9lgV2ensPqEhx5Wn/AuoCcSpriafa4NW/thEw1NdLZ0EokK4s4i4u4So+/VXUzSVUnSNZmkzwv+PBP0e2x4C134C42J+b0FTryFLlNct6Yty3XXSQ9FWrNmDUII2traiMf7N1rZiBEjSCaTu3ye5uZmFixYwJw5c/IKXnZT9/Y6fWULbmtrK5qm0draiqrmzGePoiiUl5fvUd7d2ZawhUV/s0eLsJQSPRIxHZkac/teTSeneGMr0bhiiKspsHF3CXFvJQnPNOLFPijJtT49XgVfsYtgidcQ0kInvrTApi3YAhc2h2W1DgS1tbV84xvfyCu6Qgh2pDXovvvu67VfOJstW7bOypq2tNMWOLDd44jnzZvHPffcw7XXXovdbqegoACn00lpaSnNzc00NjYipWTNmjXst99+XHrppTkey9lNyykzklg+wQWjj3fy5Mm0trbicDj2yLHOXjMylTVMaeA4++yzx1x77bUN/R3H94UXXgi4XC792GOP7QQ444wzxp588smhOXPm9B6ftB/ZI0RYi0ToeP75XC/i+gZSDQ0kUkquuLoND+KEd29ilYWkKnP7hIRieE8GSj1Ulhp9rIFS07mp1I2/2IXdin4zaKStxn322YdLLrmExsbGvGKTZke7Y2677badqlcymcTtdqOqamaGrpkzZ1JRUUEwGCQWi/H444/nFbxnnnkmk1ZVNeMcVV9f361sIpHgnnvu4Z577skItqqqdHR0dCubLbiaplkTjJgIReAtclqW8ACyePHibvM49wf//Oc/A36/X0uL8FBgjxDheEeMj/60JDPJRMI3mfjYImJjvWgyVzAdLhuBUjfFJW6qzWE5gVI3gRIPgRIX3kKXNWxhCJK2MFtbW4lEItt1jNvtpqysjA0btn8u+zVr8s8bYLPZcqa/zEciYfyoK2b4S13XaWhooKHBCEB22GGH4ff7CYfDeL3evGON09cqKyvLWMKxWIwZM2bw7rvvEo1GM1Z3tmADBAIBPB5P5rNbgtsz/iLXsA7i0PrUV9Wp+s4+DWXoqPRFS86c1OuXqa6uzjl79uy99tlnn+hnn33mnTRpUuyvf/3r2m9961t7/eY3v9lw5JFHRs8777zRn3zyiS8ejyunnHJK2+9+97vNPZ1v5MiR+5xyyilt//znPwtcLpd88sknV0+bNi2RL0ZxNBpVFi5cWKYoivzLX/5S+vvf/349wFtvveX/wx/+UNHU1OS45ZZbNg60VbxHiLDq9PHl3hcBhvdwoMRNRak74y2csWYtz+HtIrt5U9d1SkpKCIVCVFdXD3i/YXoO6A8++KDXcn6/H6/Xi81mo7S0lJaWFuLxeF4BdjgcmWbb7aWoqIiWlpZtlisrK+O5556jvb2dc845B7fbTUFBAStXrkTX9YzF2pMABwIBPvjgg5x7nH4BEUJ0czArKSnB4/Fw+umnD7tJNfoTX5Gblk3b9zJnsWOsXbvW/ec//3ntcccd13nWWWeNveuuu3K83+bPn7+poqJCU1WVWbNm1bz33nueQw89tEevxsLCQvWrr7764u677y790Y9+VP3GG2983VOM4gsvvLDJ7/drN998cwPA/fffH2xoaHAsW7Zsxccff+z+9re/PdES4X4gUOLhvF/OsJqK+4Da2lpOOumkHAsr3fe5ceNGpk6dSnFxccbaS6VStLe3U1hYiMPhIBaLMXnyZB577LFdEuu6ujoOP/xwmpu3z9kzEolgs9m46667uP3223P6a7P55S9/yU033ZT3c/ZGbwJst9szTeLNzc20t7dTVFREYWEh8Xic9eu7zT2fl1GjRvHaa6+xZs2aTFN2KBSiqakpp8nd7XYzffr0PcaRqj/wF7lY93kLUsph+VK+LYu1P6msrEymoxpdcMEFLX/4wx/Ks/c/8sgjJQ8//HBQVVXR1NTk+OSTT9y9ifBFF13UCkYYwhtvvLEaeo5RnI9TTz213WazceCBB8ZbWlryj/3sR/YIEVYUQVFFn7a87LFccMEFGWFyOBwEg0FKSkrYsGEDHR0daJqWVxjb29sz6WXLlnHwwQfj9XqJx+MsWrQoE6kItlp2mqblWHC1tbWcdtppNDU17XBfLkAoFOrRqWrp0qW0t7dz/vnns27dOu644w5aWlo45JBDtmllbwubzZYRSSklJ5xwQt6gEGlrPZlM5tyvNBs3bmTy5MmZ7ezoTQCVlZV7lBdzf+IrcqEmNJIxFZd3wH+XhzVdX2qyt1esWOG8++67K5YvX/5lWVmZdsYZZ4yNx+O9erCmX/jNc0noOUZxPtxud+bHZDCG7FruuRY7xPHHH59Jz5o1i82bN/PZZ5+xatUqLrnkEgoKCggGg5SXl1NenvOCi8PhyHzhwuEwDQ0NhEIhTjrpJCoqKhgxYgTTpk3j8MMPZ/369WzatIl77rmHiRMnMnHiRGbOnJnxBO5rzjrrLE466SRaWlp46KGH+O///m9qa2vZsmULBQUFlJSU7PS5033B2ei6jhCC8vJyRo4cyZVXXsmrr77KhAkT8Hg8FBUV7dA1bDYbJ510Es899xw1NTXU1dUxa9Ysxo4dy9y5c7e7xcDCwF9sxhUexv3Cg8WWLVucr732mg/g8ccfL5k1a1am3b+trc3m8Xj0kpISbcOGDfY333yzcFvnW7hwYQnAgw8+WDx9+vRO6DlGcSAQ0MLh8JBqDt0lS1gI8T/ApYAEPgXmAFXAIow4w8uBC6SUSSGEC1gIHAi0AGdLKdfuyvUtBp558+bh9Xr56KOPcqZlDAaDPPDAAzzwwAM55ZcsWcJ5553H+PHjeeyxxwD4wQ9+QHt7O/X19TQ0NKDreibyULqZ2G63Y7PZSCQShEIhQqEQ+cjnEOXxeBgzZgx1dXXbLdgbN27M2X7iiSdYtGjRNp2tdoXx48cze/ZsHn/88YxH886iaRoPPvggTzzxBOPHj2fVqlWZIVn33HMPW7Zsoaqqiueff55AIEAkEhmWwRf6iuyxwqUj/INcm+HF2LFj4//v//2/8ssvv9y71157xa+++uqml19+uQhg5syZsWnTpkUnTJgwraqqKnnggQdus2O+ra3NNmnSpClOp1MuWrRoNUBPMYrPOOOM9jPPPHPCyy+/XJR2zBpsdnrGLCHESOBfwBQpZUwI8RfgJeBE4Gkp5SIhxJ+AT6SUfxRCXAHsK6X8LyHEOcC3pZS9Rj/fnWbMstg5smeustlslJSUEI1GeeKJJyguLmbOnDksW7Ysx1Fq9OjR2+XZu2TJEk488cRBaWLKx957743b7eajjz7arvIVFRXouk5TU1Mmr6qqCk3TCIVCeS3sHSXdBO5wODKtHK+99hqBQCAzdClNbyEZ6+rqmDt3LtOnTx8Ws2h1NMd49MalfOOCyUw5rMeWzCHLUJ0xq66uznnyySfvtXLlys/74nwjR47cZ9myZV9WVVX1PA5xiNBfM2bZAY8QIgV4gS3AN4HvmfsfAeYBfwROM9MATwF3CyGEHCq/kBaDwowZM1i3ruchgu+++y4lJSWZ/s9LLrmkm7Wdj7q6Om6++WaKioq69Z0OBg6Hg/nz53PFFVf0Ws7r9VJYWMh3vvMd5s2bx9dff82sWbOQUlJQUMDmzcZojbq6Ok455RRWrtyx0Khut5sJEyZkLOVIJJIZ0vXQQw9t8/j6+noOPvhg/H4/UkpKS0tpbW3NzED22muvUVZWtttHVUrPGW2NFbbob3ZahKWUm4QQvwHWAzHgHxjNz+1SyvRbyUZgpJkeCWwwj1WFECGMJuucNzMhxOXA5WBYPBYWTzzxBOeffz6nnXYat99+e69l6+rqOP/88/nwww/7ZT7onSWVSnHCCSf0uL+nccH7779/xpI/66yzMvk1NTXdvKqznb38fj+6rhONRjP7Dz74YB599NFMn/GcOXNYu3YtmqYRj8czw6PSQt3VEo7FYoTD4cwCuROGeL1errzyymERVcnmUHD7HVafcB9TU1OT3Bkr+Nhjj52wYcOGnJmTfv3rX2/ctGnTp31Xu8Fhp0VYCFGMYd2OA9qBvwKzeztme5BS3gfcB0Zz9K6ez2L3Z/bs2T06Fi1evJg5c+YwatQoWltbt2usLsCYMWNIJpM0Nzfv8Jjg/qC4uDhvftpLWlGUHOuyubk5I5Dp4BBdm4QBJk+enLknRx99dKYZuaamJicqVHNzM3feeWemrz+fd3W6zBtvvMGmTZtyLOHhOMWlv9hlWcJDhFdffXXVYNehv9iV5uhjgDVSyiYAIcTTwGFAkRDCblrDo4BNZvlNQDWwUQhhBwoxHLQsLHaaCy+8kGQyucPNsuvXr+ell15i3LhxTJ06tV8dsLaFEILOzk4qKiqA3L7X4uJiOjs70XWdG264gY8++gi3282qVatyhj3NnTuXV155hUcffTRHCP1+f0aEe+uLDgaD3Hnnnb3Wc3vKDCd8RZYIW/Q/uzJEaT0wQwjhFca4k28BXwBvAGeaZS4CnjXTz5nbmPv/afUHW+wq2xOlKN9kC+nxulOmTMHlyp0ffPz48UybNg2/358Rxv5ESkl7ezuNjY00NjZSX1/P0qVLmT59Oqeffnqm3HPPPceaNWv48ssvcz63ruvcc889fP31192agk8++WTA6NrJ9ma32Da+IpcVxMGi39lpEZZSvofhYPUhxvAkBaMZ+TrgKiHE1xh9vuko6Q8CpWb+VcD1u1BvCwvAiGpkt/feoNPbu17XflOA1atX43a7WbNmDSeffDJut7tP6pqP9Hjq7CX9UhCLxXKEs6dAFOnmdK/Xy4IFC3L2zZs3jzvvvJPly5dbE3jsIP4iF/FICjU1eK0kFsOfnR6iNBBYQ5Qstpf0UKeuzkrpIThpdmRoj9Pp7JN4wF0JBAKEw+FMAIau1NXVcdxxx23XdJaKolBUVERNTY01U1Yf88W/N/PGoys4/5aZFJZ5Brs6O8RQHaK0J9PTECVrxiyLYUF6qNPSpUtzZreKRCI88sgjXHTRRey7775cdtllOcfZbD1PnrOzAuxw9DzN4ZgxYzKWayyWfzrcmpoali9fzpVXXtnjedNe05qm0dLSwrvvvmsJcB+TnjXL6hfec/nDH/5Qunbt2swXb+TIkfts2bKlT6d7tkTYYlgxY8YM6urqcvpyTzrpJO666y5ee+21nObd8847D1VV+e1vf7vD15k5cybTpk3rJuI1NTV5va0XLVrEMcccw7p16zIzWfXmDBYMBrn77rt5+eWXM3nZzdEFBQU7XGeLXKSUpJIa0Y4koaYYzRsjbFkVYv0XLaz6qJHGtWZEK0uE91gee+yx4Pr16/t18vA9IoCDxZ5FMBjkrbfe4uijj6a+vj7veGGXy8Wrr77KtGnTWLVqx0Y/nHbaaey///4ANDQ0sGDBAhKJBCeffDI/+9nPuOWWW3jzzTczfc0vv/wyjz76KK+99lrOebZnaNTs2bMpLCwkFApl+rY9Hg/33XffDtV5d0fqhmCmEhqpuLnOWpJxtVtebtn8+9mO3jibY/jZKs8880x1Y2Njn0a1KS8vj55++um9Rmfq6OhQTj311PFbtmxx6rourr322s3l5eXq9ddfX61pGvvtt1904cKF6zwejxw5cuQ+p59+euvrr79eaLfb5Z/+9Kd1119//ch169a5fvSjHzVce+21TaFQSJk9e/bEUChkU1VV3HTTTZvPP//89nzX7imWcSAQ0K+++uqqJUuWFCUSCeWggw6KPP744+seeeSR4s8++8x74YUXjne73fqyZcu+BLjzzjvLX3nllUJVVcXixYtXT58+Pb4r980SYYthSWlpaa8OWYlEIuONnI+SkhLC4TB2uz2n2biyspL999+fd999l6amJk477TSmTJnCRx99xAsvvMALL7zQ7Vw9TdKxvf4YixYtyjmHy+Xi6KOPzvQpJxIJnnzyyZxIVIOJpumoOQKZLXxqXhHdlnCqye2feEUoYHfZsDlsKE4FYRdgV5B2gQzY0Yoc6ApIASlFkgCSUhJDEpeSmNTo1HQ6NZ2IrlGhJRjff7drj+Lpp58uqKysTL355ptfA7S0tNimTp069R//+Efdvvvum/j2t7899q677iq76aabGgFGjx6dXLFixReXXHJJ9fe///2x77333opYLKbss88+U6+99tomr9erv/jii1+XlJToW7ZssR966KGTv/e977VnR1bKJl8s45tvvrnhmmuuafzNb36zBeD0008ft2jRosI5c+a0/fGPfyz/zW9+s+HII4/MeG8Gg0H1iy+++PL2228vu/322ysWL17c85R/24ElwhbDirSDVktLS84MVOmITun5qVtaWhBCZMR2n3324ZVXXsk0+ba2tjJ58mSuuuqqnPCHsViMVCrF5MmT2WuvvQB6FPJt8ec//3m7yhUVFeXMhpWewCN7tqqTTjqJf//73/02WYam6nS2J4i0J4i0xYm0JehsSxBpM7Zj4VRGMDV1+wVTsQlDKB0Kwq6AXSBtAs0u0H0KasBGSkiSApKmSMaRxHSdTl0npuuEVY2wphFOacSkRANIj0pTzaUH7IrA47ThddrwOu14HDY8Lhtep5Ogw8ZndU18uL6NMw8ctQt3b+ixLYu1vzjggANiP/vZz6p/+MMfjjzttNNChYWF2qhRoxL77rtvAuDiiy9uueeee8qBRoDvfve77QD77LNPtLOzUykuLtaLi4t1p9OpNzc32wKBgP7f//3fo2pra/2KotDY2OjcuHGjffTo0Xn/6z3EMm54+eWXA/Pnz6+Mx+NKe3u7fcqUKTEgb9SY733ve20AhxxySPS5557LP8vODmCJsMWw4swzz2TTpk2ZbSEETz75JGef3WusEICcqRwdDgcLFizgqKOOyikTCoVYvHgxhx9+OGCIfvb1esNms1FaWspZZ53Va/Si7KAWiqLQ3t7erUnd6XSy1157sXLlSpLJJLquc9xxx7F69eodDp6wLYGNtCWIhpPdmm6FQ0F6bKRcgpRbkPIoJFBIIElInRiSqK4T1XQimk5E04jqOkkhSQEpAXr2EG4d6OILpwgMcTSF0mMuXqcDj8NOsdOG12Hbuj+TtuN12nA70gJrHuuw5ZzPYeu9qXmfea/gsg+/5ujBYt999018+OGHX/ztb38r/PnPfz7yyCOP7OitfDrWr6IoOJ3OzBOoKAqpVEr8+c9/LmlpabF/+umnX7pcLjly5Mh9YrFYj/+wfLGMo9Go+N///d8x77333hcTJ05MXXXVVSN6i2GcrpPdbpeqqnafhGAHsUTYYrcne8rF7Gkrs6Mt1dXVcdVVVzF//vwevYizp3Ksq6vjjDPOyOshvWrVqu3uRx41ahR//etfe7RQm5ubmTdvHosXL95mzF+fz4eiKEyePDlnDugpU6ag6zrhcJgFCxbkTG+5swKLQ0F3KyQcgrBT0losqFdTNGkaYUUSVgzrFMArbHiVrSLncdrxOpx4nTYCThsVjrQI2k0R3H7RdNqUvJOtDBQJVcdpiXCfsXbtWkd5ebl6xRVXtBYXF2v33ntv+aZNm5yfffaZa9q0aYmFCxeWHnHEEeHtPV8oFLIFg8GUy+WSzz//fGDz5s3O3sqnYxkfc8wxnelYxtFoVAGorKxUQ6GQ8vzzzxefcsopbQB+v18LhUL9Gn/YEmGL3Z4FCxZw1113dcv/xz/+kRHc73//+7z77ru89NJLgPEm7Xa78fv9lJWV5TRP19fXb/cc1Nti48aNHH744fzXf/1XXuv3rLPO4s0338x7rM/nIxAIMGrUKL7xjW90CxGoqTpVpaN55N6/8Mc/PMBhhxzFfuXH8fKfPt2GwAo0l42YA8J2SXMhNKRStKHnCKwioMzvorLQQ2WBl6mFHioK3FQWuqgs8FBZ6KaywI3HOaRipPcZUkqSqo7LPjw/32CwfPlyz09/+tNRiqJgt9vlvffeu66trc121llnTUg7Zl199dVN2z6TwaWXXtp6wgknTJw0adKUfffdNzpu3LhenaTyxTIOBAL6eeed17T33ntPLSsrU/fbb79MP9aFF17Y/KMf/WjMNddck3HM6musyTosdnuam5s588wzeeutt3Ly09GAWlpacvpPBxuHw9GrZ7QQgpNOPJm7f/cnHMK7YxasXZByK8RsEBI6zZpOg5YiLGSOwLodCpUFbioK3FQVuqkwBbWqMJ3nIeh3Yt9Gc+1wJqFq1Ny4hGuOr+HKb0wc7OrsENZkHd3p61jGO0p/xRO2sBh0gsEgTz31FPPmzeOee+7J5MfjcT7/fPu/b6Wlpdhstp12tNpedE1S4q+gyF9Gsa+MIn8ZRb4yiv1llPjLKQlU4HMX8sJvV+QcJ+2ClEshaoN2dJq8Gi361ubhtMAWeR1UFripLPRRWeBmmimwFYWGyFYWuCn0OAa1mXd3IGE6mFl9whb9iSXCFsOC9OQWJ598cs5wnqlTp2aamseOHZuZ2rGuro4LLriADz74IFM2Eols97ChnnDa3RT5ghT6gsbaG6TIV7pVaH1lBLzFKCL3hz2upejQE4SFxtd2hU5nkrBN5AisqkB5wBTTAjdjC93MMEW1MmvtdljNp31B0hLh3ZL6+nrb0Ucf3c3x480336wbLCu4NywRthgWpB2cnnnmmUyeoih89tlnecvX1NTw/vvvU1tbywknnEB7e3veOaXHjRvH9OnTeebvzxDwlFDkK6W6ajyK5jSE1huk0FdqpkvxuPzdzhHXU3ToScJCZ63dRsSpEVbUHIGNq3G0cAtauAU10oIWbjbS4RYqC1zcfdevOf6omdgUy3odKLZawtZLze5EZWWltmLFii8Gux7biyXCFsOC6667joceeign78QTT2Tu3Lm88MILmbi6XS3iGTNmsOLLOn54yY/58pOvtwqqacUW+kop9pVx9KX/haLk/hhrUieiJQijErLBJruNTkeKiCKJmH2wEUWSiHfgt2nsXzOWMWUFTClw07z+a/70u9uxJSMQbUNR45SWllJXV9ctWtIa4LzvnMTKlSt3ePiRxc6TMKMnWd7RFv2JJcIWuz1LlizpFsLP6/Xy/vvvZ2aw8jj9lBWMIFg4gkB8BL/+4UNUFI+i2FdBwFPCt6ov51vVW4+PaUnCesK0XhU6nSqdNqP/NSIMce2UGmq0DT3SysiAj2njR7H0+cV01K8n0d5gWLaRFqSapKSkhB+/+CIzZuxrXmESv/r+id0+S0/RoNrb25k3b54VE3gAsfqELQYCS4QtdmsWL17MOeecg0BQ5CszhLZgBMGCqsy6rHAkXlcg57iIFqdNJllvgw5ninaHoCNLYFNagkKHpGXDKhKhxpzmYS3dXNzZDlKnoqKC//fMM8ZY4B+dmNM03hwTJFRjBq4jjjiCd955p9dZrdLRoJYsWcKFF17I9ddfz/XXX08qleKVV17p57tpkU2mT3gYzh1tMXSwRNhit0FNaYRb4oSaYoSaYnQ0xXj70TXc+N2HKA1U4bBvHaevS50OUoQUnVUuBy2kaFd02m2SdkWSTETQw40kGreQatuCGmpA7Wjk8OlTefr3d5CMtHP88cezOcsidTgcSCm7NRc3NDTwve99j9WrVwNbncTuvvtu6urqmDFjBu3t7aiqyplnnsnGjRu3+Vlnz56d8dKeNWsWc+bM6WbtW/QvVp+wxUCwSyIshPgJcBnGTK33Syl/L4QoARYDY4G1wHellG3CGA/xf8CJQBS4WEr54a5c32L4Ee9M0dEcyxHadLozlMgZF6spUDZqP1oVyXqHoF1J0q4YIqu7FUaW+hhV7GFUsZeDS7xUF3uoLvHilTF+du3/8uSTT3abDvK11cvZ75WnAcNbGsBut3PwwQdn+pFra2uZOXNmznGVlZV5P09NTQ1/+tOfOOeccwBj2ssdZcaMGXz5Zb/ME2DRCwnV6hMezlx//fWVt99+ez0M7hjinRZhIcQ0DAE+BGPG1yVCiBeAy4HXpZS3CyGuB64HrgNOAPYyl0OBP5priz0ITdWJtCUIt8YzYtvRFKO9KUqoMUYqnhtjN2GHkCJpkhrtLpkR2agDikvclLhcrPzkPcb4/Xzv1OOYMqaC6hIvxd7842Bra2s56FvfyoQZzEdafMEQ4K5NyPfff39OeY/H06uVeuONN2bSEyfuXpM+7MlYQ5SGN3/4wx+q0iI8mOyKJbw38J6UMgoghHgL+A5wGnC0WeYR4E0MET4NWCiNgZi1QogiIUSVlHLLLtTBYgghpSTRqRJujRNujRNpixNuTRAxt0MtMeIduTNF6UCnHVrQaFMk7W5Ju6LTYZN4it1UlhrWa02xl+oSw6qtLvFQEXCjKMLof/3qaZ554hmWP3ZbToQkr9fLunXrMs3HTqcz71zQixYtYsyYMRx++OFoWu5LwKhRo/jOd76TyVcUpdvsW//85z97nI8a4Pjjj+frr78G4Nhjj93h+2oxOAzn5ugvvryuujPyVZ/GE/b5J0Wn7H1Hr9GZfv7zn1e4XC554403Nl5yySXVn3/+uae2tvar5557LvDAAw8EX3vttaILLrig6fXXXy8sLy9P/frXv9543XXXVW/evNl5xx13rD/vvPPyNiX94Q9/KH322WeLwuGwvaGhwXHmmWe2/Pa3v90CcMwxx0zYsmWLM5FIKP/1X//VcPXVVzdfccUVIxOJhDJ58uQpkyZNit11112bNE3jnHPOGbNs2TJ/RUVF8pVXXvna7/f3+5SSuyLCnwG/FkKUAjGMZuZlQEWWsNYDFWZ6JJD9D9po5uWIsBDicgxrmtGjR+9C9Sz6Gi2lE2nPFdZIa5xwm7Hd0RpH6xL3VReGyLah0y50wm5Jhzl8RwQcFAfdjCr1UV3s4YASL9WmyFYVero1A9bW1nLW0UZ0ITCiEgFs2bL1EcpOd6WrANfU1PDss89SU1PDmDFjugkwwNq1a7d5X3784x9nAirkI3vO6Llz527zfBZDA6s5uu85+uijI7/5zW8qgMaPP/7Ym0wmlUQiId566y3/EUccEX7++edLvvWtb3X8+c9/3njsscdOuPHGG0e+8847X3344YfuOXPmjOtJhAH+85//+D799NPP/X6/Pn369CmnnXZa6Mgjj4w+/vjjaysqKrRIJCKmT58+5fzzz2+79957Nz388MPl6fHEdXV1zvXr17sfe+yx1bNmzVp34oknjl+4cGHxFVdc0drf92SnRVhK+aUQ4g7gH0An8DGgdSkjhRA79CYhpbwPuA+MuaN3tn4WO4aUknhnikhrYqsl22oKbpuxHe3oPldxyiHotEGL1GgTOh1unQ5F0qFIdI+NslIP1aWGuE4pMQS2utjLqGLvNif+T4cWXLNmDUII2traMgLcFZfLRUlJyTYt4VQqRVlZGc8++2xOE3O6edrr9fLQQw/xgx/8ALfbTTAYpLW1tVdL+IMPPmCfffbhueeeY/bs2d3qFgwGmTdvXq+f1WLoMZybo7dlsfYXhx9+ePSiiy7ytba2Ki6XS+67776Rd955x7t06dLA//t//2+9w+GQZ555ZgfA1KlTYy6XS3e5XPKQQw6Jbdq0qdcISYcffnhHZWWlBnDSSSe1vfnmm/4jjzwyescdd1S8+OKLRQD19fWOzz//3F1ZWdnZ9fiRI0cmZs2aFQOYPn16dO3ata4+vwF52CXHLCnlg8CDAEKIWzGs24Z0M7MQogozODOwCcgaickoM89igNBSOqHmGKHGKO2NxrqjOZaxbNVUrhUrFUi5FMI2SYuu0+hSM1ZshyJJuQRVWQ5Pe2c3GRd7KfQ6eqxLbW0tZ511Fm1tbXg8HhwOR0ZA085SoVCo2yxWbrebgoICwLCEKyoqKCgo4L777uu1SXhbpIU6FotRWFhIe3t7j2V9Ph/RaBQhBC6Xi3g8TiqV4oQTTkBRFP70pz9x2WWX7XRdLIYG1jjhvsflcsnq6urEvffeGzzkkEMi++23X+y1114LrFu3zjV9+vS43W6XimLcb0VRcLlcEozvuqZpvU4Xly9W8AsvvBB46623AsuWLVsRCAT0Qw45pKaneMPZ8YptNpvsLS5xX7Kr3tHlUspGIcRojP7gGcA44CLgdnP9rFn8OWCuEGIRhkNWyOoP7ns0TSfcHKe90XB0MtaG6EZa4+RMjexUSLiN8bHNHp0t9iQdQmYs2ZRNMKLYYwhrkZfDSgyxTffLlvldOxUEoLm5mVNPPZWmJiNiWWen8VLaU1NyIBDA7/fnzHTV1zz55JOccMIJSCk55ZRT+Oyzz7Z5HY/Hw7p163Jm69J1ncsvv5zq6uq8VrHF7kPCfCm1mqP7lpkzZ0buueeeij/+8Y9rDzzwwNgNN9wwatq0adG0+O4s//rXvwoaGhpsPp9Pf+mll4oeeOCBtevXr3cWFhZqgUBA/+ijj9yffPKJL13ebrfLRCIh0kI/WOzqOOG/mX3CKeBKKWW7EOJ24C9CiEuAdcB3zbIvYfQbf40xRGnOLl57j0XXdDpa4lkiGyPUZAhtuCWO1LOeKYcg6bHRbpNsCUg2qinaFJ02RRJXoDzgYnSJl+oSL4cVexiV1S9bWeDul1B2CxYsoKmpicLCQlRV7dESdjgcnH766Xnj8PY1s2fPZvLkyaxYsQJVVZk7dy6vvvpq3rIul4toNIrL5SIYDPLggw8ydepU/vd//zdT5tRTT+XTTz/tlxcGi4EhqQ1fx6zB5Kijjgr/4Q9/qPzmN7/ZWVBQoLtcLnnYYYdFtn1k7+y7776dp5566oT6+nrnmWee2XLkkUdGY7FY7L777isbP3781PHjx8ezYwWbMYSnTJs2LXrXXXcNWqusFU94iKLrkkhrV4vWWIeb4+jZQmsXpLw2OuxQr6usTyZpVSRtik5MQLHPwbigj3FBP+OCXsYF/YwNehlb6sPnGvj5Wpqbm1mwYAFz5swZUnMhV1ZW0tDQAMA111zDnXfemdlXV1fHD37wA9rb2/nkk08A4yUh29mrrq6O888/n48//hhVVTnxxBN58cUXB/ZDWPQZ8/9Rx/9742tW33ribhf2cU+LJ/yHP/yhdNmyZb6FCxeu33bpwcGKJzwEkbok0p7oJrShxiih5hi6miu0mim0jYWS9ckUTUKnTdGJCvC77YwNehkXLOabpV7GlfkYW+pjXNBHkbdXf4YBJxgMcs011wx2NTKkBTYtwA6Hg2uvvTazv7a2lm9+85vEYrGc48rKynK2a2pq+OCDD6irq+Oqq65i/vz5/V95i34joeo4bcpuJ8AWuxeWCPczUpd0hhIZR6jsdUdTDE3d6gwlbALNZyPiEDQWCtYnUjSg0abodApwOhTGlfoYGyxgRherdmf7Zy1gzpw5LF26NLNdUVGRY6GfeeaZGQEOBAL4fD6cTieLFy/Oe76amhrLAh4GJFTdcsoaYvztb38r+NnPfjYqO6+6ujrx6quvrgJaBqlau4Qlwn2AlJJoR7KbyIZMyzbb61jYBErATtyl0BK0sVHVWRVP0KZIwkIiFKgu9DKhzMd+wXLGlfkYV+pjXJmPqgJjggqLviV7yFFxcTF//etfc/a3tbVl0h988IHVz7uHkFB1XA6rP3goccYZZ3ScccYZu02s4O3BEuHtREpJLJzqLrTp6RYTW4dIC5vAWeAk5VXoGOFii6ayKh5nXTJFWEgk4NQUxgd9TCgv4ttlfiaWG8u4oA+39cUfUJ544gkuuOACjj/++LxOYGm/CY/HYwnwHkRC1XD2g2OihUU2lghnkZ6woqsjVLqfNpk1r7FQwFPkgoCD1GgPTeisSyZZEYlSr2pIGYVOKHDbmVjuZ+/yck7OEttRxV5sllU7JJgxYwYrV67Mu6+uri4zVtlq7t+zSKq6FcbQot+xRNjklfs/Y8OXrSSiW8PUCQH+Ejf2QieOCQEiis4mNcXKWIIvQ1GSegzMSdSqCt1MKPNz/NRSJpT7mVjmZ0K5z+qr3c05//zzM0OmSkpKBrk2FgOJ0SdstUpZ9C+WCJu4ip0UTCok7IQGXWNNPMGXHVE2drSBOXuoTRGMKfUycYSfWftXMtG0bCeU+/EPwlAfi/5nxYoVmXTX6EkWwxvLMWv3ZGfCEp5xxhljTz755NCcOXPatl26b7GUw+SuzQ18vrkDAI/DxoRyHweNL+Ecs/l4QpmfMaU+a/acPYyioqJMaMNPP/3UmgVrDyKpatb3fYiSSqVwOHqeFnd3whJhk6uPr0ERgonlfssL2SLDX//614zT1pw51iRvexIJVbdauPqYuro65+zZs/c64IADOpcvX+7fd999O7///e8333zzzSNbWlrsDz/88OopU6YkzjvvvLHr1693eTwe/b777lt36KGHxq666qoRq1evdq1fv941cuTIxLHHHtvRU/jCnsISvvvuu54f/vCHY2KxmDJmzJjEE088sbasrCwn8NCzzz4buP7666s1TWO//faLLly4cJ3H45GLFy8uvP7660d5vV794IMPjqxbt8712muvfT1+/PhpS5cuXTFixAhV0zTGjRs3rba2dsWIESPU/HchF+s1z+QbNeUcNamMkUUeS4AtMqSdtu6+++4hNbuXRf+TSFl9wlu2bLH//Oc/r9iyZUufvY1s2LDBfd111zWsWrXqs1WrVrkff/zx0mXLlq349a9/vfHXv/511bXXXjtiv/32i3711Vdf3HLLLZsuuuiiceljV65c6X777bfrnn/++TVghC987rnnvv78888/f+6550refvttL8D69evdP/7xjxu//vrrzwsLC7WFCxcWA1x88cXjbr311o1fffXVF1OnTo1dd911I7LrFo1GxQ9+8INxixcvXvXVV199oaoqd911V1k0GhU/+clPxrz88ssrP//88y9bWlrsYASWOPPMM1seeOCBEoBnn322YO+9945trwCDJcIWFhYWeUlqVp/wvffeW/qrX/1q1L333lvaV+ccOXJk4pBDDonZbDYmTZoU++Y3v9mhKAoHHHBAdOPGja73338/cMkll7QAnHrqqeH29nZ7a2urAjB79ux2v9+fmUowHb7Q7/fLdPjC9DW6hiVsaWmxhcNh20knnRQBuOyyy1pqa2v92XX75JNP3KNGjUrsu+++CYCLL7645V//+lfg448/dldXVycmT56cBDjnnHMycYZ/+MMfNi9atKgU4KGHHgpefPHFOzQ1qNXWYmFhYZGHhKrt8SJ8xRVXtGSv+4LskIGKouB2u3PCFdrt9h4DGvh8vpx4q/nCF3a9Rn+HJZw4cWIqGAyqzz33XODjjz/2PfPMM6t35Pg9+wmzsLCw6IFEyhonXFVVpd5yyy0NVVVV2928uqsceuih4QULFpQCvPDCC4Hi4mK1pKREz1c2Hb4wEomIl156qeioo47qMRpTaWmpVlBQoC1ZssQP8OCDD5bOnDkzp/x+++0X37Rpk/Ozzz5zASxcuLD0iCOOCO+7777xDRs2uOrq6pwAixcvzhmv+P3vf7/p0ksvHXfKKae02u07Ztvu2U+YhYWFRQ8kNd2aMWsQuOOOOzZ/9NFH3kmTJk352c9+NvLhhx9e01PZdPjCqVOnTj3llFPajjzyyGhv516wYMGa6667btSkSZOm/Oc///Hcfvvtm7P3e71e+ac//WntWWedNWHSpElTFEXh6quvbvL7/XL+/PnrZs+evdfUqVP39vv9WiAQyDh0nXvuuaFoNGq7/PLLd7jFwAplaGFhsceh65K4qhFP6cRTmrnoJNJ5qsYPHl3OxbPGcsOJew92dXeYPSGU4UCHLwyFQkphYaGu6zoXXnjh6L322iv+i1/8ohHg7bff9v7P//xP9fLly+t6On6nQxkKIR4CTgYapZTTzLwSYDEwFlgLfFdK2SaMBvn/A04EosDFUsoPzWMuAm40T/srKeUj2/nZLSwshjG6LkmophhmCWMmL0cgu4hlaqtoxlMaiZROIpmEVAyZjCLVGKRiCDWGosawqXHsWhybHscjknhI4CGJWyRwkzK2RRI3CX6Ni5D3zm1/AIs9gt///vfBJ598MphKpcTUqVOjV111VTPADTfcUPnwww+XLViwoEeLvTe2aQkLIY4EIsDCLBG+E2iVUt4uhLgeKJZSXieEOBH4EYYIHwr8n5TyUFO0lwEHARJYDhwopex1dhLLErawGHxUTaczoRFOpOhMaEQSKcJxlUhCJWKuY0mti2VpCGMiSzyTyRSkDGEUpjCmRdEjErhI4iGJR5jCSAK3MPOyxDFbLD0igZckHpHEZR7jZMe7LyUCze5Bt7nR7R5sehJHrAn9ig9Qyif1w13tX/YES3h3Y6ctYSnl20KIrgeeBhxtph8B3gSuM/MXSkPZa4UQRUKIKrPsq1LKVgAhxKvAbODJnfgsFhYW20BKw7rMFsq0cHYmVMKZ/BSRePa2sSRiMfREByIRxqF24ieGX0TxEScgYua2sS4SMaqI4xVJfCKFV5gCyVZhdMkE9nziaKfXXyEpFHSbB+nwIO0ecLgRDi/CWYhwelEcHnB4weE2156stQfsni55WfscW/cJmxN7tqft8ofh+Z+guHx9/a8ZTHRd14WiKEO3D3KYouu6API6l+3sEKUKKeUWM10PVJjpkcCGrHIbzbye8rshhLgcuBxg9OjRO1k9C4vdE12XRFNaRiCzLc60UHaaQpkjnHGVSDyJmohAPIxIhnHr0YxQZoTTFM8AMUaIGAERp0CJUSDiRlkZxSNjOEgZFbKZSx6kUJDOALj8CGcA4XCDozBH3LqKXbd0N5HMFVVhc2IbjAAoSdO/x+EZ+Gv3H581NTVNKSsrC1lCPHDoui6ampoKgc/y7d/lccJSSimE6LN/qJTyPuA+MJqj++q8Fhb9iaZLwvEs0ewinNkWZ0ZE0025sTgyEYZEGCUVwSejGaH0i1iu9UmMChGlUIlTYAqojxg+GcUtYyiYX5leptXVbW5w+sEdQLgCCFcpuAJ5loIu2/6cPOHwDt8IYalOY+0cPpawqqqX1tfXP1BfXz8Na2TMQKIDn6mqemm+nTsrwg1CiCop5RazubnRzN8EVGeVG2XmbWJr83U6/82dvLaFRb+RVHVCsRShWJL2aMpYYinao0lCsS7b0STJaAci1oItEcprbaYt0aCIMY4YhUqcgGKIqo8YXhnFJY14xQjA2XPddIffED93AcIVgIx4FpgC2ZuAmnlOP4q9l4tYGCSjIGxgGz736sADD2wETh3seljksrMi/BxwEXC7uX42K3+uEGIRhmNWyBTqV4BbhRDFZrnjgJ/ufLUtLHpGSkk8pdOeJaShWFcRzRXaUDSJFmvHlWqnmAjFIkwxYWMtIpQQZpQIE7R1UqpEKCRMgR7e2s/p6qEuit1ssg0g3AGEqwBcI3sXTKc/b56iWMbLDqHroCVAjYPadZ3ssm2mtYSxXl9rWMHD1dK3GDJszxClJzGs2KAQYiPwCwzx/YsQ4hJgHfBds/hLGJ7RX2MMUZoDIKVsFULcAnxglrs57aRlYdETUkoiCdUUzLSAJrO2kxlRDeXsS+BSI5SIMCWEKRJGughjPUaJcIitk1LFENhCvQOfHsamaHnFVAob0lOC8JYgvKXgHQ/eEvCUgLfUWDxFXYTTSAu7a/g22faGlKB1FbptCF83scyT12vZLvl6CglIAboi0BVzndnOysvs25pm4jhGDfZ9tBj2bI939Lk97PpWnrISuLKH8zwEPLRDtbMYNui6pD2WorUzQXMkSWtnkpbOJK2RJO2xpCmiprBmRDWFrmsU0pkjomkrtdwWZR97hKASoUSJUCjDBPQOvPYOFHteR0SkYgdPWkxLwDvBFNG0oJZkbRtp4SpADDcrVDOGC5GMGutUFFIxSHYa6//f3r3FSHLddRz//uvaPfdbz+yu7WTX8hLHthITViaRJWQlEDvBigGBZIiEAUt5AQXxgmJZKPAGIpIJEAKRMSYIxQnmtgoC4zhIeYrjtWIZO07wOoZ47d2dnet2T890dXf9eTinbzOzHq89uz0z/f9IpTp1qmam+mzN/uacur2tuu7vVd0xAJsBqF/X9HUaQFN8ORSaUUweRuRhSB4G5FFIngZdIeq/t0AuIbkMkUuBnFFyaZLT3LEpLiUMqxbC5oqzFziYt6WZKyvVTpguVjKW1mouWP3y4lqtXV6uZuQKEQ2mKFOSVUqywoysciSqcEO8RilcY1oqTHCRsajM8NAqhUaZYPsr+yGIOz3RoSkYumFrmPYE6pQbDt7rPdM8B/+QiU7Ytebb1GVdQbilrtoJy8yVtb5GU5rt8GuGPhRDfDgKeehCMvfrm4GQx7ELxSikmYbkQwHNIPDbKk2BXAo0JSGX0XcUgN2CIO2aki3LUc+65BLbbv26dlkSgtCVwyBF/HIYXOIcgzG7yELYAJ1Q7QSqC9FWeWktY6FSa5dboQpbg/W6pML7kwpHojKzwSpTxVUmkmVGGksU6ivb74CmkHT3RI+/aZgyNO3One7FQG02YGMF1pehuuTm60u95da6jdV2UOb1NfLmOs18wwdbKyDpCsZOXU9AhiHNOPLzkLwQ+N4lNANoBkou0CRF5U0unX4TQVAkDIuEQYEgLBAGxfY8Dgu+vkgYFgiCQjvUgiBFgqRdvnRAbp6niMSDOZxvBoaF8AHVzJXl6tbwXPA91k5vtROq3Q9P6w7Wo4UK70orfCgqcygsUxpdYWJkhbHGMkP1RdJsZesOZIAOw0gJRuZg+CYYmYXh2a46Xx4u7c1AVXUh2Q7N5e0D1ZfzjUXq9RUajQr1WGhEQj0KqEdCI+6apwn1YkRjNKARKk1RcslRCYBhP71VQTv0wrDog9IFY9QdjD3B2dnGfV1nG/c9ts5dIO6xfx9jDgAL4X1CVVldr3fOp1ZqLPh5a+i3e93Kep3NTyRtBeux4hrXFyrcHFc4HJWZnbzIzOQyY/kKI/Ulitkica3riaIKbPhyPOzCdHQWht/ryiNzLkjbIeunvXKPparrbVaXenuh24SrVhdp1JZo1FeoN8s0QqUeCfU48KEqNKKAeizUk5hGIaI+Ii5Mgxx3g+7ktrsRhaNE8ThxPEEcTVCIx4jCEcJwaJsQbAVj0fUow+K224gkFo7G7GMWwn1UzRosVlxPdbsgXfQ910Xfk23km59dogxR42hxnXcVN7g1rXJNoczc8EVKrDKpK4w2lxnOFklqC0Qby60vg3U/geuFtkP0RheqI7Oduu6Q7XewNmrbD+v2lJdpri/SyBap11dpNC5SD5o9vdNGJC5Io4BGHFEvhDRGhHqQu/t1EWBsy48PJCGOxoniCeJ4gkI8zmjkgjWKxnrmvXWjiFzi0VPGmIFlIbyLskbecy61NW8F6eJa9zxjvd594YoyRpVJKXM4rnJdcYOfSNY5HK9RmlhjatLdmzqSX2SosUqSLRPVVpBm5kK16qeW7mCdubHTQx0ubQ3ZfgZrfR3WFmDtAlQX3bw9LdCsnifbmKeeLVFvlqlLzfVEu4Z4O73TgEYaUh+GvOdi5s2fT4jCEeJojDiZIoonKLaCtRWa8XgnbNtBOk4YFq5i4xhjDjoL4R00mjmvLqy5IG2Ha+8wcKs3e3HDPbghIGeczr2pM2GF69INbkyqzMVVZpIKE9NlxvUiQ82LFOurxNkKol2hXPMTuCf39NyXehyKk1tvqRme6X+wNus+TBfaQdoO1eoC+do82cZ56tkCWWOVTGrUYyGLA7IkIIvdUG+WhGQjAfl49zdP6b6RN5CEOBwljseJ4imGkknfQ+0NUDcfd9tFE0TRCCIH7JYjY8y+ZCG8g+rGBr/y0En3wAfKTEiZaSlzOFnn1rjKbFhhKlhjYugiI8Wy66XWLyJsGjpu4oZ/s2TTbTTv7l3uWeeX0zHo532qqm6Yt3IOymehfN6Xz6Hls9TXz5PVF8jqy9R1zQVqO0yDznIhpDHS/Y0TWs9pFCKSaIwkniJOZxlKZ0mSaZJkmjieJk4mfbCOE0cTxPEYgd1CYozZ5yyEdzD63MM8U/i9rSsU0CGIp2BoEoZKUHzPNg98mOx9GMReehRenrtzqT3B6spafoNs/SxZ7Ty1xjK1qEktcb3VWhJQSwOyNCKbEbT9cUI651GFOBwliaZI0hlG0zmSdJok9sGaTLXLSTJDGI7YBUbGmIFjIbwDuf4O+Pjntu+p7tXXnOW5GxIun4XK+U7Ils+ilXNk1dfJavPUGkvUYu0EaytkCxFZqTtch9rfOg7GSJMZ0uJhRgpHSJMSSVrqhGs85ecTdiGSMcbswEJ4J4ff56a9oNmAtXkfrK2eq5tr+Sz16hvUauepNVfIYm0H66XDtTM2HAejLlCLhxkuHCZNZknSWdJ0ljSZI01nSZIZguDgvFXGGGP6zUJ4L6hVXLBWzkP5HFTm2wGrlXNk62epZRfI8ovUEukZFm6H6+ylwnXEBWrxMMPpIRem6Rxp4gM2nbNwNcaYPrEQvlLa51vPuUCtzPcEbF4+R1Y7R62+QCa13h5rEpClAbWhiGwMf98qdN+32tNzTQ9t6rWWSJI50nTGLl4yxpg9zEL4cjVqvtc6v03Anqe5dpZsY+v51k64RtTGQ+rTraunu2+7EZJowvVcC4f8xUyzvtdaIvG9V+u5GmPMwWAhfClvfBde+Mf2kHCzeo5abZ5M16gl0nuVcBJSS2OyktA41ArX0fa3EkKSeIo0naNQOMR4OusCNSn5UC2RpnPE8RRBYP8kxhgzKHb8H19EHgHuBuZV9RZf90vA7wPvBW5T1VNd2z8A3I+7M/bTqvqEr78L+DzuPpaHVfUPd/ej7LLFVzj/yiO8cnSIbNy9hcY1V+fpEYEkJMkMaTrHcDrHlO+1Jmmpc2FTUiKOJ+3hEMYYY7Z4K92uR4E/B77cVfcC8AvAX3VvKCI3AfcCNwNHgG+IyI/51V8AfgY4AzwjIidV9XvvaO+vpJt/nvjIYcbOfq0dpq25u5hp1j8P2O5tNcYY8/bsGMKq+i0RObqp7iVguwC6B3hMVWvAqyJyGrjNrzutqj/0X/eY33bvhnAQMjV9O1PTt/d7T4wxxhxQuz1Geg3wWtfyGV93qXpjjDFmYO25E5Ui8ikROSUipy5cuNDv3THGGGOumN0O4deB67qWr/V1l6rfQlW/pKonVPVEqVTa5d0zxhhj9o7dDuGTwL0ikorIMeA48B3gGeC4iBwTkQR38dbJXf7ZxhhjzL7yVm5R+gpwBzAjImeAzwJLwJ8BJeDfROQ5Vb1TVV8Uka/hLrhqAL+p6l6SKyK/BTyBu0XpEVV98Up8IGOMMWa/EFXdeas+OXHihJ46dWrnDY0xxrSJyLOqeqLf+2F2tucuzDLGGGMGhYWwMcYY0yd7ejhaRC4A/3eVftwMsHCVftZeZ23hWDt0WFs4+6Ud3q2qdnvJPrCnQ/hqEpFTdg7FsbZwrB06rC0cawez22w42hhjjOkTC2FjjDGmTyyEO77U7x3YQ6wtHGuHDmsLx9rB7Co7J2yMMcb0ifWEjTHGmD6xEDbGGGP6ZKBCWERCEfmuiHzdLx8TkadF5LSIfNW/XAL/Aoqv+vqnReRoX3d8l4nIhIg8LiLfF5GXRORDIjIlIk+KyMt+Pum3FRH5U98Wz4vIB/q9/7tFRH5HRF4UkRdE5CsiUhiUY0JEHhGReRF5oavuso8BEbnPb/+yiNzXj8/yTl2iLf7Y/348LyL/LCITXese8G3xAxG5s6v+Ll93WkQ+c5U/htmnBiqEgd8GXupa/iPgIVW9AVgG7vf19wPLvv4hv91B8nngP1T1RuD9uDb5DPCUqh4HnvLLAB/DvQ3rOPAp4ItXf3d3n4hcA3waOKGqt+BeLHIvg3NMPArctanuso4BEZnCvdDlJ4HbgM+2gnufeZStbfEkcIuqvg/4H+ABABG5CXec3Oy/5i/8H/ch8AVcW90E/LLf1pg3NTAhLCLXAj8LPOyXBfgw8Ljf5G+Bn/Ple/wyfv1H/Pb7noiMAz8F/DWAqmaqukLvZ97cFl9W59vAhIgcvqo7feVEQFFEImAIOMuAHBOq+i3c29C6Xe4xcCfwpKouqeoyLrg2h9met11bqOp/qmrDL34b9w50cG3xmKrWVPVV4DTuD5DbgNOq+kNVzYDH/LbGvKmBCWHgT4DfBXK/PA2sdP2inQGu8eVrgNcA/PpVv/1BcAy4APyNH5p/WESGgTlVPeu3OQfM+XK7Lbzudtq3VPV14HPAj3Dhuwo8y2AeEy2XewwcyGNjG78B/LsvD3pbmF02ECEsIncD86r6bL/3ZQ+IgA8AX1TVHwfW6Aw7AqDuvrUDfe+aHza9B/dHyRFgmH3Yi7tSBuEYeCtE5EHcu9H/vt/7Yg6mgQhh4HbgEyLyv7hhog/jzotO+KFIcMNNr/vy68B1AH79OLB4NXf4CjoDnFHVp/3y47hQPt8aZvbzeb++3RZedzvtZz8NvKqqF1S1DvwT7jgZxGOi5XKPgYN6bAAgIr8G3A18UjsPVBjItjBXzkCEsKo+oKrXqupR3EUV31TVTwL/Bfyi3+w+4F99+aRfxq//Ztcv4b6mqueA10TkPb7qI8D36P3Mm9viV/0Vsh8EVruGLPezHwEfFJEhf2631Q4Dd0x0udxj4AngoyIy6UcWPurr9j0RuQt3+uoTqlrtWnUSuNdfLX8Md7Had4BngOP+6voE9//Myau932YfUtWBmoA7gK/78vW4X6DTwD8Aqa8v+OXTfv31/d7vXW6DW4FTwPPAvwCTuPObTwEvA98Apvy2grvq8xXgv3FXE/f9M+xSO/wB8H3gBeDvgHRQjgngK7hz4XXc6Mj9b+cYwJ0vPe2nX+/359rFtjiNO8f7nJ/+smv7B31b/AD4WFf9x3FXUr8CPNjvz2XT/pjssZXGGGNMnwzEcLQxxhizF1kIG2OMMX1iIWyMMcb0iYWwMcYY0ycWwsYYY0yfWAgbY4wxfWIhbIwxxvTJ/wNOrDJXNdFvWgAAAABJRU5ErkJggg==\n", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeEAAAEICAYAAABoAUxEAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8QVMy6AAAACXBIWXMAAAsTAAALEwEAmpwYAACVrUlEQVR4nOydd3wcxd3/37PXm+qp2ZY7lrFNMdU2NQnFdBIgQKgOJU/ASZ6HhxZCiAMJNXHy5AckoRlMsxNC6JgAoSVYgE0JzcK4N3XpdKeruzu/P3bvfCed5KZmed+v12pnZ2d351Z799nvzHfmK6SUWFhYWFhYWAw8ymBXwMLCwsLCYk/FEmELCwsLC4tBwhJhCwsLCwuLQcISYQsLCwsLi0HCEmELCwsLC4tBwhJhCwsLCwuLQcIS4T5GCHGxEOJfg12PHUEI8bAQ4lc7eeybQohL+7pOfYkQ4nMhxNG97B/UzyCE+LYQYoMQIiKEmD5Y9dhZhBBHCyE2DnY9BgIhxDwhxGODXQ+L4cNuJcJCiLVCiJj5Y5Ve7h7sevUVphhIIcR+XfL/buYfPTg1GzoIIarMe1GRlfezHvKWAEgpp0op3zTzd/lHVAhxgxBijfn8bRRCLN6V8wG/AeZKKf1Syo928VxDDvN/M3Gw65GN+RykzP9huxDiXSHEzMGul8Wex24lwianmD9W6WXuYFeoj/kKuDC9IYQoBWYCTTtzMiGEvY/qNSSQUm4BvgaOzMo+EliRJ+/tvr6+EOIi4ALgGCmlHzgIeH0nz5X+34wBPu+bGlp0pZfvwGLzf1gG/At4WgghBq5mFha7pwjnRQjxRyHE37K27xBCvC4MioUQLwghmoQQbWZ6VFbZN4UQvzLfhiNCiOeFEKVCiMeFEB1CiA+EEGOzykshxI+FEKuFEM1CiLuEEHnvpRBishDiVSFEqxCiTgjx3W18lMeBs4UQNnP7XODvQDLrnC4hxO+FEJvN5fdCCJe572jTOrtOCFEPLMjKu8Gs71ohxHldrlsshHhRCBEWQrwnhJiQdb1Z5j0ImetZPXxWRQhxoxBinRCiUQixUAhRmLX/QnNfixDi52Y9jhFCVAohouYLR7rsAeb/y5HnUm9jCq55nw4A/q9L3kyzHFnXmQ3cYN7fiBDik6xzjhFC/Nv8/P8QQgR7+P8cDLwipVwFIKWsl1Lel1XvtUKIY7K2M5a3EGKs+excIoRYD7wjhIgANuATIcQqs9z1QohVZl2+EEJ8u8t9vkwI8WXW/gPM/BFCiL+Z922NEOLHPXwGhBAnCSE+Mp/vDUKIeVn70vW8SAix3nxmfpa13yOMLow2IcQX5j3ZYYQQE4QQ/zSfh2bz+1Zk7rtGZH2fzbw/CCH+z0wXCiEeFEJsEUJsEsb312buu9j8X/5OCNECzKMXpJQp4BGgEig17+Nz5nf2ayHEZT3U/0UhxI+65P0n/f8SQhwnjO98SAhxrxDiLWF2e/T2XdmO+3+IEGKZ+b9rEELM3/67bjHkkFLuNguwFsMCybfPi2FFXgwcATQDo8x9pcAZZpkA8Ffgmaxj38SwriYAhcAX5rmOAezAQmBBVnkJvAGUAKPNspea+y4G/mWmfcAGYI55nulmvab08BneBC4F/gGcYOa9jyEoG4GjzbybgVqgHOMt/l3gFnPf0YAK3AG4AE9W3nwz7yigE6gxj3kYaAEOMev5OLDI3FcCtGFYf3aMl4I2oDS7zmb6++Z9HA/4gaeBR819U4AIcDjgxGiCTaX/n8BLwA+z7sXvgP/Xw326CPjETB+EIbZ7dcmLAc6uzw3GD/Jjee77KmCSeb/eBG7v4drnA63ANeZ1bL09o9nXA8ZiPDsLMZ4NT9bzNDHrmLOAERgvyWeb/6uqrH2bMIRPABMxLGkFWA7cZN7f8cBq4PgePsfRwD7mcfsCDcDpXep5v3k/9gMSwN7m/tuBd8xnoxr4DNjYy/c25/Nl5U8EjsV4JsvM/+PvzX1V5ucuMrftQCNwoLn9d+DP5n0sx/ie/CDrO6gCPzKP8+S5dvb/xQXcBaw3t98G7gXcwP4YrVDfzHPcd4H3ss65H8b3yAkEgQ7gO2YdfoLxvG/Pd2Vb938pcIGZ9gMzBvu32Vp2fhn0CuxQZY0fuAjQnrVclrX/UIwfyHXAub2cZ3+gLWv7TeBnWdu/BV7O2j4F+DhrWwKzs7avAF430xezVYTPBt7pcu0/A7/ooV5vYojw+cCTwGTgK3NftgivAk7MOu54YK2ZPhrDanZn7T8a40fJl5X3F+DnZvph4IGsfScCK8z0BcD7Xeq5FLg4u85m+nXgiqxyNeYPjx1DHJ7M2uc163lM1r36t5m2AfXAIT3cp7GABhQB/wP82szfnJX3RpfnZlsifGOX/+eSXp6f84DXMESiBbgu37W6Xo+tP67ju5wvr0hl7f8YOM1MvwL8JE+ZQzFFJCvvp2S9PG7ju/V74Hdd6jkqa//7wDlmejW5z//l7IQI5yl3OvBR1vbLmN9v4GTgCzNdgSFKnqyy56b/5xjfwfXbuNY88/lrxxD3fwIHYrxUaEAgq+xtwMN5/p9ujBfSvczt3wD3mukLgaVZ5xAYL+Tb813Z1v1/G/glENye/621DO1ld2yOPl1KWZS13J/eIaV8D+MHQmCIDABCCK8Q4s9m008HxkNcJLY2+YJhCaSJ5dn2d6nHhqz0OgzLpStjgEOF4fjRLoRox/gBr9zGZ3wa+CYwF3g0z/4R5jV7un6TlDLe5Zg2KWVnL8fUZ6WjbP28Xa+VPnbkdtbLjvGjOYKseyaljGIIWJpngSlCiHEY1lFISvl+nmsgpVyLYQ0egdEE/Y65692svB3tD+7p8+e7/uNSymMwBP+/gFuEEMfvwLU29LZTGM32H2c9M9MwLCswRGJVnsPGACO6PGs3YNz7fNc4VAjxhtl0HTI/R9cm+N6eia7P/w4jhKgQQiwym5M7gMe61OERjBdSzHX6uzAGcABbsj7rnzEs4jS93mOTv5i/IeVSym9KKZdjfLZWKWU4q1ze5938ji0GzhdGd9S5WXXs+rxLjBdpsvb39F1J09P9vwSj1WaFMLqHTt6Oz2oxRNkdRbhHhBBXYjQtbQauzdr1vxhvmodKKQvY6sCzK04Y1Vnp0eY1u7IBeKvLS4NfSvnD3k5sCtTLwA/JL8KbMX6Ierq+zHNMsRDCtx113ta10sdu2s56qRgvNFuA7H54D0Y3gVFh4wftLxg/theQ/3Nnk+4XnokhvmCI8ZEYTd49iXC+e7NTSClTUsq/Av/BEEowrGNvVrF8L1w91kEIMQajGXIuRpN/EUZzb/pZ3YDRbdKVDcCaLs9aQEp5Yg+XegJ4DqiWUhYCf2L7vw9b6P787wy3YtyLfczv5fld6vAMsK8QYhqGJfy4mb8BwxIOZn3WAinl1Kxjd/b/vBkoEUIEsvJ6et7BeFE4D/gWEJVSLjXzuz7vInub3r8rvSKlXCmlPBfjpeMO4Kku322L3YhhI8JCiEnAr9j6I36tEGJ/c3cAw5ptF0KUAL/og0teIwyHr2qM/p58w1ReACYJIS4QQjjM5WAhxN7bcf4bgKNMq68rTwI3CiHKhOFAdBOGFbEtfimEcAohjsD4UfvrdhzzkvkZvieEsAshzsbo332hh3r9jxBinBDCj/Eju1hKqQJPAacIw8nLidGs1/VHfyFGU+KpbJ8IXwhsllJ2mHn/MvMKMZrM89EAjBU9ONJtC9Pp5yQhRMB0rjkBmAq8Zxb5GDjH/F8fBJy5g5fwYQhIk3m9OWwVeIAHgKuFEAcKg4mmcL8PhIXhkOcRQtiEENOEED05TQUwLL64EOIQ4Hs7UMe/AD81n/9RGH2v28IphHBnLTazDhEgJIQYidHPnsF8MXsK44XhfSnlejN/C4bfxG+FEAXm/2GCEOKoHfgMeZFSbsB4qbvNrOe+GJZn3u+XKbo6RhdW9jP7IrCPEOJ0YXhnX0nuC1lv35VeEUKcL4Qok1LqGM3pmHWw2A3ZHUX4eZE7Tvjv5kP+GHCHlPITKeVKDBF7VBhew7/HcHBoxnBoWtIH9XgWwxHmY4wv3INdC5hNWscB52C8+daz1WGqV6SUm6WUPU368StgGYYF9inwoZnXG/UY/VebMSyK/5JSrtiOerRgCPb/YjQfXwucLKVszlP8IYwforeBNUAc8wdaSvm5mV6EYSVEMPriElnX+jfGj8mHUsptNXG+hWEJZN+jjzH+z8vN1oR8pF88WoQQH27jGvnowHi21mP8AN6J4VCWrsfPMSzVNox+uyd25ORSyi8wftCXYrww7AP8O2v/X4Ffm+cNY1iLJVJKDeP/tD/GvW/GEOzCHi51BXCzECKM8RL3lx7K5eOXGM2nazDEcFsvTGAMwYplLXPM8xwAhDC+Q0/nOe4RjHvQ9RoXYjhAfYFxr5/CcObqC87F6JfdjOEA9gsp5Wu9lF9o1jEj1Ob34yyM56MF48V1GVuf9x6/K9vBbOBzYXjW/x9GX3FsO4+1GGIIo6vCYkcQQkgMZ4yvB7su24MwJvl4TEo5ahtFBwzz7b8d4z6uycr/J/CElPKBwaqbxdBBCDEaYwx4ZVaLx5BCCHEhcLmU8vBeyigYfcLnSSnfGLDKWQx5dkdL2GI3RQhxiukk58PwJP0Uw5s4vf9gDMtoV2egshgGmMJ1FcZwuaEqwF6MVoX78uw7XghRZLbG3YDR/VI7wFW0GOJYImwxkJyG0cS3GWNc7zmm1yhCiEcwhv38dxfPVIs9EPNFrQPDU74vfDj6HNMjvgmj2yBft8NMDE/2ZoxhjqdbzcYWXbGaoy0sLCwsLAYJyxK2sLCwsLAYJIb05P7BYFCOHTt2sKthYWFhsVuxfPnyZill2WDXw2LbDGkRHjt2LMuWLRvsalhYWFjsVgghdmoWM4uBx2qOtrCwsLCwGCQsEbawsLCwsBgkLBG2sLCwsLAYJCwRtrCwsLCwGCQsEbawsLCwsBgkLBG2sLCwsLAYJCwRtrCwsLCwGCSG9DhhCwsLi56QukQmNfSEhjSXTDorX09qICUIgUhHsBbCCKcgMP4IzH3d89PF8x1j7NuaJl0uXWRb++hyvqwyiseOa0xB390wiyGJJcIWFhYDglT1buKYI575BDWZX1hlUkOmhncce2d1gPIr9x/salj0M5YIW1hYdENKCaq+VTDTwrctccwS16770bYzWIwAnAq4FHAIdCdIB+he0AolqkNHs+uodo2UXSNpV0nZVJJ2lbiSJGFLEVcSxGwJYrY4MRKkZIqUZiwum5OrDvhf/E4fSIwFicxKZ/LNADcyK02XcjJdIJO/dTtnX5d05px590kUp22H/mcWuyc7LcJCCDfwNuAyz/OUlPIXQohxwCKgFFgOXCClTJoxNRcCBwItwNlSyrW7WH8LCwuMH22Z1HsQRBWZ0LuIp4pM6pm0ntTNchp6QkcmVdhOQ1NXJKopikm7StKWIm5LEleSxNxxYl5TEEWcqBInKmJERJROESNMhIjoJEyUsIgQUxIkRWprE24+VHPZDpyKE4fNYawVB5rUaIm3cNKEkzmo8qCcsr1d0sKiv9gVSzgBfFNKGRFCOIB/CSFexgjC/Tsp5SIhxJ+AS4A/mus2KeVEIcQ5wB3A2btYfwuL3RqpS0P44ip6TEXGzXQ8T7oXq1Qmta0W1TbQbLphQdq2CmZMiRNTEnQ6Y3S6okRElDAROogQVxJElYS5jmfKxhTD0lSFljm3x+7BY/fgtXvxODx4bB6cNkMA02uHzYFD8VOsFFPRZV+mjFkuLZ5d8/Md07WMXdi39ruavLPxHa54/QocNkdf/hstLHaanRZhMxh7xNx0mIsEvgl8z8x/BJiHIcKnmWmAp4C7hRBCWgGNLXZTpJTIlI40BVSPa0Y6npWOaaaIGnldxVYmtG1eR7VpJOwpErYUCSVJzBTDqBIj4ogScXYSEVFTIE1xVOJZork1L6Yk0IVuiKTdg9fhzYhmdtrYV85o+9hu5TyOrDJZ2267G0UM7QEXST0JGBayhcVQYJf6hIUQNowm54nAPcAqoF1KmW4s2giMNNMjgQ0AUkpVCBHCaLJu7nLOy4HLAUaPHr0r1bOw6BWp6rmCaYpmtmBm0jEznchKxzXQe3+HlApoTknKoZG0p4jZk3QqMSLeTkK+CO2EaJFttNNBRIkRtcWM/bYYUSVGpy2G2+mh0FWI3+HvQTR9BOxBKsztbYnr7iCW/UVKTwHgtFkibDE02CURllJqwP5CiCLg78DkXa2QlPI+4D6Agw46yLKSLfKyzWbcmIqeyEp3ad7VYxqo2+70FC4b0iXQXZKUQydpV4kVJYja4kSUKCERJkQHLbKdZtlKo9pMC210mgKaEMmczka/w0+Rq8hY3EUUu4opdJVR455EkauIYndxZn+xu5hCZ6HVdNqHpDRDhB2KdU8thgZ94h0tpWwXQrwBzASKhBB20xoeBWwyi20CqoGNQgg7UIjhoGWxhyJTOno0hRZV0aMp9PS6p77RHWzGFQ4F4bahuO0Itx3pAjWgkLQrxO0qUVuCTiVGh4gQEmFaTSFt0lqo1xppUBsJq5Eez+93+Cl0FVLsKqbIbQjnNNeYbkKaEV1X0Q4Jal1dHafOOZUNGzZQXV3NggULqKmp2e7jLbpjWcIWQ41d8Y4uA1KmAHuAYzGcrd4AzsTwkL4IeNY85Dlze6m5/59Wf/DwQOrSsDZNAdWjKnpnlqimBTaWm9/rOE9FoLhtCI8dxW1HcdmwBz0oppgm7Cni9mTGIu0QnbQToo0QLXobjXozbal2QokQ7Yl2QskQqq4aXgspc8nC5/AZoukqpjBQyGTXFGa4ZnW3TNOiu4OCujNcddVVLF26FICNGzcyY8YMamtrLSHeBZKa0SdsV6zRmRZDg115EquAR8x+YQX4i5TyBSHEF8AiIcSvgI+AB83yDwKPCiG+BlqBc3bh2hb9QNrRqJt4RlPonWqumHaxXHv0zBWgeO0oXgeK14GtyIWjyofitaO5BSmXSsyZotMWJaREaLcZFmmr1kYoaQpoIpQR045kB7ForMfP4FScFLmKKHQXUuQqYlzhOApdRjp7nZMegCbf5uZmfvKTn/DMM8/w0EMPcfbZ2x4YMH/+fNra2njvvffQdZ329nZLiHcRyxK2GGqIoWyMHnTQQXLZsmWDXY3dEqlJ9Fi2Ndr7Ot0kjNrz8yCcNlNQ7Ui3QHND0qWRdKrEnEmi9jgRe4wOJUJICdMqQrTSTiQVySzhZJhIKkJnshNV9jzY0yZsGbEsdPYgnmY6e9tj9/TH7dxpamtrOfvss2lrayMcDgPg8/mIRHpu5s53jiOOOAJVNe7XwQcfzPvvv98v9R3uPPjpg/z+w9/z/nnvD7lnpS8RQiyXUh607ZIWg43VJrMbIFM6WjjZzfrMbtrt2q8q4730mSog3Qq6R6C5dJIejXhBipgjQac9TsTWSbstQrvooEVpo0W20UQrbaohqJ2pTrNiQNxcul5CKPgdfgLOAH6HH5/DR4W3gglFE/A7/Mbi9BNwBPA7/d2E1efwDagHb3NzMwsWLGDOnDkEg8FdPl9afDdv3pwRTwBFUXjwwQd7ObI7M2bM4J133mHWrFlIKfnwww8ZNWoUqZRh1bndbv785z/zwgsv8PzzzxMIBGhtbUXTNBRFobS0lNbWVqSUOelx48btcf3MGUvYGqJkMUSwRHgQkVIi4xpaKIHWkTTW6XR6uyOB3tmzxag5JSmXTtKZIu5IEfXGiRTE6LB1ZqzRFtFGEy00SMNzN6rE808PpANJcNlcGZH02431SMcoahyTDVF1+rsJqc/pywiq3+HHY/d0myhhqNLc3Mypp57K0qVLWbduHXffffcOn2PJkiVceOGFLFy4kKKiohzLVVEUysvLd0r0mpubmTdvHs888wzpVitN09i0aVNOuRNPPJGeWrXq6+t7TB988MH4/X40betLm67rqKrKk08+yezZs7e7rrsDSS2JTdiwKdaUkBZDA0uE+wmpS/RIEi2UzBLWRO52KJHXOSnhUom4Y7Q6OmjwN7M50EiDaKbN1kGHLULY1kmHrZOwrRNN5B7vc/gyFqjP4cuI5FhnDdMcB24VTnN/WjizhXQwh8T0tUW6Lerq6jjmmGPYuHEjAK+88kqP9Zo3bx5PPfUUzc3NaJrGiBEjUBSF6upqVqxYQVtbGyeccEK3Y202G6qqsmrVKo488shu+xVFwe/3s2bNmhwxLCkpQdM0QqFQ3nOWlpYC0NramhF8t9vNhAkTtmkJRyIRwuFwZsnHCSecQHl5ed5zxGIxHn/8cWbMmLGNOzy0SOkpa3iSxZDCEuGdQKY0Q0zTotpVXDsSaOFkt7l3pSJJeLStAlvewkaxhfVyM032Vprt7bTaQ6QUlWJXMZW+Sip9lZR7yxnpnExNFwu0a5Ou1+7d7d/wr7/+eh588EHq6up44IEH+u066ebihoYGEokEYIjho48+mrf8nXfeyT333JOTt3nzZoCMgPdEKpWiubm51zL5aG1tzZvvcrl48803MwJYW1vL9773PSorK7fb0m5ububOO+/kjTfeYNOmTd0s4dbWVnRdp7GxEchvTR922GE5L0oOh4OjjjqKxsZG7r777iHZzJ3SU9a4a4shheWYlYWUEhlTUTPCaoir3pFEDSXQOwyR1aPdm4d1JyS8KhFXnDZnBw22FjZSz1q5gU2igRZHOyFbBCkkTsVJlb+KSl8lVb4qqnxVGcFNp4ez00hvBINBWlpaEEJQXV3N4sWL+9za6uroBGC323nsscd69Fo+9thjee2113A4HKiq2mPTb08oioKuG29lQogdPj6ba665hjvvvHOnj98e0i8p8Xg8ryVcV1eXc/+64na7KSoqGnL9zjcvvZnX17/OW2e/NdhV6Vcsx6zdhz1GhKUm0SLJjLB2s2LNdb5ZlHSvIOE1LNg2R5hGWwsbRT1r9PWskRtosbcTtW31Tgp6ghkxTYtsttCWuEt2m/7SgWbJkiWcdNJJGcGy2WyMHDlyh8S4rq6Oq666ivnz51NaWsr111/PokWLMn2daYemrpSUlPDiiy8yceJE5s2bx0svvcSJJ57IvHnzaGlpyTlnup82Ho/T0tL7nDPZAtwVv9+P3++ntLSUzz//HACPx8M///lPzjzzTEKhEJWVldTX1xMIBPjOd77DvHnzBqSpvjeyRRqgs7OTzk7DYa/r53W73VxyySVDot4///fPqd1Sy6tnvjqo9ehvLBHefRjWIpzcGKbtma8NazaS7D6W1SaQfsUUWMOC3SqwG1iprqbR1tItSswI34gcy7XKv1VkK7wV1hhEk2wx3BFLqLa2lhNOOIH29vZMnqIoVFVV8dRTT21TjE866SReeuklioqKkFLm7VPtCSEEXq83IyhgNP+ed9553HHHHXlFxO12Z5q0e8PlclFcXExpaSmRSISTTz45R5h8Ph/RaLTb9XcH0s3bH330EZdeeinXXnttTlM/wJVXXrlTTm99yXVvX8enzZ/y0ndeGtR69DeWCO8+DGsRTjVG2fC3j7MEtpWNop61+ga+0lazUd2c4yWsCIVyb3m35uFsS7bAWWBZsdtJWgzdbjcFBQXYbDbGjh27Xc2T2V7B2Z7AiqJw8cUX9yiIYIj/EUccQVNT0y7VP1+z8YQJE3jxxRcz9a+trWXmzJmZuuWzeF0uFwcccECPn3vJkiWce+65mZeOioqKnD7Y3ZW6ujrmzJnDBx98gKqqTJw4kZUrVw5qna568ypWt6/mmdOfGdR69DeWCO8+DGsRBvjGX75Bc8xwigk4AzmC2rXJuMxbZk1n14fU1dVx4IEHdrPqCgsLcbvdxONxFi1atM1hMEuWLOHb3/52pukTYMSIEYwZM4bx48fz5ptvkkqlsNlsVFRUUFBQwE9/+lNuvvlmNm3axD777MMbb7xBNBrdrnqXlpYyadIkfvKTn3D11VezefPmHHFNNxcDHHnkkT02bwshmDlzJg899FBe8W1ubs44omUzc+ZM3n333e2q6+5AbW0tc+bMYcGCBYPuTf2j139EQ7SBv5zyl0GtR39jifBuhJRyyC4HHnig3FU+avhIrmxdKcOJ8C6fy2LHWbp0qRw9erQsLy+Xfr9fYnQKZBZFUeTIkSPllVdeKZuamrodO378eDl16lRZUVEh3W53t+N7WgKBgKysrJRVVVWyqqpqu48DZHV1dU49VqxYIffaa6+cMqNGjZKjRo3KbJeXl+fsF0LIl19+udd784tf/CKnfEVFhZw5c6ZcsWJFn/8fLAwu/8fl8nsvfG+wq9HvAMvkEPgNt5ZtL8Pe7Nu/fP/BrsIezYwZM1i3bh2QOyxmw4YNNDQ0oOs6mzZt4p577mHhwoV4PFu9wpubm3t0aOpKuunY4/EQi8Xyjn91uVyUlJQAsGXLlky+3W7P8fTdsGEDFRUVOcfquo7X681Y0xs3bsTtdmf2p4fypHnppZe2e6ILr9fL3/72t2E3MUZfI6UkoSWIqbG8S1SNEkvlyUtvp2J83vI5E4smDvZHGRSWL19ebrfbHwCmYcz3bzEw6MBnqqpeeuCBBzZ23TnsRdhi6BAMBnOG1nQdq5tPOO12OzU1NbS0tKDrOjabjZKSEurr63O8ko2Xf4jFYlRUVFBWVkZzczNCiEwT9X333UdNTQ3Nzc1UVVVlhPexxx7j3HPPzZwDuotqPrKbx7NZunTpdjW7zp07F5/PN2ATkwwUutSJqTEiyQidaiedyU461c5uAplXRLvmZx0T1+LoUgcJNh3smoJdE+ZiptWtaYem4JYO3NKJS3fg0u3MspdzwBnHDvYtGhTsdvsDlZWVe5eVlbUpijJ0+yGHGbqui6ampin19fUPAKd23W+JsMWgkbaS0w48a9as6Ta0ZVtDk5YsWcJ5551HcXExq1atAqChoSEzoUW+vthgMMj+++9P2t/gV7/6VY4Al5eXdztG13Visdg2vZaPPfbY7e73DAaDXHPNNdtVtr9JC2dnqpNIKkI0Fc3ME951iSQjRNVoN5HNrFOdCEmuIGals0XToSl4pBO3dODSHXh0G4WaDbuuYFcV7JofRfWjqBKh6pDSIaWB3DENsTkc2OwOkrEoByX2TEsYmGYJ8MCjKIosKysL1dfXT8u33xJhi0GnpqZmpx2RZs+ezYsvvsgxxxyTk79+/XqmT5/OP//5z7yi+NhjjzF16lQ0TeOzzz7L5B900EF88MEHPV5vW8ORpJTU1dUN2OQUUkqiatSITpXMjVSVXqfzMyKaFtlkmFgiSiIeJRWPY1OFKYzCFEBDJLMtTJdmywimX7NRrNtwaAKbasemFiJSAURKB237uhHSKDY7DrcLh9OFw+3G7nLjCLhxuFzm4sbhcmPPpM1yZnmHy20em7+sYrORjEX5fxd/l+b1a5l40KH99B8Z0iiWAA8O5n3P2wVgibDFbs8ZZ5yRsVBtNhtOp5NYLEYsFuPII4/k7bff7ibENTU1TJ8+nWzve0VReOyxx3q91iOPPMI55/QcCvu1115j7ty5vPrqtieD2F4BzUmnjLLhRJh4NIIai2FPglNVcKaUrWsz7UgpuFQFt+bArdoo1RQqVIFNAyUlEdIDbN/sbEJRcLo9GQF0uDyG6Jl5TrfHEE8zbZTzGGXTQunKFda0UNrs/f9T5PR4KSyvoGn92n6/loXF9mKJsMVuzeLFizNzOAP88Y9/5Mgjj+S4445j/fr1pFIpvvGNb/Dxxx93s06vvvrqHEH1+XzbtGDPPvtszj77bOrq6jjyyCNpbGpE8SjYA3Zsfht2v52yb5Tx8GcP05Hs6CagGcFNhElFY9hT5IpnZi3MtQ2v6sCtOShTFUakBPakREk5gGJzyY/D48Hl9eH2+XF5fbi8XlMw3TizhbHL2pnZ9my1LN0ebHb7bj9GPjh6LM2WCA8aXq93ejQa/Wigrvfee+95fvCDH4yJRCI2RVHkxx9//KXX6x1SrQG7LMJCCBuwDNgkpTxZCDEOWASUAsuBC6SUSSGEC1gIHAi0AGdLKdfu6vUt9mwuuuiiTHrRokWZuZ+XL1/OXnvtRXt7O/F4nKlTp1JZWZmZcau2tpZzzz0351yHzjiUtVvWYvPZaEu00Z5opz3RTlu8LWfdFGli5YaVlPyshDJ/GQ6p4E7a8CQUPAkbieQaXlv0AJ6kDZ/qwqPZKVVtVKYU7CmwJZ0ItaTXzyWEwOn1mgLqx+XzmULqy6TdPh8un98o5zXS6TJOrwdlNw/m0R8Eq8ey+sMPUFMp7A4rkMNwJT12/4ILLhj3yCOPrJk5c2asvr7e5nQ6h5QAQ99Ywj8BvgQKzO07gN9JKRcJIf4EXAL80Vy3SSknCiHOMcvlny3fwmI7uP/++zP9szabLSf4QmlpKX9/8e9896LvEtEi2Pw2OgOdnHrzqfiDfhJKglFXjMpYsDa/jS3+LZzyj1NAgkMVeBI2U1xteJI2nB3gidkojikckfDh1Qrx6nacIr/YuXx+vAUFOE3hdKcF1OfH5fFuTWcJa1pcHe7dJx7z7kRw9BikrtO6aQPlY8cPdnUsgCeeeKLw9ttvr0qlUkpxcbG6ePHi1SNGjFDHjx8/benSpStGjBihaprGuHHjptXW1q4AmDNnzphNmzY5AebPn7/+uOOO67zqqqtGrF692rV+/XrXyJEjE+eff37r3nvvHZs5c2YMoLKyMjP/8HnnnTf6k08+8cXjceWUU05p+93vfrc5f+36n10SYSHEKOAk4NfAVcL41fgm8D2zyCPAPAwRPs1MAzwF3C2EEFLuoJujxR5HXI0TSoQIJUOsb1zPdTddx5r6Ndh8NirOqMiI6LjrxmEP2HEXu7EH7KhSpeLGCiqoAGk0+3qSCu6YDVcInBGBu1XBvdkQWa9mxyvteIUdRx5h1aUkmkgSjicIJ2LUxxOE4wkiiQROn58/3v8g3sIivEVFeAsKsdktS2uoUTZ6LADN69fu0SJ8zVOfVH9VH/b25TknVQaid52534YdPe7YY4+NnHPOOSsURWH+/PnBm2++ufL+++/feOaZZ7Y88MADJTfddFPjs88+W7D33nvHRowYoZ5yyinjrrrqqobjjz8+snLlSufxxx+/1+rVqz8HWLlypfu9995b4ff75c0331wuhODwww/fq7W11f6d73yn9Ve/+lUDwPz58zdVVFRoqqoya9asmvfee89z6KGHxvryfmwvu2oJ/x64FgiY26VAu5QyPfPBRmCkmR4JbACQUqpCiJBZPifQqhDicuBygNGjR+9i9SyGClJKIqlIRkxDiRAdiQ5jnezIyc/O60h2kNC6eCOfCKO1kThTNpwxgSMM9gg4OwXOZoFrhdE87NV8eHU7PuHAa3NgV7o7J2q6TiSRJBJPEIp3sskU2Uh6nRHaJJ2JJKXBIG63m02bNuWEJnz33XcZN92aJXCoU1Q5ApvdbjlnDSHWrFnjPP3000c1NTU5ksmkUl1dnQD44Q9/2HzqqadOvOmmmxofeuih4MUXX9wM8O9//7tg5cqVGW/CSCRiC4VCCsDs2bPbzZn5UFVVfPDBB/5ly5Z96ff79SOOOGLSwQcfHD3ttNPCjzzySMnDDz8cVFVVNDU1OT755BP3bifCQoiTgUYp5XIhxNF9VSEp5X3AfWDMHd1X57XoG5JasptI9rTuSHQQShpi25HsQJNat/MpGrhSNgp1D0XST5H0Uap7GK0W4lFLcSUV7EmwJXREXEXrjBMLdWAXPU/4o2paRkTb41E2JBJZgpokYm6H4wliyRQSwzP6iSee4Nprr2X9+vWZczmdToqKiiguLOYf5pjlurq6jOMXGPNYD/acyBbbh81up2TUaJo3rBvsqgwqO2Ox9hdz584d/ZOf/KT+vPPOC73wwguBm2++eQTAxIkTU8FgUH3uuecCH3/8se+ZZ55ZDcYL/YcffpjXwcrn82XGxo0aNSp56KGHhquqqlSAY489NrRs2TJvTU1N4u67765Yvnz5l2VlZdoZZ5wxNh6PD9oMYrtiCR8GnCqEOBFwY/QJ/x9QJISwm9bwKCAdAmcTUA1sFELYgUIMBy2LAUbTNSKpSI5I9ro2hTWcDBNTu7wsSrDphievS1UoxE8RfgLSwwjdzV56OW51REZMlYSGiKno8SRqZwwtmexSOxUIA2EUmx1PIIDbby6lAdx+P55AAW6fH7c/kLvfH+DTL7/kO2eeRWNjI4qiIKVECLHN6S9ffPFFZs+ezf7778/555/PV199RU1NDY8++miOx3RdXR0zZ86kra0NAIfDwVNPPbXr/xSLAaOsegzrP/tksKthYRIOh22jR49OATz88MOl2fu+//3vN1166aXjzjjjjBa7OYzt8MMP77jtttvKb7nllgaAd9991zNr1qxuVuy3v/3tjt///veV4XBYcbvd+r///e/Aj3/844a2tjabx+PRS0pKtA0bNtjffPPNwqOOOirc9fiBYqdFWEr5U+CnAKYlfLWU8jwhxF+BMzE8pC8CnjUPec7cXmru/6fVH7zzpIU0nAznLNtjoYaTYaQZXNmmgUPNHVfql24C0kNAeijXnIzVPLg0Pw7Tu1dJ6pBQkYkUWiyBzCtwCXMBxWbLiKQnUIy7JIDbF8AdCODxG8Lq9heY663C6nC5d9g56bAjymhoaOiWnx2EPj315eeff57Z/9RTTzF79mxqamp6nKyjtraWb37zm8Rixvc9HU3JsoJ3L4Kjx/LFO28Qi4Tx+APbPsCiz4jH40pFRcW+6e0f/vCHDT/72c82n3vuuRMKCwvVww8/PLx+/XpXev+5554bmjt3ru3yyy/PGGz33XffhksvvXT0pEmTpmiaJg499NDwrFmz1ne9VllZmTZ37tyG6dOn7y2E4Fvf+lbonHPOCQFMmzYtOmHChGlVVVXJAw88MNLfn7s3+iSUYZYInyyEGI8hwCXAR8D5UsqEEMINPApMB1qBc6SUq3s7b1+EMhyq9Cai4WQ4M6Y0Jy9riaTM58b05HWlFJwpG66kgiul4FZtFOpefJrbHGdqx6mmh8hISGjIRGrbMxsJgcvjxen1Zsaaurw+nB6v6dm7Nd+Z2Z+bP1Q9fWtra5k1axZSSgoKCgiFQr2WPeKIIzLzTRcXF7N06dIBmxnLou9Y8/Fynr7tF3z3F7dRPWWfwa5Ov5AvlOEnn3yydr/99mvu6ZihyNtvv+39n//5n+rly5fXDXZddpVPPvkkuN9++43tmt8nk3VIKd8E3jTTq4FD8pSJA2f1xfV2BiklqlRJaSlSurEktWTedbpMUk+S0sy1uV/V1Z6PM4/NLp9zPi25dYakVJeXL2nMeuRKGlapO2WjQPdSoHvwaS6qVAfjUg6cqVIciVKUhA5xFRlPgt7zi5TD5c4dY2qKpdvnM0TT00VEfb5csXV7EHkcmoYDM2bMoKioiLa2Nmy23sfUnn322RkBLioqsgR4NyY4egxgeEgPVxEeDtxwww2VDz/8cNmCBQvWDHZd+pNhO2PW91/5Pl+3fZ0jhukm2F1GgqKDCwce6cSFOQG9dOCSdhzSjlO34ZZ2/LqCQ7fh0N3YU26cySKcKYE9YTgbEU+hx5JosTg9V0/F6XHg9vuMJtug2bRrNt+m+0fd/uwm3gAun9+akGAbpJuW29raWLJkSY/hBNPlHA4HtbW1lgDvxviLS3H7/DSv37Ods4Y6t956a/2tt95aP9j16G+GpQhrqsoB+kQm2oPYdQWbIrDpxgT0Ns3wyE0vQjOiswhVB1WCqiFVDZky1npKRU+l0FMqWjKFpqZQk8ltRHFRzaX7RP8un88UzgDu0q3i6enSL+o2+0o9ppgOxNy6eyIPP/xwZurKk046iX//+9/d+niXLFlCU1MTYMT+tQR490YIQXDMWJo2rB3sqlhYDE8RTnRGSDz8Lq6sPM1cchACu9OJ3eE01k6nEZXF6cTucGP3bc2zORzYnS7sTicOpxObY+u+zLFdzmPPOsbudFlTCQ5Bzj77bP7xj3/w0EMPoes6hx12WMZTOs15552XSf/5z38ejGpa9DHB6rF8/tbrSF0ftt0tFrsHw1KEXT4/p1/7c+yOLIF0dhfU4TAhvcWuc8cdd/Dll1+ydOlSdF3nlFNO4bPPPstYvCUlJbS2tgLkjCG22H0pGz2WVDxGR3MjheWVg10diz2YYSnCNrudCQfukfFCLXaCYDDIc889x/Tp09m4cSOqqnLBBRfw/vvvA7BlyxbA6A+eM2fOYFbVoo9IO2c1rV9nibDFoGK1w1hYYAjxa6+9lvGSXr58OXV1xqiI9EQfdrudYDA4aHW06DuC1Vs9pC0GDq/XO30gr/fee+959t9//8kTJ06cOmnSpCnRaFQMRj16wxJhCwuTmpoapk83vpu6rjNnzhzq6uqIx+OAMbWlxfDA6fFSUFZhifAwJZVKkUqluOCCC8b98Y9/XPf1119//vbbb9cNxVCG1q+KhUUWjz32GE6nE4Cvv/6aY445hvSENtmhEi12f8rGjN3j55AeCjzxxBOF++677+S99957yqxZsyZt2LDBrmkaY8aMmbZ582Y7gKZpjB49etrmzZvtmzdvth9//PETpk2btve0adP2/sc//uEDuOqqq0acfvrp4w444IDJ3/nOd8Y9/fTThV1DGdqzRplccskl1RMnTpw6c+bMSenrDAbDsk/YwmJnqampwW63k0wmaWlpyTRFezwe7rjjjkGunUVfEqwey+oPP0BNpfa88fTPXFlN4xd9GsqQ8ilRTr9ntwhlGIvFlIMOOqjzwQcf3HD11VdXXX/99SMWLlw4KF6XlghbWHQh7TGfHarw6aeftvqDhxnB0WOQuk7rpg17dGzhwWYwQhkqisKll17aCvD973+/5Tvf+c7Egf/kBpYIW1h0Ye+99yZ7zvI5c+b0OJOWxe5L2eixgOGctceJ8E5YrP3FQIcyPO2007pFTBrMoapWn7CFRRcee+yxjBOWzWazmqGHKUWVI7DZ7TRZzlmDyvaEMjzllFNau4YyTJd59913PeTh29/+dseKFSs84XBYSaVS/Pvf/w5MnTo1DkYr14IFC4rT1zzkkEMGLZShJcIWFl2oqamhuLgYMII1WM3QwxOb3U7JyGrLOWsASYcyTC/z5s2rSIcynDp16t6lpaVqdvlzzz03FI1Gu4Uy/PDDD32TJk2aMmHChKl33313Wb5rZYcynDJlytR99903mg5l6PF49Pfff9+31157TX377bcDt91225b+/eQ9YzVHW1jkIT0sKb22GJ6UjR7L+s//M9jV2GPQdX15vvzzzz+/PV/+e++956mpqYlOnz4980WsqqpSX3zxxW5hcOfPn7+5a94VV1zResUVV7R2zY9Gox+ZyY3bW/f+wrKELSzy4Ha7c9YWw5Pg6LFEWluIRwY1rrtFHm644YbKc845Z8Ktt966abDr0p/skggLIdYKIT4VQnwshFhm5pUIIV4VQqw018VmvhBC/EEI8bUQ4j9CiAP64gNYWPQH6djBLS0tLFmyZJBrY9FfBLOcsyyGFrfeemv95s2bPz3++OOH9RtSX1jC35BS7i+lPMjcvh54XUq5F/C6uQ1wArCXuVwO/LEPrm1h0S8sWrQo4zF57rnnDnJtLPqLrXNID+u48RZDmP5ojj4NeMRMPwKcnpW/UBrUAkVCiKp+uL6FRZ+QninL5/MNck0s+gt/cSlun5/m9ZZzlsXgsKsiLIF/CCGWCyEuN/MqpJRpT7N6oMJMjwSyx6ZtNPNyEEJcLoRYJoRYlg6kbmEx0KStXyEEDzzwwCDXxqK/EEIQHD2Wpg1rB7sqFnsouyrCh0spD8Boar5SCHFk9k5pmBI7NGG2lPI+KeVBUsqDysryep5bWPQ7aetXSskLL7wwyLWx6E+Co8fQsmFdpuXDwmIg2SURllJuMteNwN+BQ4CGdDOzuW40i28CqrMOH2XmWVgMOZ566qlMWMOnn356kGtj0Z+UjR5HMhajo6lx24UtdomBDCFYX19vO/TQQyd5vd7pF1544eiBuu6OstMiLITwCSEC6TRwHPAZ8BxwkVnsIuBZM/0ccKHpJT0DCGU1W1tYDClmzJiBy+UCIBQKDXJtLPqTtHNWs9UkPWxIpVJ4vV558803b543b96gjwXujV2xhCuAfwkhPgHeB16UUi4BbgeOFUKsBI4xtwFeAlYDXwP3A1fswrUtLCws+oRgtSnClnPWoNBfoQwLCgr0448/PuJ2u/XeazC47PSMWVLK1cB+efJbgG/lyZfAlTt7PQuLgaS5uTmT9nr7NuKbxdDC6fFSUFZB07o9Z5jSz//98+qv277u0wd7YvHE6C2H3TJkQhn25WfrT6xpKy0s8nD99dcTjUYBS4T3BIKjx1hzSA8S/RXKcHfBEmELizxkO2PdeOONg1gTi4GgbPRY1ny0DDWVwu5wDHZ1+p2dsVj7i/4KZbi7YM0dbWGRh29/+9uZ9M033zyINbEYCIKjxyJ1ndZNQ0ab9hj6K5Th7oIlwhYWebjjjjtwmBZRW1vbINfGor8pS88hbTVJ9ysDGcoQYOTIkfv8/Oc/r37qqadKKyoq9l2+fPmQi8hiNUdbWOQhGAxSUFBAS0uLFUlpD6CocgQ2u90K5NDPDHQow02bNn26C9UdECwRtrDogVgslrO2GL7Y7HZKRlZbIjyEuOGGGyoffvjhsgULFgxrt3WrOdrCwsICo1+4yRLhIYMVytDCYg/H4/HkrC2GN8HqMURaW4hHhvVvvsUQwxJhC4seiMfjOWuL4U3ZmHEAVpO0xYBiibCFRQ+kHbIsx6w9g/Qc0lZYQ4uBxBJhC4sesByz9iz8xaW4fX7LErYYUCwRtrCwsACEEARHj7UCOfQjAxnKMM3KlSudXq93+k033VQx0NfeHiwRtrDoAcsxa8/DmEN6LUa8GYvdlVQqlUn/6Ec/GnXUUUcN2XiklghbWPRAMpkEoKWlhdra2kGujcVAEKweSzIWo6OpcbCrssfQX6EMAR599NGiMWPGJPfee+8h611pTdZhYdEDZ511Fg899BAAZ599NuvWWc2Uw51gZvrKtRSWD8nWyz5h8w0/q06sXNmn4cFce+0VHXHrr4dMKMNQKKT89re/rXzrrbe++uUvf1nZl5+1L9klERZCFAEPANMACXwfqAMWA2OBtcB3pZRtQggB/B9wIhAFLpZSfrgr17ew6E/uuOMOFi1aRDQapbOzc7CrYzEABKsND+nm9euYcOChg1ybPYP+CmV4zTXXjJg7d25DYWHhkI6stKuW8P8BS6SUZwohnIAXuAF4XUp5uxDieuB64DrgBGAvczkU+KO5trAYkgSDwcwY4dbWVpqbmwkGg4NcK4v+xOX1UlBWMexnztoZi7W/6K9QhsuXL/e9+OKLxb/4xS9GdXR02BRFwe126zfccEPTwH26bbPTfcJCiELgSOBBACllUkrZDpwGPGIWewQ43UyfBiyUBrVAkRCiamevb2HR3zQ3N2ccdKSUXHfddYNcI4u+RlNTRDtCtG3ZRP3XX7H2Px/h8vmsYUoDSH+FMly+fHndpk2bPt20adOnl112WeNPfvKTLUNNgGHXLOFxQBOwQAixH7Ac+AlQIaXcYpapB9IdKyOB7LevjWbeFiwshiALFizI8ZL929/+xoMPPjiINbLoiqamSHR2Eu/sJBntJB7tJNHZSSIaMdfGvkRnhERmn7Edj3aiJhJ5z1tYNnz7gweTdCjD9PYPf/jDhnQow8LCQvXwww8Pr1+/3pXef+6554bmzp3bLZThpZdeOnrSpElTNE0Thx56aHjWrFnrB/qz9BW7IsJ24ADgR1LK94QQ/4fR9JxBSimFEDvk6y+EuBy4HGD06NG7UD0Li11jzpw5/OxnP8sMd5g0adIg12h4InWdeLSTWEcH8UgHsXAHsXCYWLiDeCTcTTgTaVHt7ERNJXs9t0DgtNlwCAUHAoeUuDUdv6phT6nYk0ns8YSxaDoOXceh6RTbCgfo0+9ZDHQow+3ZN9jsighvBDZKKd8zt5/CEOEGIUSVlHKL2dyc9vXfBFRnHT/KzMtBSnkfcB/AQQcdZA3Wsxg0smMKOxwOHn300cGu0pBH1zUSnZ2GkHZ0EIuEiYVDxE1R3SqwIWKhELFwB4loZ4/jcgXgkODQJQ5Nx66qOJMpfJpuiKammWtjSec5NB27rmOz2bF7vQifF8XrRfH5ctc5aR+Kz0vomWdRG60hSoPNnhLKcKdFWEpZL4TYIISokVLWAd8CvjCXi4DbzfWz5iHPAXOFEIswHLJCWc3WFhZDkrRjltPppKamZpBrM7DoukY8EskSz44uYprO68gIajwaxRgo0R0FcOrgVFUcyRQuVSOgajg1DYeq40ynUfD4fHgKCnEVFGLz+7sI6LbEdGtaOJ07/LnjX3xBcu3aXbp3FrvOrbfeWn/rrbfWD3Y9+ptd9Y7+EfC46Rm9GpiD8V37ixDiEmAd8F2z7EsYw5O+xhiiNGcXr21h0e+43W46Ozt3+yAOuqYRj4SzLNQuzb5p6zRLUBOxGL0JqksHhymo7rSgqhpOTcdhCqoTgcfnx1NQiLOwCHtJCbbiImxFRdiLi7Gll6Iic12M4vNijGgcHBSvDz0aHbTrW+xZ7JIISyk/Bg7Ks+tbecpK4MpduZ6FxUCzOwRx0NQUHc1NdDQ2EmpqoKOpkVBjPR1NjXS2tRKPpAU1PzYMCzUtqJ6USmG2kKpmWpiCGijAWVScX1DTYmqmFZ9vUAV1Z1C8XmQ8jtQ0hM022NWxGOZYM2ZZWAxxNFUl3NKcEdaOpgZCTY10NDbQXr+FzlA72RarADy6xB1P4k0kKcqxTs1mX9NCdRcU4CouyRLQ4SWoO4PiNSaS0mNxbH7fINfGYrhjibCFRS94PB6i0Wi/BnHQVJVIazOhxmyBrSfU2ECowRDZro5LHk3iiScoSiSpSqp4kyqeZAq/x0egshLXiJE4Ro7EXlGet9l3TxHUnSEjwtFOS4Qt+h1LhC0seqEvmqN1TSPS2kKoqYFQYwMd6SbjhnpCDVuItLflEVkddzxJYSJFZTKFJ6niTabwBwooqKjENXoUjpEjcIwciWOEua6qygiIxc6j+Ix7KK1+4T7H6/VOj0ajHw3Eterq6pz77bfftLFjx8YBDjjggMgTTzwx5MYTWyJsYbGL6Lohsjl9sk0NhOq39Ciybk3HE08QSKhUpAyR9aQ0AgVFFFRW4hozcqvAjhiBc+RI7FVVKC5XD7Ww6Cu2WsKWCO+upMf2V1dXJ1asWPHFIFenVywRtrDoBY/HQywWpbyokI0rPs9xegptMUQ2HGpD6rlzxGdENqlSblqxHk0SKCqmoKIK96hRGYF1jBiBY9RIHBUVCIdjkD6pRRrF7HqwRHhgeOKJJwpvv/32qlQqpRQXF6uLFy9ePWLECHX8+PHTli5dumLEiBGqpmmMGzduWm1t7QqAOXPmjNm0aZMTYP78+euPO+64zquuumrE6tWrXevXr3eNHDky8Zvf/KbbPBRDEUuELfZ4pK7T2d6WaSoOmZZsx5bNzJ25Hz63C0VRWPyLrXNHu1QdTyKJL5mizOyP9UooKC6loHIE7pGmJTtyRKa52F5WZnnb7gbsCZbw6wu/rG7dFOnTvouSkf7oty7ce8iEMqyrq3Nu3LjRuffee0/x+/3aLbfcsmn27NmRvvzMfYElwhbDHqnrdIbac7yKQ40NhDZvJNRYT7i9Db2LJetSNTyJFJOSKp5IHE9SxScUCkoMkfVkW7Jms7GttBSh7HRMFIshgsiI8NAdljac6K9QhqNHj06tWbPmP5WVldo777zjPeussyZ+8cUXn5WUlAyp0IaWCFvs1uiaRqStlUhrC5HWZiKtLYRbWwg3NxFuqCfS2kxnRwearuUc51Q1PKbDU6m59tmdBEpKKawagWek4fh02Q03UNfaSiwQYFVjo+VRvAegeA2P6OFsCe+Mxdpf9FcoQ4/HIz0ejwZwxBFHREePHp347LPP3EceeeSQ+sdaImwxZEnF44S7iGuktdkQ2MYGIq0tRDu7ty4pUuJOqrhSKr6USmnKEFy/001BadAQ2VHVphWbZckGAt3O9cqVVxJNJPDabJYA7yGkvaOHswgPJbYnlOEZZ5zR0jWU4S233NIARijDWbNmdWu22Lx5s728vFy12+188cUXzrVr17pqamryh80aRCwRthhwpJTEwh2m9dpiCqwptGmBbW8jmYh3O9ah67gSKu6USklKZUTKSHvsTvxFRQTKKvBVVeGorMJRWYHdXDtGjLCG71ggdR09GkPv7ESPdqJHo2Y6ioxG0To70UMhwBLh/mAgQxn+4x//8P/qV78aabfbpaIo8ve///26iooKrWu5wcYSYYs+RVNVOtvbtlqvLS1E2loItzQTaW4i3NxEZ6gNTevyXZDg0nXciSTulEpVSsOdFliHC39xCYHycjyVI7BXVeKoqMReWYGjshJ7RWW/TaowEJN1WORHSomMxQyhzBLLTLozT36+cllp2ct4b6NtUyCQIASOqsqB+qh7DAMZyvDiiy9uv/jii/OedyhhibDFdpOMx7Zari2GyBoC20KkxRDYaLij23GKBLeq4U4k8aVUgikVlymyPpcbX3Ep/ooKXFUjDOu1ohJHlSGujopyFN/gzVqUjqKUXlvsHFJV0UIhtLY2tPZ21LY2I93Wbq7N/PateXokAj2EOOx2frsd/EXo/mI0XyG6twjNE0Qr8KM6/WgOD6rdg2pzkxJOVBykpJ2UbiOlClIpSCYlNrvC2f87lYIRRdZwsUHGCmVosceQ3TycK65bm4gjrS0k492tCIfEsFjjyZzmYXdKw+v24A+W4SuvwFFVaVitlea6wrBilSFuYQ6XKEp9idQ0tI6OreLZ1maIant7rqhmhLU908SbD+H1YisqRBQF0YorUUdMQ/UVo7r8hnAqLlTFRcoUTlW3kVQFqZQgmZSkkjrJmIau5xFsCSTMRYDTZcPpseP02HF57ATMtNNjR01o1L1XTyiiUGgJ8KBjhTK02K3RdY14OExnqJ1oezvRjnaiIWPpDG1NR9va6OxoR+/aPAy4JbgTKVzxBFWqhjupZpqIvT4//mAQT0XVVqs1x4qtQBkGwpVIGH4cra2t1NXVDduYwlokgrplC6ktW1CbmnoX1o6OHi1U4XJhKymB4iB6UQVq1d6ovhJUTxEpl5+UzUdSuEhKBwnVRiIJ8U6VeCSFmjIdW2Pmkn1egSGW7rRo2ggUbxXQtKim9znd2dvm4rIhlJ6d6zqaY9S9V0+kfcj57lgMYywR3o1Qk0lTTEOmmLZl0tkCGwu1Ewt3dJsqEczA6tKYbMKZSFCQTFGmariz+mC9/gD+YBnOqhE4KioM67Vqq/Vqr6jYY6ZPnDx5MsuWLUNKyZw5c3j33XcHu0o7jFRV1KYmUlu2kNq8hdSWzYbgbjZEN7VlC3pH924E4XRiKy6G4jK04nK0yZNQvSWonkJSrgBJm4+U4iIpnYagJiAe7SKocXPJwuUVuH0Ct9+Gv9hBcJQDt99YPH4nbp+Rdvm2CqnD1f/e6b4i45nutETYYgCxRHgQkVKSjMWIhtpM8QzlWqmhrRZsZ3s7yVh+b027ELgkOFMazkSC0kQSV8oIsO4yF6cu8QQCeEqDOIJl2INB7MFS7MEgttIgjopy7GmBdToH+E4MXR577DH23Xdfkskkq1d38wUZEmjhcI/imtqyGbWhEbq0dCiFReijxqOOmIo69ViSgTISriLiwktMdRCPS+JRbTsEVdkqqCUOgtX5BdXtdxhpnx3FNjQnNLHZFTwBh2UJWwwoOy3CQogaYHFW1njgJmChmT8WWAt8V0rZJozX2P8DTgSiwMVSyg939vpDlXQzcG6zb4hoqI1oRygjqGlx1cyJxrviVBTcUuBMqXjiCQpi8a2Cml6nNDx+P+5gEFswiL00aIhrWTAjrpl0UZE1ZeJOUFNTg91uJ5lMEg6HB/z6MpVCbWzcKqqm2Ka2bEE1xVaP5I6VVl0+9JETUMvHktrvYJL+IAlXEQlTYKMxiHakjD5UCbSaiwBvAHxFCr4S524tqDuLr8hFZ5slwhYDx06LsJSyDtgfQAhhAzYBfweuB16XUt4uhLje3L4OOAHYy1wOBf5orocsUkpSiTixjg7ikTCxjhCxcIexRMLEOox0PNJBtKODaKidWEcHUnafFU0gcNtspsWqUhhPUNYZw6mqW4XVtF7dbg/OYBBbsBR7ZdpqNSxXWzCIPVhmiGtxMcKyWvsdm/nyEo1GWbJkCbNnz+6T80op0Ts6em0mVhsbwZxSUxcKKUeAVLAatXw0qVFHk5wcJOEsIq54iat2OqOQSmQ9f2b/qsNtw1/kwlvoYuRoF76i9OLEV+Qy9hU4h52o7ij+YjfhVssTvr8YyFCGf//73wtuvPHGkalUSjgcDnnbbbdtPPXUUzNv0jfccENldXV1MhwO2x544IEyRVHw+Xzafffdt+7AAw8csIegr5qjvwWsklKuE0KcBhxt5j8CvIkhwqcBC6XRUVkrhCgSQlRJKbf0UR16RUqJmkhsFdGOkCGk6e2wkY6HQ4a4mvt6slQBXHYHTqHg1CXOlEpZPI6jM4ozmcppDnaqGk67A4cpprZKU1SzLFV7xpotHfIew3saf/nLXzjxxBORUnLuuefS1tbWa3kpJXpnFK2tFa21FbWlFa2t1eiX3ZzVTLx5izFJBKDZ3Ia16i1FLR9DqvgAkvuWkXAVEsdLTLUTj3fxh5IgOgU+uxNfgYuSIhfVhYaw+ouyhdaF0231PG0PviIX9at69uS22D1IpVKUl5enXnzxxa/Hjh2b+uCDD9wnnXTSpMbGxv+ky7z++usFf//731e73W792muvbQJ4/PHHC//7v/+7+p133lk5UHXtq2/mOcCTZroiS1jrgQozPRLInq90o5mXI8JCiMuBywFGjx7dJ5Vbtfw9nv/d7b0IqsDlduF2OHEKGy4p8ac0HKrAHtWwh8M4ojEcqo5TM0TVoekImw17qdmvWlZlimnZ1ibhUtNyLStD8fmsaQ93U44//niqS0shFGKcy0X49ddRW1vRWtsMkW1rRWsx12aenkyh2r0kHT5Uh4+Uw0fK4UctKEMrmkSyehaJCYVGH2zKjqp1fzZcdju+gCGi5aa16it05oirJ+BE6cXj12LH8Bc5iXemUFMadofVfTMQ9Fcow+effz4zvvjAAw+MJxIJJRaLCY/HI1tbW5VUKqWMGDFCza5LJBKxDfTv9C6LsBDCCZwK/LTrPimlFEJs32j7rcfcB9wHcNBBB+3QsT1RVDGCyeUjsXdGsUej2MMR7G0hbO2hrYKaVd5WWIitzBTUURNy+1mzmoNtRUVW1JwhSG1tLeeddx4ej4eWlhacTieLFy9mxowZwNZm4IyFmhbU7HRrC6opqMn2Dp6tGk9qtI+U3ceHv7iflMNPyuEj7vCjBypRPTWEfQoxrxM5zo/N6TfG1eRBsQt8hYaolptrX5ELX7ETX+FWgXU4LREYaHxFxrC6zvYkhWXDt0XqlT/+vrp5w7o+ncc1WD0mevwP/3vIhDLMvsYjjzxSPHXq1KjH45EAzz//fMGRRx6ZGRJw2223ld17770VqVRKefXVV+t29V7sCH1hCZ8AfCilbDC3G9LNzEKIKqDRzN8EVGcdN8rM63dKR1Uz6esN6NGoIajV47BND261XLs0CVvewbsXUteN2ZhajebfP188h4NbWim22yix2ShJqXz53bNpsNkocnrwugqQTn/GOk3Z05aqzxjP6qlBdfpJVfpIVrlQZc9fk2QqTiTRQWc4RGe8g85Eh7GOd/Dr22/u4sjkwON34HBbwSCGKv7MMKX4sBbhoUR/hTJMs2zZMvdNN900csmSJZkm5iVLlhRecsklzentn/70p00//elPm/70pz+V/OIXv6h6+umn1/bzx87QFyJ8LlubogGeAy4CbjfXz2blzxVCLMJwyAoNVH8wwPjnnt12IYshhR6NojY1ZS3NOduJplY6O1IkYhopm4ekw4/q8HHm2JNJ7ZW2VL3EbT5iTh8bHH422np+wXJ6bBmx9PmduP32zHZ900Z++etfEI614/U7efbFpznm+G+wctVXPZ7vhW8t6I/bYtGP+IoNER7uw5R2xmLtL/orlCHAqlWrHGeeeebEBx98cM3UqVMz/9SPPvrId/TRR6/revxll13Wes011/RNP+h2sksiLITwAccCP8jKvh34ixDiEmAd8F0z/yWM4UlfYwxRmrMr17bYPZFSGlMZNjahNjfliKrW3Iza2ESqqYlYW5SY7jKclZxFJFyFRtpdTNK7HwlHAakRbhjR/RpCgMtjw+134gs4EckIH/z7n7S0N6KSIJoI09i6JWOxdiY60EWKWDxKYWEhgUAgp/naYBznXPke0WgUr9fL6AkjeP7F55gyZQq63t0b/pe//GX/3USLfiNtCUesYUoDRn+FMmxubradeOKJe/3yl7/ceNxxx3Wm85ctW+aeOHFiPH2+Tz/91LXPPvskABYvXlw4ZsyYAf3n75IISyk7gdIueS0Y3tJdy0rgyl25nsXQRaZSqC0tPVqtalMTanMzidYQCcVHwmmKqssQ2KS3lKR3OglvIfFxXuS43L52IcDjt+Mr9lBWnOX5W+jCE9ja3Ov2O3B57N2mJzyfo3K26+rquOCCC1j74Rc5EZ3a2tpoa2tj5syZ+Hw+nnrqqcyQpLTYRqNR7HY7paWlFBYW5nhLL1q0iLPPPrtP763FwJGencuaNat/GMhQhnfeeWf5+vXrXbfddtuI2267bQTA66+//tVzzz1XeNxxx2Vc4OfPn1/+zjvvFNjtdllYWKg+/PDDAxowQuSb2nCocNBBB8lly5YNdjX2eLRIJ2r9FlJb6o2hNfX1pLbUozY2bhXYtnZSDn9GVNMWbLKgnKS31JiNSfGRkt0nxne4FHxF7sx41bTA+otceM3hNv01hrWuro45c+bw8ccfE+shzJ2iKHmt3Z4oLy/H7XbnsaYtdgeemFdLyQgfsy/fZ7CrstMIIZZLKQ/Kzvvkk0/W7rfffs09HTMUefvtt73/8z//U718+fI+c5aaNWvWXk8++eTaMWPG9Dz+tB/45JNPgvvtt9/YrvnW4ME9HD2Z3CqqGaHdQqp+C+qWelL19WgdYVIOP3F3MXFXCXFPKcmiEST940iMKCI+ykdCutBlrvUpBHgKDBENdhHX7LTTM3iPYU1NDe+++y7Nzc3ceeedvPHGG6xevZq2trbM3Ns7IsAAjY2GL+Jhhx1GMBhEURTGjRvHggULhm0AiOGEr8hlNUcPAforlOG77747YGOAtwfLEh7GSE1DbW7ORMdJbanfKq5bthgC29yMpjhIuIozIpssGkGisIqEp5SYLUBMd6HLXCvU7rJlxHSgrdeBoLm5mZ/85Cf89a9/RdO0bQqx3W5n//33Z9OmTXR0dNDZ2dmtjMfjYf/999+txbiuro7LL7+cjo4O2traOPnkk5k3bx7BYHCwq9ZnvPbwF2yqa+Oi2w4b7KrsNMPFEh5OWJbwMENPJo3m4Pp6UvUNqA0NpBrqURvMvIYG1KYmpKaRcgQyApsIVJAsGU2i5EDilYXEpJeE1uUxEOArdBEocVFV4iZQ7MZf4iZQ4jLXblxe+7AeZhMMBnn88cd5/PHHAbj//vu5/PLLeyyvqir19fWMHTuW+fPn89hjj/HMM8+QSqVQFIX29nZisRhLly7lqquu4sUXXxyoj9KnzJ07l7fffjuzfc899zBmzBiuueaaQaxV3+IvctEZSqLr0poIxaLfsUR4CKJFOlEb6g1hrW9AbTBFtb6BVKO5bguRdAZIOgtJOAtJOgtI+ktRC8aQLJxOMlhAXHhIaI5uzcR2l41AiZuCEhcjTJHNFlhfkQubffe0YPuLyy67DKBXId64cSMbN27kqquu4t133+Xuu+/O7KutreV73/selZWVzJ8/v9/r25c0Nzczb948nnnmGVpbW3P22Ww25swZXgMdfEUupC6JhZP4CveMkJ0Wg4clwgNIZnhOvdHXqjY0GtarackmGxpINIeIpWwknQUknAUkTYFN+ctI+saSLCskUeElmcfBCcATcOAtcOIvdFFe4DTSxXuWFbuj1NbWMmfOHA477DAefPDBbvtdLhcHHnjgdscSXrp0Kffffz+XXXYZixcv5pJLLuHBBx8csqEQ85EtvB0dHT1GkDr77LOHVVM05MYVtkTYor+x+oT7CKmqRv9rHus10dBAtLmTaChBQnhIugpNgTVF1ldq5Nl86HSfqtBmF3gLXHgLDVH1FeZLu/AUOLDtpn2wA01tbS1nn3028Xic5ubmHXa+2h6klHg8HuLxOG63u0fv66FC2lr3er2sX7++m/C6XC4KCwtRFIVRo0bxjW98g2uvvXbYiXDjug7+etsyTvivfRi/f9lgV2ensPqEhx5Wn/AuoCcSpriafa4NW/thEw1NdLZ0EokK4s4i4u4So+/VXUzSVUnSNZmkzwv+PBP0e2x4C134C42J+b0FTryFLlNct6Yty3XXSQ9FWrNmDUII2traiMf7N1rZiBEjSCaTu3ye5uZmFixYwJw5c/IKXnZT9/Y6fWULbmtrK5qm0draiqrmzGePoiiUl5fvUd7d2ZawhUV/s0eLsJQSPRIxHZkac/teTSeneGMr0bhiiKspsHF3CXFvJQnPNOLFPijJtT49XgVfsYtgidcQ0kInvrTApi3YAhc2h2W1DgS1tbV84xvfyCu6Qgh2pDXovvvu67VfOJstW7bOypq2tNMWOLDd44jnzZvHPffcw7XXXovdbqegoACn00lpaSnNzc00NjYipWTNmjXst99+XHrppTkey9lNyykzklg+wQWjj3fy5Mm0trbicDj2yLHOXjMylTVMaeA4++yzx1x77bUN/R3H94UXXgi4XC792GOP7QQ444wzxp588smhOXPm9B6ftB/ZI0RYi0ToeP75XC/i+gZSDQ0kUkquuLoND+KEd29ilYWkKnP7hIRieE8GSj1Ulhp9rIFS07mp1I2/2IXdin4zaKStxn322YdLLrmExsbGvGKTZke7Y2677badqlcymcTtdqOqamaGrpkzZ1JRUUEwGCQWi/H444/nFbxnnnkmk1ZVNeMcVV9f361sIpHgnnvu4Z577skItqqqdHR0dCubLbiaplkTjJgIReAtclqW8ACyePHibvM49wf//Oc/A36/X0uL8FBgjxDheEeMj/60JDPJRMI3mfjYImJjvWgyVzAdLhuBUjfFJW6qzWE5gVI3gRIPgRIX3kKXNWxhCJK2MFtbW4lEItt1jNvtpqysjA0btn8u+zVr8s8bYLPZcqa/zEciYfyoK2b4S13XaWhooKHBCEB22GGH4ff7CYfDeL3evGON09cqKyvLWMKxWIwZM2bw7rvvEo1GM1Z3tmADBAIBPB5P5rNbgtsz/iLXsA7i0PrUV9Wp+s4+DWXoqPRFS86c1OuXqa6uzjl79uy99tlnn+hnn33mnTRpUuyvf/3r2m9961t7/eY3v9lw5JFHRs8777zRn3zyiS8ejyunnHJK2+9+97vNPZ1v5MiR+5xyyilt//znPwtcLpd88sknV0+bNi2RL0ZxNBpVFi5cWKYoivzLX/5S+vvf/349wFtvveX/wx/+UNHU1OS45ZZbNg60VbxHiLDq9PHl3hcBhvdwoMRNRak74y2csWYtz+HtIrt5U9d1SkpKCIVCVFdXD3i/YXoO6A8++KDXcn6/H6/Xi81mo7S0lJaWFuLxeF4BdjgcmWbb7aWoqIiWlpZtlisrK+O5556jvb2dc845B7fbTUFBAStXrkTX9YzF2pMABwIBPvjgg5x7nH4BEUJ0czArKSnB4/Fw+umnD7tJNfoTX5Gblk3b9zJnsWOsXbvW/ec//3ntcccd13nWWWeNveuuu3K83+bPn7+poqJCU1WVWbNm1bz33nueQw89tEevxsLCQvWrr7764u677y790Y9+VP3GG2983VOM4gsvvLDJ7/drN998cwPA/fffH2xoaHAsW7Zsxccff+z+9re/PdES4X4gUOLhvF/OsJqK+4Da2lpOOumkHAsr3fe5ceNGpk6dSnFxccbaS6VStLe3U1hYiMPhIBaLMXnyZB577LFdEuu6ujoOP/xwmpu3z9kzEolgs9m46667uP3223P6a7P55S9/yU033ZT3c/ZGbwJst9szTeLNzc20t7dTVFREYWEh8Xic9eu7zT2fl1GjRvHaa6+xZs2aTFN2KBSiqakpp8nd7XYzffr0PcaRqj/wF7lY93kLUsph+VK+LYu1P6msrEymoxpdcMEFLX/4wx/Ks/c/8sgjJQ8//HBQVVXR1NTk+OSTT9y9ifBFF13UCkYYwhtvvLEaeo5RnI9TTz213WazceCBB8ZbWlryj/3sR/YIEVYUQVFFn7a87LFccMEFGWFyOBwEg0FKSkrYsGEDHR0daJqWVxjb29sz6WXLlnHwwQfj9XqJx+MsWrQoE6kItlp2mqblWHC1tbWcdtppNDU17XBfLkAoFOrRqWrp0qW0t7dz/vnns27dOu644w5aWlo45JBDtmllbwubzZYRSSklJ5xwQt6gEGlrPZlM5tyvNBs3bmTy5MmZ7ezoTQCVlZV7lBdzf+IrcqEmNJIxFZd3wH+XhzVdX2qyt1esWOG8++67K5YvX/5lWVmZdsYZZ4yNx+O9erCmX/jNc0noOUZxPtxud+bHZDCG7FruuRY7xPHHH59Jz5o1i82bN/PZZ5+xatUqLrnkEgoKCggGg5SXl1NenvOCi8PhyHzhwuEwDQ0NhEIhTjrpJCoqKhgxYgTTpk3j8MMPZ/369WzatIl77rmHiRMnMnHiRGbOnJnxBO5rzjrrLE466SRaWlp46KGH+O///m9qa2vZsmULBQUFlJSU7PS5033B2ei6jhCC8vJyRo4cyZVXXsmrr77KhAkT8Hg8FBUV7dA1bDYbJ510Es899xw1NTXU1dUxa9Ysxo4dy9y5c7e7xcDCwF9sxhUexv3Cg8WWLVucr732mg/g8ccfL5k1a1am3b+trc3m8Xj0kpISbcOGDfY333yzcFvnW7hwYQnAgw8+WDx9+vRO6DlGcSAQ0MLh8JBqDt0lS1gI8T/ApYAEPgXmAFXAIow4w8uBC6SUSSGEC1gIHAi0AGdLKdfuyvUtBp558+bh9Xr56KOPcqZlDAaDPPDAAzzwwAM55ZcsWcJ5553H+PHjeeyxxwD4wQ9+QHt7O/X19TQ0NKDreibyULqZ2G63Y7PZSCQShEIhQqEQ+cjnEOXxeBgzZgx1dXXbLdgbN27M2X7iiSdYtGjRNp2tdoXx48cze/ZsHn/88YxH886iaRoPPvggTzzxBOPHj2fVqlWZIVn33HMPW7Zsoaqqiueff55AIEAkEhmWwRf6iuyxwqUj/INcm+HF2LFj4//v//2/8ssvv9y71157xa+++uqml19+uQhg5syZsWnTpkUnTJgwraqqKnnggQdus2O+ra3NNmnSpClOp1MuWrRoNUBPMYrPOOOM9jPPPHPCyy+/XJR2zBpsdnrGLCHESOBfwBQpZUwI8RfgJeBE4Gkp5SIhxJ+AT6SUfxRCXAHsK6X8LyHEOcC3pZS9Rj/fnWbMstg5smeustlslJSUEI1GeeKJJyguLmbOnDksW7Ysx1Fq9OjR2+XZu2TJEk488cRBaWLKx957743b7eajjz7arvIVFRXouk5TU1Mmr6qqCk3TCIVCeS3sHSXdBO5wODKtHK+99hqBQCAzdClNbyEZ6+rqmDt3LtOnTx8Ws2h1NMd49MalfOOCyUw5rMeWzCHLUJ0xq66uznnyySfvtXLlys/74nwjR47cZ9myZV9WVVX1PA5xiNBfM2bZAY8QIgV4gS3AN4HvmfsfAeYBfwROM9MATwF3CyGEHCq/kBaDwowZM1i3ruchgu+++y4lJSWZ/s9LLrmkm7Wdj7q6Om6++WaKioq69Z0OBg6Hg/nz53PFFVf0Ws7r9VJYWMh3vvMd5s2bx9dff82sWbOQUlJQUMDmzcZojbq6Ok455RRWrtyx0Khut5sJEyZkLOVIJJIZ0vXQQw9t8/j6+noOPvhg/H4/UkpKS0tpbW3NzED22muvUVZWtttHVUrPGW2NFbbob3ZahKWUm4QQvwHWAzHgHxjNz+1SyvRbyUZgpJkeCWwwj1WFECGMJuucNzMhxOXA5WBYPBYWTzzxBOeffz6nnXYat99+e69l6+rqOP/88/nwww/7ZT7onSWVSnHCCSf0uL+nccH7779/xpI/66yzMvk1NTXdvKqznb38fj+6rhONRjP7Dz74YB599NFMn/GcOXNYu3YtmqYRj8czw6PSQt3VEo7FYoTD4cwCuROGeL1errzyymERVcnmUHD7HVafcB9TU1OT3Bkr+Nhjj52wYcOGnJmTfv3rX2/ctGnTp31Xu8Fhp0VYCFGMYd2OA9qBvwKzeztme5BS3gfcB0Zz9K6ez2L3Z/bs2T06Fi1evJg5c+YwatQoWltbt2usLsCYMWNIJpM0Nzfv8Jjg/qC4uDhvftpLWlGUHOuyubk5I5Dp4BBdm4QBJk+enLknRx99dKYZuaamJicqVHNzM3feeWemrz+fd3W6zBtvvMGmTZtyLOHhOMWlv9hlWcJDhFdffXXVYNehv9iV5uhjgDVSyiYAIcTTwGFAkRDCblrDo4BNZvlNQDWwUQhhBwoxHLQsLHaaCy+8kGQyucPNsuvXr+ell15i3LhxTJ06tV8dsLaFEILOzk4qKiqA3L7X4uJiOjs70XWdG264gY8++gi3282qVatyhj3NnTuXV155hUcffTRHCP1+f0aEe+uLDgaD3Hnnnb3Wc3vKDCd8RZYIW/Q/uzJEaT0wQwjhFca4k28BXwBvAGeaZS4CnjXTz5nbmPv/afUHW+wq2xOlKN9kC+nxulOmTMHlyp0ffPz48UybNg2/358Rxv5ESkl7ezuNjY00NjZSX1/P0qVLmT59Oqeffnqm3HPPPceaNWv48ssvcz63ruvcc889fP31192agk8++WTA6NrJ9ma32Da+IpcVxMGi39lpEZZSvofhYPUhxvAkBaMZ+TrgKiHE1xh9vuko6Q8CpWb+VcD1u1BvCwvAiGpkt/feoNPbu17XflOA1atX43a7WbNmDSeffDJut7tP6pqP9Hjq7CX9UhCLxXKEs6dAFOnmdK/Xy4IFC3L2zZs3jzvvvJPly5dbE3jsIP4iF/FICjU1eK0kFsOfnR6iNBBYQ5Qstpf0UKeuzkrpIThpdmRoj9Pp7JN4wF0JBAKEw+FMAIau1NXVcdxxx23XdJaKolBUVERNTY01U1Yf88W/N/PGoys4/5aZFJZ5Brs6O8RQHaK0J9PTECVrxiyLYUF6qNPSpUtzZreKRCI88sgjXHTRRey7775cdtllOcfZbD1PnrOzAuxw9DzN4ZgxYzKWayyWfzrcmpoali9fzpVXXtnjedNe05qm0dLSwrvvvmsJcB+TnjXL6hfec/nDH/5Qunbt2swXb+TIkfts2bKlT6d7tkTYYlgxY8YM6urqcvpyTzrpJO666y5ee+21nObd8847D1VV+e1vf7vD15k5cybTpk3rJuI1NTV5va0XLVrEMcccw7p16zIzWfXmDBYMBrn77rt5+eWXM3nZzdEFBQU7XGeLXKSUpJIa0Y4koaYYzRsjbFkVYv0XLaz6qJHGtWZEK0uE91gee+yx4Pr16/t18vA9IoCDxZ5FMBjkrbfe4uijj6a+vj7veGGXy8Wrr77KtGnTWLVqx0Y/nHbaaey///4ANDQ0sGDBAhKJBCeffDI/+9nPuOWWW3jzzTczfc0vv/wyjz76KK+99lrOebZnaNTs2bMpLCwkFApl+rY9Hg/33XffDtV5d0fqhmCmEhqpuLnOWpJxtVtebtn8+9mO3jibY/jZKs8880x1Y2Njn0a1KS8vj55++um9Rmfq6OhQTj311PFbtmxx6rourr322s3l5eXq9ddfX61pGvvtt1904cKF6zwejxw5cuQ+p59+euvrr79eaLfb5Z/+9Kd1119//ch169a5fvSjHzVce+21TaFQSJk9e/bEUChkU1VV3HTTTZvPP//89nzX7imWcSAQ0K+++uqqJUuWFCUSCeWggw6KPP744+seeeSR4s8++8x74YUXjne73fqyZcu+BLjzzjvLX3nllUJVVcXixYtXT58+Pb4r980SYYthSWlpaa8OWYlEIuONnI+SkhLC4TB2uz2n2biyspL999+fd999l6amJk477TSmTJnCRx99xAsvvMALL7zQ7Vw9TdKxvf4YixYtyjmHy+Xi6KOPzvQpJxIJnnzyyZxIVIOJpumoOQKZLXxqXhHdlnCqye2feEUoYHfZsDlsKE4FYRdgV5B2gQzY0Yoc6ApIASlFkgCSUhJDEpeSmNTo1HQ6NZ2IrlGhJRjff7drj+Lpp58uqKysTL355ptfA7S0tNimTp069R//+Efdvvvum/j2t7899q677iq76aabGgFGjx6dXLFixReXXHJJ9fe///2x77333opYLKbss88+U6+99tomr9erv/jii1+XlJToW7ZssR966KGTv/e977VnR1bKJl8s45tvvrnhmmuuafzNb36zBeD0008ft2jRosI5c+a0/fGPfyz/zW9+s+HII4/MeG8Gg0H1iy+++PL2228vu/322ysWL17c85R/24ElwhbDirSDVktLS84MVOmITun5qVtaWhBCZMR2n3324ZVXXsk0+ba2tjJ58mSuuuqqnPCHsViMVCrF5MmT2WuvvQB6FPJt8ec//3m7yhUVFeXMhpWewCN7tqqTTjqJf//73/02WYam6nS2J4i0J4i0xYm0JehsSxBpM7Zj4VRGMDV1+wVTsQlDKB0Kwq6AXSBtAs0u0H0KasBGSkiSApKmSMaRxHSdTl0npuuEVY2wphFOacSkRANIj0pTzaUH7IrA47ThddrwOu14HDY8Lhtep5Ogw8ZndU18uL6NMw8ctQt3b+ixLYu1vzjggANiP/vZz6p/+MMfjjzttNNChYWF2qhRoxL77rtvAuDiiy9uueeee8qBRoDvfve77QD77LNPtLOzUykuLtaLi4t1p9OpNzc32wKBgP7f//3fo2pra/2KotDY2OjcuHGjffTo0Xn/6z3EMm54+eWXA/Pnz6+Mx+NKe3u7fcqUKTEgb9SY733ve20AhxxySPS5557LP8vODmCJsMWw4swzz2TTpk2ZbSEETz75JGef3WusEICcqRwdDgcLFizgqKOOyikTCoVYvHgxhx9+OGCIfvb1esNms1FaWspZZ53Va/Si7KAWiqLQ3t7erUnd6XSy1157sXLlSpLJJLquc9xxx7F69eodDp6wLYGNtCWIhpPdmm6FQ0F6bKRcgpRbkPIoJFBIIElInRiSqK4T1XQimk5E04jqOkkhSQEpAXr2EG4d6OILpwgMcTSF0mMuXqcDj8NOsdOG12Hbuj+TtuN12nA70gJrHuuw5ZzPYeu9qXmfea/gsg+/5ujBYt999018+OGHX/ztb38r/PnPfz7yyCOP7OitfDrWr6IoOJ3OzBOoKAqpVEr8+c9/LmlpabF/+umnX7pcLjly5Mh9YrFYj/+wfLGMo9Go+N///d8x77333hcTJ05MXXXVVSN6i2GcrpPdbpeqqnafhGAHsUTYYrcne8rF7Gkrs6Mt1dXVcdVVVzF//vwevYizp3Ksq6vjjDPOyOshvWrVqu3uRx41ahR//etfe7RQm5ubmTdvHosXL95mzF+fz4eiKEyePDlnDugpU6ag6zrhcJgFCxbkTG+5swKLQ0F3KyQcgrBT0losqFdTNGkaYUUSVgzrFMArbHiVrSLncdrxOpx4nTYCThsVjrQI2k0R3H7RdNqUvJOtDBQJVcdpiXCfsXbtWkd5ebl6xRVXtBYXF2v33ntv+aZNm5yfffaZa9q0aYmFCxeWHnHEEeHtPV8oFLIFg8GUy+WSzz//fGDz5s3O3sqnYxkfc8wxnelYxtFoVAGorKxUQ6GQ8vzzzxefcsopbQB+v18LhUL9Gn/YEmGL3Z4FCxZw1113dcv/xz/+kRHc73//+7z77ru89NJLgPEm7Xa78fv9lJWV5TRP19fXb/cc1Nti48aNHH744fzXf/1XXuv3rLPO4s0338x7rM/nIxAIMGrUKL7xjW90CxGoqTpVpaN55N6/8Mc/PMBhhxzFfuXH8fKfPt2GwAo0l42YA8J2SXMhNKRStKHnCKwioMzvorLQQ2WBl6mFHioK3FQWuqgs8FBZ6KaywI3HOaRipPcZUkqSqo7LPjw/32CwfPlyz09/+tNRiqJgt9vlvffeu66trc121llnTUg7Zl199dVN2z6TwaWXXtp6wgknTJw0adKUfffdNzpu3LhenaTyxTIOBAL6eeed17T33ntPLSsrU/fbb79MP9aFF17Y/KMf/WjMNddck3HM6musyTosdnuam5s588wzeeutt3Ly09GAWlpacvpPBxuHw9GrZ7QQgpNOPJm7f/cnHMK7YxasXZByK8RsEBI6zZpOg5YiLGSOwLodCpUFbioK3FQVuqkwBbWqMJ3nIeh3Yt9Gc+1wJqFq1Ny4hGuOr+HKb0wc7OrsENZkHd3p61jGO0p/xRO2sBh0gsEgTz31FPPmzeOee+7J5MfjcT7/fPu/b6Wlpdhstp12tNpedE1S4q+gyF9Gsa+MIn8ZRb4yiv1llPjLKQlU4HMX8sJvV+QcJ+2ClEshaoN2dJq8Gi361ubhtMAWeR1UFripLPRRWeBmmimwFYWGyFYWuCn0OAa1mXd3IGE6mFl9whb9iSXCFsOC9OQWJ598cs5wnqlTp2aamseOHZuZ2rGuro4LLriADz74IFM2Eols97ChnnDa3RT5ghT6gsbaG6TIV7pVaH1lBLzFKCL3hz2upejQE4SFxtd2hU5nkrBN5AisqkB5wBTTAjdjC93MMEW1MmvtdljNp31B0hLh3ZL6+nrb0Ucf3c3x480336wbLCu4NywRthgWpB2cnnnmmUyeoih89tlnecvX1NTw/vvvU1tbywknnEB7e3veOaXHjRvH9OnTeebvzxDwlFDkK6W6ajyK5jSE1huk0FdqpkvxuPzdzhHXU3ToScJCZ63dRsSpEVbUHIGNq3G0cAtauAU10oIWbjbS4RYqC1zcfdevOf6omdgUy3odKLZawtZLze5EZWWltmLFii8Gux7biyXCFsOC6667joceeign78QTT2Tu3Lm88MILmbi6XS3iGTNmsOLLOn54yY/58pOvtwqqacUW+kop9pVx9KX/haLk/hhrUieiJQijErLBJruNTkeKiCKJmH2wEUWSiHfgt2nsXzOWMWUFTClw07z+a/70u9uxJSMQbUNR45SWllJXV9ctWtIa4LzvnMTKlSt3ePiRxc6TMKMnWd7RFv2JJcIWuz1LlizpFsLP6/Xy/vvvZ2aw8jj9lBWMIFg4gkB8BL/+4UNUFI+i2FdBwFPCt6ov51vVW4+PaUnCesK0XhU6nSqdNqP/NSIMce2UGmq0DT3SysiAj2njR7H0+cV01K8n0d5gWLaRFqSapKSkhB+/+CIzZuxrXmESv/r+id0+S0/RoNrb25k3b54VE3gAsfqELQYCS4QtdmsWL17MOeecg0BQ5CszhLZgBMGCqsy6rHAkXlcg57iIFqdNJllvgw5ninaHoCNLYFNagkKHpGXDKhKhxpzmYS3dXNzZDlKnoqKC//fMM8ZY4B+dmNM03hwTJFRjBq4jjjiCd955p9dZrdLRoJYsWcKFF17I9ddfz/XXX08qleKVV17p57tpkU2mT3gYzh1tMXSwRNhit0FNaYRb4oSaYoSaYnQ0xXj70TXc+N2HKA1U4bBvHaevS50OUoQUnVUuBy2kaFd02m2SdkWSTETQw40kGreQatuCGmpA7Wjk8OlTefr3d5CMtHP88cezOcsidTgcSCm7NRc3NDTwve99j9WrVwNbncTuvvtu6urqmDFjBu3t7aiqyplnnsnGjRu3+Vlnz56d8dKeNWsWc+bM6WbtW/QvVp+wxUCwSyIshPgJcBnGTK33Syl/L4QoARYDY4G1wHellG3CGA/xf8CJQBS4WEr54a5c32L4Ee9M0dEcyxHadLozlMgZF6spUDZqP1oVyXqHoF1J0q4YIqu7FUaW+hhV7GFUsZeDS7xUF3uoLvHilTF+du3/8uSTT3abDvK11cvZ75WnAcNbGsBut3PwwQdn+pFra2uZOXNmznGVlZV5P09NTQ1/+tOfOOeccwBj2ssdZcaMGXz5Zb/ME2DRCwnV6hMezlx//fWVt99+ez0M7hjinRZhIcQ0DAE+BGPG1yVCiBeAy4HXpZS3CyGuB64HrgNOAPYyl0OBP5priz0ITdWJtCUIt8YzYtvRFKO9KUqoMUYqnhtjN2GHkCJpkhrtLpkR2agDikvclLhcrPzkPcb4/Xzv1OOYMqaC6hIvxd7842Bra2s56FvfyoQZzEdafMEQ4K5NyPfff39OeY/H06uVeuONN2bSEyfuXpM+7MlYQ5SGN3/4wx+q0iI8mOyKJbw38J6UMgoghHgL+A5wGnC0WeYR4E0MET4NWCiNgZi1QogiIUSVlHLLLtTBYgghpSTRqRJujRNujRNpixNuTRAxt0MtMeIduTNF6UCnHVrQaFMk7W5Ju6LTYZN4it1UlhrWa02xl+oSw6qtLvFQEXCjKMLof/3qaZ554hmWP3ZbToQkr9fLunXrMs3HTqcz71zQixYtYsyYMRx++OFoWu5LwKhRo/jOd76TyVcUpdvsW//85z97nI8a4Pjjj+frr78G4Nhjj93h+2oxOAzn5ugvvryuujPyVZ/GE/b5J0Wn7H1Hr9GZfv7zn1e4XC554403Nl5yySXVn3/+uae2tvar5557LvDAAw8EX3vttaILLrig6fXXXy8sLy9P/frXv9543XXXVW/evNl5xx13rD/vvPPyNiX94Q9/KH322WeLwuGwvaGhwXHmmWe2/Pa3v90CcMwxx0zYsmWLM5FIKP/1X//VcPXVVzdfccUVIxOJhDJ58uQpkyZNit11112bNE3jnHPOGbNs2TJ/RUVF8pVXXvna7/f3+5SSuyLCnwG/FkKUAjGMZuZlQEWWsNYDFWZ6JJD9D9po5uWIsBDicgxrmtGjR+9C9Sz6Gi2lE2nPFdZIa5xwm7Hd0RpH6xL3VReGyLah0y50wm5Jhzl8RwQcFAfdjCr1UV3s4YASL9WmyFYVero1A9bW1nLW0UZ0ITCiEgFs2bL1EcpOd6WrANfU1PDss89SU1PDmDFjugkwwNq1a7d5X3784x9nAirkI3vO6Llz527zfBZDA6s5uu85+uijI7/5zW8qgMaPP/7Ym0wmlUQiId566y3/EUccEX7++edLvvWtb3X8+c9/3njsscdOuPHGG0e+8847X3344YfuOXPmjOtJhAH+85//+D799NPP/X6/Pn369CmnnXZa6Mgjj4w+/vjjaysqKrRIJCKmT58+5fzzz2+79957Nz388MPl6fHEdXV1zvXr17sfe+yx1bNmzVp34oknjl+4cGHxFVdc0drf92SnRVhK+aUQ4g7gH0An8DGgdSkjhRA79CYhpbwPuA+MuaN3tn4WO4aUknhnikhrYqsl22oKbpuxHe3oPldxyiHotEGL1GgTOh1unQ5F0qFIdI+NslIP1aWGuE4pMQS2utjLqGLvNif+T4cWXLNmDUII2traMgLcFZfLRUlJyTYt4VQqRVlZGc8++2xOE3O6edrr9fLQQw/xgx/8ALfbTTAYpLW1tVdL+IMPPmCfffbhueeeY/bs2d3qFgwGmTdvXq+f1WLoMZybo7dlsfYXhx9+ePSiiy7ytba2Ki6XS+67776Rd955x7t06dLA//t//2+9w+GQZ555ZgfA1KlTYy6XS3e5XPKQQw6Jbdq0qdcISYcffnhHZWWlBnDSSSe1vfnmm/4jjzwyescdd1S8+OKLRQD19fWOzz//3F1ZWdnZ9fiRI0cmZs2aFQOYPn16dO3ata4+vwF52CXHLCnlg8CDAEKIWzGs24Z0M7MQogozODOwCcgaickoM89igNBSOqHmGKHGKO2NxrqjOZaxbNVUrhUrFUi5FMI2SYuu0+hSM1ZshyJJuQRVWQ5Pe2c3GRd7KfQ6eqxLbW0tZ511Fm1tbXg8HhwOR0ZA085SoVCo2yxWbrebgoICwLCEKyoqKCgo4L777uu1SXhbpIU6FotRWFhIe3t7j2V9Ph/RaBQhBC6Xi3g8TiqV4oQTTkBRFP70pz9x2WWX7XRdLIYG1jjhvsflcsnq6urEvffeGzzkkEMi++23X+y1114LrFu3zjV9+vS43W6XimLcb0VRcLlcEozvuqZpvU4Xly9W8AsvvBB46623AsuWLVsRCAT0Qw45pKaneMPZ8YptNpvsLS5xX7Kr3tHlUspGIcRojP7gGcA44CLgdnP9rFn8OWCuEGIRhkNWyOoP7ns0TSfcHKe90XB0MtaG6EZa4+RMjexUSLiN8bHNHp0t9iQdQmYs2ZRNMKLYYwhrkZfDSgyxTffLlvldOxUEoLm5mVNPPZWmJiNiWWen8VLaU1NyIBDA7/fnzHTV1zz55JOccMIJSCk55ZRT+Oyzz7Z5HY/Hw7p163Jm69J1ncsvv5zq6uq8VrHF7kPCfCm1mqP7lpkzZ0buueeeij/+8Y9rDzzwwNgNN9wwatq0adG0+O4s//rXvwoaGhpsPp9Pf+mll4oeeOCBtevXr3cWFhZqgUBA/+ijj9yffPKJL13ebrfLRCIh0kI/WOzqOOG/mX3CKeBKKWW7EOJ24C9CiEuAdcB3zbIvYfQbf40xRGnOLl57j0XXdDpa4lkiGyPUZAhtuCWO1LOeKYcg6bHRbpNsCUg2qinaFJ02RRJXoDzgYnSJl+oSL4cVexiV1S9bWeDul1B2CxYsoKmpicLCQlRV7dESdjgcnH766Xnj8PY1s2fPZvLkyaxYsQJVVZk7dy6vvvpq3rIul4toNIrL5SIYDPLggw8ydepU/vd//zdT5tRTT+XTTz/tlxcGi4EhqQ1fx6zB5Kijjgr/4Q9/qPzmN7/ZWVBQoLtcLnnYYYdFtn1k7+y7776dp5566oT6+nrnmWee2XLkkUdGY7FY7L777isbP3781PHjx8ezYwWbMYSnTJs2LXrXXXcNWqusFU94iKLrkkhrV4vWWIeb4+jZQmsXpLw2OuxQr6usTyZpVSRtik5MQLHPwbigj3FBP+OCXsYF/YwNehlb6sPnGvj5Wpqbm1mwYAFz5swZUnMhV1ZW0tDQAMA111zDnXfemdlXV1fHD37wA9rb2/nkk08A4yUh29mrrq6O888/n48//hhVVTnxxBN58cUXB/ZDWPQZ8/9Rx/9742tW33ribhf2cU+LJ/yHP/yhdNmyZb6FCxeu33bpwcGKJzwEkbok0p7oJrShxiih5hi6miu0mim0jYWS9ckUTUKnTdGJCvC77YwNehkXLOabpV7GlfkYW+pjXNBHkbdXf4YBJxgMcs011wx2NTKkBTYtwA6Hg2uvvTazv7a2lm9+85vEYrGc48rKynK2a2pq+OCDD6irq+Oqq65i/vz5/V95i34joeo4bcpuJ8AWuxeWCPczUpd0hhIZR6jsdUdTDE3d6gwlbALNZyPiEDQWCtYnUjSg0abodApwOhTGlfoYGyxgRherdmf7Zy1gzpw5LF26NLNdUVGRY6GfeeaZGQEOBAL4fD6cTieLFy/Oe76amhrLAh4GJFTdcsoaYvztb38r+NnPfjYqO6+6ujrx6quvrgJaBqlau4Qlwn2AlJJoR7KbyIZMyzbb61jYBErATtyl0BK0sVHVWRVP0KZIwkIiFKgu9DKhzMd+wXLGlfkYV+pjXJmPqgJjggqLviV7yFFxcTF//etfc/a3tbVl0h988IHVz7uHkFB1XA6rP3goccYZZ3ScccYZu02s4O3BEuHtREpJLJzqLrTp6RYTW4dIC5vAWeAk5VXoGOFii6ayKh5nXTJFWEgk4NQUxgd9TCgv4ttlfiaWG8u4oA+39cUfUJ544gkuuOACjj/++LxOYGm/CY/HYwnwHkRC1XD2g2OihUU2lghnkZ6woqsjVLqfNpk1r7FQwFPkgoCD1GgPTeisSyZZEYlSr2pIGYVOKHDbmVjuZ+/yck7OEttRxV5sllU7JJgxYwYrV67Mu6+uri4zVtlq7t+zSKq6FcbQot+xRNjklfs/Y8OXrSSiW8PUCQH+Ejf2QieOCQEiis4mNcXKWIIvQ1GSegzMSdSqCt1MKPNz/NRSJpT7mVjmZ0K5z+qr3c05//zzM0OmSkpKBrk2FgOJ0SdstUpZ9C+WCJu4ip0UTCok7IQGXWNNPMGXHVE2drSBOXuoTRGMKfUycYSfWftXMtG0bCeU+/EPwlAfi/5nxYoVmXTX6EkWwxvLMWv3ZGfCEp5xxhljTz755NCcOXPatl26b7GUw+SuzQ18vrkDAI/DxoRyHweNL+Ecs/l4QpmfMaU+a/acPYyioqJMaMNPP/3UmgVrDyKpatb3fYiSSqVwOHqeFnd3whJhk6uPr0ERgonlfssL2SLDX//614zT1pw51iRvexIJVbdauPqYuro65+zZs/c64IADOpcvX+7fd999O7///e8333zzzSNbWlrsDz/88OopU6YkzjvvvLHr1693eTwe/b777lt36KGHxq666qoRq1evdq1fv941cuTIxLHHHtvRU/jCnsISvvvuu54f/vCHY2KxmDJmzJjEE088sbasrCwn8NCzzz4buP7666s1TWO//faLLly4cJ3H45GLFy8uvP7660d5vV794IMPjqxbt8712muvfT1+/PhpS5cuXTFixAhV0zTGjRs3rba2dsWIESPU/HchF+s1z+QbNeUcNamMkUUeS4AtMqSdtu6+++4hNbuXRf+TSFl9wlu2bLH//Oc/r9iyZUufvY1s2LDBfd111zWsWrXqs1WrVrkff/zx0mXLlq349a9/vfHXv/511bXXXjtiv/32i3711Vdf3HLLLZsuuuiiceljV65c6X777bfrnn/++TVghC987rnnvv78888/f+6550refvttL8D69evdP/7xjxu//vrrzwsLC7WFCxcWA1x88cXjbr311o1fffXVF1OnTo1dd911I7LrFo1GxQ9+8INxixcvXvXVV199oaoqd911V1k0GhU/+clPxrz88ssrP//88y9bWlrsYASWOPPMM1seeOCBEoBnn322YO+9945trwCDJcIWFhYWeUlqVp/wvffeW/qrX/1q1L333lvaV+ccOXJk4pBDDonZbDYmTZoU++Y3v9mhKAoHHHBAdOPGja73338/cMkll7QAnHrqqeH29nZ7a2urAjB79ux2v9+fmUowHb7Q7/fLdPjC9DW6hiVsaWmxhcNh20knnRQBuOyyy1pqa2v92XX75JNP3KNGjUrsu+++CYCLL7645V//+lfg448/dldXVycmT56cBDjnnHMycYZ/+MMfNi9atKgU4KGHHgpefPHFOzQ1qNXWYmFhYZGHhKrt8SJ8xRVXtGSv+4LskIGKouB2u3PCFdrt9h4DGvh8vpx4q/nCF3a9Rn+HJZw4cWIqGAyqzz33XODjjz/2PfPMM6t35Pg9+wmzsLCw6IFEyhonXFVVpd5yyy0NVVVV2928uqsceuih4QULFpQCvPDCC4Hi4mK1pKREz1c2Hb4wEomIl156qeioo47qMRpTaWmpVlBQoC1ZssQP8OCDD5bOnDkzp/x+++0X37Rpk/Ozzz5zASxcuLD0iCOOCO+7777xDRs2uOrq6pwAixcvzhmv+P3vf7/p0ksvHXfKKae02u07Ztvu2U+YhYWFRQ8kNd2aMWsQuOOOOzZ/9NFH3kmTJk352c9+NvLhhx9e01PZdPjCqVOnTj3llFPajjzyyGhv516wYMGa6667btSkSZOm/Oc///Hcfvvtm7P3e71e+ac//WntWWedNWHSpElTFEXh6quvbvL7/XL+/PnrZs+evdfUqVP39vv9WiAQyDh0nXvuuaFoNGq7/PLLd7jFwAplaGFhsceh65K4qhFP6cRTmrnoJNJ5qsYPHl3OxbPGcsOJew92dXeYPSGU4UCHLwyFQkphYaGu6zoXXnjh6L322iv+i1/8ohHg7bff9v7P//xP9fLly+t6On6nQxkKIR4CTgYapZTTzLwSYDEwFlgLfFdK2SaMBvn/A04EosDFUsoPzWMuAm40T/srKeUj2/nZLSwshjG6LkmophhmCWMmL0cgu4hlaqtoxlMaiZROIpmEVAyZjCLVGKRiCDWGosawqXHsWhybHscjknhI4CGJWyRwkzK2RRI3CX6Ni5D3zm1/AIs9gt///vfBJ598MphKpcTUqVOjV111VTPADTfcUPnwww+XLViwoEeLvTe2aQkLIY4EIsDCLBG+E2iVUt4uhLgeKJZSXieEOBH4EYYIHwr8n5TyUFO0lwEHARJYDhwopex1dhLLErawGHxUTaczoRFOpOhMaEQSKcJxlUhCJWKuY0mti2VpCGMiSzyTyRSkDGEUpjCmRdEjErhI4iGJR5jCSAK3MPOyxDFbLD0igZckHpHEZR7jZMe7LyUCze5Bt7nR7R5sehJHrAn9ig9Qyif1w13tX/YES3h3Y6ctYSnl20KIrgeeBhxtph8B3gSuM/MXSkPZa4UQRUKIKrPsq1LKVgAhxKvAbODJnfgsFhYW20BKw7rMFsq0cHYmVMKZ/BSRePa2sSRiMfREByIRxqF24ieGX0TxEScgYua2sS4SMaqI4xVJfCKFV5gCyVZhdMkE9nziaKfXXyEpFHSbB+nwIO0ecLgRDi/CWYhwelEcHnB4weE2156stQfsni55WfscW/cJmxN7tqft8ofh+Z+guHx9/a8ZTHRd14WiKEO3D3KYouu6API6l+3sEKUKKeUWM10PVJjpkcCGrHIbzbye8rshhLgcuBxg9OjRO1k9C4vdE12XRFNaRiCzLc60UHaaQpkjnHGVSDyJmohAPIxIhnHr0YxQZoTTFM8AMUaIGAERp0CJUSDiRlkZxSNjOEgZFbKZSx6kUJDOALj8CGcA4XCDozBH3LqKXbd0N5HMFVVhc2IbjAAoSdO/x+EZ+Gv3H581NTVNKSsrC1lCPHDoui6ampoKgc/y7d/lccJSSimE6LN/qJTyPuA+MJqj++q8Fhb9iaZLwvEs0ewinNkWZ0ZE0025sTgyEYZEGCUVwSejGaH0i1iu9UmMChGlUIlTYAqojxg+GcUtYyiYX5leptXVbW5w+sEdQLgCCFcpuAJ5loIu2/6cPOHwDt8IYalOY+0cPpawqqqX1tfXP1BfXz8Na2TMQKIDn6mqemm+nTsrwg1CiCop5RazubnRzN8EVGeVG2XmbWJr83U6/82dvLaFRb+RVHVCsRShWJL2aMpYYinao0lCsS7b0STJaAci1oItEcprbaYt0aCIMY4YhUqcgGKIqo8YXhnFJY14xQjA2XPddIffED93AcIVgIx4FpgC2ZuAmnlOP4q9l4tYGCSjIGxgGz736sADD2wETh3seljksrMi/BxwEXC7uX42K3+uEGIRhmNWyBTqV4BbhRDFZrnjgJ/ufLUtLHpGSkk8pdOeJaShWFcRzRXaUDSJFmvHlWqnmAjFIkwxYWMtIpQQZpQIE7R1UqpEKCRMgR7e2s/p6qEuit1ssg0g3AGEqwBcI3sXTKc/b56iWMbLDqHroCVAjYPadZ3ssm2mtYSxXl9rWMHD1dK3GDJszxClJzGs2KAQYiPwCwzx/YsQ4hJgHfBds/hLGJ7RX2MMUZoDIKVsFULcAnxglrs57aRlYdETUkoiCdUUzLSAJrO2kxlRDeXsS+BSI5SIMCWEKRJGughjPUaJcIitk1LFENhCvQOfHsamaHnFVAob0lOC8JYgvKXgHQ/eEvCUgLfUWDxFXYTTSAu7a/g22faGlKB1FbptCF83scyT12vZLvl6CglIAboi0BVzndnOysvs25pm4jhGDfZ9tBj2bI939Lk97PpWnrISuLKH8zwEPLRDtbMYNui6pD2WorUzQXMkSWtnkpbOJK2RJO2xpCmiprBmRDWFrmsU0pkjomkrtdwWZR97hKASoUSJUCjDBPQOvPYOFHteR0SkYgdPWkxLwDvBFNG0oJZkbRtp4SpADDcrVDOGC5GMGutUFFIxSHYa6//f3r3FSHLddRz//uvaPfdbz+yu7WTX8hLHthITViaRJWQlEDvBigGBZIiEAUt5AQXxgmJZKPAGIpIJEAKRMSYIxQnmtgoC4zhIeYrjtWIZO07wOoZ47d2dnet2T890dXf9eTinbzOzHq89uz0z/f9IpTp1qmam+mzN/uacur2tuu7vVd0xAJsBqF/X9HUaQFN8ORSaUUweRuRhSB4G5FFIngZdIeq/t0AuIbkMkUuBnFFyaZLT3LEpLiUMqxbC5oqzFziYt6WZKyvVTpguVjKW1mouWP3y4lqtXV6uZuQKEQ2mKFOSVUqywoysciSqcEO8RilcY1oqTHCRsajM8NAqhUaZYPsr+yGIOz3RoSkYumFrmPYE6pQbDt7rPdM8B/+QiU7Ytebb1GVdQbilrtoJy8yVtb5GU5rt8GuGPhRDfDgKeehCMvfrm4GQx7ELxSikmYbkQwHNIPDbKk2BXAo0JSGX0XcUgN2CIO2aki3LUc+65BLbbv26dlkSgtCVwyBF/HIYXOIcgzG7yELYAJ1Q7QSqC9FWeWktY6FSa5dboQpbg/W6pML7kwpHojKzwSpTxVUmkmVGGksU6ivb74CmkHT3RI+/aZgyNO3One7FQG02YGMF1pehuuTm60u95da6jdV2UOb1NfLmOs18wwdbKyDpCsZOXU9AhiHNOPLzkLwQ+N4lNANoBkou0CRF5U0unX4TQVAkDIuEQYEgLBAGxfY8Dgu+vkgYFgiCQjvUgiBFgqRdvnRAbp6niMSDOZxvBoaF8AHVzJXl6tbwXPA91k5vtROq3Q9P6w7Wo4UK70orfCgqcygsUxpdYWJkhbHGMkP1RdJsZesOZIAOw0gJRuZg+CYYmYXh2a46Xx4u7c1AVXUh2Q7N5e0D1ZfzjUXq9RUajQr1WGhEQj0KqEdCI+6apwn1YkRjNKARKk1RcslRCYBhP71VQTv0wrDog9IFY9QdjD3B2dnGfV1nG/c9ts5dIO6xfx9jDgAL4X1CVVldr3fOp1ZqLPh5a+i3e93Kep3NTyRtBeux4hrXFyrcHFc4HJWZnbzIzOQyY/kKI/Ulitkica3riaIKbPhyPOzCdHQWht/ryiNzLkjbIeunvXKPparrbVaXenuh24SrVhdp1JZo1FeoN8s0QqUeCfU48KEqNKKAeizUk5hGIaI+Ii5Mgxx3g+7ktrsRhaNE8ThxPEEcTVCIx4jCEcJwaJsQbAVj0fUow+K224gkFo7G7GMWwn1UzRosVlxPdbsgXfQ910Xfk23km59dogxR42hxnXcVN7g1rXJNoczc8EVKrDKpK4w2lxnOFklqC0Qby60vg3U/geuFtkP0RheqI7Oduu6Q7XewNmrbD+v2lJdpri/SyBap11dpNC5SD5o9vdNGJC5Io4BGHFEvhDRGhHqQu/t1EWBsy48PJCGOxoniCeJ4gkI8zmjkgjWKxnrmvXWjiFzi0VPGmIFlIbyLskbecy61NW8F6eJa9zxjvd594YoyRpVJKXM4rnJdcYOfSNY5HK9RmlhjatLdmzqSX2SosUqSLRPVVpBm5kK16qeW7mCdubHTQx0ubQ3ZfgZrfR3WFmDtAlQX3bw9LdCsnifbmKeeLVFvlqlLzfVEu4Z4O73TgEYaUh+GvOdi5s2fT4jCEeJojDiZIoonKLaCtRWa8XgnbNtBOk4YFq5i4xhjDjoL4R00mjmvLqy5IG2Ha+8wcKs3e3HDPbghIGeczr2pM2GF69INbkyqzMVVZpIKE9NlxvUiQ82LFOurxNkKol2hXPMTuCf39NyXehyKk1tvqRme6X+wNus+TBfaQdoO1eoC+do82cZ56tkCWWOVTGrUYyGLA7IkIIvdUG+WhGQjAfl49zdP6b6RN5CEOBwljseJ4imGkknfQ+0NUDcfd9tFE0TRCCIH7JYjY8y+ZCG8g+rGBr/y0En3wAfKTEiZaSlzOFnn1rjKbFhhKlhjYugiI8Wy66XWLyJsGjpu4oZ/s2TTbTTv7l3uWeeX0zHo532qqm6Yt3IOymehfN6Xz6Hls9TXz5PVF8jqy9R1zQVqO0yDznIhpDHS/Y0TWs9pFCKSaIwkniJOZxlKZ0mSaZJkmjieJk4mfbCOE0cTxPEYgd1CYozZ5yyEdzD63MM8U/i9rSsU0CGIp2BoEoZKUHzPNg98mOx9GMReehRenrtzqT3B6spafoNs/SxZ7Ty1xjK1qEktcb3VWhJQSwOyNCKbEbT9cUI651GFOBwliaZI0hlG0zmSdJok9sGaTLXLSTJDGI7YBUbGmIFjIbwDuf4O+Pjntu+p7tXXnOW5GxIun4XK+U7Ils+ilXNk1dfJavPUGkvUYu0EaytkCxFZqTtch9rfOg7GSJMZ0uJhRgpHSJMSSVrqhGs85ecTdiGSMcbswEJ4J4ff56a9oNmAtXkfrK2eq5tr+Sz16hvUauepNVfIYm0H66XDtTM2HAejLlCLhxkuHCZNZknSWdJ0ljSZI01nSZIZguDgvFXGGGP6zUJ4L6hVXLBWzkP5HFTm2wGrlXNk62epZRfI8ovUEukZFm6H6+ylwnXEBWrxMMPpIRem6Rxp4gM2nbNwNcaYPrEQvlLa51vPuUCtzPcEbF4+R1Y7R62+QCa13h5rEpClAbWhiGwMf98qdN+32tNzTQ9t6rWWSJI50nTGLl4yxpg9zEL4cjVqvtc6v03Anqe5dpZsY+v51k64RtTGQ+rTraunu2+7EZJowvVcC4f8xUyzvtdaIvG9V+u5GmPMwWAhfClvfBde+Mf2kHCzeo5abZ5M16gl0nuVcBJSS2OyktA41ArX0fa3EkKSeIo0naNQOMR4OusCNSn5UC2RpnPE8RRBYP8kxhgzKHb8H19EHgHuBuZV9RZf90vA7wPvBW5T1VNd2z8A3I+7M/bTqvqEr78L+DzuPpaHVfUPd/ej7LLFVzj/yiO8cnSIbNy9hcY1V+fpEYEkJMkMaTrHcDrHlO+1Jmmpc2FTUiKOJ+3hEMYYY7Z4K92uR4E/B77cVfcC8AvAX3VvKCI3AfcCNwNHgG+IyI/51V8AfgY4AzwjIidV9XvvaO+vpJt/nvjIYcbOfq0dpq25u5hp1j8P2O5tNcYY8/bsGMKq+i0RObqp7iVguwC6B3hMVWvAqyJyGrjNrzutqj/0X/eY33bvhnAQMjV9O1PTt/d7T4wxxhxQuz1Geg3wWtfyGV93qXpjjDFmYO25E5Ui8ikROSUipy5cuNDv3THGGGOumN0O4deB67qWr/V1l6rfQlW/pKonVPVEqVTa5d0zxhhj9o7dDuGTwL0ikorIMeA48B3gGeC4iBwTkQR38dbJXf7ZxhhjzL7yVm5R+gpwBzAjImeAzwJLwJ8BJeDfROQ5Vb1TVV8Uka/hLrhqAL+p6l6SKyK/BTyBu0XpEVV98Up8IGOMMWa/EFXdeas+OXHihJ46dWrnDY0xxrSJyLOqeqLf+2F2tucuzDLGGGMGhYWwMcYY0yd7ejhaRC4A/3eVftwMsHCVftZeZ23hWDt0WFs4+6Ud3q2qdnvJPrCnQ/hqEpFTdg7FsbZwrB06rC0cawez22w42hhjjOkTC2FjjDGmTyyEO77U7x3YQ6wtHGuHDmsLx9rB7Co7J2yMMcb0ifWEjTHGmD6xEDbGGGP6ZKBCWERCEfmuiHzdLx8TkadF5LSIfNW/XAL/Aoqv+vqnReRoX3d8l4nIhIg8LiLfF5GXRORDIjIlIk+KyMt+Pum3FRH5U98Wz4vIB/q9/7tFRH5HRF4UkRdE5CsiUhiUY0JEHhGReRF5oavuso8BEbnPb/+yiNzXj8/yTl2iLf7Y/348LyL/LCITXese8G3xAxG5s6v+Ll93WkQ+c5U/htmnBiqEgd8GXupa/iPgIVW9AVgG7vf19wPLvv4hv91B8nngP1T1RuD9uDb5DPCUqh4HnvLLAB/DvQ3rOPAp4ItXf3d3n4hcA3waOKGqt+BeLHIvg3NMPArctanuso4BEZnCvdDlJ4HbgM+2gnufeZStbfEkcIuqvg/4H+ABABG5CXec3Oy/5i/8H/ch8AVcW90E/LLf1pg3NTAhLCLXAj8LPOyXBfgw8Ljf5G+Bn/Ple/wyfv1H/Pb7noiMAz8F/DWAqmaqukLvZ97cFl9W59vAhIgcvqo7feVEQFFEImAIOMuAHBOq+i3c29C6Xe4xcCfwpKouqeoyLrg2h9met11bqOp/qmrDL34b9w50cG3xmKrWVPVV4DTuD5DbgNOq+kNVzYDH/LbGvKmBCWHgT4DfBXK/PA2sdP2inQGu8eVrgNcA/PpVv/1BcAy4APyNH5p/WESGgTlVPeu3OQfM+XK7Lbzudtq3VPV14HPAj3Dhuwo8y2AeEy2XewwcyGNjG78B/LsvD3pbmF02ECEsIncD86r6bL/3ZQ+IgA8AX1TVHwfW6Aw7AqDuvrUDfe+aHza9B/dHyRFgmH3Yi7tSBuEYeCtE5EHcu9H/vt/7Yg6mgQhh4HbgEyLyv7hhog/jzotO+KFIcMNNr/vy68B1AH79OLB4NXf4CjoDnFHVp/3y47hQPt8aZvbzeb++3RZedzvtZz8NvKqqF1S1DvwT7jgZxGOi5XKPgYN6bAAgIr8G3A18UjsPVBjItjBXzkCEsKo+oKrXqupR3EUV31TVTwL/Bfyi3+w+4F99+aRfxq//Ztcv4b6mqueA10TkPb7qI8D36P3Mm9viV/0Vsh8EVruGLPezHwEfFJEhf2631Q4Dd0x0udxj4AngoyIy6UcWPurr9j0RuQt3+uoTqlrtWnUSuNdfLX8Md7Had4BngOP+6voE9//Myau932YfUtWBmoA7gK/78vW4X6DTwD8Aqa8v+OXTfv31/d7vXW6DW4FTwPPAvwCTuPObTwEvA98Apvy2grvq8xXgv3FXE/f9M+xSO/wB8H3gBeDvgHRQjgngK7hz4XXc6Mj9b+cYwJ0vPe2nX+/359rFtjiNO8f7nJ/+smv7B31b/AD4WFf9x3FXUr8CPNjvz2XT/pjssZXGGGNMnwzEcLQxxhizF1kIG2OMMX1iIWyMMcb0iYWwMcYY0ycWwsYYY0yfWAgbY4wxfWIhbIwxxvTJ/wNOrDJXNdFvWgAAAABJRU5ErkJggg==", "text/plain": [ "
" ] From 015cc3e204097f7b1a027af7b08461002ba9572b Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Thu, 20 Oct 2022 14:36:21 -0700 Subject: [PATCH 10/23] fixing docker build --- docker_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_build.sh b/docker_build.sh index 1a1a8ec..28bf8ad 100755 --- a/docker_build.sh +++ b/docker_build.sh @@ -1 +1 @@ -docker build -t fcollman/skelkeys:$1 . --build-arg GITHUB_TOKEN=$GITHUB_TOKEN \ No newline at end of file +docker buildx build --no-cache --platform linux/amd64 -t fcollman/skelkeys:$1 . --build-arg GITHUB_TOKEN=$GITHUB_TOKEN \ No newline at end of file From b9023a3996cd10bb2519922d849059ee890ed24f Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Thu, 20 Oct 2022 14:36:25 -0700 Subject: [PATCH 11/23] Merge branch 'cloudfiles' of github.com:AllenInstitute/skeleton_keys into cloudfiles Conflicts: Dockerfile skeleton_keys/cmds/depth_profiles_from_aligned_swcs.py skeleton_keys/hist_tasks.py skeleton_keys/io.py --- skeleton_keys/hist_tasks.py | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/skeleton_keys/hist_tasks.py b/skeleton_keys/hist_tasks.py index cf6cdaa..180bab9 100644 --- a/skeleton_keys/hist_tasks.py +++ b/skeleton_keys/hist_tasks.py @@ -1,6 +1,6 @@ from skeleton_keys.cmds.depth_profiles_from_aligned_swcs import ( - ProfilesFromAlignedSwcsParameters, - main as depth_profile_main + ProfilesFromAlignedSwcsParameters, + main as depth_profile_main, ) from skeleton_keys.cmds.process_morphology_features import ( @@ -14,13 +14,14 @@ @queueable def create_layer_histograms( - specimen_id_file, - swc_dir, - layer_depths_file, - output_hist_file, - output_soma_file, - bin_size=5.0, - below_wm=200.0,): + specimen_id_file, + swc_dir, + layer_depths_file, + output_hist_file, + output_soma_file, + bin_size=5.0, + below_wm=200.0, +): input_data = { "specimen_id_file": specimen_id_file, "swc_dir": swc_dir, @@ -37,6 +38,7 @@ def create_layer_histograms( ) depth_profile_main(module) + @queueable def extract_morphology_features( specimen_id_file, @@ -75,4 +77,4 @@ def extract_morphology_features( module = argschema.ArgSchemaParser( schema_type=ProcessMorphologyFeaturesParameters, input_data=input_data, args=[] ) - morph_feat_main(module.args) \ No newline at end of file + morph_feat_main(module.args) From b14d64828977af0dace1ad84c7ec17df29949d3b Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Thu, 20 Oct 2022 14:45:52 -0700 Subject: [PATCH 12/23] removing DS_Store From 818facfbcb511d9626f80d6e4919e423395bae42 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Thu, 20 Oct 2022 14:55:30 -0700 Subject: [PATCH 13/23] making docker build command exec From b11233597eb00a8168d14a9e8d22454ba21bae72 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Tue, 25 Oct 2022 16:38:14 -0700 Subject: [PATCH 14/23] remove github token Conflicts: docker_build.sh --- docker_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_build.sh b/docker_build.sh index 28bf8ad..86a6103 100755 --- a/docker_build.sh +++ b/docker_build.sh @@ -1 +1 @@ -docker buildx build --no-cache --platform linux/amd64 -t fcollman/skelkeys:$1 . --build-arg GITHUB_TOKEN=$GITHUB_TOKEN \ No newline at end of file +docker buildx build --no-cache --platform linux/amd64 -t fcollman/skelkeys:$1 . From dda4d9402b8b86f6c9119a3ce676a3742b7421f9 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Tue, 25 Oct 2022 16:42:50 -0700 Subject: [PATCH 15/23] removing rtree --- setup.cfg | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 0087fac..0c70426 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,7 +16,6 @@ install_requires = shapely geopandas ccf_streamlines - rtree rasterio cloud-files task-queue From 68879186efd2f9332c8691b34837a3d7b83a159c Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Tue, 25 Oct 2022 16:43:32 -0700 Subject: [PATCH 16/23] removing no-cache Conflicts: docker_build.sh --- docker_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_build.sh b/docker_build.sh index 86a6103..25c5f74 100755 --- a/docker_build.sh +++ b/docker_build.sh @@ -1 +1 @@ -docker buildx build --no-cache --platform linux/amd64 -t fcollman/skelkeys:$1 . +docker buildx build --platform linux/amd64 -t fcollman/skelkeys:$1 . From e1ff18efefd21d8adaa6ce5f6fd1bcbf22629a19 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Tue, 25 Oct 2022 16:45:17 -0700 Subject: [PATCH 17/23] adding streamlines optional install req --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 0c70426..dce1d21 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,7 +10,7 @@ install_requires = scipy pandas scikit-learn - neuron_morphology + neuron_morphology[streamlines] argschema allensdk shapely From c8dea703fd56fd96d933b6009bfb6b6e08a81144 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Wed, 26 Oct 2022 09:14:22 -0700 Subject: [PATCH 18/23] wip on image Conflicts: Dockerfile docker_build.sh --- Dockerfile | 35 +- conda-lock.yml | 8728 ++++++++++++++++++++++++++++++++++++++++++++++ environment.yml | 24 + requirements.txt | 11 + 4 files changed, 8786 insertions(+), 12 deletions(-) create mode 100644 conda-lock.yml create mode 100644 environment.yml create mode 100644 requirements.txt diff --git a/Dockerfile b/Dockerfile index f2bd921..1bba5ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,27 @@ -FROM continuumio/miniconda3:4.10.3 +FROM condaforge/mambaforge:4.9.2-5 as conda RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/* -RUN conda config --set channel_priority strict -RUN conda install -y -c conda-forge rtree==0.9.7 fenics==2019.1.0 python==3.9 gmsh==4.10.5 hdf5==1.10.6 h5py==2.10.0 Jinja2==2.11.3 -RUN pip install git+https://github.com/AllenInstitute/AllenSDK.git +COPY conda-lock.yml . +RUN mamba install -y -c conda-forge conda-lock conda-pack +RUN conda-lock install --name skeleton_keys conda-lock.yml +SHELL ["mamba", "run","-n","skeleton_keys","/bin/bash", "-c"] +RUN mamba run -n skeleton_keys python --version RUN pip install git+https://github.com/AllenInstitute/neuron_morphology@science_staging -WORKDIR /usr/local/src -RUN git clone https://github.com/AllenInstitute/ccf_streamlines.git &&\ - pip install ./ccf_streamlines &&\ - rm -rf /usr/local/src/ccf_streamlines -WORKDIR /usr/local/src/skeleton_keys -COPY setup.cfg /usr/local/src/skeleton_keys -RUN python3 -c "import configparser; c = configparser.ConfigParser(); c.read('setup.cfg'); print(c['options']['install_requires'])" | xargs pip install +RUN pip install git+https://github.com/AllenInstitute/ccf_streamlines.git +RUN conda-pack -n skeleton_keys -o /tmp/env.tar && \ + mkdir /venv && cd /venv && tar xf /tmp/env.tar && \ + rm /tmp/env.tar +COPY requirements.txt . +RUN mkdir skeleton_keys && source /venv/bin/activate && pip install -r requirements.txt +#RUN source /venv/bin/activate && python3 -c "import configparser; c = configparser.ConfigParser(); c.read('setup.cfg'); print(c['options']['install_requires'])" | xargs pip install + COPY . /usr/local/src/skeleton_keys -RUN python setup.py install +WORKDIR /usr/local/src/skeleton_keys +RUN source /venv/bin/activate && python setup.py install + +FROM debian:buster AS runtime +COPY --from=conda /venv /venv +SHELL ["/bin/bash", "-c"] +ENTRYPOINT source /venv/bin/activate && \ + python --version +WORKDIR /usr/local/src/skeleton_keys diff --git a/conda-lock.yml b/conda-lock.yml new file mode 100644 index 0000000..5f60cdb --- /dev/null +++ b/conda-lock.yml @@ -0,0 +1,8728 @@ +# This lock file was generated by conda-lock (https://github.com/conda-incubator/conda-lock). DO NOT EDIT! +# +# A "lock file" contains a concrete list of package versions (with checksums) to be installed. Unlike +# e.g. `conda env create`, the resulting environment will not change as new package versions become +# available, unless you explicitly update the lock file. +# +# Install this environment as "YOURENV" with: +# conda-lock install -n YOURENV --file conda-lock.yml +# To update a single package to the latest version compatible with the version constraints in the source: +# conda-lock lock --lockfile conda-lock.yml --update PACKAGE +# To re-solve the entire environment, e.g. after changing a version constraint in the source file: +# conda-lock -f ./environment.yml -f /Users/forrestc/ConnectomeStack/skeleton_keys/environment.yml --lockfile conda-lock.yml +metadata: + channels: + - url: conda-forge + used_env_vars: [] + content_hash: + linux-64: 8dc1b9886d29bb3ed8784a685fe00a6d259703bce5e1dfbd5d68e3ec63308901 + linux-aarch64: 539ee38010cc5b14686e1985700bdea1eb3a3ef8e639e13b995743a13172fc09 + osx-64: e97e254158231f42eab4c0729c3013ba086a963ce3c976cd9b0f87ec4837589d + osx-arm64: c0d2045b3f499d0e563860176c35a42fbe999f37675a974b75de6b4ed3c222c8 + platforms: + - linux-64 + - linux-aarch64 + - osx-64 + - osx-arm64 + sources: + - ./environment.yml + - /Users/forrestc/ConnectomeStack/skeleton_keys/environment.yml +package: + - category: main + dependencies: {} + hash: + md5: d7c89558ba9fa0495403155b64376d81 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + manager: conda + name: _libgcc_mutex + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + version: "0.1" + - category: main + dependencies: {} + hash: + md5: 41e4e87062433e283696cf384f952ef6 + sha256: 058355034667e77d15389700f6b2364cc74efce0af63a418eacc1ce252458942 + manager: conda + name: ca-certificates + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.9.24-ha878542_0.tar.bz2 + version: 2022.9.24 + - category: main + dependencies: {} + hash: + md5: a0a531df6bf6663607dc77722ae522d6 + sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f + manager: conda + name: fenics-ufcx + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 + version: 0.5.0 + - category: main + dependencies: {} + hash: + md5: 5dd5127afd710f91f6a75821bac0a4f0 + sha256: c9f33acc0f1095bd4e7a2b577dfa41fc3fef3713b3975e8467a0fbed188fe6f4 + manager: conda + name: kernel-headers_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_15.tar.bz2 + version: 2.6.32 + - category: main + dependencies: {} + hash: + md5: c2719e2faa7bd7076d3a4b52271e5622 + sha256: a41140cb2a85048eba89dcf6cc8267e673bf40ce2108534eda1531b9f939fe82 + manager: conda + name: ld_impl_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.39-hc81fddc_0.tar.bz2 + version: "2.39" + - category: main + dependencies: {} + hash: + md5: b41d6540a78ba2518655eebcb0e41e20 + sha256: a211a8a80846eb0096eeaf7012984b4c58f0c3c8229f6b4f8c58f36cd2d2a3c2 + manager: conda + name: libgcc-devel_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-10.4.0-hd38fd1e_19.tar.bz2 + version: 10.4.0 + - category: main + dependencies: {} + hash: + md5: 164b4b1acaedc47ee7e658ae6b308ca3 + sha256: 03ea784edd12037dc3a7a0078ff3f9c3383feabb34d5ba910bb2fd7a21a2d961 + manager: conda + name: libgfortran5 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.tar.bz2 + version: 12.2.0 + - category: main + dependencies: {} + hash: + md5: 9367571bf3218f968a47c010618a9715 + sha256: 0ddb167fe0d9d26fd0d5c9cf9afdae91de5c54da43806a21783092edd1d00540 + manager: conda + name: libstdcxx-devel_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-10.4.0-hd38fd1e_19.tar.bz2 + version: 10.4.0 + - category: main + dependencies: {} + hash: + md5: 1030b1f38c129f2634eae026f704fe60 + sha256: 0289e6a7b9a5249161a3967909e12dcfb4ab4475cdede984635d3fb65c606f08 + manager: conda + name: libstdcxx-ng + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2 + version: 12.2.0 + - category: main + dependencies: {} + hash: + md5: 1dcc49e16749ff79ba2194fa5d4ca5e7 + sha256: 54cf44ee2c122bce206f834a825af06e3b14fc4fd58c968ae9329715cc281d1e + manager: conda + name: mpi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-openmpi.tar.bz2 + version: "1.0" + - category: main + dependencies: {} + hash: + md5: 765196257c11b54dc52522d2fcafdd69 + sha256: 583922c671eb90e576a96432fe1439bc5eb46f88c4a0a4867fba39653c09c6de + manager: conda + name: mumps-include + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.2.1-ha770c72_11.tar.bz2 + version: 5.2.1 + - category: main + dependencies: {} + hash: + md5: b6bd89cf71494c41a181cac13cc5a8ea + sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 + manager: conda + name: tzdata + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 + version: 2022e + - category: main + dependencies: + libgfortran5: 12.2.0 h337968e_19 + hash: + md5: cd7a806282c16e1f2d39a7e80d3a3e0d + sha256: c7d061f323e80fbc09564179073d8af303bf69b953b0caddcf79b47e352c746f + manager: conda + name: libgfortran-ng + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2 + version: 12.2.0 + - category: main + dependencies: + _libgcc_mutex: 0.1 conda_forge + hash: + md5: cedcee7c064c01c403f962c9e8d3c373 + sha256: 81a76d20cfdee9fe0728b93ef057ba93494fd1450d42bc3717af4e468235661e + manager: conda + name: libgomp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2 + version: 12.2.0 + - category: main + dependencies: + kernel-headers_linux-64: 2.6.32 he073ed8_15 + hash: + md5: 66c192522eacf5bb763568b4e415d133 + sha256: 8498c73b60a7ea6faedf36204ec5a339c78d430fa838860f2b9d5d3a1c354eff + manager: conda + name: sysroot_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_15.tar.bz2 + version: "2.12" + - category: main + dependencies: + _libgcc_mutex: 0.1 conda_forge + libgomp: ">=7.5.0" + hash: + md5: 73aaf86a425cc6e73fcf236a5a46396d + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + manager: conda + name: _openmp_mutex + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + version: "4.5" + - category: main + dependencies: + ld_impl_linux-64: 2.39 hc81fddc_0 + sysroot_linux-64: "" + hash: + md5: e9d3f31bc4814b5b09aa0504124a4adc + sha256: ad65b436b95d9071aff0700ddc565737929fa711758bd6f8bebca45d27e08778 + manager: conda + name: binutils_impl_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.39-h6ceecb4_0.tar.bz2 + version: "2.39" + - category: main + dependencies: + binutils_impl_linux-64: 2.39.* + sysroot_linux-64: "" + hash: + md5: b7d26ab37be17ea4c366a97138684bcb + sha256: acf554585c011689ce6c58472200545c9512dce1b9dfc5e853f25771c0c3e12e + manager: conda + name: binutils_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.39-h5fc0e48_11.tar.bz2 + version: "2.39" + - category: main + dependencies: + _libgcc_mutex: 0.1 conda_forge + _openmp_mutex: ">=4.5" + hash: + md5: e4c94f80aef025c17ab0828cd85ef535 + sha256: f3899c26824cee023f1e360bd0859b0e149e2b3e8b1668bc6dd04bfc70dcd659 + manager: conda + name: libgcc-ng + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2 + version: 12.2.0 + - category: main + dependencies: + libgcc-ng: ">=9.3.0" + hash: + md5: a1fd65c7ccbf10880423d82bca54eb54 + sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa + manager: conda + name: bzip2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 + version: 1.0.8 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + hash: + md5: f26ef8098fab1f719c91eb760d63381a + sha256: ee735e60d2cf68e5635df17847e97b505a752985d10581d2438203e7c0f44c15 + manager: conda + name: c-ares + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.18.1-h7f98852_0.tar.bz2 + version: 1.18.1 + - category: main + dependencies: + libgcc-ng: ">=7.5.0" + libstdcxx-ng: ">=7.5.0" + hash: + md5: b94cf2db16066b242ebd26db2facbd56 + sha256: 07a5319e1ac54fe5d38f50c60f7485af7f830b036da56957d0bfb7558a886198 + manager: conda + name: gmp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2 + version: 6.2.1 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + hash: + md5: 87473a15119779e021c314249d4b4aed + sha256: 1d7950f3be4637ab915d886304e57731d39a41ab705ffc95c4681655c459374a + manager: conda + name: icu + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2 + version: "70.1" + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + hash: + md5: 30186d27e2c9fa62b45fb1476b7200e3 + sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb + manager: conda + name: keyutils + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + version: 1.6.1 + - category: main + dependencies: + libgcc-ng: ">=7.5.0" + hash: + md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3 + sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 + manager: conda + name: libev + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2 + version: "4.33" + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + hash: + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e + manager: conda + name: libffi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + version: 3.4.2 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + hash: + md5: 39b1328babf85c7c3a61636d9cd50206 + sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad + manager: conda + name: libnsl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2 + version: 2.0.0 + - category: main + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.4.0" + hash: + md5: 8c5963a49b6035c40646a763293fbb35 + sha256: 018372af663987265cb3ca8f37ac8c22b5f39219f65a0c162b056a30af11bba0 + manager: conda + name: libopenblas + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2 + version: 0.3.21 + - category: main + dependencies: + libgcc-ng: ">=10.4.0" + hash: + md5: b068ad132a509367bc9e5a200a639429 + sha256: 3f47701d3031ada2de72d4b85eaec9007fd6f95ed20e517ad8f55b792e0cb434 + manager: conda + name: libsanitizer + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-10.4.0-h5246dfb_19.tar.bz2 + version: 10.4.0 + - category: main + dependencies: + libgcc-ng: ">=7.5.0" + hash: + md5: c3788462a6fbddafdb413a9f9053e58d + sha256: 53da0c8b79659df7b53eebdb80783503ce72fb4b10ed6e9e05cc0e9e4207a130 + manager: conda + name: libsodium + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 + version: 1.0.18 + - category: main + dependencies: + libgcc-ng: ">=9.3.0" + hash: + md5: 772d69f030955d9646d3d0eaf21d859d + sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3 + manager: conda + name: libuuid + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.32.1-h7f98852_1000.tar.bz2 + version: 2.32.1 + - category: main + dependencies: + libgcc-ng: ">=12" + hash: + md5: f3f9de449d32ca9b9c66a22863c96f41 + sha256: 22f3663bcf294d349327e60e464a51cd59664a71b8ed70c28a9f512d10bc77dd + manager: conda + name: libzlib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2 + version: 1.2.13 + - category: main + dependencies: + libgcc-ng: ">=9.3.0" + libstdcxx-ng: ">=9.3.0" + hash: + md5: fbe97e8fa6f275d7c76a09e795adc3e6 + sha256: 56313fe4e602319682d4ea05c0ed3c5c45fc79884a5896f2cb7436b15d6987f9 + manager: conda + name: lz4-c + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.3-h9c3ff4c_1.tar.bz2 + version: 1.9.3 + - category: main + dependencies: + libgcc-ng: ">=7.5.0" + hash: + md5: d099b812378b1e133c12e3b75167d83a + sha256: 51874bbe38bceafc89158e276f202aecdf9171e0f3c946948ea2457611c4831a + manager: conda + name: metis + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-h58526e2_1006.tar.bz2 + version: 5.1.0 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + hash: + md5: 4acfc691e64342b9dae57cf2adc63238 + sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065 + manager: conda + name: ncurses + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2 + version: "6.3" + - category: main + dependencies: + ca-certificates: "" + libgcc-ng: ">=12" + hash: + md5: e772305877e7e57021916886d8732137 + sha256: d358b5e5187695748961fc06c380668ba1b9a67d5880f94d1ae2757c523f2a52 + manager: conda + name: openssl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.0.5-h166bdaf_2.tar.bz2 + version: 3.0.5 + - category: main + dependencies: + libgcc-ng: ">=9.3.0" + libstdcxx-ng: ">=9.3.0" + hash: + md5: 3b6d9e8331a6d0b93f66fa1ead8dffb6 + sha256: bed0023f5c8ee31d8341a5991697da5b0bdbd1bff70c99ed844d6be639a0571e + manager: conda + name: pugixml + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.11.4-h9c3ff4c_0.tar.bz2 + version: 1.11.4 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + hash: + md5: 418adb239781d9690afc6b1a05514c37 + sha256: 7e324caf1922a94e4c3432854624d25ef1fa361866981584725863c840fde5d2 + manager: conda + name: snappy + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.9-hbd366e4_1.tar.bz2 + version: 1.1.9 + - category: main + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + hash: + md5: d2f40df5cf33c6885428d0d33b8ea3c8 + sha256: 8d863ca567399a3f1321114d5ae0d454507d8f2f7414cedd5a82082a0cd717d1 + manager: conda + name: tbb + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.6.0-h924138e_0.tar.bz2 + version: 2021.6.0 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + libstdcxx-ng: ">=9.4.0" + hash: + md5: 468853b5c7010095bcfdde7b5e4503a2 + sha256: a08ee3d5aa77ce22eca1904ff33434cfa86b68c61840576908365301962b1515 + manager: conda + name: xtl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xtl-0.7.4-h4bd325d_0.tar.bz2 + version: 0.7.4 + - category: main + dependencies: + libgcc-ng: ">=12" + hash: + md5: 2161070d867d1b1204ea749c8eec4ef0 + sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 + manager: conda + name: xz + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + version: 5.2.6 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + hash: + md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae + sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 + manager: conda + name: yaml + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + version: 0.2.5 + - category: main + dependencies: + _openmp_mutex: ">=4.5" + libgcc-ng: ">=9.4.0" + libstdcxx-ng: ">=9.4.0" + hash: + md5: f12900b1e1e0527c0e9a4e922a5de2bf + sha256: 22f90931ae2d6f084107cd5a5cac5d065df7d23150356ffc56eba50260562174 + manager: conda + name: zfp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zfp-0.5.5-h9c3ff4c_8.tar.bz2 + version: 0.5.5 + - category: main + dependencies: + binutils_impl_linux-64: ">=2.39" + libgcc-devel_linux-64: 10.4.0 hd38fd1e_19 + libgcc-ng: ">=10.4.0" + libgomp: ">=10.4.0" + libsanitizer: 10.4.0 h5246dfb_19 + libstdcxx-ng: ">=10.4.0" + sysroot_linux-64: "" + hash: + md5: a086547de4cee874e72d5a43230372ec + sha256: 8e209a1a9d7e13f8134b622d5bb5c0e2150749ebba52c4362bbd503f08a1cf71 + manager: conda + name: gcc_impl_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-10.4.0-h5231bdf_19.tar.bz2 + version: 10.4.0 + - category: main + dependencies: + libopenblas: ">=0.3.21,<1.0a0" + hash: + md5: d9b7a8639171f6c6fa0a983edabcfe2b + sha256: 4e4c60d3fe0b95ffb25911dace509e3532979f5deef4364141c533c5ca82dd39 + manager: conda + name: libblas + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + libgcc-ng: ">=7.5.0" + ncurses: ">=6.2,<7.0.0a0" + hash: + md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 + sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf + manager: conda + name: libedit + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + version: 3.1.20191231 + - category: main + dependencies: + c-ares: ">=1.18.1,<2.0a0" + libev: ">=4.33,<4.34.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: 2b7dbfa6988a41f9d23ba6d4f0e1d74e + sha256: 66988eb178d6ffbad3de5e391dad49aaa298e1309ac197ab40996eac740fbfff + manager: conda + name: libnghttp2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.47.0-hff17c54_1.tar.bz2 + version: 1.47.0 + - category: main + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: 575078de1d3a3114b3ce131bd1508d0c + sha256: 422a544fbfc8d8bf43de4b2dc5c7c991294ad0e37b37439d8dbf740f07a75437 + manager: conda + name: libpng + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.38-h753d276_0.tar.bz2 + version: 1.6.38 + - category: main + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: 978924c298fc2215f129e8171bbea688 + sha256: 919396aa0e5d0df8d8082db554d850639aa363aff13f4feabf2ee642f823b6d4 + manager: conda + name: libsqlite + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.39.4-h753d276_0.tar.bz2 + version: 3.39.4 + - category: main + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: d85acad4b47dff4e3def14a769a97906 + sha256: 9a9a01f35d2d50326eb8ca7c0a92d0c45b2d0f77d9ea117680c70094ff480c0c + manager: conda + name: libssh2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-hf14f497_3.tar.bz2 + version: 1.10.0 + - category: main + dependencies: + gmp: ">=6.2.1,<7.0a0" + libgcc-ng: ">=7.5.0" + hash: + md5: ea9ebeddb066da8fad4a815e61b139be + sha256: d2d71ac6ed3b32f06b7db2691e0a1760016ce13fb0c50a9de6ed1ccc33e35ff3 + manager: conda + name: mpfr + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mpfr-4.1.0-h9202a9a_1.tar.bz2 + version: 4.1.0 + - category: main + dependencies: + libgcc-ng: ">=12" + ncurses: ">=6.3,<7.0a0" + hash: + md5: db2ebbe2943aae81ed051a6a9af8e0fa + sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8 + manager: conda + name: readline + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2 + version: 8.1.2 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + libzlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 5b8c42eb62e9fc961af70bdd6a26e168 + sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 + manager: conda + name: tk + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2 + version: 8.6.12 + - category: main + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + xtl: ">=0.7,<0.8" + hash: + md5: 85aff453f9d7a9036ce5a94590f8dd23 + sha256: cf853edf537f40be85668e65e9f60db366bc58bd9d681fb893b001158e46c6f6 + manager: conda + name: xtensor + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xtensor-0.24.3-h924138e_0.tar.bz2 + version: 0.24.3 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + libsodium: ">=1.0.18,<1.0.19.0a0" + libstdcxx-ng: ">=9.4.0" + hash: + md5: 21743a8d2ea0c8cfbbf8fe489b0347df + sha256: 525315b0df21866d4c3d68bc2ff987d26c2fdf0e3e8fd242c49b7255adef04c6 + manager: conda + name: zeromq + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.4-h9c3ff4c_1.tar.bz2 + version: 4.3.4 + - category: main + dependencies: + libgcc-ng: ">=12" + libzlib: 1.2.13 h166bdaf_4 + hash: + md5: 4b11e365c0275b808be78b30f904e295 + sha256: 282ce274ebe6da1fbd52efbb61bd5a93dec0365b14d64566e6819d1691b75300 + manager: conda + name: zlib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2 + version: 1.2.13 + - category: main + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: adcf0be7897e73e312bd24353b613f74 + sha256: c42d9ec413edd7e984b6cac676997105d0f106556a0f045961153b049b95b87c + manager: conda + name: zstd + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h6239696_4.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + snappy: ">=1.1.9,<2.0a0" + zstd: ">=1.5.2,<1.6.0a0" + hash: + md5: 37baca23e60af4130cfc03e8ab9f8e22 + sha256: 3635408361a0d168c289d0e32927b1e1c1e4e563439b4ce7153e787201c6a4e0 + manager: conda + name: blosc + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.1-h83bc5f7_3.tar.bz2 + version: 1.21.1 + - category: main + dependencies: + bzip2: ">=1.0.8,<2.0a0" + icu: ">=70.1,<71.0a0" + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + xz: ">=5.2.5,<5.3.0a0" + zstd: ">=1.5.2,<1.6.0a0" + hash: + md5: 9c5996e7741d205bc76a518173ff6b82 + sha256: 82d7d5c3042baae2cc7ee798612681f72ad348978d72ac17de9f3c41183f0a19 + manager: conda + name: boost-cpp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.74.0-h75c5d50_8.tar.bz2 + version: 1.74.0 + - category: main + dependencies: + binutils_linux-64: 2.39 h5fc0e48_11 + gcc_impl_linux-64: 10.4.0.* + sysroot_linux-64: "" + hash: + md5: 8ec7a24818e75cd2975e6fe785ad18eb + sha256: 653d27c4a31c582faa0ff244292bbfa69ff206a03082ceb7e642bdb297f73677 + manager: conda + name: gcc_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-10.4.0-h9215b83_11.tar.bz2 + version: 10.4.0 + - category: main + dependencies: + gcc_impl_linux-64: 10.4.0 h5231bdf_19 + libstdcxx-devel_linux-64: 10.4.0 hd38fd1e_19 + sysroot_linux-64: "" + hash: + md5: de8c00c5162b819c3e8a7f64ed32baf1 + sha256: bb4d5dd427a3788208737bbce28e3a2793371526aa11f8fa69d66596246ba39d + manager: conda + name: gxx_impl_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-10.4.0-h5231bdf_19.tar.bz2 + version: 10.4.0 + - category: main + dependencies: + keyutils: ">=1.6.1,<2.0a0" + libedit: ">=3.1.20191231,<4.0a0" + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + openssl: ">=3.0.0,<4.0a0" + hash: + md5: d25e05e7ee0e302b52d24491db4891eb + sha256: 9faad78e078a3e671f3572a01163acc1b2a47539559c746ea3ffd17c754ea578 + manager: conda + name: krb5 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.19.3-h08a2579_0.tar.bz2 + version: 1.19.3 + - category: main + dependencies: + libblas: 3.9.0 16_linux64_openblas + hash: + md5: 20bae26d0a1db73f758fc3754cab4719 + sha256: e4ceab90a49cb3ac1af20177016dc92066aa278eded19646bb928d261b98367f + manager: conda + name: libcblas + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + libblas: 3.9.0 16_linux64_openblas + hash: + md5: 955d993f41f9354bf753d29864ea20ad + sha256: f5f30b8049dfa368599e5a08a4f35cb1966af0abc539d1fd1f50d93db76a74e6 + manager: conda + name: liblapack + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.4.0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + mpi: 1.0 openmpi + zlib: ">=1.2.12,<1.3.0a0" + hash: + md5: 47111ef9982059da798bceb358ac542e + sha256: f9ee2572f50bad793337c2b0a2579b3e5fc5b6850cf70d21b5baa1c37e21d1a5 + manager: conda + name: openmpi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openmpi-4.1.4-ha1ae619_101.tar.bz2 + version: 4.1.4 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 20eb1f0c247d10da95b1da761e7f4c10 + sha256: 88be3ee9b49716657d8429fbb9b6ce4eb65efd79b7e660636775a858cb077921 + manager: conda + name: scotch + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/scotch-6.0.9-hb2e6521_2.tar.bz2 + version: 6.0.9 + - category: main + dependencies: + libgcc-ng: ">=12" + libsqlite: 3.39.4 h753d276_0 + libzlib: ">=1.2.12,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + readline: ">=8.1.2,<9.0a0" + hash: + md5: 643c271de2dd23ecbd107284426cebc2 + sha256: b0a812bcdc8c622852e4769f66d1db8a2e437a867acf64067ce31f9a0181acc8 + manager: conda + name: sqlite + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.39.4-h4ff8645_0.tar.bz2 + version: 3.39.4 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + hash: + md5: a4fdb592277a9c1a26b16d253e5aa931 + sha256: 34e02a1b0b67740e121f5d1fc389523411e810b5ebbab80ed8715fab5c9d9193 + manager: conda + name: fenics-libbasix + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fenics-libbasix-0.5.1-heb3b609_0.tar.bz2 + version: 0.5.1 + - category: main + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.4.0" + libstdcxx-ng: ">=12" + openmpi: ">=4.1.4,<5.0a0" + hash: + md5: 7dc8d1327426eab7c14782eda597a540 + sha256: 631d8fe16f36e2bf363b9971301c761663a9ad7f53c873b68d653e402995ff8f + manager: conda + name: fftw + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-mpi_openmpi_hdeb57f9_5.tar.bz2 + version: 3.3.10 + - category: main + dependencies: + binutils_linux-64: 2.39 h5fc0e48_11 + gcc_linux-64: 10.4.0 h9215b83_11 + gxx_impl_linux-64: 10.4.0.* + sysroot_linux-64: "" + hash: + md5: 842f0029666e37e929cbd1e7614f5862 + sha256: 5d1b580e7cf9d9a738a1bda1d32e4aaedc8625e0502fd6d41ececc9c8f88cd9d + manager: conda + name: gxx_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-10.4.0-h6e491c6_11.tar.bz2 + version: 10.4.0 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + openmpi: ">=4.1.4,<5.0a0" + hash: + md5: 02997add8ee63cd3bc2804078303f94d + sha256: d7e32ef218f968a91a30c2a7ea768449663d2c68df3c7a577bebdd5bd8762c6c + manager: conda + name: hypre + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/hypre-2.25.0-mpi_openmpi_ha709252_0.tar.bz2 + version: 2.25.0 + - category: main + dependencies: + krb5: ">=1.19.3,<1.20.0a0" + libgcc-ng: ">=12" + libnghttp2: ">=1.47.0,<2.0a0" + libssh2: ">=1.10.0,<2.0a0" + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: 4176ca4dc059446656a56a79cce50ea7 + sha256: b78a3d04b063812fea75191aa2205ecda0a705ed8e9b8a91c2f95368388db8de + manager: conda + name: libcurl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.85.0-h2283fc2_0.tar.bz2 + version: 7.85.0 + - category: main + dependencies: + libgcc-ng: ">=9.3.0" + libstdcxx-ng: ">=9.3.0" + openmpi: ">=4.1,<4.2.0a0" + hash: + md5: 160999f9228e8aac87dc170f0810bc74 + sha256: 20a46cebbec3c50cd0e33372112f962b69bba1082436fc095c90f65aadd43ffd + manager: conda + name: parmetis + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/parmetis-4.0.3-he9a3056_1005.tar.bz2 + version: 4.0.3 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + openmpi: ">=4.1.2,<5.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 4e5d899d1d4704c80b3051eb01490bb2 + sha256: c45c98ea3f3ee1648a801e13115c39005e2f9c378796edbf56c8cf2588ef2371 + manager: conda + name: ptscotch + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ptscotch-6.0.9-h0a9c416_2.tar.bz2 + version: 6.0.9 + - category: main + dependencies: + bzip2: ">=1.0.8,<2.0a0" + ld_impl_linux-64: ">=2.36.1" + libffi: ">=3.4.2,<3.5.0a0" + libgcc-ng: ">=12" + libnsl: ">=2.0.0,<2.1.0a0" + libuuid: ">=2.32.1,<3.0a0" + libzlib: ">=1.2.11,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + openssl: ">=3.0.3,<4.0a0" + readline: ">=8.1,<9.0a0" + sqlite: ">=3.38.5,<4.0a0" + tk: ">=8.6.12,<8.7.0a0" + tzdata: "" + xz: ">=5.2.5,<5.3.0a0" + hash: + md5: 894f6c234741ffc61505de11b7a588ba + sha256: 915c68c398d85132a7f80bc65432d435d7445bbb96fbd2e56c3a3a70aa4fd76a + manager: conda + name: python + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.9.13-h2660328_0_cpython.tar.bz2 + version: 3.9.13 + - category: main + dependencies: + libblas: ">=3.8.0,<4.0a0" + libgcc-ng: ">=10.3.0" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + liblapack: ">=3.8.0,<4.0a0" + openmpi: ">=4.1.2,<5.0a0" + hash: + md5: 9f5631123fb242b76de37a6f0f2804cf + sha256: 84d4994cf823a8226b9bb4191a2f8a8111f5b1d561f06de0b0c22643362953d2 + manager: conda + name: scalapack + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/scalapack-2.2.0-h67de57e_1.tar.bz2 + version: 2.2.0 + - category: main + dependencies: + libblas: ">=3.8.0,<4.0a0" + libcblas: ">=3.8.0,<4.0a0" + libgcc-ng: ">=9.4.0" + liblapack: ">=3.8.0,<4.0a0" + libstdcxx-ng: ">=9.4.0" + metis: ">=5.1.0,<5.2.0a0" + mpfr: ">=4.1.0,<5.0a0" + tbb: ">=2021.3.0" + hash: + md5: a3a685b5f9aeb890ed874502fe56accf + sha256: 176d004eafe3f07110315d1c96ab7245fbba8677364933213404890a0e2e9d1f + manager: conda + name: suitesparse + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/suitesparse-5.10.1-h9e50725_1.tar.bz2 + version: 5.10.1 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + hash: + md5: 2fe6fcc1c7d6e2e8ea3f16ebd3306dbe + sha256: dd80a0f64309849d0a222da3e2edbb28de741202f8d0578ccca705e1ca16dabd + manager: conda + name: superlu + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/superlu-5.2.2-h00795ac_0.tar.bz2 + version: 5.2.2 + - category: main + dependencies: + python: ">=3.6" + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + manager: conda + name: cached_property + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libcurl: ">=7.81.0,<8.0a0" + libgcc-ng: ">=10.3.0" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + openmpi: ">=4.1,<4.2.0a0" + openssl: ">=3.0.0,<4.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 1e84e89a0d214ae58ea06e3042f807f9 + sha256: eb3e4da960fcc0f3f32b306bda53de5ab3efdf840b5ed329a45b1a3bbb0b13b3 + manager: conda + name: hdf5 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.1-mpi_openmpi_h41b9b70_4.tar.bz2 + version: 1.12.1 + - category: main + dependencies: + libblas: ">=3.8.0,<4.0a0" + libgcc-ng: ">=10.3.0" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + liblapack: ">=3.8.0,<4.0a0" + metis: ">=5.1.0,<5.2.0a0" + mumps-include: 5.2.1 ha770c72_11 + openmpi: ">=4.1.2,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + ptscotch: ">=6.0.9,<6.0.10.0a0" + scalapack: ">=2.2.0,<2.3.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + hash: + md5: 8cf8da26a2d1e4a6f07fc6597fd42de6 + sha256: fee9b22355697ffa0ed288d1cb01d70041563c6c4c9d8822091f9654c9be2029 + manager: conda + name: mumps-mpi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-mpi-5.2.1-hfb3545b_11.tar.bz2 + version: 5.2.1 + - category: main + dependencies: + python: ==2.7.*|>=3.4 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + manager: conda + name: pycparser + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + version: "2.21" + - category: main + dependencies: + python: 3.9.* + hash: + md5: 39adde4247484de2bb4000122fdcf665 + sha256: 67231829ea0101fee30c68f788fdba40a11bbee8fdac556daaab5832bd27bf3d + manager: conda + name: python_abi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-2_cp39.tar.bz2 + version: "3.9" + - category: main + dependencies: + python: ">=3.7" + hash: + md5: 462466739c786f85f9ed555f87099fe1 + sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 + manager: conda + name: setuptools + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 + version: 65.5.0 + - category: main + dependencies: + _openmp_mutex: ">=4.5" + libblas: ">=3.8.0,<4.0a0" + libgcc-ng: ">=9.4.0" + libgfortran-ng: "" + libgfortran5: ">=9.4.0" + liblapack: ">=3.8.0,<4.0a0" + libstdcxx-ng: ">=9.4.0" + metis: ">=5.1.0,<5.2.0a0" + openmpi: ">=4.1.2,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + hash: + md5: 096b645a660e2d764771e73f732b6874 + sha256: abaaac9e2b27a0fd6e9efd02daf8a4bf96d4b8ae7946d35b68a7399e2191817f + manager: conda + name: superlu_dist + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/superlu_dist-7.2.0-h34f6f4d_0.tar.bz2 + version: 7.2.0 + - category: main + dependencies: + python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4" + hash: + md5: 1ca02aaf78d9c70d9a81a3bed5752022 + sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc + manager: conda + name: wheel + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 + version: 0.37.1 + - category: main + dependencies: + cached_property: ">=1.5.2,<1.5.3.0a0" + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + manager: conda + name: cached-property + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + pycparser: "" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 9958f561d50276b38a1fddf714c7aa79 + sha256: 4b42019a0135f4db6cf9be8fdd3f97c0a826d93b2e2e991fbf56e6fe92808443 + manager: conda + name: cffi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py39he91dace_1.tar.bz2 + version: 1.15.1 + - category: main + dependencies: + blosc: ">=1.21.1,<2.0a0" + bzip2: ">=1.0.8,<2.0a0" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" + libffi: ">=3.4.2,<3.5.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.4.0" + libpng: ">=1.6.37,<1.7.0a0" + libstdcxx-ng: ">=12" + openmpi: ">=4.1.4,<5.0a0" + zeromq: ">=4.3.4,<4.4.0a0" + zfp: ">=0.5.5,<1.0a0" + hash: + md5: 6b9f35881bb99683efacc5c5491946d5 + sha256: 3aaa9493fcf2e055af8cb8bf37347efb8b36e44e9adf8c35c8ffd1c905d4a4f7 + manager: conda + name: libadios2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libadios2-2.8.3-mpi_openmpi_h7cdbe10_1.tar.bz2 + version: 2.8.3 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 7cda413e43b252044a270c2477031c5c + sha256: 05e22cdcefeebe18698acc1b7445fd7e8b4b07c4d65c99f688ddeff8569d42d0 + manager: conda + name: markupsafe + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.1-py39hb9d737c_1.tar.bz2 + version: 2.1.1 + - category: main + dependencies: + libgcc-ng: ">=12" + openmpi: ">=4.1.4,<5.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 0badd3447407f9ff9aa9dd4081e2e003 + sha256: 5bbbc4e310c68a394a538c262aedf5441995e3d239b70dd394208cb5bf0657aa + manager: conda + name: mpi4py + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mpi4py-3.1.3-py39h5418507_2.tar.bz2 + version: 3.1.3 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: ed1301e6c4c15a6419e2d2abbf6a7694 + sha256: be8694098cafc9a112a367ff2a61c79092186d232d99b55b3ab3ce8434b33502 + manager: conda + name: numpy + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.23.4-py39h3d75532_0.tar.bz2 + version: 1.23.4 + - category: main + dependencies: + fftw: "* mpi_openmpi_*" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" + hypre: ">=2.25.0,<2.25.1.0a0" + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + metis: ">=5.1.0,<5.2.0a0" + mumps-mpi: ">=5.2.1,<5.2.2.0a0" + openmpi: ">=4.1.4,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + ptscotch: ">=6.0.9,<6.0.10.0a0" + scalapack: ">=2.2.0,<2.3.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + suitesparse: ">=5.10.1,<5.11.0a0" + superlu: "" + superlu_dist: ">=7.1.1,<8.0a0" + yaml: ">=0.2.5,<0.3.0a0" + hash: + md5: dc22b11e360e53f6434f5452d96847fc + sha256: 61bb512ab6e1d77eb3df30018ec3212300bd5e383aafbf14b19d3068d370eacf + manager: conda + name: petsc + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/petsc-3.17.3-real_h1c6c8d6_100.tar.bz2 + version: 3.17.3 + - category: main + dependencies: + python: ">=3.7" + setuptools: "" + wheel: "" + hash: + md5: 6f4c6de9fed2a9bd8043283611b09587 + sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 + manager: conda + name: pip + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 + version: "22.3" + - category: main + dependencies: + fenics-libbasix: 0.5.1 heb3b609_0 + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: "" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 9a6a61c3337a8d06735983357fcfc246 + sha256: bf4ffb3b0e7242c0f24b756ed53ac3c20ae6cf2408ce58cf2063316488487e1f + manager: conda + name: fenics-basix + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fenics-basix-0.5.1-py39hf939315_0.tar.bz2 + version: 0.5.1 + - category: main + dependencies: + numpy: "" + python: ">=3.7" + hash: + md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c + sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 + manager: conda + name: fenics-ufl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.2.0 + - category: main + dependencies: + cached-property: "" + hdf5: ">=1.12.1,<1.12.2.0a0" + libgcc-ng: ">=12" + numpy: ">=1.19.5,<2.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 61b9b1070eeb06e15d9495397a7562a4 + sha256: 189f316b5d1989e685d146104357e82644b78baaa7b5c4d1681d30579a55aab7 + manager: conda + name: h5py + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.7.0-nompi_py39h63b1161_100.tar.bz2 + version: 3.7.0 + - category: main + dependencies: + markupsafe: ">=2.0" + python: ">=3.7" + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + manager: conda + name: jinja2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + version: 3.1.2 + - category: main + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + numpy: ">=1.19.5,<2.0a0" + openmpi: ">=4.1.4,<5.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: da072dc8c31b6fc27693a2c4156cd25d + sha256: 3eb1e954216ec5beaa343fd11923f22ce9af081fea455a5a2fca38af37b39b3c + manager: conda + name: petsc4py + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/petsc4py-3.17.3-real_h7aa3ba5_101.tar.bz2 + version: 3.17.3 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + openmpi: ">=4.1.4,<5.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + suitesparse: ">=5.10.1,<5.11.0a0" + hash: + md5: 402d44de85ce2c84d473e076b1b6e358 + sha256: 48209a783bb5850fc5a7c51897b6f5a114d61ad3c5a0ed77ec325fd0ce2e58cc + manager: conda + name: slepc + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/slepc-3.17.1-real_h11342ed_102.tar.bz2 + version: 3.17.1 + - category: main + dependencies: + cffi: "" + fenics-basix: 0.5.* + fenics-ufl: 2022.2.* + numpy: "" + python: ">=3.7" + setuptools: "" + hash: + md5: 2dcc01a5199492d95b197d7265f5336a + sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 + manager: conda + name: fenics-ffcx + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 + version: 0.5.0 + - category: main + dependencies: + boost-cpp: ">=1.74.0,<1.74.1.0a0" + fenics-libbasix: ">=0.5.1,<0.5.2.0a0" + fenics-ufcx: ">=0.5.0,<0.5.1.0a0" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" + libadios2: ">=2.8.3,<2.8.4.0a0 mpi_openmpi_*" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + openmpi: ">=4.1.4,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + ptscotch: ">=6.0.9,<6.0.10.0a0" + pugixml: ">=1.11.4,<1.12.0a0" + slepc: ">=3.17.1,<3.18.0a0 real_*" + xtensor: ">=0.24.3,<0.25.0a0" + hash: + md5: 3b1084d3ae599fa82ef199300d2ab103 + sha256: f31009e3ac83d8da768a35daa67d21333aa81b154c0c1a693b2439f9f3b042d8 + manager: conda + name: fenics-libdolfinx + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fenics-libdolfinx-0.5.2-hcde13a9_100.tar.bz2 + version: 0.5.2 + - category: main + dependencies: + libgcc-ng: ">=12" + numpy: ">=1.19.5,<2.0a0" + openmpi: ">=4.1.4,<5.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + petsc4py: 3.17.* + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + slepc: ">=3.17.1,<3.18.0a0 real_*" + hash: + md5: 63e085da46bb7d6267a5e1a60d466b09 + sha256: a545f9af2e2b92974481326dc1cda668fff5958f2cf71844b6f601c1929caa74 + manager: conda + name: slepc4py + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/slepc4py-3.17.1-real_hadf0023_103.tar.bz2 + version: 3.17.1 + - category: main + dependencies: + cffi: "" + fenics-basix: 0.5.* + fenics-ffcx: 0.5.* + fenics-libdolfinx: 0.5.2 hcde13a9_100 + fenics-ufl: 2022.2.* + gxx_linux-64: 10.* + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + mpi4py: "" + numpy: "" + openmpi: ">=4.1.4,<5.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + petsc4py: "" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + slepc: ">=3.17.1,<3.18.0a0 real_*" + slepc4py: "" + hash: + md5: 178225d071ff51b7545098a493d57075 + sha256: 669beb516a97321c42e35234da3665a606fddc112c2afa2368cb4f374695854b + manager: conda + name: fenics-dolfinx + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fenics-dolfinx-0.5.2-py39ha5bb776_100.tar.bz2 + version: 0.5.2 + - category: main + dependencies: {} + hash: + sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 + manager: pip + name: async-timeout + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl + version: 3.0.1 + - category: main + dependencies: {} + hash: + sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c + manager: pip + name: attrs + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl + version: 22.1.0 + - category: main + dependencies: {} + hash: + sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 + manager: pip + name: cachetools + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl + version: 4.2.4 + - category: main + dependencies: {} + hash: + sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 + manager: pip + name: certifi + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl + version: 2022.9.24 + - category: main + dependencies: {} + hash: + sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 + manager: pip + name: chardet + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl + version: 3.0.4 + - category: main + dependencies: {} + hash: + sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f + manager: pip + name: charset-normalizer + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl + version: 2.1.1 + - category: main + dependencies: {} + hash: + sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 + manager: pip + name: colorama + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl + version: 0.4.6 + - category: main + dependencies: {} + hash: + sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 + manager: pip + name: cycler + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl + version: 0.11.0 + - category: main + dependencies: {} + hash: + sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff + manager: pip + name: distro + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl + version: 1.8.0 + - category: main + dependencies: {} + hash: + sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d + manager: pip + name: future + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz + version: 0.18.2 + - category: main + dependencies: {} + hash: + sha256: 7cf37343e43404699d58808e51f347f57efd3010cc7cee134cdb9141bd1ad9ea + manager: pip + name: greenlet + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/8b/e2/07206a72c1660ce801d2f1635c1314a3706592d35564e4f75d27c4c426eb/greenlet-1.1.3.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.1.3.post0 + - category: main + dependencies: {} + hash: + sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 + manager: pip + name: idna + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl + version: "3.4" + - category: main + dependencies: {} + hash: + sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f + manager: pip + name: jmespath + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl + version: 0.10.0 + - category: main + dependencies: {} + hash: + sha256: 7c43e1e1206cd421cd92e6b3280d4385d41d7166b3ed577ac20444b6995a445f + manager: pip + name: kiwisolver + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/a4/36/c414d75be311ce97ef7248edcc4fc05afae2998641bf6b592d43a9dee581/kiwisolver-1.4.4-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl + version: 1.4.4 + - category: main + dependencies: {} + hash: + sha256: bfba7c6d5d7c9099ba21f84662b037a0ffd4a5e6b26ac07d19e423e6fdf965a9 + manager: pip + name: multidict + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/b3/2d/d2bb7c2ac3bc4c1c60f9b82dde1bb084d074cf7a844f7f377477dc35de9b/multidict-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 6.0.2 + - category: main + dependencies: {} + hash: + sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 + manager: pip + name: nest-asyncio + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl + version: 1.5.6 + - category: main + dependencies: {} + hash: + sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d + manager: pip + name: networkx + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl + version: 2.8.7 + - category: main + dependencies: {} + hash: + sha256: 9a54614049a18a2d6fe156e68e188da02a046a4a93cf24f373bffd977e943421 + manager: pip + name: pillow + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/c1/d2/169e77ffa99a04f6837ff860b022fa1ea925e698e1c544c58268c8fd2afe/Pillow-9.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 9.2.0 + - category: main + dependencies: {} + hash: + sha256: e59137cdb970249ae60be2a49774c6dfb015bd0403f05af1fe61862e9626642d + manager: pip + name: psycopg2-binary + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/62/25/5b84c484aefa78f91366eea8b778de797681a5bc626b569555011874de58/psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 2.9.5 + - category: main + dependencies: {} + hash: + sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc + manager: pip + name: pyparsing + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl + version: 3.0.9 + - category: main + dependencies: {} + hash: + sha256: 6bc66318fb7ee012071b2792024564973ecc80e9522842eb4e17743604b5e045 + manager: pip + name: pyrsistent + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/41/cb/733dc14ca2ca17768ea28254b95dbc98f398e46dbf4dba94d4fac491af6e/pyrsistent-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 0.18.1 + - category: main + dependencies: {} + hash: + sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 + manager: pip + name: pytz + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl + version: "2022.5" + - category: main + dependencies: {} + hash: + sha256: 40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0 + manager: pip + name: pyyaml + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/12/fc/a4d5a7554e0067677823f7265cb3ae22aed8a238560b5133b58cda252dad/PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl + version: "6.0" + - category: main + dependencies: {} + hash: + sha256: a7b301ff08055d73223058b5c46c55638917f04d21577c95e00e0c4d79201a6b + manager: pip + name: ruamel.yaml.clib + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/35/bc/a1f58a339ffe891d92492f47b1dfa90b0957ccf8ad11f35f653a1a6b8c4e/ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl + version: 0.2.7 + - category: main + dependencies: {} + hash: + sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 + manager: pip + name: semver + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl + version: 2.13.0 + - category: main + dependencies: {} + hash: + sha256: ffaa51d88a75048bc759f6147c87695987914764ac411095f63c0d4ebde2365b + manager: pip + name: simpleitk + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/43/b4/7320b9731bd6e2003158a9485b2f0847fbbeb21bc02b96d4630826877ec5/SimpleITK-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 2.2.0 + - category: main + dependencies: {} + hash: + sha256: b09bc62e5193e31d7f9876220fb429ec13a6a181a24d897b9edfbbdbcd678851 + manager: pip + name: simplejson + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/3c/c5/ff45f429e0570d873472891bf88f89432b7e5cc83e18e3ef365fdd8f1d44/simplejson-3.17.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl + version: 3.17.6 + - category: main + dependencies: {} + hash: + sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 + manager: pip + name: six + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl + version: 1.16.0 + - category: main + dependencies: {} + hash: + sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e + manager: pip + name: typing-extensions + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl + version: 4.4.0 + - category: main + dependencies: {} + hash: + sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 + manager: pip + name: urllib3 + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl + version: 1.26.12 + - category: main + dependencies: + numpy: ">=1.7.1" + hash: + sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 + manager: pip + name: glymur + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz + version: 0.8.19 + - category: main + dependencies: + numpy: "*" + pillow: ">=8.3.2" + hash: + sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 + manager: pip + name: imageio + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl + version: 2.22.2 + - category: main + dependencies: + attrs: ">=17.4.0" + pyrsistent: ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + hash: + sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 + manager: pip + name: jsonschema + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl + version: 4.16.0 + - category: main + dependencies: + pyparsing: ">=2.0.2,<3.0.5 || >3.0.5" + hash: + sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 + manager: pip + name: packaging + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl + version: "21.3" + - category: main + dependencies: + numpy: ">=1.4" + six: "*" + hash: + sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 + manager: pip + name: patsy + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl + version: 0.5.3 + - category: main + dependencies: + numpy: ">=1.11.1" + hash: + sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 + manager: pip + name: pynrrd + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl + version: 0.4.3 + - category: main + dependencies: + six: ">=1.5" + hash: + sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 + manager: pip + name: python-dateutil + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl + version: 2.8.2 + - category: main + dependencies: + numpy: ">=1.17.3" + hash: + sha256: 71ab30f51ee4470741bb55fc6b197b4a2b612232e30f6ac069106f0156342356 + manager: pip + name: pywavelets + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/5a/98/4549479a32972bdfdd5e75e168219e97f4dfaee535a8308efef7291e8398/PyWavelets-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.4.1 + - category: main + dependencies: + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<3" + idna: ">=2.5,<4" + urllib3: ">=1.21.1,<1.27" + hash: + sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 + manager: pip + name: requests + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl + version: 2.28.1 + - category: main + dependencies: + ruamel.yaml.clib: ">=0.2.6" + hash: + sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 + manager: pip + name: ruamel.yaml + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl + version: 0.17.21 + - category: main + dependencies: + numpy: ">=1.18.5,<1.26.0" + hash: + sha256: c68db6b290cbd4049012990d7fe71a2abd9ffbe82c0056ebe0f01df8be5436b0 + manager: pip + name: scipy + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/bb/b7/380c9e4cd71263f03d16f8a92c0e44c9bdef38777e1a7dde1f47ba996bac/scipy-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.9.3 + - category: main + dependencies: + greenlet: "!=0.4.17" + hash: + sha256: 2fd49af453e590884d9cdad3586415922a8e9bb669d874ee1dc55d2bc425aacd + manager: pip + name: sqlalchemy + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/a0/e0/ea3b6d042613667146bae2c9c2c0666f971a87dbf1cb2d3fc2c10a6c696c/SQLAlchemy-1.4.42-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.4.42 + - category: main + dependencies: + colorama: "*" + hash: + sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 + manager: pip + name: tqdm + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl + version: 4.64.1 + - category: main + dependencies: + idna: ">=2.0" + multidict: ">=4.0" + hash: + sha256: 3d1a50e461615747dd93c099f297c1994d472b0f4d2db8a64e55b1edf704ec1c + manager: pip + name: yarl + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/87/27/f99c22607862ae77d76b31e2fcf72f88c5c97aa342beaac12963844b9f34/yarl-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.8.1 + - category: main + dependencies: + async-timeout: ">=3.0,<4.0" + attrs: ">=17.3.0" + chardet: ">=2.0,<4.0" + multidict: ">=4.5,<7.0" + typing-extensions: ">=3.6.5" + yarl: ">=1.0,<2.0" + hash: + sha256: cc31e906be1cc121ee201adbdf844522ea3349600dd0a40366611ca18cd40e81 + manager: pip + name: aiohttp + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/85/ca/2dab75b6961e3bdfa4c0a6ad50a5f439f4ff351a0295f584300b9cec95ca/aiohttp-3.7.4-cp39-cp39-manylinux2014_x86_64.whl + version: 3.7.4 + - category: main + dependencies: + jmespath: ">=0.7.1,<1.0.0" + python-dateutil: ">=2.1,<3.0.0" + urllib3: ">=1.25.4,<1.27" + hash: + sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b + manager: pip + name: botocore + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl + version: 1.20.112 + - category: main + dependencies: + packaging: ">=17.0" + hash: + sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 + manager: pip + name: marshmallow + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl + version: 3.18.0 + - category: main + dependencies: + cycler: ">=0.10" + kiwisolver: ">=1.0.1" + numpy: ">=1.16" + pillow: ">=6.2.0" + pyparsing: ">=2.2.1" + python-dateutil: ">=2.7" + hash: + sha256: 956c8849b134b4a343598305a3ca1bdd3094f01f5efc8afccdebeffe6b315247 + manager: pip + name: matplotlib + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/58/ef/50b17a043045c3fc62b20f2cab1973e21f7beb7d3897ab1fb026aea00fb2/matplotlib-3.4.2-cp39-cp39-manylinux1_x86_64.whl + version: 3.4.2 + - category: main + dependencies: + numpy: ">=1.13.3" + packaging: "*" + hash: + sha256: 828926f5d4dc9ace2bebd2eec56bee852518afa31e6df175d1706e6631dfd1a2 + manager: pip + name: numexpr + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/b7/e3/671625af5597609a413c1c80d11b89de0064549a4adc3e2e5ea5edcae8e5/numexpr-2.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 2.8.3 + - category: main + dependencies: + numpy: ">=1.20.3" + python-dateutil: ">=2.8.1" + pytz: ">=2020.1" + hash: + sha256: b156a971bc451c68c9e1f97567c94fd44155f073e3bceb1b0d195fd98ed12048 + manager: pip + name: pandas + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/c9/80/207c30c09d0b650214f7826227d32236e3259e2ad2b8e0075b3feae4266c/pandas-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.5.1 + - category: main + dependencies: + requests: ">=2.0.1,<3.0.0" + hash: + sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 + manager: pip + name: requests-toolbelt + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl + version: 0.10.1 + - category: main + dependencies: + distro: "*" + packaging: "*" + hash: + sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 + manager: pip + name: scikit-build + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl + version: 0.15.0 + - category: main + dependencies: + marshmallow: ">=3.0.0,<4.0" + numpy: "*" + pyyaml: "*" + hash: + sha256: 38cceff1d3bb4ecf0eebb2a6ea46b99c418e9bd94b5acaec95d9307731360bbc + manager: pip + name: argschema + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e9/43/91c96e0b69f86c7076989ef97bc1687ed427ddacd1dd1c7010b5c330d611/argschema-3.0.4.tar.gz + version: 3.0.4 + - category: main + dependencies: + h5py: ">=2.10,<4" + jsonschema: ">=2.6.0,<5" + numpy: ">=1.16,<1.24" + pandas: ">=1.0.5,<2" + ruamel.yaml: ">=0.16,<1" + scipy: ">=1.1,<2" + hash: + sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d + manager: pip + name: hdmf + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl + version: 3.4.6 + - category: main + dependencies: + botocore: ">=1.12.36,<2.0a.0" + hash: + sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 + manager: pip + name: s3transfer + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl + version: 0.3.7 + - category: main + dependencies: + imageio: ">=2.3.0" + matplotlib: ">=2.0.0,<3.0.0 || >3.0.0" + networkx: ">=2.0" + pillow: ">=4.3.0" + pywavelets: ">=0.4.0" + scipy: ">=0.19.0" + hash: + sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c + manager: pip + name: scikit-image + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz + version: 0.16.2 + - category: main + dependencies: + matplotlib: ">=3.1,<3.6.1 || >3.6.1" + numpy: ">=1.17" + pandas: ">=0.25" + hash: + sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 + manager: pip + name: seaborn + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl + version: 0.12.1 + - category: main + dependencies: + numpy: ">=1.17" + pandas: ">=0.25" + patsy: ">=0.5.2" + scipy: ">=1.3" + hash: + sha256: b29ab5b4f5f182afbf8c6e3889cfcd438887fdb59e2d5452d99c7154e8af3926 + manager: pip + name: statsmodels + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/35/c8/2ab156d377e8dac8fb0b5848b7aa5e2419742b0c9510ad857c86574b641b/statsmodels-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 0.13.0 + - category: main + dependencies: + numexpr: ">=2.6.2" + numpy: ">=1.9.3" + hash: + sha256: dedb959c00ac9e84562a69e80fa858d7aa06d91f96c6cb8cccbbbaf7a879436b + manager: pip + name: tables + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e7/c3/4a4b20a4f114927f00892e3ef2a12d59be61df803e6d9f2be340e4002d92/tables-3.6.1-cp39-cp39-manylinux2010_x86_64.whl + version: 3.6.1 + - category: main + dependencies: + numpy: ">=1.15" + pandas: ">=0.25" + hash: + sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d + manager: pip + name: xarray + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl + version: 0.15.1 + - category: main + dependencies: + botocore: ">=1.20.21,<1.21.0" + jmespath: ">=0.7.1,<1.0.0" + s3transfer: ">=0.3.0,<0.4.0" + hash: + sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 + manager: pip + name: boto3 + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl + version: 1.17.21 + - category: main + dependencies: + h5py: ">=2.10,<4" + hdmf: ">=3.4.2,<4" + numpy: ">=1.16,<1.24" + pandas: ">=1.1.5,<2" + python-dateutil: ">=2.7.3,<3" + hash: + sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f + manager: pip + name: pynwb + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl + version: 2.2.0 + - category: main + dependencies: + pynwb: ">=1.1.2" + hash: + sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af + manager: pip + name: ndx-events + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl + version: 0.2.0 + - category: main + dependencies: + aiohttp: 3.7.4 + argschema: ">=3.0.1,<4.0.0" + boto3: 1.17.21 + cachetools: ">=4.2.1,<5.0.0" + future: ">=0.14.3,<1.0.0" + glymur: 0.8.19 + h5py: "*" + hdmf: ">=2.5.8" + jinja2: ">=3.0.0" + matplotlib: ">=1.4.3,<3.4.3" + ndx-events: <=0.2.0 + nest-asyncio: "*" + numpy: "*" + pandas: ">=1.1.5" + psycopg2-binary: ">=2.7,<3.0.0" + pynrrd: ">=0.2.1,<1.0.0" + pynwb: "*" + requests: <3.0.0 + requests-toolbelt: <1.0.0 + scikit-build: <1.0.0 + scikit-image: ">=0.14.0,<0.17.0" + scipy: ">=1.4.0,<2.0.0" + seaborn: <1.0.0 + semver: "*" + simpleitk: ">=2.0.2,<3.0.0" + simplejson: ">=3.10.0,<4.0.0" + six: ">=1.9.0,<2.0.0" + sqlalchemy: "*" + statsmodels: <=0.13.0 + tables: ">=3.6.0,<3.7.0" + tqdm: ">=4.27" + xarray: <0.16.0 + hash: + sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 + manager: pip + name: allensdk + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl + version: 2.13.6 + - category: main + dependencies: {} + hash: + md5: 831557fcf92cfc4353eb69fb95524b6c + sha256: 0d673d366972656a3de1d67377912f12e9401cba0e4b277442d368747c7f1cb8 + manager: conda + name: ca-certificates + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2022.9.24-h4fd8a4c_0.tar.bz2 + version: 2022.9.24 + - category: main + dependencies: {} + hash: + md5: a0a531df6bf6663607dc77722ae522d6 + sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f + manager: conda + name: fenics-ufcx + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 + version: 0.5.0 + - category: main + dependencies: {} + hash: + md5: a9385e5b11a076c40d75915986f498d7 + sha256: 14e227d98193550f9da275e58e27de104ab569849f1ce16b810fae4d7b351d49 + manager: conda + name: kernel-headers_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h5b4a56d_13.tar.bz2 + version: 4.18.0 + - category: main + dependencies: {} + hash: + md5: b1f9c443a460b0916cac377b7d494111 + sha256: 8e84e37c6d89a6aa62246dc7dd9d733b0a19e7c8861ebb781554eb7b88242787 + manager: conda + name: ld_impl_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.39-ha75b1e8_0.tar.bz2 + version: "2.39" + - category: main + dependencies: {} + hash: + md5: c21b5e540d690c5d2d273ecce320abdf + sha256: 35223b103f877564ae73ed1bea5d522057b69306d7e2155b6b5388310cad52cf + manager: conda + name: libgcc-devel_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-devel_linux-aarch64-10.4.0-h3c6860a_19.tar.bz2 + version: 10.4.0 + - category: main + dependencies: {} + hash: + md5: bc890809e1f807b51bf04dfbee70ddf5 + sha256: e0496081c3a26c578abd0e292317c80159ebfbd5bb1ecca446894b9adf39abd7 + manager: conda + name: libgfortran5 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-12.2.0-hf695500_19.tar.bz2 + version: 12.2.0 + - category: main + dependencies: {} + hash: + md5: 65b9cb876525dcb2e74a90cf02c6762a + sha256: d802eaceaf6f77fb8cb2e990aacf9b3eaa83361b16369a760fc1585841d7885c + manager: conda + name: libgomp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-12.2.0-h607ecd0_19.tar.bz2 + version: 12.2.0 + - category: main + dependencies: {} + hash: + md5: 13653671982305e902550ee81b69349d + sha256: 6c52715362529ef14a1a04ece9c33b2b029d02d63fb00bf4406ee8091115e3f5 + manager: conda + name: libstdcxx-devel_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-devel_linux-aarch64-10.4.0-h3c6860a_19.tar.bz2 + version: 10.4.0 + - category: main + dependencies: {} + hash: + md5: 981741cd4321edd5c504b48f74fe91f2 + sha256: db906f0ad19acc6aefcd5409a7a72fea76302f72013dce7593467ae07dbf54f3 + manager: conda + name: libstdcxx-ng + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-12.2.0-hc13a102_19.tar.bz2 + version: 12.2.0 + - category: main + dependencies: {} + hash: + md5: 1790efddf50f955b474e9ad2f7f566ec + sha256: ec16a1247bc791b9aec497474d149dc3dc922b97c0c4afe60863b648d8bc8867 + manager: conda + name: mpi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpi-1.0-mpich.tar.bz2 + version: "1.0" + - category: main + dependencies: {} + hash: + md5: 7dbd622c32525d81a90c9c54a42e18a0 + sha256: 043e7b410b7a86e1bd8d9cec9c0dc25394fe272e58ff2c93009fbe723e8c201a + manager: conda + name: mumps-include + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mumps-include-5.2.1-h8af1aa0_11.tar.bz2 + version: 5.2.1 + - category: main + dependencies: {} + hash: + md5: b6bd89cf71494c41a181cac13cc5a8ea + sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 + manager: conda + name: tzdata + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 + version: 2022e + - category: main + dependencies: + libgomp: ">=7.5.0" + hash: + md5: 6168d71addc746e8f2b8d57dfd2edcea + sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 + manager: conda + name: _openmp_mutex + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + version: "4.5" + - category: main + dependencies: + libgfortran5: 12.2.0 hf695500_19 + hash: + md5: b5b34211bbf681bd3e7a5a4d80cce77b + sha256: 3ac162edf354bfa46076f52f3bff3a8ac10e626ebb9ed5e01aad954ebd386829 + manager: conda + name: libgfortran-ng + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-12.2.0-he9431aa_19.tar.bz2 + version: 12.2.0 + - category: main + dependencies: + kernel-headers_linux-aarch64: 4.18.0 h5b4a56d_13 + hash: + md5: 6d8f1fd1e675ba478041892112887949 + sha256: 932f7f8947c206ad4707a18c3bebbe217efdef67fd2cf9e0e94f5ccf0edeee38 + manager: conda + name: sysroot_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-aarch64-2.17-h43d7e78_13.tar.bz2 + version: "2.17" + - category: main + dependencies: + ld_impl_linux-aarch64: 2.39 ha75b1e8_0 + sysroot_linux-aarch64: "" + hash: + md5: edc0b381f0c9e2b963541fc9b5cba1d6 + sha256: 9b90360851e41936cc8c1138e8a3c38456c5b31acf9ca05d94454b20292bfc78 + manager: conda + name: binutils_impl_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.39-hb04425f_0.tar.bz2 + version: "2.39" + - category: main + dependencies: + _openmp_mutex: ">=4.5" + hash: + md5: 8456a29b6d9fc3123ccb9a966b6b2c49 + sha256: 0dd30553f6f38b011c9c81471a50f85e98a79e4dd672fdc1fc97904b54b5419b + manager: conda + name: libgcc-ng + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-12.2.0-h607ecd0_19.tar.bz2 + version: 12.2.0 + - category: main + dependencies: + binutils_impl_linux-aarch64: 2.39.* + sysroot_linux-aarch64: "" + hash: + md5: 4b7f9e2048a3b75aca16b9612d7f49c7 + sha256: 21da410295e7e42e7459fa633a72c213b19c88d12a95c6b08599935e975694c4 + manager: conda + name: binutils_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.39-h489c705_11.tar.bz2 + version: "2.39" + - category: main + dependencies: + libgcc-ng: ">=9.3.0" + hash: + md5: 2d787570a729e273a4e75775ddf3348a + sha256: 3aeb6ab92aa0351722497b2d2a735dc20921cf6c60d9196c04b7a2b9ece198d2 + manager: conda + name: bzip2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-hf897c2e_4.tar.bz2 + version: 1.0.8 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + hash: + md5: 12c54b174dd7c6a9331e729d24c39515 + sha256: 1ff44fb03f0013e15b81eea34edcb79a796445deb305c4df6ee286d5ae7b3cd4 + manager: conda + name: c-ares + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.18.1-hf897c2e_0.tar.bz2 + version: 1.18.1 + - category: main + dependencies: + libgcc-ng: ">=7.5.0" + libstdcxx-ng: ">=7.5.0" + hash: + md5: 785747e1f00cfc37b3c95ffbada92591 + sha256: e17efc0fd32dcf5d404df1250331be735df8ff47d30878c4fa712ebb4c624f29 + manager: conda + name: gmp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gmp-6.2.1-h7fd3ca4_0.tar.bz2 + version: 6.2.1 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + hash: + md5: 014656d28b7b6f8a566437c69552f9ae + sha256: f867c6e57439b40a394fd7aef6d6ae35fd14cccf6f57e78539c6da9108f27c44 + manager: conda + name: icu + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-70.1-ha18d298_0.tar.bz2 + version: "70.1" + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + hash: + md5: 1f24853e59c68892452ef94ddd8afd4b + sha256: 6d4233d97a9b38acbb26e1268bcf8c10a8e79c2aed7e5a385ec3769967e3e65b + manager: conda + name: keyutils + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 + version: 1.6.1 + - category: main + dependencies: + libgcc-ng: ">=7.5.0" + hash: + md5: 9eac5901791494108c9b9ab85ca8aa93 + sha256: b9e8bcd26f0b0ded4c43232d55048bab910a4268197757f2368458759d9f3ef9 + manager: conda + name: libev + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h516909a_1.tar.bz2 + version: "4.33" + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + hash: + md5: dddd85f4d52121fab0a8b099c5e06501 + sha256: 7e9258a102480757fe3faeb225a3ca04dffd10fecd2a958c65cdb4cdf75f2c3c + manager: conda + name: libffi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2 + version: 3.4.2 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + hash: + md5: 36fdbc05c9d9145ece86f5a63c3f352e + sha256: 182dbc318b7ab3ab10bc5a9d3ca161b143ae8db6df8aa11b65140009e322e642 + manager: conda + name: libnsl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.0-hf897c2e_0.tar.bz2 + version: 2.0.0 + - category: main + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.4.0" + hash: + md5: bc66302748a788c3bce59999ed6d737d + sha256: 78a93de015d389597d9bdd470ffcfa3901d4b39b85d6516f242ff71d18dc6607 + manager: conda + name: libopenblas + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.21-pthreads_h6cb6f83_3.tar.bz2 + version: 0.3.21 + - category: main + dependencies: + libgcc-ng: ">=10.4.0" + hash: + md5: f85a18d33970bc60b7b5df0e451ba3cc + sha256: 4132132b4265028a368e1f630b2cb567d67051f22b3cd39c00992de6bf48c204 + manager: conda + name: libsanitizer + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsanitizer-10.4.0-h0e20637_19.tar.bz2 + version: 10.4.0 + - category: main + dependencies: + libgcc-ng: ">=7.5.0" + hash: + md5: d09ab3c60eebb6f14eb4d07e172775cc + sha256: 9ee442d889242c633bc3ce3f50ae89e6d8ebf12e04d943c371c0a56913fa069b + manager: conda + name: libsodium + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.18-hb9de7d4_1.tar.bz2 + version: 1.0.18 + - category: main + dependencies: + libgcc-ng: ">=9.3.0" + hash: + md5: e038da5ef9095b0d79aac14a311394e7 + sha256: 8f7eead3723c32631b252aea336bb39fbbde433b8d0c5a75745f03eaa980447d + manager: conda + name: libuuid + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.32.1-hf897c2e_1000.tar.bz2 + version: 2.32.1 + - category: main + dependencies: + libgcc-ng: ">=12" + hash: + md5: 88596b6277fe6d39f046983aae6044db + sha256: 9803ac96dbdbc27df9c149e06d4436b778c468bd0e6e023fbcb49a6fe9c404b4 + manager: conda + name: libzlib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.2.13-h4e544f5_4.tar.bz2 + version: 1.2.13 + - category: main + dependencies: + libgcc-ng: ">=9.3.0" + libstdcxx-ng: ">=9.3.0" + hash: + md5: 25b5ec27b49b04a997a87b0f00f5e205 + sha256: db1d958f56e8f616c65deb7e67522db4ba51e2ccdb676469bb0c8df8d3e181ae + manager: conda + name: lz4-c + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.3-h01db608_1.tar.bz2 + version: 1.9.3 + - category: main + dependencies: + libgcc-ng: ">=7.5.0" + hash: + md5: b77d9a8e527e127eadf5bfdf909657a8 + sha256: 83df3738193f2993a2cc29ef2ac712c385586cfe5395c5c3c3b33f9af9c0c992 + manager: conda + name: metis + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/metis-5.1.0-h7fd3ca4_1006.tar.bz2 + version: 5.1.0 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + mpi: 1.0 mpich + hash: + md5: 812ae04a75e329b6383119b3850c2e8e + sha256: ac333eb77336f622240b8f74be3d9cc5fce869c4686080f19aa76953b2c93e03 + manager: conda + name: mpich + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpich-4.0.2-h26b3c96_100.tar.bz2 + version: 4.0.2 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + hash: + md5: 486b68148e121bc8bbadc3cefae4c04f + sha256: d410d840cb39175d7edc388690b93b2e3d7613c2e2f5c64b96582dc8b55b2319 + manager: conda + name: ncurses + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.3-headf329_1.tar.bz2 + version: "6.3" + - category: main + dependencies: + ca-certificates: "" + libgcc-ng: ">=12" + hash: + md5: 84de06ee822d6c051d5392d34368af66 + sha256: 60d9841bdeacf92286471e1d58ba624380abb9a08695b7a5e256c81007f7ee3e + manager: conda + name: openssl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.0.5-h4e544f5_2.tar.bz2 + version: 3.0.5 + - category: main + dependencies: + libgcc-ng: ">=9.3.0" + libstdcxx-ng: ">=9.3.0" + hash: + md5: 6e6d498e0834be933809af0439012669 + sha256: 9a69b180a69d4aa5a834c290652e09cd07a54389552064e5ae217df1cda51dfa + manager: conda + name: pugixml + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pugixml-1.11.4-h01db608_0.tar.bz2 + version: 1.11.4 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + hash: + md5: c6725b5ffe431af44e780c5c1cac8d7c + sha256: a5ce0a484d2f285c89809419274edf7274fa424ad14f1806aef712f7bad505eb + manager: conda + name: snappy + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.1.9-hc7e91e1_1.tar.bz2 + version: 1.1.9 + - category: main + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + hash: + md5: 209e0162dee35a88db9b7b80b1a21863 + sha256: 0765ff288a3c7180447bcec643322b910dbbd613a41bef4774321e1be3088b3c + manager: conda + name: tbb + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-2021.6.0-hdd96247_0.tar.bz2 + version: 2021.6.0 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + libstdcxx-ng: ">=9.4.0" + hash: + md5: 27040fe522925d081a50fb56c7b91261 + sha256: 02171fd8c9f75874ecc584c4c70ede780f291d13cf1ecca07738a2ce3730cc94 + manager: conda + name: xtl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xtl-0.7.4-hd62202e_0.tar.bz2 + version: 0.7.4 + - category: main + dependencies: + libgcc-ng: ">=12" + hash: + md5: 83baad393a31d59c20b63ba4da6592df + sha256: 93f58a7b393adf41fa007ac8c55978765e957e90cd31877ece1e5a343cb98220 + manager: conda + name: xz + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 + version: 5.2.6 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + hash: + md5: b853307650cb226731f653aa623936a4 + sha256: 8bc601d6dbe249eba44b3c456765265cd8f42ef1e778f8df9b0c9c88b8558d7e + manager: conda + name: yaml + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 + version: 0.2.5 + - category: main + dependencies: + _openmp_mutex: ">=4.5" + libgcc-ng: ">=9.4.0" + libstdcxx-ng: ">=9.4.0" + hash: + md5: d17e70e2a667006cdc693597ca771b70 + sha256: 0b4524b3334f9fc325d1e6e6419341954d9678d160653d6d95ccf0e536a44049 + manager: conda + name: zfp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zfp-0.5.5-h01db608_8.tar.bz2 + version: 0.5.5 + - category: main + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.4.0" + libstdcxx-ng: ">=12" + mpich: ">=4.0.2,<5.0a0" + hash: + md5: 5140a65c8269a6983da0eeced5b6d5b1 + sha256: c873b15a9b66a182490659d96c0d1391613f40150ba52a88b8a4a9ac0d3e8bd9 + manager: conda + name: fftw + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fftw-3.3.10-mpi_mpich_h012ce13_5.tar.bz2 + version: 3.3.10 + - category: main + dependencies: + binutils_impl_linux-aarch64: ">=2.39" + libgcc-devel_linux-aarch64: 10.4.0 h3c6860a_19 + libgcc-ng: ">=10.4.0" + libgomp: ">=10.4.0" + libsanitizer: 10.4.0 h0e20637_19 + libstdcxx-ng: ">=10.4.0" + sysroot_linux-aarch64: "" + hash: + md5: a14f89713a08d6698e0d8f2db4e1eebc + sha256: 18155529cf647fe012f1a577a24df72c0d3fd6daad2ffa0dd0f3860b6cdc8b7f + manager: conda + name: gcc_impl_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-10.4.0-h9569200_19.tar.bz2 + version: 10.4.0 + - category: main + dependencies: + libopenblas: ">=0.3.21,<1.0a0" + hash: + md5: 188f02883567d5b7f96c7aa12e7007c9 + sha256: 6fdf73da8b717f207979f77660646ca2d7e17671482435f281b676ac27eb288e + manager: conda + name: libblas + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-16_linuxaarch64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + libgcc-ng: ">=7.5.0" + ncurses: ">=6.2,<7.0.0a0" + hash: + md5: 29371161d77933a54fccf1bb66b96529 + sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d + manager: conda + name: libedit + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + version: 3.1.20191231 + - category: main + dependencies: + c-ares: ">=1.18.1,<2.0a0" + libev: ">=4.33,<4.34.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: edf1f6b20834553ae56681298985e89c + sha256: 07624c058462afd335929eedd4d69eebb7ad5b5fb6654aad9df185c760c7fa48 + manager: conda + name: libnghttp2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.47.0-h674c3cc_1.tar.bz2 + version: 1.47.0 + - category: main + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: 64c24041ed1b1e01425f950ed0f8b148 + sha256: 4c95626f5415b2140a3c6c7c6a7d7d029e8fc1bcb7f27ae85586647799acaaf1 + manager: conda + name: libpng + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.38-hf9034f9_0.tar.bz2 + version: 1.6.38 + - category: main + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: cd65f7b7d956c3b813b94d2d6c4c697a + sha256: af9fecb4fead8423c93b7f5ff90f8d3c5c91644a1b312c7db47d85a7441409c8 + manager: conda + name: libsqlite + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.39.4-hf9034f9_0.tar.bz2 + version: 3.39.4 + - category: main + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: 97a05afae73dc8939078f44732534a47 + sha256: 5aaf9273f7e254dd640b5f2607fa590b6a69a961866044ee8d44128519edee66 + manager: conda + name: libssh2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.10.0-he5a64b1_3.tar.bz2 + version: 1.10.0 + - category: main + dependencies: + gmp: ">=6.2.1,<7.0a0" + libgcc-ng: ">=7.5.0" + hash: + md5: af9c4f2eb73b8b550bac3d778350a948 + sha256: 1f622e870bb39637cfc28604b86defc518483360ddd1a92cb0104fa6f07dbc56 + manager: conda + name: mpfr + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpfr-4.1.0-h719063d_1.tar.bz2 + version: 4.1.0 + - category: main + dependencies: + libgcc-ng: ">=9.3.0" + libstdcxx-ng: ">=9.3.0" + mpich: ">=3.4,<5.0.0a0" + hash: + md5: b34a5c21331032c944a46585e14aa5dd + sha256: 6b59a13c2f978bc0231b0df7d2ebf4121028fe7c3cb18f2b0af4e493c803462f + manager: conda + name: parmetis + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/parmetis-4.0.3-h679c2f0_1005.tar.bz2 + version: 4.0.3 + - category: main + dependencies: + libgcc-ng: ">=12" + ncurses: ">=6.3,<7.0a0" + hash: + md5: 3cdbfb7d7b63ae2c2d35bb167d257ecd + sha256: a33bb6e4c93599fb97eb19db0dcca602a90475f2da3c01c14add19b908178fcd + manager: conda + name: readline + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.1.2-h38e3740_0.tar.bz2 + version: 8.1.2 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + libzlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 7894e82ff743bd96c76585ddebe28e2a + sha256: d659316c9e502fb0e1b9a284fb0f0c00e273bff787e9385ab14be9af13dcd0d2 + manager: conda + name: tk + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.12-hd8af866_0.tar.bz2 + version: 8.6.12 + - category: main + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + xtl: ">=0.7,<0.8" + hash: + md5: 7e6f8ff1a452d2b2c076f0bdfcf323c1 + sha256: 80196bf36ed39339de7be1f192f7aa6b32b0fba97d37f26993b8d369f8459100 + manager: conda + name: xtensor + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xtensor-0.24.3-hdd96247_0.tar.bz2 + version: 0.24.3 + - category: main + dependencies: + libgcc-ng: ">=9.4.0" + libsodium: ">=1.0.18,<1.0.19.0a0" + libstdcxx-ng: ">=9.4.0" + hash: + md5: dd56c9ce3f1f689a5e71941830349279 + sha256: 8da3cf93c15f43aeb6c598d97eeaad79b83f718317813918769f7b837787929f + manager: conda + name: zeromq + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.4-h01db608_1.tar.bz2 + version: 4.3.4 + - category: main + dependencies: + libgcc-ng: ">=12" + libzlib: 1.2.13 h4e544f5_4 + hash: + md5: dc8395f4a79bb0b13ca7d855c72482d4 + sha256: 0e4c848421e361f5738aa743cd9c3955ac168905dffee3a7855fb3531b07ef01 + manager: conda + name: zlib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.2.13-h4e544f5_4.tar.bz2 + version: 1.2.13 + - category: main + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: f5627b0fef9a5267fd4d2ad5d8b5c1b3 + sha256: 140ebfa611ddfe087b2264ce3a5425077925ca710c89f95dab0a5c966e173244 + manager: conda + name: zstd + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.2-hc1e27d5_4.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + snappy: ">=1.1.9,<2.0a0" + zstd: ">=1.5.2,<1.6.0a0" + hash: + md5: d0f2e1124b14533bf95e5e41876a28cb + sha256: 459d723a1b9bf40f0a5a50ebacbf70a690da50904b772a915643359ebf6a71f7 + manager: conda + name: blosc + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/blosc-1.21.1-hdfcada4_3.tar.bz2 + version: 1.21.1 + - category: main + dependencies: + bzip2: ">=1.0.8,<2.0a0" + icu: ">=70.1,<71.0a0" + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + xz: ">=5.2.5,<5.3.0a0" + zstd: ">=1.5.2,<1.6.0a0" + hash: + md5: 5fa87e26d2d1fd9a4adc53de2a8c922d + sha256: 0e0cb2a2984bd6a13f7b8395262d6544e409f9f56f8419fc2be199fcbb5a97fe + manager: conda + name: boost-cpp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/boost-cpp-1.74.0-ha1c1135_8.tar.bz2 + version: 1.74.0 + - category: main + dependencies: + binutils_linux-aarch64: 2.39 h489c705_11 + gcc_impl_linux-aarch64: 10.4.0.* + sysroot_linux-aarch64: "" + hash: + md5: b1c78335925466a0b06b1b7bc1fe6581 + sha256: df733153f5f6a44f7585e54783a9e16e91a40763082ef075c13ddde5fad5f116 + manager: conda + name: gcc_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_linux-aarch64-10.4.0-h72ad2ee_11.tar.bz2 + version: 10.4.0 + - category: main + dependencies: + gcc_impl_linux-aarch64: 10.4.0 h9569200_19 + libstdcxx-devel_linux-aarch64: 10.4.0 h3c6860a_19 + sysroot_linux-aarch64: "" + hash: + md5: e4961cdc774257347d6398ea6dd26f5f + sha256: df210e3cf25aab7b38370427a3299c508ead109afe7ac9167666afd54778d513 + manager: conda + name: gxx_impl_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_impl_linux-aarch64-10.4.0-h9569200_19.tar.bz2 + version: 10.4.0 + - category: main + dependencies: + keyutils: ">=1.6.1,<2.0a0" + libedit: ">=3.1.20191231,<4.0a0" + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + openssl: ">=3.0.0,<4.0a0" + hash: + md5: 2bd56494112a3bffa44ee3292749ea72 + sha256: 68918094dce147767f87859fb06cfb9e4cd0f7908ce7fd911d0df92f2539d936 + manager: conda + name: krb5 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.19.3-h750e270_0.tar.bz2 + version: 1.19.3 + - category: main + dependencies: + libblas: 3.9.0 16_linuxaarch64_openblas + hash: + md5: 520a3ecbebc63239c27dd6f70c2ababe + sha256: c1d4fa9a99475647c7904009c026fe7f9c0b3159b2f7d2bcecac102751104302 + manager: conda + name: libcblas + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-16_linuxaarch64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + libblas: 3.9.0 16_linuxaarch64_openblas + hash: + md5: 62990b2d1efc22d0beb394e893d39541 + sha256: 80a809ce2c965b27d8b8b90753ab01d467b9bf2a66467ca98fc363e4a41da5ec + manager: conda + name: liblapack + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-16_linuxaarch64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 1188278a5d5d65ffa9682997238cdc28 + sha256: dd1655cd234bbc033ea214c00efd5535cbcf187609375d7a603b9080c99c2950 + manager: conda + name: scotch + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/scotch-6.0.9-h07b6642_2.tar.bz2 + version: 6.0.9 + - category: main + dependencies: + libgcc-ng: ">=12" + libsqlite: 3.39.4 hf9034f9_0 + libzlib: ">=1.2.12,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + readline: ">=8.1.2,<9.0a0" + hash: + md5: dd7f00021ca9e6606316410afc9b9c83 + sha256: 347e11e2496a7be3647834d208c196a3fa6822d18307651503ae2a292a76047d + manager: conda + name: sqlite + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/sqlite-3.39.4-h69ca7e5_0.tar.bz2 + version: 3.39.4 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + hash: + md5: a67f7fbd106eceeabfe38266515e2d83 + sha256: b19114b391d4606b78339efd1dbae1eb0ad5ae8cb252b7cf503750f567f31db8 + manager: conda + name: fenics-libbasix + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-libbasix-0.5.1-h8f8c065_0.tar.bz2 + version: 0.5.1 + - category: main + dependencies: + binutils_linux-aarch64: 2.39 h489c705_11 + gcc_linux-aarch64: 10.4.0 h72ad2ee_11 + gxx_impl_linux-aarch64: 10.4.0.* + sysroot_linux-aarch64: "" + hash: + md5: 0a8caf25b6f2df1a03cf6d72c48e207b + sha256: 5ec091348923d1d420c5d572fad583f051cb5cf49f6187d335c3bdd217c80828 + manager: conda + name: gxx_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_linux-aarch64-10.4.0-hb08d869_11.tar.bz2 + version: 10.4.0 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + mpich: ">=4.0.2,<5.0a0" + hash: + md5: b3e9b45fe22bc9fcde4872e5c3e912f5 + sha256: 21f068e9db192b1514b5f70aa5c39f5a09e40023e589a4b6e875361134bf3f78 + manager: conda + name: hypre + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/hypre-2.25.0-mpi_mpich_h59cf75a_0.tar.bz2 + version: 2.25.0 + - category: main + dependencies: + krb5: ">=1.19.3,<1.20.0a0" + libgcc-ng: ">=12" + libnghttp2: ">=1.47.0,<2.0a0" + libssh2: ">=1.10.0,<2.0a0" + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: 4c8399df25d5f2ee14bf3497195c3880 + sha256: 1fd991c3199aa29f884757654930cc37f501464f133cda3954338a2486152de0 + manager: conda + name: libcurl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-7.85.0-h22f3f83_0.tar.bz2 + version: 7.85.0 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + mpich: ">=4.0.1,<5.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 9110c15957ac965b269ef5e3ee55ca01 + sha256: 2aa4945430fa168d8db36980fd58506f2877d7122946517f0387aebf0dfe372d + manager: conda + name: ptscotch + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ptscotch-6.0.9-he18ce4a_2.tar.bz2 + version: 6.0.9 + - category: main + dependencies: + bzip2: ">=1.0.8,<2.0a0" + ld_impl_linux-aarch64: ">=2.36.1" + libffi: ">=3.4.2,<3.5.0a0" + libgcc-ng: ">=12" + libnsl: ">=2.0.0,<2.1.0a0" + libuuid: ">=2.32.1,<3.0a0" + libzlib: ">=1.2.11,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + openssl: ">=3.0.3,<4.0a0" + readline: ">=8.1,<9.0a0" + sqlite: ">=3.38.5,<4.0a0" + tk: ">=8.6.12,<8.7.0a0" + tzdata: "" + xz: ">=5.2.5,<5.3.0a0" + hash: + md5: 55fbf16ae0237bd720c5231734d778dc + sha256: 78fa82abfb77d7316abb639006b02d71c126957c186a4f356b02acdfdade9077 + manager: conda + name: python + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.9.13-h5016f1d_0_cpython.tar.bz2 + version: 3.9.13 + - category: main + dependencies: + libblas: ">=3.8.0,<4.0a0" + libgcc-ng: ">=10.3.0" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + liblapack: ">=3.8.0,<4.0a0" + mpich: ">=4.0.1,<5.0a0" + hash: + md5: 54dfb90ff80052f955439a182d9097aa + sha256: 4aebcc9d18582bab4f8167a5d45ac64abf0e7001a98d68c4694e694d8864acce + manager: conda + name: scalapack + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/scalapack-2.2.0-hf610701_1.tar.bz2 + version: 2.2.0 + - category: main + dependencies: + libblas: ">=3.8.0,<4.0a0" + libcblas: ">=3.8.0,<4.0a0" + libgcc-ng: ">=9.4.0" + liblapack: ">=3.8.0,<4.0a0" + libstdcxx-ng: ">=9.4.0" + metis: ">=5.1.0,<5.2.0a0" + mpfr: ">=4.1.0,<5.0a0" + tbb: ">=2021.3.0" + hash: + md5: 351565b22e92174d1c8040f8544cf618 + sha256: 70601118fd2d53a5b70eebf329bdc8f3182e4b3440840475882c4ba67c1cdb19 + manager: conda + name: suitesparse + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/suitesparse-5.10.1-h1404dd6_1.tar.bz2 + version: 5.10.1 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + hash: + md5: 32ff86b3335def4756143ee4799ca6ce + sha256: edcf67939842a9ed98880580a8e98cb126ee6bce09d328d7a0fc113a846b919c + manager: conda + name: superlu + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/superlu-5.2.2-h4b58547_0.tar.bz2 + version: 5.2.2 + - category: main + dependencies: + _openmp_mutex: ">=4.5" + libblas: ">=3.8.0,<4.0a0" + libgcc-ng: ">=9.4.0" + libgfortran-ng: "" + libgfortran5: ">=9.4.0" + liblapack: ">=3.8.0,<4.0a0" + libstdcxx-ng: ">=9.4.0" + metis: ">=5.1.0,<5.2.0a0" + mpich: ">=3.4.2,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + hash: + md5: 22f25903d703a5587b321b0005a56aee + sha256: 1a6bde62978831a5d847a9382b499715fbb1813f4be9eb7ecf1bb61a50f68e9a + manager: conda + name: superlu_dist + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/superlu_dist-7.2.0-h4e5a0d3_0.tar.bz2 + version: 7.2.0 + - category: main + dependencies: + python: ">=3.6" + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + manager: conda + name: cached_property + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libcurl: ">=7.81.0,<8.0a0" + libgcc-ng: ">=10.3.0" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + mpich: ">=4.0,<4.1.0a0" + openssl: ">=3.0.0,<4.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: e2d47d39a440bf3b9b226178cbc2e9c7 + sha256: bd86ccc6c8b53f429dbb2e3835396f8152808b2e193509dbba278e48680522c9 + manager: conda + name: hdf5 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.12.1-mpi_mpich_hdab57eb_4.tar.bz2 + version: 1.12.1 + - category: main + dependencies: + libblas: ">=3.8.0,<4.0a0" + libgcc-ng: ">=10.3.0" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + liblapack: ">=3.8.0,<4.0a0" + metis: ">=5.1.0,<5.2.0a0" + mpich: ">=4.0.1,<5.0a0" + mumps-include: 5.2.1 h8af1aa0_11 + parmetis: ">=4.0.3,<4.1.0a0" + ptscotch: ">=6.0.9,<6.0.10.0a0" + scalapack: ">=2.2.0,<2.3.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + hash: + md5: 85c3149f51a1d6b9a7a4ec98a8c5d96d + sha256: 9d6e053cda7676011dc355cbc46c91db02482d7cb172c5deefa67c238ec7953e + manager: conda + name: mumps-mpi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mumps-mpi-5.2.1-hf302962_11.tar.bz2 + version: 5.2.1 + - category: main + dependencies: + python: ==2.7.*|>=3.4 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + manager: conda + name: pycparser + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + version: "2.21" + - category: main + dependencies: + python: 3.9.* + hash: + md5: c74e493d773fa544a312b0904abcfbfb + sha256: bed710ed58864219bb5c7742bd00edb206c33c650a89a9e2653a72314d1da95f + manager: conda + name: python_abi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.9-2_cp39.tar.bz2 + version: "3.9" + - category: main + dependencies: + python: ">=3.7" + hash: + md5: 462466739c786f85f9ed555f87099fe1 + sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 + manager: conda + name: setuptools + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 + version: 65.5.0 + - category: main + dependencies: + python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4" + hash: + md5: 1ca02aaf78d9c70d9a81a3bed5752022 + sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc + manager: conda + name: wheel + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 + version: 0.37.1 + - category: main + dependencies: + cached_property: ">=1.5.2,<1.5.3.0a0" + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + manager: conda + name: cached-property + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + pycparser: "" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 445d40d9292678dd66b1af293028119b + sha256: 23e0c4b6719b5c687b5efcb2ee41e91d56266772c939c76307eb629ac035bf94 + manager: conda + name: cffi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.15.1-py39hb26bf21_1.tar.bz2 + version: 1.15.1 + - category: main + dependencies: + blosc: ">=1.21.1,<2.0a0" + bzip2: ">=1.0.8,<2.0a0" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" + libffi: ">=3.4.2,<3.5.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.4.0" + libpng: ">=1.6.37,<1.7.0a0" + libstdcxx-ng: ">=12" + mpich: ">=4.0.2,<5.0a0" + zeromq: ">=4.3.4,<4.4.0a0" + zfp: ">=0.5.5,<1.0a0" + hash: + md5: 3569f9866ed8580acd4411bea2bcb311 + sha256: e3f8149ada34cc61be8de4aad335023046791fc2aa9522acadbefe3a818f007f + manager: conda + name: libadios2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libadios2-2.8.3-mpi_mpich_hd4bf87d_1.tar.bz2 + version: 2.8.3 + - category: main + dependencies: + libgcc-ng: ">=10.3.0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: b21c5481818fb2b3201a139645e4a422 + sha256: fa0ddb086992b79bfcc8a838fba4053291c188f41dff2006d0da5a9caea907f9 + manager: conda + name: markupsafe + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-2.1.1-py39hb9a1dbb_1.tar.bz2 + version: 2.1.1 + - category: main + dependencies: + libgcc-ng: ">=12" + mpich: ">=4.0.2,<5.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: 3833951c4b2b678485eef728241f7478 + sha256: 14a797a022a0c19be8a2f9b64713bd586d04fa0af01f223a8b004b0052c55869 + manager: conda + name: mpi4py + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpi4py-3.1.3-py39h86763dd_2.tar.bz2 + version: 3.1.3 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: c8b3ba394c4749cf8367a5001b0889ae + sha256: 4d60922a58eeaba42888ca020c9d347bf7d15eb8b779dd026cba883f4c10f591 + manager: conda + name: numpy + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.23.4-py39hf5a3166_0.tar.bz2 + version: 1.23.4 + - category: main + dependencies: + fftw: "* mpi_mpich_*" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" + hypre: ">=2.25.0,<2.25.1.0a0" + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + metis: ">=5.1.0,<5.2.0a0" + mpich: ">=4.0.2,<5.0a0" + mumps-mpi: ">=5.2.1,<5.2.2.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + ptscotch: ">=6.0.9,<6.0.10.0a0" + scalapack: ">=2.2.0,<2.3.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + suitesparse: ">=5.10.1,<5.11.0a0" + superlu: "" + superlu_dist: ">=7.1.1,<8.0a0" + yaml: ">=0.2.5,<0.3.0a0" + hash: + md5: 8ece1495bec1abfd4e99e082078d51dd + sha256: 9e17dd56f1040f15f347d4e2fb88443aedb4b2b10e77a4d31664d01f90bf1df7 + manager: conda + name: petsc + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/petsc-3.17.3-real_h7f10f1d_100.tar.bz2 + version: 3.17.3 + - category: main + dependencies: + python: ">=3.7" + setuptools: "" + wheel: "" + hash: + md5: 6f4c6de9fed2a9bd8043283611b09587 + sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 + manager: conda + name: pip + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 + version: "22.3" + - category: main + dependencies: + fenics-libbasix: 0.5.1 h8f8c065_0 + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: "" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: e78456e1e01668ba22148c66efa0772c + sha256: 0823c4835b048d74895d8de4732d8dd35895d9f071514603c9b07d99ef99ec22 + manager: conda + name: fenics-basix + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-basix-0.5.1-py39h110580c_0.tar.bz2 + version: 0.5.1 + - category: main + dependencies: + numpy: "" + python: ">=3.7" + hash: + md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c + sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 + manager: conda + name: fenics-ufl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.2.0 + - category: main + dependencies: + cached-property: "" + hdf5: ">=1.12.1,<1.12.2.0a0" + libgcc-ng: ">=9.4.0" + numpy: ">=1.19.5,<2.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: 7b8dec90fcf2ff496bada02b3ea0059f + sha256: 2b2376f884596ab17582b65f219c2c4113f06ffade0296410e7e4ae9e3e98042 + manager: conda + name: h5py + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/h5py-3.6.0-nompi_py39hbdd1fc2_100.tar.bz2 + version: 3.6.0 + - category: main + dependencies: + markupsafe: ">=2.0" + python: ">=3.7" + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + manager: conda + name: jinja2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + version: 3.1.2 + - category: main + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + mpich: ">=4.0.2,<5.0a0" + numpy: ">=1.19.5,<2.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: b17c07aa2f47be88445987e5593a1bdb + sha256: 52c6bbf4f0faa7420d046a7d8661efbf4f0ddf04031266f908f0efc624747a7e + manager: conda + name: petsc4py + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/petsc4py-3.17.3-real_h23e52e2_101.tar.bz2 + version: 3.17.3 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=10.3.0" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + mpich: ">=4.0.2,<5.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + suitesparse: ">=5.10.1,<5.11.0a0" + hash: + md5: 48e18e21f55d460b6c989d90dd190f51 + sha256: 23924edd3add113cbda03f35075b61bf740af0ea2f126505b085317b5660b7d8 + manager: conda + name: slepc + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/slepc-3.17.1-real_h06ee9b7_102.tar.bz2 + version: 3.17.1 + - category: main + dependencies: + cffi: "" + fenics-basix: 0.5.* + fenics-ufl: 2022.2.* + numpy: "" + python: ">=3.7" + setuptools: "" + hash: + md5: 2dcc01a5199492d95b197d7265f5336a + sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 + manager: conda + name: fenics-ffcx + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 + version: 0.5.0 + - category: main + dependencies: + boost-cpp: ">=1.74.0,<1.74.1.0a0" + fenics-libbasix: ">=0.5.1,<0.5.2.0a0" + fenics-ufcx: ">=0.5.0,<0.5.1.0a0" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" + libadios2: ">=2.8.3,<2.8.4.0a0 mpi_mpich_*" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + mpich: ">=4.0.2,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + ptscotch: ">=6.0.9,<6.0.10.0a0" + pugixml: ">=1.11.4,<1.12.0a0" + slepc: ">=3.17.1,<3.18.0a0 real_*" + xtensor: ">=0.24.3,<0.25.0a0" + hash: + md5: 85ecb2004ee2aa1d6e834c7bdcf3231c + sha256: 9cdad2391446a87dcf5edc846cd5311b20aa576afc2a7f9c2c7c6312566986b7 + manager: conda + name: fenics-libdolfinx + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-libdolfinx-0.5.2-h38c004b_100.tar.bz2 + version: 0.5.2 + - category: main + dependencies: + libgcc-ng: ">=12" + mpich: ">=4.0.2,<5.0a0" + numpy: ">=1.19.5,<2.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + petsc4py: 3.17.* + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + slepc: ">=3.17.1,<3.18.0a0 real_*" + hash: + md5: 0c7428c4cc03a3e9808bb22d4cc3ba77 + sha256: 27e1190e5aae7faa96d90a3473a2b2d501db8ca511ce4e807729a45cd2a7c736 + manager: conda + name: slepc4py + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/slepc4py-3.17.1-real_hc9c61e5_103.tar.bz2 + version: 3.17.1 + - category: main + dependencies: + cffi: "" + fenics-basix: 0.5.* + fenics-ffcx: 0.5.* + fenics-libdolfinx: 0.5.2 h38c004b_100 + fenics-ufl: 2022.2.* + gxx_linux-aarch64: 10.* + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + mpi4py: "" + mpich: ">=4.0.2,<5.0a0" + numpy: "" + petsc: ">=3.17.3,<3.18.0a0 real_*" + petsc4py: "" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + slepc: ">=3.17.1,<3.18.0a0 real_*" + slepc4py: "" + hash: + md5: 494261d67f5a0d62cb841e17dc9033b8 + sha256: df5980a90c7b6d1f8a4d47343ffeefa53fe663612b5e79f1049f2fee5244202d + manager: conda + name: fenics-dolfinx + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-dolfinx-0.5.2-py39h3baed5e_100.tar.bz2 + version: 0.5.2 + - category: main + dependencies: {} + hash: + sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 + manager: pip + name: async-timeout + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl + version: 3.0.1 + - category: main + dependencies: {} + hash: + sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c + manager: pip + name: attrs + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl + version: 22.1.0 + - category: main + dependencies: {} + hash: + sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 + manager: pip + name: cachetools + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl + version: 4.2.4 + - category: main + dependencies: {} + hash: + sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 + manager: pip + name: certifi + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl + version: 2022.9.24 + - category: main + dependencies: {} + hash: + sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 + manager: pip + name: chardet + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl + version: 3.0.4 + - category: main + dependencies: {} + hash: + sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f + manager: pip + name: charset-normalizer + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl + version: 2.1.1 + - category: main + dependencies: {} + hash: + sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 + manager: pip + name: colorama + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl + version: 0.4.6 + - category: main + dependencies: {} + hash: + sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 + manager: pip + name: cycler + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl + version: 0.11.0 + - category: main + dependencies: {} + hash: + sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff + manager: pip + name: distro + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl + version: 1.8.0 + - category: main + dependencies: {} + hash: + sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d + manager: pip + name: future + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz + version: 0.18.2 + - category: main + dependencies: {} + hash: + sha256: 0aa1845944e62f358d63fcc911ad3b415f585612946b8edc824825929b40e59e + manager: pip + name: greenlet + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/22/3b/3dece5270095aa5b108553880a7630888f9d43e1197cc0d3b4dcd3ccfed1/greenlet-1.1.3.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.1.3.post0 + - category: main + dependencies: {} + hash: + sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 + manager: pip + name: idna + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl + version: "3.4" + - category: main + dependencies: {} + hash: + sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f + manager: pip + name: jmespath + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl + version: 0.10.0 + - category: main + dependencies: {} + hash: + sha256: bc8d3bd6c72b2dd9decf16ce70e20abcb3274ba01b4e1c96031e0c4067d1e7cd + manager: pip + name: kiwisolver + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/4d/91/08eaa0f13fe644ae913cb157e9599ce64b64a99620df3beb0b142690e264/kiwisolver-1.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.4.4 + - category: main + dependencies: {} + hash: + sha256: 07a017cfa00c9890011628eab2503bee5872f27144936a52eaab449be5eaf032 + manager: pip + name: multidict + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/00/6f/05e5612827715de18f36a8e36fb373f58621927691213cc3f88dc24524b3/multidict-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 6.0.2 + - category: main + dependencies: {} + hash: + sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 + manager: pip + name: nest-asyncio + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl + version: 1.5.6 + - category: main + dependencies: {} + hash: + sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d + manager: pip + name: networkx + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl + version: 2.8.7 + - category: main + dependencies: {} + hash: + sha256: ea98f633d45f7e815db648fd7ff0f19e328302ac36427343e4432c84432e7ff4 + manager: pip + name: pillow + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/5b/a4/68e210389f3744043e0ce543d4eb81fe8d7be5462d1c7ac2e59d620991c4/Pillow-9.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 9.2.0 + - category: main + dependencies: {} + hash: + sha256: 33e632d0885b95a8b97165899006c40e9ecdc634a529dca7b991eb7de4ece41c + manager: pip + name: psycopg2-binary + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/8c/45/77147700f5088efaf9235a3a62b611b594d477a5c5613b5316d0ebd18be0/psycopg2-binary-2.9.5.tar.gz + version: 2.9.5 + - category: main + dependencies: {} + hash: + sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc + manager: pip + name: pyparsing + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl + version: 3.0.9 + - category: main + dependencies: {} + hash: + sha256: d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96 + manager: pip + name: pyrsistent + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/42/ac/455fdc7294acc4d4154b904e80d964cc9aae75b087bbf486be04df9f2abd/pyrsistent-0.18.1.tar.gz + version: 0.18.1 + - category: main + dependencies: {} + hash: + sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 + manager: pip + name: pytz + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl + version: "2022.5" + - category: main + dependencies: {} + hash: + sha256: d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803 + manager: pip + name: pyyaml + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/21/67/b42191239c5650c9e419c4a08a7a022bbf1abf55b0391c380a72c3af5462/PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: "6.0" + - category: main + dependencies: {} + hash: + sha256: bf9a6bc4a0221538b1a7de3ed7bca4c93c02346853f44e1cd764be0023cd3640 + manager: pip + name: ruamel.yaml.clib + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/ff/66/4c05485243e24c6db5d7305063304c410b5539577becc89e4539d2897e41/ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux2014_aarch64.whl + version: 0.2.7 + - category: main + dependencies: {} + hash: + sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 + manager: pip + name: semver + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl + version: 2.13.0 + - category: main + dependencies: {} + hash: + sha256: dc82050f78bfed95af20683a10bb2a0caf8c3c798aa2ccd43099f338baa2ec55 + manager: pip + name: simpleitk + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/4c/52/2eee8d90c5a55aee778e7eb29945b27f44e63cfb9b920c5a97fb40af25aa/SimpleITK-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 2.2.0 + - category: main + dependencies: {} + hash: + sha256: d74ee72b5071818a1a5dab47338e87f08a738cb938a3b0653b9e4d959ddd1fd9 + manager: pip + name: simplejson + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/69/9c/c7f7f8ff38678626bd548518470d23a8f87dd696dd9bb5a98f6712d9707f/simplejson-3.17.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 3.17.6 + - category: main + dependencies: {} + hash: + sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 + manager: pip + name: six + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl + version: 1.16.0 + - category: main + dependencies: {} + hash: + sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e + manager: pip + name: typing-extensions + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl + version: 4.4.0 + - category: main + dependencies: {} + hash: + sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 + manager: pip + name: urllib3 + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl + version: 1.26.12 + - category: main + dependencies: + numpy: ">=1.7.1" + hash: + sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 + manager: pip + name: glymur + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz + version: 0.8.19 + - category: main + dependencies: + numpy: "*" + pillow: ">=8.3.2" + hash: + sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 + manager: pip + name: imageio + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl + version: 2.22.2 + - category: main + dependencies: + attrs: ">=17.4.0" + pyrsistent: ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + hash: + sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 + manager: pip + name: jsonschema + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl + version: 4.16.0 + - category: main + dependencies: + pyparsing: ">=2.0.2,<3.0.5 || >3.0.5" + hash: + sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 + manager: pip + name: packaging + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl + version: "21.3" + - category: main + dependencies: + numpy: ">=1.4" + six: "*" + hash: + sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 + manager: pip + name: patsy + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl + version: 0.5.3 + - category: main + dependencies: + numpy: ">=1.11.1" + hash: + sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 + manager: pip + name: pynrrd + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl + version: 0.4.3 + - category: main + dependencies: + six: ">=1.5" + hash: + sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 + manager: pip + name: python-dateutil + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl + version: 2.8.2 + - category: main + dependencies: + numpy: ">=1.17.3" + hash: + sha256: 030670a213ee8fefa56f6387b0c8e7d970c7f7ad6850dc048bd7c89364771b9b + manager: pip + name: pywavelets + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/34/c0/a121306b618af45ff7d769e1bd45ed3d6c798dc7f0094e0b56735388d96e/PyWavelets-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.4.1 + - category: main + dependencies: + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<3" + idna: ">=2.5,<4" + urllib3: ">=1.21.1,<1.27" + hash: + sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 + manager: pip + name: requests + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl + version: 2.28.1 + - category: main + dependencies: + ruamel.yaml.clib: ">=0.2.6" + hash: + sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 + manager: pip + name: ruamel.yaml + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl + version: 0.17.21 + - category: main + dependencies: + numpy: ">=1.18.5,<1.26.0" + hash: + sha256: 4db5b30849606a95dcf519763dd3ab6fe9bd91df49eba517359e450a7d80ce2e + manager: pip + name: scipy + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/b5/67/c5451465ec94e654e6315cd5136961d267ae94a0f799b85d26eb9efe4c9f/scipy-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.9.3 + - category: main + dependencies: + greenlet: "!=0.4.17" + hash: + sha256: 723e3b9374c1ce1b53564c863d1a6b2f1dc4e97b1c178d9b643b191d8b1be738 + manager: pip + name: sqlalchemy + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/06/9b/a25769c4fce57ccea6bba96fa32216dea6d6c7d3dd03524c522c8b342f64/SQLAlchemy-1.4.42-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.4.42 + - category: main + dependencies: + colorama: "*" + hash: + sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 + manager: pip + name: tqdm + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl + version: 4.64.1 + - category: main + dependencies: + idna: ">=2.0" + multidict: ">=4.0" + hash: + sha256: fae37373155f5ef9b403ab48af5136ae9851151f7aacd9926251ab26b953118b + manager: pip + name: yarl + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/28/c9/b4cc0b0841fc171ac830e27237da036a5085691f47135122481824bc9c5d/yarl-1.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.8.1 + - category: main + dependencies: + async-timeout: ">=3.0,<4.0" + attrs: ">=17.3.0" + chardet: ">=2.0,<4.0" + multidict: ">=4.5,<7.0" + typing-extensions: ">=3.6.5" + yarl: ">=1.0,<2.0" + hash: + sha256: 58c62152c4c8731a3152e7e650b29ace18304d086cb5552d317a54ff2749d32a + manager: pip + name: aiohttp + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/1c/5a/a25ed130426369824c2360b1ec0e59dd2b97efb7fba2c6a39a1f2e396d98/aiohttp-3.7.4-cp39-cp39-manylinux2014_aarch64.whl + version: 3.7.4 + - category: main + dependencies: + jmespath: ">=0.7.1,<1.0.0" + python-dateutil: ">=2.1,<3.0.0" + urllib3: ">=1.25.4,<1.27" + hash: + sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b + manager: pip + name: botocore + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl + version: 1.20.112 + - category: main + dependencies: + packaging: ">=17.0" + hash: + sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 + manager: pip + name: marshmallow + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl + version: 3.18.0 + - category: main + dependencies: + cycler: ">=0.10" + kiwisolver: ">=1.0.1" + numpy: ">=1.16" + pillow: ">=6.2.0" + pyparsing: ">=2.2.1" + python-dateutil: ">=2.7" + hash: + sha256: 85f191bb03cb1a7b04b5c2cca4792bef94df06ef473bc49e2818105671766fee + manager: pip + name: matplotlib + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/36/25/e71e3803e45522ea1a97757701a8d4cf2356d28fcf182cd749aaba01840e/matplotlib-3.4.2-cp39-cp39-manylinux2014_aarch64.whl + version: 3.4.2 + - category: main + dependencies: + numpy: ">=1.13.3" + packaging: "*" + hash: + sha256: b127b0d0e1665b94adcc658c5f9d688ac4903ef81da5d8f4e956c995cf69d5c7 + manager: pip + name: numexpr + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/84/94/ba5479f46a1b2d7c12e2943e010db4619f2bf979703d3615bac95db3d56d/numexpr-2.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 2.8.3 + - category: main + dependencies: + numpy: ">=1.20.3" + python-dateutil: ">=2.8.1" + pytz: ">=2020.1" + hash: + sha256: 5cee0c74e93ed4f9d39007e439debcaadc519d7ea5c0afc3d590a3a7b2edf060 + manager: pip + name: pandas + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/93/a8/0174b2f33e3450140bb32a7208aed3b629afb83e92e82a89203e8e35eec7/pandas-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.5.1 + - category: main + dependencies: + requests: ">=2.0.1,<3.0.0" + hash: + sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 + manager: pip + name: requests-toolbelt + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl + version: 0.10.1 + - category: main + dependencies: + distro: "*" + packaging: "*" + hash: + sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 + manager: pip + name: scikit-build + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl + version: 0.15.0 + - category: main + dependencies: + marshmallow: ">=3.0.0,<4.0" + numpy: "*" + pyyaml: "*" + hash: + sha256: 38cceff1d3bb4ecf0eebb2a6ea46b99c418e9bd94b5acaec95d9307731360bbc + manager: pip + name: argschema + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/e9/43/91c96e0b69f86c7076989ef97bc1687ed427ddacd1dd1c7010b5c330d611/argschema-3.0.4.tar.gz + version: 3.0.4 + - category: main + dependencies: + h5py: ">=2.10,<4" + jsonschema: ">=2.6.0,<5" + numpy: ">=1.16,<1.24" + pandas: ">=1.0.5,<2" + ruamel.yaml: ">=0.16,<1" + scipy: ">=1.1,<2" + hash: + sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d + manager: pip + name: hdmf + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl + version: 3.4.6 + - category: main + dependencies: + botocore: ">=1.12.36,<2.0a.0" + hash: + sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 + manager: pip + name: s3transfer + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl + version: 0.3.7 + - category: main + dependencies: + imageio: ">=2.3.0" + matplotlib: ">=2.0.0,<3.0.0 || >3.0.0" + networkx: ">=2.0" + pillow: ">=4.3.0" + pywavelets: ">=0.4.0" + scipy: ">=0.19.0" + hash: + sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c + manager: pip + name: scikit-image + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz + version: 0.16.2 + - category: main + dependencies: + matplotlib: ">=3.1,<3.6.1 || >3.6.1" + numpy: ">=1.17" + pandas: ">=0.25" + hash: + sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 + manager: pip + name: seaborn + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl + version: 0.12.1 + - category: main + dependencies: + numpy: ">=1.17" + pandas: ">=0.25" + patsy: ">=0.5.2" + scipy: ">=1.3" + hash: + sha256: f2efc02011b7240a9e851acd76ab81150a07d35c97021cb0517887539a328f8a + manager: pip + name: statsmodels + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/9e/5e/4a2ade283411d1f46d6f8dd5fe951b9152062d55a20750cd5d4b556322bf/statsmodels-0.13.0.tar.gz + version: 0.13.0 + - category: main + dependencies: + numexpr: ">=2.6.2" + numpy: ">=1.9.3" + hash: + sha256: 49a972b8a7c27a8a173aeb05f67acb45fe608b64cd8e9fa667c0962a60b71b49 + manager: pip + name: tables + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/2b/32/847ee3f521aae6a0be380d923a736162d698586f444df1ac24b98c65025c/tables-3.6.1.tar.gz + version: 3.6.1 + - category: main + dependencies: + numpy: ">=1.15" + pandas: ">=0.25" + hash: + sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d + manager: pip + name: xarray + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl + version: 0.15.1 + - category: main + dependencies: + botocore: ">=1.20.21,<1.21.0" + jmespath: ">=0.7.1,<1.0.0" + s3transfer: ">=0.3.0,<0.4.0" + hash: + sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 + manager: pip + name: boto3 + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl + version: 1.17.21 + - category: main + dependencies: + h5py: ">=2.10,<4" + hdmf: ">=3.4.2,<4" + numpy: ">=1.16,<1.24" + pandas: ">=1.1.5,<2" + python-dateutil: ">=2.7.3,<3" + hash: + sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f + manager: pip + name: pynwb + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl + version: 2.2.0 + - category: main + dependencies: + pynwb: ">=1.1.2" + hash: + sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af + manager: pip + name: ndx-events + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl + version: 0.2.0 + - category: main + dependencies: + aiohttp: 3.7.4 + argschema: ">=3.0.1,<4.0.0" + boto3: 1.17.21 + cachetools: ">=4.2.1,<5.0.0" + future: ">=0.14.3,<1.0.0" + glymur: 0.8.19 + h5py: "*" + hdmf: ">=2.5.8" + jinja2: ">=3.0.0" + matplotlib: ">=1.4.3,<3.4.3" + ndx-events: <=0.2.0 + nest-asyncio: "*" + numpy: "*" + pandas: ">=1.1.5" + psycopg2-binary: ">=2.7,<3.0.0" + pynrrd: ">=0.2.1,<1.0.0" + pynwb: "*" + requests: <3.0.0 + requests-toolbelt: <1.0.0 + scikit-build: <1.0.0 + scikit-image: ">=0.14.0,<0.17.0" + scipy: ">=1.4.0,<2.0.0" + seaborn: <1.0.0 + semver: "*" + simpleitk: ">=2.0.2,<3.0.0" + simplejson: ">=3.10.0,<4.0.0" + six: ">=1.9.0,<2.0.0" + sqlalchemy: "*" + statsmodels: <=0.13.0 + tables: ">=3.6.0,<3.7.0" + tqdm: ">=4.27" + xarray: <0.16.0 + hash: + sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 + manager: pip + name: allensdk + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl + version: 2.13.6 + - category: main + dependencies: {} + hash: + md5: 37edc4e6304ca87316e160f5ca0bd1b5 + sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 + manager: conda + name: bzip2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 + version: 1.0.8 + - category: main + dependencies: {} + hash: + md5: 00b3e98a61e6430808fe7a2534681f28 + sha256: 1cb663c9916aab52a90a80505fec8c1a89fab21f58f3c5a949a2f286e92cb16c + manager: conda + name: c-ares + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.18.1-h0d85af4_0.tar.bz2 + version: 1.18.1 + - category: main + dependencies: {} + hash: + md5: 67b268c32433047914482def1ce215c2 + sha256: e1c929207f8a8e03fa86150c3b446f3511f35b2146d3031de305088c3b148c58 + manager: conda + name: ca-certificates + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2022.9.24-h033912b_0.tar.bz2 + version: 2022.9.24 + - category: main + dependencies: {} + hash: + md5: a0a531df6bf6663607dc77722ae522d6 + sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f + manager: conda + name: fenics-ufcx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 + version: 0.5.0 + - category: main + dependencies: {} + hash: + md5: 208a6a874b073277374de48a782f6b10 + sha256: ebb75dd9f854b1f184a98d0b9128a3faed6cd2f05f83677e1f399c253580afe7 + manager: conda + name: libcxx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-14.0.6-hccf4f1f_0.tar.bz2 + version: 14.0.6 + - category: main + dependencies: {} + hash: + md5: 79dc2be110b2a3d1e97ec21f691c50ad + sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b + manager: conda + name: libev + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2 + version: "4.33" + - category: main + dependencies: {} + hash: + md5: ccb34fb14960ad8b125962d3d79b31a9 + sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f + manager: conda + name: libffi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + version: 3.4.2 + - category: main + dependencies: {} + hash: + md5: 24632c09ed931af617fe6d5292919cab + sha256: 2da45f14e3d383b4b9e3a8bacc95cd2832aac2dbf9fbc70d255d384a310c5660 + manager: conda + name: libsodium + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 + version: 1.0.18 + - category: main + dependencies: {} + hash: + md5: 35eb3fce8d51ed3c1fd4122bad48250b + sha256: 0d954350222cc12666a1f4852dbc9bcf4904d8e467d29505f2b04ded6518f890 + manager: conda + name: libzlib + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-hfd90126_4.tar.bz2 + version: 1.2.13 + - category: main + dependencies: {} + hash: + md5: 5d5ab9ab83ce21422be84ecfd3142201 + sha256: dfe2fa815471c2638a009eb47969605730d92c3af3f183295587e34f996d2f30 + manager: conda + name: llvm-openmp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-14.0.4-ha654fa7_0.tar.bz2 + version: 14.0.4 + - category: main + dependencies: {} + hash: + md5: ed90f7784864e7c0580624ec3ed5534e + sha256: 7a71e06bc0ee0d95483c49de11e4a72bf29045b93b5d835bb7adbddb839c7b98 + manager: conda + name: metis + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.0-h2e338ed_1006.tar.bz2 + version: 5.1.0 + - category: main + dependencies: {} + hash: + md5: 7316a634ed27146b42d28433ec3bc227 + sha256: f6ed94ef0df7992198eba976af4d509863acd2911964501d263eef8b44521da6 + manager: conda + name: mpi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mpi-1.0-mpich.tar.bz2 + version: "1.0" + - category: main + dependencies: {} + hash: + md5: ed3d032dc307436df39ff27f34ab7ab8 + sha256: 7f7e34fb9bcbbe5460dd2f3d3c46335917f693b84f4d1af78d4c5080e800d45d + manager: conda + name: mumps-include + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mumps-include-5.2.1-h694c41f_11.tar.bz2 + version: 5.2.1 + - category: main + dependencies: {} + hash: + md5: 76217ebfbb163ff2770a261f955a5861 + sha256: 9794a23d03586c99cac49d4ae3d5337faaa6bfc256b31d2662ff4ad5972be143 + manager: conda + name: ncurses + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.3-h96cf925_1.tar.bz2 + version: "6.3" + - category: main + dependencies: {} + hash: + md5: b6bd89cf71494c41a181cac13cc5a8ea + sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 + manager: conda + name: tzdata + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 + version: 2022e + - category: main + dependencies: {} + hash: + md5: a72f9d4ea13d55d745ff1ed594747f10 + sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 + manager: conda + name: xz + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + version: 5.2.6 + - category: main + dependencies: {} + hash: + md5: d7e08fcf8259d742156188e8762b4d20 + sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 + manager: conda + name: yaml + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + version: 0.2.5 + - category: main + dependencies: + libcxx: ">=10.0.1" + hash: + md5: dedc96914428dae572a39e69ee2a392f + sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 + manager: conda + name: gmp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2 + version: 6.2.1 + - category: main + dependencies: + libcxx: ">=12.0.1" + hash: + md5: 376635049e9b9b0bb875efd39dcd7b3b + sha256: 0807aa3fd93804ab239808d149e7f210a83e1c61bc59bb84818f4ef9f6036d86 + manager: conda + name: icu + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/icu-70.1-h96cf925_0.tar.bz2 + version: "70.1" + - category: main + dependencies: + ncurses: ">=6.2,<7.0.0a0" + hash: + md5: 6016a8a1d0e63cac3de2c352cd40208b + sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 + manager: conda + name: libedit + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + version: 3.1.20191231 + - category: main + dependencies: + llvm-openmp: ">=8.0.0" + hash: + md5: 2c8fd85ee58fc04f8cc52aaa28bceca3 + sha256: 599cade7d68b6bd1b79db1b0ab24cdfd0b310c47e74d1f55c78761eb66e0e62f + manager: conda + name: libgfortran5 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-11.3.0-h082f757_25.tar.bz2 + version: 11.3.0 + - category: main + dependencies: + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: 3954555b5b02b117119cb806d5dcfcd8 + sha256: 8bcc76d644202cde53252a2274f8a3fe28650ba273148ce027337c576276d6f3 + manager: conda + name: libpng + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.38-ha978bb4_0.tar.bz2 + version: 1.6.38 + - category: main + dependencies: + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: 28060fa753417bdd4e66da2048951dd1 + sha256: 3fc6bd39468480b12166b4450731f6a517780590aa3cbfcd812f71b4c9a6946b + manager: conda + name: libsqlite + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.39.4-ha978bb4_0.tar.bz2 + version: 3.39.4 + - category: main + dependencies: + libcxx: ">=11.1.0" + hash: + md5: 05c08241b66631c00ca4f9e0b75320bc + sha256: 627c435c511e789ed04e0e2077fdfc645117474c4d1c4a7c0d31241936632cd4 + manager: conda + name: lz4-c + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.3-he49afe7_1.tar.bz2 + version: 1.9.3 + - category: main + dependencies: + ca-certificates: "" + hash: + md5: 8a98a203c03d3d252f5ba9fa2d04210e + sha256: 62c98f552278a40ae3ee45baad1dbcd84aa6d1d657abc7b26618823c2c1efb76 + manager: conda + name: openssl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.0.5-hfd90126_2.tar.bz2 + version: 3.0.5 + - category: main + dependencies: + libcxx: ">=11.1.0" + hash: + md5: 69d67c7202c11a51cc0e7f9cda7e49b2 + sha256: f487ea4b425515cd2df5197fa7fe4e06d7f64aabef58cefca1212c02f8958835 + manager: conda + name: pugixml + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.11.4-he49afe7_0.tar.bz2 + version: 1.11.4 + - category: main + dependencies: + ncurses: ">=6.3,<7.0a0" + hash: + md5: 89fa404901fa8fb7d4f4e07083b8d635 + sha256: c65dc1200a252832db49bdd6836c512a0eaafe97aa914b9f8358b15eebb1d94b + manager: conda + name: readline + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.1.2-h3899abd_0.tar.bz2 + version: 8.1.2 + - category: main + dependencies: + libcxx: ">=13.0.1" + hash: + md5: ffa92d111ec90eec8ffc09220a9c5aba + sha256: 646a0a0cfa679272f8c4794767cf18d61eb138236e9a7b779b6cdd10031a06ec + manager: conda + name: snappy + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.9-h6e38e02_1.tar.bz2 + version: 1.1.9 + - category: main + dependencies: + libcxx: ">=14.0.4" + hash: + md5: e08aeee1188c571aae0b1e8dd11d3fa4 + sha256: 2cad82d40670efb65f4f4a4797ea6c2d73e48858379bce413b57588118e4fa13 + manager: conda + name: tbb + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.6.0-hb8565cd_0.tar.bz2 + version: 2021.6.0 + - category: main + dependencies: + libzlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 8e9480d9c47061db2ed1b4ecce519a7f + sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 + manager: conda + name: tk + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 + version: 8.6.12 + - category: main + dependencies: + libcxx: ">=11.1.0" + hash: + md5: 45ee043093c71ebfc417afe577d4ee32 + sha256: 05b3ccdcd3083fda9417929b595c93e1edde66c97f2f3dc04f7455ab7f64d5a0 + manager: conda + name: xtl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xtl-0.7.4-h940c156_0.tar.bz2 + version: 0.7.4 + - category: main + dependencies: + libcxx: ">=11.1.0" + libsodium: ">=1.0.18,<1.0.19.0a0" + hash: + md5: 1972d732b123ed04b60fd21e94f0b178 + sha256: 991e2b42908c5793fe42a78272e6bd5e6412636274500b846991d0f3e5126952 + manager: conda + name: zeromq + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.4-he49afe7_1.tar.bz2 + version: 4.3.4 + - category: main + dependencies: + libcxx: ">=11.1.0" + llvm-openmp: ">=11.1.0" + hash: + md5: faa14d931b1e190945b8fdf18e0d0b97 + sha256: 5705e4756ce9f48020b2d20949efaa0b159e04220973dfaecb42c85165e40124 + manager: conda + name: zfp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zfp-0.5.5-h4a89273_8.tar.bz2 + version: 0.5.5 + - category: main + dependencies: + libzlib: 1.2.13 hfd90126_4 + hash: + md5: be90e6223c74ea253080abae19b3bdb1 + sha256: 9db69bb5fc3e19093b550e25d1158cdf82f4f8eddc1f80f8d7d9de33eb8535a4 + manager: conda + name: zlib + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-hfd90126_4.tar.bz2 + version: 1.2.13 + - category: main + dependencies: + libcxx: ">=13.0.1" + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: 0b446e84f3ccf085e590dc1f73eebe3f + sha256: acf19719a0a4b7534532166f84346709fdb8ccf960bc6c19ac3b437177e95dde + manager: conda + name: zstd + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hfa58983_4.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libcxx: ">=13.0.1" + libzlib: ">=1.2.11,<1.3.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + snappy: ">=1.1.9,<2.0a0" + zstd: ">=1.5.2,<1.6.0a0" + hash: + md5: c7bcd688fb5236757648a8b85b8fb7f0 + sha256: 518057cef4b20f86ea7df4000e2a69fd87da4f9924d9e52d89517b0c200d3cf3 + manager: conda + name: blosc + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.1-h97e831e_3.tar.bz2 + version: 1.21.1 + - category: main + dependencies: + bzip2: ">=1.0.8,<2.0a0" + icu: ">=70.1,<71.0a0" + libcxx: ">=12.0.1" + libzlib: ">=1.2.11,<1.3.0a0" + xz: ">=5.2.5,<5.3.0a0" + zstd: ">=1.5.2,<1.6.0a0" + hash: + md5: a89e9eda1dea07f884c11a7e958f72d2 + sha256: 02e38c2a0ccbf173a23338b82e4fa32aa1161b96b89b987151699f47e9d0cc3b + manager: conda + name: boost-cpp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/boost-cpp-1.74.0-h8b082ac_8.tar.bz2 + version: 1.74.0 + - category: main + dependencies: + libcxx: ">=12.0.1" + libedit: ">=3.1.20191231,<4.0a0" + openssl: ">=3.0.0,<4.0a0" + hash: + md5: 8acf20165e07870bc65510a363ff45bb + sha256: 7f4de03413501f22f287a9fad86710de0f47b459ecf08026257e9a49d7c93428 + manager: conda + name: krb5 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.19.3-hb98e516_0.tar.bz2 + version: 1.19.3 + - category: main + dependencies: + libgfortran5: "" + hash: + md5: 5258ded23560cdebf95cef1df827065b + sha256: d8157284166a69cd12e43a75da5a135d529c899428201314902a4d4992afa7b1 + manager: conda + name: libgfortran + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-10_4_0_h97931a8_25.tar.bz2 + version: 5.0.0 + - category: main + dependencies: + c-ares: ">=1.18.1,<2.0a0" + libcxx: ">=13.0.1" + libev: ">=4.33,<4.34.0a0" + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: 19d5ae4be3e4b3cfa5696f3667e8c631 + sha256: 9e14d62e4462e6be28bcaa266f69e96ead43f4d7ef566e9cd460dbc9ae999daf + manager: conda + name: libnghttp2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.47.0-h5aae05b_1.tar.bz2 + version: 1.47.0 + - category: main + dependencies: + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: 5a28624eeb7812b585b9e2d75f846ba2 + sha256: 3261dc7fa9cb928e8a0da4857b89bdd3e965766a6cd5b6456d4407cba6b25402 + manager: conda + name: libssh2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.10.0-h47af595_3.tar.bz2 + version: 1.10.0 + - category: main + dependencies: + gmp: ">=6.2.1,<7.0a0" + hash: + md5: afe26b08c2d2265b4d663d199000e5da + sha256: 68e2d7c06f438f7179b9b0c6f826a33a29c6580233a1e60fa71d4da260d70b8f + manager: conda + name: mpfr + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.1.0-h0f52abe_1.tar.bz2 + version: 4.1.0 + - category: main + dependencies: + libzlib: ">=1.2.11,<1.3.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 201a64c35a3b3ce59b56a33f08c7a70e + sha256: f7cd07fbfe7a9cbb25a6e1c62c30ca3d821040f9c312c7e95df6895dc4203aef + manager: conda + name: scotch + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/scotch-6.0.9-h3da7401_2.tar.bz2 + version: 6.0.9 + - category: main + dependencies: + libsqlite: 3.39.4 ha978bb4_0 + libzlib: ">=1.2.12,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + readline: ">=8.1.2,<9.0a0" + hash: + md5: 14e2dbb73e122e10858790f664d9636b + sha256: af69137ec8e4dd85adb4f779cdf034022fff952bc09809c2a95b6b9026f48095 + manager: conda + name: sqlite + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.39.4-h9ae0607_0.tar.bz2 + version: 3.39.4 + - category: main + dependencies: + libcxx: ">=13.0.1" + xtl: ">=0.7,<0.8" + hash: + md5: cf8d39e9092afb19ac1b02f01059ef7e + sha256: 92c3e01c92a9a5505edfbde24bf496dd1bfd9203604f4059e67de08fde162b31 + manager: conda + name: xtensor + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xtensor-0.24.3-h1b54a9f_0.tar.bz2 + version: 0.24.3 + - category: main + dependencies: + krb5: ">=1.19.3,<1.20.0a0" + libnghttp2: ">=1.47.0,<2.0a0" + libssh2: ">=1.10.0,<2.0a0" + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: 5a240143d8ce7a28eec379f392b30a98 + sha256: 5f571a3827183a19ecaef242ef13b99df55df504a9224ee4ca2080f0d4475c64 + manager: conda + name: libcurl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-7.85.0-h581aaea_0.tar.bz2 + version: 7.85.0 + - category: main + dependencies: + libgfortran: 5.* + libgfortran5: ">=11.3.0" + llvm-openmp: ">=14.0.4" + hash: + md5: 968c46aa7f4032c3f3873f3452ed4c34 + sha256: a5a0b6ccef165ffb38e6a53e7b8808e33c77e081174315d2333ae93b593ae957 + manager: conda + name: libopenblas + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.21-openmp_h429af6e_3.tar.bz2 + version: 0.3.21 + - category: main + dependencies: + libcxx: ">=12.0.1" + libgfortran: 5.* + libgfortran5: ">=9.3.0" + mpi: 1.0 mpich + hash: + md5: a479ded6dab88ffcc3039f33b5bdd403 + sha256: 2e8ee7be41fb3b044780055737ae7745c3b0cd77bcb3cda762883a8342e6c46c + manager: conda + name: mpich + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mpich-4.0.2-hd33e60e_100.tar.bz2 + version: 4.0.2 + - category: main + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libffi: ">=3.4.2,<3.5.0a0" + libzlib: ">=1.2.11,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + openssl: ">=3.0.3,<4.0a0" + readline: ">=8.1,<9.0a0" + sqlite: ">=3.38.5,<4.0a0" + tk: ">=8.6.12,<8.7.0a0" + tzdata: "" + xz: ">=5.2.5,<5.3.0a0" + hash: + md5: c3c4e87be5a78529972f2fa99c9e9938 + sha256: cbbb0a8b3cbdf0f12a561b8de8e580f214703ba7313dbaf84425d63acdd48c79 + manager: conda + name: python + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.9.13-hf8d34f4_0_cpython.tar.bz2 + version: 3.9.13 + - category: main + dependencies: + python: ">=3.6" + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + manager: conda + name: cached_property + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libcxx: ">=14.0.4" + libgfortran: 5.* + libgfortran5: ">=11.3.0" + llvm-openmp: ">=14.0.4" + mpich: ">=4.0.2,<5.0a0" + hash: + md5: 2b599ad54149140ea1bcb4e3a961ec3a + sha256: 0413d390935149c547fa895917702385b12a089483018b1510332c080ddba8b9 + manager: conda + name: fftw + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-mpi_mpich_h4a8b384_5.tar.bz2 + version: 3.3.10 + - category: main + dependencies: + libcurl: ">=7.81.0,<8.0a0" + libcxx: ">=12.0.1" + libgfortran: 5.* + libgfortran5: ">=9.3.0" + libzlib: ">=1.2.11,<1.3.0a0" + mpich: ">=4.0,<4.1.0a0" + openssl: ">=3.0.0,<4.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: dae7f3dd297d0bfb862ae8066d8d245e + sha256: 95279d5482f32d8b2d1a1c945b00905577bd6ecab32b220a1220fda03a51a6d5 + manager: conda + name: hdf5 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.1-mpi_mpich_h611ac81_4.tar.bz2 + version: 1.12.1 + - category: main + dependencies: + libopenblas: ">=0.3.21,<1.0a0" + hash: + md5: 644d63e9379867490b67bace400b2a0f + sha256: 7678dab49b552957ddfa1fc5ddf3a09963c788bca81adb0cd9626f6385e205c5 + manager: conda + name: libblas + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-16_osx64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + libcxx: ">=11.1.0" + mpich: ">=3.4,<5.0.0a0" + hash: + md5: 93c34a9e24211ed262743444fd187f4d + sha256: 60bd23c0ad4e5e20eb31419878c76385909f0e3ec115db44f9b04d64efb3bff8 + manager: conda + name: parmetis + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-hb7fa8f8_1005.tar.bz2 + version: 4.0.3 + - category: main + dependencies: + libzlib: ">=1.2.11,<1.3.0a0" + mpich: ">=4.0.1,<5.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: fad5880e9a67a2254babb5d77e63005f + sha256: 0a6d786d07b3ffe60c27e0a747251c8ea524f366d7a3fb49d37d13c839d59d6d + manager: conda + name: ptscotch + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ptscotch-6.0.9-h4f3afa6_2.tar.bz2 + version: 6.0.9 + - category: main + dependencies: + python: ==2.7.*|>=3.4 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + manager: conda + name: pycparser + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + version: "2.21" + - category: main + dependencies: + python: 3.9.* + hash: + md5: 262f557ee8ca777fe2190956038024cd + sha256: 684ad12c7e7f92aa2794c45c3a0e0f6a0c0e6251819126c065ee0d0b4da166dc + manager: conda + name: python_abi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.9-2_cp39.tar.bz2 + version: "3.9" + - category: main + dependencies: + python: ">=3.7" + hash: + md5: 462466739c786f85f9ed555f87099fe1 + sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 + manager: conda + name: setuptools + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 + version: 65.5.0 + - category: main + dependencies: + python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4" + hash: + md5: 1ca02aaf78d9c70d9a81a3bed5752022 + sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc + manager: conda + name: wheel + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 + version: 0.37.1 + - category: main + dependencies: + cached_property: ">=1.5.2,<1.5.3.0a0" + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + manager: conda + name: cached-property + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libffi: ">=3.4,<4.0a0" + pycparser: "" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 029c635f39bd179fce3e843636ddd4d1 + sha256: 9028d750f093d885506a9d6eb8ba1f663afc5bceab9e187a4a53360df5b9569c + manager: conda + name: cffi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py39h131948b_1.tar.bz2 + version: 1.15.1 + - category: main + dependencies: + blosc: ">=1.21.1,<2.0a0" + bzip2: ">=1.0.8,<2.0a0" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" + libcxx: ">=14.0.4" + libffi: ">=3.4.2,<3.5.0a0" + libpng: ">=1.6.37,<1.7.0a0" + mpich: ">=4.0.2,<5.0a0" + zeromq: ">=4.3.4,<4.4.0a0" + zfp: ">=0.5.5,<1.0a0" + hash: + md5: 34dab35c046130b24e310039f2d5aa23 + sha256: 8d015f309b4cbc0043f6c7f5c616a3f53fed3e934ba023450e612a0ce6f42743 + manager: conda + name: libadios2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libadios2-2.8.3-mpi_mpich_ha75daa5_1.tar.bz2 + version: 2.8.3 + - category: main + dependencies: + libblas: 3.9.0 16_osx64_openblas + hash: + md5: 28592eab0f05bcf9969789e87f754e11 + sha256: 072a214ab1d596b99b985773bdb6f6e5f38774c7f73d70962700e0fc0d77d91f + manager: conda + name: libcblas + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-16_osx64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + libblas: 3.9.0 16_osx64_openblas + hash: + md5: 406ad426aade5578b90544cc2ed4a79b + sha256: 456a6e8bfc2e97846d9e157b5f51c23e0c4e9c922ccf7b2321be5362c835d35f + manager: conda + name: liblapack + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-16_osx64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 478672fe1f0c0fafc4e99152cd7e33fe + sha256: 14e76a5675eb31fede7e460752557068f8b487847d48def078df4dd7d6817ae6 + manager: conda + name: markupsafe + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.1-py39h63b48b0_1.tar.bz2 + version: 2.1.1 + - category: main + dependencies: + mpich: ">=4.0.2,<5.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 1f15f487666c0923b1efbdcd53612617 + sha256: 20d09a50f7a769f1e60a43de47112eb4324ce1ecd49516eaaaea27766205410d + manager: conda + name: mpi4py + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mpi4py-3.1.3-py39hef65b2c_2.tar.bz2 + version: 3.1.3 + - category: main + dependencies: + python: ">=3.7" + setuptools: "" + wheel: "" + hash: + md5: 6f4c6de9fed2a9bd8043283611b09587 + sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 + manager: conda + name: pip + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 + version: "22.3" + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=14.0.4" + liblapack: ">=3.9.0,<4.0a0" + hash: + md5: cc005ee6fedd7dd9326665a1ab938c0b + sha256: 2cbbbaf97a155f0b06dd834d1c0e8103052e478848456c8910143aab22ea8080 + manager: conda + name: fenics-libbasix + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fenics-libbasix-0.5.1-h7396341_0.tar.bz2 + version: 0.5.1 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcxx: ">=13.0.1" + liblapack: ">=3.9.0,<4.0a0" + mpich: ">=4.0.2,<5.0a0" + hash: + md5: 6395178e52ca1c438f78d0446d5160ae + sha256: 44ef6e43ca4d123bc3629c44b91825e23bcda1a4733b8b61d2f5556bca28a7c1 + manager: conda + name: hypre + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/hypre-2.25.0-mpi_mpich_he15861c_0.tar.bz2 + version: 2.25.0 + - category: main + dependencies: + markupsafe: ">=2.0" + python: ">=3.7" + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + manager: conda + name: jinja2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + version: 3.1.2 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=14.0.4" + liblapack: ">=3.9.0,<4.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: c10445ddec73c2576f2ae47495b16409 + sha256: 2b2780e94dc500678d93ec81d586c5a9857650d8d3190644848934d47f1d7e6e + manager: conda + name: numpy + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.23.4-py39hdfa1d0c_0.tar.bz2 + version: 1.23.4 + - category: main + dependencies: + libblas: ">=3.8.0,<4.0a0" + libgfortran: 5.* + libgfortran5: ">=9.3.0" + liblapack: ">=3.8.0,<4.0a0" + mpich: ">=4.0.1,<5.0a0" + hash: + md5: 8287ee9620ffd1cba4fa3e2230652d5e + sha256: d67d8e3327c90031dc3fce466a3682f10bea7039c11a6908e0dccc18d8642ebe + manager: conda + name: scalapack + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/scalapack-2.2.0-hc746714_1.tar.bz2 + version: 2.2.0 + - category: main + dependencies: + libblas: ">=3.8.0,<4.0a0" + libcblas: ">=3.8.0,<4.0a0" + libcxx: ">=11.1.0" + liblapack: ">=3.8.0,<4.0a0" + metis: ">=5.1.0,<5.2.0a0" + mpfr: ">=4.1.0,<5.0a0" + tbb: ">=2021.3.0" + hash: + md5: d30185298e8ba70c8bc17121f837730d + sha256: 6aadb010ca234dae7795a61add8a19593f55f80e135b88c52e2e52058d3072ae + manager: conda + name: suitesparse + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/suitesparse-5.10.1-h7aff33d_1.tar.bz2 + version: 5.10.1 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgfortran: 5.* + libgfortran5: ">=9.3.0" + hash: + md5: 415a218b750ec31760d6a530d11dc98d + sha256: f2717e2f4afd90cec2e378a06759f647638daada0b53c0155b6f6696f6d67220 + manager: conda + name: superlu + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/superlu-5.2.2-h1f0f902_0.tar.bz2 + version: 5.2.2 + - category: main + dependencies: + libblas: ">=3.8.0,<4.0a0" + libcxx: ">=11.1.0" + libgfortran: 5.* + libgfortran5: ">=9.3.0" + liblapack: ">=3.8.0,<4.0a0" + llvm-openmp: ">=12.0.1" + metis: ">=5.1.0,<5.2.0a0" + mpich: ">=3.4.2,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + hash: + md5: f5937bfa7727627ff7446791a25edf16 + sha256: fbedba66033878a223af1b8bb087a05375eaf0a5c052a169c0e16230a3fcd753 + manager: conda + name: superlu_dist + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/superlu_dist-7.2.0-h4bb6bf2_0.tar.bz2 + version: 7.2.0 + - category: main + dependencies: + fenics-libbasix: 0.5.1 h7396341_0 + libcxx: ">=14.0.4" + numpy: "" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 61af149df92545b8c868f7d395331857 + sha256: 73c47c9a42e63250dd422879f96fd86a40c3a78ede93ff3ca9cd2711ee995317 + manager: conda + name: fenics-basix + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fenics-basix-0.5.1-py39h92daf61_0.tar.bz2 + version: 0.5.1 + - category: main + dependencies: + numpy: "" + python: ">=3.7" + hash: + md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c + sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 + manager: conda + name: fenics-ufl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.2.0 + - category: main + dependencies: + cached-property: "" + hdf5: ">=1.12.1,<1.12.2.0a0" + numpy: ">=1.19.5,<2.0a0" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: 16265ef5ec7205f3b8862ed614f1f514 + sha256: 199df16e2c7a503f05728bf2c4047bb5159e919cbf6ecaa3c14f749b3430de68 + manager: conda + name: h5py + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/h5py-3.7.0-nompi_py39h66c274d_100.tar.bz2 + version: 3.7.0 + - category: main + dependencies: + libblas: ">=3.8.0,<4.0a0" + libgfortran: 5.* + libgfortran5: ">=9.3.0" + liblapack: ">=3.8.0,<4.0a0" + metis: ">=5.1.0,<5.2.0a0" + mpich: ">=4.0.1,<5.0a0" + mumps-include: 5.2.1 h694c41f_11 + parmetis: ">=4.0.3,<4.1.0a0" + ptscotch: ">=6.0.9,<6.0.10.0a0" + scalapack: ">=2.2.0,<2.3.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + hash: + md5: 64fcc5df660d6d866c5d5799f1d0af58 + sha256: 036ffd9a7cc6f88443d12950a99a3c8c93bd109ebed70efe8e8c01491e575b9d + manager: conda + name: mumps-mpi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mumps-mpi-5.2.1-h690e093_11.tar.bz2 + version: 5.2.1 + - category: main + dependencies: + cffi: "" + fenics-basix: 0.5.* + fenics-ufl: 2022.2.* + numpy: "" + python: ">=3.7" + setuptools: "" + hash: + md5: 2dcc01a5199492d95b197d7265f5336a + sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 + manager: conda + name: fenics-ffcx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 + version: 0.5.0 + - category: main + dependencies: + fftw: "* mpi_mpich_*" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" + hypre: ">=2.25.0,<2.25.1.0a0" + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=13.0.1" + libgfortran: 5.* + libgfortran5: ">=9.3.0" + liblapack: ">=3.9.0,<4.0a0" + metis: ">=5.1.0,<5.2.0a0" + mpich: ">=4.0.2,<5.0a0" + mumps-mpi: ">=5.2.1,<5.2.2.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + ptscotch: ">=6.0.9,<6.0.10.0a0" + scalapack: ">=2.2.0,<2.3.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + suitesparse: ">=5.10.1,<5.10.2.0a0" + superlu: "" + superlu_dist: ">=7.1.1,<8.0a0" + yaml: ">=0.2.5,<0.3.0a0" + hash: + md5: f431d00ab606324883ceb2438fa41cd1 + sha256: 640179cfc633c4e5b17ab8ba9fcf45a7f97f490e41ca290ba53b4bac159e068a + manager: conda + name: petsc + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/petsc-3.17.3-real_h4ceb9a8_100.tar.bz2 + version: 3.17.3 + - category: main + dependencies: + libgfortran: 5.* + libgfortran5: ">=9.3.0" + mpich: ">=4.0.2,<5.0a0" + numpy: ">=1.19.5,<2.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + hash: + md5: ef082b1e14c26e79c2de95e7cbd0f8a6 + sha256: b7a005be64417ff32856d440a8f15470162659d1d888bb875aebe0c4ed50531a + manager: conda + name: petsc4py + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/petsc4py-3.17.3-real_h65a1797_101.tar.bz2 + version: 3.17.3 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=13.0.1" + libgfortran: 5.* + libgfortran5: ">=9.3.0" + liblapack: ">=3.9.0,<4.0a0" + mpich: ">=4.0.2,<5.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + suitesparse: ">=5.10.1,<5.10.2.0a0" + hash: + md5: 916accf926c3d113cda927cf7d91f3fd + sha256: e660dc934d6a4738ea219d6ccb2cfbdb2454fcb26b96ced7e80180f43095f78e + manager: conda + name: slepc + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/slepc-3.17.1-real_h3d66a68_102.tar.bz2 + version: 3.17.1 + - category: main + dependencies: + boost-cpp: ">=1.74.0,<1.74.1.0a0" + fenics-libbasix: ">=0.5.1,<0.5.2.0a0" + fenics-ufcx: ">=0.5.0,<0.5.1.0a0" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" + libadios2: ">=2.8.3,<2.8.4.0a0 mpi_mpich_*" + libcxx: ">=14.0.4" + mpich: ">=4.0.2,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + ptscotch: ">=6.0.9,<6.0.10.0a0" + pugixml: ">=1.11.4,<1.12.0a0" + slepc: ">=3.17.1,<3.18.0a0 real_*" + xtensor: ">=0.24.3,<0.25.0a0" + hash: + md5: d4d6b883ba1a3a60cf25fa56c05d8cd2 + sha256: 2193f00786d2134a6400b6267c6098874970741b75d5eac4da44649b5243c9c6 + manager: conda + name: fenics-libdolfinx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fenics-libdolfinx-0.5.2-h67684fb_100.tar.bz2 + version: 0.5.2 + - category: main + dependencies: + mpich: ">=4.0.2,<5.0a0" + numpy: ">=1.19.5,<2.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + petsc4py: 3.17.* + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + slepc: ">=3.17.1,<3.18.0a0 real_*" + hash: + md5: e7f27c84bfe08e8a3fa177dcfa4be704 + sha256: adf3dc1d456e36da1cf248e227e4dbd2ede6a5a410e9aa011f0cf5dd1e7bb4ac + manager: conda + name: slepc4py + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/slepc4py-3.17.1-real_h1feb214_103.tar.bz2 + version: 3.17.1 + - category: main + dependencies: + cffi: "" + fenics-basix: 0.5.* + fenics-ffcx: 0.5.* + fenics-libdolfinx: 0.5.2 h67684fb_100 + fenics-ufl: 2022.2.* + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" + libcxx: ">=14.0.4" + mpi4py: "" + mpich: ">=4.0.2,<5.0a0" + numpy: "" + petsc: ">=3.17.3,<3.18.0a0 real_*" + petsc4py: "" + python: ">=3.9,<3.10.0a0" + python_abi: 3.9.* *_cp39 + slepc: ">=3.17.1,<3.18.0a0 real_*" + slepc4py: "" + hash: + md5: 6663cc38a407183c9fdcec58644e865f + sha256: 15c354ee48d648fbc3f41ee5d1323db32d6230eac450d5fe4a4d6701026ee2fb + manager: conda + name: fenics-dolfinx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fenics-dolfinx-0.5.2-py39hf3ff6d5_100.tar.bz2 + version: 0.5.2 + - category: main + dependencies: {} + hash: + sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 + manager: pip + name: async-timeout + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl + version: 3.0.1 + - category: main + dependencies: {} + hash: + sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c + manager: pip + name: attrs + optional: false + platform: osx-64 + source: null + url: https://files.hosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl + version: 22.1.0 + - category: main + dependencies: {} + hash: + sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 + manager: pip + name: cachetools + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl + version: 4.2.4 + - category: main + dependencies: {} + hash: + sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 + manager: pip + name: certifi + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl + version: 2022.9.24 + - category: main + dependencies: {} + hash: + sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 + manager: pip + name: chardet + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl + version: 3.0.4 + - category: main + dependencies: {} + hash: + sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f + manager: pip + name: charset-normalizer + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl + version: 2.1.1 + - category: main + dependencies: {} + hash: + sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 + manager: pip + name: colorama + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl + version: 0.4.6 + - category: main + dependencies: {} + hash: + sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 + manager: pip + name: cycler + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl + version: 0.11.0 + - category: main + dependencies: {} + hash: + sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff + manager: pip + name: distro + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl + version: 1.8.0 + - category: main + dependencies: {} + hash: + sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d + manager: pip + name: future + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz + version: 0.18.2 + - category: main + dependencies: {} + hash: + sha256: f5e09dc5c6e1796969fd4b775ea1417d70e49a5df29aaa8e5d10675d9e11872c + manager: pip + name: greenlet + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ea/37/e54ce453b298e890f59dba3db32461579328a07d5b65e3eabf80f971c099/greenlet-1.1.3.post0.tar.gz + version: 1.1.3.post0 + - category: main + dependencies: {} + hash: + sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 + manager: pip + name: idna + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl + version: "3.4" + - category: main + dependencies: {} + hash: + sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f + manager: pip + name: jmespath + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl + version: 0.10.0 + - category: main + dependencies: {} + hash: + sha256: f0a71d85ecdd570ded8ac3d1c0f480842f49a40beb423bb8014539a9f32a5897 + manager: pip + name: kiwisolver + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/f2/e2/7ed98290955aa83598d0e5672d88bbc193192cdcd23d3a9ed7e536cf8e55/kiwisolver-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl + version: 1.4.4 + - category: main + dependencies: {} + hash: + sha256: 6701bf8a5d03a43375909ac91b6980aea74b0f5402fbe9428fc3f6edf5d9677e + manager: pip + name: multidict + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/c7/9f/ce1b2b964f573e09eda8a6e98b33972a7915304dd3737da4ae663e2f5057/multidict-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl + version: 6.0.2 + - category: main + dependencies: {} + hash: + sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 + manager: pip + name: nest-asyncio + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl + version: 1.5.6 + - category: main + dependencies: {} + hash: + sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d + manager: pip + name: networkx + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl + version: 2.8.7 + - category: main + dependencies: {} + hash: + sha256: 75e636fd3e0fb872693f23ccb8a5ff2cd578801251f3a4f6854c6a5d437d3c04 + manager: pip + name: pillow + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/8c/92/2975b464d9926dc667020ed1abfa6276e68c3571dcb77e43347e15ee9eed/Pillow-9.2.0.tar.gz + version: 9.2.0 + - category: main + dependencies: {} + hash: + sha256: 25382c7d174c679ce6927c16b6fbb68b10e56ee44b1acb40671e02d29f2fce7c + manager: pip + name: psycopg2-binary + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/fa/88/e44363a9c68abfab4f596850636b4be496d479845877a507a73a651ef623/psycopg2_binary-2.9.5-cp39-cp39-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl + version: 2.9.5 + - category: main + dependencies: {} + hash: + sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc + manager: pip + name: pyparsing + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl + version: 3.0.9 + - category: main + dependencies: {} + hash: + sha256: f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5 + manager: pip + name: pyrsistent + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/15/fa/64ed4c29d36df26906f03a1fb360056e3cbc063b00446f3663252bdd175a/pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl + version: 0.18.1 + - category: main + dependencies: {} + hash: + sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 + manager: pip + name: pytz + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl + version: "2022.5" + - category: main + dependencies: {} + hash: + sha256: 055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b + manager: pip + name: pyyaml + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/f5/6f/b8b4515346af7c33d3b07cd8ca8ea0700ca72e8d7a750b2b87ac0268ca4e/PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl + version: "6.0" + - category: main + dependencies: {} + hash: + sha256: 5bc0667c1eb8f83a3752b71b9c4ba55ef7c7058ae57022dd9b29065186a113d9 + manager: pip + name: ruamel.yaml.clib + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/f5/ac/dda2d23d652bc2f6db886496ad632957af82e33d22c1088cc0ac87c496b5/ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl + version: 0.2.7 + - category: main + dependencies: {} + hash: + sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 + manager: pip + name: semver + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl + version: 2.13.0 + - category: main + dependencies: {} + hash: + sha256: 160a5e2743ab16b1fe201766ec3aed9587a19dcce534953736d4af7a77216628 + manager: pip + name: simpleitk + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ab/51/69c16ab13bdae1901c197e9b572944dc2a3e9fc1f14ae2cecd201bf0472a/SimpleITK-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl + version: 2.2.0 + - category: main + dependencies: {} + hash: + sha256: 12133863178a8080a3dccbf5cb2edfab0001bc41e5d6d2446af2a1131105adfe + manager: pip + name: simplejson + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/99/11/70df62feed6f29148f4bcfe1403c73a0c74afbb159392a340b382325478f/simplejson-3.17.6-cp39-cp39-macosx_10_9_x86_64.whl + version: 3.17.6 + - category: main + dependencies: {} + hash: + sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 + manager: pip + name: six + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl + version: 1.16.0 + - category: main + dependencies: {} + hash: + sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e + manager: pip + name: typing-extensions + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl + version: 4.4.0 + - category: main + dependencies: {} + hash: + sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 + manager: pip + name: urllib3 + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl + version: 1.26.12 + - category: main + dependencies: + numpy: ">=1.7.1" + hash: + sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 + manager: pip + name: glymur + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz + version: 0.8.19 + - category: main + dependencies: + numpy: "*" + pillow: ">=8.3.2" + hash: + sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 + manager: pip + name: imageio + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl + version: 2.22.2 + - category: main + dependencies: + attrs: ">=17.4.0" + pyrsistent: ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + hash: + sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 + manager: pip + name: jsonschema + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl + version: 4.16.0 + - category: main + dependencies: + pyparsing: ">=2.0.2,<3.0.5 || >3.0.5" + hash: + sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 + manager: pip + name: packaging + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl + version: "21.3" + - category: main + dependencies: + numpy: ">=1.4" + six: "*" + hash: + sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 + manager: pip + name: patsy + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl + version: 0.5.3 + - category: main + dependencies: + numpy: ">=1.11.1" + hash: + sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 + manager: pip + name: pynrrd + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl + version: 0.4.3 + - category: main + dependencies: + six: ">=1.5" + hash: + sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 + manager: pip + name: python-dateutil + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl + version: 2.8.2 + - category: main + dependencies: + numpy: ">=1.17.3" + hash: + sha256: 6437af3ddf083118c26d8f97ab43b0724b956c9f958e9ea788659f6a2834ba93 + manager: pip + name: pywavelets + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/6e/d4/008dceeb95fafcf141f39393bdfc10921d0b62a325c2794ac533195a1eb3/PyWavelets-1.4.1.tar.gz + version: 1.4.1 + - category: main + dependencies: + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<3" + idna: ">=2.5,<4" + urllib3: ">=1.21.1,<1.27" + hash: + sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 + manager: pip + name: requests + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl + version: 2.28.1 + - category: main + dependencies: + ruamel.yaml.clib: ">=0.2.6" + hash: + sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 + manager: pip + name: ruamel.yaml + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl + version: 0.17.21 + - category: main + dependencies: + numpy: ">=1.18.5,<1.26.0" + hash: + sha256: d644a64e174c16cb4b2e41dfea6af722053e83d066da7343f333a54dae9bc31c + manager: pip + name: scipy + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/59/ef/d54d17c36b46a9b8f6e1d4bf039b7f7ad236504cfb13cf1872caec9cbeaa/scipy-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl + version: 1.9.3 + - category: main + dependencies: + greenlet: "!=0.4.17" + hash: + sha256: 177e41914c476ed1e1b77fd05966ea88c094053e17a85303c4ce007f88eff363 + manager: pip + name: sqlalchemy + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e4/56/8ea85eaab7d93b58f9c213ad8fc5882838189a29fc8cc401d80710a12969/SQLAlchemy-1.4.42.tar.gz + version: 1.4.42 + - category: main + dependencies: + colorama: "*" + hash: + sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 + manager: pip + name: tqdm + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl + version: 4.64.1 + - category: main + dependencies: + idna: ">=2.0" + multidict: ">=4.0" + hash: + sha256: 6afb336e23a793cd3b6476c30f030a0d4c7539cd81649683b5e0c1b0ab0bf350 + manager: pip + name: yarl + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/c8/a7/1a92f1049acd7f8fe122b5c78bd135b1a606414109b6cd43de696a5c4dfc/yarl-1.8.1-cp39-cp39-macosx_10_9_x86_64.whl + version: 1.8.1 + - category: main + dependencies: + async-timeout: ">=3.0,<4.0" + attrs: ">=17.3.0" + chardet: ">=2.0,<4.0" + multidict: ">=4.5,<7.0" + typing-extensions: ">=3.6.5" + yarl: ">=1.0,<2.0" + hash: + sha256: 5d84ecc73141d0a0d61ece0742bb7ff5751b0657dab8405f899d3ceb104cc7de + manager: pip + name: aiohttp + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/7a/95/eb60aaad7943e18c9d091de93c9b0b5ed40aa67c7d5e3c5ee9b36f100a38/aiohttp-3.7.4.tar.gz + version: 3.7.4 + - category: main + dependencies: + jmespath: ">=0.7.1,<1.0.0" + python-dateutil: ">=2.1,<3.0.0" + urllib3: ">=1.25.4,<1.27" + hash: + sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b + manager: pip + name: botocore + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl + version: 1.20.112 + - category: main + dependencies: + packaging: ">=17.0" + hash: + sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 + manager: pip + name: marshmallow + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl + version: 3.18.0 + - category: main + dependencies: + cycler: ">=0.10" + kiwisolver: ">=1.0.1" + numpy: ">=1.16" + pillow: ">=6.2.0" + pyparsing: ">=2.2.1" + python-dateutil: ">=2.7" + hash: + sha256: b26535b9de85326e6958cdef720ecd10bcf74a3f4371bf9a7e5b2e659c17e153 + manager: pip + name: matplotlib + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/69/0e/e0a6b89396946f84f9bd7bcf270b260f5108e9f2659db9f03168047046ae/matplotlib-3.4.2-cp39-cp39-macosx_10_9_x86_64.whl + version: 3.4.2 + - category: main + dependencies: + numpy: ">=1.13.3" + packaging: "*" + hash: + sha256: 5c660dea90935b963db9529d963493c40fabb2343684b52083fb86b2547d60c8 + manager: pip + name: numexpr + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/02/f8/a33223787909f5ec010ec5b6a1c9bb5c8ac5dfcefc21c1e744492f9551a8/numexpr-2.8.3-cp39-cp39-macosx_10_9_x86_64.whl + version: 2.8.3 + - category: main + dependencies: + numpy: ">=1.20.3" + python-dateutil: ">=2.8.1" + pytz: ">=2020.1" + hash: + sha256: e675f8fe9aa6c418dc8d3aac0087b5294c1a4527f1eacf9fe5ea671685285454 + manager: pip + name: pandas + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/12/51/dd4bd8d43f7f21086b99fed461e91eaf4fdac48dea3028f4b3aef87dffdc/pandas-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl + version: 1.5.1 + - category: main + dependencies: + requests: ">=2.0.1,<3.0.0" + hash: + sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 + manager: pip + name: requests-toolbelt + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl + version: 0.10.1 + - category: main + dependencies: + distro: "*" + packaging: "*" + hash: + sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 + manager: pip + name: scikit-build + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl + version: 0.15.0 + - category: main + dependencies: + marshmallow: ">=3.0.0,<4.0" + numpy: "*" + pyyaml: "*" + hash: + sha256: 38cceff1d3bb4ecf0eebb2a6ea46b99c418e9bd94b5acaec95d9307731360bbc + manager: pip + name: argschema + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e9/43/91c96e0b69f86c7076989ef97bc1687ed427ddacd1dd1c7010b5c330d611/argschema-3.0.4.tar.gz + version: 3.0.4 + - category: main + dependencies: + h5py: ">=2.10,<4" + jsonschema: ">=2.6.0,<5" + numpy: ">=1.16,<1.24" + pandas: ">=1.0.5,<2" + ruamel.yaml: ">=0.16,<1" + scipy: ">=1.1,<2" + hash: + sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d + manager: pip + name: hdmf + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl + version: 3.4.6 + - category: main + dependencies: + botocore: ">=1.12.36,<2.0a.0" + hash: + sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 + manager: pip + name: s3transfer + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl + version: 0.3.7 + - category: main + dependencies: + imageio: ">=2.3.0" + matplotlib: ">=2.0.0,<3.0.0 || >3.0.0" + networkx: ">=2.0" + pillow: ">=4.3.0" + pywavelets: ">=0.4.0" + scipy: ">=0.19.0" + hash: + sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c + manager: pip + name: scikit-image + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz + version: 0.16.2 + - category: main + dependencies: + matplotlib: ">=3.1,<3.6.1 || >3.6.1" + numpy: ">=1.17" + pandas: ">=0.25" + hash: + sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 + manager: pip + name: seaborn + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl + version: 0.12.1 + - category: main + dependencies: + numpy: ">=1.17" + pandas: ">=0.25" + patsy: ">=0.5.2" + scipy: ">=1.3" + hash: + sha256: f2efc02011b7240a9e851acd76ab81150a07d35c97021cb0517887539a328f8a + manager: pip + name: statsmodels + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/9e/5e/4a2ade283411d1f46d6f8dd5fe951b9152062d55a20750cd5d4b556322bf/statsmodels-0.13.0.tar.gz + version: 0.13.0 + - category: main + dependencies: + numexpr: ">=2.6.2" + numpy: ">=1.9.3" + hash: + sha256: 49a972b8a7c27a8a173aeb05f67acb45fe608b64cd8e9fa667c0962a60b71b49 + manager: pip + name: tables + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/2b/32/847ee3f521aae6a0be380d923a736162d698586f444df1ac24b98c65025c/tables-3.6.1.tar.gz + version: 3.6.1 + - category: main + dependencies: + numpy: ">=1.15" + pandas: ">=0.25" + hash: + sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d + manager: pip + name: xarray + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl + version: 0.15.1 + - category: main + dependencies: + botocore: ">=1.20.21,<1.21.0" + jmespath: ">=0.7.1,<1.0.0" + s3transfer: ">=0.3.0,<0.4.0" + hash: + sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 + manager: pip + name: boto3 + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl + version: 1.17.21 + - category: main + dependencies: + h5py: ">=2.10,<4" + hdmf: ">=3.4.2,<4" + numpy: ">=1.16,<1.24" + pandas: ">=1.1.5,<2" + python-dateutil: ">=2.7.3,<3" + hash: + sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f + manager: pip + name: pynwb + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl + version: 2.2.0 + - category: main + dependencies: + pynwb: ">=1.1.2" + hash: + sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af + manager: pip + name: ndx-events + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl + version: 0.2.0 + - category: main + dependencies: + aiohttp: 3.7.4 + argschema: ">=3.0.1,<4.0.0" + boto3: 1.17.21 + cachetools: ">=4.2.1,<5.0.0" + future: ">=0.14.3,<1.0.0" + glymur: 0.8.19 + h5py: "*" + hdmf: ">=2.5.8" + jinja2: ">=3.0.0" + matplotlib: ">=1.4.3,<3.4.3" + ndx-events: <=0.2.0 + nest-asyncio: "*" + numpy: "*" + pandas: ">=1.1.5" + psycopg2-binary: ">=2.7,<3.0.0" + pynrrd: ">=0.2.1,<1.0.0" + pynwb: "*" + requests: <3.0.0 + requests-toolbelt: <1.0.0 + scikit-build: <1.0.0 + scikit-image: ">=0.14.0,<0.17.0" + scipy: ">=1.4.0,<2.0.0" + seaborn: <1.0.0 + semver: "*" + simpleitk: ">=2.0.2,<3.0.0" + simplejson: ">=3.10.0,<4.0.0" + six: ">=1.9.0,<2.0.0" + sqlalchemy: "*" + statsmodels: <=0.13.0 + tables: ">=3.6.0,<3.7.0" + tqdm: ">=4.27" + xarray: <0.16.0 + hash: + sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 + manager: pip + name: allensdk + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl + version: 2.13.6 + - category: main + dependencies: {} + hash: + md5: fc76ace7b94fb1f694988ab1b14dd248 + sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 + manager: conda + name: bzip2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 + version: 1.0.8 + - category: main + dependencies: {} + hash: + md5: 5dd04dad345af4f1e8f3f0d5afc03b67 + sha256: 44036b92da867c9a3fdf51a5c1837e3c6fbc2be83536361df628fbcdcd7fdf59 + manager: conda + name: c-ares + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.18.1-h3422bc3_0.tar.bz2 + version: 1.18.1 + - category: main + dependencies: {} + hash: + md5: 5911a50099ce7b46f7f32e90dd4adffa + sha256: de523ce2a7037367f5f6f2389ca064bc22c2cb88f1ed808c44bd3f57c70bf733 + manager: conda + name: ca-certificates + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2022.9.24-h4653dfc_0.tar.bz2 + version: 2022.9.24 + - category: main + dependencies: {} + hash: + md5: a0a531df6bf6663607dc77722ae522d6 + sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f + manager: conda + name: fenics-ufcx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 + version: 0.5.0 + - category: main + dependencies: {} + hash: + md5: 716c4b72ff3808ade65748fd9b49cc44 + sha256: 8e199c6956fad3abcbe9a1468c6219d9e95b64b898e9cf009b82d669c3bfdaf6 + manager: conda + name: libcxx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-14.0.6-h2692d47_0.tar.bz2 + version: 14.0.6 + - category: main + dependencies: {} + hash: + md5: 566dbf70fe79eacdb3c3d3d195a27f55 + sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c + manager: conda + name: libev + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 + version: "4.33" + - category: main + dependencies: {} + hash: + md5: 086914b672be056eb70fd4285b6783b6 + sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + manager: conda + name: libffi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + version: 3.4.2 + - category: main + dependencies: {} + hash: + md5: 90859688dbca4735b74c02af14c4c793 + sha256: 1d95fe5e5e6a0700669aab454b2a32f97289c9ed8d1f7667c2ba98327a6f05bc + manager: conda + name: libsodium + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 + version: 1.0.18 + - category: main + dependencies: {} + hash: + md5: 780852dc54c4c07e64b276a97f89c162 + sha256: a1bf4a1c107838fea4570a7f1750306d65d84fcf2913d4e0d30b4db785e8f223 + manager: conda + name: libzlib + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2 + version: 1.2.13 + - category: main + dependencies: {} + hash: + md5: e30710831eca6b207a037c465d98777c + sha256: 00d0eedaa20ad8d83fbebe121a67eaa293dcc6699d06857af675c3f7d9716317 + manager: conda + name: llvm-openmp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-14.0.4-hd125106_0.tar.bz2 + version: 14.0.4 + - category: main + dependencies: {} + hash: + md5: f77d9809ca7c6b8482a66685d4cf55c9 + sha256: 8ae894d76a3ae38da97f1af7503695274ee4bf6d5c0bb0b06dcdcdb4993c46d5 + manager: conda + name: metis + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/metis-5.1.0-h9f76cd9_1006.tar.bz2 + version: 5.1.0 + - category: main + dependencies: {} + hash: + md5: cb269c879b1ac5e5ab62a3c17528c40f + sha256: 7051ff40ca1208c06db24f8bf5cf72ee7ad03891e7fd365c3f7a4190938ae83a + manager: conda + name: mpi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mpi-1.0-openmpi.tar.bz2 + version: "1.0" + - category: main + dependencies: {} + hash: + md5: ceec43d6d4207011f4f1edc0e683fc3a + sha256: c3f5bd27bdaad52f12354c03f56db151b5a991dd67ff99184f0f12195d563c6e + manager: conda + name: mumps-include + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mumps-include-5.2.1-hce30654_11.tar.bz2 + version: 5.2.1 + - category: main + dependencies: {} + hash: + md5: db86e5a978380a13f5559f97afdfe99d + sha256: 50ba7c13dd7d05569e7caa98a13a3684450f8547b4965a1e86b54e2f1240debe + manager: conda + name: ncurses + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.3-h07bb92c_1.tar.bz2 + version: "6.3" + - category: main + dependencies: {} + hash: + md5: b6bd89cf71494c41a181cac13cc5a8ea + sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 + manager: conda + name: tzdata + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 + version: 2022e + - category: main + dependencies: {} + hash: + md5: 39c6b54e94014701dd157f4f576ed211 + sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec + manager: conda + name: xz + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + version: 5.2.6 + - category: main + dependencies: {} + hash: + md5: 4bb3f014845110883a3c5ee811fd84b4 + sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 + manager: conda + name: yaml + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + version: 0.2.5 + - category: main + dependencies: + libcxx: ">=11.0.0" + hash: + md5: f8140773b6ca51bf32feec9b4290a8c5 + sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 + manager: conda + name: gmp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2 + version: 6.2.1 + - category: main + dependencies: + libcxx: ">=12.0.1" + hash: + md5: 5fbe318a6be2e8d0f9b0b0c730a62748 + sha256: 303b558da70167473e4fa5f9a12c547217061c930c13ca3f982d55922437606e + manager: conda + name: icu + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-70.1-h6b3803e_0.tar.bz2 + version: "70.1" + - category: main + dependencies: + ncurses: ">=6.2,<7.0.0a0" + hash: + md5: 30e4362988a2623e9eb34337b83e01f9 + sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca + manager: conda + name: libedit + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + version: 3.1.20191231 + - category: main + dependencies: + llvm-openmp: ">=8.0.0" + hash: + md5: bdbfca46b391ce865243312e92b0b231 + sha256: 0d0cd386b6c3628b2144b90a8936f51dc931dd739a0dce62876d87e5cd751926 + manager: conda + name: libgfortran5 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-11.3.0-hdaf2cc0_25.tar.bz2 + version: 11.3.0 + - category: main + dependencies: + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: bbeca54ede0a21405ae1ba6026d78d33 + sha256: 7ddb168b4064618fb06976b2fd51ebcadfb52f478a1eb7c6d6d6442470a6099b + manager: conda + name: libpng + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.38-h76d750c_0.tar.bz2 + version: 1.6.38 + - category: main + dependencies: + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: bc447b47695c18c7e018fe47f24c16a0 + sha256: fac23992c2943210443c2128db5ca8bba979687d5dc4158ced93dfb42d956228 + manager: conda + name: libsqlite + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.39.4-h76d750c_0.tar.bz2 + version: 3.39.4 + - category: main + dependencies: + libcxx: ">=11.1.0" + hash: + md5: 074b9beb2e563515c0dd46229b18d521 + sha256: 00941ba659571e2618c86f1463e9ad91d87e5ca36c807d633d527328ebc9803f + manager: conda + name: lz4-c + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.3-hbdafb3b_1.tar.bz2 + version: 1.9.3 + - category: main + dependencies: + ca-certificates: "" + hash: + md5: 09d751ab09102f7a27761110d07cab1a + sha256: c8e0af58b9d8671dbf88994203e0f0c39ba42e66f8f9c840c62ae341ea503a9f + manager: conda + name: openssl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.0.5-h03a7124_2.tar.bz2 + version: 3.0.5 + - category: main + dependencies: + libcxx: ">=11.1.0" + hash: + md5: ae2de80a2e9bb244c8e728ad8e431e35 + sha256: d772be20bbd2cdaaa6da9a2562dadd2e8dc06614c494616eae7c57045600be14 + manager: conda + name: pugixml + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pugixml-1.11.4-hbdafb3b_0.tar.bz2 + version: 1.11.4 + - category: main + dependencies: + ncurses: ">=6.3,<7.0a0" + hash: + md5: dc790f296d94409efb3f22af84ee968d + sha256: 2d2a65fcdd91361ea7e40c03eeec18ff7a453c32f6589a1fce64717f6cd7c7b6 + manager: conda + name: readline + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.1.2-h46ed386_0.tar.bz2 + version: 8.1.2 + - category: main + dependencies: + libcxx: ">=13.0.1" + hash: + md5: e19070f6d27330d35b1849ab2b74c1d3 + sha256: 3652e81fe9b2551190142d49e21ede0f25110e07f5a0d01ddfe5fd42afd79caa + manager: conda + name: snappy + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.9-h39c3846_1.tar.bz2 + version: 1.1.9 + - category: main + dependencies: + libcxx: ">=14.0.4" + hash: + md5: 8aba7bb5ad0e715fcbfe0ab1a76fa4f7 + sha256: 28ecc13196723f2737be264a0122025f19b4ad943f8b3d24fc846d3f05b09c61 + manager: conda + name: tbb + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-2021.6.0-hffc8910_0.tar.bz2 + version: 2021.6.0 + - category: main + dependencies: + libzlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 2cb3d18eac154109107f093860bd545f + sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 + manager: conda + name: tk + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2 + version: 8.6.12 + - category: main + dependencies: + libcxx: ">=11.1.0" + hash: + md5: 47181387a02df900fedf6c05e41c10d8 + sha256: 52c6a6e16f88a78b262691ffa3da0d88400fc6c9031bb2e078d98f27523e4369 + manager: conda + name: xtl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xtl-0.7.4-hc021e02_0.tar.bz2 + version: 0.7.4 + - category: main + dependencies: + libcxx: ">=11.1.0" + libsodium: ">=1.0.18,<1.0.19.0a0" + hash: + md5: 49132c08da6545dc68351ff8b659ac8e + sha256: b65624f1e22f095223462807c417001b18ec17ef33a3c7065a19429f4cd42193 + manager: conda + name: zeromq + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.4-hbdafb3b_1.tar.bz2 + version: 4.3.4 + - category: main + dependencies: + libcxx: ">=11.1.0" + llvm-openmp: ">=11.1.0" + hash: + md5: f9a794ccbdab88d0ca11d85b0b200b55 + sha256: ddf86af5220d4780b9860a4e62f72ecbd9d76155b02d2b706f67107048758954 + manager: conda + name: zfp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zfp-0.5.5-hcfdfaf5_8.tar.bz2 + version: 0.5.5 + - category: main + dependencies: + libzlib: 1.2.13 h03a7124_4 + hash: + md5: 34161cff4e29cc45e536abf2f13fd6b4 + sha256: 48844c5c911e2ef69571d6ef7181dcfae68df296c546662cb54057baed008949 + manager: conda + name: zlib + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h03a7124_4.tar.bz2 + version: 1.2.13 + - category: main + dependencies: + libcxx: ">=13.0.1" + libzlib: ">=1.2.12,<1.3.0a0" + hash: + md5: dc4c74dcc759058dae2324144f336de0 + sha256: 664f7e6b46cfff6022504eafdef26b4ac0f388fa39d682e64da9a7dbfe33fb56 + manager: conda + name: zstd + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-h8128057_4.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libcxx: ">=13.0.1" + libzlib: ">=1.2.11,<1.3.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + snappy: ">=1.1.9,<2.0a0" + zstd: ">=1.5.2,<1.6.0a0" + hash: + md5: 809c13415c8c034ba12a4e490f77efae + sha256: 4fc6aa467fb8a09a3a5a9cb72d6edfe145f38c27e861a3a26cfb361f6bc977d6 + manager: conda + name: blosc + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.1-hd414afc_3.tar.bz2 + version: 1.21.1 + - category: main + dependencies: + bzip2: ">=1.0.8,<2.0a0" + icu: ">=70.1,<71.0a0" + libcxx: ">=12.0.1" + libzlib: ">=1.2.11,<1.3.0a0" + xz: ">=5.2.5,<5.3.0a0" + zstd: ">=1.5.2,<1.6.0a0" + hash: + md5: 98e303e926ba602d75b7494f0f4e66ac + sha256: 2151e6512b621e0e92ca5c0d9c32ae4be4f9a7cd69e34ae46b69dfaf1720fbee + manager: conda + name: boost-cpp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/boost-cpp-1.74.0-h1cb353e_8.tar.bz2 + version: 1.74.0 + - category: main + dependencies: + libcxx: ">=12.0.1" + libedit: ">=3.1.20191231,<4.0a0" + openssl: ">=3.0.0,<4.0a0" + hash: + md5: 71b2e0b0cec360c0831c6cfd5b3b9ca9 + sha256: 3805616886693727a4933cf2f7e0e49f7b4239f61d7ac9fd014f3079693fdca6 + manager: conda + name: krb5 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.19.3-he492e65_0.tar.bz2 + version: 1.19.3 + - category: main + dependencies: + libgfortran5: "" + hash: + md5: cc4376ee8e97be18874c75599f51cd8f + sha256: 779ca107a061a1f4ed6fc6fc3167e062da7d04ae45f64e668c3b9a46db329fa1 + manager: conda + name: libgfortran + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-11_3_0_hd922786_25.tar.bz2 + version: 5.0.0 + - category: main + dependencies: + c-ares: ">=1.18.1,<2.0a0" + libcxx: ">=13.0.1" + libev: ">=4.33,<4.34.0a0" + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: ff1984469f4d776e155fc48191a42a54 + sha256: afd84ccecce67fe11ac11f9c75454925e52d7f0feaacd11a3bed5caeba1ac439 + manager: conda + name: libnghttp2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.47.0-h519802c_1.tar.bz2 + version: 1.47.0 + - category: main + dependencies: + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: 1ffa4340e73809db5a7516cb1a7425a7 + sha256: fbaa668831c56d88824c9ea42aba7b9c9ffd26cdd9bec850120bf2aff0d9e282 + manager: conda + name: libssh2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.10.0-h7a5bd25_3.tar.bz2 + version: 1.10.0 + - category: main + dependencies: + gmp: ">=6.2.0,<7.0a0" + hash: + md5: c37f296f76cfb61d4f91613da93789e6 + sha256: bf44598be1fe9f6310ac0ebcd91dd6b51d4d19fe085c96b4da8297f2fc868f86 + manager: conda + name: mpfr + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.1.0-h6d7a090_1.tar.bz2 + version: 4.1.0 + - category: main + dependencies: + libzlib: ">=1.2.11,<1.3.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: 84c5fcd61737aa430b8d31bb6e2c011b + sha256: 2794ecda7de53c115bbaaceff9195dff95a4e5412766ac83189e6b411652ec3e + manager: conda + name: scotch + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/scotch-6.0.9-h7537618_2.tar.bz2 + version: 6.0.9 + - category: main + dependencies: + libsqlite: 3.39.4 h76d750c_0 + libzlib: ">=1.2.12,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + readline: ">=8.1.2,<9.0a0" + hash: + md5: e11a77ec381e452e9fb9e16a36faeada + sha256: 625341afc9ce5db1c05b2abb83f0c3a898c50f242b3de4254369ce37e9aa112d + manager: conda + name: sqlite + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.39.4-h2229b38_0.tar.bz2 + version: 3.39.4 + - category: main + dependencies: + libcxx: ">=13.0.1" + xtl: ">=0.7,<0.8" + hash: + md5: 78a1c2ea5802d712461933a9ef0acd98 + sha256: b06b8634a7f8eb621d573f2ef15c7ca52cf9ea75a41b15dc36ead88edd4d2dd4 + manager: conda + name: xtensor + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xtensor-0.24.3-hf86a087_0.tar.bz2 + version: 0.24.3 + - category: main + dependencies: + krb5: ">=1.19.3,<1.20.0a0" + libnghttp2: ">=1.47.0,<2.0a0" + libssh2: ">=1.10.0,<2.0a0" + libzlib: ">=1.2.12,<1.3.0a0" + openssl: ">=3.0.5,<4.0a0" + hash: + md5: e302a40e394d2e5df6a21fd12ebfd3ea + sha256: 15a70affa0f5f145b0bfb85c7c5e9df04ab6445e668dcf14bc139ec8ca6c421b + manager: conda + name: libcurl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.85.0-h1c293e1_0.tar.bz2 + version: 7.85.0 + - category: main + dependencies: + libgfortran: 5.* + libgfortran5: ">=11.3.0" + llvm-openmp: ">=14.0.4" + hash: + md5: 2a980a5d8cc34ce70d339b983f9920de + sha256: 92e341be106c00adf1f1757ec9f9586a3848af94b434554c75dd7c5023f84ea2 + manager: conda + name: libopenblas + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.21-openmp_hc731615_3.tar.bz2 + version: 0.3.21 + - category: main + dependencies: + libcxx: ">=14.0.4" + libgfortran: 5.* + libgfortran5: ">=11.3.0" + libzlib: ">=1.2.12,<1.3.0a0" + mpi: 1.0 openmpi + zlib: ">=1.2.12,<1.3.0a0" + hash: + md5: c7474eedb4991a2d01d6d443d2eab040 + sha256: ba9a4c079967afdf08071235c3414626107c04cf29d0a49dd3ee9dfec046d811 + manager: conda + name: openmpi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openmpi-4.1.4-h4e676fc_101.tar.bz2 + version: 4.1.4 + - category: main + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libffi: ">=3.4.2,<3.5.0a0" + libzlib: ">=1.2.11,<1.3.0a0" + ncurses: ">=6.3,<7.0a0" + openssl: ">=3.0.3,<4.0a0" + readline: ">=8.1,<9.0a0" + sqlite: ">=3.38.5,<4.0a0" + tk: ">=8.6.12,<8.7.0a0" + tzdata: "" + xz: ">=5.2.5,<5.3.0a0" + hash: + md5: b931e71d282753be679bd2602840f902 + sha256: a0aeaefa0aa5f076f30353a2b75a52c08180e8e3e5e85eb5d4d659b54c2b5868 + manager: conda + name: python + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.13-h96fcbfb_0_cpython.tar.bz2 + version: 3.9.13 + - category: main + dependencies: + python: ">=3.6" + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + manager: conda + name: cached_property + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libcxx: ">=14.0.4" + libgfortran: 5.* + libgfortran5: ">=11.3.0" + llvm-openmp: ">=14.0.4" + openmpi: ">=4.1.4,<5.0a0" + hash: + md5: 76802a70f0264d9074b6e471ba09a0ee + sha256: bb1e778aa1541b9129157815be024a694d75d9bde5f032ff27c1712bd778bc26 + manager: conda + name: fftw + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-mpi_openmpi_haef8dc3_5.tar.bz2 + version: 3.3.10 + - category: main + dependencies: + libcurl: ">=7.81.0,<8.0a0" + libcxx: ">=12.0.1" + libgfortran: 5.* + libgfortran5: ">=11.0.1.dev0" + libzlib: ">=1.2.11,<1.3.0a0" + openmpi: ">=4.1,<4.2.0a0" + openssl: ">=3.0.0,<4.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: add9e00d1991f2651d29a6ea4c7221f8 + sha256: e4223e2b8e2cbeb205c1985eeb647ff9f946a6ae93cfef4441be11ee7ad332b3 + manager: conda + name: hdf5 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.1-mpi_openmpi_hd5758bf_4.tar.bz2 + version: 1.12.1 + - category: main + dependencies: + libopenblas: ">=0.3.21,<1.0a0" + hash: + md5: 53d6d5097f0d62e24db8c1979a21102e + sha256: 17dd67806f7e31981a1ac8abb63ed004eac416a1061c7737028f5af269430fa6 + manager: conda + name: libblas + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-16_osxarm64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + libcxx: ">=11.1.0" + openmpi: ">=4.1,<4.2.0a0" + hash: + md5: 2121f0f7dd3fe744d804d23e090ab757 + sha256: 05b08fc1bb367fcd9ff23be61fb644653edcbee3ff41cfe4d0c28c642d9d9c51 + manager: conda + name: parmetis + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/parmetis-4.0.3-h6eb5794_1005.tar.bz2 + version: 4.0.3 + - category: main + dependencies: + libzlib: ">=1.2.11,<1.3.0a0" + openmpi: ">=4.1.2,<5.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + zlib: ">=1.2.11,<1.3.0a0" + hash: + md5: b38bc5638ce2e4429aca1aaf2f6962c0 + sha256: f48429d1e1bd2e0a179bc3a67fabb49783d7fa6d7dec5590d35ddeda50141713 + manager: conda + name: ptscotch + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ptscotch-6.0.9-h1aec651_2.tar.bz2 + version: 6.0.9 + - category: main + dependencies: + python: ==2.7.*|>=3.4 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + manager: conda + name: pycparser + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + version: "2.21" + - category: main + dependencies: + python: 3.9.* + hash: + md5: ba3082b5441b482d5cfe328d4e7ba0bf + sha256: f611edf23ff71035043f2e81190b83bd4ee1e36fe3041b675aef2373dc33f8c4 + manager: conda + name: python_abi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.9-2_cp39.tar.bz2 + version: "3.9" + - category: main + dependencies: + python: ">=3.7" + hash: + md5: 462466739c786f85f9ed555f87099fe1 + sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 + manager: conda + name: setuptools + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 + version: 65.5.0 + - category: main + dependencies: + python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4" + hash: + md5: 1ca02aaf78d9c70d9a81a3bed5752022 + sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc + manager: conda + name: wheel + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 + version: 0.37.1 + - category: main + dependencies: + cached_property: ">=1.5.2,<1.5.3.0a0" + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + manager: conda + name: cached-property + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + version: 1.5.2 + - category: main + dependencies: + libffi: ">=3.4,<4.0a0" + pycparser: "" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: 2840b36d4a8a4b44641e2e16d4385e3d + sha256: 101f242fc52633feea32eec07dceb910dc436876ab0f8c4c40ef9a252a5c716d + manager: conda + name: cffi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py39h7e6b969_1.tar.bz2 + version: 1.15.1 + - category: main + dependencies: + blosc: ">=1.21.1,<2.0a0" + bzip2: ">=1.0.8,<2.0a0" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" + libcxx: ">=14.0.4" + libffi: ">=3.4.2,<3.5.0a0" + libpng: ">=1.6.37,<1.7.0a0" + openmpi: ">=4.1.4,<5.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + zeromq: ">=4.3.4,<4.4.0a0" + zfp: ">=0.5.5,<1.0a0" + hash: + md5: 7db9dbd6b279ba6ea17b5f03e6ce9a2c + sha256: fad4661c49ccf2c6a6433ff01efbc1be459b5e27f5a14ad74c5fba3227510d97 + manager: conda + name: libadios2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libadios2-2.8.3-mpi_openmpi_h23701fd_1.tar.bz2 + version: 2.8.3 + - category: main + dependencies: + libblas: 3.9.0 16_osxarm64_openblas + hash: + md5: c7cfc18378f00d3faf7f8a9a2553be3c + sha256: 99a04c6a273e76b01ace4f3a8f333b96a76b7351a155aaeba179e283da5c264e + manager: conda + name: libcblas + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-16_osxarm64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + libblas: 3.9.0 16_osxarm64_openblas + hash: + md5: 52d270c579bfca986d6cdd81eb5ed6e7 + sha256: 87204cb0ff22f260b3aa5fc7c938157b471eb2bd287acf1ba7e61a67f86ba959 + manager: conda + name: liblapack + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-16_osxarm64_openblas.tar.bz2 + version: 3.9.0 + - category: main + dependencies: + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: ae025855aea4c081f3c7a13dba04bbc8 + sha256: b490180f30ab238a619be6d8295d75d70a465a25fa5985e8d6dddbda8985ce19 + manager: conda + name: markupsafe + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.1-py39hb18efdd_1.tar.bz2 + version: 2.1.1 + - category: main + dependencies: + openmpi: ">=4.1.4,<5.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: da3f0f16e0ea447a01a790efc5e936c4 + sha256: 9876f5e7e43965dc21865ac4c6a917d89705013670abae380532e68b91c35971 + manager: conda + name: mpi4py + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mpi4py-3.1.3-py39h72a80d3_2.tar.bz2 + version: 3.1.3 + - category: main + dependencies: + python: ">=3.7" + setuptools: "" + wheel: "" + hash: + md5: 6f4c6de9fed2a9bd8043283611b09587 + sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 + manager: conda + name: pip + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 + version: "22.3" + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=14.0.4" + liblapack: ">=3.9.0,<4.0a0" + hash: + md5: 74ef49028b2cb16912d08a1537a0f44f + sha256: 0c338f2f1f4b00a83078f6d5be8d28a97e365b5e7e6e236a8a5ce42285697839 + manager: conda + name: fenics-libbasix + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-libbasix-0.5.1-hf081368_0.tar.bz2 + version: 0.5.1 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcxx: ">=13.0.1" + liblapack: ">=3.9.0,<4.0a0" + openmpi: ">=4.1.4,<5.0a0" + hash: + md5: 7cb597e443b4134e25d41f9a390e65ae + sha256: c59d32b056bc0c1ad6f6383e0321844c4caaf4e3e208a7cc9e249e2e5e4d8722 + manager: conda + name: hypre + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/hypre-2.25.0-mpi_openmpi_hcc3ba7f_0.tar.bz2 + version: 2.25.0 + - category: main + dependencies: + markupsafe: ">=2.0" + python: ">=3.7" + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + manager: conda + name: jinja2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + version: 3.1.2 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=14.0.4" + liblapack: ">=3.9.0,<4.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: a1cbf9a921507b5056c2ef648bc0b659 + sha256: 36f910a7f7d2829ef699f69969d376fc899fd69d682e9b51505530f46c00a0d7 + manager: conda + name: numpy + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.23.4-py39hefdcf20_0.tar.bz2 + version: 1.23.4 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libgfortran: 5.* + libgfortran5: ">=11.0.1.dev0" + liblapack: ">=3.9.0,<4.0a0" + openmpi: ">=4.1.2,<5.0a0" + hash: + md5: a453e2b40359e59e5d1d26b12697d062 + sha256: 963bf6115c9764861eeb0e5a74811904314e84a03b374da863ee51d68e02b5aa + manager: conda + name: scalapack + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/scalapack-2.2.0-h515df86_1.tar.bz2 + version: 2.2.0 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=11.1.0" + liblapack: ">=3.9.0,<4.0a0" + metis: ">=5.1.0,<5.2.0a0" + mpfr: ">=4.1.0,<5.0a0" + tbb: ">=2021.3.0" + hash: + md5: aa2b4cd2c3c870a5da51032c97952e8e + sha256: e0bf87e0d1d85a8b073f276194dcb38e41dab1be5198fbd742d86d37741e46d8 + manager: conda + name: suitesparse + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/suitesparse-5.10.1-h7cd81ec_1.tar.bz2 + version: 5.10.1 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgfortran: 5.* + libgfortran5: ">=11.0.1.dev0" + hash: + md5: 563c35f95395ad5b986dc66239a938a9 + sha256: d959e26ec5f88bf4d1d51c5e21f0f4c77d4454a73ba0ad85f7d81c35556a02de + manager: conda + name: superlu + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/superlu-5.2.2-hc615359_0.tar.bz2 + version: 5.2.2 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcxx: ">=11.1.0" + libgfortran: 5.* + libgfortran5: ">=11.0.1.dev0" + liblapack: ">=3.9.0,<4.0a0" + llvm-openmp: ">=12.0.1" + metis: ">=5.1.0,<5.2.0a0" + openmpi: ">=4.1.2,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + hash: + md5: c0494f680f281c921d9baa9bf0da4f89 + sha256: 4ef231739110f8d3cc04b9b6e82ad51acfa70e541f772f18cbbff51115306678 + manager: conda + name: superlu_dist + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/superlu_dist-7.2.0-hfdb8677_0.tar.bz2 + version: 7.2.0 + - category: main + dependencies: + fenics-libbasix: 0.5.1 hf081368_0 + libcxx: ">=14.0.4" + numpy: "" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: 6e108a67f6c05559c5d83796e59e0226 + sha256: 20a01b9e2636225cf7a51e16fa482ef71dd9e1d4fc2cdbeb4b11e069dfc94309 + manager: conda + name: fenics-basix + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-basix-0.5.1-py39haaf3ac1_0.tar.bz2 + version: 0.5.1 + - category: main + dependencies: + numpy: "" + python: ">=3.7" + hash: + md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c + sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 + manager: conda + name: fenics-ufl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.2.0 + - category: main + dependencies: + cached-property: "" + hdf5: ">=1.12.1,<1.12.2.0a0" + numpy: ">=1.19.5,<2.0a0" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: 61830991b0c03c465ca4fa4070703adf + sha256: 36d47f3ca7a505ee5d696bd170fd70733be35faacd5edfec82eb8e707beb146c + manager: conda + name: h5py + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/h5py-3.6.0-nompi_py39hd982b79_100.tar.bz2 + version: 3.6.0 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libgfortran: 5.* + libgfortran5: ">=11.0.1.dev0" + liblapack: ">=3.9.0,<4.0a0" + metis: ">=5.1.0,<5.2.0a0" + mumps-include: 5.2.1 hce30654_11 + openmpi: ">=4.1.2,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + ptscotch: ">=6.0.9,<6.0.10.0a0" + scalapack: ">=2.2.0,<2.3.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + hash: + md5: 831fa94c4a8cdf5c839c87b4d6e547c2 + sha256: b77b6cdccc0d817e29088e259becd14ffeaf33ef79a6260011e3d409557fee92 + manager: conda + name: mumps-mpi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mumps-mpi-5.2.1-h51c74a9_11.tar.bz2 + version: 5.2.1 + - category: main + dependencies: + cffi: "" + fenics-basix: 0.5.* + fenics-ufl: 2022.2.* + numpy: "" + python: ">=3.7" + setuptools: "" + hash: + md5: 2dcc01a5199492d95b197d7265f5336a + sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 + manager: conda + name: fenics-ffcx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 + version: 0.5.0 + - category: main + dependencies: + fftw: "* mpi_openmpi_*" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" + hypre: ">=2.25.0,<2.25.1.0a0" + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=13.0.1" + libgfortran: 5.* + libgfortran5: ">=11.0.1.dev0" + liblapack: ">=3.9.0,<4.0a0" + metis: ">=5.1.0,<5.2.0a0" + mumps-mpi: ">=5.2.1,<5.2.2.0a0" + openmpi: ">=4.1.4,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + ptscotch: ">=6.0.9,<6.0.10.0a0" + scalapack: ">=2.2.0,<2.3.0a0" + scotch: ">=6.0.9,<6.0.10.0a0" + suitesparse: ">=5.10.1,<5.10.2.0a0" + superlu: "" + superlu_dist: ">=7.1.1,<8.0a0" + yaml: ">=0.2.5,<0.3.0a0" + hash: + md5: 9ac30b7790133bf08fe4ef4d3490437e + sha256: 2483644bbbabe2985dff9d0bda8fc5f0662e76e8b93b6490ba4ba90e6fa333df + manager: conda + name: petsc + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/petsc-3.17.3-real_h5d98e65_100.tar.bz2 + version: 3.17.3 + - category: main + dependencies: + libgfortran: 5.* + libgfortran5: ">=11.0.1.dev0" + numpy: ">=1.19.5,<2.0a0" + openmpi: ">=4.1.4,<5.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + hash: + md5: b5b16834090ef3f38f05d5f16c21d245 + sha256: 1ccd8e98584b7ccdf1c6d8c335708a63ccaefa500872004d4a45eef51ffb50f7 + manager: conda + name: petsc4py + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/petsc4py-3.17.3-real_h275bb75_101.tar.bz2 + version: 3.17.3 + - category: main + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libcxx: ">=13.0.1" + libgfortran: 5.* + libgfortran5: ">=11.0.1.dev0" + liblapack: ">=3.9.0,<4.0a0" + openmpi: ">=4.1.4,<5.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + suitesparse: ">=5.10.1,<5.10.2.0a0" + hash: + md5: 370a5ace4fc55f63d566e4a884edc9e5 + sha256: 69840506327196bf20deccc80a241e654cac68199aedc6be815062824ee5dd49 + manager: conda + name: slepc + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/slepc-3.17.1-real_hcfedfd6_102.tar.bz2 + version: 3.17.1 + - category: main + dependencies: + boost-cpp: ">=1.74.0,<1.74.1.0a0" + fenics-libbasix: ">=0.5.1,<0.5.2.0a0" + fenics-ufcx: ">=0.5.0,<0.5.1.0a0" + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" + libadios2: ">=2.8.3,<2.8.4.0a0 mpi_openmpi_*" + libcxx: ">=14.0.4" + openmpi: ">=4.1.4,<5.0a0" + parmetis: ">=4.0.3,<4.1.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + ptscotch: ">=6.0.9,<6.0.10.0a0" + pugixml: ">=1.11.4,<1.12.0a0" + slepc: ">=3.17.1,<3.18.0a0 real_*" + xtensor: ">=0.24.3,<0.25.0a0" + hash: + md5: b79e84e821f09b3c2966d35925d7178b + sha256: 193dabb15ddbfc38d11a2846af6338a2fa193c3c17b8cfd687d793735ec45b9c + manager: conda + name: fenics-libdolfinx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-libdolfinx-0.5.2-h1ff1027_100.tar.bz2 + version: 0.5.2 + - category: main + dependencies: + numpy: ">=1.19.5,<2.0a0" + openmpi: ">=4.1.4,<5.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + petsc4py: 3.17.* + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + slepc: ">=3.17.1,<3.18.0a0 real_*" + hash: + md5: 9678535ab574d7210098173fd050d10e + sha256: c95fa4ea68dcc6888e55067412c72e5530efeefcd2f819c0bca3dc5376906e1b + manager: conda + name: slepc4py + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/slepc4py-3.17.1-real_hbb689fd_103.tar.bz2 + version: 3.17.1 + - category: main + dependencies: + cffi: "" + fenics-basix: 0.5.* + fenics-ffcx: 0.5.* + fenics-libdolfinx: 0.5.2 h1ff1027_100 + fenics-ufl: 2022.2.* + hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" + libcxx: ">=14.0.4" + mpi4py: "" + numpy: "" + openmpi: ">=4.1.4,<5.0a0" + petsc: ">=3.17.3,<3.18.0a0 real_*" + petsc4py: "" + python: ">=3.9,<3.10.0a0 *_cpython" + python_abi: 3.9.* *_cp39 + slepc: ">=3.17.1,<3.18.0a0 real_*" + slepc4py: "" + hash: + md5: 64f26edb132e39829dfef52d7eaf4b62 + sha256: 8ea44628532381d3930863089a22a70f542d40274afdd63af07f78220a3a70a4 + manager: conda + name: fenics-dolfinx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-dolfinx-0.5.2-py39h1f1acac_100.tar.bz2 + version: 0.5.2 + - category: main + dependencies: {} + hash: + sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 + manager: pip + name: async-timeout + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl + version: 3.0.1 + - category: main + dependencies: {} + hash: + sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c + manager: pip + name: attrs + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl + version: 22.1.0 + - category: main + dependencies: {} + hash: + sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 + manager: pip + name: cachetools + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl + version: 4.2.4 + - category: main + dependencies: {} + hash: + sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 + manager: pip + name: certifi + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl + version: 2022.9.24 + - category: main + dependencies: {} + hash: + sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 + manager: pip + name: chardet + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl + version: 3.0.4 + - category: main + dependencies: {} + hash: + sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f + manager: pip + name: charset-normalizer + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl + version: 2.1.1 + - category: main + dependencies: {} + hash: + sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 + manager: pip + name: colorama + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl + version: 0.4.6 + - category: main + dependencies: {} + hash: + sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 + manager: pip + name: cycler + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl + version: 0.11.0 + - category: main + dependencies: {} + hash: + sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff + manager: pip + name: distro + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl + version: 1.8.0 + - category: main + dependencies: {} + hash: + sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d + manager: pip + name: future + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz + version: 0.18.2 + - category: main + dependencies: {} + hash: + sha256: f5e09dc5c6e1796969fd4b775ea1417d70e49a5df29aaa8e5d10675d9e11872c + manager: pip + name: greenlet + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/ea/37/e54ce453b298e890f59dba3db32461579328a07d5b65e3eabf80f971c099/greenlet-1.1.3.post0.tar.gz + version: 1.1.3.post0 + - category: main + dependencies: {} + hash: + sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 + manager: pip + name: idna + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl + version: "3.4" + - category: main + dependencies: {} + hash: + sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f + manager: pip + name: jmespath + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl + version: 0.10.0 + - category: main + dependencies: {} + hash: + sha256: b533558eae785e33e8c148a8d9921692a9fe5aa516efbdff8606e7d87b9d5824 + manager: pip + name: kiwisolver + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/26/f3/1daa54509332dff966e1493fe0d5b573e0e11a56d301323ec6c667a53142/kiwisolver-1.4.4-cp39-cp39-macosx_11_0_arm64.whl + version: 1.4.4 + - category: main + dependencies: {} + hash: + sha256: a007b1638e148c3cfb6bf0bdc4f82776cef0ac487191d093cdc316905e504071 + manager: pip + name: multidict + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/98/16/7af490ccfe470dad4b3d28fc69b1f3b4cdfe0fd5e279b299e103edbb8505/multidict-6.0.2-cp39-cp39-macosx_11_0_arm64.whl + version: 6.0.2 + - category: main + dependencies: {} + hash: + sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 + manager: pip + name: nest-asyncio + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl + version: 1.5.6 + - category: main + dependencies: {} + hash: + sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d + manager: pip + name: networkx + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl + version: 2.8.7 + - category: main + dependencies: {} + hash: + sha256: 4ad2f835e0ad81d1689f1b7e3fbac7b01bb8777d5a985c8962bedee0cc6d43da + manager: pip + name: pillow + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/aa/bc/21097cd891dd2fa02f2b3d767e02e883e026482e59d29975d1bc30024aa3/Pillow-9.2.0-cp39-cp39-macosx_11_0_arm64.whl + version: 9.2.0 + - category: main + dependencies: {} + hash: + sha256: 9c38d3869238e9d3409239bc05bc27d6b7c99c2a460ea337d2814b35fb4fea1b + manager: pip + name: psycopg2-binary + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/63/db/67c2a94c3d89c48a2a4efc2029f6dc082faa3bc3dd14de49346c126c9600/psycopg2_binary-2.9.5-cp39-cp39-macosx_11_0_arm64.whl + version: 2.9.5 + - category: main + dependencies: {} + hash: + sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc + manager: pip + name: pyparsing + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl + version: 3.0.9 + - category: main + dependencies: {} + hash: + sha256: f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5 + manager: pip + name: pyrsistent + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/15/fa/64ed4c29d36df26906f03a1fb360056e3cbc063b00446f3663252bdd175a/pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl + version: 0.18.1 + - category: main + dependencies: {} + hash: + sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 + manager: pip + name: pytz + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl + version: "2022.5" + - category: main + dependencies: {} + hash: + sha256: e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174 + manager: pip + name: pyyaml + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/67/d4/b95266228a25ef5bd70984c08b4efce2c035a4baa5ccafa827b266e3dc36/PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl + version: "6.0" + - category: main + dependencies: {} + hash: + sha256: 1f08fd5a2bea9c4180db71678e850b995d2a5f4537be0e94557668cf0f5f9497 + manager: pip + name: ruamel.yaml.clib + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d5/31/a3e6411947eb7a4f1c669f887e9e47d61a68f9d117f10c3c620296694a0b/ruamel.yaml.clib-0.2.7.tar.gz + version: 0.2.7 + - category: main + dependencies: {} + hash: + sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 + manager: pip + name: semver + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl + version: 2.13.0 + - category: main + dependencies: {} + hash: + sha256: a712f4b205a0c2bbd9bfbefbe27f83ad892904f6cf9e165644dec0fb2320c508 + manager: pip + name: simpleitk + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/30/02/521b1822c6a97cc8f1597e997dd4bee6461573e9c3fc1cf1dc584ddf68ee/SimpleITK-2.2.0-cp39-cp39-macosx_11_0_arm64.whl + version: 2.2.0 + - category: main + dependencies: {} + hash: + sha256: 5540fba2d437edaf4aa4fbb80f43f42a8334206ad1ad3b27aef577fd989f20d9 + manager: pip + name: simplejson + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/07/86/e206883709a2a02710b338fa6bc5bdbe3ac97ca7187e1539a10c06895803/simplejson-3.17.6-cp39-cp39-macosx_11_0_arm64.whl + version: 3.17.6 + - category: main + dependencies: {} + hash: + sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 + manager: pip + name: six + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl + version: 1.16.0 + - category: main + dependencies: {} + hash: + sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e + manager: pip + name: typing-extensions + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl + version: 4.4.0 + - category: main + dependencies: {} + hash: + sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 + manager: pip + name: urllib3 + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl + version: 1.26.12 + - category: main + dependencies: + numpy: ">=1.7.1" + hash: + sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 + manager: pip + name: glymur + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz + version: 0.8.19 + - category: main + dependencies: + numpy: "*" + pillow: ">=8.3.2" + hash: + sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 + manager: pip + name: imageio + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl + version: 2.22.2 + - category: main + dependencies: + attrs: ">=17.4.0" + pyrsistent: ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + hash: + sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 + manager: pip + name: jsonschema + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl + version: 4.16.0 + - category: main + dependencies: + pyparsing: ">=2.0.2,<3.0.5 || >3.0.5" + hash: + sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 + manager: pip + name: packaging + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl + version: "21.3" + - category: main + dependencies: + numpy: ">=1.4" + six: "*" + hash: + sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 + manager: pip + name: patsy + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl + version: 0.5.3 + - category: main + dependencies: + numpy: ">=1.11.1" + hash: + sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 + manager: pip + name: pynrrd + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl + version: 0.4.3 + - category: main + dependencies: + six: ">=1.5" + hash: + sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 + manager: pip + name: python-dateutil + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl + version: 2.8.2 + - category: main + dependencies: + numpy: ">=1.17.3" + hash: + sha256: d0e56cd7a53aed3cceca91a04d62feb3a0aca6725b1912d29546c26f6ea90426 + manager: pip + name: pywavelets + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/a0/32/eeeaa4de640a84e2cc35c25aea289367059abce0cac84a9987b139a2a25f/PyWavelets-1.4.1-cp39-cp39-macosx_11_0_arm64.whl + version: 1.4.1 + - category: main + dependencies: + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<3" + idna: ">=2.5,<4" + urllib3: ">=1.21.1,<1.27" + hash: + sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 + manager: pip + name: requests + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl + version: 2.28.1 + - category: main + dependencies: + ruamel.yaml.clib: ">=0.2.6" + hash: + sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 + manager: pip + name: ruamel.yaml + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl + version: 0.17.21 + - category: main + dependencies: + numpy: ">=1.18.5,<1.26.0" + hash: + sha256: fbc5c05c85c1a02be77b1ff591087c83bc44579c6d2bd9fb798bb64ea5e1a027 + manager: pip + name: scipy + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/0a/2e/44795c6398e24e45fa0bb61c3e98de1cfea567b1b51efd3751e2f7ff9720/scipy-1.9.3.tar.gz + version: 1.9.3 + - category: main + dependencies: + greenlet: "!=0.4.17" + hash: + sha256: 177e41914c476ed1e1b77fd05966ea88c094053e17a85303c4ce007f88eff363 + manager: pip + name: sqlalchemy + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/e4/56/8ea85eaab7d93b58f9c213ad8fc5882838189a29fc8cc401d80710a12969/SQLAlchemy-1.4.42.tar.gz + version: 1.4.42 + - category: main + dependencies: + colorama: "*" + hash: + sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 + manager: pip + name: tqdm + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl + version: 4.64.1 + - category: main + dependencies: + idna: ">=2.0" + multidict: ">=4.0" + hash: + sha256: 4c322cbaa4ed78a8aac89b2174a6df398faf50e5fc12c4c191c40c59d5e28357 + manager: pip + name: yarl + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/5e/6b/012f4874880fb40f09c794f62b79fc32291837797a5929914832ced2cdb3/yarl-1.8.1-cp39-cp39-macosx_11_0_arm64.whl + version: 1.8.1 + - category: main + dependencies: + async-timeout: ">=3.0,<4.0" + attrs: ">=17.3.0" + chardet: ">=2.0,<4.0" + multidict: ">=4.5,<7.0" + typing-extensions: ">=3.6.5" + yarl: ">=1.0,<2.0" + hash: + sha256: 5d84ecc73141d0a0d61ece0742bb7ff5751b0657dab8405f899d3ceb104cc7de + manager: pip + name: aiohttp + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/7a/95/eb60aaad7943e18c9d091de93c9b0b5ed40aa67c7d5e3c5ee9b36f100a38/aiohttp-3.7.4.tar.gz + version: 3.7.4 + - category: main + dependencies: + jmespath: ">=0.7.1,<1.0.0" + python-dateutil: ">=2.1,<3.0.0" + urllib3: ">=1.25.4,<1.27" + hash: + sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b + manager: pip + name: botocore + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl + version: 1.20.112 + - category: main + dependencies: + packaging: ">=17.0" + hash: + sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 + manager: pip + name: marshmallow + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl + version: 3.18.0 + - category: main + dependencies: + cycler: ">=0.10" + kiwisolver: ">=1.0.1" + numpy: ">=1.16" + pillow: ">=6.2.0" + pyparsing: ">=2.2.1" + python-dateutil: ">=2.7" + hash: + sha256: d8d994cefdff9aaba45166eb3de4f5211adb4accac85cbf97137e98f26ea0219 + manager: pip + name: matplotlib + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/60/d3/286925802edaeb0b8834425ad97c9564ff679eb4208a184533969aa5fc29/matplotlib-3.4.2.tar.gz + version: 3.4.2 + - category: main + dependencies: + numpy: ">=1.13.3" + packaging: "*" + hash: + sha256: 052ec3a55cc1ccc447580ee5b828b2bd0bc14fea0756ddb81d9617b5472c77b5 + manager: pip + name: numexpr + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/bf/ca/add8876b0db7f3e9c9239d4b126947e830c7e05c17b67f065a75c14495d2/numexpr-2.8.3-cp39-cp39-macosx_11_0_arm64.whl + version: 2.8.3 + - category: main + dependencies: + numpy: ">=1.20.3" + python-dateutil: ">=2.8.1" + pytz: ">=2020.1" + hash: + sha256: 04e51b01d5192499390c0015630975f57836cc95c7411415b499b599b05c0c96 + manager: pip + name: pandas + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/6e/fe/e66020dc13c052be66795794c2590b460dfb87904d7834e2138f36626e74/pandas-1.5.1-cp39-cp39-macosx_11_0_arm64.whl + version: 1.5.1 + - category: main + dependencies: + requests: ">=2.0.1,<3.0.0" + hash: + sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 + manager: pip + name: requests-toolbelt + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl + version: 0.10.1 + - category: main + dependencies: + distro: "*" + packaging: "*" + hash: + sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 + manager: pip + name: scikit-build + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl + version: 0.15.0 + - category: main + dependencies: + marshmallow: ">=3.0.0,<4.0" + numpy: "*" + pyyaml: "*" + hash: + sha256: 38cceff1d3bb4ecf0eebb2a6ea46b99c418e9bd94b5acaec95d9307731360bbc + manager: pip + name: argschema + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/e9/43/91c96e0b69f86c7076989ef97bc1687ed427ddacd1dd1c7010b5c330d611/argschema-3.0.4.tar.gz + version: 3.0.4 + - category: main + dependencies: + h5py: ">=2.10,<4" + jsonschema: ">=2.6.0,<5" + numpy: ">=1.16,<1.24" + pandas: ">=1.0.5,<2" + ruamel.yaml: ">=0.16,<1" + scipy: ">=1.1,<2" + hash: + sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d + manager: pip + name: hdmf + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl + version: 3.4.6 + - category: main + dependencies: + botocore: ">=1.12.36,<2.0a.0" + hash: + sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 + manager: pip + name: s3transfer + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl + version: 0.3.7 + - category: main + dependencies: + imageio: ">=2.3.0" + matplotlib: ">=2.0.0,<3.0.0 || >3.0.0" + networkx: ">=2.0" + pillow: ">=4.3.0" + pywavelets: ">=0.4.0" + scipy: ">=0.19.0" + hash: + sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c + manager: pip + name: scikit-image + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz + version: 0.16.2 + - category: main + dependencies: + matplotlib: ">=3.1,<3.6.1 || >3.6.1" + numpy: ">=1.17" + pandas: ">=0.25" + hash: + sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 + manager: pip + name: seaborn + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl + version: 0.12.1 + - category: main + dependencies: + numpy: ">=1.17" + pandas: ">=0.25" + patsy: ">=0.5.2" + scipy: ">=1.3" + hash: + sha256: f2efc02011b7240a9e851acd76ab81150a07d35c97021cb0517887539a328f8a + manager: pip + name: statsmodels + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/9e/5e/4a2ade283411d1f46d6f8dd5fe951b9152062d55a20750cd5d4b556322bf/statsmodels-0.13.0.tar.gz + version: 0.13.0 + - category: main + dependencies: + numexpr: ">=2.6.2" + numpy: ">=1.9.3" + hash: + sha256: 49a972b8a7c27a8a173aeb05f67acb45fe608b64cd8e9fa667c0962a60b71b49 + manager: pip + name: tables + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/2b/32/847ee3f521aae6a0be380d923a736162d698586f444df1ac24b98c65025c/tables-3.6.1.tar.gz + version: 3.6.1 + - category: main + dependencies: + numpy: ">=1.15" + pandas: ">=0.25" + hash: + sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d + manager: pip + name: xarray + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl + version: 0.15.1 + - category: main + dependencies: + botocore: ">=1.20.21,<1.21.0" + jmespath: ">=0.7.1,<1.0.0" + s3transfer: ">=0.3.0,<0.4.0" + hash: + sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 + manager: pip + name: boto3 + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl + version: 1.17.21 + - category: main + dependencies: + h5py: ">=2.10,<4" + hdmf: ">=3.4.2,<4" + numpy: ">=1.16,<1.24" + pandas: ">=1.1.5,<2" + python-dateutil: ">=2.7.3,<3" + hash: + sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f + manager: pip + name: pynwb + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl + version: 2.2.0 + - category: main + dependencies: + pynwb: ">=1.1.2" + hash: + sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af + manager: pip + name: ndx-events + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl + version: 0.2.0 + - category: main + dependencies: + aiohttp: 3.7.4 + argschema: ">=3.0.1,<4.0.0" + boto3: 1.17.21 + cachetools: ">=4.2.1,<5.0.0" + future: ">=0.14.3,<1.0.0" + glymur: 0.8.19 + h5py: "*" + hdmf: ">=2.5.8" + jinja2: ">=3.0.0" + matplotlib: ">=1.4.3,<3.4.3" + ndx-events: <=0.2.0 + nest-asyncio: "*" + numpy: "*" + pandas: ">=1.1.5" + psycopg2-binary: ">=2.7,<3.0.0" + pynrrd: ">=0.2.1,<1.0.0" + pynwb: "*" + requests: <3.0.0 + requests-toolbelt: <1.0.0 + scikit-build: <1.0.0 + scikit-image: ">=0.14.0,<0.17.0" + scipy: ">=1.4.0,<2.0.0" + seaborn: <1.0.0 + semver: "*" + simpleitk: ">=2.0.2,<3.0.0" + simplejson: ">=3.10.0,<4.0.0" + six: ">=1.9.0,<2.0.0" + sqlalchemy: "*" + statsmodels: <=0.13.0 + tables: ">=3.6.0,<3.7.0" + tqdm: ">=4.27" + xarray: <0.16.0 + hash: + sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 + manager: pip + name: allensdk + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl + version: 2.13.6 +version: 1 diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..f13cf60 --- /dev/null +++ b/environment.yml @@ -0,0 +1,24 @@ +name: skeleton_keys +channels: + - conda-forge +dependencies: + - python=3.9 + - pip + - fenics-dolfinx + - fenics-libdolfinx + - gmsh + - hdf5 + - h5py + - Jinja2>=3.0 + - numpy + - scipy + - pandas + - scikit-learn + - shapely + - geopandas + - rasterio + - pip: + - allensdk + - argschema + - git+https://github.com/AllenInstitute/neuron_morphology@science_staging[streamlines] + - git+https://github.com/AllenInstitute/ccf_streamlines.git diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..04449e6 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,11 @@ +numpy +scipy +pandas +scikit-learn +git+https://github.com/AllenInstitute/neuron_morphology@science_staging[streamlines] +argschema +allensdk +shapely +geopandas +git+https://github.com/AllenInstitute/ccf_streamlines.git +rasterio From 9dbd692973c8dfc4a0beb6bc7f591be6336fe142 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Wed, 26 Oct 2022 16:41:25 -0700 Subject: [PATCH 19/23] fixing docker build --- Dockerfile | 30 +- conda-lock.yml | 29813 ++++++++++++++++++++++++++++++++------------- environment.yml | 14 +- requirements.txt | 4 +- 4 files changed, 21128 insertions(+), 8733 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1bba5ec..8acd78c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,27 +1,21 @@ FROM condaforge/mambaforge:4.9.2-5 as conda RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/* -COPY conda-lock.yml . RUN mamba install -y -c conda-forge conda-lock conda-pack +COPY conda-lock.yml . RUN conda-lock install --name skeleton_keys conda-lock.yml SHELL ["mamba", "run","-n","skeleton_keys","/bin/bash", "-c"] -RUN mamba run -n skeleton_keys python --version -RUN pip install git+https://github.com/AllenInstitute/neuron_morphology@science_staging -RUN pip install git+https://github.com/AllenInstitute/ccf_streamlines.git -RUN conda-pack -n skeleton_keys -o /tmp/env.tar && \ - mkdir /venv && cd /venv && tar xf /tmp/env.tar && \ - rm /tmp/env.tar COPY requirements.txt . -RUN mkdir skeleton_keys && source /venv/bin/activate && pip install -r requirements.txt -#RUN source /venv/bin/activate && python3 -c "import configparser; c = configparser.ConfigParser(); c.read('setup.cfg'); print(c['options']['install_requires'])" | xargs pip install - +RUN mamba run -n skeleton_keys pip install -r requirements.txt COPY . /usr/local/src/skeleton_keys WORKDIR /usr/local/src/skeleton_keys -RUN source /venv/bin/activate && python setup.py install - -FROM debian:buster AS runtime -COPY --from=conda /venv /venv -SHELL ["/bin/bash", "-c"] -ENTRYPOINT source /venv/bin/activate && \ - python --version -WORKDIR /usr/local/src/skeleton_keys +RUN mamba run -n skeleton_keys pip install . +# RUN conda-pack -n skeleton_keys -o /tmp/env.tar && \ +# mkdir /venv && cd /venv && tar xf /tmp/env.tar && \ +# rm /tmp/env.tar +# FROM debian:buster AS runtime +# COPY --from=conda /venv /venv +# SHELL ["/bin/bash", "-c"] +# ENTRYPOINT source /venv/bin/activate && \ +# python --version +# WORKDIR /usr/local/src/skeleton_keys diff --git a/conda-lock.yml b/conda-lock.yml index 5f60cdb..e2831e0 100644 --- a/conda-lock.yml +++ b/conda-lock.yml @@ -12,8717 +12,21112 @@ # conda-lock -f ./environment.yml -f /Users/forrestc/ConnectomeStack/skeleton_keys/environment.yml --lockfile conda-lock.yml metadata: channels: - - url: conda-forge - used_env_vars: [] + - url: conda-forge + used_env_vars: [] content_hash: - linux-64: 8dc1b9886d29bb3ed8784a685fe00a6d259703bce5e1dfbd5d68e3ec63308901 - linux-aarch64: 539ee38010cc5b14686e1985700bdea1eb3a3ef8e639e13b995743a13172fc09 - osx-64: e97e254158231f42eab4c0729c3013ba086a963ce3c976cd9b0f87ec4837589d - osx-arm64: c0d2045b3f499d0e563860176c35a42fbe999f37675a974b75de6b4ed3c222c8 + linux-64: c511ff40c7c5d8631c04d856c30a9b93a3951b366506ccf48c364bb729d3672b + linux-aarch64: 8d4bbacd38e99767a88e116f9407a9d1814886107ddad908c3beffd85cc66171 + osx-64: 787b2e57a3ac5c477dbc5d30701db8da629439af6d2e7b9eee79114903066467 + osx-arm64: f024c27089655f8663760faf25c0e17796cfc51f6c79b7c67bf93497c2b1deda platforms: - - linux-64 - - linux-aarch64 - - osx-64 - - osx-arm64 + - linux-64 + - linux-aarch64 + - osx-64 + - osx-arm64 sources: - - ./environment.yml - - /Users/forrestc/ConnectomeStack/skeleton_keys/environment.yml + - ./environment.yml + - /Users/forrestc/ConnectomeStack/skeleton_keys/environment.yml package: - - category: main - dependencies: {} - hash: - md5: d7c89558ba9fa0495403155b64376d81 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - manager: conda - name: _libgcc_mutex - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - version: "0.1" - - category: main - dependencies: {} - hash: - md5: 41e4e87062433e283696cf384f952ef6 - sha256: 058355034667e77d15389700f6b2364cc74efce0af63a418eacc1ce252458942 - manager: conda - name: ca-certificates - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.9.24-ha878542_0.tar.bz2 - version: 2022.9.24 - - category: main - dependencies: {} - hash: - md5: a0a531df6bf6663607dc77722ae522d6 - sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f - manager: conda - name: fenics-ufcx - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 - version: 0.5.0 - - category: main - dependencies: {} - hash: - md5: 5dd5127afd710f91f6a75821bac0a4f0 - sha256: c9f33acc0f1095bd4e7a2b577dfa41fc3fef3713b3975e8467a0fbed188fe6f4 - manager: conda - name: kernel-headers_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_15.tar.bz2 - version: 2.6.32 - - category: main - dependencies: {} - hash: - md5: c2719e2faa7bd7076d3a4b52271e5622 - sha256: a41140cb2a85048eba89dcf6cc8267e673bf40ce2108534eda1531b9f939fe82 - manager: conda - name: ld_impl_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.39-hc81fddc_0.tar.bz2 - version: "2.39" - - category: main - dependencies: {} - hash: - md5: b41d6540a78ba2518655eebcb0e41e20 - sha256: a211a8a80846eb0096eeaf7012984b4c58f0c3c8229f6b4f8c58f36cd2d2a3c2 - manager: conda - name: libgcc-devel_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-10.4.0-hd38fd1e_19.tar.bz2 - version: 10.4.0 - - category: main - dependencies: {} - hash: - md5: 164b4b1acaedc47ee7e658ae6b308ca3 - sha256: 03ea784edd12037dc3a7a0078ff3f9c3383feabb34d5ba910bb2fd7a21a2d961 - manager: conda - name: libgfortran5 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.tar.bz2 - version: 12.2.0 - - category: main - dependencies: {} - hash: - md5: 9367571bf3218f968a47c010618a9715 - sha256: 0ddb167fe0d9d26fd0d5c9cf9afdae91de5c54da43806a21783092edd1d00540 - manager: conda - name: libstdcxx-devel_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-10.4.0-hd38fd1e_19.tar.bz2 - version: 10.4.0 - - category: main - dependencies: {} - hash: - md5: 1030b1f38c129f2634eae026f704fe60 - sha256: 0289e6a7b9a5249161a3967909e12dcfb4ab4475cdede984635d3fb65c606f08 - manager: conda - name: libstdcxx-ng - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2 - version: 12.2.0 - - category: main - dependencies: {} - hash: - md5: 1dcc49e16749ff79ba2194fa5d4ca5e7 - sha256: 54cf44ee2c122bce206f834a825af06e3b14fc4fd58c968ae9329715cc281d1e - manager: conda - name: mpi - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-openmpi.tar.bz2 - version: "1.0" - - category: main - dependencies: {} - hash: - md5: 765196257c11b54dc52522d2fcafdd69 - sha256: 583922c671eb90e576a96432fe1439bc5eb46f88c4a0a4867fba39653c09c6de - manager: conda - name: mumps-include - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.2.1-ha770c72_11.tar.bz2 - version: 5.2.1 - - category: main - dependencies: {} - hash: - md5: b6bd89cf71494c41a181cac13cc5a8ea - sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 - manager: conda - name: tzdata - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 - version: 2022e - - category: main - dependencies: - libgfortran5: 12.2.0 h337968e_19 - hash: - md5: cd7a806282c16e1f2d39a7e80d3a3e0d - sha256: c7d061f323e80fbc09564179073d8af303bf69b953b0caddcf79b47e352c746f - manager: conda - name: libgfortran-ng - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2 - version: 12.2.0 - - category: main - dependencies: - _libgcc_mutex: 0.1 conda_forge - hash: - md5: cedcee7c064c01c403f962c9e8d3c373 - sha256: 81a76d20cfdee9fe0728b93ef057ba93494fd1450d42bc3717af4e468235661e - manager: conda - name: libgomp - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2 - version: 12.2.0 - - category: main - dependencies: - kernel-headers_linux-64: 2.6.32 he073ed8_15 - hash: - md5: 66c192522eacf5bb763568b4e415d133 - sha256: 8498c73b60a7ea6faedf36204ec5a339c78d430fa838860f2b9d5d3a1c354eff - manager: conda - name: sysroot_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_15.tar.bz2 - version: "2.12" - - category: main - dependencies: - _libgcc_mutex: 0.1 conda_forge - libgomp: ">=7.5.0" - hash: - md5: 73aaf86a425cc6e73fcf236a5a46396d - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 - manager: conda - name: _openmp_mutex - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - version: "4.5" - - category: main - dependencies: - ld_impl_linux-64: 2.39 hc81fddc_0 - sysroot_linux-64: "" - hash: - md5: e9d3f31bc4814b5b09aa0504124a4adc - sha256: ad65b436b95d9071aff0700ddc565737929fa711758bd6f8bebca45d27e08778 - manager: conda - name: binutils_impl_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.39-h6ceecb4_0.tar.bz2 - version: "2.39" - - category: main - dependencies: - binutils_impl_linux-64: 2.39.* - sysroot_linux-64: "" - hash: - md5: b7d26ab37be17ea4c366a97138684bcb - sha256: acf554585c011689ce6c58472200545c9512dce1b9dfc5e853f25771c0c3e12e - manager: conda - name: binutils_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.39-h5fc0e48_11.tar.bz2 - version: "2.39" - - category: main - dependencies: - _libgcc_mutex: 0.1 conda_forge - _openmp_mutex: ">=4.5" - hash: - md5: e4c94f80aef025c17ab0828cd85ef535 - sha256: f3899c26824cee023f1e360bd0859b0e149e2b3e8b1668bc6dd04bfc70dcd659 - manager: conda - name: libgcc-ng - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2 - version: 12.2.0 - - category: main - dependencies: - libgcc-ng: ">=9.3.0" - hash: - md5: a1fd65c7ccbf10880423d82bca54eb54 - sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa - manager: conda - name: bzip2 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 - version: 1.0.8 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - hash: - md5: f26ef8098fab1f719c91eb760d63381a - sha256: ee735e60d2cf68e5635df17847e97b505a752985d10581d2438203e7c0f44c15 - manager: conda - name: c-ares - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.18.1-h7f98852_0.tar.bz2 - version: 1.18.1 - - category: main - dependencies: - libgcc-ng: ">=7.5.0" - libstdcxx-ng: ">=7.5.0" - hash: - md5: b94cf2db16066b242ebd26db2facbd56 - sha256: 07a5319e1ac54fe5d38f50c60f7485af7f830b036da56957d0bfb7558a886198 - manager: conda - name: gmp - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2 - version: 6.2.1 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - hash: - md5: 87473a15119779e021c314249d4b4aed - sha256: 1d7950f3be4637ab915d886304e57731d39a41ab705ffc95c4681655c459374a - manager: conda - name: icu - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2 - version: "70.1" - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - hash: - md5: 30186d27e2c9fa62b45fb1476b7200e3 - sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb - manager: conda - name: keyutils - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - version: 1.6.1 - - category: main - dependencies: - libgcc-ng: ">=7.5.0" - hash: - md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3 - sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 - manager: conda - name: libev - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2 - version: "4.33" - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - hash: - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - manager: conda - name: libffi - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - version: 3.4.2 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - hash: - md5: 39b1328babf85c7c3a61636d9cd50206 - sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad - manager: conda - name: libnsl - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2 - version: 2.0.0 - - category: main - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.4.0" - hash: - md5: 8c5963a49b6035c40646a763293fbb35 - sha256: 018372af663987265cb3ca8f37ac8c22b5f39219f65a0c162b056a30af11bba0 - manager: conda - name: libopenblas - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2 - version: 0.3.21 - - category: main - dependencies: - libgcc-ng: ">=10.4.0" - hash: - md5: b068ad132a509367bc9e5a200a639429 - sha256: 3f47701d3031ada2de72d4b85eaec9007fd6f95ed20e517ad8f55b792e0cb434 - manager: conda - name: libsanitizer - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-10.4.0-h5246dfb_19.tar.bz2 - version: 10.4.0 - - category: main - dependencies: - libgcc-ng: ">=7.5.0" - hash: - md5: c3788462a6fbddafdb413a9f9053e58d - sha256: 53da0c8b79659df7b53eebdb80783503ce72fb4b10ed6e9e05cc0e9e4207a130 - manager: conda - name: libsodium - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 - version: 1.0.18 - - category: main - dependencies: - libgcc-ng: ">=9.3.0" - hash: - md5: 772d69f030955d9646d3d0eaf21d859d - sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3 - manager: conda - name: libuuid - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.32.1-h7f98852_1000.tar.bz2 - version: 2.32.1 - - category: main - dependencies: - libgcc-ng: ">=12" - hash: - md5: f3f9de449d32ca9b9c66a22863c96f41 - sha256: 22f3663bcf294d349327e60e464a51cd59664a71b8ed70c28a9f512d10bc77dd - manager: conda - name: libzlib - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2 - version: 1.2.13 - - category: main - dependencies: - libgcc-ng: ">=9.3.0" - libstdcxx-ng: ">=9.3.0" - hash: - md5: fbe97e8fa6f275d7c76a09e795adc3e6 - sha256: 56313fe4e602319682d4ea05c0ed3c5c45fc79884a5896f2cb7436b15d6987f9 - manager: conda - name: lz4-c - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.3-h9c3ff4c_1.tar.bz2 - version: 1.9.3 - - category: main - dependencies: - libgcc-ng: ">=7.5.0" - hash: - md5: d099b812378b1e133c12e3b75167d83a - sha256: 51874bbe38bceafc89158e276f202aecdf9171e0f3c946948ea2457611c4831a - manager: conda - name: metis - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-h58526e2_1006.tar.bz2 - version: 5.1.0 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - hash: - md5: 4acfc691e64342b9dae57cf2adc63238 - sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065 - manager: conda - name: ncurses - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2 - version: "6.3" - - category: main - dependencies: - ca-certificates: "" - libgcc-ng: ">=12" - hash: - md5: e772305877e7e57021916886d8732137 - sha256: d358b5e5187695748961fc06c380668ba1b9a67d5880f94d1ae2757c523f2a52 - manager: conda - name: openssl - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.0.5-h166bdaf_2.tar.bz2 - version: 3.0.5 - - category: main - dependencies: - libgcc-ng: ">=9.3.0" - libstdcxx-ng: ">=9.3.0" - hash: - md5: 3b6d9e8331a6d0b93f66fa1ead8dffb6 - sha256: bed0023f5c8ee31d8341a5991697da5b0bdbd1bff70c99ed844d6be639a0571e - manager: conda - name: pugixml - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.11.4-h9c3ff4c_0.tar.bz2 - version: 1.11.4 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - hash: - md5: 418adb239781d9690afc6b1a05514c37 - sha256: 7e324caf1922a94e4c3432854624d25ef1fa361866981584725863c840fde5d2 - manager: conda - name: snappy - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.9-hbd366e4_1.tar.bz2 - version: 1.1.9 - - category: main - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - hash: - md5: d2f40df5cf33c6885428d0d33b8ea3c8 - sha256: 8d863ca567399a3f1321114d5ae0d454507d8f2f7414cedd5a82082a0cd717d1 - manager: conda - name: tbb - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.6.0-h924138e_0.tar.bz2 - version: 2021.6.0 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - libstdcxx-ng: ">=9.4.0" - hash: - md5: 468853b5c7010095bcfdde7b5e4503a2 - sha256: a08ee3d5aa77ce22eca1904ff33434cfa86b68c61840576908365301962b1515 - manager: conda - name: xtl - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xtl-0.7.4-h4bd325d_0.tar.bz2 - version: 0.7.4 - - category: main - dependencies: - libgcc-ng: ">=12" - hash: - md5: 2161070d867d1b1204ea749c8eec4ef0 - sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 - manager: conda - name: xz - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - version: 5.2.6 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - hash: - md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae - sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 - manager: conda - name: yaml - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - version: 0.2.5 - - category: main - dependencies: - _openmp_mutex: ">=4.5" - libgcc-ng: ">=9.4.0" - libstdcxx-ng: ">=9.4.0" - hash: - md5: f12900b1e1e0527c0e9a4e922a5de2bf - sha256: 22f90931ae2d6f084107cd5a5cac5d065df7d23150356ffc56eba50260562174 - manager: conda - name: zfp - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/zfp-0.5.5-h9c3ff4c_8.tar.bz2 - version: 0.5.5 - - category: main - dependencies: - binutils_impl_linux-64: ">=2.39" - libgcc-devel_linux-64: 10.4.0 hd38fd1e_19 - libgcc-ng: ">=10.4.0" - libgomp: ">=10.4.0" - libsanitizer: 10.4.0 h5246dfb_19 - libstdcxx-ng: ">=10.4.0" - sysroot_linux-64: "" - hash: - md5: a086547de4cee874e72d5a43230372ec - sha256: 8e209a1a9d7e13f8134b622d5bb5c0e2150749ebba52c4362bbd503f08a1cf71 - manager: conda - name: gcc_impl_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-10.4.0-h5231bdf_19.tar.bz2 - version: 10.4.0 - - category: main - dependencies: - libopenblas: ">=0.3.21,<1.0a0" - hash: - md5: d9b7a8639171f6c6fa0a983edabcfe2b - sha256: 4e4c60d3fe0b95ffb25911dace509e3532979f5deef4364141c533c5ca82dd39 - manager: conda - name: libblas - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - libgcc-ng: ">=7.5.0" - ncurses: ">=6.2,<7.0.0a0" - hash: - md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 - sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf - manager: conda - name: libedit - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - version: 3.1.20191231 - - category: main - dependencies: - c-ares: ">=1.18.1,<2.0a0" - libev: ">=4.33,<4.34.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: 2b7dbfa6988a41f9d23ba6d4f0e1d74e - sha256: 66988eb178d6ffbad3de5e391dad49aaa298e1309ac197ab40996eac740fbfff - manager: conda - name: libnghttp2 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.47.0-hff17c54_1.tar.bz2 - version: 1.47.0 - - category: main - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: 575078de1d3a3114b3ce131bd1508d0c - sha256: 422a544fbfc8d8bf43de4b2dc5c7c991294ad0e37b37439d8dbf740f07a75437 - manager: conda - name: libpng - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.38-h753d276_0.tar.bz2 - version: 1.6.38 - - category: main - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: 978924c298fc2215f129e8171bbea688 - sha256: 919396aa0e5d0df8d8082db554d850639aa363aff13f4feabf2ee642f823b6d4 - manager: conda - name: libsqlite - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.39.4-h753d276_0.tar.bz2 - version: 3.39.4 - - category: main - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: d85acad4b47dff4e3def14a769a97906 - sha256: 9a9a01f35d2d50326eb8ca7c0a92d0c45b2d0f77d9ea117680c70094ff480c0c - manager: conda - name: libssh2 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-hf14f497_3.tar.bz2 - version: 1.10.0 - - category: main - dependencies: - gmp: ">=6.2.1,<7.0a0" - libgcc-ng: ">=7.5.0" - hash: - md5: ea9ebeddb066da8fad4a815e61b139be - sha256: d2d71ac6ed3b32f06b7db2691e0a1760016ce13fb0c50a9de6ed1ccc33e35ff3 - manager: conda - name: mpfr - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mpfr-4.1.0-h9202a9a_1.tar.bz2 - version: 4.1.0 - - category: main - dependencies: - libgcc-ng: ">=12" - ncurses: ">=6.3,<7.0a0" - hash: - md5: db2ebbe2943aae81ed051a6a9af8e0fa - sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8 - manager: conda - name: readline - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2 - version: 8.1.2 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - libzlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 5b8c42eb62e9fc961af70bdd6a26e168 - sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 - manager: conda - name: tk - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2 - version: 8.6.12 - - category: main - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - xtl: ">=0.7,<0.8" - hash: - md5: 85aff453f9d7a9036ce5a94590f8dd23 - sha256: cf853edf537f40be85668e65e9f60db366bc58bd9d681fb893b001158e46c6f6 - manager: conda - name: xtensor - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xtensor-0.24.3-h924138e_0.tar.bz2 - version: 0.24.3 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - libsodium: ">=1.0.18,<1.0.19.0a0" - libstdcxx-ng: ">=9.4.0" - hash: - md5: 21743a8d2ea0c8cfbbf8fe489b0347df - sha256: 525315b0df21866d4c3d68bc2ff987d26c2fdf0e3e8fd242c49b7255adef04c6 - manager: conda - name: zeromq - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.4-h9c3ff4c_1.tar.bz2 - version: 4.3.4 - - category: main - dependencies: - libgcc-ng: ">=12" - libzlib: 1.2.13 h166bdaf_4 - hash: - md5: 4b11e365c0275b808be78b30f904e295 - sha256: 282ce274ebe6da1fbd52efbb61bd5a93dec0365b14d64566e6819d1691b75300 - manager: conda - name: zlib - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2 - version: 1.2.13 - - category: main - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: adcf0be7897e73e312bd24353b613f74 - sha256: c42d9ec413edd7e984b6cac676997105d0f106556a0f045961153b049b95b87c - manager: conda - name: zstd - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h6239696_4.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - lz4-c: ">=1.9.3,<1.10.0a0" - snappy: ">=1.1.9,<2.0a0" - zstd: ">=1.5.2,<1.6.0a0" - hash: - md5: 37baca23e60af4130cfc03e8ab9f8e22 - sha256: 3635408361a0d168c289d0e32927b1e1c1e4e563439b4ce7153e787201c6a4e0 - manager: conda - name: blosc - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.1-h83bc5f7_3.tar.bz2 - version: 1.21.1 - - category: main - dependencies: - bzip2: ">=1.0.8,<2.0a0" - icu: ">=70.1,<71.0a0" - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - xz: ">=5.2.5,<5.3.0a0" - zstd: ">=1.5.2,<1.6.0a0" - hash: - md5: 9c5996e7741d205bc76a518173ff6b82 - sha256: 82d7d5c3042baae2cc7ee798612681f72ad348978d72ac17de9f3c41183f0a19 - manager: conda - name: boost-cpp - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.74.0-h75c5d50_8.tar.bz2 - version: 1.74.0 - - category: main - dependencies: - binutils_linux-64: 2.39 h5fc0e48_11 - gcc_impl_linux-64: 10.4.0.* - sysroot_linux-64: "" - hash: - md5: 8ec7a24818e75cd2975e6fe785ad18eb - sha256: 653d27c4a31c582faa0ff244292bbfa69ff206a03082ceb7e642bdb297f73677 - manager: conda - name: gcc_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-10.4.0-h9215b83_11.tar.bz2 - version: 10.4.0 - - category: main - dependencies: - gcc_impl_linux-64: 10.4.0 h5231bdf_19 - libstdcxx-devel_linux-64: 10.4.0 hd38fd1e_19 - sysroot_linux-64: "" - hash: - md5: de8c00c5162b819c3e8a7f64ed32baf1 - sha256: bb4d5dd427a3788208737bbce28e3a2793371526aa11f8fa69d66596246ba39d - manager: conda - name: gxx_impl_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-10.4.0-h5231bdf_19.tar.bz2 - version: 10.4.0 - - category: main - dependencies: - keyutils: ">=1.6.1,<2.0a0" - libedit: ">=3.1.20191231,<4.0a0" - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - openssl: ">=3.0.0,<4.0a0" - hash: - md5: d25e05e7ee0e302b52d24491db4891eb - sha256: 9faad78e078a3e671f3572a01163acc1b2a47539559c746ea3ffd17c754ea578 - manager: conda - name: krb5 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.19.3-h08a2579_0.tar.bz2 - version: 1.19.3 - - category: main - dependencies: - libblas: 3.9.0 16_linux64_openblas - hash: - md5: 20bae26d0a1db73f758fc3754cab4719 - sha256: e4ceab90a49cb3ac1af20177016dc92066aa278eded19646bb928d261b98367f - manager: conda - name: libcblas - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - libblas: 3.9.0 16_linux64_openblas - hash: - md5: 955d993f41f9354bf753d29864ea20ad - sha256: f5f30b8049dfa368599e5a08a4f35cb1966af0abc539d1fd1f50d93db76a74e6 - manager: conda - name: liblapack - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.4.0" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - mpi: 1.0 openmpi - zlib: ">=1.2.12,<1.3.0a0" - hash: - md5: 47111ef9982059da798bceb358ac542e - sha256: f9ee2572f50bad793337c2b0a2579b3e5fc5b6850cf70d21b5baa1c37e21d1a5 - manager: conda - name: openmpi - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openmpi-4.1.4-ha1ae619_101.tar.bz2 - version: 4.1.4 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 20eb1f0c247d10da95b1da761e7f4c10 - sha256: 88be3ee9b49716657d8429fbb9b6ce4eb65efd79b7e660636775a858cb077921 - manager: conda - name: scotch - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/scotch-6.0.9-hb2e6521_2.tar.bz2 - version: 6.0.9 - - category: main - dependencies: - libgcc-ng: ">=12" - libsqlite: 3.39.4 h753d276_0 - libzlib: ">=1.2.12,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - readline: ">=8.1.2,<9.0a0" - hash: - md5: 643c271de2dd23ecbd107284426cebc2 - sha256: b0a812bcdc8c622852e4769f66d1db8a2e437a867acf64067ce31f9a0181acc8 - manager: conda - name: sqlite - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.39.4-h4ff8645_0.tar.bz2 - version: 3.39.4 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - hash: - md5: a4fdb592277a9c1a26b16d253e5aa931 - sha256: 34e02a1b0b67740e121f5d1fc389523411e810b5ebbab80ed8715fab5c9d9193 - manager: conda - name: fenics-libbasix - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fenics-libbasix-0.5.1-heb3b609_0.tar.bz2 - version: 0.5.1 - - category: main - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.4.0" - libstdcxx-ng: ">=12" - openmpi: ">=4.1.4,<5.0a0" - hash: - md5: 7dc8d1327426eab7c14782eda597a540 - sha256: 631d8fe16f36e2bf363b9971301c761663a9ad7f53c873b68d653e402995ff8f - manager: conda - name: fftw - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-mpi_openmpi_hdeb57f9_5.tar.bz2 - version: 3.3.10 - - category: main - dependencies: - binutils_linux-64: 2.39 h5fc0e48_11 - gcc_linux-64: 10.4.0 h9215b83_11 - gxx_impl_linux-64: 10.4.0.* - sysroot_linux-64: "" - hash: - md5: 842f0029666e37e929cbd1e7614f5862 - sha256: 5d1b580e7cf9d9a738a1bda1d32e4aaedc8625e0502fd6d41ececc9c8f88cd9d - manager: conda - name: gxx_linux-64 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-10.4.0-h6e491c6_11.tar.bz2 - version: 10.4.0 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - openmpi: ">=4.1.4,<5.0a0" - hash: - md5: 02997add8ee63cd3bc2804078303f94d - sha256: d7e32ef218f968a91a30c2a7ea768449663d2c68df3c7a577bebdd5bd8762c6c - manager: conda - name: hypre - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/hypre-2.25.0-mpi_openmpi_ha709252_0.tar.bz2 - version: 2.25.0 - - category: main - dependencies: - krb5: ">=1.19.3,<1.20.0a0" - libgcc-ng: ">=12" - libnghttp2: ">=1.47.0,<2.0a0" - libssh2: ">=1.10.0,<2.0a0" - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: 4176ca4dc059446656a56a79cce50ea7 - sha256: b78a3d04b063812fea75191aa2205ecda0a705ed8e9b8a91c2f95368388db8de - manager: conda - name: libcurl - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.85.0-h2283fc2_0.tar.bz2 - version: 7.85.0 - - category: main - dependencies: - libgcc-ng: ">=9.3.0" - libstdcxx-ng: ">=9.3.0" - openmpi: ">=4.1,<4.2.0a0" - hash: - md5: 160999f9228e8aac87dc170f0810bc74 - sha256: 20a46cebbec3c50cd0e33372112f962b69bba1082436fc095c90f65aadd43ffd - manager: conda - name: parmetis - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/parmetis-4.0.3-he9a3056_1005.tar.bz2 - version: 4.0.3 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - openmpi: ">=4.1.2,<5.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 4e5d899d1d4704c80b3051eb01490bb2 - sha256: c45c98ea3f3ee1648a801e13115c39005e2f9c378796edbf56c8cf2588ef2371 - manager: conda - name: ptscotch - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ptscotch-6.0.9-h0a9c416_2.tar.bz2 - version: 6.0.9 - - category: main - dependencies: - bzip2: ">=1.0.8,<2.0a0" - ld_impl_linux-64: ">=2.36.1" - libffi: ">=3.4.2,<3.5.0a0" - libgcc-ng: ">=12" - libnsl: ">=2.0.0,<2.1.0a0" - libuuid: ">=2.32.1,<3.0a0" - libzlib: ">=1.2.11,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - openssl: ">=3.0.3,<4.0a0" - readline: ">=8.1,<9.0a0" - sqlite: ">=3.38.5,<4.0a0" - tk: ">=8.6.12,<8.7.0a0" - tzdata: "" - xz: ">=5.2.5,<5.3.0a0" - hash: - md5: 894f6c234741ffc61505de11b7a588ba - sha256: 915c68c398d85132a7f80bc65432d435d7445bbb96fbd2e56c3a3a70aa4fd76a - manager: conda - name: python - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.9.13-h2660328_0_cpython.tar.bz2 - version: 3.9.13 - - category: main - dependencies: - libblas: ">=3.8.0,<4.0a0" - libgcc-ng: ">=10.3.0" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - liblapack: ">=3.8.0,<4.0a0" - openmpi: ">=4.1.2,<5.0a0" - hash: - md5: 9f5631123fb242b76de37a6f0f2804cf - sha256: 84d4994cf823a8226b9bb4191a2f8a8111f5b1d561f06de0b0c22643362953d2 - manager: conda - name: scalapack - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/scalapack-2.2.0-h67de57e_1.tar.bz2 - version: 2.2.0 - - category: main - dependencies: - libblas: ">=3.8.0,<4.0a0" - libcblas: ">=3.8.0,<4.0a0" - libgcc-ng: ">=9.4.0" - liblapack: ">=3.8.0,<4.0a0" - libstdcxx-ng: ">=9.4.0" - metis: ">=5.1.0,<5.2.0a0" - mpfr: ">=4.1.0,<5.0a0" - tbb: ">=2021.3.0" - hash: - md5: a3a685b5f9aeb890ed874502fe56accf - sha256: 176d004eafe3f07110315d1c96ab7245fbba8677364933213404890a0e2e9d1f - manager: conda - name: suitesparse - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/suitesparse-5.10.1-h9e50725_1.tar.bz2 - version: 5.10.1 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - hash: - md5: 2fe6fcc1c7d6e2e8ea3f16ebd3306dbe - sha256: dd80a0f64309849d0a222da3e2edbb28de741202f8d0578ccca705e1ca16dabd - manager: conda - name: superlu - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/superlu-5.2.2-h00795ac_0.tar.bz2 - version: 5.2.2 - - category: main - dependencies: - python: ">=3.6" - hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 - manager: conda - name: cached_property - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libcurl: ">=7.81.0,<8.0a0" - libgcc-ng: ">=10.3.0" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - openmpi: ">=4.1,<4.2.0a0" - openssl: ">=3.0.0,<4.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 1e84e89a0d214ae58ea06e3042f807f9 - sha256: eb3e4da960fcc0f3f32b306bda53de5ab3efdf840b5ed329a45b1a3bbb0b13b3 - manager: conda - name: hdf5 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.1-mpi_openmpi_h41b9b70_4.tar.bz2 - version: 1.12.1 - - category: main - dependencies: - libblas: ">=3.8.0,<4.0a0" - libgcc-ng: ">=10.3.0" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - liblapack: ">=3.8.0,<4.0a0" - metis: ">=5.1.0,<5.2.0a0" - mumps-include: 5.2.1 ha770c72_11 - openmpi: ">=4.1.2,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - ptscotch: ">=6.0.9,<6.0.10.0a0" - scalapack: ">=2.2.0,<2.3.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - hash: - md5: 8cf8da26a2d1e4a6f07fc6597fd42de6 - sha256: fee9b22355697ffa0ed288d1cb01d70041563c6c4c9d8822091f9654c9be2029 - manager: conda - name: mumps-mpi - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mumps-mpi-5.2.1-hfb3545b_11.tar.bz2 - version: 5.2.1 - - category: main - dependencies: - python: ==2.7.*|>=3.4 - hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - manager: conda - name: pycparser - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 - version: "2.21" - - category: main - dependencies: - python: 3.9.* - hash: - md5: 39adde4247484de2bb4000122fdcf665 - sha256: 67231829ea0101fee30c68f788fdba40a11bbee8fdac556daaab5832bd27bf3d - manager: conda - name: python_abi - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-2_cp39.tar.bz2 - version: "3.9" - - category: main - dependencies: - python: ">=3.7" - hash: - md5: 462466739c786f85f9ed555f87099fe1 - sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 - manager: conda - name: setuptools - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 - version: 65.5.0 - - category: main - dependencies: - _openmp_mutex: ">=4.5" - libblas: ">=3.8.0,<4.0a0" - libgcc-ng: ">=9.4.0" - libgfortran-ng: "" - libgfortran5: ">=9.4.0" - liblapack: ">=3.8.0,<4.0a0" - libstdcxx-ng: ">=9.4.0" - metis: ">=5.1.0,<5.2.0a0" - openmpi: ">=4.1.2,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - hash: - md5: 096b645a660e2d764771e73f732b6874 - sha256: abaaac9e2b27a0fd6e9efd02daf8a4bf96d4b8ae7946d35b68a7399e2191817f - manager: conda - name: superlu_dist - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/superlu_dist-7.2.0-h34f6f4d_0.tar.bz2 - version: 7.2.0 - - category: main - dependencies: - python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4" - hash: - md5: 1ca02aaf78d9c70d9a81a3bed5752022 - sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc - manager: conda - name: wheel - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 - version: 0.37.1 - - category: main - dependencies: - cached_property: ">=1.5.2,<1.5.3.0a0" - hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 - manager: conda - name: cached-property - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - pycparser: "" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 9958f561d50276b38a1fddf714c7aa79 - sha256: 4b42019a0135f4db6cf9be8fdd3f97c0a826d93b2e2e991fbf56e6fe92808443 - manager: conda - name: cffi - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py39he91dace_1.tar.bz2 - version: 1.15.1 - - category: main - dependencies: - blosc: ">=1.21.1,<2.0a0" - bzip2: ">=1.0.8,<2.0a0" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" - libffi: ">=3.4.2,<3.5.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.4.0" - libpng: ">=1.6.37,<1.7.0a0" - libstdcxx-ng: ">=12" - openmpi: ">=4.1.4,<5.0a0" - zeromq: ">=4.3.4,<4.4.0a0" - zfp: ">=0.5.5,<1.0a0" - hash: - md5: 6b9f35881bb99683efacc5c5491946d5 - sha256: 3aaa9493fcf2e055af8cb8bf37347efb8b36e44e9adf8c35c8ffd1c905d4a4f7 - manager: conda - name: libadios2 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libadios2-2.8.3-mpi_openmpi_h7cdbe10_1.tar.bz2 - version: 2.8.3 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 7cda413e43b252044a270c2477031c5c - sha256: 05e22cdcefeebe18698acc1b7445fd7e8b4b07c4d65c99f688ddeff8569d42d0 - manager: conda - name: markupsafe - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.1-py39hb9d737c_1.tar.bz2 - version: 2.1.1 - - category: main - dependencies: - libgcc-ng: ">=12" - openmpi: ">=4.1.4,<5.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 0badd3447407f9ff9aa9dd4081e2e003 - sha256: 5bbbc4e310c68a394a538c262aedf5441995e3d239b70dd394208cb5bf0657aa - manager: conda - name: mpi4py - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mpi4py-3.1.3-py39h5418507_2.tar.bz2 - version: 3.1.3 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: ed1301e6c4c15a6419e2d2abbf6a7694 - sha256: be8694098cafc9a112a367ff2a61c79092186d232d99b55b3ab3ce8434b33502 - manager: conda - name: numpy - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.23.4-py39h3d75532_0.tar.bz2 - version: 1.23.4 - - category: main - dependencies: - fftw: "* mpi_openmpi_*" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" - hypre: ">=2.25.0,<2.25.1.0a0" - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - metis: ">=5.1.0,<5.2.0a0" - mumps-mpi: ">=5.2.1,<5.2.2.0a0" - openmpi: ">=4.1.4,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - ptscotch: ">=6.0.9,<6.0.10.0a0" - scalapack: ">=2.2.0,<2.3.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - suitesparse: ">=5.10.1,<5.11.0a0" - superlu: "" - superlu_dist: ">=7.1.1,<8.0a0" - yaml: ">=0.2.5,<0.3.0a0" - hash: - md5: dc22b11e360e53f6434f5452d96847fc - sha256: 61bb512ab6e1d77eb3df30018ec3212300bd5e383aafbf14b19d3068d370eacf - manager: conda - name: petsc - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/petsc-3.17.3-real_h1c6c8d6_100.tar.bz2 - version: 3.17.3 - - category: main - dependencies: - python: ">=3.7" - setuptools: "" - wheel: "" - hash: - md5: 6f4c6de9fed2a9bd8043283611b09587 - sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 - manager: conda - name: pip - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 - version: "22.3" - - category: main - dependencies: - fenics-libbasix: 0.5.1 heb3b609_0 - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: "" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 9a6a61c3337a8d06735983357fcfc246 - sha256: bf4ffb3b0e7242c0f24b756ed53ac3c20ae6cf2408ce58cf2063316488487e1f - manager: conda - name: fenics-basix - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fenics-basix-0.5.1-py39hf939315_0.tar.bz2 - version: 0.5.1 - - category: main - dependencies: - numpy: "" - python: ">=3.7" - hash: - md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c - sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 - manager: conda - name: fenics-ufl - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 - version: 2022.2.0 - - category: main - dependencies: - cached-property: "" - hdf5: ">=1.12.1,<1.12.2.0a0" - libgcc-ng: ">=12" - numpy: ">=1.19.5,<2.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 61b9b1070eeb06e15d9495397a7562a4 - sha256: 189f316b5d1989e685d146104357e82644b78baaa7b5c4d1681d30579a55aab7 - manager: conda - name: h5py - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.7.0-nompi_py39h63b1161_100.tar.bz2 - version: 3.7.0 - - category: main - dependencies: - markupsafe: ">=2.0" - python: ">=3.7" - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - manager: conda - name: jinja2 - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 - version: 3.1.2 - - category: main - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - numpy: ">=1.19.5,<2.0a0" - openmpi: ">=4.1.4,<5.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: da072dc8c31b6fc27693a2c4156cd25d - sha256: 3eb1e954216ec5beaa343fd11923f22ce9af081fea455a5a2fca38af37b39b3c - manager: conda - name: petsc4py - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/petsc4py-3.17.3-real_h7aa3ba5_101.tar.bz2 - version: 3.17.3 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - openmpi: ">=4.1.4,<5.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - suitesparse: ">=5.10.1,<5.11.0a0" - hash: - md5: 402d44de85ce2c84d473e076b1b6e358 - sha256: 48209a783bb5850fc5a7c51897b6f5a114d61ad3c5a0ed77ec325fd0ce2e58cc - manager: conda - name: slepc - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/slepc-3.17.1-real_h11342ed_102.tar.bz2 - version: 3.17.1 - - category: main - dependencies: - cffi: "" - fenics-basix: 0.5.* - fenics-ufl: 2022.2.* - numpy: "" - python: ">=3.7" - setuptools: "" - hash: - md5: 2dcc01a5199492d95b197d7265f5336a - sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 - manager: conda - name: fenics-ffcx - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 - version: 0.5.0 - - category: main - dependencies: - boost-cpp: ">=1.74.0,<1.74.1.0a0" - fenics-libbasix: ">=0.5.1,<0.5.2.0a0" - fenics-ufcx: ">=0.5.0,<0.5.1.0a0" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" - libadios2: ">=2.8.3,<2.8.4.0a0 mpi_openmpi_*" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - openmpi: ">=4.1.4,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - ptscotch: ">=6.0.9,<6.0.10.0a0" - pugixml: ">=1.11.4,<1.12.0a0" - slepc: ">=3.17.1,<3.18.0a0 real_*" - xtensor: ">=0.24.3,<0.25.0a0" - hash: - md5: 3b1084d3ae599fa82ef199300d2ab103 - sha256: f31009e3ac83d8da768a35daa67d21333aa81b154c0c1a693b2439f9f3b042d8 - manager: conda - name: fenics-libdolfinx - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fenics-libdolfinx-0.5.2-hcde13a9_100.tar.bz2 - version: 0.5.2 - - category: main - dependencies: - libgcc-ng: ">=12" - numpy: ">=1.19.5,<2.0a0" - openmpi: ">=4.1.4,<5.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - petsc4py: 3.17.* - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - slepc: ">=3.17.1,<3.18.0a0 real_*" - hash: - md5: 63e085da46bb7d6267a5e1a60d466b09 - sha256: a545f9af2e2b92974481326dc1cda668fff5958f2cf71844b6f601c1929caa74 - manager: conda - name: slepc4py - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/slepc4py-3.17.1-real_hadf0023_103.tar.bz2 - version: 3.17.1 - - category: main - dependencies: - cffi: "" - fenics-basix: 0.5.* - fenics-ffcx: 0.5.* - fenics-libdolfinx: 0.5.2 hcde13a9_100 - fenics-ufl: 2022.2.* - gxx_linux-64: 10.* - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - mpi4py: "" - numpy: "" - openmpi: ">=4.1.4,<5.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - petsc4py: "" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - slepc: ">=3.17.1,<3.18.0a0 real_*" - slepc4py: "" - hash: - md5: 178225d071ff51b7545098a493d57075 - sha256: 669beb516a97321c42e35234da3665a606fddc112c2afa2368cb4f374695854b - manager: conda - name: fenics-dolfinx - optional: false - platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fenics-dolfinx-0.5.2-py39ha5bb776_100.tar.bz2 - version: 0.5.2 - - category: main - dependencies: {} - hash: - sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 - manager: pip - name: async-timeout - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl - version: 3.0.1 - - category: main - dependencies: {} - hash: - sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c - manager: pip - name: attrs - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl - version: 22.1.0 - - category: main - dependencies: {} - hash: - sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 - manager: pip - name: cachetools - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl - version: 4.2.4 - - category: main - dependencies: {} - hash: - sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 - manager: pip - name: certifi - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl - version: 2022.9.24 - - category: main - dependencies: {} - hash: - sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 - manager: pip - name: chardet - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl - version: 3.0.4 - - category: main - dependencies: {} - hash: - sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f - manager: pip - name: charset-normalizer - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl - version: 2.1.1 - - category: main - dependencies: {} - hash: - sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 - manager: pip - name: colorama - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - version: 0.4.6 - - category: main - dependencies: {} - hash: - sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 - manager: pip - name: cycler - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl - version: 0.11.0 - - category: main - dependencies: {} - hash: - sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff - manager: pip - name: distro - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl - version: 1.8.0 - - category: main - dependencies: {} - hash: - sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d - manager: pip - name: future - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz - version: 0.18.2 - - category: main - dependencies: {} - hash: - sha256: 7cf37343e43404699d58808e51f347f57efd3010cc7cee134cdb9141bd1ad9ea - manager: pip - name: greenlet - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/8b/e2/07206a72c1660ce801d2f1635c1314a3706592d35564e4f75d27c4c426eb/greenlet-1.1.3.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 1.1.3.post0 - - category: main - dependencies: {} - hash: - sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 - manager: pip - name: idna - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl - version: "3.4" - - category: main - dependencies: {} - hash: - sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f - manager: pip - name: jmespath - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl - version: 0.10.0 - - category: main - dependencies: {} - hash: - sha256: 7c43e1e1206cd421cd92e6b3280d4385d41d7166b3ed577ac20444b6995a445f - manager: pip - name: kiwisolver - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/a4/36/c414d75be311ce97ef7248edcc4fc05afae2998641bf6b592d43a9dee581/kiwisolver-1.4.4-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl - version: 1.4.4 - - category: main - dependencies: {} - hash: - sha256: bfba7c6d5d7c9099ba21f84662b037a0ffd4a5e6b26ac07d19e423e6fdf965a9 - manager: pip - name: multidict - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/b3/2d/d2bb7c2ac3bc4c1c60f9b82dde1bb084d074cf7a844f7f377477dc35de9b/multidict-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 6.0.2 - - category: main - dependencies: {} - hash: - sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 - manager: pip - name: nest-asyncio - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl - version: 1.5.6 - - category: main - dependencies: {} - hash: - sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d - manager: pip - name: networkx - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl - version: 2.8.7 - - category: main - dependencies: {} - hash: - sha256: 9a54614049a18a2d6fe156e68e188da02a046a4a93cf24f373bffd977e943421 - manager: pip - name: pillow - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/c1/d2/169e77ffa99a04f6837ff860b022fa1ea925e698e1c544c58268c8fd2afe/Pillow-9.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 9.2.0 - - category: main - dependencies: {} - hash: - sha256: e59137cdb970249ae60be2a49774c6dfb015bd0403f05af1fe61862e9626642d - manager: pip - name: psycopg2-binary - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/62/25/5b84c484aefa78f91366eea8b778de797681a5bc626b569555011874de58/psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 2.9.5 - - category: main - dependencies: {} - hash: - sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc - manager: pip - name: pyparsing - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl - version: 3.0.9 - - category: main - dependencies: {} - hash: - sha256: 6bc66318fb7ee012071b2792024564973ecc80e9522842eb4e17743604b5e045 - manager: pip - name: pyrsistent - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/41/cb/733dc14ca2ca17768ea28254b95dbc98f398e46dbf4dba94d4fac491af6e/pyrsistent-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 0.18.1 - - category: main - dependencies: {} - hash: - sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 - manager: pip - name: pytz - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl - version: "2022.5" - - category: main - dependencies: {} - hash: - sha256: 40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0 - manager: pip - name: pyyaml - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/12/fc/a4d5a7554e0067677823f7265cb3ae22aed8a238560b5133b58cda252dad/PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl - version: "6.0" - - category: main - dependencies: {} - hash: - sha256: a7b301ff08055d73223058b5c46c55638917f04d21577c95e00e0c4d79201a6b - manager: pip - name: ruamel.yaml.clib - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/35/bc/a1f58a339ffe891d92492f47b1dfa90b0957ccf8ad11f35f653a1a6b8c4e/ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl - version: 0.2.7 - - category: main - dependencies: {} - hash: - sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 - manager: pip - name: semver - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl - version: 2.13.0 - - category: main - dependencies: {} - hash: - sha256: ffaa51d88a75048bc759f6147c87695987914764ac411095f63c0d4ebde2365b - manager: pip - name: simpleitk - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/43/b4/7320b9731bd6e2003158a9485b2f0847fbbeb21bc02b96d4630826877ec5/SimpleITK-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 2.2.0 - - category: main - dependencies: {} - hash: - sha256: b09bc62e5193e31d7f9876220fb429ec13a6a181a24d897b9edfbbdbcd678851 - manager: pip - name: simplejson - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/3c/c5/ff45f429e0570d873472891bf88f89432b7e5cc83e18e3ef365fdd8f1d44/simplejson-3.17.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl - version: 3.17.6 - - category: main - dependencies: {} - hash: - sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 - manager: pip - name: six - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl - version: 1.16.0 - - category: main - dependencies: {} - hash: - sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e - manager: pip - name: typing-extensions - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl - version: 4.4.0 - - category: main - dependencies: {} - hash: - sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 - manager: pip - name: urllib3 - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl - version: 1.26.12 - - category: main - dependencies: - numpy: ">=1.7.1" - hash: - sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 - manager: pip - name: glymur - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz - version: 0.8.19 - - category: main - dependencies: - numpy: "*" - pillow: ">=8.3.2" - hash: - sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 - manager: pip - name: imageio - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl - version: 2.22.2 - - category: main - dependencies: - attrs: ">=17.4.0" - pyrsistent: ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" - hash: - sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 - manager: pip - name: jsonschema - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl - version: 4.16.0 - - category: main - dependencies: - pyparsing: ">=2.0.2,<3.0.5 || >3.0.5" - hash: - sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 - manager: pip - name: packaging - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl - version: "21.3" - - category: main - dependencies: - numpy: ">=1.4" - six: "*" - hash: - sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 - manager: pip - name: patsy - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl - version: 0.5.3 - - category: main - dependencies: - numpy: ">=1.11.1" - hash: - sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 - manager: pip - name: pynrrd - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl - version: 0.4.3 - - category: main - dependencies: - six: ">=1.5" - hash: - sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 - manager: pip - name: python-dateutil - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl - version: 2.8.2 - - category: main - dependencies: - numpy: ">=1.17.3" - hash: - sha256: 71ab30f51ee4470741bb55fc6b197b4a2b612232e30f6ac069106f0156342356 - manager: pip - name: pywavelets - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/5a/98/4549479a32972bdfdd5e75e168219e97f4dfaee535a8308efef7291e8398/PyWavelets-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 1.4.1 - - category: main - dependencies: - certifi: ">=2017.4.17" - charset-normalizer: ">=2,<3" - idna: ">=2.5,<4" - urllib3: ">=1.21.1,<1.27" - hash: - sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 - manager: pip - name: requests - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl - version: 2.28.1 - - category: main - dependencies: - ruamel.yaml.clib: ">=0.2.6" - hash: - sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 - manager: pip - name: ruamel.yaml - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl - version: 0.17.21 - - category: main - dependencies: - numpy: ">=1.18.5,<1.26.0" - hash: - sha256: c68db6b290cbd4049012990d7fe71a2abd9ffbe82c0056ebe0f01df8be5436b0 - manager: pip - name: scipy - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/bb/b7/380c9e4cd71263f03d16f8a92c0e44c9bdef38777e1a7dde1f47ba996bac/scipy-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 1.9.3 - - category: main - dependencies: - greenlet: "!=0.4.17" - hash: - sha256: 2fd49af453e590884d9cdad3586415922a8e9bb669d874ee1dc55d2bc425aacd - manager: pip - name: sqlalchemy - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/a0/e0/ea3b6d042613667146bae2c9c2c0666f971a87dbf1cb2d3fc2c10a6c696c/SQLAlchemy-1.4.42-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 1.4.42 - - category: main - dependencies: - colorama: "*" - hash: - sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 - manager: pip - name: tqdm - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl - version: 4.64.1 - - category: main - dependencies: - idna: ">=2.0" - multidict: ">=4.0" - hash: - sha256: 3d1a50e461615747dd93c099f297c1994d472b0f4d2db8a64e55b1edf704ec1c - manager: pip - name: yarl - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/87/27/f99c22607862ae77d76b31e2fcf72f88c5c97aa342beaac12963844b9f34/yarl-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 1.8.1 - - category: main - dependencies: - async-timeout: ">=3.0,<4.0" - attrs: ">=17.3.0" - chardet: ">=2.0,<4.0" - multidict: ">=4.5,<7.0" - typing-extensions: ">=3.6.5" - yarl: ">=1.0,<2.0" - hash: - sha256: cc31e906be1cc121ee201adbdf844522ea3349600dd0a40366611ca18cd40e81 - manager: pip - name: aiohttp - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/85/ca/2dab75b6961e3bdfa4c0a6ad50a5f439f4ff351a0295f584300b9cec95ca/aiohttp-3.7.4-cp39-cp39-manylinux2014_x86_64.whl - version: 3.7.4 - - category: main - dependencies: - jmespath: ">=0.7.1,<1.0.0" - python-dateutil: ">=2.1,<3.0.0" - urllib3: ">=1.25.4,<1.27" - hash: - sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b - manager: pip - name: botocore - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl - version: 1.20.112 - - category: main - dependencies: - packaging: ">=17.0" - hash: - sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 - manager: pip - name: marshmallow - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl - version: 3.18.0 - - category: main - dependencies: - cycler: ">=0.10" - kiwisolver: ">=1.0.1" - numpy: ">=1.16" - pillow: ">=6.2.0" - pyparsing: ">=2.2.1" - python-dateutil: ">=2.7" - hash: - sha256: 956c8849b134b4a343598305a3ca1bdd3094f01f5efc8afccdebeffe6b315247 - manager: pip - name: matplotlib - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/58/ef/50b17a043045c3fc62b20f2cab1973e21f7beb7d3897ab1fb026aea00fb2/matplotlib-3.4.2-cp39-cp39-manylinux1_x86_64.whl - version: 3.4.2 - - category: main - dependencies: - numpy: ">=1.13.3" - packaging: "*" - hash: - sha256: 828926f5d4dc9ace2bebd2eec56bee852518afa31e6df175d1706e6631dfd1a2 - manager: pip - name: numexpr - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/b7/e3/671625af5597609a413c1c80d11b89de0064549a4adc3e2e5ea5edcae8e5/numexpr-2.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 2.8.3 - - category: main - dependencies: - numpy: ">=1.20.3" - python-dateutil: ">=2.8.1" - pytz: ">=2020.1" - hash: - sha256: b156a971bc451c68c9e1f97567c94fd44155f073e3bceb1b0d195fd98ed12048 - manager: pip - name: pandas - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/c9/80/207c30c09d0b650214f7826227d32236e3259e2ad2b8e0075b3feae4266c/pandas-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 1.5.1 - - category: main - dependencies: - requests: ">=2.0.1,<3.0.0" - hash: - sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 - manager: pip - name: requests-toolbelt - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl - version: 0.10.1 - - category: main - dependencies: - distro: "*" - packaging: "*" - hash: - sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 - manager: pip - name: scikit-build - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl - version: 0.15.0 - - category: main - dependencies: - marshmallow: ">=3.0.0,<4.0" - numpy: "*" - pyyaml: "*" - hash: - sha256: 38cceff1d3bb4ecf0eebb2a6ea46b99c418e9bd94b5acaec95d9307731360bbc - manager: pip - name: argschema - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/e9/43/91c96e0b69f86c7076989ef97bc1687ed427ddacd1dd1c7010b5c330d611/argschema-3.0.4.tar.gz - version: 3.0.4 - - category: main - dependencies: - h5py: ">=2.10,<4" - jsonschema: ">=2.6.0,<5" - numpy: ">=1.16,<1.24" - pandas: ">=1.0.5,<2" - ruamel.yaml: ">=0.16,<1" - scipy: ">=1.1,<2" - hash: - sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d - manager: pip - name: hdmf - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl - version: 3.4.6 - - category: main - dependencies: - botocore: ">=1.12.36,<2.0a.0" - hash: - sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 - manager: pip - name: s3transfer - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl - version: 0.3.7 - - category: main - dependencies: - imageio: ">=2.3.0" - matplotlib: ">=2.0.0,<3.0.0 || >3.0.0" - networkx: ">=2.0" - pillow: ">=4.3.0" - pywavelets: ">=0.4.0" - scipy: ">=0.19.0" - hash: - sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c - manager: pip - name: scikit-image - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz - version: 0.16.2 - - category: main - dependencies: - matplotlib: ">=3.1,<3.6.1 || >3.6.1" - numpy: ">=1.17" - pandas: ">=0.25" - hash: - sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 - manager: pip - name: seaborn - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl - version: 0.12.1 - - category: main - dependencies: - numpy: ">=1.17" - pandas: ">=0.25" - patsy: ">=0.5.2" - scipy: ">=1.3" - hash: - sha256: b29ab5b4f5f182afbf8c6e3889cfcd438887fdb59e2d5452d99c7154e8af3926 - manager: pip - name: statsmodels - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/35/c8/2ab156d377e8dac8fb0b5848b7aa5e2419742b0c9510ad857c86574b641b/statsmodels-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - version: 0.13.0 - - category: main - dependencies: - numexpr: ">=2.6.2" - numpy: ">=1.9.3" - hash: - sha256: dedb959c00ac9e84562a69e80fa858d7aa06d91f96c6cb8cccbbbaf7a879436b - manager: pip - name: tables - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/e7/c3/4a4b20a4f114927f00892e3ef2a12d59be61df803e6d9f2be340e4002d92/tables-3.6.1-cp39-cp39-manylinux2010_x86_64.whl - version: 3.6.1 - - category: main - dependencies: - numpy: ">=1.15" - pandas: ">=0.25" - hash: - sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d - manager: pip - name: xarray - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl - version: 0.15.1 - - category: main - dependencies: - botocore: ">=1.20.21,<1.21.0" - jmespath: ">=0.7.1,<1.0.0" - s3transfer: ">=0.3.0,<0.4.0" - hash: - sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 - manager: pip - name: boto3 - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl - version: 1.17.21 - - category: main - dependencies: - h5py: ">=2.10,<4" - hdmf: ">=3.4.2,<4" - numpy: ">=1.16,<1.24" - pandas: ">=1.1.5,<2" - python-dateutil: ">=2.7.3,<3" - hash: - sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f - manager: pip - name: pynwb - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl - version: 2.2.0 - - category: main - dependencies: - pynwb: ">=1.1.2" - hash: - sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af - manager: pip - name: ndx-events - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl - version: 0.2.0 - - category: main - dependencies: - aiohttp: 3.7.4 - argschema: ">=3.0.1,<4.0.0" - boto3: 1.17.21 - cachetools: ">=4.2.1,<5.0.0" - future: ">=0.14.3,<1.0.0" - glymur: 0.8.19 - h5py: "*" - hdmf: ">=2.5.8" - jinja2: ">=3.0.0" - matplotlib: ">=1.4.3,<3.4.3" - ndx-events: <=0.2.0 - nest-asyncio: "*" - numpy: "*" - pandas: ">=1.1.5" - psycopg2-binary: ">=2.7,<3.0.0" - pynrrd: ">=0.2.1,<1.0.0" - pynwb: "*" - requests: <3.0.0 - requests-toolbelt: <1.0.0 - scikit-build: <1.0.0 - scikit-image: ">=0.14.0,<0.17.0" - scipy: ">=1.4.0,<2.0.0" - seaborn: <1.0.0 - semver: "*" - simpleitk: ">=2.0.2,<3.0.0" - simplejson: ">=3.10.0,<4.0.0" - six: ">=1.9.0,<2.0.0" - sqlalchemy: "*" - statsmodels: <=0.13.0 - tables: ">=3.6.0,<3.7.0" - tqdm: ">=4.27" - xarray: <0.16.0 - hash: - sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 - manager: pip - name: allensdk - optional: false - platform: linux-64 - source: null - url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl - version: 2.13.6 - - category: main - dependencies: {} - hash: - md5: 831557fcf92cfc4353eb69fb95524b6c - sha256: 0d673d366972656a3de1d67377912f12e9401cba0e4b277442d368747c7f1cb8 - manager: conda - name: ca-certificates - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2022.9.24-h4fd8a4c_0.tar.bz2 - version: 2022.9.24 - - category: main - dependencies: {} - hash: - md5: a0a531df6bf6663607dc77722ae522d6 - sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f - manager: conda - name: fenics-ufcx - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 - version: 0.5.0 - - category: main - dependencies: {} - hash: - md5: a9385e5b11a076c40d75915986f498d7 - sha256: 14e227d98193550f9da275e58e27de104ab569849f1ce16b810fae4d7b351d49 - manager: conda - name: kernel-headers_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h5b4a56d_13.tar.bz2 - version: 4.18.0 - - category: main - dependencies: {} - hash: - md5: b1f9c443a460b0916cac377b7d494111 - sha256: 8e84e37c6d89a6aa62246dc7dd9d733b0a19e7c8861ebb781554eb7b88242787 - manager: conda - name: ld_impl_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.39-ha75b1e8_0.tar.bz2 - version: "2.39" - - category: main - dependencies: {} - hash: - md5: c21b5e540d690c5d2d273ecce320abdf - sha256: 35223b103f877564ae73ed1bea5d522057b69306d7e2155b6b5388310cad52cf - manager: conda - name: libgcc-devel_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-devel_linux-aarch64-10.4.0-h3c6860a_19.tar.bz2 - version: 10.4.0 - - category: main - dependencies: {} - hash: - md5: bc890809e1f807b51bf04dfbee70ddf5 - sha256: e0496081c3a26c578abd0e292317c80159ebfbd5bb1ecca446894b9adf39abd7 - manager: conda - name: libgfortran5 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-12.2.0-hf695500_19.tar.bz2 - version: 12.2.0 - - category: main - dependencies: {} - hash: - md5: 65b9cb876525dcb2e74a90cf02c6762a - sha256: d802eaceaf6f77fb8cb2e990aacf9b3eaa83361b16369a760fc1585841d7885c - manager: conda - name: libgomp - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-12.2.0-h607ecd0_19.tar.bz2 - version: 12.2.0 - - category: main - dependencies: {} - hash: - md5: 13653671982305e902550ee81b69349d - sha256: 6c52715362529ef14a1a04ece9c33b2b029d02d63fb00bf4406ee8091115e3f5 - manager: conda - name: libstdcxx-devel_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-devel_linux-aarch64-10.4.0-h3c6860a_19.tar.bz2 - version: 10.4.0 - - category: main - dependencies: {} - hash: - md5: 981741cd4321edd5c504b48f74fe91f2 - sha256: db906f0ad19acc6aefcd5409a7a72fea76302f72013dce7593467ae07dbf54f3 - manager: conda - name: libstdcxx-ng - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-12.2.0-hc13a102_19.tar.bz2 - version: 12.2.0 - - category: main - dependencies: {} - hash: - md5: 1790efddf50f955b474e9ad2f7f566ec - sha256: ec16a1247bc791b9aec497474d149dc3dc922b97c0c4afe60863b648d8bc8867 - manager: conda - name: mpi - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpi-1.0-mpich.tar.bz2 - version: "1.0" - - category: main - dependencies: {} - hash: - md5: 7dbd622c32525d81a90c9c54a42e18a0 - sha256: 043e7b410b7a86e1bd8d9cec9c0dc25394fe272e58ff2c93009fbe723e8c201a - manager: conda - name: mumps-include - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/mumps-include-5.2.1-h8af1aa0_11.tar.bz2 - version: 5.2.1 - - category: main - dependencies: {} - hash: - md5: b6bd89cf71494c41a181cac13cc5a8ea - sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 - manager: conda - name: tzdata - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 - version: 2022e - - category: main - dependencies: - libgomp: ">=7.5.0" - hash: - md5: 6168d71addc746e8f2b8d57dfd2edcea - sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 - manager: conda - name: _openmp_mutex - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 - version: "4.5" - - category: main - dependencies: - libgfortran5: 12.2.0 hf695500_19 - hash: - md5: b5b34211bbf681bd3e7a5a4d80cce77b - sha256: 3ac162edf354bfa46076f52f3bff3a8ac10e626ebb9ed5e01aad954ebd386829 - manager: conda - name: libgfortran-ng - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-12.2.0-he9431aa_19.tar.bz2 - version: 12.2.0 - - category: main - dependencies: - kernel-headers_linux-aarch64: 4.18.0 h5b4a56d_13 - hash: - md5: 6d8f1fd1e675ba478041892112887949 - sha256: 932f7f8947c206ad4707a18c3bebbe217efdef67fd2cf9e0e94f5ccf0edeee38 - manager: conda - name: sysroot_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-aarch64-2.17-h43d7e78_13.tar.bz2 - version: "2.17" - - category: main - dependencies: - ld_impl_linux-aarch64: 2.39 ha75b1e8_0 - sysroot_linux-aarch64: "" - hash: - md5: edc0b381f0c9e2b963541fc9b5cba1d6 - sha256: 9b90360851e41936cc8c1138e8a3c38456c5b31acf9ca05d94454b20292bfc78 - manager: conda - name: binutils_impl_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.39-hb04425f_0.tar.bz2 - version: "2.39" - - category: main - dependencies: - _openmp_mutex: ">=4.5" - hash: - md5: 8456a29b6d9fc3123ccb9a966b6b2c49 - sha256: 0dd30553f6f38b011c9c81471a50f85e98a79e4dd672fdc1fc97904b54b5419b - manager: conda - name: libgcc-ng - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-12.2.0-h607ecd0_19.tar.bz2 - version: 12.2.0 - - category: main - dependencies: - binutils_impl_linux-aarch64: 2.39.* - sysroot_linux-aarch64: "" - hash: - md5: 4b7f9e2048a3b75aca16b9612d7f49c7 - sha256: 21da410295e7e42e7459fa633a72c213b19c88d12a95c6b08599935e975694c4 - manager: conda - name: binutils_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.39-h489c705_11.tar.bz2 - version: "2.39" - - category: main - dependencies: - libgcc-ng: ">=9.3.0" - hash: - md5: 2d787570a729e273a4e75775ddf3348a - sha256: 3aeb6ab92aa0351722497b2d2a735dc20921cf6c60d9196c04b7a2b9ece198d2 - manager: conda - name: bzip2 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-hf897c2e_4.tar.bz2 - version: 1.0.8 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - hash: - md5: 12c54b174dd7c6a9331e729d24c39515 - sha256: 1ff44fb03f0013e15b81eea34edcb79a796445deb305c4df6ee286d5ae7b3cd4 - manager: conda - name: c-ares - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.18.1-hf897c2e_0.tar.bz2 - version: 1.18.1 - - category: main - dependencies: - libgcc-ng: ">=7.5.0" - libstdcxx-ng: ">=7.5.0" - hash: - md5: 785747e1f00cfc37b3c95ffbada92591 - sha256: e17efc0fd32dcf5d404df1250331be735df8ff47d30878c4fa712ebb4c624f29 - manager: conda - name: gmp - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/gmp-6.2.1-h7fd3ca4_0.tar.bz2 - version: 6.2.1 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - hash: - md5: 014656d28b7b6f8a566437c69552f9ae - sha256: f867c6e57439b40a394fd7aef6d6ae35fd14cccf6f57e78539c6da9108f27c44 - manager: conda - name: icu - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-70.1-ha18d298_0.tar.bz2 - version: "70.1" - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - hash: - md5: 1f24853e59c68892452ef94ddd8afd4b - sha256: 6d4233d97a9b38acbb26e1268bcf8c10a8e79c2aed7e5a385ec3769967e3e65b - manager: conda - name: keyutils - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 - version: 1.6.1 - - category: main - dependencies: - libgcc-ng: ">=7.5.0" - hash: - md5: 9eac5901791494108c9b9ab85ca8aa93 - sha256: b9e8bcd26f0b0ded4c43232d55048bab910a4268197757f2368458759d9f3ef9 - manager: conda - name: libev - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h516909a_1.tar.bz2 - version: "4.33" - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - hash: - md5: dddd85f4d52121fab0a8b099c5e06501 - sha256: 7e9258a102480757fe3faeb225a3ca04dffd10fecd2a958c65cdb4cdf75f2c3c - manager: conda - name: libffi - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2 - version: 3.4.2 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - hash: - md5: 36fdbc05c9d9145ece86f5a63c3f352e - sha256: 182dbc318b7ab3ab10bc5a9d3ca161b143ae8db6df8aa11b65140009e322e642 - manager: conda - name: libnsl - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.0-hf897c2e_0.tar.bz2 - version: 2.0.0 - - category: main - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.4.0" - hash: - md5: bc66302748a788c3bce59999ed6d737d - sha256: 78a93de015d389597d9bdd470ffcfa3901d4b39b85d6516f242ff71d18dc6607 - manager: conda - name: libopenblas - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.21-pthreads_h6cb6f83_3.tar.bz2 - version: 0.3.21 - - category: main - dependencies: - libgcc-ng: ">=10.4.0" - hash: - md5: f85a18d33970bc60b7b5df0e451ba3cc - sha256: 4132132b4265028a368e1f630b2cb567d67051f22b3cd39c00992de6bf48c204 - manager: conda - name: libsanitizer - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsanitizer-10.4.0-h0e20637_19.tar.bz2 - version: 10.4.0 - - category: main - dependencies: - libgcc-ng: ">=7.5.0" - hash: - md5: d09ab3c60eebb6f14eb4d07e172775cc - sha256: 9ee442d889242c633bc3ce3f50ae89e6d8ebf12e04d943c371c0a56913fa069b - manager: conda - name: libsodium - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.18-hb9de7d4_1.tar.bz2 - version: 1.0.18 - - category: main - dependencies: - libgcc-ng: ">=9.3.0" - hash: - md5: e038da5ef9095b0d79aac14a311394e7 - sha256: 8f7eead3723c32631b252aea336bb39fbbde433b8d0c5a75745f03eaa980447d - manager: conda - name: libuuid - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.32.1-hf897c2e_1000.tar.bz2 - version: 2.32.1 - - category: main - dependencies: - libgcc-ng: ">=12" - hash: - md5: 88596b6277fe6d39f046983aae6044db - sha256: 9803ac96dbdbc27df9c149e06d4436b778c468bd0e6e023fbcb49a6fe9c404b4 - manager: conda - name: libzlib - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.2.13-h4e544f5_4.tar.bz2 - version: 1.2.13 - - category: main - dependencies: - libgcc-ng: ">=9.3.0" - libstdcxx-ng: ">=9.3.0" - hash: - md5: 25b5ec27b49b04a997a87b0f00f5e205 - sha256: db1d958f56e8f616c65deb7e67522db4ba51e2ccdb676469bb0c8df8d3e181ae - manager: conda - name: lz4-c - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.3-h01db608_1.tar.bz2 - version: 1.9.3 - - category: main - dependencies: - libgcc-ng: ">=7.5.0" - hash: - md5: b77d9a8e527e127eadf5bfdf909657a8 - sha256: 83df3738193f2993a2cc29ef2ac712c385586cfe5395c5c3c3b33f9af9c0c992 - manager: conda - name: metis - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/metis-5.1.0-h7fd3ca4_1006.tar.bz2 - version: 5.1.0 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - mpi: 1.0 mpich - hash: - md5: 812ae04a75e329b6383119b3850c2e8e - sha256: ac333eb77336f622240b8f74be3d9cc5fce869c4686080f19aa76953b2c93e03 - manager: conda - name: mpich - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpich-4.0.2-h26b3c96_100.tar.bz2 - version: 4.0.2 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - hash: - md5: 486b68148e121bc8bbadc3cefae4c04f - sha256: d410d840cb39175d7edc388690b93b2e3d7613c2e2f5c64b96582dc8b55b2319 - manager: conda - name: ncurses - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.3-headf329_1.tar.bz2 - version: "6.3" - - category: main - dependencies: - ca-certificates: "" - libgcc-ng: ">=12" - hash: - md5: 84de06ee822d6c051d5392d34368af66 - sha256: 60d9841bdeacf92286471e1d58ba624380abb9a08695b7a5e256c81007f7ee3e - manager: conda - name: openssl - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.0.5-h4e544f5_2.tar.bz2 - version: 3.0.5 - - category: main - dependencies: - libgcc-ng: ">=9.3.0" - libstdcxx-ng: ">=9.3.0" - hash: - md5: 6e6d498e0834be933809af0439012669 - sha256: 9a69b180a69d4aa5a834c290652e09cd07a54389552064e5ae217df1cda51dfa - manager: conda - name: pugixml - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/pugixml-1.11.4-h01db608_0.tar.bz2 - version: 1.11.4 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - hash: - md5: c6725b5ffe431af44e780c5c1cac8d7c - sha256: a5ce0a484d2f285c89809419274edf7274fa424ad14f1806aef712f7bad505eb - manager: conda - name: snappy - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.1.9-hc7e91e1_1.tar.bz2 - version: 1.1.9 - - category: main - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - hash: - md5: 209e0162dee35a88db9b7b80b1a21863 - sha256: 0765ff288a3c7180447bcec643322b910dbbd613a41bef4774321e1be3088b3c - manager: conda - name: tbb - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-2021.6.0-hdd96247_0.tar.bz2 - version: 2021.6.0 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - libstdcxx-ng: ">=9.4.0" - hash: - md5: 27040fe522925d081a50fb56c7b91261 - sha256: 02171fd8c9f75874ecc584c4c70ede780f291d13cf1ecca07738a2ce3730cc94 - manager: conda - name: xtl - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/xtl-0.7.4-hd62202e_0.tar.bz2 - version: 0.7.4 - - category: main - dependencies: - libgcc-ng: ">=12" - hash: - md5: 83baad393a31d59c20b63ba4da6592df - sha256: 93f58a7b393adf41fa007ac8c55978765e957e90cd31877ece1e5a343cb98220 - manager: conda - name: xz - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - version: 5.2.6 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - hash: - md5: b853307650cb226731f653aa623936a4 - sha256: 8bc601d6dbe249eba44b3c456765265cd8f42ef1e778f8df9b0c9c88b8558d7e - manager: conda - name: yaml - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 - version: 0.2.5 - - category: main - dependencies: - _openmp_mutex: ">=4.5" - libgcc-ng: ">=9.4.0" - libstdcxx-ng: ">=9.4.0" - hash: - md5: d17e70e2a667006cdc693597ca771b70 - sha256: 0b4524b3334f9fc325d1e6e6419341954d9678d160653d6d95ccf0e536a44049 - manager: conda - name: zfp - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/zfp-0.5.5-h01db608_8.tar.bz2 - version: 0.5.5 - - category: main - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.4.0" - libstdcxx-ng: ">=12" - mpich: ">=4.0.2,<5.0a0" - hash: - md5: 5140a65c8269a6983da0eeced5b6d5b1 - sha256: c873b15a9b66a182490659d96c0d1391613f40150ba52a88b8a4a9ac0d3e8bd9 - manager: conda - name: fftw - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/fftw-3.3.10-mpi_mpich_h012ce13_5.tar.bz2 - version: 3.3.10 - - category: main - dependencies: - binutils_impl_linux-aarch64: ">=2.39" - libgcc-devel_linux-aarch64: 10.4.0 h3c6860a_19 - libgcc-ng: ">=10.4.0" - libgomp: ">=10.4.0" - libsanitizer: 10.4.0 h0e20637_19 - libstdcxx-ng: ">=10.4.0" - sysroot_linux-aarch64: "" - hash: - md5: a14f89713a08d6698e0d8f2db4e1eebc - sha256: 18155529cf647fe012f1a577a24df72c0d3fd6daad2ffa0dd0f3860b6cdc8b7f - manager: conda - name: gcc_impl_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-10.4.0-h9569200_19.tar.bz2 - version: 10.4.0 - - category: main - dependencies: - libopenblas: ">=0.3.21,<1.0a0" - hash: - md5: 188f02883567d5b7f96c7aa12e7007c9 - sha256: 6fdf73da8b717f207979f77660646ca2d7e17671482435f281b676ac27eb288e - manager: conda - name: libblas - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-16_linuxaarch64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - libgcc-ng: ">=7.5.0" - ncurses: ">=6.2,<7.0.0a0" - hash: - md5: 29371161d77933a54fccf1bb66b96529 - sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d - manager: conda - name: libedit - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - version: 3.1.20191231 - - category: main - dependencies: - c-ares: ">=1.18.1,<2.0a0" - libev: ">=4.33,<4.34.0a0" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: edf1f6b20834553ae56681298985e89c - sha256: 07624c058462afd335929eedd4d69eebb7ad5b5fb6654aad9df185c760c7fa48 - manager: conda - name: libnghttp2 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.47.0-h674c3cc_1.tar.bz2 - version: 1.47.0 - - category: main - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: 64c24041ed1b1e01425f950ed0f8b148 - sha256: 4c95626f5415b2140a3c6c7c6a7d7d029e8fc1bcb7f27ae85586647799acaaf1 - manager: conda - name: libpng - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.38-hf9034f9_0.tar.bz2 - version: 1.6.38 - - category: main - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: cd65f7b7d956c3b813b94d2d6c4c697a - sha256: af9fecb4fead8423c93b7f5ff90f8d3c5c91644a1b312c7db47d85a7441409c8 - manager: conda - name: libsqlite - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.39.4-hf9034f9_0.tar.bz2 - version: 3.39.4 - - category: main - dependencies: - libgcc-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: 97a05afae73dc8939078f44732534a47 - sha256: 5aaf9273f7e254dd640b5f2607fa590b6a69a961866044ee8d44128519edee66 - manager: conda - name: libssh2 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.10.0-he5a64b1_3.tar.bz2 - version: 1.10.0 - - category: main - dependencies: - gmp: ">=6.2.1,<7.0a0" - libgcc-ng: ">=7.5.0" - hash: - md5: af9c4f2eb73b8b550bac3d778350a948 - sha256: 1f622e870bb39637cfc28604b86defc518483360ddd1a92cb0104fa6f07dbc56 - manager: conda - name: mpfr - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpfr-4.1.0-h719063d_1.tar.bz2 - version: 4.1.0 - - category: main - dependencies: - libgcc-ng: ">=9.3.0" - libstdcxx-ng: ">=9.3.0" - mpich: ">=3.4,<5.0.0a0" - hash: - md5: b34a5c21331032c944a46585e14aa5dd - sha256: 6b59a13c2f978bc0231b0df7d2ebf4121028fe7c3cb18f2b0af4e493c803462f - manager: conda - name: parmetis - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/parmetis-4.0.3-h679c2f0_1005.tar.bz2 - version: 4.0.3 - - category: main - dependencies: - libgcc-ng: ">=12" - ncurses: ">=6.3,<7.0a0" - hash: - md5: 3cdbfb7d7b63ae2c2d35bb167d257ecd - sha256: a33bb6e4c93599fb97eb19db0dcca602a90475f2da3c01c14add19b908178fcd - manager: conda - name: readline - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.1.2-h38e3740_0.tar.bz2 - version: 8.1.2 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - libzlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 7894e82ff743bd96c76585ddebe28e2a - sha256: d659316c9e502fb0e1b9a284fb0f0c00e273bff787e9385ab14be9af13dcd0d2 - manager: conda - name: tk - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.12-hd8af866_0.tar.bz2 - version: 8.6.12 - - category: main - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - xtl: ">=0.7,<0.8" - hash: - md5: 7e6f8ff1a452d2b2c076f0bdfcf323c1 - sha256: 80196bf36ed39339de7be1f192f7aa6b32b0fba97d37f26993b8d369f8459100 - manager: conda - name: xtensor - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/xtensor-0.24.3-hdd96247_0.tar.bz2 - version: 0.24.3 - - category: main - dependencies: - libgcc-ng: ">=9.4.0" - libsodium: ">=1.0.18,<1.0.19.0a0" - libstdcxx-ng: ">=9.4.0" - hash: - md5: dd56c9ce3f1f689a5e71941830349279 - sha256: 8da3cf93c15f43aeb6c598d97eeaad79b83f718317813918769f7b837787929f - manager: conda - name: zeromq - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.4-h01db608_1.tar.bz2 - version: 4.3.4 - - category: main - dependencies: - libgcc-ng: ">=12" - libzlib: 1.2.13 h4e544f5_4 - hash: - md5: dc8395f4a79bb0b13ca7d855c72482d4 - sha256: 0e4c848421e361f5738aa743cd9c3955ac168905dffee3a7855fb3531b07ef01 - manager: conda - name: zlib - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.2.13-h4e544f5_4.tar.bz2 - version: 1.2.13 - - category: main - dependencies: - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: f5627b0fef9a5267fd4d2ad5d8b5c1b3 - sha256: 140ebfa611ddfe087b2264ce3a5425077925ca710c89f95dab0a5c966e173244 - manager: conda - name: zstd - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.2-hc1e27d5_4.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - lz4-c: ">=1.9.3,<1.10.0a0" - snappy: ">=1.1.9,<2.0a0" - zstd: ">=1.5.2,<1.6.0a0" - hash: - md5: d0f2e1124b14533bf95e5e41876a28cb - sha256: 459d723a1b9bf40f0a5a50ebacbf70a690da50904b772a915643359ebf6a71f7 - manager: conda - name: blosc - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/blosc-1.21.1-hdfcada4_3.tar.bz2 - version: 1.21.1 - - category: main - dependencies: - bzip2: ">=1.0.8,<2.0a0" - icu: ">=70.1,<71.0a0" - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - xz: ">=5.2.5,<5.3.0a0" - zstd: ">=1.5.2,<1.6.0a0" - hash: - md5: 5fa87e26d2d1fd9a4adc53de2a8c922d - sha256: 0e0cb2a2984bd6a13f7b8395262d6544e409f9f56f8419fc2be199fcbb5a97fe - manager: conda - name: boost-cpp - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/boost-cpp-1.74.0-ha1c1135_8.tar.bz2 - version: 1.74.0 - - category: main - dependencies: - binutils_linux-aarch64: 2.39 h489c705_11 - gcc_impl_linux-aarch64: 10.4.0.* - sysroot_linux-aarch64: "" - hash: - md5: b1c78335925466a0b06b1b7bc1fe6581 - sha256: df733153f5f6a44f7585e54783a9e16e91a40763082ef075c13ddde5fad5f116 - manager: conda - name: gcc_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_linux-aarch64-10.4.0-h72ad2ee_11.tar.bz2 - version: 10.4.0 - - category: main - dependencies: - gcc_impl_linux-aarch64: 10.4.0 h9569200_19 - libstdcxx-devel_linux-aarch64: 10.4.0 h3c6860a_19 - sysroot_linux-aarch64: "" - hash: - md5: e4961cdc774257347d6398ea6dd26f5f - sha256: df210e3cf25aab7b38370427a3299c508ead109afe7ac9167666afd54778d513 - manager: conda - name: gxx_impl_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_impl_linux-aarch64-10.4.0-h9569200_19.tar.bz2 - version: 10.4.0 - - category: main - dependencies: - keyutils: ">=1.6.1,<2.0a0" - libedit: ">=3.1.20191231,<4.0a0" - libgcc-ng: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - openssl: ">=3.0.0,<4.0a0" - hash: - md5: 2bd56494112a3bffa44ee3292749ea72 - sha256: 68918094dce147767f87859fb06cfb9e4cd0f7908ce7fd911d0df92f2539d936 - manager: conda - name: krb5 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.19.3-h750e270_0.tar.bz2 - version: 1.19.3 - - category: main - dependencies: - libblas: 3.9.0 16_linuxaarch64_openblas - hash: - md5: 520a3ecbebc63239c27dd6f70c2ababe - sha256: c1d4fa9a99475647c7904009c026fe7f9c0b3159b2f7d2bcecac102751104302 - manager: conda - name: libcblas - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-16_linuxaarch64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - libblas: 3.9.0 16_linuxaarch64_openblas - hash: - md5: 62990b2d1efc22d0beb394e893d39541 - sha256: 80a809ce2c965b27d8b8b90753ab01d467b9bf2a66467ca98fc363e4a41da5ec - manager: conda - name: liblapack - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-16_linuxaarch64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 1188278a5d5d65ffa9682997238cdc28 - sha256: dd1655cd234bbc033ea214c00efd5535cbcf187609375d7a603b9080c99c2950 - manager: conda - name: scotch - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/scotch-6.0.9-h07b6642_2.tar.bz2 - version: 6.0.9 - - category: main - dependencies: - libgcc-ng: ">=12" - libsqlite: 3.39.4 hf9034f9_0 - libzlib: ">=1.2.12,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - readline: ">=8.1.2,<9.0a0" - hash: - md5: dd7f00021ca9e6606316410afc9b9c83 - sha256: 347e11e2496a7be3647834d208c196a3fa6822d18307651503ae2a292a76047d - manager: conda - name: sqlite - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/sqlite-3.39.4-h69ca7e5_0.tar.bz2 - version: 3.39.4 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - hash: - md5: a67f7fbd106eceeabfe38266515e2d83 - sha256: b19114b391d4606b78339efd1dbae1eb0ad5ae8cb252b7cf503750f567f31db8 - manager: conda - name: fenics-libbasix - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-libbasix-0.5.1-h8f8c065_0.tar.bz2 - version: 0.5.1 - - category: main - dependencies: - binutils_linux-aarch64: 2.39 h489c705_11 - gcc_linux-aarch64: 10.4.0 h72ad2ee_11 - gxx_impl_linux-aarch64: 10.4.0.* - sysroot_linux-aarch64: "" - hash: - md5: 0a8caf25b6f2df1a03cf6d72c48e207b - sha256: 5ec091348923d1d420c5d572fad583f051cb5cf49f6187d335c3bdd217c80828 - manager: conda - name: gxx_linux-aarch64 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_linux-aarch64-10.4.0-hb08d869_11.tar.bz2 - version: 10.4.0 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - mpich: ">=4.0.2,<5.0a0" - hash: - md5: b3e9b45fe22bc9fcde4872e5c3e912f5 - sha256: 21f068e9db192b1514b5f70aa5c39f5a09e40023e589a4b6e875361134bf3f78 - manager: conda - name: hypre - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/hypre-2.25.0-mpi_mpich_h59cf75a_0.tar.bz2 - version: 2.25.0 - - category: main - dependencies: - krb5: ">=1.19.3,<1.20.0a0" - libgcc-ng: ">=12" - libnghttp2: ">=1.47.0,<2.0a0" - libssh2: ">=1.10.0,<2.0a0" - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: 4c8399df25d5f2ee14bf3497195c3880 - sha256: 1fd991c3199aa29f884757654930cc37f501464f133cda3954338a2486152de0 - manager: conda - name: libcurl - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-7.85.0-h22f3f83_0.tar.bz2 - version: 7.85.0 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - mpich: ">=4.0.1,<5.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 9110c15957ac965b269ef5e3ee55ca01 - sha256: 2aa4945430fa168d8db36980fd58506f2877d7122946517f0387aebf0dfe372d - manager: conda - name: ptscotch - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/ptscotch-6.0.9-he18ce4a_2.tar.bz2 - version: 6.0.9 - - category: main - dependencies: - bzip2: ">=1.0.8,<2.0a0" - ld_impl_linux-aarch64: ">=2.36.1" - libffi: ">=3.4.2,<3.5.0a0" - libgcc-ng: ">=12" - libnsl: ">=2.0.0,<2.1.0a0" - libuuid: ">=2.32.1,<3.0a0" - libzlib: ">=1.2.11,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - openssl: ">=3.0.3,<4.0a0" - readline: ">=8.1,<9.0a0" - sqlite: ">=3.38.5,<4.0a0" - tk: ">=8.6.12,<8.7.0a0" - tzdata: "" - xz: ">=5.2.5,<5.3.0a0" - hash: - md5: 55fbf16ae0237bd720c5231734d778dc - sha256: 78fa82abfb77d7316abb639006b02d71c126957c186a4f356b02acdfdade9077 - manager: conda - name: python - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.9.13-h5016f1d_0_cpython.tar.bz2 - version: 3.9.13 - - category: main - dependencies: - libblas: ">=3.8.0,<4.0a0" - libgcc-ng: ">=10.3.0" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - liblapack: ">=3.8.0,<4.0a0" - mpich: ">=4.0.1,<5.0a0" - hash: - md5: 54dfb90ff80052f955439a182d9097aa - sha256: 4aebcc9d18582bab4f8167a5d45ac64abf0e7001a98d68c4694e694d8864acce - manager: conda - name: scalapack - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/scalapack-2.2.0-hf610701_1.tar.bz2 - version: 2.2.0 - - category: main - dependencies: - libblas: ">=3.8.0,<4.0a0" - libcblas: ">=3.8.0,<4.0a0" - libgcc-ng: ">=9.4.0" - liblapack: ">=3.8.0,<4.0a0" - libstdcxx-ng: ">=9.4.0" - metis: ">=5.1.0,<5.2.0a0" - mpfr: ">=4.1.0,<5.0a0" - tbb: ">=2021.3.0" - hash: - md5: 351565b22e92174d1c8040f8544cf618 - sha256: 70601118fd2d53a5b70eebf329bdc8f3182e4b3440840475882c4ba67c1cdb19 - manager: conda - name: suitesparse - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/suitesparse-5.10.1-h1404dd6_1.tar.bz2 - version: 5.10.1 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - hash: - md5: 32ff86b3335def4756143ee4799ca6ce - sha256: edcf67939842a9ed98880580a8e98cb126ee6bce09d328d7a0fc113a846b919c - manager: conda - name: superlu - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/superlu-5.2.2-h4b58547_0.tar.bz2 - version: 5.2.2 - - category: main - dependencies: - _openmp_mutex: ">=4.5" - libblas: ">=3.8.0,<4.0a0" - libgcc-ng: ">=9.4.0" - libgfortran-ng: "" - libgfortran5: ">=9.4.0" - liblapack: ">=3.8.0,<4.0a0" - libstdcxx-ng: ">=9.4.0" - metis: ">=5.1.0,<5.2.0a0" - mpich: ">=3.4.2,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - hash: - md5: 22f25903d703a5587b321b0005a56aee - sha256: 1a6bde62978831a5d847a9382b499715fbb1813f4be9eb7ecf1bb61a50f68e9a - manager: conda - name: superlu_dist - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/superlu_dist-7.2.0-h4e5a0d3_0.tar.bz2 - version: 7.2.0 - - category: main - dependencies: - python: ">=3.6" - hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 - manager: conda - name: cached_property - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libcurl: ">=7.81.0,<8.0a0" - libgcc-ng: ">=10.3.0" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - libstdcxx-ng: ">=10.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - mpich: ">=4.0,<4.1.0a0" - openssl: ">=3.0.0,<4.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: e2d47d39a440bf3b9b226178cbc2e9c7 - sha256: bd86ccc6c8b53f429dbb2e3835396f8152808b2e193509dbba278e48680522c9 - manager: conda - name: hdf5 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.12.1-mpi_mpich_hdab57eb_4.tar.bz2 - version: 1.12.1 - - category: main - dependencies: - libblas: ">=3.8.0,<4.0a0" - libgcc-ng: ">=10.3.0" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - liblapack: ">=3.8.0,<4.0a0" - metis: ">=5.1.0,<5.2.0a0" - mpich: ">=4.0.1,<5.0a0" - mumps-include: 5.2.1 h8af1aa0_11 - parmetis: ">=4.0.3,<4.1.0a0" - ptscotch: ">=6.0.9,<6.0.10.0a0" - scalapack: ">=2.2.0,<2.3.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - hash: - md5: 85c3149f51a1d6b9a7a4ec98a8c5d96d - sha256: 9d6e053cda7676011dc355cbc46c91db02482d7cb172c5deefa67c238ec7953e - manager: conda - name: mumps-mpi - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/mumps-mpi-5.2.1-hf302962_11.tar.bz2 - version: 5.2.1 - - category: main - dependencies: - python: ==2.7.*|>=3.4 - hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - manager: conda - name: pycparser - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 - version: "2.21" - - category: main - dependencies: - python: 3.9.* - hash: - md5: c74e493d773fa544a312b0904abcfbfb - sha256: bed710ed58864219bb5c7742bd00edb206c33c650a89a9e2653a72314d1da95f - manager: conda - name: python_abi - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.9-2_cp39.tar.bz2 - version: "3.9" - - category: main - dependencies: - python: ">=3.7" - hash: - md5: 462466739c786f85f9ed555f87099fe1 - sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 - manager: conda - name: setuptools - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 - version: 65.5.0 - - category: main - dependencies: - python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4" - hash: - md5: 1ca02aaf78d9c70d9a81a3bed5752022 - sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc - manager: conda - name: wheel - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 - version: 0.37.1 - - category: main - dependencies: - cached_property: ">=1.5.2,<1.5.3.0a0" - hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 - manager: conda - name: cached-property - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libffi: ">=3.4,<4.0a0" - libgcc-ng: ">=12" - pycparser: "" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 445d40d9292678dd66b1af293028119b - sha256: 23e0c4b6719b5c687b5efcb2ee41e91d56266772c939c76307eb629ac035bf94 - manager: conda - name: cffi - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.15.1-py39hb26bf21_1.tar.bz2 - version: 1.15.1 - - category: main - dependencies: - blosc: ">=1.21.1,<2.0a0" - bzip2: ">=1.0.8,<2.0a0" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" - libffi: ">=3.4.2,<3.5.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.4.0" - libpng: ">=1.6.37,<1.7.0a0" - libstdcxx-ng: ">=12" - mpich: ">=4.0.2,<5.0a0" - zeromq: ">=4.3.4,<4.4.0a0" - zfp: ">=0.5.5,<1.0a0" - hash: - md5: 3569f9866ed8580acd4411bea2bcb311 - sha256: e3f8149ada34cc61be8de4aad335023046791fc2aa9522acadbefe3a818f007f - manager: conda - name: libadios2 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libadios2-2.8.3-mpi_mpich_hd4bf87d_1.tar.bz2 - version: 2.8.3 - - category: main - dependencies: - libgcc-ng: ">=10.3.0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: b21c5481818fb2b3201a139645e4a422 - sha256: fa0ddb086992b79bfcc8a838fba4053291c188f41dff2006d0da5a9caea907f9 - manager: conda - name: markupsafe - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-2.1.1-py39hb9a1dbb_1.tar.bz2 - version: 2.1.1 - - category: main - dependencies: - libgcc-ng: ">=12" - mpich: ">=4.0.2,<5.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: 3833951c4b2b678485eef728241f7478 - sha256: 14a797a022a0c19be8a2f9b64713bd586d04fa0af01f223a8b004b0052c55869 - manager: conda - name: mpi4py - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpi4py-3.1.3-py39h86763dd_2.tar.bz2 - version: 3.1.3 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: c8b3ba394c4749cf8367a5001b0889ae - sha256: 4d60922a58eeaba42888ca020c9d347bf7d15eb8b779dd026cba883f4c10f591 - manager: conda - name: numpy - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.23.4-py39hf5a3166_0.tar.bz2 - version: 1.23.4 - - category: main - dependencies: - fftw: "* mpi_mpich_*" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" - hypre: ">=2.25.0,<2.25.1.0a0" - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - metis: ">=5.1.0,<5.2.0a0" - mpich: ">=4.0.2,<5.0a0" - mumps-mpi: ">=5.2.1,<5.2.2.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - ptscotch: ">=6.0.9,<6.0.10.0a0" - scalapack: ">=2.2.0,<2.3.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - suitesparse: ">=5.10.1,<5.11.0a0" - superlu: "" - superlu_dist: ">=7.1.1,<8.0a0" - yaml: ">=0.2.5,<0.3.0a0" - hash: - md5: 8ece1495bec1abfd4e99e082078d51dd - sha256: 9e17dd56f1040f15f347d4e2fb88443aedb4b2b10e77a4d31664d01f90bf1df7 - manager: conda - name: petsc - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/petsc-3.17.3-real_h7f10f1d_100.tar.bz2 - version: 3.17.3 - - category: main - dependencies: - python: ">=3.7" - setuptools: "" - wheel: "" - hash: - md5: 6f4c6de9fed2a9bd8043283611b09587 - sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 - manager: conda - name: pip - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 - version: "22.3" - - category: main - dependencies: - fenics-libbasix: 0.5.1 h8f8c065_0 - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - numpy: "" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: e78456e1e01668ba22148c66efa0772c - sha256: 0823c4835b048d74895d8de4732d8dd35895d9f071514603c9b07d99ef99ec22 - manager: conda - name: fenics-basix - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-basix-0.5.1-py39h110580c_0.tar.bz2 - version: 0.5.1 - - category: main - dependencies: - numpy: "" - python: ">=3.7" - hash: - md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c - sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 - manager: conda - name: fenics-ufl - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 - version: 2022.2.0 - - category: main - dependencies: - cached-property: "" - hdf5: ">=1.12.1,<1.12.2.0a0" - libgcc-ng: ">=9.4.0" - numpy: ">=1.19.5,<2.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: 7b8dec90fcf2ff496bada02b3ea0059f - sha256: 2b2376f884596ab17582b65f219c2c4113f06ffade0296410e7e4ae9e3e98042 - manager: conda - name: h5py - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/h5py-3.6.0-nompi_py39hbdd1fc2_100.tar.bz2 - version: 3.6.0 - - category: main - dependencies: - markupsafe: ">=2.0" - python: ">=3.7" - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - manager: conda - name: jinja2 - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 - version: 3.1.2 - - category: main - dependencies: - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - mpich: ">=4.0.2,<5.0a0" - numpy: ">=1.19.5,<2.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: b17c07aa2f47be88445987e5593a1bdb - sha256: 52c6bbf4f0faa7420d046a7d8661efbf4f0ddf04031266f908f0efc624747a7e - manager: conda - name: petsc4py - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/petsc4py-3.17.3-real_h23e52e2_101.tar.bz2 - version: 3.17.3 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgcc-ng: ">=12" - libgfortran-ng: "" - libgfortran5: ">=10.3.0" - liblapack: ">=3.9.0,<4.0a0" - libstdcxx-ng: ">=12" - mpich: ">=4.0.2,<5.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - suitesparse: ">=5.10.1,<5.11.0a0" - hash: - md5: 48e18e21f55d460b6c989d90dd190f51 - sha256: 23924edd3add113cbda03f35075b61bf740af0ea2f126505b085317b5660b7d8 - manager: conda - name: slepc - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/slepc-3.17.1-real_h06ee9b7_102.tar.bz2 - version: 3.17.1 - - category: main - dependencies: - cffi: "" - fenics-basix: 0.5.* - fenics-ufl: 2022.2.* - numpy: "" - python: ">=3.7" - setuptools: "" - hash: - md5: 2dcc01a5199492d95b197d7265f5336a - sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 - manager: conda - name: fenics-ffcx - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 - version: 0.5.0 - - category: main - dependencies: - boost-cpp: ">=1.74.0,<1.74.1.0a0" - fenics-libbasix: ">=0.5.1,<0.5.2.0a0" - fenics-ufcx: ">=0.5.0,<0.5.1.0a0" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" - libadios2: ">=2.8.3,<2.8.4.0a0 mpi_mpich_*" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - mpich: ">=4.0.2,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - ptscotch: ">=6.0.9,<6.0.10.0a0" - pugixml: ">=1.11.4,<1.12.0a0" - slepc: ">=3.17.1,<3.18.0a0 real_*" - xtensor: ">=0.24.3,<0.25.0a0" - hash: - md5: 85ecb2004ee2aa1d6e834c7bdcf3231c - sha256: 9cdad2391446a87dcf5edc846cd5311b20aa576afc2a7f9c2c7c6312566986b7 - manager: conda - name: fenics-libdolfinx - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-libdolfinx-0.5.2-h38c004b_100.tar.bz2 - version: 0.5.2 - - category: main - dependencies: - libgcc-ng: ">=12" - mpich: ">=4.0.2,<5.0a0" - numpy: ">=1.19.5,<2.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - petsc4py: 3.17.* - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - slepc: ">=3.17.1,<3.18.0a0 real_*" - hash: - md5: 0c7428c4cc03a3e9808bb22d4cc3ba77 - sha256: 27e1190e5aae7faa96d90a3473a2b2d501db8ca511ce4e807729a45cd2a7c736 - manager: conda - name: slepc4py - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/slepc4py-3.17.1-real_hc9c61e5_103.tar.bz2 - version: 3.17.1 - - category: main - dependencies: - cffi: "" - fenics-basix: 0.5.* - fenics-ffcx: 0.5.* - fenics-libdolfinx: 0.5.2 h38c004b_100 - fenics-ufl: 2022.2.* - gxx_linux-aarch64: 10.* - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" - libgcc-ng: ">=12" - libstdcxx-ng: ">=12" - mpi4py: "" - mpich: ">=4.0.2,<5.0a0" - numpy: "" - petsc: ">=3.17.3,<3.18.0a0 real_*" - petsc4py: "" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - slepc: ">=3.17.1,<3.18.0a0 real_*" - slepc4py: "" - hash: - md5: 494261d67f5a0d62cb841e17dc9033b8 - sha256: df5980a90c7b6d1f8a4d47343ffeefa53fe663612b5e79f1049f2fee5244202d - manager: conda - name: fenics-dolfinx - optional: false - platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-dolfinx-0.5.2-py39h3baed5e_100.tar.bz2 - version: 0.5.2 - - category: main - dependencies: {} - hash: - sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 - manager: pip - name: async-timeout - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl - version: 3.0.1 - - category: main - dependencies: {} - hash: - sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c - manager: pip - name: attrs - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl - version: 22.1.0 - - category: main - dependencies: {} - hash: - sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 - manager: pip - name: cachetools - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl - version: 4.2.4 - - category: main - dependencies: {} - hash: - sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 - manager: pip - name: certifi - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl - version: 2022.9.24 - - category: main - dependencies: {} - hash: - sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 - manager: pip - name: chardet - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl - version: 3.0.4 - - category: main - dependencies: {} - hash: - sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f - manager: pip - name: charset-normalizer - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl - version: 2.1.1 - - category: main - dependencies: {} - hash: - sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 - manager: pip - name: colorama - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - version: 0.4.6 - - category: main - dependencies: {} - hash: - sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 - manager: pip - name: cycler - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl - version: 0.11.0 - - category: main - dependencies: {} - hash: - sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff - manager: pip - name: distro - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl - version: 1.8.0 - - category: main - dependencies: {} - hash: - sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d - manager: pip - name: future - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz - version: 0.18.2 - - category: main - dependencies: {} - hash: - sha256: 0aa1845944e62f358d63fcc911ad3b415f585612946b8edc824825929b40e59e - manager: pip - name: greenlet - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/22/3b/3dece5270095aa5b108553880a7630888f9d43e1197cc0d3b4dcd3ccfed1/greenlet-1.1.3.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 1.1.3.post0 - - category: main - dependencies: {} - hash: - sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 - manager: pip - name: idna - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl - version: "3.4" - - category: main - dependencies: {} - hash: - sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f - manager: pip - name: jmespath - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl - version: 0.10.0 - - category: main - dependencies: {} - hash: - sha256: bc8d3bd6c72b2dd9decf16ce70e20abcb3274ba01b4e1c96031e0c4067d1e7cd - manager: pip - name: kiwisolver - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/4d/91/08eaa0f13fe644ae913cb157e9599ce64b64a99620df3beb0b142690e264/kiwisolver-1.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 1.4.4 - - category: main - dependencies: {} - hash: - sha256: 07a017cfa00c9890011628eab2503bee5872f27144936a52eaab449be5eaf032 - manager: pip - name: multidict - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/00/6f/05e5612827715de18f36a8e36fb373f58621927691213cc3f88dc24524b3/multidict-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 6.0.2 - - category: main - dependencies: {} - hash: - sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 - manager: pip - name: nest-asyncio - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl - version: 1.5.6 - - category: main - dependencies: {} - hash: - sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d - manager: pip - name: networkx - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl - version: 2.8.7 - - category: main - dependencies: {} - hash: - sha256: ea98f633d45f7e815db648fd7ff0f19e328302ac36427343e4432c84432e7ff4 - manager: pip - name: pillow - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/5b/a4/68e210389f3744043e0ce543d4eb81fe8d7be5462d1c7ac2e59d620991c4/Pillow-9.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 9.2.0 - - category: main - dependencies: {} - hash: - sha256: 33e632d0885b95a8b97165899006c40e9ecdc634a529dca7b991eb7de4ece41c - manager: pip - name: psycopg2-binary - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/8c/45/77147700f5088efaf9235a3a62b611b594d477a5c5613b5316d0ebd18be0/psycopg2-binary-2.9.5.tar.gz - version: 2.9.5 - - category: main - dependencies: {} - hash: - sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc - manager: pip - name: pyparsing - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl - version: 3.0.9 - - category: main - dependencies: {} - hash: - sha256: d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96 - manager: pip - name: pyrsistent - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/42/ac/455fdc7294acc4d4154b904e80d964cc9aae75b087bbf486be04df9f2abd/pyrsistent-0.18.1.tar.gz - version: 0.18.1 - - category: main - dependencies: {} - hash: - sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 - manager: pip - name: pytz - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl - version: "2022.5" - - category: main - dependencies: {} - hash: - sha256: d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803 - manager: pip - name: pyyaml - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/21/67/b42191239c5650c9e419c4a08a7a022bbf1abf55b0391c380a72c3af5462/PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: "6.0" - - category: main - dependencies: {} - hash: - sha256: bf9a6bc4a0221538b1a7de3ed7bca4c93c02346853f44e1cd764be0023cd3640 - manager: pip - name: ruamel.yaml.clib - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/ff/66/4c05485243e24c6db5d7305063304c410b5539577becc89e4539d2897e41/ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux2014_aarch64.whl - version: 0.2.7 - - category: main - dependencies: {} - hash: - sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 - manager: pip - name: semver - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl - version: 2.13.0 - - category: main - dependencies: {} - hash: - sha256: dc82050f78bfed95af20683a10bb2a0caf8c3c798aa2ccd43099f338baa2ec55 - manager: pip - name: simpleitk - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/4c/52/2eee8d90c5a55aee778e7eb29945b27f44e63cfb9b920c5a97fb40af25aa/SimpleITK-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 2.2.0 - - category: main - dependencies: {} - hash: - sha256: d74ee72b5071818a1a5dab47338e87f08a738cb938a3b0653b9e4d959ddd1fd9 - manager: pip - name: simplejson - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/69/9c/c7f7f8ff38678626bd548518470d23a8f87dd696dd9bb5a98f6712d9707f/simplejson-3.17.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 3.17.6 - - category: main - dependencies: {} - hash: - sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 - manager: pip - name: six - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl - version: 1.16.0 - - category: main - dependencies: {} - hash: - sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e - manager: pip - name: typing-extensions - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl - version: 4.4.0 - - category: main - dependencies: {} - hash: - sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 - manager: pip - name: urllib3 - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl - version: 1.26.12 - - category: main - dependencies: - numpy: ">=1.7.1" - hash: - sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 - manager: pip - name: glymur - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz - version: 0.8.19 - - category: main - dependencies: - numpy: "*" - pillow: ">=8.3.2" - hash: - sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 - manager: pip - name: imageio - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl - version: 2.22.2 - - category: main - dependencies: - attrs: ">=17.4.0" - pyrsistent: ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" - hash: - sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 - manager: pip - name: jsonschema - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl - version: 4.16.0 - - category: main - dependencies: - pyparsing: ">=2.0.2,<3.0.5 || >3.0.5" - hash: - sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 - manager: pip - name: packaging - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl - version: "21.3" - - category: main - dependencies: - numpy: ">=1.4" - six: "*" - hash: - sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 - manager: pip - name: patsy - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl - version: 0.5.3 - - category: main - dependencies: - numpy: ">=1.11.1" - hash: - sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 - manager: pip - name: pynrrd - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl - version: 0.4.3 - - category: main - dependencies: - six: ">=1.5" - hash: - sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 - manager: pip - name: python-dateutil - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl - version: 2.8.2 - - category: main - dependencies: - numpy: ">=1.17.3" - hash: - sha256: 030670a213ee8fefa56f6387b0c8e7d970c7f7ad6850dc048bd7c89364771b9b - manager: pip - name: pywavelets - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/34/c0/a121306b618af45ff7d769e1bd45ed3d6c798dc7f0094e0b56735388d96e/PyWavelets-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 1.4.1 - - category: main - dependencies: - certifi: ">=2017.4.17" - charset-normalizer: ">=2,<3" - idna: ">=2.5,<4" - urllib3: ">=1.21.1,<1.27" - hash: - sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 - manager: pip - name: requests - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl - version: 2.28.1 - - category: main - dependencies: - ruamel.yaml.clib: ">=0.2.6" - hash: - sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 - manager: pip - name: ruamel.yaml - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl - version: 0.17.21 - - category: main - dependencies: - numpy: ">=1.18.5,<1.26.0" - hash: - sha256: 4db5b30849606a95dcf519763dd3ab6fe9bd91df49eba517359e450a7d80ce2e - manager: pip - name: scipy - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/b5/67/c5451465ec94e654e6315cd5136961d267ae94a0f799b85d26eb9efe4c9f/scipy-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 1.9.3 - - category: main - dependencies: - greenlet: "!=0.4.17" - hash: - sha256: 723e3b9374c1ce1b53564c863d1a6b2f1dc4e97b1c178d9b643b191d8b1be738 - manager: pip - name: sqlalchemy - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/06/9b/a25769c4fce57ccea6bba96fa32216dea6d6c7d3dd03524c522c8b342f64/SQLAlchemy-1.4.42-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 1.4.42 - - category: main - dependencies: - colorama: "*" - hash: - sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 - manager: pip - name: tqdm - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl - version: 4.64.1 - - category: main - dependencies: - idna: ">=2.0" - multidict: ">=4.0" - hash: - sha256: fae37373155f5ef9b403ab48af5136ae9851151f7aacd9926251ab26b953118b - manager: pip - name: yarl - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/28/c9/b4cc0b0841fc171ac830e27237da036a5085691f47135122481824bc9c5d/yarl-1.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 1.8.1 - - category: main - dependencies: - async-timeout: ">=3.0,<4.0" - attrs: ">=17.3.0" - chardet: ">=2.0,<4.0" - multidict: ">=4.5,<7.0" - typing-extensions: ">=3.6.5" - yarl: ">=1.0,<2.0" - hash: - sha256: 58c62152c4c8731a3152e7e650b29ace18304d086cb5552d317a54ff2749d32a - manager: pip - name: aiohttp - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/1c/5a/a25ed130426369824c2360b1ec0e59dd2b97efb7fba2c6a39a1f2e396d98/aiohttp-3.7.4-cp39-cp39-manylinux2014_aarch64.whl - version: 3.7.4 - - category: main - dependencies: - jmespath: ">=0.7.1,<1.0.0" - python-dateutil: ">=2.1,<3.0.0" - urllib3: ">=1.25.4,<1.27" - hash: - sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b - manager: pip - name: botocore - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl - version: 1.20.112 - - category: main - dependencies: - packaging: ">=17.0" - hash: - sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 - manager: pip - name: marshmallow - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl - version: 3.18.0 - - category: main - dependencies: - cycler: ">=0.10" - kiwisolver: ">=1.0.1" - numpy: ">=1.16" - pillow: ">=6.2.0" - pyparsing: ">=2.2.1" - python-dateutil: ">=2.7" - hash: - sha256: 85f191bb03cb1a7b04b5c2cca4792bef94df06ef473bc49e2818105671766fee - manager: pip - name: matplotlib - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/36/25/e71e3803e45522ea1a97757701a8d4cf2356d28fcf182cd749aaba01840e/matplotlib-3.4.2-cp39-cp39-manylinux2014_aarch64.whl - version: 3.4.2 - - category: main - dependencies: - numpy: ">=1.13.3" - packaging: "*" - hash: - sha256: b127b0d0e1665b94adcc658c5f9d688ac4903ef81da5d8f4e956c995cf69d5c7 - manager: pip - name: numexpr - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/84/94/ba5479f46a1b2d7c12e2943e010db4619f2bf979703d3615bac95db3d56d/numexpr-2.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 2.8.3 - - category: main - dependencies: - numpy: ">=1.20.3" - python-dateutil: ">=2.8.1" - pytz: ">=2020.1" - hash: - sha256: 5cee0c74e93ed4f9d39007e439debcaadc519d7ea5c0afc3d590a3a7b2edf060 - manager: pip - name: pandas - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/93/a8/0174b2f33e3450140bb32a7208aed3b629afb83e92e82a89203e8e35eec7/pandas-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl - version: 1.5.1 - - category: main - dependencies: - requests: ">=2.0.1,<3.0.0" - hash: - sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 - manager: pip - name: requests-toolbelt - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl - version: 0.10.1 - - category: main - dependencies: - distro: "*" - packaging: "*" - hash: - sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 - manager: pip - name: scikit-build - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl - version: 0.15.0 - - category: main - dependencies: - marshmallow: ">=3.0.0,<4.0" - numpy: "*" - pyyaml: "*" - hash: - sha256: 38cceff1d3bb4ecf0eebb2a6ea46b99c418e9bd94b5acaec95d9307731360bbc - manager: pip - name: argschema - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/e9/43/91c96e0b69f86c7076989ef97bc1687ed427ddacd1dd1c7010b5c330d611/argschema-3.0.4.tar.gz - version: 3.0.4 - - category: main - dependencies: - h5py: ">=2.10,<4" - jsonschema: ">=2.6.0,<5" - numpy: ">=1.16,<1.24" - pandas: ">=1.0.5,<2" - ruamel.yaml: ">=0.16,<1" - scipy: ">=1.1,<2" - hash: - sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d - manager: pip - name: hdmf - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl - version: 3.4.6 - - category: main - dependencies: - botocore: ">=1.12.36,<2.0a.0" - hash: - sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 - manager: pip - name: s3transfer - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl - version: 0.3.7 - - category: main - dependencies: - imageio: ">=2.3.0" - matplotlib: ">=2.0.0,<3.0.0 || >3.0.0" - networkx: ">=2.0" - pillow: ">=4.3.0" - pywavelets: ">=0.4.0" - scipy: ">=0.19.0" - hash: - sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c - manager: pip - name: scikit-image - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz - version: 0.16.2 - - category: main - dependencies: - matplotlib: ">=3.1,<3.6.1 || >3.6.1" - numpy: ">=1.17" - pandas: ">=0.25" - hash: - sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 - manager: pip - name: seaborn - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl - version: 0.12.1 - - category: main - dependencies: - numpy: ">=1.17" - pandas: ">=0.25" - patsy: ">=0.5.2" - scipy: ">=1.3" - hash: - sha256: f2efc02011b7240a9e851acd76ab81150a07d35c97021cb0517887539a328f8a - manager: pip - name: statsmodels - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/9e/5e/4a2ade283411d1f46d6f8dd5fe951b9152062d55a20750cd5d4b556322bf/statsmodels-0.13.0.tar.gz - version: 0.13.0 - - category: main - dependencies: - numexpr: ">=2.6.2" - numpy: ">=1.9.3" - hash: - sha256: 49a972b8a7c27a8a173aeb05f67acb45fe608b64cd8e9fa667c0962a60b71b49 - manager: pip - name: tables - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/2b/32/847ee3f521aae6a0be380d923a736162d698586f444df1ac24b98c65025c/tables-3.6.1.tar.gz - version: 3.6.1 - - category: main - dependencies: - numpy: ">=1.15" - pandas: ">=0.25" - hash: - sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d - manager: pip - name: xarray - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl - version: 0.15.1 - - category: main - dependencies: - botocore: ">=1.20.21,<1.21.0" - jmespath: ">=0.7.1,<1.0.0" - s3transfer: ">=0.3.0,<0.4.0" - hash: - sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 - manager: pip - name: boto3 - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl - version: 1.17.21 - - category: main - dependencies: - h5py: ">=2.10,<4" - hdmf: ">=3.4.2,<4" - numpy: ">=1.16,<1.24" - pandas: ">=1.1.5,<2" - python-dateutil: ">=2.7.3,<3" - hash: - sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f - manager: pip - name: pynwb - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl - version: 2.2.0 - - category: main - dependencies: - pynwb: ">=1.1.2" - hash: - sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af - manager: pip - name: ndx-events - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl - version: 0.2.0 - - category: main - dependencies: - aiohttp: 3.7.4 - argschema: ">=3.0.1,<4.0.0" - boto3: 1.17.21 - cachetools: ">=4.2.1,<5.0.0" - future: ">=0.14.3,<1.0.0" - glymur: 0.8.19 - h5py: "*" - hdmf: ">=2.5.8" - jinja2: ">=3.0.0" - matplotlib: ">=1.4.3,<3.4.3" - ndx-events: <=0.2.0 - nest-asyncio: "*" - numpy: "*" - pandas: ">=1.1.5" - psycopg2-binary: ">=2.7,<3.0.0" - pynrrd: ">=0.2.1,<1.0.0" - pynwb: "*" - requests: <3.0.0 - requests-toolbelt: <1.0.0 - scikit-build: <1.0.0 - scikit-image: ">=0.14.0,<0.17.0" - scipy: ">=1.4.0,<2.0.0" - seaborn: <1.0.0 - semver: "*" - simpleitk: ">=2.0.2,<3.0.0" - simplejson: ">=3.10.0,<4.0.0" - six: ">=1.9.0,<2.0.0" - sqlalchemy: "*" - statsmodels: <=0.13.0 - tables: ">=3.6.0,<3.7.0" - tqdm: ">=4.27" - xarray: <0.16.0 - hash: - sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 - manager: pip - name: allensdk - optional: false - platform: linux-aarch64 - source: null - url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl - version: 2.13.6 - - category: main - dependencies: {} - hash: - md5: 37edc4e6304ca87316e160f5ca0bd1b5 - sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 - manager: conda - name: bzip2 - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 - version: 1.0.8 - - category: main - dependencies: {} - hash: - md5: 00b3e98a61e6430808fe7a2534681f28 - sha256: 1cb663c9916aab52a90a80505fec8c1a89fab21f58f3c5a949a2f286e92cb16c - manager: conda - name: c-ares - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.18.1-h0d85af4_0.tar.bz2 - version: 1.18.1 - - category: main - dependencies: {} - hash: - md5: 67b268c32433047914482def1ce215c2 - sha256: e1c929207f8a8e03fa86150c3b446f3511f35b2146d3031de305088c3b148c58 - manager: conda - name: ca-certificates - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2022.9.24-h033912b_0.tar.bz2 - version: 2022.9.24 - - category: main - dependencies: {} - hash: - md5: a0a531df6bf6663607dc77722ae522d6 - sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f - manager: conda - name: fenics-ufcx - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 - version: 0.5.0 - - category: main - dependencies: {} - hash: - md5: 208a6a874b073277374de48a782f6b10 - sha256: ebb75dd9f854b1f184a98d0b9128a3faed6cd2f05f83677e1f399c253580afe7 - manager: conda - name: libcxx - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-14.0.6-hccf4f1f_0.tar.bz2 - version: 14.0.6 - - category: main - dependencies: {} - hash: - md5: 79dc2be110b2a3d1e97ec21f691c50ad - sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b - manager: conda - name: libev - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2 - version: "4.33" - - category: main - dependencies: {} - hash: - md5: ccb34fb14960ad8b125962d3d79b31a9 - sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f - manager: conda - name: libffi - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - version: 3.4.2 - - category: main - dependencies: {} - hash: - md5: 24632c09ed931af617fe6d5292919cab - sha256: 2da45f14e3d383b4b9e3a8bacc95cd2832aac2dbf9fbc70d255d384a310c5660 - manager: conda - name: libsodium - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 - version: 1.0.18 - - category: main - dependencies: {} - hash: - md5: 35eb3fce8d51ed3c1fd4122bad48250b - sha256: 0d954350222cc12666a1f4852dbc9bcf4904d8e467d29505f2b04ded6518f890 - manager: conda - name: libzlib - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-hfd90126_4.tar.bz2 - version: 1.2.13 - - category: main - dependencies: {} - hash: - md5: 5d5ab9ab83ce21422be84ecfd3142201 - sha256: dfe2fa815471c2638a009eb47969605730d92c3af3f183295587e34f996d2f30 - manager: conda - name: llvm-openmp - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-14.0.4-ha654fa7_0.tar.bz2 - version: 14.0.4 - - category: main - dependencies: {} - hash: - md5: ed90f7784864e7c0580624ec3ed5534e - sha256: 7a71e06bc0ee0d95483c49de11e4a72bf29045b93b5d835bb7adbddb839c7b98 - manager: conda - name: metis - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.0-h2e338ed_1006.tar.bz2 - version: 5.1.0 - - category: main - dependencies: {} - hash: - md5: 7316a634ed27146b42d28433ec3bc227 - sha256: f6ed94ef0df7992198eba976af4d509863acd2911964501d263eef8b44521da6 - manager: conda - name: mpi - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/mpi-1.0-mpich.tar.bz2 - version: "1.0" - - category: main - dependencies: {} - hash: - md5: ed3d032dc307436df39ff27f34ab7ab8 - sha256: 7f7e34fb9bcbbe5460dd2f3d3c46335917f693b84f4d1af78d4c5080e800d45d - manager: conda - name: mumps-include - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/mumps-include-5.2.1-h694c41f_11.tar.bz2 - version: 5.2.1 - - category: main - dependencies: {} - hash: - md5: 76217ebfbb163ff2770a261f955a5861 - sha256: 9794a23d03586c99cac49d4ae3d5337faaa6bfc256b31d2662ff4ad5972be143 - manager: conda - name: ncurses - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.3-h96cf925_1.tar.bz2 - version: "6.3" - - category: main - dependencies: {} - hash: - md5: b6bd89cf71494c41a181cac13cc5a8ea - sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 - manager: conda - name: tzdata - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 - version: 2022e - - category: main - dependencies: {} - hash: - md5: a72f9d4ea13d55d745ff1ed594747f10 - sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 - manager: conda - name: xz - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 - version: 5.2.6 - - category: main - dependencies: {} - hash: - md5: d7e08fcf8259d742156188e8762b4d20 - sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 - manager: conda - name: yaml - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 - version: 0.2.5 - - category: main - dependencies: - libcxx: ">=10.0.1" - hash: - md5: dedc96914428dae572a39e69ee2a392f - sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 - manager: conda - name: gmp - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2 - version: 6.2.1 - - category: main - dependencies: - libcxx: ">=12.0.1" - hash: - md5: 376635049e9b9b0bb875efd39dcd7b3b - sha256: 0807aa3fd93804ab239808d149e7f210a83e1c61bc59bb84818f4ef9f6036d86 - manager: conda - name: icu - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/icu-70.1-h96cf925_0.tar.bz2 - version: "70.1" - - category: main - dependencies: - ncurses: ">=6.2,<7.0.0a0" - hash: - md5: 6016a8a1d0e63cac3de2c352cd40208b - sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 - manager: conda - name: libedit - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 - version: 3.1.20191231 - - category: main - dependencies: - llvm-openmp: ">=8.0.0" - hash: - md5: 2c8fd85ee58fc04f8cc52aaa28bceca3 - sha256: 599cade7d68b6bd1b79db1b0ab24cdfd0b310c47e74d1f55c78761eb66e0e62f - manager: conda - name: libgfortran5 - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-11.3.0-h082f757_25.tar.bz2 - version: 11.3.0 - - category: main - dependencies: - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: 3954555b5b02b117119cb806d5dcfcd8 - sha256: 8bcc76d644202cde53252a2274f8a3fe28650ba273148ce027337c576276d6f3 - manager: conda - name: libpng - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.38-ha978bb4_0.tar.bz2 - version: 1.6.38 - - category: main - dependencies: - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: 28060fa753417bdd4e66da2048951dd1 - sha256: 3fc6bd39468480b12166b4450731f6a517780590aa3cbfcd812f71b4c9a6946b - manager: conda - name: libsqlite - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.39.4-ha978bb4_0.tar.bz2 - version: 3.39.4 - - category: main - dependencies: - libcxx: ">=11.1.0" - hash: - md5: 05c08241b66631c00ca4f9e0b75320bc - sha256: 627c435c511e789ed04e0e2077fdfc645117474c4d1c4a7c0d31241936632cd4 - manager: conda - name: lz4-c - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.3-he49afe7_1.tar.bz2 - version: 1.9.3 - - category: main - dependencies: - ca-certificates: "" - hash: - md5: 8a98a203c03d3d252f5ba9fa2d04210e - sha256: 62c98f552278a40ae3ee45baad1dbcd84aa6d1d657abc7b26618823c2c1efb76 - manager: conda - name: openssl - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.0.5-hfd90126_2.tar.bz2 - version: 3.0.5 - - category: main - dependencies: - libcxx: ">=11.1.0" - hash: - md5: 69d67c7202c11a51cc0e7f9cda7e49b2 - sha256: f487ea4b425515cd2df5197fa7fe4e06d7f64aabef58cefca1212c02f8958835 - manager: conda - name: pugixml - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.11.4-he49afe7_0.tar.bz2 - version: 1.11.4 - - category: main - dependencies: - ncurses: ">=6.3,<7.0a0" - hash: - md5: 89fa404901fa8fb7d4f4e07083b8d635 - sha256: c65dc1200a252832db49bdd6836c512a0eaafe97aa914b9f8358b15eebb1d94b - manager: conda - name: readline - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.1.2-h3899abd_0.tar.bz2 - version: 8.1.2 - - category: main - dependencies: - libcxx: ">=13.0.1" - hash: - md5: ffa92d111ec90eec8ffc09220a9c5aba - sha256: 646a0a0cfa679272f8c4794767cf18d61eb138236e9a7b779b6cdd10031a06ec - manager: conda - name: snappy - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.9-h6e38e02_1.tar.bz2 - version: 1.1.9 - - category: main - dependencies: - libcxx: ">=14.0.4" - hash: - md5: e08aeee1188c571aae0b1e8dd11d3fa4 - sha256: 2cad82d40670efb65f4f4a4797ea6c2d73e48858379bce413b57588118e4fa13 - manager: conda - name: tbb - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.6.0-hb8565cd_0.tar.bz2 - version: 2021.6.0 - - category: main - dependencies: - libzlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 8e9480d9c47061db2ed1b4ecce519a7f - sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 - manager: conda - name: tk - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 - version: 8.6.12 - - category: main - dependencies: - libcxx: ">=11.1.0" - hash: - md5: 45ee043093c71ebfc417afe577d4ee32 - sha256: 05b3ccdcd3083fda9417929b595c93e1edde66c97f2f3dc04f7455ab7f64d5a0 - manager: conda - name: xtl - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/xtl-0.7.4-h940c156_0.tar.bz2 - version: 0.7.4 - - category: main - dependencies: - libcxx: ">=11.1.0" - libsodium: ">=1.0.18,<1.0.19.0a0" - hash: - md5: 1972d732b123ed04b60fd21e94f0b178 - sha256: 991e2b42908c5793fe42a78272e6bd5e6412636274500b846991d0f3e5126952 - manager: conda - name: zeromq - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.4-he49afe7_1.tar.bz2 - version: 4.3.4 - - category: main - dependencies: - libcxx: ">=11.1.0" - llvm-openmp: ">=11.1.0" - hash: - md5: faa14d931b1e190945b8fdf18e0d0b97 - sha256: 5705e4756ce9f48020b2d20949efaa0b159e04220973dfaecb42c85165e40124 - manager: conda - name: zfp - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/zfp-0.5.5-h4a89273_8.tar.bz2 - version: 0.5.5 - - category: main - dependencies: - libzlib: 1.2.13 hfd90126_4 - hash: - md5: be90e6223c74ea253080abae19b3bdb1 - sha256: 9db69bb5fc3e19093b550e25d1158cdf82f4f8eddc1f80f8d7d9de33eb8535a4 - manager: conda - name: zlib - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-hfd90126_4.tar.bz2 - version: 1.2.13 - - category: main - dependencies: - libcxx: ">=13.0.1" - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: 0b446e84f3ccf085e590dc1f73eebe3f - sha256: acf19719a0a4b7534532166f84346709fdb8ccf960bc6c19ac3b437177e95dde - manager: conda - name: zstd - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hfa58983_4.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libcxx: ">=13.0.1" - libzlib: ">=1.2.11,<1.3.0a0" - lz4-c: ">=1.9.3,<1.10.0a0" - snappy: ">=1.1.9,<2.0a0" - zstd: ">=1.5.2,<1.6.0a0" - hash: - md5: c7bcd688fb5236757648a8b85b8fb7f0 - sha256: 518057cef4b20f86ea7df4000e2a69fd87da4f9924d9e52d89517b0c200d3cf3 - manager: conda - name: blosc - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.1-h97e831e_3.tar.bz2 - version: 1.21.1 - - category: main - dependencies: - bzip2: ">=1.0.8,<2.0a0" - icu: ">=70.1,<71.0a0" - libcxx: ">=12.0.1" - libzlib: ">=1.2.11,<1.3.0a0" - xz: ">=5.2.5,<5.3.0a0" - zstd: ">=1.5.2,<1.6.0a0" - hash: - md5: a89e9eda1dea07f884c11a7e958f72d2 - sha256: 02e38c2a0ccbf173a23338b82e4fa32aa1161b96b89b987151699f47e9d0cc3b - manager: conda - name: boost-cpp - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/boost-cpp-1.74.0-h8b082ac_8.tar.bz2 - version: 1.74.0 - - category: main - dependencies: - libcxx: ">=12.0.1" - libedit: ">=3.1.20191231,<4.0a0" - openssl: ">=3.0.0,<4.0a0" - hash: - md5: 8acf20165e07870bc65510a363ff45bb - sha256: 7f4de03413501f22f287a9fad86710de0f47b459ecf08026257e9a49d7c93428 - manager: conda - name: krb5 - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.19.3-hb98e516_0.tar.bz2 - version: 1.19.3 - - category: main - dependencies: - libgfortran5: "" - hash: - md5: 5258ded23560cdebf95cef1df827065b - sha256: d8157284166a69cd12e43a75da5a135d529c899428201314902a4d4992afa7b1 - manager: conda - name: libgfortran - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-10_4_0_h97931a8_25.tar.bz2 - version: 5.0.0 - - category: main - dependencies: - c-ares: ">=1.18.1,<2.0a0" - libcxx: ">=13.0.1" - libev: ">=4.33,<4.34.0a0" - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: 19d5ae4be3e4b3cfa5696f3667e8c631 - sha256: 9e14d62e4462e6be28bcaa266f69e96ead43f4d7ef566e9cd460dbc9ae999daf - manager: conda - name: libnghttp2 - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.47.0-h5aae05b_1.tar.bz2 - version: 1.47.0 - - category: main - dependencies: - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: 5a28624eeb7812b585b9e2d75f846ba2 - sha256: 3261dc7fa9cb928e8a0da4857b89bdd3e965766a6cd5b6456d4407cba6b25402 - manager: conda - name: libssh2 - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.10.0-h47af595_3.tar.bz2 - version: 1.10.0 - - category: main - dependencies: - gmp: ">=6.2.1,<7.0a0" - hash: - md5: afe26b08c2d2265b4d663d199000e5da - sha256: 68e2d7c06f438f7179b9b0c6f826a33a29c6580233a1e60fa71d4da260d70b8f - manager: conda - name: mpfr - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.1.0-h0f52abe_1.tar.bz2 - version: 4.1.0 - - category: main - dependencies: - libzlib: ">=1.2.11,<1.3.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 201a64c35a3b3ce59b56a33f08c7a70e - sha256: f7cd07fbfe7a9cbb25a6e1c62c30ca3d821040f9c312c7e95df6895dc4203aef - manager: conda - name: scotch - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/scotch-6.0.9-h3da7401_2.tar.bz2 - version: 6.0.9 - - category: main - dependencies: - libsqlite: 3.39.4 ha978bb4_0 - libzlib: ">=1.2.12,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - readline: ">=8.1.2,<9.0a0" - hash: - md5: 14e2dbb73e122e10858790f664d9636b - sha256: af69137ec8e4dd85adb4f779cdf034022fff952bc09809c2a95b6b9026f48095 - manager: conda - name: sqlite - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.39.4-h9ae0607_0.tar.bz2 - version: 3.39.4 - - category: main - dependencies: - libcxx: ">=13.0.1" - xtl: ">=0.7,<0.8" - hash: - md5: cf8d39e9092afb19ac1b02f01059ef7e - sha256: 92c3e01c92a9a5505edfbde24bf496dd1bfd9203604f4059e67de08fde162b31 - manager: conda - name: xtensor - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/xtensor-0.24.3-h1b54a9f_0.tar.bz2 - version: 0.24.3 - - category: main - dependencies: - krb5: ">=1.19.3,<1.20.0a0" - libnghttp2: ">=1.47.0,<2.0a0" - libssh2: ">=1.10.0,<2.0a0" - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: 5a240143d8ce7a28eec379f392b30a98 - sha256: 5f571a3827183a19ecaef242ef13b99df55df504a9224ee4ca2080f0d4475c64 - manager: conda - name: libcurl - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-7.85.0-h581aaea_0.tar.bz2 - version: 7.85.0 - - category: main - dependencies: - libgfortran: 5.* - libgfortran5: ">=11.3.0" - llvm-openmp: ">=14.0.4" - hash: - md5: 968c46aa7f4032c3f3873f3452ed4c34 - sha256: a5a0b6ccef165ffb38e6a53e7b8808e33c77e081174315d2333ae93b593ae957 - manager: conda - name: libopenblas - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.21-openmp_h429af6e_3.tar.bz2 - version: 0.3.21 - - category: main - dependencies: - libcxx: ">=12.0.1" - libgfortran: 5.* - libgfortran5: ">=9.3.0" - mpi: 1.0 mpich - hash: - md5: a479ded6dab88ffcc3039f33b5bdd403 - sha256: 2e8ee7be41fb3b044780055737ae7745c3b0cd77bcb3cda762883a8342e6c46c - manager: conda - name: mpich - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/mpich-4.0.2-hd33e60e_100.tar.bz2 - version: 4.0.2 - - category: main - dependencies: - bzip2: ">=1.0.8,<2.0a0" - libffi: ">=3.4.2,<3.5.0a0" - libzlib: ">=1.2.11,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - openssl: ">=3.0.3,<4.0a0" - readline: ">=8.1,<9.0a0" - sqlite: ">=3.38.5,<4.0a0" - tk: ">=8.6.12,<8.7.0a0" - tzdata: "" - xz: ">=5.2.5,<5.3.0a0" - hash: - md5: c3c4e87be5a78529972f2fa99c9e9938 - sha256: cbbb0a8b3cbdf0f12a561b8de8e580f214703ba7313dbaf84425d63acdd48c79 - manager: conda - name: python - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.9.13-hf8d34f4_0_cpython.tar.bz2 - version: 3.9.13 - - category: main - dependencies: - python: ">=3.6" - hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 - manager: conda - name: cached_property - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libcxx: ">=14.0.4" - libgfortran: 5.* - libgfortran5: ">=11.3.0" - llvm-openmp: ">=14.0.4" - mpich: ">=4.0.2,<5.0a0" - hash: - md5: 2b599ad54149140ea1bcb4e3a961ec3a - sha256: 0413d390935149c547fa895917702385b12a089483018b1510332c080ddba8b9 - manager: conda - name: fftw - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-mpi_mpich_h4a8b384_5.tar.bz2 - version: 3.3.10 - - category: main - dependencies: - libcurl: ">=7.81.0,<8.0a0" - libcxx: ">=12.0.1" - libgfortran: 5.* - libgfortran5: ">=9.3.0" - libzlib: ">=1.2.11,<1.3.0a0" - mpich: ">=4.0,<4.1.0a0" - openssl: ">=3.0.0,<4.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: dae7f3dd297d0bfb862ae8066d8d245e - sha256: 95279d5482f32d8b2d1a1c945b00905577bd6ecab32b220a1220fda03a51a6d5 - manager: conda - name: hdf5 - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.1-mpi_mpich_h611ac81_4.tar.bz2 - version: 1.12.1 - - category: main - dependencies: - libopenblas: ">=0.3.21,<1.0a0" - hash: - md5: 644d63e9379867490b67bace400b2a0f - sha256: 7678dab49b552957ddfa1fc5ddf3a09963c788bca81adb0cd9626f6385e205c5 - manager: conda - name: libblas - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-16_osx64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - libcxx: ">=11.1.0" - mpich: ">=3.4,<5.0.0a0" - hash: - md5: 93c34a9e24211ed262743444fd187f4d - sha256: 60bd23c0ad4e5e20eb31419878c76385909f0e3ec115db44f9b04d64efb3bff8 - manager: conda - name: parmetis - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-hb7fa8f8_1005.tar.bz2 - version: 4.0.3 - - category: main - dependencies: - libzlib: ">=1.2.11,<1.3.0a0" - mpich: ">=4.0.1,<5.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: fad5880e9a67a2254babb5d77e63005f - sha256: 0a6d786d07b3ffe60c27e0a747251c8ea524f366d7a3fb49d37d13c839d59d6d - manager: conda - name: ptscotch - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ptscotch-6.0.9-h4f3afa6_2.tar.bz2 - version: 6.0.9 - - category: main - dependencies: - python: ==2.7.*|>=3.4 - hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - manager: conda - name: pycparser - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 - version: "2.21" - - category: main - dependencies: - python: 3.9.* - hash: - md5: 262f557ee8ca777fe2190956038024cd - sha256: 684ad12c7e7f92aa2794c45c3a0e0f6a0c0e6251819126c065ee0d0b4da166dc - manager: conda - name: python_abi - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.9-2_cp39.tar.bz2 - version: "3.9" - - category: main - dependencies: - python: ">=3.7" - hash: - md5: 462466739c786f85f9ed555f87099fe1 - sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 - manager: conda - name: setuptools - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 - version: 65.5.0 - - category: main - dependencies: - python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4" - hash: - md5: 1ca02aaf78d9c70d9a81a3bed5752022 - sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc - manager: conda - name: wheel - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 - version: 0.37.1 - - category: main - dependencies: - cached_property: ">=1.5.2,<1.5.3.0a0" - hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 - manager: conda - name: cached-property - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libffi: ">=3.4,<4.0a0" - pycparser: "" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 029c635f39bd179fce3e843636ddd4d1 - sha256: 9028d750f093d885506a9d6eb8ba1f663afc5bceab9e187a4a53360df5b9569c - manager: conda - name: cffi - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py39h131948b_1.tar.bz2 - version: 1.15.1 - - category: main - dependencies: - blosc: ">=1.21.1,<2.0a0" - bzip2: ">=1.0.8,<2.0a0" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" - libcxx: ">=14.0.4" - libffi: ">=3.4.2,<3.5.0a0" - libpng: ">=1.6.37,<1.7.0a0" - mpich: ">=4.0.2,<5.0a0" - zeromq: ">=4.3.4,<4.4.0a0" - zfp: ">=0.5.5,<1.0a0" - hash: - md5: 34dab35c046130b24e310039f2d5aa23 - sha256: 8d015f309b4cbc0043f6c7f5c616a3f53fed3e934ba023450e612a0ce6f42743 - manager: conda - name: libadios2 - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libadios2-2.8.3-mpi_mpich_ha75daa5_1.tar.bz2 - version: 2.8.3 - - category: main - dependencies: - libblas: 3.9.0 16_osx64_openblas - hash: - md5: 28592eab0f05bcf9969789e87f754e11 - sha256: 072a214ab1d596b99b985773bdb6f6e5f38774c7f73d70962700e0fc0d77d91f - manager: conda - name: libcblas - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-16_osx64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - libblas: 3.9.0 16_osx64_openblas - hash: - md5: 406ad426aade5578b90544cc2ed4a79b - sha256: 456a6e8bfc2e97846d9e157b5f51c23e0c4e9c922ccf7b2321be5362c835d35f - manager: conda - name: liblapack - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-16_osx64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 478672fe1f0c0fafc4e99152cd7e33fe - sha256: 14e76a5675eb31fede7e460752557068f8b487847d48def078df4dd7d6817ae6 - manager: conda - name: markupsafe - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.1-py39h63b48b0_1.tar.bz2 - version: 2.1.1 - - category: main - dependencies: - mpich: ">=4.0.2,<5.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 1f15f487666c0923b1efbdcd53612617 - sha256: 20d09a50f7a769f1e60a43de47112eb4324ce1ecd49516eaaaea27766205410d - manager: conda - name: mpi4py - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/mpi4py-3.1.3-py39hef65b2c_2.tar.bz2 - version: 3.1.3 - - category: main - dependencies: - python: ">=3.7" - setuptools: "" - wheel: "" - hash: - md5: 6f4c6de9fed2a9bd8043283611b09587 - sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 - manager: conda - name: pip - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 - version: "22.3" - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=14.0.4" - liblapack: ">=3.9.0,<4.0a0" - hash: - md5: cc005ee6fedd7dd9326665a1ab938c0b - sha256: 2cbbbaf97a155f0b06dd834d1c0e8103052e478848456c8910143aab22ea8080 - manager: conda - name: fenics-libbasix - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fenics-libbasix-0.5.1-h7396341_0.tar.bz2 - version: 0.5.1 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcxx: ">=13.0.1" - liblapack: ">=3.9.0,<4.0a0" - mpich: ">=4.0.2,<5.0a0" - hash: - md5: 6395178e52ca1c438f78d0446d5160ae - sha256: 44ef6e43ca4d123bc3629c44b91825e23bcda1a4733b8b61d2f5556bca28a7c1 - manager: conda - name: hypre - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/hypre-2.25.0-mpi_mpich_he15861c_0.tar.bz2 - version: 2.25.0 - - category: main - dependencies: - markupsafe: ">=2.0" - python: ">=3.7" - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - manager: conda - name: jinja2 - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 - version: 3.1.2 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=14.0.4" - liblapack: ">=3.9.0,<4.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: c10445ddec73c2576f2ae47495b16409 - sha256: 2b2780e94dc500678d93ec81d586c5a9857650d8d3190644848934d47f1d7e6e - manager: conda - name: numpy - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.23.4-py39hdfa1d0c_0.tar.bz2 - version: 1.23.4 - - category: main - dependencies: - libblas: ">=3.8.0,<4.0a0" - libgfortran: 5.* - libgfortran5: ">=9.3.0" - liblapack: ">=3.8.0,<4.0a0" - mpich: ">=4.0.1,<5.0a0" - hash: - md5: 8287ee9620ffd1cba4fa3e2230652d5e - sha256: d67d8e3327c90031dc3fce466a3682f10bea7039c11a6908e0dccc18d8642ebe - manager: conda - name: scalapack - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/scalapack-2.2.0-hc746714_1.tar.bz2 - version: 2.2.0 - - category: main - dependencies: - libblas: ">=3.8.0,<4.0a0" - libcblas: ">=3.8.0,<4.0a0" - libcxx: ">=11.1.0" - liblapack: ">=3.8.0,<4.0a0" - metis: ">=5.1.0,<5.2.0a0" - mpfr: ">=4.1.0,<5.0a0" - tbb: ">=2021.3.0" - hash: - md5: d30185298e8ba70c8bc17121f837730d - sha256: 6aadb010ca234dae7795a61add8a19593f55f80e135b88c52e2e52058d3072ae - manager: conda - name: suitesparse - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/suitesparse-5.10.1-h7aff33d_1.tar.bz2 - version: 5.10.1 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgfortran: 5.* - libgfortran5: ">=9.3.0" - hash: - md5: 415a218b750ec31760d6a530d11dc98d - sha256: f2717e2f4afd90cec2e378a06759f647638daada0b53c0155b6f6696f6d67220 - manager: conda - name: superlu - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/superlu-5.2.2-h1f0f902_0.tar.bz2 - version: 5.2.2 - - category: main - dependencies: - libblas: ">=3.8.0,<4.0a0" - libcxx: ">=11.1.0" - libgfortran: 5.* - libgfortran5: ">=9.3.0" - liblapack: ">=3.8.0,<4.0a0" - llvm-openmp: ">=12.0.1" - metis: ">=5.1.0,<5.2.0a0" - mpich: ">=3.4.2,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - hash: - md5: f5937bfa7727627ff7446791a25edf16 - sha256: fbedba66033878a223af1b8bb087a05375eaf0a5c052a169c0e16230a3fcd753 - manager: conda - name: superlu_dist - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/superlu_dist-7.2.0-h4bb6bf2_0.tar.bz2 - version: 7.2.0 - - category: main - dependencies: - fenics-libbasix: 0.5.1 h7396341_0 - libcxx: ">=14.0.4" - numpy: "" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 61af149df92545b8c868f7d395331857 - sha256: 73c47c9a42e63250dd422879f96fd86a40c3a78ede93ff3ca9cd2711ee995317 - manager: conda - name: fenics-basix - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fenics-basix-0.5.1-py39h92daf61_0.tar.bz2 - version: 0.5.1 - - category: main - dependencies: - numpy: "" - python: ">=3.7" - hash: - md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c - sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 - manager: conda - name: fenics-ufl - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 - version: 2022.2.0 - - category: main - dependencies: - cached-property: "" - hdf5: ">=1.12.1,<1.12.2.0a0" - numpy: ">=1.19.5,<2.0a0" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: 16265ef5ec7205f3b8862ed614f1f514 - sha256: 199df16e2c7a503f05728bf2c4047bb5159e919cbf6ecaa3c14f749b3430de68 - manager: conda - name: h5py - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/h5py-3.7.0-nompi_py39h66c274d_100.tar.bz2 - version: 3.7.0 - - category: main - dependencies: - libblas: ">=3.8.0,<4.0a0" - libgfortran: 5.* - libgfortran5: ">=9.3.0" - liblapack: ">=3.8.0,<4.0a0" - metis: ">=5.1.0,<5.2.0a0" - mpich: ">=4.0.1,<5.0a0" - mumps-include: 5.2.1 h694c41f_11 - parmetis: ">=4.0.3,<4.1.0a0" - ptscotch: ">=6.0.9,<6.0.10.0a0" - scalapack: ">=2.2.0,<2.3.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - hash: - md5: 64fcc5df660d6d866c5d5799f1d0af58 - sha256: 036ffd9a7cc6f88443d12950a99a3c8c93bd109ebed70efe8e8c01491e575b9d - manager: conda - name: mumps-mpi - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/mumps-mpi-5.2.1-h690e093_11.tar.bz2 - version: 5.2.1 - - category: main - dependencies: - cffi: "" - fenics-basix: 0.5.* - fenics-ufl: 2022.2.* - numpy: "" - python: ">=3.7" - setuptools: "" - hash: - md5: 2dcc01a5199492d95b197d7265f5336a - sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 - manager: conda - name: fenics-ffcx - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 - version: 0.5.0 - - category: main - dependencies: - fftw: "* mpi_mpich_*" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" - hypre: ">=2.25.0,<2.25.1.0a0" - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=13.0.1" - libgfortran: 5.* - libgfortran5: ">=9.3.0" - liblapack: ">=3.9.0,<4.0a0" - metis: ">=5.1.0,<5.2.0a0" - mpich: ">=4.0.2,<5.0a0" - mumps-mpi: ">=5.2.1,<5.2.2.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - ptscotch: ">=6.0.9,<6.0.10.0a0" - scalapack: ">=2.2.0,<2.3.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - suitesparse: ">=5.10.1,<5.10.2.0a0" - superlu: "" - superlu_dist: ">=7.1.1,<8.0a0" - yaml: ">=0.2.5,<0.3.0a0" - hash: - md5: f431d00ab606324883ceb2438fa41cd1 - sha256: 640179cfc633c4e5b17ab8ba9fcf45a7f97f490e41ca290ba53b4bac159e068a - manager: conda - name: petsc - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/petsc-3.17.3-real_h4ceb9a8_100.tar.bz2 - version: 3.17.3 - - category: main - dependencies: - libgfortran: 5.* - libgfortran5: ">=9.3.0" - mpich: ">=4.0.2,<5.0a0" - numpy: ">=1.19.5,<2.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - hash: - md5: ef082b1e14c26e79c2de95e7cbd0f8a6 - sha256: b7a005be64417ff32856d440a8f15470162659d1d888bb875aebe0c4ed50531a - manager: conda - name: petsc4py - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/petsc4py-3.17.3-real_h65a1797_101.tar.bz2 - version: 3.17.3 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=13.0.1" - libgfortran: 5.* - libgfortran5: ">=9.3.0" - liblapack: ">=3.9.0,<4.0a0" - mpich: ">=4.0.2,<5.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - suitesparse: ">=5.10.1,<5.10.2.0a0" - hash: - md5: 916accf926c3d113cda927cf7d91f3fd - sha256: e660dc934d6a4738ea219d6ccb2cfbdb2454fcb26b96ced7e80180f43095f78e - manager: conda - name: slepc - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/slepc-3.17.1-real_h3d66a68_102.tar.bz2 - version: 3.17.1 - - category: main - dependencies: - boost-cpp: ">=1.74.0,<1.74.1.0a0" - fenics-libbasix: ">=0.5.1,<0.5.2.0a0" - fenics-ufcx: ">=0.5.0,<0.5.1.0a0" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" - libadios2: ">=2.8.3,<2.8.4.0a0 mpi_mpich_*" - libcxx: ">=14.0.4" - mpich: ">=4.0.2,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - ptscotch: ">=6.0.9,<6.0.10.0a0" - pugixml: ">=1.11.4,<1.12.0a0" - slepc: ">=3.17.1,<3.18.0a0 real_*" - xtensor: ">=0.24.3,<0.25.0a0" - hash: - md5: d4d6b883ba1a3a60cf25fa56c05d8cd2 - sha256: 2193f00786d2134a6400b6267c6098874970741b75d5eac4da44649b5243c9c6 - manager: conda - name: fenics-libdolfinx - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fenics-libdolfinx-0.5.2-h67684fb_100.tar.bz2 - version: 0.5.2 - - category: main - dependencies: - mpich: ">=4.0.2,<5.0a0" - numpy: ">=1.19.5,<2.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - petsc4py: 3.17.* - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - slepc: ">=3.17.1,<3.18.0a0 real_*" - hash: - md5: e7f27c84bfe08e8a3fa177dcfa4be704 - sha256: adf3dc1d456e36da1cf248e227e4dbd2ede6a5a410e9aa011f0cf5dd1e7bb4ac - manager: conda - name: slepc4py - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/slepc4py-3.17.1-real_h1feb214_103.tar.bz2 - version: 3.17.1 - - category: main - dependencies: - cffi: "" - fenics-basix: 0.5.* - fenics-ffcx: 0.5.* - fenics-libdolfinx: 0.5.2 h67684fb_100 - fenics-ufl: 2022.2.* - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_mpich_*" - libcxx: ">=14.0.4" - mpi4py: "" - mpich: ">=4.0.2,<5.0a0" - numpy: "" - petsc: ">=3.17.3,<3.18.0a0 real_*" - petsc4py: "" - python: ">=3.9,<3.10.0a0" - python_abi: 3.9.* *_cp39 - slepc: ">=3.17.1,<3.18.0a0 real_*" - slepc4py: "" - hash: - md5: 6663cc38a407183c9fdcec58644e865f - sha256: 15c354ee48d648fbc3f41ee5d1323db32d6230eac450d5fe4a4d6701026ee2fb - manager: conda - name: fenics-dolfinx - optional: false - platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fenics-dolfinx-0.5.2-py39hf3ff6d5_100.tar.bz2 - version: 0.5.2 - - category: main - dependencies: {} - hash: - sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 - manager: pip - name: async-timeout - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl - version: 3.0.1 - - category: main - dependencies: {} - hash: - sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c - manager: pip - name: attrs - optional: false - platform: osx-64 - source: null - url: https://files.hosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl - version: 22.1.0 - - category: main - dependencies: {} - hash: - sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 - manager: pip - name: cachetools - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl - version: 4.2.4 - - category: main - dependencies: {} - hash: - sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 - manager: pip - name: certifi - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl - version: 2022.9.24 - - category: main - dependencies: {} - hash: - sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 - manager: pip - name: chardet - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl - version: 3.0.4 - - category: main - dependencies: {} - hash: - sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f - manager: pip - name: charset-normalizer - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl - version: 2.1.1 - - category: main - dependencies: {} - hash: - sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 - manager: pip - name: colorama - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - version: 0.4.6 - - category: main - dependencies: {} - hash: - sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 - manager: pip - name: cycler - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl - version: 0.11.0 - - category: main - dependencies: {} - hash: - sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff - manager: pip - name: distro - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl - version: 1.8.0 - - category: main - dependencies: {} - hash: - sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d - manager: pip - name: future - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz - version: 0.18.2 - - category: main - dependencies: {} - hash: - sha256: f5e09dc5c6e1796969fd4b775ea1417d70e49a5df29aaa8e5d10675d9e11872c - manager: pip - name: greenlet - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/ea/37/e54ce453b298e890f59dba3db32461579328a07d5b65e3eabf80f971c099/greenlet-1.1.3.post0.tar.gz - version: 1.1.3.post0 - - category: main - dependencies: {} - hash: - sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 - manager: pip - name: idna - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl - version: "3.4" - - category: main - dependencies: {} - hash: - sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f - manager: pip - name: jmespath - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl - version: 0.10.0 - - category: main - dependencies: {} - hash: - sha256: f0a71d85ecdd570ded8ac3d1c0f480842f49a40beb423bb8014539a9f32a5897 - manager: pip - name: kiwisolver - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/f2/e2/7ed98290955aa83598d0e5672d88bbc193192cdcd23d3a9ed7e536cf8e55/kiwisolver-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl - version: 1.4.4 - - category: main - dependencies: {} - hash: - sha256: 6701bf8a5d03a43375909ac91b6980aea74b0f5402fbe9428fc3f6edf5d9677e - manager: pip - name: multidict - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/c7/9f/ce1b2b964f573e09eda8a6e98b33972a7915304dd3737da4ae663e2f5057/multidict-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl - version: 6.0.2 - - category: main - dependencies: {} - hash: - sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 - manager: pip - name: nest-asyncio - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl - version: 1.5.6 - - category: main - dependencies: {} - hash: - sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d - manager: pip - name: networkx - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl - version: 2.8.7 - - category: main - dependencies: {} - hash: - sha256: 75e636fd3e0fb872693f23ccb8a5ff2cd578801251f3a4f6854c6a5d437d3c04 - manager: pip - name: pillow - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/8c/92/2975b464d9926dc667020ed1abfa6276e68c3571dcb77e43347e15ee9eed/Pillow-9.2.0.tar.gz - version: 9.2.0 - - category: main - dependencies: {} - hash: - sha256: 25382c7d174c679ce6927c16b6fbb68b10e56ee44b1acb40671e02d29f2fce7c - manager: pip - name: psycopg2-binary - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/fa/88/e44363a9c68abfab4f596850636b4be496d479845877a507a73a651ef623/psycopg2_binary-2.9.5-cp39-cp39-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl - version: 2.9.5 - - category: main - dependencies: {} - hash: - sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc - manager: pip - name: pyparsing - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl - version: 3.0.9 - - category: main - dependencies: {} - hash: - sha256: f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5 - manager: pip - name: pyrsistent - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/15/fa/64ed4c29d36df26906f03a1fb360056e3cbc063b00446f3663252bdd175a/pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl - version: 0.18.1 - - category: main - dependencies: {} - hash: - sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 - manager: pip - name: pytz - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl - version: "2022.5" - - category: main - dependencies: {} - hash: - sha256: 055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b - manager: pip - name: pyyaml - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/f5/6f/b8b4515346af7c33d3b07cd8ca8ea0700ca72e8d7a750b2b87ac0268ca4e/PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl - version: "6.0" - - category: main - dependencies: {} - hash: - sha256: 5bc0667c1eb8f83a3752b71b9c4ba55ef7c7058ae57022dd9b29065186a113d9 - manager: pip - name: ruamel.yaml.clib - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/f5/ac/dda2d23d652bc2f6db886496ad632957af82e33d22c1088cc0ac87c496b5/ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl - version: 0.2.7 - - category: main - dependencies: {} - hash: - sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 - manager: pip - name: semver - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl - version: 2.13.0 - - category: main - dependencies: {} - hash: - sha256: 160a5e2743ab16b1fe201766ec3aed9587a19dcce534953736d4af7a77216628 - manager: pip - name: simpleitk - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/ab/51/69c16ab13bdae1901c197e9b572944dc2a3e9fc1f14ae2cecd201bf0472a/SimpleITK-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl - version: 2.2.0 - - category: main - dependencies: {} - hash: - sha256: 12133863178a8080a3dccbf5cb2edfab0001bc41e5d6d2446af2a1131105adfe - manager: pip - name: simplejson - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/99/11/70df62feed6f29148f4bcfe1403c73a0c74afbb159392a340b382325478f/simplejson-3.17.6-cp39-cp39-macosx_10_9_x86_64.whl - version: 3.17.6 - - category: main - dependencies: {} - hash: - sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 - manager: pip - name: six - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl - version: 1.16.0 - - category: main - dependencies: {} - hash: - sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e - manager: pip - name: typing-extensions - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl - version: 4.4.0 - - category: main - dependencies: {} - hash: - sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 - manager: pip - name: urllib3 - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl - version: 1.26.12 - - category: main - dependencies: - numpy: ">=1.7.1" - hash: - sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 - manager: pip - name: glymur - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz - version: 0.8.19 - - category: main - dependencies: - numpy: "*" - pillow: ">=8.3.2" - hash: - sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 - manager: pip - name: imageio - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl - version: 2.22.2 - - category: main - dependencies: - attrs: ">=17.4.0" - pyrsistent: ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" - hash: - sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 - manager: pip - name: jsonschema - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl - version: 4.16.0 - - category: main - dependencies: - pyparsing: ">=2.0.2,<3.0.5 || >3.0.5" - hash: - sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 - manager: pip - name: packaging - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl - version: "21.3" - - category: main - dependencies: - numpy: ">=1.4" - six: "*" - hash: - sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 - manager: pip - name: patsy - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl - version: 0.5.3 - - category: main - dependencies: - numpy: ">=1.11.1" - hash: - sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 - manager: pip - name: pynrrd - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl - version: 0.4.3 - - category: main - dependencies: - six: ">=1.5" - hash: - sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 - manager: pip - name: python-dateutil - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl - version: 2.8.2 - - category: main - dependencies: - numpy: ">=1.17.3" - hash: - sha256: 6437af3ddf083118c26d8f97ab43b0724b956c9f958e9ea788659f6a2834ba93 - manager: pip - name: pywavelets - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/6e/d4/008dceeb95fafcf141f39393bdfc10921d0b62a325c2794ac533195a1eb3/PyWavelets-1.4.1.tar.gz - version: 1.4.1 - - category: main - dependencies: - certifi: ">=2017.4.17" - charset-normalizer: ">=2,<3" - idna: ">=2.5,<4" - urllib3: ">=1.21.1,<1.27" - hash: - sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 - manager: pip - name: requests - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl - version: 2.28.1 - - category: main - dependencies: - ruamel.yaml.clib: ">=0.2.6" - hash: - sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 - manager: pip - name: ruamel.yaml - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl - version: 0.17.21 - - category: main - dependencies: - numpy: ">=1.18.5,<1.26.0" - hash: - sha256: d644a64e174c16cb4b2e41dfea6af722053e83d066da7343f333a54dae9bc31c - manager: pip - name: scipy - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/59/ef/d54d17c36b46a9b8f6e1d4bf039b7f7ad236504cfb13cf1872caec9cbeaa/scipy-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl - version: 1.9.3 - - category: main - dependencies: - greenlet: "!=0.4.17" - hash: - sha256: 177e41914c476ed1e1b77fd05966ea88c094053e17a85303c4ce007f88eff363 - manager: pip - name: sqlalchemy - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/e4/56/8ea85eaab7d93b58f9c213ad8fc5882838189a29fc8cc401d80710a12969/SQLAlchemy-1.4.42.tar.gz - version: 1.4.42 - - category: main - dependencies: - colorama: "*" - hash: - sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 - manager: pip - name: tqdm - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl - version: 4.64.1 - - category: main - dependencies: - idna: ">=2.0" - multidict: ">=4.0" - hash: - sha256: 6afb336e23a793cd3b6476c30f030a0d4c7539cd81649683b5e0c1b0ab0bf350 - manager: pip - name: yarl - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/c8/a7/1a92f1049acd7f8fe122b5c78bd135b1a606414109b6cd43de696a5c4dfc/yarl-1.8.1-cp39-cp39-macosx_10_9_x86_64.whl - version: 1.8.1 - - category: main - dependencies: - async-timeout: ">=3.0,<4.0" - attrs: ">=17.3.0" - chardet: ">=2.0,<4.0" - multidict: ">=4.5,<7.0" - typing-extensions: ">=3.6.5" - yarl: ">=1.0,<2.0" - hash: - sha256: 5d84ecc73141d0a0d61ece0742bb7ff5751b0657dab8405f899d3ceb104cc7de - manager: pip - name: aiohttp - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/7a/95/eb60aaad7943e18c9d091de93c9b0b5ed40aa67c7d5e3c5ee9b36f100a38/aiohttp-3.7.4.tar.gz - version: 3.7.4 - - category: main - dependencies: - jmespath: ">=0.7.1,<1.0.0" - python-dateutil: ">=2.1,<3.0.0" - urllib3: ">=1.25.4,<1.27" - hash: - sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b - manager: pip - name: botocore - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl - version: 1.20.112 - - category: main - dependencies: - packaging: ">=17.0" - hash: - sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 - manager: pip - name: marshmallow - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl - version: 3.18.0 - - category: main - dependencies: - cycler: ">=0.10" - kiwisolver: ">=1.0.1" - numpy: ">=1.16" - pillow: ">=6.2.0" - pyparsing: ">=2.2.1" - python-dateutil: ">=2.7" - hash: - sha256: b26535b9de85326e6958cdef720ecd10bcf74a3f4371bf9a7e5b2e659c17e153 - manager: pip - name: matplotlib - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/69/0e/e0a6b89396946f84f9bd7bcf270b260f5108e9f2659db9f03168047046ae/matplotlib-3.4.2-cp39-cp39-macosx_10_9_x86_64.whl - version: 3.4.2 - - category: main - dependencies: - numpy: ">=1.13.3" - packaging: "*" - hash: - sha256: 5c660dea90935b963db9529d963493c40fabb2343684b52083fb86b2547d60c8 - manager: pip - name: numexpr - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/02/f8/a33223787909f5ec010ec5b6a1c9bb5c8ac5dfcefc21c1e744492f9551a8/numexpr-2.8.3-cp39-cp39-macosx_10_9_x86_64.whl - version: 2.8.3 - - category: main - dependencies: - numpy: ">=1.20.3" - python-dateutil: ">=2.8.1" - pytz: ">=2020.1" - hash: - sha256: e675f8fe9aa6c418dc8d3aac0087b5294c1a4527f1eacf9fe5ea671685285454 - manager: pip - name: pandas - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/12/51/dd4bd8d43f7f21086b99fed461e91eaf4fdac48dea3028f4b3aef87dffdc/pandas-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl - version: 1.5.1 - - category: main - dependencies: - requests: ">=2.0.1,<3.0.0" - hash: - sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 - manager: pip - name: requests-toolbelt - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl - version: 0.10.1 - - category: main - dependencies: - distro: "*" - packaging: "*" - hash: - sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 - manager: pip - name: scikit-build - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl - version: 0.15.0 - - category: main - dependencies: - marshmallow: ">=3.0.0,<4.0" - numpy: "*" - pyyaml: "*" - hash: - sha256: 38cceff1d3bb4ecf0eebb2a6ea46b99c418e9bd94b5acaec95d9307731360bbc - manager: pip - name: argschema - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/e9/43/91c96e0b69f86c7076989ef97bc1687ed427ddacd1dd1c7010b5c330d611/argschema-3.0.4.tar.gz - version: 3.0.4 - - category: main - dependencies: - h5py: ">=2.10,<4" - jsonschema: ">=2.6.0,<5" - numpy: ">=1.16,<1.24" - pandas: ">=1.0.5,<2" - ruamel.yaml: ">=0.16,<1" - scipy: ">=1.1,<2" - hash: - sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d - manager: pip - name: hdmf - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl - version: 3.4.6 - - category: main - dependencies: - botocore: ">=1.12.36,<2.0a.0" - hash: - sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 - manager: pip - name: s3transfer - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl - version: 0.3.7 - - category: main - dependencies: - imageio: ">=2.3.0" - matplotlib: ">=2.0.0,<3.0.0 || >3.0.0" - networkx: ">=2.0" - pillow: ">=4.3.0" - pywavelets: ">=0.4.0" - scipy: ">=0.19.0" - hash: - sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c - manager: pip - name: scikit-image - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz - version: 0.16.2 - - category: main - dependencies: - matplotlib: ">=3.1,<3.6.1 || >3.6.1" - numpy: ">=1.17" - pandas: ">=0.25" - hash: - sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 - manager: pip - name: seaborn - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl - version: 0.12.1 - - category: main - dependencies: - numpy: ">=1.17" - pandas: ">=0.25" - patsy: ">=0.5.2" - scipy: ">=1.3" - hash: - sha256: f2efc02011b7240a9e851acd76ab81150a07d35c97021cb0517887539a328f8a - manager: pip - name: statsmodels - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/9e/5e/4a2ade283411d1f46d6f8dd5fe951b9152062d55a20750cd5d4b556322bf/statsmodels-0.13.0.tar.gz - version: 0.13.0 - - category: main - dependencies: - numexpr: ">=2.6.2" - numpy: ">=1.9.3" - hash: - sha256: 49a972b8a7c27a8a173aeb05f67acb45fe608b64cd8e9fa667c0962a60b71b49 - manager: pip - name: tables - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/2b/32/847ee3f521aae6a0be380d923a736162d698586f444df1ac24b98c65025c/tables-3.6.1.tar.gz - version: 3.6.1 - - category: main - dependencies: - numpy: ">=1.15" - pandas: ">=0.25" - hash: - sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d - manager: pip - name: xarray - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl - version: 0.15.1 - - category: main - dependencies: - botocore: ">=1.20.21,<1.21.0" - jmespath: ">=0.7.1,<1.0.0" - s3transfer: ">=0.3.0,<0.4.0" - hash: - sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 - manager: pip - name: boto3 - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl - version: 1.17.21 - - category: main - dependencies: - h5py: ">=2.10,<4" - hdmf: ">=3.4.2,<4" - numpy: ">=1.16,<1.24" - pandas: ">=1.1.5,<2" - python-dateutil: ">=2.7.3,<3" - hash: - sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f - manager: pip - name: pynwb - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl - version: 2.2.0 - - category: main - dependencies: - pynwb: ">=1.1.2" - hash: - sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af - manager: pip - name: ndx-events - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl - version: 0.2.0 - - category: main - dependencies: - aiohttp: 3.7.4 - argschema: ">=3.0.1,<4.0.0" - boto3: 1.17.21 - cachetools: ">=4.2.1,<5.0.0" - future: ">=0.14.3,<1.0.0" - glymur: 0.8.19 - h5py: "*" - hdmf: ">=2.5.8" - jinja2: ">=3.0.0" - matplotlib: ">=1.4.3,<3.4.3" - ndx-events: <=0.2.0 - nest-asyncio: "*" - numpy: "*" - pandas: ">=1.1.5" - psycopg2-binary: ">=2.7,<3.0.0" - pynrrd: ">=0.2.1,<1.0.0" - pynwb: "*" - requests: <3.0.0 - requests-toolbelt: <1.0.0 - scikit-build: <1.0.0 - scikit-image: ">=0.14.0,<0.17.0" - scipy: ">=1.4.0,<2.0.0" - seaborn: <1.0.0 - semver: "*" - simpleitk: ">=2.0.2,<3.0.0" - simplejson: ">=3.10.0,<4.0.0" - six: ">=1.9.0,<2.0.0" - sqlalchemy: "*" - statsmodels: <=0.13.0 - tables: ">=3.6.0,<3.7.0" - tqdm: ">=4.27" - xarray: <0.16.0 - hash: - sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 - manager: pip - name: allensdk - optional: false - platform: osx-64 - source: null - url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl - version: 2.13.6 - - category: main - dependencies: {} - hash: - md5: fc76ace7b94fb1f694988ab1b14dd248 - sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 - manager: conda - name: bzip2 - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 - version: 1.0.8 - - category: main - dependencies: {} - hash: - md5: 5dd04dad345af4f1e8f3f0d5afc03b67 - sha256: 44036b92da867c9a3fdf51a5c1837e3c6fbc2be83536361df628fbcdcd7fdf59 - manager: conda - name: c-ares - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.18.1-h3422bc3_0.tar.bz2 - version: 1.18.1 - - category: main - dependencies: {} - hash: - md5: 5911a50099ce7b46f7f32e90dd4adffa - sha256: de523ce2a7037367f5f6f2389ca064bc22c2cb88f1ed808c44bd3f57c70bf733 - manager: conda - name: ca-certificates - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2022.9.24-h4653dfc_0.tar.bz2 - version: 2022.9.24 - - category: main - dependencies: {} - hash: - md5: a0a531df6bf6663607dc77722ae522d6 - sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f - manager: conda - name: fenics-ufcx - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 - version: 0.5.0 - - category: main - dependencies: {} - hash: - md5: 716c4b72ff3808ade65748fd9b49cc44 - sha256: 8e199c6956fad3abcbe9a1468c6219d9e95b64b898e9cf009b82d669c3bfdaf6 - manager: conda - name: libcxx - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-14.0.6-h2692d47_0.tar.bz2 - version: 14.0.6 - - category: main - dependencies: {} - hash: - md5: 566dbf70fe79eacdb3c3d3d195a27f55 - sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c - manager: conda - name: libev - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 - version: "4.33" - - category: main - dependencies: {} - hash: - md5: 086914b672be056eb70fd4285b6783b6 - sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca - manager: conda - name: libffi - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - version: 3.4.2 - - category: main - dependencies: {} - hash: - md5: 90859688dbca4735b74c02af14c4c793 - sha256: 1d95fe5e5e6a0700669aab454b2a32f97289c9ed8d1f7667c2ba98327a6f05bc - manager: conda - name: libsodium - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 - version: 1.0.18 - - category: main - dependencies: {} - hash: - md5: 780852dc54c4c07e64b276a97f89c162 - sha256: a1bf4a1c107838fea4570a7f1750306d65d84fcf2913d4e0d30b4db785e8f223 - manager: conda - name: libzlib - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2 - version: 1.2.13 - - category: main - dependencies: {} - hash: - md5: e30710831eca6b207a037c465d98777c - sha256: 00d0eedaa20ad8d83fbebe121a67eaa293dcc6699d06857af675c3f7d9716317 - manager: conda - name: llvm-openmp - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-14.0.4-hd125106_0.tar.bz2 - version: 14.0.4 - - category: main - dependencies: {} - hash: - md5: f77d9809ca7c6b8482a66685d4cf55c9 - sha256: 8ae894d76a3ae38da97f1af7503695274ee4bf6d5c0bb0b06dcdcdb4993c46d5 - manager: conda - name: metis - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/metis-5.1.0-h9f76cd9_1006.tar.bz2 - version: 5.1.0 - - category: main - dependencies: {} - hash: - md5: cb269c879b1ac5e5ab62a3c17528c40f - sha256: 7051ff40ca1208c06db24f8bf5cf72ee7ad03891e7fd365c3f7a4190938ae83a - manager: conda - name: mpi - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/mpi-1.0-openmpi.tar.bz2 - version: "1.0" - - category: main - dependencies: {} - hash: - md5: ceec43d6d4207011f4f1edc0e683fc3a - sha256: c3f5bd27bdaad52f12354c03f56db151b5a991dd67ff99184f0f12195d563c6e - manager: conda - name: mumps-include - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/mumps-include-5.2.1-hce30654_11.tar.bz2 - version: 5.2.1 - - category: main - dependencies: {} - hash: - md5: db86e5a978380a13f5559f97afdfe99d - sha256: 50ba7c13dd7d05569e7caa98a13a3684450f8547b4965a1e86b54e2f1240debe - manager: conda - name: ncurses - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.3-h07bb92c_1.tar.bz2 - version: "6.3" - - category: main - dependencies: {} - hash: - md5: b6bd89cf71494c41a181cac13cc5a8ea - sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 - manager: conda - name: tzdata - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 - version: 2022e - - category: main - dependencies: {} - hash: - md5: 39c6b54e94014701dd157f4f576ed211 - sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec - manager: conda - name: xz - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - version: 5.2.6 - - category: main - dependencies: {} - hash: - md5: 4bb3f014845110883a3c5ee811fd84b4 - sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 - manager: conda - name: yaml - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - version: 0.2.5 - - category: main - dependencies: - libcxx: ">=11.0.0" - hash: - md5: f8140773b6ca51bf32feec9b4290a8c5 - sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 - manager: conda - name: gmp - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2 - version: 6.2.1 - - category: main - dependencies: - libcxx: ">=12.0.1" - hash: - md5: 5fbe318a6be2e8d0f9b0b0c730a62748 - sha256: 303b558da70167473e4fa5f9a12c547217061c930c13ca3f982d55922437606e - manager: conda - name: icu - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-70.1-h6b3803e_0.tar.bz2 - version: "70.1" - - category: main - dependencies: - ncurses: ">=6.2,<7.0.0a0" - hash: - md5: 30e4362988a2623e9eb34337b83e01f9 - sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca - manager: conda - name: libedit - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - version: 3.1.20191231 - - category: main - dependencies: - llvm-openmp: ">=8.0.0" - hash: - md5: bdbfca46b391ce865243312e92b0b231 - sha256: 0d0cd386b6c3628b2144b90a8936f51dc931dd739a0dce62876d87e5cd751926 - manager: conda - name: libgfortran5 - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-11.3.0-hdaf2cc0_25.tar.bz2 - version: 11.3.0 - - category: main - dependencies: - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: bbeca54ede0a21405ae1ba6026d78d33 - sha256: 7ddb168b4064618fb06976b2fd51ebcadfb52f478a1eb7c6d6d6442470a6099b - manager: conda - name: libpng - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.38-h76d750c_0.tar.bz2 - version: 1.6.38 - - category: main - dependencies: - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: bc447b47695c18c7e018fe47f24c16a0 - sha256: fac23992c2943210443c2128db5ca8bba979687d5dc4158ced93dfb42d956228 - manager: conda - name: libsqlite - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.39.4-h76d750c_0.tar.bz2 - version: 3.39.4 - - category: main - dependencies: - libcxx: ">=11.1.0" - hash: - md5: 074b9beb2e563515c0dd46229b18d521 - sha256: 00941ba659571e2618c86f1463e9ad91d87e5ca36c807d633d527328ebc9803f - manager: conda - name: lz4-c - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.3-hbdafb3b_1.tar.bz2 - version: 1.9.3 - - category: main - dependencies: - ca-certificates: "" - hash: - md5: 09d751ab09102f7a27761110d07cab1a - sha256: c8e0af58b9d8671dbf88994203e0f0c39ba42e66f8f9c840c62ae341ea503a9f - manager: conda - name: openssl - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.0.5-h03a7124_2.tar.bz2 - version: 3.0.5 - - category: main - dependencies: - libcxx: ">=11.1.0" - hash: - md5: ae2de80a2e9bb244c8e728ad8e431e35 - sha256: d772be20bbd2cdaaa6da9a2562dadd2e8dc06614c494616eae7c57045600be14 - manager: conda - name: pugixml - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pugixml-1.11.4-hbdafb3b_0.tar.bz2 - version: 1.11.4 - - category: main - dependencies: - ncurses: ">=6.3,<7.0a0" - hash: - md5: dc790f296d94409efb3f22af84ee968d - sha256: 2d2a65fcdd91361ea7e40c03eeec18ff7a453c32f6589a1fce64717f6cd7c7b6 - manager: conda - name: readline - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.1.2-h46ed386_0.tar.bz2 - version: 8.1.2 - - category: main - dependencies: - libcxx: ">=13.0.1" - hash: - md5: e19070f6d27330d35b1849ab2b74c1d3 - sha256: 3652e81fe9b2551190142d49e21ede0f25110e07f5a0d01ddfe5fd42afd79caa - manager: conda - name: snappy - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.9-h39c3846_1.tar.bz2 - version: 1.1.9 - - category: main - dependencies: - libcxx: ">=14.0.4" - hash: - md5: 8aba7bb5ad0e715fcbfe0ab1a76fa4f7 - sha256: 28ecc13196723f2737be264a0122025f19b4ad943f8b3d24fc846d3f05b09c61 - manager: conda - name: tbb - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-2021.6.0-hffc8910_0.tar.bz2 - version: 2021.6.0 - - category: main - dependencies: - libzlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 2cb3d18eac154109107f093860bd545f - sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 - manager: conda - name: tk - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2 - version: 8.6.12 - - category: main - dependencies: - libcxx: ">=11.1.0" - hash: - md5: 47181387a02df900fedf6c05e41c10d8 - sha256: 52c6a6e16f88a78b262691ffa3da0d88400fc6c9031bb2e078d98f27523e4369 - manager: conda - name: xtl - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/xtl-0.7.4-hc021e02_0.tar.bz2 - version: 0.7.4 - - category: main - dependencies: - libcxx: ">=11.1.0" - libsodium: ">=1.0.18,<1.0.19.0a0" - hash: - md5: 49132c08da6545dc68351ff8b659ac8e - sha256: b65624f1e22f095223462807c417001b18ec17ef33a3c7065a19429f4cd42193 - manager: conda - name: zeromq - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.4-hbdafb3b_1.tar.bz2 - version: 4.3.4 - - category: main - dependencies: - libcxx: ">=11.1.0" - llvm-openmp: ">=11.1.0" - hash: - md5: f9a794ccbdab88d0ca11d85b0b200b55 - sha256: ddf86af5220d4780b9860a4e62f72ecbd9d76155b02d2b706f67107048758954 - manager: conda - name: zfp - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/zfp-0.5.5-hcfdfaf5_8.tar.bz2 - version: 0.5.5 - - category: main - dependencies: - libzlib: 1.2.13 h03a7124_4 - hash: - md5: 34161cff4e29cc45e536abf2f13fd6b4 - sha256: 48844c5c911e2ef69571d6ef7181dcfae68df296c546662cb54057baed008949 - manager: conda - name: zlib - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h03a7124_4.tar.bz2 - version: 1.2.13 - - category: main - dependencies: - libcxx: ">=13.0.1" - libzlib: ">=1.2.12,<1.3.0a0" - hash: - md5: dc4c74dcc759058dae2324144f336de0 - sha256: 664f7e6b46cfff6022504eafdef26b4ac0f388fa39d682e64da9a7dbfe33fb56 - manager: conda - name: zstd - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-h8128057_4.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libcxx: ">=13.0.1" - libzlib: ">=1.2.11,<1.3.0a0" - lz4-c: ">=1.9.3,<1.10.0a0" - snappy: ">=1.1.9,<2.0a0" - zstd: ">=1.5.2,<1.6.0a0" - hash: - md5: 809c13415c8c034ba12a4e490f77efae - sha256: 4fc6aa467fb8a09a3a5a9cb72d6edfe145f38c27e861a3a26cfb361f6bc977d6 - manager: conda - name: blosc - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.1-hd414afc_3.tar.bz2 - version: 1.21.1 - - category: main - dependencies: - bzip2: ">=1.0.8,<2.0a0" - icu: ">=70.1,<71.0a0" - libcxx: ">=12.0.1" - libzlib: ">=1.2.11,<1.3.0a0" - xz: ">=5.2.5,<5.3.0a0" - zstd: ">=1.5.2,<1.6.0a0" - hash: - md5: 98e303e926ba602d75b7494f0f4e66ac - sha256: 2151e6512b621e0e92ca5c0d9c32ae4be4f9a7cd69e34ae46b69dfaf1720fbee - manager: conda - name: boost-cpp - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/boost-cpp-1.74.0-h1cb353e_8.tar.bz2 - version: 1.74.0 - - category: main - dependencies: - libcxx: ">=12.0.1" - libedit: ">=3.1.20191231,<4.0a0" - openssl: ">=3.0.0,<4.0a0" - hash: - md5: 71b2e0b0cec360c0831c6cfd5b3b9ca9 - sha256: 3805616886693727a4933cf2f7e0e49f7b4239f61d7ac9fd014f3079693fdca6 - manager: conda - name: krb5 - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.19.3-he492e65_0.tar.bz2 - version: 1.19.3 - - category: main - dependencies: - libgfortran5: "" - hash: - md5: cc4376ee8e97be18874c75599f51cd8f - sha256: 779ca107a061a1f4ed6fc6fc3167e062da7d04ae45f64e668c3b9a46db329fa1 - manager: conda - name: libgfortran - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-11_3_0_hd922786_25.tar.bz2 - version: 5.0.0 - - category: main - dependencies: - c-ares: ">=1.18.1,<2.0a0" - libcxx: ">=13.0.1" - libev: ">=4.33,<4.34.0a0" - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: ff1984469f4d776e155fc48191a42a54 - sha256: afd84ccecce67fe11ac11f9c75454925e52d7f0feaacd11a3bed5caeba1ac439 - manager: conda - name: libnghttp2 - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.47.0-h519802c_1.tar.bz2 - version: 1.47.0 - - category: main - dependencies: - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: 1ffa4340e73809db5a7516cb1a7425a7 - sha256: fbaa668831c56d88824c9ea42aba7b9c9ffd26cdd9bec850120bf2aff0d9e282 - manager: conda - name: libssh2 - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.10.0-h7a5bd25_3.tar.bz2 - version: 1.10.0 - - category: main - dependencies: - gmp: ">=6.2.0,<7.0a0" - hash: - md5: c37f296f76cfb61d4f91613da93789e6 - sha256: bf44598be1fe9f6310ac0ebcd91dd6b51d4d19fe085c96b4da8297f2fc868f86 - manager: conda - name: mpfr - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.1.0-h6d7a090_1.tar.bz2 - version: 4.1.0 - - category: main - dependencies: - libzlib: ">=1.2.11,<1.3.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: 84c5fcd61737aa430b8d31bb6e2c011b - sha256: 2794ecda7de53c115bbaaceff9195dff95a4e5412766ac83189e6b411652ec3e - manager: conda - name: scotch - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/scotch-6.0.9-h7537618_2.tar.bz2 - version: 6.0.9 - - category: main - dependencies: - libsqlite: 3.39.4 h76d750c_0 - libzlib: ">=1.2.12,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - readline: ">=8.1.2,<9.0a0" - hash: - md5: e11a77ec381e452e9fb9e16a36faeada - sha256: 625341afc9ce5db1c05b2abb83f0c3a898c50f242b3de4254369ce37e9aa112d - manager: conda - name: sqlite - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.39.4-h2229b38_0.tar.bz2 - version: 3.39.4 - - category: main - dependencies: - libcxx: ">=13.0.1" - xtl: ">=0.7,<0.8" - hash: - md5: 78a1c2ea5802d712461933a9ef0acd98 - sha256: b06b8634a7f8eb621d573f2ef15c7ca52cf9ea75a41b15dc36ead88edd4d2dd4 - manager: conda - name: xtensor - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/xtensor-0.24.3-hf86a087_0.tar.bz2 - version: 0.24.3 - - category: main - dependencies: - krb5: ">=1.19.3,<1.20.0a0" - libnghttp2: ">=1.47.0,<2.0a0" - libssh2: ">=1.10.0,<2.0a0" - libzlib: ">=1.2.12,<1.3.0a0" - openssl: ">=3.0.5,<4.0a0" - hash: - md5: e302a40e394d2e5df6a21fd12ebfd3ea - sha256: 15a70affa0f5f145b0bfb85c7c5e9df04ab6445e668dcf14bc139ec8ca6c421b - manager: conda - name: libcurl - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.85.0-h1c293e1_0.tar.bz2 - version: 7.85.0 - - category: main - dependencies: - libgfortran: 5.* - libgfortran5: ">=11.3.0" - llvm-openmp: ">=14.0.4" - hash: - md5: 2a980a5d8cc34ce70d339b983f9920de - sha256: 92e341be106c00adf1f1757ec9f9586a3848af94b434554c75dd7c5023f84ea2 - manager: conda - name: libopenblas - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.21-openmp_hc731615_3.tar.bz2 - version: 0.3.21 - - category: main - dependencies: - libcxx: ">=14.0.4" - libgfortran: 5.* - libgfortran5: ">=11.3.0" - libzlib: ">=1.2.12,<1.3.0a0" - mpi: 1.0 openmpi - zlib: ">=1.2.12,<1.3.0a0" - hash: - md5: c7474eedb4991a2d01d6d443d2eab040 - sha256: ba9a4c079967afdf08071235c3414626107c04cf29d0a49dd3ee9dfec046d811 - manager: conda - name: openmpi - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/openmpi-4.1.4-h4e676fc_101.tar.bz2 - version: 4.1.4 - - category: main - dependencies: - bzip2: ">=1.0.8,<2.0a0" - libffi: ">=3.4.2,<3.5.0a0" - libzlib: ">=1.2.11,<1.3.0a0" - ncurses: ">=6.3,<7.0a0" - openssl: ">=3.0.3,<4.0a0" - readline: ">=8.1,<9.0a0" - sqlite: ">=3.38.5,<4.0a0" - tk: ">=8.6.12,<8.7.0a0" - tzdata: "" - xz: ">=5.2.5,<5.3.0a0" - hash: - md5: b931e71d282753be679bd2602840f902 - sha256: a0aeaefa0aa5f076f30353a2b75a52c08180e8e3e5e85eb5d4d659b54c2b5868 - manager: conda - name: python - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.13-h96fcbfb_0_cpython.tar.bz2 - version: 3.9.13 - - category: main - dependencies: - python: ">=3.6" - hash: - md5: 576d629e47797577ab0f1b351297ef4a - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 - manager: conda - name: cached_property - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libcxx: ">=14.0.4" - libgfortran: 5.* - libgfortran5: ">=11.3.0" - llvm-openmp: ">=14.0.4" - openmpi: ">=4.1.4,<5.0a0" - hash: - md5: 76802a70f0264d9074b6e471ba09a0ee - sha256: bb1e778aa1541b9129157815be024a694d75d9bde5f032ff27c1712bd778bc26 - manager: conda - name: fftw - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-mpi_openmpi_haef8dc3_5.tar.bz2 - version: 3.3.10 - - category: main - dependencies: - libcurl: ">=7.81.0,<8.0a0" - libcxx: ">=12.0.1" - libgfortran: 5.* - libgfortran5: ">=11.0.1.dev0" - libzlib: ">=1.2.11,<1.3.0a0" - openmpi: ">=4.1,<4.2.0a0" - openssl: ">=3.0.0,<4.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: add9e00d1991f2651d29a6ea4c7221f8 - sha256: e4223e2b8e2cbeb205c1985eeb647ff9f946a6ae93cfef4441be11ee7ad332b3 - manager: conda - name: hdf5 - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.1-mpi_openmpi_hd5758bf_4.tar.bz2 - version: 1.12.1 - - category: main - dependencies: - libopenblas: ">=0.3.21,<1.0a0" - hash: - md5: 53d6d5097f0d62e24db8c1979a21102e - sha256: 17dd67806f7e31981a1ac8abb63ed004eac416a1061c7737028f5af269430fa6 - manager: conda - name: libblas - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-16_osxarm64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - libcxx: ">=11.1.0" - openmpi: ">=4.1,<4.2.0a0" - hash: - md5: 2121f0f7dd3fe744d804d23e090ab757 - sha256: 05b08fc1bb367fcd9ff23be61fb644653edcbee3ff41cfe4d0c28c642d9d9c51 - manager: conda - name: parmetis - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/parmetis-4.0.3-h6eb5794_1005.tar.bz2 - version: 4.0.3 - - category: main - dependencies: - libzlib: ">=1.2.11,<1.3.0a0" - openmpi: ">=4.1.2,<5.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - zlib: ">=1.2.11,<1.3.0a0" - hash: - md5: b38bc5638ce2e4429aca1aaf2f6962c0 - sha256: f48429d1e1bd2e0a179bc3a67fabb49783d7fa6d7dec5590d35ddeda50141713 - manager: conda - name: ptscotch - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ptscotch-6.0.9-h1aec651_2.tar.bz2 - version: 6.0.9 - - category: main - dependencies: - python: ==2.7.*|>=3.4 - hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc - manager: conda - name: pycparser - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 - version: "2.21" - - category: main - dependencies: - python: 3.9.* - hash: - md5: ba3082b5441b482d5cfe328d4e7ba0bf - sha256: f611edf23ff71035043f2e81190b83bd4ee1e36fe3041b675aef2373dc33f8c4 - manager: conda - name: python_abi - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.9-2_cp39.tar.bz2 - version: "3.9" - - category: main - dependencies: - python: ">=3.7" - hash: - md5: 462466739c786f85f9ed555f87099fe1 - sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 - manager: conda - name: setuptools - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 - version: 65.5.0 - - category: main - dependencies: - python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4" - hash: - md5: 1ca02aaf78d9c70d9a81a3bed5752022 - sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc - manager: conda - name: wheel - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 - version: 0.37.1 - - category: main - dependencies: - cached_property: ">=1.5.2,<1.5.3.0a0" - hash: - md5: 9b347a7ec10940d3f7941ff6c460b551 - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 - manager: conda - name: cached-property - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - version: 1.5.2 - - category: main - dependencies: - libffi: ">=3.4,<4.0a0" - pycparser: "" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: 2840b36d4a8a4b44641e2e16d4385e3d - sha256: 101f242fc52633feea32eec07dceb910dc436876ab0f8c4c40ef9a252a5c716d - manager: conda - name: cffi - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py39h7e6b969_1.tar.bz2 - version: 1.15.1 - - category: main - dependencies: - blosc: ">=1.21.1,<2.0a0" - bzip2: ">=1.0.8,<2.0a0" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" - libcxx: ">=14.0.4" - libffi: ">=3.4.2,<3.5.0a0" - libpng: ">=1.6.37,<1.7.0a0" - openmpi: ">=4.1.4,<5.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - zeromq: ">=4.3.4,<4.4.0a0" - zfp: ">=0.5.5,<1.0a0" - hash: - md5: 7db9dbd6b279ba6ea17b5f03e6ce9a2c - sha256: fad4661c49ccf2c6a6433ff01efbc1be459b5e27f5a14ad74c5fba3227510d97 - manager: conda - name: libadios2 - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libadios2-2.8.3-mpi_openmpi_h23701fd_1.tar.bz2 - version: 2.8.3 - - category: main - dependencies: - libblas: 3.9.0 16_osxarm64_openblas - hash: - md5: c7cfc18378f00d3faf7f8a9a2553be3c - sha256: 99a04c6a273e76b01ace4f3a8f333b96a76b7351a155aaeba179e283da5c264e - manager: conda - name: libcblas - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-16_osxarm64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - libblas: 3.9.0 16_osxarm64_openblas - hash: - md5: 52d270c579bfca986d6cdd81eb5ed6e7 - sha256: 87204cb0ff22f260b3aa5fc7c938157b471eb2bd287acf1ba7e61a67f86ba959 - manager: conda - name: liblapack - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-16_osxarm64_openblas.tar.bz2 - version: 3.9.0 - - category: main - dependencies: - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: ae025855aea4c081f3c7a13dba04bbc8 - sha256: b490180f30ab238a619be6d8295d75d70a465a25fa5985e8d6dddbda8985ce19 - manager: conda - name: markupsafe - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.1-py39hb18efdd_1.tar.bz2 - version: 2.1.1 - - category: main - dependencies: - openmpi: ">=4.1.4,<5.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: da3f0f16e0ea447a01a790efc5e936c4 - sha256: 9876f5e7e43965dc21865ac4c6a917d89705013670abae380532e68b91c35971 - manager: conda - name: mpi4py - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/mpi4py-3.1.3-py39h72a80d3_2.tar.bz2 - version: 3.1.3 - - category: main - dependencies: - python: ">=3.7" - setuptools: "" - wheel: "" - hash: - md5: 6f4c6de9fed2a9bd8043283611b09587 - sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 - manager: conda - name: pip - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 - version: "22.3" - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=14.0.4" - liblapack: ">=3.9.0,<4.0a0" - hash: - md5: 74ef49028b2cb16912d08a1537a0f44f - sha256: 0c338f2f1f4b00a83078f6d5be8d28a97e365b5e7e6e236a8a5ce42285697839 - manager: conda - name: fenics-libbasix - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-libbasix-0.5.1-hf081368_0.tar.bz2 - version: 0.5.1 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcxx: ">=13.0.1" - liblapack: ">=3.9.0,<4.0a0" - openmpi: ">=4.1.4,<5.0a0" - hash: - md5: 7cb597e443b4134e25d41f9a390e65ae - sha256: c59d32b056bc0c1ad6f6383e0321844c4caaf4e3e208a7cc9e249e2e5e4d8722 - manager: conda - name: hypre - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/hypre-2.25.0-mpi_openmpi_hcc3ba7f_0.tar.bz2 - version: 2.25.0 - - category: main - dependencies: - markupsafe: ">=2.0" - python: ">=3.7" - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - manager: conda - name: jinja2 - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 - version: 3.1.2 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=14.0.4" - liblapack: ">=3.9.0,<4.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: a1cbf9a921507b5056c2ef648bc0b659 - sha256: 36f910a7f7d2829ef699f69969d376fc899fd69d682e9b51505530f46c00a0d7 - manager: conda - name: numpy - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.23.4-py39hefdcf20_0.tar.bz2 - version: 1.23.4 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libgfortran: 5.* - libgfortran5: ">=11.0.1.dev0" - liblapack: ">=3.9.0,<4.0a0" - openmpi: ">=4.1.2,<5.0a0" - hash: - md5: a453e2b40359e59e5d1d26b12697d062 - sha256: 963bf6115c9764861eeb0e5a74811904314e84a03b374da863ee51d68e02b5aa - manager: conda - name: scalapack - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/scalapack-2.2.0-h515df86_1.tar.bz2 - version: 2.2.0 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=11.1.0" - liblapack: ">=3.9.0,<4.0a0" - metis: ">=5.1.0,<5.2.0a0" - mpfr: ">=4.1.0,<5.0a0" - tbb: ">=2021.3.0" - hash: - md5: aa2b4cd2c3c870a5da51032c97952e8e - sha256: e0bf87e0d1d85a8b073f276194dcb38e41dab1be5198fbd742d86d37741e46d8 - manager: conda - name: suitesparse - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/suitesparse-5.10.1-h7cd81ec_1.tar.bz2 - version: 5.10.1 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libgfortran: 5.* - libgfortran5: ">=11.0.1.dev0" - hash: - md5: 563c35f95395ad5b986dc66239a938a9 - sha256: d959e26ec5f88bf4d1d51c5e21f0f4c77d4454a73ba0ad85f7d81c35556a02de - manager: conda - name: superlu - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/superlu-5.2.2-hc615359_0.tar.bz2 - version: 5.2.2 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcxx: ">=11.1.0" - libgfortran: 5.* - libgfortran5: ">=11.0.1.dev0" - liblapack: ">=3.9.0,<4.0a0" - llvm-openmp: ">=12.0.1" - metis: ">=5.1.0,<5.2.0a0" - openmpi: ">=4.1.2,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - hash: - md5: c0494f680f281c921d9baa9bf0da4f89 - sha256: 4ef231739110f8d3cc04b9b6e82ad51acfa70e541f772f18cbbff51115306678 - manager: conda - name: superlu_dist - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/superlu_dist-7.2.0-hfdb8677_0.tar.bz2 - version: 7.2.0 - - category: main - dependencies: - fenics-libbasix: 0.5.1 hf081368_0 - libcxx: ">=14.0.4" - numpy: "" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: 6e108a67f6c05559c5d83796e59e0226 - sha256: 20a01b9e2636225cf7a51e16fa482ef71dd9e1d4fc2cdbeb4b11e069dfc94309 - manager: conda - name: fenics-basix - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-basix-0.5.1-py39haaf3ac1_0.tar.bz2 - version: 0.5.1 - - category: main - dependencies: - numpy: "" - python: ">=3.7" - hash: - md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c - sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 - manager: conda - name: fenics-ufl - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 - version: 2022.2.0 - - category: main - dependencies: - cached-property: "" - hdf5: ">=1.12.1,<1.12.2.0a0" - numpy: ">=1.19.5,<2.0a0" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: 61830991b0c03c465ca4fa4070703adf - sha256: 36d47f3ca7a505ee5d696bd170fd70733be35faacd5edfec82eb8e707beb146c - manager: conda - name: h5py - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/h5py-3.6.0-nompi_py39hd982b79_100.tar.bz2 - version: 3.6.0 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libgfortran: 5.* - libgfortran5: ">=11.0.1.dev0" - liblapack: ">=3.9.0,<4.0a0" - metis: ">=5.1.0,<5.2.0a0" - mumps-include: 5.2.1 hce30654_11 - openmpi: ">=4.1.2,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - ptscotch: ">=6.0.9,<6.0.10.0a0" - scalapack: ">=2.2.0,<2.3.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - hash: - md5: 831fa94c4a8cdf5c839c87b4d6e547c2 - sha256: b77b6cdccc0d817e29088e259becd14ffeaf33ef79a6260011e3d409557fee92 - manager: conda - name: mumps-mpi - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/mumps-mpi-5.2.1-h51c74a9_11.tar.bz2 - version: 5.2.1 - - category: main - dependencies: - cffi: "" - fenics-basix: 0.5.* - fenics-ufl: 2022.2.* - numpy: "" - python: ">=3.7" - setuptools: "" - hash: - md5: 2dcc01a5199492d95b197d7265f5336a - sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 - manager: conda - name: fenics-ffcx - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 - version: 0.5.0 - - category: main - dependencies: - fftw: "* mpi_openmpi_*" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" - hypre: ">=2.25.0,<2.25.1.0a0" - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=13.0.1" - libgfortran: 5.* - libgfortran5: ">=11.0.1.dev0" - liblapack: ">=3.9.0,<4.0a0" - metis: ">=5.1.0,<5.2.0a0" - mumps-mpi: ">=5.2.1,<5.2.2.0a0" - openmpi: ">=4.1.4,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - ptscotch: ">=6.0.9,<6.0.10.0a0" - scalapack: ">=2.2.0,<2.3.0a0" - scotch: ">=6.0.9,<6.0.10.0a0" - suitesparse: ">=5.10.1,<5.10.2.0a0" - superlu: "" - superlu_dist: ">=7.1.1,<8.0a0" - yaml: ">=0.2.5,<0.3.0a0" - hash: - md5: 9ac30b7790133bf08fe4ef4d3490437e - sha256: 2483644bbbabe2985dff9d0bda8fc5f0662e76e8b93b6490ba4ba90e6fa333df - manager: conda - name: petsc - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/petsc-3.17.3-real_h5d98e65_100.tar.bz2 - version: 3.17.3 - - category: main - dependencies: - libgfortran: 5.* - libgfortran5: ">=11.0.1.dev0" - numpy: ">=1.19.5,<2.0a0" - openmpi: ">=4.1.4,<5.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - hash: - md5: b5b16834090ef3f38f05d5f16c21d245 - sha256: 1ccd8e98584b7ccdf1c6d8c335708a63ccaefa500872004d4a45eef51ffb50f7 - manager: conda - name: petsc4py - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/petsc4py-3.17.3-real_h275bb75_101.tar.bz2 - version: 3.17.3 - - category: main - dependencies: - libblas: ">=3.9.0,<4.0a0" - libcblas: ">=3.9.0,<4.0a0" - libcxx: ">=13.0.1" - libgfortran: 5.* - libgfortran5: ">=11.0.1.dev0" - liblapack: ">=3.9.0,<4.0a0" - openmpi: ">=4.1.4,<5.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - suitesparse: ">=5.10.1,<5.10.2.0a0" - hash: - md5: 370a5ace4fc55f63d566e4a884edc9e5 - sha256: 69840506327196bf20deccc80a241e654cac68199aedc6be815062824ee5dd49 - manager: conda - name: slepc - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/slepc-3.17.1-real_hcfedfd6_102.tar.bz2 - version: 3.17.1 - - category: main - dependencies: - boost-cpp: ">=1.74.0,<1.74.1.0a0" - fenics-libbasix: ">=0.5.1,<0.5.2.0a0" - fenics-ufcx: ">=0.5.0,<0.5.1.0a0" - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" - libadios2: ">=2.8.3,<2.8.4.0a0 mpi_openmpi_*" - libcxx: ">=14.0.4" - openmpi: ">=4.1.4,<5.0a0" - parmetis: ">=4.0.3,<4.1.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - ptscotch: ">=6.0.9,<6.0.10.0a0" - pugixml: ">=1.11.4,<1.12.0a0" - slepc: ">=3.17.1,<3.18.0a0 real_*" - xtensor: ">=0.24.3,<0.25.0a0" - hash: - md5: b79e84e821f09b3c2966d35925d7178b - sha256: 193dabb15ddbfc38d11a2846af6338a2fa193c3c17b8cfd687d793735ec45b9c - manager: conda - name: fenics-libdolfinx - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-libdolfinx-0.5.2-h1ff1027_100.tar.bz2 - version: 0.5.2 - - category: main - dependencies: - numpy: ">=1.19.5,<2.0a0" - openmpi: ">=4.1.4,<5.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - petsc4py: 3.17.* - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - slepc: ">=3.17.1,<3.18.0a0 real_*" - hash: - md5: 9678535ab574d7210098173fd050d10e - sha256: c95fa4ea68dcc6888e55067412c72e5530efeefcd2f819c0bca3dc5376906e1b - manager: conda - name: slepc4py - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/slepc4py-3.17.1-real_hbb689fd_103.tar.bz2 - version: 3.17.1 - - category: main - dependencies: - cffi: "" - fenics-basix: 0.5.* - fenics-ffcx: 0.5.* - fenics-libdolfinx: 0.5.2 h1ff1027_100 - fenics-ufl: 2022.2.* - hdf5: ">=1.12.1,<1.12.2.0a0 mpi_openmpi_*" - libcxx: ">=14.0.4" - mpi4py: "" - numpy: "" - openmpi: ">=4.1.4,<5.0a0" - petsc: ">=3.17.3,<3.18.0a0 real_*" - petsc4py: "" - python: ">=3.9,<3.10.0a0 *_cpython" - python_abi: 3.9.* *_cp39 - slepc: ">=3.17.1,<3.18.0a0 real_*" - slepc4py: "" - hash: - md5: 64f26edb132e39829dfef52d7eaf4b62 - sha256: 8ea44628532381d3930863089a22a70f542d40274afdd63af07f78220a3a70a4 - manager: conda - name: fenics-dolfinx - optional: false - platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-dolfinx-0.5.2-py39h1f1acac_100.tar.bz2 - version: 0.5.2 - - category: main - dependencies: {} - hash: - sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 - manager: pip - name: async-timeout - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl - version: 3.0.1 - - category: main - dependencies: {} - hash: - sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c - manager: pip - name: attrs - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl - version: 22.1.0 - - category: main - dependencies: {} - hash: - sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 - manager: pip - name: cachetools - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl - version: 4.2.4 - - category: main - dependencies: {} - hash: - sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 - manager: pip - name: certifi - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl - version: 2022.9.24 - - category: main - dependencies: {} - hash: - sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 - manager: pip - name: chardet - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl - version: 3.0.4 - - category: main - dependencies: {} - hash: - sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f - manager: pip - name: charset-normalizer - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl - version: 2.1.1 - - category: main - dependencies: {} - hash: - sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 - manager: pip - name: colorama - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - version: 0.4.6 - - category: main - dependencies: {} - hash: - sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 - manager: pip - name: cycler - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl - version: 0.11.0 - - category: main - dependencies: {} - hash: - sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff - manager: pip - name: distro - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl - version: 1.8.0 - - category: main - dependencies: {} - hash: - sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d - manager: pip - name: future - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz - version: 0.18.2 - - category: main - dependencies: {} - hash: - sha256: f5e09dc5c6e1796969fd4b775ea1417d70e49a5df29aaa8e5d10675d9e11872c - manager: pip - name: greenlet - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/ea/37/e54ce453b298e890f59dba3db32461579328a07d5b65e3eabf80f971c099/greenlet-1.1.3.post0.tar.gz - version: 1.1.3.post0 - - category: main - dependencies: {} - hash: - sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 - manager: pip - name: idna - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl - version: "3.4" - - category: main - dependencies: {} - hash: - sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f - manager: pip - name: jmespath - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl - version: 0.10.0 - - category: main - dependencies: {} - hash: - sha256: b533558eae785e33e8c148a8d9921692a9fe5aa516efbdff8606e7d87b9d5824 - manager: pip - name: kiwisolver - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/26/f3/1daa54509332dff966e1493fe0d5b573e0e11a56d301323ec6c667a53142/kiwisolver-1.4.4-cp39-cp39-macosx_11_0_arm64.whl - version: 1.4.4 - - category: main - dependencies: {} - hash: - sha256: a007b1638e148c3cfb6bf0bdc4f82776cef0ac487191d093cdc316905e504071 - manager: pip - name: multidict - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/98/16/7af490ccfe470dad4b3d28fc69b1f3b4cdfe0fd5e279b299e103edbb8505/multidict-6.0.2-cp39-cp39-macosx_11_0_arm64.whl - version: 6.0.2 - - category: main - dependencies: {} - hash: - sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 - manager: pip - name: nest-asyncio - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl - version: 1.5.6 - - category: main - dependencies: {} - hash: - sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d - manager: pip - name: networkx - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl - version: 2.8.7 - - category: main - dependencies: {} - hash: - sha256: 4ad2f835e0ad81d1689f1b7e3fbac7b01bb8777d5a985c8962bedee0cc6d43da - manager: pip - name: pillow - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/aa/bc/21097cd891dd2fa02f2b3d767e02e883e026482e59d29975d1bc30024aa3/Pillow-9.2.0-cp39-cp39-macosx_11_0_arm64.whl - version: 9.2.0 - - category: main - dependencies: {} - hash: - sha256: 9c38d3869238e9d3409239bc05bc27d6b7c99c2a460ea337d2814b35fb4fea1b - manager: pip - name: psycopg2-binary - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/63/db/67c2a94c3d89c48a2a4efc2029f6dc082faa3bc3dd14de49346c126c9600/psycopg2_binary-2.9.5-cp39-cp39-macosx_11_0_arm64.whl - version: 2.9.5 - - category: main - dependencies: {} - hash: - sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc - manager: pip - name: pyparsing - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl - version: 3.0.9 - - category: main - dependencies: {} - hash: - sha256: f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5 - manager: pip - name: pyrsistent - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/15/fa/64ed4c29d36df26906f03a1fb360056e3cbc063b00446f3663252bdd175a/pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl - version: 0.18.1 - - category: main - dependencies: {} - hash: - sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 - manager: pip - name: pytz - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl - version: "2022.5" - - category: main - dependencies: {} - hash: - sha256: e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174 - manager: pip - name: pyyaml - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/67/d4/b95266228a25ef5bd70984c08b4efce2c035a4baa5ccafa827b266e3dc36/PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl - version: "6.0" - - category: main - dependencies: {} - hash: - sha256: 1f08fd5a2bea9c4180db71678e850b995d2a5f4537be0e94557668cf0f5f9497 - manager: pip - name: ruamel.yaml.clib - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/d5/31/a3e6411947eb7a4f1c669f887e9e47d61a68f9d117f10c3c620296694a0b/ruamel.yaml.clib-0.2.7.tar.gz - version: 0.2.7 - - category: main - dependencies: {} - hash: - sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 - manager: pip - name: semver - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl - version: 2.13.0 - - category: main - dependencies: {} - hash: - sha256: a712f4b205a0c2bbd9bfbefbe27f83ad892904f6cf9e165644dec0fb2320c508 - manager: pip - name: simpleitk - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/30/02/521b1822c6a97cc8f1597e997dd4bee6461573e9c3fc1cf1dc584ddf68ee/SimpleITK-2.2.0-cp39-cp39-macosx_11_0_arm64.whl - version: 2.2.0 - - category: main - dependencies: {} - hash: - sha256: 5540fba2d437edaf4aa4fbb80f43f42a8334206ad1ad3b27aef577fd989f20d9 - manager: pip - name: simplejson - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/07/86/e206883709a2a02710b338fa6bc5bdbe3ac97ca7187e1539a10c06895803/simplejson-3.17.6-cp39-cp39-macosx_11_0_arm64.whl - version: 3.17.6 - - category: main - dependencies: {} - hash: - sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 - manager: pip - name: six - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl - version: 1.16.0 - - category: main - dependencies: {} - hash: - sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e - manager: pip - name: typing-extensions - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl - version: 4.4.0 - - category: main - dependencies: {} - hash: - sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 - manager: pip - name: urllib3 - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl - version: 1.26.12 - - category: main - dependencies: - numpy: ">=1.7.1" - hash: - sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 - manager: pip - name: glymur - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz - version: 0.8.19 - - category: main - dependencies: - numpy: "*" - pillow: ">=8.3.2" - hash: - sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 - manager: pip - name: imageio - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl - version: 2.22.2 - - category: main - dependencies: - attrs: ">=17.4.0" - pyrsistent: ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" - hash: - sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 - manager: pip - name: jsonschema - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl - version: 4.16.0 - - category: main - dependencies: - pyparsing: ">=2.0.2,<3.0.5 || >3.0.5" - hash: - sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 - manager: pip - name: packaging - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl - version: "21.3" - - category: main - dependencies: - numpy: ">=1.4" - six: "*" - hash: - sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 - manager: pip - name: patsy - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl - version: 0.5.3 - - category: main - dependencies: - numpy: ">=1.11.1" - hash: - sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 - manager: pip - name: pynrrd - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl - version: 0.4.3 - - category: main - dependencies: - six: ">=1.5" - hash: - sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 - manager: pip - name: python-dateutil - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl - version: 2.8.2 - - category: main - dependencies: - numpy: ">=1.17.3" - hash: - sha256: d0e56cd7a53aed3cceca91a04d62feb3a0aca6725b1912d29546c26f6ea90426 - manager: pip - name: pywavelets - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/a0/32/eeeaa4de640a84e2cc35c25aea289367059abce0cac84a9987b139a2a25f/PyWavelets-1.4.1-cp39-cp39-macosx_11_0_arm64.whl - version: 1.4.1 - - category: main - dependencies: - certifi: ">=2017.4.17" - charset-normalizer: ">=2,<3" - idna: ">=2.5,<4" - urllib3: ">=1.21.1,<1.27" - hash: - sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 - manager: pip - name: requests - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl - version: 2.28.1 - - category: main - dependencies: - ruamel.yaml.clib: ">=0.2.6" - hash: - sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 - manager: pip - name: ruamel.yaml - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl - version: 0.17.21 - - category: main - dependencies: - numpy: ">=1.18.5,<1.26.0" - hash: - sha256: fbc5c05c85c1a02be77b1ff591087c83bc44579c6d2bd9fb798bb64ea5e1a027 - manager: pip - name: scipy - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/0a/2e/44795c6398e24e45fa0bb61c3e98de1cfea567b1b51efd3751e2f7ff9720/scipy-1.9.3.tar.gz - version: 1.9.3 - - category: main - dependencies: - greenlet: "!=0.4.17" - hash: - sha256: 177e41914c476ed1e1b77fd05966ea88c094053e17a85303c4ce007f88eff363 - manager: pip - name: sqlalchemy - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/e4/56/8ea85eaab7d93b58f9c213ad8fc5882838189a29fc8cc401d80710a12969/SQLAlchemy-1.4.42.tar.gz - version: 1.4.42 - - category: main - dependencies: - colorama: "*" - hash: - sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 - manager: pip - name: tqdm - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl - version: 4.64.1 - - category: main - dependencies: - idna: ">=2.0" - multidict: ">=4.0" - hash: - sha256: 4c322cbaa4ed78a8aac89b2174a6df398faf50e5fc12c4c191c40c59d5e28357 - manager: pip - name: yarl - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/5e/6b/012f4874880fb40f09c794f62b79fc32291837797a5929914832ced2cdb3/yarl-1.8.1-cp39-cp39-macosx_11_0_arm64.whl - version: 1.8.1 - - category: main - dependencies: - async-timeout: ">=3.0,<4.0" - attrs: ">=17.3.0" - chardet: ">=2.0,<4.0" - multidict: ">=4.5,<7.0" - typing-extensions: ">=3.6.5" - yarl: ">=1.0,<2.0" - hash: - sha256: 5d84ecc73141d0a0d61ece0742bb7ff5751b0657dab8405f899d3ceb104cc7de - manager: pip - name: aiohttp - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/7a/95/eb60aaad7943e18c9d091de93c9b0b5ed40aa67c7d5e3c5ee9b36f100a38/aiohttp-3.7.4.tar.gz - version: 3.7.4 - - category: main - dependencies: - jmespath: ">=0.7.1,<1.0.0" - python-dateutil: ">=2.1,<3.0.0" - urllib3: ">=1.25.4,<1.27" - hash: - sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b - manager: pip - name: botocore - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl - version: 1.20.112 - - category: main - dependencies: - packaging: ">=17.0" - hash: - sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 - manager: pip - name: marshmallow - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl - version: 3.18.0 - - category: main - dependencies: - cycler: ">=0.10" - kiwisolver: ">=1.0.1" - numpy: ">=1.16" - pillow: ">=6.2.0" - pyparsing: ">=2.2.1" - python-dateutil: ">=2.7" - hash: - sha256: d8d994cefdff9aaba45166eb3de4f5211adb4accac85cbf97137e98f26ea0219 - manager: pip - name: matplotlib - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/60/d3/286925802edaeb0b8834425ad97c9564ff679eb4208a184533969aa5fc29/matplotlib-3.4.2.tar.gz - version: 3.4.2 - - category: main - dependencies: - numpy: ">=1.13.3" - packaging: "*" - hash: - sha256: 052ec3a55cc1ccc447580ee5b828b2bd0bc14fea0756ddb81d9617b5472c77b5 - manager: pip - name: numexpr - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/bf/ca/add8876b0db7f3e9c9239d4b126947e830c7e05c17b67f065a75c14495d2/numexpr-2.8.3-cp39-cp39-macosx_11_0_arm64.whl - version: 2.8.3 - - category: main - dependencies: - numpy: ">=1.20.3" - python-dateutil: ">=2.8.1" - pytz: ">=2020.1" - hash: - sha256: 04e51b01d5192499390c0015630975f57836cc95c7411415b499b599b05c0c96 - manager: pip - name: pandas - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/6e/fe/e66020dc13c052be66795794c2590b460dfb87904d7834e2138f36626e74/pandas-1.5.1-cp39-cp39-macosx_11_0_arm64.whl - version: 1.5.1 - - category: main - dependencies: - requests: ">=2.0.1,<3.0.0" - hash: - sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 - manager: pip - name: requests-toolbelt - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl - version: 0.10.1 - - category: main - dependencies: - distro: "*" - packaging: "*" - hash: - sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 - manager: pip - name: scikit-build - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl - version: 0.15.0 - - category: main - dependencies: - marshmallow: ">=3.0.0,<4.0" - numpy: "*" - pyyaml: "*" - hash: - sha256: 38cceff1d3bb4ecf0eebb2a6ea46b99c418e9bd94b5acaec95d9307731360bbc - manager: pip - name: argschema - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/e9/43/91c96e0b69f86c7076989ef97bc1687ed427ddacd1dd1c7010b5c330d611/argschema-3.0.4.tar.gz - version: 3.0.4 - - category: main - dependencies: - h5py: ">=2.10,<4" - jsonschema: ">=2.6.0,<5" - numpy: ">=1.16,<1.24" - pandas: ">=1.0.5,<2" - ruamel.yaml: ">=0.16,<1" - scipy: ">=1.1,<2" - hash: - sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d - manager: pip - name: hdmf - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl - version: 3.4.6 - - category: main - dependencies: - botocore: ">=1.12.36,<2.0a.0" - hash: - sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 - manager: pip - name: s3transfer - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl - version: 0.3.7 - - category: main - dependencies: - imageio: ">=2.3.0" - matplotlib: ">=2.0.0,<3.0.0 || >3.0.0" - networkx: ">=2.0" - pillow: ">=4.3.0" - pywavelets: ">=0.4.0" - scipy: ">=0.19.0" - hash: - sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c - manager: pip - name: scikit-image - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz - version: 0.16.2 - - category: main - dependencies: - matplotlib: ">=3.1,<3.6.1 || >3.6.1" - numpy: ">=1.17" - pandas: ">=0.25" - hash: - sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 - manager: pip - name: seaborn - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl - version: 0.12.1 - - category: main - dependencies: - numpy: ">=1.17" - pandas: ">=0.25" - patsy: ">=0.5.2" - scipy: ">=1.3" - hash: - sha256: f2efc02011b7240a9e851acd76ab81150a07d35c97021cb0517887539a328f8a - manager: pip - name: statsmodels - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/9e/5e/4a2ade283411d1f46d6f8dd5fe951b9152062d55a20750cd5d4b556322bf/statsmodels-0.13.0.tar.gz - version: 0.13.0 - - category: main - dependencies: - numexpr: ">=2.6.2" - numpy: ">=1.9.3" - hash: - sha256: 49a972b8a7c27a8a173aeb05f67acb45fe608b64cd8e9fa667c0962a60b71b49 - manager: pip - name: tables - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/2b/32/847ee3f521aae6a0be380d923a736162d698586f444df1ac24b98c65025c/tables-3.6.1.tar.gz - version: 3.6.1 - - category: main - dependencies: - numpy: ">=1.15" - pandas: ">=0.25" - hash: - sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d - manager: pip - name: xarray - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl - version: 0.15.1 - - category: main - dependencies: - botocore: ">=1.20.21,<1.21.0" - jmespath: ">=0.7.1,<1.0.0" - s3transfer: ">=0.3.0,<0.4.0" - hash: - sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 - manager: pip - name: boto3 - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl - version: 1.17.21 - - category: main - dependencies: - h5py: ">=2.10,<4" - hdmf: ">=3.4.2,<4" - numpy: ">=1.16,<1.24" - pandas: ">=1.1.5,<2" - python-dateutil: ">=2.7.3,<3" - hash: - sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f - manager: pip - name: pynwb - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl - version: 2.2.0 - - category: main - dependencies: - pynwb: ">=1.1.2" - hash: - sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af - manager: pip - name: ndx-events - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl - version: 0.2.0 - - category: main - dependencies: - aiohttp: 3.7.4 - argschema: ">=3.0.1,<4.0.0" - boto3: 1.17.21 - cachetools: ">=4.2.1,<5.0.0" - future: ">=0.14.3,<1.0.0" - glymur: 0.8.19 - h5py: "*" - hdmf: ">=2.5.8" - jinja2: ">=3.0.0" - matplotlib: ">=1.4.3,<3.4.3" - ndx-events: <=0.2.0 - nest-asyncio: "*" - numpy: "*" - pandas: ">=1.1.5" - psycopg2-binary: ">=2.7,<3.0.0" - pynrrd: ">=0.2.1,<1.0.0" - pynwb: "*" - requests: <3.0.0 - requests-toolbelt: <1.0.0 - scikit-build: <1.0.0 - scikit-image: ">=0.14.0,<0.17.0" - scipy: ">=1.4.0,<2.0.0" - seaborn: <1.0.0 - semver: "*" - simpleitk: ">=2.0.2,<3.0.0" - simplejson: ">=3.10.0,<4.0.0" - six: ">=1.9.0,<2.0.0" - sqlalchemy: "*" - statsmodels: <=0.13.0 - tables: ">=3.6.0,<3.7.0" - tqdm: ">=4.27" - xarray: <0.16.0 - hash: - sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 - manager: pip - name: allensdk - optional: false - platform: osx-arm64 - source: null - url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl - version: 2.13.6 +- category: main + dependencies: {} + hash: + md5: d7c89558ba9fa0495403155b64376d81 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + manager: conda + name: _libgcc_mutex + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + version: '0.1' +- category: main + dependencies: {} + hash: + md5: 41e4e87062433e283696cf384f952ef6 + sha256: 058355034667e77d15389700f6b2364cc74efce0af63a418eacc1ce252458942 + manager: conda + name: ca-certificates + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.9.24-ha878542_0.tar.bz2 + version: 2022.9.24 +- category: main + dependencies: {} + hash: + md5: a0a531df6bf6663607dc77722ae522d6 + sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f + manager: conda + name: fenics-ufcx + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 + version: 0.5.0 +- category: main + dependencies: {} + hash: + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + manager: conda + name: font-ttf-dejavu-sans-mono + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + version: '2.37' +- category: main + dependencies: {} + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + manager: conda + name: font-ttf-inconsolata + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + version: '3.000' +- category: main + dependencies: {} + hash: + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + manager: conda + name: font-ttf-source-code-pro + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + version: '2.038' +- category: main + dependencies: {} + hash: + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + manager: conda + name: font-ttf-ubuntu + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + version: '0.83' +- category: main + dependencies: {} + hash: + md5: 5dd5127afd710f91f6a75821bac0a4f0 + sha256: c9f33acc0f1095bd4e7a2b577dfa41fc3fef3713b3975e8467a0fbed188fe6f4 + manager: conda + name: kernel-headers_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_15.tar.bz2 + version: 2.6.32 +- category: main + dependencies: {} + hash: + md5: c2719e2faa7bd7076d3a4b52271e5622 + sha256: a41140cb2a85048eba89dcf6cc8267e673bf40ce2108534eda1531b9f939fe82 + manager: conda + name: ld_impl_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.39-hc81fddc_0.tar.bz2 + version: '2.39' +- category: main + dependencies: {} + hash: + md5: b41d6540a78ba2518655eebcb0e41e20 + sha256: a211a8a80846eb0096eeaf7012984b4c58f0c3c8229f6b4f8c58f36cd2d2a3c2 + manager: conda + name: libgcc-devel_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-10.4.0-hd38fd1e_19.tar.bz2 + version: 10.4.0 +- category: main + dependencies: {} + hash: + md5: 164b4b1acaedc47ee7e658ae6b308ca3 + sha256: 03ea784edd12037dc3a7a0078ff3f9c3383feabb34d5ba910bb2fd7a21a2d961 + manager: conda + name: libgfortran5 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.tar.bz2 + version: 12.2.0 +- category: main + dependencies: {} + hash: + md5: 9367571bf3218f968a47c010618a9715 + sha256: 0ddb167fe0d9d26fd0d5c9cf9afdae91de5c54da43806a21783092edd1d00540 + manager: conda + name: libstdcxx-devel_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-10.4.0-hd38fd1e_19.tar.bz2 + version: 10.4.0 +- category: main + dependencies: {} + hash: + md5: 1030b1f38c129f2634eae026f704fe60 + sha256: 0289e6a7b9a5249161a3967909e12dcfb4ab4475cdede984635d3fb65c606f08 + manager: conda + name: libstdcxx-ng + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2 + version: 12.2.0 +- category: main + dependencies: {} + hash: + md5: c1fcff3417b5a22bbc4cf6e8c23648cf + sha256: cbe8f3bff576ce067141dc34811a6c5c9b56d0da50f28b3cdcc1d6d9661d484c + manager: conda + name: mpi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-mpich.tar.bz2 + version: '1.0' +- category: main + dependencies: {} + hash: + md5: 765196257c11b54dc52522d2fcafdd69 + sha256: 583922c671eb90e576a96432fe1439bc5eb46f88c4a0a4867fba39653c09c6de + manager: conda + name: mumps-include + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.2.1-ha770c72_11.tar.bz2 + version: 5.2.1 +- category: main + dependencies: {} + hash: + md5: abc27381c4f005da588cffa1f76403ee + sha256: ccd2857627c0f6e903a917b99e60860c0a2b7dc553a32cf7c1ab55f0af99ec11 + manager: conda + name: poppler-data + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.11-hd8ed1ab_0.tar.bz2 + version: 0.4.11 +- category: main + dependencies: {} + hash: + md5: b6bd89cf71494c41a181cac13cc5a8ea + sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 + manager: conda + name: tzdata + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 + version: 2022e +- category: main + dependencies: {} + hash: + md5: 7b60818913cd7d5179ff4cfdd693e52a + sha256: d647d1f45d359f60f9b3b7dbd8a38b779bdf74f4c70852f8b0e6812632873ea9 + manager: conda + name: utfcpp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-3.2.1-ha770c72_0.tar.bz2 + version: 3.2.1 +- category: main + dependencies: + font-ttf-dejavu-sans-mono: '' + font-ttf-inconsolata: '' + font-ttf-source-code-pro: '' + font-ttf-ubuntu: '' + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + manager: conda + name: fonts-conda-forge + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + version: '1' +- category: main + dependencies: + libgfortran5: 12.2.0 h337968e_19 + hash: + md5: cd7a806282c16e1f2d39a7e80d3a3e0d + sha256: c7d061f323e80fbc09564179073d8af303bf69b953b0caddcf79b47e352c746f + manager: conda + name: libgfortran-ng + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2 + version: 12.2.0 +- category: main + dependencies: + _libgcc_mutex: 0.1 conda_forge + hash: + md5: cedcee7c064c01c403f962c9e8d3c373 + sha256: 81a76d20cfdee9fe0728b93ef057ba93494fd1450d42bc3717af4e468235661e + manager: conda + name: libgomp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2 + version: 12.2.0 +- category: main + dependencies: + kernel-headers_linux-64: 2.6.32 he073ed8_15 + hash: + md5: 66c192522eacf5bb763568b4e415d133 + sha256: 8498c73b60a7ea6faedf36204ec5a339c78d430fa838860f2b9d5d3a1c354eff + manager: conda + name: sysroot_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_15.tar.bz2 + version: '2.12' +- category: main + dependencies: + _libgcc_mutex: 0.1 conda_forge + libgomp: '>=7.5.0' + hash: + md5: 73aaf86a425cc6e73fcf236a5a46396d + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + manager: conda + name: _openmp_mutex + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + version: '4.5' +- category: main + dependencies: + ld_impl_linux-64: 2.39 hc81fddc_0 + sysroot_linux-64: '' + hash: + md5: e9d3f31bc4814b5b09aa0504124a4adc + sha256: ad65b436b95d9071aff0700ddc565737929fa711758bd6f8bebca45d27e08778 + manager: conda + name: binutils_impl_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.39-h6ceecb4_0.tar.bz2 + version: '2.39' +- category: main + dependencies: + fonts-conda-forge: '' + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + manager: conda + name: fonts-conda-ecosystem + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + version: '1' +- category: main + dependencies: + binutils_impl_linux-64: 2.39.* + sysroot_linux-64: '' + hash: + md5: b7d26ab37be17ea4c366a97138684bcb + sha256: acf554585c011689ce6c58472200545c9512dce1b9dfc5e853f25771c0c3e12e + manager: conda + name: binutils_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.39-h5fc0e48_11.tar.bz2 + version: '2.39' +- category: main + dependencies: + _libgcc_mutex: 0.1 conda_forge + _openmp_mutex: '>=4.5' + hash: + md5: e4c94f80aef025c17ab0828cd85ef535 + sha256: f3899c26824cee023f1e360bd0859b0e149e2b3e8b1668bc6dd04bfc70dcd659 + manager: conda + name: libgcc-ng + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2 + version: 12.2.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 4a826cd983be6c8fff07a64b6d2079e7 + sha256: b2ea5be6ca4f16d62c7de3df62155b106f2009d9c317db187c47267abc1cb03d + manager: conda + name: alsa-lib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.7.2-h166bdaf_0.tar.bz2 + version: 1.2.7.2 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: a08150fd2298460cd1fcccf626305642 + sha256: ed05f72ffa891e3c6a507eac6f0221c85c1f0611491328cd098308060740891c + manager: conda + name: aom + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.5.0-h27087fc_0.tar.bz2 + version: 3.5.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: d9c69a24ad678ffce24c6543a0176b00 + sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 + manager: conda + name: attr + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 + version: 2.5.1 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: a1fd65c7ccbf10880423d82bca54eb54 + sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa + manager: conda + name: bzip2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 + version: 1.0.8 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + hash: + md5: f26ef8098fab1f719c91eb760d63381a + sha256: ee735e60d2cf68e5635df17847e97b505a752985d10581d2438203e7c0f44c15 + manager: conda + name: c-ares + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.18.1-h7f98852_0.tar.bz2 + version: 1.18.1 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 5a7e0df95874e7ffe8b7840907058563 + sha256: 5c9002ce3eed2b8f5023287e4a1be733b413a2f3d8e6495ac2fd2cdcc6f1677a + manager: conda + name: double-conversion + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.2.0-h27087fc_1.tar.bz2 + version: 3.2.0 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: 61af675be1ebd2ab75ebc70b8687b84d + sha256: f3ab736a612088dc99b1ff70ddd92e331020c3b3514a21293d15eed902def775 + manager: conda + name: eigen + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h4bd325d_0.tar.bz2 + version: 3.4.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: c4fbad8d4bddeb3c085f18cbf97fbfad + sha256: b44db0b92ae926b3fbbcd57c179fceb64fa11a9f9d09082e03be58b74dcad832 + manager: conda + name: expat + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-h27087fc_0.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 897e772a157faf3330d72dd291486f62 + sha256: 26045196e00b5787276c60ff83acfa8808cae550a20832f11104069e5f7f3f05 + manager: conda + name: freexl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/freexl-1.0.6-h166bdaf_1.tar.bz2 + version: 1.0.6 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: a583d0bc9a85c48e8b07a588d1ac8a80 + sha256: eaee8645a203291cf12ddf15d274e535c1a5292d9bce4f76f888d171f1523754 + manager: conda + name: geos + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.11.0-h27087fc_0.tar.bz2 + version: 3.11.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 14947d8770185e5153fdd04d4673ed37 + sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a + manager: conda + name: gettext + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2 + version: 0.21.1 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: 626e68ae9cc5912d6adb79d318cf962d + sha256: 6ecacdbdf5cd9d2b46211b15a2f7db428ea5edd0cae9be89ccd837fc7b35643f + manager: conda + name: giflib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h36c2ea0_2.tar.bz2 + version: 5.2.1 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + libstdcxx-ng: '>=7.5.0' + hash: + md5: b94cf2db16066b242ebd26db2facbd56 + sha256: 07a5319e1ac54fe5d38f50c60f7485af7f830b036da56957d0bfb7558a886198 + manager: conda + name: gmp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2 + version: 6.2.1 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + hash: + md5: 87473a15119779e021c314249d4b4aed + sha256: 1d7950f3be4637ab915d886304e57731d39a41ab705ffc95c4681655c459374a + manager: conda + name: icu + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2 + version: '70.1' +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: ee8b844357a0946870901c7c6f418268 + sha256: 0110ee167e8fe386f9019f98757e299a0c42dc6ccdcce161c9bb552b79e459a3 + manager: conda + name: jpeg + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h166bdaf_2.tar.bz2 + version: 9e +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + hash: + md5: 0e2bca6857cb73acec30387fef7c3142 + sha256: 9ef1471c6ac050f274c344452b461c9db967f6abd569d4e6b71b6d974c5fd42f + manager: conda + name: json-c + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.16-hc379101_0.tar.bz2 + version: '0.16' +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: ae7f50dd1e78c7e78b5d2cf7062e559d + sha256: 7a5a6cdfc17849bb8000cc31b91c22f1fe0e087dfc3fd59ecc4d3b64cf0ad772 + manager: conda + name: jsoncpp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.5-h4bd325d_1.tar.bz2 + version: 1.9.5 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 8e787b08fe19986d99d034b839df2961 + sha256: 3ffc19c2ca272e6d5b8edc7cfc5bb71763dfdfa1810dd4b8820cc6b212ecbd95 + manager: conda + name: jxrlib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-h7f98852_2.tar.bz2 + version: '1.1' +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + hash: + md5: 30186d27e2c9fa62b45fb1476b7200e3 + sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb + manager: conda + name: keyutils + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + version: 1.6.1 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: a8832b479f93521a9e7b5b743803be51 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + manager: conda + name: lame + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + version: '3.100' +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 76bbff344f0134279f225174e9064c8f + sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + manager: conda + name: lerc + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + version: 4.0.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 9194c9bf9428035a05352d031462eae4 + sha256: ddc961a36d498aaafd5b71078836ad5dd247cc6ba7924157f3801a2f09b77b14 + manager: conda + name: libbrotlicommon + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: 3f3258d8f841fbac63b36b75bdac1afd + sha256: 21fac1012ff05b131d4b5d284003dbbe7b5c4c652aa9e401b46279ed5a784372 + manager: conda + name: libdb + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2 + version: 6.2.32 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: fc84a0446e4e4fb882e78d786cfb9734 + sha256: 6f7cbc9347964e7f9697bde98a8fb68e0ed926888b3116474b1224eaa92209dc + manager: conda + name: libdeflate + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.14-h166bdaf_0.tar.bz2 + version: '1.14' +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3 + sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 + manager: conda + name: libev + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2 + version: '4.33' +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + hash: + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e + manager: conda + name: libffi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + version: 3.4.2 +- category: main + dependencies: + libgcc-ng: '>=7.3.0' + libstdcxx-ng: '>=7.3.0' + hash: + md5: 8208602aec4826053c116552369a394c + sha256: 5bd76151994096908231712e1539bd18372bb66fedc1d28dfd36fe086e8f58e4 + manager: conda + name: libglu + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-he1b5a44_1001.tar.bz2 + version: 9.0.0 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + hash: + md5: b62b52da46c39ee2bc3c162ac7f1804d + sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 + manager: conda + name: libiconv + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2 + version: '1.17' +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + hash: + md5: 39b1328babf85c7c3a61636d9cd50206 + sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad + manager: conda + name: libnsl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2 + version: 2.0.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 6e8cc2173440d77708196c5b93771680 + sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 + manager: conda + name: libogg + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 + version: 1.3.4 +- category: main + dependencies: + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.4.0' + hash: + md5: 8c5963a49b6035c40646a763293fbb35 + sha256: 018372af663987265cb3ca8f37ac8c22b5f39219f65a0c162b056a30af11bba0 + manager: conda + name: libopenblas + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2 + version: 0.3.21 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 15345e56d527b330e1cacbdf58676e8f + sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f + manager: conda + name: libopus + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 + version: 1.3.1 +- category: main + dependencies: + libgcc-ng: '>=7.3.0' + hash: + md5: b38752a755b9c64f07651fcc0084f878 + sha256: 700d9bbd04b72fed67214c66ebd05fccc319affc98178e15590481ff21b9afd5 + manager: conda + name: libpciaccess + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.16-h516909a_0.tar.bz2 + version: '0.16' +- category: main + dependencies: + libgcc-ng: '>=10.4.0' + hash: + md5: b068ad132a509367bc9e5a200a639429 + sha256: 3f47701d3031ada2de72d4b85eaec9007fd6f95ed20e517ad8f55b792e0cb434 + manager: conda + name: libsanitizer + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-10.4.0-h5246dfb_19.tar.bz2 + version: 10.4.0 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: c3788462a6fbddafdb413a9f9053e58d + sha256: 53da0c8b79659df7b53eebdb80783503ce72fb4b10ed6e9e05cc0e9e4207a130 + manager: conda + name: libsodium + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2 + version: 1.0.18 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: d87fbe9c0ff589e802ff13872980bfd9 + sha256: 588fbd0c11bc44e354365d5f836183216a4ed17d680b565ff416a93b839f1a8b + manager: conda + name: libspatialindex + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libspatialindex-1.9.3-h9c3ff4c_4.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 93840744a8552e9ebf6bb1a5dffc125a + sha256: 5bfeada0e1c6ec2574afe2d17cdbc39994d693a41431338a6cb9dfa7c4d7bfc8 + manager: conda + name: libtasn1 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2 + version: 4.19.0 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + hash: + md5: 16e143a1ed4b4fd169536373957f6fee + sha256: eadbb80c922dce355c0f8f7fc560f20f61263245799d076a1d5251d147d0d250 + manager: conda + name: libtool + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libtool-2.4.6-h9c3ff4c_1008.tar.bz2 + version: 2.4.6 +- category: main + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + hash: + md5: 2fbd69c19564f7609d92ad887d11df98 + sha256: 56be92d20a97b4410d5b5049a01a9fc5b70a7f98285ee7e09b9ac847219d2610 + manager: conda + name: libudev1 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libudev1-251-h166bdaf_0.tar.bz2 + version: '251' +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 7245a044b4a1980ed83196176b78b73a + sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d + manager: conda + name: libunistring + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2 + version: 0.9.10 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 772d69f030955d9646d3d0eaf21d859d + sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3 + manager: conda + name: libuuid + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.32.1-h7f98852_1000.tar.bz2 + version: 2.32.1 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: ebe18273eebadbb4dfb13f1062e054e9 + sha256: e2c2a0bb21db1724af90cab5aa1fb3096db4c11df1ab85178571dcb8395e7a15 + manager: conda + name: libvpx + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.11.0-h9c3ff4c_3.tar.bz2 + version: 1.11.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: ac2ccf7323d21f2994e4d1f5da664f37 + sha256: 221f2e138dd264b7394b88f08884d93825d38800a51415059e813c02467abfd1 + manager: conda + name: libwebp-base + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.2.4-h166bdaf_0.tar.bz2 + version: 1.2.4 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: f3f9de449d32ca9b9c66a22863c96f41 + sha256: 22f3663bcf294d349327e60e464a51cd59664a71b8ed70c28a9f512d10bc77dd + manager: conda + name: libzlib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2 + version: 1.2.13 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: fbe97e8fa6f275d7c76a09e795adc3e6 + sha256: 56313fe4e602319682d4ea05c0ed3c5c45fc79884a5896f2cb7436b15d6987f9 + manager: conda + name: lz4-c + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.3-h9c3ff4c_1.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: d099b812378b1e133c12e3b75167d83a + sha256: 51874bbe38bceafc89158e276f202aecdf9171e0f3c946948ea2457611c4831a + manager: conda + name: metis + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-h58526e2_1006.tar.bz2 + version: 5.1.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 2fe2a839394ef3a1825a5e5e296060bc + sha256: 75f164e4ea955eca41186cbf595395a4b9b592ea8c4367b5284f690151198bb1 + manager: conda + name: mpg123 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.30.2-h27087fc_1.tar.bz2 + version: 1.30.2 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + mpi: 1.0 mpich + hash: + md5: 36a36fe04b932d4b327e7e81c5c43696 + sha256: 8df20ce96df5a019a2e60cd9cb04105c18a12ee5557d7e008e32a339a2672980 + manager: conda + name: mpich + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mpich-4.0.2-h846660c_100.tar.bz2 + version: 4.0.2 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + hash: + md5: 4acfc691e64342b9dae57cf2adc63238 + sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065 + manager: conda + name: ncurses + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2 + version: '6.3' +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 3cb2c7df59990bd37c2ce27fd906de68 + sha256: 49c569a69608eee784e815179a70c6ae4d088dac42b7df999044f68058d593bb + manager: conda + name: nettle + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.8.1-hc379101_1.tar.bz2 + version: 3.8.1 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: 29ded371806431b0499aaee146abfc3e + sha256: 987835de2261507bcea0dcb61ed0668e4622fc55ad9d84ec1fc3d72ab2bd94e9 + manager: conda + name: nspr + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.32-h9c3ff4c_1.tar.bz2 + version: '4.32' +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 6b6b81f9aed8c30003fba6382828e9bc + sha256: a7ad2c00cff0a0a6f6c516be890732d310bd5bd069b34abbaa49ee024a83b168 + manager: conda + name: openh264 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.3.1-h27087fc_1.tar.bz2 + version: 2.3.1 +- category: main + dependencies: + ca-certificates: '' + libgcc-ng: '>=12' + hash: + md5: d2fc6255f8740352d7241714f0d074f2 + sha256: 18b5eb3d1680ca592ff7fffb965db9acd6a0a1df3fea24651ef52f3c8c9e4186 + manager: conda + name: openssl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-1.1.1q-h166bdaf_1.tar.bz2 + version: 1.1.1q +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: c05d1820a6d34ff07aaaab7a9b7eddaa + sha256: 8f35c244b1631a4f31fb1d66ab6e1d9bfac0ca9b679deced1112c7225b3ad138 + manager: conda + name: pcre + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2 + version: '8.45' +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: 660e72c82f2e75a6b3fe6a6e75c79f19 + sha256: 6a0630fff84b5a683af6185a6c67adc8bdfa2043047fcb251add0d352ef60e79 + manager: conda + name: pixman + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2 + version: 0.40.0 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: 22dad4df6e8630e8dff2428f6f6a7036 + sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff + manager: conda + name: pthread-stubs + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2 + version: '0.4' +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: 3b6d9e8331a6d0b93f66fa1ead8dffb6 + sha256: bed0023f5c8ee31d8341a5991697da5b0bdbd1bff70c99ed844d6be639a0571e + manager: conda + name: pugixml + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.11.4-h9c3ff4c_0.tar.bz2 + version: 1.11.4 +- category: main + dependencies: + libgcc-ng: '>=7.3.0' + libstdcxx-ng: '>=7.3.0' + hash: + md5: 37d4fdbb92d573c7d6ab6de74a666dc4 + sha256: 73b74a21dcaafc4a9f43e7f4295ead29d0f3ef13790bad69351942b77294aad8 + manager: conda + name: rapidjson + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0-he1b5a44_1002.tar.bz2 + version: 1.1.0 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + hash: + md5: 418adb239781d9690afc6b1a05514c37 + sha256: 7e324caf1922a94e4c3432854624d25ef1fa361866981584725863c840fde5d2 + manager: conda + name: snappy + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.9-hbd366e4_1.tar.bz2 + version: 1.1.9 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: a688ac1b5c12dfbc3d8dbf30f1bedb19 + sha256: 91497c4d52bff38fae2fe7f128f7580a78991ccca2847a0ce53b419398bf078b + manager: conda + name: svt-av1 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-1.3.0-h27087fc_0.tar.bz2 + version: 1.3.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 9f37c25c6fd4edb1d090eac27fed7d49 + sha256: 461eb15626d60aa665013ef5875da041c6e9ffb78cdf3f839377435dabd6cd1d + manager: conda + name: tbb + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.6.0-h924138e_1.tar.bz2 + version: 2021.6.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: d83ab8f6570bbf0be104948fb2d0f79e + sha256: fb15e3a3228edcfde002f527ee2e9e0b5e1f15091521de1aa8429a4357138af8 + manager: conda + name: tzcode + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/tzcode-2022e-h166bdaf_0.tar.bz2 + version: 2022e +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 6c99772d483f566d59e25037fea2c4b1 + sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5 + manager: conda + name: x264 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 + version: 1!164.3095 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + hash: + md5: e7f6ed84d4623d52ee581325c1587a6b + sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0 + manager: conda + name: x265 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 + version: '3.5' +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 4b230e8381279d76131116660f5a241a + sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 + manager: conda + name: xorg-kbproto + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2 + version: 1.0.7 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: d6b0b50b49eccfe0be0373be628be0f3 + sha256: f15ce1dff16823888bcc2be1738aadcb36699be1e2dd2afa347794c7ec6c1587 + manager: conda + name: xorg-libice + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2 + version: 1.0.10 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: bf6f803a544f26ebbdc3bfff272eb179 + sha256: 9e9b70c24527289ac7ae31925d1eb3b0c1e9a78cb7b8f58a3110cc8bbfe51c26 + manager: conda + name: xorg-libxau + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.9-h7f98852_0.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: be93aabceefa2fac576e971aef407908 + sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 + manager: conda + name: xorg-libxdmcp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2 + version: 1.1.3 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 06feff3d2634e3097ce2fe681474b534 + sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 + manager: conda + name: xorg-renderproto + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2 + version: 0.11.1 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 1e15f6ad85a7d743a2ac68dae6c82b98 + sha256: d45c4d1c8372c546711eb3863c76d899d03a67c3edb3b5c2c46c9492814cbe03 + manager: conda + name: xorg-xextproto + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h7f98852_1002.tar.bz2 + version: 7.3.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: b4a4381d54784606820704f7b5f05a15 + sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d + manager: conda + name: xorg-xproto + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2 + version: 7.0.31 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: 468853b5c7010095bcfdde7b5e4503a2 + sha256: a08ee3d5aa77ce22eca1904ff33434cfa86b68c61840576908365301962b1515 + manager: conda + name: xtl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xtl-0.7.4-h4bd325d_0.tar.bz2 + version: 0.7.4 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 2161070d867d1b1204ea749c8eec4ef0 + sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 + manager: conda + name: xz + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + version: 5.2.6 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + hash: + md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae + sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 + manager: conda + name: yaml + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + version: 0.2.5 +- category: main + dependencies: + _openmp_mutex: '>=4.5' + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: f12900b1e1e0527c0e9a4e922a5de2bf + sha256: 22f90931ae2d6f084107cd5a5cac5d065df7d23150356ffc56eba50260562174 + manager: conda + name: zfp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zfp-0.5.5-h9c3ff4c_8.tar.bz2 + version: 0.5.5 +- category: main + dependencies: + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.4.0' + libstdcxx-ng: '>=12' + mpich: '>=4.0.2,<5.0a0' + hash: + md5: 6d535bfb2b3f13e24c8d407d097aa0b5 + sha256: 39f87f6b8c065ea6fe8f3f729d98f5155bc5aacef8b665c5acf9de8c3fa6dcc1 + manager: conda + name: fftw + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-mpi_mpich_h3e343da_5.tar.bz2 + version: 3.3.10 +- category: main + dependencies: + binutils_impl_linux-64: '>=2.39' + libgcc-devel_linux-64: 10.4.0 hd38fd1e_19 + libgcc-ng: '>=10.4.0' + libgomp: '>=10.4.0' + libsanitizer: 10.4.0 h5246dfb_19 + libstdcxx-ng: '>=10.4.0' + sysroot_linux-64: '' + hash: + md5: a086547de4cee874e72d5a43230372ec + sha256: 8e209a1a9d7e13f8134b622d5bb5c0e2150749ebba52c4362bbd503f08a1cf71 + manager: conda + name: gcc_impl_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-10.4.0-h5231bdf_19.tar.bz2 + version: 10.4.0 +- category: main + dependencies: + jpeg: '>=9e,<10a' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: dd3e1941dd06f64cb88647d2f7ff8aaa + sha256: 4177bc6596fa98a15c17e528abb4c8062406f93e64820303f420035a6ad252e5 + manager: conda + name: hdf4 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h9772cbc_4.tar.bz2 + version: 4.2.15 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 9b7f16978b58ab4294effcee16bfde5a + sha256: ddd1826678b1fd392dbfe6a2e44147f9e49c45b05f061f454f67497bd2a70ee1 + manager: conda + name: imath + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.5-h6239696_0.tar.bz2 + version: 3.1.5 +- category: main + dependencies: + libopenblas: '>=0.3.21,<1.0a0' + hash: + md5: d9b7a8639171f6c6fa0a983edabcfe2b + sha256: 4e4c60d3fe0b95ffb25911dace509e3532979f5deef4364141c533c5ca82dd39 + manager: conda + name: libblas + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + libbrotlicommon: 1.0.9 h166bdaf_8 + libgcc-ng: '>=12' + hash: + md5: 4ae4d7795d33e02bd20f6b23d91caf82 + sha256: d88ba07c3be27c89cb4975cc7edf63ee7b1c62d01f70d5c3f7efeb987c82b052 + manager: conda + name: libbrotlidec + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + libbrotlicommon: 1.0.9 h166bdaf_8 + libgcc-ng: '>=12' + hash: + md5: 04bac51ba35ea023dc48af73c1c88c25 + sha256: a0468858b2f647f51509a32040e93512818a8f9980f20b3554cccac747bcc4be + manager: conda + name: libbrotlienc + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + attr: '>=2.5.1,<2.6.0a0' + libgcc-ng: '>=12' + hash: + md5: 2d7665abd0997f1a6d4b7596bc27b657 + sha256: db113b0bacb45533ec6f5c13a548054af8bd0ca2f7583e8bc5989f17e1e1638b + manager: conda + name: libcap + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.66-ha37c62d_0.tar.bz2 + version: '2.66' +- category: main + dependencies: + libgcc-ng: '>=12' + libpciaccess: '>=0.16,<0.17.0a0' + hash: + md5: 5dc3031bafb9bc66602beba718b5e14b + sha256: cf84625f652d511fa200f2a3b48125257834126b77abcbbe4d3f018c9b2a7213 + manager: conda + name: libdrm + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.113-h166bdaf_0.tar.bz2 + version: 2.4.113 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + ncurses: '>=6.2,<7.0.0a0' + hash: + md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 + sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf + manager: conda + name: libedit + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + version: 3.1.20191231 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + openssl: '>=1.1.1l,<1.1.2a' + hash: + md5: 390026683aef81db27ff1b8570ca1336 + sha256: 18695f2fa3f19700d3f5d4f6b5fc49920685c7424b6bbbe461fa746c40996a14 + manager: conda + name: libevent + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h9b69904_4.tar.bz2 + version: 2.1.10 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + libgcc-ng: '>=12' + libogg: '>=1.3.4,<1.4.0a0' + libstdcxx-ng: '>=12' + hash: + md5: 7daf72d8e2a8e848e11d63ed6d1026e0 + sha256: 095cfa4e2df8622b8f9eebec3c60710ea0f4732c64cd24769ccf9ed63fd45545 + manager: conda + name: libflac + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.2-h27087fc_0.tar.bz2 + version: 1.4.2 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + libgcc-ng: '>=12' + libunistring: '>=0,<1.0a0' + hash: + md5: 7440fbafd870b8bab68f83a064875d34 + sha256: 888848ae85be9df86f56407639c63bdce8e7651f0b2517be9bc0ac6e38b2d21d + manager: conda + name: libidn2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.4-h166bdaf_0.tar.bz2 + version: 2.3.4 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: f5759f0c80708fbf9c4836c0cb46d0fe + sha256: af0f505053153cd2e8ad08a8559fb3df73b22ce8f635dbcaf7818a7bf916437f + manager: conda + name: libllvm14 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libllvm14-14.0.6-he0ac6c6_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: + c-ares: '>=1.18.1,<2.0a0' + libev: '>=4.33,<4.34.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 6fe9e31c2b8d0b022626ccac13e6ca3c + sha256: 44b87b28efb1fa34632730f37a39250ef955a3497d7d9cd0ec60316ac134278e + manager: conda + name: libnghttp2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.47.0-hdcd2b5c_1.tar.bz2 + version: 1.47.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 575078de1d3a3114b3ce131bd1508d0c + sha256: 422a544fbfc8d8bf43de4b2dc5c7c991294ad0e37b37439d8dbf740f07a75437 + manager: conda + name: libpng + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.38-h753d276_0.tar.bz2 + version: 1.6.38 +- category: main + dependencies: + geos: '>=3.11.0,<3.11.1.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 13b2138ccfbd9821fe13ee0cb7471c03 + sha256: 0bd78394199ef26d33cd8af69bb92215a288b1487236420f521dc6e2bc7250d5 + manager: conda + name: librttopo + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-hf730bdb_11.tar.bz2 + version: 1.1.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 978924c298fc2215f129e8171bbea688 + sha256: 919396aa0e5d0df8d8082db554d850639aa363aff13f4feabf2ee642f823b6d4 + manager: conda + name: libsqlite + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.39.4-h753d276_0.tar.bz2 + version: 3.39.4 +- category: main + dependencies: + libgcc-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 89acee135f0809a18a1f4537390aa2dd + sha256: 3c2ed83502bedf4ec8c5b972accb6ff1b6c018f72fb711cdb65cb8540d5ab89e + manager: conda + name: libssh2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-haa6b8db_3.tar.bz2 + version: 1.10.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libogg: '>=1.3.4,<1.4.0a0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: 309dec04b70a3cc0f1e84a4013683bc0 + sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 + manager: conda + name: libvorbis + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2 + version: 1.3.7 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + pthread-stubs: '' + xorg-libxau: '' + xorg-libxdmcp: '' + hash: + md5: b3653fdc58d03face9724f602218a904 + sha256: 8d5d24cbeda9282dd707edd3156e5fde2e3f3fe86c802fa7ce08c8f1e803bfd9 + manager: conda + name: libxcb + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2 + version: '1.13' +- category: main + dependencies: + icu: '>=70.1,<71.0a0' + libgcc-ng: '>=12' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + xz: '>=5.2.6,<6.0a0' + hash: + md5: 3b933ea47ef8f330c4c068af25fcd6a8 + sha256: b30713fb4477ff4f722280d956593e7e7a2cb705b7444dcc278de447432b43b1 + manager: conda + name: libxml2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-h7463322_0.tar.bz2 + version: 2.10.3 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libgcc-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 7a268cf1386d271e576e35ae82149ef2 + sha256: 6e84cd7263fb985be5f96790c5000b499d8075d8abd0d9be91eaf24797e113b8 + manager: conda + name: libzip + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc869a4a_1.tar.bz2 + version: 1.9.2 +- category: main + dependencies: + gmp: '>=6.2.1,<7.0a0' + libgcc-ng: '>=7.5.0' + hash: + md5: ea9ebeddb066da8fad4a815e61b139be + sha256: d2d71ac6ed3b32f06b7db2691e0a1760016ce13fb0c50a9de6ed1ccc33e35ff3 + manager: conda + name: mpfr + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mpfr-4.1.0-h9202a9a_1.tar.bz2 + version: 4.1.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 0249d755f8d26cb2ac796f9f01cfb823 + sha256: 4ade18a1813e80f726d7473878e414621013c6fbeb6d41730a30c090379cc94a + manager: conda + name: mysql-common + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.31-haf5c9bc_0.tar.bz2 + version: 8.0.31 +- category: main + dependencies: + libffi: '>=3.4.2,<3.5.0a0' + libgcc-ng: '>=12' + libtasn1: '>=4.18.0,<5.0a0' + hash: + md5: 56ee94e34b71742bbdfa832c974e47a8 + sha256: aa8d3887b36557ad0c839e4876c0496e0d670afe843bf5bba4a87764b868196d + manager: conda + name: p11-kit + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2 + version: 0.24.1 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + mpich: '>=3.4,<5.0.0a0' + hash: + md5: d32150ac4a75576e7d8043379e7f1059 + sha256: 5f070e718b6116718c58bd7831e18361096796b63c2ec394b2e497647d60bf1c + manager: conda + name: parmetis + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/parmetis-4.0.3-h2a9763c_1005.tar.bz2 + version: 4.0.3 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libgcc-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: dfd26f27a9d5de96cec1d007b9aeb964 + sha256: ed3fa628b94a82ff039bdc9591c241dfc2c555f0efdfb07a0b53be4b2d9dfe6c + manager: conda + name: pcre2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.37-hc3806b6_1.tar.bz2 + version: '10.37' +- category: main + dependencies: + libgcc-ng: '>=12' + ncurses: '>=6.3,<7.0a0' + hash: + md5: db2ebbe2943aae81ed051a6a9af8e0fa + sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8 + manager: conda + name: readline + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2 + version: 8.1.2 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + tbb: 2021.6.0 h924138e_1 + hash: + md5: 3d5980f3864a0255614fede8a5712eb9 + sha256: 612fc7982bcfe9aabe2d8a446358ee0fdf766c32847af08ce938552d13ada66d + manager: conda + name: tbb-devel + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-devel-2021.6.0-h924138e_1.tar.bz2 + version: 2021.6.0 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 5b8c42eb62e9fc961af70bdd6a26e168 + sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 + manager: conda + name: tk + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2 + version: 8.6.12 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-xextproto: '' + hash: + md5: 65ad6e1eb4aed2b0611855aff05e04f6 + sha256: 5d2af1b40f82128221bace9466565eca87c97726bb80bbfcd03871813f3e1876 + manager: conda + name: xorg-fixesproto + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2 + version: '5.0' +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libuuid: '>=2.32.1,<3.0a0' + xorg-libice: 1.0.* + hash: + md5: 9e856f78d5c80d5a78f61e72d1d473a3 + sha256: bdb350539521ddc1f30cc721b6604eced8ef72a0ec146e378bfe89e2be17ab35 + manager: conda + name: xorg-libsm + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2 + version: 1.2.3 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + xtl: '>=0.7,<0.8' + hash: + md5: 85aff453f9d7a9036ce5a94590f8dd23 + sha256: cf853edf537f40be85668e65e9f60db366bc58bd9d681fb893b001158e46c6f6 + manager: conda + name: xtensor + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xtensor-0.24.3-h924138e_0.tar.bz2 + version: 0.24.3 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libsodium: '>=1.0.18,<1.0.19.0a0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: 21743a8d2ea0c8cfbbf8fe489b0347df + sha256: 525315b0df21866d4c3d68bc2ff987d26c2fdf0e3e8fd242c49b7255adef04c6 + manager: conda + name: zeromq + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.4-h9c3ff4c_1.tar.bz2 + version: 4.3.4 +- category: main + dependencies: + libgcc-ng: '>=12' + libzlib: 1.2.13 h166bdaf_4 + hash: + md5: 4b11e365c0275b808be78b30f904e295 + sha256: 282ce274ebe6da1fbd52efbb61bd5a93dec0365b14d64566e6819d1691b75300 + manager: conda + name: zlib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2 + version: 1.2.13 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: adcf0be7897e73e312bd24353b613f74 + sha256: c42d9ec413edd7e984b6cac676997105d0f106556a0f045961153b049b95b87c + manager: conda + name: zstd + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h6239696_4.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + snappy: '>=1.1.9,<2.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 37baca23e60af4130cfc03e8ab9f8e22 + sha256: 3635408361a0d168c289d0e32927b1e1c1e4e563439b4ce7153e787201c6a4e0 + manager: conda + name: blosc + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.1-h83bc5f7_3.tar.bz2 + version: 1.21.1 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + icu: '>=70.1,<71.0a0' + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + xz: '>=5.2.5,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 9c5996e7741d205bc76a518173ff6b82 + sha256: 82d7d5c3042baae2cc7ee798612681f72ad348978d72ac17de9f3c41183f0a19 + manager: conda + name: boost-cpp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.74.0-h75c5d50_8.tar.bz2 + version: 1.74.0 +- category: main + dependencies: + libbrotlidec: 1.0.9 h166bdaf_8 + libbrotlienc: 1.0.9 h166bdaf_8 + libgcc-ng: '>=12' + hash: + md5: e5613f2bc717e9945840ff474419b8e4 + sha256: ab1994e03bdd88e4b27f9f802ac18e45ed29b92cce25e1fd86da43b89734950f + manager: conda + name: brotli-bin + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + libgcc-ng: '>=12' + libpng: '>=1.6.37,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 4e54cbfc47b8c74c2ecc1e7730d8edce + sha256: 97325af03590d9f9cc7fcb35ad869fa409c51820b0c721bfc9fe7a6d058d0bb0 + manager: conda + name: freetype + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_0.tar.bz2 + version: 2.12.1 +- category: main + dependencies: + binutils_linux-64: 2.39 h5fc0e48_11 + gcc_impl_linux-64: 10.4.0.* + sysroot_linux-64: '' + hash: + md5: 8ec7a24818e75cd2975e6fe785ad18eb + sha256: 653d27c4a31c582faa0ff244292bbfa69ff206a03082ceb7e642bdb297f73677 + manager: conda + name: gcc_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-10.4.0-h9215b83_11.tar.bz2 + version: 10.4.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libpng: '>=1.6.37,<1.7.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 438718bf8921ac70956d919d0e2cc487 + sha256: feaf757731cfb8231d8a6c5b3446bbc428aa1cca126f09628ccafaa98a80f022 + manager: conda + name: gl2ps + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-h0708190_0.tar.bz2 + version: 1.4.2 +- category: main + dependencies: + libgcc-ng: '>=12' + libidn2: '>=2,<3.0a0' + libstdcxx-ng: '>=12' + libtasn1: '>=4.19.0,<5.0a0' + nettle: '>=3.8.1,<3.9.0a0' + p11-kit: '>=0.24.1,<0.25.0a0' + hash: + md5: cbe8e27140d67c3f30e01cfb642a6e7c + sha256: 4a47e4558395b98fff4c1c44ad358dade62b350a03b5a784d4bc589d6eb7ac9e + manager: conda + name: gnutls + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.8-hf3e180e_0.tar.bz2 + version: 3.7.8 +- category: main + dependencies: + gcc_impl_linux-64: 10.4.0 h5231bdf_19 + libstdcxx-devel_linux-64: 10.4.0 hd38fd1e_19 + sysroot_linux-64: '' + hash: + md5: de8c00c5162b819c3e8a7f64ed32baf1 + sha256: bb4d5dd427a3788208737bbce28e3a2793371526aa11f8fa69d66596246ba39d + manager: conda + name: gxx_impl_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-10.4.0-h5231bdf_19.tar.bz2 + version: 10.4.0 +- category: main + dependencies: + keyutils: '>=1.6.1,<2.0a0' + libedit: '>=3.1.20191231,<4.0a0' + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + openssl: '>=1.1.1l,<1.1.2a' + hash: + md5: 7d862b05445123144bec92cb1acc8ef8 + sha256: 3d0f0a8806b6bbe5f9584ff69e0b569d8b3a5b8bd4f35564fdbd304c7ef28fd1 + manager: conda + name: krb5 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.19.3-h3790be6_0.tar.bz2 + version: 1.19.3 +- category: main + dependencies: + libblas: 3.9.0 16_linux64_openblas + hash: + md5: 20bae26d0a1db73f758fc3754cab4719 + sha256: e4ceab90a49cb3ac1af20177016dc92066aa278eded19646bb928d261b98367f + manager: conda + name: libcblas + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libllvm14: '>=14.0.6,<14.1.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: cdbd49e0ab5c5a6c522acb8271977d4c + sha256: 5a359982db6223f0330682b4ac7bd2b6f0206cf566a5e074e3f0609bc5a1f98f + manager: conda + name: libclang13 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libclang13-14.0.6-default_h3a83d3e_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=12' + libiconv: '>=1.17,<2.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + pcre2: '>=10.37,<10.38.0a0' + hash: + md5: 5635a2490d52955dc3192d901434c26d + sha256: 63438f7d450b167beaad8d742259cf95bed9d9fa1510afcb0cb8fc4866081b6b + manager: conda + name: libglib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.74.1-h7a41b64_0.tar.bz2 + version: 2.74.1 +- category: main + dependencies: + libblas: 3.9.0 16_linux64_openblas + hash: + md5: 955d993f41f9354bf753d29864ea20ad + sha256: f5f30b8049dfa368599e5a08a4f35cb1966af0abc539d1fd1f50d93db76a74e6 + manager: conda + name: liblapack + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + lame: '>=3.100,<3.101.0a0' + libflac: '>=1.4.1,<1.5.0a0' + libgcc-ng: '>=12' + libogg: '>=1.3.4,<1.4.0a0' + libopus: '>=1.3.1,<2.0a0' + libstdcxx-ng: '>=12' + libvorbis: '>=1.3.7,<1.4.0a0' + mpg123: '>=1.30.2,<1.31.0a0' + hash: + md5: 02fa0b56a57c8421d1195bf0c021e682 + sha256: 5c2473d6eae4b874c25de4754a6f0a7ee5d56731f4ebd86d94c6f48d0bd2ea6f + manager: conda + name: libsndfile + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.1.0-h27087fc_0.tar.bz2 + version: 1.1.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libogg: '>=1.3.4,<1.4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 1a7c35f56343b7e9e8db20b296c7566c + sha256: 048ce34ba5b143f099cca3d388dfc41acf24d634dd00c5b1c463fb81bf804070 + manager: conda + name: libtheora + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h7f98852_1005.tar.bz2 + version: 1.1.1 +- category: main + dependencies: + jpeg: '>=9e,<10a' + lerc: '>=4.0.0,<5.0a0' + libdeflate: '>=1.14,<1.15.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libwebp-base: '>=1.2.4,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + xz: '>=5.2.6,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 901791f0ec7cddc8714e76e273013a91 + sha256: 19f29fcaab2e6b97cb1991a5a703b5951e981dc8a093945f20382288b29a4668 + manager: conda + name: libtiff + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.4.0-h55922b4_4.tar.bz2 + version: 4.4.0 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + libstdcxx-ng: '>=7.5.0' + libxml2: '>=2.9.10,<2.11.0a0' + hash: + md5: f9dbabc7e01c459ed7a1d1d64b206e9b + sha256: 64d37e16c694714ca08a96f9864a35ba9ee38b8e222f8ee646e10976250d966d + manager: conda + name: libxkbcommon + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.0.3-he3ba5ed_0.tar.bz2 + version: 1.0.3 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + mysql-common: 8.0.31 haf5c9bc_0 + openssl: '>=1.1.1q,<1.1.2a' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 455d44a05123f30f66af2ca2a9652b5f + sha256: 3174c6d2912bacdbcca00daacb010322825e6eb1814eb3748d40a0a6a9a8dd31 + manager: conda + name: mysql-libs + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.31-h28c427c_0.tar.bz2 + version: 8.0.31 +- category: main + dependencies: + imath: '>=3.1.5,<3.2.0a0' + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: b591c2d62a18b7046678653a4e664f8b + sha256: 56ba47402087813b176e17923e87fa4d9b118c08bd380ff287e2f265779931b1 + manager: conda + name: openexr + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.1.5-he0ac6c6_0.tar.bz2 + version: 3.1.5 +- category: main + dependencies: + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.4.0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + mpi: 1.0 openmpi + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 47111ef9982059da798bceb358ac542e + sha256: f9ee2572f50bad793337c2b0a2579b3e5fc5b6850cf70d21b5baa1c37e21d1a5 + manager: conda + name: openmpi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openmpi-4.1.4-ha1ae619_101.tar.bz2 + version: 4.1.4 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 20eb1f0c247d10da95b1da761e7f4c10 + sha256: 88be3ee9b49716657d8429fbb9b6ce4eb65efd79b7e660636775a858cb077921 + manager: conda + name: scotch + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/scotch-6.0.9-hb2e6521_2.tar.bz2 + version: 6.0.9 +- category: main + dependencies: + libgcc-ng: '>=12' + libsqlite: 3.39.4 h753d276_0 + libzlib: '>=1.2.12,<1.3.0a0' + ncurses: '>=6.3,<7.0a0' + readline: '>=8.1.2,<9.0a0' + hash: + md5: 643c271de2dd23ecbd107284426cebc2 + sha256: b0a812bcdc8c622852e4769f66d1db8a2e437a867acf64067ce31f9a0181acc8 + manager: conda + name: sqlite + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.39.4-h4ff8645_0.tar.bz2 + version: 3.39.4 +- category: main + dependencies: + libgcc-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + hash: + md5: 384e7fcb3cd162ba3e4aed4b687df566 + sha256: 292dee40f8390aea0e6a0abbf2f255f179c777326831ed9e1ad7db53665c8562 + manager: conda + name: xcb-util + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-h166bdaf_0.tar.bz2 + version: 0.4.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + hash: + md5: 637054603bb7594302e3bf83f0a99879 + sha256: 6a2c0f38b360a2fda57b2349d2cbeeb7583576a4914a3e4ce17977601ac87613 + manager: conda + name: xcb-util-keysyms + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h166bdaf_0.tar.bz2 + version: 0.4.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + hash: + md5: 732e22f1741bccea861f5668cf7342a7 + sha256: 19d27b7af8fb8047e044de2b87244337343c51fe7caa0fbaa9c53c2215787188 + manager: conda + name: xcb-util-renderutil + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-h166bdaf_0.tar.bz2 + version: 0.3.9 +- category: main + dependencies: + libgcc-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + hash: + md5: 0a8e20a8aef954390b9481a527421a8c + sha256: a76af35297f233982b58de1f55f1900d8a8ae44018a55d2a94f3084ab97d6c80 + manager: conda + name: xcb-util-wm + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h166bdaf_0.tar.bz2 + version: 0.4.1 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libxcb: 1.* + xorg-kbproto: '' + xorg-xproto: '' + hash: + md5: 12a61e640b8894504326aadafccbb790 + sha256: ec4641131e3afcb4b34614a5fa298efb34f54c2b2960bf9a73a8d202140d47c4 + manager: conda + name: xorg-libx11 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.7.2-h7f98852_0.tar.bz2 + version: 1.7.2 +- category: main + dependencies: + brotli-bin: 1.0.9 h166bdaf_8 + libbrotlidec: 1.0.9 h166bdaf_8 + libbrotlienc: 1.0.9 h166bdaf_8 + libgcc-ng: '>=12' + hash: + md5: 2ff08978892a3e8b954397c461f18418 + sha256: 74c0fa22ea7c62d2c8f7a7aea03a3bd4919f7f3940ef5b027ce0dfb5feb38c06 + manager: conda + name: brotli + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + expat: '>=2.4.2,<3.0a0' + libgcc-ng: '>=9.4.0' + libglib: '>=2.70.2,<3.0a0' + hash: + md5: ecfff944ba3960ecb334b9a2663d708d + sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 + manager: conda + name: dbus + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 + version: 1.13.6 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + hash: + md5: a4fdb592277a9c1a26b16d253e5aa931 + sha256: 34e02a1b0b67740e121f5d1fc389523411e810b5ebbab80ed8715fab5c9d9193 + manager: conda + name: fenics-libbasix + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fenics-libbasix-0.5.1-heb3b609_0.tar.bz2 + version: 0.5.1 +- category: main + dependencies: + expat: '>=2.4.9,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libgcc-ng: '>=12' + libuuid: '>=2.32.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + hash: + md5: 78415f0180a8d9c5bcc47889e00d5fb1 + sha256: 4594348401ccdb622b41692698f3701423e9a4e726b6b6efa818c3a1611b01f9 + manager: conda + name: fontconfig + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.1-hc2a2eb6_0.tar.bz2 + version: 2.14.1 +- category: main + dependencies: + libgcc-ng: '>=12' + libglib: 2.74.1 h7a41b64_0 + libstdcxx-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + hash: + md5: df71cc96499592e632046ee20c2c3bd0 + sha256: 79173a3c55396d9d871f055399b9ee54f5f1cf272339f63fff618dbcbbfbfe33 + manager: conda + name: glib-tools + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.74.1-h6239696_0.tar.bz2 + version: 2.74.1 +- category: main + dependencies: + binutils_linux-64: 2.39 h5fc0e48_11 + gcc_linux-64: 10.4.0 h9215b83_11 + gxx_impl_linux-64: 10.4.0.* + sysroot_linux-64: '' + hash: + md5: 842f0029666e37e929cbd1e7614f5862 + sha256: 5d1b580e7cf9d9a738a1bda1d32e4aaedc8625e0502fd6d41ececc9c8f88cd9d + manager: conda + name: gxx_linux-64 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-10.4.0-h6e491c6_11.tar.bz2 + version: 10.4.0 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + mpich: '>=4.0.2,<5.0a0' + hash: + md5: d8e0cd054f4c3d49b276c7b47540ce82 + sha256: c23f38cabbb1ec233d68e359030c478961542e9306277d8177a14b3428bdb4f0 + manager: conda + name: hypre + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/hypre-2.25.0-mpi_mpich_hed3a557_0.tar.bz2 + version: 2.25.0 +- category: main + dependencies: + alsa-lib: '>=1.2.7.2,<1.2.8.0a0' + libdb: '>=6.2.32,<6.3.0a0' + libgcc-ng: '>=12' + libopus: '>=1.3.1,<2.0a0' + libsndfile: '>=1.1.0,<1.2.0a0' + libstdcxx-ng: '>=12' + readline: '>=8.1.2,<9.0a0' + hash: + md5: d5aa2777d032ca2663b10c675a017151 + sha256: 0b95a75d6619dd3d574204b0ef1007e2ceb170d794c964731fbe26cfdb7f1c07 + manager: conda + name: jack + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/jack-1.9.21-h2a1e645_0.tar.bz2 + version: 1.9.21 +- category: main + dependencies: + jpeg: '>=9d,<10a' + libgcc-ng: '>=9.3.0' + libtiff: '>=4.2.0,<5.0a0' + hash: + md5: 797117394a4aa588de6d741b06fad80f + sha256: 5b3c77a84b1dbfa53932dee830f35a42cfc5541e23ca0626f8058b04dcf518d1 + manager: conda + name: lcms2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.12-hddcbb42_0.tar.bz2 + version: '2.12' +- category: main + dependencies: + libclang13: 14.0.6 default_h3a83d3e_0 + libgcc-ng: '>=12' + libllvm14: '>=14.0.6,<14.1.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: eb70548da697e50cefa7ba939d57d001 + sha256: 2e42f6b4dcb8b75f1eb25d6144fa13084f24a0d2f558a92f1086753bc4e523d4 + manager: conda + name: libclang + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libclang-14.0.6-default_h2e3cab8_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 3b88f1d0fe2580594d58d7e44d664617 + sha256: 293b4be657b9bb534c58b2add62c5088fdbd2e943ff5aea5b4595564cc15e681 + manager: conda + name: libcups + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h3e49a29_2.tar.bz2 + version: 2.3.3 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libgcc-ng: '>=12' + libnghttp2: '>=1.47.0,<2.0a0' + libssh2: '>=1.10.0,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 7569943f841e67e072a432b503ed18be + sha256: 576be40c308815a4d87cd54066d4c2e9fccb7fc3a25b69aebe697498420a85a4 + manager: conda + name: libcurl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.86.0-h7bff187_0.tar.bz2 + version: 7.86.0 +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + expat: '>=2.3.0,<3.0.0a0' + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: abd8e196ad04781818acef26cc451d66 + sha256: 337821b3469c1d47fe66387083659e6ef03b2f1d344301d3ff4917589ca5edb8 + manager: conda + name: libkml + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h238a007_1014.tar.bz2 + version: 1.3.0 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libgcc-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + readline: '>=8.1.2,<9.0a0' + hash: + md5: f5c8135a70758d928a8126998a6558d8 + sha256: f5cb56f5a05c298324a61b903741318516866cd69d072ea4c1819cb0780d1012 + manager: conda + name: libpq + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libpq-14.5-hd77ab85_1.tar.bz2 + version: '14.5' +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.11,<1.3.0a0' + nspr: '>=4.32,<5.0a0' + sqlite: '>=3.38.5,<4.0a0' + hash: + md5: ab3df39f96742e6f1a9878b09274c1dc + sha256: 6dc675619b9a156641eeb898acf810f620bca5f1af1ced5508a6c7b7ff3e7306 + manager: conda + name: nss + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.78-h2350873_0.tar.bz2 + version: '3.78' +- category: main + dependencies: + libgcc-ng: '>=12' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: a11b4df9271a8d7917686725aa04c8f2 + sha256: a715cba5649f12a1dca53dfd72fc49577152041f033d7595cf4b6a655a5b93b6 + manager: conda + name: openjpeg + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-h7d73246_1.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + mpich: '>=4.0.1,<5.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 2bb2d071f5cb419e4ce0e1eb7372eb9b + sha256: 81f68b9498721dc8ec65f723ecf46b569ee8109540858c440320acf1b7ba1089 + manager: conda + name: ptscotch + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ptscotch-6.0.9-hb499603_2.tar.bz2 + version: 6.0.9 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + ld_impl_linux-64: '>=2.36.1' + libffi: '>=3.4.2,<3.5.0a0' + libgcc-ng: '>=12' + libnsl: '>=2.0.0,<2.1.0a0' + libuuid: '>=2.32.1,<3.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + ncurses: '>=6.3,<7.0a0' + openssl: '>=1.1.1o,<1.1.2a' + readline: '>=8.1,<9.0a0' + sqlite: '>=3.38.5,<4.0a0' + tk: '>=8.6.12,<8.7.0a0' + tzdata: '' + xz: '>=5.2.5,<5.3.0a0' + hash: + md5: 69bc307cc4d7396c5fccb26bbcc9c379 + sha256: 411462cd0726d5a13fd04295887d1137175df55687e4783f26ac1cbb46a10b7f + manager: conda + name: python + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.9.13-h9a8a25e_0_cpython.tar.bz2 + version: 3.9.13 +- category: main + dependencies: + libblas: '>=3.8.0,<4.0a0' + libgcc-ng: '>=10.3.0' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + liblapack: '>=3.8.0,<4.0a0' + mpich: '>=4.0.1,<5.0a0' + hash: + md5: 9913f4fb198ea6d18ba99c45aed64855 + sha256: a2d5bfc5a1b83ea7907f3b9436db1f8431743f759c09ba6a4fad4ba06de49cee + manager: conda + name: scalapack + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/scalapack-2.2.0-hd931219_1.tar.bz2 + version: 2.2.0 +- category: main + dependencies: + libblas: '>=3.8.0,<4.0a0' + libcblas: '>=3.8.0,<4.0a0' + libgcc-ng: '>=9.4.0' + liblapack: '>=3.8.0,<4.0a0' + libstdcxx-ng: '>=9.4.0' + metis: '>=5.1.0,<5.2.0a0' + mpfr: '>=4.1.0,<5.0a0' + tbb: '>=2021.3.0' + hash: + md5: a3a685b5f9aeb890ed874502fe56accf + sha256: 176d004eafe3f07110315d1c96ab7245fbba8677364933213404890a0e2e9d1f + manager: conda + name: suitesparse + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/suitesparse-5.10.1-h9e50725_1.tar.bz2 + version: 5.10.1 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + hash: + md5: 2fe6fcc1c7d6e2e8ea3f16ebd3306dbe + sha256: dd80a0f64309849d0a222da3e2edbb28de741202f8d0578ccca705e1ca16dabd + manager: conda + name: superlu + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/superlu-5.2.2-h00795ac_0.tar.bz2 + version: 5.2.2 +- category: main + dependencies: + _openmp_mutex: '>=4.5' + libblas: '>=3.8.0,<4.0a0' + libgcc-ng: '>=9.4.0' + libgfortran-ng: '' + libgfortran5: '>=9.4.0' + liblapack: '>=3.8.0,<4.0a0' + libstdcxx-ng: '>=9.4.0' + metis: '>=5.1.0,<5.2.0a0' + mpich: '>=3.4.2,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + hash: + md5: fac36f70854e425ad3aaa30992d58c1b + sha256: 07b255249685c89d2430eac141ab2000ec3a7101931602db41d99e8d99c4ab9e + manager: conda + name: superlu_dist + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/superlu_dist-7.2.0-h25dcc4a_0.tar.bz2 + version: 7.2.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + xcb-util: '>=0.4.0,<0.5.0a0' + hash: + md5: c9b568bd804cb2903c6be6f5f68182e4 + sha256: 6db358d4afa0eb1225e24871f6c64c1b6c433f203babdd43508b0d61252467d1 + manager: conda + name: xcb-util-image + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h166bdaf_0.tar.bz2 + version: 0.4.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-xextproto: '' + hash: + md5: 536cc5db4d0a3ba0630541aec064b5e4 + sha256: cf47ccbf49d46189d7bdadeac1387c826be82deb92ce6badbb03baae4b67ed26 + manager: conda + name: xorg-libxext + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h7f98852_1.tar.bz2 + version: 1.3.4 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-fixesproto: '' + xorg-libx11: '>=1.7.0,<2.0a0' + hash: + md5: e9a21aa4d5e3e5f1aed71e8cefd46b6a + sha256: 1e426a1abb774ef1dcf741945ed5c42ad12ea2dc7aeed7682d293879c3e1e4c3 + manager: conda + name: xorg-libxfixes + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2 + version: 5.0.3 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-renderproto: '' + hash: + md5: f59c1242cc1dd93e72c2ee2b360979eb + sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 + manager: conda + name: xorg-libxrender + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2 + version: 0.9.10 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-kbproto: '' + xorg-libice: 1.0.* + xorg-libsm: 1.2.* + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-xproto: '' + hash: + md5: 60d6eec5273f1c9af096c10c268912e3 + sha256: 25bfc4d86df3498b88aac2f02ecf65e739bf99a687805c31a635df6f2e60a163 + manager: conda + name: xorg-libxt + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.2.1-h7f98852_2.tar.bz2 + version: 1.2.1 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 466dc5c1b75c93180efbd81d99dc29b0 + sha256: f3d58687fb000acc5d5f773d6e633ffb382575895abbc8db3d9b8e3996b05d39 + manager: conda + name: affine + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/affine-2.3.1-pyhd8ed1ab_0.tar.bz2 + version: 2.3.1 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: f3f2ab3ce28979a24d1a988ba211eb9b + sha256: 1354731d0eb1b406b66b3cb3d6ab74d7cbe9c0ec1d30b9e5afa366d4539e4687 + manager: conda + name: asn1crypto + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2 + version: 1.5.1 +- category: main + dependencies: + python: '>=3.5' + hash: + md5: 6d3ccbc56256204925bfa8378722792f + sha256: 86133878250874b3823bae7369bcad90187132537726cb1b546d88a0552d24de + manager: conda + name: attrs + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/attrs-22.1.0-pyh71513ae_1.tar.bz2 + version: 22.1.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + manager: conda + name: cached_property + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.12.1,<3.0a0' + icu: '>=70.1,<71.0a0' + libgcc-ng: '>=12' + libglib: '>=2.72.1,<3.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + pixman: '>=0.40.0,<1.0a0' + xorg-libice: '' + xorg-libsm: '' + xorg-libx11: '' + xorg-libxext: '' + xorg-libxrender: '' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: d1a88f3ed5b52e1024b80d4bcd26a7a0 + sha256: f062cf56e6e50d3ad4b425ebb3765ca9138c6ebc52e6a42d1377de8bc8d954f6 + manager: conda + name: cairo + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2 + version: 1.16.0 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: f66309b099374af91369e67e84af397d + sha256: 52e7459b3c457e888e2b6a4e6d13ab7f8675999bc12d20a83e34f12591a8771a + manager: conda + name: certifi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2022.9.24-pyhd8ed1ab_0.tar.bz2 + version: 2022.9.24 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libcurl: '>=7.82.0,<8.0a0' + libgcc-ng: '>=10.3.0' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: ebc04a148d7204bb428f8633b89fd3dd + sha256: ab51263a83b7138ed8f132d78381189cc4f9f79c95230634f39311759dbbaf4c + manager: conda + name: cfitsio + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.1.0-hd9d235c_0.tar.bz2 + version: 4.1.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: c1d5b294fbf9a795dec349a6f4d8be8e + sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb + manager: conda + name: charset-normalizer + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2 + version: 2.1.1 +- category: main + dependencies: + __unix: '' + python: '>=3.8' + hash: + md5: 20e4087407c7cb04a40817114b333dbf + sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + manager: conda + name: click + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2 + version: 8.1.3 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libcurl: 7.86.0 h7bff187_0 + libgcc-ng: '>=12' + libssh2: '>=1.10.0,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 8714ff9ad4b287708dc435c4a68d3460 + sha256: 3e10212faa44df18a97f501a923a64af9a876661798db465f6f918797f2d669e + manager: conda + name: curl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/curl-7.86.0-h7bff187_0.tar.bz2 + version: 7.86.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + manager: conda + name: cycler + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2 + version: 0.11.0 +- category: main + dependencies: + freetype: '>=2.10.4,<3.0a0' + jpeg: '>=9d,<10a' + libgcc-ng: '>=9.4.0' + libglu: '' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=9.4.0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + xorg-libice: '' + xorg-libsm: '' + xorg-libx11: '' + xorg-libxau: '' + xorg-libxdmcp: '' + xorg-libxext: '' + xorg-libxfixes: '' + xorg-libxrender: '' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 9477d7b330bc723e7abe9f85e1405d4e + sha256: 510f8cc6b0e71d6b4770bf7c17025cbfa6d34ba783c927e9c3f1565e4955937d + manager: conda + name: fltk + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.8-h83e168f_0.tar.bz2 + version: 1.3.8 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libglu: '' + libstdcxx-ng: '>=9.3.0' + xorg-libx11: '' + xorg-libxext: '' + hash: + md5: fb05eb5c47590b247658243d27fc32f1 + sha256: 86f5484e38f4604f7694b14f64238e932e8fd8d7364e86557f4911eded2843ae + manager: conda + name: glew + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2 + version: 2.1.0 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + glib-tools: 2.74.1 h6239696_0 + libgcc-ng: '>=12' + libglib: 2.74.1 h7a41b64_0 + libstdcxx-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + python: '*' + hash: + md5: 2addd7ce0b4dffd5818d29f174c2d5d8 + sha256: 2e0cc642ed34def07d0a6b8f4fed15d46bfdec973066a288e220b8a715077e27 + manager: conda + name: glib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/glib-2.74.1-h6239696_0.tar.bz2 + version: 2.74.1 +- category: main + dependencies: + libcurl: '>=7.81.0,<8.0a0' + libgcc-ng: '>=10.3.0' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + mpich: '>=4.0,<4.1.0a0' + openssl: '>=1.1.1l,<1.1.2a' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 975d5635b158c1b3c5c795f9d0a430a1 + sha256: f7383928021fe154de98b8a84374c471382aea6d00981e983effcbb61cec77de + manager: conda + name: hdf5 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.1-mpi_mpich_h08b82f9_4.tar.bz2 + version: 1.12.1 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + manager: conda + name: idna + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + version: '3.4' +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 2cfa3e1cf3fb51bb9b17acc5b5e9ea11 + sha256: 95ac5f9ee95fd4e34dc051746fc86016d3d4f6abefed113e2ede049d59ec2991 + manager: conda + name: jmespath + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_0.tar.bz2 + version: 1.0.1 +- category: main + dependencies: + _openmp_mutex: '>=4.5' + jpeg: '>=9d,<10a' + lcms2: '>=2.12,<3.0a0' + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 29b53db51008dedb27cd123b9a3bdd8f + sha256: ddef84e0df4108e67fe50df6c0237937fd952898a21c225b669822b88f86c317 + manager: conda + name: libraw + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.20.2-h10796ff_1.tar.bz2 + version: 0.20.2 +- category: main + dependencies: + libdrm: '>=2.4.113,<2.5.0a0' + libgcc-ng: '>=12' + xorg-libx11: '' + xorg-libxext: '' + xorg-libxfixes: '' + hash: + md5: d7cba12acfb8f95baad26f1c79a55bc3 + sha256: 127cfc832010e68da8cfee16f21c3e34e70c24904ddd49254814a5fa0eac00ef + manager: conda + name: libva + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.16.0-h166bdaf_0.tar.bz2 + version: 2.16.0 +- category: main + dependencies: + libblas: '>=3.8.0,<4.0a0' + libgcc-ng: '>=10.3.0' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + liblapack: '>=3.8.0,<4.0a0' + metis: '>=5.1.0,<5.2.0a0' + mpich: '>=4.0.1,<5.0a0' + mumps-include: 5.2.1 ha770c72_11 + parmetis: '>=4.0.3,<4.1.0a0' + ptscotch: '>=6.0.9,<6.0.10.0a0' + scalapack: '>=2.2.0,<2.3.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + hash: + md5: 235559f5e16071637af9c1066ccd2121 + sha256: 290f40832a7de43264175feb5657ad09fdcb4bed67dc17881d8a3fe1b5dd36da + manager: conda + name: mumps-mpi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mumps-mpi-5.2.1-h7ee95aa_11.tar.bz2 + version: 5.2.1 +- category: main + dependencies: + python: '' + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + manager: conda + name: munkres + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + version: 1.1.4 +- category: main + dependencies: + python: '>=3.8' + hash: + md5: 1b74438a7270b1e2cbd3de9dba18ebb6 + sha256: eda4b0dba46c72770bc410c794f4da62509623a24c12b9805954828278915dc7 + manager: conda + name: networkx + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/networkx-2.8.7-pyhd8ed1ab_0.tar.bz2 + version: 2.8.7 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libgcc-ng: '>=12' + libpq: 14.5 hd77ab85_1 + libxml2: '>=2.10.3,<2.11.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + readline: '>=8.1.2,<9.0a0' + tzcode: '' + tzdata: '' + zlib: '' + hash: + md5: 4653aa2318108fb891e7d15e99e3fea2 + sha256: 280fad50c754d5926abad4c7e75cde91cc64f5151fd9e0e78cca3f49a83d880b + manager: conda + name: postgresql + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/postgresql-14.5-hdeef612_1.tar.bz2 + version: '14.5' +- category: main + dependencies: + libcurl: '>=7.83.1,<8.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + sqlite: '>=3.39.0,<4.0a0' + hash: + md5: 8259528ea471b0963a91ce174f002e55 + sha256: 90a8c337d906925d0d606837e9c72ae099744b234f0070a6796dbcc904ec845b + manager: conda + name: proj + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.0.1-h93bde94_1.tar.bz2 + version: 9.0.1 +- category: main + dependencies: + alsa-lib: '>=1.2.7.2,<1.2.8.0a0' + dbus: '>=1.13.6,<2.0a0' + fftw: '>=3.3.10,<4.0a0' + jack: '>=1.9.21,<1.10.0a0' + libcap: '>=2.66,<2.67.0a0' + libgcc-ng: '>=12' + libglib: '>=2.74.0,<3.0a0' + libiconv: '>=1.17,<2.0a0' + libsndfile: '>=1.1.0,<1.2.0a0' + libstdcxx-ng: '>=12' + libtool: '>=2.4' + libudev1: '>=249' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 47c7cb4a4dcbb9ce54e5152e619d4926 + sha256: 153e8ea57aadd73781c00097b89a1c5323a05b1e8348fc5c39d6504ce14ff24d + manager: conda + name: pulseaudio + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-14.0-habe0971_10.tar.bz2 + version: '14.0' +- category: main + dependencies: + python: ==2.7.*|>=3.4 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + manager: conda + name: pycparser + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + version: '2.21' +- category: main + dependencies: + python: '>=3.6' + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + manager: conda + name: pyparsing + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2 + version: 3.0.9 +- category: main + dependencies: + __unix: '' + python: '>=3.8' + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + manager: conda + name: pysocks + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + version: 1.7.1 +- category: main + dependencies: + python: 3.9.* + hash: + md5: 39adde4247484de2bb4000122fdcf665 + sha256: 67231829ea0101fee30c68f788fdba40a11bbee8fdac556daaab5832bd27bf3d + manager: conda + name: python_abi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-2_cp39.tar.bz2 + version: '3.9' +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 565724d09157870f0e469b1a0a172a6d + sha256: 0fc68b442d74920858fe7e4760c10efb22610fb27f28d2bfe98296b7ef2078f0 + manager: conda + name: pytz + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2022.5-pyhd8ed1ab_0.tar.bz2 + version: '2022.5' +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 462466739c786f85f9ed555f87099fe1 + sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 + manager: conda + name: setuptools + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 + version: 65.5.0 +- category: main + dependencies: + python: '' + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + manager: conda + name: six + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + version: 1.16.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: a2995ee828f65687ac5b1e71a2ab1e0c + sha256: c7a964811ba49c545236f7d6c2486b2ed493931660048a06fe94ecc851dd0b82 + manager: conda + name: threadpoolctl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2 + version: 3.1.0 +- category: main + dependencies: + python: '!=3.0,!=3.1,!=3.2,!=3.3,!=3.4' + hash: + md5: 1ca02aaf78d9c70d9a81a3bed5752022 + sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc + manager: conda + name: wheel + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 + version: 0.37.1 +- category: main + dependencies: + icu: '>=70.1,<71.0a0' + libcurl: '>=7.85.0,<8.0a0' + libgcc-ng: '>=12' + libnsl: '>=2.0.0,<2.1.0a0' + libstdcxx-ng: '>=12' + hash: + md5: d127dc8efe24033b306180939e51e6af + sha256: 63a799ef355a4d01f6789ecf31fbfa1b96f8a6bbee1a3b4be6d5d34158eb32a5 + manager: conda + name: xerces-c + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.4-h55805fa_1.tar.bz2 + version: 3.2.4 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-libxext: 1.3.* + xorg-libxt: '>=1.2.1,<2.0a0' + hash: + md5: 3cdb89236358326adfce12be820a8af3 + sha256: 3a9f9f8bbf3a6934dada98a7a224dd264c533a251d2a92be604a4b23e772e79b + manager: conda + name: xorg-libxmu + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2 + version: 1.1.3 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 0c0e2e24aa2e9ee3dd99c611b1098047 + sha256: 65553bbb7bdfedc1a17abc7cb26df8fb38aa50d9e56aa0eeb64a68a060d5301a + manager: conda + name: xyzservices + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2022.9.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.9.0 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: cd4eb48ebde7de61f92252979aab515c + sha256: 942b80980ae3db52f032720c82c2d4fb3f463b228762fc2d6a2684d6438fcc29 + manager: conda + name: zipp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.10.0-pyhd8ed1ab_0.tar.bz2 + version: 3.10.0 +- category: main + dependencies: + cached_property: '>=1.5.2,<1.5.3.0a0' + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + manager: conda + name: cached-property + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=12' + pycparser: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: fc70a133e8162f51e363cff3b6dc741c + sha256: d5b398d61cc48e5723099ecb92366ae7bd20c93ba8e02e98fde6ddf4a8c65586 + manager: conda + name: cffi + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py39he91dace_2.tar.bz2 + version: 1.15.1 +- category: main + dependencies: + click: '>=3.0' + python: '' + hash: + md5: 4fd2c6b53934bd7d96d1f3fdaf99b79f + sha256: ddef6e559dde6673ee504b0e29dd814d36e22b6b9b1f519fa856ee268905bf92 + manager: conda + name: click-plugins + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 + version: 1.1.1 +- category: main + dependencies: + click: '>=4.0' + python: <4.0 + hash: + md5: a29b7c141d6b2de4bb67788a5f107734 + sha256: 97bd58f0cfcff56a0bcda101e26f7d936625599325beba3e3a1fa512dd7fc174 + manager: conda + name: cligj + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 + version: 0.7.2 +- category: main + dependencies: + aom: '>=3.5.0,<3.6.0a0' + bzip2: '>=1.0.8,<2.0a0' + fontconfig: '>=2.14.0,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.12.1,<3.0a0' + gmp: '>=6.2.1,<7.0a0' + gnutls: '>=3.7.8,<3.8.0a0' + lame: '>=3.100,<3.101.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libva: '>=2.16.0,<3.0a0' + libvpx: '>=1.11.0,<1.12.0a0' + libxml2: '>=2.10.3,<2.11.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + svt-av1: '>=1.3.0,<1.3.1.0a0' + x264: '>=1!164.3095,<1!165' + x265: '>=3.5,<3.6.0a0' + hash: + md5: 3c385a4de798879fc6c45b586042aebb + sha256: f4f210c5f9a5ca7a9f96dad8335c44fd0719ee0cbaaf63045f178481cc02daf6 + manager: conda + name: ffmpeg + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-4.4.2-gpl_hc51e5dc_110.tar.bz2 + version: 4.4.2 +- category: main + dependencies: + imath: '>=3.1.5,<3.2.0a0' + jpeg: '>=9e,<10a' + jxrlib: '>=1.1,<1.2.0a0' + libgcc-ng: '>=12' + libpng: '>=1.6.37,<1.7.0a0' + libraw: '>=0.20.2,<0.21.0a0' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openexr: '>=3.1.5,<3.2.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + hash: + md5: d9e3da143223e19da9fb151de8657b24 + sha256: a1315ff1acbb0abe50f10305a561c2c65ea0d988f2c37ff768d261b6c065d7e4 + manager: conda + name: freeimage + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h530e30e_10.tar.bz2 + version: 3.18.0 +- category: main + dependencies: + jpeg: '>=9e,<10a' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: dc47fc3ed22615992f89effadd512988 + sha256: 03e2fdce86631b2511625695402f0470bc24146b4a50ca323886d7908ab43c49 + manager: conda + name: geotiff + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h4fc65e6_3.tar.bz2 + version: 1.7.1 +- category: main + dependencies: + gettext: '>=0.19.8.1,<1.0a0' + glib: '>=2.72.1,<3.0a0' + libgcc-ng: '>=12' + libglib: '>=2.72.1,<3.0a0' + libstdcxx-ng: '>=12' + hash: + md5: 153cfb02fb8be7dd7cabcbcb58a63053 + sha256: df2d1500bc9662d86cc69079b6070b86c7536532961bb9bc1d5331c4f2b28d96 + manager: conda + name: gstreamer + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.20.3-hd4edc92_2.tar.bz2 + version: 1.20.3 +- category: main + dependencies: + python: '>=3.8' + zipp: '>=0.5' + hash: + md5: ec069c4db6a0ad84107bac5da62819d2 + sha256: cea7928e6949c3ecd15e56ee8fa4e54efa8bb82738b8264e0489847e86e022c8 + manager: conda + name: importlib-metadata + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-5.0.0-pyha770c72_1.tar.bz2 + version: 5.0.0 +- category: main + dependencies: + python: '>=3.6' + setuptools: '' + hash: + md5: 7583652522d71ad78ba536bba06940eb + sha256: 0c21351871df2c0a53168575597dd9c881e2a9fa4c42fe89a9bcd7fab37f462c + manager: conda + name: joblib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2 + version: 1.2.0 +- category: main + dependencies: + hdf5: '>=1.12.1,<1.12.2.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 32fda93b8db4b6be630d1ee6a94f23b9 + sha256: 9d8802c906d25ddcf6511d368c064dd44dc8e6564e1f2ae047ebd24cabdab422 + manager: conda + name: kealib + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/kealib-1.4.15-hfe1a663_0.tar.bz2 + version: 1.4.15 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 41679a052a8ce841c74df1ebc802e411 + sha256: eb28254cc7029e702d0059536d986b010221de62f9c8588a5a83e95a00b4e74d + manager: conda + name: kiwisolver + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py39hf939315_1.tar.bz2 + version: 1.4.4 +- category: main + dependencies: + blosc: '>=1.21.1,<2.0a0' + bzip2: '>=1.0.8,<2.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_mpich_*' + libffi: '>=3.4.2,<3.5.0a0' + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.4.0' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=12' + mpich: '>=4.0.2,<5.0a0' + zeromq: '>=4.3.4,<4.4.0a0' + zfp: '>=0.5.5,<1.0a0' + hash: + md5: e3ea8b9ff0de29ab80c9421f041c2f25 + sha256: c5ccb82f9de25a6f641a7399c2e2d4a77b789f8b1dad09577f40140eb19ffa89 + manager: conda + name: libadios2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libadios2-2.8.3-mpi_mpich_h81ddebc_1.tar.bz2 + version: 2.8.3 +- category: main + dependencies: + curl: '>=7.75.0,<8.0a0' + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + libuuid: '>=2.32.1,<3.0a0' + libxml2: '>=2.9.10,<2.11.0a0' + hash: + md5: c265ae57e3acdc891f3e2b93cf6784f5 + sha256: ebc0d6a0decbd236f3cc362d7485f8ad1f7aef1246ada5507b407892e88293c5 + manager: conda + name: libdap4 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libdap4-3.20.6-hd7c4107_2.tar.bz2 + version: 3.20.6 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + curl: '>=7.82.0,<8.0a0' + hdf4: '>=4.2.15,<4.3.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_mpich_*' + jpeg: '>=9e,<10a' + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzip: '>=1.8.0,<2.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + mpich: '>=4.0.2,<4.1.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 7c035ca8a06010c4d9730c428d1a5969 + sha256: 99ac5063ef3250f8356a5013da9302c9fca64654db26a0ff26acafb2f9d7798f + manager: conda + name: libnetcdf + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.8.1-mpi_mpich_hcdf9059_2.tar.bz2 + version: 4.8.1 +- category: main + dependencies: + freexl: '>=1.0.6,<2.0a0' + geos: '>=3.11.0,<3.11.1.0a0' + libgcc-ng: '>=12' + librttopo: '>=1.1.0,<1.2.0a0' + libsqlite: '>=3.39.2,<4.0a0' + libstdcxx-ng: '>=12' + libxml2: '>=2.10.1,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + sqlite: '>=3.39.2,<4.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: d7f5e67dd5cd58da7b78489183e96070 + sha256: c24469f2f3e57b8acfad42b667652f7188b733b2a97cdb89b2aca376ced49851 + manager: conda + name: libspatialite + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.0.1-hd36657c_19.tar.bz2 + version: 5.0.1 +- category: main + dependencies: + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 8da7bbb53a6382b797d292016601baf9 + sha256: 6b334b5c56f42290f099cf39849ddc464f53a0257439833d2a9bf0a926811a33 + manager: conda + name: loguru + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/loguru-0.6.0-py39hf3d152e_1.tar.bz2 + version: 0.6.0 +- category: main + dependencies: + libgcc-ng: '>=12' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: c678e07e7862b3157fb9f6d908233ffa + sha256: 4261b334329ab4b974f9e56bca99567bf213b31feb26e6a36888cb0bb431d008 + manager: conda + name: markupsafe + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.1-py39hb9d737c_2.tar.bz2 + version: 2.1.1 +- category: main + dependencies: + libgcc-ng: '>=12' + mpich: '>=4.0.2,<5.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 278dadf837f97b29c78439f468bfb563 + sha256: 3a5e939b5ed2ee171df8804ce889dbe17f5485e19571866ced429544f0b32d9c + manager: conda + name: mpi4py + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/mpi4py-3.1.3-py39h32b9844_3.tar.bz2 + version: 3.1.3 +- category: main + dependencies: + python: '' + setuptools: '>=17.1' + six: '' + hash: + md5: 31d9e9be500e25ff0050bc9f57a6bcd7 + sha256: bd885bec8b012abf0c5ca5d6225caf0e88e5b2b0af8fa5a4e4d339604d3e9cd1 + manager: conda + name: munch + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: ba4f1c0466d4ba7f53090c150fc88434 + sha256: 7ddfc5cbec573d2a7c8e328b0f57b62bfd5295858f2475658a9f26c85933e235 + manager: conda + name: numpy + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.23.4-py39h3d75532_1.tar.bz2 + version: 1.23.4 +- category: main + dependencies: + pyparsing: '>=2.0.2,!=3.0.5' + python: '>=3.6' + hash: + md5: 71f1ab2de48613876becddd496371c85 + sha256: 8322a9e93e2e09fbf2103f0d37c9287b7b97387125abadd6db26686084893540 + manager: conda + name: packaging + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/packaging-21.3-pyhd8ed1ab_0.tar.bz2 + version: '21.3' +- category: main + dependencies: + fftw: '* mpi_mpich_*' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_mpich_*' + hypre: '>=2.25.0,<2.25.1.0a0' + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + metis: '>=5.1.0,<5.2.0a0' + mpich: '>=4.0.2,<5.0a0' + mumps-mpi: '>=5.2.1,<5.2.2.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + ptscotch: '>=6.0.9,<6.0.10.0a0' + scalapack: '>=2.2.0,<2.3.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + suitesparse: '>=5.10.1,<5.11.0a0' + superlu: '' + superlu_dist: '>=7.1.1,<8.0a0' + yaml: '>=0.2.5,<0.3.0a0' + hash: + md5: ad1504fd4b8353b83afb8fd07438ce2f + sha256: 356b8e2aed2918ee15de7385d78abd2331e68c643a16c817e915702875b3e707 + manager: conda + name: petsc + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/petsc-3.17.3-real_h6ce3b2e_100.tar.bz2 + version: 3.17.3 +- category: main + dependencies: + freetype: '>=2.10.4,<3.0a0' + jpeg: '>=9e,<10a' + lcms2: '>=2.12,<3.0a0' + libgcc-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + tk: '>=8.6.12,<8.7.0a0' + hash: + md5: 3b74a959f6a8008f5901de60b3572c09 + sha256: 607a85830e1c39ded9c825ab0fb24d0768a5c11314dc99957f10479cd2961936 + manager: conda + name: pillow + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pillow-9.2.0-py39hd5dbb17_2.tar.bz2 + version: 9.2.0 +- category: main + dependencies: + python: '>=3.7' + setuptools: '' + wheel: '' + hash: + md5: 6f4c6de9fed2a9bd8043283611b09587 + sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 + manager: conda + name: pip + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 + version: '22.3' +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + cairo: '>=1.16.0,<2.0.0a0' + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.10.4,<3.0a0' + gettext: '>=0.19.8.1,<1.0a0' + jpeg: '>=9e,<10a' + lcms2: '>=2.12,<3.0a0' + libcurl: '>=7.83.1,<8.0a0' + libgcc-ng: '>=12' + libglib: '>=2.72.1,<3.0a0' + libiconv: '>=1.16,<2.0.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + nss: '>=3.78,<4.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + poppler-data: '' + hash: + md5: 7ee8bd82f69b5b096b693f4484a56d8a + sha256: fcaf81d1bf884030f0034bcad921b705cf7cc126ac200e6621a57b213349e5af + manager: conda + name: poppler + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/poppler-22.04.0-h8b295ee_2.tar.bz2 + version: 22.04.0 +- category: main + dependencies: + certifi: '' + libgcc-ng: '>=12' + proj: '>=9.0.1,<9.0.2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 18648adb862018566fd43a2b65a00d03 + sha256: f6a91b415e909fb3deb8e6ce000595dce18122442df6aaa01c9d03c025f885df + manager: conda + name: pyproj + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.4.0-py39hdcf6798_0.tar.bz2 + version: 3.4.0 +- category: main + dependencies: + python: '>=3.6' + six: '>=1.5' + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + manager: conda + name: python-dateutil + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 + version: 2.8.2 +- category: main + dependencies: + libspatialindex: '>=1.9.3,<1.9.4.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: b3813b718ca1da036a48e3fe1db3edd8 + sha256: 7e07c1b55b86b64cc29edffdcfca6f2efe80cd63d1e508aedb4402558cd58119 + manager: conda + name: rtree + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rtree-1.0.1-py39hb102c33_1.tar.bz2 + version: 1.0.1 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + curl: '>=7.83.1,<8.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + openssl: '>=1.1.1o,<1.1.2a' + zlib: '>=1.2.12,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 4bcd1e6e70d09ebf8b03616b9db7d727 + sha256: 6f03fe10d131eca8a454096fc5581b8ccebe84872bc24a47172735aed9456303 + manager: conda + name: tiledb + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.9.5-h1e4a385_0.tar.bz2 + version: 2.9.5 +- category: main + dependencies: + libgcc-ng: '>=12' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 2e60b3ca3ebd70a7b3721f06465811bc + sha256: e105efbd962670747e23ac2adfa5098316fd21d696cd1d97c68776f52cfbe1e6 + manager: conda + name: unicodedata2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-14.0.0-py39hb9d737c_2.tar.bz2 + version: 14.0.0 +- category: main + dependencies: + cffi: '>=1.0.0' + libgcc-ng: '>=12' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: a639fdd9428d8b25f8326a3838d54045 + sha256: 293229afcd31e81626e5cfe0478be402b35d29b73aa421a49470645debda5019 + manager: conda + name: brotlipy + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/brotlipy-0.7.0-py39hb9d737c_1005.tar.bz2 + version: 0.7.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + numpy: '>=1.16' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 97056be8e1ca321deaaa996d72bfda23 + sha256: 3388c9a3331853c0a44b49c5dc780531e650fe123a1723dc70399c0279ced587 + manager: conda + name: contourpy + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.0.5-py39hf939315_1.tar.bz2 + version: 1.0.5 +- category: main + dependencies: + cffi: '>=1.12' + libgcc-ng: '>=12' + openssl: '>=1.1.1q,<1.1.2a' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 5336e6226db948a51ff5f5a48168ce2d + sha256: 08b4eaf59b5418fe115867c94955c5785a55ee065523d325ded56dc92f06a4f7 + manager: conda + name: cryptography + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-38.0.2-py39hd97740a_1.tar.bz2 + version: 38.0.2 +- category: main + dependencies: + fenics-libbasix: 0.5.1 heb3b609_0 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + numpy: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 9a6a61c3337a8d06735983357fcfc246 + sha256: bf4ffb3b0e7242c0f24b756ed53ac3c20ae6cf2408ce58cf2063316488487e1f + manager: conda + name: fenics-basix + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fenics-basix-0.5.1-py39hf939315_0.tar.bz2 + version: 0.5.1 +- category: main + dependencies: + numpy: '' + python: '>=3.7' + hash: + md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c + sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 + manager: conda + name: fenics-ufl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.2.0 +- category: main + dependencies: + brotli: '' + libgcc-ng: '>=12' + munkres: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + unicodedata2: '>=14.0.0' + hash: + md5: 7658749298bb85df259c525cb0223f6a + sha256: 4a5dabd750cadd0db35c4862b08bd07cf1eaaed4c72531a85da49799ebb0ea72 + manager: conda + name: fonttools + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.38.0-py39hb9d737c_0.tar.bz2 + version: 4.38.0 +- category: main + dependencies: + alsa-lib: '>=1.2.7.2,<1.2.8.0a0' + gettext: '>=0.19.8.1,<1.0a0' + gstreamer: 1.20.3 hd4edc92_2 + libgcc-ng: '>=12' + libglib: '>=2.72.1,<3.0a0' + libopus: '>=1.3.1,<2.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libstdcxx-ng: '>=12' + libvorbis: '>=1.3.7,<1.4.0a0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 58838c4ca7d1a5948f5cdcbb8170d753 + sha256: c56017548fbc40d230001890a788e6c09e877f7c1532f5773ad3dd678e3e98ae + manager: conda + name: gst-plugins-base + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.20.3-h57caac4_2.tar.bz2 + version: 1.20.3 +- category: main + dependencies: + cached-property: '' + hdf5: '>=1.12.1,<1.12.2.0a0' + libgcc-ng: '>=12' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 61b9b1070eeb06e15d9495397a7562a4 + sha256: 189f316b5d1989e685d146104357e82644b78baaa7b5c4d1681d30579a55aab7 + manager: conda + name: h5py + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.7.0-nompi_py39h63b1161_100.tar.bz2 + version: 3.7.0 +- category: main + dependencies: + numpy: '' + pillow: '>=8.3.2' + python: '>=3' + hash: + md5: 9d10b00d27b54836d40759608d558276 + sha256: 0f949184ba2b939c05c817b043566c616ea49e373989859e6cc47fd7aa8ea6fa + manager: conda + name: imageio + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/imageio-2.22.0-pyhfa7a67d_0.tar.bz2 + version: 2.22.0 +- category: main + dependencies: + markupsafe: '>=2.0' + python: '>=3.7' + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + manager: conda + name: jinja2 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + version: 3.1.2 +- category: main + dependencies: + __glibc: '>=2.17,<3.0.a0' + blosc: '>=1.21.1,<2.0a0' + cfitsio: '>=4.1.0,<4.1.1.0a0' + expat: '>=2.4.8,<3.0a0' + freexl: '>=1.0.6,<2.0a0' + geos: '>=3.11.0,<3.11.1.0a0' + geotiff: '>=1.7.1,<1.8.0a0' + giflib: '>=5.2.1,<5.3.0a0' + hdf4: '>=4.2.15,<4.3.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0' + icu: '>=70.1,<71.0a0' + jpeg: '>=9e,<10a' + json-c: '>=0.16,<0.17.0a0' + kealib: '>=1.4.15,<1.5.0a0' + libdap4: '>=3.20.6,<3.20.7.0a0' + libgcc-ng: '>=12' + libkml: '>=1.3.0,<1.4.0a0' + libnetcdf: '>=4.8.1,<4.8.2.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libpq: '>=14.4,<15.0a0' + libspatialite: '>=5.0.1,<5.1.0a0' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libuuid: '>=2.32.1,<3.0a0' + libwebp-base: '' + libxml2: '>=2.9.14,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openjpeg: '>=2.4.0,<3.0.0a0' + openssl: '>=1.1.1q,<1.1.2a' + pcre: '>=8.45,<9.0a0' + poppler: '>=22.4.0,<22.5.0a0' + postgresql: '' + proj: '>=9.0.1,<9.0.2.0a0' + sqlite: '>=3.39.0,<4.0a0' + tiledb: '>=2.9.5,<2.10.0a0' + xerces-c: '>=3.2.3,<3.3.0a0' + xz: '>=5.2.5,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 10cac2845fd24fc806382756a33617a6 + sha256: a02bdfd091c46b7c05e082eb6d3347e86adbbf079711bf5de0bf2639cf753709 + manager: conda + name: libgdal + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.5.1-h32640fd_1.tar.bz2 + version: 3.5.1 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0' + python-dateutil: '>=2.8.1' + python_abi: 3.9.* *_cp39 + pytz: '>=2020.1' + hash: + md5: d541bbe75ce0f2679344ead981b2f858 + sha256: 1d93baab64430dd00d9635ea60b4cdb57c285f831b047eeadfbc26e77668dc6f + manager: conda + name: pandas + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pandas-1.5.1-py39h4661b88_1.tar.bz2 + version: 1.5.1 +- category: main + dependencies: + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + mpich: '>=4.0.2,<5.0a0' + numpy: '>=1.19.5,<2.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 04f87e201b1d5d1cb4d8dcd54039da6c + sha256: 8442d1f6763cf7e9adae14c6b981ffb31eb4ad5e293b71f7ff21adea4c130ed8 + manager: conda + name: petsc4py + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/petsc4py-3.17.3-real_h016f20b_101.tar.bz2 + version: 3.17.3 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.4.0' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 0e7bfd30a1d1f75dc5c0d97457315d68 + sha256: fa2323e49b5a3aa40871fa94f240058c02952f44b0b3d89da55922ce6e21594c + manager: conda + name: scipy + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.9.3-py39hddc5342_0.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + asn1crypto: '>=1.5.1' + importlib-metadata: '>=1.0' + python: '>=3.7' + hash: + md5: a55dd716b2f5f2ac858fd301921b6044 + sha256: 80f4816e1ade059fba0a963d3c441af237311a9d1f441eeec8f86398d0f85888 + manager: conda + name: scramp + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/scramp-1.4.2-pyhd8ed1ab_0.tar.bz2 + version: 1.4.2 +- category: main + dependencies: + geos: '>=3.11.0,<3.11.1.0a0' + libgcc-ng: '>=12' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: b9e155ef6b1797cff35270cf1ac757f2 + sha256: efb9feb7e0f227f224112ad513d9dceef402d021b104fe6817daebe21bce9270 + manager: conda + name: shapely + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/shapely-1.8.5-py39h5b5020f_0.tar.bz2 + version: 1.8.5 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + mpich: '>=4.0.2,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + suitesparse: '>=5.10.1,<5.11.0a0' + hash: + md5: 225d5010803ca3b68fbd0d0598e27804 + sha256: 285b6adec7f0f61d095916e68b156da35884a466e4cca1be801abdd7337dc2ec + manager: conda + name: slepc + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/slepc-3.17.1-real_ha2e80f3_102.tar.bz2 + version: 3.17.1 +- category: main + dependencies: + numpy: '' + pyparsing: '>=2.1.6' + python: '' + hash: + md5: cb83a3d6ecf73f50117635192414426a + sha256: ebb8f5f9e362f186fb7d732e656f85c969b86309494436eba51cc3b8b96683f7 + manager: conda + name: snuggs + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-py_0.tar.bz2 + version: 1.4.7 +- category: main + dependencies: + jinja2: '' + python: '>=3' + setuptools: '' + six: '' + hash: + md5: d96c4ccb1e66b1c1f507dd12c226749a + sha256: 0b3368667d51dfe0c9d976c7cf8243cd766ec9013ba86fe81ea7e13d0b113b85 + manager: conda + name: branca + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/branca-0.5.0-pyhd8ed1ab_0.tar.bz2 + version: 0.5.0 +- category: main + dependencies: + cffi: '' + fenics-basix: 0.5.* + fenics-ufl: 2022.2.* + numpy: '' + python: '>=3.7' + setuptools: '' + hash: + md5: 2dcc01a5199492d95b197d7265f5336a + sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 + manager: conda + name: fenics-ffcx + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 + version: 0.5.0 +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + fenics-libbasix: '>=0.5.1,<0.5.2.0a0' + fenics-ufcx: '>=0.5.0,<0.5.1.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_mpich_*' + libadios2: '>=2.8.3,<2.8.4.0a0 mpi_mpich_*' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + mpich: '>=4.0.2,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + ptscotch: '>=6.0.9,<6.0.10.0a0' + pugixml: '>=1.11.4,<1.12.0a0' + slepc: '>=3.17.1,<3.18.0a0 real_*' + xtensor: '>=0.24.3,<0.25.0a0' + hash: + md5: 98c03fbae3f16e8c69cb14739f3ae23f + sha256: e9960955343e2a4df4dbedc51e587e4d07326e9c49c12c25a0a74de307ae3843 + manager: conda + name: fenics-libdolfinx + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fenics-libdolfinx-0.5.2-h6b5d60a_100.tar.bz2 + version: 0.5.2 +- category: main + dependencies: + hdf5: '>=1.12.1,<1.12.2.0a0' + libgcc-ng: '>=12' + libgdal: 3.5.1 h32640fd_1 + libstdcxx-ng: '>=12' + numpy: '>=1.19.5,<2.0a0' + openssl: '>=1.1.1q,<1.1.2a' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 261a81541d2972051b303c403536baf5 + sha256: 2ad649ae96c83b15a724d7b1287f9e619825de7c6d0325e4ee646b67b2f5c3b9 + manager: conda + name: gdal + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.5.1-py39hc691d54_1.tar.bz2 + version: 3.5.1 +- category: main + dependencies: + packaging: '' + pandas: '>=1.0.5' + pyproj: '>=2.6.1.post1' + python: '>=3.8' + shapely: '>=1.7,<2' + hash: + md5: 9e822916c45fddd55bdecc1f121f8143 + sha256: bd293b8538efc9667e2d3df6f0dfb9994262c7ce57a191e4b70acd2e38be37de + manager: conda + name: geopandas-base + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.0-pyha770c72_0.tar.bz2 + version: 0.12.0 +- category: main + dependencies: + certifi: '>=2020.06.20' + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + freetype: '>=2.12.1,<3.0a0' + kiwisolver: '>=1.0.1' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + numpy: '>=1.20.3,<2.0a0' + packaging: '>=20.0' + pillow: '>=6.2.0' + pyparsing: '>=2.2.1' + python: '>=3.9,<3.10.0a0' + python-dateutil: '>=2.7' + python_abi: 3.9.* *_cp39 + tk: '>=8.6.12,<8.7.0a0' + hash: + md5: bba979c35fde918243039efe64eda8ca + sha256: 0db9b889af7d3627424d50aaad9d3c30ef00a18776cc4676573a58851d2f7123 + manager: conda + name: matplotlib-base + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.6.1-py39hf9fd14e_0.tar.bz2 + version: 3.6.1 +- category: main + dependencies: + importlib-metadata: '>=1.0' + python: '>=3.7' + python-dateutil: '>=2.8.2' + scramp: '>=1.4.1' + hash: + md5: 5736218fec0be5f6f449dc353e8d76fc + sha256: d75c8222a33404dc5bae1c864dfc8106c90775c7f5b0bc8844b8728bd916af6d + manager: conda + name: pg8000 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/pg8000-1.29.2-pyhd8ed1ab_0.tar.bz2 + version: 1.29.2 +- category: main + dependencies: + cryptography: '>=38.0.0,<39' + python: '>=3.6' + hash: + md5: fbfa0a180d48c800f922a10a114a8632 + sha256: 42f04dded77ac2597108378d62b121697d0e982aba7b20a462a7239030563628 + manager: conda + name: pyopenssl + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2 + version: 22.1.0 +- category: main + dependencies: + __glibc: '>=2.17,<3.0.a0' + alsa-lib: '>=1.2.7.2,<1.2.8.0a0' + dbus: '>=1.13.6,<2.0a0' + expat: '>=2.4.8,<3.0a0' + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.12.1,<3.0a0' + gst-plugins-base: '>=1.20.3,<1.21.0a0' + gstreamer: '>=1.20.3,<1.21.0a0' + icu: '>=70.1,<71.0a0' + jpeg: '>=9e,<10a' + krb5: '>=1.19.3,<1.20.0a0' + libclang: '>=14.0.6,<15.0a0' + libclang13: '>=14.0.6' + libcups: '>=2.3.3,<2.4.0a0' + libevent: '>=2.1.10,<2.1.11.0a0' + libgcc-ng: '>=12' + libglib: '>=2.72.1,<3.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libpq: '>=14.5,<15.0a0' + libsqlite: '>=3.39.3,<4.0a0' + libstdcxx-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + libxkbcommon: '>=1.0.3,<2.0a0' + libxml2: '>=2.9.14,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + mysql-libs: '>=8.0.30,<8.1.0a0' + nspr: '>=4.32,<5.0a0' + nss: '>=3.78,<4.0a0' + openssl: '>=1.1.1q,<1.1.2a' + pulseaudio: '>=14.0,<14.1.0a0' + xcb-util: '' + xcb-util-image: '' + xcb-util-keysyms: '' + xcb-util-renderutil: '' + xcb-util-wm: '' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: abd0f27f5e84cd0d5ae14d22b08795d7 + sha256: 9eeeab35395e8a61e6dfd4949e8c8082dbe9736f4d1bda9b6910348edb97daca + manager: conda + name: qt-main + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.6-hc525480_0.tar.bz2 + version: 5.15.6 +- category: main + dependencies: + affine: '' + attrs: '' + certifi: '' + click: '>=4' + click-plugins: '' + cligj: '>=0.5' + libgcc-ng: '>=12' + libgdal: '>=3.5.1,<3.6.0a0' + libstdcxx-ng: '>=12' + numpy: '>=1.19.5,<2.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + setuptools: '>=0.9.8' + snuggs: '>=1.4.1' + hash: + md5: 81ca8bacb592d864ac7490df2ff13376 + sha256: fa4e3cc7d27eef4f1800c0404b1479e01dd71bf6323d3e519bbaf52d160efb78 + manager: conda + name: rasterio + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/rasterio-1.3.2-py39h082961e_0.tar.bz2 + version: 1.3.2 +- category: main + dependencies: + joblib: '>=1.0.0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + scipy: '' + threadpoolctl: '>=2.0.0' + hash: + md5: 52c40321f32e147c5a692bcab1b20a0b + sha256: b9e2b4e7ac53aab5ca479d1bfe323fd6578e461824666546864efc41e1aa2d30 + manager: conda + name: scikit-learn + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.1.2-py39he5e8d7e_0.tar.bz2 + version: 1.1.2 +- category: main + dependencies: + libgcc-ng: '>=12' + mpich: '>=4.0.2,<5.0a0' + numpy: '>=1.19.5,<2.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + petsc4py: 3.17.* + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + slepc: '>=3.17.1,<3.18.0a0 real_*' + hash: + md5: 4d4271bbacb93a32c1fc64121358553c + sha256: 2dd2bbdbc72782b4b4a05f12ec32594af0358178aa286bbf4624d9b7afaa6c61 + manager: conda + name: slepc4py + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/slepc4py-3.17.1-real_h954553d_103.tar.bz2 + version: 3.17.1 +- category: main + dependencies: + cffi: '' + fenics-basix: 0.5.* + fenics-ffcx: 0.5.* + fenics-libdolfinx: 0.5.2 h6b5d60a_100 + fenics-ufl: 2022.2.* + gxx_linux-64: 10.* + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_mpich_*' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + mpi4py: '' + mpich: '>=4.0.2,<5.0a0' + numpy: '' + petsc: '>=3.17.3,<3.18.0a0 real_*' + petsc4py: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + slepc: '>=3.17.1,<3.18.0a0 real_*' + slepc4py: '' + hash: + md5: c53726709d3d5dfb83cab0284975d2a9 + sha256: fe4f6c27f272a34cce7a817be69952ad8e1f1e3cb1f08853a9230d3ca6172ccb + manager: conda + name: fenics-dolfinx + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fenics-dolfinx-0.5.2-py39h81029ba_100.tar.bz2 + version: 0.5.2 +- category: main + dependencies: + attrs: '>=17' + click: '>=4.0' + click-plugins: '>=1.0' + cligj: '>=0.5' + gdal: '' + libgcc-ng: '>=12' + libgdal: '>=3.5.0,<3.6.0a0' + libstdcxx-ng: '>=12' + munch: '' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + setuptools: '' + shapely: '' + six: '>=1.7' + hash: + md5: d3fcd76578f901f49f2b9f790bb140a0 + sha256: 1171f67b332d86aab2618abee35327bea903ac8aecc8dfffdf7617c5241e8e08 + manager: conda + name: fiona + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/fiona-1.8.21-py39h54775ec_2.tar.bz2 + version: 1.8.21 +- category: main + dependencies: + networkx: '' + numpy: '>=1.3' + pandas: '>=1.0' + python: '>=3.5' + scikit-learn: '' + scipy: '>=1.0' + hash: + md5: 908bbfb54da154042c5cbda77b37a3d1 + sha256: 1435305fb0a127b3154e76c0836d44526eeb93e80bd37596128d7ad8fb196d97 + manager: conda + name: mapclassify + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.4.3-pyhd8ed1ab_0.tar.bz2 + version: 2.4.3 +- category: main + dependencies: + brotlipy: '>=0.6.0' + certifi: '' + cryptography: '>=1.3.4' + idna: '>=2.0.0' + pyopenssl: '>=0.14' + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: <4.0 + hash: + md5: 0738978569b10669bdef41c671252dd1 + sha256: 57a823b83428156aa2bc18f34159a744657c9bd117a125ca4559b0518a2e4fa2 + manager: conda + name: urllib3 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.11-pyhd8ed1ab_0.tar.bz2 + version: 1.26.11 +- category: main + dependencies: + double-conversion: '>=3.2.0,<3.3.0a0' + eigen: '' + expat: '>=2.4.8,<3.0a0' + ffmpeg: '>=4.4.2,<5.0a0' + freetype: '>=2.10.4,<3.0a0' + gl2ps: '>=1.4.2,<1.4.3.0a0' + glew: '>=2.1.0,<2.2.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0' + jpeg: '>=9e,<10a' + jsoncpp: '>=1.9.5,<1.9.6.0a0' + libgcc-ng: '>=12' + libnetcdf: '>=4.8.1,<4.8.2.0a0' + libogg: '>=1.3.4,<1.4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=12' + libtheora: '>=1.1.1,<1.2.0a0' + libtiff: '>=4.4.0,<5.0a0' + libxml2: '>=2.9.14,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + loguru: '' + lz4-c: '>=1.9.3,<1.10.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + pugixml: '>=1.11.4,<1.12.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + qt-main: '>=5.15.4,<5.16.0a0' + sqlite: '>=3.39.0,<4.0a0' + tbb: '>=2021.5.0' + tbb-devel: '' + tk: '>=8.6.12,<8.7.0a0' + utfcpp: '' + xorg-libxt: '' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 9d8e4da9652a9363a9d8223119a6cdd4 + sha256: b20bc83c9ec01790c329ea8b17fc3a63bbb8fe9174c6ab926443564b95fb34d5 + manager: conda + name: vtk + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.1.0-qt_py39h105b9e9_211.tar.bz2 + version: 9.1.0 +- category: main + dependencies: + jmespath: '>=0.7.1,<2.0.0' + python: '>=3.7' + python-dateutil: '>=2.1,<3.0.0' + urllib3: '>=1.25.4,<1.27' + hash: + md5: 3435405683a6e8952d941638a8c24fc0 + sha256: 1e6c560869547e57c0dbf9c59cc8f7412dd6ec56cf529c1a1cc520355dfb8dc9 + manager: conda + name: botocore + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.1-pyhd8ed1ab_0.tar.bz2 + version: 1.28.1 +- category: main + dependencies: + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freeimage: '>=3.18.0,<3.19.0a0' + freetype: '>=2.12.1,<3.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + rapidjson: '' + vtk: '>=9.1.0,<9.1.1.0a0' + xorg-libxt: '' + hash: + md5: 19bef4b356910b9405bd35a77fae3b5e + sha256: d7fbff068c72b86d8d5cec40075ac5ff9a7ba47cc2c38222360833124254b41e + manager: conda + name: occt + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/occt-7.6.3-h665cfa0_0.tar.bz2 + version: 7.6.3 +- category: main + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<3' + idna: '>=2.5,<4' + python: '>=3.7,<4.0' + urllib3: '>=1.21.1,<1.27' + hash: + md5: 089382ee0e2dc2eae33a04cc3c2bddb0 + sha256: b45d0da6774c8231ab4fef0427b3050e7c54c84dfe453143dd4010999c89e050 + manager: conda + name: requests + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.28.1-pyhd8ed1ab_1.tar.bz2 + version: 2.28.1 +- category: main + dependencies: + branca: '>=0.3.0' + jinja2: '>=2.9' + numpy: '' + python: '>=3.6' + requests: '' + hash: + md5: c69e368f97d9939621daebe97dbbd82d + sha256: 73c5aad58d59df4f4991e7f3bceda5938831c3ee74221899a14f7eaefb8af5de + manager: conda + name: folium + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/folium-0.13.0-pyhd8ed1ab_0.tar.bz2 + version: 0.13.0 +- category: main + dependencies: + fltk: '>=1.3.8,<1.4.0a0' + gmp: '>=6.2.1,<7.0a0' + jpeg: '>=9e,<10a' + libblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libglu: '' + liblapack: '>=3.9.0,<4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + occt: '>=7.6.2,<7.7.0a0' + xorg-libx11: '' + xorg-libxext: '' + xorg-libxfixes: '' + xorg-libxmu: '' + xorg-libxrender: '' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 0c38a338dfa3224ba557d0ecdfc03e48 + sha256: 87ea20bb51cbb6b0bb042ae715fc8c47617ee0f9229f000d7c232c6a22410b1e + manager: conda + name: gmsh + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/gmsh-4.10.5-hc719622_0.tar.bz2 + version: 4.10.5 +- category: main + dependencies: + botocore: '>=1.12.36,<2.0a.0' + python: '>=3.7' + hash: + md5: 900e74d8547fbea3af028937df28ed77 + sha256: 0e459ed32b00e96b62c2ab7e2dba0135c73fd980120fe1a7bd49901f2d50760f + manager: conda + name: s3transfer + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/s3transfer-0.6.0-pyhd8ed1ab_0.tar.bz2 + version: 0.6.0 +- category: main + dependencies: + botocore: '>=1.28.1,<1.29.0' + jmespath: '>=0.7.1,<2.0.0' + python: '>=3.7' + s3transfer: '>=0.6.0,<0.7.0' + hash: + md5: 5512a9ee1a05c62d7ec13f432bd7014c + sha256: 9779dd07bb1c1f700a32c9ea771552ee6de8e5d83f84df63d1f37870101a70ac + manager: conda + name: boto3 + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.1-pyhd8ed1ab_0.tar.bz2 + version: 1.25.1 +- category: main + dependencies: + fiona: '' + folium: '' + geopandas-base: 0.12.0 pyha770c72_0 + mapclassify: '>=2.4.0' + matplotlib-base: '' + python: '>=3.8' + rtree: '' + xyzservices: '' + hash: + md5: 79d4a86d08b1ad415dcb24b3241593cf + sha256: 3dbba0065f1344e62795b085a1ca1369c8909a0432bb669bf7955630e95cfb5f + manager: conda + name: geopandas + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.0-pyhd8ed1ab_0.tar.bz2 + version: 0.12.0 +- category: main + dependencies: + gmsh: '>=4.10.5,<4.10.6.0a0' + numpy: '' + python: '' + hash: + md5: 6c18c6322743fa7d5daaf4735c1905af + sha256: 57c72e59283d4dcdbedb0b0f86bb4d66dded5bb16be975411817b5c7a3f9a811 + manager: conda + name: python-gmsh + optional: false + platform: linux-64 + url: https://conda.anaconda.org/conda-forge/noarch/python-gmsh-4.10.5-h57928b3_0.tar.bz2 + version: 4.10.5 +- category: main + dependencies: {} + hash: + sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 + manager: pip + name: async-timeout + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl + version: 3.0.1 +- category: main + dependencies: {} + hash: + sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c + manager: pip + name: attrs + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl + version: 22.1.0 +- category: main + dependencies: {} + hash: + sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 + manager: pip + name: cachetools + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl + version: 4.2.4 +- category: main + dependencies: {} + hash: + sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 + manager: pip + name: certifi + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl + version: 2022.9.24 +- category: main + dependencies: {} + hash: + sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 + manager: pip + name: chardet + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl + version: 3.0.4 +- category: main + dependencies: {} + hash: + sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f + manager: pip + name: charset-normalizer + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl + version: 2.1.1 +- category: main + dependencies: {} + hash: + sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 + manager: pip + name: colorama + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl + version: 0.4.6 +- category: main + dependencies: {} + hash: + sha256: 327e44184826cd1c72bcd4a9b2c4badfd29501333e158460c7d3ad8b7f066588 + manager: pip + name: crc32c + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/df/9e/3816f7cb6049d9983b31dc047e1d276d3c2e5dc78b7b34b717b7904609de/crc32c-2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: '2.3' +- category: main + dependencies: {} + hash: + sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 + manager: pip + name: cycler + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl + version: 0.11.0 +- category: main + dependencies: {} + hash: + sha256: a8f059979a964a4559e15ae246af0871a00aa68049891e045ecda0f4bfc28768 + manager: pip + name: deflate + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/76/1d/39cf948ae260314919458f26553fa83774a6d39bbe4b9816b7e67a03ac22/deflate-0.3.0-cp39-cp39-manylinux2010_x86_64.whl + version: 0.3.0 +- category: main + dependencies: {} + hash: + sha256: a07ffd2351b8c678dfc4a856a3005f8067aea51d6ba6c700796a4d9e280f39f0 + manager: pip + name: dill + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/be/e3/a84bf2e561beed15813080d693b4b27573262433fced9c1d1fea59e60553/dill-0.3.6-py3-none-any.whl + version: 0.3.6 +- category: main + dependencies: {} + hash: + sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff + manager: pip + name: distro + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl + version: 1.8.0 +- category: main + dependencies: {} + hash: + sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d + manager: pip + name: future + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz + version: 0.18.2 +- category: main + dependencies: {} + hash: + sha256: e1674e4307fa3024fc897ca774e9c7562c957af85df55efe2988ed9056dc4e57 + manager: pip + name: google-crc32c + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/1e/a2/b1de9a4f22fdd4ad34e084555a4a34da430ee69a47b71fff23f3309d6abf/google_crc32c-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.5.0 +- category: main + dependencies: {} + hash: + sha256: 7cf37343e43404699d58808e51f347f57efd3010cc7cee134cdb9141bd1ad9ea + manager: pip + name: greenlet + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/8b/e2/07206a72c1660ce801d2f1635c1314a3706592d35564e4f75d27c4c426eb/greenlet-1.1.3.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.1.3.post0 +- category: main + dependencies: {} + hash: + sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 + manager: pip + name: idna + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl + version: '3.4' +- dependencies: {} + hash: + sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f + manager: pip + name: jmespath + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl + version: 0.10.0 +- category: main + dependencies: {} + hash: + sha256: 7c43e1e1206cd421cd92e6b3280d4385d41d7166b3ed577ac20444b6995a445f + manager: pip + name: kiwisolver + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/a4/36/c414d75be311ce97ef7248edcc4fc05afae2998641bf6b592d43a9dee581/kiwisolver-1.4.4-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl + version: 1.4.4 +- category: main + dependencies: {} + hash: + sha256: bfba7c6d5d7c9099ba21f84662b037a0ffd4a5e6b26ac07d19e423e6fdf965a9 + manager: pip + name: multidict + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/b3/2d/d2bb7c2ac3bc4c1c60f9b82dde1bb084d074cf7a844f7f377477dc35de9b/multidict-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 6.0.2 +- category: main + dependencies: {} + hash: + sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 + manager: pip + name: nest-asyncio + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl + version: 1.5.6 +- category: main + dependencies: {} + hash: + sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d + manager: pip + name: networkx + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl + version: 2.8.7 +- category: main + dependencies: {} + hash: + sha256: 4f5a9bc5bc4d730153529cb0584c63ff286d50663ccd48c9435423660b1bb12d + manager: pip + name: orjson + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/5a/49/c27f8bc24877b4e9e988882c31ae94b33d0af426ccd7fe15ee2aa1b7d7be/orjson-3.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 3.8.1 +- category: main + dependencies: {} + hash: + sha256: 9a54614049a18a2d6fe156e68e188da02a046a4a93cf24f373bffd977e943421 + manager: pip + name: pillow + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/c1/d2/169e77ffa99a04f6837ff860b022fa1ea925e698e1c544c58268c8fd2afe/Pillow-9.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 9.2.0 +- category: main + dependencies: {} + hash: + sha256: 56fe2f099ecd8a557b8948082504492de90e8598c34733c9b1fdeca8f7b6de61 + manager: pip + name: pox + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/7d/ee/93fb2380de1458a50c44b8aa65c6f111df1103c3d4fbd74b70f51745e081/pox-0.3.2-py3-none-any.whl + version: 0.3.2 +- category: main + dependencies: {} + hash: + sha256: f355d2caeed8bd7c9e4a860c471f31f7e66d1ada2791ab5458ea7dca15a51e41 + manager: pip + name: ppft + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/0f/c1/dd740386023b1472d2635db9d8f7107024d9931cc8c01b37b48a85eb3811/ppft-1.7.6.6-py3-none-any.whl + version: 1.7.6.6 +- category: main + dependencies: {} + hash: + sha256: e575c57dc8b5b2b2caa436c16d44ef6981f2235eb7179bfc847557886376d740 + manager: pip + name: protobuf + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/fe/00/2bd2cb913a9b69b1379f1c18b6cae88b9e5f337a44b9e84b7c6bf0962c83/protobuf-4.21.9-cp37-abi3-manylinux2014_x86_64.whl + version: 4.21.9 +- category: main + dependencies: {} + hash: + sha256: e59137cdb970249ae60be2a49774c6dfb015bd0403f05af1fe61862e9626642d + manager: pip + name: psycopg2-binary + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/62/25/5b84c484aefa78f91366eea8b778de797681a5bc626b569555011874de58/psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 2.9.5 +- category: main + dependencies: {} + hash: + sha256: 39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d + manager: pip + name: pyasn1 + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/62/1e/a94a8d635fa3ce4cfc7f506003548d0a2447ae76fd5ca53932970fe3053f/pyasn1-0.4.8-py2.py3-none-any.whl + version: 0.4.8 +- category: main + dependencies: {} + hash: + sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc + manager: pip + name: pyparsing + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl + version: 3.0.9 +- category: main + dependencies: {} + hash: + sha256: 6bc66318fb7ee012071b2792024564973ecc80e9522842eb4e17743604b5e045 + manager: pip + name: pyrsistent + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/41/cb/733dc14ca2ca17768ea28254b95dbc98f398e46dbf4dba94d4fac491af6e/pyrsistent-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 0.18.1 +- category: main + dependencies: {} + hash: + sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 + manager: pip + name: pytz + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl + version: '2022.5' +- category: main + dependencies: {} + hash: + sha256: 40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0 + manager: pip + name: pyyaml + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/12/fc/a4d5a7554e0067677823f7265cb3ae22aed8a238560b5133b58cda252dad/PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl + version: '6.0' +- category: main + dependencies: {} + hash: + sha256: a7b301ff08055d73223058b5c46c55638917f04d21577c95e00e0c4d79201a6b + manager: pip + name: ruamel.yaml.clib + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/35/bc/a1f58a339ffe891d92492f47b1dfa90b0957ccf8ad11f35f653a1a6b8c4e/ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl + version: 0.2.7 +- category: main + dependencies: {} + hash: + sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 + manager: pip + name: semver + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl + version: 2.13.0 +- category: main + dependencies: {} + hash: + sha256: ffaa51d88a75048bc759f6147c87695987914764ac411095f63c0d4ebde2365b + manager: pip + name: simpleitk + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/43/b4/7320b9731bd6e2003158a9485b2f0847fbbeb21bc02b96d4630826877ec5/SimpleITK-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 2.2.0 +- category: main + dependencies: {} + hash: + sha256: b09bc62e5193e31d7f9876220fb429ec13a6a181a24d897b9edfbbdbcd678851 + manager: pip + name: simplejson + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/3c/c5/ff45f429e0570d873472891bf88f89432b7e5cc83e18e3ef365fdd8f1d44/simplejson-3.17.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl + version: 3.17.6 +- category: main + dependencies: {} + hash: + sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 + manager: pip + name: six + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl + version: 1.16.0 +- category: main + dependencies: {} + hash: + sha256: 35525cd47f82830069f0d6b73f7eb83bc5b73ee2fff0437952cedf98b27653ac + manager: pip + name: tenacity + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/a5/94/933ce16d18450ccf518a6da5bd51418611e8776b992070b9f40b2f9cedff/tenacity-8.1.0-py3-none-any.whl + version: 8.1.0 +- category: main + dependencies: {} + hash: + sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e + manager: pip + name: typing-extensions + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl + version: 4.4.0 +- dependencies: {} + hash: + sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 + manager: pip + name: urllib3 + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl + version: 1.26.12 +- category: main + dependencies: {} + hash: + sha256: 2666401939cdaa5f4e0c08cf7f20c9b21423b95e88f4675b1443973bdb080c42 + manager: pip + name: zope.event + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/9e/85/b45408c64f3b888976f1d5b37eed8d746b8d5729a66a49ec846fda27d371/zope.event-4.5.0-py2.py3-none-any.whl + version: 4.5.0 +- category: main + dependencies: {} + hash: + sha256: d80f6236b57a95eb19d5e47eb68d0296119e1eff6deaa2971ab8abe3af918420 + manager: pip + name: zope.interface + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/5f/b3/20582bebefed85d915a0e9412fc699451d1e42f096463ce897db3c272fa5/zope.interface-5.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl + version: 5.5.0 +- category: main + dependencies: + greenlet: '>=1.1.3,<2.0' + zope.event: '*' + zope.interface: '*' + hash: + sha256: 0cafb8f5399224990a5329bca3606bf399ee3604ae711b2d9238129b44551ad5 + manager: pip + name: gevent + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/45/f1/1119e3f7809b80e3e71a37fe6a1084779f28c91719059d22c95fcb2c98eb/gevent-22.10.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl + version: 22.10.1 +- category: main + dependencies: + numpy: '>=1.7.1' + hash: + sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 + manager: pip + name: glymur + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz + version: 0.8.19 +- category: main + dependencies: + google-crc32c: '>=1.0,<2.0dev' + hash: + sha256: 2aa004c16d295c8f6c33b2b4788ba59d366677c0a25ae7382436cb30f776deaa + manager: pip + name: google-resumable-media + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/4f/8e/5f42ac809ad8bccca7060132a274d714fbf4e2ef8f2424ef2301a2dbc4fb/google_resumable_media-2.4.0-py2.py3-none-any.whl + version: 2.4.0 +- category: main + dependencies: + protobuf: '>=3.15.0,<5.0.0dev' + hash: + sha256: 8eb2cbc91b69feaf23e32452a7ae60e791e09967d81d4fcc7fc388182d1bd394 + manager: pip + name: googleapis-common-protos + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e2/fd/d9efa2085bd762fba3a637eb3e36d76d72eb6e083d170aeaca65a75f1f9c/googleapis_common_protos-1.56.4-py2.py3-none-any.whl + version: 1.56.4 +- dependencies: + numpy: '*' + pillow: '>=8.3.2' + hash: + sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 + manager: pip + name: imageio + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl + version: 2.22.2 +- category: main + dependencies: + attrs: '>=17.4.0' + pyrsistent: '>=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2' + hash: + sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 + manager: pip + name: jsonschema + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl + version: 4.16.0 +- category: main + dependencies: + dill: '>=0.3.6' + hash: + sha256: 63cee628b74a2c0631ef15da5534c8aedbc10c38910b9c8b18dcd327528d1ec7 + manager: pip + name: multiprocess + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/6a/f4/fbeb03ef7abdda54db4a6a75c971b88ab73d724ff09e3275cc1e99f1c946/multiprocess-0.70.14-py39-none-any.whl + version: 0.70.14 +- category: main + dependencies: + pyparsing: '>=2.0.2,<3.0.5 || >3.0.5' + hash: + sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 + manager: pip + name: packaging + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl + version: '21.3' +- category: main + dependencies: + numpy: '>=1.4' + six: '*' + hash: + sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 + manager: pip + name: patsy + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl + version: 0.5.3 +- category: main + dependencies: + pyasn1: '>=0.4.6,<0.5.0' + hash: + sha256: a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74 + manager: pip + name: pyasn1-modules + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/95/de/214830a981892a3e286c3794f41ae67a4495df1108c3da8a9f62159b9a9d/pyasn1_modules-0.2.8-py2.py3-none-any.whl + version: 0.2.8 +- category: main + dependencies: + numpy: '>=1.11.1' + hash: + sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 + manager: pip + name: pynrrd + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl + version: 0.4.3 +- category: main + dependencies: + six: '>=1.5' + hash: + sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 + manager: pip + name: python-dateutil + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl + version: 2.8.2 +- category: main + dependencies: + numpy: '>=1.17.3' + hash: + sha256: 71ab30f51ee4470741bb55fc6b197b4a2b612232e30f6ac069106f0156342356 + manager: pip + name: pywavelets + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/5a/98/4549479a32972bdfdd5e75e168219e97f4dfaee535a8308efef7291e8398/PyWavelets-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.4.1 +- category: main + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<3' + idna: '>=2.5,<4' + urllib3: '>=1.21.1,<1.27' + hash: + sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 + manager: pip + name: requests + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl + version: 2.28.1 +- category: main + dependencies: + pyasn1: '>=0.1.3' + hash: + sha256: 90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7 + manager: pip + name: rsa + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl + version: '4.9' +- category: main + dependencies: + ruamel.yaml.clib: '>=0.2.6' + hash: + sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 + manager: pip + name: ruamel.yaml + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl + version: 0.17.21 +- category: main + dependencies: + numpy: '>=1.18.5,<1.26.0' + hash: + sha256: c68db6b290cbd4049012990d7fe71a2abd9ffbe82c0056ebe0f01df8be5436b0 + manager: pip + name: scipy + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/bb/b7/380c9e4cd71263f03d16f8a92c0e44c9bdef38777e1a7dde1f47ba996bac/scipy-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.9.3 +- category: main + dependencies: + greenlet: '!=0.4.17' + hash: + sha256: 2fd49af453e590884d9cdad3586415922a8e9bb669d874ee1dc55d2bc425aacd + manager: pip + name: sqlalchemy + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/a0/e0/ea3b6d042613667146bae2c9c2c0666f971a87dbf1cb2d3fc2c10a6c696c/SQLAlchemy-1.4.42-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.4.42 +- category: main + dependencies: + colorama: '*' + hash: + sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 + manager: pip + name: tqdm + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl + version: 4.64.1 +- category: main + dependencies: + idna: '>=2.0' + multidict: '>=4.0' + hash: + sha256: 3d1a50e461615747dd93c099f297c1994d472b0f4d2db8a64e55b1edf704ec1c + manager: pip + name: yarl + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/87/27/f99c22607862ae77d76b31e2fcf72f88c5c97aa342beaac12963844b9f34/yarl-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.8.1 +- category: main + dependencies: + cffi: '>=1.11' + hash: + sha256: c990063664c08169c84474acecc9251ee035871589025cac47c060ff4ec4bc1a + manager: pip + name: zstandard + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/ad/5d/f5a58bf02373ac06a52339c8384ec669b605545fdb504cf2a1999ea5bbce/zstandard-0.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 0.18.0 +- category: main + dependencies: + async-timeout: '>=3.0,<4.0' + attrs: '>=17.3.0' + chardet: '>=2.0,<4.0' + multidict: '>=4.5,<7.0' + typing-extensions: '>=3.6.5' + yarl: '>=1.0,<2.0' + hash: + sha256: cc31e906be1cc121ee201adbdf844522ea3349600dd0a40366611ca18cd40e81 + manager: pip + name: aiohttp + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/85/ca/2dab75b6961e3bdfa4c0a6ad50a5f439f4ff351a0295f584300b9cec95ca/aiohttp-3.7.4-cp39-cp39-manylinux2014_x86_64.whl + version: 3.7.4 +- dependencies: + jmespath: '>=0.7.1,<1.0.0' + python-dateutil: '>=2.1,<3.0.0' + urllib3: '>=1.25.4,<1.27' + hash: + sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b + manager: pip + name: botocore + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl + version: 1.20.112 +- category: main + dependencies: + cachetools: '>=2.0.0,<6.0' + pyasn1-modules: '>=0.2.1' + rsa: '>=3.1.4,<5' + six: '>=1.9.0' + hash: + sha256: 99510e664155f1a3c0396a076b5deb6367c52ea04d280152c85ac7f51f50eb42 + manager: pip + name: google-auth + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/98/dc/ab7e2156ec6a33c66d85986178abc7944f40804d7558cd544ccb114af6a9/google_auth-2.13.0-py2.py3-none-any.whl + version: 2.13.0 +- category: main + dependencies: + packaging: '>=17.0' + hash: + sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 + manager: pip + name: marshmallow + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl + version: 3.18.0 +- dependencies: + cycler: '>=0.10' + kiwisolver: '>=1.0.1' + numpy: '>=1.16' + pillow: '>=6.2.0' + pyparsing: '>=2.2.1' + python-dateutil: '>=2.7' + hash: + sha256: 956c8849b134b4a343598305a3ca1bdd3094f01f5efc8afccdebeffe6b315247 + manager: pip + name: matplotlib + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/58/ef/50b17a043045c3fc62b20f2cab1973e21f7beb7d3897ab1fb026aea00fb2/matplotlib-3.4.2-cp39-cp39-manylinux1_x86_64.whl + version: 3.4.2 +- category: main + dependencies: + numpy: '>=1.13.3' + packaging: '*' + hash: + sha256: 828926f5d4dc9ace2bebd2eec56bee852518afa31e6df175d1706e6631dfd1a2 + manager: pip + name: numexpr + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/b7/e3/671625af5597609a413c1c80d11b89de0064549a4adc3e2e5ea5edcae8e5/numexpr-2.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 2.8.3 +- category: main + dependencies: + numpy: '>=1.20.3' + python-dateutil: '>=2.8.1' + pytz: '>=2020.1' + hash: + sha256: b156a971bc451c68c9e1f97567c94fd44155f073e3bceb1b0d195fd98ed12048 + manager: pip + name: pandas + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/c9/80/207c30c09d0b650214f7826227d32236e3259e2ad2b8e0075b3feae4266c/pandas-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 1.5.1 +- category: main + dependencies: + dill: '>=0.3.6' + multiprocess: '>=0.70.14' + pox: '>=0.3.2' + ppft: '>=1.7.6.6' + hash: + sha256: b1f5a79b1c79a594330d451832642ee5bb61dd77dc75ba9e5c72087c77e8994c + manager: pip + name: pathos + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/0a/97/56b396300e5832bb95abe28944c1b8a0098ce179dce131a26e5d0e6daa05/pathos-0.3.0-py3-none-any.whl + version: 0.3.0 +- category: main + dependencies: + requests: '>=2.0.1,<3.0.0' + hash: + sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 + manager: pip + name: requests-toolbelt + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl + version: 0.10.1 +- category: main + dependencies: + distro: '*' + packaging: '*' + hash: + sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 + manager: pip + name: scikit-build + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl + version: 0.15.0 +- category: main + dependencies: + marshmallow: '>=3.0.0,<4.0' + numpy: '*' + pyyaml: '*' + hash: + sha256: ba1d04538be52cdd2b9460ea7495094aa3f1215429955ebbfc50381d4f062bac + manager: pip + name: argschema + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/eb/6b/312bcd2367aa474193afa852a3a5b75d6f706a2787a2e35537c277038c3e/argschema-3.0.1.tar.gz + version: 3.0.1 +- category: main + dependencies: + google-auth: '>=1.25.0,<3.0dev' + googleapis-common-protos: '>=1.56.2,<2.0dev' + protobuf: '>=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 + || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 + || >4.21.5,<5.0.0dev' + requests: '>=2.18.0,<3.0.0dev' + hash: + sha256: 34f24bd1d5f72a8c4519773d99ca6bf080a6c4e041b4e9f024fe230191dda62e + manager: pip + name: google-api-core + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/15/fb/b641357b0f8fc540c766bc8f66048de0398d0a3e0cad7c4a08e2fbee733a/google_api_core-2.10.2-py3-none-any.whl + version: 2.10.2 +- category: main + dependencies: + h5py: '>=2.10,<4' + jsonschema: '>=2.6.0,<5' + numpy: '>=1.16,<1.24' + pandas: '>=1.0.5,<2' + ruamel.yaml: '>=0.16,<1' + scipy: '>=1.1,<2' + hash: + sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d + manager: pip + name: hdmf + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl + version: 3.4.6 +- dependencies: + botocore: '>=1.12.36,<2.0a.0' + hash: + sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 + manager: pip + name: s3transfer + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl + version: 0.3.7 +- category: main + dependencies: + imageio: '>=2.3.0' + matplotlib: '>=2.0.0,<3.0.0 || >3.0.0' + networkx: '>=2.0' + pillow: '>=4.3.0' + pywavelets: '>=0.4.0' + scipy: '>=0.19.0' + hash: + sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c + manager: pip + name: scikit-image + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz + version: 0.16.2 +- category: main + dependencies: + matplotlib: '>=3.1,<3.6.1 || >3.6.1' + numpy: '>=1.17' + pandas: '>=0.25' + hash: + sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 + manager: pip + name: seaborn + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl + version: 0.12.1 +- category: main + dependencies: + numpy: '>=1.17' + pandas: '>=0.25' + patsy: '>=0.5.2' + scipy: '>=1.3' + hash: + sha256: b29ab5b4f5f182afbf8c6e3889cfcd438887fdb59e2d5452d99c7154e8af3926 + manager: pip + name: statsmodels + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/35/c8/2ab156d377e8dac8fb0b5848b7aa5e2419742b0c9510ad857c86574b641b/statsmodels-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + version: 0.13.0 +- category: main + dependencies: + numexpr: '>=2.6.2' + numpy: '>=1.9.3' + hash: + sha256: dedb959c00ac9e84562a69e80fa858d7aa06d91f96c6cb8cccbbbaf7a879436b + manager: pip + name: tables + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e7/c3/4a4b20a4f114927f00892e3ef2a12d59be61df803e6d9f2be340e4002d92/tables-3.6.1-cp39-cp39-manylinux2010_x86_64.whl + version: 3.6.1 +- category: main + dependencies: + numpy: '>=1.15' + pandas: '>=0.25' + hash: + sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d + manager: pip + name: xarray + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl + version: 0.15.1 +- dependencies: + botocore: '>=1.20.21,<1.21.0' + jmespath: '>=0.7.1,<1.0.0' + s3transfer: '>=0.3.0,<0.4.0' + hash: + sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 + manager: pip + name: boto3 + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl + version: 1.17.21 +- category: main + dependencies: + h5py: '>=2.10' + numpy: '*' + pandas: '*' + pynrrd: '*' + scikit-image: '*' + scipy: '*' + tqdm: '*' + hash: + sha256: a15a09811616d7a7b7516a7da18be45d392d2c6c21664068d2a06394eff3baf6 + manager: pip + name: ccf-streamlines + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/07/d2/6dfeaf0b58fdbb9a0e150cb3814b81d193644a19774c74af1a87d268110a/ccf_streamlines-1.0.0-py3-none-any.whl + version: 1.0.0 +- category: main + dependencies: + google-api-core: '>=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev' + google-auth: '>=1.25.0,<3.0dev' + hash: + sha256: 8417acf6466be2fa85123441696c4badda48db314c607cf1e5d543fa8bdc22fe + manager: pip + name: google-cloud-core + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/ac/4d/bae84e736080ed465a6b02e9f447c89c60c00fcdade2eb6911fecf3f46aa/google_cloud_core-2.3.2-py2.py3-none-any.whl + version: 2.3.2 +- category: main + dependencies: + h5py: '>=2.10,<4' + hdmf: '>=3.4.2,<4' + numpy: '>=1.16,<1.24' + pandas: '>=1.1.5,<2' + python-dateutil: '>=2.7.3,<3' + hash: + sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f + manager: pip + name: pynwb + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl + version: 2.2.0 +- category: main + dependencies: + google-api-core: '>=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev' + google-auth: '>=1.25.0,<3.0dev' + google-cloud-core: '>=2.3.0,<3.0dev' + google-resumable-media: '>=2.3.2' + requests: '>=2.18.0,<3.0.0dev' + hash: + sha256: 19a26c66c317ce542cea0830b7e787e8dac2588b6bfa4d3fd3b871ba16305ab0 + manager: pip + name: google-cloud-storage + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/b3/bf/ae046b7499480a2d84f3385a5abe198122eae338ad224c7f2b6a8a4b48ff/google_cloud_storage-2.5.0-py2.py3-none-any.whl + version: 2.5.0 +- category: main + dependencies: + pynwb: '>=1.1.2' + hash: + sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af + manager: pip + name: ndx-events + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl + version: 0.2.0 +- category: main + dependencies: + aiohttp: 3.7.4 + argschema: '>=3.0.1,<4.0.0' + boto3: 1.17.21 + cachetools: '>=4.2.1,<5.0.0' + future: '>=0.14.3,<1.0.0' + glymur: 0.8.19 + h5py: '*' + hdmf: '>=2.5.8' + jinja2: '>=3.0.0' + matplotlib: '>=1.4.3,<3.4.3' + ndx-events: <=0.2.0 + nest-asyncio: '*' + numpy: '*' + pandas: '>=1.1.5' + psycopg2-binary: '>=2.7,<3.0.0' + pynrrd: '>=0.2.1,<1.0.0' + pynwb: '*' + requests: <3.0.0 + requests-toolbelt: <1.0.0 + scikit-build: <1.0.0 + scikit-image: '>=0.14.0,<0.17.0' + scipy: '>=1.4.0,<2.0.0' + seaborn: <1.0.0 + semver: '*' + simpleitk: '>=2.0.2,<3.0.0' + simplejson: '>=3.10.0,<4.0.0' + six: '>=1.9.0,<2.0.0' + sqlalchemy: '*' + statsmodels: <=0.13.0 + tables: '>=3.6.0,<3.7.0' + tqdm: '>=4.27' + xarray: <0.16.0 + hash: + sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 + manager: pip + name: allensdk + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl + version: 2.13.6 +- category: main + dependencies: + boto3: '>=1.4.7' + brotli: '*' + chardet: '>=3.0.4' + click: '*' + crc32c: '*' + deflate: '>=0.2.0' + gevent: '*' + google-auth: '>=1.10.0' + google-cloud-core: '>=1.1.0' + google-cloud-storage: '>=1.31.1' + google-crc32c: '>=1.0.0' + orjson: '*' + pathos: '*' + protobuf: '>=3.3.0' + requests: '>=2.22.0' + rsa: '>=4.7.2' + six: '>=1.14.0' + tenacity: '>=4.10.0' + tqdm: '*' + urllib3: '>=1.26.3' + zstandard: '*' + hash: + sha256: 9b4805426d58b64fe26bc2e6c582fce298c4e43b0a4ccd690869369bdb959dda + manager: pip + name: cloud-files + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/a8/f4/00a2a184867ff465fb15fb4970f51ec0a49e8cccf7fad1255d40ecc5a4f3/cloud_files-4.11.0-py3-none-any.whl + version: 4.11.0 +- category: main + dependencies: {} + hash: + md5: 831557fcf92cfc4353eb69fb95524b6c + sha256: 0d673d366972656a3de1d67377912f12e9401cba0e4b277442d368747c7f1cb8 + manager: conda + name: ca-certificates + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2022.9.24-h4fd8a4c_0.tar.bz2 + version: 2022.9.24 +- category: main + dependencies: {} + hash: + md5: a0a531df6bf6663607dc77722ae522d6 + sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f + manager: conda + name: fenics-ufcx + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 + version: 0.5.0 +- category: main + dependencies: {} + hash: + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + manager: conda + name: font-ttf-dejavu-sans-mono + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + version: '2.37' +- category: main + dependencies: {} + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + manager: conda + name: font-ttf-inconsolata + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + version: '3.000' +- category: main + dependencies: {} + hash: + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + manager: conda + name: font-ttf-source-code-pro + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + version: '2.038' +- category: main + dependencies: {} + hash: + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + manager: conda + name: font-ttf-ubuntu + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + version: '0.83' +- category: main + dependencies: {} + hash: + md5: a9385e5b11a076c40d75915986f498d7 + sha256: 14e227d98193550f9da275e58e27de104ab569849f1ce16b810fae4d7b351d49 + manager: conda + name: kernel-headers_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h5b4a56d_13.tar.bz2 + version: 4.18.0 +- category: main + dependencies: {} + hash: + md5: b1f9c443a460b0916cac377b7d494111 + sha256: 8e84e37c6d89a6aa62246dc7dd9d733b0a19e7c8861ebb781554eb7b88242787 + manager: conda + name: ld_impl_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.39-ha75b1e8_0.tar.bz2 + version: '2.39' +- category: main + dependencies: {} + hash: + md5: c21b5e540d690c5d2d273ecce320abdf + sha256: 35223b103f877564ae73ed1bea5d522057b69306d7e2155b6b5388310cad52cf + manager: conda + name: libgcc-devel_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-devel_linux-aarch64-10.4.0-h3c6860a_19.tar.bz2 + version: 10.4.0 +- category: main + dependencies: {} + hash: + md5: bc890809e1f807b51bf04dfbee70ddf5 + sha256: e0496081c3a26c578abd0e292317c80159ebfbd5bb1ecca446894b9adf39abd7 + manager: conda + name: libgfortran5 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-12.2.0-hf695500_19.tar.bz2 + version: 12.2.0 +- category: main + dependencies: {} + hash: + md5: 65b9cb876525dcb2e74a90cf02c6762a + sha256: d802eaceaf6f77fb8cb2e990aacf9b3eaa83361b16369a760fc1585841d7885c + manager: conda + name: libgomp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-12.2.0-h607ecd0_19.tar.bz2 + version: 12.2.0 +- category: main + dependencies: {} + hash: + md5: 13653671982305e902550ee81b69349d + sha256: 6c52715362529ef14a1a04ece9c33b2b029d02d63fb00bf4406ee8091115e3f5 + manager: conda + name: libstdcxx-devel_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-devel_linux-aarch64-10.4.0-h3c6860a_19.tar.bz2 + version: 10.4.0 +- category: main + dependencies: {} + hash: + md5: 981741cd4321edd5c504b48f74fe91f2 + sha256: db906f0ad19acc6aefcd5409a7a72fea76302f72013dce7593467ae07dbf54f3 + manager: conda + name: libstdcxx-ng + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-12.2.0-hc13a102_19.tar.bz2 + version: 12.2.0 +- category: main + dependencies: {} + hash: + md5: e24a82352a69336645b8fd24e0b41d86 + sha256: 91d52da0222cbfc7fa2621893867d6c40fa9943ceb07a6d02adb6546e102727f + manager: conda + name: mpi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpi-1.0-openmpi.tar.bz2 + version: '1.0' +- category: main + dependencies: {} + hash: + md5: 7dbd622c32525d81a90c9c54a42e18a0 + sha256: 043e7b410b7a86e1bd8d9cec9c0dc25394fe272e58ff2c93009fbe723e8c201a + manager: conda + name: mumps-include + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mumps-include-5.2.1-h8af1aa0_11.tar.bz2 + version: 5.2.1 +- category: main + dependencies: {} + hash: + md5: abc27381c4f005da588cffa1f76403ee + sha256: ccd2857627c0f6e903a917b99e60860c0a2b7dc553a32cf7c1ab55f0af99ec11 + manager: conda + name: poppler-data + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.11-hd8ed1ab_0.tar.bz2 + version: 0.4.11 +- category: main + dependencies: {} + hash: + md5: b6bd89cf71494c41a181cac13cc5a8ea + sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 + manager: conda + name: tzdata + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 + version: 2022e +- category: main + dependencies: {} + hash: + md5: d018d06e6d54874e7bcd3c93f7c44f8d + sha256: 3b59848fa294ad3a1aff6f1202772809287fc34d0ed3210c6fcf31b4d5f2a54c + manager: conda + name: utfcpp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/utfcpp-3.2.1-h8af1aa0_0.tar.bz2 + version: 3.2.1 +- category: main + dependencies: + libgomp: '>=7.5.0' + hash: + md5: 6168d71addc746e8f2b8d57dfd2edcea + sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 + manager: conda + name: _openmp_mutex + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + version: '4.5' +- category: main + dependencies: + font-ttf-dejavu-sans-mono: '' + font-ttf-inconsolata: '' + font-ttf-source-code-pro: '' + font-ttf-ubuntu: '' + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + manager: conda + name: fonts-conda-forge + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + version: '1' +- category: main + dependencies: + libgfortran5: 12.2.0 hf695500_19 + hash: + md5: b5b34211bbf681bd3e7a5a4d80cce77b + sha256: 3ac162edf354bfa46076f52f3bff3a8ac10e626ebb9ed5e01aad954ebd386829 + manager: conda + name: libgfortran-ng + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-12.2.0-he9431aa_19.tar.bz2 + version: 12.2.0 +- category: main + dependencies: + kernel-headers_linux-aarch64: 4.18.0 h5b4a56d_13 + hash: + md5: 6d8f1fd1e675ba478041892112887949 + sha256: 932f7f8947c206ad4707a18c3bebbe217efdef67fd2cf9e0e94f5ccf0edeee38 + manager: conda + name: sysroot_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-aarch64-2.17-h43d7e78_13.tar.bz2 + version: '2.17' +- category: main + dependencies: + ld_impl_linux-aarch64: 2.39 ha75b1e8_0 + sysroot_linux-aarch64: '' + hash: + md5: edc0b381f0c9e2b963541fc9b5cba1d6 + sha256: 9b90360851e41936cc8c1138e8a3c38456c5b31acf9ca05d94454b20292bfc78 + manager: conda + name: binutils_impl_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.39-hb04425f_0.tar.bz2 + version: '2.39' +- category: main + dependencies: + fonts-conda-forge: '' + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + manager: conda + name: fonts-conda-ecosystem + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + version: '1' +- category: main + dependencies: + _openmp_mutex: '>=4.5' + hash: + md5: 8456a29b6d9fc3123ccb9a966b6b2c49 + sha256: 0dd30553f6f38b011c9c81471a50f85e98a79e4dd672fdc1fc97904b54b5419b + manager: conda + name: libgcc-ng + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-12.2.0-h607ecd0_19.tar.bz2 + version: 12.2.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: d60afaef96ded354a46f6d002377d912 + sha256: 2cf97accf61df9e91f52e678a000a52fd47fc0fbde85688ebdc0172508a0144c + manager: conda + name: alsa-lib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/alsa-lib-1.2.7.2-h4e544f5_0.tar.bz2 + version: 1.2.7.2 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 2a7fd0713c5cbce06c74d5864b34d30d + sha256: f265c5f1aa506ff7f7d1be1f70e403ca33b38ec17ee5348c27d9074908a05eeb + manager: conda + name: aom + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aom-3.5.0-headf329_0.tar.bz2 + version: 3.5.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 1ef6c06fec1b6f5ee99ffe2152e53568 + sha256: 2c793b48e835a8fac93f1664c706442972a0206963bf8ca202e83f7f4d29a7d7 + manager: conda + name: attr + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2 + version: 2.5.1 +- category: main + dependencies: + binutils_impl_linux-aarch64: 2.39.* + sysroot_linux-aarch64: '' + hash: + md5: 4b7f9e2048a3b75aca16b9612d7f49c7 + sha256: 21da410295e7e42e7459fa633a72c213b19c88d12a95c6b08599935e975694c4 + manager: conda + name: binutils_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.39-h489c705_11.tar.bz2 + version: '2.39' +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 2d787570a729e273a4e75775ddf3348a + sha256: 3aeb6ab92aa0351722497b2d2a735dc20921cf6c60d9196c04b7a2b9ece198d2 + manager: conda + name: bzip2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-hf897c2e_4.tar.bz2 + version: 1.0.8 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + hash: + md5: 12c54b174dd7c6a9331e729d24c39515 + sha256: 1ff44fb03f0013e15b81eea34edcb79a796445deb305c4df6ee286d5ae7b3cd4 + manager: conda + name: c-ares + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.18.1-hf897c2e_0.tar.bz2 + version: 1.18.1 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 69808639cc987b0d721dea4f139d75a3 + sha256: 0cd0aaf17a5e24a91d9d2c024d926db6e8abac8b095d69c79c0f47066b91dc20 + manager: conda + name: double-conversion + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/double-conversion-3.2.0-h4de3ea5_1.tar.bz2 + version: 3.2.0 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: 7892d29364bed9eff3374f8504bf602e + sha256: ed27cb87c0bcf952cf57c277f0c1319dc4f538376b79239b5212b133cc8aa4e0 + manager: conda + name: eigen + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/eigen-3.4.0-hd62202e_0.tar.bz2 + version: 3.4.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: aa6a0bf10d95acf29e72259197e8b9bd + sha256: 1db990a8373b17f8329aa4b88d7f4b7b66c51c939b4b40e14d7547a0e5501b98 + manager: conda + name: expat + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/expat-2.5.0-ha18d298_0.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 796b6f9696d09a084778923530e95865 + sha256: 78bacad48fce994bc854be716742539a8bcd53776e2507e33dd6aac725f5a41e + manager: conda + name: freexl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/freexl-1.0.6-h4e544f5_1.tar.bz2 + version: 1.0.6 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: c2eddeec80feaa6d4e49786f49674f5a + sha256: 9116f26c35f72ca126c4adfcdf30d3379c694f55ee27f75ac57344ccece43a72 + manager: conda + name: geos + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/geos-3.11.0-h4de3ea5_0.tar.bz2 + version: 3.11.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: b109f1a4d22966793d61fd7f75b744c3 + sha256: b1d8ee80b7577661a8cebdfd21dd1676ba73b676d106c458d4ecdbe4a6d9c2eb + manager: conda + name: gettext + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gettext-0.21.1-ha18d298_0.tar.bz2 + version: 0.21.1 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: 08575a68724ff44a0cb24c6158511c0a + sha256: baefc423c4a71c6b28134987295a9253df63c3afc01f7afa2fa420ca56997f38 + manager: conda + name: giflib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/giflib-5.2.1-hb9de7d4_2.tar.bz2 + version: 5.2.1 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + libstdcxx-ng: '>=7.5.0' + hash: + md5: 785747e1f00cfc37b3c95ffbada92591 + sha256: e17efc0fd32dcf5d404df1250331be735df8ff47d30878c4fa712ebb4c624f29 + manager: conda + name: gmp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gmp-6.2.1-h7fd3ca4_0.tar.bz2 + version: 6.2.1 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + hash: + md5: 014656d28b7b6f8a566437c69552f9ae + sha256: f867c6e57439b40a394fd7aef6d6ae35fd14cccf6f57e78539c6da9108f27c44 + manager: conda + name: icu + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-70.1-ha18d298_0.tar.bz2 + version: '70.1' +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 8fd15daa7515a0fea9b3b68495118238 + sha256: 1572e885558cb08439c65a5a011496bdc9781c833d682dce2061274262a8c43e + manager: conda + name: jpeg + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/jpeg-9e-h9cdd2b7_2.tar.bz2 + version: 9e +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + hash: + md5: ed0f666fc89f6eaf76e3b8d943b29ccc + sha256: a9882e83ec5ed5e2f420bbf0f0003e28b540e11661aca31a83b48f647b0e9b3b + manager: conda + name: json-c + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/json-c-0.16-hcc5b78b_0.tar.bz2 + version: '0.16' +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: 0aae30ee3d5ec54ad6568ba392483ff3 + sha256: a023d923155e244ce982647caabf473e134e8611bef04d35af5bc7ae87cbc5d5 + manager: conda + name: jsoncpp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/jsoncpp-1.9.5-hd62202e_1.tar.bz2 + version: 1.9.5 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 43d4b521ebe897cf719156e6848b3870 + sha256: d693fdf767d2f56b25cd2bbd7a670122ec873e28c25e64ab861b50b360cb0adc + manager: conda + name: jxrlib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/jxrlib-1.1-hf897c2e_2.tar.bz2 + version: '1.1' +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + hash: + md5: 1f24853e59c68892452ef94ddd8afd4b + sha256: 6d4233d97a9b38acbb26e1268bcf8c10a8e79c2aed7e5a385ec3769967e3e65b + manager: conda + name: keyutils + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 + version: 1.6.1 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: ab05bcf82d8509b4243f07e93bada144 + sha256: 2502904a42df6d94bd743f7b73915415391dd6d31d5f50cb57c0a54a108e7b0a + manager: conda + name: lame + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lame-3.100-h4e544f5_1003.tar.bz2 + version: '3.100' +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 1a0ffc65e03ce81559dbcb0695ad1476 + sha256: 2d09ef9b7796d83364957e420b41c32d94e628c3f0520b61c332518a7b5cd586 + manager: conda + name: lerc + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2 + version: 4.0.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 3cedc3935cfaa2a5303daa25fb12cb1d + sha256: 8eedfeb9097042f1005d4764bda83de0eda907e55d77408654367760ad46053d + manager: conda + name: libbrotlicommon + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.0.9-h4e544f5_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: 7cbfba14d5adfa65db945d5112909394 + sha256: 1f74d30c72d95c39315c6b5c3f1b328d00c4d5a2feff1e871fe5b71b4cb26811 + manager: conda + name: libdb + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libdb-6.2.32-h01db608_0.tar.bz2 + version: 6.2.32 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: d98452637cbf62abad9140fa93365f94 + sha256: 478cb68d84bc10d69efd6f872192d0f34da2413ef1148bb05744e1b6da4f86e7 + manager: conda + name: libdeflate + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.14-h4e544f5_0.tar.bz2 + version: '1.14' +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: 9eac5901791494108c9b9ab85ca8aa93 + sha256: b9e8bcd26f0b0ded4c43232d55048bab910a4268197757f2368458759d9f3ef9 + manager: conda + name: libev + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h516909a_1.tar.bz2 + version: '4.33' +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + hash: + md5: dddd85f4d52121fab0a8b099c5e06501 + sha256: 7e9258a102480757fe3faeb225a3ca04dffd10fecd2a958c65cdb4cdf75f2c3c + manager: conda + name: libffi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2 + version: 3.4.2 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + libstdcxx-ng: '>=7.5.0' + hash: + md5: a330d142a49d6d7c1048be9cfc268ddf + sha256: 29dfde9c2fb802cd9b098ef8ec808df50a324ef3e42e3118f74418da7ad6c53e + manager: conda + name: libglu + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libglu-9.0.0-he1b5a44_1001.tar.bz2 + version: 9.0.0 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + hash: + md5: efc27cfbc82a027f65c02c661832ecfc + sha256: e3c95d751ea71a638f781e82b1498e914e1d11536ea52fc354fecb2e65d3a7d3 + manager: conda + name: libiconv + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h9cdd2b7_0.tar.bz2 + version: '1.17' +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + hash: + md5: 36fdbc05c9d9145ece86f5a63c3f352e + sha256: 182dbc318b7ab3ab10bc5a9d3ca161b143ae8db6df8aa11b65140009e322e642 + manager: conda + name: libnsl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.0-hf897c2e_0.tar.bz2 + version: 2.0.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: a8b4ce49dbd48176e82c11ecf01ae588 + sha256: cc9ef00410ac723e3abb667afd65c049ea50eb91fd2ff06a33f51083f91da792 + manager: conda + name: libogg + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libogg-1.3.4-h3557bc0_1.tar.bz2 + version: 1.3.4 +- category: main + dependencies: + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.4.0' + hash: + md5: bc66302748a788c3bce59999ed6d737d + sha256: 78a93de015d389597d9bdd470ffcfa3901d4b39b85d6516f242ff71d18dc6607 + manager: conda + name: libopenblas + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.21-pthreads_h6cb6f83_3.tar.bz2 + version: 0.3.21 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: ac7534c50934ed25e4749d74b04c667a + sha256: 92a87ade11af2cff41c35cf941f1a79390fde1f113f8e51e1cce30d31b7c8305 + manager: conda + name: libopus + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopus-1.3.1-hf897c2e_1.tar.bz2 + version: 1.3.1 +- category: main + dependencies: + libgcc-ng: '>=10.4.0' + hash: + md5: f85a18d33970bc60b7b5df0e451ba3cc + sha256: 4132132b4265028a368e1f630b2cb567d67051f22b3cd39c00992de6bf48c204 + manager: conda + name: libsanitizer + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsanitizer-10.4.0-h0e20637_19.tar.bz2 + version: 10.4.0 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: d09ab3c60eebb6f14eb4d07e172775cc + sha256: 9ee442d889242c633bc3ce3f50ae89e6d8ebf12e04d943c371c0a56913fa069b + manager: conda + name: libsodium + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.18-hb9de7d4_1.tar.bz2 + version: 1.0.18 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: b68ef401a75f73e542f30851dc8eed49 + sha256: b9ec8cedfb185cb651cc422ef9d6c65b6a4f5ec3e179fdc00046feefde9a8432 + manager: conda + name: libspatialindex + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libspatialindex-1.9.3-h01db608_4.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: a94c6aaaaac3c2c9dcff6967ed1064be + sha256: 96310724113f6f2ed2f3e55e19e87fe29e1678d0ee21386e4037c3703d542743 + manager: conda + name: libtasn1 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libtasn1-4.19.0-h4e544f5_0.tar.bz2 + version: 4.19.0 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + hash: + md5: a755010a9e23b4627b35bb779a38d9d5 + sha256: 08f00ebabfd02827917725a53a119b7ac6aa6af9bda1280d077866c3a3d53ca5 + manager: conda + name: libtool + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libtool-2.4.6-h01db608_1008.tar.bz2 + version: 2.4.6 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 59ad5dc000b22c157f08e0d041dcb027 + sha256: 1b33e796f4bb456ee9a2cfc2225f4ac3c61c7a6c51b699070dd9d6192a1ffa54 + manager: conda + name: libudev1 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libudev1-251-h4e544f5_0.tar.bz2 + version: '251' +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 7c68521243dc20afba4c4c05eb09586e + sha256: 03acebd5a01a255fe40d47f941c6cab4dc7829206d86d990b0c88cf0ff66e646 + manager: conda + name: libunistring + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libunistring-0.9.10-hf897c2e_0.tar.bz2 + version: 0.9.10 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: e038da5ef9095b0d79aac14a311394e7 + sha256: 8f7eead3723c32631b252aea336bb39fbbde433b8d0c5a75745f03eaa980447d + manager: conda + name: libuuid + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.32.1-hf897c2e_1000.tar.bz2 + version: 2.32.1 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: 92f747d37e069207d041e8ef530c7e39 + sha256: fb167ba6f9e08b41d7239d3691a07ad50328868a2549147572db81159b6b0823 + manager: conda + name: libvpx + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libvpx-1.11.0-h01db608_3.tar.bz2 + version: 1.11.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 9c307c3dba834b9529f6dcd95db543ed + sha256: 831824c213e80a43a0a85318e5967a88a1adbf344b24ed5c4ee9ead8b696f170 + manager: conda + name: libwebp-base + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.2.4-h4e544f5_0.tar.bz2 + version: 1.2.4 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 88596b6277fe6d39f046983aae6044db + sha256: 9803ac96dbdbc27df9c149e06d4436b778c468bd0e6e023fbcb49a6fe9c404b4 + manager: conda + name: libzlib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.2.13-h4e544f5_4.tar.bz2 + version: 1.2.13 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: 25b5ec27b49b04a997a87b0f00f5e205 + sha256: db1d958f56e8f616c65deb7e67522db4ba51e2ccdb676469bb0c8df8d3e181ae + manager: conda + name: lz4-c + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.3-h01db608_1.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: b77d9a8e527e127eadf5bfdf909657a8 + sha256: 83df3738193f2993a2cc29ef2ac712c385586cfe5395c5c3c3b33f9af9c0c992 + manager: conda + name: metis + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/metis-5.1.0-h7fd3ca4_1006.tar.bz2 + version: 5.1.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 794c59418409d441ef50bc5648194d90 + sha256: e343824a24ce55878fd9045660c22281f4ab5b65eb3582a0ec658ea1b0600495 + manager: conda + name: mpg123 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpg123-1.30.2-h4de3ea5_1.tar.bz2 + version: 1.30.2 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + mpi: 1.0 mpich + hash: + md5: 812ae04a75e329b6383119b3850c2e8e + sha256: ac333eb77336f622240b8f74be3d9cc5fce869c4686080f19aa76953b2c93e03 + manager: conda + name: mpich + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpich-4.0.2-h26b3c96_100.tar.bz2 + version: 4.0.2 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + hash: + md5: 486b68148e121bc8bbadc3cefae4c04f + sha256: d410d840cb39175d7edc388690b93b2e3d7613c2e2f5c64b96582dc8b55b2319 + manager: conda + name: ncurses + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.3-headf329_1.tar.bz2 + version: '6.3' +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: e21711d3eb54883594f16e0c3ae6dc2d + sha256: 8d588c868e9212c2b768ab83e217a4db572543c707a7cdaf709b95211a65b111 + manager: conda + name: nettle + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/nettle-3.8.1-hcc5b78b_1.tar.bz2 + version: 3.8.1 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: 7576c8396c4c24aca2adebfbf01feca2 + sha256: db272525c94e284d655023cf7f6b5d08943f249ac140b65b23f38d93a9372396 + manager: conda + name: nspr + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/nspr-4.32-h01db608_0.tar.bz2 + version: '4.32' +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 055617ea062e1bd5cfe8b7b10903f1c7 + sha256: 2e38df8427fce4dc13ae7e5a7cf527559c9a24a72d0771f0b2c870f6ca1121d9 + manager: conda + name: openh264 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/openh264-2.3.1-h4de3ea5_1.tar.bz2 + version: 2.3.1 +- category: main + dependencies: + ca-certificates: '' + libgcc-ng: '>=12' + hash: + md5: ac77f757558b419c9cf2ff2d42abee7a + sha256: 0493251cf5025a5ab00d79703a4ffd846287a9ad83c6cfddc16e6fe906086429 + manager: conda + name: openssl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-1.1.1q-h4e544f5_1.tar.bz2 + version: 1.1.1q +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: 3963d9f84749d6cdba1f12c65967ccd1 + sha256: 7a6062de76f695f6d8f0ddda0ff171e4b47e2b863d6012def440c7703aea0069 + manager: conda + name: pcre + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pcre-8.45-h01db608_0.tar.bz2 + version: '8.45' +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: f3c0267498811a1820fdaf291efc3195 + sha256: 182bbe0e63d2d95df29a7d5ccb678cf1ae56fee39dbd9f892bb9dc5170cf3132 + manager: conda + name: pixman + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pixman-0.40.0-hb9de7d4_0.tar.bz2 + version: 0.40.0 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + hash: + md5: d0183ec6ce0b5aaa3486df25fa5f0ded + sha256: f1d7ff5e06cc515ec82010537813c796369f8e9dde46ce3f4fa1a9f70bc7db7d + manager: conda + name: pthread-stubs + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-hb9de7d4_1001.tar.bz2 + version: '0.4' +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: 6e6d498e0834be933809af0439012669 + sha256: 9a69b180a69d4aa5a834c290652e09cd07a54389552064e5ae217df1cda51dfa + manager: conda + name: pugixml + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pugixml-1.11.4-h01db608_0.tar.bz2 + version: 1.11.4 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + libstdcxx-ng: '>=7.5.0' + hash: + md5: dc473911ff27a4e3ed69d34bfb426414 + sha256: bdc604ca293d976df0345041d91bc2c5f0ab42b0d58468a63ef5852d6e1ab53d + manager: conda + name: rapidjson + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/rapidjson-1.1.0-h54f1f3f_1002.tar.bz2 + version: 1.1.0 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + hash: + md5: c6725b5ffe431af44e780c5c1cac8d7c + sha256: a5ce0a484d2f285c89809419274edf7274fa424ad14f1806aef712f7bad505eb + manager: conda + name: snappy + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.1.9-hc7e91e1_1.tar.bz2 + version: 1.1.9 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: a8a7e627f4a4b2fb02432534de1a52cb + sha256: 55e1233a7808517794e1c169c95c9f80c6eb472ab3fe8936462dbd818b6ff74f + manager: conda + name: svt-av1 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/svt-av1-1.3.0-h4de3ea5_0.tar.bz2 + version: 1.3.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: ad1e8235a8ad4cbf7b302e4d25dbe327 + sha256: 51b8228fbccdc77b534b5c32cc9f8a0942064d7223877750dc7b3d063c097b40 + manager: conda + name: tbb + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-2021.6.0-hdd96247_1.tar.bz2 + version: 2021.6.0 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 14eecfc5e3113454ebaa2e097bf65a6b + sha256: 6541e4cf60ea71e30eef792056b82583d48674a554c6d5dbde8fd02aadb5ca05 + manager: conda + name: tzcode + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tzcode-2022e-h4e544f5_0.tar.bz2 + version: 2022e +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 0efaf807a0b5844ce5f605bd9b668281 + sha256: b48f150db8c052c197691c9d76f59e252d3a7f01de123753d51ebf2eed1cf057 + manager: conda + name: x264 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/x264-1!164.3095-h4e544f5_2.tar.bz2 + version: 1!164.3095 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + hash: + md5: 786853760099c74a1d4f0da98dd67aea + sha256: cb2227f2441499900bdc0168eb423d7b2056c8fd5a3541df4e2d05509a88c668 + manager: conda + name: x265 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/x265-3.5-hdd96247_3.tar.bz2 + version: '3.5' +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: ec8ce6b3dac3945a4010559a6284b755 + sha256: 421c0a115b31f02082f95c8f06dbba48b2274718f66a72d64d5102141e5a8731 + manager: conda + name: xorg-kbproto + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-kbproto-1.0.7-h3557bc0_1002.tar.bz2 + version: 1.0.7 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 9f12ca8b69fc217317223f4068b04498 + sha256: cb9bd494c7e510e71a1c72d415bea8858ab30ee77b79d486d52d2bb365cc8d6e + manager: conda + name: xorg-libice + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libice-1.0.10-h3557bc0_0.tar.bz2 + version: 1.0.10 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: e0c187f5ce240897762bbb89a8a407cc + sha256: 898553ead60af45e3b8b2a7be1b21b0df8ce3c20d5772490c05188cce5ec8b55 + manager: conda + name: xorg-libxau + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.9-h3557bc0_0.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: a6c9016ae1ca5c47a3603ed4cd65fedd + sha256: 2aad9a0b57796170b8fb40317598fd79cfc7ae27fa7fb68c417d815e44499d59 + manager: conda + name: xorg-libxdmcp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.3-h3557bc0_0.tar.bz2 + version: 1.1.3 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 01cbfe96ce66b78a9a270ac305791dd2 + sha256: e57e8b4a58f8c3b5011bf6cd66f499fca9fc5067981bb33f828750b168c3698d + manager: conda + name: xorg-renderproto + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-renderproto-0.11.1-h3557bc0_1002.tar.bz2 + version: 0.11.1 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 6eab1f5756fe65cd29ac2126664dd21b + sha256: 63af1d038457a9d0b68a731ae9549b4da05f98ac570933a73e983ff08b8a5cfe + manager: conda + name: xorg-xextproto + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-xextproto-7.3.0-h3557bc0_1002.tar.bz2 + version: 7.3.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + hash: + md5: 987e98faa0ad2c667bbea6b6aae260bc + sha256: 7711ca1898e6f74a8434931fe6c0593ff7201277778aa09ea012d8be8bc7a7f5 + manager: conda + name: xorg-xproto + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-xproto-7.0.31-h3557bc0_1007.tar.bz2 + version: 7.0.31 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: 27040fe522925d081a50fb56c7b91261 + sha256: 02171fd8c9f75874ecc584c4c70ede780f291d13cf1ecca07738a2ce3730cc94 + manager: conda + name: xtl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xtl-0.7.4-hd62202e_0.tar.bz2 + version: 0.7.4 +- category: main + dependencies: + libgcc-ng: '>=12' + hash: + md5: 83baad393a31d59c20b63ba4da6592df + sha256: 93f58a7b393adf41fa007ac8c55978765e957e90cd31877ece1e5a343cb98220 + manager: conda + name: xz + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 + version: 5.2.6 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + hash: + md5: b853307650cb226731f653aa623936a4 + sha256: 8bc601d6dbe249eba44b3c456765265cd8f42ef1e778f8df9b0c9c88b8558d7e + manager: conda + name: yaml + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 + version: 0.2.5 +- category: main + dependencies: + _openmp_mutex: '>=4.5' + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: d17e70e2a667006cdc693597ca771b70 + sha256: 0b4524b3334f9fc325d1e6e6419341954d9678d160653d6d95ccf0e536a44049 + manager: conda + name: zfp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zfp-0.5.5-h01db608_8.tar.bz2 + version: 0.5.5 +- category: main + dependencies: + binutils_impl_linux-aarch64: '>=2.39' + libgcc-devel_linux-aarch64: 10.4.0 h3c6860a_19 + libgcc-ng: '>=10.4.0' + libgomp: '>=10.4.0' + libsanitizer: 10.4.0 h0e20637_19 + libstdcxx-ng: '>=10.4.0' + sysroot_linux-aarch64: '' + hash: + md5: a14f89713a08d6698e0d8f2db4e1eebc + sha256: 18155529cf647fe012f1a577a24df72c0d3fd6daad2ffa0dd0f3860b6cdc8b7f + manager: conda + name: gcc_impl_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-10.4.0-h9569200_19.tar.bz2 + version: 10.4.0 +- category: main + dependencies: + jpeg: '>=9e,<10a' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: d1fcf4339a70ae890ef02fbbfe1f0cd6 + sha256: 88d9812d791a1911d2767547ec58dba4fcb01fac73ced4a8f18a519045f9eb3c + manager: conda + name: hdf4 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf4-4.2.15-hb6731fe_4.tar.bz2 + version: 4.2.15 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 9579304a02a2f3fa7f3cb3330e879136 + sha256: ce74f842c9bdb7583012d56132e3296eadf846bcf7596e96141d754cdf4fdf0f + manager: conda + name: imath + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/imath-3.1.5-h7866ba4_0.tar.bz2 + version: 3.1.5 +- category: main + dependencies: + libopenblas: '>=0.3.21,<1.0a0' + hash: + md5: 188f02883567d5b7f96c7aa12e7007c9 + sha256: 6fdf73da8b717f207979f77660646ca2d7e17671482435f281b676ac27eb288e + manager: conda + name: libblas + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-16_linuxaarch64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + libbrotlicommon: 1.0.9 h4e544f5_8 + libgcc-ng: '>=12' + hash: + md5: 319956380b383ec9f6a46d585599c028 + sha256: 5c735e238743bda58f44fcb5bef564dc5262c0ea0219ccdb8cbcb168c98a58e0 + manager: conda + name: libbrotlidec + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.0.9-h4e544f5_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + libbrotlicommon: 1.0.9 h4e544f5_8 + libgcc-ng: '>=12' + hash: + md5: 56a0a025208af24e2b43b2bbeee79802 + sha256: 2f6617b2ac53ab440d50a062d08e39cb207dc3ac36a5abe61efe0fa11d2205a1 + manager: conda + name: libbrotlienc + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.0.9-h4e544f5_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + attr: '>=2.5.1,<2.6.0a0' + libgcc-ng: '>=12' + hash: + md5: 98ae85722681b1573a9ac68cd45f27c5 + sha256: f0087e731c1e3af2d10e1164d0554b73f36f29d04d119b1861d0fca5671a10a5 + manager: conda + name: libcap + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcap-2.66-hbb70f59_0.tar.bz2 + version: '2.66' +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + ncurses: '>=6.2,<7.0.0a0' + hash: + md5: 29371161d77933a54fccf1bb66b96529 + sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d + manager: conda + name: libedit + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + version: 3.1.20191231 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + openssl: '>=1.1.1l,<1.1.2a' + hash: + md5: 688418283c67fd1d725b07ba9c0d328c + sha256: 36a88ebfe798a46e58ad59d7fd8cf2395e950514fc302572542f0eaf7462c7fb + manager: conda + name: libevent + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.10-h6aed413_4.tar.bz2 + version: 2.1.10 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + libgcc-ng: '>=12' + libogg: '>=1.3.4,<1.4.0a0' + libstdcxx-ng: '>=12' + hash: + md5: bbe475d65a54295b3e74dae065c43a8a + sha256: e29e00bef03b669dc77e983108aaae57e3aa8ec9378f6a84a727c1050fded610 + manager: conda + name: libflac + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libflac-1.4.2-h4de3ea5_0.tar.bz2 + version: 1.4.2 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + libgcc-ng: '>=12' + libunistring: '>=0,<1.0a0' + hash: + md5: 14bc6d13c88a78837789454105b887fa + sha256: 4a52be7b06561fced66d3fe98dfc520234a8e040d32e339e5b9fe938d7c89507 + manager: conda + name: libidn2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libidn2-2.3.4-h4e544f5_0.tar.bz2 + version: 2.3.4 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 4eba98ea701734ab2cbb671d805bbdfe + sha256: 79f0d7f5fd1c1b06b7ae0389c9cba00848163aca99f23a4ad4141a2f0ffe244d + manager: conda + name: libllvm14 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm14-14.0.6-hb2805f8_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: + c-ares: '>=1.18.1,<2.0a0' + libev: '>=4.33,<4.34.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 4c5fdf4bcc787e395fda81b29608c4b5 + sha256: 568fb318aef17629be68ada84132b58017d187740bd1cd64fef793e111a74566 + manager: conda + name: libnghttp2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.47.0-h4173d3e_1.tar.bz2 + version: 1.47.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 64c24041ed1b1e01425f950ed0f8b148 + sha256: 4c95626f5415b2140a3c6c7c6a7d7d029e8fc1bcb7f27ae85586647799acaaf1 + manager: conda + name: libpng + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.38-hf9034f9_0.tar.bz2 + version: 1.6.38 +- category: main + dependencies: + geos: '>=3.11.0,<3.11.1.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 30275e5c7db860f09f5b3f68692147f1 + sha256: 2e6aa482b278f08a9fb6895f9db7009c0e77eaaa15c713b574c444acd8a69f4a + manager: conda + name: librttopo + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/librttopo-1.1.0-h31eec0c_11.tar.bz2 + version: 1.1.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: cd65f7b7d956c3b813b94d2d6c4c697a + sha256: af9fecb4fead8423c93b7f5ff90f8d3c5c91644a1b312c7db47d85a7441409c8 + manager: conda + name: libsqlite + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.39.4-hf9034f9_0.tar.bz2 + version: 3.39.4 +- category: main + dependencies: + libgcc-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: f4ce5f6249ce20ccc2d33998f2bd558c + sha256: 9cb253b28750e228fab4fa664e34d568bc72cce9db402fb2a30959b36db8eba1 + manager: conda + name: libssh2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.10.0-h4bb3959_3.tar.bz2 + version: 1.10.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libogg: '>=1.3.4,<1.4.0a0' + libstdcxx-ng: '>=9.3.0' + hash: + md5: c2863ff72c6d8a59054f8b9102c206e9 + sha256: 1ade4727be5c52b287001b8094d02af66342dfe0ba13ef69222aaaf2e9be4342 + manager: conda + name: libvorbis + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libvorbis-1.3.7-h01db608_0.tar.bz2 + version: 1.3.7 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + pthread-stubs: '' + xorg-libxau: '' + xorg-libxdmcp: '' + hash: + md5: cc973f5f452272c397546eac588cddb3 + sha256: cf726d6b13e93636312722aff04831a77aa8721b63feb6fc12d3604fe209ff94 + manager: conda + name: libxcb + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.13-h3557bc0_1004.tar.bz2 + version: '1.13' +- category: main + dependencies: + icu: '>=70.1,<71.0a0' + libgcc-ng: '>=12' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + xz: '>=5.2.6,<6.0a0' + hash: + md5: db7ac1f8d95f85b80600d6a755f6c1c1 + sha256: 71ecaf2198e6f8d402ae838361e3aeba4aff9fae8f1415b037cb207499a995c4 + manager: conda + name: libxml2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.10.3-h249b6dd_0.tar.bz2 + version: 2.10.3 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libgcc-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: c7ead8b73d7b8ed9ee23a332911bce43 + sha256: d8ccf3a9c4869cb8f693852fc7909722e30afb6af1fb62c2168a8f73d9ff1d39 + manager: conda + name: libzip + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libzip-1.9.2-ha107f47_1.tar.bz2 + version: 1.9.2 +- category: main + dependencies: + gmp: '>=6.2.1,<7.0a0' + libgcc-ng: '>=7.5.0' + hash: + md5: af9c4f2eb73b8b550bac3d778350a948 + sha256: 1f622e870bb39637cfc28604b86defc518483360ddd1a92cb0104fa6f07dbc56 + manager: conda + name: mpfr + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpfr-4.1.0-h719063d_1.tar.bz2 + version: 4.1.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 441ac0ab68ad2e3e80f2c5e4ea2d1659 + sha256: 24abde52f97c5bce0cfeb3eb75947666f5670b6e742b09e53efec048770360ed + manager: conda + name: mysql-common + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mysql-common-8.0.31-hcde889d_0.tar.bz2 + version: 8.0.31 +- category: main + dependencies: + libffi: '>=3.4.2,<3.5.0a0' + libgcc-ng: '>=12' + libtasn1: '>=4.18.0,<5.0a0' + hash: + md5: a27524877b697f8e18d38ad30ba022f5 + sha256: 24c37c8d131e3e72350a398060ec163eb48db75f19339b09bcf2d860ad0367fe + manager: conda + name: p11-kit + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/p11-kit-0.24.1-h9f2702f_0.tar.bz2 + version: 0.24.1 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libgcc-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 92d2adc6b703cfcbef2c7347e59a8a92 + sha256: 7ed46247982af01db5f255a70650771c6e215cd84c468e5baeb6a605dcbaf16a + manager: conda + name: pcre2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pcre2-10.37-he7b27c6_1.tar.bz2 + version: '10.37' +- category: main + dependencies: + libgcc-ng: '>=12' + ncurses: '>=6.3,<7.0a0' + hash: + md5: 3cdbfb7d7b63ae2c2d35bb167d257ecd + sha256: a33bb6e4c93599fb97eb19db0dcca602a90475f2da3c01c14add19b908178fcd + manager: conda + name: readline + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.1.2-h38e3740_0.tar.bz2 + version: 8.1.2 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + tbb: 2021.6.0 hdd96247_1 + hash: + md5: 80477aa12ab50cfd7f2df53f2788c71d + sha256: 0d9e257f629db2efc35b76fd3b3fbcf0af11a64deb14d864b9cc6fcaa3a9f483 + manager: conda + name: tbb-devel + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-devel-2021.6.0-hdd96247_1.tar.bz2 + version: 2021.6.0 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 7894e82ff743bd96c76585ddebe28e2a + sha256: d659316c9e502fb0e1b9a284fb0f0c00e273bff787e9385ab14be9af13dcd0d2 + manager: conda + name: tk + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.12-hd8af866_0.tar.bz2 + version: 8.6.12 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-xextproto: '' + hash: + md5: d83ed0a123097ef38c744f8aa8a814f4 + sha256: f22351d3ca1bc6130b474c52d35b02078941ba65e3c3621b630d853ed7ffe946 + manager: conda + name: xorg-fixesproto + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-fixesproto-5.0-h3557bc0_1002.tar.bz2 + version: '5.0' +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libuuid: '>=2.32.1,<3.0a0' + xorg-libice: 1.0.* + hash: + md5: bd35f4b1904746d92500ca66a3b1caf4 + sha256: 1a5a90c7b3828d421d3cb70d19cd01a7e0888ab6b9590f580ecd0a05efa53bf7 + manager: conda + name: xorg-libsm + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libsm-1.2.3-h965e137_1000.tar.bz2 + version: 1.2.3 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + xtl: '>=0.7,<0.8' + hash: + md5: 7e6f8ff1a452d2b2c076f0bdfcf323c1 + sha256: 80196bf36ed39339de7be1f192f7aa6b32b0fba97d37f26993b8d369f8459100 + manager: conda + name: xtensor + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xtensor-0.24.3-hdd96247_0.tar.bz2 + version: 0.24.3 +- category: main + dependencies: + libgcc-ng: '>=9.4.0' + libsodium: '>=1.0.18,<1.0.19.0a0' + libstdcxx-ng: '>=9.4.0' + hash: + md5: dd56c9ce3f1f689a5e71941830349279 + sha256: 8da3cf93c15f43aeb6c598d97eeaad79b83f718317813918769f7b837787929f + manager: conda + name: zeromq + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.4-h01db608_1.tar.bz2 + version: 4.3.4 +- category: main + dependencies: + libgcc-ng: '>=12' + libzlib: 1.2.13 h4e544f5_4 + hash: + md5: dc8395f4a79bb0b13ca7d855c72482d4 + sha256: 0e4c848421e361f5738aa743cd9c3955ac168905dffee3a7855fb3531b07ef01 + manager: conda + name: zlib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.2.13-h4e544f5_4.tar.bz2 + version: 1.2.13 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: f5627b0fef9a5267fd4d2ad5d8b5c1b3 + sha256: 140ebfa611ddfe087b2264ce3a5425077925ca710c89f95dab0a5c966e173244 + manager: conda + name: zstd + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.2-hc1e27d5_4.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + snappy: '>=1.1.9,<2.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: d0f2e1124b14533bf95e5e41876a28cb + sha256: 459d723a1b9bf40f0a5a50ebacbf70a690da50904b772a915643359ebf6a71f7 + manager: conda + name: blosc + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/blosc-1.21.1-hdfcada4_3.tar.bz2 + version: 1.21.1 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + icu: '>=70.1,<71.0a0' + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + xz: '>=5.2.5,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 5fa87e26d2d1fd9a4adc53de2a8c922d + sha256: 0e0cb2a2984bd6a13f7b8395262d6544e409f9f56f8419fc2be199fcbb5a97fe + manager: conda + name: boost-cpp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/boost-cpp-1.74.0-ha1c1135_8.tar.bz2 + version: 1.74.0 +- category: main + dependencies: + libbrotlidec: 1.0.9 h4e544f5_8 + libbrotlienc: 1.0.9 h4e544f5_8 + libgcc-ng: '>=12' + hash: + md5: 0980429a0148a53edd0f1f207ec28a39 + sha256: 30214484976cc0a6f37c6e2473578d4602d66d01acf3ccfd2f97238cbb91621b + manager: conda + name: brotli-bin + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-bin-1.0.9-h4e544f5_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + libgcc-ng: '>=12' + libpng: '>=1.6.37,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 3bfd4d79b5d93fa03f94e243d5f640d2 + sha256: 880072c934cfda843c9261d84b99cf45805acf9f9d15c4f13cb5dd0a63f385fc + manager: conda + name: freetype + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hbbbf32d_0.tar.bz2 + version: 2.12.1 +- category: main + dependencies: + binutils_linux-aarch64: 2.39 h489c705_11 + gcc_impl_linux-aarch64: 10.4.0.* + sysroot_linux-aarch64: '' + hash: + md5: b1c78335925466a0b06b1b7bc1fe6581 + sha256: df733153f5f6a44f7585e54783a9e16e91a40763082ef075c13ddde5fad5f116 + manager: conda + name: gcc_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_linux-aarch64-10.4.0-h72ad2ee_11.tar.bz2 + version: 10.4.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libpng: '>=1.6.37,<1.7.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 86e986160df24227ec2242a79eb1b14c + sha256: 69aee863be960cc4951ad455a26e5da07633545e9982475cc1d9323a31ad4730 + manager: conda + name: gl2ps + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gl2ps-1.4.2-hdf53a3c_0.tar.bz2 + version: 1.4.2 +- category: main + dependencies: + libgcc-ng: '>=12' + libidn2: '>=2,<3.0a0' + libstdcxx-ng: '>=12' + libtasn1: '>=4.19.0,<5.0a0' + nettle: '>=3.8.1,<3.9.0a0' + p11-kit: '>=0.24.1,<0.25.0a0' + hash: + md5: bf14b741c602d0076f72a4c8aaed57a9 + sha256: a105be2130ca9002dc6848f217c9751f2055bb7cc767a20ce759675a70778c60 + manager: conda + name: gnutls + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gnutls-3.7.8-h5e100cc_0.tar.bz2 + version: 3.7.8 +- category: main + dependencies: + gcc_impl_linux-aarch64: 10.4.0 h9569200_19 + libstdcxx-devel_linux-aarch64: 10.4.0 h3c6860a_19 + sysroot_linux-aarch64: '' + hash: + md5: e4961cdc774257347d6398ea6dd26f5f + sha256: df210e3cf25aab7b38370427a3299c508ead109afe7ac9167666afd54778d513 + manager: conda + name: gxx_impl_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_impl_linux-aarch64-10.4.0-h9569200_19.tar.bz2 + version: 10.4.0 +- category: main + dependencies: + keyutils: '>=1.6.1,<2.0a0' + libedit: '>=3.1.20191231,<4.0a0' + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + openssl: '>=1.1.1l,<1.1.2a' + hash: + md5: ff2cee93793dcabd267bc8bec1ce0f49 + sha256: 684b37346339e0ce014ea5ab25d3509f6ec2d246c270d7bf14e91c67a214f427 + manager: conda + name: krb5 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.19.3-h7c456eb_0.tar.bz2 + version: 1.19.3 +- category: main + dependencies: + libblas: 3.9.0 16_linuxaarch64_openblas + hash: + md5: 520a3ecbebc63239c27dd6f70c2ababe + sha256: c1d4fa9a99475647c7904009c026fe7f9c0b3159b2f7d2bcecac102751104302 + manager: conda + name: libcblas + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-16_linuxaarch64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libllvm14: '>=14.0.6,<14.1.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 3b9c7ab0b3b3392518fbfc3d351bd3c0 + sha256: 769ca0e7d3f38440c37739f8adb672c5bc292ad8beab86b4c95bf6b7c82efb90 + manager: conda + name: libclang13 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-14.0.6-default_h3684801_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=12' + libiconv: '>=1.17,<2.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + pcre2: '>=10.37,<10.38.0a0' + hash: + md5: e451cef23eaf067a47774210d8eb0af8 + sha256: c6f0bab18f632908ffda7024557c8fc227f695c451aeeefee589e9eff3e30c0f + manager: conda + name: libglib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libglib-2.74.1-h58953e2_0.tar.bz2 + version: 2.74.1 +- category: main + dependencies: + libblas: 3.9.0 16_linuxaarch64_openblas + hash: + md5: 62990b2d1efc22d0beb394e893d39541 + sha256: 80a809ce2c965b27d8b8b90753ab01d467b9bf2a66467ca98fc363e4a41da5ec + manager: conda + name: liblapack + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-16_linuxaarch64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + lame: '>=3.100,<3.101.0a0' + libflac: '>=1.4.1,<1.5.0a0' + libgcc-ng: '>=12' + libogg: '>=1.3.4,<1.4.0a0' + libopus: '>=1.3.1,<2.0a0' + libstdcxx-ng: '>=12' + libvorbis: '>=1.3.7,<1.4.0a0' + mpg123: '>=1.30.2,<1.31.0a0' + hash: + md5: ea2f59cb289ba6ceecfb04014ff188af + sha256: 823c9ef37b34840183e978e2346ade472932a50f9b56659ec9b79f046693650a + manager: conda + name: libsndfile + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsndfile-1.1.0-h4de3ea5_0.tar.bz2 + version: 1.1.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libogg: '>=1.3.4,<1.4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 27dcb450c41247c1432c1a23ca9cf68b + sha256: 7f084e7809761f12e196f92ccbd07c60b81d598ede43247cc6793873d17f9717 + manager: conda + name: libtheora + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libtheora-1.1.1-hf897c2e_1005.tar.bz2 + version: 1.1.1 +- category: main + dependencies: + jpeg: '>=9e,<10a' + lerc: '>=4.0.0,<5.0a0' + libdeflate: '>=1.14,<1.15.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libwebp-base: '>=1.2.4,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + xz: '>=5.2.6,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: bf4778c9d0cf28b914a24d711b569335 + sha256: cd053375b2adb93cc6d5385e82b2a5cbfcbaff76b36bd4af7b70610dc5d531f6 + manager: conda + name: libtiff + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.4.0-hacef7f3_4.tar.bz2 + version: 4.4.0 +- category: main + dependencies: + libgcc-ng: '>=7.5.0' + libstdcxx-ng: '>=7.5.0' + libxml2: '>=2.9.10,<2.11.0a0' + hash: + md5: 324640c3498c5f259dfc91fd497d8628 + sha256: 75ad0ec34bb66d835875dbfb4cd9d45adbe84639e39f81f128be80366cb4d047 + manager: conda + name: libxkbcommon + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxkbcommon-1.0.3-he09c752_0.tar.bz2 + version: 1.0.3 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + mysql-common: 8.0.31 hcde889d_0 + openssl: '>=1.1.1q,<1.1.2a' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 5cd1a9da004a1099215f789cbc98c96a + sha256: b4aca9c4ac82c667f1b3136f6fc1e2925bf07e05d4d4ec90c4356b62532364fe + manager: conda + name: mysql-libs + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mysql-libs-8.0.31-h913e832_0.tar.bz2 + version: 8.0.31 +- category: main + dependencies: + imath: '>=3.1.5,<3.2.0a0' + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 45c8bd855171e498b81ac01944d6ae56 + sha256: f4bcc66a7e91a88ea38c781c27dd2b0b4777a997240c2d277ad1a07d31c2bdaf + manager: conda + name: openexr + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/openexr-3.1.5-hb2805f8_0.tar.bz2 + version: 3.1.5 +- category: main + dependencies: + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.4.0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + mpi: 1.0 openmpi + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 649a8220f90cbc85ffb0b3d3934a8a2a + sha256: dcecfe6d75fc12cf48fe04e80017f1d8b302567f77cc4e8a702573a1a0f98c4a + manager: conda + name: openmpi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/openmpi-4.1.4-h34d0eb5_101.tar.bz2 + version: 4.1.4 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 1188278a5d5d65ffa9682997238cdc28 + sha256: dd1655cd234bbc033ea214c00efd5535cbcf187609375d7a603b9080c99c2950 + manager: conda + name: scotch + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/scotch-6.0.9-h07b6642_2.tar.bz2 + version: 6.0.9 +- category: main + dependencies: + libgcc-ng: '>=12' + libsqlite: 3.39.4 hf9034f9_0 + libzlib: '>=1.2.12,<1.3.0a0' + ncurses: '>=6.3,<7.0a0' + readline: '>=8.1.2,<9.0a0' + hash: + md5: dd7f00021ca9e6606316410afc9b9c83 + sha256: 347e11e2496a7be3647834d208c196a3fa6822d18307651503ae2a292a76047d + manager: conda + name: sqlite + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/sqlite-3.39.4-h69ca7e5_0.tar.bz2 + version: 3.39.4 +- category: main + dependencies: + libgcc-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + hash: + md5: eabcf8509b5e53b71d68720aaa37389c + sha256: 15e4887fd49e4cf906492ad54083b2fdc2900d76ea1715b4857b919edb2e7364 + manager: conda + name: xcb-util + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-0.4.0-h4e544f5_0.tar.bz2 + version: 0.4.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + hash: + md5: 000c309181577d48d1a6b803ed58bb87 + sha256: 3f47e8bff9c85a5fb68749c162123b55641f638a414ed22fc9c1fc98750268da + manager: conda + name: xcb-util-keysyms + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.0-h4e544f5_0.tar.bz2 + version: 0.4.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + hash: + md5: 1f7b3de5887df033a20ec23afdc4f0f0 + sha256: e82f42aa977dc0b82192e1c6e1ccd18b3ccb36581c1045b2dcec408d36fea54e + manager: conda + name: xcb-util-renderutil + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.9-h4e544f5_0.tar.bz2 + version: 0.3.9 +- category: main + dependencies: + libgcc-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + hash: + md5: 25747216734abf87c0330c602c3d4fb8 + sha256: 3bfe739fe6031d8e60470c2718973c2ca4c0d5dea64f14501664fdb524ed3d1b + manager: conda + name: xcb-util-wm + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-wm-0.4.1-h4e544f5_0.tar.bz2 + version: 0.4.1 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libxcb: 1.* + xorg-kbproto: '' + xorg-xproto: '' + hash: + md5: cb17ef3b158247c80f6f5c62ce435685 + sha256: 7848cc5bc5810fc85a414f7c1decc0a26f96b60c4f9b701d1e046e3682d976b5 + manager: conda + name: xorg-libx11 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libx11-1.7.2-h3557bc0_0.tar.bz2 + version: 1.7.2 +- category: main + dependencies: + brotli-bin: 1.0.9 h4e544f5_8 + libbrotlidec: 1.0.9 h4e544f5_8 + libbrotlienc: 1.0.9 h4e544f5_8 + libgcc-ng: '>=12' + hash: + md5: 259d82bd990ba225508389509634b157 + sha256: e775343c34d04c6e27b4967b6edeac4793c9f0bd6c843990497c72798f49808f + manager: conda + name: brotli + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-1.0.9-h4e544f5_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + expat: '>=2.4.2,<3.0a0' + libgcc-ng: '>=9.4.0' + libglib: '>=2.70.2,<3.0a0' + hash: + md5: f3d63805602166bac09386741e00935e + sha256: 5fe76bdf27a142cfb9da0fb3197c562e528d2622b573765bee5c9904cf5e6b6b + manager: conda + name: dbus + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/dbus-1.13.6-h12b9eeb_3.tar.bz2 + version: 1.13.6 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + hash: + md5: a67f7fbd106eceeabfe38266515e2d83 + sha256: b19114b391d4606b78339efd1dbae1eb0ad5ae8cb252b7cf503750f567f31db8 + manager: conda + name: fenics-libbasix + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-libbasix-0.5.1-h8f8c065_0.tar.bz2 + version: 0.5.1 +- category: main + dependencies: + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.4.0' + libstdcxx-ng: '>=12' + openmpi: '>=4.1.4,<5.0a0' + hash: + md5: cc255a48f2b65670d1f55598d325c15b + sha256: 5c7d5060a9b0149b233583ec577278ba1ec2a077981ae2dbfb6b1610f001373b + manager: conda + name: fftw + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fftw-3.3.10-mpi_openmpi_h81be375_5.tar.bz2 + version: 3.3.10 +- category: main + dependencies: + expat: '>=2.4.9,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libgcc-ng: '>=12' + libuuid: '>=2.32.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + hash: + md5: b1fb3a42a1a3c1fe2c1abc306fe9fdfd + sha256: 448b88dc622a011d5973a765ded6593c73519fc2411d08de6d49bc1dd4b91a17 + manager: conda + name: fontconfig + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fontconfig-2.14.1-h77febde_0.tar.bz2 + version: 2.14.1 +- category: main + dependencies: + libgcc-ng: '>=12' + libglib: 2.74.1 h58953e2_0 + libstdcxx-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + hash: + md5: f312360a3dfbc54bfc1bee2ccb8d8334 + sha256: b2edd73044006fee053c03592b8b21c1db7e77963329e1e6d2630ee771a25b0b + manager: conda + name: glib-tools + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/glib-tools-2.74.1-h7866ba4_0.tar.bz2 + version: 2.74.1 +- category: main + dependencies: + binutils_linux-aarch64: 2.39 h489c705_11 + gcc_linux-aarch64: 10.4.0 h72ad2ee_11 + gxx_impl_linux-aarch64: 10.4.0.* + sysroot_linux-aarch64: '' + hash: + md5: 0a8caf25b6f2df1a03cf6d72c48e207b + sha256: 5ec091348923d1d420c5d572fad583f051cb5cf49f6187d335c3bdd217c80828 + manager: conda + name: gxx_linux-aarch64 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_linux-aarch64-10.4.0-hb08d869_11.tar.bz2 + version: 10.4.0 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + openmpi: '>=4.1.4,<5.0a0' + hash: + md5: 7ba01977d71285378ee2515957da6b26 + sha256: 124e79472bd3d692e85d680b31ca62176780442469771f0da48b49a12401916c + manager: conda + name: hypre + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/hypre-2.25.0-mpi_openmpi_hb574ba3_0.tar.bz2 + version: 2.25.0 +- category: main + dependencies: + alsa-lib: '>=1.2.7.2,<1.2.8.0a0' + libdb: '>=6.2.32,<6.3.0a0' + libgcc-ng: '>=12' + libopus: '>=1.3.1,<2.0a0' + libsndfile: '>=1.1.0,<1.2.0a0' + libstdcxx-ng: '>=12' + readline: '>=8.1.2,<9.0a0' + hash: + md5: 678064740b2c0480130b22d0d59142f3 + sha256: 4f695e92999d42368c7a82c665e4f521597104c13600ba20e13b5e619c05e443 + manager: conda + name: jack + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/jack-1.9.21-hbeaca7c_0.tar.bz2 + version: 1.9.21 +- category: main + dependencies: + jpeg: '>=9d,<10a' + libgcc-ng: '>=9.3.0' + libtiff: '>=4.2.0,<5.0a0' + hash: + md5: d112a00b1ba7dda1f79735d2a4661ea3 + sha256: cf369b840a2b5e844ffc296362f65420338c8c1af7cfad63de508c778da37176 + manager: conda + name: lcms2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.12-h012adcb_0.tar.bz2 + version: '2.12' +- category: main + dependencies: + libclang13: 14.0.6 default_h3684801_0 + libgcc-ng: '>=12' + libllvm14: '>=14.0.6,<14.1.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 61479b4b2e86378c7535c614554228ea + sha256: ac5ccc9b5a046315239cf9312ef3f938159a8cb791a8f0cb652908504b6fddf4 + manager: conda + name: libclang + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-14.0.6-default_ha7bf5e6_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 94e136d5faf52fd168c767f4fd376833 + sha256: 7823a3f81a58bb4966d233e810d573950f92344fa08308155e2a4fcdd9f3db7d + manager: conda + name: libcups + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcups-2.3.3-h0c1ea75_2.tar.bz2 + version: 2.3.3 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libgcc-ng: '>=12' + libnghttp2: '>=1.47.0,<2.0a0' + libssh2: '>=1.10.0,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 0fa70ee90ea04630b313fe4571396355 + sha256: 896558e0d0322b5506eb3d7d52b968e259abc0f95be1b1eed9acc1df473d6280 + manager: conda + name: libcurl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-7.86.0-h8fd98b7_0.tar.bz2 + version: 7.86.0 +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + expat: '>=2.3.0,<3.0.0a0' + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 98d9faca0ecbadff8aebac7674fe24a3 + sha256: 9422039ac2bd002c92db3e33885ddfbe5c6132991f8d99c9d6bb2cfe179f7505 + manager: conda + name: libkml + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libkml-1.3.0-h019b1a7_1014.tar.bz2 + version: 1.3.0 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libgcc-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + readline: '>=8.1.2,<9.0a0' + hash: + md5: 3b77f09a4b65aa772f2fa6b16446337c + sha256: 47b4612f1d1425f50c6f55e0305641a3222653aeb53bebebf35cf55f8a84465b + manager: conda + name: libpq + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpq-14.5-h9bd3da0_1.tar.bz2 + version: '14.5' +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.11,<1.3.0a0' + nspr: '>=4.32,<5.0a0' + sqlite: '>=3.38.5,<4.0a0' + hash: + md5: 2426d07923148953e034b462e12600c8 + sha256: de0a338e4a3a1b0dd04515cc3c3135608084424f0b1e5b74697b09cb8c53db4d + manager: conda + name: nss + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/nss-3.78-h1b46d77_0.tar.bz2 + version: '3.78' +- category: main + dependencies: + libgcc-ng: '>=12' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 3638647a2b0a7aa92be687fcc500af60 + sha256: 26ae35f9f508a094f8a9212bf612eab1918d96b00acdf139f9e6e56591c76573 + manager: conda + name: openjpeg + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.0-h9b6de37_1.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + openmpi: '>=4.1,<4.2.0a0' + hash: + md5: dbfc99a25bfb6a95699ccb9885b4587e + sha256: acf2f5ddf488c3e5e6e2ca5818e839404f30a413eb773788dda717154a13d777 + manager: conda + name: parmetis + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/parmetis-4.0.3-ha1755b7_1005.tar.bz2 + version: 4.0.3 +- category: main + dependencies: + libgcc-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + openmpi: '>=4.1.2,<5.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 0961db77c6b53c624b3d12d937eb6117 + sha256: 0c6d60e479af86e8a0011c8f84e38f66725a6b5d013050da365d1c82c36176da + manager: conda + name: ptscotch + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ptscotch-6.0.9-h836f696_2.tar.bz2 + version: 6.0.9 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + ld_impl_linux-aarch64: '>=2.36.1' + libffi: '>=3.4.2,<3.5.0a0' + libgcc-ng: '>=12' + libnsl: '>=2.0.0,<2.1.0a0' + libuuid: '>=2.32.1,<3.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + ncurses: '>=6.3,<7.0a0' + openssl: '>=1.1.1o,<1.1.2a' + readline: '>=8.1,<9.0a0' + sqlite: '>=3.38.5,<4.0a0' + tk: '>=8.6.12,<8.7.0a0' + tzdata: '' + xz: '>=5.2.5,<5.3.0a0' + hash: + md5: b0a6df0df79270624a49a1982482842c + sha256: 8f25db0aa5c306851a288db062b532e738498f9579382571f0896051273ba789 + manager: conda + name: python + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.9.13-h2eada40_0_cpython.tar.bz2 + version: 3.9.13 +- category: main + dependencies: + libblas: '>=3.8.0,<4.0a0' + libgcc-ng: '>=10.3.0' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + liblapack: '>=3.8.0,<4.0a0' + openmpi: '>=4.1.2,<5.0a0' + hash: + md5: 936a80b837eab53047aa8cefcb2cba10 + sha256: 77e02347a2b7bd813d8e1f641fb7df3ea344b64abc5a9cf5820f3e059fd0434c + manager: conda + name: scalapack + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/scalapack-2.2.0-hb3004b9_1.tar.bz2 + version: 2.2.0 +- category: main + dependencies: + libblas: '>=3.8.0,<4.0a0' + libcblas: '>=3.8.0,<4.0a0' + libgcc-ng: '>=9.4.0' + liblapack: '>=3.8.0,<4.0a0' + libstdcxx-ng: '>=9.4.0' + metis: '>=5.1.0,<5.2.0a0' + mpfr: '>=4.1.0,<5.0a0' + tbb: '>=2021.3.0' + hash: + md5: 351565b22e92174d1c8040f8544cf618 + sha256: 70601118fd2d53a5b70eebf329bdc8f3182e4b3440840475882c4ba67c1cdb19 + manager: conda + name: suitesparse + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/suitesparse-5.10.1-h1404dd6_1.tar.bz2 + version: 5.10.1 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + hash: + md5: 32ff86b3335def4756143ee4799ca6ce + sha256: edcf67939842a9ed98880580a8e98cb126ee6bce09d328d7a0fc113a846b919c + manager: conda + name: superlu + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/superlu-5.2.2-h4b58547_0.tar.bz2 + version: 5.2.2 +- category: main + dependencies: + libgcc-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + xcb-util: '>=0.4.0,<0.5.0a0' + hash: + md5: 49d02a85d19b7450d2c0cb51af9805b1 + sha256: 3368c7d3c8482f755589159b6e28f7af30d5f973f875fc3fecd1129b80ed37d1 + manager: conda + name: xcb-util-image + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h4e544f5_0.tar.bz2 + version: 0.4.0 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-xextproto: '' + hash: + md5: 2aab1b533c922a4684ae083a38008d23 + sha256: 90546459bb707138e836723a0a56313e9207666fe451fa9ce42a241376d3ba79 + manager: conda + name: xorg-libxext + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxext-1.3.4-h3557bc0_1.tar.bz2 + version: 1.3.4 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-fixesproto: '' + xorg-libx11: '>=1.7.0,<2.0a0' + hash: + md5: 8c639389f12135ddc2bb23497d6d1918 + sha256: c6d38bfb9d9a9ab4c1331700a29970d6fa4894bb1e2585300a21d75ac3c0ee8d + manager: conda + name: xorg-libxfixes + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxfixes-5.0.3-h3557bc0_1004.tar.bz2 + version: 5.0.3 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-renderproto: '' + hash: + md5: 3e2d3b39406da543f0004ed1c7863978 + sha256: eb24f7bb38f6ce752c807e17fabf0a0845e43ecbd2c1eaaa52f081b39856e742 + manager: conda + name: xorg-libxrender + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrender-0.9.10-h3557bc0_1003.tar.bz2 + version: 0.9.10 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-kbproto: '' + xorg-libice: 1.0.* + xorg-libsm: 1.2.* + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-xproto: '' + hash: + md5: 4b844a6bcf8ab4d6f5433a7c5da48334 + sha256: d1c59518d1bc2afcd60b449f9c36ac30cda76d9dc4f29c9ee8eee192d33d714e + manager: conda + name: xorg-libxt + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxt-1.2.1-h3557bc0_2.tar.bz2 + version: 1.2.1 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 466dc5c1b75c93180efbd81d99dc29b0 + sha256: f3d58687fb000acc5d5f773d6e633ffb382575895abbc8db3d9b8e3996b05d39 + manager: conda + name: affine + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/affine-2.3.1-pyhd8ed1ab_0.tar.bz2 + version: 2.3.1 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: f3f2ab3ce28979a24d1a988ba211eb9b + sha256: 1354731d0eb1b406b66b3cb3d6ab74d7cbe9c0ec1d30b9e5afa366d4539e4687 + manager: conda + name: asn1crypto + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2 + version: 1.5.1 +- category: main + dependencies: + python: '>=3.5' + hash: + md5: 6d3ccbc56256204925bfa8378722792f + sha256: 86133878250874b3823bae7369bcad90187132537726cb1b546d88a0552d24de + manager: conda + name: attrs + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/attrs-22.1.0-pyh71513ae_1.tar.bz2 + version: 22.1.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + manager: conda + name: cached_property + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.12.1,<3.0a0' + icu: '>=70.1,<71.0a0' + libgcc-ng: '>=12' + libglib: '>=2.72.1,<3.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + pixman: '>=0.40.0,<1.0a0' + xorg-libice: '' + xorg-libsm: '' + xorg-libx11: '' + xorg-libxext: '' + xorg-libxrender: '' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 9327b6d0a90328b67e41a966b7bfd138 + sha256: 262f0613cb6ecee1e05670e9b44a7bae789e23f86d7cfe4e862c30dca822fd5e + manager: conda + name: cairo + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cairo-1.16.0-hd19fb6e_1014.tar.bz2 + version: 1.16.0 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: f66309b099374af91369e67e84af397d + sha256: 52e7459b3c457e888e2b6a4e6d13ab7f8675999bc12d20a83e34f12591a8771a + manager: conda + name: certifi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2022.9.24-pyhd8ed1ab_0.tar.bz2 + version: 2022.9.24 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libcurl: '>=7.82.0,<8.0a0' + libgcc-ng: '>=10.3.0' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 6df2c8625e71ac41f028df8b6916d6c8 + sha256: f1c45930877ef8b5e7549ab5419143439d912015df87ff29a44fc2b254b8ffc5 + manager: conda + name: cfitsio + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cfitsio-4.1.0-h8b262d6_0.tar.bz2 + version: 4.1.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: c1d5b294fbf9a795dec349a6f4d8be8e + sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb + manager: conda + name: charset-normalizer + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2 + version: 2.1.1 +- category: main + dependencies: + __unix: '' + python: '>=3.8' + hash: + md5: 20e4087407c7cb04a40817114b333dbf + sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + manager: conda + name: click + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2 + version: 8.1.3 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libcurl: 7.86.0 h8fd98b7_0 + libgcc-ng: '>=12' + libssh2: '>=1.10.0,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 0fb58014b107459eee4bc0d5e8b1311b + sha256: 998b2f1c3e71b9126aa23e65c14c7d62a187157a53035fe986bcdf39f94825da + manager: conda + name: curl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/curl-7.86.0-h8fd98b7_0.tar.bz2 + version: 7.86.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + manager: conda + name: cycler + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2 + version: 0.11.0 +- category: main + dependencies: + aom: '>=3.5.0,<3.6.0a0' + bzip2: '>=1.0.8,<2.0a0' + fontconfig: '>=2.14.0,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.12.1,<3.0a0' + gmp: '>=6.2.1,<7.0a0' + gnutls: '>=3.7.8,<3.8.0a0' + lame: '>=3.100,<3.101.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libvpx: '>=1.11.0,<1.12.0a0' + libxml2: '>=2.10.3,<2.11.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + svt-av1: '>=1.3.0,<1.3.1.0a0' + x264: '>=1!164.3095,<1!165' + x265: '>=3.5,<3.6.0a0' + hash: + md5: 8e64bb6935a279f7af0cb6f6479ce6bc + sha256: d0db700e8a8d2de877fbc5b3c49ccc80af49236803931b01329fda3360d5deb0 + manager: conda + name: ffmpeg + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ffmpeg-4.4.2-gpl_hdfc3963_110.tar.bz2 + version: 4.4.2 +- category: main + dependencies: + freetype: '>=2.10.4,<3.0a0' + jpeg: '>=9d,<10a' + libgcc-ng: '>=9.4.0' + libglu: '' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=9.4.0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + xorg-libice: '' + xorg-libsm: '' + xorg-libx11: '' + xorg-libxau: '' + xorg-libxdmcp: '' + xorg-libxext: '' + xorg-libxfixes: '' + xorg-libxrender: '' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 97931d363dff1b799c073dbc1af6de40 + sha256: 97e212c8b09b7e020803bef1c558dafabeef446b5b4ce4d51df92a4734acd704 + manager: conda + name: fltk + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fltk-1.3.8-h3361260_0.tar.bz2 + version: 1.3.8 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + libglu: '' + libstdcxx-ng: '>=9.3.0' + xorg-libx11: '' + xorg-libxext: '' + hash: + md5: 2a46529de1ff766f31333d3cdff2b734 + sha256: f872cc93507b833ec5f2f08e479cc0074e5d73defe4f91d54f667a324d0b4f61 + manager: conda + name: glew + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/glew-2.1.0-h01db608_2.tar.bz2 + version: 2.1.0 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + glib-tools: 2.74.1 h7866ba4_0 + libgcc-ng: '>=12' + libglib: 2.74.1 h58953e2_0 + libstdcxx-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + python: '*' + hash: + md5: e57d4665c779dac435604753948e9e4d + sha256: c1eea6223e576213f22f9ccce07786b77c04f5c5812a1346f63a61ea161beba8 + manager: conda + name: glib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/glib-2.74.1-h7866ba4_0.tar.bz2 + version: 2.74.1 +- category: main + dependencies: + libcurl: '>=7.81.0,<8.0a0' + libgcc-ng: '>=10.3.0' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + openmpi: '>=4.1,<4.2.0a0' + openssl: '>=1.1.1l,<1.1.2a' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 9b6d9bf9272449abdd7bff1eabd79734 + sha256: 3f7d87f442db60e0688022aa8fe83319424a588b406c89360d8ad408803c67dc + manager: conda + name: hdf5 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.12.1-mpi_openmpi_h4189069_4.tar.bz2 + version: 1.12.1 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + manager: conda + name: idna + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + version: '3.4' +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 2cfa3e1cf3fb51bb9b17acc5b5e9ea11 + sha256: 95ac5f9ee95fd4e34dc051746fc86016d3d4f6abefed113e2ede049d59ec2991 + manager: conda + name: jmespath + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_0.tar.bz2 + version: 1.0.1 +- category: main + dependencies: + _openmp_mutex: '>=4.5' + jpeg: '>=9d,<10a' + lcms2: '>=2.12,<3.0a0' + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 017d4cb6bb7fa0e73b11539188ed1eca + sha256: ccc5faf6d08b2ec9592428e709cefdaa799028eaf38512b90bb606adb90f71e1 + manager: conda + name: libraw + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libraw-0.20.2-hc8204c4_1.tar.bz2 + version: 0.20.2 +- category: main + dependencies: + libblas: '>=3.8.0,<4.0a0' + libgcc-ng: '>=10.3.0' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + liblapack: '>=3.8.0,<4.0a0' + metis: '>=5.1.0,<5.2.0a0' + mumps-include: 5.2.1 h8af1aa0_11 + openmpi: '>=4.1.2,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + ptscotch: '>=6.0.9,<6.0.10.0a0' + scalapack: '>=2.2.0,<2.3.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + hash: + md5: 6b42d5e5c2cea8c224062d814553899d + sha256: 85db4db2f695b8c10df545fe1ae378fdd52239781550b99ddd743e136bc8cf4f + manager: conda + name: mumps-mpi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mumps-mpi-5.2.1-hc617c41_11.tar.bz2 + version: 5.2.1 +- category: main + dependencies: + python: '' + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + manager: conda + name: munkres + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + version: 1.1.4 +- category: main + dependencies: + python: '>=3.8' + hash: + md5: 1b74438a7270b1e2cbd3de9dba18ebb6 + sha256: eda4b0dba46c72770bc410c794f4da62509623a24c12b9805954828278915dc7 + manager: conda + name: networkx + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/networkx-2.8.7-pyhd8ed1ab_0.tar.bz2 + version: 2.8.7 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libgcc-ng: '>=12' + libpq: 14.5 h9bd3da0_1 + libxml2: '>=2.10.3,<2.11.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + readline: '>=8.1.2,<9.0a0' + tzcode: '' + tzdata: '' + zlib: '' + hash: + md5: f470033418562697489493c607a5b1a6 + sha256: a9ab8845082b62cdd6f2df076866d56a7ac5e193bfd94dfcd95f37542b101a34 + manager: conda + name: postgresql + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/postgresql-14.5-hc0ee1c8_1.tar.bz2 + version: '14.5' +- category: main + dependencies: + libcurl: '>=7.83.1,<8.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + sqlite: '>=3.39.0,<4.0a0' + hash: + md5: ca5ff6e95b441d0496779cbb3a06ad3e + sha256: 3215e20c638ccc36578f1ba20c765f351399c53517a238fe90056e781c055a83 + manager: conda + name: proj + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/proj-9.0.1-h92d5b9d_1.tar.bz2 + version: 9.0.1 +- category: main + dependencies: + alsa-lib: '>=1.2.7.2,<1.2.8.0a0' + dbus: '>=1.13.6,<2.0a0' + fftw: '>=3.3.10,<4.0a0' + jack: '>=1.9.21,<1.10.0a0' + libcap: '>=2.66,<2.67.0a0' + libgcc-ng: '>=12' + libglib: '>=2.74.0,<3.0a0' + libiconv: '>=1.17,<2.0a0' + libsndfile: '>=1.1.0,<1.2.0a0' + libstdcxx-ng: '>=12' + libtool: '>=2.4' + libudev1: '>=249' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 5b46e3409062302e8db82411d15bc36d + sha256: c67de293eb2a1c74e5d0069b0e81c642b0815fb3ce6e2093d63d7b52e546547f + manager: conda + name: pulseaudio + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pulseaudio-14.0-hfa87651_10.tar.bz2 + version: '14.0' +- category: main + dependencies: + python: ==2.7.*|>=3.4 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + manager: conda + name: pycparser + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + version: '2.21' +- category: main + dependencies: + python: '>=3.6' + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + manager: conda + name: pyparsing + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2 + version: 3.0.9 +- category: main + dependencies: + __unix: '' + python: '>=3.8' + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + manager: conda + name: pysocks + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + version: 1.7.1 +- category: main + dependencies: + python: 3.9.* + hash: + md5: c74e493d773fa544a312b0904abcfbfb + sha256: bed710ed58864219bb5c7742bd00edb206c33c650a89a9e2653a72314d1da95f + manager: conda + name: python_abi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.9-2_cp39.tar.bz2 + version: '3.9' +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 565724d09157870f0e469b1a0a172a6d + sha256: 0fc68b442d74920858fe7e4760c10efb22610fb27f28d2bfe98296b7ef2078f0 + manager: conda + name: pytz + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2022.5-pyhd8ed1ab_0.tar.bz2 + version: '2022.5' +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 462466739c786f85f9ed555f87099fe1 + sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 + manager: conda + name: setuptools + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 + version: 65.5.0 +- category: main + dependencies: + python: '' + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + manager: conda + name: six + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + version: 1.16.0 +- category: main + dependencies: + _openmp_mutex: '>=4.5' + libblas: '>=3.8.0,<4.0a0' + libgcc-ng: '>=9.4.0' + libgfortran-ng: '' + libgfortran5: '>=9.4.0' + liblapack: '>=3.8.0,<4.0a0' + libstdcxx-ng: '>=9.4.0' + metis: '>=5.1.0,<5.2.0a0' + openmpi: '>=4.1.2,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + hash: + md5: 6c5025927f45f3c1d63fc1b47103c6dd + sha256: 122967175d00717599c6c7ba497d2666394ce475460e164dd2c40f0f3b3703a9 + manager: conda + name: superlu_dist + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/superlu_dist-7.2.0-hec336ca_0.tar.bz2 + version: 7.2.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: a2995ee828f65687ac5b1e71a2ab1e0c + sha256: c7a964811ba49c545236f7d6c2486b2ed493931660048a06fe94ecc851dd0b82 + manager: conda + name: threadpoolctl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2 + version: 3.1.0 +- category: main + dependencies: + python: '!=3.0,!=3.1,!=3.2,!=3.3,!=3.4' + hash: + md5: 1ca02aaf78d9c70d9a81a3bed5752022 + sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc + manager: conda + name: wheel + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 + version: 0.37.1 +- category: main + dependencies: + icu: '>=70.1,<71.0a0' + libcurl: '>=7.85.0,<8.0a0' + libgcc-ng: '>=12' + libnsl: '>=2.0.0,<2.1.0a0' + libstdcxx-ng: '>=12' + hash: + md5: 561c4940b43a6d0c9a0c76818ffb11f3 + sha256: a555c6d138843ae934424eb9c2b43684321716a5415880b98b182f489caeb7ad + manager: conda + name: xerces-c + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xerces-c-3.2.4-hb872fcc_1.tar.bz2 + version: 3.2.4 +- category: main + dependencies: + libgcc-ng: '>=9.3.0' + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-libxext: 1.3.* + xorg-libxt: '>=1.2.1,<2.0a0' + hash: + md5: f1d3d2638b372a1150b7abbe15e4d7cd + sha256: 242a88512ad8fdfb32b06473c7554c1ff7617b1bd469a44cb51e35ffc9620593 + manager: conda + name: xorg-libxmu + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxmu-1.1.3-hf897c2e_0.tar.bz2 + version: 1.1.3 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 0c0e2e24aa2e9ee3dd99c611b1098047 + sha256: 65553bbb7bdfedc1a17abc7cb26df8fb38aa50d9e56aa0eeb64a68a060d5301a + manager: conda + name: xyzservices + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2022.9.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.9.0 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: cd4eb48ebde7de61f92252979aab515c + sha256: 942b80980ae3db52f032720c82c2d4fb3f463b228762fc2d6a2684d6438fcc29 + manager: conda + name: zipp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.10.0-pyhd8ed1ab_0.tar.bz2 + version: 3.10.0 +- category: main + dependencies: + cached_property: '>=1.5.2,<1.5.3.0a0' + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + manager: conda + name: cached-property + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=12' + pycparser: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 00eb46387466e9b3815e98d22998cbb6 + sha256: 14b5a2f1810358a6e8164e8b843da7a28cb53aca8679ba82a9de2f901f241b74 + manager: conda + name: cffi + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.15.1-py39hb26bf21_2.tar.bz2 + version: 1.15.1 +- category: main + dependencies: + click: '>=3.0' + python: '' + hash: + md5: 4fd2c6b53934bd7d96d1f3fdaf99b79f + sha256: ddef6e559dde6673ee504b0e29dd814d36e22b6b9b1f519fa856ee268905bf92 + manager: conda + name: click-plugins + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 + version: 1.1.1 +- category: main + dependencies: + click: '>=4.0' + python: <4.0 + hash: + md5: a29b7c141d6b2de4bb67788a5f107734 + sha256: 97bd58f0cfcff56a0bcda101e26f7d936625599325beba3e3a1fa512dd7fc174 + manager: conda + name: cligj + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 + version: 0.7.2 +- category: main + dependencies: + imath: '>=3.1.5,<3.2.0a0' + jpeg: '>=9e,<10a' + jxrlib: '>=1.1,<1.2.0a0' + libgcc-ng: '>=12' + libpng: '>=1.6.37,<1.7.0a0' + libraw: '>=0.20.2,<0.21.0a0' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openexr: '>=3.1.5,<3.2.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + hash: + md5: 976e293a581a6683ffc41207cd1e193b + sha256: c4a24c0509b87eacf10c4aa1bcc57088758278d65b0413fe94dd75212bb5e0a8 + manager: conda + name: freeimage + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/freeimage-3.18.0-h94a013c_10.tar.bz2 + version: 3.18.0 +- category: main + dependencies: + jpeg: '>=9e,<10a' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 84e4a3dd8e168fea9d9d3ac03498112e + sha256: 23949b0e5e9426e0509f5c452d94bde03ea9b716602f4a89bc27d96657cbc6e9 + manager: conda + name: geotiff + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/geotiff-1.7.1-h17a4d75_3.tar.bz2 + version: 1.7.1 +- category: main + dependencies: + gettext: '>=0.19.8.1,<1.0a0' + glib: '>=2.72.1,<3.0a0' + libgcc-ng: '>=12' + libglib: '>=2.72.1,<3.0a0' + libstdcxx-ng: '>=12' + hash: + md5: c8f5b16829adaac8fd2c3415333a388f + sha256: 59dc056fc43ff9739b78382a3d9d2bcc63a0c8bb4e834aeaf8e79aeb870b656b + manager: conda + name: gstreamer + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gstreamer-1.20.3-hf4e84e4_2.tar.bz2 + version: 1.20.3 +- category: main + dependencies: + python: '>=3.8' + zipp: '>=0.5' + hash: + md5: ec069c4db6a0ad84107bac5da62819d2 + sha256: cea7928e6949c3ecd15e56ee8fa4e54efa8bb82738b8264e0489847e86e022c8 + manager: conda + name: importlib-metadata + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-5.0.0-pyha770c72_1.tar.bz2 + version: 5.0.0 +- category: main + dependencies: + python: '>=3.6' + setuptools: '' + hash: + md5: 7583652522d71ad78ba536bba06940eb + sha256: 0c21351871df2c0a53168575597dd9c881e2a9fa4c42fe89a9bcd7fab37f462c + manager: conda + name: joblib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2 + version: 1.2.0 +- category: main + dependencies: + hdf5: '>=1.12.1,<1.12.2.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + hash: + md5: 109e6bfc33bf6c8253eb3721dbad7483 + sha256: d9d34f3d8b3721a6b53fb983ceb6ee8c18c9c790bad86311a21224907a4051ac + manager: conda + name: kealib + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/kealib-1.4.15-h477a95f_0.tar.bz2 + version: 1.4.15 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 9c045502f6ab8c89bfda6be3c389e503 + sha256: 9bf3781b4f46988b7e97d9fbaeab666340d3818d162d362b11529809349c9741 + manager: conda + name: kiwisolver + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/kiwisolver-1.4.4-py39h110580c_1.tar.bz2 + version: 1.4.4 +- category: main + dependencies: + blosc: '>=1.21.1,<2.0a0' + bzip2: '>=1.0.8,<2.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + libffi: '>=3.4.2,<3.5.0a0' + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.4.0' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=12' + openmpi: '>=4.1.4,<5.0a0' + zeromq: '>=4.3.4,<4.4.0a0' + zfp: '>=0.5.5,<1.0a0' + hash: + md5: 974ad1f57b44b04be70467d79ca031e9 + sha256: 05251a6b37e7e7c388f5c9e56a70b17d3e41427182afd53c0d8708e11a0ae1de + manager: conda + name: libadios2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libadios2-2.8.3-mpi_openmpi_hb5938c6_1.tar.bz2 + version: 2.8.3 +- category: main + dependencies: + curl: '>=7.75.0,<8.0a0' + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + libuuid: '>=2.32.1,<3.0a0' + libxml2: '>=2.9.10,<2.11.0a0' + hash: + md5: 8657a8b8a2c6ef0be0a84aba9bcc8a06 + sha256: 2414a0c58573f9bfa4e8393b22b95e6b41ecad6e745894d617000916806b154d + manager: conda + name: libdap4 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libdap4-3.20.6-hf7f982d_2.tar.bz2 + version: 3.20.6 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + curl: '>=7.82.0,<8.0a0' + hdf4: '>=4.2.15,<4.3.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + jpeg: '>=9e,<10a' + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + libzip: '>=1.8.0,<2.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + openmpi: '>=4.1.3,<5.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 13b6a84ef78a558af735de749859b60b + sha256: c9e216ad654731702c7b3abababf5ea34c57280ab93d0333baad84804c98bb5a + manager: conda + name: libnetcdf + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnetcdf-4.8.1-mpi_openmpi_h3a47db1_2.tar.bz2 + version: 4.8.1 +- category: main + dependencies: + freexl: '>=1.0.6,<2.0a0' + geos: '>=3.11.0,<3.11.1.0a0' + libgcc-ng: '>=12' + librttopo: '>=1.1.0,<1.2.0a0' + libsqlite: '>=3.39.2,<4.0a0' + libstdcxx-ng: '>=12' + libxml2: '>=2.10.1,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + sqlite: '>=3.39.2,<4.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: da098fcaee65d87f9a7615d9ead1f9c8 + sha256: 2561e39cd27456f44bd18f3e9e0160b604f6b9ed9d9a6d9046e8b46e8955dccc + manager: conda + name: libspatialite + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libspatialite-5.0.1-h44d26a7_19.tar.bz2 + version: 5.0.1 +- category: main + dependencies: + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: e48b534aae9a6303ade4846f6814a584 + sha256: 1b10ff4e607ff5246cf4e3888de4add59839b316a19104d12e47619871bd1819 + manager: conda + name: loguru + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/loguru-0.6.0-py39ha65689a_1.tar.bz2 + version: 0.6.0 +- category: main + dependencies: + libgcc-ng: '>=12' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 1aecad08fe9de2eaaf5f8328c9a78daf + sha256: 69b25cae3ffaec76d9582fdef244ce1be019b199222ad31f9cd29f1f4fc1015e + manager: conda + name: markupsafe + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-2.1.1-py39hb9a1dbb_2.tar.bz2 + version: 2.1.1 +- category: main + dependencies: + libgcc-ng: '>=12' + openmpi: '>=4.1.4,<5.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 014a80f4352173624bc89ee0430016ed + sha256: 31fff6cae4617f7af8f0502a9c9faaf6525acb66b8604fb37d7de82698e6c801 + manager: conda + name: mpi4py + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/mpi4py-3.1.3-py39h9ee0dd4_3.tar.bz2 + version: 3.1.3 +- category: main + dependencies: + python: '' + setuptools: '>=17.1' + six: '' + hash: + md5: 31d9e9be500e25ff0050bc9f57a6bcd7 + sha256: bd885bec8b012abf0c5ca5d6225caf0e88e5b2b0af8fa5a4e4d339604d3e9cd1 + manager: conda + name: munch + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 355478bfcf1bff632b3e59a37b3042c8 + sha256: b11849b08ad145ed41042c142e3e83c498ed609d0187450dfb5b4854771fed2a + manager: conda + name: numpy + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.23.4-py39hf5a3166_1.tar.bz2 + version: 1.23.4 +- category: main + dependencies: + pyparsing: '>=2.0.2,!=3.0.5' + python: '>=3.6' + hash: + md5: 71f1ab2de48613876becddd496371c85 + sha256: 8322a9e93e2e09fbf2103f0d37c9287b7b97387125abadd6db26686084893540 + manager: conda + name: packaging + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/packaging-21.3-pyhd8ed1ab_0.tar.bz2 + version: '21.3' +- category: main + dependencies: + fftw: '* mpi_openmpi_*' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + hypre: '>=2.25.0,<2.25.1.0a0' + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + metis: '>=5.1.0,<5.2.0a0' + mumps-mpi: '>=5.2.1,<5.2.2.0a0' + openmpi: '>=4.1.4,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + ptscotch: '>=6.0.9,<6.0.10.0a0' + scalapack: '>=2.2.0,<2.3.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + suitesparse: '>=5.10.1,<5.11.0a0' + superlu: '' + superlu_dist: '>=7.1.1,<8.0a0' + yaml: '>=0.2.5,<0.3.0a0' + hash: + md5: b2c42e22531ae0e0f8d3c25bb3cb44e4 + sha256: 48cd0e25c2f7763b1b1dbe692fe4c667c9933499c9d47bf8dcde63a7ea24c0e0 + manager: conda + name: petsc + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/petsc-3.17.3-real_hbd9d3f5_100.tar.bz2 + version: 3.17.3 +- category: main + dependencies: + freetype: '>=2.10.4,<3.0a0' + jpeg: '>=9e,<10a' + lcms2: '>=2.12,<3.0a0' + libgcc-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + tk: '>=8.6.12,<8.7.0a0' + hash: + md5: c5c75c6dc05dd5d0c7fbebfd2dbc1a3d + sha256: 77c380f470ccb89d6ce6f2255ef6bb3908a18c5fef47e2432b1b14b0bf9b6a5b + manager: conda + name: pillow + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-9.2.0-py39hf18909c_2.tar.bz2 + version: 9.2.0 +- category: main + dependencies: + python: '>=3.7' + setuptools: '' + wheel: '' + hash: + md5: 6f4c6de9fed2a9bd8043283611b09587 + sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 + manager: conda + name: pip + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 + version: '22.3' +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + cairo: '>=1.16.0,<2.0.0a0' + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.10.4,<3.0a0' + gettext: '>=0.19.8.1,<1.0a0' + jpeg: '>=9e,<10a' + lcms2: '>=2.12,<3.0a0' + libcurl: '>=7.83.1,<8.0a0' + libgcc-ng: '>=12' + libglib: '>=2.72.1,<3.0a0' + libiconv: '>=1.16,<2.0.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + nss: '>=3.78,<4.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + poppler-data: '' + hash: + md5: a5ec4feee4c6075a207003236fb1ec1b + sha256: ee6fd057b5af4cb33c2bad95911413830cacf442140e9325084bceefc0a2995c + manager: conda + name: poppler + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/poppler-22.04.0-h420a178_2.tar.bz2 + version: 22.04.0 +- category: main + dependencies: + certifi: '' + libgcc-ng: '>=12' + proj: '>=9.0.1,<9.0.2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 8b921adc10cbaa9fc487a68731ba7dcc + sha256: b38786a2460854510d3ac1e148266deb4eb244637b09777bc0ecd8ec6719ac9c + manager: conda + name: pyproj + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyproj-3.4.0-py39hd0d3b2d_0.tar.bz2 + version: 3.4.0 +- category: main + dependencies: + python: '>=3.6' + six: '>=1.5' + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + manager: conda + name: python-dateutil + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 + version: 2.8.2 +- category: main + dependencies: + libspatialindex: '>=1.9.3,<1.9.4.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 922d340733381027f76a95ed31496b9f + sha256: b7f3c254af35f88208ba07d4c26105034b41f75e4694e5576437572fdcacfd23 + manager: conda + name: rtree + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/rtree-1.0.1-py39h14cdea4_1.tar.bz2 + version: 1.0.1 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + curl: '>=7.83.1,<8.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + openssl: '>=1.1.1o,<1.1.2a' + zlib: '>=1.2.12,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 863180ae4b67851f73334840de94dcb5 + sha256: 3b53dc5c6bb19ab26293a57268857b45b678e5e2bddb669aad79d44c59c95439 + manager: conda + name: tiledb + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tiledb-2.9.5-h354e0e1_0.tar.bz2 + version: 2.9.5 +- category: main + dependencies: + libgcc-ng: '>=12' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 77ee274768f055c4133276216e326591 + sha256: fc9cde28106c863b3e98160926c59843d84105c04326cb2f9941808f355fd199 + manager: conda + name: unicodedata2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/unicodedata2-14.0.0-py39h0fd3b05_2.tar.bz2 + version: 14.0.0 +- category: main + dependencies: + cffi: '>=1.0.0' + libgcc-ng: '>=12' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 5d37ef329c084829d3ff5b172a08b8f9 + sha256: b62b8ba3688978d1344a4ea639b4ab28988fac5318a9842af4e7b9f5feb8374d + manager: conda + name: brotlipy + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/brotlipy-0.7.0-py39h0fd3b05_1005.tar.bz2 + version: 0.7.0 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + numpy: '>=1.16' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 7de50f9af9c897ddc398cc686b07919c + sha256: 7c7a48210ea583832e77e3deb26d71f68a5408085ae369cc6023355288390d10 + manager: conda + name: contourpy + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/contourpy-1.0.5-py39hcdbe1fc_1.tar.bz2 + version: 1.0.5 +- category: main + dependencies: + cffi: '>=1.12' + libgcc-ng: '>=12' + openssl: '>=1.1.1q,<1.1.2a' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 473d08979933f4e0010f26cf7c4bfec5 + sha256: e1f1f43b630379cea2a7d492a3b20c74d9757d55907ecd1859427d11237709c2 + manager: conda + name: cryptography + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cryptography-38.0.2-py39h14acde4_1.tar.bz2 + version: 38.0.2 +- category: main + dependencies: + fenics-libbasix: 0.5.1 h8f8c065_0 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + numpy: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: e78456e1e01668ba22148c66efa0772c + sha256: 0823c4835b048d74895d8de4732d8dd35895d9f071514603c9b07d99ef99ec22 + manager: conda + name: fenics-basix + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-basix-0.5.1-py39h110580c_0.tar.bz2 + version: 0.5.1 +- category: main + dependencies: + numpy: '' + python: '>=3.7' + hash: + md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c + sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 + manager: conda + name: fenics-ufl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.2.0 +- category: main + dependencies: + brotli: '' + libgcc-ng: '>=12' + munkres: '' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + unicodedata2: '>=14.0.0' + hash: + md5: 9c9a9b20728f0feb84edce7769fe3561 + sha256: b15005eed458b12411852cffb403ca56922710b4ec7b5796321e1506127b073f + manager: conda + name: fonttools + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fonttools-4.38.0-py39h0fd3b05_0.tar.bz2 + version: 4.38.0 +- category: main + dependencies: + alsa-lib: '>=1.2.7.2,<1.2.8.0a0' + gettext: '>=0.19.8.1,<1.0a0' + gstreamer: 1.20.3 hf4e84e4_2 + libgcc-ng: '>=12' + libglib: '>=2.72.1,<3.0a0' + libopus: '>=1.3.1,<2.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libstdcxx-ng: '>=12' + libvorbis: '>=1.3.7,<1.4.0a0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: cbcc47d7c5a5569e520e87ddc8415488 + sha256: e5369e518099756acd677de54916ff0bd575315ada792a276efa7874888080c2 + manager: conda + name: gst-plugins-base + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gst-plugins-base-1.20.3-h9c4ba4c_2.tar.bz2 + version: 1.20.3 +- category: main + dependencies: + cached-property: '' + hdf5: '>=1.12.1,<1.12.2.0a0' + libgcc-ng: '>=9.4.0' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 7b8dec90fcf2ff496bada02b3ea0059f + sha256: 2b2376f884596ab17582b65f219c2c4113f06ffade0296410e7e4ae9e3e98042 + manager: conda + name: h5py + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/h5py-3.6.0-nompi_py39hbdd1fc2_100.tar.bz2 + version: 3.6.0 +- category: main + dependencies: + numpy: '' + pillow: '>=8.3.2' + python: '>=3' + hash: + md5: 9d10b00d27b54836d40759608d558276 + sha256: 0f949184ba2b939c05c817b043566c616ea49e373989859e6cc47fd7aa8ea6fa + manager: conda + name: imageio + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/imageio-2.22.0-pyhfa7a67d_0.tar.bz2 + version: 2.22.0 +- category: main + dependencies: + markupsafe: '>=2.0' + python: '>=3.7' + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + manager: conda + name: jinja2 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + version: 3.1.2 +- category: main + dependencies: + blosc: '>=1.21.1,<2.0a0' + cfitsio: '>=4.1.0,<4.1.1.0a0' + expat: '>=2.4.8,<3.0a0' + freexl: '>=1.0.6,<2.0a0' + geos: '>=3.11.0,<3.11.1.0a0' + geotiff: '>=1.7.1,<1.8.0a0' + giflib: '>=5.2.1,<5.3.0a0' + hdf4: '>=4.2.15,<4.3.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0' + icu: '>=70.1,<71.0a0' + jpeg: '>=9e,<10a' + json-c: '>=0.16,<0.17.0a0' + kealib: '>=1.4.15,<1.5.0a0' + libdap4: '>=3.20.6,<3.20.7.0a0' + libgcc-ng: '>=12' + libkml: '>=1.3.0,<1.4.0a0' + libnetcdf: '>=4.8.1,<4.8.2.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libpq: '>=14.4,<15.0a0' + libspatialite: '>=5.0.1,<5.1.0a0' + libstdcxx-ng: '>=12' + libtiff: '>=4.4.0,<5.0a0' + libuuid: '>=2.32.1,<3.0a0' + libwebp-base: '' + libxml2: '>=2.9.14,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openjpeg: '>=2.4.0,<3.0.0a0' + openssl: '>=1.1.1q,<1.1.2a' + pcre: '>=8.45,<9.0a0' + poppler: '>=22.4.0,<22.5.0a0' + postgresql: '' + proj: '>=9.0.1,<9.0.2.0a0' + sqlite: '>=3.39.0,<4.0a0' + tiledb: '>=2.9.5,<2.10.0a0' + xerces-c: '>=3.2.3,<3.3.0a0' + xz: '>=5.2.5,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 90649674a4a0ba190029742356fb2799 + sha256: 21007aedcab17fdd73c7611925def51a63951e978db40941e554a09c5348d847 + manager: conda + name: libgdal + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgdal-3.5.1-hed33a98_1.tar.bz2 + version: 3.5.1 +- category: main + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python-dateutil: '>=2.8.1' + python_abi: 3.9.* *_cp39 + pytz: '>=2020.1' + hash: + md5: 48ef94b856dd3ba396313d140c416f60 + sha256: 51c3a9cbb3e7e5e2c4936ef7c6603d0f8cf379dd2a9bbf9b321daca1e3e8948b + manager: conda + name: pandas + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-1.5.1-py39h2920bb4_1.tar.bz2 + version: 1.5.1 +- category: main + dependencies: + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + numpy: '>=1.19.5,<2.0a0' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 4b35fd78a068b507ed2f5cdea7097ac4 + sha256: bfc0f6ade081058df7a1aa702d23903b7d250197c5ad540d7a64ddd86e3114a0 + manager: conda + name: petsc4py + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/petsc4py-3.17.3-real_hb24634d_101.tar.bz2 + version: 3.17.3 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.4.0' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 8332099f32a416cda3f6e982f000e533 + sha256: c9e5bb31d4635f8c086242dc9597e349ecc5a62d6bb1bc63daf5b6e9599ae814 + manager: conda + name: scipy + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.9.3-py39hc77f23a_0.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + asn1crypto: '>=1.5.1' + importlib-metadata: '>=1.0' + python: '>=3.7' + hash: + md5: a55dd716b2f5f2ac858fd301921b6044 + sha256: 80f4816e1ade059fba0a963d3c441af237311a9d1f441eeec8f86398d0f85888 + manager: conda + name: scramp + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/scramp-1.4.2-pyhd8ed1ab_0.tar.bz2 + version: 1.4.2 +- category: main + dependencies: + geos: '>=3.11.0,<3.11.1.0a0' + libgcc-ng: '>=12' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: eae5ae8657698a435a46d12ddb19e6ff + sha256: c5d709993802f8037ffd7717c3895347940f5d4ba33893ab27a3b8b182e9d05e + manager: conda + name: shapely + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/shapely-1.8.5-py39h0553723_0.tar.bz2 + version: 1.8.5 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libgfortran-ng: '' + libgfortran5: '>=10.3.0' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + suitesparse: '>=5.10.1,<5.11.0a0' + hash: + md5: 849d5255fb783f5e18fb845c4808e31b + sha256: dbb8d58012f8d1f149202076d0262bfd25403b70991c7f20b508e90ebde6f763 + manager: conda + name: slepc + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/slepc-3.17.1-real_h9812a30_102.tar.bz2 + version: 3.17.1 +- category: main + dependencies: + numpy: '' + pyparsing: '>=2.1.6' + python: '' + hash: + md5: cb83a3d6ecf73f50117635192414426a + sha256: ebb8f5f9e362f186fb7d732e656f85c969b86309494436eba51cc3b8b96683f7 + manager: conda + name: snuggs + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-py_0.tar.bz2 + version: 1.4.7 +- category: main + dependencies: + jinja2: '' + python: '>=3' + setuptools: '' + six: '' + hash: + md5: d96c4ccb1e66b1c1f507dd12c226749a + sha256: 0b3368667d51dfe0c9d976c7cf8243cd766ec9013ba86fe81ea7e13d0b113b85 + manager: conda + name: branca + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/branca-0.5.0-pyhd8ed1ab_0.tar.bz2 + version: 0.5.0 +- category: main + dependencies: + cffi: '' + fenics-basix: 0.5.* + fenics-ufl: 2022.2.* + numpy: '' + python: '>=3.7' + setuptools: '' + hash: + md5: 2dcc01a5199492d95b197d7265f5336a + sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 + manager: conda + name: fenics-ffcx + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 + version: 0.5.0 +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + fenics-libbasix: '>=0.5.1,<0.5.2.0a0' + fenics-ufcx: '>=0.5.0,<0.5.1.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + libadios2: '>=2.8.3,<2.8.4.0a0 mpi_openmpi_*' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + openmpi: '>=4.1.4,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + ptscotch: '>=6.0.9,<6.0.10.0a0' + pugixml: '>=1.11.4,<1.12.0a0' + slepc: '>=3.17.1,<3.18.0a0 real_*' + xtensor: '>=0.24.3,<0.25.0a0' + hash: + md5: da3263218f4f5ac79352c4a77a9942a5 + sha256: da202cb9f872f0e747c954bfb967ba759cc7642119e74770302e40952074c1e3 + manager: conda + name: fenics-libdolfinx + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-libdolfinx-0.5.2-hf231d14_100.tar.bz2 + version: 0.5.2 +- category: main + dependencies: + hdf5: '>=1.12.1,<1.12.2.0a0' + libgcc-ng: '>=12' + libgdal: 3.5.1 hed33a98_1 + libstdcxx-ng: '>=12' + numpy: '>=1.19.5,<2.0a0' + openssl: '>=1.1.1q,<1.1.2a' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 9c1c18f53c33784836023c16a2f1fa9d + sha256: 1f3d32b0ea024dfaf07b58b6c53438e4abb9f57a12b513562df4e86c670598ee + manager: conda + name: gdal + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gdal-3.5.1-py39hf3ee2d3_1.tar.bz2 + version: 3.5.1 +- category: main + dependencies: + packaging: '' + pandas: '>=1.0.5' + pyproj: '>=2.6.1.post1' + python: '>=3.8' + shapely: '>=1.7,<2' + hash: + md5: 9e822916c45fddd55bdecc1f121f8143 + sha256: bd293b8538efc9667e2d3df6f0dfb9994262c7ce57a191e4b70acd2e38be37de + manager: conda + name: geopandas-base + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.0-pyha770c72_0.tar.bz2 + version: 0.12.0 +- category: main + dependencies: + certifi: '>=2020.06.20' + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + freetype: '>=2.12.1,<3.0a0' + kiwisolver: '>=1.0.1' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + numpy: '>=1.20.3,<2.0a0' + packaging: '>=20.0' + pillow: '>=6.2.0' + pyparsing: '>=2.2.1' + python: '>=3.9,<3.10.0a0 *_cpython' + python-dateutil: '>=2.7' + python_abi: 3.9.* *_cp39 + tk: '>=8.6.12,<8.7.0a0' + hash: + md5: 65f41e48208329d6e293cd8a99a6891b + sha256: 7ab0f3a0e96737a15a6e6fdd8696e31cc942c4868001dbf274555547e56c279e + manager: conda + name: matplotlib-base + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-base-3.6.1-py39h15a8d8b_0.tar.bz2 + version: 3.6.1 +- category: main + dependencies: + importlib-metadata: '>=1.0' + python: '>=3.7' + python-dateutil: '>=2.8.2' + scramp: '>=1.4.1' + hash: + md5: 5736218fec0be5f6f449dc353e8d76fc + sha256: d75c8222a33404dc5bae1c864dfc8106c90775c7f5b0bc8844b8728bd916af6d + manager: conda + name: pg8000 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/pg8000-1.29.2-pyhd8ed1ab_0.tar.bz2 + version: 1.29.2 +- category: main + dependencies: + cryptography: '>=38.0.0,<39' + python: '>=3.6' + hash: + md5: fbfa0a180d48c800f922a10a114a8632 + sha256: 42f04dded77ac2597108378d62b121697d0e982aba7b20a462a7239030563628 + manager: conda + name: pyopenssl + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2 + version: 22.1.0 +- category: main + dependencies: + __glibc: '>=2.17,<3.0.a0' + alsa-lib: '>=1.2.7.2,<1.2.8.0a0' + dbus: '>=1.13.6,<2.0a0' + expat: '>=2.4.8,<3.0a0' + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.12.1,<3.0a0' + gst-plugins-base: '>=1.20.3,<1.21.0a0' + gstreamer: '>=1.20.3,<1.21.0a0' + icu: '>=70.1,<71.0a0' + jpeg: '>=9e,<10a' + krb5: '>=1.19.3,<1.20.0a0' + libclang: '>=14.0.6,<15.0a0' + libclang13: '>=14.0.6' + libcups: '>=2.3.3,<2.4.0a0' + libevent: '>=2.1.10,<2.1.11.0a0' + libgcc-ng: '>=12' + libglib: '>=2.72.1,<3.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libpq: '>=14.5,<15.0a0' + libsqlite: '>=3.39.3,<4.0a0' + libstdcxx-ng: '>=12' + libxcb: '>=1.13,<1.14.0a0' + libxkbcommon: '>=1.0.3,<2.0a0' + libxml2: '>=2.9.14,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + mysql-libs: '>=8.0.30,<8.1.0a0' + nspr: '>=4.32,<5.0a0' + nss: '>=3.78,<4.0a0' + openssl: '>=1.1.1q,<1.1.2a' + pulseaudio: '>=14.0,<14.1.0a0' + xcb-util: '' + xcb-util-image: '' + xcb-util-keysyms: '' + xcb-util-renderutil: '' + xcb-util-wm: '' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 35987cd9c7fe7a4567ba22fccaabc388 + sha256: 7b7a27a1557317d3e08af297761525dea53baa3a8bb3983c573c8cc33efbbee9 + manager: conda + name: qt-main + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/qt-main-5.15.6-hb0efc4c_0.tar.bz2 + version: 5.15.6 +- category: main + dependencies: + affine: '' + attrs: '' + certifi: '' + click: '>=4' + click-plugins: '' + cligj: '>=0.5' + libgcc-ng: '>=12' + libgdal: '>=3.5.1,<3.6.0a0' + libstdcxx-ng: '>=12' + numpy: '>=1.19.5,<2.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + setuptools: '>=0.9.8' + snuggs: '>=1.4.1' + hash: + md5: 52e72f7d3a7685bf3feb19661320c852 + sha256: dc82634d6c5b5c95abd596228e25b7c7631bdebe22c8abe13e121c0479c790ce + manager: conda + name: rasterio + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/rasterio-1.3.2-py39hfa63092_0.tar.bz2 + version: 1.3.2 +- category: main + dependencies: + joblib: '>=1.0.0' + libcblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + scipy: '' + threadpoolctl: '>=2.0.0' + hash: + md5: e76c0149e804830c12453af276b94ec0 + sha256: 4474d857999ce9c311d3e0a504217f177cc7fea729e51c436fef1ce7dd01172c + manager: conda + name: scikit-learn + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/scikit-learn-1.1.2-py39h26f731d_0.tar.bz2 + version: 1.1.2 +- category: main + dependencies: + libgcc-ng: '>=12' + numpy: '>=1.19.5,<2.0a0' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + petsc4py: 3.17.* + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + slepc: '>=3.17.1,<3.18.0a0 real_*' + hash: + md5: eb75afbc55511b4474bd687f69980b41 + sha256: 1cab481eb6e6455aa5daff9b3b4d2ab454b97a0e90e2add49a660613fee2109b + manager: conda + name: slepc4py + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/slepc4py-3.17.1-real_h028f86f_103.tar.bz2 + version: 3.17.1 +- category: main + dependencies: + cffi: '' + fenics-basix: 0.5.* + fenics-ffcx: 0.5.* + fenics-libdolfinx: 0.5.2 hf231d14_100 + fenics-ufl: 2022.2.* + gxx_linux-aarch64: 10.* + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + mpi4py: '' + numpy: '' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + petsc4py: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + slepc: '>=3.17.1,<3.18.0a0 real_*' + slepc4py: '' + hash: + md5: fa51eb3f5e93bf624ef691666d4b00a1 + sha256: 4ec380aee17eebca96e81a82c40da5840049181ac504adf1f3fa613088eabb64 + manager: conda + name: fenics-dolfinx + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fenics-dolfinx-0.5.2-py39h643e4f8_100.tar.bz2 + version: 0.5.2 +- category: main + dependencies: + attrs: '>=17' + click: '>=4.0' + click-plugins: '>=1.0' + cligj: '>=0.5' + gdal: '' + libgcc-ng: '>=12' + libgdal: '>=3.5.0,<3.6.0a0' + libstdcxx-ng: '>=12' + munch: '' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + setuptools: '' + shapely: '' + six: '>=1.7' + hash: + md5: 4ad86eec1684fdf810dfc6f4d28ad491 + sha256: 16a4303ea47c42cd90375eb78ee7457f07ed0128c4aa530ad8bee6cbf2c7996e + manager: conda + name: fiona + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fiona-1.8.21-py39hebc8073_2.tar.bz2 + version: 1.8.21 +- category: main + dependencies: + networkx: '' + numpy: '>=1.3' + pandas: '>=1.0' + python: '>=3.5' + scikit-learn: '' + scipy: '>=1.0' + hash: + md5: 908bbfb54da154042c5cbda77b37a3d1 + sha256: 1435305fb0a127b3154e76c0836d44526eeb93e80bd37596128d7ad8fb196d97 + manager: conda + name: mapclassify + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.4.3-pyhd8ed1ab_0.tar.bz2 + version: 2.4.3 +- category: main + dependencies: + brotlipy: '>=0.6.0' + certifi: '' + cryptography: '>=1.3.4' + idna: '>=2.0.0' + pyopenssl: '>=0.14' + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: <4.0 + hash: + md5: 0738978569b10669bdef41c671252dd1 + sha256: 57a823b83428156aa2bc18f34159a744657c9bd117a125ca4559b0518a2e4fa2 + manager: conda + name: urllib3 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.11-pyhd8ed1ab_0.tar.bz2 + version: 1.26.11 +- category: main + dependencies: + double-conversion: '>=3.2.0,<3.3.0a0' + eigen: '' + expat: '>=2.4.8,<3.0a0' + ffmpeg: '>=4.4.2,<5.0a0' + freetype: '>=2.10.4,<3.0a0' + gl2ps: '>=1.4.2,<1.4.3.0a0' + glew: '>=2.1.0,<2.2.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0' + jpeg: '>=9e,<10a' + jsoncpp: '>=1.9.5,<1.9.6.0a0' + libgcc-ng: '>=12' + libnetcdf: '>=4.8.1,<4.8.2.0a0' + libogg: '>=1.3.4,<1.4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=12' + libtheora: '>=1.1.1,<1.2.0a0' + libtiff: '>=4.4.0,<5.0a0' + libxml2: '>=2.9.14,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + loguru: '' + lz4-c: '>=1.9.3,<1.10.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + pugixml: '>=1.11.4,<1.12.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + qt-main: '>=5.15.4,<5.16.0a0' + sqlite: '>=3.39.0,<4.0a0' + tbb: '>=2021.5.0' + tbb-devel: '' + tk: '>=8.6.12,<8.7.0a0' + utfcpp: '' + xorg-libxt: '' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 0ba39437d8ffb4ee16abe307c679bfb7 + sha256: 2563a09bc485341e04df22af58c3f1fa3fa182a1c04952bf7faaf6803664e62e + manager: conda + name: vtk + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/vtk-9.1.0-qt_py39hde95ea2_211.tar.bz2 + version: 9.1.0 +- category: main + dependencies: + jmespath: '>=0.7.1,<2.0.0' + python: '>=3.7' + python-dateutil: '>=2.1,<3.0.0' + urllib3: '>=1.25.4,<1.27' + hash: + md5: 3435405683a6e8952d941638a8c24fc0 + sha256: 1e6c560869547e57c0dbf9c59cc8f7412dd6ec56cf529c1a1cc520355dfb8dc9 + manager: conda + name: botocore + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.1-pyhd8ed1ab_0.tar.bz2 + version: 1.28.1 +- category: main + dependencies: + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freeimage: '>=3.18.0,<3.19.0a0' + freetype: '>=2.12.1,<3.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + rapidjson: '' + vtk: '>=9.1.0,<9.1.1.0a0' + xorg-libxt: '' + hash: + md5: 8e72acfcec4eec94e226c572c91b15e5 + sha256: 0302fc51a8ab6347647247d10a35e8192d9ae521d991ddacd5f5aef495663623 + manager: conda + name: occt + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/occt-7.6.3-h8bc6bd5_0.tar.bz2 + version: 7.6.3 +- category: main + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<3' + idna: '>=2.5,<4' + python: '>=3.7,<4.0' + urllib3: '>=1.21.1,<1.27' + hash: + md5: 089382ee0e2dc2eae33a04cc3c2bddb0 + sha256: b45d0da6774c8231ab4fef0427b3050e7c54c84dfe453143dd4010999c89e050 + manager: conda + name: requests + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.28.1-pyhd8ed1ab_1.tar.bz2 + version: 2.28.1 +- category: main + dependencies: + branca: '>=0.3.0' + jinja2: '>=2.9' + numpy: '' + python: '>=3.6' + requests: '' + hash: + md5: c69e368f97d9939621daebe97dbbd82d + sha256: 73c5aad58d59df4f4991e7f3bceda5938831c3ee74221899a14f7eaefb8af5de + manager: conda + name: folium + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/folium-0.13.0-pyhd8ed1ab_0.tar.bz2 + version: 0.13.0 +- category: main + dependencies: + fltk: '>=1.3.8,<1.4.0a0' + gmp: '>=6.2.1,<7.0a0' + jpeg: '>=9e,<10a' + libblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + libglu: '' + liblapack: '>=3.9.0,<4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.12,<1.3.0a0' + occt: '>=7.6.2,<7.7.0a0' + xorg-libx11: '' + xorg-libxext: '' + xorg-libxfixes: '' + xorg-libxmu: '' + xorg-libxrender: '' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 4e6f66b1ff5a12d851f555258b483bb8 + sha256: 7fbecf7d8283a195f3b39d6ee893aab21dcd775e235f916ed8b9a7fb52f4bfde + manager: conda + name: gmsh + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gmsh-4.10.5-h6bb50e3_0.tar.bz2 + version: 4.10.5 +- category: main + dependencies: + botocore: '>=1.12.36,<2.0a.0' + python: '>=3.7' + hash: + md5: 900e74d8547fbea3af028937df28ed77 + sha256: 0e459ed32b00e96b62c2ab7e2dba0135c73fd980120fe1a7bd49901f2d50760f + manager: conda + name: s3transfer + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/s3transfer-0.6.0-pyhd8ed1ab_0.tar.bz2 + version: 0.6.0 +- category: main + dependencies: + botocore: '>=1.28.1,<1.29.0' + jmespath: '>=0.7.1,<2.0.0' + python: '>=3.7' + s3transfer: '>=0.6.0,<0.7.0' + hash: + md5: 5512a9ee1a05c62d7ec13f432bd7014c + sha256: 9779dd07bb1c1f700a32c9ea771552ee6de8e5d83f84df63d1f37870101a70ac + manager: conda + name: boto3 + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.1-pyhd8ed1ab_0.tar.bz2 + version: 1.25.1 +- category: main + dependencies: + fiona: '' + folium: '' + geopandas-base: 0.12.0 pyha770c72_0 + mapclassify: '>=2.4.0' + matplotlib-base: '' + python: '>=3.8' + rtree: '' + xyzservices: '' + hash: + md5: 79d4a86d08b1ad415dcb24b3241593cf + sha256: 3dbba0065f1344e62795b085a1ca1369c8909a0432bb669bf7955630e95cfb5f + manager: conda + name: geopandas + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.0-pyhd8ed1ab_0.tar.bz2 + version: 0.12.0 +- category: main + dependencies: + gmsh: '>=4.10.5,<4.10.6.0a0' + numpy: '' + python: '' + hash: + md5: 6c18c6322743fa7d5daaf4735c1905af + sha256: 57c72e59283d4dcdbedb0b0f86bb4d66dded5bb16be975411817b5c7a3f9a811 + manager: conda + name: python-gmsh + optional: false + platform: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/noarch/python-gmsh-4.10.5-h57928b3_0.tar.bz2 + version: 4.10.5 +- category: main + dependencies: {} + hash: + sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 + manager: pip + name: async-timeout + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl + version: 3.0.1 +- category: main + dependencies: {} + hash: + sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c + manager: pip + name: attrs + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl + version: 22.1.0 +- category: main + dependencies: {} + hash: + sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 + manager: pip + name: cachetools + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl + version: 4.2.4 +- category: main + dependencies: {} + hash: + sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 + manager: pip + name: certifi + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl + version: 2022.9.24 +- category: main + dependencies: {} + hash: + sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 + manager: pip + name: chardet + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl + version: 3.0.4 +- category: main + dependencies: {} + hash: + sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f + manager: pip + name: charset-normalizer + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl + version: 2.1.1 +- category: main + dependencies: {} + hash: + sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 + manager: pip + name: colorama + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl + version: 0.4.6 +- category: main + dependencies: {} + hash: + sha256: 554bc2a9ccfa7c02bb8a5346fd546b65ed265965e7fea768c7f2681f2b68d6a0 + manager: pip + name: crc32c + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d2/22/a6939fdf3cb65e55e35a3a531cb4c371ce3231712d349bf42d7f681cc79a/crc32c-2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: '2.3' +- category: main + dependencies: {} + hash: + sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 + manager: pip + name: cycler + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl + version: 0.11.0 +- category: main + dependencies: {} + hash: + sha256: b3b28ec99529110cb004c1f4fa866124d32a14bb588c41906d0a0a8d5320a8f2 + manager: pip + name: deflate + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/1c/ff/5347cc4473a11a724f7d825e7d9ae0d641990e71a5820b618cbb3ab8702c/deflate-0.3.0.tar.gz + version: 0.3.0 +- category: main + dependencies: {} + hash: + sha256: a07ffd2351b8c678dfc4a856a3005f8067aea51d6ba6c700796a4d9e280f39f0 + manager: pip + name: dill + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/be/e3/a84bf2e561beed15813080d693b4b27573262433fced9c1d1fea59e60553/dill-0.3.6-py3-none-any.whl + version: 0.3.6 +- category: main + dependencies: {} + hash: + sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff + manager: pip + name: distro + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl + version: 1.8.0 +- category: main + dependencies: {} + hash: + sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d + manager: pip + name: future + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz + version: 0.18.2 +- category: main + dependencies: {} + hash: + sha256: f13cae8cc389a440def0c8c52057f37359014ccbc9dc1f0827936bcd367c6100 + manager: pip + name: google-crc32c + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/69/59/08ef90c8c0ad56e1903895dd419749dc9cd77617b4c05f513c205de8f1fd/google_crc32c-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.5.0 +- category: main + dependencies: {} + hash: + sha256: 0aa1845944e62f358d63fcc911ad3b415f585612946b8edc824825929b40e59e + manager: pip + name: greenlet + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/22/3b/3dece5270095aa5b108553880a7630888f9d43e1197cc0d3b4dcd3ccfed1/greenlet-1.1.3.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.1.3.post0 +- category: main + dependencies: {} + hash: + sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 + manager: pip + name: idna + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl + version: '3.4' +- dependencies: {} + hash: + sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f + manager: pip + name: jmespath + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl + version: 0.10.0 +- category: main + dependencies: {} + hash: + sha256: bc8d3bd6c72b2dd9decf16ce70e20abcb3274ba01b4e1c96031e0c4067d1e7cd + manager: pip + name: kiwisolver + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/4d/91/08eaa0f13fe644ae913cb157e9599ce64b64a99620df3beb0b142690e264/kiwisolver-1.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.4.4 +- category: main + dependencies: {} + hash: + sha256: 07a017cfa00c9890011628eab2503bee5872f27144936a52eaab449be5eaf032 + manager: pip + name: multidict + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/00/6f/05e5612827715de18f36a8e36fb373f58621927691213cc3f88dc24524b3/multidict-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 6.0.2 +- category: main + dependencies: {} + hash: + sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 + manager: pip + name: nest-asyncio + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl + version: 1.5.6 +- category: main + dependencies: {} + hash: + sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d + manager: pip + name: networkx + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl + version: 2.8.7 +- category: main + dependencies: {} + hash: + sha256: 4449e70b98f3ad3e43958360e4be1189c549865c0a128e8629ec96ce92d251c3 + manager: pip + name: orjson + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/57/9d/3b9f35cb9b4066c685ff54368d580b060cb7de22d9ad93e45d8e7a80ff90/orjson-3.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 3.8.1 +- category: main + dependencies: {} + hash: + sha256: ea98f633d45f7e815db648fd7ff0f19e328302ac36427343e4432c84432e7ff4 + manager: pip + name: pillow + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/5b/a4/68e210389f3744043e0ce543d4eb81fe8d7be5462d1c7ac2e59d620991c4/Pillow-9.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 9.2.0 +- category: main + dependencies: {} + hash: + sha256: 56fe2f099ecd8a557b8948082504492de90e8598c34733c9b1fdeca8f7b6de61 + manager: pip + name: pox + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/7d/ee/93fb2380de1458a50c44b8aa65c6f111df1103c3d4fbd74b70f51745e081/pox-0.3.2-py3-none-any.whl + version: 0.3.2 +- category: main + dependencies: {} + hash: + sha256: f355d2caeed8bd7c9e4a860c471f31f7e66d1ada2791ab5458ea7dca15a51e41 + manager: pip + name: ppft + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/0f/c1/dd740386023b1472d2635db9d8f7107024d9931cc8c01b37b48a85eb3811/ppft-1.7.6.6-py3-none-any.whl + version: 1.7.6.6 +- category: main + dependencies: {} + hash: + sha256: 2c9c2ed7466ad565f18668aa4731c535511c5d9a40c6da39524bccf43e441719 + manager: pip + name: protobuf + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/ea/7c/554ebfedfb9d1800afbd7522858239aae1ac3314527a85f0683db65180df/protobuf-4.21.9-cp37-abi3-manylinux2014_aarch64.whl + version: 4.21.9 +- category: main + dependencies: {} + hash: + sha256: 33e632d0885b95a8b97165899006c40e9ecdc634a529dca7b991eb7de4ece41c + manager: pip + name: psycopg2-binary + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/8c/45/77147700f5088efaf9235a3a62b611b594d477a5c5613b5316d0ebd18be0/psycopg2-binary-2.9.5.tar.gz + version: 2.9.5 +- category: main + dependencies: {} + hash: + sha256: 39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d + manager: pip + name: pyasn1 + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/62/1e/a94a8d635fa3ce4cfc7f506003548d0a2447ae76fd5ca53932970fe3053f/pyasn1-0.4.8-py2.py3-none-any.whl + version: 0.4.8 +- category: main + dependencies: {} + hash: + sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc + manager: pip + name: pyparsing + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl + version: 3.0.9 +- category: main + dependencies: {} + hash: + sha256: d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96 + manager: pip + name: pyrsistent + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/42/ac/455fdc7294acc4d4154b904e80d964cc9aae75b087bbf486be04df9f2abd/pyrsistent-0.18.1.tar.gz + version: 0.18.1 +- category: main + dependencies: {} + hash: + sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 + manager: pip + name: pytz + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl + version: '2022.5' +- category: main + dependencies: {} + hash: + sha256: d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803 + manager: pip + name: pyyaml + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/21/67/b42191239c5650c9e419c4a08a7a022bbf1abf55b0391c380a72c3af5462/PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: '6.0' +- category: main + dependencies: {} + hash: + sha256: bf9a6bc4a0221538b1a7de3ed7bca4c93c02346853f44e1cd764be0023cd3640 + manager: pip + name: ruamel.yaml.clib + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/ff/66/4c05485243e24c6db5d7305063304c410b5539577becc89e4539d2897e41/ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux2014_aarch64.whl + version: 0.2.7 +- category: main + dependencies: {} + hash: + sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 + manager: pip + name: semver + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl + version: 2.13.0 +- category: main + dependencies: {} + hash: + sha256: dc82050f78bfed95af20683a10bb2a0caf8c3c798aa2ccd43099f338baa2ec55 + manager: pip + name: simpleitk + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/4c/52/2eee8d90c5a55aee778e7eb29945b27f44e63cfb9b920c5a97fb40af25aa/SimpleITK-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 2.2.0 +- category: main + dependencies: {} + hash: + sha256: d74ee72b5071818a1a5dab47338e87f08a738cb938a3b0653b9e4d959ddd1fd9 + manager: pip + name: simplejson + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/69/9c/c7f7f8ff38678626bd548518470d23a8f87dd696dd9bb5a98f6712d9707f/simplejson-3.17.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 3.17.6 +- category: main + dependencies: {} + hash: + sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 + manager: pip + name: six + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl + version: 1.16.0 +- category: main + dependencies: {} + hash: + sha256: 35525cd47f82830069f0d6b73f7eb83bc5b73ee2fff0437952cedf98b27653ac + manager: pip + name: tenacity + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/a5/94/933ce16d18450ccf518a6da5bd51418611e8776b992070b9f40b2f9cedff/tenacity-8.1.0-py3-none-any.whl + version: 8.1.0 +- category: main + dependencies: {} + hash: + sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e + manager: pip + name: typing-extensions + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl + version: 4.4.0 +- dependencies: {} + hash: + sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 + manager: pip + name: urllib3 + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl + version: 1.26.12 +- category: main + dependencies: {} + hash: + sha256: 2666401939cdaa5f4e0c08cf7f20c9b21423b95e88f4675b1443973bdb080c42 + manager: pip + name: zope.event + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/9e/85/b45408c64f3b888976f1d5b37eed8d746b8d5729a66a49ec846fda27d371/zope.event-4.5.0-py2.py3-none-any.whl + version: 4.5.0 +- category: main + dependencies: {} + hash: + sha256: 47ff078734a1030c48103422a99e71a7662d20258c00306546441adf689416f7 + manager: pip + name: zope.interface + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/84/3a/ba6e6ad5998a1bf759c7e107c4d32c64d7965221a9986f383daf411b237d/zope.interface-5.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 5.5.0 +- category: main + dependencies: + greenlet: '>=1.1.3,<2.0' + zope.event: '*' + zope.interface: '*' + hash: + sha256: 1e1c609f9e4171588006bea7ff41bb830ff27c27d071bbd311f91860fb5ef4cc + manager: pip + name: gevent + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/29/12/e7e3777dc016696c92caf4f069b7a71fcd381dfaaab5f047edc041c2e50b/gevent-22.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 22.10.1 +- category: main + dependencies: + numpy: '>=1.7.1' + hash: + sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 + manager: pip + name: glymur + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz + version: 0.8.19 +- category: main + dependencies: + google-crc32c: '>=1.0,<2.0dev' + hash: + sha256: 2aa004c16d295c8f6c33b2b4788ba59d366677c0a25ae7382436cb30f776deaa + manager: pip + name: google-resumable-media + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/4f/8e/5f42ac809ad8bccca7060132a274d714fbf4e2ef8f2424ef2301a2dbc4fb/google_resumable_media-2.4.0-py2.py3-none-any.whl + version: 2.4.0 +- category: main + dependencies: + protobuf: '>=3.15.0,<5.0.0dev' + hash: + sha256: 8eb2cbc91b69feaf23e32452a7ae60e791e09967d81d4fcc7fc388182d1bd394 + manager: pip + name: googleapis-common-protos + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/e2/fd/d9efa2085bd762fba3a637eb3e36d76d72eb6e083d170aeaca65a75f1f9c/googleapis_common_protos-1.56.4-py2.py3-none-any.whl + version: 1.56.4 +- dependencies: + numpy: '*' + pillow: '>=8.3.2' + hash: + sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 + manager: pip + name: imageio + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl + version: 2.22.2 +- category: main + dependencies: + attrs: '>=17.4.0' + pyrsistent: '>=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2' + hash: + sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 + manager: pip + name: jsonschema + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl + version: 4.16.0 +- category: main + dependencies: + dill: '>=0.3.6' + hash: + sha256: 63cee628b74a2c0631ef15da5534c8aedbc10c38910b9c8b18dcd327528d1ec7 + manager: pip + name: multiprocess + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/6a/f4/fbeb03ef7abdda54db4a6a75c971b88ab73d724ff09e3275cc1e99f1c946/multiprocess-0.70.14-py39-none-any.whl + version: 0.70.14 +- category: main + dependencies: + pyparsing: '>=2.0.2,<3.0.5 || >3.0.5' + hash: + sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 + manager: pip + name: packaging + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl + version: '21.3' +- category: main + dependencies: + numpy: '>=1.4' + six: '*' + hash: + sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 + manager: pip + name: patsy + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl + version: 0.5.3 +- category: main + dependencies: + pyasn1: '>=0.4.6,<0.5.0' + hash: + sha256: a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74 + manager: pip + name: pyasn1-modules + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/95/de/214830a981892a3e286c3794f41ae67a4495df1108c3da8a9f62159b9a9d/pyasn1_modules-0.2.8-py2.py3-none-any.whl + version: 0.2.8 +- category: main + dependencies: + numpy: '>=1.11.1' + hash: + sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 + manager: pip + name: pynrrd + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl + version: 0.4.3 +- category: main + dependencies: + six: '>=1.5' + hash: + sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 + manager: pip + name: python-dateutil + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl + version: 2.8.2 +- category: main + dependencies: + numpy: '>=1.17.3' + hash: + sha256: 030670a213ee8fefa56f6387b0c8e7d970c7f7ad6850dc048bd7c89364771b9b + manager: pip + name: pywavelets + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/34/c0/a121306b618af45ff7d769e1bd45ed3d6c798dc7f0094e0b56735388d96e/PyWavelets-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.4.1 +- category: main + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<3' + idna: '>=2.5,<4' + urllib3: '>=1.21.1,<1.27' + hash: + sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 + manager: pip + name: requests + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl + version: 2.28.1 +- category: main + dependencies: + pyasn1: '>=0.1.3' + hash: + sha256: 90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7 + manager: pip + name: rsa + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl + version: '4.9' +- category: main + dependencies: + ruamel.yaml.clib: '>=0.2.6' + hash: + sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 + manager: pip + name: ruamel.yaml + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl + version: 0.17.21 +- category: main + dependencies: + numpy: '>=1.18.5,<1.26.0' + hash: + sha256: 4db5b30849606a95dcf519763dd3ab6fe9bd91df49eba517359e450a7d80ce2e + manager: pip + name: scipy + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/b5/67/c5451465ec94e654e6315cd5136961d267ae94a0f799b85d26eb9efe4c9f/scipy-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.9.3 +- category: main + dependencies: + greenlet: '!=0.4.17' + hash: + sha256: 723e3b9374c1ce1b53564c863d1a6b2f1dc4e97b1c178d9b643b191d8b1be738 + manager: pip + name: sqlalchemy + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/06/9b/a25769c4fce57ccea6bba96fa32216dea6d6c7d3dd03524c522c8b342f64/SQLAlchemy-1.4.42-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.4.42 +- category: main + dependencies: + colorama: '*' + hash: + sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 + manager: pip + name: tqdm + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl + version: 4.64.1 +- category: main + dependencies: + idna: '>=2.0' + multidict: '>=4.0' + hash: + sha256: fae37373155f5ef9b403ab48af5136ae9851151f7aacd9926251ab26b953118b + manager: pip + name: yarl + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/28/c9/b4cc0b0841fc171ac830e27237da036a5085691f47135122481824bc9c5d/yarl-1.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.8.1 +- category: main + dependencies: + cffi: '>=1.11' + hash: + sha256: 083dc08abf03807af9beeb2b6a91c23ad78add2499f828176a3c7b742c44df02 + manager: pip + name: zstandard + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/5e/49/5547842d759a55a74f5064b054e843182dcfd01a73f3e63f898fc1dfec71/zstandard-0.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 0.18.0 +- category: main + dependencies: + async-timeout: '>=3.0,<4.0' + attrs: '>=17.3.0' + chardet: '>=2.0,<4.0' + multidict: '>=4.5,<7.0' + typing-extensions: '>=3.6.5' + yarl: '>=1.0,<2.0' + hash: + sha256: 58c62152c4c8731a3152e7e650b29ace18304d086cb5552d317a54ff2749d32a + manager: pip + name: aiohttp + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/1c/5a/a25ed130426369824c2360b1ec0e59dd2b97efb7fba2c6a39a1f2e396d98/aiohttp-3.7.4-cp39-cp39-manylinux2014_aarch64.whl + version: 3.7.4 +- dependencies: + jmespath: '>=0.7.1,<1.0.0' + python-dateutil: '>=2.1,<3.0.0' + urllib3: '>=1.25.4,<1.27' + hash: + sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b + manager: pip + name: botocore + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl + version: 1.20.112 +- category: main + dependencies: + cachetools: '>=2.0.0,<6.0' + pyasn1-modules: '>=0.2.1' + rsa: '>=3.1.4,<5' + six: '>=1.9.0' + hash: + sha256: 99510e664155f1a3c0396a076b5deb6367c52ea04d280152c85ac7f51f50eb42 + manager: pip + name: google-auth + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/98/dc/ab7e2156ec6a33c66d85986178abc7944f40804d7558cd544ccb114af6a9/google_auth-2.13.0-py2.py3-none-any.whl + version: 2.13.0 +- category: main + dependencies: + packaging: '>=17.0' + hash: + sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 + manager: pip + name: marshmallow + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl + version: 3.18.0 +- dependencies: + cycler: '>=0.10' + kiwisolver: '>=1.0.1' + numpy: '>=1.16' + pillow: '>=6.2.0' + pyparsing: '>=2.2.1' + python-dateutil: '>=2.7' + hash: + sha256: 85f191bb03cb1a7b04b5c2cca4792bef94df06ef473bc49e2818105671766fee + manager: pip + name: matplotlib + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/36/25/e71e3803e45522ea1a97757701a8d4cf2356d28fcf182cd749aaba01840e/matplotlib-3.4.2-cp39-cp39-manylinux2014_aarch64.whl + version: 3.4.2 +- category: main + dependencies: + numpy: '>=1.13.3' + packaging: '*' + hash: + sha256: b127b0d0e1665b94adcc658c5f9d688ac4903ef81da5d8f4e956c995cf69d5c7 + manager: pip + name: numexpr + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/84/94/ba5479f46a1b2d7c12e2943e010db4619f2bf979703d3615bac95db3d56d/numexpr-2.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 2.8.3 +- category: main + dependencies: + numpy: '>=1.20.3' + python-dateutil: '>=2.8.1' + pytz: '>=2020.1' + hash: + sha256: 5cee0c74e93ed4f9d39007e439debcaadc519d7ea5c0afc3d590a3a7b2edf060 + manager: pip + name: pandas + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/93/a8/0174b2f33e3450140bb32a7208aed3b629afb83e92e82a89203e8e35eec7/pandas-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl + version: 1.5.1 +- category: main + dependencies: + dill: '>=0.3.6' + multiprocess: '>=0.70.14' + pox: '>=0.3.2' + ppft: '>=1.7.6.6' + hash: + sha256: b1f5a79b1c79a594330d451832642ee5bb61dd77dc75ba9e5c72087c77e8994c + manager: pip + name: pathos + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/0a/97/56b396300e5832bb95abe28944c1b8a0098ce179dce131a26e5d0e6daa05/pathos-0.3.0-py3-none-any.whl + version: 0.3.0 +- category: main + dependencies: + requests: '>=2.0.1,<3.0.0' + hash: + sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 + manager: pip + name: requests-toolbelt + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl + version: 0.10.1 +- category: main + dependencies: + distro: '*' + packaging: '*' + hash: + sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 + manager: pip + name: scikit-build + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl + version: 0.15.0 +- category: main + dependencies: + marshmallow: '>=3.0.0,<4.0' + numpy: '*' + pyyaml: '*' + hash: + sha256: ba1d04538be52cdd2b9460ea7495094aa3f1215429955ebbfc50381d4f062bac + manager: pip + name: argschema + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/eb/6b/312bcd2367aa474193afa852a3a5b75d6f706a2787a2e35537c277038c3e/argschema-3.0.1.tar.gz + version: 3.0.1 +- category: main + dependencies: + google-auth: '>=1.25.0,<3.0dev' + googleapis-common-protos: '>=1.56.2,<2.0dev' + protobuf: '>=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 + || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 + || >4.21.5,<5.0.0dev' + requests: '>=2.18.0,<3.0.0dev' + hash: + sha256: 34f24bd1d5f72a8c4519773d99ca6bf080a6c4e041b4e9f024fe230191dda62e + manager: pip + name: google-api-core + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/15/fb/b641357b0f8fc540c766bc8f66048de0398d0a3e0cad7c4a08e2fbee733a/google_api_core-2.10.2-py3-none-any.whl + version: 2.10.2 +- category: main + dependencies: + h5py: '>=2.10,<4' + jsonschema: '>=2.6.0,<5' + numpy: '>=1.16,<1.24' + pandas: '>=1.0.5,<2' + ruamel.yaml: '>=0.16,<1' + scipy: '>=1.1,<2' + hash: + sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d + manager: pip + name: hdmf + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl + version: 3.4.6 +- dependencies: + botocore: '>=1.12.36,<2.0a.0' + hash: + sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 + manager: pip + name: s3transfer + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl + version: 0.3.7 +- category: main + dependencies: + imageio: '>=2.3.0' + matplotlib: '>=2.0.0,<3.0.0 || >3.0.0' + networkx: '>=2.0' + pillow: '>=4.3.0' + pywavelets: '>=0.4.0' + scipy: '>=0.19.0' + hash: + sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c + manager: pip + name: scikit-image + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz + version: 0.16.2 +- category: main + dependencies: + matplotlib: '>=3.1,<3.6.1 || >3.6.1' + numpy: '>=1.17' + pandas: '>=0.25' + hash: + sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 + manager: pip + name: seaborn + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl + version: 0.12.1 +- category: main + dependencies: + numpy: '>=1.17' + pandas: '>=0.25' + patsy: '>=0.5.2' + scipy: '>=1.3' + hash: + sha256: f2efc02011b7240a9e851acd76ab81150a07d35c97021cb0517887539a328f8a + manager: pip + name: statsmodels + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/9e/5e/4a2ade283411d1f46d6f8dd5fe951b9152062d55a20750cd5d4b556322bf/statsmodels-0.13.0.tar.gz + version: 0.13.0 +- category: main + dependencies: + numexpr: '>=2.6.2' + numpy: '>=1.9.3' + hash: + sha256: 49a972b8a7c27a8a173aeb05f67acb45fe608b64cd8e9fa667c0962a60b71b49 + manager: pip + name: tables + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/2b/32/847ee3f521aae6a0be380d923a736162d698586f444df1ac24b98c65025c/tables-3.6.1.tar.gz + version: 3.6.1 +- category: main + dependencies: + numpy: '>=1.15' + pandas: '>=0.25' + hash: + sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d + manager: pip + name: xarray + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl + version: 0.15.1 +- dependencies: + botocore: '>=1.20.21,<1.21.0' + jmespath: '>=0.7.1,<1.0.0' + s3transfer: '>=0.3.0,<0.4.0' + hash: + sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 + manager: pip + name: boto3 + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl + version: 1.17.21 +- category: main + dependencies: + h5py: '>=2.10' + numpy: '*' + pandas: '*' + pynrrd: '*' + scikit-image: '*' + scipy: '*' + tqdm: '*' + hash: + sha256: a15a09811616d7a7b7516a7da18be45d392d2c6c21664068d2a06394eff3baf6 + manager: pip + name: ccf-streamlines + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/07/d2/6dfeaf0b58fdbb9a0e150cb3814b81d193644a19774c74af1a87d268110a/ccf_streamlines-1.0.0-py3-none-any.whl + version: 1.0.0 +- category: main + dependencies: + google-api-core: '>=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev' + google-auth: '>=1.25.0,<3.0dev' + hash: + sha256: 8417acf6466be2fa85123441696c4badda48db314c607cf1e5d543fa8bdc22fe + manager: pip + name: google-cloud-core + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/ac/4d/bae84e736080ed465a6b02e9f447c89c60c00fcdade2eb6911fecf3f46aa/google_cloud_core-2.3.2-py2.py3-none-any.whl + version: 2.3.2 +- category: main + dependencies: + h5py: '>=2.10,<4' + hdmf: '>=3.4.2,<4' + numpy: '>=1.16,<1.24' + pandas: '>=1.1.5,<2' + python-dateutil: '>=2.7.3,<3' + hash: + sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f + manager: pip + name: pynwb + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl + version: 2.2.0 +- category: main + dependencies: + google-api-core: '>=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev' + google-auth: '>=1.25.0,<3.0dev' + google-cloud-core: '>=2.3.0,<3.0dev' + google-resumable-media: '>=2.3.2' + requests: '>=2.18.0,<3.0.0dev' + hash: + sha256: 19a26c66c317ce542cea0830b7e787e8dac2588b6bfa4d3fd3b871ba16305ab0 + manager: pip + name: google-cloud-storage + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/b3/bf/ae046b7499480a2d84f3385a5abe198122eae338ad224c7f2b6a8a4b48ff/google_cloud_storage-2.5.0-py2.py3-none-any.whl + version: 2.5.0 +- category: main + dependencies: + pynwb: '>=1.1.2' + hash: + sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af + manager: pip + name: ndx-events + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl + version: 0.2.0 +- category: main + dependencies: + aiohttp: 3.7.4 + argschema: '>=3.0.1,<4.0.0' + boto3: 1.17.21 + cachetools: '>=4.2.1,<5.0.0' + future: '>=0.14.3,<1.0.0' + glymur: 0.8.19 + h5py: '*' + hdmf: '>=2.5.8' + jinja2: '>=3.0.0' + matplotlib: '>=1.4.3,<3.4.3' + ndx-events: <=0.2.0 + nest-asyncio: '*' + numpy: '*' + pandas: '>=1.1.5' + psycopg2-binary: '>=2.7,<3.0.0' + pynrrd: '>=0.2.1,<1.0.0' + pynwb: '*' + requests: <3.0.0 + requests-toolbelt: <1.0.0 + scikit-build: <1.0.0 + scikit-image: '>=0.14.0,<0.17.0' + scipy: '>=1.4.0,<2.0.0' + seaborn: <1.0.0 + semver: '*' + simpleitk: '>=2.0.2,<3.0.0' + simplejson: '>=3.10.0,<4.0.0' + six: '>=1.9.0,<2.0.0' + sqlalchemy: '*' + statsmodels: <=0.13.0 + tables: '>=3.6.0,<3.7.0' + tqdm: '>=4.27' + xarray: <0.16.0 + hash: + sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 + manager: pip + name: allensdk + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl + version: 2.13.6 +- category: main + dependencies: + boto3: '>=1.4.7' + brotli: '*' + chardet: '>=3.0.4' + click: '*' + crc32c: '*' + deflate: '>=0.2.0' + gevent: '*' + google-auth: '>=1.10.0' + google-cloud-core: '>=1.1.0' + google-cloud-storage: '>=1.31.1' + google-crc32c: '>=1.0.0' + orjson: '*' + pathos: '*' + protobuf: '>=3.3.0' + requests: '>=2.22.0' + rsa: '>=4.7.2' + six: '>=1.14.0' + tenacity: '>=4.10.0' + tqdm: '*' + urllib3: '>=1.26.3' + zstandard: '*' + hash: + sha256: 9b4805426d58b64fe26bc2e6c582fce298c4e43b0a4ccd690869369bdb959dda + manager: pip + name: cloud-files + optional: false + platform: linux-aarch64 + source: null + url: https://files.pythonhosted.org/packages/a8/f4/00a2a184867ff465fb15fb4970f51ec0a49e8cccf7fad1255d40ecc5a4f3/cloud_files-4.11.0-py3-none-any.whl + version: 4.11.0 +- category: main + dependencies: {} + hash: + md5: 37edc4e6304ca87316e160f5ca0bd1b5 + sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 + manager: conda + name: bzip2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 + version: 1.0.8 +- category: main + dependencies: {} + hash: + md5: 00b3e98a61e6430808fe7a2534681f28 + sha256: 1cb663c9916aab52a90a80505fec8c1a89fab21f58f3c5a949a2f286e92cb16c + manager: conda + name: c-ares + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.18.1-h0d85af4_0.tar.bz2 + version: 1.18.1 +- category: main + dependencies: {} + hash: + md5: 67b268c32433047914482def1ce215c2 + sha256: e1c929207f8a8e03fa86150c3b446f3511f35b2146d3031de305088c3b148c58 + manager: conda + name: ca-certificates + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2022.9.24-h033912b_0.tar.bz2 + version: 2022.9.24 +- category: main + dependencies: {} + hash: + md5: a0a531df6bf6663607dc77722ae522d6 + sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f + manager: conda + name: fenics-ufcx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 + version: 0.5.0 +- category: main + dependencies: {} + hash: + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + manager: conda + name: font-ttf-dejavu-sans-mono + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + version: '2.37' +- category: main + dependencies: {} + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + manager: conda + name: font-ttf-inconsolata + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + version: '3.000' +- category: main + dependencies: {} + hash: + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + manager: conda + name: font-ttf-source-code-pro + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + version: '2.038' +- category: main + dependencies: {} + hash: + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + manager: conda + name: font-ttf-ubuntu + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + version: '0.83' +- category: main + dependencies: {} + hash: + md5: 4fc494f8539871247167bbe4167f3277 + sha256: 8ef3816b290c09e313460f099d30984070766a700920265d3eb6f20106b574e3 + manager: conda + name: freexl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/freexl-1.0.6-hb7f2c08_1.tar.bz2 + version: 1.0.6 +- category: main + dependencies: {} + hash: + md5: be8f747c37e4d7e346c133e641966750 + sha256: 175fabb59835e3ed7e7222cb3604d44f21e8b749349b9795691693b4e0d1abc2 + manager: conda + name: giflib + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hbcb3906_2.tar.bz2 + version: 5.2.1 +- category: main + dependencies: {} + hash: + md5: 60d90a3f5803660c5c2a2e9d883df0a6 + sha256: 3bb611fc9fa6a5669aa371ac8b10e0e420689f69f0b7993955d76d8ddddc5e5d + manager: conda + name: jpeg + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jpeg-9e-hac89ed1_2.tar.bz2 + version: 9e +- category: main + dependencies: {} + hash: + md5: 6696477dbfcb5b7ea8559865e7f9dbef + sha256: 9db9901379d952a491f02f4325f3fb19ebb01b4dcc554472e4706a3d1d6abdad + manager: conda + name: json-c + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.16-h01d06f9_0.tar.bz2 + version: '0.16' +- category: main + dependencies: {} + hash: + md5: 1c2379fd9d5d4ecb151231f6282e699d + sha256: daeb6fe1e06549117a549bd94f4fb1ac575f80c67891171307057cb83a1d74fb + manager: conda + name: jxrlib + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h35c211d_2.tar.bz2 + version: '1.1' +- category: main + dependencies: {} + hash: + md5: 3342b33c9a0921b22b767ed68ee25861 + sha256: 0f943b08abb4c748d73207594321b53bad47eea3e7d06b6078e0f6c59ce6771e + manager: conda + name: lame + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2 + version: '3.100' +- category: main + dependencies: {} + hash: + md5: 37157d273eaf3bc7d6862104161d9ec9 + sha256: c983101653f5bffea605c4423d84fd5ca28ee36b290cdb6207ec246e293f7d94 + manager: conda + name: libbrotlicommon + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.0.9-hb7f2c08_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: {} + hash: + md5: 208a6a874b073277374de48a782f6b10 + sha256: ebb75dd9f854b1f184a98d0b9128a3faed6cd2f05f83677e1f399c253580afe7 + manager: conda + name: libcxx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-14.0.6-hccf4f1f_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: {} + hash: + md5: ce2a6075114c9b64ad8cace52492feee + sha256: 0153de9987fa6e8dd5be45920470d579af433d4560bfd77318a72b3fd75fb6dc + manager: conda + name: libdeflate + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.14-hb7f2c08_0.tar.bz2 + version: '1.14' +- category: main + dependencies: {} + hash: + md5: 79dc2be110b2a3d1e97ec21f691c50ad + sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b + manager: conda + name: libev + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2 + version: '4.33' +- category: main + dependencies: {} + hash: + md5: ccb34fb14960ad8b125962d3d79b31a9 + sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f + manager: conda + name: libffi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + version: 3.4.2 +- category: main + dependencies: {} + hash: + md5: 691d103d11180486154af49c037b7ed9 + sha256: 4a3294037d595754f7da7c11a41f3922f995aaa333f3cb66f02d8afa032a7bc2 + manager: conda + name: libiconv + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2 + version: '1.17' +- category: main + dependencies: {} + hash: + md5: a7ab4b53ef18c598ffaa597230bc3ba1 + sha256: e3cec0c66d352d822b7a90db8edbc62f237fca079b6044e5b27f6ca529f7d9d9 + manager: conda + name: libogg + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.4-h35c211d_1.tar.bz2 + version: 1.3.4 +- category: main + dependencies: {} + hash: + md5: 380b9ea5f6a7a277e6c1ac27d034369b + sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31 + manager: conda + name: libopus + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 + version: 1.3.1 +- category: main + dependencies: {} + hash: + md5: 24632c09ed931af617fe6d5292919cab + sha256: 2da45f14e3d383b4b9e3a8bacc95cd2832aac2dbf9fbc70d255d384a310c5660 + manager: conda + name: libsodium + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2 + version: 1.0.18 +- category: main + dependencies: {} + hash: + md5: 73f67fb011b4477b101a95a082c74f0a + sha256: 4197c155fb460fae65288c6c098c39f22495a53838356d29b79b31b8e33486dc + manager: conda + name: libtasn1 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libtasn1-4.19.0-hb7f2c08_0.tar.bz2 + version: 4.19.0 +- category: main + dependencies: {} + hash: + md5: 40f27dc16f73256d7b93e53c4f03d92f + sha256: c5805a58cd2b211bffdc8b7cdeba9af3cee456196ab52ab9a30e0353bc95beb7 + manager: conda + name: libunistring + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libunistring-0.9.10-h0d85af4_0.tar.bz2 + version: 0.9.10 +- category: main + dependencies: {} + hash: + md5: 28807bef802a354f9c164e7ab242c5cb + sha256: ca3eb817054ac2942802b6b51dc671ab2af6564da329bebcb2538cdb31b59fa1 + manager: conda + name: libwebp-base + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.2.4-h775f41a_0.tar.bz2 + version: 1.2.4 +- category: main + dependencies: {} + hash: + md5: 35eb3fce8d51ed3c1fd4122bad48250b + sha256: 0d954350222cc12666a1f4852dbc9bcf4904d8e467d29505f2b04ded6518f890 + manager: conda + name: libzlib + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-hfd90126_4.tar.bz2 + version: 1.2.13 +- category: main + dependencies: {} + hash: + md5: 5d5ab9ab83ce21422be84ecfd3142201 + sha256: dfe2fa815471c2638a009eb47969605730d92c3af3f183295587e34f996d2f30 + manager: conda + name: llvm-openmp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-14.0.4-ha654fa7_0.tar.bz2 + version: 14.0.4 +- category: main + dependencies: {} + hash: + md5: ed90f7784864e7c0580624ec3ed5534e + sha256: 7a71e06bc0ee0d95483c49de11e4a72bf29045b93b5d835bb7adbddb839c7b98 + manager: conda + name: metis + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.0-h2e338ed_1006.tar.bz2 + version: 5.1.0 +- category: main + dependencies: {} + hash: + md5: 8c3bc725bf4d10fc6e56031f7543771f + sha256: 1326b28195e8808cebc18a593f84c5cbd606826a150dd7e0365f11b86238b5df + manager: conda + name: mpi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mpi-1.0-openmpi.tar.bz2 + version: '1.0' +- category: main + dependencies: {} + hash: + md5: ed3d032dc307436df39ff27f34ab7ab8 + sha256: 7f7e34fb9bcbbe5460dd2f3d3c46335917f693b84f4d1af78d4c5080e800d45d + manager: conda + name: mumps-include + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mumps-include-5.2.1-h694c41f_11.tar.bz2 + version: 5.2.1 +- category: main + dependencies: {} + hash: + md5: 76217ebfbb163ff2770a261f955a5861 + sha256: 9794a23d03586c99cac49d4ae3d5337faaa6bfc256b31d2662ff4ad5972be143 + manager: conda + name: ncurses + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.3-h96cf925_1.tar.bz2 + version: '6.3' +- category: main + dependencies: {} + hash: + md5: 99558b9df4c337a0bf82bc8e0090533a + sha256: d8b3ffa9595e04a28c7cecb482548c868ec1d5d1937a40ac508ff97d0343d3dc + manager: conda + name: nettle + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/nettle-3.8.1-h96f3785_1.tar.bz2 + version: 3.8.1 +- category: main + dependencies: {} + hash: + md5: 09a583a6f172715be21d93aaa1b42d71 + sha256: 50646988679b823958bd99983a9e66fce58a7368fa2bab5712efb5c7ce6199af + manager: conda + name: pixman + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2 + version: 0.40.0 +- category: main + dependencies: {} + hash: + md5: abc27381c4f005da588cffa1f76403ee + sha256: ccd2857627c0f6e903a917b99e60860c0a2b7dc553a32cf7c1ab55f0af99ec11 + manager: conda + name: poppler-data + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.11-hd8ed1ab_0.tar.bz2 + version: 0.4.11 +- category: main + dependencies: {} + hash: + md5: addd19059de62181cd11ae8f4ef26084 + sha256: 6e3900bb241bcdec513d4e7180fe9a19186c1a38f0b4080ed619d26014222c53 + manager: conda + name: pthread-stubs + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2 + version: '0.4' +- category: main + dependencies: {} + hash: + md5: ed1bdb5cc17e81b331008b5d0cf41088 + sha256: 3d3bf2ff1eb79f5d045a77b40661bb74af0ab289751948ac327150d3187774d0 + manager: conda + name: tzcode + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tzcode-2022e-hb7f2c08_0.tar.bz2 + version: 2022e +- category: main + dependencies: {} + hash: + md5: b6bd89cf71494c41a181cac13cc5a8ea + sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 + manager: conda + name: tzdata + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 + version: 2022e +- category: main + dependencies: {} + hash: + md5: a089d6128d878e22503a1f3a162979d4 + sha256: 0a30c8e31ad3b9d0f32ece74fcc37318cfc2dc4f62301bfec53faf0b426741b4 + manager: conda + name: utfcpp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/utfcpp-3.2.1-h694c41f_0.tar.bz2 + version: 3.2.1 +- category: main + dependencies: {} + hash: + md5: 23e9c3180e2c0f9449bb042914ec2200 + sha256: de611da29f4ed0733a330402e163f9260218e6ba6eae593a5f945827d0ee1069 + manager: conda + name: x264 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/x264-1!164.3095-h775f41a_2.tar.bz2 + version: 1!164.3095 +- category: main + dependencies: {} + hash: + md5: 41302c2bc60a15ca4a018775fd20b442 + sha256: ea4e792e48f28023668ce3e716ebee9b7d04e2d397d678f8f3aef4c7a66f4449 + manager: conda + name: xorg-kbproto + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-kbproto-1.0.7-h35c211d_1002.tar.bz2 + version: 1.0.7 +- category: main + dependencies: {} + hash: + md5: 77e8f2ccf8b892f0c8a411265c5e4782 + sha256: 0fa1a581b68bac956544bd8db36fbacd3a8467d0f06996a20f5b491074777222 + manager: conda + name: xorg-libice + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libice-1.0.10-h0d85af4_0.tar.bz2 + version: 1.0.10 +- category: main + dependencies: {} + hash: + md5: c5049997b2e98edfbcdd294582f66281 + sha256: 6dcdbfcdb87c21cb615cd1a0a7fab7e657a443c771e80c771524f7d9b8443304 + manager: conda + name: xorg-libxau + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.9-h35c211d_0.tar.bz2 + version: 1.0.9 +- category: main + dependencies: {} + hash: + md5: 86ac76d6bf1cbb9621943eb3bd9ae36e + sha256: 485421c16f03a01b8ed09984e0b2ababdbb3527e1abf354ff7646f8329be905f + manager: conda + name: xorg-libxdmcp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2 + version: 1.1.3 +- category: main + dependencies: {} + hash: + md5: e1cff95f235c6ad73199735685186693 + sha256: ac633b59ebf10da5d00040655e2ca5746d0e6813b4d20cf2c30adef753d3d082 + manager: conda + name: xorg-renderproto + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-renderproto-0.11.1-h0d85af4_1002.tar.bz2 + version: 0.11.1 +- category: main + dependencies: {} + hash: + md5: 3d1b38fbacfe0f59d828c5ff0b10759b + sha256: 517f7d01ca69a30907d46793b09979d6cde4596d4603a045f984059953862d99 + manager: conda + name: xorg-xextproto + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-xextproto-7.3.0-h35c211d_1002.tar.bz2 + version: 7.3.0 +- category: main + dependencies: {} + hash: + md5: e1b279e3b8c03f88a90e81480a8f319a + sha256: 433fa2cf3282e0e6f13cf5e73280cd1add4d3be76f19f2674cbd127c9ec70dd4 + manager: conda + name: xorg-xproto + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-xproto-7.0.31-h35c211d_1007.tar.bz2 + version: 7.0.31 +- category: main + dependencies: {} + hash: + md5: a72f9d4ea13d55d745ff1ed594747f10 + sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 + manager: conda + name: xz + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + version: 5.2.6 +- category: main + dependencies: {} + hash: + md5: d7e08fcf8259d742156188e8762b4d20 + sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 + manager: conda + name: yaml + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + version: 0.2.5 +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: 9110390ac33346f643e26051a92de5ce + sha256: 16ccdf58e3b8b3f446d53780964730e51c57ef11f87b64a4535d9f5a8904f39c + manager: conda + name: aom + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.5.0-hf0c8a7f_0.tar.bz2 + version: 3.5.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: 3c2d7d657d83eac1507bc6fbab9eb297 + sha256: 6af41a544a85b4105fc15eda8f26aeb0324727dd334e01c6282d784dd0ea8793 + manager: conda + name: double-conversion + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/double-conversion-3.2.0-hf0c8a7f_1.tar.bz2 + version: 3.2.0 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: f47a426ed1340c966f539c42187e3331 + sha256: 16a1b30fb2ee932211274cfeab1fe92700822c87eeb2e5f256ab82b82c8e0092 + manager: conda + name: eigen + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-h940c156_0.tar.bz2 + version: 3.4.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: 7648a729fc8b7272596e90b0ab0a3e98 + sha256: cd1fceb9e0ed4175044bce7aceb7698bcdfd452da44941fc66aee900e0fce997 + manager: conda + name: expat + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_0.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + font-ttf-dejavu-sans-mono: '' + font-ttf-inconsolata: '' + font-ttf-source-code-pro: '' + font-ttf-ubuntu: '' + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + manager: conda + name: fonts-conda-forge + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + version: '1' +- category: main + dependencies: + libcxx: '>=13.0.1' + hash: + md5: c7e2d591b477ceb4fc8a1190a5c9cb8e + sha256: d92573b2ea8a3d7a7518a140e04c9ed74ce2c01f1e3ede0004a51ee8e536a301 + manager: conda + name: geos + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.11.0-hb486fe8_0.tar.bz2 + version: 3.11.0 +- category: main + dependencies: + libiconv: '>=1.17,<2.0a0' + hash: + md5: 1e3aff29ce703d421c43f371ad676cc5 + sha256: 915d3cd2d777b9b3fc2e87a25901b8e4a6aa1b2b33cf2ba54e9e9ed4f6b67d94 + manager: conda + name: gettext + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.21.1-h8a4c099_0.tar.bz2 + version: 0.21.1 +- category: main + dependencies: + libcxx: '>=11.0.0' + hash: + md5: 6b753c8c7e4c46a8eb17b6f1781f958a + sha256: 1d114d93fd4bf043aa6fccc550379c0ac0a48461633cd1e1e49abe55be8562df + manager: conda + name: glew + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2 + version: 2.1.0 +- category: main + dependencies: + libcxx: '>=10.0.1' + hash: + md5: dedc96914428dae572a39e69ee2a392f + sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 + manager: conda + name: gmp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2 + version: 6.2.1 +- category: main + dependencies: + jpeg: '>=9e,<10a' + libcxx: '>=13.0.1' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 4e0c236f082ac1864b3380b6728fcf7b + sha256: 867be0ec7935d2e4f67ef0388c12d29b0c60439a41917a088bdbd7fbc19c1aff + manager: conda + name: hdf4 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h0623a88_4.tar.bz2 + version: 4.2.15 +- category: main + dependencies: + libcxx: '>=12.0.1' + hash: + md5: 376635049e9b9b0bb875efd39dcd7b3b + sha256: 0807aa3fd93804ab239808d149e7f210a83e1c61bc59bb84818f4ef9f6036d86 + manager: conda + name: icu + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/icu-70.1-h96cf925_0.tar.bz2 + version: '70.1' +- category: main + dependencies: + libcxx: '>=12.0.1' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: e4863acbf3dc95d720f5ca8b53582296 + sha256: 19a0ed6088e13bbcb29cc69c75562f499453929554b8c2fdd984d463adbbb88f + manager: conda + name: imath + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/imath-3.1.5-hd9580d2_0.tar.bz2 + version: 3.1.5 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 45824afbfd843fe0584ae8df22f1d99a + sha256: 291696d97a252af1a50adf245f832ebf6c9f566effdae18fa11467833eb6947f + manager: conda + name: jsoncpp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/jsoncpp-1.9.5-h940c156_1.tar.bz2 + version: 1.9.5 +- category: main + dependencies: + libcxx: '>=13.0.1' + hash: + md5: f9d6a4c82889d5ecedec1d90eb673c55 + sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 + manager: conda + name: lerc + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 + version: 4.0.0 +- category: main + dependencies: + libbrotlicommon: 1.0.9 hb7f2c08_8 + hash: + md5: 7f952a036d9014b4dab96c6ea0f8c2a7 + sha256: 52d8e8929b2476cf13fd397d88cefd911f805de00e77090fdc50b8fb11c372ca + manager: conda + name: libbrotlidec + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.0.9-hb7f2c08_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + libbrotlicommon: 1.0.9 hb7f2c08_8 + hash: + md5: b36a3bfe866d9127f25f286506982166 + sha256: be7e794c6208e7e12982872922df13fbf020ab594d516b7bc306a384ac7d3ac6 + manager: conda + name: libbrotlienc + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.0.9-hb7f2c08_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + ncurses: '>=6.2,<7.0.0a0' + hash: + md5: 6016a8a1d0e63cac3de2c352cd40208b + sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 + manager: conda + name: libedit + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + version: 3.1.20191231 +- category: main + dependencies: + llvm-openmp: '>=8.0.0' + hash: + md5: 2c8fd85ee58fc04f8cc52aaa28bceca3 + sha256: 599cade7d68b6bd1b79db1b0ab24cdfd0b310c47e74d1f55c78761eb66e0e62f + manager: conda + name: libgfortran5 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-11.3.0-h082f757_25.tar.bz2 + version: 11.3.0 +- category: main + dependencies: + libcxx: '>=13' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: c6d2d46e0b951f72762e7c25584c9893 + sha256: 8bc3c202785aae1dc936673ec2f86d154591e487aeae391a5b2397e098b30853 + manager: conda + name: libllvm14 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libllvm14-14.0.6-h41df66c_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 3954555b5b02b117119cb806d5dcfcd8 + sha256: 8bcc76d644202cde53252a2274f8a3fe28650ba273148ce027337c576276d6f3 + manager: conda + name: libpng + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.38-ha978bb4_0.tar.bz2 + version: 1.6.38 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: b1c13764417c32fa87fac733caa82a64 + sha256: 443db45215e08fbf134a019486c20540d9903c1d9b14ac28ba299f8a730069da + manager: conda + name: libspatialindex + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libspatialindex-1.9.3-he49afe7_4.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 28060fa753417bdd4e66da2048951dd1 + sha256: 3fc6bd39468480b12166b4450731f6a517780590aa3cbfcd812f71b4c9a6946b + manager: conda + name: libsqlite + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.39.4-ha978bb4_0.tar.bz2 + version: 3.39.4 +- category: main + dependencies: + libcxx: '>=11.0.0' + libogg: '>=1.3.4,<1.4.0a0' + hash: + md5: fbbda1fede0aadaa252f6919148c4ce1 + sha256: fbcce1005efcd616e452dea07fe34893d8dd13c65628e74920eeb68ac549faf7 + manager: conda + name: libvorbis + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2 + version: 1.3.7 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 4ad2e740535a74d4ab65550b8a41f99f + sha256: 8ac48daf2d4398196f7467f7764ab7c37ef1f32535ad9ae2c7a348dd3912a69a + manager: conda + name: libvpx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.11.0-he49afe7_3.tar.bz2 + version: 1.11.0 +- category: main + dependencies: + pthread-stubs: '' + xorg-libxau: '' + xorg-libxdmcp: '' + hash: + md5: eb7860935e14aec936065cbc21a1a962 + sha256: 00e962ea91deae3dbed221c960c3bffab4172d87bc883b615298333fe336a5c6 + manager: conda + name: libxcb + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.13-h0d85af4_1004.tar.bz2 + version: '1.13' +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 05c08241b66631c00ca4f9e0b75320bc + sha256: 627c435c511e789ed04e0e2077fdfc645117474c4d1c4a7c0d31241936632cd4 + manager: conda + name: lz4-c + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.3-he49afe7_1.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 8d7d6d0d86b10bd80e2096058c240a45 + sha256: 0384690469af309024db6daebc3008419808f378c58c1ab773df86b761ffb5ca + manager: conda + name: nspr + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.32-hcd9eead_1.tar.bz2 + version: '4.32' +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: a93fa301787690312bde5f58450b987d + sha256: c4a7510868ec39dedb757addac20a758a6351ceee60f1cde59858d28ef18d633 + manager: conda + name: openh264 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openh264-2.3.1-hf0c8a7f_1.tar.bz2 + version: 2.3.1 +- category: main + dependencies: + ca-certificates: '' + hash: + md5: 0baad99a59d471b1e8ed988e2098b011 + sha256: 216999dbb0d3564077533c9ac776dce98e00a538974537f212b6435fd946b069 + manager: conda + name: openssl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-1.1.1q-hfd90126_1.tar.bz2 + version: 1.1.1q +- category: main + dependencies: + libffi: '>=3.4.2,<3.5.0a0' + libtasn1: '>=4.18.0,<5.0a0' + hash: + md5: e936a0ee28be948846108582f00e2d61 + sha256: e16fbaadb2714c0965cb76de32fe7d13a21874cec02c97efef8ac51f4fda86fc + manager: conda + name: p11-kit + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/p11-kit-0.24.1-h65f8906_0.tar.bz2 + version: 0.24.1 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 0526850419e04ac003bc0b65a78dc4cc + sha256: 8002279cf4084fbf219f137c2bdef2825d076a5a57a14d1d922d7c5fa7872a5c + manager: conda + name: pcre + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pcre-8.45-he49afe7_0.tar.bz2 + version: '8.45' +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 4aea99dd6f062a6cebafbb0d363807fa + sha256: 6bcbb5bda880e58e3172cc604dff2e84b68fb4431c814a6b03d1a476b94b00e6 + manager: conda + name: pcre2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.37-h3f55489_1.tar.bz2 + version: '10.37' +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 69d67c7202c11a51cc0e7f9cda7e49b2 + sha256: f487ea4b425515cd2df5197fa7fe4e06d7f64aabef58cefca1212c02f8958835 + manager: conda + name: pugixml + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.11.4-he49afe7_0.tar.bz2 + version: 1.11.4 +- category: main + dependencies: + libcxx: '>=10.0.1' + hash: + md5: 6393fe5c6c2d496ab76853628bcf10d9 + sha256: ab46afaae30bf186fb389658bf7e1176508a9a0a93d9ab621f65bd1cbe1faafa + manager: conda + name: rapidjson + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0-hb1e8313_1002.tar.bz2 + version: 1.1.0 +- category: main + dependencies: + ncurses: '>=6.3,<7.0a0' + hash: + md5: 89fa404901fa8fb7d4f4e07083b8d635 + sha256: c65dc1200a252832db49bdd6836c512a0eaafe97aa914b9f8358b15eebb1d94b + manager: conda + name: readline + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.1.2-h3899abd_0.tar.bz2 + version: 8.1.2 +- category: main + dependencies: + libcxx: '>=13.0.1' + hash: + md5: ffa92d111ec90eec8ffc09220a9c5aba + sha256: 646a0a0cfa679272f8c4794767cf18d61eb138236e9a7b779b6cdd10031a06ec + manager: conda + name: snappy + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.9-h6e38e02_1.tar.bz2 + version: 1.1.9 +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: a8923e0ea91ed4c6bfe5d5d07949fb2c + sha256: ebc6426fac3ff7ecd13cf993378368b12076c29966dfae6f3d1a5cf5089a8110 + manager: conda + name: svt-av1 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-1.3.0-hf0c8a7f_0.tar.bz2 + version: 1.3.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: a61183103765b09fcf26b564f75b4904 + sha256: fbf980b92f1e1fb522410525b87a1499904967abdaedd2cdef815da3e368f526 + manager: conda + name: tbb + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.6.0-hb8565cd_1.tar.bz2 + version: 2021.6.0 +- category: main + dependencies: + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 8e9480d9c47061db2ed1b4ecce519a7f + sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 + manager: conda + name: tk + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 + version: 8.6.12 +- category: main + dependencies: + libcxx: '>=12.0.1' + hash: + md5: a3bf3e95b7795871a6734a784400fcea + sha256: 6b6a57710192764d0538f72ea1ccecf2c6174a092e0bc76d790f8ca36bbe90e4 + manager: conda + name: x265 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/x265-3.5-hbb4e6a2_3.tar.bz2 + version: '3.5' +- category: main + dependencies: + xorg-xextproto: '' + hash: + md5: a4dde7ba6e898f8cc4a33cc97943d2d7 + sha256: 10bfab0f8c129b16454a1fc86f88b26e8f5d3728eb8aaa251f7d4b24b33d0f9b + manager: conda + name: xorg-fixesproto + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-fixesproto-5.0-h0d85af4_1002.tar.bz2 + version: '5.0' +- category: main + dependencies: + xorg-libice: 1.0.* + hash: + md5: 309cde52baa36ad32a0ed423718bbcfb + sha256: 5135666beecdc19ef801511a9c10876cdf9e9d4335b263a9576cdc155d8055f2 + manager: conda + name: xorg-libsm + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libsm-1.2.3-h0d85af4_1000.tar.bz2 + version: 1.2.3 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 45ee043093c71ebfc417afe577d4ee32 + sha256: 05b3ccdcd3083fda9417929b595c93e1edde66c97f2f3dc04f7455ab7f64d5a0 + manager: conda + name: xtl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xtl-0.7.4-h940c156_0.tar.bz2 + version: 0.7.4 +- category: main + dependencies: + libcxx: '>=11.1.0' + libsodium: '>=1.0.18,<1.0.19.0a0' + hash: + md5: 1972d732b123ed04b60fd21e94f0b178 + sha256: 991e2b42908c5793fe42a78272e6bd5e6412636274500b846991d0f3e5126952 + manager: conda + name: zeromq + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.4-he49afe7_1.tar.bz2 + version: 4.3.4 +- category: main + dependencies: + libcxx: '>=11.1.0' + llvm-openmp: '>=11.1.0' + hash: + md5: faa14d931b1e190945b8fdf18e0d0b97 + sha256: 5705e4756ce9f48020b2d20949efaa0b159e04220973dfaecb42c85165e40124 + manager: conda + name: zfp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zfp-0.5.5-h4a89273_8.tar.bz2 + version: 0.5.5 +- category: main + dependencies: + libzlib: 1.2.13 hfd90126_4 + hash: + md5: be90e6223c74ea253080abae19b3bdb1 + sha256: 9db69bb5fc3e19093b550e25d1158cdf82f4f8eddc1f80f8d7d9de33eb8535a4 + manager: conda + name: zlib + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-hfd90126_4.tar.bz2 + version: 1.2.13 +- category: main + dependencies: + libcxx: '>=13.0.1' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 0b446e84f3ccf085e590dc1f73eebe3f + sha256: acf19719a0a4b7534532166f84346709fdb8ccf960bc6c19ac3b437177e95dde + manager: conda + name: zstd + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hfa58983_4.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + libcxx: '>=13.0.1' + libzlib: '>=1.2.11,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + snappy: '>=1.1.9,<2.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: c7bcd688fb5236757648a8b85b8fb7f0 + sha256: 518057cef4b20f86ea7df4000e2a69fd87da4f9924d9e52d89517b0c200d3cf3 + manager: conda + name: blosc + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.1-h97e831e_3.tar.bz2 + version: 1.21.1 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + icu: '>=70.1,<71.0a0' + libcxx: '>=12.0.1' + libzlib: '>=1.2.11,<1.3.0a0' + xz: '>=5.2.5,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: a89e9eda1dea07f884c11a7e958f72d2 + sha256: 02e38c2a0ccbf173a23338b82e4fa32aa1161b96b89b987151699f47e9d0cc3b + manager: conda + name: boost-cpp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/boost-cpp-1.74.0-h8b082ac_8.tar.bz2 + version: 1.74.0 +- category: main + dependencies: + libbrotlidec: 1.0.9 hb7f2c08_8 + libbrotlienc: 1.0.9 hb7f2c08_8 + hash: + md5: aac5ad0d8f747ef7f871508146df75d9 + sha256: 36f79eb26da032c5d1ddc11e0bcac5526f249bf60d332e4743c8d48bb7334db0 + manager: conda + name: brotli-bin + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.0.9-hb7f2c08_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + fonts-conda-forge: '' + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + manager: conda + name: fonts-conda-ecosystem + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + version: '1' +- category: main + dependencies: + libpng: '>=1.6.37,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 6afb5b1664496c575117efe9aa2c9ba9 + sha256: 73b9b2eeb53fee81109cef859d3bb0bd032834cc31771af3529173dab9a17781 + manager: conda + name: freetype + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_0.tar.bz2 + version: 2.12.1 +- category: main + dependencies: + libpng: '>=1.6.37,<1.7.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: a9e91533b95cd019d58f4b3ef9bbddf0 + sha256: 668be06fc02b924eaf6c4f37c760804a8ca76bd119b5caa6eca51d8e96e957b3 + manager: conda + name: gl2ps + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gl2ps-1.4.2-h4cff582_0.tar.bz2 + version: 1.4.2 +- category: main + dependencies: + libcxx: '>=12.0.1' + libedit: '>=3.1.20191231,<4.0a0' + openssl: '>=1.1.1l,<1.1.2a' + hash: + md5: e60363be26ab2a74326c06195d638447 + sha256: 29c3bba714faa9393406fba1cc470e018eeebf5570bdda9d6066bd61c138ca8c + manager: conda + name: krb5 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.19.3-hb49756b_0.tar.bz2 + version: 1.19.3 +- category: main + dependencies: + libcxx: '>=13.0.1' + libllvm14: '>=14.0.6,<14.1.0a0' + hash: + md5: 23c8a9e263e467b83ba7288d5e2031a2 + sha256: ebfe2e2f7e032f852a59b98970cb6eb40c45f43bb5f4b416aabbb453133030d9 + manager: conda + name: libclang13 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libclang13-14.0.6-default_hb5731bd_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: + libgfortran5: '' + hash: + md5: 5258ded23560cdebf95cef1df827065b + sha256: d8157284166a69cd12e43a75da5a135d529c899428201314902a4d4992afa7b1 + manager: conda + name: libgfortran + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-10_4_0_h97931a8_25.tar.bz2 + version: 5.0.0 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + libcxx: '>=14.0.4' + libffi: '>=3.4,<4.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + pcre2: '>=10.37,<10.38.0a0' + hash: + md5: 6b6b943399bbdf9918f989c363375365 + sha256: 7fd0617aa7772b8592812f4f0a175f5977af699404995cf5b76c172e567d1bf0 + manager: conda + name: libglib + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.74.1-h3ba3332_0.tar.bz2 + version: 2.74.1 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + libunistring: '>=0,<1.0a0' + hash: + md5: bd109fd705b4ce40a62759129bc4ef5a + sha256: a85127270c37fe2046372d706c44b7c707605dc1f8b97f80e8a1e1978bd3f8f5 + manager: conda + name: libidn2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libidn2-2.3.4-hb7f2c08_0.tar.bz2 + version: 2.3.4 +- category: main + dependencies: + c-ares: '>=1.18.1,<2.0a0' + libcxx: '>=13.0.1' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: a2bb3253049f51bc521d748451536d70 + sha256: 710762ce29c9f2634fd7d5a05ccc327413c9f7acb101c5566c9e48dd82925f17 + manager: conda + name: libnghttp2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.47.0-h7cbc4dc_1.tar.bz2 + version: 1.47.0 +- category: main + dependencies: + geos: '>=3.11.0,<3.11.1.0a0' + libcxx: '>=13.0.1' + hash: + md5: cbe0c3c20a8b3069c84659eb4540f0cb + sha256: fb7abf6f9ca8cd700f82c8a749e0f5a641d22fdd1ec7443437a6592818ca51d4 + manager: conda + name: librttopo + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-he07d8f5_11.tar.bz2 + version: 1.1.0 +- category: main + dependencies: + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: acc1797f7b89018eeba2029c56dfdf0c + sha256: 8688c19c2158edfee7b82a673c1371ce21113b076b34c60f74f094b9841b8a16 + manager: conda + name: libssh2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.10.0-h7535e13_3.tar.bz2 + version: 1.10.0 +- category: main + dependencies: + libogg: '>=1.3.4,<1.4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: e63b84ed4c2d84901332de92a98a2f2b + sha256: 7a22ace7fb4c0b2a54c9e707c1894f889c9d2381cafbe0e6a75ad1d17340f8b9 + manager: conda + name: libtheora + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libtheora-1.1.1-h0d85af4_1005.tar.bz2 + version: 1.1.1 +- category: main + dependencies: + jpeg: '>=9e,<10a' + lerc: '>=4.0.0,<5.0a0' + libcxx: '>=14.0.4' + libdeflate: '>=1.14,<1.15.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + xz: '>=5.2.6,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 09195c43a896fe98b82dcebfa1d6eab1 + sha256: 4f3fd26f59d97920120817e84605a4f1d9a17940babeb562a8e81b742c6270c9 + manager: conda + name: libtiff + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.4.0-hdb44e8a_4.tar.bz2 + version: 4.4.0 +- category: main + dependencies: + icu: '>=70.1,<71.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + xz: '>=5.2.6,<6.0a0' + hash: + md5: 13ba8bf8f44cdac2e5401dac20a36040 + sha256: 464b3e2350c25615bbea89ab512f8f5fcd88a9e2f6cf9dfe7b72aa9bc56efcda + manager: conda + name: libxml2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.10.3-hb9e07b5_0.tar.bz2 + version: 2.10.3 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 1f22d7bc7ffd031b0cf3a5a2d257a6bf + sha256: 1ba23d5457886c39b2fcb7470e2c4c1346ebff892932fd6d6eaac0dd418c57ed + manager: conda + name: libzip + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.9.2-h3ad4413_1.tar.bz2 + version: 1.9.2 +- category: main + dependencies: + gmp: '>=6.2.1,<7.0a0' + hash: + md5: afe26b08c2d2265b4d663d199000e5da + sha256: 68e2d7c06f438f7179b9b0c6f826a33a29c6580233a1e60fa71d4da260d70b8f + manager: conda + name: mpfr + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.1.0-h0f52abe_1.tar.bz2 + version: 4.1.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: c432836fa8a7d77777ba44cc77e7aa7a + sha256: 2181057947bc59b5a93815eec42bfbf03fe559b0556c5a9bc5322525f790d1e2 + manager: conda + name: mysql-common + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mysql-common-8.0.31-h7ebae80_0.tar.bz2 + version: 8.0.31 +- category: main + dependencies: + imath: '>=3.1.5,<3.2.0a0' + libcxx: '>=12.0.1' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: f012b331b8292419e7a0be1d10a4382e + sha256: 2d7d7717e347bb6de182423a28ae6fb880d6f48e74dfff64bb5d780183c64f67 + manager: conda + name: openexr + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openexr-3.1.5-h6fbc5c6_0.tar.bz2 + version: 3.1.5 +- category: main + dependencies: + libzlib: '>=1.2.11,<1.3.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 201a64c35a3b3ce59b56a33f08c7a70e + sha256: f7cd07fbfe7a9cbb25a6e1c62c30ca3d821040f9c312c7e95df6895dc4203aef + manager: conda + name: scotch + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/scotch-6.0.9-h3da7401_2.tar.bz2 + version: 6.0.9 +- category: main + dependencies: + libsqlite: 3.39.4 ha978bb4_0 + libzlib: '>=1.2.12,<1.3.0a0' + ncurses: '>=6.3,<7.0a0' + readline: '>=8.1.2,<9.0a0' + hash: + md5: 14e2dbb73e122e10858790f664d9636b + sha256: af69137ec8e4dd85adb4f779cdf034022fff952bc09809c2a95b6b9026f48095 + manager: conda + name: sqlite + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.39.4-h9ae0607_0.tar.bz2 + version: 3.39.4 +- category: main + dependencies: + libcxx: '>=14.0.4' + tbb: 2021.6.0 hb8565cd_1 + hash: + md5: 585a94c82ebd58533c35192f94e21221 + sha256: f8d817aa1d00e3f4046404b6749fee682eabe833eba21144c4ebd994d05b6220 + manager: conda + name: tbb-devel + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tbb-devel-2021.6.0-hb8565cd_1.tar.bz2 + version: 2021.6.0 +- category: main + dependencies: + libxcb: 1.* + xorg-kbproto: '' + xorg-xproto: '' + hash: + md5: bd0e7b45f6bb5393bdb2d7e741428575 + sha256: 98658de15e0bf29d43590b57aa2efa38c058888479f6a90fb703bfb3b5a55b87 + manager: conda + name: xorg-libx11 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libx11-1.7.2-h0d85af4_0.tar.bz2 + version: 1.7.2 +- category: main + dependencies: + libcxx: '>=13.0.1' + xtl: '>=0.7,<0.8' + hash: + md5: cf8d39e9092afb19ac1b02f01059ef7e + sha256: 92c3e01c92a9a5505edfbde24bf496dd1bfd9203604f4059e67de08fde162b31 + manager: conda + name: xtensor + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xtensor-0.24.3-h1b54a9f_0.tar.bz2 + version: 0.24.3 +- category: main + dependencies: + brotli-bin: 1.0.9 hb7f2c08_8 + libbrotlidec: 1.0.9 hb7f2c08_8 + libbrotlienc: 1.0.9 hb7f2c08_8 + hash: + md5: 55f612fe4a9b5f6ac76348b6de94aaeb + sha256: 1272426370f1e8db1a8b245a7b522afe27413b09eab169990512a7676b802e3b + manager: conda + name: brotli + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.0.9-hb7f2c08_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + expat: '>=2.4.9,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + hash: + md5: 68c42c630dcf96518bbd9f6525861e06 + sha256: 76df655e7f4885b9f964906d9b0aad5ecd5ae9779b0ca63e875483428c38a528 + manager: conda + name: fontconfig + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.1-h5bb23bf_0.tar.bz2 + version: 2.14.1 +- category: main + dependencies: + libcxx: '>=14.0.4' + libglib: 2.74.1 h3ba3332_0 + libzlib: '>=1.2.13,<1.3.0a0' + hash: + md5: 07b0bb767e5ceca731e03e1370d23a5a + sha256: 64e083742997cbceff1770326da19c402f936812c6a301683a9d7e3d05c50a1d + manager: conda + name: glib-tools + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/glib-tools-2.74.1-hbc0c0cd_0.tar.bz2 + version: 2.74.1 +- category: main + dependencies: + gettext: '>=0.19.8.1,<1.0a0' + libcxx: '>=14.0.4' + libidn2: '>=2,<3.0a0' + libtasn1: '>=4.19.0,<5.0a0' + nettle: '>=3.8.1,<3.9.0a0' + p11-kit: '>=0.24.1,<0.25.0a0' + hash: + md5: 3886476538060824c0258316fd5bb828 + sha256: dc309e4c24689deb19596a745e0a31519adcf65c16bc349e23c140ee6ffb8f94 + manager: conda + name: gnutls + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gnutls-3.7.8-h207c4f0_0.tar.bz2 + version: 3.7.8 +- category: main + dependencies: + jpeg: '>=9d,<10a' + libtiff: '>=4.2.0,<5.0a0' + hash: + md5: abce77b852b73670e85e104746b0ea1b + sha256: 0e4e03fcd4ace2cbf5dfc2e6ed3b8f4e4fc5689e0399be4c5bbe336d7cd58796 + manager: conda + name: lcms2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.12-h577c468_0.tar.bz2 + version: '2.12' +- category: main + dependencies: + libclang13: 14.0.6 default_hb5731bd_0 + libcxx: '>=13.0.1' + libllvm14: '>=14.0.6,<14.1.0a0' + hash: + md5: 0897774ecae2c0732d69c9dcbab1b478 + sha256: cc8aba0da56a755cbba029f827a84b0b87ee993b920fefcf62270c077c0224aa + manager: conda + name: libclang + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libclang-14.0.6-default_h55ffa42_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libnghttp2: '>=1.47.0,<2.0a0' + libssh2: '>=1.10.0,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: 92605999e607f52bdd53cfb916f670cb + sha256: 7d817e863561dcf34fcb3c3ae1704d74c6c25381395a616b4ad59fbd3407a42e + manager: conda + name: libcurl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-7.86.0-h57eb407_0.tar.bz2 + version: 7.86.0 +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + expat: '>=2.3.0,<3.0.0a0' + libcxx: '>=11.1.0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 10d981c033091fd139cb9914a495cc30 + sha256: f98e1d733c760c2c4dead3570784e4c528d7aefcf8f5a92ff94cfc725bb4a50c + manager: conda + name: libkml + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-h8fd9edb_1014.tar.bz2 + version: 1.3.0 +- category: main + dependencies: + libgfortran: 5.* + libgfortran5: '>=11.3.0' + llvm-openmp: '>=14.0.4' + hash: + md5: 968c46aa7f4032c3f3873f3452ed4c34 + sha256: a5a0b6ccef165ffb38e6a53e7b8808e33c77e081174315d2333ae93b593ae957 + manager: conda + name: libopenblas + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.21-openmp_h429af6e_3.tar.bz2 + version: 0.3.21 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + readline: '>=8.1.2,<9.0a0' + hash: + md5: d119887385dc8cda6aea0bd86e5aac9b + sha256: 0212d4256fff0a6f1ef26bf949a02e5f1fadc39ea2badbaec6a4f63fa1598dd3 + manager: conda + name: libpq + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libpq-14.5-h50fae06_1.tar.bz2 + version: '14.5' +- category: main + dependencies: + libcxx: '>=12.0.1' + libgfortran: 5.* + libgfortran5: '>=9.3.0' + mpi: 1.0 mpich + hash: + md5: a479ded6dab88ffcc3039f33b5bdd403 + sha256: 2e8ee7be41fb3b044780055737ae7745c3b0cd77bcb3cda762883a8342e6c46c + manager: conda + name: mpich + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mpich-4.0.2-hd33e60e_100.tar.bz2 + version: 4.0.2 +- category: main + dependencies: + libcxx: '>=14.0.4' + libzlib: '>=1.2.12,<1.3.0a0' + mysql-common: 8.0.31 h7ebae80_0 + openssl: '>=1.1.1q,<1.1.2a' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: aedff645e509a7b223f2b5bb99c24b06 + sha256: 0291288467d4b29e33d328e2356bb826d72392f8c27234c1362392a1e8e0cc6a + manager: conda + name: mysql-libs + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mysql-libs-8.0.31-hc37e033_0.tar.bz2 + version: 8.0.31 +- category: main + dependencies: + libcxx: '>=13.0.1' + libzlib: '>=1.2.11,<1.3.0a0' + nspr: '>=4.32,<5.0a0' + sqlite: '>=3.38.5,<4.0a0' + hash: + md5: 0927d191f392959c876b7eab924efd01 + sha256: 6ac545d23f517ec1fc07496083e4fa667f82dcdb433046609c87d770f37217c1 + manager: conda + name: nss + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/nss-3.78-ha8197d3_0.tar.bz2 + version: '3.78' +- category: main + dependencies: + libcxx: '>=13.0.1' + libpng: '>=1.6.37,<1.7.0a0' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: be533cc782981a0ec5eed28aa618470a + sha256: 8e8851daf6eabf553e0bdf7cbdd3011b86e579d742852d2d757389f97a463b45 + manager: conda + name: openjpeg + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-h5d0d7b0_1.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + libgfortran: 5.* + libgfortran5: '>=11.3.0' + libzlib: '>=1.2.12,<1.3.0a0' + mpi: 1.0 openmpi + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: d2b1785ca57f1959e327d96fddc6d8db + sha256: abbfc4323ff1ad5f13897df1306817b23806f29be48041f97004b097e1d5975e + manager: conda + name: openmpi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/openmpi-4.1.4-h4fe9131_101.tar.bz2 + version: 4.1.4 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libffi: '>=3.4.2,<3.5.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + ncurses: '>=6.3,<7.0a0' + openssl: '>=1.1.1o,<1.1.2a' + readline: '>=8.1,<9.0a0' + sqlite: '>=3.38.5,<4.0a0' + tk: '>=8.6.12,<8.7.0a0' + tzdata: '' + xz: '>=5.2.5,<5.3.0a0' + hash: + md5: 0fced1dc8919c66139c45d1e2d8dc6a6 + sha256: 4b6bbae28ddc507a832709373017b14596e1bca72956f2b74af3768ea22ea228 + manager: conda + name: python + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.9.13-h57e37ff_0_cpython.tar.bz2 + version: 3.9.13 +- category: main + dependencies: + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-xextproto: '' + hash: + md5: 747e38c3b645048fc8c176caef118096 + sha256: 6d5c13193f31e4e12cc82333f4761fa1b8820b2de3ba48b7977d3aa61fe8dbcf + manager: conda + name: xorg-libxext + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxext-1.3.4-h0d85af4_1.tar.bz2 + version: 1.3.4 +- category: main + dependencies: + xorg-fixesproto: '' + xorg-libx11: '>=1.7.0,<2.0a0' + hash: + md5: 6ecbef6618bb15e389a8bb5618e579f6 + sha256: 51550eca0f260a7f1b9bc9e177ba3e78ebcf3d77511363470219b710a3ef31b1 + manager: conda + name: xorg-libxfixes + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxfixes-5.0.3-h0d85af4_1004.tar.bz2 + version: 5.0.3 +- category: main + dependencies: + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-renderproto: '' + hash: + md5: b455388502383b388c5ee5b6f5ee4509 + sha256: 459af5a3dc23dc8e495733a3a83db3dcd27c7f17402cb635a29a3579c3567405 + manager: conda + name: xorg-libxrender + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxrender-0.9.10-h0d85af4_1003.tar.bz2 + version: 0.9.10 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 466dc5c1b75c93180efbd81d99dc29b0 + sha256: f3d58687fb000acc5d5f773d6e633ffb382575895abbc8db3d9b8e3996b05d39 + manager: conda + name: affine + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/affine-2.3.1-pyhd8ed1ab_0.tar.bz2 + version: 2.3.1 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: f3f2ab3ce28979a24d1a988ba211eb9b + sha256: 1354731d0eb1b406b66b3cb3d6ab74d7cbe9c0ec1d30b9e5afa366d4539e4687 + manager: conda + name: asn1crypto + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2 + version: 1.5.1 +- category: main + dependencies: + python: '>=3.5' + hash: + md5: 6d3ccbc56256204925bfa8378722792f + sha256: 86133878250874b3823bae7369bcad90187132537726cb1b546d88a0552d24de + manager: conda + name: attrs + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/attrs-22.1.0-pyh71513ae_1.tar.bz2 + version: 22.1.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + manager: conda + name: cached_property + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.12.1,<3.0a0' + icu: '>=70.1,<71.0a0' + libglib: '>=2.72.1,<3.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + pixman: '>=0.40.0,<1.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 2e7b4350178ed52bb6fd2b1ecbeeed4f + sha256: a41a819cf32b87492098332c9f2a2c4b1055489efdad4a8be75a086ffc8573c5 + manager: conda + name: cairo + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.16.0-h904041c_1014.tar.bz2 + version: 1.16.0 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: f66309b099374af91369e67e84af397d + sha256: 52e7459b3c457e888e2b6a4e6d13ab7f8675999bc12d20a83e34f12591a8771a + manager: conda + name: certifi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2022.9.24-pyhd8ed1ab_0.tar.bz2 + version: 2022.9.24 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libcurl: '>=7.82.0,<8.0a0' + libgfortran: 5.* + libgfortran5: '>=9.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: f2108cb086dfd037a6709b011564860d + sha256: 1d830a5b6cdf74160e4eb08aab3abca0be325c0e32c24a83db57612bdd0664a8 + manager: conda + name: cfitsio + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.1.0-h2c97ad1_0.tar.bz2 + version: 4.1.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: c1d5b294fbf9a795dec349a6f4d8be8e + sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb + manager: conda + name: charset-normalizer + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2 + version: 2.1.1 +- category: main + dependencies: + __unix: '' + python: '>=3.8' + hash: + md5: 20e4087407c7cb04a40817114b333dbf + sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + manager: conda + name: click + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2 + version: 8.1.3 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libcurl: 7.86.0 h57eb407_0 + libssh2: '>=1.10.0,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + hash: + md5: e6522648f28b5ac00962b2c15498d8fc + sha256: 43502bc3a6a7b66a5f5e8f8d71b1ec8656653f3700a698ba0a64cbe0026696e4 + manager: conda + name: curl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/curl-7.86.0-h57eb407_0.tar.bz2 + version: 7.86.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + manager: conda + name: cycler + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2 + version: 0.11.0 +- category: main + dependencies: + aom: '>=3.5.0,<3.6.0a0' + bzip2: '>=1.0.8,<2.0a0' + fontconfig: '>=2.14.0,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.12.1,<3.0a0' + gmp: '>=6.2.1,<7.0a0' + gnutls: '>=3.7.8,<3.8.0a0' + lame: '>=3.100,<3.101.0a0' + libcxx: '>=14.0.4' + libiconv: '>=1.17,<2.0a0' + libvpx: '>=1.11.0,<1.12.0a0' + libxml2: '>=2.10.3,<2.11.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + svt-av1: '>=1.3.0,<1.3.1.0a0' + x264: '>=1!164.3095,<1!165' + x265: '>=3.5,<3.6.0a0' + hash: + md5: 6fa8ba7a32536d2049f7e9c78ce4bf3a + sha256: b9290cb7ccdd32de952197ecc483470c010c72f166d16f4bf80679235e36f5bc + manager: conda + name: ffmpeg + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-4.4.2-gpl_h1c50e5d_110.tar.bz2 + version: 4.4.2 +- category: main + dependencies: + libcxx: '>=14.0.4' + libgfortran: 5.* + libgfortran5: '>=11.3.0' + llvm-openmp: '>=14.0.4' + openmpi: '>=4.1.4,<5.0a0' + hash: + md5: 90d95e91354cba0cf756f5418b79f98d + sha256: 6da45db464868e217b85e044045d2f5b442592063a8e102490c6395840861a64 + manager: conda + name: fftw + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-mpi_openmpi_h7f3849b_5.tar.bz2 + version: 3.3.10 +- category: main + dependencies: + jpeg: '>=9d,<10a' + libcxx: '>=11.1.0' + libpng: '>=1.6.37,<1.7.0a0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + xorg-libice: '' + xorg-libsm: '' + xorg-libx11: '' + xorg-libxau: '' + xorg-libxdmcp: '' + xorg-libxext: '' + xorg-libxfixes: '' + xorg-libxrender: '' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: beb94c5262e5cc5986ef997d6d53f94b + sha256: 7e85cd83a85e43ba87036ca1a45d1950bfb275333d06e01c61fa0b31a736221d + manager: conda + name: fltk + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fltk-1.3.8-h7ffa276_0.tar.bz2 + version: 1.3.8 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + glib-tools: 2.74.1 hbc0c0cd_0 + libcxx: '>=14.0.4' + libglib: 2.74.1 h3ba3332_0 + libzlib: '>=1.2.13,<1.3.0a0' + python: '*' + hash: + md5: 5b4e5c15eef435cd83e18706613ddfff + sha256: 19ad5116f77a8c90a15e815e9ac2ace378916134a883fdba05ff5c92ee494309 + manager: conda + name: glib + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/glib-2.74.1-hbc0c0cd_0.tar.bz2 + version: 2.74.1 +- category: main + dependencies: + libcurl: '>=7.81.0,<8.0a0' + libcxx: '>=12.0.1' + libgfortran: 5.* + libgfortran5: '>=9.3.0' + libzlib: '>=1.2.11,<1.3.0a0' + openmpi: '>=4.1,<4.2.0a0' + openssl: '>=1.1.1l,<1.1.2a' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 956012d7900d6937e5271953c0cf8003 + sha256: 6d07697ed30d6204d3c6b340bc40bb1c0e4674a3057b0638f5c131657b11e89c + manager: conda + name: hdf5 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.1-mpi_openmpi_hcdc8fb9_4.tar.bz2 + version: 1.12.1 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + manager: conda + name: idna + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + version: '3.4' +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 2cfa3e1cf3fb51bb9b17acc5b5e9ea11 + sha256: 95ac5f9ee95fd4e34dc051746fc86016d3d4f6abefed113e2ede049d59ec2991 + manager: conda + name: jmespath + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_0.tar.bz2 + version: 1.0.1 +- category: main + dependencies: + libopenblas: '>=0.3.21,<1.0a0' + hash: + md5: 644d63e9379867490b67bace400b2a0f + sha256: 7678dab49b552957ddfa1fc5ddf3a09963c788bca81adb0cd9626f6385e205c5 + manager: conda + name: libblas + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-16_osx64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + jpeg: '>=9d,<10a' + lcms2: '>=2.12,<3.0a0' + libcxx: '>=11.1.0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: e09c37070ce3ed7ef03204bebb884ede + sha256: 10f9f13338d3c0341748878171935da1a2b256ddab22953089b8c2fbfe47fedc + manager: conda + name: libraw + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libraw-0.20.2-hefd3b78_1.tar.bz2 + version: 0.20.2 +- category: main + dependencies: + python: '' + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + manager: conda + name: munkres + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + version: 1.1.4 +- category: main + dependencies: + python: '>=3.8' + hash: + md5: 1b74438a7270b1e2cbd3de9dba18ebb6 + sha256: eda4b0dba46c72770bc410c794f4da62509623a24c12b9805954828278915dc7 + manager: conda + name: networkx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/networkx-2.8.7-pyhd8ed1ab_0.tar.bz2 + version: 2.8.7 +- category: main + dependencies: + libcxx: '>=11.1.0' + openmpi: '>=4.1,<4.2.0a0' + hash: + md5: 85ac202630b1ff6eccb4c738ee786911 + sha256: 127e079b8e219e0e796a7df9d4dc79b7a73a2a574fd4046c5ebb6e26fb5174e1 + manager: conda + name: parmetis + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-h7eda126_1005.tar.bz2 + version: 4.0.3 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libpq: 14.5 h50fae06_1 + libxml2: '>=2.10.3,<2.11.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=1.1.1q,<1.1.2a' + readline: '>=8.1.2,<9.0a0' + tzcode: '' + tzdata: '' + zlib: '' + hash: + md5: a8107e1b70d38ce37537d7ecb59d3fc3 + sha256: c40c6f9649fcd0d502a30c26ece02aa213ea842d4eb9b9768f2a591bbd6d7ebd + manager: conda + name: postgresql + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/postgresql-14.5-h7bc2cb3_1.tar.bz2 + version: '14.5' +- category: main + dependencies: + libcurl: '>=7.83.1,<8.0a0' + libcxx: '>=13.0.1' + libtiff: '>=4.4.0,<5.0a0' + sqlite: '>=3.39.0,<4.0a0' + hash: + md5: 77f04d0e61af36b4e262d5611c98ebe4 + sha256: 2c4cc8c4d580d840253395f14be1d57bde44266ebe1cb82f682d57a648645f67 + manager: conda + name: proj + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.0.1-h05f0992_1.tar.bz2 + version: 9.0.1 +- category: main + dependencies: + libzlib: '>=1.2.11,<1.3.0a0' + openmpi: '>=4.1.2,<5.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: febe7ac0a250b9b46c6c1e9a9f99ca7a + sha256: 8add56bdad963ff2568284cd1e7000b1c008e7d3059c5a014c3a651ace2172b9 + manager: conda + name: ptscotch + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/ptscotch-6.0.9-h6295d7f_2.tar.bz2 + version: 6.0.9 +- category: main + dependencies: + python: ==2.7.*|>=3.4 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + manager: conda + name: pycparser + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + version: '2.21' +- category: main + dependencies: + python: '>=3.6' + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + manager: conda + name: pyparsing + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2 + version: 3.0.9 +- category: main + dependencies: + __unix: '' + python: '>=3.8' + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + manager: conda + name: pysocks + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + version: 1.7.1 +- category: main + dependencies: + python: 3.9.* + hash: + md5: 262f557ee8ca777fe2190956038024cd + sha256: 684ad12c7e7f92aa2794c45c3a0e0f6a0c0e6251819126c065ee0d0b4da166dc + manager: conda + name: python_abi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.9-2_cp39.tar.bz2 + version: '3.9' +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 565724d09157870f0e469b1a0a172a6d + sha256: 0fc68b442d74920858fe7e4760c10efb22610fb27f28d2bfe98296b7ef2078f0 + manager: conda + name: pytz + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2022.5-pyhd8ed1ab_0.tar.bz2 + version: '2022.5' +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 462466739c786f85f9ed555f87099fe1 + sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 + manager: conda + name: setuptools + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 + version: 65.5.0 +- category: main + dependencies: + python: '' + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + manager: conda + name: six + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + version: 1.16.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: a2995ee828f65687ac5b1e71a2ab1e0c + sha256: c7a964811ba49c545236f7d6c2486b2ed493931660048a06fe94ecc851dd0b82 + manager: conda + name: threadpoolctl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2 + version: 3.1.0 +- category: main + dependencies: + python: '!=3.0,!=3.1,!=3.2,!=3.3,!=3.4' + hash: + md5: 1ca02aaf78d9c70d9a81a3bed5752022 + sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc + manager: conda + name: wheel + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 + version: 0.37.1 +- category: main + dependencies: + icu: '>=70.1,<71.0a0' + libcurl: '>=7.85.0,<8.0a0' + libcxx: '>=14.0.4' + hash: + md5: da5951ed1609c4fdd135db32c4c8ef36 + sha256: eadb97d75fb8d375474c31d9f3c622869a2413be5c048d3a830e1e4482d65283 + manager: conda + name: xerces-c + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/xerces-c-3.2.4-h2007e90_1.tar.bz2 + version: 3.2.4 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 0c0e2e24aa2e9ee3dd99c611b1098047 + sha256: 65553bbb7bdfedc1a17abc7cb26df8fb38aa50d9e56aa0eeb64a68a060d5301a + manager: conda + name: xyzservices + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2022.9.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.9.0 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: cd4eb48ebde7de61f92252979aab515c + sha256: 942b80980ae3db52f032720c82c2d4fb3f463b228762fc2d6a2684d6438fcc29 + manager: conda + name: zipp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.10.0-pyhd8ed1ab_0.tar.bz2 + version: 3.10.0 +- category: main + dependencies: + cached_property: '>=1.5.2,<1.5.3.0a0' + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + manager: conda + name: cached-property + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + libffi: '>=3.4,<4.0a0' + pycparser: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 8543a4e2c7718750cb64a2ad5da71c09 + sha256: 2a0da384c9f3d52c1a653f3814d4698c5a8d44c243f6c0dd732e8864d9fdcd5c + manager: conda + name: cffi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py39h131948b_2.tar.bz2 + version: 1.15.1 +- category: main + dependencies: + click: '>=3.0' + python: '' + hash: + md5: 4fd2c6b53934bd7d96d1f3fdaf99b79f + sha256: ddef6e559dde6673ee504b0e29dd814d36e22b6b9b1f519fa856ee268905bf92 + manager: conda + name: click-plugins + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 + version: 1.1.1 +- category: main + dependencies: + click: '>=4.0' + python: <4.0 + hash: + md5: a29b7c141d6b2de4bb67788a5f107734 + sha256: 97bd58f0cfcff56a0bcda101e26f7d936625599325beba3e3a1fa512dd7fc174 + manager: conda + name: cligj + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 + version: 0.7.2 +- category: main + dependencies: + imath: '>=3.1.5,<3.2.0a0' + jpeg: '>=9e,<10a' + jxrlib: '>=1.1,<1.2.0a0' + libcxx: '>=13.0.1' + libpng: '>=1.6.37,<1.7.0a0' + libraw: '>=0.20.2,<0.21.0a0' + libtiff: '>=4.4.0,<5.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openexr: '>=3.1.5,<3.2.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + hash: + md5: 7cd8ca7c7ebbc1c50d7c7920bd405c2b + sha256: 755c5e5226988582c4197f6151e6fa421bef9c21c6ac6c096f2c4e889343328f + manager: conda + name: freeimage + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/freeimage-3.18.0-haafd79f_10.tar.bz2 + version: 3.18.0 +- category: main + dependencies: + jpeg: '>=9e,<10a' + libcxx: '>=13.0.1' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 175b3e78d1743a9fa6dabd80f6902ed5 + sha256: fd13db010cb8d1114e5397d431dd1bf23947236590c6437dea782de26ff67d35 + manager: conda + name: geotiff + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-ha1a2aeb_3.tar.bz2 + version: 1.7.1 +- category: main + dependencies: + gettext: '>=0.19.8.1,<1.0a0' + glib: '>=2.72.1,<3.0a0' + libcxx: '>=14.0.4' + libglib: '>=2.72.1,<3.0a0' + hash: + md5: 478bcf8e21c1c2c5ae0cc5d4f1442418 + sha256: 414b46db36f070d5108110e3f4d2a321e4769e255a08ad55f2f0a11f2b95063d + manager: conda + name: gstreamer + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gstreamer-1.20.3-h1d18e73_2.tar.bz2 + version: 1.20.3 +- category: main + dependencies: + python: '>=3.8' + zipp: '>=0.5' + hash: + md5: ec069c4db6a0ad84107bac5da62819d2 + sha256: cea7928e6949c3ecd15e56ee8fa4e54efa8bb82738b8264e0489847e86e022c8 + manager: conda + name: importlib-metadata + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-5.0.0-pyha770c72_1.tar.bz2 + version: 5.0.0 +- category: main + dependencies: + python: '>=3.6' + setuptools: '' + hash: + md5: 7583652522d71ad78ba536bba06940eb + sha256: 0c21351871df2c0a53168575597dd9c881e2a9fa4c42fe89a9bcd7fab37f462c + manager: conda + name: joblib + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2 + version: 1.2.0 +- category: main + dependencies: + hdf5: '>=1.12.1,<1.12.2.0a0' + libcxx: '>=13.0.1' + hash: + md5: 4425cd34a2591e1f7e4270eafe7f58e0 + sha256: 9512b24809656e9222b05c9f5eba82a48c74b10381cd1358319aca75b29f86dd + manager: conda + name: kealib + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/kealib-1.4.15-h4dab1bc_0.tar.bz2 + version: 1.4.15 +- category: main + dependencies: + libcxx: '>=14.0.4' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 7720e059630e25ab17ab12677e59c615 + sha256: c397173c92ca77678d645bf8ef8064e81b821169db056217963f020acc09d42c + manager: conda + name: kiwisolver + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.4-py39h92daf61_1.tar.bz2 + version: 1.4.4 +- category: main + dependencies: + blosc: '>=1.21.1,<2.0a0' + bzip2: '>=1.0.8,<2.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + libcxx: '>=14.0.4' + libffi: '>=3.4.2,<3.5.0a0' + libpng: '>=1.6.37,<1.7.0a0' + openmpi: '>=4.1.4,<5.0a0' + zeromq: '>=4.3.4,<4.4.0a0' + zfp: '>=0.5.5,<1.0a0' + hash: + md5: 5af2497b7ba84bfd81a9680147197080 + sha256: 7d25f1161004d6ba7362365df612a914ee3069b653110e4a5ebf00c80cf42e83 + manager: conda + name: libadios2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libadios2-2.8.3-mpi_openmpi_hc683535_1.tar.bz2 + version: 2.8.3 +- category: main + dependencies: + libblas: 3.9.0 16_osx64_openblas + hash: + md5: 28592eab0f05bcf9969789e87f754e11 + sha256: 072a214ab1d596b99b985773bdb6f6e5f38774c7f73d70962700e0fc0d77d91f + manager: conda + name: libcblas + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-16_osx64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + curl: '>=7.75.0,<8.0a0' + libcxx: '>=11.1.0' + libxml2: '>=2.9.10,<2.11.0a0' + hash: + md5: 55e0706347eb18f3616808366236bcaa + sha256: 2bd0467dd3aca8167d2dc67913c579b1c6097575fe511e497ce2143c31c57526 + manager: conda + name: libdap4 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libdap4-3.20.6-h3e144a0_2.tar.bz2 + version: 3.20.6 +- category: main + dependencies: + libblas: 3.9.0 16_osx64_openblas + hash: + md5: 406ad426aade5578b90544cc2ed4a79b + sha256: 456a6e8bfc2e97846d9e157b5f51c23e0c4e9c922ccf7b2321be5362c835d35f + manager: conda + name: liblapack + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-16_osx64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + curl: '>=7.82.0,<8.0a0' + hdf4: '>=4.2.15,<4.3.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + jpeg: '>=9e,<10a' + libcxx: '>=11.1.0' + libzip: '>=1.8.0,<2.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + openmpi: '>=4.1.3,<5.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: a3692c1854b081c3dcc3c307d8e31e7b + sha256: fd23e66beb511ff6d6b155a6ced16c326b03ca5cd11c93c62c75c3d4dd4919dd + manager: conda + name: libnetcdf + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.8.1-mpi_openmpi_h6e52f38_2.tar.bz2 + version: 4.8.1 +- category: main + dependencies: + freexl: '>=1.0.6,<2.0a0' + geos: '>=3.11.0,<3.11.1.0a0' + libcxx: '>=14.0.4' + libiconv: '>=1.16,<2.0.0a0' + librttopo: '>=1.1.0,<1.2.0a0' + libsqlite: '>=3.39.2,<4.0a0' + libxml2: '>=2.10.1,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + sqlite: '>=3.39.2,<4.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: bab6917b2c50a4962774c4ca7991e9fa + sha256: a0bf38c937c3f55f8409ec402e0dcb9b569092a7a9900f2bdf39ded9c2640bfc + manager: conda + name: libspatialite + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.0.1-h611af13_19.tar.bz2 + version: 5.0.1 +- category: main + dependencies: + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: eacf08b20f57d25cb1a6f53b199048af + sha256: c8987b20ebeccb619f0450370af399a7e6a8adae4e3e6674172adc396c64a338 + manager: conda + name: loguru + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/loguru-0.6.0-py39h6e9494a_1.tar.bz2 + version: 0.6.0 +- category: main + dependencies: + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: ff153f279e1f29f64d98245b8a042e85 + sha256: 561cae5f3603823655efb688c5c5f71d2283ff84771a84244b0780bb1d4e2f15 + manager: conda + name: markupsafe + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.1-py39ha30fb19_2.tar.bz2 + version: 2.1.1 +- category: main + dependencies: + openmpi: '>=4.1.4,<5.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: f8aa8abab302b457e37b07b0a67f2f88 + sha256: cd6f274a3a71266ac7af2f907b8a654450184bb740901db38f9292d265535daf + manager: conda + name: mpi4py + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mpi4py-3.1.3-py39haa3ebd2_3.tar.bz2 + version: 3.1.3 +- category: main + dependencies: + python: '' + setuptools: '>=17.1' + six: '' + hash: + md5: 31d9e9be500e25ff0050bc9f57a6bcd7 + sha256: bd885bec8b012abf0c5ca5d6225caf0e88e5b2b0af8fa5a4e4d339604d3e9cd1 + manager: conda + name: munch + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + pyparsing: '>=2.0.2,!=3.0.5' + python: '>=3.6' + hash: + md5: 71f1ab2de48613876becddd496371c85 + sha256: 8322a9e93e2e09fbf2103f0d37c9287b7b97387125abadd6db26686084893540 + manager: conda + name: packaging + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/packaging-21.3-pyhd8ed1ab_0.tar.bz2 + version: '21.3' +- category: main + dependencies: + freetype: '>=2.10.4,<3.0a0' + jpeg: '>=9e,<10a' + lcms2: '>=2.12,<3.0a0' + libtiff: '>=4.4.0,<5.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + tk: '>=8.6.12,<8.7.0a0' + hash: + md5: a11a865df865bcb872627ee090aad2df + sha256: 4eef08b109120403133cc38c2f11252a638ac1c5097b50e9be6fff29f1c8f3ca + manager: conda + name: pillow + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pillow-9.2.0-py39h4d560c1_2.tar.bz2 + version: 9.2.0 +- category: main + dependencies: + python: '>=3.7' + setuptools: '' + wheel: '' + hash: + md5: 6f4c6de9fed2a9bd8043283611b09587 + sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 + manager: conda + name: pip + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 + version: '22.3' +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + cairo: '>=1.16.0,<2.0.0a0' + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.10.4,<3.0a0' + gettext: '>=0.19.8.1,<1.0a0' + jpeg: '>=9e,<10a' + lcms2: '>=2.12,<3.0a0' + libcurl: '>=7.83.1,<8.0a0' + libcxx: '>=13.0.1' + libglib: '>=2.72.1,<3.0a0' + libiconv: '>=1.16,<2.0.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + nss: '>=3.78,<4.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + poppler-data: '' + hash: + md5: a2c8b30d776f653f07b30b07a5fc18a5 + sha256: 9e3ff926f282ec0f1ba96ab18f0a4f2c9e05dcefa886ee297a5b80d9e79f9d3d + manager: conda + name: poppler + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/poppler-22.04.0-h101a726_2.tar.bz2 + version: 22.04.0 +- category: main + dependencies: + certifi: '' + proj: '>=9.0.1,<9.0.2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: a105307aebe0e1829dfb23209f329723 + sha256: 42617588fae2a2e00a576bdc631156934e4691e0a5d39df0f107f5504a17fa52 + manager: conda + name: pyproj + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.4.0-py39h5233054_0.tar.bz2 + version: 3.4.0 +- category: main + dependencies: + python: '>=3.6' + six: '>=1.5' + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + manager: conda + name: python-dateutil + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 + version: 2.8.2 +- category: main + dependencies: + libspatialindex: '>=1.9.3,<1.9.4.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 1043072d13c423eef9a25555652a2cdc + sha256: 9b1101070367b0cd61074e82c7bf38f6d3f22aff0d5f11bbcf76f70bcd82fa06 + manager: conda + name: rtree + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rtree-1.0.1-py39h7d0d40a_1.tar.bz2 + version: 1.0.1 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + curl: '>=7.83.1,<8.0a0' + libcxx: '>=13.0.1' + libzlib: '>=1.2.12,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + openssl: '>=1.1.1o,<1.1.2a' + zlib: '>=1.2.12,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 373138ea3aaaf2ef4e09273c8fd9e78c + sha256: 3263d0af9e3a7a3c5f04f11db1b8995eb6a550a16fd228ee3fc3a47315e2b8aa + manager: conda + name: tiledb + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.9.5-hb1ce2c0_0.tar.bz2 + version: 2.9.5 +- category: main + dependencies: + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 7dd9e2b13d9c522d99c3887796abc91d + sha256: 4c0fbd50851a9a050b0878c1abfa9dc6edea31b4b782ca4859673903244a2e73 + manager: conda + name: unicodedata2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-14.0.0-py39ha30fb19_2.tar.bz2 + version: 14.0.0 +- category: main + dependencies: + cffi: '>=1.0.0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 201d86c1f0b0132954fc72251b09df8a + sha256: 0204c1d5ab773e956233c0a6941f87faf7e9dc3fe30dec0d34f04091309859d8 + manager: conda + name: brotlipy + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/brotlipy-0.7.0-py39ha30fb19_1005.tar.bz2 + version: 0.7.0 +- category: main + dependencies: + cffi: '>=1.12' + openssl: '>=1.1.1q,<1.1.2a' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: d31baa436ca46c3ca5c1b08be1aca47f + sha256: 949c67a8685a049ccd1546c621f724b6ac5d347dd1a416d98d8b1627a7fddd0f + manager: conda + name: cryptography + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-38.0.2-py39h7eb6a14_1.tar.bz2 + version: 38.0.2 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=14.0.4' + liblapack: '>=3.9.0,<4.0a0' + hash: + md5: cc005ee6fedd7dd9326665a1ab938c0b + sha256: 2cbbbaf97a155f0b06dd834d1c0e8103052e478848456c8910143aab22ea8080 + manager: conda + name: fenics-libbasix + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fenics-libbasix-0.5.1-h7396341_0.tar.bz2 + version: 0.5.1 +- category: main + dependencies: + brotli: '' + munkres: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + unicodedata2: '>=14.0.0' + hash: + md5: 13fadbea7e9b327ef560bcedbec854f8 + sha256: f77270ae028869ac50878dcac6c4aafd04e0a8894539696287f82761592ff0a2 + manager: conda + name: fonttools + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.38.0-py39ha30fb19_0.tar.bz2 + version: 4.38.0 +- category: main + dependencies: + gettext: '>=0.19.8.1,<1.0a0' + gstreamer: 1.20.3 h1d18e73_2 + libcxx: '>=14.0.4' + libglib: '>=2.72.1,<3.0a0' + libopus: '>=1.3.1,<2.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: e56e19b6cb2d7afa1407f52db2148bd9 + sha256: da61e8ddcee0215f9063d953c26b0c8520917c94938a8e9c87f9f3d840e1763c + manager: conda + name: gst-plugins-base + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gst-plugins-base-1.20.3-h37e1711_2.tar.bz2 + version: 1.20.3 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcxx: '>=13.0.1' + liblapack: '>=3.9.0,<4.0a0' + openmpi: '>=4.1.4,<5.0a0' + hash: + md5: 1325a74ac2867c51b69df7d2bfdbe348 + sha256: 7b81eb50be3099002b53652b4cfea2c305730a540ce4b762b52e19a6ceff2f2a + manager: conda + name: hypre + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/hypre-2.25.0-mpi_openmpi_ha398ffd_0.tar.bz2 + version: 2.25.0 +- category: main + dependencies: + markupsafe: '>=2.0' + python: '>=3.7' + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + manager: conda + name: jinja2 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + version: 3.1.2 +- category: main + dependencies: + blosc: '>=1.21.1,<2.0a0' + cfitsio: '>=4.1.0,<4.1.1.0a0' + expat: '>=2.4.8,<3.0a0' + freexl: '>=1.0.6,<2.0a0' + geos: '>=3.11.0,<3.11.1.0a0' + geotiff: '>=1.7.1,<1.8.0a0' + giflib: '>=5.2.1,<5.3.0a0' + hdf4: '>=4.2.15,<4.3.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0' + icu: '>=70.1,<71.0a0' + jpeg: '>=9e,<10a' + json-c: '>=0.16,<0.17.0a0' + kealib: '>=1.4.15,<1.5.0a0' + libcxx: '>=13.0.1' + libdap4: '>=3.20.6,<3.20.7.0a0' + libkml: '>=1.3.0,<1.4.0a0' + libnetcdf: '>=4.8.1,<4.8.2.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libpq: '>=14.4,<15.0a0' + libspatialite: '>=5.0.1,<5.1.0a0' + libtiff: '>=4.4.0,<5.0a0' + libwebp-base: '' + libxml2: '>=2.9.14,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openjpeg: '>=2.4.0,<3.0.0a0' + openssl: '>=1.1.1q,<1.1.2a' + pcre: '>=8.45,<9.0a0' + poppler: '>=22.4.0,<22.5.0a0' + postgresql: '' + proj: '>=9.0.1,<9.0.2.0a0' + sqlite: '>=3.39.0,<4.0a0' + tiledb: '>=2.9.5,<2.10.0a0' + xerces-c: '>=3.2.3,<3.3.0a0' + xz: '>=5.2.5,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 165406964a40cc00a14c439aabe5e520 + sha256: ce9415ffb5f82025031beed0e743520f814324a7dcaf3fec3d2d731f6bf1b97b + manager: conda + name: libgdal + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.5.1-h242d4e5_1.tar.bz2 + version: 3.5.1 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=14.0.4' + liblapack: '>=3.9.0,<4.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: b3006af08cbaea37b4d8ee814e643adb + sha256: 990d95a13544867feda9fcab07a681599b0c7e01db88ee70f7ca9a727be4bf44 + manager: conda + name: numpy + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.23.4-py39hdfa1d0c_1.tar.bz2 + version: 1.23.4 +- category: main + dependencies: + libblas: '>=3.8.0,<4.0a0' + libgfortran: 5.* + libgfortran5: '>=9.3.0' + liblapack: '>=3.8.0,<4.0a0' + openmpi: '>=4.1.2,<5.0a0' + hash: + md5: 3b8e64732e964f5caba7bf0f6087b52f + sha256: 8a1994a2483001292afe653c621d2f24b4a7f100bf7a5b45bff1c57c86f20e6d + manager: conda + name: scalapack + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/scalapack-2.2.0-h208a4c8_1.tar.bz2 + version: 2.2.0 +- category: main + dependencies: + asn1crypto: '>=1.5.1' + importlib-metadata: '>=1.0' + python: '>=3.7' + hash: + md5: a55dd716b2f5f2ac858fd301921b6044 + sha256: 80f4816e1ade059fba0a963d3c441af237311a9d1f441eeec8f86398d0f85888 + manager: conda + name: scramp + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/scramp-1.4.2-pyhd8ed1ab_0.tar.bz2 + version: 1.4.2 +- category: main + dependencies: + libblas: '>=3.8.0,<4.0a0' + libcblas: '>=3.8.0,<4.0a0' + libcxx: '>=11.1.0' + liblapack: '>=3.8.0,<4.0a0' + metis: '>=5.1.0,<5.2.0a0' + mpfr: '>=4.1.0,<5.0a0' + tbb: '>=2021.3.0' + hash: + md5: d30185298e8ba70c8bc17121f837730d + sha256: 6aadb010ca234dae7795a61add8a19593f55f80e135b88c52e2e52058d3072ae + manager: conda + name: suitesparse + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/suitesparse-5.10.1-h7aff33d_1.tar.bz2 + version: 5.10.1 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgfortran: 5.* + libgfortran5: '>=9.3.0' + hash: + md5: 415a218b750ec31760d6a530d11dc98d + sha256: f2717e2f4afd90cec2e378a06759f647638daada0b53c0155b6f6696f6d67220 + manager: conda + name: superlu + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/superlu-5.2.2-h1f0f902_0.tar.bz2 + version: 5.2.2 +- category: main + dependencies: + libblas: '>=3.8.0,<4.0a0' + libcxx: '>=11.1.0' + libgfortran: 5.* + libgfortran5: '>=9.3.0' + liblapack: '>=3.8.0,<4.0a0' + llvm-openmp: '>=12.0.1' + metis: '>=5.1.0,<5.2.0a0' + openmpi: '>=4.1.2,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + hash: + md5: 5611106034587b9ed33ab83f4c2fbd95 + sha256: f7a53e9154aa59eef71bf4cbd0b4a8f0e041696393a92de12f538de703c2d949 + manager: conda + name: superlu_dist + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/superlu_dist-7.2.0-hcde7739_0.tar.bz2 + version: 7.2.0 +- category: main + dependencies: + jinja2: '' + python: '>=3' + setuptools: '' + six: '' + hash: + md5: d96c4ccb1e66b1c1f507dd12c226749a + sha256: 0b3368667d51dfe0c9d976c7cf8243cd766ec9013ba86fe81ea7e13d0b113b85 + manager: conda + name: branca + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/branca-0.5.0-pyhd8ed1ab_0.tar.bz2 + version: 0.5.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + numpy: '>=1.16' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: f99163206a16f93e7a6bcb9320c5f2aa + sha256: 178863c7ccf8a78d707e654308d57522c858250c7ca1e06dee58b85aca850077 + manager: conda + name: contourpy + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.0.5-py39h92daf61_1.tar.bz2 + version: 1.0.5 +- category: main + dependencies: + fenics-libbasix: 0.5.1 h7396341_0 + libcxx: '>=14.0.4' + numpy: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 61af149df92545b8c868f7d395331857 + sha256: 73c47c9a42e63250dd422879f96fd86a40c3a78ede93ff3ca9cd2711ee995317 + manager: conda + name: fenics-basix + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fenics-basix-0.5.1-py39h92daf61_0.tar.bz2 + version: 0.5.1 +- category: main + dependencies: + numpy: '' + python: '>=3.7' + hash: + md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c + sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 + manager: conda + name: fenics-ufl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.2.0 +- category: main + dependencies: + hdf5: '>=1.12.1,<1.12.2.0a0' + libcxx: '>=13.0.1' + libgdal: 3.5.1 h242d4e5_1 + numpy: '>=1.19.5,<2.0a0' + openssl: '>=1.1.1q,<1.1.2a' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 169f687b4b69db306ea8f9659b9bda1c + sha256: 168e4377f9fb19fa7ccb1e14f21f89f3296e98e13c1f0def033c56438ac7117e + manager: conda + name: gdal + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.5.1-py39h97b4846_1.tar.bz2 + version: 3.5.1 +- category: main + dependencies: + cached-property: '' + hdf5: '>=1.12.1,<1.12.2.0a0' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 16265ef5ec7205f3b8862ed614f1f514 + sha256: 199df16e2c7a503f05728bf2c4047bb5159e919cbf6ecaa3c14f749b3430de68 + manager: conda + name: h5py + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/h5py-3.7.0-nompi_py39h66c274d_100.tar.bz2 + version: 3.7.0 +- category: main + dependencies: + numpy: '' + pillow: '>=8.3.2' + python: '>=3' + hash: + md5: 9d10b00d27b54836d40759608d558276 + sha256: 0f949184ba2b939c05c817b043566c616ea49e373989859e6cc47fd7aa8ea6fa + manager: conda + name: imageio + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/imageio-2.22.0-pyhfa7a67d_0.tar.bz2 + version: 2.22.0 +- category: main + dependencies: + libblas: '>=3.8.0,<4.0a0' + libgfortran: 5.* + libgfortran5: '>=9.3.0' + liblapack: '>=3.8.0,<4.0a0' + metis: '>=5.1.0,<5.2.0a0' + mumps-include: 5.2.1 h694c41f_11 + openmpi: '>=4.1.2,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + ptscotch: '>=6.0.9,<6.0.10.0a0' + scalapack: '>=2.2.0,<2.3.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + hash: + md5: 2ff8d30ef664e7af4c8947ed8b779267 + sha256: 17dfd809524dc287622689db130b3e4d450aed83489e17c7e85b8bd6804281e0 + manager: conda + name: mumps-mpi + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/mumps-mpi-5.2.1-had0ebf5_11.tar.bz2 + version: 5.2.1 +- category: main + dependencies: + libcxx: '>=14.0.4' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0' + python-dateutil: '>=2.8.1' + python_abi: 3.9.* *_cp39 + pytz: '>=2020.1' + hash: + md5: 4acbce5ece29ee80ac558b6ef54de21f + sha256: eee243707fafdeb63445d4376af30c0e4bfcfcacb162e9f130f171a54768b886 + manager: conda + name: pandas + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/pandas-1.5.1-py39hecff1ad_1.tar.bz2 + version: 1.5.1 +- category: main + dependencies: + importlib-metadata: '>=1.0' + python: '>=3.7' + python-dateutil: '>=2.8.2' + scramp: '>=1.4.1' + hash: + md5: 5736218fec0be5f6f449dc353e8d76fc + sha256: d75c8222a33404dc5bae1c864dfc8106c90775c7f5b0bc8844b8728bd916af6d + manager: conda + name: pg8000 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/pg8000-1.29.2-pyhd8ed1ab_0.tar.bz2 + version: 1.29.2 +- category: main + dependencies: + cryptography: '>=38.0.0,<39' + python: '>=3.6' + hash: + md5: fbfa0a180d48c800f922a10a114a8632 + sha256: 42f04dded77ac2597108378d62b121697d0e982aba7b20a462a7239030563628 + manager: conda + name: pyopenssl + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2 + version: 22.1.0 +- category: main + dependencies: + gst-plugins-base: '>=1.20.3,<1.21.0a0' + gstreamer: '>=1.20.3,<1.21.0a0' + icu: '>=70.1,<71.0a0' + jpeg: '>=9e,<10a' + krb5: '>=1.19.3,<1.20.0a0' + libclang: '>=14.0.6,<15.0a0' + libclang13: '>=14.0.6' + libcxx: '>=13.0.1' + libglib: '>=2.72.1,<3.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libpq: '>=14.5,<15.0a0' + libsqlite: '>=3.39.3,<4.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + mysql-libs: '>=8.0.30,<8.1.0a0' + nspr: '>=4.32,<5.0a0' + nss: '>=3.78,<4.0a0' + openssl: '>=1.1.1q,<1.1.2a' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 755f8e23af412db60c4282f3f41847c1 + sha256: b64fba332df5429480fbd32df5a384647f6c791d8a2f9a2e8572c45c205b89ed + manager: conda + name: qt-main + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/qt-main-5.15.6-he04cef1_0.tar.bz2 + version: 5.15.6 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=14.0.4' + libgfortran: 5.* + libgfortran5: '>=11.3.0' + liblapack: '>=3.9.0,<4.0a0' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: 34fa247f908d6e24474399e8e659a4f3 + sha256: b69723850922d532a5796b200200e9f3677f88628418f42a283aa3b16970a662 + manager: conda + name: scipy + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.9.3-py39h8a15683_0.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + geos: '>=3.11.0,<3.11.1.0a0' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: ae927f1272fb3610f24333b2643924d4 + sha256: c22c0de5baf185089cafdcc51bc73e7f75b4a7a2bbe710db93915d92c0eb9a4b + manager: conda + name: shapely + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/shapely-1.8.5-py39hf33cec1_0.tar.bz2 + version: 1.8.5 +- category: main + dependencies: + numpy: '' + pyparsing: '>=2.1.6' + python: '' + hash: + md5: cb83a3d6ecf73f50117635192414426a + sha256: ebb8f5f9e362f186fb7d732e656f85c969b86309494436eba51cc3b8b96683f7 + manager: conda + name: snuggs + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-py_0.tar.bz2 + version: 1.4.7 +- category: main + dependencies: + cffi: '' + fenics-basix: 0.5.* + fenics-ufl: 2022.2.* + numpy: '' + python: '>=3.7' + setuptools: '' + hash: + md5: 2dcc01a5199492d95b197d7265f5336a + sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 + manager: conda + name: fenics-ffcx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 + version: 0.5.0 +- category: main + dependencies: + attrs: '>=17' + click: '>=4.0' + click-plugins: '>=1.0' + cligj: '>=0.5' + gdal: '' + libcxx: '>=13.0.1' + libgdal: '>=3.5.0,<3.6.0a0' + munch: '' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + setuptools: '' + shapely: '' + six: '>=1.7' + hash: + md5: cff59a1556bf15cd88522aed10d71893 + sha256: e4326f1b60710ee2ca6b1649077ec8778dc2a203fe6f826f3d00d49fff5c80ff + manager: conda + name: fiona + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fiona-1.8.21-py39hc71711c_2.tar.bz2 + version: 1.8.21 +- category: main + dependencies: + packaging: '' + pandas: '>=1.0.5' + pyproj: '>=2.6.1.post1' + python: '>=3.8' + shapely: '>=1.7,<2' + hash: + md5: 9e822916c45fddd55bdecc1f121f8143 + sha256: bd293b8538efc9667e2d3df6f0dfb9994262c7ce57a191e4b70acd2e38be37de + manager: conda + name: geopandas-base + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.0-pyha770c72_0.tar.bz2 + version: 0.12.0 +- category: main + dependencies: + __osx: '>=10.12' + certifi: '>=2020.06.20' + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + freetype: '>=2.12.1,<3.0a0' + kiwisolver: '>=1.0.1' + libcxx: '>=14.0.4' + numpy: '>=1.20.3,<2.0a0' + packaging: '>=20.0' + pillow: '>=6.2.0' + pyparsing: '>=2.2.1' + python: '>=3.9,<3.10.0a0' + python-dateutil: '>=2.7' + python_abi: 3.9.* *_cp39 + hash: + md5: fa12ee1235097391d1d211ee4fec5713 + sha256: 94bad1ac9d35895ffc5b02c02cea3e4393aa63110c5399448bfc8b809d892868 + manager: conda + name: matplotlib-base + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.6.1-py39hb2f573b_0.tar.bz2 + version: 3.6.1 +- category: main + dependencies: + fftw: '* mpi_openmpi_*' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + hypre: '>=2.25.0,<2.25.1.0a0' + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=13.0.1' + libgfortran: 5.* + libgfortran5: '>=9.3.0' + liblapack: '>=3.9.0,<4.0a0' + metis: '>=5.1.0,<5.2.0a0' + mumps-mpi: '>=5.2.1,<5.2.2.0a0' + openmpi: '>=4.1.4,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + ptscotch: '>=6.0.9,<6.0.10.0a0' + scalapack: '>=2.2.0,<2.3.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + suitesparse: '>=5.10.1,<5.10.2.0a0' + superlu: '' + superlu_dist: '>=7.1.1,<8.0a0' + yaml: '>=0.2.5,<0.3.0a0' + hash: + md5: 6f6cf367a968fb9852cfce2e81a70536 + sha256: 3e03445dbda675e68ad5c043aaaf47f87797a0b1b323bfc2d28c921e6806b878 + manager: conda + name: petsc + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/petsc-3.17.3-real_h06b3b6c_100.tar.bz2 + version: 3.17.3 +- category: main + dependencies: + affine: '' + attrs: '' + certifi: '' + click: '>=4' + click-plugins: '' + cligj: '>=0.5' + libcxx: '>=14.0.4' + libgdal: '>=3.5.1,<3.6.0a0' + numpy: '>=1.19.5,<2.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + setuptools: '>=0.9.8' + snuggs: '>=1.4.1' + hash: + md5: 08a991eaf52176d25fa25ff0cab1c7a0 + sha256: 1008a1d27fc10955074e7558c7fe2a7c3299ce8faf56ae703c2fbc569ac88bb4 + manager: conda + name: rasterio + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/rasterio-1.3.2-py39h99650e2_0.tar.bz2 + version: 1.3.2 +- category: main + dependencies: + joblib: '>=1.0.0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=13.0.1' + llvm-openmp: '>=13.0.1' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + scipy: '' + threadpoolctl: '>=2.0.0' + hash: + md5: 1865224710cfc7b5262d270ca84c80c0 + sha256: 16be81e2455a3a0786bf0022392ae21d1ca4f272afbd9bde5091afd386d3ce9e + manager: conda + name: scikit-learn + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.1.2-py39h8031a56_0.tar.bz2 + version: 1.1.2 +- category: main + dependencies: + brotlipy: '>=0.6.0' + certifi: '' + cryptography: '>=1.3.4' + idna: '>=2.0.0' + pyopenssl: '>=0.14' + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: <4.0 + hash: + md5: 0738978569b10669bdef41c671252dd1 + sha256: 57a823b83428156aa2bc18f34159a744657c9bd117a125ca4559b0518a2e4fa2 + manager: conda + name: urllib3 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.11-pyhd8ed1ab_0.tar.bz2 + version: 1.26.11 +- category: main + dependencies: + double-conversion: '>=3.2.0,<3.3.0a0' + eigen: '' + expat: '>=2.4.8,<3.0a0' + ffmpeg: '>=4.4.2,<5.0a0' + freetype: '>=2.10.4,<3.0a0' + gl2ps: '>=1.4.2,<1.4.3.0a0' + glew: '>=2.1.0,<2.2.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0' + jpeg: '>=9e,<10a' + jsoncpp: '>=1.9.5,<1.9.6.0a0' + libcxx: '>=13.0.1' + libnetcdf: '>=4.8.1,<4.8.2.0a0' + libogg: '>=1.3.4,<1.4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libtheora: '>=1.1.1,<1.2.0a0' + libtiff: '>=4.4.0,<5.0a0' + libxml2: '>=2.9.14,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + loguru: '' + lz4-c: '>=1.9.3,<1.10.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + pugixml: '>=1.11.4,<1.12.0a0' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + qt-main: '>=5.15.4,<5.16.0a0' + sqlite: '>=3.39.0,<4.0a0' + tbb: '>=2021.5.0' + tbb-devel: '' + tk: '>=8.6.12,<8.7.0a0' + utfcpp: '' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 6f1325261bac6a47d817a05d531848b2 + sha256: 3cd33acb555c054c37c5630dddc7d16482e90cc336055f361c37128966765ef5 + manager: conda + name: vtk + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/vtk-9.1.0-qt_py39he514436_211.tar.bz2 + version: 9.1.0 +- category: main + dependencies: + jmespath: '>=0.7.1,<2.0.0' + python: '>=3.7' + python-dateutil: '>=2.1,<3.0.0' + urllib3: '>=1.25.4,<1.27' + hash: + md5: 3435405683a6e8952d941638a8c24fc0 + sha256: 1e6c560869547e57c0dbf9c59cc8f7412dd6ec56cf529c1a1cc520355dfb8dc9 + manager: conda + name: botocore + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.1-pyhd8ed1ab_0.tar.bz2 + version: 1.28.1 +- category: main + dependencies: + networkx: '' + numpy: '>=1.3' + pandas: '>=1.0' + python: '>=3.5' + scikit-learn: '' + scipy: '>=1.0' + hash: + md5: 908bbfb54da154042c5cbda77b37a3d1 + sha256: 1435305fb0a127b3154e76c0836d44526eeb93e80bd37596128d7ad8fb196d97 + manager: conda + name: mapclassify + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.4.3-pyhd8ed1ab_0.tar.bz2 + version: 2.4.3 +- category: main + dependencies: + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freeimage: '>=3.18.0,<3.19.0a0' + freetype: '>=2.12.1,<3.0a0' + libcxx: '>=14.0.4' + rapidjson: '' + vtk: '>=9.1.0,<9.1.1.0a0' + hash: + md5: 88ec23b0c47e9521c37cb5f35564c60f + sha256: e9fb89ed268cc6486c7699d930558b268326f41e667d96482e1c1c016f094368 + manager: conda + name: occt + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/occt-7.6.3-h423c721_0.tar.bz2 + version: 7.6.3 +- category: main + dependencies: + libgfortran: 5.* + libgfortran5: '>=9.3.0' + numpy: '>=1.19.5,<2.0a0' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + hash: + md5: a0aa245c149a70e3911faa97901f4a96 + sha256: 2afbc49905a2cb48cee818dee1475688f74eebe3c7da6dd0bb5b159ef107bdd1 + manager: conda + name: petsc4py + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/petsc4py-3.17.3-real_hc4d252e_101.tar.bz2 + version: 3.17.3 +- category: main + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<3' + idna: '>=2.5,<4' + python: '>=3.7,<4.0' + urllib3: '>=1.21.1,<1.27' + hash: + md5: 089382ee0e2dc2eae33a04cc3c2bddb0 + sha256: b45d0da6774c8231ab4fef0427b3050e7c54c84dfe453143dd4010999c89e050 + manager: conda + name: requests + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.28.1-pyhd8ed1ab_1.tar.bz2 + version: 2.28.1 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=13.0.1' + libgfortran: 5.* + libgfortran5: '>=9.3.0' + liblapack: '>=3.9.0,<4.0a0' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + suitesparse: '>=5.10.1,<5.10.2.0a0' + hash: + md5: 5c9f4eaeb6398a3f850a28f219f64ba5 + sha256: 19f43d941f9badcb476341762df1d412188f97d137066a11cb65e2937a60e901 + manager: conda + name: slepc + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/slepc-3.17.1-real_h875aea7_102.tar.bz2 + version: 3.17.1 +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + fenics-libbasix: '>=0.5.1,<0.5.2.0a0' + fenics-ufcx: '>=0.5.0,<0.5.1.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + libadios2: '>=2.8.3,<2.8.4.0a0 mpi_openmpi_*' + libcxx: '>=14.0.4' + openmpi: '>=4.1.4,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + ptscotch: '>=6.0.9,<6.0.10.0a0' + pugixml: '>=1.11.4,<1.12.0a0' + slepc: '>=3.17.1,<3.18.0a0 real_*' + xtensor: '>=0.24.3,<0.25.0a0' + hash: + md5: a8092e4d48202077f132452f46a7929c + sha256: 58f659bb87b17ab40f5f3f351631ffe7ce99c0891202d098276b2a67ac96398f + manager: conda + name: fenics-libdolfinx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fenics-libdolfinx-0.5.2-h6e592bb_100.tar.bz2 + version: 0.5.2 +- category: main + dependencies: + branca: '>=0.3.0' + jinja2: '>=2.9' + numpy: '' + python: '>=3.6' + requests: '' + hash: + md5: c69e368f97d9939621daebe97dbbd82d + sha256: 73c5aad58d59df4f4991e7f3bceda5938831c3ee74221899a14f7eaefb8af5de + manager: conda + name: folium + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/folium-0.13.0-pyhd8ed1ab_0.tar.bz2 + version: 0.13.0 +- category: main + dependencies: + fltk: '>=1.3.8,<1.4.0a0' + gmp: '>=6.2.1,<7.0a0' + jpeg: '>=9e,<10a' + libblas: '>=3.9.0,<4.0a0' + libcxx: '>=13.0.1' + liblapack: '>=3.9.0,<4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + occt: '>=7.6.2,<7.7.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: fc0f651af729cd020fda4434d898af3b + sha256: f6e239cedf62df83b69eb43f2c127a0f6af04989e7006a7792933e44805e3ab9 + manager: conda + name: gmsh + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/gmsh-4.10.5-he204d90_0.tar.bz2 + version: 4.10.5 +- category: main + dependencies: + botocore: '>=1.12.36,<2.0a.0' + python: '>=3.7' + hash: + md5: 900e74d8547fbea3af028937df28ed77 + sha256: 0e459ed32b00e96b62c2ab7e2dba0135c73fd980120fe1a7bd49901f2d50760f + manager: conda + name: s3transfer + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/s3transfer-0.6.0-pyhd8ed1ab_0.tar.bz2 + version: 0.6.0 +- category: main + dependencies: + numpy: '>=1.19.5,<2.0a0' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + petsc4py: 3.17.* + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + slepc: '>=3.17.1,<3.18.0a0 real_*' + hash: + md5: 75217aebc7ef5e9d0bbc254fd62e4bd5 + sha256: 59e5f6d915ec01218f0ec078529362a70fc7d2c0f4aa9eb78a2eb571d9e5fc73 + manager: conda + name: slepc4py + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/slepc4py-3.17.1-real_h4852f07_103.tar.bz2 + version: 3.17.1 +- category: main + dependencies: + botocore: '>=1.28.1,<1.29.0' + jmespath: '>=0.7.1,<2.0.0' + python: '>=3.7' + s3transfer: '>=0.6.0,<0.7.0' + hash: + md5: 5512a9ee1a05c62d7ec13f432bd7014c + sha256: 9779dd07bb1c1f700a32c9ea771552ee6de8e5d83f84df63d1f37870101a70ac + manager: conda + name: boto3 + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.1-pyhd8ed1ab_0.tar.bz2 + version: 1.25.1 +- category: main + dependencies: + cffi: '' + fenics-basix: 0.5.* + fenics-ffcx: 0.5.* + fenics-libdolfinx: 0.5.2 h6e592bb_100 + fenics-ufl: 2022.2.* + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + libcxx: '>=14.0.4' + mpi4py: '' + numpy: '' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + petsc4py: '' + python: '>=3.9,<3.10.0a0' + python_abi: 3.9.* *_cp39 + slepc: '>=3.17.1,<3.18.0a0 real_*' + slepc4py: '' + hash: + md5: ae7d7987bcb2bb43273af4efc20358fd + sha256: 66e279d647eac4fe89669d250610e26fb57da3bd6301ad421751dc0b744b38eb + manager: conda + name: fenics-dolfinx + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/osx-64/fenics-dolfinx-0.5.2-py39ha5ace08_100.tar.bz2 + version: 0.5.2 +- category: main + dependencies: + fiona: '' + folium: '' + geopandas-base: 0.12.0 pyha770c72_0 + mapclassify: '>=2.4.0' + matplotlib-base: '' + python: '>=3.8' + rtree: '' + xyzservices: '' + hash: + md5: 79d4a86d08b1ad415dcb24b3241593cf + sha256: 3dbba0065f1344e62795b085a1ca1369c8909a0432bb669bf7955630e95cfb5f + manager: conda + name: geopandas + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.0-pyhd8ed1ab_0.tar.bz2 + version: 0.12.0 +- category: main + dependencies: + gmsh: '>=4.10.5,<4.10.6.0a0' + numpy: '' + python: '' + hash: + md5: 6c18c6322743fa7d5daaf4735c1905af + sha256: 57c72e59283d4dcdbedb0b0f86bb4d66dded5bb16be975411817b5c7a3f9a811 + manager: conda + name: python-gmsh + optional: false + platform: osx-64 + url: https://conda.anaconda.org/conda-forge/noarch/python-gmsh-4.10.5-h57928b3_0.tar.bz2 + version: 4.10.5 +- category: main + dependencies: {} + hash: + sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 + manager: pip + name: async-timeout + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl + version: 3.0.1 +- category: main + dependencies: {} + hash: + sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c + manager: pip + name: attrs + optional: false + platform: osx-64 + source: null + url: https://files.hosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl + version: 22.1.0 +- category: main + dependencies: {} + hash: + sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 + manager: pip + name: cachetools + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl + version: 4.2.4 +- category: main + dependencies: {} + hash: + sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 + manager: pip + name: certifi + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl + version: 2022.9.24 +- category: main + dependencies: {} + hash: + sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 + manager: pip + name: chardet + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl + version: 3.0.4 +- category: main + dependencies: {} + hash: + sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f + manager: pip + name: charset-normalizer + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl + version: 2.1.1 +- category: main + dependencies: {} + hash: + sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 + manager: pip + name: colorama + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl + version: 0.4.6 +- category: main + dependencies: {} + hash: + sha256: 5e076ae46ac0e4e28eb43932c5c0b8e1b8751bb7d1b0d239f18230aed7cca3bf + manager: pip + name: crc32c + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/cc/15/274a5a979c9172f427018242f6618b9e725e59482dc455e15142f50b1e42/crc32c-2.3-cp39-cp39-macosx_10_9_x86_64.whl + version: '2.3' +- category: main + dependencies: {} + hash: + sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 + manager: pip + name: cycler + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl + version: 0.11.0 +- category: main + dependencies: {} + hash: + sha256: 9daf7bd8ef32d695927a285e38914dd8722567320622b472776e4d47b3a235b2 + manager: pip + name: deflate + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/51/53/bbd1e9e5daab89509515ffa6a6a97b4568a00ea8c9efa8a376389ca60dcf/deflate-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl + version: 0.3.0 +- category: main + dependencies: {} + hash: + sha256: a07ffd2351b8c678dfc4a856a3005f8067aea51d6ba6c700796a4d9e280f39f0 + manager: pip + name: dill + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/be/e3/a84bf2e561beed15813080d693b4b27573262433fced9c1d1fea59e60553/dill-0.3.6-py3-none-any.whl + version: 0.3.6 +- category: main + dependencies: {} + hash: + sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff + manager: pip + name: distro + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl + version: 1.8.0 +- category: main + dependencies: {} + hash: + sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d + manager: pip + name: future + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz + version: 0.18.2 +- category: main + dependencies: {} + hash: + sha256: 759ce4851a4bb15ecabae28f4d2e18983c244eddd767f560165563bf9aefbc8d + manager: pip + name: google-crc32c + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/a6/ba/9826da8b2e4778e963339aed1cff6dfd7efe938011d8eff804b32f5e3e12/google_crc32c-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl + version: 1.5.0 +- category: main + dependencies: {} + hash: + sha256: f5e09dc5c6e1796969fd4b775ea1417d70e49a5df29aaa8e5d10675d9e11872c + manager: pip + name: greenlet + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ea/37/e54ce453b298e890f59dba3db32461579328a07d5b65e3eabf80f971c099/greenlet-1.1.3.post0.tar.gz + version: 1.1.3.post0 +- category: main + dependencies: {} + hash: + sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 + manager: pip + name: idna + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl + version: '3.4' +- dependencies: {} + hash: + sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f + manager: pip + name: jmespath + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl + version: 0.10.0 +- category: main + dependencies: {} + hash: + sha256: f0a71d85ecdd570ded8ac3d1c0f480842f49a40beb423bb8014539a9f32a5897 + manager: pip + name: kiwisolver + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/f2/e2/7ed98290955aa83598d0e5672d88bbc193192cdcd23d3a9ed7e536cf8e55/kiwisolver-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl + version: 1.4.4 +- category: main + dependencies: {} + hash: + sha256: 6701bf8a5d03a43375909ac91b6980aea74b0f5402fbe9428fc3f6edf5d9677e + manager: pip + name: multidict + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/c7/9f/ce1b2b964f573e09eda8a6e98b33972a7915304dd3737da4ae663e2f5057/multidict-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl + version: 6.0.2 +- category: main + dependencies: {} + hash: + sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 + manager: pip + name: nest-asyncio + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl + version: 1.5.6 +- category: main + dependencies: {} + hash: + sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d + manager: pip + name: networkx + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl + version: 2.8.7 +- category: main + dependencies: {} + hash: + sha256: f850489d89ea12be486492e68f0fd63e402fa28e426d4f0b5fc1eec0595e6109 + manager: pip + name: orjson + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/5c/cb/35dd5663b90d60e04c07b520f464f3c150f027c024f45441a9eb4c863c21/orjson-3.8.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl + version: 3.8.1 +- category: main + dependencies: {} + hash: + sha256: 75e636fd3e0fb872693f23ccb8a5ff2cd578801251f3a4f6854c6a5d437d3c04 + manager: pip + name: pillow + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/8c/92/2975b464d9926dc667020ed1abfa6276e68c3571dcb77e43347e15ee9eed/Pillow-9.2.0.tar.gz + version: 9.2.0 +- category: main + dependencies: {} + hash: + sha256: 56fe2f099ecd8a557b8948082504492de90e8598c34733c9b1fdeca8f7b6de61 + manager: pip + name: pox + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/7d/ee/93fb2380de1458a50c44b8aa65c6f111df1103c3d4fbd74b70f51745e081/pox-0.3.2-py3-none-any.whl + version: 0.3.2 +- category: main + dependencies: {} + hash: + sha256: f355d2caeed8bd7c9e4a860c471f31f7e66d1ada2791ab5458ea7dca15a51e41 + manager: pip + name: ppft + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/0f/c1/dd740386023b1472d2635db9d8f7107024d9931cc8c01b37b48a85eb3811/ppft-1.7.6.6-py3-none-any.whl + version: 1.7.6.6 +- category: main + dependencies: {} + hash: + sha256: b5ab0b8918c136345ff045d4b3d5f719b505b7c8af45092d7f45e304f55e50a1 + manager: pip + name: protobuf + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/74/44/ec74b5c0dcc9725545212d13216fe7550377b1600cac9b2bbb21cbd625d7/protobuf-4.21.9-cp37-abi3-macosx_10_9_universal2.whl + version: 4.21.9 +- category: main + dependencies: {} + hash: + sha256: 25382c7d174c679ce6927c16b6fbb68b10e56ee44b1acb40671e02d29f2fce7c + manager: pip + name: psycopg2-binary + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/fa/88/e44363a9c68abfab4f596850636b4be496d479845877a507a73a651ef623/psycopg2_binary-2.9.5-cp39-cp39-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl + version: 2.9.5 +- category: main + dependencies: {} + hash: + sha256: 39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d + manager: pip + name: pyasn1 + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/62/1e/a94a8d635fa3ce4cfc7f506003548d0a2447ae76fd5ca53932970fe3053f/pyasn1-0.4.8-py2.py3-none-any.whl + version: 0.4.8 +- category: main + dependencies: {} + hash: + sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc + manager: pip + name: pyparsing + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl + version: 3.0.9 +- category: main + dependencies: {} + hash: + sha256: f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5 + manager: pip + name: pyrsistent + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/15/fa/64ed4c29d36df26906f03a1fb360056e3cbc063b00446f3663252bdd175a/pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl + version: 0.18.1 +- category: main + dependencies: {} + hash: + sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 + manager: pip + name: pytz + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl + version: '2022.5' +- category: main + dependencies: {} + hash: + sha256: 055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b + manager: pip + name: pyyaml + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/f5/6f/b8b4515346af7c33d3b07cd8ca8ea0700ca72e8d7a750b2b87ac0268ca4e/PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl + version: '6.0' +- category: main + dependencies: {} + hash: + sha256: 5bc0667c1eb8f83a3752b71b9c4ba55ef7c7058ae57022dd9b29065186a113d9 + manager: pip + name: ruamel.yaml.clib + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/f5/ac/dda2d23d652bc2f6db886496ad632957af82e33d22c1088cc0ac87c496b5/ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl + version: 0.2.7 +- category: main + dependencies: {} + hash: + sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 + manager: pip + name: semver + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl + version: 2.13.0 +- category: main + dependencies: {} + hash: + sha256: 160a5e2743ab16b1fe201766ec3aed9587a19dcce534953736d4af7a77216628 + manager: pip + name: simpleitk + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ab/51/69c16ab13bdae1901c197e9b572944dc2a3e9fc1f14ae2cecd201bf0472a/SimpleITK-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl + version: 2.2.0 +- category: main + dependencies: {} + hash: + sha256: 12133863178a8080a3dccbf5cb2edfab0001bc41e5d6d2446af2a1131105adfe + manager: pip + name: simplejson + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/99/11/70df62feed6f29148f4bcfe1403c73a0c74afbb159392a340b382325478f/simplejson-3.17.6-cp39-cp39-macosx_10_9_x86_64.whl + version: 3.17.6 +- category: main + dependencies: {} + hash: + sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 + manager: pip + name: six + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl + version: 1.16.0 +- category: main + dependencies: {} + hash: + sha256: 35525cd47f82830069f0d6b73f7eb83bc5b73ee2fff0437952cedf98b27653ac + manager: pip + name: tenacity + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/a5/94/933ce16d18450ccf518a6da5bd51418611e8776b992070b9f40b2f9cedff/tenacity-8.1.0-py3-none-any.whl + version: 8.1.0 +- category: main + dependencies: {} + hash: + sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e + manager: pip + name: typing-extensions + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl + version: 4.4.0 +- dependencies: {} + hash: + sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 + manager: pip + name: urllib3 + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl + version: 1.26.12 +- category: main + dependencies: {} + hash: + sha256: 2666401939cdaa5f4e0c08cf7f20c9b21423b95e88f4675b1443973bdb080c42 + manager: pip + name: zope.event + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/9e/85/b45408c64f3b888976f1d5b37eed8d746b8d5729a66a49ec846fda27d371/zope.event-4.5.0-py2.py3-none-any.whl + version: 4.5.0 +- category: main + dependencies: {} + hash: + sha256: 700ebf9662cf8df70e2f0cb4988e078c53f65ee3eefd5c9d80cf988c4175c8e3 + manager: pip + name: zope.interface + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/62/ba/e517891d44208f2a6cf493109dfff59134bb922a9c8bd2a896da7d9a82a1/zope.interface-5.5.0.tar.gz + version: 5.5.0 +- category: main + dependencies: + greenlet: '>=1.1.3,<2.0' + zope.event: '*' + zope.interface: '*' + hash: + sha256: df3042349c9a4460eeaec8d0e56d737cb183eed055e75a6af9dbda94aaddaf4d + manager: pip + name: gevent + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/97/5e/be2ac96fe2e6d5ad40c0ed5cf83c07ce6a74b9a5a1f0422e8b5d9225c865/gevent-22.10.1.tar.gz + version: 22.10.1 +- category: main + dependencies: + numpy: '>=1.7.1' + hash: + sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 + manager: pip + name: glymur + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz + version: 0.8.19 +- category: main + dependencies: + google-crc32c: '>=1.0,<2.0dev' + hash: + sha256: 2aa004c16d295c8f6c33b2b4788ba59d366677c0a25ae7382436cb30f776deaa + manager: pip + name: google-resumable-media + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/4f/8e/5f42ac809ad8bccca7060132a274d714fbf4e2ef8f2424ef2301a2dbc4fb/google_resumable_media-2.4.0-py2.py3-none-any.whl + version: 2.4.0 +- category: main + dependencies: + protobuf: '>=3.15.0,<5.0.0dev' + hash: + sha256: 8eb2cbc91b69feaf23e32452a7ae60e791e09967d81d4fcc7fc388182d1bd394 + manager: pip + name: googleapis-common-protos + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e2/fd/d9efa2085bd762fba3a637eb3e36d76d72eb6e083d170aeaca65a75f1f9c/googleapis_common_protos-1.56.4-py2.py3-none-any.whl + version: 1.56.4 +- dependencies: + numpy: '*' + pillow: '>=8.3.2' + hash: + sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 + manager: pip + name: imageio + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl + version: 2.22.2 +- category: main + dependencies: + attrs: '>=17.4.0' + pyrsistent: '>=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2' + hash: + sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 + manager: pip + name: jsonschema + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl + version: 4.16.0 +- category: main + dependencies: + dill: '>=0.3.6' + hash: + sha256: 63cee628b74a2c0631ef15da5534c8aedbc10c38910b9c8b18dcd327528d1ec7 + manager: pip + name: multiprocess + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/6a/f4/fbeb03ef7abdda54db4a6a75c971b88ab73d724ff09e3275cc1e99f1c946/multiprocess-0.70.14-py39-none-any.whl + version: 0.70.14 +- category: main + dependencies: + pyparsing: '>=2.0.2,<3.0.5 || >3.0.5' + hash: + sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 + manager: pip + name: packaging + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl + version: '21.3' +- category: main + dependencies: + numpy: '>=1.4' + six: '*' + hash: + sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 + manager: pip + name: patsy + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl + version: 0.5.3 +- category: main + dependencies: + pyasn1: '>=0.4.6,<0.5.0' + hash: + sha256: a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74 + manager: pip + name: pyasn1-modules + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/95/de/214830a981892a3e286c3794f41ae67a4495df1108c3da8a9f62159b9a9d/pyasn1_modules-0.2.8-py2.py3-none-any.whl + version: 0.2.8 +- category: main + dependencies: + numpy: '>=1.11.1' + hash: + sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 + manager: pip + name: pynrrd + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl + version: 0.4.3 +- category: main + dependencies: + six: '>=1.5' + hash: + sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 + manager: pip + name: python-dateutil + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl + version: 2.8.2 +- category: main + dependencies: + numpy: '>=1.17.3' + hash: + sha256: 6437af3ddf083118c26d8f97ab43b0724b956c9f958e9ea788659f6a2834ba93 + manager: pip + name: pywavelets + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/6e/d4/008dceeb95fafcf141f39393bdfc10921d0b62a325c2794ac533195a1eb3/PyWavelets-1.4.1.tar.gz + version: 1.4.1 +- category: main + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<3' + idna: '>=2.5,<4' + urllib3: '>=1.21.1,<1.27' + hash: + sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 + manager: pip + name: requests + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl + version: 2.28.1 +- category: main + dependencies: + pyasn1: '>=0.1.3' + hash: + sha256: 90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7 + manager: pip + name: rsa + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl + version: '4.9' +- category: main + dependencies: + ruamel.yaml.clib: '>=0.2.6' + hash: + sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 + manager: pip + name: ruamel.yaml + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl + version: 0.17.21 +- category: main + dependencies: + numpy: '>=1.18.5,<1.26.0' + hash: + sha256: d644a64e174c16cb4b2e41dfea6af722053e83d066da7343f333a54dae9bc31c + manager: pip + name: scipy + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/59/ef/d54d17c36b46a9b8f6e1d4bf039b7f7ad236504cfb13cf1872caec9cbeaa/scipy-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl + version: 1.9.3 +- category: main + dependencies: + greenlet: '!=0.4.17' + hash: + sha256: 177e41914c476ed1e1b77fd05966ea88c094053e17a85303c4ce007f88eff363 + manager: pip + name: sqlalchemy + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e4/56/8ea85eaab7d93b58f9c213ad8fc5882838189a29fc8cc401d80710a12969/SQLAlchemy-1.4.42.tar.gz + version: 1.4.42 +- category: main + dependencies: + colorama: '*' + hash: + sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 + manager: pip + name: tqdm + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl + version: 4.64.1 +- category: main + dependencies: + idna: '>=2.0' + multidict: '>=4.0' + hash: + sha256: 6afb336e23a793cd3b6476c30f030a0d4c7539cd81649683b5e0c1b0ab0bf350 + manager: pip + name: yarl + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/c8/a7/1a92f1049acd7f8fe122b5c78bd135b1a606414109b6cd43de696a5c4dfc/yarl-1.8.1-cp39-cp39-macosx_10_9_x86_64.whl + version: 1.8.1 +- category: main + dependencies: + cffi: '>=1.11' + hash: + sha256: eea18c1e7442f2aa9aff1bb84550dbb6a1f711faf6e48e7319de8f2b2e923c2a + manager: pip + name: zstandard + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/65/3b/6d734313eec4ead72ff80b7c04831589cdd9078ea0bd2a8e52746a362b1e/zstandard-0.18.0-cp39-cp39-macosx_10_9_x86_64.whl + version: 0.18.0 +- category: main + dependencies: + async-timeout: '>=3.0,<4.0' + attrs: '>=17.3.0' + chardet: '>=2.0,<4.0' + multidict: '>=4.5,<7.0' + typing-extensions: '>=3.6.5' + yarl: '>=1.0,<2.0' + hash: + sha256: 5d84ecc73141d0a0d61ece0742bb7ff5751b0657dab8405f899d3ceb104cc7de + manager: pip + name: aiohttp + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/7a/95/eb60aaad7943e18c9d091de93c9b0b5ed40aa67c7d5e3c5ee9b36f100a38/aiohttp-3.7.4.tar.gz + version: 3.7.4 +- dependencies: + jmespath: '>=0.7.1,<1.0.0' + python-dateutil: '>=2.1,<3.0.0' + urllib3: '>=1.25.4,<1.27' + hash: + sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b + manager: pip + name: botocore + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl + version: 1.20.112 +- category: main + dependencies: + cachetools: '>=2.0.0,<6.0' + pyasn1-modules: '>=0.2.1' + rsa: '>=3.1.4,<5' + six: '>=1.9.0' + hash: + sha256: 99510e664155f1a3c0396a076b5deb6367c52ea04d280152c85ac7f51f50eb42 + manager: pip + name: google-auth + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/98/dc/ab7e2156ec6a33c66d85986178abc7944f40804d7558cd544ccb114af6a9/google_auth-2.13.0-py2.py3-none-any.whl + version: 2.13.0 +- category: main + dependencies: + packaging: '>=17.0' + hash: + sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 + manager: pip + name: marshmallow + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl + version: 3.18.0 +- dependencies: + cycler: '>=0.10' + kiwisolver: '>=1.0.1' + numpy: '>=1.16' + pillow: '>=6.2.0' + pyparsing: '>=2.2.1' + python-dateutil: '>=2.7' + hash: + sha256: b26535b9de85326e6958cdef720ecd10bcf74a3f4371bf9a7e5b2e659c17e153 + manager: pip + name: matplotlib + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/69/0e/e0a6b89396946f84f9bd7bcf270b260f5108e9f2659db9f03168047046ae/matplotlib-3.4.2-cp39-cp39-macosx_10_9_x86_64.whl + version: 3.4.2 +- category: main + dependencies: + numpy: '>=1.13.3' + packaging: '*' + hash: + sha256: 5c660dea90935b963db9529d963493c40fabb2343684b52083fb86b2547d60c8 + manager: pip + name: numexpr + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/02/f8/a33223787909f5ec010ec5b6a1c9bb5c8ac5dfcefc21c1e744492f9551a8/numexpr-2.8.3-cp39-cp39-macosx_10_9_x86_64.whl + version: 2.8.3 +- category: main + dependencies: + numpy: '>=1.20.3' + python-dateutil: '>=2.8.1' + pytz: '>=2020.1' + hash: + sha256: e675f8fe9aa6c418dc8d3aac0087b5294c1a4527f1eacf9fe5ea671685285454 + manager: pip + name: pandas + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/12/51/dd4bd8d43f7f21086b99fed461e91eaf4fdac48dea3028f4b3aef87dffdc/pandas-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl + version: 1.5.1 +- category: main + dependencies: + dill: '>=0.3.6' + multiprocess: '>=0.70.14' + pox: '>=0.3.2' + ppft: '>=1.7.6.6' + hash: + sha256: b1f5a79b1c79a594330d451832642ee5bb61dd77dc75ba9e5c72087c77e8994c + manager: pip + name: pathos + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/0a/97/56b396300e5832bb95abe28944c1b8a0098ce179dce131a26e5d0e6daa05/pathos-0.3.0-py3-none-any.whl + version: 0.3.0 +- category: main + dependencies: + requests: '>=2.0.1,<3.0.0' + hash: + sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 + manager: pip + name: requests-toolbelt + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl + version: 0.10.1 +- category: main + dependencies: + distro: '*' + packaging: '*' + hash: + sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 + manager: pip + name: scikit-build + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl + version: 0.15.0 +- category: main + dependencies: + marshmallow: '>=3.0.0,<4.0' + numpy: '*' + pyyaml: '*' + hash: + sha256: ba1d04538be52cdd2b9460ea7495094aa3f1215429955ebbfc50381d4f062bac + manager: pip + name: argschema + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/eb/6b/312bcd2367aa474193afa852a3a5b75d6f706a2787a2e35537c277038c3e/argschema-3.0.1.tar.gz + version: 3.0.1 +- category: main + dependencies: + google-auth: '>=1.25.0,<3.0dev' + googleapis-common-protos: '>=1.56.2,<2.0dev' + protobuf: '>=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 + || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 + || >4.21.5,<5.0.0dev' + requests: '>=2.18.0,<3.0.0dev' + hash: + sha256: 34f24bd1d5f72a8c4519773d99ca6bf080a6c4e041b4e9f024fe230191dda62e + manager: pip + name: google-api-core + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/15/fb/b641357b0f8fc540c766bc8f66048de0398d0a3e0cad7c4a08e2fbee733a/google_api_core-2.10.2-py3-none-any.whl + version: 2.10.2 +- category: main + dependencies: + h5py: '>=2.10,<4' + jsonschema: '>=2.6.0,<5' + numpy: '>=1.16,<1.24' + pandas: '>=1.0.5,<2' + ruamel.yaml: '>=0.16,<1' + scipy: '>=1.1,<2' + hash: + sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d + manager: pip + name: hdmf + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl + version: 3.4.6 +- dependencies: + botocore: '>=1.12.36,<2.0a.0' + hash: + sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 + manager: pip + name: s3transfer + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl + version: 0.3.7 +- category: main + dependencies: + imageio: '>=2.3.0' + matplotlib: '>=2.0.0,<3.0.0 || >3.0.0' + networkx: '>=2.0' + pillow: '>=4.3.0' + pywavelets: '>=0.4.0' + scipy: '>=0.19.0' + hash: + sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c + manager: pip + name: scikit-image + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz + version: 0.16.2 +- category: main + dependencies: + matplotlib: '>=3.1,<3.6.1 || >3.6.1' + numpy: '>=1.17' + pandas: '>=0.25' + hash: + sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 + manager: pip + name: seaborn + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl + version: 0.12.1 +- category: main + dependencies: + numpy: '>=1.17' + pandas: '>=0.25' + patsy: '>=0.5.2' + scipy: '>=1.3' + hash: + sha256: f2efc02011b7240a9e851acd76ab81150a07d35c97021cb0517887539a328f8a + manager: pip + name: statsmodels + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/9e/5e/4a2ade283411d1f46d6f8dd5fe951b9152062d55a20750cd5d4b556322bf/statsmodels-0.13.0.tar.gz + version: 0.13.0 +- category: main + dependencies: + numexpr: '>=2.6.2' + numpy: '>=1.9.3' + hash: + sha256: 49a972b8a7c27a8a173aeb05f67acb45fe608b64cd8e9fa667c0962a60b71b49 + manager: pip + name: tables + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/2b/32/847ee3f521aae6a0be380d923a736162d698586f444df1ac24b98c65025c/tables-3.6.1.tar.gz + version: 3.6.1 +- category: main + dependencies: + numpy: '>=1.15' + pandas: '>=0.25' + hash: + sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d + manager: pip + name: xarray + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl + version: 0.15.1 +- dependencies: + botocore: '>=1.20.21,<1.21.0' + jmespath: '>=0.7.1,<1.0.0' + s3transfer: '>=0.3.0,<0.4.0' + hash: + sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 + manager: pip + name: boto3 + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl + version: 1.17.21 +- category: main + dependencies: + h5py: '>=2.10' + numpy: '*' + pandas: '*' + pynrrd: '*' + scikit-image: '*' + scipy: '*' + tqdm: '*' + hash: + sha256: a15a09811616d7a7b7516a7da18be45d392d2c6c21664068d2a06394eff3baf6 + manager: pip + name: ccf-streamlines + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/07/d2/6dfeaf0b58fdbb9a0e150cb3814b81d193644a19774c74af1a87d268110a/ccf_streamlines-1.0.0-py3-none-any.whl + version: 1.0.0 +- category: main + dependencies: + google-api-core: '>=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev' + google-auth: '>=1.25.0,<3.0dev' + hash: + sha256: 8417acf6466be2fa85123441696c4badda48db314c607cf1e5d543fa8bdc22fe + manager: pip + name: google-cloud-core + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/ac/4d/bae84e736080ed465a6b02e9f447c89c60c00fcdade2eb6911fecf3f46aa/google_cloud_core-2.3.2-py2.py3-none-any.whl + version: 2.3.2 +- category: main + dependencies: + h5py: '>=2.10,<4' + hdmf: '>=3.4.2,<4' + numpy: '>=1.16,<1.24' + pandas: '>=1.1.5,<2' + python-dateutil: '>=2.7.3,<3' + hash: + sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f + manager: pip + name: pynwb + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl + version: 2.2.0 +- category: main + dependencies: + google-api-core: '>=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev' + google-auth: '>=1.25.0,<3.0dev' + google-cloud-core: '>=2.3.0,<3.0dev' + google-resumable-media: '>=2.3.2' + requests: '>=2.18.0,<3.0.0dev' + hash: + sha256: 19a26c66c317ce542cea0830b7e787e8dac2588b6bfa4d3fd3b871ba16305ab0 + manager: pip + name: google-cloud-storage + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/b3/bf/ae046b7499480a2d84f3385a5abe198122eae338ad224c7f2b6a8a4b48ff/google_cloud_storage-2.5.0-py2.py3-none-any.whl + version: 2.5.0 +- category: main + dependencies: + pynwb: '>=1.1.2' + hash: + sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af + manager: pip + name: ndx-events + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl + version: 0.2.0 +- category: main + dependencies: + aiohttp: 3.7.4 + argschema: '>=3.0.1,<4.0.0' + boto3: 1.17.21 + cachetools: '>=4.2.1,<5.0.0' + future: '>=0.14.3,<1.0.0' + glymur: 0.8.19 + h5py: '*' + hdmf: '>=2.5.8' + jinja2: '>=3.0.0' + matplotlib: '>=1.4.3,<3.4.3' + ndx-events: <=0.2.0 + nest-asyncio: '*' + numpy: '*' + pandas: '>=1.1.5' + psycopg2-binary: '>=2.7,<3.0.0' + pynrrd: '>=0.2.1,<1.0.0' + pynwb: '*' + requests: <3.0.0 + requests-toolbelt: <1.0.0 + scikit-build: <1.0.0 + scikit-image: '>=0.14.0,<0.17.0' + scipy: '>=1.4.0,<2.0.0' + seaborn: <1.0.0 + semver: '*' + simpleitk: '>=2.0.2,<3.0.0' + simplejson: '>=3.10.0,<4.0.0' + six: '>=1.9.0,<2.0.0' + sqlalchemy: '*' + statsmodels: <=0.13.0 + tables: '>=3.6.0,<3.7.0' + tqdm: '>=4.27' + xarray: <0.16.0 + hash: + sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 + manager: pip + name: allensdk + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl + version: 2.13.6 +- category: main + dependencies: + boto3: '>=1.4.7' + brotli: '*' + chardet: '>=3.0.4' + click: '*' + crc32c: '*' + deflate: '>=0.2.0' + gevent: '*' + google-auth: '>=1.10.0' + google-cloud-core: '>=1.1.0' + google-cloud-storage: '>=1.31.1' + google-crc32c: '>=1.0.0' + orjson: '*' + pathos: '*' + protobuf: '>=3.3.0' + requests: '>=2.22.0' + rsa: '>=4.7.2' + six: '>=1.14.0' + tenacity: '>=4.10.0' + tqdm: '*' + urllib3: '>=1.26.3' + zstandard: '*' + hash: + sha256: 9b4805426d58b64fe26bc2e6c582fce298c4e43b0a4ccd690869369bdb959dda + manager: pip + name: cloud-files + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/a8/f4/00a2a184867ff465fb15fb4970f51ec0a49e8cccf7fad1255d40ecc5a4f3/cloud_files-4.11.0-py3-none-any.whl + version: 4.11.0 +- category: main + dependencies: {} + hash: + md5: fc76ace7b94fb1f694988ab1b14dd248 + sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 + manager: conda + name: bzip2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 + version: 1.0.8 +- category: main + dependencies: {} + hash: + md5: 5dd04dad345af4f1e8f3f0d5afc03b67 + sha256: 44036b92da867c9a3fdf51a5c1837e3c6fbc2be83536361df628fbcdcd7fdf59 + manager: conda + name: c-ares + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.18.1-h3422bc3_0.tar.bz2 + version: 1.18.1 +- category: main + dependencies: {} + hash: + md5: 5911a50099ce7b46f7f32e90dd4adffa + sha256: de523ce2a7037367f5f6f2389ca064bc22c2cb88f1ed808c44bd3f57c70bf733 + manager: conda + name: ca-certificates + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2022.9.24-h4653dfc_0.tar.bz2 + version: 2022.9.24 +- category: main + dependencies: {} + hash: + md5: a0a531df6bf6663607dc77722ae522d6 + sha256: 4b08e9a8324640c73c07c6166a9aefce69f5204c0cfaad79e45a39d9a6c8f05f + manager: conda + name: fenics-ufcx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.5.0-hb871ab6_1.tar.bz2 + version: 0.5.0 +- category: main + dependencies: {} + hash: + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + manager: conda + name: font-ttf-dejavu-sans-mono + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + version: '2.37' +- category: main + dependencies: {} + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + manager: conda + name: font-ttf-inconsolata + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + version: '3.000' +- category: main + dependencies: {} + hash: + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + manager: conda + name: font-ttf-source-code-pro + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + version: '2.038' +- category: main + dependencies: {} + hash: + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + manager: conda + name: font-ttf-ubuntu + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + version: '0.83' +- category: main + dependencies: {} + hash: + md5: f9e99c94afe28d7558a5dd106fef0936 + sha256: c151bc1c59d986bc89802715d57783e8536e5450eb65a1ee389c0ff2139724ee + manager: conda + name: freexl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/freexl-1.0.6-h1a8c8d9_1.tar.bz2 + version: 1.0.6 +- category: main + dependencies: {} + hash: + md5: fcfaa10e989b15ef30f93b6329c35add + sha256: ba44b3a0cf5cf2acafa81cfb9fc5c8ead64e688893bc186e1818d9890dad6b7d + manager: conda + name: giflib + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h27ca646_2.tar.bz2 + version: 5.2.1 +- category: main + dependencies: {} + hash: + md5: ad1e3584bfef678a4ca6f9daa6695159 + sha256: 1175af9e55cb8a8bf24102c9aa9233f2a8d83845f2c01773c2a364a4c889464b + manager: conda + name: jpeg + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jpeg-9e-he4db4b2_2.tar.bz2 + version: 9e +- category: main + dependencies: {} + hash: + md5: 0091e6c603f58202c026d3e63fc93f39 + sha256: 3031e38c69df65fb1486b283212db90038fd59e10ecba56cbd3efa2a86b41b5b + manager: conda + name: json-c + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/json-c-0.16-hc449e50_0.tar.bz2 + version: '0.16' +- category: main + dependencies: {} + hash: + md5: 71447f8ae7d2a2fd0f16424983cf31e6 + sha256: 448795a54fe49a15cdef110b2d094799d933f36c2d8f5bc1e1c192b3617efe5f + manager: conda + name: jxrlib + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jxrlib-1.1-h27ca646_2.tar.bz2 + version: '1.1' +- category: main + dependencies: {} + hash: + md5: bff0e851d66725f78dc2fd8b032ddb7e + sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c + manager: conda + name: lame + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 + version: '3.100' +- category: main + dependencies: {} + hash: + md5: 84eb0c3c995a865079080d092e4a3c06 + sha256: 1bd70570aee08fe0274dd46879d0b4c36c662c18d3afc03c41c375c84658af88 + manager: conda + name: libbrotlicommon + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: {} + hash: + md5: 716c4b72ff3808ade65748fd9b49cc44 + sha256: 8e199c6956fad3abcbe9a1468c6219d9e95b64b898e9cf009b82d669c3bfdaf6 + manager: conda + name: libcxx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-14.0.6-h2692d47_0.tar.bz2 + version: 14.0.6 +- category: main + dependencies: {} + hash: + md5: cb64374f9f7ad86b6194e294c56e06a5 + sha256: 2adff34121246f809250417a65036cacd3b7929929df51feda9ff90d5156750b + manager: conda + name: libdeflate + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.14-h1a8c8d9_0.tar.bz2 + version: '1.14' +- category: main + dependencies: {} + hash: + md5: 566dbf70fe79eacdb3c3d3d195a27f55 + sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c + manager: conda + name: libev + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 + version: '4.33' +- category: main + dependencies: {} + hash: + md5: 086914b672be056eb70fd4285b6783b6 + sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + manager: conda + name: libffi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + version: 3.4.2 +- category: main + dependencies: {} + hash: + md5: 686f9c755574aa221f29fbcf36a67265 + sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec + manager: conda + name: libiconv + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2 + version: '1.17' +- category: main + dependencies: {} + hash: + md5: fb211883ad5716e398b974a9cde9d78e + sha256: 916bbd5b7da6c922d6a16dd7d396b8a4e862edaca045671692e35add58aace64 + manager: conda + name: libogg + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.4-h27ca646_1.tar.bz2 + version: 1.3.4 +- category: main + dependencies: {} + hash: + md5: 90859688dbca4735b74c02af14c4c793 + sha256: 1d95fe5e5e6a0700669aab454b2a32f97289c9ed8d1f7667c2ba98327a6f05bc + manager: conda + name: libsodium + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 + version: 1.0.18 +- category: main + dependencies: {} + hash: + md5: c35bc17c31579789c76739486fc6d27a + sha256: 912e96644ea22b49921c71c9c94bcdd2b6463e9313da895c2fcee298a8c0e44c + manager: conda + name: libtasn1 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libtasn1-4.19.0-h1a8c8d9_0.tar.bz2 + version: 4.19.0 +- category: main + dependencies: {} + hash: + md5: d88e77a4861e20bd96bde6628ee7a5ae + sha256: a1afe12ab199f82f339eae83405d293d197f2485d45346a709703bc7e8299949 + manager: conda + name: libunistring + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libunistring-0.9.10-h3422bc3_0.tar.bz2 + version: 0.9.10 +- category: main + dependencies: {} + hash: + md5: 23f90b9f28c585445c52184a3388d01d + sha256: 43e9557894d07ddbba76fdacf321ca84f2c6da5a649a32a6a91f23e2761d1df4 + manager: conda + name: libwebp-base + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h57fd34a_0.tar.bz2 + version: 1.2.4 +- category: main + dependencies: {} + hash: + md5: 780852dc54c4c07e64b276a97f89c162 + sha256: a1bf4a1c107838fea4570a7f1750306d65d84fcf2913d4e0d30b4db785e8f223 + manager: conda + name: libzlib + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2 + version: 1.2.13 +- category: main + dependencies: {} + hash: + md5: e30710831eca6b207a037c465d98777c + sha256: 00d0eedaa20ad8d83fbebe121a67eaa293dcc6699d06857af675c3f7d9716317 + manager: conda + name: llvm-openmp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-14.0.4-hd125106_0.tar.bz2 + version: 14.0.4 +- category: main + dependencies: {} + hash: + md5: f77d9809ca7c6b8482a66685d4cf55c9 + sha256: 8ae894d76a3ae38da97f1af7503695274ee4bf6d5c0bb0b06dcdcdb4993c46d5 + manager: conda + name: metis + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/metis-5.1.0-h9f76cd9_1006.tar.bz2 + version: 5.1.0 +- category: main + dependencies: {} + hash: + md5: cb269c879b1ac5e5ab62a3c17528c40f + sha256: 7051ff40ca1208c06db24f8bf5cf72ee7ad03891e7fd365c3f7a4190938ae83a + manager: conda + name: mpi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mpi-1.0-openmpi.tar.bz2 + version: '1.0' +- category: main + dependencies: {} + hash: + md5: ceec43d6d4207011f4f1edc0e683fc3a + sha256: c3f5bd27bdaad52f12354c03f56db151b5a991dd67ff99184f0f12195d563c6e + manager: conda + name: mumps-include + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mumps-include-5.2.1-hce30654_11.tar.bz2 + version: 5.2.1 +- category: main + dependencies: {} + hash: + md5: db86e5a978380a13f5559f97afdfe99d + sha256: 50ba7c13dd7d05569e7caa98a13a3684450f8547b4965a1e86b54e2f1240debe + manager: conda + name: ncurses + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.3-h07bb92c_1.tar.bz2 + version: '6.3' +- category: main + dependencies: {} + hash: + md5: 0da3266889a3febbb9840a7a89d29da9 + sha256: 712b4e836060ab26772c343a05d243e7486bb44a39bb5b35f3371e72d7b38a24 + manager: conda + name: nettle + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/nettle-3.8.1-h63371fa_1.tar.bz2 + version: 3.8.1 +- category: main + dependencies: {} + hash: + md5: 0cedfe37c9aee28f5e926a870965466a + sha256: a3bde72b3f9344ede1a189612d997f775b503a8eec61fb9720d18551f3c71080 + manager: conda + name: pixman + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2 + version: 0.40.0 +- category: main + dependencies: {} + hash: + md5: abc27381c4f005da588cffa1f76403ee + sha256: ccd2857627c0f6e903a917b99e60860c0a2b7dc553a32cf7c1ab55f0af99ec11 + manager: conda + name: poppler-data + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.11-hd8ed1ab_0.tar.bz2 + version: 0.4.11 +- category: main + dependencies: {} + hash: + md5: d3f26c6494d4105d4ecb85203d687102 + sha256: 9da9e6f5d51dff6ad2e4ee0874791437ba952e0a6249942273f0fedfd07ea826 + manager: conda + name: pthread-stubs + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2 + version: '0.4' +- category: main + dependencies: {} + hash: + md5: 63230345c025e2bc119a55a2c0ae30bb + sha256: 4f6691ccda5d67f5c8cdd9763f6eca71cfedf6fae2b2aae7bb1a186f076b231f + manager: conda + name: tzcode + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2022e-h1a8c8d9_0.tar.bz2 + version: 2022e +- category: main + dependencies: {} + hash: + md5: b6bd89cf71494c41a181cac13cc5a8ea + sha256: fec882af11d68ec22084a84b5bc831f5d3f6bae9cbe2462d88b6e875e26454b4 + manager: conda + name: tzdata + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022e-h191b570_0.tar.bz2 + version: 2022e +- category: main + dependencies: {} + hash: + md5: 09f9151a4a99572a5f3f2d061a6a2fd8 + sha256: 85f33f6ca05002c9ad7851dbb28af6ee7352910b6eca917a0b4ae4ef2fad6900 + manager: conda + name: utfcpp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/utfcpp-3.2.1-hce30654_0.tar.bz2 + version: 3.2.1 +- category: main + dependencies: {} + hash: + md5: b1f6dccde5d3a1f911960b6e567113ff + sha256: debdf60bbcfa6a60201b12a1d53f36736821db281a28223a09e0685edcce105a + manager: conda + name: x264 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2 + version: 1!164.3095 +- category: main + dependencies: {} + hash: + md5: 7fb248f07fec67488000ebd466a5b73d + sha256: 265d5ba719fe05d227a6ccd897b1f53bacf6bc9c9c728dcbf917b2d47e9dfac6 + manager: conda + name: xorg-kbproto + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-kbproto-1.0.7-h27ca646_1002.tar.bz2 + version: 1.0.7 +- category: main + dependencies: {} + hash: + md5: 30ab3bdd79d5dede2e06c22218f30818 + sha256: 899de1ac499817b44e8d2586c62e95eee71932f21fa501164685df73bd44d9af + manager: conda + name: xorg-libice + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libice-1.0.10-h27ca646_0.tar.bz2 + version: 1.0.10 +- category: main + dependencies: {} + hash: + md5: e2fa1f5a28cf0ce02516baf910be132e + sha256: a5810ad0fae16b72ee7cbb22e009c926dd1cd95d82885896e7f20fe911f7195f + manager: conda + name: xorg-libxau + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.9-h27ca646_0.tar.bz2 + version: 1.0.9 +- category: main + dependencies: {} + hash: + md5: 6738b13f7fadc18725965abdd4129c36 + sha256: d9a2fb4762779994718832f05a7d62ab2dcf6103a312235267628b5187ce88f7 + manager: conda + name: xorg-libxdmcp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2 + version: 1.1.3 +- category: main + dependencies: {} + hash: + md5: 8a4acd93b6a763c3379196e317167186 + sha256: bf7315c5442ea04d9632e94b2d659dae076717ab4cf9fcb35c2bdcf5effa9111 + manager: conda + name: xorg-renderproto + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-renderproto-0.11.1-h27ca646_1002.tar.bz2 + version: 0.11.1 +- category: main + dependencies: {} + hash: + md5: 53d3accb288705d1f2de938a225cc8db + sha256: f8d8f9e1a12fe9497f02cb1f5bd39ab7e0e61bee8a9b58070549174762cb70db + manager: conda + name: xorg-xextproto + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-xextproto-7.3.0-h27ca646_1002.tar.bz2 + version: 7.3.0 +- category: main + dependencies: {} + hash: + md5: fca1f15eca1f9fd68a5f2433cb8e5a3f + sha256: 0ab583e40897d4f3ad414d768371839508bb2a46c5c99e2e5f504aedce5ecf84 + manager: conda + name: xorg-xproto + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-xproto-7.0.31-h27ca646_1007.tar.bz2 + version: 7.0.31 +- category: main + dependencies: {} + hash: + md5: 39c6b54e94014701dd157f4f576ed211 + sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec + manager: conda + name: xz + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + version: 5.2.6 +- category: main + dependencies: {} + hash: + md5: 4bb3f014845110883a3c5ee811fd84b4 + sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 + manager: conda + name: yaml + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + version: 0.2.5 +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: afb32d2a714ef2c3268508fdc85fc7c4 + sha256: 3a238c39da0bb29da396ae9f88655a1a6b05926055539ecc29cef9533671d71c + manager: conda + name: aom + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.5.0-h7ea286d_0.tar.bz2 + version: 3.5.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: d98c960e8287a6ae05d2278742efc453 + sha256: 34f59a0b089317a6560577460e7257eaf086a02536ef2d2632b9841cf78ebb6c + manager: conda + name: double-conversion + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/double-conversion-3.2.0-hb7217d7_1.tar.bz2 + version: 3.2.0 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 1ab85356c868376768df642be47c808a + sha256: ddb1e2afe34a8463087f41edff2a1b0f12dd3f586164cccf740276fd3f324e0f + manager: conda + name: eigen + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/eigen-3.4.0-hc021e02_0.tar.bz2 + version: 3.4.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: 88defcdff52e5c8b7238239bc53c02d2 + sha256: 40fc37240efae74d1b2775b701e2b49153bc1163fa72bbc072cdd6389df45b07 + manager: conda + name: expat + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_0.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + font-ttf-dejavu-sans-mono: '' + font-ttf-inconsolata: '' + font-ttf-source-code-pro: '' + font-ttf-ubuntu: '' + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + manager: conda + name: fonts-conda-forge + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + version: '1' +- category: main + dependencies: + libcxx: '>=13.0.1' + hash: + md5: 35a7d2bc4412ba26c13146ba8cae0311 + sha256: 2512132482b78924b9ca02deded92fde060ab6a0361b0833e7ba77e29d8d4719 + manager: conda + name: geos + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.11.0-h9a09cb3_0.tar.bz2 + version: 3.11.0 +- category: main + dependencies: + libiconv: '>=1.17,<2.0a0' + hash: + md5: 63d2ff6fddfa74e5458488fd311bf635 + sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e + manager: conda + name: gettext + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 + version: 0.21.1 +- category: main + dependencies: + libcxx: '>=11.0.0' + hash: + md5: ec67d4b810ad567618722a2772e9755c + sha256: 582991e48b1000eea38a1df68309652a92c1af62fa96f78e6659c799d28d00cf + manager: conda + name: glew + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2 + version: 2.1.0 +- category: main + dependencies: + libcxx: '>=11.0.0' + hash: + md5: f8140773b6ca51bf32feec9b4290a8c5 + sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 + manager: conda + name: gmp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2 + version: 6.2.1 +- category: main + dependencies: + jpeg: '>=9e,<10a' + libcxx: '>=13.0.1' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: e9ed98d067f897278f9759b05ecd492e + sha256: 5f86cee1720b85fefb0eca6a5089285f92606d55962c1ce81fd35428369b6bd6 + manager: conda + name: hdf4 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-hc683e77_4.tar.bz2 + version: 4.2.15 +- category: main + dependencies: + libcxx: '>=12.0.1' + hash: + md5: 5fbe318a6be2e8d0f9b0b0c730a62748 + sha256: 303b558da70167473e4fa5f9a12c547217061c930c13ca3f982d55922437606e + manager: conda + name: icu + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-70.1-h6b3803e_0.tar.bz2 + version: '70.1' +- category: main + dependencies: + libcxx: '>=12.0.1' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: fa047399eaa285eec87fbd2e4891aa4c + sha256: 39bd02a7939e9dce5dd6c59d0907dbf25765853c545297bb13c070e4e9ddcbc6 + manager: conda + name: imath + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/imath-3.1.5-h1280f1d_0.tar.bz2 + version: 3.1.5 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 966a50d309996126cb180f017df56a70 + sha256: 97098f9535af3ea1aab6ae867235020977c3bb80587ab2230886ba3f7216af83 + manager: conda + name: jsoncpp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jsoncpp-1.9.5-hc021e02_1.tar.bz2 + version: 1.9.5 +- category: main + dependencies: + libcxx: '>=13.0.1' + hash: + md5: de462d5aacda3b30721b512c5da4e742 + sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 + manager: conda + name: lerc + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 + version: 4.0.0 +- category: main + dependencies: + libbrotlicommon: 1.0.9 h1a8c8d9_8 + hash: + md5: 640ea7b788cdd0420409bd8479f023f9 + sha256: a0a52941eb59369a8b33b01b41bcf56efd313850c583f4814e2db59448439880 + manager: conda + name: libbrotlidec + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + libbrotlicommon: 1.0.9 h1a8c8d9_8 + hash: + md5: 572907b78be867937c258421bc0807a8 + sha256: c5f65062cd41d5f5fd93eadd276885efbe7ce7c9346155852d4f5b619f8a166f + manager: conda + name: libbrotlienc + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + ncurses: '>=6.2,<7.0.0a0' + hash: + md5: 30e4362988a2623e9eb34337b83e01f9 + sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca + manager: conda + name: libedit + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + version: 3.1.20191231 +- category: main + dependencies: + llvm-openmp: '>=8.0.0' + hash: + md5: bdbfca46b391ce865243312e92b0b231 + sha256: 0d0cd386b6c3628b2144b90a8936f51dc931dd739a0dce62876d87e5cd751926 + manager: conda + name: libgfortran5 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-11.3.0-hdaf2cc0_25.tar.bz2 + version: 11.3.0 +- category: main + dependencies: + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: bbeca54ede0a21405ae1ba6026d78d33 + sha256: 7ddb168b4064618fb06976b2fd51ebcadfb52f478a1eb7c6d6d6442470a6099b + manager: conda + name: libpng + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.38-h76d750c_0.tar.bz2 + version: 1.6.38 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 311816a2511df4bceeeebe7c06af63e7 + sha256: a1af21a778e7a04fd866ccd617a4503ebe8abeb4e5fe718cd219be4d6e70e778 + manager: conda + name: libspatialindex + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libspatialindex-1.9.3-hbdafb3b_4.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: bc447b47695c18c7e018fe47f24c16a0 + sha256: fac23992c2943210443c2128db5ca8bba979687d5dc4158ced93dfb42d956228 + manager: conda + name: libsqlite + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.39.4-h76d750c_0.tar.bz2 + version: 3.39.4 +- category: main + dependencies: + libcxx: '>=11.0.0' + libogg: '>=1.3.4,<1.4.0a0' + hash: + md5: 92a1a88d1a1d468c19d9e1659ac8d3df + sha256: 60457217e20d8b24a8390c81338a8fa69c8656b440c067cd82f802a09da93cb9 + manager: conda + name: libvorbis + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2 + version: 1.3.7 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 459be650ba4f9660cc959c090125cb32 + sha256: 888d0985a7355bb52e71c415be35d0c170a52f35e4c319732bbebb5369787d68 + manager: conda + name: libvpx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libvpx-1.11.0-hc470f4d_3.tar.bz2 + version: 1.11.0 +- category: main + dependencies: + pthread-stubs: '' + xorg-libxau: '' + xorg-libxdmcp: '' + hash: + md5: 6b3457a192f8091cb413962f65740ac4 + sha256: a89b1e46650c01a8791c201c108d6d49a0a5604dd24ddb18902057bbd90f7dbb + manager: conda + name: libxcb + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2 + version: '1.13' +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 074b9beb2e563515c0dd46229b18d521 + sha256: 00941ba659571e2618c86f1463e9ad91d87e5ca36c807d633d527328ebc9803f + manager: conda + name: lz4-c + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.3-hbdafb3b_1.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: fee217fbe39b9279f9e8d24bad9620b6 + sha256: be09ce6b5b6106ecf41d8375f4ea8c163be94d4e5f2a1e841b44f5b6fa3bbd96 + manager: conda + name: nspr + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.32-hbdafb3b_1.tar.bz2 + version: '4.32' +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: c2c59843b6ee4e2ed0adc628ef1bd0f9 + sha256: b60d14a14cdbe1bd9a81d597f55f2c71b90a74a4727ca8c81a7870f3746edb10 + manager: conda + name: openh264 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openh264-2.3.1-hb7217d7_1.tar.bz2 + version: 2.3.1 +- category: main + dependencies: + ca-certificates: '' + hash: + md5: 09d751ab09102f7a27761110d07cab1a + sha256: c8e0af58b9d8671dbf88994203e0f0c39ba42e66f8f9c840c62ae341ea503a9f + manager: conda + name: openssl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.0.5-h03a7124_2.tar.bz2 + version: 3.0.5 +- category: main + dependencies: + libffi: '>=3.4.2,<3.5.0a0' + libtasn1: '>=4.18.0,<5.0a0' + hash: + md5: 8f111d56c8c7c1895bde91a942c43d93 + sha256: 3e124859307956f9f390f39c74b9700be4843eaaf56891c4b09da75b1bd5b57f + manager: conda + name: p11-kit + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/p11-kit-0.24.1-h29577a5_0.tar.bz2 + version: 0.24.1 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 500758f2515ae07c640d255c11afc19f + sha256: f2e0c4ae3306f94851eea2318c6d26d24f8e191e329ddd256a612cd1184c5737 + manager: conda + name: pcre + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre-8.45-hbdafb3b_0.tar.bz2 + version: '8.45' +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 8ce1c1c5574bc3566d07280880c514e4 + sha256: e71fc2d62b2dd72d907df1d40d2bebc7fb9c3db83c179387c1853f992bb15545 + manager: conda + name: pcre2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.37-hcf5f1cc_1.tar.bz2 + version: '10.37' +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: ae2de80a2e9bb244c8e728ad8e431e35 + sha256: d772be20bbd2cdaaa6da9a2562dadd2e8dc06614c494616eae7c57045600be14 + manager: conda + name: pugixml + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pugixml-1.11.4-hbdafb3b_0.tar.bz2 + version: 1.11.4 +- category: main + dependencies: + libcxx: '>=11.0.0.rc1' + hash: + md5: 63037b108ef3594d41f8c4fb8c46c065 + sha256: eb241d96f7552195de841d5c9b04f0e0be6a187c17e2ba581d896a90fc6df030 + manager: conda + name: rapidjson + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rapidjson-1.1.0-hc88da5d_1002.tar.bz2 + version: 1.1.0 +- category: main + dependencies: + ncurses: '>=6.3,<7.0a0' + hash: + md5: dc790f296d94409efb3f22af84ee968d + sha256: 2d2a65fcdd91361ea7e40c03eeec18ff7a453c32f6589a1fce64717f6cd7c7b6 + manager: conda + name: readline + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.1.2-h46ed386_0.tar.bz2 + version: 8.1.2 +- category: main + dependencies: + libcxx: '>=13.0.1' + hash: + md5: e19070f6d27330d35b1849ab2b74c1d3 + sha256: 3652e81fe9b2551190142d49e21ede0f25110e07f5a0d01ddfe5fd42afd79caa + manager: conda + name: snappy + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.9-h39c3846_1.tar.bz2 + version: 1.1.9 +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: 4edbee98240e5a671c8a8ec2575bbb59 + sha256: 547bdcc3d0097fb343283bbf690e470a1693b08a7f40eceb7bca9e3f0eaa8c5b + manager: conda + name: svt-av1 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-1.3.0-h7ea286d_0.tar.bz2 + version: 1.3.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + hash: + md5: 2a64c75859fae1aa6523e4eeba8d7487 + sha256: f5d7de169ffc634b854b0cb4f63fdc4b943b6dd6e76ea7396c87773b2070053b + manager: conda + name: tbb + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-2021.6.0-hffc8910_1.tar.bz2 + version: 2021.6.0 +- category: main + dependencies: + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 2cb3d18eac154109107f093860bd545f + sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 + manager: conda + name: tk + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2 + version: 8.6.12 +- category: main + dependencies: + libcxx: '>=12.0.1' + hash: + md5: b1f7f2780feffe310b068c021e8ff9b2 + sha256: 2fed6987dba7dee07bd9adc1a6f8e6c699efb851431bcb6ebad7de196e87841d + manager: conda + name: x265 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2 + version: '3.5' +- category: main + dependencies: + xorg-xextproto: '' + hash: + md5: 955c2da60dee6f523b9874fdb4f0906e + sha256: df2e16b0fdd1bfe2a6bfc58cdccbe0de02260ff815ed5e9eb59433295e200ff3 + manager: conda + name: xorg-fixesproto + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-fixesproto-5.0-h3422bc3_1002.tar.bz2 + version: '5.0' +- category: main + dependencies: + xorg-libice: 1.0.* + hash: + md5: d36c39a9fa320ced930d41148351a5cd + sha256: 6210356957d6fcce53a2b84d05a5ba14033998e6039c9ec76f3a53cedf20a06f + manager: conda + name: xorg-libsm + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libsm-1.2.3-h27ca646_1000.tar.bz2 + version: 1.2.3 +- category: main + dependencies: + libcxx: '>=11.1.0' + hash: + md5: 47181387a02df900fedf6c05e41c10d8 + sha256: 52c6a6e16f88a78b262691ffa3da0d88400fc6c9031bb2e078d98f27523e4369 + manager: conda + name: xtl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xtl-0.7.4-hc021e02_0.tar.bz2 + version: 0.7.4 +- category: main + dependencies: + libcxx: '>=11.1.0' + libsodium: '>=1.0.18,<1.0.19.0a0' + hash: + md5: 49132c08da6545dc68351ff8b659ac8e + sha256: b65624f1e22f095223462807c417001b18ec17ef33a3c7065a19429f4cd42193 + manager: conda + name: zeromq + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.4-hbdafb3b_1.tar.bz2 + version: 4.3.4 +- category: main + dependencies: + libcxx: '>=11.1.0' + llvm-openmp: '>=11.1.0' + hash: + md5: f9a794ccbdab88d0ca11d85b0b200b55 + sha256: ddf86af5220d4780b9860a4e62f72ecbd9d76155b02d2b706f67107048758954 + manager: conda + name: zfp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zfp-0.5.5-hcfdfaf5_8.tar.bz2 + version: 0.5.5 +- category: main + dependencies: + libzlib: 1.2.13 h03a7124_4 + hash: + md5: 34161cff4e29cc45e536abf2f13fd6b4 + sha256: 48844c5c911e2ef69571d6ef7181dcfae68df296c546662cb54057baed008949 + manager: conda + name: zlib + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h03a7124_4.tar.bz2 + version: 1.2.13 +- category: main + dependencies: + libcxx: '>=13.0.1' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: dc4c74dcc759058dae2324144f336de0 + sha256: 664f7e6b46cfff6022504eafdef26b4ac0f388fa39d682e64da9a7dbfe33fb56 + manager: conda + name: zstd + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-h8128057_4.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + libcxx: '>=13.0.1' + libzlib: '>=1.2.11,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + snappy: '>=1.1.9,<2.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 809c13415c8c034ba12a4e490f77efae + sha256: 4fc6aa467fb8a09a3a5a9cb72d6edfe145f38c27e861a3a26cfb361f6bc977d6 + manager: conda + name: blosc + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.1-hd414afc_3.tar.bz2 + version: 1.21.1 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + icu: '>=70.1,<71.0a0' + libcxx: '>=12.0.1' + libzlib: '>=1.2.11,<1.3.0a0' + xz: '>=5.2.5,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 98e303e926ba602d75b7494f0f4e66ac + sha256: 2151e6512b621e0e92ca5c0d9c32ae4be4f9a7cd69e34ae46b69dfaf1720fbee + manager: conda + name: boost-cpp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/boost-cpp-1.74.0-h1cb353e_8.tar.bz2 + version: 1.74.0 +- category: main + dependencies: + libbrotlidec: 1.0.9 h1a8c8d9_8 + libbrotlienc: 1.0.9 h1a8c8d9_8 + hash: + md5: f212620a4f3606ff8f800b8b1077415a + sha256: d171637710bffc322b35198c03bcfd3d04f454433e845138e5120729f8941996 + manager: conda + name: brotli-bin + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + fonts-conda-forge: '' + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + manager: conda + name: fonts-conda-ecosystem + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + version: '1' +- category: main + dependencies: + libpng: '>=1.6.37,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 297b55e1c4cef588bb93b32be0fb3729 + sha256: 07d4f0e1e652a359b2b554602a124d8016be44ada403d87d8b99678e168783a5 + manager: conda + name: freetype + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_0.tar.bz2 + version: 2.12.1 +- category: main + dependencies: + libpng: '>=1.6.37,<1.7.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 7b95a5cd771dca1a83a15f0661da8df1 + sha256: 0049faca32d9c303f5d407ef6ed05f99f76c533f03ce303d9882e702cbb3c862 + manager: conda + name: gl2ps + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gl2ps-1.4.2-h17b34a0_0.tar.bz2 + version: 1.4.2 +- category: main + dependencies: + libcxx: '>=12.0.1' + libedit: '>=3.1.20191231,<4.0a0' + openssl: '>=3.0.0,<4.0a0' + hash: + md5: 71b2e0b0cec360c0831c6cfd5b3b9ca9 + sha256: 3805616886693727a4933cf2f7e0e49f7b4239f61d7ac9fd014f3079693fdca6 + manager: conda + name: krb5 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.19.3-he492e65_0.tar.bz2 + version: 1.19.3 +- category: main + dependencies: + libgfortran5: '' + hash: + md5: cc4376ee8e97be18874c75599f51cd8f + sha256: 779ca107a061a1f4ed6fc6fc3167e062da7d04ae45f64e668c3b9a46db329fa1 + manager: conda + name: libgfortran + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-11_3_0_hd922786_25.tar.bz2 + version: 5.0.0 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + libcxx: '>=14.0.4' + libffi: '>=3.4,<4.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + pcre2: '>=10.37,<10.38.0a0' + hash: + md5: 4119a6cb17705ec6b1c518ce58788f4c + sha256: 80dd2e2bd3fd3ac9d0365d8794c5be4181c388730f7c3c32b09c202311591d3c + manager: conda + name: libglib + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.74.1-h14ed1c1_0.tar.bz2 + version: 2.74.1 +- category: main + dependencies: + gettext: '>=0.21.1,<1.0a0' + libunistring: '>=0,<1.0a0' + hash: + md5: 7fdc11b6fd3ea4ce92886df855fc7085 + sha256: 3f2990c33c57559fbf03c5e5b3f3c8e95886548ab4c7fc10314e4514d6632703 + manager: conda + name: libidn2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libidn2-2.3.4-h1a8c8d9_0.tar.bz2 + version: 2.3.4 +- category: main + dependencies: + c-ares: '>=1.18.1,<2.0a0' + libcxx: '>=13.0.1' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=3.0.5,<4.0a0' + hash: + md5: ff1984469f4d776e155fc48191a42a54 + sha256: afd84ccecce67fe11ac11f9c75454925e52d7f0feaacd11a3bed5caeba1ac439 + manager: conda + name: libnghttp2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.47.0-h519802c_1.tar.bz2 + version: 1.47.0 +- category: main + dependencies: + geos: '>=3.11.0,<3.11.1.0a0' + libcxx: '>=13.0.1' + hash: + md5: 05cb960b1039e2a14b7757261c210f5a + sha256: c0ff388c5b3d15a60d9dc344271d32d05a03f9cd51dc32585ce3766e5f4676a7 + manager: conda + name: librttopo + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/librttopo-1.1.0-h275bb25_11.tar.bz2 + version: 1.1.0 +- category: main + dependencies: + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=3.0.5,<4.0a0' + hash: + md5: 1ffa4340e73809db5a7516cb1a7425a7 + sha256: fbaa668831c56d88824c9ea42aba7b9c9ffd26cdd9bec850120bf2aff0d9e282 + manager: conda + name: libssh2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.10.0-h7a5bd25_3.tar.bz2 + version: 1.10.0 +- category: main + dependencies: + libogg: '>=1.3.4,<1.4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 04067d41a078006c97cdb4e14e22c639 + sha256: caabfd950cd42d3b395f7330f4b3516ff4300ef2077532f1420b4506f01b8f55 + manager: conda + name: libtheora + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libtheora-1.1.1-h3422bc3_1005.tar.bz2 + version: 1.1.1 +- category: main + dependencies: + jpeg: '>=9e,<10a' + lerc: '>=4.0.0,<5.0a0' + libcxx: '>=14.0.4' + libdeflate: '>=1.14,<1.15.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + xz: '>=5.2.6,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 40a647c7d6780b71cc36225ef80da7f6 + sha256: 42006382e8d96198d0ff12ff9a0309e514c2c01cc4594b7990b726cdf8f91348 + manager: conda + name: libtiff + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.4.0-hfa0b094_4.tar.bz2 + version: 4.4.0 +- category: main + dependencies: + icu: '>=70.1,<71.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + xz: '>=5.2.6,<6.0a0' + hash: + md5: 35980b9d069648c553d9322bc89ecfbf + sha256: b7d844b074c5f43ef0d00d2df88b98b015eddad1e81cdfd0ac204aa727d90e72 + manager: conda + name: libxml2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h87b0503_0.tar.bz2 + version: 2.10.3 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openssl: '>=3.0.5,<4.0a0' + hash: + md5: eee3b4ab0b5b71fbda7900785f3a46fa + sha256: f8532163164fd6c1063f49225acf0c4919eceaa5e464f2de26095e396909cfaf + manager: conda + name: libzip + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.9.2-h76ab92c_1.tar.bz2 + version: 1.9.2 +- category: main + dependencies: + gmp: '>=6.2.0,<7.0a0' + hash: + md5: c37f296f76cfb61d4f91613da93789e6 + sha256: bf44598be1fe9f6310ac0ebcd91dd6b51d4d19fe085c96b4da8297f2fc868f86 + manager: conda + name: mpfr + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.1.0-h6d7a090_1.tar.bz2 + version: 4.1.0 +- category: main + dependencies: + imath: '>=3.1.5,<3.2.0a0' + libcxx: '>=12.0.1' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 117a60708c1f0593667a0d54a01e71b1 + sha256: 1e7081c5da4567bfbc42de0856bd7cdd53685f96eeb132cd1788aceb7f81d486 + manager: conda + name: openexr + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openexr-3.1.5-h264c651_0.tar.bz2 + version: 3.1.5 +- category: main + dependencies: + libzlib: '>=1.2.11,<1.3.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 84c5fcd61737aa430b8d31bb6e2c011b + sha256: 2794ecda7de53c115bbaaceff9195dff95a4e5412766ac83189e6b411652ec3e + manager: conda + name: scotch + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/scotch-6.0.9-h7537618_2.tar.bz2 + version: 6.0.9 +- category: main + dependencies: + libsqlite: 3.39.4 h76d750c_0 + libzlib: '>=1.2.12,<1.3.0a0' + ncurses: '>=6.3,<7.0a0' + readline: '>=8.1.2,<9.0a0' + hash: + md5: e11a77ec381e452e9fb9e16a36faeada + sha256: 625341afc9ce5db1c05b2abb83f0c3a898c50f242b3de4254369ce37e9aa112d + manager: conda + name: sqlite + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.39.4-h2229b38_0.tar.bz2 + version: 3.39.4 +- category: main + dependencies: + libcxx: '>=14.0.4' + tbb: 2021.6.0 hffc8910_1 + hash: + md5: 855ad94e75cdd57344160e2f5c318f54 + sha256: 5b2c4eab9f4c103ed1f99b71faccfd21aaa0deb8ca798215b8762b3845c28c7a + manager: conda + name: tbb-devel + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-devel-2021.6.0-h4f9cb39_1.tar.bz2 + version: 2021.6.0 +- category: main + dependencies: + libxcb: 1.* + xorg-kbproto: '' + xorg-xproto: '' + hash: + md5: 086d21cd75de63fc62d165a84dab0b70 + sha256: 0e238cc4e90461bc5b7987460b03873c7f2c3a7bcd8d55d6d14fc42bad421b2d + manager: conda + name: xorg-libx11 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libx11-1.7.2-h3422bc3_0.tar.bz2 + version: 1.7.2 +- category: main + dependencies: + libcxx: '>=13.0.1' + xtl: '>=0.7,<0.8' + hash: + md5: 78a1c2ea5802d712461933a9ef0acd98 + sha256: b06b8634a7f8eb621d573f2ef15c7ca52cf9ea75a41b15dc36ead88edd4d2dd4 + manager: conda + name: xtensor + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xtensor-0.24.3-hf86a087_0.tar.bz2 + version: 0.24.3 +- category: main + dependencies: + brotli-bin: 1.0.9 h1a8c8d9_8 + libbrotlidec: 1.0.9 h1a8c8d9_8 + libbrotlienc: 1.0.9 h1a8c8d9_8 + hash: + md5: e2a5e381ddd6529eb62e7710270b2ec5 + sha256: f97debd05c2caeeefba22e0b71173f1fff99c1e5e66e6e9caa91c1c66eb59741 + manager: conda + name: brotli + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_8.tar.bz2 + version: 1.0.9 +- category: main + dependencies: + expat: '>=2.4.9,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + hash: + md5: 64ee99d6ad6ffc0feb7b46082348fcae + sha256: 098b0d293bd82703ee8acca6a2b90d7d6b86c4fa644601118257bdd24c17dcba + manager: conda + name: fontconfig + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.1-h82840c6_0.tar.bz2 + version: 2.14.1 +- category: main + dependencies: + gettext: '>=0.19.8.1,<1.0a0' + libcxx: '>=14.0.4' + libidn2: '>=2,<3.0a0' + libtasn1: '>=4.19.0,<5.0a0' + nettle: '>=3.8.1,<3.9.0a0' + p11-kit: '>=0.24.1,<0.25.0a0' + hash: + md5: 2367cca5a0451a70d01cff2dd2ce7d3e + sha256: 7b9b69cb2b3134e064b37948a4cd54dee2184a851c0cda5fe52efcfd90ae032d + manager: conda + name: gnutls + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gnutls-3.7.8-h9f1a10d_0.tar.bz2 + version: 3.7.8 +- category: main + dependencies: + jpeg: '>=9d,<10a' + libtiff: '>=4.2.0,<5.0a0' + hash: + md5: e66c48b683085eaa6627cc61ba76c1e2 + sha256: d3ef96838b6becb23e49d6f72c235c107b90e94141adfd73ddab144f5b432f68 + manager: conda + name: lcms2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.12-had6a04f_0.tar.bz2 + version: '2.12' +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libnghttp2: '>=1.47.0,<2.0a0' + libssh2: '>=1.10.0,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.5,<4.0a0' + hash: + md5: 977d104dd020f94298dcdc33c78a6df7 + sha256: 95c74421fb79fdd1d499c8f1fda00832483f4fc77de36fdc4a1b55603dbc66ea + manager: conda + name: libcurl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.86.0-h1c293e1_0.tar.bz2 + version: 7.86.0 +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + expat: '>=2.3.0,<3.0.0a0' + libcxx: '>=11.1.0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: ed58c2d4bff74a1ea278474fb88a6dc6 + sha256: 48f5ee0b8a22f1673d79b059ef05082486e78589c9d186203f4cc62bbf0f5e64 + manager: conda + name: libkml + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libkml-1.3.0-h893ab4d_1014.tar.bz2 + version: 1.3.0 +- category: main + dependencies: + libgfortran: 5.* + libgfortran5: '>=11.3.0' + llvm-openmp: '>=14.0.4' + hash: + md5: 2a980a5d8cc34ce70d339b983f9920de + sha256: 92e341be106c00adf1f1757ec9f9586a3848af94b434554c75dd7c5023f84ea2 + manager: conda + name: libopenblas + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.21-openmp_hc731615_3.tar.bz2 + version: 0.3.21 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.5,<4.0a0' + readline: '>=8.1.2,<9.0a0' + hash: + md5: d7441bf108729ccea9b88d15376adac6 + sha256: 18daf9dff5bc4847e891be5be66e180d2068b2aece1ec3c1b79e880ff68d106a + manager: conda + name: libpq + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libpq-14.5-h2af30dc_1.tar.bz2 + version: '14.5' +- category: main + dependencies: + libcxx: '>=13.0.1' + libzlib: '>=1.2.11,<1.3.0a0' + nspr: '>=4.32,<5.0a0' + sqlite: '>=3.38.5,<4.0a0' + hash: + md5: 63b3a93e1745c2b597585f9ffc41bcaf + sha256: d95bdb1e27420e1ffbcd821f88fc9eba92d0a50e90e20fa415802fbffcb63b95 + manager: conda + name: nss + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.78-h1483a63_0.tar.bz2 + version: '3.78' +- category: main + dependencies: + libcxx: '>=13.0.1' + libpng: '>=1.6.37,<1.7.0a0' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 4d65dff04bceb645c98a514c52df217f + sha256: 3f7fcbc048a489ed0530d3342b0b61f080071011f6df61a021f80954853e42e9 + manager: conda + name: openjpeg + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-h5d4e404_1.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + libgfortran: 5.* + libgfortran5: '>=11.3.0' + libzlib: '>=1.2.12,<1.3.0a0' + mpi: 1.0 openmpi + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: c7474eedb4991a2d01d6d443d2eab040 + sha256: ba9a4c079967afdf08071235c3414626107c04cf29d0a49dd3ee9dfec046d811 + manager: conda + name: openmpi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/openmpi-4.1.4-h4e676fc_101.tar.bz2 + version: 4.1.4 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libffi: '>=3.4.2,<3.5.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + ncurses: '>=6.3,<7.0a0' + openssl: '>=3.0.3,<4.0a0' + readline: '>=8.1,<9.0a0' + sqlite: '>=3.38.5,<4.0a0' + tk: '>=8.6.12,<8.7.0a0' + tzdata: '' + xz: '>=5.2.5,<5.3.0a0' + hash: + md5: b931e71d282753be679bd2602840f902 + sha256: a0aeaefa0aa5f076f30353a2b75a52c08180e8e3e5e85eb5d4d659b54c2b5868 + manager: conda + name: python + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.13-h96fcbfb_0_cpython.tar.bz2 + version: 3.9.13 +- category: main + dependencies: + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-xextproto: '' + hash: + md5: 018e331c817a27dc467eb5586cb2fe62 + sha256: f3c1cfc29d7e1eabead76302c3503a1fcfd517ac7674863624f61d2c30d4c46c + manager: conda + name: xorg-libxext + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxext-1.3.4-h27ca646_1.tar.bz2 + version: 1.3.4 +- category: main + dependencies: + xorg-fixesproto: '' + xorg-libx11: '>=1.7.0,<2.0a0' + hash: + md5: 2f28b8528708008ff42d979c1fd2b196 + sha256: 4c13df94eda1ac8c975d92d35d0808e81c3cdab10f22eb45cb2281f327bc02bb + manager: conda + name: xorg-libxfixes + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxfixes-5.0.3-h3422bc3_1004.tar.bz2 + version: 5.0.3 +- category: main + dependencies: + xorg-libx11: '>=1.7.0,<2.0a0' + xorg-renderproto: '' + hash: + md5: 9e8d4cb8984791a85cd9010fade12983 + sha256: 0e9c22a31923677e7579ac648592cb21843a022d0c4c18a0bf047324ef7680f2 + manager: conda + name: xorg-libxrender + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxrender-0.9.10-h27ca646_1003.tar.bz2 + version: 0.9.10 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 466dc5c1b75c93180efbd81d99dc29b0 + sha256: f3d58687fb000acc5d5f773d6e633ffb382575895abbc8db3d9b8e3996b05d39 + manager: conda + name: affine + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/affine-2.3.1-pyhd8ed1ab_0.tar.bz2 + version: 2.3.1 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: f3f2ab3ce28979a24d1a988ba211eb9b + sha256: 1354731d0eb1b406b66b3cb3d6ab74d7cbe9c0ec1d30b9e5afa366d4539e4687 + manager: conda + name: asn1crypto + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/asn1crypto-1.5.1-pyhd8ed1ab_0.tar.bz2 + version: 1.5.1 +- category: main + dependencies: + python: '>=3.5' + hash: + md5: 6d3ccbc56256204925bfa8378722792f + sha256: 86133878250874b3823bae7369bcad90187132537726cb1b546d88a0552d24de + manager: conda + name: attrs + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/attrs-22.1.0-pyh71513ae_1.tar.bz2 + version: 22.1.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + manager: conda + name: cached_property + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.12.1,<3.0a0' + icu: '>=70.1,<71.0a0' + libglib: '>=2.72.1,<3.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + pixman: '>=0.40.0,<1.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: be2ea75899a7b1f1dd59a862fac655ee + sha256: 508c63c893360cee44e82cf550548ae8bbcc96bd26b7f30f9197787a653dd6a1 + manager: conda + name: cairo + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.16.0-h73a0509_1014.tar.bz2 + version: 1.16.0 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: f66309b099374af91369e67e84af397d + sha256: 52e7459b3c457e888e2b6a4e6d13ab7f8675999bc12d20a83e34f12591a8771a + manager: conda + name: certifi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2022.9.24-pyhd8ed1ab_0.tar.bz2 + version: 2022.9.24 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libcurl: '>=7.82.0,<8.0a0' + libgfortran: 5.* + libgfortran5: '>=11.0.1.dev0' + libzlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 1939aec2c8e484f564bb3e37a2be3461 + sha256: d1bac00afc4daeba1824939eb2d37c3f75d72916303beeb8b4fe8a234f292f59 + manager: conda + name: cfitsio + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cfitsio-4.1.0-hd4f5c17_0.tar.bz2 + version: 4.1.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: c1d5b294fbf9a795dec349a6f4d8be8e + sha256: 9e6170fa7b65b5546377eddb602d5ff871110f84bebf101b7b8177ff64aab1cb + manager: conda + name: charset-normalizer + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2 + version: 2.1.1 +- category: main + dependencies: + __unix: '' + python: '>=3.8' + hash: + md5: 20e4087407c7cb04a40817114b333dbf + sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + manager: conda + name: click + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2 + version: 8.1.3 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libcurl: 7.86.0 h1c293e1_0 + libssh2: '>=1.10.0,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.5,<4.0a0' + hash: + md5: 12a19faed5d556d5a13f0753038c4ae7 + sha256: d1c9c18fb3fb8d5e7bee892e2185a53bbf576cdb3b682ae4e015161ce3fa8039 + manager: conda + name: curl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/curl-7.86.0-h1c293e1_0.tar.bz2 + version: 7.86.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 + manager: conda + name: cycler + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2 + version: 0.11.0 +- category: main + dependencies: + aom: '>=3.5.0,<3.6.0a0' + bzip2: '>=1.0.8,<2.0a0' + fontconfig: '>=2.14.0,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.12.1,<3.0a0' + gmp: '>=6.2.1,<7.0a0' + gnutls: '>=3.7.8,<3.8.0a0' + lame: '>=3.100,<3.101.0a0' + libcxx: '>=14.0.4' + libiconv: '>=1.17,<2.0a0' + libvpx: '>=1.11.0,<1.12.0a0' + libxml2: '>=2.10.3,<2.11.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + svt-av1: '>=1.3.0,<1.3.1.0a0' + x264: '>=1!164.3095,<1!165' + x265: '>=3.5,<3.6.0a0' + hash: + md5: e6319ad192c454971aaf488e30dc4a6d + sha256: 8c3926250222656f55007c58e59ff11766f212a4245b27fe7d5dacebe9d04226 + manager: conda + name: ffmpeg + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ffmpeg-4.4.2-gpl_hf4c414c_110.tar.bz2 + version: 4.4.2 +- category: main + dependencies: + libcxx: '>=14.0.4' + libgfortran: 5.* + libgfortran5: '>=11.3.0' + llvm-openmp: '>=14.0.4' + openmpi: '>=4.1.4,<5.0a0' + hash: + md5: 76802a70f0264d9074b6e471ba09a0ee + sha256: bb1e778aa1541b9129157815be024a694d75d9bde5f032ff27c1712bd778bc26 + manager: conda + name: fftw + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-mpi_openmpi_haef8dc3_5.tar.bz2 + version: 3.3.10 +- category: main + dependencies: + jpeg: '>=9d,<10a' + libcxx: '>=11.1.0' + libpng: '>=1.6.37,<1.7.0a0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + xorg-libice: '' + xorg-libsm: '' + xorg-libx11: '' + xorg-libxau: '' + xorg-libxdmcp: '' + xorg-libxext: '' + xorg-libxfixes: '' + xorg-libxrender: '' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: a253c9731cfbd8b9f8bdf927348d289f + sha256: 2ef8b8e0f00009ed4814ada62af8b3b699887a89b63679f357610e13173eb61d + manager: conda + name: fltk + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fltk-1.3.8-h38c865a_0.tar.bz2 + version: 1.3.8 +- category: main + dependencies: + libcurl: '>=7.81.0,<8.0a0' + libcxx: '>=12.0.1' + libgfortran: 5.* + libgfortran5: '>=11.0.1.dev0' + libzlib: '>=1.2.11,<1.3.0a0' + openmpi: '>=4.1,<4.2.0a0' + openssl: '>=3.0.0,<4.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: add9e00d1991f2651d29a6ea4c7221f8 + sha256: e4223e2b8e2cbeb205c1985eeb647ff9f946a6ae93cfef4441be11ee7ad332b3 + manager: conda + name: hdf5 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.1-mpi_openmpi_hd5758bf_4.tar.bz2 + version: 1.12.1 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + manager: conda + name: idna + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + version: '3.4' +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 2cfa3e1cf3fb51bb9b17acc5b5e9ea11 + sha256: 95ac5f9ee95fd4e34dc051746fc86016d3d4f6abefed113e2ede049d59ec2991 + manager: conda + name: jmespath + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_0.tar.bz2 + version: 1.0.1 +- category: main + dependencies: + libopenblas: '>=0.3.21,<1.0a0' + hash: + md5: 53d6d5097f0d62e24db8c1979a21102e + sha256: 17dd67806f7e31981a1ac8abb63ed004eac416a1061c7737028f5af269430fa6 + manager: conda + name: libblas + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-16_osxarm64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + jpeg: '>=9d,<10a' + lcms2: '>=2.12,<3.0a0' + libcxx: '>=11.1.0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: a451f7d6fd6bffdefa3ddf4e076ca2f2 + sha256: 95a59bc72fb337d1b5c78b4f5a566d39cf5a3f90bc89ee810a5fe2e9ab3d267a + manager: conda + name: libraw + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libraw-0.20.2-h9166135_1.tar.bz2 + version: 0.20.2 +- category: main + dependencies: + python: '' + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + manager: conda + name: munkres + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + version: 1.1.4 +- category: main + dependencies: + python: '>=3.8' + hash: + md5: 1b74438a7270b1e2cbd3de9dba18ebb6 + sha256: eda4b0dba46c72770bc410c794f4da62509623a24c12b9805954828278915dc7 + manager: conda + name: networkx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/networkx-2.8.7-pyhd8ed1ab_0.tar.bz2 + version: 2.8.7 +- category: main + dependencies: + libcxx: '>=11.1.0' + openmpi: '>=4.1,<4.2.0a0' + hash: + md5: 2121f0f7dd3fe744d804d23e090ab757 + sha256: 05b08fc1bb367fcd9ff23be61fb644653edcbee3ff41cfe4d0c28c642d9d9c51 + manager: conda + name: parmetis + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/parmetis-4.0.3-h6eb5794_1005.tar.bz2 + version: 4.0.3 +- category: main + dependencies: + krb5: '>=1.19.3,<1.20.0a0' + libpq: 14.5 h2af30dc_1 + libxml2: '>=2.10.3,<2.11.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.5,<4.0a0' + readline: '>=8.1.2,<9.0a0' + tzcode: '' + tzdata: '' + zlib: '' + hash: + md5: 3bd57fb94cc2eb6d9c68803df2966724 + sha256: d09f60a1b052e0dfa2e3983927a48e5834a2044fb54342ee7a330250597d5c5d + manager: conda + name: postgresql + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/postgresql-14.5-ha48369c_1.tar.bz2 + version: '14.5' +- category: main + dependencies: + libcurl: '>=7.83.1,<8.0a0' + libcxx: '>=13.0.1' + libtiff: '>=4.4.0,<5.0a0' + sqlite: '>=3.39.0,<4.0a0' + hash: + md5: 7cb058a0cff4d5cde53dacb7e3817200 + sha256: 2d4b365901f174af68694babadf06f4454674ff8f94ff36c8fbe500957c8c1b4 + manager: conda + name: proj + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.0.1-h4c79c2b_1.tar.bz2 + version: 9.0.1 +- category: main + dependencies: + libzlib: '>=1.2.11,<1.3.0a0' + openmpi: '>=4.1.2,<5.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: b38bc5638ce2e4429aca1aaf2f6962c0 + sha256: f48429d1e1bd2e0a179bc3a67fabb49783d7fa6d7dec5590d35ddeda50141713 + manager: conda + name: ptscotch + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ptscotch-6.0.9-h1aec651_2.tar.bz2 + version: 6.0.9 +- category: main + dependencies: + python: ==2.7.*|>=3.4 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + manager: conda + name: pycparser + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + version: '2.21' +- category: main + dependencies: + python: '>=3.6' + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + manager: conda + name: pyparsing + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2 + version: 3.0.9 +- category: main + dependencies: + __unix: '' + python: '>=3.8' + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + manager: conda + name: pysocks + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + version: 1.7.1 +- category: main + dependencies: + python: 3.9.* + hash: + md5: ba3082b5441b482d5cfe328d4e7ba0bf + sha256: f611edf23ff71035043f2e81190b83bd4ee1e36fe3041b675aef2373dc33f8c4 + manager: conda + name: python_abi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.9-2_cp39.tar.bz2 + version: '3.9' +- category: main + dependencies: + python: '>=3.6' + hash: + md5: 565724d09157870f0e469b1a0a172a6d + sha256: 0fc68b442d74920858fe7e4760c10efb22610fb27f28d2bfe98296b7ef2078f0 + manager: conda + name: pytz + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2022.5-pyhd8ed1ab_0.tar.bz2 + version: '2022.5' +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 462466739c786f85f9ed555f87099fe1 + sha256: 8c1e25e2aae26973bbfe074dcb34a8b4904357048f4e83cb21e8843ee36c1fd5 + manager: conda + name: setuptools + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.5.0-pyhd8ed1ab_0.tar.bz2 + version: 65.5.0 +- category: main + dependencies: + python: '' + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + manager: conda + name: six + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + version: 1.16.0 +- category: main + dependencies: + python: '>=3.6' + hash: + md5: a2995ee828f65687ac5b1e71a2ab1e0c + sha256: c7a964811ba49c545236f7d6c2486b2ed493931660048a06fe94ecc851dd0b82 + manager: conda + name: threadpoolctl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2 + version: 3.1.0 +- category: main + dependencies: + python: '!=3.0,!=3.1,!=3.2,!=3.3,!=3.4' + hash: + md5: 1ca02aaf78d9c70d9a81a3bed5752022 + sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc + manager: conda + name: wheel + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2 + version: 0.37.1 +- category: main + dependencies: + icu: '>=70.1,<71.0a0' + libcurl: '>=7.85.0,<8.0a0' + libcxx: '>=14.0.4' + hash: + md5: e690c8c477c96c9f8ad9f7c63f1f94d2 + sha256: e943238995c5b8ae18e1ef693f95142d24fd5fbf48593d927fb59fa620d0bdb5 + manager: conda + name: xerces-c + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xerces-c-3.2.4-h627aa08_1.tar.bz2 + version: 3.2.4 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: 0c0e2e24aa2e9ee3dd99c611b1098047 + sha256: 65553bbb7bdfedc1a17abc7cb26df8fb38aa50d9e56aa0eeb64a68a060d5301a + manager: conda + name: xyzservices + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2022.9.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.9.0 +- category: main + dependencies: + python: '>=3.7' + hash: + md5: cd4eb48ebde7de61f92252979aab515c + sha256: 942b80980ae3db52f032720c82c2d4fb3f463b228762fc2d6a2684d6438fcc29 + manager: conda + name: zipp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.10.0-pyhd8ed1ab_0.tar.bz2 + version: 3.10.0 +- category: main + dependencies: + cached_property: '>=1.5.2,<1.5.3.0a0' + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + manager: conda + name: cached-property + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + version: 1.5.2 +- category: main + dependencies: + libffi: '>=3.4,<4.0a0' + pycparser: '' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 2840b36d4a8a4b44641e2e16d4385e3d + sha256: 101f242fc52633feea32eec07dceb910dc436876ab0f8c4c40ef9a252a5c716d + manager: conda + name: cffi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py39h7e6b969_1.tar.bz2 + version: 1.15.1 +- category: main + dependencies: + click: '>=3.0' + python: '' + hash: + md5: 4fd2c6b53934bd7d96d1f3fdaf99b79f + sha256: ddef6e559dde6673ee504b0e29dd814d36e22b6b9b1f519fa856ee268905bf92 + manager: conda + name: click-plugins + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 + version: 1.1.1 +- category: main + dependencies: + click: '>=4.0' + python: <4.0 + hash: + md5: a29b7c141d6b2de4bb67788a5f107734 + sha256: 97bd58f0cfcff56a0bcda101e26f7d936625599325beba3e3a1fa512dd7fc174 + manager: conda + name: cligj + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 + version: 0.7.2 +- category: main + dependencies: + imath: '>=3.1.5,<3.2.0a0' + jpeg: '>=9e,<10a' + jxrlib: '>=1.1,<1.2.0a0' + libcxx: '>=13.0.1' + libpng: '>=1.6.37,<1.7.0a0' + libraw: '>=0.20.2,<0.21.0a0' + libtiff: '>=4.4.0,<5.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openexr: '>=3.1.5,<3.2.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + hash: + md5: fdd404d86a194a9012ee583597ff3ebd + sha256: 0a9a56d88d5d2c5d55799a90a3a0af477e39a0bb94559a6ad7d30fe7806e070c + manager: conda + name: freeimage + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/freeimage-3.18.0-hb513136_10.tar.bz2 + version: 3.18.0 +- category: main + dependencies: + jpeg: '>=9e,<10a' + libcxx: '>=13.0.1' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 4d2f3cb9c2f7bbe4ca791f61b2769e69 + sha256: f34d0c7fe088904e03d453e923661eb434d18d730f4ae81950cf32b04dc98a99 + manager: conda + name: geotiff + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/geotiff-1.7.1-hc898e3f_3.tar.bz2 + version: 1.7.1 +- category: main + dependencies: + python: '>=3.8' + zipp: '>=0.5' + hash: + md5: ec069c4db6a0ad84107bac5da62819d2 + sha256: cea7928e6949c3ecd15e56ee8fa4e54efa8bb82738b8264e0489847e86e022c8 + manager: conda + name: importlib-metadata + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-5.0.0-pyha770c72_1.tar.bz2 + version: 5.0.0 +- category: main + dependencies: + python: '>=3.6' + setuptools: '' + hash: + md5: 7583652522d71ad78ba536bba06940eb + sha256: 0c21351871df2c0a53168575597dd9c881e2a9fa4c42fe89a9bcd7fab37f462c + manager: conda + name: joblib + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2 + version: 1.2.0 +- category: main + dependencies: + hdf5: '>=1.12.1,<1.12.2.0a0' + libcxx: '>=13.0.1' + hash: + md5: ca8277e2916faaa036594d42ef87a9a7 + sha256: e9997afce725c1f6742871b727a7cb6d3c57bad1703f7dc10106cae067455f7b + manager: conda + name: kealib + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/kealib-1.4.14-hca62043_4.tar.bz2 + version: 1.4.14 +- category: main + dependencies: + libcxx: '>=14.0.4' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 5f43e4d5437b93606167c640ea2d06c1 + sha256: afe4759ca7572eb98361cd4c68ae3819a16d368c963d1134b926d2963434b3e6 + manager: conda + name: kiwisolver + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.4-py39haaf3ac1_1.tar.bz2 + version: 1.4.4 +- category: main + dependencies: + blosc: '>=1.21.1,<2.0a0' + bzip2: '>=1.0.8,<2.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + libcxx: '>=14.0.4' + libffi: '>=3.4.2,<3.5.0a0' + libpng: '>=1.6.37,<1.7.0a0' + openmpi: '>=4.1.4,<5.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + zeromq: '>=4.3.4,<4.4.0a0' + zfp: '>=0.5.5,<1.0a0' + hash: + md5: 7db9dbd6b279ba6ea17b5f03e6ce9a2c + sha256: fad4661c49ccf2c6a6433ff01efbc1be459b5e27f5a14ad74c5fba3227510d97 + manager: conda + name: libadios2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libadios2-2.8.3-mpi_openmpi_h23701fd_1.tar.bz2 + version: 2.8.3 +- category: main + dependencies: + libblas: 3.9.0 16_osxarm64_openblas + hash: + md5: c7cfc18378f00d3faf7f8a9a2553be3c + sha256: 99a04c6a273e76b01ace4f3a8f333b96a76b7351a155aaeba179e283da5c264e + manager: conda + name: libcblas + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-16_osxarm64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + curl: '>=7.75.0,<8.0a0' + libcxx: '>=11.1.0' + libxml2: '>=2.9.10,<2.11.0a0' + hash: + md5: b61547e8f0c4fb57318482666c07d6ca + sha256: db7dd837ca9a16fe7735915ad9089bea6cfa877cb2556d35610c8e534da899b8 + manager: conda + name: libdap4 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libdap4-3.20.6-h8510809_2.tar.bz2 + version: 3.20.6 +- category: main + dependencies: + libblas: 3.9.0 16_osxarm64_openblas + hash: + md5: 52d270c579bfca986d6cdd81eb5ed6e7 + sha256: 87204cb0ff22f260b3aa5fc7c938157b471eb2bd287acf1ba7e61a67f86ba959 + manager: conda + name: liblapack + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-16_osxarm64_openblas.tar.bz2 + version: 3.9.0 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + curl: '>=7.82.0,<8.0a0' + hdf4: '>=4.2.15,<4.3.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + jpeg: '>=9e,<10a' + libcxx: '>=11.1.0' + libzip: '>=1.8.0,<2.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + openmpi: '>=4.1.3,<5.0a0' + zlib: '>=1.2.11,<1.3.0a0' + hash: + md5: 1eecc6f2b2736d560f50251c9f56da8b + sha256: 73af2e629405f7f29fa4ef68fed0045535d55eb0cb987dba828037d6f98b0072 + manager: conda + name: libnetcdf + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.8.1-mpi_openmpi_hb732ec9_2.tar.bz2 + version: 4.8.1 +- category: main + dependencies: + freexl: '>=1.0.6,<2.0a0' + geos: '>=3.11.0,<3.11.1.0a0' + libcxx: '>=14.0.4' + libiconv: '>=1.16,<2.0.0a0' + librttopo: '>=1.1.0,<1.2.0a0' + libsqlite: '>=3.39.2,<4.0a0' + libxml2: '>=2.10.1,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + sqlite: '>=3.39.2,<4.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: aa033281870b59d0fa9c25e7dfc22a38 + sha256: e5e455bbdb9ffc117693512395bce7636f61290a0af834aecba8682b69ce1123 + manager: conda + name: libspatialite + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libspatialite-5.0.1-h97b496e_19.tar.bz2 + version: 5.0.1 +- category: main + dependencies: + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: deba576046c91cbf1df49024bf47838a + sha256: 0a6ce7477eb0fbdd64eff89e52a4e7ceaf0c8cd660b9f7dcef25c3c30931b653 + manager: conda + name: loguru + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/loguru-0.6.0-py39h2804cbe_1.tar.bz2 + version: 0.6.0 +- category: main + dependencies: + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: bdf477e1fea203ad4cf628c879595706 + sha256: e9eb937869ced3df17163e801f13b33fcf8e79f1ae8879bd1dc2fa943a9c2dbd + manager: conda + name: markupsafe + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.1-py39h02fc5c5_2.tar.bz2 + version: 2.1.1 +- category: main + dependencies: + openmpi: '>=4.1.4,<5.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 95cc83b0f735f6ce2a9a926b43fa9a35 + sha256: 1d41644c6db0bd73a75ad1bf6bdfe3c780e2147b76a1a789cbcc20827371b9d4 + manager: conda + name: mpi4py + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mpi4py-3.1.3-py39haddbe1b_3.tar.bz2 + version: 3.1.3 +- category: main + dependencies: + python: '' + setuptools: '>=17.1' + six: '' + hash: + md5: 31d9e9be500e25ff0050bc9f57a6bcd7 + sha256: bd885bec8b012abf0c5ca5d6225caf0e88e5b2b0af8fa5a4e4d339604d3e9cd1 + manager: conda + name: munch + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/munch-2.5.0-py_0.tar.bz2 + version: 2.5.0 +- category: main + dependencies: + pyparsing: '>=2.0.2,!=3.0.5' + python: '>=3.6' + hash: + md5: 71f1ab2de48613876becddd496371c85 + sha256: 8322a9e93e2e09fbf2103f0d37c9287b7b97387125abadd6db26686084893540 + manager: conda + name: packaging + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/packaging-21.3-pyhd8ed1ab_0.tar.bz2 + version: '21.3' +- category: main + dependencies: + freetype: '>=2.10.4,<3.0a0' + jpeg: '>=9e,<10a' + lcms2: '>=2.12,<3.0a0' + libtiff: '>=4.4.0,<5.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + tk: '>=8.6.12,<8.7.0a0' + hash: + md5: 5c8523fa749c295f0fddb339361e15f4 + sha256: 6fc37c321f987b87a8e73a8d28945a552014877a8039395f47b7d4af3d9100cd + manager: conda + name: pillow + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.2.0-py39he45c975_2.tar.bz2 + version: 9.2.0 +- category: main + dependencies: + python: '>=3.7' + setuptools: '' + wheel: '' + hash: + md5: 6f4c6de9fed2a9bd8043283611b09587 + sha256: 9300dd4a4ca6ced6ebaf455e7be43aeb47e1d764de1c3f448d9dc98ab3b32942 + manager: conda + name: pip + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/pip-22.3-pyhd8ed1ab_0.tar.bz2 + version: '22.3' +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + cairo: '>=1.16.0,<2.0.0a0' + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freetype: '>=2.10.4,<3.0a0' + gettext: '>=0.19.8.1,<1.0a0' + jpeg: '>=9e,<10a' + lcms2: '>=2.12,<3.0a0' + libcurl: '>=7.83.1,<8.0a0' + libcxx: '>=13.0.1' + libglib: '>=2.72.1,<3.0a0' + libiconv: '>=1.16,<2.0.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libtiff: '>=4.4.0,<5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + nss: '>=3.78,<4.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + poppler-data: '' + hash: + md5: 13d0cb5713434872b89512ceecbc3057 + sha256: 0a601d07555ecd235100322b2c4d81c6bd8f391365fe2dc47a5efddaa4e4f9d9 + manager: conda + name: poppler + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/poppler-22.04.0-h2eb88e3_2.tar.bz2 + version: 22.04.0 +- category: main + dependencies: + certifi: '' + proj: '>=9.0.1,<9.0.2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: a466a2fd0ea4a19e206c8a65f192dabf + sha256: ece9d43ff6cb18267fedd2283c5932bae04bcdafae7635a185e5cc83c08a3820 + manager: conda + name: pyproj + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.4.0-py39h4b6117f_0.tar.bz2 + version: 3.4.0 +- category: main + dependencies: + python: '>=3.6' + six: '>=1.5' + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + manager: conda + name: python-dateutil + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 + version: 2.8.2 +- category: main + dependencies: + libspatialindex: '>=1.9.3,<1.9.4.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 9fbe11ad3786a4ff0cbb3b5950b177cd + sha256: f58739f612bb0222da73b642ae1d0866923dc344044af34d826cfeb33e9af83d + manager: conda + name: rtree + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rtree-1.0.1-py39hb28b0e7_1.tar.bz2 + version: 1.0.1 +- category: main + dependencies: + bzip2: '>=1.0.8,<2.0a0' + curl: '>=7.83.1,<8.0a0' + libcxx: '>=13.0.1' + libzlib: '>=1.2.12,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + openssl: '>=3.0.3,<4.0a0' + zlib: '>=1.2.12,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: b35c56b275aed98ccb734ded52bc47f2 + sha256: 77dbe1b076e346eb57d0de14c6cc4f49f212b61aa7bd10fb7d9e69fc60dffd0d + manager: conda + name: tiledb + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tiledb-2.9.4-h824fbfd_0.tar.bz2 + version: 2.9.4 +- category: main + dependencies: + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: cc704de9c0b7652480f5dd0bfe8e4270 + sha256: 1e1aa37464f6101c13d55cfb3e979abce209db339885a14a62b64f103aea5707 + manager: conda + name: unicodedata2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-14.0.0-py39h02fc5c5_2.tar.bz2 + version: 14.0.0 +- category: main + dependencies: + cffi: '>=1.0.0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: cf0b1f6f29ee28e7b20d49cb66bae19e + sha256: d56a680b34d84144d396619eee5331493a9a611ee4ee21bd88a73bcac642abf4 + manager: conda + name: brotlipy + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotlipy-0.7.0-py39h02fc5c5_1005.tar.bz2 + version: 0.7.0 +- category: main + dependencies: + cffi: '>=1.12' + openssl: '>=3.0.5,<4.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 5fcf0f793aaf1e5aa84e99e4c2ba27b4 + sha256: 1cf3082dc5cac906ff189e641f77d419f80d1fe59acd0efbf15542112e00ecfa + manager: conda + name: cryptography + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-38.0.2-py39he2a39a8_1.tar.bz2 + version: 38.0.2 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=14.0.4' + liblapack: '>=3.9.0,<4.0a0' + hash: + md5: 74ef49028b2cb16912d08a1537a0f44f + sha256: 0c338f2f1f4b00a83078f6d5be8d28a97e365b5e7e6e236a8a5ce42285697839 + manager: conda + name: fenics-libbasix + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-libbasix-0.5.1-hf081368_0.tar.bz2 + version: 0.5.1 +- category: main + dependencies: + brotli: '' + munkres: '' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + unicodedata2: '>=14.0.0' + hash: + md5: fce96a5d599779bd129df80ba87054f2 + sha256: 255d742da1f08165552bf59b75bcd4817348e25f69c352c6284b2872f40ed07b + manager: conda + name: fonttools + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.38.0-py39h02fc5c5_0.tar.bz2 + version: 4.38.0 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcxx: '>=13.0.1' + liblapack: '>=3.9.0,<4.0a0' + openmpi: '>=4.1.4,<5.0a0' + hash: + md5: 7cb597e443b4134e25d41f9a390e65ae + sha256: c59d32b056bc0c1ad6f6383e0321844c4caaf4e3e208a7cc9e249e2e5e4d8722 + manager: conda + name: hypre + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/hypre-2.25.0-mpi_openmpi_hcc3ba7f_0.tar.bz2 + version: 2.25.0 +- category: main + dependencies: + markupsafe: '>=2.0' + python: '>=3.7' + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + manager: conda + name: jinja2 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + version: 3.1.2 +- category: main + dependencies: + blosc: '>=1.21.1,<2.0a0' + cfitsio: '>=4.1.0,<4.1.1.0a0' + expat: '>=2.4.8,<3.0a0' + freexl: '>=1.0.6,<2.0a0' + geos: '>=3.11.0,<3.11.1.0a0' + geotiff: '>=1.7.1,<1.8.0a0' + giflib: '>=5.2.1,<5.3.0a0' + hdf4: '>=4.2.15,<4.3.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0' + icu: '>=70.1,<71.0a0' + jpeg: '>=9e,<10a' + json-c: '>=0.16,<0.17.0a0' + kealib: '>=1.4.14,<1.5.0a0' + libcxx: '>=13.0.1' + libdap4: '>=3.20.6,<3.20.7.0a0' + libkml: '>=1.3.0,<1.4.0a0' + libnetcdf: '>=4.8.1,<4.8.2.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libpq: '>=14.4,<15.0a0' + libspatialite: '>=5.0.1,<5.1.0a0' + libtiff: '>=4.4.0,<5.0a0' + libwebp-base: '' + libxml2: '>=2.9.14,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openjpeg: '>=2.4.0,<3.0.0a0' + openssl: '>=3.0.5,<4.0a0' + pcre: '>=8.45,<9.0a0' + poppler: '>=22.4.0,<22.5.0a0' + postgresql: '' + proj: '>=9.0.1,<9.0.2.0a0' + sqlite: '>=3.39.0,<4.0a0' + tiledb: '>=2.9.4,<2.10.0a0' + xerces-c: '>=3.2.3,<3.3.0a0' + xz: '>=5.2.5,<5.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + hash: + md5: 854c5907867eb5eb31ee079c7c4ab5ce + sha256: 8ec6c13d5beb58ca563f70b7f6480a422261aef1bbfb0495b2451c0a2e193f44 + manager: conda + name: libgdal + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgdal-3.5.1-hb972c36_1.tar.bz2 + version: 3.5.1 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=14.0.4' + liblapack: '>=3.9.0,<4.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 184b36f429276e81c107d6ca920fba43 + sha256: c057fb3c71d84e357d78a49ff738683773f8d48b97cc532d1b7198532a64c107 + manager: conda + name: numpy + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.23.4-py39hefdcf20_1.tar.bz2 + version: 1.23.4 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libgfortran: 5.* + libgfortran5: '>=11.0.1.dev0' + liblapack: '>=3.9.0,<4.0a0' + openmpi: '>=4.1.2,<5.0a0' + hash: + md5: a453e2b40359e59e5d1d26b12697d062 + sha256: 963bf6115c9764861eeb0e5a74811904314e84a03b374da863ee51d68e02b5aa + manager: conda + name: scalapack + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/scalapack-2.2.0-h515df86_1.tar.bz2 + version: 2.2.0 +- category: main + dependencies: + asn1crypto: '>=1.5.1' + importlib-metadata: '>=1.0' + python: '>=3.7' + hash: + md5: a55dd716b2f5f2ac858fd301921b6044 + sha256: 80f4816e1ade059fba0a963d3c441af237311a9d1f441eeec8f86398d0f85888 + manager: conda + name: scramp + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/scramp-1.4.2-pyhd8ed1ab_0.tar.bz2 + version: 1.4.2 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=11.1.0' + liblapack: '>=3.9.0,<4.0a0' + metis: '>=5.1.0,<5.2.0a0' + mpfr: '>=4.1.0,<5.0a0' + tbb: '>=2021.3.0' + hash: + md5: aa2b4cd2c3c870a5da51032c97952e8e + sha256: e0bf87e0d1d85a8b073f276194dcb38e41dab1be5198fbd742d86d37741e46d8 + manager: conda + name: suitesparse + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/suitesparse-5.10.1-h7cd81ec_1.tar.bz2 + version: 5.10.1 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libgfortran: 5.* + libgfortran5: '>=11.0.1.dev0' + hash: + md5: 563c35f95395ad5b986dc66239a938a9 + sha256: d959e26ec5f88bf4d1d51c5e21f0f4c77d4454a73ba0ad85f7d81c35556a02de + manager: conda + name: superlu + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/superlu-5.2.2-hc615359_0.tar.bz2 + version: 5.2.2 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcxx: '>=11.1.0' + libgfortran: 5.* + libgfortran5: '>=11.0.1.dev0' + liblapack: '>=3.9.0,<4.0a0' + llvm-openmp: '>=12.0.1' + metis: '>=5.1.0,<5.2.0a0' + openmpi: '>=4.1.2,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + hash: + md5: c0494f680f281c921d9baa9bf0da4f89 + sha256: 4ef231739110f8d3cc04b9b6e82ad51acfa70e541f772f18cbbff51115306678 + manager: conda + name: superlu_dist + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/superlu_dist-7.2.0-hfdb8677_0.tar.bz2 + version: 7.2.0 +- category: main + dependencies: + double-conversion: '>=3.2.0,<3.3.0a0' + eigen: '' + expat: '>=2.4.8,<3.0a0' + ffmpeg: '>=4.4.2,<5.0a0' + freetype: '>=2.10.4,<3.0a0' + gl2ps: '>=1.4.2,<1.4.3.0a0' + glew: '>=2.1.0,<2.2.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0' + jpeg: '>=9e,<10a' + jsoncpp: '>=1.9.5,<1.9.6.0a0' + libcxx: '>=13.0.1' + libnetcdf: '>=4.8.1,<4.8.2.0a0' + libogg: '>=1.3.4,<1.4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libtheora: '>=1.1.1,<1.2.0a0' + libtiff: '>=4.4.0,<5.0a0' + libxml2: '>=2.9.14,<2.11.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + loguru: '' + lz4-c: '>=1.9.3,<1.10.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + pugixml: '>=1.11.4,<1.12.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + sqlite: '>=3.39.0,<4.0a0' + tbb: '>=2021.5.0' + tbb-devel: '' + tk: '>=8.6.12,<8.7.0a0' + utfcpp: '' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 4f38c2cd68e351ae83c58a3756b4b414 + sha256: 937262fab90ca39b8eefbbd7d9456cb83e275ada91f8a5cea98d5f46c1bcfcff + manager: conda + name: vtk + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/vtk-9.1.0-qt_py39h927f1b2_211.tar.bz2 + version: 9.1.0 +- category: main + dependencies: + jinja2: '' + python: '>=3' + setuptools: '' + six: '' + hash: + md5: d96c4ccb1e66b1c1f507dd12c226749a + sha256: 0b3368667d51dfe0c9d976c7cf8243cd766ec9013ba86fe81ea7e13d0b113b85 + manager: conda + name: branca + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/branca-0.5.0-pyhd8ed1ab_0.tar.bz2 + version: 0.5.0 +- category: main + dependencies: + libcxx: '>=14.0.4' + numpy: '>=1.16' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: dc6a551e107d126735a09374b192eb8a + sha256: be211f59534249aad9a3fd34641c8c79cf4b8411d5da5b05a5b3def593912caa + manager: conda + name: contourpy + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.0.5-py39haaf3ac1_1.tar.bz2 + version: 1.0.5 +- category: main + dependencies: + fenics-libbasix: 0.5.1 hf081368_0 + libcxx: '>=14.0.4' + numpy: '' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 6e108a67f6c05559c5d83796e59e0226 + sha256: 20a01b9e2636225cf7a51e16fa482ef71dd9e1d4fc2cdbeb4b11e069dfc94309 + manager: conda + name: fenics-basix + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-basix-0.5.1-py39haaf3ac1_0.tar.bz2 + version: 0.5.1 +- category: main + dependencies: + numpy: '' + python: '>=3.7' + hash: + md5: 3ec9c78a7ce61ef133a2b8b814c9bb0c + sha256: c9328e358fb935d7b4b97dde103a980f937e5e6d18109dc2824e45093d6b4847 + manager: conda + name: fenics-ufl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2022.2.0-pyhd8ed1ab_0.tar.bz2 + version: 2022.2.0 +- category: main + dependencies: + hdf5: '>=1.12.1,<1.12.2.0a0' + libcxx: '>=13.0.1' + libgdal: 3.5.1 hb972c36_1 + numpy: '>=1.19.5,<2.0a0' + openssl: '>=3.0.5,<4.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: d334bce018dfc4915ecfafd8dd0e4df9 + sha256: db859338db4981aea1c17bbc3955f7f7f50a0c79f1c67c37c996cadfaf012b59 + manager: conda + name: gdal + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gdal-3.5.1-py39hedf9a19_1.tar.bz2 + version: 3.5.1 +- category: main + dependencies: + cached-property: '' + hdf5: '>=1.12.1,<1.12.2.0a0' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 61830991b0c03c465ca4fa4070703adf + sha256: 36d47f3ca7a505ee5d696bd170fd70733be35faacd5edfec82eb8e707beb146c + manager: conda + name: h5py + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/h5py-3.6.0-nompi_py39hd982b79_100.tar.bz2 + version: 3.6.0 +- category: main + dependencies: + numpy: '' + pillow: '>=8.3.2' + python: '>=3' + hash: + md5: 9d10b00d27b54836d40759608d558276 + sha256: 0f949184ba2b939c05c817b043566c616ea49e373989859e6cc47fd7aa8ea6fa + manager: conda + name: imageio + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/imageio-2.22.0-pyhfa7a67d_0.tar.bz2 + version: 2.22.0 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libgfortran: 5.* + libgfortran5: '>=11.0.1.dev0' + liblapack: '>=3.9.0,<4.0a0' + metis: '>=5.1.0,<5.2.0a0' + mumps-include: 5.2.1 hce30654_11 + openmpi: '>=4.1.2,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + ptscotch: '>=6.0.9,<6.0.10.0a0' + scalapack: '>=2.2.0,<2.3.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + hash: + md5: 831fa94c4a8cdf5c839c87b4d6e547c2 + sha256: b77b6cdccc0d817e29088e259becd14ffeaf33ef79a6260011e3d409557fee92 + manager: conda + name: mumps-mpi + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/mumps-mpi-5.2.1-h51c74a9_11.tar.bz2 + version: 5.2.1 +- category: main + dependencies: + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '' + freeimage: '>=3.18.0,<3.19.0a0' + freetype: '>=2.12.1,<3.0a0' + libcxx: '>=14.0.4' + rapidjson: '' + vtk: '>=9.1.0,<9.1.1.0a0' + hash: + md5: eb1f2ddba9bc639cbe0d55264df172c6 + sha256: 59da3bcdcfa99520140c6ee8957e152c34a39def9ba2ab1eb8f043d435fe3fc5 + manager: conda + name: occt + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/occt-7.6.3-h29025aa_0.tar.bz2 + version: 7.6.3 +- category: main + dependencies: + libcxx: '>=14.0.4' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python-dateutil: '>=2.8.1' + python_abi: 3.9.* *_cp39 + pytz: '>=2020.1' + hash: + md5: 27820cf16d511dcdba47fae152643db0 + sha256: 9e0c739019d359136584d62de451dfcb9a85b6bc0e6fae5f937c614f7f3e27b5 + manager: conda + name: pandas + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-1.5.1-py39hde7b980_1.tar.bz2 + version: 1.5.1 +- category: main + dependencies: + importlib-metadata: '>=1.0' + python: '>=3.7' + python-dateutil: '>=2.8.2' + scramp: '>=1.4.1' + hash: + md5: 5736218fec0be5f6f449dc353e8d76fc + sha256: d75c8222a33404dc5bae1c864dfc8106c90775c7f5b0bc8844b8728bd916af6d + manager: conda + name: pg8000 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/pg8000-1.29.2-pyhd8ed1ab_0.tar.bz2 + version: 1.29.2 +- category: main + dependencies: + cryptography: '>=38.0.0,<39' + python: '>=3.6' + hash: + md5: fbfa0a180d48c800f922a10a114a8632 + sha256: 42f04dded77ac2597108378d62b121697d0e982aba7b20a462a7239030563628 + manager: conda + name: pyopenssl + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-22.1.0-pyhd8ed1ab_0.tar.bz2 + version: 22.1.0 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=14.0.4' + libgfortran: 5.* + libgfortran5: '>=11.3.0' + liblapack: '>=3.9.0,<4.0a0' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: c8e5b3a2002604e456f1abdae2ad876b + sha256: 6facf133ee86c1cc8e67960de51069cb82f80728480c0c47496706afaa7f8aa7 + manager: conda + name: scipy + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.9.3-py39h18313fe_0.tar.bz2 + version: 1.9.3 +- category: main + dependencies: + geos: '>=3.11.0,<3.11.1.0a0' + numpy: '>=1.20.3,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: 99d13d51adb398d40f6330121f92730c + sha256: b4f10be4c2dd41558e83159aabdce75045b72f01f13dd59a9ced24ea9437657d + manager: conda + name: shapely + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/shapely-1.8.5-py39hda9c22c_0.tar.bz2 + version: 1.8.5 +- category: main + dependencies: + numpy: '' + pyparsing: '>=2.1.6' + python: '' + hash: + md5: cb83a3d6ecf73f50117635192414426a + sha256: ebb8f5f9e362f186fb7d732e656f85c969b86309494436eba51cc3b8b96683f7 + manager: conda + name: snuggs + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-py_0.tar.bz2 + version: 1.4.7 +- category: main + dependencies: + cffi: '' + fenics-basix: 0.5.* + fenics-ufl: 2022.2.* + numpy: '' + python: '>=3.7' + setuptools: '' + hash: + md5: 2dcc01a5199492d95b197d7265f5336a + sha256: 0314473971094fc82ad3c28ee192647821507f6507efcae0949cf7fa397779f0 + manager: conda + name: fenics-ffcx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.5.0-pyhb871ab6_1.tar.bz2 + version: 0.5.0 +- category: main + dependencies: + attrs: '>=17' + click: '>=4.0' + click-plugins: '>=1.0' + cligj: '>=0.5' + gdal: '' + libcxx: '>=13.0.1' + libgdal: '>=3.5.0,<3.6.0a0' + munch: '' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + setuptools: '' + shapely: '' + six: '>=1.7' + hash: + md5: 17fe38c5f7a7c0f696e99e0207d96f21 + sha256: 3223777248d5d43ff151d8cb6a5fb428bc6fe7f72ae2198c698bd3c540332208 + manager: conda + name: fiona + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fiona-1.8.21-py39hf45f784_2.tar.bz2 + version: 1.8.21 +- category: main + dependencies: + packaging: '' + pandas: '>=1.0.5' + pyproj: '>=2.6.1.post1' + python: '>=3.8' + shapely: '>=1.7,<2' + hash: + md5: 9e822916c45fddd55bdecc1f121f8143 + sha256: bd293b8538efc9667e2d3df6f0dfb9994262c7ce57a191e4b70acd2e38be37de + manager: conda + name: geopandas-base + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.12.0-pyha770c72_0.tar.bz2 + version: 0.12.0 +- category: main + dependencies: + fltk: '>=1.3.8,<1.4.0a0' + gmp: '>=6.2.1,<7.0a0' + jpeg: '>=9e,<10a' + libblas: '>=3.9.0,<4.0a0' + libcxx: '>=13.0.1' + liblapack: '>=3.9.0,<4.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + occt: '>=7.6.2,<7.7.0a0' + zlib: '>=1.2.12,<1.3.0a0' + hash: + md5: 6d8338c7896cae9234baa1d7228f49e9 + sha256: 868076be8e70bf441582f666671992f057790d8c1dc1043bd648a07a993a9026 + manager: conda + name: gmsh + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gmsh-4.10.5-h8f86c64_0.tar.bz2 + version: 4.10.5 +- category: main + dependencies: + certifi: '>=2020.06.20' + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + freetype: '>=2.12.1,<3.0a0' + kiwisolver: '>=1.0.1' + libcxx: '>=14.0.4' + numpy: '>=1.20.3,<2.0a0' + packaging: '>=20.0' + pillow: '>=6.2.0' + pyparsing: '>=2.2.1' + python: '>=3.9,<3.10.0a0 *_cpython' + python-dateutil: '>=2.7' + python_abi: 3.9.* *_cp39 + hash: + md5: 9f9f3c99cfa857ef9577c2352ba1db65 + sha256: 7515e8d623ad4f9857a0105d1138c0b52e48434656c398c2e5f80769d7d468d0 + manager: conda + name: matplotlib-base + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.6.1-py39h35e9e80_0.tar.bz2 + version: 3.6.1 +- category: main + dependencies: + fftw: '* mpi_openmpi_*' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + hypre: '>=2.25.0,<2.25.1.0a0' + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=13.0.1' + libgfortran: 5.* + libgfortran5: '>=11.0.1.dev0' + liblapack: '>=3.9.0,<4.0a0' + metis: '>=5.1.0,<5.2.0a0' + mumps-mpi: '>=5.2.1,<5.2.2.0a0' + openmpi: '>=4.1.4,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + ptscotch: '>=6.0.9,<6.0.10.0a0' + scalapack: '>=2.2.0,<2.3.0a0' + scotch: '>=6.0.9,<6.0.10.0a0' + suitesparse: '>=5.10.1,<5.10.2.0a0' + superlu: '' + superlu_dist: '>=7.1.1,<8.0a0' + yaml: '>=0.2.5,<0.3.0a0' + hash: + md5: 9ac30b7790133bf08fe4ef4d3490437e + sha256: 2483644bbbabe2985dff9d0bda8fc5f0662e76e8b93b6490ba4ba90e6fa333df + manager: conda + name: petsc + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/petsc-3.17.3-real_h5d98e65_100.tar.bz2 + version: 3.17.3 +- category: main + dependencies: + affine: '' + attrs: '' + certifi: '' + click: '>=4' + click-plugins: '' + cligj: '>=0.5' + libcxx: '>=14.0.4' + libgdal: '>=3.5.1,<3.6.0a0' + numpy: '>=1.19.5,<2.0a0' + proj: '>=9.0.1,<9.0.2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + setuptools: '>=0.9.8' + snuggs: '>=1.4.1' + hash: + md5: 50f9bb611cb31362ed2e10b53bd71bfa + sha256: d3cb5ed68f76f701fcacb87e3d6dba1655da710d4439a3fbc5b0a26e1cf8f7d5 + manager: conda + name: rasterio + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rasterio-1.3.2-py39he5a3cb7_0.tar.bz2 + version: 1.3.2 +- category: main + dependencies: + joblib: '>=1.0.0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=13.0.1' + llvm-openmp: '>=13.0.1' + numpy: '>=1.19.5,<2.0a0' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + scipy: '' + threadpoolctl: '>=2.0.0' + hash: + md5: eec49ef40bed5849adbcd064924f4f27 + sha256: 301236a5ce25b757a219a2e0a7c69c45b39767b81a48e5498e525c519f3087d2 + manager: conda + name: scikit-learn + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.1.2-py39h598ef33_0.tar.bz2 + version: 1.1.2 +- category: main + dependencies: + brotlipy: '>=0.6.0' + certifi: '' + cryptography: '>=1.3.4' + idna: '>=2.0.0' + pyopenssl: '>=0.14' + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: <4.0 + hash: + md5: 0738978569b10669bdef41c671252dd1 + sha256: 57a823b83428156aa2bc18f34159a744657c9bd117a125ca4559b0518a2e4fa2 + manager: conda + name: urllib3 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.11-pyhd8ed1ab_0.tar.bz2 + version: 1.26.11 +- category: main + dependencies: + jmespath: '>=0.7.1,<2.0.0' + python: '>=3.7' + python-dateutil: '>=2.1,<3.0.0' + urllib3: '>=1.25.4,<1.27' + hash: + md5: 3435405683a6e8952d941638a8c24fc0 + sha256: 1e6c560869547e57c0dbf9c59cc8f7412dd6ec56cf529c1a1cc520355dfb8dc9 + manager: conda + name: botocore + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.1-pyhd8ed1ab_0.tar.bz2 + version: 1.28.1 +- category: main + dependencies: + networkx: '' + numpy: '>=1.3' + pandas: '>=1.0' + python: '>=3.5' + scikit-learn: '' + scipy: '>=1.0' + hash: + md5: 908bbfb54da154042c5cbda77b37a3d1 + sha256: 1435305fb0a127b3154e76c0836d44526eeb93e80bd37596128d7ad8fb196d97 + manager: conda + name: mapclassify + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.4.3-pyhd8ed1ab_0.tar.bz2 + version: 2.4.3 +- category: main + dependencies: + libgfortran: 5.* + libgfortran5: '>=11.0.1.dev0' + numpy: '>=1.19.5,<2.0a0' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + hash: + md5: b5b16834090ef3f38f05d5f16c21d245 + sha256: 1ccd8e98584b7ccdf1c6d8c335708a63ccaefa500872004d4a45eef51ffb50f7 + manager: conda + name: petsc4py + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/petsc4py-3.17.3-real_h275bb75_101.tar.bz2 + version: 3.17.3 +- category: main + dependencies: + gmsh: '>=4.10.5,<4.10.6.0a0' + numpy: '' + python: '' + hash: + md5: 6c18c6322743fa7d5daaf4735c1905af + sha256: 57c72e59283d4dcdbedb0b0f86bb4d66dded5bb16be975411817b5c7a3f9a811 + manager: conda + name: python-gmsh + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/python-gmsh-4.10.5-h57928b3_0.tar.bz2 + version: 4.10.5 +- category: main + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<3' + idna: '>=2.5,<4' + python: '>=3.7,<4.0' + urllib3: '>=1.21.1,<1.27' + hash: + md5: 089382ee0e2dc2eae33a04cc3c2bddb0 + sha256: b45d0da6774c8231ab4fef0427b3050e7c54c84dfe453143dd4010999c89e050 + manager: conda + name: requests + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.28.1-pyhd8ed1ab_1.tar.bz2 + version: 2.28.1 +- category: main + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=13.0.1' + libgfortran: 5.* + libgfortran5: '>=11.0.1.dev0' + liblapack: '>=3.9.0,<4.0a0' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + suitesparse: '>=5.10.1,<5.10.2.0a0' + hash: + md5: 370a5ace4fc55f63d566e4a884edc9e5 + sha256: 69840506327196bf20deccc80a241e654cac68199aedc6be815062824ee5dd49 + manager: conda + name: slepc + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/slepc-3.17.1-real_hcfedfd6_102.tar.bz2 + version: 3.17.1 +- category: main + dependencies: + boost-cpp: '>=1.74.0,<1.74.1.0a0' + fenics-libbasix: '>=0.5.1,<0.5.2.0a0' + fenics-ufcx: '>=0.5.0,<0.5.1.0a0' + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + libadios2: '>=2.8.3,<2.8.4.0a0 mpi_openmpi_*' + libcxx: '>=14.0.4' + openmpi: '>=4.1.4,<5.0a0' + parmetis: '>=4.0.3,<4.1.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + ptscotch: '>=6.0.9,<6.0.10.0a0' + pugixml: '>=1.11.4,<1.12.0a0' + slepc: '>=3.17.1,<3.18.0a0 real_*' + xtensor: '>=0.24.3,<0.25.0a0' + hash: + md5: b79e84e821f09b3c2966d35925d7178b + sha256: 193dabb15ddbfc38d11a2846af6338a2fa193c3c17b8cfd687d793735ec45b9c + manager: conda + name: fenics-libdolfinx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-libdolfinx-0.5.2-h1ff1027_100.tar.bz2 + version: 0.5.2 +- category: main + dependencies: + branca: '>=0.3.0' + jinja2: '>=2.9' + numpy: '' + python: '>=3.6' + requests: '' + hash: + md5: c69e368f97d9939621daebe97dbbd82d + sha256: 73c5aad58d59df4f4991e7f3bceda5938831c3ee74221899a14f7eaefb8af5de + manager: conda + name: folium + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/folium-0.13.0-pyhd8ed1ab_0.tar.bz2 + version: 0.13.0 +- category: main + dependencies: + botocore: '>=1.12.36,<2.0a.0' + python: '>=3.7' + hash: + md5: 900e74d8547fbea3af028937df28ed77 + sha256: 0e459ed32b00e96b62c2ab7e2dba0135c73fd980120fe1a7bd49901f2d50760f + manager: conda + name: s3transfer + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/s3transfer-0.6.0-pyhd8ed1ab_0.tar.bz2 + version: 0.6.0 +- category: main + dependencies: + numpy: '>=1.19.5,<2.0a0' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + petsc4py: 3.17.* + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + slepc: '>=3.17.1,<3.18.0a0 real_*' + hash: + md5: 9678535ab574d7210098173fd050d10e + sha256: c95fa4ea68dcc6888e55067412c72e5530efeefcd2f819c0bca3dc5376906e1b + manager: conda + name: slepc4py + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/slepc4py-3.17.1-real_hbb689fd_103.tar.bz2 + version: 3.17.1 +- category: main + dependencies: + botocore: '>=1.28.1,<1.29.0' + jmespath: '>=0.7.1,<2.0.0' + python: '>=3.7' + s3transfer: '>=0.6.0,<0.7.0' + hash: + md5: 5512a9ee1a05c62d7ec13f432bd7014c + sha256: 9779dd07bb1c1f700a32c9ea771552ee6de8e5d83f84df63d1f37870101a70ac + manager: conda + name: boto3 + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.1-pyhd8ed1ab_0.tar.bz2 + version: 1.25.1 +- category: main + dependencies: + cffi: '' + fenics-basix: 0.5.* + fenics-ffcx: 0.5.* + fenics-libdolfinx: 0.5.2 h1ff1027_100 + fenics-ufl: 2022.2.* + hdf5: '>=1.12.1,<1.12.2.0a0 mpi_openmpi_*' + libcxx: '>=14.0.4' + mpi4py: '' + numpy: '' + openmpi: '>=4.1.4,<5.0a0' + petsc: '>=3.17.3,<3.18.0a0 real_*' + petsc4py: '' + python: '>=3.9,<3.10.0a0 *_cpython' + python_abi: 3.9.* *_cp39 + slepc: '>=3.17.1,<3.18.0a0 real_*' + slepc4py: '' + hash: + md5: 64f26edb132e39829dfef52d7eaf4b62 + sha256: 8ea44628532381d3930863089a22a70f542d40274afdd63af07f78220a3a70a4 + manager: conda + name: fenics-dolfinx + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fenics-dolfinx-0.5.2-py39h1f1acac_100.tar.bz2 + version: 0.5.2 +- category: main + dependencies: + fiona: '' + folium: '' + geopandas-base: 0.12.0 pyha770c72_0 + mapclassify: '>=2.4.0' + matplotlib-base: '' + python: '>=3.8' + rtree: '' + xyzservices: '' + hash: + md5: 79d4a86d08b1ad415dcb24b3241593cf + sha256: 3dbba0065f1344e62795b085a1ca1369c8909a0432bb669bf7955630e95cfb5f + manager: conda + name: geopandas + optional: false + platform: osx-arm64 + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.12.0-pyhd8ed1ab_0.tar.bz2 + version: 0.12.0 +- category: main + dependencies: {} + hash: + sha256: 4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3 + manager: pip + name: async-timeout + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/e1/1e/5a4441be21b0726c4464f3f23c8b19628372f606755a9d2e46c187e65ec4/async_timeout-3.0.1-py3-none-any.whl + version: 3.0.1 +- category: main + dependencies: {} + hash: + sha256: 86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c + manager: pip + name: attrs + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl + version: 22.1.0 +- category: main + dependencies: {} + hash: + sha256: 92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1 + manager: pip + name: cachetools + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl + version: 4.2.4 +- category: main + dependencies: {} + hash: + sha256: 90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382 + manager: pip + name: certifi + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl + version: 2022.9.24 +- category: main + dependencies: {} + hash: + sha256: fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 + manager: pip + name: chardet + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl + version: 3.0.4 +- category: main + dependencies: {} + hash: + sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f + manager: pip + name: charset-normalizer + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl + version: 2.1.1 +- category: main + dependencies: {} + hash: + sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 + manager: pip + name: colorama + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl + version: 0.4.6 +- category: main + dependencies: {} + hash: + sha256: 896bda76db13f229c1126d5e384673f78e06685e70d76fff4c5a3f65b4068b4d + manager: pip + name: crc32c + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/46/b5/98ed31252134101d75c4a46f09412ce55fb42cf46f41da002d336caeba0a/crc32c-2.3-cp39-cp39-macosx_11_0_arm64.whl + version: '2.3' +- category: main + dependencies: {} + hash: + sha256: 3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 + manager: pip + name: cycler + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl + version: 0.11.0 +- category: main + dependencies: {} + hash: + sha256: b3b28ec99529110cb004c1f4fa866124d32a14bb588c41906d0a0a8d5320a8f2 + manager: pip + name: deflate + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/1c/ff/5347cc4473a11a724f7d825e7d9ae0d641990e71a5820b618cbb3ab8702c/deflate-0.3.0.tar.gz + version: 0.3.0 +- category: main + dependencies: {} + hash: + sha256: a07ffd2351b8c678dfc4a856a3005f8067aea51d6ba6c700796a4d9e280f39f0 + manager: pip + name: dill + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/be/e3/a84bf2e561beed15813080d693b4b27573262433fced9c1d1fea59e60553/dill-0.3.6-py3-none-any.whl + version: 0.3.6 +- category: main + dependencies: {} + hash: + sha256: 99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff + manager: pip + name: distro + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/f4/2c/c90a3adaf0ddb70afe193f5ebfb539612af57cffe677c3126be533df3098/distro-1.8.0-py3-none-any.whl + version: 1.8.0 +- category: main + dependencies: {} + hash: + sha256: b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d + manager: pip + name: future + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz + version: 0.18.2 +- category: main + dependencies: {} + hash: + sha256: c6c777a480337ac14f38564ac88ae82d4cd238bf293f0a22295b66eb89ffced7 + manager: pip + name: google-crc32c + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/23/f8/a6e6304484d72a53c80bbcbe2225c29dfe5cbe17aa1d45ed5c906929025b/google_crc32c-1.5.0-cp39-cp39-macosx_10_9_universal2.whl + version: 1.5.0 +- category: main + dependencies: {} + hash: + sha256: f5e09dc5c6e1796969fd4b775ea1417d70e49a5df29aaa8e5d10675d9e11872c + manager: pip + name: greenlet + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/ea/37/e54ce453b298e890f59dba3db32461579328a07d5b65e3eabf80f971c099/greenlet-1.1.3.post0.tar.gz + version: 1.1.3.post0 +- category: main + dependencies: {} + hash: + sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2 + manager: pip + name: idna + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl + version: '3.4' +- dependencies: {} + hash: + sha256: cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f + manager: pip + name: jmespath + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl + version: 0.10.0 +- category: main + dependencies: {} + hash: + sha256: b533558eae785e33e8c148a8d9921692a9fe5aa516efbdff8606e7d87b9d5824 + manager: pip + name: kiwisolver + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/26/f3/1daa54509332dff966e1493fe0d5b573e0e11a56d301323ec6c667a53142/kiwisolver-1.4.4-cp39-cp39-macosx_11_0_arm64.whl + version: 1.4.4 +- category: main + dependencies: {} + hash: + sha256: a007b1638e148c3cfb6bf0bdc4f82776cef0ac487191d093cdc316905e504071 + manager: pip + name: multidict + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/98/16/7af490ccfe470dad4b3d28fc69b1f3b4cdfe0fd5e279b299e103edbb8505/multidict-6.0.2-cp39-cp39-macosx_11_0_arm64.whl + version: 6.0.2 +- category: main + dependencies: {} + hash: + sha256: b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8 + manager: pip + name: nest-asyncio + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/e9/1a/6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0/nest_asyncio-1.5.6-py3-none-any.whl + version: 1.5.6 +- category: main + dependencies: {} + hash: + sha256: 15cdf7f7c157637107ea690cabbc488018f8256fa28242aed0fb24c93c03a06d + manager: pip + name: networkx + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d0/00/1713dd6735d5a646cabdd99ff750e969795134d7d33f462ad71dfd07fa76/networkx-2.8.7-py3-none-any.whl + version: 2.8.7 +- category: main + dependencies: {} + hash: + sha256: f850489d89ea12be486492e68f0fd63e402fa28e426d4f0b5fc1eec0595e6109 + manager: pip + name: orjson + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/5c/cb/35dd5663b90d60e04c07b520f464f3c150f027c024f45441a9eb4c863c21/orjson-3.8.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl + version: 3.8.1 +- category: main + dependencies: {} + hash: + sha256: 4ad2f835e0ad81d1689f1b7e3fbac7b01bb8777d5a985c8962bedee0cc6d43da + manager: pip + name: pillow + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/aa/bc/21097cd891dd2fa02f2b3d767e02e883e026482e59d29975d1bc30024aa3/Pillow-9.2.0-cp39-cp39-macosx_11_0_arm64.whl + version: 9.2.0 +- category: main + dependencies: {} + hash: + sha256: 56fe2f099ecd8a557b8948082504492de90e8598c34733c9b1fdeca8f7b6de61 + manager: pip + name: pox + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/7d/ee/93fb2380de1458a50c44b8aa65c6f111df1103c3d4fbd74b70f51745e081/pox-0.3.2-py3-none-any.whl + version: 0.3.2 +- category: main + dependencies: {} + hash: + sha256: f355d2caeed8bd7c9e4a860c471f31f7e66d1ada2791ab5458ea7dca15a51e41 + manager: pip + name: ppft + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/0f/c1/dd740386023b1472d2635db9d8f7107024d9931cc8c01b37b48a85eb3811/ppft-1.7.6.6-py3-none-any.whl + version: 1.7.6.6 +- category: main + dependencies: {} + hash: + sha256: b5ab0b8918c136345ff045d4b3d5f719b505b7c8af45092d7f45e304f55e50a1 + manager: pip + name: protobuf + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/74/44/ec74b5c0dcc9725545212d13216fe7550377b1600cac9b2bbb21cbd625d7/protobuf-4.21.9-cp37-abi3-macosx_10_9_universal2.whl + version: 4.21.9 +- category: main + dependencies: {} + hash: + sha256: 9c38d3869238e9d3409239bc05bc27d6b7c99c2a460ea337d2814b35fb4fea1b + manager: pip + name: psycopg2-binary + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/63/db/67c2a94c3d89c48a2a4efc2029f6dc082faa3bc3dd14de49346c126c9600/psycopg2_binary-2.9.5-cp39-cp39-macosx_11_0_arm64.whl + version: 2.9.5 +- category: main + dependencies: {} + hash: + sha256: 39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d + manager: pip + name: pyasn1 + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/62/1e/a94a8d635fa3ce4cfc7f506003548d0a2447ae76fd5ca53932970fe3053f/pyasn1-0.4.8-py2.py3-none-any.whl + version: 0.4.8 +- category: main + dependencies: {} + hash: + sha256: 5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc + manager: pip + name: pyparsing + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/6c/10/a7d0fa5baea8fe7b50f448ab742f26f52b80bfca85ac2be9d35cdd9a3246/pyparsing-3.0.9-py3-none-any.whl + version: 3.0.9 +- category: main + dependencies: {} + hash: + sha256: f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5 + manager: pip + name: pyrsistent + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/15/fa/64ed4c29d36df26906f03a1fb360056e3cbc063b00446f3663252bdd175a/pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl + version: 0.18.1 +- category: main + dependencies: {} + hash: + sha256: 335ab46900b1465e714b4fda4963d87363264eb662aab5e65da039c25f1f5b22 + manager: pip + name: pytz + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/b5/d7/91fd8911d22e7fac794803095dd192bf1ebd70c7603272085230d915e738/pytz-2022.5-py2.py3-none-any.whl + version: '2022.5' +- category: main + dependencies: {} + hash: + sha256: e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174 + manager: pip + name: pyyaml + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/67/d4/b95266228a25ef5bd70984c08b4efce2c035a4baa5ccafa827b266e3dc36/PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl + version: '6.0' +- category: main + dependencies: {} + hash: + sha256: 1f08fd5a2bea9c4180db71678e850b995d2a5f4537be0e94557668cf0f5f9497 + manager: pip + name: ruamel.yaml.clib + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d5/31/a3e6411947eb7a4f1c669f887e9e47d61a68f9d117f10c3c620296694a0b/ruamel.yaml.clib-0.2.7.tar.gz + version: 0.2.7 +- category: main + dependencies: {} + hash: + sha256: ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4 + manager: pip + name: semver + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/0b/70/b84f9944a03964a88031ef6ac219b6c91e8ba2f373362329d8770ef36f02/semver-2.13.0-py2.py3-none-any.whl + version: 2.13.0 +- category: main + dependencies: {} + hash: + sha256: a712f4b205a0c2bbd9bfbefbe27f83ad892904f6cf9e165644dec0fb2320c508 + manager: pip + name: simpleitk + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/30/02/521b1822c6a97cc8f1597e997dd4bee6461573e9c3fc1cf1dc584ddf68ee/SimpleITK-2.2.0-cp39-cp39-macosx_11_0_arm64.whl + version: 2.2.0 +- category: main + dependencies: {} + hash: + sha256: 5540fba2d437edaf4aa4fbb80f43f42a8334206ad1ad3b27aef577fd989f20d9 + manager: pip + name: simplejson + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/07/86/e206883709a2a02710b338fa6bc5bdbe3ac97ca7187e1539a10c06895803/simplejson-3.17.6-cp39-cp39-macosx_11_0_arm64.whl + version: 3.17.6 +- category: main + dependencies: {} + hash: + sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 + manager: pip + name: six + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl + version: 1.16.0 +- category: main + dependencies: {} + hash: + sha256: 35525cd47f82830069f0d6b73f7eb83bc5b73ee2fff0437952cedf98b27653ac + manager: pip + name: tenacity + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/a5/94/933ce16d18450ccf518a6da5bd51418611e8776b992070b9f40b2f9cedff/tenacity-8.1.0-py3-none-any.whl + version: 8.1.0 +- category: main + dependencies: {} + hash: + sha256: 16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e + manager: pip + name: typing-extensions + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl + version: 4.4.0 +- dependencies: {} + hash: + sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997 + manager: pip + name: urllib3 + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl + version: 1.26.12 +- category: main + dependencies: {} + hash: + sha256: 2666401939cdaa5f4e0c08cf7f20c9b21423b95e88f4675b1443973bdb080c42 + manager: pip + name: zope.event + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/9e/85/b45408c64f3b888976f1d5b37eed8d746b8d5729a66a49ec846fda27d371/zope.event-4.5.0-py2.py3-none-any.whl + version: 4.5.0 +- category: main + dependencies: {} + hash: + sha256: 700ebf9662cf8df70e2f0cb4988e078c53f65ee3eefd5c9d80cf988c4175c8e3 + manager: pip + name: zope.interface + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/62/ba/e517891d44208f2a6cf493109dfff59134bb922a9c8bd2a896da7d9a82a1/zope.interface-5.5.0.tar.gz + version: 5.5.0 +- category: main + dependencies: + greenlet: '>=1.1.3,<2.0' + zope.event: '*' + zope.interface: '*' + hash: + sha256: df3042349c9a4460eeaec8d0e56d737cb183eed055e75a6af9dbda94aaddaf4d + manager: pip + name: gevent + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/97/5e/be2ac96fe2e6d5ad40c0ed5cf83c07ce6a74b9a5a1f0422e8b5d9225c865/gevent-22.10.1.tar.gz + version: 22.10.1 +- category: main + dependencies: + numpy: '>=1.7.1' + hash: + sha256: 2636ebf8ea1ad20b5a5d3cf49526c195335d567da00f6b21f0298957ede23425 + manager: pip + name: glymur + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d1/f9/01b464dd2b312c1f9bec26f985f2d0a9eef1a7390e407588578cc135fde0/Glymur-0.8.19.tar.gz + version: 0.8.19 +- category: main + dependencies: + google-crc32c: '>=1.0,<2.0dev' + hash: + sha256: 2aa004c16d295c8f6c33b2b4788ba59d366677c0a25ae7382436cb30f776deaa + manager: pip + name: google-resumable-media + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/4f/8e/5f42ac809ad8bccca7060132a274d714fbf4e2ef8f2424ef2301a2dbc4fb/google_resumable_media-2.4.0-py2.py3-none-any.whl + version: 2.4.0 +- category: main + dependencies: + protobuf: '>=3.15.0,<5.0.0dev' + hash: + sha256: 8eb2cbc91b69feaf23e32452a7ae60e791e09967d81d4fcc7fc388182d1bd394 + manager: pip + name: googleapis-common-protos + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/e2/fd/d9efa2085bd762fba3a637eb3e36d76d72eb6e083d170aeaca65a75f1f9c/googleapis_common_protos-1.56.4-py2.py3-none-any.whl + version: 1.56.4 +- dependencies: + numpy: '*' + pillow: '>=8.3.2' + hash: + sha256: 9bdafe9c5a3d336a187f3f554f3e30bcdbf8a1d7d46f0e4d94e4a535adfb64c7 + manager: pip + name: imageio + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/97/e2/c5bb16905ab91a0fac03f2a4f1579835bcfea3e297f8cf53e4e2b43c270c/imageio-2.22.2-py3-none-any.whl + version: 2.22.2 +- category: main + dependencies: + attrs: '>=17.4.0' + pyrsistent: '>=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2' + hash: + sha256: 9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9 + manager: pip + name: jsonschema + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/d8/ad/b96e267a185d0050ac0f128827da6f16a7fd0fd5e045294771b3c265f2e9/jsonschema-4.16.0-py3-none-any.whl + version: 4.16.0 +- category: main + dependencies: + dill: '>=0.3.6' + hash: + sha256: 63cee628b74a2c0631ef15da5534c8aedbc10c38910b9c8b18dcd327528d1ec7 + manager: pip + name: multiprocess + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/6a/f4/fbeb03ef7abdda54db4a6a75c971b88ab73d724ff09e3275cc1e99f1c946/multiprocess-0.70.14-py39-none-any.whl + version: 0.70.14 +- category: main + dependencies: + pyparsing: '>=2.0.2,<3.0.5 || >3.0.5' + hash: + sha256: ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 + manager: pip + name: packaging + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl + version: '21.3' +- category: main + dependencies: + numpy: '>=1.4' + six: '*' + hash: + sha256: 7eb5349754ed6aa982af81f636479b1b8db9d5b1a6e957a6016ec0534b5c86b7 + manager: pip + name: patsy + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/2a/e4/b3263b0e353f2be7b14f044d57874490c9cef1798a435f038683acea5c98/patsy-0.5.3-py2.py3-none-any.whl + version: 0.5.3 +- category: main + dependencies: + pyasn1: '>=0.4.6,<0.5.0' + hash: + sha256: a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74 + manager: pip + name: pyasn1-modules + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/95/de/214830a981892a3e286c3794f41ae67a4495df1108c3da8a9f62159b9a9d/pyasn1_modules-0.2.8-py2.py3-none-any.whl + version: 0.2.8 +- category: main + dependencies: + numpy: '>=1.11.1' + hash: + sha256: 27ef001f959470aa935d0af03d5243587d17d9cc648a1c83a88218471b018e40 + manager: pip + name: pynrrd + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/83/77/afb60173b5247431cd93ef226ab0568c4ef6771c7e4db733d03cb0485e9e/pynrrd-0.4.3-py2.py3-none-any.whl + version: 0.4.3 +- category: main + dependencies: + six: '>=1.5' + hash: + sha256: 961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 + manager: pip + name: python-dateutil + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl + version: 2.8.2 +- category: main + dependencies: + numpy: '>=1.17.3' + hash: + sha256: d0e56cd7a53aed3cceca91a04d62feb3a0aca6725b1912d29546c26f6ea90426 + manager: pip + name: pywavelets + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/a0/32/eeeaa4de640a84e2cc35c25aea289367059abce0cac84a9987b139a2a25f/PyWavelets-1.4.1-cp39-cp39-macosx_11_0_arm64.whl + version: 1.4.1 +- category: main + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<3' + idna: '>=2.5,<4' + urllib3: '>=1.21.1,<1.27' + hash: + sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 + manager: pip + name: requests + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl + version: 2.28.1 +- category: main + dependencies: + pyasn1: '>=0.1.3' + hash: + sha256: 90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7 + manager: pip + name: rsa + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl + version: '4.9' +- category: main + dependencies: + ruamel.yaml.clib: '>=0.2.6' + hash: + sha256: 742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7 + manager: pip + name: ruamel.yaml + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/9e/cb/938214ac358fbef7058343b3765c79a1b7ed0c366f7f992ce7ff38335652/ruamel.yaml-0.17.21-py3-none-any.whl + version: 0.17.21 +- category: main + dependencies: + numpy: '>=1.18.5,<1.26.0' + hash: + sha256: fbc5c05c85c1a02be77b1ff591087c83bc44579c6d2bd9fb798bb64ea5e1a027 + manager: pip + name: scipy + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/0a/2e/44795c6398e24e45fa0bb61c3e98de1cfea567b1b51efd3751e2f7ff9720/scipy-1.9.3.tar.gz + version: 1.9.3 +- category: main + dependencies: + greenlet: '!=0.4.17' + hash: + sha256: 177e41914c476ed1e1b77fd05966ea88c094053e17a85303c4ce007f88eff363 + manager: pip + name: sqlalchemy + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/e4/56/8ea85eaab7d93b58f9c213ad8fc5882838189a29fc8cc401d80710a12969/SQLAlchemy-1.4.42.tar.gz + version: 1.4.42 +- category: main + dependencies: + colorama: '*' + hash: + sha256: 6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1 + manager: pip + name: tqdm + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl + version: 4.64.1 +- category: main + dependencies: + idna: '>=2.0' + multidict: '>=4.0' + hash: + sha256: 4c322cbaa4ed78a8aac89b2174a6df398faf50e5fc12c4c191c40c59d5e28357 + manager: pip + name: yarl + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/5e/6b/012f4874880fb40f09c794f62b79fc32291837797a5929914832ced2cdb3/yarl-1.8.1-cp39-cp39-macosx_11_0_arm64.whl + version: 1.8.1 +- category: main + dependencies: + cffi: '>=1.11' + hash: + sha256: 8677ffc6a6096cccbd892e558471c901fd821aba12b7fbc63833c7346f549224 + manager: pip + name: zstandard + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/b0/d6/e2adb751daad035da46d9103f195f79a453299fb58fc3059409463c86613/zstandard-0.18.0-cp39-cp39-macosx_11_0_arm64.whl + version: 0.18.0 +- category: main + dependencies: + async-timeout: '>=3.0,<4.0' + attrs: '>=17.3.0' + chardet: '>=2.0,<4.0' + multidict: '>=4.5,<7.0' + typing-extensions: '>=3.6.5' + yarl: '>=1.0,<2.0' + hash: + sha256: 5d84ecc73141d0a0d61ece0742bb7ff5751b0657dab8405f899d3ceb104cc7de + manager: pip + name: aiohttp + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/7a/95/eb60aaad7943e18c9d091de93c9b0b5ed40aa67c7d5e3c5ee9b36f100a38/aiohttp-3.7.4.tar.gz + version: 3.7.4 +- dependencies: + jmespath: '>=0.7.1,<1.0.0' + python-dateutil: '>=2.1,<3.0.0' + urllib3: '>=1.25.4,<1.27' + hash: + sha256: 6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b + manager: pip + name: botocore + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/c7/ea/11c3beca131920f552602b98d7ba9fc5b46bee6a59cbd48a95a85cbb8f41/botocore-1.20.112-py2.py3-none-any.whl + version: 1.20.112 +- category: main + dependencies: + cachetools: '>=2.0.0,<6.0' + pyasn1-modules: '>=0.2.1' + rsa: '>=3.1.4,<5' + six: '>=1.9.0' + hash: + sha256: 99510e664155f1a3c0396a076b5deb6367c52ea04d280152c85ac7f51f50eb42 + manager: pip + name: google-auth + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/98/dc/ab7e2156ec6a33c66d85986178abc7944f40804d7558cd544ccb114af6a9/google_auth-2.13.0-py2.py3-none-any.whl + version: 2.13.0 +- category: main + dependencies: + packaging: '>=17.0' + hash: + sha256: 35e02a3a06899c9119b785c12a22f4cda361745d66a71ab691fd7610202ae104 + manager: pip + name: marshmallow + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/c3/06/e0300cb5f9b5ff9b6d0accdd3536c01bd2300f8154781455914752ab8903/marshmallow-3.18.0-py3-none-any.whl + version: 3.18.0 +- dependencies: + cycler: '>=0.10' + kiwisolver: '>=1.0.1' + numpy: '>=1.16' + pillow: '>=6.2.0' + pyparsing: '>=2.2.1' + python-dateutil: '>=2.7' + hash: + sha256: d8d994cefdff9aaba45166eb3de4f5211adb4accac85cbf97137e98f26ea0219 + manager: pip + name: matplotlib + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/60/d3/286925802edaeb0b8834425ad97c9564ff679eb4208a184533969aa5fc29/matplotlib-3.4.2.tar.gz + version: 3.4.2 +- category: main + dependencies: + numpy: '>=1.13.3' + packaging: '*' + hash: + sha256: 052ec3a55cc1ccc447580ee5b828b2bd0bc14fea0756ddb81d9617b5472c77b5 + manager: pip + name: numexpr + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/bf/ca/add8876b0db7f3e9c9239d4b126947e830c7e05c17b67f065a75c14495d2/numexpr-2.8.3-cp39-cp39-macosx_11_0_arm64.whl + version: 2.8.3 +- category: main + dependencies: + numpy: '>=1.20.3' + python-dateutil: '>=2.8.1' + pytz: '>=2020.1' + hash: + sha256: 04e51b01d5192499390c0015630975f57836cc95c7411415b499b599b05c0c96 + manager: pip + name: pandas + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/6e/fe/e66020dc13c052be66795794c2590b460dfb87904d7834e2138f36626e74/pandas-1.5.1-cp39-cp39-macosx_11_0_arm64.whl + version: 1.5.1 +- category: main + dependencies: + dill: '>=0.3.6' + multiprocess: '>=0.70.14' + pox: '>=0.3.2' + ppft: '>=1.7.6.6' + hash: + sha256: b1f5a79b1c79a594330d451832642ee5bb61dd77dc75ba9e5c72087c77e8994c + manager: pip + name: pathos + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/0a/97/56b396300e5832bb95abe28944c1b8a0098ce179dce131a26e5d0e6daa05/pathos-0.3.0-py3-none-any.whl + version: 0.3.0 +- category: main + dependencies: + requests: '>=2.0.1,<3.0.0' + hash: + sha256: 18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7 + manager: pip + name: requests-toolbelt + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl + version: 0.10.1 +- category: main + dependencies: + distro: '*' + packaging: '*' + hash: + sha256: 14ae341652ac42eabd1e830bccfec9b2551a4d9c34329a5580591fdeb86b23a4 + manager: pip + name: scikit-build + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/e3/36/34551e5035757ba17582eb530402a16612ec0446f67f3c7d509f6e9d8e63/scikit_build-0.15.0-py2.py3-none-any.whl + version: 0.15.0 +- category: main + dependencies: + marshmallow: '>=3.0.0,<4.0' + numpy: '*' + pyyaml: '*' + hash: + sha256: ba1d04538be52cdd2b9460ea7495094aa3f1215429955ebbfc50381d4f062bac + manager: pip + name: argschema + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/eb/6b/312bcd2367aa474193afa852a3a5b75d6f706a2787a2e35537c277038c3e/argschema-3.0.1.tar.gz + version: 3.0.1 +- category: main + dependencies: + google-auth: '>=1.25.0,<3.0dev' + googleapis-common-protos: '>=1.56.2,<2.0dev' + protobuf: '>=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 + || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 + || >4.21.5,<5.0.0dev' + requests: '>=2.18.0,<3.0.0dev' + hash: + sha256: 34f24bd1d5f72a8c4519773d99ca6bf080a6c4e041b4e9f024fe230191dda62e + manager: pip + name: google-api-core + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/15/fb/b641357b0f8fc540c766bc8f66048de0398d0a3e0cad7c4a08e2fbee733a/google_api_core-2.10.2-py3-none-any.whl + version: 2.10.2 +- category: main + dependencies: + h5py: '>=2.10,<4' + jsonschema: '>=2.6.0,<5' + numpy: '>=1.16,<1.24' + pandas: '>=1.0.5,<2' + ruamel.yaml: '>=0.16,<1' + scipy: '>=1.1,<2' + hash: + sha256: 2a9ec82990d868281699760e3076165ae4700de01637563c0042cc76f55b2e6d + manager: pip + name: hdmf + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/2d/14/6ca4da7b666781e0e5aafb6aab54966f399d3ac07e900c283edb7e976faa/hdmf-3.4.6-py3-none-any.whl + version: 3.4.6 +- dependencies: + botocore: '>=1.12.36,<2.0a.0' + hash: + sha256: efa5bd92a897b6a8d5c1383828dca3d52d0790e0756d49740563a3fb6ed03246 + manager: pip + name: s3transfer + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl + version: 0.3.7 +- category: main + dependencies: + imageio: '>=2.3.0' + matplotlib: '>=2.0.0,<3.0.0 || >3.0.0' + networkx: '>=2.0' + pillow: '>=4.3.0' + pywavelets: '>=0.4.0' + scipy: '>=0.19.0' + hash: + sha256: dd7fbd32da74d4e9967dc15845f731f16e7966cee61f5dc0e12e2abb1305068c + manager: pip + name: scikit-image + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/07/ed/58a5157aa484c6aa4e33d4190fa235ce0c4a78010ddf592af4fc257b539f/scikit-image-0.16.2.tar.gz + version: 0.16.2 +- category: main + dependencies: + matplotlib: '>=3.1,<3.6.1 || >3.6.1' + numpy: '>=1.17' + pandas: '>=0.25' + hash: + sha256: a9eb39cba095fcb1e4c89a7fab1c57137d70a715a7f2eefcd41c9913c4d4ed65 + manager: pip + name: seaborn + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/77/18/7354cb68dd7906d5a3118e0ed3e30c37502f9e6253139ecfcf4fa33af210/seaborn-0.12.1-py3-none-any.whl + version: 0.12.1 +- category: main + dependencies: + numpy: '>=1.17' + pandas: '>=0.25' + patsy: '>=0.5.2' + scipy: '>=1.3' + hash: + sha256: f2efc02011b7240a9e851acd76ab81150a07d35c97021cb0517887539a328f8a + manager: pip + name: statsmodels + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/9e/5e/4a2ade283411d1f46d6f8dd5fe951b9152062d55a20750cd5d4b556322bf/statsmodels-0.13.0.tar.gz + version: 0.13.0 +- category: main + dependencies: + numexpr: '>=2.6.2' + numpy: '>=1.9.3' + hash: + sha256: 49a972b8a7c27a8a173aeb05f67acb45fe608b64cd8e9fa667c0962a60b71b49 + manager: pip + name: tables + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/2b/32/847ee3f521aae6a0be380d923a736162d698586f444df1ac24b98c65025c/tables-3.6.1.tar.gz + version: 3.6.1 +- category: main + dependencies: + numpy: '>=1.15' + pandas: '>=0.25' + hash: + sha256: a65ab828c6e139b61b93f170f4c96982b764beb27e55bcd87ef4a34285f8a19d + manager: pip + name: xarray + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/ee/11/fb2a8a6015e3de4ff19a4870bb0d11f48ebdd997062557d24cd076b3088f/xarray-0.15.1-py3-none-any.whl + version: 0.15.1 +- dependencies: + botocore: '>=1.20.21,<1.21.0' + jmespath: '>=0.7.1,<1.0.0' + s3transfer: '>=0.3.0,<0.4.0' + hash: + sha256: 8624a959c9122d3d5cd8c84231c1cd0cfe5cfbfc93a7b51eb380eb3f9ce0bac6 + manager: pip + name: boto3 + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/14/f9/de40944229e89eb76d97a66def2eac3764e342776761a2c0dfac801230ec/boto3-1.17.21-py2.py3-none-any.whl + version: 1.17.21 +- category: main + dependencies: + h5py: '>=2.10' + numpy: '*' + pandas: '*' + pynrrd: '*' + scikit-image: '*' + scipy: '*' + tqdm: '*' + hash: + sha256: a15a09811616d7a7b7516a7da18be45d392d2c6c21664068d2a06394eff3baf6 + manager: pip + name: ccf-streamlines + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/07/d2/6dfeaf0b58fdbb9a0e150cb3814b81d193644a19774c74af1a87d268110a/ccf_streamlines-1.0.0-py3-none-any.whl + version: 1.0.0 +- category: main + dependencies: + google-api-core: '>=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev' + google-auth: '>=1.25.0,<3.0dev' + hash: + sha256: 8417acf6466be2fa85123441696c4badda48db314c607cf1e5d543fa8bdc22fe + manager: pip + name: google-cloud-core + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/ac/4d/bae84e736080ed465a6b02e9f447c89c60c00fcdade2eb6911fecf3f46aa/google_cloud_core-2.3.2-py2.py3-none-any.whl + version: 2.3.2 +- category: main + dependencies: + h5py: '>=2.10,<4' + hdmf: '>=3.4.2,<4' + numpy: '>=1.16,<1.24' + pandas: '>=1.1.5,<2' + python-dateutil: '>=2.7.3,<3' + hash: + sha256: d6a640efa3bf2614be88e44b35e788392d0b7a86f9d6d0719809ba374243b90f + manager: pip + name: pynwb + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/5c/32/d465bcf0afdcf8f6a849f20c65336a8b6e39efd5f8773a3f334ba0682179/pynwb-2.2.0-py3-none-any.whl + version: 2.2.0 +- category: main + dependencies: + google-api-core: '>=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev' + google-auth: '>=1.25.0,<3.0dev' + google-cloud-core: '>=2.3.0,<3.0dev' + google-resumable-media: '>=2.3.2' + requests: '>=2.18.0,<3.0.0dev' + hash: + sha256: 19a26c66c317ce542cea0830b7e787e8dac2588b6bfa4d3fd3b871ba16305ab0 + manager: pip + name: google-cloud-storage + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/b3/bf/ae046b7499480a2d84f3385a5abe198122eae338ad224c7f2b6a8a4b48ff/google_cloud_storage-2.5.0-py2.py3-none-any.whl + version: 2.5.0 +- category: main + dependencies: + pynwb: '>=1.1.2' + hash: + sha256: 9db80ab09b11979c1678d948f6a7cb7ee2833f3d743e660391b731f6c15320af + manager: pip + name: ndx-events + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl + version: 0.2.0 +- category: main + dependencies: + aiohttp: 3.7.4 + argschema: '>=3.0.1,<4.0.0' + boto3: 1.17.21 + cachetools: '>=4.2.1,<5.0.0' + future: '>=0.14.3,<1.0.0' + glymur: 0.8.19 + h5py: '*' + hdmf: '>=2.5.8' + jinja2: '>=3.0.0' + matplotlib: '>=1.4.3,<3.4.3' + ndx-events: <=0.2.0 + nest-asyncio: '*' + numpy: '*' + pandas: '>=1.1.5' + psycopg2-binary: '>=2.7,<3.0.0' + pynrrd: '>=0.2.1,<1.0.0' + pynwb: '*' + requests: <3.0.0 + requests-toolbelt: <1.0.0 + scikit-build: <1.0.0 + scikit-image: '>=0.14.0,<0.17.0' + scipy: '>=1.4.0,<2.0.0' + seaborn: <1.0.0 + semver: '*' + simpleitk: '>=2.0.2,<3.0.0' + simplejson: '>=3.10.0,<4.0.0' + six: '>=1.9.0,<2.0.0' + sqlalchemy: '*' + statsmodels: <=0.13.0 + tables: '>=3.6.0,<3.7.0' + tqdm: '>=4.27' + xarray: <0.16.0 + hash: + sha256: 56dc2a852a01044e72ae9374bd4d6b846f49aa976d039ce9ed352068370fed07 + manager: pip + name: allensdk + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/28/7e/6e2494b800ad1a1502f79918173854b5931a89e68edc93e71bf058c000fd/allensdk-2.13.6-py3-none-any.whl + version: 2.13.6 +- category: main + dependencies: + boto3: '>=1.4.7' + brotli: '*' + chardet: '>=3.0.4' + click: '*' + crc32c: '*' + deflate: '>=0.2.0' + gevent: '*' + google-auth: '>=1.10.0' + google-cloud-core: '>=1.1.0' + google-cloud-storage: '>=1.31.1' + google-crc32c: '>=1.0.0' + orjson: '*' + pathos: '*' + protobuf: '>=3.3.0' + requests: '>=2.22.0' + rsa: '>=4.7.2' + six: '>=1.14.0' + tenacity: '>=4.10.0' + tqdm: '*' + urllib3: '>=1.26.3' + zstandard: '*' + hash: + sha256: 9b4805426d58b64fe26bc2e6c582fce298c4e43b0a4ccd690869369bdb959dda + manager: pip + name: cloud-files + optional: false + platform: osx-arm64 + source: null + url: https://files.pythonhosted.org/packages/a8/f4/00a2a184867ff465fb15fb4970f51ec0a49e8cccf7fad1255d40ecc5a4f3/cloud_files-4.11.0-py3-none-any.whl + version: 4.11.0 version: 1 diff --git a/environment.yml b/environment.yml index f13cf60..e4853cd 100644 --- a/environment.yml +++ b/environment.yml @@ -6,19 +6,25 @@ dependencies: - pip - fenics-dolfinx - fenics-libdolfinx - - gmsh + - python-gmsh - hdf5 - h5py - Jinja2>=3.0 - - numpy + - numpy>=1.14.2 - scipy - pandas - scikit-learn - shapely + - imageio + - pg8000<2.0.0 + - boto3>=1.12.42 - geopandas - rasterio + - openjpeg + - six - pip: - allensdk - argschema - - git+https://github.com/AllenInstitute/neuron_morphology@science_staging[streamlines] - - git+https://github.com/AllenInstitute/ccf_streamlines.git + - ccf-streamlines + - cloud-files + - argschema==3.0.1 diff --git a/requirements.txt b/requirements.txt index 04449e6..1fb05f7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,10 +2,10 @@ numpy scipy pandas scikit-learn -git+https://github.com/AllenInstitute/neuron_morphology@science_staging[streamlines] +git+https://github.com/AllenInstitute/neuron_morphology@science_staging argschema allensdk shapely geopandas -git+https://github.com/AllenInstitute/ccf_streamlines.git +ccf-streamlines rasterio From 85323124a24f93fd2e66a995b1a2882b5668d793 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Thu, 27 Oct 2022 13:45:44 -0700 Subject: [PATCH 20/23] updating conda lock --- conda-lock.yml | 216 ++++++++++++++++++++++++------------------------- 1 file changed, 108 insertions(+), 108 deletions(-) diff --git a/conda-lock.yml b/conda-lock.yml index e2831e0..28a4d4f 100644 --- a/conda-lock.yml +++ b/conda-lock.yml @@ -3495,13 +3495,13 @@ package: python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 hash: - md5: 8da7bbb53a6382b797d292016601baf9 - sha256: 6b334b5c56f42290f099cf39849ddc464f53a0257439833d2a9bf0a926811a33 + md5: 7963085d93f181fe4cbb6bb70ae44727 + sha256: c452253fc6dbe4b27fe8a40ff4da4b8ded4f1735417cc0256e410dd79faaea80 manager: conda name: loguru optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/loguru-0.6.0-py39hf3d152e_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/loguru-0.6.0-py39hf3d152e_2.tar.bz2 version: 0.6.0 - category: main dependencies: @@ -3792,13 +3792,13 @@ package: python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 hash: - md5: 5336e6226db948a51ff5f5a48168ce2d - sha256: 08b4eaf59b5418fe115867c94955c5785a55ee065523d325ded56dc92f06a4f7 + md5: 2f615a211058c94af786b92cefbc3d5b + sha256: eea2826ea6453b227379f1b1995f6ff4e0fdf15d4ff6d35900a05759b5c5c24f manager: conda name: cryptography optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-38.0.2-py39hd97740a_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-38.0.2-py39hd97740a_2.tar.bz2 version: 38.0.2 - category: main dependencies: @@ -3839,13 +3839,13 @@ package: python_abi: 3.9.* *_cp39 unicodedata2: '>=14.0.0' hash: - md5: 7658749298bb85df259c525cb0223f6a - sha256: 4a5dabd750cadd0db35c4862b08bd07cf1eaaed4c72531a85da49799ebb0ea72 + md5: 3f2d104f2fefdd5e8a205dd3aacbf1d7 + sha256: 55dff2dd401ef1d6fc4a27cf8e74af899c609519d35eafff3b097d7fc1836d83 manager: conda name: fonttools optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.38.0-py39hb9d737c_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.38.0-py39hb9d737c_1.tar.bz2 version: 4.38.0 - category: main dependencies: @@ -4012,13 +4012,13 @@ package: python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 hash: - md5: 0e7bfd30a1d1f75dc5c0d97457315d68 - sha256: fa2323e49b5a3aa40871fa94f240058c02952f44b0b3d89da55922ce6e21594c + md5: f26da935bc8e8ede63e075ffb5fa8e45 + sha256: 57799543f6c2eed75cd62791b3187f665b988b88337cd26fc68529c2b7e862b2 manager: conda name: scipy optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.9.3-py39hddc5342_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.9.3-py39hddc5342_1.tar.bz2 version: 1.9.3 - category: main dependencies: @@ -4312,20 +4312,20 @@ package: libcblas: '>=3.9.0,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - numpy: '>=1.19.5,<2.0a0' + numpy: '>=1.20.3,<2.0a0' python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 scipy: '' threadpoolctl: '>=2.0.0' hash: - md5: 52c40321f32e147c5a692bcab1b20a0b - sha256: b9e2b4e7ac53aab5ca479d1bfe323fd6578e461824666546864efc41e1aa2d30 + md5: b42c42b04e55bc923d1713cfad34a46f + sha256: ca46e53659c1defbe262b6807e58c601e641210a7c6e46ec0094375460824bff manager: conda name: scikit-learn optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.1.2-py39he5e8d7e_0.tar.bz2 - version: 1.1.2 + url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.1.3-py39hd5c8da3_0.tar.bz2 + version: 1.1.3 - category: main dependencies: libgcc-ng: '>=12' @@ -4486,14 +4486,14 @@ package: python-dateutil: '>=2.1,<3.0.0' urllib3: '>=1.25.4,<1.27' hash: - md5: 3435405683a6e8952d941638a8c24fc0 - sha256: 1e6c560869547e57c0dbf9c59cc8f7412dd6ec56cf529c1a1cc520355dfb8dc9 + md5: 77d431a60827da0f6df0d751ad3de134 + sha256: 33eb7e3b997060667669e9b97962cbc1afc5aadd856c5a8cf9a36deb7cf3a56c manager: conda name: botocore optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.1-pyhd8ed1ab_0.tar.bz2 - version: 1.28.1 + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.2-pyhd8ed1ab_0.tar.bz2 + version: 1.28.2 - category: main dependencies: fontconfig: '>=2.13.96,<3.0a0' @@ -4589,19 +4589,19 @@ package: version: 0.6.0 - category: main dependencies: - botocore: '>=1.28.1,<1.29.0' + botocore: '>=1.28.2,<1.29.0' jmespath: '>=0.7.1,<2.0.0' python: '>=3.7' s3transfer: '>=0.6.0,<0.7.0' hash: - md5: 5512a9ee1a05c62d7ec13f432bd7014c - sha256: 9779dd07bb1c1f700a32c9ea771552ee6de8e5d83f84df63d1f37870101a70ac + md5: 7cade1efeee35dfab784ed920d5fe5db + sha256: 4a33e88421918ca76ab17a0c3da3d16a3f5afb8ee0591e93a2a877e00072c69d manager: conda name: boto3 optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.1-pyhd8ed1ab_0.tar.bz2 - version: 1.25.1 + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.2-pyhd8ed1ab_0.tar.bz2 + version: 1.25.2 - category: main dependencies: fiona: '' @@ -9192,13 +9192,13 @@ package: python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 hash: - md5: e48b534aae9a6303ade4846f6814a584 - sha256: 1b10ff4e607ff5246cf4e3888de4add59839b316a19104d12e47619871bd1819 + md5: 21f0ef83762974ed14b86017b80b17c6 + sha256: b65ff93440544d80fa9b5d472418b50b0c583bbd8ca3e9d1e1acf653ebabb6b2 manager: conda name: loguru optional: false platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/loguru-0.6.0-py39ha65689a_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/loguru-0.6.0-py39ha65689a_2.tar.bz2 version: 0.6.0 - category: main dependencies: @@ -9489,13 +9489,13 @@ package: python: '>=3.9,<3.10.0a0 *_cpython' python_abi: 3.9.* *_cp39 hash: - md5: 473d08979933f4e0010f26cf7c4bfec5 - sha256: e1f1f43b630379cea2a7d492a3b20c74d9757d55907ecd1859427d11237709c2 + md5: 9d6094bcab1411aa35deca98a94829ac + sha256: c36d4e2dab4ba27073cef347c4d98ef1b4c926e67e5a158c6104778f5cdda3f2 manager: conda name: cryptography optional: false platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/cryptography-38.0.2-py39h14acde4_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cryptography-38.0.2-py39h14acde4_2.tar.bz2 version: 38.0.2 - category: main dependencies: @@ -9536,13 +9536,13 @@ package: python_abi: 3.9.* *_cp39 unicodedata2: '>=14.0.0' hash: - md5: 9c9a9b20728f0feb84edce7769fe3561 - sha256: b15005eed458b12411852cffb403ca56922710b4ec7b5796321e1506127b073f + md5: c4eda904dc52f53c948d64d20662525f + sha256: f8160177436c15a924a539f3074d36ad10960b0243340a1b9d79633432fff65e manager: conda name: fonttools optional: false platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/fonttools-4.38.0-py39h0fd3b05_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fonttools-4.38.0-py39h0fd3b05_1.tar.bz2 version: 4.38.0 - category: main dependencies: @@ -9708,13 +9708,13 @@ package: python: '>=3.9,<3.10.0a0 *_cpython' python_abi: 3.9.* *_cp39 hash: - md5: 8332099f32a416cda3f6e982f000e533 - sha256: c9e5bb31d4635f8c086242dc9597e349ecc5a62d6bb1bc63daf5b6e9599ae814 + md5: ee2d69a3ab84aa52d861940c7824f6c8 + sha256: 83bef93b7ab71427ed3a7a6e7354e835a2d8894e80cdb2af61e50c46cdbb8926 manager: conda name: scipy optional: false platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.9.3-py39hc77f23a_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.9.3-py39hc77f23a_1.tar.bz2 version: 1.9.3 - category: main dependencies: @@ -10008,20 +10008,20 @@ package: libcblas: '>=3.9.0,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - numpy: '>=1.19.5,<2.0a0' + numpy: '>=1.20.3,<2.0a0' python: '>=3.9,<3.10.0a0 *_cpython' python_abi: 3.9.* *_cp39 scipy: '' threadpoolctl: '>=2.0.0' hash: - md5: e76c0149e804830c12453af276b94ec0 - sha256: 4474d857999ce9c311d3e0a504217f177cc7fea729e51c436fef1ce7dd01172c + md5: f952e427dffca541d228a3ae98444958 + sha256: 9cc248904a3824d57bd84de50e10f29926ff50a73ddb0a2bc81385cfc703326b manager: conda name: scikit-learn optional: false platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/scikit-learn-1.1.2-py39h26f731d_0.tar.bz2 - version: 1.1.2 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/scikit-learn-1.1.3-py39h9c90143_0.tar.bz2 + version: 1.1.3 - category: main dependencies: libgcc-ng: '>=12' @@ -10182,14 +10182,14 @@ package: python-dateutil: '>=2.1,<3.0.0' urllib3: '>=1.25.4,<1.27' hash: - md5: 3435405683a6e8952d941638a8c24fc0 - sha256: 1e6c560869547e57c0dbf9c59cc8f7412dd6ec56cf529c1a1cc520355dfb8dc9 + md5: 77d431a60827da0f6df0d751ad3de134 + sha256: 33eb7e3b997060667669e9b97962cbc1afc5aadd856c5a8cf9a36deb7cf3a56c manager: conda name: botocore optional: false platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.1-pyhd8ed1ab_0.tar.bz2 - version: 1.28.1 + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.2-pyhd8ed1ab_0.tar.bz2 + version: 1.28.2 - category: main dependencies: fontconfig: '>=2.13.96,<3.0a0' @@ -10285,19 +10285,19 @@ package: version: 0.6.0 - category: main dependencies: - botocore: '>=1.28.1,<1.29.0' + botocore: '>=1.28.2,<1.29.0' jmespath: '>=0.7.1,<2.0.0' python: '>=3.7' s3transfer: '>=0.6.0,<0.7.0' hash: - md5: 5512a9ee1a05c62d7ec13f432bd7014c - sha256: 9779dd07bb1c1f700a32c9ea771552ee6de8e5d83f84df63d1f37870101a70ac + md5: 7cade1efeee35dfab784ed920d5fe5db + sha256: 4a33e88421918ca76ab17a0c3da3d16a3f5afb8ee0591e93a2a877e00072c69d manager: conda name: boto3 optional: false platform: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.1-pyhd8ed1ab_0.tar.bz2 - version: 1.25.1 + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.2-pyhd8ed1ab_0.tar.bz2 + version: 1.25.2 - category: main dependencies: fiona: '' @@ -14050,13 +14050,13 @@ package: python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 hash: - md5: eacf08b20f57d25cb1a6f53b199048af - sha256: c8987b20ebeccb619f0450370af399a7e6a8adae4e3e6674172adc396c64a338 + md5: 78ee64d22ffaeb19c14d073e62629d4b + sha256: c653ffbf42eb702ba42bf0d6075d2c282ee40337185557d2d90ee4124a085adc manager: conda name: loguru optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/loguru-0.6.0-py39h6e9494a_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/loguru-0.6.0-py39h6e9494a_2.tar.bz2 version: 0.6.0 - category: main dependencies: @@ -14272,13 +14272,13 @@ package: python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 hash: - md5: d31baa436ca46c3ca5c1b08be1aca47f - sha256: 949c67a8685a049ccd1546c621f724b6ac5d347dd1a416d98d8b1627a7fddd0f + md5: 2a4fa8b64bba17d84e0ca99f6207ccbb + sha256: 6d1fa598a12a93338edbed77ab95d0dedba9afb282df068d55a8f1e34cf840b3 manager: conda name: cryptography optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-38.0.2-py39h7eb6a14_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-38.0.2-py39h7eb6a14_2.tar.bz2 version: 38.0.2 - category: main dependencies: @@ -14303,13 +14303,13 @@ package: python_abi: 3.9.* *_cp39 unicodedata2: '>=14.0.0' hash: - md5: 13fadbea7e9b327ef560bcedbec854f8 - sha256: f77270ae028869ac50878dcac6c4aafd04e0a8894539696287f82761592ff0a2 + md5: d4ef9879362c40c8c346a0b6cd79f2e0 + sha256: 6875cb8e44e09332b59f276c3b32be05906206f8a19e773d8c765feeae6dac4b manager: conda name: fonttools optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.38.0-py39ha30fb19_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.38.0-py39ha30fb19_1.tar.bz2 version: 4.38.0 - category: main dependencies: @@ -14719,13 +14719,13 @@ package: python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 hash: - md5: 34fa247f908d6e24474399e8e659a4f3 - sha256: b69723850922d532a5796b200200e9f3677f88628418f42a283aa3b16970a662 + md5: 02259123e7413791b05652970f32efed + sha256: 602ded1dc4f3bbba597fb10f7d422376b9563e0a6718743b99c8083c95c28873 manager: conda name: scipy optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.9.3-py39h8a15683_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.9.3-py39h8a15683_1.tar.bz2 version: 1.9.3 - category: main dependencies: @@ -14900,22 +14900,22 @@ package: dependencies: joblib: '>=1.0.0' libcblas: '>=3.9.0,<4.0a0' - libcxx: '>=13.0.1' - llvm-openmp: '>=13.0.1' - numpy: '>=1.19.5,<2.0a0' + libcxx: '>=14.0.4' + llvm-openmp: '>=14.0.4' + numpy: '>=1.20.3,<2.0a0' python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 scipy: '' threadpoolctl: '>=2.0.0' hash: - md5: 1865224710cfc7b5262d270ca84c80c0 - sha256: 16be81e2455a3a0786bf0022392ae21d1ca4f272afbd9bde5091afd386d3ce9e + md5: 555e8ef0d982c30a4d4819bd4e01cb02 + sha256: 639d90d4b7081994e4e4dd4e93061b17559d81b6b4d3145f67a082f048603405 manager: conda name: scikit-learn optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.1.2-py39h8031a56_0.tar.bz2 - version: 1.1.2 + url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.1.3-py39hdbdcc14_0.tar.bz2 + version: 1.1.3 - category: main dependencies: brotlipy: '>=0.6.0' @@ -14983,14 +14983,14 @@ package: python-dateutil: '>=2.1,<3.0.0' urllib3: '>=1.25.4,<1.27' hash: - md5: 3435405683a6e8952d941638a8c24fc0 - sha256: 1e6c560869547e57c0dbf9c59cc8f7412dd6ec56cf529c1a1cc520355dfb8dc9 + md5: 77d431a60827da0f6df0d751ad3de134 + sha256: 33eb7e3b997060667669e9b97962cbc1afc5aadd856c5a8cf9a36deb7cf3a56c manager: conda name: botocore optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.1-pyhd8ed1ab_0.tar.bz2 - version: 1.28.1 + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.2-pyhd8ed1ab_0.tar.bz2 + version: 1.28.2 - category: main dependencies: networkx: '' @@ -15174,19 +15174,19 @@ package: version: 3.17.1 - category: main dependencies: - botocore: '>=1.28.1,<1.29.0' + botocore: '>=1.28.2,<1.29.0' jmespath: '>=0.7.1,<2.0.0' python: '>=3.7' s3transfer: '>=0.6.0,<0.7.0' hash: - md5: 5512a9ee1a05c62d7ec13f432bd7014c - sha256: 9779dd07bb1c1f700a32c9ea771552ee6de8e5d83f84df63d1f37870101a70ac + md5: 7cade1efeee35dfab784ed920d5fe5db + sha256: 4a33e88421918ca76ab17a0c3da3d16a3f5afb8ee0591e93a2a877e00072c69d manager: conda name: boto3 optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.1-pyhd8ed1ab_0.tar.bz2 - version: 1.25.1 + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.2-pyhd8ed1ab_0.tar.bz2 + version: 1.25.2 - category: main dependencies: cffi: '' @@ -18826,13 +18826,13 @@ package: python: '>=3.9,<3.10.0a0 *_cpython' python_abi: 3.9.* *_cp39 hash: - md5: deba576046c91cbf1df49024bf47838a - sha256: 0a6ce7477eb0fbdd64eff89e52a4e7ceaf0c8cd660b9f7dcef25c3c30931b653 + md5: c5163c2c0987d9757f447b45911499d9 + sha256: 21a75bc99db5351a3c79c86b7c8184c23e4c77e4a9b0512d196d2fa807eba221 manager: conda name: loguru optional: false platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/loguru-0.6.0-py39h2804cbe_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/loguru-0.6.0-py39h2804cbe_2.tar.bz2 version: 0.6.0 - category: main dependencies: @@ -19048,13 +19048,13 @@ package: python: '>=3.9,<3.10.0a0 *_cpython' python_abi: 3.9.* *_cp39 hash: - md5: 5fcf0f793aaf1e5aa84e99e4c2ba27b4 - sha256: 1cf3082dc5cac906ff189e641f77d419f80d1fe59acd0efbf15542112e00ecfa + md5: 1ddb52a79e1d7cf5afb5d8d9232ddc26 + sha256: 25da88bdc8f380889e20560485188b364e04ae6587117dbf288e1b7afaebd453 manager: conda name: cryptography optional: false platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-38.0.2-py39he2a39a8_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-38.0.2-py39he2a39a8_2.tar.bz2 version: 38.0.2 - category: main dependencies: @@ -19079,13 +19079,13 @@ package: python_abi: 3.9.* *_cp39 unicodedata2: '>=14.0.0' hash: - md5: fce96a5d599779bd129df80ba87054f2 - sha256: 255d742da1f08165552bf59b75bcd4817348e25f69c352c6284b2872f40ed07b + md5: bad1666f9a5aa9743e2be7b6818d752a + sha256: 7abe958b39d09b15ec6ec4847525d77a347e43fa05d480c95ce2453f4a394006 manager: conda name: fonttools optional: false platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.38.0-py39h02fc5c5_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.38.0-py39h02fc5c5_1.tar.bz2 version: 4.38.0 - category: main dependencies: @@ -19506,13 +19506,13 @@ package: python: '>=3.9,<3.10.0a0 *_cpython' python_abi: 3.9.* *_cp39 hash: - md5: c8e5b3a2002604e456f1abdae2ad876b - sha256: 6facf133ee86c1cc8e67960de51069cb82f80728480c0c47496706afaa7f8aa7 + md5: df1227399205beefee28087bec4dda66 + sha256: efa3ab69bb916e05f5375201bb0965e016315cbfaa0d27fb9ceca65ba1eb6724 manager: conda name: scipy optional: false platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.9.3-py39h18313fe_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.9.3-py39h18313fe_1.tar.bz2 version: 1.9.3 - category: main dependencies: @@ -19707,22 +19707,22 @@ package: dependencies: joblib: '>=1.0.0' libcblas: '>=3.9.0,<4.0a0' - libcxx: '>=13.0.1' - llvm-openmp: '>=13.0.1' - numpy: '>=1.19.5,<2.0a0' + libcxx: '>=14.0.4' + llvm-openmp: '>=14.0.4' + numpy: '>=1.20.3,<2.0a0' python: '>=3.9,<3.10.0a0 *_cpython' python_abi: 3.9.* *_cp39 scipy: '' threadpoolctl: '>=2.0.0' hash: - md5: eec49ef40bed5849adbcd064924f4f27 - sha256: 301236a5ce25b757a219a2e0a7c69c45b39767b81a48e5498e525c519f3087d2 + md5: f7e3dbfb2122064e972d1fe6753767c2 + sha256: 40461ebc29832b060b074727ca92d78f268a512fd0a42d8a2a6e081c43dad16c manager: conda name: scikit-learn optional: false platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.1.2-py39h598ef33_0.tar.bz2 - version: 1.1.2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.1.3-py39h57c6424_0.tar.bz2 + version: 1.1.3 - category: main dependencies: brotlipy: '>=0.6.0' @@ -19748,14 +19748,14 @@ package: python-dateutil: '>=2.1,<3.0.0' urllib3: '>=1.25.4,<1.27' hash: - md5: 3435405683a6e8952d941638a8c24fc0 - sha256: 1e6c560869547e57c0dbf9c59cc8f7412dd6ec56cf529c1a1cc520355dfb8dc9 + md5: 77d431a60827da0f6df0d751ad3de134 + sha256: 33eb7e3b997060667669e9b97962cbc1afc5aadd856c5a8cf9a36deb7cf3a56c manager: conda name: botocore optional: false platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.1-pyhd8ed1ab_0.tar.bz2 - version: 1.28.1 + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.2-pyhd8ed1ab_0.tar.bz2 + version: 1.28.2 - category: main dependencies: networkx: '' @@ -19914,19 +19914,19 @@ package: version: 3.17.1 - category: main dependencies: - botocore: '>=1.28.1,<1.29.0' + botocore: '>=1.28.2,<1.29.0' jmespath: '>=0.7.1,<2.0.0' python: '>=3.7' s3transfer: '>=0.6.0,<0.7.0' hash: - md5: 5512a9ee1a05c62d7ec13f432bd7014c - sha256: 9779dd07bb1c1f700a32c9ea771552ee6de8e5d83f84df63d1f37870101a70ac + md5: 7cade1efeee35dfab784ed920d5fe5db + sha256: 4a33e88421918ca76ab17a0c3da3d16a3f5afb8ee0591e93a2a877e00072c69d manager: conda name: boto3 optional: false platform: osx-arm64 - url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.1-pyhd8ed1ab_0.tar.bz2 - version: 1.25.1 + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.2-pyhd8ed1ab_0.tar.bz2 + version: 1.25.2 - category: main dependencies: cffi: '' From d2ae20a90fd41221e554b3fff91bba0b7014a32e Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Fri, 28 Oct 2022 14:09:37 -0700 Subject: [PATCH 21/23] adding task queue to reqs Conflicts: setup.cfg --- environment.yml | 1 + requirements.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/environment.yml b/environment.yml index e4853cd..0f2cc24 100644 --- a/environment.yml +++ b/environment.yml @@ -28,3 +28,4 @@ dependencies: - ccf-streamlines - cloud-files - argschema==3.0.1 + - task-queue diff --git a/requirements.txt b/requirements.txt index 1fb05f7..1b7537d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,3 +9,4 @@ shapely geopandas ccf-streamlines rasterio +task-queue \ No newline at end of file From f12cfc2ac5eb19605b5f717dd40aa45f511ccc82 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Fri, 28 Oct 2022 14:09:57 -0700 Subject: [PATCH 22/23] adding graphics pre-reqs for gmsh --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8acd78c..8e16854 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM condaforge/mambaforge:4.9.2-5 as conda RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/* +RUN apt-get -y install libglu1 libxcursor-dev libxft2 libxinerama1 libfltk1.3-dev libfreetype6-dev libgl1-mesa-dev RUN mamba install -y -c conda-forge conda-lock conda-pack COPY conda-lock.yml . RUN conda-lock install --name skeleton_keys conda-lock.yml @@ -18,4 +19,3 @@ RUN mamba run -n skeleton_keys pip install . # ENTRYPOINT source /venv/bin/activate && \ # python --version # WORKDIR /usr/local/src/skeleton_keys - From cab4fe459ae71175264f638ca15509ded485fb61 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Fri, 28 Oct 2022 14:23:42 -0700 Subject: [PATCH 23/23] fixing conda --- Dockerfile | 8 ++- conda-lock.yml | 178 ++++++++++++++++++++++++++++++++++--------------- 2 files changed, 129 insertions(+), 57 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e16854..af4ea6b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,10 @@ FROM condaforge/mambaforge:4.9.2-5 as conda -RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/* -RUN apt-get -y install libglu1 libxcursor-dev libxft2 libxinerama1 libfltk1.3-dev libfreetype6-dev libgl1-mesa-dev +RUN apt-get update && \ + apt-get install -y build-essential libglu1 \ + libxcursor-dev libxft2 libxinerama1 \ + libfltk1.3-dev libfreetype6-dev \ + libgl1-mesa-dev && \ + rm -rf /var/lib/apt/lists/* RUN mamba install -y -c conda-forge conda-lock conda-pack COPY conda-lock.yml . RUN conda-lock install --name skeleton_keys conda-lock.yml diff --git a/conda-lock.yml b/conda-lock.yml index 28a4d4f..bfefd8f 100644 --- a/conda-lock.yml +++ b/conda-lock.yml @@ -15,9 +15,9 @@ metadata: - url: conda-forge used_env_vars: [] content_hash: - linux-64: c511ff40c7c5d8631c04d856c30a9b93a3951b366506ccf48c364bb729d3672b + linux-64: 9347d6b4f900f2366dc83ed30175d6a5c8eea0ff9fbca4d0abdfe8430fac5f09 linux-aarch64: 8d4bbacd38e99767a88e116f9407a9d1814886107ddad908c3beffd85cc66171 - osx-64: 787b2e57a3ac5c477dbc5d30701db8da629439af6d2e7b9eee79114903066467 + osx-64: 1e4f25d3f7f4e2f6e437a721ff285432f8d803d5e8694167d25936dd82d42ef4 osx-arm64: f024c27089655f8663760faf25c0e17796cfc51f6c79b7c67bf93497c2b1deda platforms: - linux-64 @@ -3611,26 +3611,26 @@ package: version: 3.17.3 - category: main dependencies: - freetype: '>=2.10.4,<3.0a0' + freetype: '>=2.12.1,<3.0a0' jpeg: '>=9e,<10a' lcms2: '>=2.12,<3.0a0' libgcc-ng: '>=12' libtiff: '>=4.4.0,<5.0a0' libwebp-base: '>=1.2.4,<2.0a0' libxcb: '>=1.13,<1.14.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - openjpeg: '>=2.5.0,<2.6.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openjpeg: '>=2.5.0,<3.0a0' python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 tk: '>=8.6.12,<8.7.0a0' hash: - md5: 3b74a959f6a8008f5901de60b3572c09 - sha256: 607a85830e1c39ded9c825ab0fb24d0768a5c11314dc99957f10479cd2961936 + md5: 2bd111c38da69056e5fe25a51b832eba + sha256: 0aa210a13fa23fa42f3f73189f35d59185e571816cea0f8c1ee9361925da920d manager: conda name: pillow optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pillow-9.2.0-py39hd5dbb17_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/pillow-9.2.0-py39hf3a2cdf_3.tar.bz2 version: 9.2.0 - category: main dependencies: @@ -4026,14 +4026,14 @@ package: importlib-metadata: '>=1.0' python: '>=3.7' hash: - md5: a55dd716b2f5f2ac858fd301921b6044 - sha256: 80f4816e1ade059fba0a963d3c441af237311a9d1f441eeec8f86398d0f85888 + md5: a56597ae9dabf7f9c48e6d901a5d5154 + sha256: 97c454d1af33f90f9336a6cd8c035caf3b089c32f441890046b6174d2a38eb09 manager: conda name: scramp optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/scramp-1.4.2-pyhd8ed1ab_0.tar.bz2 - version: 1.4.2 + url: https://conda.anaconda.org/conda-forge/noarch/scramp-1.4.3-pyhd8ed1ab_0.tar.bz2 + version: 1.4.3 - category: main dependencies: geos: '>=3.11.0,<3.11.1.0a0' @@ -4042,13 +4042,13 @@ package: python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 hash: - md5: b9e155ef6b1797cff35270cf1ac757f2 - sha256: efb9feb7e0f227f224112ad513d9dceef402d021b104fe6817daebe21bce9270 + md5: 9d969b4f06adee93e9cf4a62d8056cb6 + sha256: 4cbfdb8fb65a360e442d415e72580e7313b584d68255bb04730c7e4b2e259bd1 manager: conda name: shapely optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/shapely-1.8.5-py39h5b5020f_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/shapely-1.8.5-py39h5b5020f_1.tar.bz2 version: 1.8.5 - category: main dependencies: @@ -4196,13 +4196,13 @@ package: python_abi: 3.9.* *_cp39 tk: '>=8.6.12,<8.7.0a0' hash: - md5: bba979c35fde918243039efe64eda8ca - sha256: 0db9b889af7d3627424d50aaad9d3c30ef00a18776cc4676573a58851d2f7123 + md5: f8d7b01f5cc777cbd671e86c530deba9 + sha256: 6109fd5ac98b69a36a1a717552bce3081fece727306076dc7c716409ae21ef3b manager: conda name: matplotlib-base optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.6.1-py39hf9fd14e_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.6.1-py39hf9fd14e_1.tar.bz2 version: 3.6.1 - category: main dependencies: @@ -4318,13 +4318,13 @@ package: scipy: '' threadpoolctl: '>=2.0.0' hash: - md5: b42c42b04e55bc923d1713cfad34a46f - sha256: ca46e53659c1defbe262b6807e58c601e641210a7c6e46ec0094375460824bff + md5: e0753b1949134a2d7ccf2be7bbc9f7d0 + sha256: 1dcab2772c8e37fcfdd7bb9532d0b8b55e7411fe0b7b1a91210d73d14c3f5d31 manager: conda name: scikit-learn optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.1.3-py39hd5c8da3_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.1.3-py39hd5c8da3_1.tar.bz2 version: 1.1.3 - category: main dependencies: @@ -4486,14 +4486,14 @@ package: python-dateutil: '>=2.1,<3.0.0' urllib3: '>=1.25.4,<1.27' hash: - md5: 77d431a60827da0f6df0d751ad3de134 - sha256: 33eb7e3b997060667669e9b97962cbc1afc5aadd856c5a8cf9a36deb7cf3a56c + md5: 2f553223f9dbf7276358014818d7ff67 + sha256: 9d540d7b44ecc50da83cdaaf649973e9ac1f9a878235b4ba2320e2351f5d03b1 manager: conda name: botocore optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.2-pyhd8ed1ab_0.tar.bz2 - version: 1.28.2 + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.3-pyhd8ed1ab_0.tar.bz2 + version: 1.28.3 - category: main dependencies: fontconfig: '>=2.13.96,<3.0a0' @@ -4589,19 +4589,19 @@ package: version: 0.6.0 - category: main dependencies: - botocore: '>=1.28.2,<1.29.0' + botocore: '>=1.28.3,<1.29.0' jmespath: '>=0.7.1,<2.0.0' python: '>=3.7' s3transfer: '>=0.6.0,<0.7.0' hash: - md5: 7cade1efeee35dfab784ed920d5fe5db - sha256: 4a33e88421918ca76ab17a0c3da3d16a3f5afb8ee0591e93a2a877e00072c69d + md5: 0101f3c3af46676f735ea1449710bf55 + sha256: 0ebced34500c9e91ded0944c3f9715b754f09ba02c99430c4a84e67531ba1bc9 manager: conda name: boto3 optional: false platform: linux-64 - url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.2-pyhd8ed1ab_0.tar.bz2 - version: 1.25.2 + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.3-pyhd8ed1ab_0.tar.bz2 + version: 1.25.3 - category: main dependencies: fiona: '' @@ -4875,6 +4875,17 @@ package: source: null url: https://files.pythonhosted.org/packages/5a/49/c27f8bc24877b4e9e988882c31ae94b33d0af426ccd7fe15ee2aa1b7d7be/orjson-3.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl version: 3.8.1 +- category: main + dependencies: {} + hash: + sha256: db2317ff07c84c4c63648c9064a79fe9d9f5c7ce85a9099d4b6258b3db83225a + manager: pip + name: pbr + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/e5/37/10e8a53f196cf0bcb93008daed42e2c47c7876430a7efd044ff4d647f30a/pbr-5.11.0-py2.py3-none-any.whl + version: 5.11.0 - category: main dependencies: {} hash: @@ -5707,6 +5718,29 @@ package: source: null url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl version: 0.2.0 +- category: main + dependencies: + boto3: '*' + click: '*' + gevent: '*' + google-auth: '>=1.10.0' + google-cloud-core: '>=1.1.0' + numpy: '>=1.13.1' + orjson: '*' + pathos: '*' + pbr: '*' + requests: '>2,<3' + tenacity: '>=8.0.1' + tqdm: '*' + hash: + sha256: f3cae28dd692c8d0a84bb7a33df54a6ce4472c3a2ef2412c7873111c35bd640e + manager: pip + name: task-queue + optional: false + platform: linux-64 + source: null + url: https://files.pythonhosted.org/packages/32/04/5ee170525e2c872cab888e0f753a848206f30972d54def8814218c1b0c9e/task_queue-2.12.1-py3-none-any.whl + version: 2.12.1 - category: main dependencies: aiohttp: 3.7.4 @@ -14114,25 +14148,25 @@ package: version: '21.3' - category: main dependencies: - freetype: '>=2.10.4,<3.0a0' + freetype: '>=2.12.1,<3.0a0' jpeg: '>=9e,<10a' lcms2: '>=2.12,<3.0a0' libtiff: '>=4.4.0,<5.0a0' libwebp-base: '>=1.2.4,<2.0a0' libxcb: '>=1.13,<1.14.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - openjpeg: '>=2.5.0,<2.6.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openjpeg: '>=2.5.0,<3.0a0' python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 tk: '>=8.6.12,<8.7.0a0' hash: - md5: a11a865df865bcb872627ee090aad2df - sha256: 4eef08b109120403133cc38c2f11252a638ac1c5097b50e9be6fff29f1c8f3ca + md5: 6ed8a5881729d8f7ee7cde78c13241a4 + sha256: 107901686d1e7fed3ad7500b66beebabe90be87975b368343ac9141ea4e35c4f manager: conda name: pillow optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pillow-9.2.0-py39h4d560c1_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/pillow-9.2.0-py39h35d4919_3.tar.bz2 version: 9.2.0 - category: main dependencies: @@ -14443,14 +14477,14 @@ package: importlib-metadata: '>=1.0' python: '>=3.7' hash: - md5: a55dd716b2f5f2ac858fd301921b6044 - sha256: 80f4816e1ade059fba0a963d3c441af237311a9d1f441eeec8f86398d0f85888 + md5: a56597ae9dabf7f9c48e6d901a5d5154 + sha256: 97c454d1af33f90f9336a6cd8c035caf3b089c32f441890046b6174d2a38eb09 manager: conda name: scramp optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/scramp-1.4.2-pyhd8ed1ab_0.tar.bz2 - version: 1.4.2 + url: https://conda.anaconda.org/conda-forge/noarch/scramp-1.4.3-pyhd8ed1ab_0.tar.bz2 + version: 1.4.3 - category: main dependencies: libblas: '>=3.8.0,<4.0a0' @@ -14734,13 +14768,13 @@ package: python: '>=3.9,<3.10.0a0' python_abi: 3.9.* *_cp39 hash: - md5: ae927f1272fb3610f24333b2643924d4 - sha256: c22c0de5baf185089cafdcc51bc73e7f75b4a7a2bbe710db93915d92c0eb9a4b + md5: cab82d58166eebc654c12f63ffb0d922 + sha256: d23c787f1ff1f54d46529fcf2d111f187b6e65b198292390cd3ee584314d4c40 manager: conda name: shapely optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/shapely-1.8.5-py39hf33cec1_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/shapely-1.8.5-py39hf33cec1_1.tar.bz2 version: 1.8.5 - category: main dependencies: @@ -14908,13 +14942,13 @@ package: scipy: '' threadpoolctl: '>=2.0.0' hash: - md5: 555e8ef0d982c30a4d4819bd4e01cb02 - sha256: 639d90d4b7081994e4e4dd4e93061b17559d81b6b4d3145f67a082f048603405 + md5: d5f1684c7079b96f8dbcd70a2162de3f + sha256: eb0e8145aea44144852808ebea4f16d99efe20fbd86d3f974055601fc6cb3541 manager: conda name: scikit-learn optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.1.3-py39hdbdcc14_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.1.3-py39hdbdcc14_1.tar.bz2 version: 1.1.3 - category: main dependencies: @@ -14983,14 +15017,14 @@ package: python-dateutil: '>=2.1,<3.0.0' urllib3: '>=1.25.4,<1.27' hash: - md5: 77d431a60827da0f6df0d751ad3de134 - sha256: 33eb7e3b997060667669e9b97962cbc1afc5aadd856c5a8cf9a36deb7cf3a56c + md5: 2f553223f9dbf7276358014818d7ff67 + sha256: 9d540d7b44ecc50da83cdaaf649973e9ac1f9a878235b4ba2320e2351f5d03b1 manager: conda name: botocore optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.2-pyhd8ed1ab_0.tar.bz2 - version: 1.28.2 + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.28.3-pyhd8ed1ab_0.tar.bz2 + version: 1.28.3 - category: main dependencies: networkx: '' @@ -15174,19 +15208,19 @@ package: version: 3.17.1 - category: main dependencies: - botocore: '>=1.28.2,<1.29.0' + botocore: '>=1.28.3,<1.29.0' jmespath: '>=0.7.1,<2.0.0' python: '>=3.7' s3transfer: '>=0.6.0,<0.7.0' hash: - md5: 7cade1efeee35dfab784ed920d5fe5db - sha256: 4a33e88421918ca76ab17a0c3da3d16a3f5afb8ee0591e93a2a877e00072c69d + md5: 0101f3c3af46676f735ea1449710bf55 + sha256: 0ebced34500c9e91ded0944c3f9715b754f09ba02c99430c4a84e67531ba1bc9 manager: conda name: boto3 optional: false platform: osx-64 - url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.2-pyhd8ed1ab_0.tar.bz2 - version: 1.25.2 + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.25.3-pyhd8ed1ab_0.tar.bz2 + version: 1.25.3 - category: main dependencies: cffi: '' @@ -15487,6 +15521,17 @@ package: source: null url: https://files.pythonhosted.org/packages/5c/cb/35dd5663b90d60e04c07b520f464f3c150f027c024f45441a9eb4c863c21/orjson-3.8.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl version: 3.8.1 +- category: main + dependencies: {} + hash: + sha256: db2317ff07c84c4c63648c9064a79fe9d9f5c7ce85a9099d4b6258b3db83225a + manager: pip + name: pbr + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/e5/37/10e8a53f196cf0bcb93008daed42e2c47c7876430a7efd044ff4d647f30a/pbr-5.11.0-py2.py3-none-any.whl + version: 5.11.0 - category: main dependencies: {} hash: @@ -16319,6 +16364,29 @@ package: source: null url: https://files.pythonhosted.org/packages/c9/ca/80b271590d381d958864936478a7c7807a7e7cb0a11a0b51e65c3fb3d84d/ndx_events-0.2.0-py2.py3-none-any.whl version: 0.2.0 +- category: main + dependencies: + boto3: '*' + click: '*' + gevent: '*' + google-auth: '>=1.10.0' + google-cloud-core: '>=1.1.0' + numpy: '>=1.13.1' + orjson: '*' + pathos: '*' + pbr: '*' + requests: '>2,<3' + tenacity: '>=8.0.1' + tqdm: '*' + hash: + sha256: f3cae28dd692c8d0a84bb7a33df54a6ce4472c3a2ef2412c7873111c35bd640e + manager: pip + name: task-queue + optional: false + platform: osx-64 + source: null + url: https://files.pythonhosted.org/packages/32/04/5ee170525e2c872cab888e0f753a848206f30972d54def8814218c1b0c9e/task_queue-2.12.1-py3-none-any.whl + version: 2.12.1 - category: main dependencies: aiohttp: 3.7.4